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
f3ac2f2411693d51eff22ffc7ce26a7a2a5518e2
a35b30a7c345a988e15d376a4ff5c389a6e8b23a
/boost/proto/transform/lazy.hpp
db5f3be7f4bc128d3b2103864eb5ee7a25f35371
[]
no_license
huahang/thirdparty
55d4cc1c8a34eff1805ba90fcbe6b99eb59a7f0b
07a5d64111a55dda631b7e8d34878ca5e5de05ab
refs/heads/master
2021-01-15T14:29:26.968553
2014-02-06T07:35:22
2014-02-06T07:35:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
66
hpp
#include "thirdparty/boost_1_55_0/boost/proto/transform/lazy.hpp"
[ "liuhuahang@xiaomi.com" ]
liuhuahang@xiaomi.com
15c771cd8cc149bbcbf97c75de999b3513498be6
bb10aaccf7daafacb7124795ed2c63e95b90f8e7
/chapter3/strings/3.10modified.cpp
ec007e5993e55bc4dadddcca530d4ec48dbd8302
[]
no_license
shubharthaksangharsha/cpp_primer
bcce6cb1b3363911fe24e74f119633177033ced2
34d6ad5387167b4e5e6e84cff72edc36d766d981
refs/heads/main
2023-06-06T20:15:42.744316
2021-07-13T10:57:05
2021-07-13T10:57:05
374,952,762
0
0
null
null
null
null
UTF-8
C++
false
false
390
cpp
#include<iostream> using std :: cout ; using std :: cin ; using std :: string; using std :: endl; int main(){ string name ; getline(cin , name ) ; decltype(name.size()) index = 0; for(index = 0 ; index < name.size(); index++ ) { if(ispunct(name[index])){ name[index]=' '; cout<<name[index]; } else{ cout<<name[index]; } } return 0; }
[ "shubharthaksangharsha@gmai.com" ]
shubharthaksangharsha@gmai.com
a56a17add61e385aadcfd03bf3d8e01d5f76369f
33035c05aad9bca0b0cefd67529bdd70399a9e04
/src/boost_algorithm_string_constants.hpp
ad134d9081a6914294962c548798c72a9e5bd768
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
elvisbugs/BoostForArduino
7e2427ded5fd030231918524f6a91554085a8e64
b8c912bf671868e2182aa703ed34076c59acf474
refs/heads/master
2023-03-25T13:11:58.527671
2021-03-27T02:37:29
2021-03-27T02:37:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
48
hpp
#include <boost/algorithm/string/constants.hpp>
[ "k@kekyo.net" ]
k@kekyo.net
5375a856f25f482b2ec50b644ac2a3c96a673798
59aaa53325799de87719810dfd2738caa016a96b
/AllProgs/c5/sat.cpp
8c3bccca595090ec30d0aaafc0a17d1fc9e11823
[]
no_license
vaibhavait04/Sahni2ECodes
6bc70b6642e89ceba14432427072a81202dc0c94
5b492a7a99f79a819c08925ec82a0d9e3d8fdae4
refs/heads/master
2021-01-01T19:31:03.330282
2015-05-02T12:49:10
2015-05-02T12:49:10
33,411,348
0
0
null
null
null
null
UTF-8
C++
false
false
1,705
cpp
#ifndef _IOSTREAM_H #include <iostream> #define _IOSTREAM_H #endif using namespace std; //enum Boolean { FALSE, TRUE}; enum TypesOfData {LogicalNot, LogicalAnd, LogicalOr, LogicalTrue, LogicalFalse}; class SatTree; class SatNode { friend class SatTree; private: SatNode *LeftChild; TypesOfData data; bool value; SatNode *RightChild; SatNode() {LeftChild = RightChild = 0;}; SatNode(TypesOfData tod, SatNode *Lefty, SatNode *Righty) { data = tod; LeftChild = Lefty; RightChild = Righty; } }; class SatTree { private: SatNode *root; void PostOrderEval(SatNode *); public: void PostOrderEval(); SatTree() {root = 0;}; void setup(); void rootvalue() {cout << root->value;}; }; void SatTree::setup() { root = new SatNode(LogicalAnd,0,0); root->LeftChild = new SatNode(LogicalOr,0,0); root->LeftChild->LeftChild = new SatNode(LogicalFalse, 0, 0); root->LeftChild->RightChild = new SatNode(LogicalTrue, 0, 0); root->RightChild = new SatNode(LogicalNot, 0, 0); root->RightChild->RightChild = new SatNode(LogicalFalse, 0, 0); } void SatTree::PostOrderEval() { PostOrderEval(root); } void SatTree::PostOrderEval(SatNode *s) { if(s) { PostOrderEval(s->LeftChild); PostOrderEval(s->RightChild); switch (s->data) { case LogicalNot: s->value = ! s->RightChild->value; break; case LogicalAnd: s->value = s->LeftChild->value && s->RightChild->value; break; case LogicalOr: s->value = s->LeftChild->value || s->RightChild->value; break; case LogicalTrue: s->value = true; break; case LogicalFalse: s->value = false; break; } } } int main() { SatTree t; t.setup(); t.PostOrderEval(); t.rootvalue(); }
[ "vaibhavait04@gmail.com" ]
vaibhavait04@gmail.com
831dc81d3dd34a7fe9ef4b071fdf4f0293a95d91
242e3bb85ffd18368e2c5db091ad6e18bab65343
/test.cpp
eb705caf04f157f63e3a5c08a9e2934043fd0c40
[]
no_license
TheMostKnown/Discrete-Density-Evolution
29dec1200f2463753cd9757f9411f40cba652e11
a264e581b481c2a0ed18760406d5fe38bbc930f5
refs/heads/main
2023-05-03T03:19:12.267376
2021-05-15T23:12:59
2021-05-15T23:12:59
338,883,046
1
1
null
null
null
null
UTF-8
C++
false
false
569
cpp
#include "discrete_val.h" #include <iostream> // use this to test the abilities of the library int main() { std::vector<double> a = {0.3, 0.7}; std::vector<double> b = {0.2, 0, 0.8}; discrete_value test_a(a, 1, 2); discrete_value test_b(b, 1, 3); //discrete_value test(-1, 3); //test.print(); //test_a.sum_distrib(test_b).print(); //test_a.max_distrib(test_b).print(); //test_a.min_distrib(test_b).print(); test_a.signed_min_abs_distrib(test_b).print(); std::cout << test_a.signed_min_abs_distrib(test_b).get_val(); return 0; }
[ "allakos01@mail.ru" ]
allakos01@mail.ru
6da44169230138abfcde2bda5396bbced1c15d63
206038e91a1f33a4cf6fa4b653802f5934382b14
/Classes/portRemodeLayer.cpp
2d61b8e994eea588ff2eb3b265a56681e892082d
[]
no_license
zhyl19920810/JLU_collection
6d3d3a606c111c2b76a5a8e7451c770f5e54adb0
157e47b7416cc9967f98179c288e01c63cb3fa0e
refs/heads/master
2021-01-19T01:51:40.619585
2016-08-09T09:37:03
2016-08-09T09:37:03
45,473,160
2
0
null
null
null
null
UTF-8
C++
false
false
815
cpp
// // portRemodeLayer.cpp // kancolle_alpha // // Created by 岩林张 on 10/21/15. // // #include "portRemodeLayer.h" bool PortRemodeLayer::init() { bool bRet=false; do { if (!Layer::init()) { break; } initLayer(); bRet=true; }while(0); return bRet; } PortRemodeLayer::PortRemodeLayer() { } void PortRemodeLayer::initLayer() { Sprite* bgimg = Sprite::create("interface/RemodelMain/RemodelMain_183.png"); this->addChild(bgimg); bgimg->setOpacity(200); bgimg->setPosition(400, 200); //detailPage = new CharacterDetailPage(this); //detailPage->setCharacter(GameModel::getInstance()->getFleet(0)->getShip(0)); } void PortRemodeLayer::callBack(Ref* pSender) { }
[ "zhyl19920810@gmail.com" ]
zhyl19920810@gmail.com
80355033c5e1657b48515dbdc6d2152942a9037c
cc072b6de199867f99e9288338d6f0c3580eed8e
/eqnsearch/alter/genAssoc.cpp
375bf4712f854a7428f4a4bd4680e713815f131d
[]
no_license
ndnygren/unfitsym
530a9c0d96e77edb6ff119be8b1f612852b19cd6
ec7ee538bddaedeb22309b75785ef5ce4966ed20
refs/heads/master
2021-01-15T11:48:23.502644
2011-10-07T00:58:59
2011-10-07T00:58:59
1,979,663
0
0
null
null
null
null
UTF-8
C++
false
false
8,557
cpp
/* unfitsym - framework for symbolic computation * Copyright (C) 2011 Nick Nygren * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "alterExpression.h" #include <string> #include "../../parse/nodes/sumNode.h" #include "../../parse/nodes/prodNode.h" #include "../../parse/nodes/subNode.h" #include "../../parse/nodes/fracNode.h" #include "../../parse/nodes/negNode.h" #include "../../parse/nodes/hatNode.h" using namespace std; vector<eqnNode*> alterExpression::getAssocVector(binOpNode* input) { vector<eqnNode*> outlist; vector<eqnNode*> stack; eqnNode* current; stack.push_back(input); while (!stack.empty()) { current = stack.back(); stack.pop_back(); if (current->type() == input->type()) { stack.push_back(((binOpNode*)current)->getL()); stack.push_back(((binOpNode*)current)->getR()); } else { outlist.push_back(current->copy()); } } return outlist; } eqnNode* alterExpression::buildProduct(vector<eqnNode*>& list) { eqnNode *temp = 0; eqnNode *backexpr = 0; unsigned int i; for (i = 0; i < list.size(); i++) { if (i == 0) { temp = list[i]->copy(); } else { backexpr = temp; temp = new prodNode(temp, list[i]); delete backexpr; } } return temp; } eqnNode* alterExpression::buildSum(vector<eqnNode*>& list) { eqnNode *temp = 0; eqnNode *backexpr = 0; unsigned int i; for (i = 0; i < list.size(); i++) { if (i == 0) { temp = list[i]->copy(); } else { backexpr = temp; temp = new sumNode(temp, list[i]); delete backexpr; } } return temp; } void alterExpression::pushToBrk(vector<pair<eqnNode*,vector<eqnNode*> > >& brklist, eqnNode* base, eqnNode* arg) { unsigned int i; for (i = 0; i < brklist.size(); i++) { if (brklist[i].first->eq(base)) { brklist[i].second.push_back(arg); return; } } brklist.push_back(pair<eqnNode*,vector<eqnNode*> >(base, vector<eqnNode*>())); brklist.back().second.push_back(arg); } void alterExpression::negList(vector<eqnNode*>& list) { eqnNode *temp; prodNode *prodspare; unsigned int i; numNode negone(-1); for (i = 0; i < list.size(); i++) { temp = list[i]; if (temp->type() == nodeTypes::prod) { prodspare = (prodNode*)temp; if (prodspare->getL()->isConst()) { temp = new negNode(prodspare->getL()); list[i] = new prodNode(temp, prodspare->getR()); delete temp; delete prodspare; } else { temp = new negNode(prodspare->getR()); list[i] = new prodNode(temp, prodspare->getL()); delete temp; delete prodspare; } } else { list[i] = new prodNode(&negone,temp); delete temp; } } } void alterExpression::unSub(vector<eqnNode*>& list) { subNode* temp; numNode negone(-1); vector<eqnNode*> sparelist; unsigned int i; for (i = 0; i < list.size(); i++) { if (list[i]->type() == nodeTypes::sub) { temp = (subNode*)list[i]; list.erase(list.begin()+i); i--; if (temp->getL()->type() == nodeTypes::sum) { sparelist = getAssocVector((binOpNode*)(temp->getL())); while(!sparelist.empty()) { list.push_back(sparelist.back()); sparelist.pop_back(); } } else { list.push_back(temp->getL()->copy()); } if (temp->getR()->type() == nodeTypes::sum) { sparelist = getAssocVector((binOpNode*)(temp->getR())); negList(sparelist); while(!sparelist.empty()) { list.push_back(sparelist.back()); sparelist.pop_back(); } } else { list.push_back(new prodNode(&negone, temp->getR())); } delete temp; } } } void alterExpression::invertList(vector<eqnNode*>& list) { eqnNode *temp; hatNode *hatspare; unsigned int i; numNode negone(-1); for (i = 0; i < list.size(); i++) { temp = list[i]; if (temp->type() == nodeTypes::hat) { hatspare = (hatNode*)temp; temp = new negNode(hatspare->getR()); list[i] = new hatNode(hatspare->getL(), temp); delete temp; delete hatspare; } else { list[i] = new hatNode(temp, &negone); delete temp; } } } void alterExpression::unFrac(vector<eqnNode*>& list) { fracNode* temp; numNode negone(-1); vector<eqnNode*> sparelist; unsigned int i; for (i = 0; i < list.size(); i++) { if (list[i]->type() == nodeTypes::frac) { temp = (fracNode*)list[i]; list.erase(list.begin()+i); i--; if (temp->getL()->type() == nodeTypes::prod) { sparelist = getAssocVector((binOpNode*)(temp->getL())); unFrac(sparelist); while(!sparelist.empty()) { list.push_back(sparelist.back()); sparelist.pop_back(); } } else { list.push_back(temp->getL()->copy()); } if (temp->getR()->type() == nodeTypes::prod) { sparelist = getAssocVector((binOpNode*)(temp->getR())); unFrac(sparelist); invertList(sparelist); while(!sparelist.empty()) { list.push_back(sparelist.back()); sparelist.pop_back(); } } else { list.push_back(new hatNode(temp->getR(),&negone)); } delete temp; } } } eqnNode* alterExpression::sumSimplify(sumNode* input) { unsigned int i; vector<eqnNode*> inlist = getAssocVector(input); vector<pair<eqnNode*,vector<eqnNode*> > > brklist; numNode one(1); numNode negone(-1); prodNode *prodspare; negNode *negspare; eqnNode *outexpr, *temp3expr, *temp2expr, *tempexpr; unSub(inlist); for (i = 0; i < inlist.size(); i++) { if (inlist[i]->isConst()) { pushToBrk(brklist, &one, inlist[i]); } else if (inlist[i]->type() == nodeTypes::prod && ((prodNode*)inlist[i])->getR()->isConst()) { prodspare = ((prodNode*)inlist[i]); pushToBrk(brklist, prodspare->getL(), prodspare->getR()); } else if (inlist[i]->type() == nodeTypes::prod && ((prodNode*)inlist[i])->getL()->isConst()) { prodspare = ((prodNode*)inlist[i]); pushToBrk(brklist, prodspare->getR(), prodspare->getL()); } else if (inlist[i]->type() == nodeTypes::neg) { negspare = ((negNode*)inlist[i]); pushToBrk(brklist, negspare->getR(), &negone); } else { pushToBrk(brklist, inlist[i], &one); } } outexpr = 0; for (i = 0; i < brklist.size(); i++) { tempexpr = buildSum(brklist[i].second); prodspare = new prodNode(tempexpr,brklist[i].first); temp2expr = prodspare->collapse(); if (outexpr == 0) { outexpr = temp2expr; } else { temp3expr = new sumNode(outexpr, temp2expr); delete outexpr; delete temp2expr; outexpr = temp3expr; } delete prodspare; delete tempexpr; } for (i = 0; i < inlist.size(); i++) { delete inlist[i]; } inlist.clear(); return outexpr; } eqnNode* alterExpression::prodSimplify(prodNode* input) { unsigned int i; vector<eqnNode*> inlist = getAssocVector(input); vector<pair<eqnNode*,vector<eqnNode*> > > brklist; numNode one(1); numNode negone(-1); hatNode *hatspare; negNode *negspare; eqnNode *outexpr, *temp3expr, *temp2expr, *tempexpr; unFrac(inlist); for (i = 0; i < inlist.size(); i++) { if (inlist[i]->isConst()) { pushToBrk(brklist, inlist[i], &one); } else if (inlist[i]->type() == nodeTypes::hat) { hatspare = ((hatNode*)inlist[i]); pushToBrk(brklist, hatspare->getL(), hatspare->getR()); } else if (inlist[i]->type() == nodeTypes::neg) { negspare = ((negNode*)inlist[i]); pushToBrk(brklist, negspare->getR(), &one); pushToBrk(brklist, &negone, &one); } else { pushToBrk(brklist, inlist[i], &one); } } outexpr = 0; for (i = 0; i < brklist.size(); i++) { tempexpr = buildSum(brklist[i].second); hatspare = new hatNode(brklist[i].first, tempexpr); temp2expr = hatspare->collapse(); if (outexpr == 0) { outexpr = temp2expr; } else { temp3expr = new prodNode(outexpr, temp2expr); delete outexpr; delete temp2expr; outexpr = temp3expr; } delete hatspare; delete tempexpr; } for (i = 0; i < inlist.size(); i++) { delete inlist[i]; } inlist.clear(); tempexpr = outexpr; outexpr = tempexpr->collapse(); delete tempexpr; return outexpr; }
[ "ndnygren@ucalgary.ca" ]
ndnygren@ucalgary.ca
bf92ecc745e9c15a03a06c23af1c2705a0866ea2
f30c7994709ea8bb407af6249d3b19faecea56c3
/src/ui/TraceUI.cpp
2655ea73753a0b926746af6aa9e1323c1afb257e
[]
no_license
YanggWendy/trace
d81ece1b6e3526b93e36872f90bdd5bb92915f39
46ab91d47a6855093f5c5b10155cbf63ec0bf199
refs/heads/master
2023-02-07T05:56:22.756423
2023-01-29T11:35:15
2023-01-29T11:35:15
256,892,537
0
0
null
null
null
null
UTF-8
C++
false
false
16,316
cpp
// // TraceUI.h // // Handles FLTK integration and other user interface tasks // #include <stdio.h> #include <time.h> #include <string.h> #include <FL/fl_ask.h> #include "TraceUI.h" #include "../RayTracer.h" static bool done; //------------------------------------- Help Functions -------------------------------------------- TraceUI* TraceUI::whoami(Fl_Menu_* o) // from menu item back to UI itself { return ( (TraceUI*)(o->parent()->user_data()) ); } //--------------------------------- Callback Functions -------------------------------------------- void TraceUI::cb_load_scene(Fl_Menu_* o, void* v) { TraceUI* pUI=whoami(o); char* newfile = fl_file_chooser("Open Scene?", "*.ray", NULL ); if (newfile != NULL) { char buf[256]; if (pUI->raytracer->loadScene(newfile)) { sprintf(buf, "Ray <%s>", newfile); done=true; // terminate the previous rendering } else{ sprintf(buf, "Ray <Not Loaded>"); } pUI->m_mainWindow->label(buf); } } void TraceUI::cb_save_image(Fl_Menu_* o, void* v) { TraceUI* pUI=whoami(o); char* savefile = fl_file_chooser("Save Image?", "*.bmp", "save.bmp" ); if (savefile != NULL) { pUI->m_traceGlWindow->saveImage(savefile); } } void TraceUI::cb_background_image(Fl_Menu_* o, void* v) { TraceUI* pUI = whoami(o); char* newfile = fl_file_chooser("Open Image?", "*.bmp", NULL); if (newfile != NULL) { pUI->raytracer->loadBackground(newfile); } } void TraceUI::cb_exit(Fl_Menu_* o, void* v) { TraceUI* pUI=whoami(o); // terminate the rendering done=true; pUI->m_traceGlWindow->hide(); pUI->m_mainWindow->hide(); } void TraceUI::cb_exit2(Fl_Widget* o, void* v) { TraceUI* pUI=(TraceUI *)(o->user_data()); // terminate the rendering done=true; pUI->m_traceGlWindow->hide(); pUI->m_mainWindow->hide(); } void TraceUI::cb_about(Fl_Menu_* o, void* v) { fl_message("RayTracer Project, FLTK version for CS 341 Spring 2002. Latest modifications by Jeff Maurer, jmaurer@cs.washington.edu"); } void TraceUI::cb_sizeSlides(Fl_Widget* o, void* v) { TraceUI* pUI=(TraceUI*)(o->user_data()); pUI->m_nSize=int( ((Fl_Slider *)o)->value() ) ; int height = (int)(pUI->m_nSize / pUI->raytracer->aspectRatio() + 0.5); pUI->m_traceGlWindow->resizeWindow( pUI->m_nSize, height ); } void TraceUI::cb_depthSlides(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->m_nDepth=int( ((Fl_Slider *)o)->value() ) ; } void TraceUI::cb_Attenuation_ConstantSlides(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->m_nAttenuation_Constant = double(((Fl_Slider*)o)->value()); } void TraceUI::cb_Attenuation_LinearSlides(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->m_nAttenuation_Linear = double(((Fl_Slider*)o)->value()); } void TraceUI::cb_Attenuation_QuadricSlides(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->m_nAttenuation_Quadric = double(((Fl_Slider*)o)->value()); } void TraceUI::cb_AmbientLightSlides(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->m_nAmbientLight = double(((Fl_Slider*)o)->value()); } void TraceUI::cb_ThresholdSlides(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->m_nThreshold = double(((Fl_Slider*)o)->value()); } void TraceUI::cb_useGlossy(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->m_useGlossy = int(((Fl_Slider*)o)->value()); } void TraceUI::cb_SupersampleSize(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->m_nSupersampleSize = int(((Fl_Slider*)o)->value()); } void TraceUI::cb_Focallength(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->Focallength = int(((Fl_Slider*)o)->value()); } void TraceUI::cb_ApertureSize(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->ApertureSize = int(((Fl_Slider*)o)->value()); } void TraceUI::cb_jitter(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->jitter = int(((Fl_Slider*)o)->value()); } void TraceUI::cb_dof(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->DOF = int(((Fl_Slider*)o)->value()); } void TraceUI::cb_MotionBlur(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->MotionBlur = int(((Fl_Slider*)o)->value()); } void TraceUI::cb_adaptive(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->adaptive = int(((Fl_Slider*)o)->value()); } void TraceUI::cb_render(Fl_Widget* o, void* v) { char buffer[256]; TraceUI* pUI=((TraceUI*)(o->user_data())); if (pUI->raytracer->sceneLoaded()) { int width=pUI->getSize(); int height = (int)(width / pUI->raytracer->aspectRatio() + 0.5); pUI->m_traceGlWindow->resizeWindow( width, height ); pUI->m_traceGlWindow->show(); pUI->raytracer->traceSetup(width, height); // Save the window label const char *old_label = pUI->m_traceGlWindow->label(); // start to render here done=false; clock_t prev, now; prev=clock(); pUI->m_traceGlWindow->refresh(); Fl::check(); Fl::flush(); for (int y=0; y<height; y++) { for (int x=0; x<width; x++) { if (done) break; // current time now = clock(); // check event every 1/2 second if (((double)(now-prev)/CLOCKS_PER_SEC)>0.5) { prev=now; if (Fl::ready()) { // refresh pUI->m_traceGlWindow->refresh(); // check event Fl::check(); if (Fl::damage()) { Fl::flush(); } } } pUI->raytracer->tracePixel( x, y ); } if (done) break; // flush when finish a row if (Fl::ready()) { // refresh pUI->m_traceGlWindow->refresh(); if (Fl::damage()) { Fl::flush(); } } // update the window label sprintf(buffer, "(%d%%) %s", (int)((double)y / (double)height * 100.0), old_label); pUI->m_traceGlWindow->label(buffer); } done=true; pUI->m_traceGlWindow->refresh(); // Restore the window label pUI->m_traceGlWindow->label(old_label); } } void TraceUI::cb_stop(Fl_Widget* o, void* v) { done=true; } void TraceUI::cb_supersample(Fl_Widget* o, void* v) { ((TraceUI*)(o->user_data()))->Supersample = int(((Fl_Slider*)o)->value()); } void TraceUI::show() { m_mainWindow->show(); } void TraceUI::setRayTracer(RayTracer *tracer) { raytracer = tracer; m_traceGlWindow->setRayTracer(tracer); } int TraceUI::getSize() { return m_nSize; } int TraceUI::getDepth() { return m_nDepth; } double TraceUI::getAttenuation_Constant() { return m_nAttenuation_Constant; } double TraceUI::getAttenuation_Linear() { return m_nAttenuation_Linear; } double TraceUI::getAttenuation_Quadric() { return m_nAttenuation_Quadric; } double TraceUI::getAmbientLight() { return m_nAmbientLight; } double TraceUI::getThreshold() { return m_nThreshold; } int TraceUI::getuseGlossy() { return m_useGlossy; } int TraceUI::getSupersampleSize() { return m_nSupersampleSize; } int TraceUI::getSupersample() { return Supersample; } int TraceUI::getjitter() { return jitter; } int TraceUI::getadaptive() { return adaptive; } int TraceUI::getDOF() { return DOF; } int TraceUI::getMotionBlur() { return MotionBlur; } int TraceUI::getFocallength() { return Focallength; } int TraceUI::getApertureSize() { return ApertureSize; } // menu definition Fl_Menu_Item TraceUI::menuitems[] = { { "&File", 0, 0, 0, FL_SUBMENU }, { "&Load Scene...", FL_ALT + 'l', (Fl_Callback *)TraceUI::cb_load_scene }, { "&Load Background...", FL_ALT + 's', (Fl_Callback*)TraceUI::cb_background_image }, { "&Save Image...", FL_ALT + 's', (Fl_Callback *)TraceUI::cb_save_image }, { "&Exit", FL_ALT + 'e', (Fl_Callback *)TraceUI::cb_exit }, { 0 }, { "&Help", 0, 0, 0, FL_SUBMENU }, { "&About", FL_ALT + 'a', (Fl_Callback *)TraceUI::cb_about }, { 0 }, { 0 } }; TraceUI::TraceUI() { // init. m_nDepth = 0; m_nSize = 150; m_nAttenuation_Constant = 0.25; m_nAttenuation_Linear = 0.05; m_nAttenuation_Quadric = 0.01; m_nAmbientLight = 0.80; m_nThreshold = 0; m_useGlossy = 0; m_nSupersampleSize = 0; Supersample = 0; jitter = 0; Focallength = 2; ApertureSize = 2; adaptive = 0; DOF = 0; MotionBlur = 0; m_mainWindow = new Fl_Window(100, 40, 320, 500, "Ray <Not Loaded>"); m_mainWindow->user_data((void*)(this)); // record self to be used by static callback functions // install menu bar m_menubar = new Fl_Menu_Bar(0, 0, 320, 25); m_menubar->menu(menuitems); // install slider depth m_depthSlider = new Fl_Value_Slider(10, 30, 180, 20, "Depth"); m_depthSlider->user_data((void*)(this)); // record self to be used by static callback functions m_depthSlider->type(FL_HOR_NICE_SLIDER); m_depthSlider->labelfont(FL_COURIER); m_depthSlider->labelsize(12); m_depthSlider->minimum(0); m_depthSlider->maximum(10); m_depthSlider->step(1); m_depthSlider->value(m_nDepth); m_depthSlider->align(FL_ALIGN_RIGHT); m_depthSlider->callback(cb_depthSlides); // install slider size m_sizeSlider = new Fl_Value_Slider(10, 55, 180, 20, "Size"); m_sizeSlider->user_data((void*)(this)); // record self to be used by static callback functions m_sizeSlider->type(FL_HOR_NICE_SLIDER); m_sizeSlider->labelfont(FL_COURIER); m_sizeSlider->labelsize(12); m_sizeSlider->minimum(64); m_sizeSlider->maximum(512); m_sizeSlider->step(1); m_sizeSlider->value(m_nSize); m_sizeSlider->align(FL_ALIGN_RIGHT); m_sizeSlider->callback(cb_sizeSlides); // install Attenuation,Constant m_AttenuationConstantSlider = new Fl_Value_Slider(10, 80, 180, 20, "Attenuation,Constant"); m_AttenuationConstantSlider->user_data((void*)(this)); // record self to be used by static callback functions m_AttenuationConstantSlider->type(FL_HOR_NICE_SLIDER); m_AttenuationConstantSlider->labelfont(FL_COURIER); m_AttenuationConstantSlider->labelsize(12); m_AttenuationConstantSlider->minimum(0); m_AttenuationConstantSlider->maximum(1); m_AttenuationConstantSlider->step(0.01); m_AttenuationConstantSlider->value(m_nAttenuation_Constant); m_AttenuationConstantSlider->align(FL_ALIGN_RIGHT); m_AttenuationConstantSlider->callback(cb_Attenuation_ConstantSlides); // install slider Attenuation,Linear m_AttenuationLinearSlider = new Fl_Value_Slider(10, 105, 180, 20, "Attenuation,Linear"); m_AttenuationLinearSlider->user_data((void*)(this)); // record self to be used by static callback functions m_AttenuationLinearSlider->type(FL_HOR_NICE_SLIDER); m_AttenuationLinearSlider->labelfont(FL_COURIER); m_AttenuationLinearSlider->labelsize(12); m_AttenuationLinearSlider->minimum(0); m_AttenuationLinearSlider->maximum(1); m_AttenuationLinearSlider->step(0.01); m_AttenuationLinearSlider->value(m_nAttenuation_Linear); m_AttenuationLinearSlider->align(FL_ALIGN_RIGHT); m_AttenuationLinearSlider->callback(cb_Attenuation_LinearSlides); // install slider size m_AttenuationQuadricSlider = new Fl_Value_Slider(10, 130, 180, 20, "Attenuation,Quadric"); m_AttenuationQuadricSlider->user_data((void*)(this)); // record self to be used by static callback functions m_AttenuationQuadricSlider->type(FL_HOR_NICE_SLIDER); m_AttenuationQuadricSlider->labelfont(FL_COURIER); m_AttenuationQuadricSlider->labelsize(12); m_AttenuationQuadricSlider->minimum(0); m_AttenuationQuadricSlider->maximum(1); m_AttenuationQuadricSlider->step(0.01); m_AttenuationQuadricSlider->value(m_nAttenuation_Quadric); m_AttenuationQuadricSlider->align(FL_ALIGN_RIGHT); m_AttenuationQuadricSlider->callback(cb_Attenuation_QuadricSlides); // install slider Ambient Light m_AmbientLightSlider = new Fl_Value_Slider(10, 155, 180, 20, "Ambient Light"); m_AmbientLightSlider->user_data((void*)(this)); // record self to be used by static callback functions m_AmbientLightSlider->type(FL_HOR_NICE_SLIDER); m_AmbientLightSlider->labelfont(FL_COURIER); m_AmbientLightSlider->labelsize(12); m_AmbientLightSlider->minimum(0); m_AmbientLightSlider->maximum(1); m_AmbientLightSlider->step(0.01); m_AmbientLightSlider->value(m_nAmbientLight); m_AmbientLightSlider->align(FL_ALIGN_RIGHT); m_AmbientLightSlider->callback(cb_AmbientLightSlides); // install slider Threshold m_ThresholdSlider = new Fl_Value_Slider(10, 180, 180, 20, "Threshold"); m_ThresholdSlider->user_data((void*)(this)); // record self to be used by static callback functions m_ThresholdSlider->type(FL_HOR_NICE_SLIDER); m_ThresholdSlider->labelfont(FL_COURIER); m_ThresholdSlider->labelsize(12); m_ThresholdSlider->minimum(0); m_ThresholdSlider->maximum(1); m_ThresholdSlider->step(0.01); m_ThresholdSlider->value(m_nThreshold); m_ThresholdSlider->align(FL_ALIGN_RIGHT); m_ThresholdSlider->callback(cb_ThresholdSlides); /*m_useGlossySlider = new Fl_Value_Slider(10, 205, 180, 20, "Use Glossy"); m_useGlossySlider->user_data((void*)(this)); // record self to be used by static callback functions m_useGlossySlider->type(FL_HOR_NICE_SLIDER); m_useGlossySlider->labelfont(FL_COURIER); m_useGlossySlider->labelsize(12); m_useGlossySlider->minimum(0); m_useGlossySlider->maximum(1); m_useGlossySlider->step(1); m_useGlossySlider->value(m_useGlossy); m_useGlossySlider->align(FL_ALIGN_RIGHT); m_useGlossySlider->callback(cb_useGlossySlides);*/ m_nSupersampleSizeSlider = new Fl_Value_Slider(10, 205, 180, 20, "Supersample Size"); m_nSupersampleSizeSlider->user_data((void*)(this)); // record self to be used by static callback functions m_nSupersampleSizeSlider->type(FL_HOR_NICE_SLIDER); m_nSupersampleSizeSlider->labelfont(FL_COURIER); m_nSupersampleSizeSlider->labelsize(12); m_nSupersampleSizeSlider->minimum(1); m_nSupersampleSizeSlider->maximum(5); m_nSupersampleSizeSlider->step(1); m_nSupersampleSizeSlider->value(m_nSupersampleSize); m_nSupersampleSizeSlider->align(FL_ALIGN_RIGHT); m_nSupersampleSizeSlider->callback(cb_SupersampleSize); m_nFocallengthSlider = new Fl_Value_Slider(10, 230, 180, 20, "Focal length"); m_nFocallengthSlider->user_data((void*)(this)); // record self to be used by static callback functions m_nFocallengthSlider->type(FL_HOR_NICE_SLIDER); m_nFocallengthSlider->labelfont(FL_COURIER); m_nFocallengthSlider->labelsize(12); m_nFocallengthSlider->minimum(1); m_nFocallengthSlider->maximum(5); m_nFocallengthSlider->step(1); m_nFocallengthSlider->value(Focallength); m_nFocallengthSlider->align(FL_ALIGN_RIGHT); m_nFocallengthSlider->callback(cb_Focallength); m_nApertureSizeSlider = new Fl_Value_Slider(10, 255, 180, 20, "Aperture Size"); m_nApertureSizeSlider->user_data((void*)(this)); // record self to be used by static callback functions m_nApertureSizeSlider->type(FL_HOR_NICE_SLIDER); m_nApertureSizeSlider->labelfont(FL_COURIER); m_nApertureSizeSlider->labelsize(12); m_nApertureSizeSlider->minimum(1); m_nApertureSizeSlider->maximum(5); m_nApertureSizeSlider->step(1); m_nApertureSizeSlider->value(ApertureSize); m_nApertureSizeSlider->align(FL_ALIGN_RIGHT); m_nApertureSizeSlider->callback(cb_ApertureSize); m_renderButton = new Fl_Button(240, 27, 70, 25, "&Render"); m_renderButton->user_data((void*)(this)); m_renderButton->callback(cb_render); m_stopButton = new Fl_Button(240, 55, 70, 25, "&Stop"); m_stopButton->user_data((void*)(this)); m_stopButton->callback(cb_stop); m_supersample = new Fl_Light_Button(10, 305, 110, 25, "Super Sample"); m_supersample->user_data((void*)(this)); m_supersample->callback(cb_supersample); m_jitter = new Fl_Light_Button(125, 305, 80, 25, "jitter"); m_jitter->user_data((void*)(this)); m_jitter->callback(cb_jitter); /*m_adaptive = new Fl_Light_Button(210, 305, 110, 25, "adaptive supersample"); m_adaptive->user_data((void*)(this)); m_adaptive->callback(cb_adaptive);*/ m_dof = new Fl_Light_Button(10, 340, 80, 25, "DOF"); m_dof->user_data((void*)(this)); m_dof->callback(cb_dof); m_MotionBlur = new Fl_Light_Button(95, 340, 80, 25, "MotionBlur"); m_MotionBlur->user_data((void*)(this)); m_MotionBlur->callback(cb_MotionBlur); m_useGlossyButton = new Fl_Light_Button(190, 340, 80, 25, "Use Glossy"); m_useGlossyButton->user_data((void*)(this)); m_useGlossyButton->callback(cb_useGlossy); m_mainWindow->callback(cb_exit2); m_mainWindow->when(FL_HIDE); m_mainWindow->end(); // image view m_traceGlWindow = new TraceGLWindow(100, 150, m_nSize, m_nSize, "Rendered Image"); m_traceGlWindow->end(); m_traceGlWindow->resizable(m_traceGlWindow); }
[ "wyangaz@connect.ust.hk" ]
wyangaz@connect.ust.hk
4010fdcdaadd03e851cbe7b239715bcd0fa8cbf4
6a51f1b3398766841aa038b1efd5ecd6864daf61
/packet.cpp
678062fb687d4bdcae056bda114be8342f68bc3c
[]
no_license
Smiley32/stratego
8539190714c7e621c013072d9dacf431e925937e
d60495a3830543f35a3fac15830dc0c44c89f57d
refs/heads/master
2021-09-08T02:52:58.699286
2018-02-27T14:53:16
2018-02-27T14:53:16
104,477,547
0
0
null
null
null
null
UTF-8
C++
false
false
614
cpp
#include "packet.h" #include <cstring> Packet::Packet() {} void Packet::append(char data) { std::size_t start = m_data.size(); m_data.resize(start + 1); m_data[start] = data; } /*void Packet::append(const void* data, std::size_t dataSize) { if(data && (dataSize > 0)) { std::size_t start = m_data.size(); m_data.resize(start + dataSize); std::memcpy(&m_data[start], data, dataSize); } }*/ void Packet::clear() { m_data.clear(); } const void* Packet::getData() const { return !m_data.empty() ? &m_data[0] : NULL; } std::size_t Packet::getDataSize() const { return m_data.size(); }
[ "jeannin.emile@laposte.net" ]
jeannin.emile@laposte.net
541d1b25bf149bfefcbeb1fa967b86d7d443ed70
297497957c531d81ba286bc91253fbbb78b4d8be
/third_party/libwebrtc/rtc_base/numerics/moving_percentile_filter.h
3d7aa27dd7223b0e536ddd58b84097b968867e94
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
marco-c/gecko-dev-comments-removed
7a9dd34045b07e6b22f0c636c0a836b9e639f9d3
61942784fb157763e65608e5a29b3729b0aa66fa
refs/heads/master
2023-08-09T18:55:25.895853
2023-08-01T00:40:39
2023-08-01T00:40:39
211,297,481
0
0
NOASSERTION
2019-09-29T01:27:49
2019-09-27T10:44:24
C++
UTF-8
C++
false
false
2,044
h
#ifndef RTC_BASE_NUMERICS_MOVING_PERCENTILE_FILTER_H_ #define RTC_BASE_NUMERICS_MOVING_PERCENTILE_FILTER_H_ #include <stddef.h> #include <cstddef> #include <list> #include "rtc_base/checks.h" #include "rtc_base/numerics/percentile_filter.h" namespace webrtc { template <typename T> class MovingPercentileFilter { public: MovingPercentileFilter(float percentile, size_t window_size); MovingPercentileFilter(const MovingPercentileFilter&) = delete; MovingPercentileFilter& operator=(const MovingPercentileFilter&) = delete; void Insert(const T& value); void Reset(); T GetFilteredValue() const; size_t GetNumberOfSamplesStored() const; private: PercentileFilter<T> percentile_filter_; std::list<T> samples_; size_t samples_stored_; const size_t window_size_; }; template <typename T> class MovingMedianFilter : public MovingPercentileFilter<T> { public: explicit MovingMedianFilter(size_t window_size) : MovingPercentileFilter<T>(0.5f, window_size) {} }; template <typename T> MovingPercentileFilter<T>::MovingPercentileFilter(float percentile, size_t window_size) : percentile_filter_(percentile), samples_stored_(0), window_size_(window_size) { RTC_CHECK_GT(window_size, 0); } template <typename T> void MovingPercentileFilter<T>::Insert(const T& value) { percentile_filter_.Insert(value); samples_.emplace_back(value); ++samples_stored_; if (samples_stored_ > window_size_) { percentile_filter_.Erase(samples_.front()); samples_.pop_front(); --samples_stored_; } } template <typename T> T MovingPercentileFilter<T>::GetFilteredValue() const { return percentile_filter_.GetPercentileValue(); } template <typename T> void MovingPercentileFilter<T>::Reset() { percentile_filter_.Reset(); samples_.clear(); samples_stored_ = 0; } template <typename T> size_t MovingPercentileFilter<T>::GetNumberOfSamplesStored() const { return samples_stored_; } } #endif
[ "mcastelluccio@mozilla.com" ]
mcastelluccio@mozilla.com
efb2dd04e826aa6e0ba637917ed2be1977558c81
cfd9878263624bfff0e0348b3372ed0b5b652ed7
/zachariah3D/run/system/fvSolution
b6afbfacfd16e74ffb0d1f3bf83ec0232493c6d6
[ "MIT" ]
permissive
CathyZZZ/OpenFOAM
cf6acb610fbe381512ae8ceb7e4d2646d1533080
2e7e869d8fcd0b67cfc0a3be3a4aacf0708dd504
refs/heads/master
2020-04-02T04:17:07.190247
2019-02-27T08:54:16
2019-02-27T08:54:16
154,009,515
0
0
null
null
null
null
UTF-8
C++
false
false
3,060
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "system"; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { pAir { solver PCG; preconditioner DIC; // Preconditioning => page: U-115 tolerance 1e-09; relTol 0.0; minIter 1; maxIter 700; } Uair { solver PBiCG; preconditioner DILU; // Preconditioning => page: U-115 tolerance 1e-09; relTol 0.0; minIter 1; maxIter 700; } nIonsN { solver PBiCG; preconditioner DILU; // Preconditioning => page: U-115 tolerance 1e-09; relTol 0.0; minIter 1; maxIter 700; } nIonsP { solver PBiCG; preconditioner DILU; // Preconditioning => page: U-115 tolerance 1e-09; relTol 0.0; minIter 1; maxIter 700; } nPart { solver PBiCG; preconditioner DILU; // Preconditioning => page: U-115 tolerance 1e-09; relTol 0.0; minIter 1; maxIter 700; } phiE { solver PCG; preconditioner DIC; // Preconditioning => page: U-115 tolerance 1e-09; relTol 0.0; minIter 1; maxIter 700; } /* T { solver PBiCG; preconditioner DILU; tolerance 1e-10; relTol 0.0; minIter 1; maxIter 5000; } */ T { solver PCG; preconditioner DIC; // Preconditioning => page: U-115 tolerance 1e-09; relTol 0.0; minIter 1; maxIter 700; } } PISO { nIteration 0; nCorrectors 2; nNonOrthogonalCorrectors 0; pAirRefCell 0; pAirRefValue 0; pFuelRefCell 0; pFuelRefValue 0; } relaxationFactors { pAir 0.3; Uair 0.7; nIons 0.5; nPart 0.5; } // ************************************************************************* //
[ "ziyizhu00@gmail.com" ]
ziyizhu00@gmail.com
bac72f7901bd2a79df3a897506d9008d75e0646b
0d0e78c6262417fb1dff53901c6087b29fe260a0
/as/include/tencentcloud/as/v20180419/model/ExecuteScalingPolicyResponse.h
ba0337a384910d7affd8bf404bd32266e9c9f0e2
[ "Apache-2.0" ]
permissive
li5ch/tencentcloud-sdk-cpp
ae35ffb0c36773fd28e1b1a58d11755682ade2ee
12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4
refs/heads/master
2022-12-04T15:33:08.729850
2020-07-20T00:52:24
2020-07-20T00:52:24
281,135,686
1
0
Apache-2.0
2020-07-20T14:14:47
2020-07-20T14:14:46
null
UTF-8
C++
false
false
2,198
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TENCENTCLOUD_AS_V20180419_MODEL_EXECUTESCALINGPOLICYRESPONSE_H_ #define TENCENTCLOUD_AS_V20180419_MODEL_EXECUTESCALINGPOLICYRESPONSE_H_ #include <string> #include <vector> #include <map> #include <tencentcloud/core/AbstractModel.h> namespace TencentCloud { namespace As { namespace V20180419 { namespace Model { /** * ExecuteScalingPolicy返回参数结构体 */ class ExecuteScalingPolicyResponse : public AbstractModel { public: ExecuteScalingPolicyResponse(); ~ExecuteScalingPolicyResponse() = default; CoreInternalOutcome Deserialize(const std::string &payload); /** * 获取伸缩活动ID * @return ActivityId 伸缩活动ID */ std::string GetActivityId() const; /** * 判断参数 ActivityId 是否已赋值 * @return ActivityId 是否已赋值 */ bool ActivityIdHasBeenSet() const; private: /** * 伸缩活动ID */ std::string m_activityId; bool m_activityIdHasBeenSet; }; } } } } #endif // !TENCENTCLOUD_AS_V20180419_MODEL_EXECUTESCALINGPOLICYRESPONSE_H_
[ "jimmyzhuang@tencent.com" ]
jimmyzhuang@tencent.com
2cc0df724a5690b5e884c860cf827c63c6e6893b
450f507ebf25d5bb450447cadb18685908e20fbf
/Engine/src/Platform/OpenGL/OpenGLContext.cpp
6467250c17d7d204ffb6adc30028122e52b81c9b
[]
no_license
crasheds22/GameEngine
02038abf4ce6c73bfe341b8a85af54017e7073ba
c8e698e4e772be9ac5bb9b0f4fe80bcf5c18249c
refs/heads/main
2023-07-16T10:56:12.017780
2021-08-21T12:00:32
2021-08-21T12:00:32
391,243,392
0
0
null
2021-08-21T11:59:21
2021-07-31T03:14:14
C++
UTF-8
C++
false
false
748
cpp
#include "ngpch.h" #include "OpenGLContext.h" #include "GLFW/glfw3.h" #include "glad/glad.h" namespace Engine { OpenGLContext::OpenGLContext(GLFWwindow* windowHandle) : mWindowHandle(windowHandle) { NG_CORE_ASSERT(mWindowHandle, "Window handle is null"); } void OpenGLContext::Init() { glfwMakeContextCurrent(mWindowHandle); int status = gladLoadGLLoader((GLADloadproc)glfwGetProcAddress); NG_CORE_ASSERT(status, "Failed to init GLAD"); NG_CORE_INFO("OpenGL Info:"); NG_CORE_INFO(" Vendor: {0}", glGetString(GL_VENDOR)); NG_CORE_INFO(" Renderer: {0}", glGetString(GL_RENDERER)); NG_CORE_INFO(" Version: {0}", glGetString(GL_VERSION)); } void OpenGLContext::SwapBuffers() { glfwSwapBuffers(mWindowHandle); } }
[ "a.thomson22@outlook.com" ]
a.thomson22@outlook.com
9ce17a9cea3dab5e42469a95b7e51a2d359555f0
b8179c8164d459e2796e50124014fec9c4ddaf41
/a.cpp
77cb305d841c99292089faed4057673ebf5ac2d0
[]
no_license
BiralTuya/URI
91310d3e28b2626a9f4cb57ff53415b22a34524b
e6b5a3bc4a3bb85c5e8b6af062d723fbfeef817b
refs/heads/master
2021-01-19T12:26:14.745322
2016-10-10T14:57:15
2016-10-10T14:57:15
82,310,740
0
0
null
null
null
null
UTF-8
C++
false
false
463
cpp
#include<iostream> using namespace std; int main(){ int n=0,v=0; cin>>n; for(int i=0;i<n;i++){ cin>>v; if(v%2==0 && v>0) cout<<"EVEN POSITIVE"<<endl; if(v%2==0 && v<0) cout<<"EVEN NEGETIVE"<<endl; if(v%2!=0 && v>0) cout<<"ODD POSITIVE"<<endl; if(v%2!=0 && v<0) cout<<"ODD NEGETIVE"<<endl; if(v==0) cout<<"NULL"<<endl; } return 0; }
[ "Sanzila Hossain Tuya" ]
Sanzila Hossain Tuya
88ee85641e76185f5990ebb2966f88252cc43560
99a466aba71f86a69fe38b47e87d9333d6251454
/contest/439/b.cpp
334747812726900730b5464ed833cd260ec0f078
[]
no_license
m-nny/Codeforces
ca84be67110c5c5ba0f986652b3b195f964a5026
fbd5918f567a907005bb65b283595a2f0974e412
refs/heads/master
2021-09-04T20:37:02.533540
2018-01-22T07:47:39
2018-01-22T07:47:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
349
cpp
#include <bits/stdc++.h> using namespace std; #define maxn (int)(1e5 + 12) int n, x, a[maxn]; long long ans; int main() { scanf("%d%d", &n, &x); for (int i = 0; i < n; i++) scanf("%d", &a[i]); sort (a, a + n); for (int i = 0; i < n; i++) { ans += (x + 0ll) * a[i]; x = max(1, x - 1); } printf("%I64d", ans); }
[ "Alibek.manabayev@gmail.com" ]
Alibek.manabayev@gmail.com
61208f8741db64f4fe42dc901692daad7c926fa3
2c468a95f18331aa30eda764e913f15f5e8587f4
/MyBattleTank/Source/MyBattleTank/Private/MyTankMovementComponent.cpp
6013fc483976eaf468f54b480379b5fedd000afb
[]
no_license
FixeoUnreal/04_MyBattleTank
ba93be5b0211ad44c5ed1e63cbcfdbc12769a2c2
38ca7a10d0b99760c24cd8c8429b3f793bdb26fd
refs/heads/master
2020-03-12T04:49:36.495808
2018-06-13T10:49:51
2018-06-13T10:49:51
130,452,436
0
0
null
null
null
null
UTF-8
C++
false
false
1,177
cpp
// Copyright FIXEO #include "MyBattleTank/Public/MyTankMovementComponent.h" #include "MyBattleTank/Public/MyTankTrack.h" void UMyTankMovementComponent::IntendMoveForward(float Throw) { if (!ensure(LeftTrack && RightTrack)) { return; } LeftTrack->SetThrottle(Throw); RightTrack->SetThrottle(Throw); } void UMyTankMovementComponent::IntendTurnRight(float Throw) { if (!ensure(LeftTrack && RightTrack)) { return; } LeftTrack->SetThrottle(Throw); RightTrack->SetThrottle(-Throw); } void UMyTankMovementComponent::Initialise(UMyTankTrack * LeftTrackToSet, UMyTankTrack * RightTrackToSet) { LeftTrack = LeftTrackToSet; RightTrack = RightTrackToSet; } void UMyTankMovementComponent::RequestDirectMove(const FVector & MoveVelocity, bool bForceMaxSpeed) { // No need to call Super as we're replacing the functionality auto TankForward = GetOwner()->GetActorForwardVector().GetSafeNormal(); auto AIForwardIntention = MoveVelocity.GetSafeNormal(); auto ForwardThrow = FVector::DotProduct(TankForward, AIForwardIntention); IntendMoveForward(ForwardThrow); auto RightThrow = FVector::CrossProduct(TankForward, AIForwardIntention).Z; IntendTurnRight(RightThrow); }
[ "giang151093@yahoo.com.vn" ]
giang151093@yahoo.com.vn
79ece81058b69827bc10cf2f215c5c1626d07f69
dc02e94a6b7f09714a85198af3ce5fb2cbc0def4
/src/engine/client/graphics.h
817c7dc014b7a7b631b10552c2965c140410bc09
[ "Zlib", "LicenseRef-scancode-other-permissive" ]
permissive
SailorEx/Taschenrechner
1c87791464f9cbeb094edaac7021703e3464ec93
f4ac996469c5d02f51c92b2d0b60ba436bcaeeba
refs/heads/master
2020-12-13T07:37:47.162881
2015-01-11T21:18:52
2015-01-11T21:18:52
234,348,839
0
1
NOASSERTION
2020-01-16T15:20:57
2020-01-16T15:20:56
null
UTF-8
C++
false
false
5,011
h
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ #ifndef ENGINE_CLIENT_GRAPHICS_H #define ENGINE_CLIENT_GRAPHICS_H class CGraphics_OpenGL : public IEngineGraphics { protected: class IStorage *m_pStorage; class IConsole *m_pConsole; // typedef struct { float x, y, z; } CPoint; typedef struct { float u, v; } CTexCoord; typedef struct { float r, g, b, a; } CColor; typedef struct { CPoint m_Pos; CTexCoord m_Tex; CColor m_Color; } CVertex; enum { MAX_VERTICES = 32*1024, MAX_TEXTURES = 1024*4, MAX_SHADERS = 64, DRAWING_QUADS=1, DRAWING_LINES=2 }; CVertex m_aVertices[MAX_VERTICES]; int m_NumVertices; CColor m_aColor[4]; CTexCoord m_aTexture[4]; typedef struct CShader { bool m_Active; int m_ProgramHandle; int m_VertexHandle; int m_FragmentHandle; }; CShader m_Shaders[MAX_SHADERS]; GLuint m_Fbo; GLuint m_FboDepth; GLuint m_FboTexture; GLuint m_ActiveTexture; int m_ShaderID; int m_TextureOffset[3]; bool m_ShaderEnable; bool m_UseFBO; bool m_RenderEnable; float m_Rotation; int m_Drawing; bool m_DoScreenshot; char m_aScreenshotName[128]; float m_ScreenX0; float m_ScreenY0; float m_ScreenX1; float m_ScreenY1; int m_InvalidTexture; struct CTexture { GLuint m_Tex; int m_MemSize; int m_Flags; int m_Next; }; CTexture m_aTextures[MAX_TEXTURES]; int m_FirstFreeTexture; int m_TextureMemoryUsage; void Flush(); void AddVertices(int Count); void Rotate4(const CPoint &rCenter, CVertex *pPoints); void ShaderLoad(const char *vs, const char *fs); static unsigned char Sample(int w, int h, const unsigned char *pData, int u, int v, int Offset, int ScaleW, int ScaleH, int Bpp); static unsigned char *Rescale(int Width, int Height, int NewWidth, int NewHeight, int Format, const unsigned char *pData); public: CGraphics_OpenGL(); virtual void ClipEnable(int x, int y, int w, int h); virtual void ClipDisable(); virtual void BlendNone(); virtual void BlendNormal(); virtual void BlendAdditive(); virtual void BlendScreen(); virtual void BlendMultiply(); virtual void BlendColor(); virtual void WrapNormal(); virtual void WrapClamp(); virtual int MemoryUsage() const; virtual void MapScreen(float TopLeftX, float TopLeftY, float BottomRightX, float BottomRightY); virtual void GetScreen(float *pTopLeftX, float *pTopLeftY, float *pBottomRightX, float *pBottomRightY); virtual void LinesBegin(); virtual void LinesEnd(); virtual void LinesDraw(const CLineItem *pArray, int Num); virtual int UnloadTexture(int Index); virtual int LoadTextureRaw(int Width, int Height, int Format, const void *pData, int StoreFormat, int Flags); virtual int LoadTextureRawSub(int TextureID, int x, int y, int Width, int Height, int Format, const void *pData); // simple uncompressed RGBA loaders virtual int LoadTexture(const char *pFilename, int StorageType, int StoreFormat, int Flags); virtual int LoadPNG(CImageInfo *pImg, const char *pFilename, int StorageType); void ScreenshotDirect(const char *pFilename); virtual void ShaderSet(int ID); virtual void ShaderUniformSet(const char* name, float *var, int num); virtual void ShaderBegin(); virtual void ShaderEnd(); virtual void FrameBufferToScreen(); virtual void UseFrameBuffer(bool active); virtual unsigned int FrameBufferTexture() { return (unsigned int)m_FboTexture; } virtual void TextureSet(int TextureID); virtual void Clear(float r, float g, float b); virtual void QuadsBegin(); virtual void QuadsEnd(); virtual void QuadsSetRotation(float Angle); virtual void SetColorVertex(const CColorVertex *pArray, int Num); virtual void SetColor(float r, float g, float b, float a); virtual void QuadsSetSubset(float TlU, float TlV, float BrU, float BrV); virtual void QuadsSetSubsetFree( float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3); virtual void QuadsDraw(CQuadItem *pArray, int Num); virtual void QuadsDrawTL(const CQuadItem *pArray, int Num); virtual void QuadsDrawFreeform(const CFreeformItem *pArray, int Num); virtual void QuadsText(float x, float y, float Size, const char *pText); virtual int Init(); virtual void ShaderInit(); virtual void FrameBufferInit(); virtual void FrameBufferDepthBufferInit(); virtual void FrameBufferTextureInit(); }; class CGraphics_SDL : public CGraphics_OpenGL { SDL_Surface *m_pScreenSurface; int TryInit(); int InitWindow(); public: CGraphics_SDL(); virtual int Init(); virtual void Shutdown(); virtual void Minimize(); virtual void Maximize(); virtual int WindowActive(); virtual int WindowOpen(); virtual void TakeScreenshot(const char *pFilename); virtual void Swap(); virtual int GetVideoModes(CVideoMode *pModes, int MaxModes); // syncronization virtual void InsertSignal(semaphore *pSemaphore); virtual bool IsIdle(); virtual void WaitForIdle(); }; #endif
[ "xshaddi@hotmail.com" ]
xshaddi@hotmail.com
5cb5462e462c86fa538b9e0ba0e6084a5d03d80c
72f8f4fdf1dfdc94b5c76e95ee7af40675ee3986
/C-Books/CLion-Primer/coder/maths/linear-algebra/src/main.cpp
6ce0932bca71f1eccc43d356a94b1eafaf26b71e
[ "MIT" ]
permissive
lauer3912/LoveYourBooks
8e4de283a68a9e23a4b5cc0f5c614768e133bbe8
23c894b8b2d3e513626045441a873c03486e14ba
refs/heads/master
2022-12-24T16:51:28.422214
2021-08-25T05:20:10
2021-08-25T05:20:10
160,127,907
2
0
MIT
2022-12-09T17:36:16
2018-12-03T03:33:51
HTML
UTF-8
C++
false
false
216
cpp
#include <iostream> #include "ArmadilloHelper.h" #include "EigenHelper.h" int main() { std::cout << "Hello, World!" << std::endl; // ArmadilloHelper::RunTest(); EigenHelper::RunTest(); return 0; }
[ "lauer3912@gmail.com" ]
lauer3912@gmail.com
6144714c640a32caf49188341d91a4b85e2ecb3d
c3ffda360b1c77218ee4b09ef941ef2e58a82ec3
/Playground/GStreamerTutorialWithC++/GstSupport/src/Support.cpp
8a49298682e6f306f327fb32c77f150d55dea343
[]
no_license
StackedCrooked/stacked-crooked
187ab1f9465223949732336444aa104277223072
08cd3e7ea1d7d326792c536f0346f220c347f5e4
refs/heads/master
2023-08-15T15:37:43.635922
2023-07-19T22:47:46
2023-07-19T22:47:46
32,498,571
5
1
null
null
null
null
UTF-8
C++
false
false
16,785
cpp
#include "Gst/Support.h" #include "Gst/MakeString.h" #include <gst/interfaces/propertyprobe.h> #include <stdexcept> namespace Gst { namespace Pipeline { GstElement * Create(const std::string & inName) { GstElement * pipeline = gst_pipeline_new(inName.c_str()); if (!pipeline) { throw std::runtime_error("Failed to create a pipeline. "); } return pipeline; } GstElement * Parse(const std::string & inPipelineDescription) { GstElement * result = 0; GError * error(0); result = gst_parse_launch(inPipelineDescription.c_str(), &error); if (error) { std::string msg = std::string("Parsing pipeline failed. Reason: ") + error->message; throw std::runtime_error(msg); } return result; } GstState GetState(const GstElement * inElement) { GstState state(GST_STATE_VOID_PENDING), pending(GST_STATE_VOID_PENDING); GstStateChangeReturn ret = gst_element_get_state(const_cast<GstElement*>(inElement), &state, &pending, 1000*1000*1000); if (GST_STATE_CHANGE_FAILURE == ret) { throw std::runtime_error("Failed to obtain the pipeline state. "); } return state; } void SetState(GstElement * inElement, GstState inState) { GstStateChangeReturn ret = gst_element_set_state(inElement, inState); if (GST_STATE_CHANGE_FAILURE == ret) { std::string msg = Gst::MakeString() << "Failed to change the pipeline state to: " << Gst::Logging::ToString(inState) << ". "; throw std::runtime_error(msg); } } void SendEOS(GstElement * inElement) { // This function takes owership of the provided event. gst_element_send_event(inElement, gst_event_new_eos()); } } // namespace Pipeline /** * Bin functions */ namespace Bin { GstElement * Create(const std::string & inName) { ScopedObject<GstElement> result(gst_bin_new(inName.c_str())); if (!result) { throw std::runtime_error("Failed to create GstBin object."); } return result.release(); } GstElement * Create(GstElement * inPipeline, const std::string & inName) { ScopedObject<GstElement> result(Create(inName)); if (!gst_bin_add(GST_BIN(inPipeline), result.get())) { throw std::runtime_error("Failed to add bin to pipeline."); } return result.release(); } GstElement * Parse(const std::string & inDescription) { GstElement * result = 0; GError * error(0); result = gst_parse_bin_from_description(inDescription.c_str(), true, &error); if (error) { std::string msg = std::string("Parsing bin description failed. Reason: ") + error->message; throw std::runtime_error(msg); } return result; } void AddElement(GstElement * inBin, GstElement * inElement) { if (!gst_bin_add(GST_BIN(inBin), inElement)) { throw std::runtime_error("Failed to add element to bin"); } } void RemoveElement(GstElement * inBin, GstElement * inElement) { if (!gst_bin_remove(GST_BIN(inBin), inElement)) { throw std::runtime_error("Failed to remove element to bin"); } } GstElement * GetElementByName(GstBin * inBin, const std::string & inName) { ScopedObject<GstElement> result(gst_bin_get_by_name(inBin, inName.c_str())); if (!result) { std::string msg = MakeString() << "Bin does not contain an element with name " << inName << ". "; throw std::runtime_error(msg); } return result.release(); } } // namespace Bin /** * Element functions */ namespace Element { GstElement * Create(const std::string & inType, const std::string & inName) { GstElement * element = gst_element_factory_make(inType.c_str(), inName.c_str()); if (!element) { std::string msg(Gst::MakeString() << "Failed to create element of type " << inType << ". "); throw std::runtime_error(msg); } return element; } GstElement * Create(GstElement * inPipeline, const std::string & inType, const std::string & inName) { ScopedObject<GstElement> element(Create(inType, inName.c_str())); if (!gst_bin_add(GST_BIN(inPipeline), element.get())) { throw std::runtime_error("Failed to add element to pipeline"); } return element.release(); } void SetState(GstElement * inElement, GstState inState) { GstStateChangeReturn ret = gst_element_set_state(inElement, inState); if (GST_STATE_CHANGE_FAILURE == ret) { std::string msg = Gst::MakeString() << "Failed to change the element state to: " << Gst::Logging::ToString(inState) << ". "; throw std::runtime_error(msg); } } GstState GetState(const GstElement * inElement) { GstState state(GST_STATE_VOID_PENDING), pending(GST_STATE_VOID_PENDING); GstStateChangeReturn ret = gst_element_get_state(const_cast<GstElement*>(inElement), &state, &pending, 1000*1000*1000); if (GST_STATE_CHANGE_FAILURE == ret) { throw std::runtime_error("Failed to obtain the pipeline state. "); } return state; } GstPad * GetStaticPad(GstElement * inElement, const std::string & inName) { ScopedObject<GstPad> pad(gst_element_get_static_pad(inElement, inName.c_str())); if (!pad) { std::string msg(Gst::MakeString() << "Failed to get static pad with name " << inName); throw std::runtime_error(msg); } return pad.release(); } GstPad * GetRequestPad(GstElement * inElement, const std::string & inName) { ScopedObject<GstPad> pad(gst_element_get_request_pad(inElement, inName.c_str())); if (!pad) { std::string msg(Gst::MakeString() << "Failed to get request pad of type. "); throw std::runtime_error(msg); } return pad.release(); } GstPad * GetExistingPadByName(GstElement * inElement, const std::string & inPadName) { GstPad * result(0); GstIterator * it = gst_element_iterate_pads(inElement); if (!it) { throw std::runtime_error("Failed to create an iterator for the given element."); } bool done = false; while (!done) { gpointer pad = 0; switch (gst_iterator_next(it, &pad)) { case GST_ITERATOR_OK: { if (inPadName == GST_PAD_NAME(pad)) { result = GST_PAD(pad); done = true; } break; } case GST_ITERATOR_RESYNC: { gst_iterator_resync(it); break; } case GST_ITERATOR_ERROR: { done = true; break; } case GST_ITERATOR_DONE: { done = true; break; } }; } gst_iterator_free(it); if (!result) { std::string msg = MakeString() << "Element does not contain a pad with name " << inPadName << ". "; throw std::runtime_error(msg); } return result; } void Link(GstElement * inLHS, GstElement * inRHS) { if (!gst_element_link(inLHS, inRHS)) { std::string msg(Gst::MakeString() << "Failed to link elements " << inLHS->object.name << " and " << inRHS->object.name << ". "); throw std::runtime_error(msg); } } void Link(GstElement * a, GstElement * b, GstElement * c) { Link(a, b); Link(b, c); } void Link(GstElement * a, GstElement * b, GstElement * c, GstElement * d) { Link(a, b); Link(b, c); Link(c, d); } void GetDeviceNames(GstElement * inCaptureSrcEl, std::vector<std::string> & outDeviceNames) { GstPropertyProbe * probe = GST_PROPERTY_PROBE(inCaptureSrcEl); GValueArray * values = gst_property_probe_get_values_name(probe, "device-name"); for (guint i = 0; i < values->n_values; ++i) { GValue * value = g_value_array_get_nth(values, i); if (!value) { continue; } const gchar * stringValue = g_value_get_string(value); if (!stringValue) { continue; } outDeviceNames.push_back(stringValue); } } } // namespace Element /** * Pad functions */ namespace Pad { void Link(GstPad * inLHS, GstPad * inRHS) { GstPadLinkReturn ret = gst_pad_link(inLHS, inRHS); if (ret != GST_PAD_LINK_OK) { std::string msg(Gst::MakeString() << "Failed to link pads. Reason: " << Logging::ToString(ret) << ". "); throw std::runtime_error(msg); } } bool IsAudioPad(GstPad * inPad) { ScopedObject<GstCaps> caps(gst_pad_get_caps(inPad)); std::string capsName = Caps::GetName(caps.get()); return NULL != g_strrstr(capsName.c_str(), "audio"); } bool IsVideoPad(GstPad * inPad) { ScopedObject<GstCaps> caps(gst_pad_get_caps(inPad)); std::string capsName = Caps::GetName(caps.get()); return NULL != g_strrstr(capsName.c_str(), "video"); } } // namespace Pad /** * Caps functions */ namespace Caps { std::string GetName(GstCaps * inCaps) { return gst_structure_get_name(gst_caps_get_structure(inCaps, 0)); } } // namespace Caps /** * Logging functions */ namespace Logging { bool IsLogMessage(GstMessage * msg) { switch (msg->type) { case GST_MESSAGE_INFO: case GST_MESSAGE_WARNING: case GST_MESSAGE_ERROR: { return true; } default: { return false; } } } std::string GetLogMessage(GstMessage * msg) { std::string ret; gchar * debug(0); GError * error(0); switch (msg->type) { case GST_MESSAGE_INFO: { gst_message_parse_info(msg, &error, &debug); break; } case GST_MESSAGE_WARNING: { gst_message_parse_warning(msg, &error, &debug); break; } case GST_MESSAGE_ERROR: { gst_message_parse_error(msg, &error, &debug); break; } default: { ret = "This message is not of type info, warning or error. "; break; } } if (error) { ret += std::string(error->message) + ". "; } if (debug) { ret += "Debug string: " + std::string(debug) + ". "; } g_free(debug); g_error_free(error); return ret; } std::string ToString(GstState inState) { switch (inState) { case GST_STATE_VOID_PENDING: { return "GST_STATE_VOID_PENDING"; } case GST_STATE_NULL: { return "GST_STATE_NULL"; } case GST_STATE_READY: { return "GST_STATE_READY"; } case GST_STATE_PAUSED: { return "GST_STATE_PAUSED"; } case GST_STATE_PLAYING: { return "GST_STATE_PLAYING"; } default: { return "Unknown state!"; } } } std::string ToString(GstStateChangeReturn inStateChangeReturn) { switch (inStateChangeReturn) { case GST_STATE_CHANGE_FAILURE: { return "GST_STATE_CHANGE_FAILURE"; } case GST_STATE_CHANGE_SUCCESS: { return "GST_STATE_CHANGE_SUCCESS"; } case GST_STATE_CHANGE_ASYNC: { return "GST_STATE_CHANGE_ASYNC"; } case GST_STATE_CHANGE_NO_PREROLL: { return "GST_STATE_CHANGE_NO_PREROLL"; } default: { throw std::runtime_error("Invalid GstStateReturn."); } } } GstState FromString(const std::string & inState) { if (inState == "GST_STATE_VOID_PENDING") { return GST_STATE_VOID_PENDING; } else if (inState == "GST_STATE_NULL") { return GST_STATE_NULL; } else if (inState == "GST_STATE_READY") { return GST_STATE_READY; } else if (inState == "GST_STATE_PAUSED") { return GST_STATE_PAUSED; } else if (inState == "GST_STATE_PLAYING") { return GST_STATE_PLAYING; } std::string msg = "Invalid state: " + inState; throw std::runtime_error(msg); } std::string ToString(GstMessageType inMessageType) { switch (inMessageType) { case GST_MESSAGE_UNKNOWN: return "GST_MESSAGE_UNKNOWN"; case GST_MESSAGE_EOS: return "GST_MESSAGE_EOS"; case GST_MESSAGE_ERROR: return "GST_MESSAGE_ERROR"; case GST_MESSAGE_WARNING: return "GST_MESSAGE_WARNING"; case GST_MESSAGE_INFO: return "GST_MESSAGE_INFO"; case GST_MESSAGE_TAG: return "GST_MESSAGE_TAG"; case GST_MESSAGE_BUFFERING: return "GST_MESSAGE_BUFFERING"; case GST_MESSAGE_STATE_CHANGED: return "GST_MESSAGE_STATE_CHANGED"; case GST_MESSAGE_STATE_DIRTY: return "GST_MESSAGE_STATE_DIRTY"; case GST_MESSAGE_STEP_DONE: return "GST_MESSAGE_STEP_DONE"; case GST_MESSAGE_CLOCK_PROVIDE: return "GST_MESSAGE_CLOCK_PROVIDE"; case GST_MESSAGE_CLOCK_LOST: return "GST_MESSAGE_CLOCK_LOST"; case GST_MESSAGE_NEW_CLOCK: return "GST_MESSAGE_NEW_CLOCK"; case GST_MESSAGE_STRUCTURE_CHANGE: return "GST_MESSAGE_STRUCTURE_CHANGE"; case GST_MESSAGE_STREAM_STATUS: return "GST_MESSAGE_STREAM_STATUS"; case GST_MESSAGE_APPLICATION: return "GST_MESSAGE_APPLICATION"; case GST_MESSAGE_ELEMENT: return "GST_MESSAGE_ELEMENT"; case GST_MESSAGE_SEGMENT_START: return "GST_MESSAGE_SEGMENT_START"; case GST_MESSAGE_SEGMENT_DONE: return "GST_MESSAGE_SEGMENT_DONE"; case GST_MESSAGE_DURATION: return "GST_MESSAGE_DURATION"; case GST_MESSAGE_LATENCY: return "GST_MESSAGE_LATENCY"; case GST_MESSAGE_ASYNC_START: return "GST_MESSAGE_ASYNC_START"; case GST_MESSAGE_ASYNC_DONE: return "GST_MESSAGE_ASYNC_DONE"; case GST_MESSAGE_REQUEST_STATE: return "GST_MESSAGE_REQUEST_STATE"; case GST_MESSAGE_STEP_START: return "GST_MESSAGE_STEP_START"; case GST_MESSAGE_ANY: return "GST_MESSAGE_ANY"; default: { throw std::logic_error("Unknown GstMessageType"); } } } std::string ToString(GstPadLinkReturn inPadLinkReturn) { switch (inPadLinkReturn) { case GST_PAD_LINK_OK: { return "GST_PAD_LINK_OK"; } case GST_PAD_LINK_WRONG_HIERARCHY: { return "GST_PAD_LINK_WRONG_HIERARCHY"; } case GST_PAD_LINK_WAS_LINKED: { return "GST_PAD_LINK_WAS_LINKED"; } case GST_PAD_LINK_WRONG_DIRECTION: { return "GST_PAD_LINK_WRONG_DIRECTION"; } case GST_PAD_LINK_NOFORMAT: { return "GST_PAD_LINK_NOFORMAT"; } case GST_PAD_LINK_NOSCHED: { return "GST_PAD_LINK_NOSCHED"; } case GST_PAD_LINK_REFUSED: { return "GST_PAD_LINK_REFUSED"; } default: { return "Invalid GstPadLinkReturn value!"; } } } std::string ToString(GstStreamStatusType inGstStreamStatusType) { switch (inGstStreamStatusType) { case GST_STREAM_STATUS_TYPE_CREATE: { return "GST_STREAM_STATUS_TYPE_CREATE"; } case GST_STREAM_STATUS_TYPE_ENTER: { return "GST_STREAM_STATUS_TYPE_ENTER"; } case GST_STREAM_STATUS_TYPE_LEAVE: { return "GST_STREAM_STATUS_TYPE_LEAVE"; } case GST_STREAM_STATUS_TYPE_DESTROY: { return "GST_STREAM_STATUS_TYPE_DESTROY"; } case GST_STREAM_STATUS_TYPE_START: { return "GST_STREAM_STATUS_TYPE_START"; } case GST_STREAM_STATUS_TYPE_PAUSE: { return "GST_STREAM_STATUS_TYPE_PAUSE"; } case GST_STREAM_STATUS_TYPE_STOP: { return "GST_STREAM_STATUS_TYPE_STOP"; } default: { return "Invalid value!"; } } } } // namespace Logging } // namespace Gst
[ "StackedCrooked@users.noreply.github.com" ]
StackedCrooked@users.noreply.github.com
52c7a0f18b1ab75ebe7e9eea144fdd3222358f05
5367342507ac9bb8a2032bfb15a023aadc02c522
/src/renderer/win/winglextensionsloader.cpp
329290c0ee94826bebb1479cc1a665f15de8ca1c
[]
no_license
allexzander/rendering_framework
1567811418db334cb8ae34487a1e1c637f792c02
6ef1e7c54ed896951ba15db284840ecd11ce19e4
refs/heads/master
2016-09-06T15:23:15.839390
2015-08-04T19:58:14
2015-08-04T19:58:14
35,037,464
0
0
null
null
null
null
UTF-8
C++
false
false
2,901
cpp
#include "renderer/win/winglextensionsloader.h" #include <GL/wglext.h> namespace ALZ_RENDERER { WinGlExtensionsLoader::WinGlExtensionsLoader() { glGenVertexArrays = nullptr; glBindVertexArray = nullptr; glGenBuffers = nullptr; glBindBuffer = nullptr; glBufferData = nullptr; glVertexAttribPointer = nullptr; glEnableVertexAttribArray = nullptr; glDisableVertexAttribArray = nullptr; glDeleteBuffers = nullptr; glDeleteVertexArrays = nullptr; glCreateShader = nullptr; glShaderSource = nullptr; glCompileShader = nullptr; glCreateProgram = nullptr; glLinkProgram = nullptr; glUseProgram = nullptr; glAttachShader = nullptr; glDetachShader = nullptr; glDeleteShader = nullptr; glDeleteProgram = nullptr; glGetUniformLocation = nullptr; glUniformMatrix4fv = nullptr; loadExtensions(); } WinGlExtensionsLoader::~WinGlExtensionsLoader() { } void WinGlExtensionsLoader::loadExtensions() { glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)wglGetProcAddress("glGenVertexArrays"); glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)wglGetProcAddress("glBindVertexArray"); glGenBuffers = (PFNGLGENBUFFERSPROC)wglGetProcAddress("glGenBuffers"); glBindBuffer = (PFNGLBINDBUFFERPROC)wglGetProcAddress("glBindBuffer"); glBufferData = (PFNGLBUFFERDATAPROC)wglGetProcAddress("glBufferData"); glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)wglGetProcAddress("glVertexAttribPointer"); glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)wglGetProcAddress("glEnableVertexAttribArray"); glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)wglGetProcAddress("glDisableVertexAttribArray"); glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)wglGetProcAddress("glDeleteBuffers"); glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)wglGetProcAddress("glDeleteVertexArrays"); glCreateShader = (PFNGLCREATESHADERPROC)wglGetProcAddress("glCreateShader"); glShaderSource = (PFNGLSHADERSOURCEPROC)wglGetProcAddress("glShaderSource"); glCompileShader = (PFNGLCOMPILESHADERPROC)wglGetProcAddress("glCompileShader"); glCreateProgram = (PFNGLCREATEPROGRAMPROC)wglGetProcAddress("glCreateProgram"); glLinkProgram = (PFNGLLINKPROGRAMPROC)wglGetProcAddress("glLinkProgram"); glUseProgram = (PFNGLUSEPROGRAMPROC)wglGetProcAddress("glUseProgram"); glAttachShader = (PFNGLATTACHSHADERPROC)wglGetProcAddress("glAttachShader"); glDetachShader = (PFNGLDETACHSHADERPROC)wglGetProcAddress("glDetachShader"); glDeleteShader = (PFNGLDELETESHADERPROC)wglGetProcAddress("glDeleteShader"); glDeleteProgram = (PFNGLDELETEPROGRAMPROC)wglGetProcAddress("glDeleteProgram"); glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)wglGetProcAddress("glGetUniformLocation"); glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)wglGetProcAddress("glUniformMatrix4fv"); } WinGlExtensionsLoader* WinGlExtensionsLoader::pInstance = nullptr; }
[ "blackslayer4@gmail.com" ]
blackslayer4@gmail.com
108def4a0d45d8803d289b9a15fc2bb3e451f170
5ada15984f0c484e9ecc0ec27d87d5b2902a0890
/trace_src/jiao.cpp
82ea23e147f4b9944add8a4db2ae3f5b8a2f81e2
[]
no_license
dongchen-coder/locapo
a1199d6d5821b9446cdcb0cb39361cdc3f535ffd
bb5ef5a6a8077523b0b95deba8baaded6bad6d70
refs/heads/master
2021-06-26T11:25:27.554337
2020-11-20T04:35:57
2020-11-20T04:35:57
176,756,501
1
2
null
null
null
null
UTF-8
C++
false
false
1,324
cpp
#include "../utility/rt.h" #include "../utility/data_size.h" #ifdef ORG #define NI 256 #define NJ 256 #define NK 256 #define NL 256 #elif defined (TX) #elif defined (FX) #elif defined (EX) #endif #define TMP_OFFSET 0 #define A_OFFSET NI * NJ #define B_OFFSET NI * NJ + NI * NK #define D_OFFSET NI * NJ + NI * NK + NJ * NK #define C_OFFSET NI * NJ + NI * NK + NJ * NK + NI * NL void mm2_trace(double* tmp, double* A, double* B, double* C, double* D, double alpha, double beta) { int i, j, k; i = 0; k = 0; for (j = 0; j < 100; j++) { tmp[i * NJ + j] = 0.0; rtTmpAccess(TMP_OFFSET + i * NJ + j, 0, 0); if(j % 3 == 0){ continue; } if (j % 2 == 0) { A[i * NK + k] = 4.0; rtTmpAccess(A_OFFSET + i * NK + k, 1, 1); } } } int main() { double* tmp = (double*)malloc( NI * NJ * sizeof(double)); double* A = (double*)malloc( NI * NK * sizeof(double)); double* B = (double*)malloc( NK * NJ * sizeof(double)); double* C = (double*)malloc( NJ * NL * sizeof(double)); double* D = (double*)malloc( NI * NL * sizeof(double)); double alpha = 0.1; double beta = 0.5; mm2_trace(tmp, A, B, C, D, alpha, beta); dumpRtTmp(); RTtoMR_AET(); dumpMR(); return 0; }
[ "jiao@dhcp-10-4-0-69.wireless.rochester.edu" ]
jiao@dhcp-10-4-0-69.wireless.rochester.edu
c3a9a59bb2e4ecd5131135c790788bd6033ea590
fb98e790b90cc475b53780f1e5fedd5eccfe8b56
/Laelaps/sw/liblaelaps/ut/utRobot.cxx
7bbcc2667f91b570979f5bdb4df11e3344e0c953
[ "MIT" ]
permissive
roadnarrows-robotics/rnr-sdk
e348dacd80907717bee4ad9c0a3c58b20fa380ae
be7b3e0806364cdb4602202aba2b4cdd9ba676f4
refs/heads/master
2023-08-16T06:52:31.580475
2023-08-03T19:45:33
2023-08-03T19:45:33
56,259,572
0
0
null
null
null
null
UTF-8
C++
false
false
4,795
cxx
//////////////////////////////////////////////////////////////////////////////// // // Package: Laelaps // // Program: utRobot // // File: utRobot.cxx // /*! \file * * $LastChangedDate: 2016-02-01 15:14:45 -0700 (Mon, 01 Feb 2016) $ * $Rev: 4289 $ * * \brief Unit test liblaelaps robot class. * * \author Robin Knight (robin.knight@roadnarrows.com) * * \par Copyright * \h_copy 2015-2017. RoadNarrows LLC.\n * http://www.roadnarrows.com\n * All Rights Reserved */ /* * @EulaBegin@ * * Unless otherwise stated explicitly, all materials contained are copyrighted * and may not be used without RoadNarrows LLC's written consent, * except as provided in these terms and conditions or in the copyright * notice (documents and software) or other proprietary notice provided with * the relevant materials. * * IN NO EVENT SHALL THE AUTHOR, ROADNARROWS LLC, OR ANY * MEMBERS/EMPLOYEES/CONTRACTORS OF ROADNARROWS OR DISTRIBUTORS OF THIS SOFTWARE * BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR * CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS * DOCUMENTATION, EVEN IF THE AUTHORS OR ANY OF THE ABOVE PARTIES HAVE BEEN * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * THE AUTHORS AND ROADNARROWS LLC SPECIFICALLY DISCLAIM ANY WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN * "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * * @EulaEnd@ */ //////////////////////////////////////////////////////////////////////////////// #include <unistd.h> #include <string.h> #include <stdio.h> #include <stdlib.h> #include <stdarg.h> #include <iostream> #include <fstream> #include <string> #include "rnr/rnrconfig.h" #include "rnr/log.h" #include "rnr/opts.h" #include "rnr/pkg.h" #include "Laelaps/laelaps.h" #include "Laelaps/laeDesc.h" #include "Laelaps/laeXmlCfg.h" #include "Laelaps/laeRobot.h" #include "version.h" using namespace std; using namespace laelaps; /*! * \ingroup apps * \defgroup unittest utRobot * \{ */ #define APP_EC_OK 0 ///< success exit code #define APP_EC_ARGS 2 ///< command-line options/arguments error exit code #define APP_EC_EXEC 4 ///< execution exit code static char *Argv0; ///< the command /*! * \brief Program information. */ static OptsPgmInfo_T PgmInfo = { // usage_args "<FILE>", // synopsis "Unit test liblaelaps LaeRobot class.", // long_desc = "The %P command unit tests the liblaelap LaeRobot class basic operation.", // diagnostics NULL }; /*! * \brief Command line options information. */ static OptsInfo_T OptsInfo[] = { {NULL, } }; /*! * \brief Main initialization. * * \param argc Command-line argument count. * \param argv Command-line argument list. * * \par Exits: * Program terminates on conversion error. */ static void mainInit(int argc, char *argv[]) { // name of this process Argv0 = basename(argv[0]); // parse input options argv = OptsGet(Argv0, &PkgInfo, &PgmInfo, OptsInfo, true, &argc, argv); } /*! * \brief Main. * * \param argc Command-line argument count. * \param argv Command-line argument list. * * \return Returns 0 on succes, non-zero on failure. */ int main(int argc, char* argv[]) { const char* const CfgFile = "/prj/pkg/Laelaps/share/etc/laelaps/laelaps.conf"; LaeRobot *pRobot; LaeXmlCfg xml; uint_t sec; int rc; mainInit(argc, argv); printf("Creating robot.\n"); pRobot = new LaeRobot; printf("Created.\n"); sec = 1; printf(" sleeping %u seconds ...", sec); sleep(sec); printf("\n"); LaeDesc &desc = pRobot->getLaelapsDesc(); printf("Parsing robot description.\n"); if( (rc = xml.loadFile(desc, CfgFile)) == LAE_OK ) { rc = desc.markAsDescribed(); } if( rc != LAE_OK ) { printf("Failed to load/parse description.\n"); return APP_EC_EXEC; } printf("Connecting robot.\n"); if( (rc = pRobot->connect()) == LAE_OK ) { printf("Connected\n"); } else { printf("Failed to connect.\n"); } sec = 5; printf(" sleeping %u seconds ...", sec); sleep(sec); printf("\n"); if( pRobot->isConnected() ) { printf("Disconnecting robot.\n"); if( (rc = pRobot->disconnect()) == LAE_OK ) { printf("Disconnected\n"); } else { printf("Failed to disconnect.\n"); } } printf("Deleting robot.\n"); delete pRobot; printf("Deleted.\n"); sec = 1; printf(" sleeping %u seconds ...", sec); sleep(sec); printf("\n"); return APP_EC_OK; } /*! * \} */
[ "robin.knight@roadnarrows.com" ]
robin.knight@roadnarrows.com
cb5a3e887830a2d2cac7bbc514e31a66f4b32299
127c53f4e7e220f44dc82d910a5eed9ae8974997
/Client/Game/Network/PacketHandler/GCNewPlayerHandler.cpp
8d3458319e8a64cb247033ea1f1326b549440843
[]
no_license
zhangf911/wxsj2
253e16265224b85cc6800176a435deaa219ffc48
c8e5f538c7beeaa945ed2a9b5a9b04edeb12c3bd
refs/heads/master
2020-06-11T16:44:14.179685
2013-03-03T08:47:18
2013-03-03T08:47:18
null
0
0
null
null
null
null
GB18030
C++
false
false
3,398
cpp
#include "StdAfx.h" #include "GITimeSystem.h" #include "..\..\Procedure\GameProcedure.h" #include "Object\Manager\ObjectManager.h" #include "Object\Logic\Character\Obj_PlayerOther.h" #include "Object\ObjectCommandDef.h" #include "..\..\NetWork\NetManager.h" #include "CGCharAskBaseAttrib.h" #include "GCNewPlayer.h" #include "..\..\World\WorldManager.h" #include "GIException.h" #include "..\..\Global.h" #include "GIDEbuger.h" #include "..\..\DataPool\GMDP_CharacterData.h" #include "..\..\Object\GMObjectLoadQueue.h" uint GCNewPlayerHandler :: Execute( GCNewPlayer* pPacket, Player* pPlayer ) { //__ENTER_FUNCTION //AxTrace(0, 2, "GCNewPlayerHandler"); // return PACKET_EXE_CONTINUE ; //当前流程是主流程 if(CGameProcedure::GetActiveProcedure() == (CGameProcedure*)CGameProcedure::s_pProcMain) { CObjectManager* pObjectManager = CObjectManager::GetMe(); //检查位置是否合法 if(!CWorldManager::GetMe()->GetActiveScene()->IsValidPosition(fVector2(pPacket->getWorldPos().m_fX, pPacket->getWorldPos().m_fZ))) { KLThrow("ERROR POSITION @ GCNewPlayerHandler"); } //创建玩家 CObject_PlayerOther* pOther = (CObject_PlayerOther*)(pObjectManager->FindServerObject( (INT)pPacket->getObjID())); fVector3 fvGame; CGameProcedure::s_pGfxSystem->Axis_Trans( tGfxSystem::AX_PLAN, fVector3(pPacket->getWorldPos().m_fX, 0.0f, pPacket->getWorldPos().m_fZ), tGfxSystem::AX_GAME, fvGame); FLOAT fFaceDir = pPacket->getDir(); if ( pOther == NULL ) { pOther = pObjectManager->NewPlayerOther( (INT)pPacket->getObjID() ); SObjectInit initPlayerOther; initPlayerOther.m_fvPos = fvGame; initPlayerOther.m_fvRot = fVector3( 0.f, fFaceDir, 0.f ); pOther->Initial( &initPlayerOther ); fVector2 mapPos(fvGame.x, fvGame.z); pOther->SetMapPosition( mapPos ); } else { fVector2 mapPos(fvGame.x, fvGame.z); pOther->SetMapPosition( mapPos ); pOther->SetFaceDir( fFaceDir ); pOther->Enable( OSF_VISIABLE ); pOther->Disalbe( OSF_OUT_VISUAL_FIELD ); } //更新装备信息 pOther->GetCharacterData()->Set_EquipVer(pPacket->getEquipVer()); pOther->GetCharacterData()->Set_MoveSpeed(pPacket->getMoveSpeed()); ////激活鼠标查询 //if(pOther->GetRenderInterface()) //{ // pOther->Enable(OSF_RAY_QUERY); //} SCommand_Object cmdTemp; cmdTemp.m_wID = OC_IDLE; cmdTemp.m_afParam[0] = fvGame.x; cmdTemp.m_afParam[1] = fvGame.z; cmdTemp.m_abParam[2] = FALSE; pOther->PushCommand(&cmdTemp ); //放入Ask队列 CObjectManager::GetMe()->GetLoadQueue()->TryAddLoadTask(pOther->GetID()); // tempcode{ // 此版不做服务器繁忙客户端延后发消息的处理 // CGCharAskBaseAttrib msgAskBaseAttrib; // msgAskBaseAttrib.setTargetID( (INT)pPacket->getObjID() ); // CNetManager::GetMe()->SendPacket( &msgAskBaseAttrib ); //AxTrace(0, 0, "[%d]Ask %d", m_hmObject.size(), pPacket->getObjID()); // } //如果是自己,退出死亡效果 if(pOther == (CObject_PlayerOther*)pObjectManager->GetMySelf()) { CGameProcedure::s_pGfxSystem->Scene_SetPostFilter_Death(FALSE); } pOther->PushDebugString("GCNewPlayer"); pOther->SetMsgTime(CGameProcedure::s_pTimeSystem->GetTimeNow()); } return PACKET_EXE_CONTINUE ; //__LEAVE_FUNCTION return PACKET_EXE_ERROR ; }
[ "amwfhv@163.com" ]
amwfhv@163.com
cda49f98253bd19d7d2f3123a214cbd6475ea280
786de89be635eb21295070a6a3452f3a7fe6712c
/ImgPixSpectra/tags/V00-00-01/include/MiniCSPadPixSpectra.h
57f93e5e9437b52202d12135061e0c55792c5822
[]
no_license
connectthefuture/psdmrepo
85267cfe8d54564f99e17035efe931077c8f7a37
f32870a987a7493e7bf0f0a5c1712a5a030ef199
refs/heads/master
2021-01-13T03:26:35.494026
2015-09-03T22:22:11
2015-09-03T22:22:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,306
h
#ifndef IMGPIXSPECTRA_MINICSPADPIXSPECTRA_H #define IMGPIXSPECTRA_MINICSPADPIXSPECTRA_H //-------------------------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Class MiniCSPadPixSpectra. // //------------------------------------------------------------------------ //----------------- // C/C++ Headers -- //----------------- //---------------------- // Base Class Headers -- //---------------------- #include "psana/Module.h" //------------------------------- // Collaborating Class Headers -- //------------------------------- //------------------------------------ // Collaborating Class Declarations -- //------------------------------------ // --------------------- // -- Class Interface -- // --------------------- namespace ImgPixSpectra { /// @addtogroup ImgPixSpectra /** * @ingroup ImgPixSpectra * * @brief Creates the spectal array for all pixels in the Mini-CSPad detector. * * MiniCSPadPixSpectra class is a psana module which creates and fills * the spectral array for all pixels in the Mini-CSPad array. The spectral * array has two dimensions, the total number of pixels and * the number of amplitude bins requested in the list of configuration parameters. * * An example of the configuration file (psana.cfg) for this module: * * @code * [psana] * files = /reg/d/psdm/CXI/cxi49812/xtc/e157-r0203-s00-c00.xtc * modules = ImgPixSpectra.MiniCSPadPixSpectra * * [ImgPixSpectra.MiniCSPadPixSpectra] * source = CxiSc1.0:Cspad2x2.0 * amin = 500. * amax = 1000. * nbins = 100 * arr_fname = mini-cspad-pix-spectra.txt * #events = 500 * @endcode * * The output file "mini-cspad-pix-spectra.txt" contains the spectral array * for CSPad pixels accumulated in job. * Axillary file with additional name extension ".sha" contains the shape parameters * of the spectral array. The file(s) can be used for further analysis * or presentation, for example, using the python script: * * @code * ImgPixSpectra/data/PlotSpectralArrayFromFile.py mini-cspad-pix-spectra.txt * @endcode * * This software was developed for the LCLS project. If you use all or * part of it, please give an appropriate acknowledgment. * * @version \$Id: MiniCSPadPixSpectra.h$ * * @author Mikhail S. Dubrovin */ class MiniCSPadPixSpectra : public Module { public: // Default constructor MiniCSPadPixSpectra (const std::string& name) ; // Destructor virtual ~MiniCSPadPixSpectra () ; /// Method which is called once at the beginning of the job virtual void beginJob(Event& evt, Env& env); /// Method which is called at the beginning of the run virtual void beginRun(Event& evt, Env& env); /// Method which is called at the beginning of the calibration cycle virtual void beginCalibCycle(Event& evt, Env& env); /// Method which is called with event data, this is the only required /// method, all other methods are optional virtual void event(Event& evt, Env& env); /// Method which is called at the end of the calibration cycle virtual void endCalibCycle(Event& evt, Env& env); /// Method which is called at the end of the run virtual void endRun(Event& evt, Env& env); /// Method which is called once at the end of the job virtual void endJob(Event& evt, Env& env); protected: void printInputPars(); void arrayInit(); void arrayDelete(); void arrayFill(const int16_t* data); void saveArrayInFile(); void saveShapeInFile(); int ampToIndex(double amp); private: // Data members, this is for example purposes only enum {m_npix_mini1 = 185 * 388 * 2}; Source m_src; // Data source set from config file Pds::Src m_actualSrc; std::string m_key; double m_amin; double m_amax; int m_nbins; std::string m_arr_fname; std::string m_arr_shape_fname; unsigned m_maxEvents; bool m_filter; long m_count; int m_nbins1; double m_factor; int* m_arr; }; } // namespace ImgPixSpectra #endif // IMGPIXSPECTRA_MINICSPADPIXSPECTRA_H
[ "dubrovin@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7" ]
dubrovin@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7
8423fdc9bd2bcaddbd7451a75507864ce59b6f3c
a33aac97878b2cb15677be26e308cbc46e2862d2
/program_data/PKU_raw/7/913.c
ab3306b5aa32456a253dc18da08b51eda0e66a6d
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
356
c
int main() { char s3[100]; char s1[100]; char s2[100]; int L1,L2,i,j; gets(s1); gets(s2); gets(s3); L1=strlen(s1); L2=strlen(s2); for(i=0;i<L1;i++) { if(s1[i]==s2[0]&&s1[i+L2-1]==s2[L2-1]) { for(j=i;j<i+L2;j++) { s1[j]=s3[j-i]; } break; } } puts(s1); return 0; }
[ "bdqnghi@gmail.com" ]
bdqnghi@gmail.com
1c98ac9a2f67d2eacf6222eb5e01312a8e74bf21
3373becb8d434b2ebae20e9b2e446520115a968f
/os/android/grallocbufferhandler.cpp
57ff8476046fdc9d5418cdbcd1d29fdcbf09c470
[]
no_license
yogesh-marathe/IA-Hardware-Composer
e98670ced0016d28ac836e10fffec00a27404536
ef70c6132f1dfc1ee842bc231e1aebcbe9247965
refs/heads/master
2021-01-19T22:54:13.357196
2017-04-24T09:37:56
2017-04-24T09:40:48
88,889,599
0
0
null
2017-04-20T16:54:11
2017-04-20T16:54:10
null
UTF-8
C++
false
false
4,779
cpp
/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "grallocbufferhandler.h" #include <xf86drmMode.h> #include <xf86drm.h> #include <hardware/hardware.h> #include <hardware/hwcomposer.h> #include <ui/GraphicBuffer.h> #include <cutils/native_handle.h> #ifdef USE_MINIGBM #include <cros_gralloc_handle.h> #include <cros_gralloc_helpers.h> #else #include <gralloc_drm_handle.h> #endif #include <hwcdefs.h> #include <hwctrace.h> #include "drmhwcgralloc.h" namespace hwcomposer { #define DRV_MAX_PLANES 4 // static NativeBufferHandler *NativeBufferHandler::CreateInstance(uint32_t fd) { GrallocBufferHandler *handler = new GrallocBufferHandler(fd); if (!handler) return NULL; if (!handler->Init()) { ETRACE("Failed to initialize GralocBufferHandlers."); delete handler; return NULL; } return handler; } GrallocBufferHandler::GrallocBufferHandler(uint32_t fd) : fd_(fd) { } GrallocBufferHandler::~GrallocBufferHandler() { } bool GrallocBufferHandler::Init() { int ret = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, (const hw_module_t **)&gralloc_); if (ret) { ETRACE("Failed to open gralloc module"); return false; } return true; } bool GrallocBufferHandler::CreateBuffer(uint32_t w, uint32_t h, int /*format*/, HWCNativeHandle *handle) { struct gralloc_handle *temp = new struct gralloc_handle(); temp->buffer_ = new android::GraphicBuffer(w, h, android::PIXEL_FORMAT_RGBA_8888, GRALLOC_USAGE_HW_FB | GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_COMPOSER); temp->handle_ = temp->buffer_->handle; gralloc_->registerBuffer(gralloc_, temp->handle_); *handle = temp; return true; } bool GrallocBufferHandler::DestroyBuffer(HWCNativeHandle handle) { if (!handle) return false; if (handle->handle_) { gralloc_->unregisterBuffer(gralloc_, handle->handle_); handle->buffer_.clear(); } delete handle; handle = NULL; return true; } #ifdef USE_MINIGBM bool GrallocBufferHandler::ImportBuffer(HWCNativeHandle handle, HwcBuffer *bo) { auto gr_handle = (struct cros_gralloc_handle *)handle->handle_; if (!gr_handle) { ETRACE("could not find gralloc drm handle"); return false; } memset(bo, 0, sizeof(struct HwcBuffer)); bo->format = gr_handle->format; bo->width = gr_handle->width; bo->height = gr_handle->height; bo->prime_fd = gr_handle->fds[0]; uint32_t id; if (drmPrimeFDToHandle(fd_, bo->prime_fd, &id)) { ETRACE("drmPrimeFDToHandle failed."); return false; } for (size_t p = 0; p < DRV_MAX_PLANES; p++) { bo->offsets[p] = gr_handle->offsets[p]; bo->pitches[p] = gr_handle->strides[p]; bo->gem_handles[p] = id; } if (gr_handle->usage & GRALLOC_USAGE_PROTECTED) { bo->usage |= hwcomposer::kLayerProtected; } else if (gr_handle->usage & GRALLOC_USAGE_CURSOR) { bo->usage |= hwcomposer::kLayerCursor; // We support DRM_FORMAT_ARGB8888 for cursor. bo->format = DRM_FORMAT_ARGB8888; } return true; } #else bool GrallocBufferHandler::ImportBuffer(HWCNativeHandle handle, HwcBuffer *bo) { hwc_drm_bo_t hwc_bo; int ret = gralloc_->perform(gralloc_, GRALLOC_MODULE_PERFORM_DRM_IMPORT, fd_, handle->handle_, &hwc_bo); if (ret) { ETRACE("GRALLOC_MODULE_PERFORM_DRM_IMPORT failed %d", ret); return false; } memset(bo, 0, sizeof(struct HwcBuffer)); gralloc_drm_handle_t *gr_handle = gralloc_drm_handle(handle->handle_); bo->width = hwc_bo.width; bo->height = hwc_bo.height; bo->format = hwc_bo.format; for (uint32_t i = 0; i < 4; i++) { bo->pitches[i] = hwc_bo.pitches[i]; bo->offsets[i] = hwc_bo.offsets[i]; bo->gem_handles[i] = hwc_bo.gem_handles[i]; } if (!gr_handle) { ETRACE("could not find gralloc drm handle"); return false; } if (gr_handle->usage & GRALLOC_USAGE_PROTECTED) { bo->usage |= hwcomposer::kLayerProtected; } else if (gr_handle->usage & GRALLOC_USAGE_CURSOR) { bo->usage |= hwcomposer::kLayerCursor; } bo->prime_fd = gr_handle->prime_fd; return true; } #endif } // namespace hwcomposer
[ "kalyan.kondapally@intel.com" ]
kalyan.kondapally@intel.com
6b160e90da9424a466e7f786861ffe39638151f2
d0db9eaf6333da4bd1336c24c71cca2ae61a6514
/bin/targetCtrlDir/FollowerProperty.h
cd4b70ca671db167e8666d1572d940076d949b7f
[]
no_license
quinsmpang/CcbToCode
2c33fad6f4ee5bf8df0c5817e0593277a7373558
970b1e4063494c9aa115e50f56de216f730d2168
refs/heads/master
2019-04-21T08:26:56.366457
2015-03-02T02:47:46
2015-03-02T02:47:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,096
h
// // FollowerProperty.h // // // this code is auto generate by the tool created by neo. Email andsonliang@gmail.com // and improved by TerrenceRao. Email rcttobattle@gmail.com // feel free to modify this class // #ifndef __autogen_ccbuilder__FollowerProperty__ #define __autogen_ccbuilder__FollowerProperty__ #include "Global/Constants.h" #include "FollowerProperty_CCB.h" class FollowerProperty :public cocos2d::CCLayer { public: FollowerProperty(); virtual ~FollowerProperty(); CREATE_FUNC(FollowerProperty); bool init(); void initCCB(); void giveValueToCCB(); //control call back function; public: // menu call back fuction public: void selector_back(cocos2d::CCObject * pSender); void selector_weapon(cocos2d::CCObject * pSender); void selector_armor(cocos2d::CCObject * pSender); void selector_trump(cocos2d::CCObject * pSender); void selector_necklace(cocos2d::CCObject * pSender); void selector_ring(cocos2d::CCObject * pSender); // private: cocos2d::extension::CCBReader* m_ccbReader; FollowerProperty_CCB* m_ccbMember; }; #endif
[ "rct1985@163.com" ]
rct1985@163.com
b9671cdebc23d4957661db48121c7443874fbaf2
1f63dde39fcc5f8be29f2acb947c41f1b6f1683e
/Boss2D/addon/webrtc-jumpingyang001_for_boss/rtc_base/ifaddrs_converter.cc
448a1c6dcf98f5d92ed1c57d4f3e44b8a1534bcc
[ "MIT", "BSD-3-Clause", "LicenseRef-scancode-google-patent-license-webm", "LicenseRef-scancode-google-patent-license-webrtc", "LicenseRef-scancode-unknown-license-reference" ]
permissive
koobonil/Boss2D
09ca948823e0df5a5a53b64a10033c4f3665483a
e5eb355b57228a701495f2660f137bd05628c202
refs/heads/master
2022-10-20T09:02:51.341143
2019-07-18T02:13:44
2019-07-18T02:13:44
105,999,368
7
2
MIT
2022-10-04T23:31:12
2017-10-06T11:57:07
C++
UTF-8
C++
false
false
1,909
cc
/* * Copyright 2015 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include BOSS_WEBRTC_U_rtc_base__ifaddrs_converter_h //original-code:"rtc_base/ifaddrs_converter.h" namespace rtc { IfAddrsConverter::IfAddrsConverter() {} IfAddrsConverter::~IfAddrsConverter() {} bool IfAddrsConverter::ConvertIfAddrsToIPAddress( const struct ifaddrs* interface, InterfaceAddress* ip, IPAddress* mask) { switch (interface->ifa_addr->sa_family) { case AF_INET: { *ip = InterfaceAddress(IPAddress( reinterpret_cast<sockaddr_in*>(interface->ifa_addr)->sin_addr)); *mask = IPAddress( reinterpret_cast<sockaddr_in*>(interface->ifa_netmask)->sin_addr); return true; } case AF_INET6: { int ip_attributes = IPV6_ADDRESS_FLAG_NONE; if (!ConvertNativeAttributesToIPAttributes(interface, &ip_attributes)) { return false; } *ip = InterfaceAddress( reinterpret_cast<sockaddr_in6*>(interface->ifa_addr)->sin6_addr, ip_attributes); *mask = IPAddress( reinterpret_cast<sockaddr_in6*>(interface->ifa_netmask)->sin6_addr); return true; } default: { return false; } } } bool IfAddrsConverter::ConvertNativeAttributesToIPAttributes( const struct ifaddrs* interface, int* ip_attributes) { *ip_attributes = IPV6_ADDRESS_FLAG_NONE; return true; } #if !defined(WEBRTC_MAC) // For MAC and IOS, it's defined in macifaddrs_converter.cc IfAddrsConverter* CreateIfAddrsConverter() { return new IfAddrsConverter(); } #endif } // namespace rtc
[ "slacealic@nate.com" ]
slacealic@nate.com
42a2dda01b5fa069a69b96bd84db6fbf84ddcbe1
cb728b5019bf0c5c466fecbd59bac07b24778d2a
/Practice/201907180805/AlgoritmAndDataStructus/AlgoritmAndDataStructus/quickSort.h
3444c707cffa4c7b3217598636ca316dcc223ac5
[]
no_license
githubgjb/c-20171012067-3
2064a805ef42d59838b39b7e780b84ee8f87d442
adb5feed68c053c399829ce022a38f2b9071b737
refs/heads/master
2021-05-04T19:14:36.622555
2020-04-04T07:46:26
2020-04-04T07:46:26
106,658,208
0
0
null
null
null
null
GB18030
C++
false
false
681
h
#include <iostream> #include <algorithm> using namespace std; //对arr[l...r]部分进行partition操作 //p arr[l...p-1] < arr[p] arr[p+1...r] > arr[p] template<typename T> int __partition(T arr[], int l, int r){ T v = arr[l]; //arr[l+1...j] < v ; arr[j+1..i] > v int j = l; for (int i = l+1; i <= r; i++) { if (arr[i] < v) { swap(arr[j + 1], arr[i]); j++; } } swap(arr[l], arr[j]); return j; } template<typename T> void __quickSort(T arr[],int l,int r){ if (l>=r) { return; } int p = __partition(arr, l, r); __quickSort(arr, l, p - 1); __quickSort(arr, p + 1, r); } template<typename T> void quickSort(T arr[],int n){ __quickSort(arr,0,n-1); }
[ "31399236+githubgjb@users.noreply.github.com" ]
31399236+githubgjb@users.noreply.github.com
7289e79b25fa8d89ca06f834b0348064454473b6
c445821d3d24ec09d233a156e5c2bba7d778ede4
/EscapeRoomZ/creature.h
496476df136a4c683632890d9d2aba7e894861a2
[ "MIT" ]
permissive
ermario/EScapeRoomZ
9613daf59dcc71710d85d68e3271cb8c2dc888c3
2ec78b353248347cc5ad70e47daa06bc72c033b0
refs/heads/main
2023-06-04T11:53:18.524829
2021-06-24T15:48:40
2021-06-24T15:48:40
379,427,612
0
0
null
null
null
null
UTF-8
C++
false
false
326
h
#ifndef _CREATURE_ #define _CREATURE_ #include <string> #include "entity.h" class Room; class Item; using namespace std; class Creature : public Entity { public: Creature(const char* name, const char* description, Room* room); ~Creature(); Room* getRoomN() const; virtual void Die(); public: bool alive; }; #endif
[ "marius.dambean@gmail.com" ]
marius.dambean@gmail.com
74ceffa6f8292a7cc9c04b3bc86807a3fb803baf
3f3f6941b6f8301f4019ca5146f18fec872d211d
/module.cpp
826c64d3745c706d2356131210403f8a4848c4ec
[]
no_license
shackspace/shack_kiosk_v5
db7fd381bd8856fc523db79eb3604c2a213238de
92041f28a95826755d83a23056f71bf6caf8bb17
refs/heads/master
2021-07-17T00:27:24.819813
2020-09-19T01:00:14
2020-09-19T01:00:14
212,873,292
0
2
null
2020-01-19T17:59:58
2019-10-04T17:55:34
C++
UTF-8
C++
false
false
225
cpp
#include "module.hpp" module::~module() { } void module::init() { } void module::enter() { } notify_result module::notify(SDL_Event const &) { return failure; } void module::render() { } void module::leave() { }
[ "git@mq32.de" ]
git@mq32.de
1fca9879770c2c541ddacc46f2f226fde6ce7890
bcbdd0fe58815e9a55a19d0c8211bd5209eb3949
/Online-Judge-Solutions/HDU/1358-Period.cpp
8bdbebf111d151047e6c5e349138b6f82fbb8bf0
[]
no_license
simantaturja/Competitive-Programming
e43d84237b706453aac842fab8893547832093ac
f43bf518d9c75e24ae2231440b434fe57c2d72a5
refs/heads/master
2021-01-19T18:06:17.122842
2020-08-26T18:15:24
2020-08-26T18:15:24
267,894,783
1
0
null
null
null
null
UTF-8
C++
false
false
842
cpp
#include <bits/stdc++.h> using namespace std; const int N = (int)1e6 + 2; int pi[N + 7]; void prefixTable(const string &s) { int len = (int)s.length(); int i = 1, j = 0; pi[0] = 0; while ( i < len ) { while ( j > 0 && s[i] != s[j] ) { j = pi[j - 1]; } if ( s[i] == s[j] ) { ++j; } pi[i] = j; ++i; } } int main() { int n; int kase = 0; while(scanf("%d", &n) && n != 0) { string s; cin >> s; prefixTable(s); printf("Test case #%d\n", ++kase); for ( int i = 1; i < n; ++i ) { if ( pi[i] != 0 && (i + 1 - pi[i] != 0) && (i + 1) % (i + 1 - pi[i]) == 0 ) { printf("%d %d\n", i + 1, (i + 1)/(i + 1 - pi[i])); } } printf("\n"); } return 0; }
[ "simantaturja@gmail.com" ]
simantaturja@gmail.com
ee3beafb9fe15990fbf5134df01edcc9bb84006d
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/PolicyRuleValidityPeriod/tests/PolicyRuleValidityPeriod.Tests/main.cpp
d5ddfb78054312b9d553750cf4508e50f3c76147
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
2,083
cpp
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////// #include <UNIX_Common.h> #include "UNIX_PolicyRuleValidityPeriodFixture.h" #include <iostream> int main (int argc, char *argv[]) { std::cout << "Starting Pegasus Providers Testing Framework..." << std::endl; std::cout << "Testing UNIX_PolicyRuleValidityPeriod Provider..." << endl; UNIX_PolicyRuleValidityPeriodFixture __policyRuleValidityPeriod; __policyRuleValidityPeriod.Run(); }
[ "brunolauze@msn.com" ]
brunolauze@msn.com
e77786c2aebc97dec2afd355b07408d1b6fae328
49c6cf776addc6fbac50c887edfa168d81aa7729
/Ujjwal/Halim/Ch4/SSSP/10653.cpp
27ad1bd701fc4ae032112859c069556c1035f30b
[]
no_license
Ryednap/Coding-Competition
b43e38b4e8d3bfc7eee21750cd1014fb4ce49c54
a4fd7b97f3898e60800689fe27b8c00ac8a456fa
refs/heads/main
2023-08-19T06:55:04.344956
2021-10-08T05:59:24
2021-10-08T05:59:24
398,359,907
0
0
null
2021-08-28T12:33:09
2021-08-20T17:55:14
C++
UTF-8
C++
false
false
2,083
cpp
#include <bits/stdc++.h> using namespace std; #define sim template < class c #define ris return * this #define dor > debug & operator << #define eni(x) sim > typename \ enable_if<sizeof dud<c>(0) x 1, debug&>::type operator<<(c i) { sim > struct rge { c b, e; }; sim > rge<c> range(c i, c j) { return rge<c>{i, j}; } sim > auto dud(c* x) -> decltype(cerr << *x, 0); sim > char dud(...); struct debug { #ifdef LOCAL ~debug() { cerr << endl; } eni(!=) cerr << boolalpha << i; ris; } eni(==) ris << range(begin(i), end(i)); } sim, class b dor(pair < b, c > d) { ris << "(" << d.first << ", " << d.second << ")"; } sim dor(rge<c> d) { *this << "["; for (auto it = d.b; it != d.e; ++it) *this << ", " + 2 * (it == d.b) << *it; ris << "]"; } #else sim dor(const c&) { ris; } #endif }; #define owo(...) " [" << #__VA_ARGS__ ": " << (__VA_ARGS__) << "] " using pii = pair<int, int>; const int dx [] = {-1, 1, 0, 0}; const int dy [] = {0, 0, -1, 1}; int main () { int r, c; while (scanf ("%d %d", &r, &c)) { if (!r && !c) break; vector<vector<int>> grid(r, vector<int> (c, true)); int n; scanf ("%d", &n); while (n--) { int row, m; scanf ("%d %d", &row, &m); while (m--) { int col; scanf ("%d", &col); grid[row][col] = false; } } pii src, dest; scanf ("%d %d %d %d", &src.first, &src.second, &dest.first, &dest.second); queue<pair<int, pii>> Q; Q.push(make_pair(0, src)); grid[src.first][src.second] = false; bool found = false; while (!Q.empty()) { auto v = Q.front(); Q.pop(); int value = v.first; pii node = v.second; if (node == dest) { printf ("%d\n", value); found = true; break; } for (int i = 0; i < 4; ++i) { int rr = dx[i] + node.first; int cc = dy[i] + node.second; if (rr >= 0 && cc >= 0 && rr < r && cc < c && grid[rr][cc]) { grid[rr][cc] = false; Q.push(make_pair(value + 1, pii(rr, cc))); } } } assert (found); } return 0; }
[ "ujjwalpandey408@gmail.com" ]
ujjwalpandey408@gmail.com
f3002abb7b9551b6c6f25c19fa9078eb0aa97e18
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/0b/79f84878b28746/main.cpp
be3aa617cb01f99f15b6d544b3ac57fb278d3117
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
681
cpp
#include <type_traits> class BASE_Y {}; class BASE_X {}; struct A { template<class T, class = void> class S; template<class T> class S < T, typename std::enable_if< std::is_base_of< BASE_Y, T >::value >::type > {}; template<class T> class S < T, typename std::enable_if< std::is_base_of< BASE_X, T >::value >::type > {}; }; class D : BASE_X {}; /* class B { template<class T> class S; template<> class S < int > {}; template<class T> class S < bool > {}; }; */ int main() { A::S< D > asd; }
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
3f5ca3e20cab5a3f770630a8ee91e2cc06f97fa2
ac0d3dc1867eaebe756642b9e29ac8a89e59309b
/Agora/Public/Modes/AgoraGameState.h
c2847b7e37681edb32ac393a55db61f910142911
[]
no_license
lineCode/MobaGame
e58a9caf289f067d6708598ead35ddcfe9d2a806
1c26b527a19e5ec3bfaaa6fbe6869510cfecfa50
refs/heads/main
2023-03-25T22:17:11.179350
2021-03-29T22:43:06
2021-03-29T22:43:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,926
h
// Copyright (C) 2019 Kevin Ossia, Joe Finley, and Nicholas Arthur. Unauthorized copying of this file via any medium is strictly prohibited. #pragma once #include "CoreMinimal.h" #include "GameFramework/GameState.h" #include "AgoraTypes.h" // FDamageContext #include "AgoraGameState.generated.h" class AAgoraPlayerState; class AAgoraVisionService; class AAgoraTeamService; class AAgoraItemService; class AAgoraMapTrackerService; DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FOnVisionServiceReadySignature, AAgoraVisionService*, VisionService); DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FOnTeamServiceReadySignature, AAgoraTeamService*, TeamService); DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FOnItemServiceReadySignature, AAgoraItemService*, ItemService); DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(FOnObjectiveKilledSignature, AActor*, Died, FDamageContext, KillingBlowContext); DECLARE_DYNAMIC_MULTICAST_DELEGATE(FOnNumPlayersChanged); DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FOnMatchStateChanged, FName, State); /** * comment me */ UCLASS() class AGORA_API AAgoraGameState : public AGameState { GENERATED_BODY() public: /** * This is called after all players have loaded into the game */ UPROPERTY(BlueprintAssignable) FOnMatchStateChanged OnMatchStateChanged; UPROPERTY(BlueprintAssignable) FOnNumPlayersChanged OnNumPlayersChanged; UPROPERTY(BlueprintAssignable) FOnVisionServiceReadySignature OnVisionServiceReady; UPROPERTY(BlueprintAssignable) FOnTeamServiceReadySignature OnTeamServiceReady; UPROPERTY(BlueprintAssignable) FOnItemServiceReadySignature OnItemServiceReady; UPROPERTY(BlueprintAssignable) FOnObjectiveKilledSignature OnTowerKilled; UPROPERTY(BlueprintAssignable) FOnObjectiveKilledSignature OnHeroKilled; UPROPERTY(BlueprintAssignable) FOnObjectiveKilledSignature CoreKilled; // AGameState interface virtual void PreInitializeComponents() override; virtual void HandleMatchHasStarted() override; virtual void GetLifetimeReplicatedProps(TArray<FLifetimeProperty> &OutLifetimeProps) const override; // ~AGameState interface /** * This is the number of players in the game */ UFUNCTION(BlueprintPure, Category="Agora|AgoraGameState") int32 GetNumConnectedPlayers(); /** * The amount of players that should be in the game once it's fully loaded */ UFUNCTION(BlueprintPure, Category = "Agora|AgoraGameState") int32 GetNumMaxPlayers(); UFUNCTION(Server, Reliable, WithValidation) void NotifyPlayersChanged(int32 InNumTravellingPlayers, int32 InNumConnectedPlayers); UFUNCTION() void HandlePlayersChanged(); UFUNCTION(BlueprintCallable, Category="AgoraGameState") void GetAgoraPlayers(TArray<AAgoraPlayerState*>& Arr); UFUNCTION(BlueprintCallable, Category = "AgoraGameState") void GetTeamPlayerStates(ETeam Team, TArray<AAgoraPlayerState*>& OutArr); /** * Broadcasts to all clients and server that the match has ended. * @Param DestroyedCore pawn that destroyed the core */ UFUNCTION(NetMulticast, Reliable) void NetMulticast_OnMatchComplete(APawn* DestroyedCore); /** * Broadcasts to all clients and server that a hero was killed * @Param Hero the killed hero * @Param KillingBlow the damage context that killed the hero */ UFUNCTION(NetMulticast, Reliable) void NetMulticast_HeroKilled(AActor* Hero, FDamageContext KillingBlow); /** * Broadcasts to all clients and server that a tower was killed * @Param Tower the destroyed tower * @Param KillingBlow the damage context that killed the tower */ UFUNCTION(NetMulticast, Reliable) void NetMulticast_TowerDestroyed(AActor* Tower, FDamageContext KillingBlow); /** * Broadcasts to all clients and the server that the core was killed and the game has ended. * @Param Core the destroyed core * @Param KillingBlow the damage context that killed the core */ UFUNCTION(NetMulticast, Reliable) void NetMulticast_CoreDestroyed(AActor* Core, FDamageContext KillingBlow); /** * Causes all connected clients to disconnect. * Only run on server. */ UFUNCTION(NetMulticast, Reliable) void NetMulticast_Disconnect(); //eventually we'll have the server send the players to a PostGameMenu or something like that. For now just send them back to the main menu. UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "AgoraGameState") FString PostMatchLevelName = "MainMenu"; UFUNCTION(BlueprintPure, Category = "Agora|AgoraGameState") float GetTimeSinceCountdownStarted(); UFUNCTION(BlueprintPure, Category = "Agora|AgoraGameState") float GetSecondsSinceMatchStart(); AAgoraVisionService* GetVisionService() const; AAgoraMapTrackerService* GetMapTrackerService(); AAgoraTeamService* GetTeamService() const; AAgoraItemService* GetItemService() const; protected: // AGameState virtual void OnRep_MatchState() override; //~AGameState UPROPERTY(ReplicatedUsing = OnRep_NumConnectedPlayers) int32 NumConnectedPlayers = 0; UPROPERTY(ReplicatedUsing = OnRep_NumTravellingPlayers) int32 NumTravellingPlayers = 0; UPROPERTY(Replicated) float TimeMatchBegan = 0; UPROPERTY(Replicated) float TimeCountdownBegan = 0; UPROPERTY(ReplicatedUsing = OnRep_TeamService) AAgoraTeamService* TeamService = nullptr; UPROPERTY(ReplicatedUsing = OnRep_ItemService) AAgoraItemService* ItemService = nullptr; UPROPERTY(ReplicatedUsing = OnRep_VisionService) AAgoraVisionService* VisionService = nullptr; AAgoraMapTrackerService* MapTrackerService; UFUNCTION() virtual void OnRep_TeamService(); UFUNCTION() virtual void OnRep_ItemService(); UFUNCTION() virtual void OnRep_VisionService(); UFUNCTION() void OnRep_NumConnectedPlayers(); UFUNCTION() void OnRep_NumTravellingPlayers(); };
[ "joefinleybusiness@gmail.com" ]
joefinleybusiness@gmail.com
5754e0caf5f2aa9ca2821a78e5fe0718cb7137ac
bc077ae16563297c741428f2f48ac1c5bac4ef21
/SFMLSetup/main.cpp
10fc2adc1cddd61c031dc388b4d803816ac877f2
[]
no_license
RobertNieuwkoop/FallingSandSimulation
c0b5a2c1e86bdd22477d18dd04fd3591ae4f8b3a
0af7fcc1c9e9f3be2f5cef4d13ebc92e9fe47915
refs/heads/master
2023-06-14T08:42:27.786664
2021-04-21T18:39:00
2021-04-21T18:39:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
323
cpp
#include <iostream> #include <string> #include <SFML/Graphics.hpp> #include <SFML/System.hpp> #include <SFML/Window.hpp> #include <SFML/Audio.hpp> #include <SFML/Network.hpp> #include "Game.h" int main() { //Init Game engine Game game; while (game.running()) { game.update(); game.render(); } return 0; }
[ "davidmclaugh@gmail.com" ]
davidmclaugh@gmail.com
1750286abbbb70dd7cd88258afac9697931338d1
56bcffceb734a9de899362391b2e44916d6ff7c0
/DesignPattern/DecoratorLib/DecoratorLib/MemoryStream.cpp
cf974cf572d4894dd5a51eb9e998be59b47bab61
[]
no_license
deeplin/CppProjects
f136a8111dc74b49621369b843d6ec2d1f02c9c4
935b31c7b3dd83c85a3b59432bd70a69de0a3635
refs/heads/master
2023-03-19T05:21:14.240646
2021-03-11T07:51:22
2021-03-11T07:51:22
341,447,276
0
0
null
null
null
null
UTF-8
C++
false
false
85
cpp
#include "MemoryStream.h" string MemoryStream::operation() { return "memory"; }
[ "10525677@qq.com" ]
10525677@qq.com
fdc71676cb683d3f799734cbce94f994c2c8d11a
9ed65d06644977f0873e2880ec654cd9988ac5f0
/Tetris_Assignment/Tetris_Assignment/Sound.h
a3cf33c663b9154d4a7597d1f82ea6f2a5c21188
[]
no_license
rNdm74/CPlusPlus
72ddc37f1b217e7472d8ad3c119741b69660b555
2e762b08eee58d5ec6d48e0497345ff5b250dc70
refs/heads/master
2021-01-22T16:45:14.141887
2013-11-10T10:57:25
2013-11-10T10:57:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
254
h
#pragma once using namespace System::Media; using namespace System::Resources; ref class Sound { private: SoundPlayer^ player; ResourceManager^ rManager; public: bool Play; public: Sound(ResourceManager^ rm); void play(System::String^ file); };
[ "rndm@windowslive.com" ]
rndm@windowslive.com
496f521a2ce3a58731b204970f84fb15768c27a3
55d8ae43f175c381e6846208f904916d4d365908
/SDKPackage_OGLES2/TrainingCourse/13_FastTnL/OGLES2/Content/Mask.cpp
6f6cea171771e0eb4ac92f7a2598121c62502252
[]
no_license
anonymousjustice/pvr-pi
404b1c73b6f83e4e6bf25432ed913e8a198beb8c
fbc9b6daaa44fe07c0bd6f897d7f7a87fe08f669
refs/heads/master
2016-08-06T20:43:44.778663
2013-02-14T10:31:26
2013-02-14T10:31:26
5,461,385
7
2
null
null
null
null
UTF-8
C++
false
false
295,106
cpp
// This file was created by Filewrap 1.1 // Little endian mode // DO NOT EDIT #include "../PVRTMemoryFileSystem.h" // using 32 bit to guarantee alignment. #ifndef A32BIT #define A32BIT static const unsigned int #endif // ******** Start: Mask.pod ******** // File data A32BIT _Mask_pod[] = { 0x3e8,0xb,0x502e4241,0x322e444f,0xe800302e,0x800003,0xea000000,0xd3000003,0x62000003,0x65786946,0x696f5064,0x303d746e,0x6e49620a,0x65786564,0xa313d64,0x746e4962,0x656c7265,0x64657661,0x620a313d,0x74726f53,0x3d787456,0x54620a30,0x65676e61,0x7053746e,0x3d656361,0x53630a31,0x640a323d,0x6e6f4277,0x6d694c65,0x383d7469,0x7250650a,0x79546d69,0x303d6570,0x7254650a,0x726f5369,0xa313d74,0x6f707865,0x6f427472,0x6547656e,0x74656d6f,0x303d7972,0x7078650a,0x4374726f,0x72746e6f,0x656c6c6f,0x303d7372,0x7078650a,0x4774726f,0x3d6d6f65,0x78650a31,0x74726f70,0x7070614d,0x43676e69,0x6e6e6168,0x313d6c65,0x7078650a,0x4d74726f,0x72657461,0x736c6169,0x650a303d,0x726f7078,0x726f4e74,0x736c616d,0x650a313d, 0x726f7078,0x6a624f74,0x53746365,0x65636170,0x650a303d,0x726f7078,0x696b5374,0xa303d6e,0x6f707865,0x70537472,0x656e696c,0xa303d73,0x6f707865,0x65567472,0x78657472,0x6f6c6f43,0xa303d72,0x63567370,0x5574704f,0x305b5756,0x54652e5d,0x3d657079,0x73700a31,0x704f6356,0x57565574,0x2e5d305b,0x616e456e,0x3d656c62,0xa313331,0x63567370,0x5574704f,0x315b5756,0x54652e5d,0x3d657079,0x73700a31,0x704f6356,0x57565574,0x2e5d315b,0x616e456e,0x3d656c62,0xa383231,0x63567370,0x5574704f,0x325b5756,0x54652e5d,0x3d657079,0x73700a31,0x704f6356,0x57565574,0x2e5d325b,0x616e456e,0x3d656c62,0xa383231,0x63567370,0x5574704f,0x335b5756,0x54652e5d,0x3d657079,0x73700a31,0x704f6356,0x57565574,0x2e5d335b,0x616e456e,0x3d656c62, 0xa383231,0x63567370,0x5574704f,0x345b5756,0x54652e5d,0x3d657079,0x73700a31,0x704f6356,0x57565574,0x2e5d345b,0x616e456e,0x3d656c62,0xa383231,0x63567370,0x5574704f,0x355b5756,0x54652e5d,0x3d657079,0x73700a31,0x704f6356,0x57565574,0x2e5d355b,0x616e456e,0x3d656c62,0xa383231,0x63567370,0x5574704f,0x365b5756,0x54652e5d,0x3d657079,0x73700a31,0x704f6356,0x57565574,0x2e5d365b,0x616e456e,0x3d656c62,0xa383231,0x63567370,0x5574704f,0x375b5756,0x54652e5d,0x3d657079,0x73700a31,0x704f6356,0x57565574,0x2e5d375b,0x616e456e,0x3d656c62,0xa383231,0x74617473,0x72466369,0x3d656d61,0x56730a30,0x74704f63,0x2e6e6942,0x70795465,0xa313d65,0x4f635673,0x69427470,0x456e2e6e,0x6c62616e,0x32313d65,0x56730a38,0x74704f63, 0x656e6f42,0x2e646e49,0x70795465,0xa323d65,0x4f635673,0x6f427470,0x6e49656e,0x456e2e64,0x6c62616e,0x35313d65,0x6356730a,0x4274704f,0x57656e6f,0x54652e74,0x3d657079,0x56730a31,0x74704f63,0x656e6f42,0x6e2e7457,0x62616e45,0x313d656c,0x56730a35,0x74704f63,0x2e6c6f43,0x70795465,0xa353d65,0x4f635673,0x6f437470,0x456e2e6c,0x6c62616e,0x35313d65,0x6356730a,0x4e74704f,0x652e726f,0x65707954,0x730a313d,0x704f6356,0x726f4e74,0x6e456e2e,0x656c6261,0x3533313d,0x6356730a,0x5074704f,0x652e736f,0x65707954,0x730a313d,0x704f6356,0x736f5074,0x6e456e2e,0x656c6261,0x3533313d,0x6356730a,0x5474704f,0x652e6e61,0x65707954,0x730a313d,0x704f6356,0x6e615474,0x6e456e2e,0x656c6261,0x3832313d,0x3ea000a,0x8000,0x3e90000, 0x0,0x7d00000,0xc0000,0x0,0x0,0x0,0x7d00000,0x8000,0x7d10000,0xc0000,0x0,0x0,0x0,0x7d10000,0x8000,0x7d20000,0x40000,0x0,0x7d20000,0x8000,0x7d30000,0x40000,0x0,0x7d30000,0x8000,0x7d40000,0x40000,0x10000,0x7d40000,0x8000,0x7d50000,0x40000,0x10000,0x7d50000,0x8000,0x7d60000,0x40000,0x10000,0x7d60000,0x8000,0x7d70000,0x40000,0x0,0x7d70000,0x8000,0x7d80000,0x40000,0x0,0x7d80000,0x8000,0x7d90000,0x40000,0x0,0x7d90000,0x8000,0x7e00000,0x40000,0x0,0x7e00000,0x8000,0x7dc0000,0x0,0x17700000,0x40000, 0x9e70000,0x17700000,0x8000,0x17710000,0x40000,0x11800000,0x17710000,0x8000,0x17720000,0x40000,0x10000,0x17720000,0x8000,0x17750000,0x40000,0x0,0x17750000,0x8000,0x177e0000,0x3ce00000,0x1260001,0xc0c44048,0xe88c102,0x1cc412b,0x949f3efe,0x6d25bf5a,0xbb283e21,0x8f7a3f7d,0xec73e93,0xff094078,0xf342c0f4,0x8f284130,0x1c4e3f1d,0x1945bf38,0x85013ea5,0xa5b53f82,0x24f23e96,0xf3a83ff7,0x89c1c106,0xa0654155,0x33d73f29,0x36e2bf18,0xe0443ee9,0xe2c53f64,0xc2a43e87,0x9554404c,0xbac103,0x5c124114,0xf51b3ea3,0x938bbf68,0x24b3e87,0x3e423f84,0x3fba3e98,0x92634085,0x2b20c104,0xc6d54107,0x26583e9b,0xf3bdbf55,0xefd43eec,0x8ef73f8e,0x831b3e9a,0x8b74401d,0x5866c108,0x6d04411a, 0x28783f05,0xf7b5bf56,0xb0683e2c,0x317b3f79,0x8cbd3e94,0xf6f94002,0xe1d1c10b,0x503f412b,0x5d463f1b,0xe653bf4b,0xf5383cf0,0x79033f6d,0xee4e3e8e,0xb2873f97,0xa052c116,0xd8d64140,0xc0c63f17,0x9a7bf4a,0xa6c23e14,0x23fb3f5e,0x22033e84,0x28993fca,0x2bfbc10f,0x357a414e,0x943f19,0x8892bf44,0xe9f23e71,0x25cc3f61,0xa3773e85,0x3d363f85,0x46a8c120,0x97f64122,0xa3443f36,0xfb3abf25,0xd4893e89,0xcc853f60,0xe9fb3e85,0x258c3fcb,0xdd21c116,0x66154118,0x29363f45,0xf856bf17,0x13663e73,0x45c83f6c,0xbe123e8d,0xfa913f27,0xa77fc112,0x1c14415a,0xf4ed3eaa,0xd2b1bf55,0x35503edf,0x57f33f56,0x94253e80,0x2d3e3f0e,0xd6e2c11a,0xb4594147,0x11833e90,0xacdbf6b,0xf4e43e8e,0xafc43f55,0x76713e80,0xafbd3f07,0x68e7c123,0x21dc4125, 0x39c23e92,0x1d96bf64,0xb6cc3eb4,0x44803f57,0xfcc63e83,0x1a623d1c,0x139ac11a,0x6a734148,0xfec73a80,0xf2dabf73,0x9ad03e9a,0xadef3f4f,0xdf263e80,0xbe123d2c,0x40d4c112,0xd3aa415b,0x5a223ad1,0xbc33bf5e,0x9ad03efd,0x57f33f4f,0x312f3e80,0xfa8ebf12,0xb7bec112,0x3077415a,0x49bbbe9a,0x7e00bf55,0x600f3eed,0x57f33f49,0xda013e80,0xafc2beee,0x7616c123,0x486b4125,0xa8dfbe73,0xc882bf67,0xd2c3eb4,0x44803f48,0x485a3e83,0xbfbe3d00,0x6b7ec123,0xac2f4125,0xff173a9c,0x9c9cbf6d,0x9ad03ebc,0x3ce63f4f,0x6e5d3e83,0x6ff7bf8e,0x12bcc117,0xa5ab4143,0x5e31bf08,0x4f2fbf52,0x847b3e4c,0x3a693f42,0xf41b3e83,0x2d3ebef5,0xe4a1c11a,0x1e534147,0x23e0be5a,0x9f46bf6f,0x99783e92,0xafc43f49,0x603d3e80,0x302cbfc4,0x7282c118,0x523411f, 0xd46bf32,0x5ad2bf2e,0xc3ad3e6e,0xc12b3f39,0x7a923e8a,0xbfe2bf7b,0xfc7ec120,0x3e084123,0x6e21bf1a,0x138abf3e,0xd9403e94,0x2b4e3f40,0x75bc3e85,0xecc7bffc,0x66b3c10e,0x4aa04135,0xd41abf16,0x2d7abf4d,0xc7f33dc1,0xd2563f38,0xa2d73e8a,0xe6cec019,0x2848c10b,0x5334125,0x7fd8bf07,0x73b0bf54,0x5eab3e39,0xd803f32,0xb27d3e90,0x62dbc043,0x839fc104,0x65db4130,0x546ebf0d,0xa16cbf4d,0x2f233e68,0x8bd63f2f,0x87383e91,0xe2ccc083,0xbc9dc105,0x85a7410b,0x7a7fbee1,0xc2aebf48,0x2f233ee0,0xefbb3f1f,0xbd03e98,0x8afdc049,0xa4a8c106,0x5275411d,0xb224bee2,0x9ddbf5a,0xc3013e8c,0x97b73f2a,0xed633e94,0x911fbfbf,0x9d93c10f,0xe7f2414f,0xbffebf15,0xa994bf41,0xfa1a3e94,0xa4f43f3f,0xdfb53e84,0x67574011,0x14bbc10d,0x4f7d410d, 0x95093f12,0xc754bf36,0x4cad3ecf,0x8d193f7c,0x2a303e94,0x130404d,0xd5e1c10e,0xe4f74102,0x72163ea2,0x6803bf33,0xc17b3f23,0x7f913f89,0x92033e96,0xa8efc122,0xb5c8406a,0x813bef1,0x5e453dd7,0xcbd4bf74,0x583a3e8e,0x44af3eef,0x583d3f10,0xf76ec124,0xa2a14079,0x88e5bdea,0xa6bfbcfe,0x226bbf38,0xf9a93f31,0xa7723ef2,0x629e3f10,0xec3ec145,0x6c0d4051,0x8660bf01,0xb90f3d8e,0xe2b9bf15,0x27283f4e,0xb0963eea,0xbd5a3f0e,0xb270c142,0x54b94043,0xe80abf41,0x9b3d3e90,0x963ebf5a,0xcfe63edf,0x2f163ee7,0x56af3f0e,0x4f48c141,0xee744044,0x3555bf8a,0x998b3ed3,0x20f6bf68,0x6b23bd86,0xcfc83ee5,0x9b5f3f0e,0x9392c15c,0x79fb400f,0x73d7bf67,0x76473eb2,0xddb8bf28,0xcb863f2a,0xfb1a3ee2,0x903c3f0a,0xa7adc160,0x8cc1401c,0x14d9bf41, 0xe1563dc5,0x7205bec2,0x30b13f6b,0x97573ee4,0x8cd33f0b,0x845ec170,0x1ac3fe1,0xcc83bf5a,0x33f7bd84,0xcec0be2c,0xc913f7b,0xd6913ee1,0xecd33f08,0x7519c165,0xe411403a,0x1e5dbf10,0x1ffb3ce3,0xbb72bed9,0x6d593f67,0x3e4f3ee6,0x2b6a3f0d,0x203ec174,0x28cc3f20,0xbb82bf52,0x60f9bee6,0x4d623ec0,0x23293f4f,0xeec43ede,0x5fb53f03,0x9a13c16b,0xe70c3fc2,0x1c34bf6a,0x166d3eb9,0x6442be91,0x24923f63,0xec253ee0,0x271e3f07,0x7b42c168,0xabe23fb1,0xbbb1bf97,0x78163f35,0x2bcbbecd,0x18ad3f14,0xd35f3ede,0x76d93f07,0xaaebc15a,0x5da2400b,0x5b94bf9b,0x7483f0c,0xd35cbf4e,0x8e7a3e68,0x45173ee0,0x541a3f0b,0xe7c0c159,0xf894400b,0xbc2bfcc,0xa14b3f21,0x5859bf45,0xdb983dba,0xf9943edd,0x771f3f0b,0xe671c16a,0x2f5a3f37,0x734abf6a, 0xf7e23ecf,0xf2a43f21,0xfd693f28,0x7e173edd,0x77f93f04,0xb83dc167,0x98e13f0f,0xe83bf9f,0xe7993f61,0xff173edf,0x60073e41,0x69833edb,0xe8ba3f04,0x37f4c165,0xe0013fa7,0xd790bfc6,0x2a6c3f56,0x48aebebd,0x6aa53ecc,0x23853edb,0xaa2f3f08,0xdfdfc163,0x45e53f9c,0xc244bff6,0xfdc13f6e,0x9ae4beb6,0xa2a93d49,0x739b3ed8,0x767f3f08,0x12cbc161,0x7da63e5d,0x3005bea3,0xd47e3ec1,0x30a43f6c,0xd478bd2d,0x48cb3ee0,0x65873f01,0x8edec121,0x9967406e,0xd022bf4d,0x31233e69,0x27b3bf6c,0xd20bbe9f,0x1dde3eec,0xf5ce3f11,0x9e1bc140,0xca25404a,0x8dbebfb8,0x7e293ee7,0xe074bf5f,0xf966be3a,0xdea43ee2,0x1fab3f0f,0xb64ac121,0x47414079,0xc48bbf8d,0x33003e8f,0xe98bbf5d,0xd256bed5,0x65493eea,0x84923f12,0x4dfdc0fe,0x9a954076,0x477abebd, 0x859c3cdf,0xbcacbf68,0xf588bed5,0xd9f93ef6,0x61e83f10,0x7a70c141,0x8559404d,0xcde3bfe3,0x5a5c3f00,0x5468bf49,0x78b8beb7,0xa7933ee0,0x64903f10,0x4439c158,0xddb1400b,0xf66bbffd,0xb56d3f2d,0x2fa1bf39,0x16e3bde0,0x9c913edb,0x2b6a3f0c,0xca7dc159,0x2b8c4012,0xf78ec010,0xf1083ecd,0xbfb3be84,0x7a68bf60,0x97d53ed9,0xd54e3f0d,0x4185c142,0x3364055,0xad8abffc,0xb1083e8d,0xaebdbdcb,0x4e23bf74,0x83b63edf,0xa6583f11,0x90c3c123,0x2de4084,0x1f95bfbd,0xe2c23e5d,0x7f583e61,0x214bbf73,0x16be3ee8,0x760c3f14,0x3eb4c0c3,0x51c24058,0x59b03eba,0xe227bebb,0x1be6bf6d,0xd80a3d52,0x87623f02,0xe5b83f0d,0x7647c100,0xf71a4071,0x57a7bd66,0x9e9fbdc6,0xf1debf7c,0x800a3e04,0xf8663ef9,0xeabc3f0f,0x1d7ec163,0x4ff83faa,0x5142c00e, 0x83f73f0d,0x20bebe94,0xd634bf48,0x6d2b3ed6,0x40903f09,0xfa2bc0be,0x7282405a,0x376b3d5b,0x4564be6b,0xd0ddbf55,0x89bebf00,0x43243f01,0x2b6a3f0e,0x203ec174,0x28cc3f20,0xbb82bf52,0x60f9bee6,0x4d623ec0,0x23293f4f,0xeec43ede,0xa5153f03,0x282cc164,0x4e2b3e5c,0x92acbc35,0x3139bdf3,0xdc2c3f56,0xc4d63f08,0xbbc33ee2,0xd2b53f00,0xea64c14f,0xb5893d2e,0xe2993f18,0x9214bdd1,0x1eec3f6e,0x939a3eb2,0xd1813ee7,0xcee13efd,0x8c69c14d,0x31adbd16,0x27623e90,0x3f143e36,0x92613f60,0x35a8bee5,0x42393ee5,0xe7673efe,0xfcc14b,0x1976bea4,0xbb3dbc7e,0x3d6d3e70,0xfbbd3f44,0x41e5bf18,0xe4a83ee2,0x29eb3efc,0x3c32c130,0x76de3d36,0x716b3f11,0xb50abd0a,0x2f13f58,0xe14cbf08,0xe95b3ee9,0xeffc3efd,0x57c9c12e,0xb656be82,0xfabc3e87, 0x4eb8bbb5,0xb7613f36,0x683cbf33,0x6f7a3ee6,0xb9053efc,0x968c12d,0xbb30bf0e,0x77ebbd27,0xf8f23b8f,0xe7a33f25,0xc860bf42,0xf5993ee2,0xc6213efa,0xf5edc15e,0x75d5bc6e,0xc567bf20,0x50a93f14,0xb7063f45,0x2307be85,0xd8a93ede,0x18953f00,0xba30c15c,0x3f81be7c,0xa6e4bf70,0x7b533f2e,0x17123f18,0x4dcfbed9,0x68883edb,0xa093f00,0x99afc149,0x6373bf64,0xc84fbefa,0xc2ed3ea9,0xa5f23def,0xf0d8bf6f,0xaf7d3edc,0x4563ef9,0x161ac14a,0x704cbf1b,0xe99fbea2,0x84c93e91,0x6ac03f29,0x2885bf31,0x86f43edf,0xc3d93efb,0x7c39c10b,0x63c7bf06,0x336abe26,0x327abc49,0xffaf3db3,0xf530bf7e,0x9e8c3ee3,0x1b313efb,0x5bf7c12d,0x24bcbf53,0x8f38be5e,0x4bcc3d87,0x28233e3a,0x46a6bf7b,0x45b73ee0,0xf2323ef9,0xd9f1c10b,0xe13be7a,0x4f193c3d, 0xa788bdde,0xe3203f23,0xaa2bf42,0x64f93ee7,0x79553efd,0x7bc4c164,0x74863ece,0x37bbbfca,0x9833f77,0x7c83e6d,0xa266bdf1,0x54de3ed8,0x3cd03f04,0x4dac167,0x928a3db8,0xcfb3c003,0x62dc3f38,0xcf6bbde5,0x6f37bf2e,0xd6733ed4,0xe4753f03,0xf373c15a,0xd999bf11,0x2ca3bf8d,0xebb23f25,0x81b63cb0,0x1ea8bf43,0xa8973ed9,0xa0623efe,0x753ac15c,0x680ebf89,0xb7dcbf7d,0x13613f0e,0xdeabea4,0x750cbf44,0xefb73ed8,0xaca93ef9,0xa4c2c12d,0x2546bf84,0x9b2fbe05,0x5d3e07,0x31e5bee2,0x3e85bf63,0x2a173ee0,0xdcda3ef7,0x3d7dc149,0xe01abf97,0xa58ebeca,0xca503e87,0x40cbbec0,0xb641bf63,0xe4193edc,0x964b3ef6,0x4995c14b,0x860ebfc7,0x5e98be82,0x1c213e9e,0x9aabe4c,0x903fbf6e,0x2f233edc,0xc3d93ef3,0x7c39c10b,0x63c7bf06,0x336abe26, 0x327abc49,0xffaf3db3,0xf530bf7e,0x9e8c3ee3,0x826b3efb,0xe10dc10e,0xeac8bf8e,0x8b993e16,0x38203da4,0xf03abea2,0x6b6abf71,0x78e63ee4,0x31de3ef5,0xfca8c12f,0x1e97bfa9,0xa6123ccd,0x2d513e05,0x3073be83,0x795fbf75,0x1f433ee0,0xb00a3ef4,0x542c10c,0x76abbf47,0xc18bbd4d,0x6dde3da6,0x6d57bef6,0xf6e4bf5f,0x11273ee3,0xe613ef9,0x5d68c0d7,0x7dfabf0b,0x3d55bc7f,0x4fbc3d95,0x3363bef4,0x1299bf60,0xe9253ee9,0x6f3d3efa,0xc947c131,0x2703bfeb,0x75ef3d5b,0x5583e21,0x9f58be37,0xc4a4bf78,0xa1e43ede,0x55d63eef,0xce9c17a,0x418dc1c7,0x3128404d,0x2a48be3a,0x2ee5bf5a,0xa3b1befb,0xa72a3eb1,0x7f773d7d,0x34f7c175,0xc8dec1bf,0x26983fb0,0xb15bdfb,0x6e30bf55,0x733fbf0a,0x4b553ea6,0xe4af3dba,0x573ec16e,0x4374c1bc,0x41423f83, 0xe7433f35,0x9976bf1c,0x6d87beb3,0x93473ea3,0x81fc3dcb,0x6214c16f,0xd5aec1b3,0x9539bf3a,0xc5193d70,0x9745bf37,0xd495bf31,0x67993e99,0x85a63e05,0x37ec169,0x4bd7c1b0,0x4214bf57,0xee3c3f5c,0xfab3bed1,0xa5f0be9a,0x61703e98,0x12863e0d,0x9915c162,0x5853c1a5,0x7508bf2d,0x85273f6f,0xf7cbbe6a,0x180dbe89,0x70f43e9c,0x42933e22,0x9959c165,0x23f2c19e,0x934fc013,0x962f3f6c,0x9422be5c,0xf49bea1,0xee5b3e93,0x92ab3e3c,0x49ddc16a,0xc287c1a2,0xa7f9c01b,0xf9b63ea2,0x43abf0a,0x2ee4bf47,0x5253e92,0xf1023e36,0x2fcec168,0xc5c5c18e,0x16cac073,0xf9bd3ec7,0x6020bec8,0x1fbcbf55,0xb8e93e8f,0xc1973e6a,0x1ce3c165,0x4ed7c1b3,0x2e843f10,0xcf213f56,0xa8cbbee0,0x58b8bea7,0x86343ea1,0x30fa3df9,0xae5c169,0x5779c1bc,0xaaf03ff9, 0x9ba93f47,0x9963bf0c,0x52d2be99,0xb3fa3ea9,0xcd1f3dbf,0x4d94c15b,0xd081c1a6,0x26a33ec2,0x44d83f64,0x41b5be82,0xb1b3bec0,0x66be3ea2,0xdc253e19,0xe4fc175,0xdf1cc1cb,0x83a64086,0x88233ecd,0x7f0fbf46,0xac21bef9,0xbd0a3eb6,0x5a9f3d3e,0x7d12c173,0xbca9c1c4,0xc3bf402e,0x7fe43f0b,0x9b7bf41,0xeebbbeb9,0x88943ead,0x76303d90,0x8347c15a,0x22a3c197,0x83b8be3e,0x20993f6e,0x53ffbdc5,0x69ebeb3,0x17e3ea4,0xb4403e3d,0x713c15f,0x1ae3c194,0x6bc3bfd5,0x69d23f79,0x8ae1bdbc,0xd29abe52,0xfae83e9a,0x9a493e4e,0x79afc15a,0x448dc185,0x5c2dbf0c,0x28133f78,0x6bebc3a,0xd131be78,0x18053ea8,0x373d3e66,0xdceec160,0x8e26c17d,0xfde8c012,0x1c223f7a,0x2e633c45,0xc722be49,0x3c293e9e,0x2aba3e80,0xbe35c164,0x1ffbc18a,0x3716c063, 0x9813f77,0x4f9bbda2,0xff32be7d,0x37503e90,0x5e9f3e70,0x3662c168,0xa713c16c,0x6296c095,0x182d3f6f,0x7f63d6c,0xe7dabeb3,0x276b3e91,0xfe383e92,0x227ec153,0x9592c189,0x3ef03f2f,0x7dda3f67,0x890f3c61,0x18a4bedb,0x7de13eb0,0xcf43e55,0x493c16d,0x7b4ec172,0xbcd2c09f,0x99283ed3,0x5247be6e,0xdf5dbf61,0x26cc3e8f,0x50443e90,0xfed1c179,0xd419c14b,0xb48ac0b3,0xcca33eab,0x170fbe30,0x1da8bf6d,0xb7cc3e96,0x63033ea6,0xaf34c16b,0x6d1ec1c2,0x278b4055,0x9ce53f2e,0x398cbf22,0xb888bebb,0x9c203eb1,0x9a843d8f,0x58f9c15f,0x7bb3c1b7,0x95734021,0xd6913f4b,0x142abf01,0xc7acbeaa,0x89503ead,0xe0e83dcb,0x49d0c15d,0x5458c1b0,0x9ae63fac,0x60403f55,0xbc96bede,0xdc3cbead,0x6c5d3ea6,0x726e3dfa,0xcd3fc153,0xa6c2c1a3,0xb7983fb4, 0x23bc3f5f,0xb5be8d,0x5ebbbecd,0x64ae3eaa,0x49423e17,0xb972c14a,0xf2edc18b,0xff593fcd,0xedae3f4d,0xfb96bbc1,0x50bf17,0x613d3eb5,0xbe3b3e49,0xb0fdc152,0x522fc198,0x80b63f5c,0xfbd43f5c,0x1052bdcb,0x706dbeff,0x8353eaa,0x5a073e33,0x55ebc16b,0xa97ec1c9,0x8cc14092,0x254d3f33,0x5096bf1a,0x8462bec3,0xe2333eb8,0x5df43d42,0xa44bc175,0x737cc1d2,0xfb3140ad,0x55183ec6,0x52f7bf3e,0x6a7fbf0b,0x457c3ebc,0xf7983cb7,0x7f32c15c,0xe610c163,0x40b4bf66,0x46013f7a,0x255d3d63,0xd2aabe50,0x5df63eae,0x30ad3e89,0xf5cb3f19,0x4a1cc189,0x72c9411c,0xc2103f36,0x93fbf03,0x8ea83ef4,0xc7753f61,0xea683e12,0xc2d73cf5,0xfd62c18d,0x83fe411e,0xcba3b1c,0xa6cfbf2d,0x9ad03f3c,0x79e13f4f,0xf89c3e09,0xdd6f3cea,0x623ac18e,0x92134118, 0x1b1d3a7f,0x3febbf74,0x9ad03e9a,0xec73f4f,0x18df3e0a,0xf5cdbf0a,0x5933c189,0xa7b9411c,0xc229bf35,0x6411bf03,0x254a3ef6,0xc7753f40,0x6d13e12,0xf8073ce0,0xc711c18f,0x84cb4111,0xaeeeb9e6,0x72d7bf7d,0x9abfbe09,0xa36a3f4f,0x6de73e0a,0x2a953f10,0x166ac18c,0x11ff410f,0xfe843f30,0xd3a4bf37,0xddcbdd0,0xf0fe3f66,0x56543e13,0xe6153cd3,0x1e0dc18d,0x9969410a,0xef2fbb21,0xf083bf25,0x9abfbf42,0x773e3f4f,0xb40f3e12,0x2a92bf02,0x24a9c18c,0x3c53410f,0xfe7ebf30,0xb4e7bf37,0xe69fbdc7,0xf0fe3f3c,0x57a83e13,0x53543f0a,0xa14fc18a,0xcf644107,0xb4ce3e92,0xf9dabf1e,0x3958bf3a,0x30733f68,0xb4293e1b,0x346b3f9c,0x3052c184,0xdf94101,0x892e3db7,0xbbbbbf2c,0x88e3bf3b,0x1b373f85,0xd79d3e2b,0x98c83f00,0xeb64c182,0x520340fc, 0x1e703cc4,0xd050bedd,0x1b00bf66,0xc5053f68,0x43af3e2f,0x61a44013,0xce7fc181,0x7cc940fc,0x8c413e99,0x830ebf73,0x1301bd91,0x59193f98,0x1da83e32,0xaae33fa2,0x3d87c185,0x92164108,0x5d1f3f12,0xf8bf50,0xf095bdca,0xd8773f82,0x265b3e24,0x7b133cc3,0x594cc185,0xea014100,0x6391bb3f,0x8aecbeda,0x9abfbf67,0xc8693f4f,0xc6ef3e28,0x5354befa,0xaef8c18a,0x3a5c4107,0xb4e2be95,0x7f20bf1e,0x677fbf3a,0x30733f3b,0xad213e1b,0x98cabee9,0x4dcc182,0x1c6040fd,0x1e62bcf4,0xc4ecbedd,0x7c24bf66,0xc5053f3b,0x8ef73e2f,0x346bbf96,0x5022c184,0xc5014101,0x8939bdc0,0x94c7bf2c,0x6a1fbf3b,0x1b373f27,0x4a6b3e2b,0x80803cb2,0x57a8c171,0x985040ec,0x34cebb48,0xf66dbea7,0x9abfbf71,0x7ce93f4f,0x9afa3e48,0xaae3bf9b,0x5e6cc185,0xbb264108, 0x5d23bf12,0x67c8bf50,0x10aebdc2,0xd8773f2a,0x432d3e24,0x61a3c010,0x4737c181,0xbb1d40fd,0x8bccbe99,0x8956bf73,0x3d64bd8d,0x59193f15,0x651f3e32,0x42463f96,0x5a83c17b,0x213e40f2,0x3483be32,0x4b53bede,0x2785bf62,0xb5783f86,0xd5b23e3c,0x86bb400e,0xab22c174,0xd03c40e1,0x100dbe8d,0x98cdbecd,0xac08bf5f,0x952d3f9c,0xd8623e47,0x22c7400f,0x853ac180,0x8e9340ef,0x67d2be0a,0x4181bf30,0x5981bf36,0xf6b23f9b,0x9cc73e37,0x16aa3f8f,0x4d7dc167,0x401f40e2,0x34b0be6e,0x38c3bea3,0xab15bf6b,0xcfee3f84,0x476f3e55,0xa3c43ee8,0x17e1c16d,0x430840ea,0x36ccbd9d,0x55e0bea6,0x53acbf71,0x19df3f65,0xe3693e4d,0xab0b3ec8,0xb8c1c151,0x1e9840d9,0xe834be5c,0x39a1bd9e,0xa655bf79,0x9a703f60,0x1f8e3e6e,0xd382405f,0x42dfc17b,0x266a40dc, 0x3710be42,0xf37fbf2a,0xe304bf38,0xf6ad3fa8,0x2a713e40,0x791409c,0x1d56c17d,0x2d8940da,0x512fbd80,0xd8ebbf7f,0x6c72bd19,0x1fb83fad,0xf2c73e40,0x26544062,0xcd36c17e,0x7a6240e8,0xed003def,0x6664bf7d,0x7736bd4b,0xb16c3fa6,0xaa2a3e3b,0x424abf90,0x97a0c17b,0x455540f2,0x344f3e2c,0x93e8bede,0xca9bbf62,0xb5783f26,0x4ce83e3c,0x16aabf8a,0x87ddc167,0x256240e2,0x32b63e68,0x9ab0bea3,0x4aa5bf6b,0xcfee3f28,0x38763e55,0xa3c3bed2,0x2ecdc16d,0xc35040ea,0x36c63d90,0x7527bea6,0x696ebf71,0x19df3f3d,0x51003e4d,0x1705c102,0x7228c183,0xe2d240dd,0x39ff3e52,0xc53bbf51,0x10173f09,0xea253eea,0x11643e35,0xab0ec104,0x165c180,0x2d2640e6,0x4debbe27,0x81abe64,0x1b4c3f76,0x2f2b3eee,0x73f63e39,0xc04c11c,0xa5d5c187,0x584240d6, 0x791cbe78,0x769ebe78,0x50d33f70,0x4143ee3,0x7fc13e2f,0x8a7dc11a,0xa831c189,0xc47840cd,0xcb9f3e95,0x8cfbf48,0x66a53f0c,0xb01d3edf,0xffbb3e2b,0x5145c117,0x2032c18a,0xf7f140bf,0x48693ede,0x71f4bf57,0x72223ea4,0x41fa3eda,0xc0143e2d,0xb926c12c,0xe5f7c191,0x9a7a40b6,0x6df53ed6,0xcdaabf3a,0x4e0e3f0a,0x4e443ed4,0xf87d3e1f,0x3069c12e,0xb893c18f,0xabef40c0,0xdfc2be92,0xc9f1be8d,0x63393f6a,0x89123ed8,0xc6223e22,0x5332c13d,0xf38cc198,0x8bd740ac,0x9a18be61,0x6029be5f,0x12a13f73,0x72a43ecf,0x1d343e13,0xd3d9c100,0xab41c183,0x16a740cf,0x7cbd3e9f,0xf700bf67,0xf8d73e95,0x66843ee4,0x2773e37,0xe9d3c0cd,0x3bcbc17e,0xb18040dc,0xa7ba3e31,0xd608bf72,0x83dc3e88,0xe6de3ef0,0xd95e3e3d,0x925ac0fb,0xd465c184,0x480140c1, 0x7d7e3ecc,0x895abf6a,0x84453d2d,0xe2e33edf,0xd43e38,0xa31dc0a2,0x2726c179,0x954440f5,0x62c0bdb1,0xfbb3bf58,0x3de63f06,0xf6123f02,0xd3bd3e3d,0x7573c0d0,0x8651c17d,0x170c40e9,0xfd913db8,0xdf21bf58,0x71c3f05,0x80413ef6,0xdf333e3c,0x791c09a,0x1ef7c17d,0x17e40db,0x509c3d80,0x5de6bf7f,0xb6febd1b,0x1fb83ef7,0x6f5d3e40,0x5559c09e,0x2312c17b,0xc7ff40e8,0xed76bc58,0xc2c3bf77,0x68c23e7e,0xae53efe,0x347a3e3f,0x2f84c0c9,0xed4cc180,0xf55240ce,0x4843e7c,0xc9e5bf78,0x8f19bc9c,0x4d383eea,0xf6303e3f,0xe526c0c6,0x34cec17d,0xe73c40c3,0xbf863eac,0xb3ebbf1a,0x5259bf38,0x8cb53ee6,0x1cf93e44,0x76f2c12a,0x495cc192,0xb2ad40a7,0x641b3f11,0xceb8bf40,0x2baa3eaa,0x30e03ecf,0x830e3e21,0x39a3c127,0x7dd6c193,0xd8e14097, 0x59503f2c,0x88e8bf39,0xb4573e10,0x137b3ec9,0x85733e23,0x1b5dc115,0x7881c18b,0x682940b0,0x54d73f09,0x464dbf56,0x26d93dd6,0xd3d83ed5,0x628b3e2e,0x8110c138,0xc237c19b,0x9f7d4092,0x98f3f2f,0xb351bf22,0xcf893eb7,0x7a203ec5,0x3eb83e12,0xd498c13b,0x30cc19a,0xa03140a3,0x8bb53f11,0x623ebf1f,0x3c03f09,0x4e1e3ecb,0x286c3e10,0xe6cc148,0xd70cc1a4,0x560409b,0x7d833f27,0xa59ebeef,0xfb723f18,0x71503ec5,0xd18d3dfc,0xd513c113,0xc331c189,0xc6b240a3,0xb06e3f27,0xa4e0bf04,0x78d5bf0c,0x5f5b3ed1,0xfa663e34,0x521fc0f8,0xc43fc183,0x7cd740b5,0x4dd33ef3,0x573cbf13,0xb59ebf2a,0x3cda3edb,0x18fc3e3e,0x259bc0f9,0x5189c17c,0x105340ad,0xbdb33ece,0x5655be80,0xd33dbf61,0x51bd3edb,0x40f3e4b,0xaf62c14b,0x10b2c1a1,0x6a9840a4, 0x7e12bd50,0x29d3bd80,0x6edf3f7f,0x754b3ec9,0xc4573e01,0x46dfc157,0x8694c1ab,0xa1fd40a5,0xda99be2b,0xced03e64,0xcf643f75,0x58973ec6,0xe7883dd9,0xa97ac098,0x2a61c17a,0x50e340cf,0x88ff3e79,0x9124bf21,0x9b6bbf3c,0x4ef43ef2,0xd3fc3e45,0x8c50c0c7,0xac54c173,0x746940ba,0xf8ae3e99,0x235abe8a,0x4ef0bf6a,0x7e783ee6,0x1f7d3e51,0x2ac2c09a,0x54cac170,0x19cb40c5,0x36e93e7b,0xdb0bbea6,0xd14ebf69,0xb3463ef1,0x88663e52,0xd37fc05c,0xfa9ac17b,0x66fb40dc,0x3cf63e3d,0x3cc8bf2a,0x3ac1bf39,0xf6ad3f02,0x321e3e40,0x2654c060,0x880ec17e,0x2fd240e9,0xecd6bdf0,0x3c98bf7d,0x57debd48,0xb16c3f05,0x3ea3e3b,0x22c5c00d,0xfb31c180,0xd7e040ef,0x67cb3e05,0x79dcbf30,0xe604bf36,0xf6b23f11,0x2f233e37,0x86bbc00c,0x2058c174,0xf0c440e2, 0x130c3e8a,0xb6ebecd,0x83fdbf60,0x952d3f10,0x4ec63e47,0xdee5c05e,0x2f4fc170,0xe37a40d1,0xa3b73e88,0x249cbebb,0x3027bf64,0x483d3f01,0x65063e4f,0x16c066,0x6fb3c161,0xaa2740c5,0xe85c3e82,0xe6d6be95,0xce5bf6b,0xd6ed3f01,0x660e3e62,0xe25ec00e,0x4d5bc162,0xe89440d4,0x79773e8f,0x8d19be9e,0x778abf68,0x7d7c3f10,0x49f93e5d,0xb3fdc014,0x18f2c14e,0xdff440c7,0x9c2a3ea6,0xa0d1be37,0xca4fbf6d,0xf9163f10,0xd7803e75,0x1a90bf83,0x55f1c14f,0xd98740d4,0xd98a3e8c,0xcccebdcb,0x774bbf74,0x923e3f2b,0x868c3e72,0xab0dbeb4,0xcc88c151,0xa65e40d9,0xe50c3e55,0x93aebd9e,0xd35bbf79,0x9a703f40,0xa2ec3e6e,0x220abf64,0x5e8c131,0x934140d9,0xb6363f27,0x4f573e42,0xed6cbf3b,0xc2a43f35,0x91d53e88,0x7dc53ca3,0x9143c153,0x22740da, 0x7051bb54,0x8db4bd71,0x9abfbf7f,0x7a3a3f4f,0x625f3e6c,0xf643cac,0x345dc135,0x935240e5,0x1510bb31,0x459f3f0c,0x9ad0bf56,0x4c983f4f,0x71113e85,0xc6b8be9b,0x6df2c134,0x3e3340e5,0x876d3ee3,0x56343f01,0x2718bf3d,0x6de33f46,0xd1913e85,0x7617be91,0x5187c11a,0xc7da4113,0x7b8b3eda,0x41c3f3f,0x2889bf02,0x39583f4a,0xc1373e8c,0x690dc09e,0xdf52c161,0x30b940bb,0x55bf3e62,0xe796be8a,0xae8ebf6f,0x8f543ef2,0x6d93e64,0x4205c0a7,0xb18c152,0x18af40b1,0x15243e53,0xe480be75,0x6ce3bf72,0x264a3ef2,0xaad63e77,0xeeb1c075,0x562c14f,0x52c240b9,0xc6683e77,0x148cbe6f,0x813dbf71,0xd3913f00,0xad663e77,0x2693c0cb,0xf959c165,0xf20940b2,0xb87c3e8c,0x2216be68,0x219bf6f,0x94143ee8,0x39633e62,0x36c6c084,0xc699c13c,0xafe840ae, 0x79d23e7c,0x588abdea,0xf62bf76,0x94853f01,0x57003e87,0x248dc01d,0xa07dc138,0xb21940bd,0x89b93ec7,0xf3efbd98,0x7f1bbf6a,0x153c3f12,0x94a3e88,0x5d01c029,0x160c11f,0x158e40bb,0xae603ece,0x9cad3de3,0xbb3bf68,0x9a523f16,0x5df23e95,0x208ec028,0xd00dc0f1,0x3bfd40df,0x587e3e9f,0x3cd23f3b,0x1212bf1b,0x38223f25,0x14fd3ea6,0xfc9ec018,0x5d28c0e2,0xe14104,0x9a6a3bf8,0xdb283f7f,0x3a5cbd61,0x70e73f2e,0x35df3ea5,0xc7e9bfde,0x479cc0ea,0x17dc410b,0x860e3f19,0x9d3a3f4a,0x7104be03,0xd0c83f36,0xe6153ea1,0x3ab8bfcd,0x11f1c0f5,0xbd0a40f9,0x9af93f36,0x64a53f12,0x9aedbece,0x4df43f34,0xec143ea2,0x658cbfe9,0x5f67c108,0xdb0140db,0xf4eb3f2b,0xad123ebf,0xcdabbf23,0x40c83f2b,0xe49b3e9e,0xdc7fbf7f,0x636ac107,0x585a4108, 0xf46a3f64,0xd25a3ebe,0x6ff8be82,0x97423f3e,0x620f3e98,0x4e38bfab,0xfcb1c0f3,0x8cfd411d,0x4b933f35,0xe0983f34,0xa693bd04,0x60283f3d,0x57363e9b,0xf18bbf39,0x51bec103,0x36ed4131,0xf9423f40,0x2f383f22,0x33adbe34,0x93923f46,0x60ee3e91,0xb805c02f,0x9bd2c108,0x23b340c4,0x88083ec1,0x5f593eca,0x1f21bf56,0x9f623f1c,0x5b6c3ea0,0x8190bfaa,0xceeec117,0xece940da,0xae863f3c,0x2cdd3e93,0x4c23bf1c,0x3ed13f31,0xa2e43e96,0xeefabf1e,0xda89c115,0xdfbf4110,0xe2493f61,0x712e3ec0,0x9d06be90,0x316e3f44,0xccbc3e8f,0xa53cc08d,0xe167c10d,0xd7f040b0,0x78713e26,0x52123ec1,0x557bf69,0x34b13f0a,0x232d3ea0,0xd311c0a5,0x23a9c103,0x51bf40c6,0x6447be14,0x520b3f5a,0x5f18bf00,0x17ad3f0c,0x29bf3ea3,0x4de4c078,0x60c1c0fa,0xb4d240cc, 0xbe2bd13,0xa4a73f4e,0x914bf17,0xf2023f16,0x7dd83ea5,0xf59fbeaf,0x199bc0ff,0xa1644148,0xc50f3ea7,0x5cce3f62,0x7186bea8,0x9f273f4b,0x4a733e8e,0x53e2be98,0x8347c107,0x25bf4137,0x2e773ed8,0x19ad3f50,0x7f06becd,0x63633f4b,0x1b263e8e,0x4b093d0f,0x50fcc107,0x1feb4137,0x2063babd,0x5bcb3f65,0x9ad0bee4,0x72543f4f,0x87b13e8e,0x6466c08d,0x89abc124,0x44e240a9,0xaf9d3e70,0x92da3d3c,0xbea9bf78,0xe1a43f03,0x61c13e94,0x8d59c0c5,0x9359c12b,0x62cf409e,0xdf853e3c,0x93e93ca4,0xc2f8bf7b,0x4c623ef4,0x73c53e92,0xf14ac0c7,0xfd56c115,0x8d940a4,0x5a93dda,0x19ba3ed1,0x75ffbf68,0x1eda3efe,0xdfb03e9d,0x4ba0c102,0x9a35c11c,0x4bf24095,0x5d293eb2,0xe4183e30,0x94c8bf6b,0x76713eef,0xa3bc3e9b,0x5886c0c3,0x9377c106,0x5d7c40c5, 0x1cde3e73,0x5f5c3f2a,0xf5d8bf35,0xd2183f07,0x1fb03ea1,0x56d03ce2,0xae9c11a,0x12a24113,0x10dabaeb,0xe93a3f55,0x9ad0bf0d,0x58ef3f4f,0x23293e8c,0x76173eae,0x493fc11a,0x770f4113,0x7b70bedc,0x4daa3f3f,0x55b4bf01,0x39583f55,0xa95d3e8c,0xe804c0b3,0xab5cc140,0xa8d940a6,0x29c83e45,0x38abe1f,0xb6d0bf78,0xfe763ef2,0x82933e85,0x4977c0df,0xd1e7c146,0x8a07409f,0xce9a3e77,0xb7eabe11,0x67ecbf75,0xe63f3ee9,0x8faa3e83,0xadc411d,0xa8d2c187,0x95d940d4,0x40ab3e7b,0x2323be7a,0x9ee93f70,0x4143fb3,0xc5b3e2f,0xaa734105,0x5007c180,0x97a040e4,0x53173e2b,0xc83fbe65,0x80f13f75,0x2f2b3fb0,0x39173e39,0x162a4103,0xc91bc183,0xd9d040db,0x3cf0be4d,0x3a6bbf51,0xb4fe3f0a,0xea253fb1,0x84773e35,0x88c7411b,0xb70bc189,0x14ad40cb, 0xcceabe93,0xbcc0bf48,0xabcd3f0c,0xb01d3fb4,0xbf9e3e2b,0xb697412d,0xc083c191,0xff0b40b4,0x4a87bed3,0xfc5cbf3a,0x74ac3f0b,0x4e443fb7,0xfb5b3e1f,0x4f444118,0x3a38c18a,0x411a40bd,0x877bbedd,0x776cbf57,0xf3063ea5,0x41fa3fb5,0xc6f03e2d,0x50e5413e,0x934bc198,0x35840aa,0xcc843e67,0xfc65be60,0xad923f72,0x72a43fb8,0x142c3e13,0x2eca4130,0x829dc18f,0xf6d40be,0x27683e94,0x6059be8f,0x77473f6a,0x89123fb6,0xfa953e22,0xd2d54100,0xb1ec183,0x382540ce,0xae7fbe9d,0xbbc8bf67,0x28e93e96,0x66843fb3,0x7d2c3e37,0x912f40fd,0x3cedc184,0x27f40c0,0xc2c3becb,0x5dcebf6a,0xa3f93d2f,0xe2e33fb4,0x77663e38,0xe94c40ce,0xe96ac17e,0x91c40da,0xb4afbe2f,0x5522bf72,0xc1053e89,0xe6de3faf,0x61ac3e3d,0x750540d2,0x2d25c17d,0x490c40e8, 0xf9f4bdb0,0xefabf58,0xfd2f3f06,0x80413fad,0x7e1e3e3c,0xa31d40a3,0x198bc179,0x235f40f4,0x63bb3db8,0xd6fabf58,0xe17a3f06,0xf6123fa8,0xd4693e3d,0x5559409f,0x1b74c17b,0xfe3d40e7,0xeda83c72,0xa80cbf77,0x1c653e7e,0xae53fab,0x8e063e3f,0x2f3840ca,0xa1a3c180,0xbae240cd,0x1a18be7b,0x69b7bf78,0x8eb9bc92,0x4d383fb1,0x41763e3f,0xe4aa40c8,0xec8bc17d,0x1e7940c1,0x884fbeae,0x990bbf1a,0xc7b9bf38,0x8cb53fb2,0x1f233e44,0xa97a409a,0x2c13c17a,0xb16840ce,0x7e65be7d,0x3cbdbf21,0x1748bf3c,0x4ef43faf,0x51703e45,0x2ac2409b,0x547ac170,0x2e0640c4,0xf952be80,0x8aa2bea5,0x57e6bf69,0xb3463faf,0xc42f3e52,0xdee54060,0x7627c170,0xc2eb40d0,0x9938be8b,0xb731bebb,0xaad6bf63,0x483d3fa9,0xbb133e4f,0x124068,0xafe6c161,0x865640c4, 0xddd4be85,0x81edbe95,0xc558bf6b,0xd6ed3fa9,0xdd663e62,0xe25e4010,0xd665c162,0xdc0d40d3,0x8076be92,0x15b6be9e,0xb791bf68,0x7d7c3f9c,0x913a3e5d,0xb3fd4016,0x9d2cc14e,0xde9840c6,0xa83ebea9,0x1848be37,0x6845bf6d,0xf9163f9c,0xc7323e75,0x1a8d3f88,0x1e4fc14f,0x97b40d4,0xdd54be90,0x55f2bdcb,0x9863bf74,0x923e3f81,0xc02f3e72,0x220a3f6e,0xd584c131,0xce7240d8,0xb74fbf28,0x33683e42,0xb220bf3a,0xc2a43f70,0x2583e88,0xc6b83eb1,0x5cbcc134,0xb51d40e5,0x86c2bee5,0x97f43f01,0xf139bf3c,0x6de33f59,0xddbe3e85,0xc7e93fe4,0x18e8c0ea,0x4eb8410b,0x8584bf19,0x3a933f4a,0xde0dbdff,0xd0c83f6f,0x3a473ea1,0xfc9e401b,0x1d85c0e2,0x88da4104,0x9a73bc01,0x9f693f7f,0x83abd61,0x70e73f7e,0xf8383ea5,0x2088402a,0x4383c0f1,0xeef740df, 0x5f58bea0,0xc43b3f3b,0xe0c6bf1a,0x38223f87,0xc9693ea6,0x3ab63fd3,0xbb75c0f5,0x6a0740f8,0x9a9cbf37,0xfc4d3f12,0xdf0dbecb,0x4df43f72,0x75603ea2,0xdc7b3f86,0x483fc107,0xc47b4108,0xf3b2bf64,0xae223ebe,0xe3b0be7f,0x97423f63,0x57d3e98,0x658c3fef,0xfd78c108,0xeec340da,0xf74abf2c,0x88e83ebf,0x4635bf22,0x40c83f81,0x9a913e9e,0xf1873f4a,0x3da7c103,0x80784131,0xf952bf40,0x34733f22,0xe248be2f,0x93923f59,0x3213e91,0x4e383fb3,0xd86ac0f3,0x99e3411d,0x4b79bf35,0x1a0d3f34,0xfd5dbce4,0x60283f64,0x9d623e9b,0xb8054031,0x9a0c108,0x73d740c4,0xa2a7bec3,0xd2b53eca,0x118cbf55,0x9f623f91,0x23ea3ea0,0x5d01402b,0x747ec11f,0xc96e40ba,0xd387bed0,0x1a83de3,0x4352bf68,0x9a523f97,0x73973e95,0x81903faf,0x8753c117,0xf4e440da, 0xade7bf3d,0xeb833e93,0x84f9bf1a,0x3ed13f78,0x5fb3e96,0xa53c408f,0xf57dc10d,0x80e540af,0x9fbfbe2b,0x13d33ec1,0x99d9bf69,0x34b13fa2,0x89f43ea0,0xeef93f2c,0xc966c115,0x563d4110,0xe34dbf62,0x82463ec0,0xcf4fbe8d,0x316e3f5b,0xcfdd3e8f,0x4ddb407a,0x9219c0fa,0xd54140cb,0x9c93d02,0xb6ff3f4e,0x4f94bf17,0xf2243f97,0xe3203ea5,0xd31140a6,0x10a3c103,0x33aa40c5,0x59de3e0f,0xc0953f5a,0x9403bf00,0x17ad3fa0,0x1aac3ea3,0x53e23ebc,0x7a78c107,0x78ed4137,0x2e59bed9,0xb2613f50,0xdf6ebecb,0x63633f53,0xbd4d3e8e,0xf59d3ed6,0xf83c0ff,0xb77d4148,0xc50abea8,0x46383f62,0xee0bbea7,0x9f273f53,0x7add3e8e,0x248d401f,0x1d47c138,0x99a040bd,0xb264beca,0x542cbd98,0xc3ebbf6a,0x153c3f9a,0x4bfd3e88,0x36c74085,0xeaa9c13c,0xf2a240ad, 0x1551be80,0x39dbdea,0xc4b9bf76,0x94853fa9,0xa81c3e87,0x6466408e,0x9e45c124,0xd8240a8,0x7940be75,0x477d3d3d,0xbe3cbf78,0xe1a43fa7,0xae73e94,0x8d5640c7,0x4af9c12b,0x8677409d,0x5b2dbe40,0x60d63caa,0x6dd7bf7b,0x4c623fae,0x3e463e92,0x4bb84104,0xe5f3c11c,0x6d894093,0x2adebeb3,0xbb733e2f,0x1648bf6b,0x76713fb0,0x551d3e9b,0xf14a40c9,0xb160c115,0xbaaa40a3,0x3dd1bde2,0xebbd3ed1,0x254ebf67,0x1eda3fab,0xc1e53e9d,0x588340c5,0x4d98c106,0x70ae40c4,0xeb03be76,0x4ba83f29,0x6a6ebf35,0xd2183fa4,0x95b3ea1,0xc62a3d1d,0x2282c0ff,0xc5854148,0x41d6baae,0xf80d3f69,0x9ad0bed2,0xa8b93f4f,0x60d93e8e,0xa2793d21,0x6020c0fa,0x50c8414d,0x8df1bb20,0x8c793f27,0x9ad0bf41,0xdd8b3f4f,0x2c4d3e8e,0x7b13ef8,0xfa3dc0fb,0xad00414c, 0xadd4bece,0x52823f2b,0x7fbbbf1f,0xd7e93f54,0xc54a3e8e,0x41ffc0fb,0x1afcc16d,0xdb6340a6,0x2a0e3ec1,0x2c5bbe3d,0xcd2dbf68,0xd20b3edd,0x47bd3e5c,0x92a3c100,0xbf68c15d,0x7f20409d,0x37133eba,0xb82bbe27,0x7b7cbf6a,0x6cf03edf,0x90883e6f,0x1915c114,0x15e4c179,0xa1c04094,0xefbd3f06,0xbeb8be0f,0xb928bf56,0x384c3ed3,0x61fa3e54,0x85fec0d2,0xc159c156,0x508940a9,0x60f03e83,0x81ebbe57,0xd66fbf71,0x3f603ee8,0xa4a93e74,0x6ab1c113,0x1255c184,0x69e8409b,0x6d303f11,0x2703be5f,0x9418bf4b,0xde273ed1,0xdfe73e41,0x3d33c125,0xbca5c18c,0x263b4081,0x39c13f31,0xe698be29,0x5237bf33,0xd3b73ec6,0xcf9c3e36,0xdd18c125,0x1c0fc191,0x4db7408a,0x551c3f49,0xfd05bede,0xfe76bee0,0xf4b63ec5,0xd7e63e28,0xc545c133,0x3411c19a,0x24474068, 0x427d3f54,0x6fb4bed5,0x7864bebf,0xdaba3ebc,0x94eb3e1a,0x32a9c135,0x5046c19c,0x18704082,0x85543f45,0x4717bf1d,0x4c273e2d,0xa6223ec0,0x6a743e14,0x4bebc141,0xb745c1a5,0xcfa84078,0xdeac3f52,0xf5d0bf02,0xecab3e7b,0x90693ebb,0xbe183e02,0xabd1c144,0x2644c1a4,0x234a408c,0x112b3f43,0xd5f0bf01,0x15593ecf,0x64673ec1,0x7a883e00,0xf7c2c150,0x8466c1ad,0x38ac4091,0x8c7f3f4a,0x484fbebd,0xd8f13efa,0xbc1f3ebf,0x8f2e3dd6,0x6befc154,0x13b4c1ad,0x6ab40a0,0x7093f30,0x667dbe99,0x43b33f29,0x9a1c3ec4,0x84f53dd2,0xf26dc161,0x6acfc1b6,0x75f540ae,0xd3743f27,0xd43fbdd2,0x1fa33f3f,0x968d3ec5,0x19083da3,0x1b96c165,0xcbc2c1b5,0x7a8b40b0,0x42ddbe8b,0x50e03eef,0xb4ea3f57,0x64c33ec6,0x311f3daa,0x11a9c172,0x9debc1c0,0x28e140c2, 0x9c8bbec4,0xc8283f04,0x9e9d3f43,0x674d3ec7,0x26e93d67,0xd5d0c116,0x7dcac167,0xb38a408c,0x65cb3f00,0x4c27bded,0xf3dbf5b,0x56e73ed6,0xfa3b3e68,0xb26fc118,0xdf3c154,0xc354085,0xa6ef3eee,0x316ebd65,0xe326bf62,0x6d9c3ed8,0x26133e7e,0x6c6fc105,0xbd7bc14c,0x3b004094,0x86a03eae,0x31febdd8,0x248dbf6f,0xdf113ee1,0x2dbd3e81,0xbd53c128,0xe9e6c175,0xeb84406a,0x4cc63f1e,0x1cbbd85,0xce42bf48,0xa52f3ecb,0x6b893e5e,0xb958c135,0x8124c18c,0x4d5d4047,0xe8c33f34,0xe242bdce,0xd762bf33,0x7b893ebe,0xec723e3c,0x4c7c126,0x773ac184,0x8a224077,0x50223f25,0xe1d1bdba,0xe1f8bf41,0xb6f63ec8,0x23123e49,0x7438c157,0xd227411e,0xf389c127,0x6313f25,0x859dbeeb,0x624abf1b,0xbd343eb1,0x25843f3c,0xa5f5c157,0xc4cd4133,0xd2bbc12b, 0x4c0f3d82,0x5041bd12,0xea70bf7f,0xd58d3eb3,0x9c193f42,0xbb94c148,0xcb054148,0xf9c2c128,0x79123ed2,0xf6c9be02,0xa00ebf66,0x200c3eb7,0xd0403f48,0x4750c14a,0x31fe412d,0xcd01c122,0xe5963f3f,0x6c0dbee7,0x5c74bef7,0x10b63eb5,0x8faa3f40,0xc4c2c14e,0x702a4122,0x5b75c10e,0x5d2d3f30,0x424dbf36,0x3e29be09,0x10aa3ebe,0xf1333f3b,0x92edc139,0xb986413d,0xed64c117,0x47ac3f23,0xa417bf06,0x4242bf0f,0x3e793ebc,0x2be53f43,0x932dc158,0xf4884118,0x7336c117,0xcd063f3b,0x8d34bf2d,0x7d2cbd5d,0x67fd3eb8,0xd4653f39,0xf22fc134,0xf0544176,0x9ac3c123,0xb4e43e82,0x871c3ba2,0x7393bf77,0xe9643ec2,0x13d33f53,0xef5fc136,0xf222415a,0x827ac121,0xc1d33ef5,0x3f74be64,0xd489bf59,0x36fc3ebc,0xd343f4c,0x1c70c11c,0x312b416d,0xaff6c119, 0x9e5a3eec,0x11afbe9c,0x5c9ebf55,0x153c3ec3,0x9c463f50,0x1f76c13f,0xc5e6412d,0x5054c100,0x82e33f11,0xdeb0bf47,0x3cdabe87,0x4dba3ec6,0x53063f3c,0x4124c121,0x67f6414f,0x6299c10c,0xb7193f15,0x89fbf0c,0x53b1bf19,0xb1f73ec4,0x249f3f46,0xccf0c128,0x6f544134,0x558fc0e2,0x78923ee2,0x5f26bf41,0x557abef7,0x9d493ecf,0xdbbb3f3c,0x6c27c147,0xa1f54121,0x7048c0c5,0x9ef03ece,0xa644bf5f,0x1b11be8b,0xda593ed4,0xa3e53f35,0x2b20c104,0xa693415c,0x3602c0ff,0x54613ee0,0xa3debf12,0x2281bf31,0xbb803ece,0x85573f48,0x543fc155,0x662a411c,0x8b7ac0e4,0xe4713f1b,0xe0febf49,0xf39dbdc0,0x35833ecb,0x3f643f36,0x854ac15e,0xb2d34113,0xf16ac0fd,0x12703f41,0x7c2abf27,0xafd5bc40,0x449a3ec4,0x5c443f35,0x1619c161,0x508f410d,0x9225c0a4, 0x31393f2f,0x724bbf35,0x4c06be2d,0x95213ed8,0x23123f2e,0x7438c157,0xd227411e,0xf389c127,0x6313f25,0x859dbeeb,0x624abf1b,0xbd343eb1,0x9e133f3c,0x6102c15f,0x110e4111,0xc263c11b,0x3eb93f3d,0xb564bf2b,0x9857bd63,0xd5993eb6,0xdad23f37,0x3443c16c,0x6cc54101,0xd8b7c114,0xd0503f5b,0x123abf01,0x8e7abd96,0xc8b43eb8,0x1c993f32,0x2f98c162,0x9ad34111,0xa02dc124,0x5b1e3ee4,0x7a68bf33,0x413ebf0e,0xd8233eb2,0x64f73f38,0x9a7c166,0x54d8410a,0x3a3ec109,0x93b23f4b,0x6ac4bf1b,0xa78bbcb0,0xe7d13ebe,0x67ef3f33,0x6141c172,0x3d9d40ee,0xb709c0d9,0x900e3f62,0x3551beed,0x3cefbca7,0xaffb3ec9,0xf7e13f2b,0x9bbdc175,0xa93040d7,0x6698c083,0x10073f65,0x9be8bed6,0x55d6be18,0xe4693ed9,0x2e663f23,0xa63ec16a,0x73f34103,0x8c05c0be, 0x67eb3f51,0x5846bf12,0xf627bd5d,0x85383ed0,0x914b3f2d,0x50fc119,0x77cb4183,0x9cfbc11c,0x36c83e94,0x8794bd6d,0xf5c7bf74,0x19613ec7,0x40663f57,0xc707c0f6,0x23774189,0x480dc114,0xea3b3e9f,0xd765be09,0x9df5bf70,0xc4db3ecf,0xf0003f59,0xdd6ac0fc,0x4f3c417b,0x5548c10f,0xf643eda,0xb4a8bec0,0xb55bbf52,0xe9363ecb,0x1d723f52,0xdac0c11b,0x205c4188,0x35efc11b,0xeccd3dc8,0x3a7a3e9d,0x5b29bf72,0x109d3ecc,0x87f93f5a,0xe66ec0c2,0x13634181,0xbecc105,0x81533eb8,0xe5febecc,0x18cebf57,0xe1543ed6,0x32f3f53,0xac66c137,0x34d24181,0xf24cc122,0xd082baf9,0x54c43e98,0xc69bbf74,0x77d3ec6,0xa2b3f57,0xdac0411a,0x20704188,0x131fc11c,0x9480bdc8,0x75833ea2,0x4df9bf71,0x109d3fb9,0xe4073f5a,0xac664135,0x63114181,0x541c123, 0xd8d6bb35,0x2b253e99,0x85a1bf74,0x77d3fba,0xb25b3f57,0x35a4133,0x221b4177,0x8e0dc125,0xa6e7be82,0x86673c1f,0x6d7fbf77,0xeec43fbb,0x7bb63f53,0x276d4118,0x91ee4183,0x3f97c11d,0xdc98be94,0xbb25bd42,0x44afbf74,0x2ef13fba,0x31013f57,0x43c40f4,0x2195418a,0xfbf2c115,0x5853be9e,0x5756bdf9,0x90debf71,0xeb313fb8,0xfcc03f59,0x2f5c411a,0xa559416e,0x97c6c11a,0xfcdcbeef,0x5f2dbe9b,0x3d5cbf54,0x6b593fbb,0x81753f50,0x55f440bb,0x7a854197,0x322dc10e,0x88a0bd3d,0x75bc3e4e,0xa5dfbf7a,0x4c6a3fb4,0x70d03f60,0x8b4e40f6,0x147e418f,0x13f0c114,0xd0fdbd9a,0x95a3e95,0x72bdbf74,0xc07b3fb7,0x71f13f5c,0xbb944147,0x16624148,0x3140c12a,0xefccbed5,0x7937be01,0x9097bf66,0x200c3fbd,0xf5033f48,0x341a4134,0x3b77415b,0xc58bc123, 0x184dbef6,0xef07be64,0x8f3bbf58,0x4c8c3fbc,0xe3413f4c,0xfb184138,0x1816413d,0x7a3bc119,0xb429bf26,0x39a8bf05,0xabf7bf0d,0x5f1c3fbc,0xef973f43,0xc71040fa,0xebee417d,0x7cd7c110,0xb6d1bedd,0xbb27bec0,0x72debf51,0x82903fb9,0xa9863f53,0xa7840c0,0xa7194183,0xcea4c106,0x5eb3beb9,0x50bebecd,0x8ccbf57,0x984e3fb7,0x93ff3f54,0xcf6d40b9,0x690c4190,0xa165c10e,0xad69be93,0xc7babe4b,0x152bbf6f,0xcee63fb6,0xbcf73f5c,0x11644103,0xe388415f,0xa5f0c101,0x2839bee5,0x9d5bf12,0xe779bf30,0xa3f43fb8,0x564d3f49,0xf1664127,0x8ec94135,0x7371c0e5,0x1c4cbeeb,0x32edbf3f,0xa183bef6,0xf8e83fb8,0x578a3f3c,0xe1e84120,0x200a4150,0xca16c10e,0xe4fbf18,0x4095bf0c,0x9f2bf16,0x34833fbb,0x1fc93f47,0xdc64085,0xff4d4198,0x45ddc109, 0x2306be87,0x3da2be74,0x664bf6f,0x317b3fb2,0xf91a3f60,0x643d4039,0xcb8741aa,0x5cb8c10a,0xa9c03e2b,0xb2163d95,0x9557bf7b,0x13c23fa7,0x159a3f6a,0x455d4087,0x5e4541a0,0x58e7c10b,0xd5793c88,0x37b23dee,0xee13bf7e,0xbb3d3faf,0xb1023f64,0x47504149,0x810a412d,0x2b4c123,0x6e89bf41,0x1260bee7,0xfd7abef4,0x10b63fbd,0x91213f40,0xc4c2414d,0xc5874122,0x7474c10f,0x8d72bf31,0xb93cbf35,0x4799be03,0x10aa3fbc,0xb45c3f3b,0x6892413e,0x2107412d,0xc8cc102,0x660cbf15,0xf8ebbf45,0xa2ecbe83,0x64993fba,0xfa713f3c,0x743f4155,0x3599411e,0xf449c129,0x62bbf26,0x71dfbeeb,0xb88dbf1a,0xbd343fbe,0x25763f3c,0x83e54147,0x4ac14121,0xec33c0c8,0x7b29bed3,0xb6a9bf5e,0x83b6be8a,0xe1d23fb7,0xf6593f35,0xa5f54155,0x283b4133,0x811c12d, 0x4aa7bd90,0x33d0bd12,0x4218bf7f,0xd58d3fbe,0x854d3f42,0x9f3a40cd,0x5a684161,0xf0fac0e7,0x84c5beae,0xf96bf13,0x13dbbf3e,0xc09c3fb6,0xb1ab3f48,0xad24096,0xba5a415d,0xc2d9c0cc,0x976bbe75,0xf1d2bf13,0x28ddbf47,0xf4d3fb2,0x13cb3f46,0x3441408b,0x8c414185,0x2e97c0fb,0xd712bea2,0xed36becd,0x826fbf5b,0xc5973fb3,0xea963f54,0xce9640dc,0xe7ae4139,0x2a4c0a3,0x96e7be95,0x1c59bf37,0x1c15bf22,0x5fb73fb2,0x5d2a3f3a,0x50084114,0xe3c5411c,0x7eeac077,0xfbd3be78,0x49d1bf5a,0xd063beea,0x446b3fb1,0x4eb43f30,0xa661410b,0xf0d0413a,0x2bd1c0c4,0xd3e1bec8,0x40b2bf33,0xf013bf18,0x6cdb3fb5,0x42b13f3c,0xec4e4145,0xda274051,0xd093bf15,0xb8afbd83,0xff63bf15,0xacc53f4e,0xb0963fb1,0x42da3f0e,0xf76e4124,0x5d0b4079,0x9b43be39, 0xa6bc3d11,0x144dbf38,0xf9013f31,0xa7723fae,0x73293f10,0xa8ef4122,0xae3e406a,0x53d5bf09,0x5e30bdd3,0x24bdbf74,0x1ce73e8f,0x44af3fb0,0x96d33f10,0xb27d4142,0x7c814043,0x778abf55,0x9a78be8f,0x8662bf5a,0x5aa33ee0,0x2f163fb2,0x6f503f0e,0x939a415c,0x4f55400f,0x408dbf7e,0x65cdbeb0,0x7fd4bf28,0xc25d3f2b,0xfb1a3fb3,0x27693f0a,0x4f484141,0xef804044,0x71b7bf94,0x9863bed3,0x91d1bf68,0x868bd80,0xcfc83fb3,0x68c73f0e,0xa7a84160,0xcaf7401c,0xe626bf58,0xdd80bdb8,0x9a54bec2,0x60073f6b,0x97573fb3,0xcaf03f0b,0x750c4165,0xb07d403a,0x21febf28,0x1f59bcb3,0xc61cbed9,0xbfa93f67,0x3e4f3fb2,0x60843f0d,0x84454170,0xe7d53fe1,0xda9ebf72,0x3ff43d91,0xb157be2c,0x3b9b3f7b,0xd6913fb4,0x2ede3f08,0x99d9416b,0xa22f3fc2,0x5c0bf81, 0xce7bbeb6,0xf00be90,0x79bc3f64,0xec253fb4,0xfbea3f07,0x1f974173,0x70583f20,0x5a80bf6b,0x7b8c3ee9,0x4f433ec1,0x16d3f4e,0xeec43fb5,0xecbd3f03,0x7ad54167,0xb00c3fb1,0xc2e6bfa3,0xac66bf34,0xa0c6becc,0x4253f15,0xd35f3fb5,0x14843f07,0xe7cd4159,0x3726400b,0xfd55bfd8,0x8b6cbf20,0xe1cbf45,0x14233dc3,0xf9943fb5,0x41fa3f0b,0xaae3415a,0xabbd400b,0xbdbbfa6,0xf673bf0c,0xb972bf4d,0x5d6c3e6c,0x45173fb4,0x3f353f0b,0xe554416a,0x3b3a3f37,0xb04fbf81,0x2bebecc,0xbf533f22,0xb413f29,0x7e173fb5,0xa2cb3f04,0x37da4165,0xc55d3fa7,0x4f06bfd2,0x403ebf56,0x58cebebc,0xb5743ecf,0x23853fb5,0x32473f08,0xb85f4167,0x923a3f0f,0x4edcbfab,0x485dbf60,0x59493ee1,0xb8243e49,0x69833fb5,0x59ae3f04,0xe1484163,0x4fb3f9c,0xdce0c001, 0x69bf6e,0xf295beb6,0x68e43d61,0x739b3fb6,0x50e03f08,0xedc4161,0x2fcf3e5d,0xa318bed2,0xff39bec0,0xc7173f6c,0x4a9dbd18,0x48dc3fb4,0x3de93f01,0x8ece4121,0x4d1a406e,0xde07bf5e,0x312abe6b,0x6515bf6c,0xe1d6be9e,0x1dde3fb0,0xf0143f11,0xb64a4120,0x9d5e4079,0x261dbf95,0x32ecbe91,0xfa94bf5d,0x7a5fbed4,0x65493fb1,0xbd0a3f12,0x9e1b4140,0xc5eb404a,0x2f70bfc2,0x7c20bee8,0xdec4bf5f,0xb5d9be37,0xdea43fb3,0x4ca53f0f,0x4df040fe,0xf1954076,0x6797bed7,0x85a6bcf5,0xa43cbf68,0xacb4bed5,0xd9e83fad,0x204b3f10,0x7a704141,0x867f404d,0x69acbfed,0x5674bf01,0xacd3bf49,0x6349beb5,0xa7933fb4,0x1aaa3f10,0x44634158,0x8766400b,0x40b7c004,0x9aa5bf2e,0x1f7bbf39,0xcad1bdd7,0x9c913fb5,0xdaab3f0c,0xcacd4158,0xc8cd4012,0xe229c015, 0xbce8bed0,0x1ae7be84,0x3305bf60,0x97d53fb6,0x6cdd3f0d,0x90c34123,0x7a1c4084,0x6c37bfc5,0xe1d7be63,0x227f3e61,0x433dbf73,0x16be3fb2,0x8e9b3f14,0x41854142,0xbb74055,0xdaebc003,0xa907be90,0x37abbdcb,0xb2b7bf74,0x83b63fb4,0xd2113f11,0x76474100,0x36d24071,0xf96bdde,0x9e953dc8,0x4defbf7c,0xd1e93e04,0xf8663fac,0x655a3f0f,0x3eaf40c3,0x15a94058,0x84283ea6,0xe2273ebb,0x6a86bf6d,0x6b613d48,0x87623fa8,0x937a3f0d,0x1fe24163,0x32403faa,0x9a39c014,0x591bf0e,0x4e5fbe94,0xda88bf47,0x6d2b3fb6,0x1f733f09,0xfa2b40be,0xa919405a,0xe05c3c77,0x45553e67,0x31b7bf55,0x67cbbf01,0x43243fa9,0x1adf3f0e,0xa79cc096,0xa3d3e7a,0x5070be77,0x1a73cf2,0xb3ccbe21,0x95eebf7c,0x36f83ef1,0x5fe13f01,0xf473c0d3,0xfda0be18,0x33bebe48, 0x5c1ebc62,0xdcd4bcf3,0x1f4fbf7f,0xed033ee9,0xd6de3efe,0xd413c0d2,0xa1403e30,0xbd1e,0x828dbe13,0x6f1a3f1d,0x2696bf46,0x8ebd3eed,0xe49d3f00,0xdef8c095,0xf1413f17,0xdd17bde3,0x46c8be1f,0xde273f18,0x9b39bf49,0x78c03ef6,0x1adf3f02,0xa79cc096,0xa3d3e7a,0x5070be77,0x1a73cf2,0xb3ccbe21,0x95eebf7c,0x36f83ef1,0x517e3f01,0x6c61c055,0xbf1a3f69,0xaeebbe00,0xfcccbe46,0x1b123ef8,0xefc8bf5a,0xd9883f01,0x29393f03,0x80f5c050,0xa1dc3f19,0x301bbe61,0xc9ad3e37,0x7fe7be80,0x86e4bf73,0xaf473eff,0xe64b3f02,0x6e54c056,0xa887bd82,0x3f673e02,0x534e3e94,0xdec7bf03,0xe06bf4e,0x77b43f00,0x17b93efe,0x999ec014,0x39863fb0,0x405abdc1,0xf0583f1d,0x7dee3e29,0x984ebf45,0xc92e3f0c,0x3ff73f05,0x2813c03b,0x189c3fbe,0x142dbe02, 0x964be94,0x9bbdbdd5,0x4b0ebf73,0x4cc73f07,0x8e083f06,0xff5cc076,0x2246402a,0x55b1be24,0x645bbe55,0x85d4beaf,0x176ebf6a,0x6dfc3f06,0xe89f3f0b,0xd930c09a,0x55e3bea0,0x19533cd6,0x2e493dda,0xf7edbef9,0x7bfabf5d,0xb4d03ef1,0x16d53efc,0xcdabc09f,0xd817bf7b,0x2d843ed3,0x8b3e13,0xbadebede,0xc2dfbf63,0x9c8d3ef2,0x5fe13ef5,0xf473c0d3,0xfda0be18,0x33bebe48,0x5c1ebc62,0xdcd4bcf3,0x1f4fbf7f,0xed033ee9,0x4dd93efe,0xdef4c0db,0xfe54bf84,0xb6803e85,0xabbb3d99,0x6116beb6,0xb8aabf6e,0xb5953ee9,0x89ca3ef5,0xf8e4c0dd,0xbb06bfd3,0xed633ec9,0x9fa53dcc,0x89f9be9b,0xe77dbf72,0xf64d3ee7,0x6a53eef,0x1166c111,0x7b0bbfd4,0x37fb3e6a,0x10413db8,0xca6fbe80,0xbb02bf76,0x913a3ee2,0x6f8f3ef0,0xd103c05c,0x35d6bf57,0xb7613f26, 0xee943e9e,0x8782bf03,0xcdc4bf4c,0xf4e43f01,0x94853ef5,0xa701c013,0x9ebfbecf,0x55133f89,0x7d4b3f32,0xa53cbeda,0xe226bf13,0x2a133f11,0xb7393ef8,0x360dc013,0xa2733e9d,0xd16f3ed5,0xeadc3f1d,0xeefabedb,0x7b0fbf28,0x4ba13f0d,0x3e923f00,0xe9d1bfdd,0x8893f65,0x11993f83,0xcab93f67,0x195dbe50,0x4bf9bec2,0xbca93f1f,0xabeb3f01,0x6cecc053,0xb403bfc0,0x4b533f89,0x89933eda,0xc9e1beed,0x39cebf46,0xcc603f04,0x6e803eee,0xf180c09d,0xf3febfd4,0xeac23f24,0x422b3e3f,0x9534beba,0x1709bf69,0xfbb13ef2,0x6cb13eee,0x8b0dc09b,0x9386c026,0xb683f8a,0x78d33e84,0xdfadbf04,0x37ebbf50,0x68403ef3,0xe5393ee5,0x7625c113,0x3b69c021,0xfc5f3ef6,0xa4d13deb,0xc533bed5,0x6c61bf66,0x46e93ee1,0xebab3ee8,0x2891c0df,0xd1ddc025,0x40b13f37, 0x9bb3de7,0x1b07bee9,0xf135bf62,0xe9ff3ee6,0x9cf83ee6,0x9e2cc0e4,0x8bcc07f,0x14613fc9,0xd6cb3e1d,0x7707bf0d,0x9abbf51,0xcfa23eea,0x826b3ed7,0xe10dc10e,0xeac8bf8e,0x8b993e16,0x38203da4,0xf03abea2,0x6b6abf71,0x78e63ee4,0x31de3ef5,0xfca8c12f,0x1e97bfa9,0xa6123ccd,0x2d513e05,0x3073be83,0x795fbf75,0x1f433ee0,0x4fde3ef4,0xaecdc14d,0xf3f1c006,0x6b3cbe8f,0x32173ea3,0x6478bdc2,0x964fbf71,0x9a4e3eda,0xf9b73eee,0x85a1c161,0x78d9c015,0x2269bf6c,0xe59f3f18,0x64b7bd64,0x338fbf4d,0xec7d3ed5,0x9d9f3eee,0xef67c14e,0x3593c03a,0xf3bdbe3a,0x81693ec9,0x6248be93,0xbac7bf5f,0x47303ed8,0xda473ee7,0xba6fc133,0x4635c02a,0xb4b53e6b,0x71f73e50,0x984bebd,0x3e0cbf68,0xf4fd3edd,0xe8803ee7,0x34b5c135,0x53ec079,0xcf273f54, 0x93413e73,0xb2b7beec,0xf0b3bf5a,0x5b703edd,0x90b03edb,0xde8bc15f,0x9703bfd7,0x24f7bf57,0xd4b63f10,0xd1b6be43,0xb1e2bf4d,0x2e773ed7,0x862f3ef4,0x1a22c16e,0x54debfe9,0xd7edbfdc,0xe0413f41,0x3171be31,0x69e4bf21,0x2bae3ed1,0xc6a63ef6,0xa46ec116,0x3f92c075,0x196a3f98,0x454c3e0e,0x575dbefe,0xe07ebf5b,0x86513ee2,0x3ca33eda,0xf3f7c11a,0xf12cc0a8,0xa0084000,0xe8ab3e30,0x499ebeff,0xd856bf59,0x47843ee4,0xe77c3ecb,0x3098c169,0x3344bf82,0x512fbfe3,0x802d3f36,0x8c87be90,0x3b54bf24,0x39753ed3,0xa2633efd,0x54acc175,0x6816bfa8,0xc3bdc027,0x37ac3f4b,0xa152be82,0x6bcbf0c,0xadfb3ecd,0x9e813efd,0x92d1c171,0x1cf3c024,0x7515bfef,0x64be3f47,0x2fb1bd1a,0x5f31bf20,0x49663ece,0xf7e23ef0,0xe84c162,0x7aeac04c,0x63a1bf66, 0xa4be3f21,0xcebcbe2f,0xd85ebf41,0x90753ed2,0x12543ee7,0xe03bc172,0xbcf1c05f,0x92ffbff2,0x559f3f53,0x14cdbc66,0x892fbf10,0x79813ecb,0xa7a13ee8,0xd43c161,0x168bc08d,0x413ebee0,0x70803f35,0x1945be5d,0x7b4ebf2c,0x80aa3ed2,0x63123edb,0xdb9c14e,0xea4fc0ae,0x3a103f85,0x4d173efa,0x5945bec1,0x1a72bf49,0x66cf3eda,0x13a33ecd,0x4c71c14f,0x14c6c083,0x78953eac,0xc8fc3ee4,0x2c8dbec7,0xecb7bf4e,0x56da3ed8,0x4f833edb,0x8486c137,0x907ec0a8,0x70eb3fc9,0x84f03e8c,0x4441bee7,0x5fd4bf59,0xfb553edf,0xc4ed3ecc,0xf664c137,0x7e20c0d0,0xb715400c,0x75463e99,0xac2abec8,0x244fbf5e,0xfb053ee0,0x6ff23ebf,0xffc9c17e,0xeb6cc035,0x298ac046,0xd2b43f5d,0x654b3d3b,0xf43cbf00,0x62243ec5,0xdbe53ef2,0x2d0ac17b,0x2474c004,0x9e8cc038, 0x4503f54,0xffd7bdfe,0x7fe9bf0a,0x35373ec9,0x1fc43ef8,0x2008c184,0x1d88c003,0x9708c084,0xee923f48,0xfea83d92,0x3337bf1d,0xcf4a3ec2,0xdd533efc,0xe343c177,0x3309bf61,0x20c2c040,0x22d33f3f,0x124abda4,0xbc90bf29,0x60a63ecb,0xbd073f01,0x2342c178,0xd628bdd8,0x4cf7c03e,0x8f7e3f18,0x7c0f3df4,0x1933bf4b,0xa83b3ece,0x2a6b3f04,0x6bd2bd0b,0x784241cd,0xc0d9c11d,0xa2ffbb06,0xb67a3f45,0x9abfbf22,0xde223f4f,0x73823f7e,0x6a2ebd06,0xc6fb41cf,0x689ac117,0xbf443b0d,0xbcc03f3e,0x9abf3f2a,0x4c7f3f4f,0x6aa13f7f,0x16093f78,0x1f8641c8,0x8accc110,0x8a983f0b,0xfc903f2b,0xe1093f00,0x87c23f7d,0x8b5d3f7a,0x5d1bf7a,0x988141c6,0xc174c115,0x31c0bf4f,0xc9ef3ecf,0x3bc9bed7,0xc7c3f2b,0x36653f7a,0x1609bf84,0x4fa41c8,0xb46ac110, 0x8a98bf0a,0xe2fe3f2b,0x4fec3f01,0x87c23f2e,0x7ff13f7a,0x173f5b,0x4c6441c4,0x5958c11b,0xc90b3f0b,0xc00d3aea,0xdee8bf56,0x97c43f85,0xe47a3f79,0x72b3bd0f,0x2de641cb,0xfdfc123,0x3de5bb54,0xffa43a40,0x9abfbf7f,0x730c3f4f,0xaa763f7e,0x17bf6c,0x34c641c4,0xa2efc11b,0x8165bf0e,0x8e713c50,0x138cbf54,0x97c43f27,0x2fa93f79,0xbe78bd0b,0x7e8541bc,0x37ebc11d,0xa15a3b8e,0xf939be94,0x9abfbf74,0xf80a3f4f,0xe83e3f75,0xd8a3f51,0x66d341b6,0xa81fc116,0x63e13e56,0xd32bbe8f,0xb6a2bf6f,0x9aa63f8b,0xcd03f71,0x36d33f52,0xef894190,0x272bc0f8,0x440b3d36,0x6094bec3,0x775cbf6c,0x860e3f93,0x48843f5a,0xfad3fe0,0xedcc41aa,0xd2d7c10b,0x31ab3d6b,0x3290be89,0x3cd5bf76,0x88d3f9f,0x86593f6a,0x26843fe8,0x44c241b6,0x5084c10f, 0xfb113eef,0x48e33c69,0xfdcbf62,0xdb6a3f9a,0xa78b3f70,0x44254035,0x7b6d41a0,0x76f5c108,0x7d87be3f,0x2403be80,0xfb65bf73,0x6a6e3faa,0x35bd3f64,0x8a4403c,0x70974187,0x2fffc0f0,0x62c7be55,0x1eafbec5,0x29f1bf66,0x23923fae,0x3d323f55,0x29083fe3,0xac08418a,0x7c13c0ee,0xb38dbdad,0xca03bebd,0x39e2bf6c,0xb7563fa5,0xf1ed3f56,0x1aad3ff8,0xa8414150,0x1f35c0ae,0xb95bd94,0xd15cbf10,0x7b53bf52,0xf3673fa3,0xbf053f40,0xd39e404d,0xa7374155,0x8fccc0b9,0x6508bde7,0x6666bf10,0xbf4dbf51,0x14fd3fac,0x5ec43f43,0x3f81406a,0x7b7c4130,0x10c1c064,0x212bbda3,0x9638bf47,0x5d07bf1f,0x14903fa4,0xb97a3f35,0x9bba40a5,0xddd54135,0x4b49c086,0x3f20be33,0x7891bf3d,0x7b57bf26,0xa6163fac,0x9da13f37,0x464940b7,0xe0f4119,0x6e5cbfee, 0x5eb3be25,0x1014bf5f,0x8e00beec,0xe5113fa5,0xe7cd3f2b,0x320540ee,0x3b2e411a,0x1bc4c031,0x8c26be67,0xe485bf59,0xde76bef3,0xbf9c3fac,0xc5ad3f2d,0x58734101,0x1dac410e,0xd156bf59,0x3fc9bdf9,0xd7c7bf73,0x11e4be92,0x2a173fa8,0x977d3f27,0xa328bf62,0xcce741b6,0x36dac116,0xee3cbe5d,0xd122be8c,0x5044bf6f,0xf85d3f21,0x2b883f71,0x8eb5bce7,0xb34194,0xfa2dc101,0xfab3bb78,0xdfebbec6,0x9abfbf6b,0x59e63f4f,0x200c3f5d,0x8d52bf60,0xa8024192,0x2a5ac0fc,0x2b85bd63,0x3ea9bec3,0xcb9bbf6c,0xfcfc3f19,0x7d093f5b,0x8b4ec0f8,0x4785418f,0x972c113,0x9c383d9f,0x357f3e8d,0x61fabf75,0xc07b3ed4,0x7b723f5c,0x55f4c0bd,0xde644197,0x27b1c10d,0xb78b3d40,0x17233e41,0x7ea2bf7b,0x4c6a3edf,0x8d5f3f60,0x8668c0bb,0x91a94190,0x5065c10d, 0xab1b3e92,0x7030be55,0xf14abf6f,0xa1273ed9,0xb0f3f5c,0xf0a2c087,0x77f54197,0xcfe8c109,0xce433e81,0xf40cbe74,0xf3edbf6f,0x1f323ee8,0x5903f60,0x4561c089,0xed9741a0,0x264c10a,0x55aebc9e,0x578a3de5,0xef7cbf7e,0xbb3d3eef,0xd5aa3f64,0x6441c03d,0x7db841aa,0x3801c10a,0x2e0ebe43,0x5c203dae,0xed52bf7a,0x13c23f03,0xd60f3f6a,0xbfa1c08c,0xe20d4184,0xac43c0f9,0x792c3ea1,0x1b22becd,0xb470bf5c,0x7c953ee3,0x75ff3f54,0xb31ec039,0x8be141a0,0xf047c108,0x54d13e2a,0x86bfbe7a,0xc354bf74,0xaff73efe,0x9bfe3f64,0xc48bc03f,0xb7154188,0xe22c0f2,0x5e143e55,0x21a7bec5,0x79d1bf66,0x39a43ef5,0x25f83f56,0xa438c098,0x94b8415b,0xb735c0ca,0x1b9e3e88,0xbf2bf13,0x7ce9bf46,0x9ef93ee8,0x16163f45,0xe671bfe8,0x718241aa,0x7afac10c, 0xec34bd9c,0x7285be84,0xc348bf76,0x8f193f0d,0x7b813f6a,0x2684bff0,0x13c941b6,0x9b55c10f,0x47c9befe,0xee1c3d0c,0x39b0bf5d,0xdb6a3f13,0x7bc3f70,0x841ebfea,0xe441418d,0xfa3bc0f3,0x42403d9e,0x962bebd,0xdf2fbf6d,0xd1853f06,0x1d653f58,0x275ebffe,0x9fe0415a,0x8114c0b6,0x121b3d9a,0xba93bf10,0xf55ebf52,0x193b3f08,0x72083f44,0x62c050,0x4b94415b,0x3f3ec0bd,0x69723e27,0x33e8bf10,0xb6b3bf4f,0xb3f63ef9,0x22853f44,0x9b6ac06c,0x8ede4133,0xf3e6c068,0xdc093e19,0x4ae7bf43,0xe9b8bf20,0x21ea3f07,0x23ff3f36,0x29f6c0cf,0x22ec415e,0x96ccc0e3,0x4c5f3eaf,0x1519bf13,0xf688bf3e,0xab543ed9,0x1a313f47,0x620ec0de,0x73a54137,0x15eec0a0,0x38eb3e94,0x74e8bf39,0xa915bf20,0x9d563ee8,0x21e03f39,0xd776c0b8,0xda404118,0xc67bbfe7, 0x5da93e3a,0x1047bf5f,0x786cbee8,0xc2553f06,0xba363f2b,0x8f85c0a6,0xeaf94134,0x95bdc084,0x92b13e5d,0xe0d7bf3d,0x7d24bf22,0x52223efa,0x1d83f37,0x9dabc10c,0x70334138,0x2c90c0c1,0x31463ec0,0x45dbf36,0x8438bf18,0xc9bc3eda,0xd4453f3b,0xa716c114,0xf18d411b,0xa33ec072,0x21cc3e68,0x40c4bf5d,0xad86bee6,0xf883ee9,0xece03f30,0x3403c101,0xb8e9410e,0x5b37bf4a,0xf5f23dee,0x44b1bf73,0x4ca1be8f,0x1eb03f03,0x9bb73f27,0x6955c0ef,0xd3fe4119,0xd1bec02c,0xfc7f3e5d,0x34f9bf5b,0x5b36beed,0x80c33ef9,0x175b3f2d,0x561f416f,0x1e4fc1bc,0xc1f73f6e,0x7c3abf36,0x6ff0bf1b,0x203abeb2,0x93473fc1,0xaac03dcb,0x349b4175,0x1ff3c1bf,0x77c3fa4,0x4ae83dee,0x68a5bf55,0xa02cbf0a,0x4b553fc0,0x980a3dba,0xcae417a,0xca5cc1c7,0xa96d4046, 0x4d9c3e34,0xb670bf5a,0xac8ebefb,0xa72a3fbe,0xdf633d7d,0x3fa4169,0xa333c1b0,0xfc9ebf6f,0x59bcbf5d,0x8d7fbecc,0xd6aabe98,0x61703fc2,0xc1b73e0d,0x62a5416f,0xd0afc1b3,0x3f90bf53,0xc3f1bd84,0x7672bf37,0xa8fcbf31,0x67993fc2,0x3ac3e05,0x9cbb4166,0x56b0c19e,0x7f70c019,0x62cbbf6d,0x8886be4f,0xab9fbea0,0xee5b3fc3,0xc1af3e3c,0x9a8a4162,0x3911c1a5,0x7b51bf45,0x39eabf70,0x51bcbe5d,0x493dbe88,0x70f43fc2,0x3fa33e22,0x355b416a,0x3c3ac18e,0xf9c4c07a,0x9207bec6,0xbb39bec7,0x39f7bf55,0xb8e93fc4,0x30493e6a,0x4c67416b,0x7a7c1a2,0xfa5ac022,0x2cd3bea4,0x1893bf0a,0xceafbf47,0x5253fc3,0x18f13e36,0x1b904166,0xccfbc1b3,0x3f2d3ef1,0xf1a3bf57,0x575bbedc,0x757dbea7,0x86343fc1,0x72673df9,0x4d91415c,0x3c36c1a6,0x14763e95, 0xefc7bf65,0xefbe77,0x39f3bec0,0x66be3fc1,0x70723e19,0x83d4169,0xa95dc1bc,0xa0673fed,0x8b81bf48,0x79babf0b,0x21d9be98,0xb3fa3fc0,0x97dc3dbf,0x7bcb4173,0x87e4c1c4,0xdf24028,0xf889bf0d,0x52dabf40,0x55d6beb7,0x88943fbf,0x3afb3d90,0xd7d4176,0xb7d8c1cb,0x4d134083,0x36b9bed0,0x3177bf46,0xbe34bef8,0xbd0a3fbd,0xdbea3d3e,0xc194160,0x77b8c194,0x1a78bfe1,0x3d1bf7a,0x5737bda0,0x7747be4b,0xfae83fc2,0xd8e13e4e,0xee4e4161,0x818c17d,0x25b8c019,0x1301bf7b,0x5f213ca4,0xd2bfbe45,0x3c293fc1,0x8dbc3e80,0xc5a84165,0x9b8dc18a,0x5c8dc069,0xe642bf77,0x5252bd8b,0xf2d4be7e,0x37503fc3,0x4d8c3e70,0x808d415c,0xbd8c185,0xe619bf25,0x163ebf78,0x8318b934,0x2b5abe6f,0x18053fc0,0xa1ed3e66,0x86ba415b,0x7f2cc197,0x38dbbe8e, 0x50f0bf6f,0x8011bda6,0xfd11beb1,0x17e3fc0,0xb9703e3d,0x28f34155,0x9bedc189,0x9dfe3f17,0xde92bf67,0xa1f23cde,0xe74fbed9,0x7de13fbe,0x1ae83e55,0x4928416a,0x5f3c16c,0xd277c099,0x5f4abf6f,0xa0d53d6e,0xcbc5beb0,0x276b3fc3,0x99093e92,0x6a6417a,0x35d9c14c,0x3869c0b7,0xd535bead,0x9fbbbe34,0x2cb6bf6c,0xb7cc3fc3,0xc44f3ea6,0x1265416e,0xd1e1c172,0x9ca9c0a2,0x3572bed2,0x7a66be70,0x1840bf61,0x26cc3fc4,0x444b3e90,0x4727415e,0x3b75c1b0,0xb1473fa1,0x8437bf56,0x4593beda,0x8af8bead,0x6c5d3fc0,0x35f03dfa,0xcda64154,0xa017c1a3,0xc6be3fa9,0xce44bf60,0xa184be86,0xef39becc,0x64ae3fbf,0xe6a33e17,0xb4cf4153,0x4b7bc198,0x27cd3f45,0x88b6bf5d,0x35dbbdad,0xe953befe,0x8353fbf,0xebf83e33,0x54c5415f,0x19bc1b7,0x968d401c, 0xacb3bf4c,0xca61bf00,0x5a4bbea8,0x89503fbf,0xb0573dcb,0xac49416b,0x8c58c1c2,0x1a27404f,0x22a6bf2f,0x5608bf22,0xa73fbeb9,0x9c203fbe,0xc0d13d8f,0x536c416b,0xb507c1c9,0x6942408f,0xcce9bf34,0x37a6bf19,0x63f5bec1,0xe2333fbd,0xf6d43d42,0xc157414b,0x4007c18b,0x3bd93fc2,0xf86bf4e,0xa91c3bd2,0x51dbf17,0x613d3fbe,0xdad93e49,0xa3b74175,0x4b47c1d2,0xab0740aa,0x23d2bec9,0x9e89bf3e,0xa3cfbf0a,0x457c3fbc,0xefef3cb7,0x91ee415e,0x5825c163,0xbc95bf80,0x34febf7a,0xf55f3d79,0x1f8abe44,0x5df63fbf,0x19093e89,0xbf1f3f98,0x785ac0f8,0xb7884142,0xb1c1bedd,0x195e3f60,0x71c1be52,0xc8003f5d,0x449a3e91,0xfef3f0d,0x2c87c0f2,0xc651414e,0x3477beec,0x71cabe82,0x26a6bf59,0xf8403f55,0x18163e90,0x61843faa,0x643cc0f0,0x348c4143, 0xec40bf44,0xffb2bd3f,0xf3e4bf23,0xcea73f5e,0xb46c3e93,0x55154028,0xf580c0e9,0x4ac84125,0x9c36bf4d,0xb3c83dd0,0x351ebf16,0x38093f76,0xfd373e9c,0xb2723fb5,0xc1bc0de,0xc387413d,0x83a5bf1d,0xcf1cbf03,0x679dbf18,0xefb73f60,0x8eb93e99,0x81eb4083,0xe901c0f3,0xdaee4100,0x3f33be3e,0x16a33f68,0x1359bec1,0xb9953f8f,0x23e23ea1,0x507f401a,0x7e70c0f0,0xf184124,0xda30bdf7,0x2f903f7d,0x8844bd3e,0xaf143f73,0xa6f43e9a,0x8f9d3d22,0xea76c0f1,0x8322414e,0x933ebb48,0x1248bea6,0x9ad0bf72,0xf1b23f4f,0x872f3e90,0x9cae3d1d,0xba10c0df,0xff9b4148,0xc5efbb16,0x418abf33,0x9ad0bf36,0x1c543f4f,0x7143e97,0x31e83f1c,0xb22ec0e0,0xedce4147,0xb488beaf,0x3a23bf26,0xe7a7bf2d,0x2da13f55,0x5573e97,0xfefbef2,0x3a1bc0f2,0xf484414e, 0x349b3ee9,0x34c0be82,0x5322bf5a,0xf8403f4a,0x7abc3e90,0x91323f25,0x96f8c0c0,0x2a464135,0xb905be97,0xfb0fbf3a,0xda55bf1d,0xa51a3f56,0xe8043ea3,0x7b1becf,0x60bc0fb,0x9b93414d,0xade73ecc,0xfce93f2b,0xeb4fbf1f,0xd7e93f4a,0x92bc3e8e,0xbf25bf8e,0x96e1c0f8,0x78c4142,0xb2063edd,0xf5743f60,0x4d8cbe54,0xc8003f43,0xe4653e91,0xdf7c402d,0x2a4fc0d7,0x7a684121,0x5340bf35,0xe42ebedf,0xc808bf0d,0xf16b3f77,0x6f0d3ea1,0xe1d0408a,0x4ad5c0d5,0x87ee40fc,0x8540bf34,0xed07beff,0x99edbf00,0x3e5c3f8f,0xe18d3eaa,0x5fa6408b,0x5218c0e9,0x104c4101,0x4480bf3f,0xea0e3d4a,0x2720bf29,0x55eb3f90,0x7d4e3ea4,0x8be94025,0x5d62c0bc,0x822b4115,0x46f7bf1f,0xaef9bf1f,0x9e17bef2,0xdcad3f77,0xde613eab,0x12603fb1,0x2ff7c09f,0xa284118, 0x8eadbf06,0x51eebf31,0xfd22befd,0x1d2e3f62,0xecdd3eb3,0x481d3fb7,0x5c1bc0c0,0x8658412c,0x5972bf07,0xd069bf25,0xd65abf0c,0xc3bd3f61,0xd87d3ea5,0xf64b40cd,0xd784c0fc,0x707340c1,0xaeeebf2f,0x3ed8be2e,0x942dbf35,0x49f53fa4,0xa8da3ea6,0xd8ef3d0e,0xc77dc0bf,0xabe14136,0xd797bb08,0xde4bbf43,0x9ad0bf24,0x94533f4f,0x70ca3ea3,0x31e8bf08,0xc152c0e0,0xaf194147,0xb47b3ead,0xcaf0bf26,0xa555bf2d,0x2da13f49,0xc43b3e97,0x912abf13,0xa72ec0c0,0x1e324135,0xb9003e95,0x7768bf3a,0xcdeabf1e,0xa51a3f48,0xbe9d3ea3,0xb27bbfac,0x30d7c0de,0xc593413d,0x83a23f1c,0xd39ebf03,0x2cdbf19,0xefb73f41,0x857f3e99,0x618dbfa0,0x8679c0f0,0x23cc4143,0xef203f43,0x43dbbd3f,0x1f5cbf25,0xcea73f42,0xa0b43e93,0xd34a40d2,0x961c3e30,0xf3e6bda6, 0x70b63e0d,0xb8013f1d,0xc7e3bf46,0x8ebd3fb0,0x199e3f00,0xf47340d3,0xbba1be18,0x9e20be74,0x80d83bf2,0xe13fbcf3,0xf951bf7f,0xed033fb1,0xe4673efe,0xa68f4095,0xccc3e7a,0x6a8dbe8b,0xf0e2bd13,0xa682be20,0x69a9bf7c,0x36f83faf,0xb6f63f01,0xdec64095,0xfd7e3f17,0xb60bbe10,0x412e3e1a,0x22913f18,0xca6dbf4a,0x78af3fad,0xfd263f02,0x6c2f4054,0xd0913f69,0x11f5be16,0xf7283e41,0x6d473ef8,0x1b69bf5a,0xd9883fa9,0xe4673f03,0xa68f4095,0xccc3e7a,0x6a8dbe8b,0xf0e2bd13,0xa682be20,0x69a9bf7c,0x36f83faf,0xcae23f01,0x80f5404f,0x2a7c3f19,0x8b15be77,0xc982be3d,0x320cbe80,0xb524bf73,0xaf473faa,0xc70d3f02,0x99a64013,0xdac73fb0,0x86a6bddf,0xf07abf1e,0x78623e29,0x4c30bf44,0xc92e3fa0,0xaccd3f05,0x6e544056,0xd717bd82,0xf9423dd8, 0x5210be96,0x613fbf03,0x7f2cbf4e,0x77b43faa,0x35db3efe,0xff5c4076,0xa4cf402a,0x4253be3d,0x643b3e4f,0xdcf5beaf,0xdcd7bf6a,0x6dfc3fa5,0xeba23f0b,0x2813403a,0x77533fbe,0xec09be15,0x96d3e90,0x151fbdd5,0xe0fcbf74,0x4cc73fa4,0xbdd13f06,0xd930409a,0x8f00bea0,0xd9d3bba8,0x2a6cbde5,0xc98fbef9,0x71b9bf5d,0xb4d03faf,0xfd783efc,0xcdab409e,0x60afbf7b,0x4dc83ec3,0xfa53be19,0x7bafbedd,0x9fabf63,0x9c8d3faf,0xc7c73ef5,0x5d6840d6,0xe3a8bf0b,0xf3e8bd71,0x3fa3bda0,0x175bbef4,0xfcd2bf60,0xe9253fb1,0x199e3efa,0xf47340d3,0xbba1be18,0x9e20be74,0x80d83bf2,0xe13fbcf3,0xf951bf7f,0xed033fb1,0x94753efe,0x7675410b,0x25cbf06,0x9b6bbe60,0x71043bc3,0x5983db2,0x6fd2bf7f,0x9e8c3fb3,0x9ccb3efb,0x360d4013,0xfd693e9d,0xe8713ecd, 0xead2bf1e,0xe8a5bedb,0x7eccbf27,0x4ba13f9f,0xbfd73f00,0xa7654013,0xb59ebecf,0x48b73f87,0x7d3bbf33,0x7d08beda,0x5d35bf12,0x2a133f9b,0x6d593ef8,0xd103405c,0x812cbf57,0x6fac3f20,0xec92bea1,0x63bf03,0x34f8bf4c,0xf4e43fa9,0x8ab13ef5,0xea143fdd,0x99bb3f65,0xb1223f81,0xcaa9bf67,0x1abebe50,0xcb04bebf,0xbca93f8d,0xd6f93f01,0x6d054053,0xf67bbfc0,0xf9013f86,0x7e48bedc,0xf84beed,0x598abf46,0xcc603fa7,0xf33d3eee,0xebff3fd6,0xda5e3fd6,0x16153f88,0x5826bf61,0x89a63e50,0x3190bedc,0xf8a53f89,0xdf8b3f04,0x3a113f9c,0x2f664008,0x7d0e401d,0x2950bf50,0xf5bc3ddd,0xcd53bf11,0x6d0d3f70,0x8f9f3f04,0x1f4b3fcc,0xe0093f0a,0xa0743fe4,0xcb28bf6b,0xf1fabe59,0xb670bea7,0xa76e3f85,0x2ac33efd,0x84b24000,0x881a4015,0xd0d83f91, 0xeab6bf32,0x82713f0b,0x4b0ebeec,0xa7a83f8b,0x62393f07,0x6a273fb3,0xb4e5be81,0x6bbe402b,0x6cfebf66,0xadd5be5d,0x1f71bec1,0xb4b33f7d,0x12403ef3,0xc6bd4008,0x1202bf88,0x7edd3fdd,0xd564bf3b,0xf033becf,0xd7bfbf0b,0x21af3f94,0x68663ef0,0x65ba3ffe,0x7ac0bff3,0x76fb4026,0xd5f0bf43,0xbbccbee7,0x9f1bbeeb,0xe8b43f8d,0xe95b3ee5,0xfe3f402e,0x8c334028,0x7a083f0f,0x430abf19,0x349a3f17,0x2cc3bf0a,0xf9ad3f98,0x495e3f09,0x21a7407e,0x78574061,0xffae3e77,0x432bf05,0x21213f2c,0xed46bf06,0x47fe3fa0,0x9ebf3f0e,0x38f84070,0xedd5403d,0x62c5be4c,0x4481bee3,0x80263ee9,0xb207bf45,0xac2a3fa4,0x1a673f0c,0x10b240b3,0x40254082,0x4c4ebed5,0xa3e8bea1,0xed963eed,0x6873bf53,0xc7263fa9,0x4d573f11,0xdc23410e,0x98b3bf8e,0x80dd3db8, 0x3850bdb0,0xce79bea2,0x4ea9bf71,0x78e63fb3,0xf8223ef5,0xe96c412e,0xb5fabfa9,0x75eebd35,0xa494be0b,0xeca5be83,0x61aebf74,0x1f433fb4,0x31403ef4,0xad2a4131,0x48cfbfeb,0xe8c7bc84,0x592cbe26,0x560abe38,0xd539bf78,0xa1e43fb4,0xc9123eef,0xa5b4110,0xff19bfd4,0x14f03e2e,0x1f2bbdc4,0xa3edbe80,0xc593bf76,0x913a3fb3,0xb96a3ef0,0x71de4113,0xf21bc021,0x905a3ed7,0x14d0bdf6,0x7ef9bed6,0x20b4bf66,0x46e93fb4,0x4d573ee8,0xdc23410e,0x98b3bf8e,0x80dd3db8,0x3850bdb0,0xce79bea2,0x4ea9bf71,0x78e63fb3,0x3d813ef5,0xf90540dd,0xceeebfd3,0xaa623eb2,0xa26cbdd9,0x5d1fbe9b,0x52bdbf72,0xf62b3fb2,0xb8073eef,0xaa154133,0x4507c02a,0x287d3e23,0x81e4be55,0x90fabebe,0x3b6dbf67,0xf4fd3fb5,0x2b1c3ee7,0x28d84136,0x9e30c079,0x235b3f41, 0x1a9abe77,0xc82beee,0xde1bf5a,0x5b703fb5,0x956c3edb,0xd580414e,0xf2aac03a,0x8016be85,0x1c88becb,0x6d94be97,0x60bbbf5e,0x47303fb6,0x1a683ee7,0x9735414d,0xad47c006,0x1840beb8,0xf32abea6,0xd5f8bdc9,0xe964bf70,0x9a4e3fb5,0xc7a53eee,0x6db94161,0x7ad5c015,0x3fabbf81,0x49b4bf19,0x5d51bd87,0x3e92bf4c,0xec7d3fb7,0x59193eee,0x2841414b,0x6934bfc7,0x2795beab,0xe109bea1,0x6b94be4e,0x688cbf6d,0x2f233fb5,0x6e013ef3,0x95c0412d,0xe554bf84,0x20cebe4b,0x70f6be0d,0xe000bee2,0x719bbf62,0x2a173fb4,0xf8223ef7,0xe96c412e,0xb5fabfa9,0x75eebd35,0xa494be0b,0xeca5be83,0x61aebf74,0x1f433fb4,0xe7593ef4,0xa0ae4116,0x828cc075,0xb4373f90,0xdb4bbe12,0xfb44befe,0xbc88bf5a,0x86513fb3,0xcbc93eda,0x9d8840e4,0x2053c07f,0x4b63fc3, 0xfd59be22,0x20a5bf0d,0xb54abf51,0xcfa23fb1,0xb78d3ed7,0x287840df,0x3d36c025,0xfb133f2c,0x3494bdf2,0xdec1bee9,0x994abf61,0xe9ff3fb2,0x72673ee6,0x8b00409b,0x8dcac026,0xdd6d3f86,0x821fbe86,0x6650bf04,0xe454bf50,0x68403fae,0xbfde3ee5,0xf2bd411a,0xeec4c0a8,0xaaf63ff9,0x4ed7be34,0xdef7bf00,0x331abf58,0x47843fb3,0x7d3b3ecb,0xfdca410c,0x9eb2bf46,0xef12bdda,0x50c3bdb1,0x52debef6,0x6f2abf5f,0x11273fb3,0x99c3ef9,0xdef440db,0x9a70bf84,0x2d713e5e,0x91a8bda6,0x449ebeb6,0xcc21bf6e,0xb5953fb1,0x5d9e3ef5,0xf180409d,0xce0cbfd4,0x59ac3f1c,0x34e1be46,0x41cebeba,0x4070bf69,0xfbb13faf,0xdb133eee,0x443d412c,0x7222bf53,0x6372be92,0x7a10bd94,0x14d43e39,0x6f9cbf7b,0x45b73fb4,0xba173ef9,0x73794148,0xa2a5bf64,0xd827bf11, 0x1135beac,0x1c7b3def,0x501abf6f,0xaf7d3fb5,0x926e3ef9,0x24184149,0xb18ebf97,0x5b19bef3,0x9bfbe8a,0x940bbec2,0x5f03bf62,0xe4193fb5,0x46b63ef6,0x5ac0415c,0xde59bf89,0xceb3bf89,0xbd71bf0f,0x1deebea4,0x7347bf43,0xefb73fb6,0x441f3ef9,0xb9d8415f,0x88dbfd7,0x6150bf6e,0xd0ebf11,0xa1cebe49,0xa340bf4c,0x2e773fb6,0xa7283ef4,0x9e6740b4,0x5eee4073,0xca5abec6,0x728f3c93,0x4e86bee3,0xe9eabf65,0x9fd83fa9,0x53bb3f10,0x396040fb,0xa284087,0x5960bf60,0xf40ebe21,0x4807bf18,0x9bfabf49,0x44f63fae,0x35db3f13,0xff5c4076,0xa4cf402a,0x4253be3d,0x643b3e4f,0xdcf5beaf,0xdcd7bf6a,0x6dfc3fa5,0x30183f0b,0x501e40b9,0xf9484066,0xf2dabe39,0xcc6b3e1b,0x45cbf32,0xa5e3bf33,0x5e963fa9,0xb6c83f0f,0x8ec14082,0x3a2e4022,0x694a3d59, 0xe6a23eca,0x7f7dbf17,0x94fbbf33,0x70f43fa5,0xd3e13f0a,0x2f83404b,0x731d3fbe,0x51d73e0e,0xb6283f27,0x1adfbe89,0xd830bf35,0xcad13fa3,0x525d3f05,0x13b408a,0xf36b401c,0x7203e8f,0x15b43f03,0xf69cbf3c,0x5172bee3,0x98d03fa5,0x2b23f09,0x93bc40fc,0xd1dd4081,0xcb03bf27,0x49d0bdb7,0x47e1bf46,0x1ecdbf20,0x20043fae,0xd6a93f12,0x16104121,0xbea14080,0x10c6bfb7,0x6706bea2,0x6f3cbf3b,0x1848bf1a,0x4cf53fb2,0x6cdd3f13,0x90c34123,0x7a1c4084,0x6c37bfc5,0xe1d7be63,0x227f3e61,0x433dbf73,0x16be3fb2,0x65fb3f14,0x8c1740fc,0x7bf6408d,0x6f45bf6e,0xa8dbbe61,0x47973edf,0x8d8fbf5f,0x36973fae,0x5fb33f14,0x1f40ff,0x15c4096,0x93d6bf2d,0x17c0be53,0xc1bd3f39,0x61d4bf28,0xe2c13fad,0x1f9f3f14,0x8abf40b7,0xdb66408c,0xeb0fbda9, 0xadcdbeb1,0xa2b3f43,0x625abf0b,0x94ee3fa7,0xe0c63f12,0xfca840bf,0x1855409c,0x9c803f03,0xbd78beb6,0x2a4b3f3b,0x48e9bf14,0xb7523fa4,0x2de73f13,0xe3bd4125,0xbf55408d,0x176ebfae,0x6708bdbf,0x74c3f1b,0x89bebf4a,0x42e3fb1,0x760c3f15,0x78bc4102,0x6dc240a4,0x6cbebe3d,0xae85be66,0xe8403f35,0x41d9bf2a,0xf14a3fab,0x5f333f15,0xd6c94127,0xe504409d,0xb55ebf76,0xccdbe08,0x9ad3f21,0xa07bf44,0x6e543fb0,0x456c3f16,0x50c64145,0x5f2d406a,0x8bfbbffd,0x33c2bd9b,0xef893ed5,0x4b3cbf67,0xcc2d3fb4,0xdb353f12,0xd9304106,0x69b140bc,0x88703eed,0xd75abe98,0xae293f18,0x67aebf3e,0xa283fa8,0xdaab3f18,0xcacd4158,0xc8cd4012,0xe229c015,0xbce8bed0,0x1ae7be84,0x3305bf60,0x97d53fb6,0x8e9b3f0d,0x41854142,0xbb74055,0xdaebc003, 0xa907be90,0x37abbdcb,0xb2b7bf74,0x83b63fb4,0xd86f3f11,0xcaf7414a,0xef95409f,0x4fbdbf93,0xea51be08,0x6a763ee8,0x80cbbf61,0x4ee3fb1,0x57b53f17,0xbdde4148,0x54de4086,0xc12cbfd6,0xb669bd3d,0x1d0c3f08,0x38bdbf58,0x999e3fb3,0x46283f14,0x31bc412a,0xdf6540b6,0xa3d8becd,0x58bbe53,0xda9e3f04,0xe386bf54,0xadef3fad,0x5bca3f18,0x58e4412c,0x5ec840d4,0xd44e3c6f,0x28acbeb8,0xf0ca3e51,0xe83ebf68,0xf5f93fab,0x98e23f1b,0x319c4164,0xd9ec3e5c,0xea5cbdd3,0x74ff3df8,0x4b4a3f56,0xc43b3f08,0xbbc33fb3,0xfbea3f00,0x1f974173,0x70583f20,0x5a80bf6b,0x7b8c3ee9,0x4f433ec1,0x16d3f4e,0xeec43fb5,0xdf7c3f03,0x49b414f,0x33983d2f,0x66643f03,0xba433dd5,0x3de3f6e,0x6c2b3eb1,0xd1813fb2,0xbdbe3efd,0x97f2414d,0x239abd16,0xb6743e4b, 0x818bbe38,0xa603f60,0x1750bee4,0x42393fb3,0x21d33efe,0x32c24130,0x72543d36,0x73a23efe,0xb4803cf8,0x11883f58,0xc11ebf08,0xe95b3fb1,0xbf8a3efd,0xf983414b,0x5447bea3,0x721dbdc8,0x848bbe74,0x41c53f44,0xe796bf18,0xe4a83fb3,0x878b3efc,0xfd26412d,0xbe8cbf0d,0xb673bde2,0xe91ebc17,0xf23f3f25,0xc276bf42,0xf5993fb3,0xd4333efa,0x5333412e,0x1583be82,0xbcee3e47,0x43953a81,0xc4113f36,0xc0b5bf33,0x6f7a3fb2,0x8d613efc,0x5abc415e,0x7e80bc6e,0xda83bf37,0xd398bf14,0x47e83f45,0x14bbe82,0xd8a93fb5,0xcc463f00,0x7da2415b,0x707abe7c,0x40cbf83,0x2988bf2f,0xfaba3f19,0xbc77bed5,0x68883fb5,0xc3b83f00,0x2b44149,0xe1a8bf1b,0x1b9bbecb,0xde9ebe94,0x9ff63f29,0xbbf5bf30,0x86f43fb4,0x94753efb,0x7675410b,0x25cbf06,0x9b6bbe60, 0x71043bc3,0x5983db2,0x6fd2bf7f,0x9e8c3fb3,0xcec13efb,0xce68410b,0xfae3be7a,0x6b4abd37,0x873e3dd4,0x2a4d3f23,0x9271bf43,0x64f93fb2,0x26fe3efd,0x89ec4164,0x3dc53ece,0x363abfd6,0x7d7bf77,0x47d13e70,0x68e4bde5,0x54de3fb6,0xdd7f3f04,0x86e04166,0x83cb3db8,0xa937c009,0x56f9bf39,0xf84cbde2,0x6f5dbf2d,0xd6733fb7,0x8aed3f03,0xd207415a,0x41dbf11,0x3c97bf99,0x945bf26,0x988e3cba,0x4956bf42,0xa8973fb6,0xd2433efe,0x9c784168,0x5dff3fe6,0xbcdcc01e,0xec0dbe4e,0xb3b43c68,0xc669bf7a,0xb99d3fb6,0xdac23f0b,0x8549415c,0xf52402b,0xa3ccc019,0x82fbd92,0x58503e34,0x65bf7b,0x55153fb6,0x8ef33f0f,0xc1614161,0xdea44052,0xed79c00c,0xae293bdc,0x17013ed3,0x3659bf69,0x9c173fb5,0x344d3f11,0xe415416f,0x8a09401f,0xf163c01b, 0x1900bd0a,0xe7b53e7d,0x351ebf77,0x9e6f3fb6,0x51413f0e,0x958e4177,0x223a3fc0,0x1767c02d,0xad2dbe97,0x1f213e5f,0x4d6abf6e,0xdca03fb7,0xc7993f0a,0x52b1416f,0x79143f69,0x9537c025,0xbaf8beff,0xc03a3cb4,0x8af4bf5d,0x1e693fb7,0x6b443f08,0xe6474164,0x75084082,0xe454bfdf,0x2816bdba,0x4f693ec4,0xd0c0bf6b,0x343b3fb3,0xd7de3f14,0x8a1e4172,0xb8304051,0xff90c007,0xf8abbe4c,0xdb123e8b,0x29a2bf70,0x610b3fb5,0x22263f11,0xb55b4165,0xa95d40a4,0x4e90bfb9,0x5050bee0,0x1f99bb66,0x7bddbf66,0x30a13fb2,0xe2873f18,0xde83414b,0x621340bf,0xd664bf4a,0x8f78beb2,0xdea13daf,0xe03fbf6e,0xa63b3faf,0x90eb3f1a,0x8740414a,0x35e740e6,0x9139bf72,0x1cbcbeff,0xbb26bec5,0x15e8bf46,0x15d33faf,0xcfbe3f20,0x572c4173,0xe09c408a,0xd0bcbffb, 0x17bcbf29,0x2e9abdb8,0x2e2cbf3e,0x96203fb4,0x660e3f15,0x2fea4163,0xbe6240d1,0xc016bfde,0x7525bf1d,0x5dbebeca,0xeacdbf2e,0xa4233fb1,0x2eb23f1e,0xdf354172,0x3a4340ba,0xecb1c019,0x8c5bbf4c,0x49d5beb1,0xd12dbefa,0xd25f3fb3,0x9a293f1c,0xa826417c,0xa894050,0xb369c022,0xd7f4bf5e,0xf636bdbe,0xddecbef7,0xc6b3fb5,0xceaa3f12,0xf660415d,0x1d0040fe,0xba03c02b,0x1ac6bf0f,0x7cd6bf31,0x732ebee8,0x697b3fb2,0x72183f26,0x6ab417b,0x2f0e400d,0x6954c023,0x9950befe,0x788a3e35,0x96abbf59,0x91793fb6,0xc6e73f0d,0xe82d4181,0x5d4f3f09,0xd161c053,0x5b53bf3d,0x19b83df1,0xba84bf29,0xcbb43fb8,0x191b3f07,0xb08c412c,0x1eac40f5,0x88e0bcb0,0x1992beee,0xb4eebeb0,0xdadcbf50,0x79703faa,0x21883f20,0xd44b4128,0x891a4108,0xa7a8bf24, 0xf65bbe97,0x46e1bf54,0x4328bef0,0x50223fab,0x94053f25,0x7d224145,0x43744105,0x11aabfdb,0xc376beda,0x94cebf43,0x8b8bbef7,0x50a43faf,0x68713f26,0x771d410c,0x1ab940f9,0x27483f83,0xaed3bee3,0x792dbe85,0xa338bf5b,0x210c3fa4,0x9c413f1f,0x3651413b,0xa0664112,0xa822c04b,0x360abe71,0x7be7bf68,0xca53beb2,0x53c13fb1,0xd8d63f2c,0xaad8410a,0xb7c840da,0x3fcf3f77,0x1baebec9,0x111b3ea7,0xeaa3bf5c,0x1ee23fa5,0x3c733f1b,0xf59b40d8,0x4edb40d5,0x652b3fef,0xdffbee0,0x38613ed4,0xca21bf4c,0xe6193f9d,0x87d13f18,0x25b140cc,0x3a1940b7,0x47ad3fa2,0x7c0bbebe,0x9f643f28,0xa6b9bf27,0xdc623fa0,0x59213f15,0x7bce409c,0xd9c740a8,0xb0b93fea,0xbf14bef4,0xa2853f28,0x5187bf14,0xe73e3f98,0x44aa3f12,0xbba1408c,0x9b1b4089,0x3f9c3f79, 0xd40cbef7,0xb7e83f36,0x619ebf01,0x55223f9c,0x2afe3f10,0xae71404a,0xdf724066,0xe09e3fb0,0xdb19bf10,0xd43f3f2a,0xbf55bef7,0xa0b23f92,0x7f6d3f0c,0x19f44169,0x161abf82,0x279dbfef,0x73acbf37,0xa07cbe90,0xb856bf23,0x39753fb7,0x272a3efd,0xf944416e,0x5ceebfe8,0x9190bfe8,0x8e21bf42,0xd832be38,0x257dbf1f,0x2bae3fb8,0x31263ef6,0x41f64175,0xabcdbfa8,0x4cf9c02d,0x3c0fbf4c,0xd8a3be82,0x2735bf0b,0xadfb3fb9,0x6fe53efd,0xce5b4177,0x8f86bf61,0xbf3ec046,0xfac4bf3f,0x6aa8bda0,0x7111bf28,0x60a63fb9,0xe2883f01,0x1a824183,0x819dc003,0xa107c087,0xe2f5bf49,0xc0d93d8c,0x7a4ebf1c,0xcf4a3fbb,0x70293efc,0x20de417b,0x8abdc004,0x1955c03e,0x8ec1bf55,0xe070be05,0xeeb3bf09,0x35373fb9,0x566f3ef8,0xc4e34178,0x3e29bdd7,0x40aec045, 0xad36bf19,0xbf5c3df5,0xe970bf4a,0xa83b3fb8,0x26703f04,0xf139417e,0x5da7c035,0x5e90c04d,0x290dbf5e,0x253d3d03,0xb0f2befd,0x62243fba,0x66fb3ef2,0x7f524171,0x400cc024,0x795bbffb,0xa9c5bf48,0x9dfabd5a,0xd83cbf1e,0x49663fb8,0x38f43ef0,0xd2634172,0x397c05f,0xb6d4bfff,0x27fbbf54,0x2a35bd0d,0x7a5fbf0e,0x79813fb9,0xef4b3ee8,0x486f417f,0x9cfebc23,0xf0f0c057,0x1c4bbef3,0x667b3e69,0x3240bf59,0x92863fb9,0xf683f05,0xf8444163,0x2696c04b,0xeaf1bf7d,0xa488bf21,0x79ebbe3e,0xce42bf40,0x90753fb7,0x598a3ee7,0xa8d4162,0x3d7dc08d,0x135fbf07,0xd82fbf35,0xbd88be6f,0xe471bf2a,0x80aa3fb7,0x892c3edb,0x44a8414f,0x5226c083,0xc9aa3e82,0x15ebee4,0xcccbecc,0x5522bf4d,0x56da3fb6,0x6cf33edb,0xda8414f,0x69cfc0ae,0x92c03f76, 0xf36dbef9,0x6b82bec5,0xb13bf48,0x66cf3fb6,0xe0c3ecd,0x825e4138,0x22ddc0a8,0x96913fc0,0x384bbe8d,0x9ff5bee9,0xaf1dbf58,0xfb553fb4,0xe45e3ecc,0xf7b64138,0xb257c0d0,0xaa114007,0x2307be9a,0x20cebeca,0x7c8dbf5e,0xfb053fb4,0x21643ebf,0x429e4184,0x5864c04d,0x6894c08f,0xc8b3bf60,0x991d3de5,0x6e44beef,0xc9253fbc,0x49b3ef3,0x54d84183,0x75dec08a,0x2765c092,0x6cb9bf64,0x4b7a3e1e,0x3615beda,0x9b073fbd,0x25073eea,0x244a417d,0x7ac8c078,0xb988c04f,0x9924bf63,0xa4d83d9b,0x5d35bee6,0xaae73fbb,0xfc633ee9,0xf2954187,0x29fec06d,0x662ec0b0,0xf82abf5e,0x1e9b3e1c,0xcf46bef1,0x11413fbd,0x3d003ef3,0xa6184178,0x386dc0ac,0x9043c03a,0x8a6abf6c,0x56b53dd4,0xe2efbebc,0x866e3fbb,0x37fc3edb,0xec9a406c,0x3cda4095,0x2864011, 0x8ef4bf05,0x19af3f24,0x5419bf10,0xa9193f8f,0x1cf83f0f,0x2aac4084,0xa1fd40b9,0xb49f403e,0x7fbbbef4,0xb2b63ef1,0x105ebf3d,0x19503f8d,0x84063f13,0x89314025,0x2d0a4084,0x9efe402b,0x4933bf04,0x94863f0f,0x5bd9bf25,0xa02c3f84,0xa1f53f0c,0xe1e7400a,0x8a724044,0xbfeb3ff4,0x4f7cbf2f,0x96bc3f16,0xe56dbedb,0x701e3f85,0xe0f83f09,0x5a5940a9,0x5fc440c9,0x2a834021,0xf3d3bef3,0xc573ef1,0x6edfbf3e,0x10bf3f95,0x5b163f16,0xe03540af,0x156240e8,0xd67a402f,0x7e8beca,0x949bbe08,0xbc90bf68,0xe3b93f93,0x26593f19,0x5c0140de,0x563f40f4,0x10854000,0x3e9bedd,0x7aedbe34,0x6645bf62,0xb6853f9c,0x132b3f1c,0x7c4e40db,0xa744106,0x78bd3fbe,0xa932be31,0x7d49bf59,0xd280befe,0xec853f9c,0xec0c3f20,0xf52b4109,0xfc8f4108,0x82e03ef1, 0x86bcbe5f,0x27f7bf5f,0x131fbedf,0x5fc43fa5,0x187e3f23,0xd875411f,0x9cd8410f,0xb001bffd,0x70e4be08,0xe0eebf71,0xda49be9b,0x91ff3fad,0xd08f3f29,0x356d40cb,0xf601410d,0xc0d03df1,0xdad6bddd,0x2c60bf72,0xf994be98,0x26e93f9f,0x899a3f25,0xee85409b,0x47ae410b,0x4da3f51,0xc75dbd4c,0xfc5fbf6d,0x14adbebb,0x93683f96,0xb1073f23,0xc28b4082,0xd4a640f6,0x98034038,0x908bbdae,0xa90dbf3d,0xdecebf2a,0x7ab33f89,0x20583f1b,0x61740ab,0xafff4102,0xed63400f,0x1761bdc2,0xe541bf4e,0x9903bf15,0x63953f93,0xb6283f1e,0xaa9b404c,0x25f640ca,0xee554069,0x7632bea7,0x63b63dd3,0x90c5bf70,0x41ee3f82,0xad473f14,0xfcbb4088,0xf69840d9,0x60884050,0x8971beb3,0x6732bd55,0x23e6bf6f,0xf7d33f8b,0xdc513f16,0xb8154040,0xf8d740a9,0x6ed44052, 0x46adbeb9,0x9b913eeb,0xc6a0bf4f,0x7a8d3f83,0x85f3f10,0x5c053ffb,0xeef6409c,0xa00b405b,0xa28abe5b,0x14023ed5,0x5a92bf62,0x73f73f74,0x4ec63f0e,0xbba13f44,0x4767405a,0xcc1403d,0xb0b5bde9,0x1ddc3e70,0x820bf77,0xa893f60,0xff193f09,0xaf3a3fcc,0x33be406c,0xc0a5403c,0xdd5bbe94,0xde7f3ec6,0xa25ebf5f,0x439a3f72,0x21863f0a,0x858c3f12,0x721d4008,0xada5403f,0x7949bec4,0xd81cbe7b,0xd3aebf63,0x7f393f5c,0x29643f03,0x25964189,0x331ac057,0xdb1ac0b4,0xa81bbf58,0x98903e31,0xb91fbf00,0x8ea43fbd,0x6ad13ef6,0x33ab418c,0x3016c08d,0xac8ec0db,0xc75fbf60,0x9d603d1e,0x7a14bef4,0xe9af3fbf,0xa3283ef1,0xf5274188,0xf425c024,0xc25bc0a7,0xb075bf6d,0xf4403d0f,0xe04cbebc,0xe4ac3fbc,0x75143efb,0x54bd4185,0xe282bf9c,0x1b5c087, 0xaea6bf5f,0x437c3d83,0xf990bef9,0xf4f53fba,0x9e5c3f01,0x941d4185,0xc9c1be00,0x1063c08b,0xb756bf77,0x11d4bda5,0x84a5be7f,0xda453fba,0x350e3f06,0x12f14189,0x7b65bffa,0x9d15c0b4,0xd4e4bf7a,0xdabbbdb2,0x36dbe3c,0x4e6e3fbd,0xce643f01,0x15b54187,0xd6113e6b,0x2a38c0c0,0xd3c7bf7b,0x4c1cbe0b,0x6b16be0c,0x51263fbc,0x8d8a3f0b,0x8f6b4187,0xc5acc09a,0x40c1c0ba,0x503cbf5e,0xb96c3e47,0xca0cbee9,0xc01e3fbe,0xcb6b3eea,0xd7214183,0x27d4c0d6,0x4405c0b9,0x710abf61,0x14593e38,0xe2c5bee1,0x7d243fbf,0x18243eda,0xf27c4182,0x42e13fd8,0x381ac055,0x8951bf71,0xc0c5bd9f,0xfc3bea6,0xc9103fb8,0x6a7f3f0c,0x39d24181,0x11904067,0xac47c07a,0xa834bf76,0x9961be3d,0xbd06be45,0xffb53fb7,0xbc713f15,0xa2cf4184,0xd9ff4000,0xd68ec09c, 0x3aefbf7a,0xf716be15,0xe49be0b,0xebbc3fba,0xf0db3f10,0xd0f44181,0xe295408e,0xa808c0be,0xc7eabf77,0x5457be7f,0x3151bd2a,0x4a1b3fba,0x406d3f1d,0x57c7417f,0x736dc0c1,0x447dc08b,0x8f75bf69,0xc9813e26,0x7b3bec1,0x265b3fbe,0xffda3edb,0x19dc4175,0xcd1cc100,0x8d77c06f,0xe567bf6f,0xe58c3e1f,0x922ebea1,0x34f43fbe,0x39783ec8,0xa7f4417b,0x1ff3409d,0xf35dc044,0x1d21bf6d,0xbd7ebe80,0x9b6fbe8a,0x1cbd3fb5,0x780b3f1a,0x9bbd4175,0xd73f40d7,0xa472c086,0x1080bf65,0xab37bed6,0x3c32be12,0xe4693fb6,0x5af73f23,0x1651417d,0x6f4440b7,0xe30bc0a2,0xb1adbf71,0xd7a9bea3,0x35bdbd90,0x157b3fb8,0xa13a3f21,0x61414171,0x5f7440ee,0xbe6fc0dc,0x9038bf62,0x8271beed,0xfde7bc70,0xaffb3fb9,0x5ca53f2b,0xb3ff416c,0x724340ee,0xf24fc05d, 0xe0a7bf45,0x5d81bf0f,0x7033be96,0xa2e83fb4,0xc17d3f25,0x16194160,0x3a38410d,0xf712c0a7,0x1656bf2f,0xbed1bf35,0x7e74be28,0x95213fb6,0x7ded3f2e,0xa63e4169,0x7ab14103,0xa1cac0c1,0x67f5bf51,0xa42ebf12,0x4157bd47,0x85383fb8,0x5a983f2d,0x8543415d,0x48d54113,0xf55dc100,0x126dbf41,0x50a6bf27,0xf6a5bbe0,0x449a3fba,0xd8d13f35,0x2014418a,0x3d21bf9a,0x5c57c0e0,0xfc48bf6a,0xe2e2be15,0x34dbbebf,0xf04a3fbe,0xb7dc3f06,0xfda43eea,0x3083f2f,0xefcb4076,0x97c2bec7,0x75fbbf06,0x8a98bf41,0x9d913f59,0xb9e3ef7,0x8db03f6b,0x65e93ef8,0x74614061,0x72e5bf57,0xbb42be84,0x1ea3bef2,0x7e13f66,0xbcd33ef7,0xf1453f5b,0x1983bf62,0xd7474098,0xbe97bf55,0x5116bec8,0xf8a1bec5,0xef1c3f61,0xb9e03ee6,0x35c3bf7,0xb7844005,0x8342403f, 0xae43bb4a,0x81c3be97,0x9ad0bf74,0x42353f4f,0xb45f3f03,0x908e3fa5,0xdd05bfab,0xf8394070,0x51dfbf63,0xeababeaa,0xb4b3be9e,0x92f73f73,0x37da3ee6,0x6ce83fb7,0x14f5c025,0x99df40a3,0x1d55bf5b,0x4492bee1,0x5d4fbe88,0x33ec3f71,0xb2d3ed7,0xd0b33ede,0x8234bf42,0x71cc40a4,0x5169bed3,0x6426bf23,0xcfd5bf26,0xa1833f57,0xed633ee6,0xc47e3c6f,0xeb85bf47,0x229040a5,0x83ebbb17,0x8291bf33,0x9ad0bf36,0x50403f4f,0x8eb43ee6,0x879c3c2a,0x187e3f27,0x3c004078,0xa8ccbb28,0x3cf5bf1b,0x9ad0bf4b,0x38e73f4f,0x26353ef7,0x72543f00,0x403ac003,0x8ef340d0,0x30c2bec2,0xa2eebf34,0xedd9bf19,0xb9a13f57,0x550d3ed6,0x2b83f79,0x5c7fc00c,0xea6740c3,0xe721bf4d,0x154fbef5,0xd302beb3,0x2a33f61,0xf5173ed7,0x4293f93,0xcfb9c054,0x4e1740ec, 0x4337bf37,0x18fdbf18,0xd949bebb,0xca823f62,0x294a3ec8,0xfd61bee0,0x32903f2f,0x6dcf4076,0x97bf3ec5,0x1a8cbf06,0x7d56bf42,0x9d913f46,0x17a03ef7,0x5daf3bee,0xe88e4054,0xa3a14039,0x60fcbb52,0x4d623deb,0x9ad0bf7e,0xb6e93f4f,0x439a3f08,0x858cbf0e,0xadd64008,0xb98c403f,0x79643ec1,0x79d2be7b,0xcb4fbf64,0x7f393f43,0x7ef13f03,0xbba1bf40,0x97ea405a,0x4059403d,0xb0ac3ddc,0x4ccc3e70,0x4b49bf77,0xa893f41,0x65493f09,0x55ac3c0a,0x4357408e,0xbf6b4051,0xb3ddbb45,0xc2b93eb8,0x9ad0bf6e,0xe3ac3f4f,0x61a23f0c,0x3a15bf9b,0xb0c04008,0x8a27401d,0x29183f4f,0x4e533ddd,0xdd3cbf13,0x6d0d3f35,0x32983f04,0x6fd03f78,0xf3d4092,0xb2f24057,0xaaa1baac,0xc4c53eb8,0xb39ebf6e,0x45203f61,0xe133f0d,0x97d33f8d,0x560c40b4,0xdce84074, 0x4c333cd0,0xb06f3e39,0xb6e5bf7b,0x3643f61,0x5fb3f11,0x6131400b,0x9d2840bd,0xfdb24075,0x914fbe24,0x92c33e7d,0xe469bf74,0x24dd3f73,0xd85e3f12,0xb3f8400d,0x59c040d2,0xa2574075,0x9ddfbc8b,0x9cb7beae,0x58b0bf70,0xff113f73,0xed523f14,0xb8f14040,0x81c40e4,0xce424063,0xbe1abdae,0xe3dbf0d,0x563fbf54,0xe7d13f80,0x5d9a3f17,0x3b254015,0xf2f540f5,0xb5f94035,0x92aa3dc1,0x81c7bf56,0x2742bf09,0x5d9a3f78,0x972a3f1b,0x99cc416f,0xeb1cc09a,0xc2d9bfca,0xfbccbf5f,0xb398bd34,0xbe3cbef7,0xa2be3fb9,0x930f3edb,0x18bb416a,0x51f4c0cb,0x3337bf5e,0x2f1bf69,0x36ebbb6b,0xae8abed3,0x256c3fb9,0xd2793ecc,0x64d8415f,0x9d17c0b9,0x5a063e3c,0xb4c5bf44,0xfbb1be59,0xadc9bf1a,0x21ff3fb7,0xa6a13ecd,0x8dd2415b,0x6927c0e4,0xa1b83f76, 0xb2a3bf4a,0xb870be18,0x5326bf17,0xd9173fb7,0x32a3ebe,0xba2c4171,0xb489c0e3,0x4a64c00e,0xc9c9bf72,0x57033dec,0x1998be9a,0x69593fbc,0xc523eca,0x2a084169,0x1a37c10c,0xd14bbf9c,0x1c81bf74,0x47163de5,0xcd3ebe8a,0xc8ef3fbb,0x3e163eb8,0x2d734164,0x14adc0fa,0x234d3d02,0x2957bf6d,0x615c3ce0,0x4eecbec0,0x61fa3fb9,0xf0d13ebc,0x7c93415d,0xfe61c116,0xb9153f5a,0x4761bf6c,0xa76e3d31,0x1ef3bec1,0xe6603fb9,0xb8093eab,0xfa31414d,0x90b8c0d6,0xa5b43fd1,0x2dacbf03,0xa206bea4,0xc42abf4b,0x14943fb5,0xb6113ec0,0xd05c414a,0x2d1fc100,0x5037400d,0xdaddbf05,0x8b1be53,0xbbbfbf54,0xad3f3fb5,0xbc373eb2,0x467d4156,0xd7c7c109,0xa3943fd2,0x6dd3bf47,0x3000bd93,0x31d3bf1f,0x23c83fb7,0xf9703eb0,0xb4f74151,0x8abc123,0x1f4005, 0x914bf3e,0x91663b01,0xb121bf2b,0x800f3fb7,0x5edf3ea0,0xb943416c,0xc92ac11d,0x25c0c02a,0x3f2ebf75,0xc27e3e0c,0x74f3be81,0x90c53fbe,0x1a8e3eb4,0x8b784164,0x4ad8c13d,0x5c6cbfcc,0xdac5bf78,0x511a3dd4,0x6117be60,0xc5483fbe,0xc91b3e9f,0x8aaa4161,0xba13c128,0xcaa0be83,0xc4fdbf76,0x93a03dc5,0x9fb2be7d,0x38433fbb,0x83443ea6,0xfcdd4170,0x2783c12f,0x29edc086,0xfe7abf70,0x17b3e0f,0xee7cbea2,0x3c6d3fc0,0xaa233eb0,0x4fca415c,0xbf66c14a,0xccc23e8e,0x1d26bf76,0x9a703d98,0x4923be82,0x4a6b3fbc,0x3d93e92,0x4e924159,0xe037c134,0xf2843fab,0xa45ebf67,0x5fce3d7b,0xae71bed6,0x40b83fb9,0x8fc33e9a,0x37794154,0x3a97c155,0xcc743fc6,0x249ebf5b,0x4bd23db4,0xde5dbf01,0xf51f3fba,0x662f3e87,0xb805417c,0x8a72c10e,0xad09c0a8, 0x112cbf68,0x81073e27,0xbe2fbec4,0xcf033fc0,0x98833ec5,0xbf0a4181,0x2f94c119,0x540bc0cc,0x1f24bf54,0x445a3ddf,0x1a3fbf0c,0xe1873fc2,0xbaa43ec3,0x99c24166,0x378fc153,0xcea4c044,0xfc35bf78,0xbbda3dd6,0x10b2be57,0x39eb3fc1,0xe78a3e99,0x8bff4158,0xc671c16e,0x51973f04,0xe98fbf72,0x482e3d8d,0x7d20bea1,0x32ec3fbd,0xad283e7c,0xe1f5414f,0x94c8c177,0x7b163fc3,0x5ec7bf49,0x8d4a3dda,0x8944bf1b,0x10343fbc,0x22073e6b,0x9d3c4148,0xce53c162,0xa929400d,0xd2c1bf23,0x14c93dd2,0x923ebf43,0xe24c3fba,0x2c193e7c,0x8202414d,0xfb40c141,0x295b4010,0xeaafbf2a,0x36da3d9f,0xd2b3bf3e,0xeed43fb8,0x38d33e8f,0xdbdf4142,0xc2f4c133,0x17ef4032,0x9ac2bf03,0xd0063cb7,0x3965bf5b,0x590c3fb7,0xb2bb3e95,0xcbdb4146,0x21a3c118,0xf5324026, 0xe029bf00,0x51d0bd98,0x3201bf5c,0x7de53fb6,0x57923ea4,0xdc1e4136,0x3b21c113,0x1c2e4040,0x41ffbec0,0xe3b2be20,0x321bf69,0xaff33fb5,0x692c3ea5,0x4624138,0xa2bec0fa,0xc6424027,0xc1e6bea8,0x37bdbe8c,0x8f6dbf67,0x400c3fb4,0xc5503eb3,0xd74d4123,0x110ac0f7,0x4e5c4040,0x59e2be9c,0xd981bead,0x505dbf63,0x7cbf3fb3,0xaff13eb2,0xca02411f,0x5f18c0d0,0xa0c44023,0xa88be75,0x566fbeda,0x14dbbf5f,0x820e3fb3,0x9f143ebe,0xb4c84104,0xd588c0d4,0x1034044,0x796bbe95,0x8ad4bf13,0xe8b8bf43,0x9f123fb0,0x190b3ebb,0x8eb040f1,0x14cbc0af,0x44a3401e,0x8611be5f,0x80b9bf0f,0xcb6cbf4c,0xb2ee3fb0,0x909b3ec7,0x839940a4,0x5137c0b4,0xbfcd405c,0x434bbec7,0xbc33bf39,0x3405bf11,0xf1883fa9,0xcff03ec2,0x8503409e,0xeb03c081,0x3eb4003, 0x5397be9b,0x27a2bf1b,0xc797bf3c,0x783e3fac,0xbb343ed5,0xd0894052,0xe868c06b,0xefc74036,0xc9c4bf0e,0x6a70bf1a,0xaa3fbf11,0xc0db3f9f,0xaf1d3ed5,0x5675404b,0x8a2c016,0x522c3fd9,0xfaf5befe,0xba90bf0c,0x2a24bf2b,0x4bcf3fa4,0xc5d23ee5,0xf1564007,0x601cc047,0xb7fa4078,0x6bd1bf41,0x284fbf0b,0x38f8beb9,0xe9dd3f89,0xf0723ed6,0xe62a4187,0x203cc0e6,0xad0c0da,0xaf77bf43,0xd2463e10,0x564bf21,0xdcf93fc1,0x5fa63ed9,0x46dc418b,0x4372c0eb,0xbefdc0e2,0x6b2fbe32,0xe6b6bd13,0x2043bf7b,0x98293fc1,0x16843ed9,0x73fb418e,0x12dcbfcf,0x3601c0e7,0x8d17be2b,0x4f4abe01,0x7cafbf7a,0x898b3fbe,0x3aed3f05,0x5ea0418f,0xbb82c094,0x8ce5c0e3,0xa1c7be1f,0xd660bc88,0xb613bf7c,0xf2393fbf,0xad9b3ef0,0x368b4184,0xbf6cc11d,0x97cc0d5, 0x7f22be8d,0x33e5be16,0x4a9dbf73,0x16e33fc2,0x4eae3ec3,0x5e214175,0xbe5c147,0xeafdc0ad,0x606abf5d,0x9c9b3de7,0xe8a7bef8,0x13ec3fc2,0xe66d3ea8,0x54a04186,0xdf2b3fe5,0xc7c2c0f2,0xa931bf6b,0x5ee9be8b,0x9a41be8e,0xc4f03fbd,0xf9d83f14,0x2f234189,0xaad63fbb,0xae55c0f7,0x974cbe42,0xd1ddbea2,0xcc75bf6d,0xa0b63fbd,0xec463f13,0xbb54184,0x9619408c,0xc97fc110,0x206bbdbf,0x4c44bed6,0x290fbf67,0x61d03fbe,0x744e3f22,0xf1aa4184,0x92a34040,0x144fc0d9,0xa862bf7a,0x61e8be59,0xe9dbcbe,0x96573fbc,0x57e03f18,0x36eb417e,0x9fcb40ae,0x2cbbc105,0xd73abf72,0x5c1ebea4,0x24fbd1b,0xba0a3fbd,0xd36a3f25,0x601a4181,0xb3ab4092,0x311bc10e,0xcca8bf5e,0xd15ebec0,0x1427bea5,0x4ff3fbe,0x178a3f23,0xe9e44177,0x3c6140e9,0x284cc123, 0xfdf9bf0a,0x50c2becd,0x9ff1bf3d,0xfcf83fbe,0xba423f30,0x5e374178,0xb2f440d0,0x434fc0f5,0x30a0bf6d,0xb90cbec0,0x99563c35,0x16983fbb,0xd2353f29,0x343c416b,0xf4464101,0xf69ac115,0xd053bf5b,0xb00abf01,0x6345bd8a,0xc8b43fbd,0x83a93f32,0x19504171,0x59e440f3,0xd3a0c11e,0xeedebf55,0x34c6bef6,0x3a5cbe87,0xac363fbe,0x5093f31,0xd33c4164,0x630c4118,0x12dac12a,0x2a7ebe7b,0x8e4cbe96,0x9036bf6c,0x5cd13fbe,0x6ec13f3b,0x9a74165,0xd1b7410a,0x4248c10a,0x93b4bf4b,0x557bbf1b,0x3298bc86,0xe7d13fbc,0x8a883f33,0x6102415e,0x829b4111,0xd8fdc11c,0x3eabbf3d,0x10a1bf2b,0xc25dbd50,0xd5993fbd,0xf93d3f37,0x2f984160,0x10754111,0x774fc126,0x5b04bee6,0xbc48bf33,0x9004bf0d,0xd8233fbe,0x2aed3f38,0x53283c24,0x5fd440b1,0xaff24070, 0x1490bb51,0x32723e17,0x9ad0bf7d,0xb1893f4f,0x30273f10,0x67993c1d,0xf53c40da,0xca254067,0x4994bafe,0xc00bbf35,0x9ad0bf34,0x68c23f4f,0x6f8b3f16,0x97d9bf8a,0xc9c940b4,0x81fc4074,0x6423bd02,0xa3293e39,0x757bf7b,0x3643f40,0xb4743f11,0x1a2e3fba,0x406840d5,0x76214074,0x47a03d10,0x36efbee7,0x9d95bf64,0x59f73f66,0xb7b73f15,0x6fd0bf73,0x75194092,0x9b724057,0xaa88bb9a,0xc4113eb8,0x9c4bf6e,0x45203f40,0xba173f0d,0x5c05bff8,0xbdf1409c,0xc4e3405c,0xa2913e55,0x6dbd3ed5,0xb880bf62,0x73f73f33,0x1a333f0e,0xaf3abfcb,0xdcc2406c,0xda52403c,0xdd593e91,0x587a3ec6,0xbfb1bf60,0x439a3f34,0xad713f0a,0x8937c024,0x3e814084,0x8bfe402c,0x49303f03,0x6f573f0f,0x9b74bf26,0xa02c3f28,0x91c93f0c,0xee4a3fc2,0x214240fe,0x26a3ffe, 0x38cd3e16,0x9fe5bf62,0x9d9dbee3,0x30ba3f6c,0xccc03f1e,0x68bd4029,0x1ecd4114,0xe14dbec0,0xf203d48,0x3f43bf65,0xe28bbee3,0xf90e3f89,0xc4093f27,0x47b83f6f,0x16554102,0x281b3fb7,0xa0523dbf,0x21afbf61,0x7e84beed,0xeea23f62,0x18c23f1f,0xede14062,0xac154106,0x4e493fcd,0x74113cef,0x8ccbbf65,0xc316bee2,0xd8123f89,0x50af3f20,0xb9a4087,0x1d474119,0x8ed7bf9d,0xfa9bdf3,0x5d3ebf65,0x96afbedc,0xb7993f9b,0x7a1c3f2a,0xaeba4014,0xfb40412a,0x4118c046,0x19013c71,0xcebebf4e,0xebddbf17,0xc8603f96,0x4cec3f32,0xde303f8f,0x27524125,0xc546c030,0x8fcb3b4d,0xea46bf4c,0x84f9bf19,0xdec23f80,0x54c13f30,0x799e3f9b,0x33164111,0xda91beaa,0xb38f3d9f,0x4a69bf61,0xeae6beee,0x1f363f6f,0xbcc73f27,0x991bbb0e,0xd135410d,0x624bc67, 0x19a8bd0d,0xe137bf60,0x9ad0bef6,0x872f3f4f,0x7b5f3f25,0x3badbf6e,0x48e4102,0x20df3fb8,0x3531bdd0,0x9414bf60,0x73e2bef1,0xeae63f3f,0x9c1b3f1f,0xbce63b88,0x44d440f9,0x8a6d3ff9,0xb26cba07,0xf68dbf5f,0x9ad0bef8,0x92da3f4f,0xb17d3f1d,0xfc3f67,0x44bf4150,0x4251c0ac,0xa0b5bd58,0x7cf1bf0c,0xd06bf55,0xcc143f8f,0xf7cb3f40,0xdc81405c,0x510c09a,0xb9684085,0xd514bf1b,0x964dbf31,0x680abec4,0x44703f9a,0xae7d3ec7,0x85f0401a,0xf2cdc087,0x690540a6,0xc46fbf3b,0xd364bf1f,0x43f2be8b,0xaaeb3f87,0x616b3ec8,0x9212405e,0xa62dc0a4,0x500440a6,0x56dcbf0d,0x955bf51,0x2ff9be27,0xefbb3f94,0x95213ec0,0xbb773fda,0x6402c06c,0xa95140cd,0x68edbf4c,0x2d5cbf0e,0x5dafbe68,0xfadf3f72,0x3a543ec8,0xaa374001,0xf1dec08c,0x72a40ee, 0xfb6abf29,0x3ba6bf33,0x532abe87,0x4b623f74,0xd5993ebf,0x77b64030,0x5bcdc097,0xfd0a40c8,0xd39bbf18,0xf53abf4a,0x8c72bdfb,0xb1793f86,0xa30a3ec0,0xad734054,0x61a8c0a5,0xad0a40dc,0xbbf1bf16,0x6cbfbf45,0xa0c7be74,0xab043f89,0x95553eba,0xd15b4087,0xa0c9c0b2,0xb10f40a8,0xc08ebf03,0x3362bf57,0x676abe22,0xe7cd3f9a,0x3eea3ebc,0xe10040a7,0xc8f3c0c8,0xc38340b1,0x30dbbf11,0x892bf45,0x82d4be93,0xfd053f9f,0xbf403eb5,0xbb5840d4,0xb24ac0d4,0x2a44407e,0xdcccbee2,0x167fbf49,0xc782bedb,0x6ab13fab,0x7ba93eb8,0x379540f7,0x43f6c0f2,0xffb408a,0xb123bf12,0x9b7abf16,0x7657bf12,0x52333fad,0xba493eaf,0x38d04110,0xbc27c0f7,0x2163405d,0x1253bee2,0x151abee5,0x8b69bf47,0x44f3fb1,0xfae53eb1,0x89464116,0xb264c10f,0x5a434070, 0xdb6ebefc,0x9654be7c,0x5e57bf55,0x52c13fb2,0xdb53ea5,0xcde44125,0xa5dbc111,0x42564057,0x7713bec1,0xcda4be58,0xd7d4bf66,0x7eaa3fb3,0x8c423ea5,0xb8c94123,0x753ac128,0xd5e6406a,0xd8f6bed2,0x1d90bdba,0x9521bf68,0x37d63fb4,0x32313e98,0xb5314133,0x6b90c12c,0x2a904050,0xa64abeda,0x52f3bd33,0xe0a4bf67,0x86e43fb5,0x7baf3e97,0x38f0412f,0x240bc147,0xa9354057,0x28c2bef8,0xb6993cb0,0x3083bf5f,0xe73fb7,0xd32a3e89,0x6c98413d,0x2dcfc152,0xc0ba4032,0xc2e2bf08,0x61f03da8,0xdfc6bf57,0x119d3fb8,0x3ec63e85,0xa3da413a,0x9989c16f,0xd003402f,0xae7abf1b,0xddfc3d22,0x83cbbf4a,0x3dd13fba,0x24263e6b,0xe33f4144,0xf362c180,0xa7bd4008,0x1c22bf2c,0x570a3d7f,0x425bbf3c,0x2a453fbc,0x7b693e5c,0xded44142,0xdc05c18c,0xad1f400f, 0x502fbf3f,0xe2f6bd84,0x374cbf28,0xd0c83fbd,0x5e703e41,0x60a23c9c,0xdf89c003,0x2b1440d1,0xfe5cbb0c,0x55a0bf3f,0x9ad0bf29,0x8f4b3f4f,0xea4b3ed6,0x7260beec,0x59c5c003,0x90f940d0,0x30c03ec0,0x433dbf34,0xdd87bf1a,0xb9a13f47,0xd95a3ed6,0xe65c3cbe,0x7f86c048,0xefbb40fb,0x7be4bb06,0xe5efbf45,0x9ad0bf22,0xa7833f4f,0x30a53ec8,0xd0b3becf,0x986ebf42,0x499d40a4,0x51633ed1,0x1258bf23,0xf77bbf27,0xa1833f47,0xf3673ee6,0xf156bf54,0x464cbf62,0x32b24098,0xbe963f55,0x1481bec8,0xd695bec8,0xef1c3f3f,0xb3d93ee6,0x21fb3f17,0xacf7c04a,0x5b5140f9,0x790cbeb3,0xbcb2bf3a,0x6b59bf16,0xaf813f58,0xa4a03ec8,0x55043f24,0x1ce4c081,0xec12410e,0xb0b7be9c,0x2a57bf40,0x5ac4bf15,0x4cdb3f58,0x4c403ebd,0x8d4cbf66,0xc64c3ef8,0xaa274061, 0x72e53f56,0x83debe84,0xdae4bef5,0x7e13f3c,0xb41c3ef7,0x6a27bfb1,0x48cfbe81,0xc9f5402c,0x6ee83f65,0xa845be5d,0xb9d4bec4,0xb4b33f2e,0xc9153ef3,0x1623fa5,0x6380c085,0xcca54107,0x13a4bf1e,0xb816bf26,0x4a45bee1,0xcec03f63,0xd33d3ebd,0x722c4014,0x3d5ec0a0,0xaf384106,0x7a58bf18,0x7b1cbf34,0x4873bec4,0xba493f76,0xab3f3eb6,0x81153f28,0xc29ec09d,0xeb7411f,0xac5abe91,0x6ae5bf3f,0xce74bf19,0xdb663f57,0x31443eb1,0xac083cf9,0xf81dc09c,0x98574120,0xd5e7bb04,0x12fbf47,0x9ad0bf20,0xd12d3f4f,0xbe013eb1,0x7de93cdb,0x3161c080,0x65c7410f,0x153fbb04,0xb1f3bf48,0x9ad0bf1f,0x4a803f4f,0x4793ebd,0x5502bf17,0x2d3ec081,0xfd13410e,0xb0b33e9a,0xab86bf40,0x7faebf15,0x4cdb3f47,0xdda93ebd,0x21fbbf0b,0xcb27c04a,0x66e940f9, 0x79193eb1,0x5065bf3a,0x7176bf17,0xaf813f47,0x5ed53ec8,0x429bf8e,0xbd8c054,0xb22640ed,0x43353f36,0x7746bf18,0x315dbebd,0xca823f3f,0x4e1e3ec8,0x2b8bf70,0x8f30c00c,0x54f140c3,0xe72f3f4d,0xbe9abef5,0xf280beb5,0x2a33f3f,0x89f83ed7,0x6ce8bfb3,0x6015c025,0x24ee40a3,0x25d43f5b,0x1feabee1,0x8506be8b,0x33ec3f35,0x212d3ed7,0x908ebfa3,0x6534bfab,0x72bd4071,0x539d3f63,0xdee3beaa,0x1b22bea1,0x92f73f34,0xcd213ee6,0x65aabffc,0x4cbebff3,0xad854027,0xe6253f42,0x4338bee7,0x763ebeee,0xe8b43f1f,0x375d3ee5,0x8115bf19,0xd348c09d,0x11cb411f,0xac543e8f,0xe237bf3f,0xf8a9bf19,0xdb663f47,0x88483eb1,0x1262bfaa,0x5408c09f,0x37ae4118,0x8ea63f05,0xc9cbf31,0x1727beff,0x1d2e3f3f,0x8b693eb3,0x481dbfaf,0x8151c0c0,0x9c6a412c, 0x59683f06,0xb025bf25,0xf002bf0d,0xc3bd3f3f,0xe48f3ea5,0x8bebc021,0xa12cc0bc,0xceee4115,0x33153f1e,0xb730bf1f,0xd0fabef4,0xdcad3f31,0x51ad3eab,0x162bf9f,0x8529c085,0x10f14107,0x13913f1e,0xc4edbf26,0xdf0dbee3,0xcec03f3e,0xcfaf3ebd,0xaa3fbffc,0x5bc0c08c,0x94e440ef,0xfb8c3f28,0x70e0bf33,0xbce4be89,0x4b623f33,0xc563ebf,0xad73c052,0x10b6c0a5,0x717d40dd,0x96ab3f16,0x90fbbf45,0x598abe78,0xab043f23,0x9ecb3eba,0x722ec011,0x7a55c0a0,0xc6a4106,0x7a023f18,0x72d5bf34,0x9681bec6,0xba493f32,0xceb83eb6,0xbb77bfd5,0xbd8cc06c,0x43a640cd,0x6d623f4c,0x8a54bf0e,0xe92dbe6d,0xfadf3f34,0xd0813ec8,0x85eac018,0x721fc087,0xe58340a7,0xd1ae3f3a,0x5139bf1f,0xad64be8e,0xaaeb3f25,0x87d73ec8,0x77b6c02e,0xed50c097,0xc0b740c8, 0xd6893f18,0x3047bf4a,0x64b2be02,0xb1793f26,0x92863ec0,0x9212c05c,0x5d9ec0a4,0x1c7040a7,0x477c3f0d,0xeba3bf51,0x1490be2a,0xefbb3f19,0x735c3ec0,0xf156c006,0x3feec047,0x12784079,0x77323f41,0xb507bf0b,0xbe77bebb,0xe9dd3f23,0xe05d3ed6,0xd081c051,0x44bfc06b,0xf9464038,0xcbdf3f0d,0x58ecbf1a,0x4984bf12,0xc0db3f0d,0x9c2c3ed5,0xdc79c05b,0xbb86c09a,0x21214085,0xd03b3f1b,0x86f6bf31,0xdc4dbec6,0x44703f12,0xf4563ec7,0x83a9c0a3,0x70f8c0b4,0x8463405e,0x5d53ec6,0x7590bf39,0xcfccbf12,0xf1883f01,0x9da33ec2,0xd15bc086,0x8097c0b2,0xc95940a9,0x7ec53f03,0x6128bf57,0xe06ebe26,0xe7cd3f12,0x7213ebc,0xe0f8c0a6,0xdd01c0c8,0xfb0a40b2,0xa2e83f11,0x20d0bf44,0x7e46be95,0xfd053f0d,0xcfcc3eb5,0xe1c8c088,0x2ecdc0d5,0x470540fd, 0x9d83f34,0x223befe,0x9286bf02,0x3e5c3f1d,0x50f43eaa,0xe64fc077,0x6bbac0bc,0xa49a40ef,0x16653f22,0x9e88bf2c,0xf994bec2,0x6fc63f1f,0xfd693eb2,0xdf85c029,0x7185c0d7,0xac464121,0x30fb3f34,0xf7abbedf,0xb8dcbf0e,0xf16b3f31,0xadb03ea1,0x551bc024,0x3a8bc0e9,0x6f254126,0x53053f4c,0xce313dd3,0xa1c7bf17,0x37e73f32,0x26f23e9c,0x507fc016,0xbd74c0f0,0xb0a94124,0xd9a33df6,0xd13a3f7d,0x35adbd40,0xaf143f34,0xc7243e9a,0x81f1c081,0x5540c0f3,0x12e64101,0x54713e3d,0x20953f68,0x1be3bec1,0xb9953f1e,0x21143ea1,0x5fafc08a,0xc53cc0e9,0x6fe84101,0x682f3f3e,0x89d83d5a,0xe78bf2a,0x55c93f1d,0xe06b3ea4,0xf651c0cb,0x2ae7c0fc,0x15e940c3,0xf293f2f,0x8f5be27,0xbedbbf36,0x49f53f07,0xf7793ea6,0xe23bc0c0,0x6d0dc0e2,0x2e1740bd, 0x79c93f24,0x7493bf1c,0xd639beed,0xe2263f09,0xc47c3ead,0x37b7c0f5,0xdc3ac0f2,0x4b7d408b,0x546a3f12,0xc3cabf15,0xb3d9bf13,0x52333ef7,0xa8763eaf,0x893bc115,0x96d9c10f,0xab394074,0x253a3efb,0x34b2be77,0xdb0abf56,0x52c13ee7,0x8cbf3ea5,0x15dac103,0xe602c10a,0x6a7b4092,0x3b823f24,0xd08bbe7c,0x9043bf39,0x7bc83ef3,0x9add3ea5,0xbb84c0d3,0xb83dc0d4,0x52904080,0x50963ee2,0xeef1bf49,0x942dbedc,0x6ab13efc,0xf8263eb8,0xb574c103,0x3f18c0d4,0xb68a4048,0x6c3e93,0x2462bf13,0xc8debf44,0x9f123eec,0xc2ce3ebb,0x3947c10f,0x75b4c0f7,0xcd6e4061,0x9c2a3ee1,0xe0d0bee2,0xac11bf47,0x44f3eea,0xa05b3eb1,0xd6dac122,0x4ca9c0f7,0x65d4044,0xc8563e9b,0x5d68beab,0x792dbf64,0x7cbf3ee4,0x31e93eb2,0x90f6c115,0xa32bc124,0xeeb4082, 0xcb3e3eef,0xe1bbdc3,0xd4abf61,0x2b803ee5,0xe0dd3e99,0xb6f0c121,0xbd51c128,0xa4f3406e,0x6b9f3ed1,0x6a54bdb8,0xced9bf68,0x37d63edf,0x97d63e98,0xcd13c123,0xee8dc111,0xfdaf405b,0xb6e93ebf,0x490bbe54,0x8f19bf67,0x7eaa3ee2,0xe7f43ea5,0x2447c10d,0x93f7c139,0xfa0a408b,0x59153eb7,0xab8ebd28,0xf33dbf6e,0x30493ee2,0xaf5d3e8d,0xd915c134,0xb31c113,0x1d04045,0x82bb3ebf,0x3b4ebe1d,0x2b28bf6a,0xaff33ede,0xa0123ea5,0xff0c0f6,0xf8b3c133,0x72304095,0xdd003e61,0xac92bc96,0x3290bf79,0x43a63eea,0x9cf03e8f,0x55c4c11d,0x1472c13f,0xabf8407d,0xb9043ee1,0x6e6dbd4d,0x68a9bf65,0x58083edc,0x934d3e8b,0x2fbcc12d,0xebc147,0x56f8405c,0xf7d13ef8,0xce0d3cac,0x7b42bf5f,0xe73ed5,0x5f423e89,0xb03dc131,0x387ec12c,0xd1754055, 0x33d83ed8,0xa82cbd2e,0xcc4fbf67,0x86e43eda,0x15ec3e97,0x15abbfb8,0xddba40d5,0x2d74074,0x4fc4bd28,0x24bfbee7,0x826bbf64,0x594f3f3c,0x753a3f15,0x290dc014,0xf8ba40f5,0x50374036,0x18eebdc6,0x24e7bf56,0x8256bf0a,0x5ac93f31,0x87093f1b,0xb1f7c00c,0x455240d2,0x9d484076,0x97ef3c33,0xa3bbbeae,0x521ebf70,0xfece3f34,0x77533f14,0xd1b7bfc1,0x924b40fe,0x213c3fff,0x61ccbe1f,0x66dfbf61,0x7f88bee5,0x2c343f38,0x3ad23f1e,0x5f7cc02a,0x2b304115,0xb6f0bec4,0x23d2bd09,0x189dbf61,0x18ecbef3,0x46523f23,0xb4393f28,0x6131c009,0x825e40bd,0xaf404076,0xa9173e1e,0xd3f43e7d,0xfeb0bf74,0x24dd3f33,0x78b33f12,0xaa9bc04b,0x781040ca,0xd3dc406a,0xd01c3ea4,0xebca3dd3,0x7419bf70,0x41ee3f2a,0xba0f3f14,0xb46ec03f,0x4a7b40e4,0xa2534064, 0xcbb73da3,0x28cabf0d,0xcd85bf54,0xe7193f2c,0x3a2a3f17,0xb96dc082,0x8c7e40f6,0x6281403a,0xb91a3da5,0xa0acbf3d,0x1c97bf2a,0x79533f23,0xb2f63f1b,0xdb98c061,0xd57c4106,0xfc5c3fd0,0x8a9ebcbd,0x6313bf64,0x37b9bee6,0xd25f3f23,0x804b3f20,0xd297c09b,0xee9410b,0xe35d3f5a,0x48d23d69,0xee38bf6d,0x3a26bebd,0x8aa03f17,0x29393f23,0x9691bf9c,0x2474112,0x94e4beb5,0x981dbdb4,0xd958bf5c,0x6916beff,0x78793f36,0x2c563f27,0x8223bf92,0x6b40412a,0x435bc037,0x1f25bda7,0x875dbf47,0x9b95bf1f,0x52df3f2c,0xc3a83f32,0xb815c03f,0x376940a9,0xbe274054,0x46d63eb6,0x33f83eeb,0x3426bf50,0x7a8d3f29,0xa14d3f10,0x2aacc083,0x56de40b9,0x3eb24040,0x7fc13ef2,0x7c693ef1,0xb9bf3e,0x19503f20,0x22643f13,0xfcbbc088,0xba8840d9,0x502b4052, 0xbbd73eb0,0xf968bd54,0xdf22bf6f,0xf7d33f21,0xec103f16,0xe02fc0ae,0x59a740e8,0xdb8c4031,0xca253ec7,0x3bbfbe07,0x8809bf69,0xe3b93f19,0xcb533f19,0xff19c0aa,0xf20a4101,0xfa164011,0x519c3db9,0xc29fbf4e,0xaac5bf15,0x615b3f19,0xe6323f1e,0x7389c0da,0xd2b74106,0x52593fc3,0xf7bc3e2d,0x2768bf59,0x5b5bbefe,0xe9c43f10,0x46d03f20,0xcef7bc2e,0x39654124,0xdae2c028,0xa322bd8c,0x485ebf47,0x9abfbf1f,0x5f9e3f4f,0x1ea33f30,0x1c46bca2,0xa32d4153,0x1b3bc0ae,0x49abd28,0x1095bf0f,0x9abfbf54,0xc3693f4f,0x8b593f41,0xe23b40c2,0x2c15c0e2,0xe04440bc,0xb021bf23,0x135cbf1d,0xc797beeb,0xe2263fa2,0x3ca73ead,0xe64f407a,0x9dacc0bc,0xfba440ee,0x556bbf22,0x9984bf2c,0x1acabec0,0x6fc63f8d,0xbb983eb2,0x15dc4104,0x3027c10a,0x8d554091, 0x28fabf24,0xfec2be82,0xd489bf38,0x7bc83fae,0xbb103ea5,0x91764116,0xafeac124,0xf0f84080,0xc293beef,0xc786bdc6,0x296fbf60,0x2b803fb3,0x54f53e99,0x256b410f,0xb5fac139,0xb2224089,0xd8fcbeb8,0x8bd1bd22,0xbd06bf6e,0x30493fb3,0xf7383e8d,0x103640f8,0x5cd3c133,0x8f974094,0x587fbe64,0x807ebc8e,0xb107bf79,0x43a63fb1,0x58173e8f,0x49dd40e1,0x5c21c146,0xc26e409e,0xb7a7be7a,0x8df7be10,0xe9c9bf75,0xe6603fb1,0x441b3e83,0x597e411f,0xd6cbc13f,0xae54078,0x9841bee2,0x5ababd49,0x77c0bf65,0x58083fb5,0x83743e8b,0xb7a5411a,0xf77bc154,0xd7344082,0xf7c4beed,0x460dbd5e,0x5b18bf62,0x6d9c3fb6,0x5b773e7e,0x6e164106,0xfa66c14c,0xf1064092,0x6b74beae,0x1bf1bdd5,0x3947bf6f,0xdf113fb4,0x617c3e81,0x94654101,0xc3bc15d,0x2003409c, 0x35c8bebb,0xa393be26,0xa9d6bf6a,0x6cf03fb4,0x4a93e6f,0xe7fc40b5,0x8097c140,0x3d5040a5,0x95d2be4a,0xce5dbe1e,0x12d3bf77,0xfe973faf,0x428f3e85,0x420140a8,0xf55cc152,0xc440af,0xb042be58,0xa5cebe74,0x287cbf72,0x264a3faf,0xf76c3e77,0x866d40d3,0x616dc156,0x53c40a8,0x868dbe85,0x524dbe56,0x128cbf71,0x3f603fb2,0x24403e74,0x26db40cd,0xa55fc165,0xb08b40b1,0x328be8e,0xeae0be68,0x4ebebf6e,0x94143fb2,0x16e23e62,0x8991412c,0xdef8c160,0xd5b9405b,0xa28bbf0f,0xc5b03a7c,0x84d7bf53,0x76213fb8,0xe6a33e76,0xc94a4129,0x16e8c175,0x5b744066,0xe4dabf1e,0x8d2abd76,0x6b7fbf48,0xa52f3fb9,0x987e3e5e,0xdafe4117,0x7120c167,0x864a408a,0x35bebf00,0x7463bdea,0xc24bf5b,0x56e73fb7,0xe4513e68,0x1c7d4115,0x171ec179,0x79274092, 0x882ebf06,0xfc33be0c,0x9a84bf56,0x384c3fb7,0x1c863e54,0xe1e7c00a,0x54e74044,0x9153ff6,0x4f703f2f,0xdc013f16,0xcfebedd,0x701e3f27,0xdd483f09,0xae71c049,0x7cc44066,0x12923fb3,0xdb193f10,0xb2e93f2a,0x7f0bbef9,0xa0b23f1a,0xeed43f0c,0x84b2bfff,0x306a4015,0xbf83f93,0xeaba3f32,0xd1a33f0b,0xb8edbeee,0xa7a83f21,0x8bfc3f07,0xec9ac06b,0xc3a04095,0x130b4012,0x8ef03f04,0xf5523f24,0xcf9abf10,0xa9193f1d,0x19f63f0f,0x7bcec09c,0xe4fc40a8,0xc2f53fee,0xbf243ef2,0x6c533f28,0xfe8bbf15,0xe73e3f14,0x7d543f12,0x5a51c0a9,0x91fb40c9,0xb35f4023,0xf3e63ef0,0xd4c43ef1,0xddecbf3e,0x10bf3f17,0xfb1c3f16,0xf58cc0d7,0xe6e240d5,0xbf633ff4,0xdfa3edd,0xf1253ed4,0x5419bf4c,0xe6193f0f,0xddc83f18,0x5c01c0dd,0x35ce40f4,0x27654003, 0xc57b3eda,0x325ebe33,0xcd64bf63,0xb6853f10,0x5e013f1c,0x771fc10c,0x5f4a40f9,0x4d253f8a,0xa19b3ee0,0x369bbe85,0x9592bf5c,0x210c3f07,0x9b173f1f,0xebffbfd6,0x3e293fd6,0x5e393f8a,0x57ec3f60,0x72323e50,0xc686bedf,0xf8a53f23,0xf2d83f04,0xfe3fc02e,0x13554028,0x94553f14,0x43083f18,0x32093f17,0x2392bf0b,0xf9ad3f15,0x743f3f09,0x21b4c07e,0xe7144061,0x20cd3e88,0x4293f05,0xfe663f2c,0xe469bf06,0x47fe3f0b,0x33293f0e,0xbba1c08c,0x6eca4089,0x90a83f80,0xd4163ef5,0x83e13f36,0xd24ebf02,0x55223f10,0xe7883f10,0xfcb1c0bf,0x753409c,0xb0903f0d,0xbd8b3eb4,0xc0ad3f3b,0x1c5bf14,0xb7523f08,0x66773f13,0x25b1c0cc,0x84f540b7,0x1b213fa7,0x7c393ebc,0x3bf73f28,0x3372bf28,0xdc623f0c,0xdfa93f15,0xd927c106,0xab9340bc,0xfd93f04, 0xd7653e96,0x2b743f18,0xdce4bf3f,0xa283f02,0xcfe93f18,0xaad8c10a,0xbbf40da,0x65b03f83,0x1b923ec6,0xb69f3ea7,0x664bf5c,0x1ee23f06,0x6bf23f1b,0x58e4c12c,0xb64140d4,0xcf8d3dac,0x28c63eb5,0x88a03e51,0x25afbf69,0xf5f93efc,0x9f1b3f1b,0x1f08bfcb,0x322b3f0a,0x14163fe6,0xcb2d3f6b,0xfdb9be59,0x3c3ebeaa,0xa76e3f27,0xf88c3efd,0x38f8c070,0xff69403d,0xd2fabe33,0x44373ee0,0x3b943ee9,0x83bebf46,0xac2a3f07,0x52763f0c,0x10b2c0b3,0xb2184082,0x8d2ebec2,0xa3913e9e,0x722b3eed,0x88e3bf54,0xc7263f01,0x45f83f11,0x8ac6c0b7,0xfa4c408c,0x1d5cbd3b,0xadae3eb0,0x9cfc3f43,0x2e88bf0b,0x94ee3f04,0xdda93f12,0x9e67c0b4,0xa7db4073,0x45aabeb3,0x72a6bcc3,0x459fbee3,0xda3cbf65,0x9fd83f00,0xa3b83f10,0x3960c0fb,0x5534087,0x22c6bf53, 0xf4243e1c,0x89b4bf18,0x1b33bf49,0x44f63ef4,0x5ba93f13,0x501ec0b9,0x9bcc4066,0x946bbe13,0xcc77be20,0xc2c2bf32,0x363fbf32,0x5e963f01,0x8e083f0f,0xff5cc076,0x2246402a,0x55b1be24,0x645bbe55,0x85d4beaf,0x176ebf6a,0x6dfc3f06,0x9e53f0b,0x2f9dc04c,0x90433fbe,0x7cfd3e23,0xb625bf28,0x4b2be89,0x87cabf34,0xcad13f08,0xd6343f05,0x8ec1c082,0xc6694022,0xbafd3da2,0xe6b6becc,0xd6c8bf17,0x6fd6bf32,0x70f43f06,0x65a53f0a,0x13fc08a,0x46d0401c,0xc3373e9e,0x15b7bf03,0x434fbf3c,0xc27abee2,0x98d03f06,0x47063f09,0x93c2c0fc,0xc4614081,0x7d99bf1a,0x49e83daf,0x6cf8bf46,0x9bc3bf20,0x20043ef5,0xd4f3f12,0x1610c122,0x5c6c4080,0x103ebfaf,0x673c3ea0,0xf463bf3b,0xb631bf1a,0x4cf53ee8,0xa6583f13,0x90c3c123,0x2de4084,0x1f95bfbd, 0xe2c23e5d,0x7f583e61,0x214bbf73,0x16be3ee8,0xb8f33f14,0x8c17c0fc,0x68d7408d,0xa6acbf61,0xa8c13e5b,0xa3c53edf,0x47c3bf5f,0x36973ef4,0xa5163f14,0x1fc0ff,0xc72e4096,0x3433bf1f,0x17bb3e4f,0x187f3f39,0xd5edbf29,0xe2c13ef7,0x8bb83f14,0x78bcc102,0x618940a4,0xfea9be07,0xae9f3e61,0x46b03f35,0xfdf0bf2b,0xf14a3efd,0x89553f15,0xd6cbc127,0x8e75409d,0xa1acbf65,0xcc03e03,0x41493f21,0x954fbf44,0x6e543eef,0x62ac3f16,0xe3b7c125,0x30d3408d,0xa028bfa6,0x67283db4,0x2db33f1b,0x9e4dbf4a,0x42e3eea,0x8a4c3f15,0x50b5c145,0x26fa406a,0x894cbff3,0x33313d8f,0xea23ed5,0xd280bf68,0xcc1d3ee0,0xd54e3f12,0x4185c142,0x3364055,0xad8abffc,0xb1083e8d,0xaebdbdcb,0x4e23bf74,0x83b63edf,0x2b6a3f11,0xca7dc159,0x2b8c4012,0xf78ec010, 0xf1083ecd,0xbfb3be84,0x7a68bf60,0x97d53ed9,0x615e3f0d,0x31bcc12a,0x9a3d40b6,0x207dbeaa,0x5863e4e,0x31203f04,0x4ffdbf55,0xadef3ef6,0x947b3f18,0xbdd5c148,0xf42c4086,0x61a1bfcb,0xb64f3d27,0x2f983f08,0xbe40bf58,0x999e3ee4,0x7723f14,0xcaf7c14b,0x6e1e409f,0x797fbf89,0xea3f3e02,0xa1b83ee8,0xbc94bf61,0x4ee3eea,0xd9e43f17,0xc155c161,0x7294052,0xae6c007,0xb12ebc4f,0x12353ed3,0x5843bf69,0x9c173edd,0xb4723f11,0xbfa6c087,0xf37c4119,0x97cebf9b,0x81d13e15,0x8303bf61,0xa672bee6,0xf0073f11,0x11fd3f2a,0x52a2c016,0x14f94131,0x7aa4c051,0x64733c77,0x82c5bf47,0x6480bf20,0xdcca3f16,0xec0b3f34,0x126cc0cb,0xd7a5410d,0xac0c3e26,0x4d483dd5,0x638bf73,0xf3dcbe96,0x1bf83f0c,0xd95e3f25,0x238bf71,0xe9ff4157,0x1ccbc0b1, 0x5b8cbc88,0xcf3bf0c,0x1459bf56,0xfdca3f1e,0xf03c3f42,0xec13c109,0x82d44108,0x4fb63f07,0xde993e5b,0xd247bf5f,0xe5ebede,0x5ce23f07,0x43203f23,0xcc85c128,0xeb5f4108,0x8e69bf12,0x388a3e95,0xacc5bf55,0xfa44bef0,0x4db63efd,0x5d963f25,0xb96cc11f,0xf72b410f,0xf7f0bff4,0x30f53e00,0xd67cbf72,0x6c09be98,0x884c3ef6,0x1073f29,0x24c8c13c,0xa6b14112,0x7f8fc046,0xc00b3e6a,0xfdebf68,0xc23bbeb2,0x4e403ee9,0x2a383f2c,0xb08cc12c,0x197a40f5,0xd4203d45,0x1a233eeb,0x7944beb0,0x1e08bf51,0x79703eff,0xba603f20,0x8740c14a,0x3aa340e6,0xf8fbbf5d,0x20d73efc,0x8e2abec5,0x9f38bf47,0x15d33ef2,0xd1d33f20,0x78c1c145,0xf8cf4105,0x3c14bfd0,0xe5e13ed8,0xc311bf43,0x2b1bbef8,0x4f443ef1,0x25cf3f26,0xf42ec15e,0x5c3e40fe,0xe406c025, 0x2b553f0e,0x5817bf31,0x7a2dbeea,0x69273ee7,0xe7773f26,0xc291c130,0x4478411f,0xcf16c0a0,0x68b93e57,0x347abf62,0x9ddcbed5,0x52db3edd,0x763e3f33,0x5046c153,0x29264112,0x38f3c087,0x8d983ed2,0x44c4bf58,0x581beae,0x5a143ee0,0x7dc3f2e,0xde83c14c,0x441340bf,0xbe1ebf35,0x8f883eaf,0x71753daf,0x1c0dbf6f,0xa63b3ef0,0xa0493f1a,0xc6b5c007,0xd424bf88,0x96113fde,0xd76d3f3a,0x2544becf,0x729fbf0d,0x21af3f18,0x43fa3ef0,0x5669c04b,0xaabdc016,0xf5733fdb,0x99b3efb,0x8ce1bf0d,0x2603bf2c,0x4bcf3f08,0x8e753ee5,0x8518c09e,0xf85dc081,0xa3014005,0x46e23e98,0xae64bf1b,0x9c7cbf3c,0x783e3ef9,0x5e4e3ed5,0x8f3fc0f0,0x2fbac0af,0x67384021,0x36fa3e5b,0xfaf5bf0f,0x22c9bf4c,0xb2ee3eed,0xd8ea3ec7,0xca7bc11e,0x7c31c0d0,0x81ff4027, 0xe7e73e72,0xd39abed8,0x4a5ebf5f,0x820e3ee5,0xfdd83ebe,0x34c136,0x7810c0fa,0xedcd402c,0x14293ea7,0xa00fbe8b,0xe176bf67,0x400c3edf,0xed723eb3,0xcaacc148,0x9d0ac100,0xdde4012,0x664c3f06,0xf6bebe4d,0x5e74bf53,0xad3f3edb,0x3d233eb2,0xf3aac14c,0x6bf0c0d6,0x5eb73fdc,0xf0783f04,0x1e9be9f,0x38f8bf4c,0x14943edb,0xc27f3ec0,0x7cd6c159,0x29aac0e4,0x66d93f87,0xc2233f4b,0xa3efbe08,0xe747bf17,0xd9173ed4,0x729c3ebe,0x5c8ec15e,0xc1a4c0b9,0xfa7b3e8d,0x64343f44,0xce5dbe46,0x6630bf1b,0x21ff3ed3,0x1ef3ecd,0x7f6c169,0xdb38c0cb,0x24f7bf44,0xa7913f68,0xb4133c66,0x960bbed7,0x256c3eca,0xc3893ecc,0x9618c16e,0x65e0c09a,0xb6e6bfbe,0xed443f5e,0x3625bcb3,0x515dbefc,0xa2be3eca,0x86653edb,0xa03ec177,0xb1c8c0ac,0x9005c033, 0x66073f6a,0x78c73df8,0x1a9cbec3,0x866e3ec0,0x16373edb,0x2d4dc17d,0x32ec078,0xe1fec049,0xe6f63f61,0xf6123dc2,0xb51cbeeb,0xaae73ec2,0x15b73ee9,0x57c3c183,0x1876c08a,0xdefdc08f,0x7b5f3f61,0xd4cc3e2d,0x6bbabee0,0x9b073eb9,0x7933eea,0xa716414b,0x8d09c197,0x3603fe0,0x732dbf50,0x627dbe06,0xab58bf11,0x4b883fbe,0x10703e2e,0xc971414b,0x2cdcc1a0,0xffec400d,0x8342bf4c,0xf904be91,0xb513bf06,0x94643fbe,0x17a03e17,0xe7e24155,0xca08c1ab,0x139a4008,0x7bdebf51,0x5632bed2,0x5358becf,0x507a3fbf,0xfc003e00,0x77eb4154,0xac4bc1b2,0xf8de4045,0xb99abf48,0x48fcbefd,0x691fbebe,0x110e3fbe,0x3dcd3dd7,0x57bf4160,0xc233c1bd,0xc5674068,0x8c8bbf4c,0xd7bcbf08,0x10aebe8c,0xcbf33fbe,0x32df3da0,0x5f374161,0x7456c1c1,0x76344094, 0xaa82bf63,0x1fa2bee9,0xdab2bd42,0x52b13fbc,0xb3853d81,0x5d464141,0x7176c196,0x572d4020,0x987cbf3b,0x4da2be17,0xa67abf2a,0xb40b3fbd,0x42733e2b,0x4f9a414a,0xc201c1a8,0x9d764035,0x836bf3b,0xa28ebed8,0x597dbf08,0x1213fbe,0x582c3e03,0x7a7b4140,0x9cf1c19e,0xd4f24038,0x8000bf3c,0x6046be8a,0xc6d2bf1e,0xb1c03fbd,0xdc513e17,0xbea24136,0x64a6c18c,0x9794042,0x9a57bf34,0x7ed5bdba,0x236cbf34,0x7b893fbc,0x53e13e3c,0x36de414a,0xd0fac1ad,0xce0d405f,0x7f7dbf56,0xc771bf00,0xb142be56,0xb80b3fbd,0xa56f3de7,0xb3ed4155,0x5a6cc1b6,0x2663407d,0x997abf58,0x6210bf06,0x6191bdd3,0x99bf3fbd,0xd6503db8,0xd2154158,0xdc03c1b7,0x260a4090,0x7a57bf5c,0x3c76bea5,0x7b783eca,0xbb1f3fbc,0x38af3dab,0x53ba4138,0x3d3ec183,0x61ea4036, 0x8fc3bf2e,0x4b1cbcdd,0x8623bf3b,0xf03d3fbb,0x66453e51,0x8c74128,0xd36bc184,0x3ff44072,0x494abf25,0x54d9bdac,0xe63bf42,0xb6f63fba,0x111d3e49,0x3dee4127,0x1c2ac18c,0xf113407f,0xd3a5bf30,0x95d8be20,0x999ebf34,0xd3b73fba,0x45173e36,0x15944135,0x5b85c195,0x1dc44050,0xdb53bf34,0xb237be1b,0x998dbf31,0x203a3fbc,0xb1a13e29,0xc2444134,0xc305c19a,0xbe244063,0xaaa0bf54,0xd0bfbed0,0x9accbec1,0xdaba3fbc,0xf1463e1a,0xe39f413f,0x7aeec1a3,0xfd3a4055,0x60dbbf50,0x35d3bef0,0x7f5abeac,0xeeaf3fbd,0x6c03e08,0x45dd4142,0x27e1c1a5,0x73f94074,0x82dfbf53,0x92b3bf01,0xb6bf3e7e,0x90693fbc,0xfb083e02,0x7c8b414c,0x9284c1ae,0xe4d04080,0xfd9bbf58,0x49ebbed7,0xdaf53ea5,0xdd9c3fbc,0xfca63dda,0xf17a4150,0xd28c1ad,0xc9f3408f, 0x595cbf49,0x5111bebb,0xf0dc3efd,0xbc1f3fbb,0x49203dd6,0x3d29416c,0xa69ec1ce,0x45e340ae,0x3222bf5f,0xbb5dbef5,0x5953bdcc,0xca363fbc,0xcefd3cfa,0x443a4173,0xcb79c1d4,0x8c2740b9,0xe8dcbf2e,0x8b0cbf2b,0x1f97be94,0xda403fbc,0xe1af3c7f,0x8168417c,0x9d28c1d5,0xae540b9,0x1f7a3e81,0x3ee3bf4a,0x58abf0f,0xf56a3fbc,0x92833c55,0x581d4178,0x6f28c1d8,0x352a40cb,0xe137bf28,0xcbf2bf3f,0x89ce3da4,0xc2f03fbb,0xf0833b56,0xa907416f,0xab1c1cf,0xcd9840c0,0xba0ebf58,0x646dbe3c,0x939a3eff,0x88ec3fbb,0x5443cc3,0x364417e,0xf83cc1d8,0xe95e40d4,0xf59fbee9,0x8d9abf2f,0xfcd63f10,0x76c53fba,0xc4433af7,0x7a4d4164,0x3f29c1c2,0x108340a7,0x276fbf5e,0xaf6fbe46,0xf50e3eea,0x76e23fbb,0xb6593d68,0x1ebf4169,0x69fbc1c2,0xcfda40b3, 0x3eeabf42,0xb337bdab,0x3d4b3f24,0xab713fbb,0x32793d60,0x55b04175,0xaa7cc1cf,0x27ae40ca,0x2e5ebf34,0x5590bd61,0xf5d33f35,0x21fb3fba,0x8a803cb6,0x1d0417a,0x4f48c1cf,0x5da040d5,0xfa0ebf00,0xaf7c3d96,0x5bc03f5c,0xbb0a3fba,0xbf763ca8,0xae6e4181,0x8394c1d7,0x3b1d40de,0xc8cc3d8d,0x337dbe87,0x73b43f76,0x126f3fba,0x51ad3a03,0x32664182,0x5552c1d3,0x52f040d9,0x45653f0a,0xc7c33eaf,0x55753f44,0xc8193fba,0xdb733c33,0xcfd417e,0x71e7c1cd,0x36a840d4,0xe7db3ee1,0xbcfe3eed,0x2efd3f44,0xa3013fba,0xc4163ccb,0x108a4172,0x8553c1c0,0x805340bf,0x4a5b3ec7,0x27663f04,0x56c53f43,0x674d3fba,0xcd843d67,0xc249416e,0x9d45c1c1,0xeabe40bf,0x93d5bf12,0xe313d7b,0x88d73f51,0xdef43fba,0xb7b3d58,0xeea74162,0xa2fbc1b6,0xb59e40ab, 0x4e94bf25,0x6fcebdcd,0xdcec3f41,0x968d3fba,0x5de73da3,0x60d7415d,0x3b15c1b7,0xdde9409e,0xc145bf49,0x7c1bbe66,0xaac53f12,0xa8d63fbb,0xaadd3da7,0x18b84165,0xef4cc1b5,0x621340ad,0xb1863e8f,0xd4ee3eee,0x877f3f56,0x64c33fba,0x68533daa,0x42bf4158,0xe23fc1ab,0xb60240a2,0x3a603e34,0x6ff33e64,0x807c3f75,0x58973fba,0x1d863dd9,0x66844155,0x8690c1ad,0xb2e5409d,0x42f4bf2e,0x61b9be96,0x9743f2b,0x9a1c3fbb,0xdcc93dd2,0x97b4148,0x6e2bc1a4,0x31804099,0xc523bf26,0x9943beec,0xac323f1a,0x71503fba,0xd5013dfc,0xabd8414b,0x90b4c1a1,0x765940a1,0x82d73d76,0x1146bd77,0xef313f7f,0x754b3fb9,0x66163e01,0xa62a4145,0xcf9ac1a4,0x3c034089,0x9b6bbf43,0x93f8beff,0xafd13ed2,0x64673fbb,0x38943e00,0x7cfc4139,0x8525c19b,0xa6c84090, 0x62f3bf2f,0xdecebf21,0xb4c03eb9,0x7a203fba,0x206d3e12,0xd105413c,0xb78dc19a,0xb25240a0,0xe7a9bf10,0x18f9bf1e,0x95dd3f0b,0x4e1e3fb9,0x12833e10,0x73ff412b,0x3077c192,0x489d40a5,0x5fe0bf11,0x4981bf40,0xa7163eac,0x30e03fb8,0x6f823e21,0x36844128,0x6f46c193,0x15554095,0x1d39bf2d,0xd38abf39,0xdece3e10,0x137b3fb9,0x608c3e23,0x2e674136,0x1e38c19c,0xc6514080,0x9ba9bf45,0x2189bf1c,0xd7dc3e2e,0xa6223fbb,0x780d3e14,0x19244116,0x9ce9c18b,0x4fa40ae,0x94bbbf09,0x2aadbf56,0x40a33dd6,0xd3d83fb7,0xcbd73e2e,0xd3474114,0xe8fbc189,0xbccb40a1,0x8dd4bf27,0xc08ebf03,0x1fa7bf0d,0x5f5b3fb8,0xc8ef3e34,0xdae84126,0xa18c191,0xa0794088,0x4d81bf49,0xc26cbeda,0xaa9fbee3,0xf4b63fba,0x9ded3e28,0x512140fa,0x2ff9c183,0x98fe40b4, 0xe68fbef3,0xa647bf12,0xa198bf2a,0x3cda3fb5,0xeb1c3e3e,0x252140fa,0xb5aac17c,0x8c4740ab,0x6268bece,0x6027be7f,0x9b0bbf61,0x51bd3fb5,0xc8033e4b,0x6a934114,0x2865c184,0x43464099,0xb762bf11,0x948cbe5a,0x1a3fbf4b,0xde273fb8,0x2d8e3e41,0x8c3240c9,0x60bdc173,0x33fb40b9,0x91fabe9b,0xe8cabe8a,0xc97ebf69,0x7e783fb2,0xd2c83e51,0x432240fd,0x72d4c16d,0x6d7f40a4,0xfb56bec2,0x1d2dbe3b,0x19dfbf68,0xd1c83fb5,0xf6453e5c,0x690d409f,0xd754c161,0x6be540ba,0x2be3be67,0x9dbfbe8a,0x1299bf6f,0x8f543faf,0xdea43e64,0xeeb14077,0x38fcc14f,0xf45240b8,0xc99fbe7c,0xb6cbbe6f,0x2c5ebf70,0xd3913faa,0xa9c93e77,0xe649c164,0xa0274082,0xb593bfd3,0x27c33dae,0x74e93ec4,0x96f6bf6b,0x343b3ee2,0x58d63f14,0xb561c165,0xcb6840a4,0x52fbbfad, 0x5eea3edd,0xd825bb66,0x5bc4bf66,0x30a13ee7,0x203d3f18,0x8a22c173,0x6e0d4051,0xcec0c001,0xfafe3e46,0x2db53e8b,0x8927bf71,0x610b3edd,0xa46d3f11,0x2feac163,0xf72340d1,0x9e76bfd2,0x76273f1c,0x61c7beca,0x52f4bf2f,0xa4233ee9,0x7e533f1e,0xdf35c172,0xf47340ba,0x1c5bc012,0x8c573f4c,0xef35beb1,0x9564befc,0xd25f3ee2,0xed433f1c,0xa7f0c17c,0x80524050,0xe571c01b,0xb3ea3f5d,0xd64cbdbe,0xcbc9befa,0xc6b3eda,0x140f3f12,0x572cc174,0x3fa7408a,0x9618bfef,0x172e3f28,0x45bdbdb8,0x3e81bf3f,0x96203ee1,0xaa823f15,0x93d9c177,0xbc733fc0,0x38d7c026,0xa2843e94,0x93103e5f,0xfd09bf6e,0xdca03ed4,0xc54e3f0a,0x631c17b,0xacef400d,0xbf64c01c,0x92d73efb,0x3eec3e35,0xea1cbf5a,0x91793ed7,0xf9ba3f0d,0xe0a4c181,0xa8a03f09,0xb568c04c, 0xd8503f3c,0x539f3df1,0xe782bf2a,0xcbb43ece,0x86493f07,0xe3dec16f,0x5864401f,0xa67cc015,0x24993ce2,0xf4003e7d,0x7226bf77,0x9e6f3ed9,0x299c3f0e,0x9ab3c169,0x580c3fe6,0x653ac018,0x17d73e48,0x6363c66,0x2841bf7b,0xb99d3ed7,0xc88e3f0b,0xb3ffc16c,0x52a440ee,0x72ebc057,0xe1fe3f45,0xf0b2bf0f,0x487cbe98,0xa2e83ee0,0xa6513f25,0x3947c181,0x5e354067,0x5952c073,0x9fcb3f76,0xfed0be3d,0x29e5be4b,0xffb53ed3,0x9ad03f15,0xa7e1c17b,0x9e56409d,0x7f66c03d,0x1b9b3f6d,0xd0f4be80,0xd07dbe8d,0x1cbd3edb,0x4c183f1a,0xf028c182,0x88333fd8,0xaaaac04e,0x3cad3f70,0xef08bd9f,0xca7dbea9,0xc9103ed1,0xdfd03f0c,0xaaebc185,0x5537be00,0xa2a1c088,0x57523f76,0xd780bda5,0xcacdbe82,0xda453ec6,0xf19e3f06,0x1640c17d,0x270740b7,0xc3d6c09f, 0xb12b3f71,0x5cdcbea3,0x27f6bd9d,0x157b3ed1,0x47ef3f21,0xd0e7c182,0x849f408e,0x952ec0bb,0xc62d3f77,0xf78bbe7f,0x4fb1bd43,0x4a1b3ec8,0x26153f1d,0x1ab1c188,0x50a63e6b,0xf1b6c0bd,0x8e0d3f7a,0xbd76be0b,0x8b82be12,0x51263ebd,0x5613f0b,0xa238c185,0x6a364000,0x9b47c099,0x302b3f7a,0x7e97be15,0xf16fbe12,0xebbc3ec8,0x95e73f10,0x5e37c179,0x797440d0,0x46c5c0f2,0x307b3f6d,0xdc47bec0,0x9dcb3ba6,0x16983ec1,0x45573f29,0x36ebc17f,0xf9ae40ae,0x1b60c103,0xd7093f72,0x7043bea4,0x871abd34,0xba0a3eba,0x2bd03f25,0x8516c15d,0x5747402b,0xa293c013,0x8db3d85,0x75473e34,0x439abf7b,0x55153eda,0x246e3f0f,0x4badc170,0x47393f69,0x3c6ec01f,0x73db3efd,0x6d243cb0,0xfc65bf5e,0x1e693ed3,0x2bb53f08,0xd28dc180,0x1d6bc25,0x8722c051, 0x12fa3ef1,0x13493e69,0xd63dbf5a,0x92863ecc,0xb3c33f05,0x5a25c185,0x709bbf9c,0x1691c084,0xe62f3f5e,0x7b943d84,0xa0e4befc,0xf4f53ec4,0xef2b3f01,0xf688c188,0x6b68c024,0x193cc0a4,0x43383f6d,0x310e3d14,0x35b1bec0,0xe4ac3ebb,0x87303efb,0x12d7c189,0xed18bffa,0x5d3ac0b0,0xc42b3f7a,0x51fcbdb1,0x8134be42,0x4e6e3eba,0xc2923f01,0x323ac18c,0x8909c08d,0x6b7fc0d7,0xcd373f5f,0xeebb3d34,0x234fbef8,0xe9af3ead,0x3fb03ef1,0xf79dc188,0xaa13c06d,0x7a2dc0ac,0xc0be3f5c,0x7a6a3e26,0x4e8bbef6,0x11413eb6,0x770d3ef3,0x27afc189,0xa7b9c057,0x62fec0b0,0xb77d3f57,0x9b313e36,0xc786bf02,0x8ea43eb6,0x53d73ef6,0x4c30c184,0xf79fc04d,0xf2e1c08b,0x2043f5e,0xcfc83df9,0x7519bef3,0xc9253ebd,0xbcf13ef3,0x90a1c187,0x45bfc09a,0x121ac0b7, 0x36653f5c,0x4e113e53,0xf4d8beef,0xc01e3eb0,0xbb053eea,0xd499c183,0xb8a8c0d6,0xc5d1c0b5,0xc8133f5e,0x7ceb3e43,0xaa9fbee8,0x7d243eaa,0xcd793eda,0x52bdc17e,0x1a5fc0c1,0xf1cac088,0x603e3f66,0xaa313e34,0x3fbbec9,0x265b3eb5,0xe0b73edb,0x115bc174,0x211dc100,0xb586c069,0xe9833f6d,0x30a3e29,0xfd15beaa,0x34f43eb1,0x94e13ec8,0xa6f6c16f,0x2004c0e3,0x9ce7c008,0x121e3f70,0x15353e03,0xfeb5bea2,0x69593ebe,0x160e3eca,0x1a8bc167,0xed57c10c,0x932cbf8e,0x997c3f73,0xa3e73df0,0x769fbe91,0xc8ef3ec0,0x2de13eb8,0xd2a7c140,0x1ba4c133,0x64f34038,0x7c9c3f03,0x9fe63cc1,0x54b9bf5b,0x590c3ed5,0xbfa33e95,0xc4f1c144,0x822cc118,0x883f402b,0xb94f3f01,0xee5bd91,0x8937bf5c,0x7de53ed9,0x993f3ea4,0xa865c14f,0xe8fbc123,0x5c57400a, 0xe0813f3f,0xaf33bcb,0x5d89bf2a,0x800f3ed3,0x815b3ea0,0x3b1dc154,0xc13cc109,0xc8bd3fde,0xdd303f48,0x80cbd7b,0x753abf1e,0x23c83ed5,0x73c53eb0,0x6be3c15b,0x58acc116,0x144a3f74,0x7a413f6c,0x6c883d48,0x2008bec4,0xe6603ecd,0x1d5b3eab,0x127bc162,0xb229c0fa,0x3b7e3e06,0x76533f6c,0x3c763d22,0x47e5bec4,0x61fa3ecc,0xcd7d3ebc,0x73e4c14a,0xca9fc141,0x7dad4016,0x92e33f2b,0x56a3d9f,0x742abf3d,0xeed43ece,0xb2593e8f,0x5db7c13b,0x9f73c152,0xaa864037,0x7fdc3f08,0x70da3da8,0x3ed1bf57,0x119d3ece,0xe1643e85,0x8b35c145,0xa216c162,0x28194013,0x4f063f24,0xc9fb3dcb,0x72b9bf42,0xe24c3ec6,0x275f3e7c,0x90c5c138,0x1bebc16f,0xe8a4035,0xa7053f1c,0xba223d12,0xbd0abf4a,0x3dd13ec6,0x95e3e6b,0x2611c152,0x78d1c155,0xef7e3fd2, 0x9dc13f5b,0x49313da9,0xff22bf01,0xf5413ec4,0x632f3e87,0x3d10c156,0x5b53c134,0xc0a83fb8,0xb22c3f67,0x2d6e3d7d,0x92e6bed7,0x40b83eca,0x44713e9a,0x3c9ec15a,0xf234c14a,0x1283ec1,0xe7ad3f76,0xf6743d90,0x158be88,0x4a6b3ebe,0x7ee93e92,0x7785c15f,0xee0fc128,0xd6f9be1e,0xa6243f75,0xce5d3dc7,0x55d6be85,0x38433ec1,0x24ac3ea6,0x7782c162,0x985c13d,0xb410bfbf,0xb0b33f77,0xb3af3dd4,0xfaf8be6b,0xc5483eb2,0x34f73e9f,0x7cf4c12a,0xc62ec160,0x4d854060,0x87bb3f10,0x7424ba4f,0xd114bf53,0x76213ecf,0xb8163e76,0xa9d4c16a,0x1c32c11d,0xf6ac024,0xe92c3f74,0x80653e10,0x92a3be88,0x90c53eb2,0xeee3eb4,0xee94c16f,0xc87cc12f,0xdbd1c082,0x74743f6e,0x23ca3e16,0x460fbea8,0x3c6d3ea4,0xacd23eb0,0x7b49c156,0x9fe4c16e,0xc87d3f1d, 0xb6113f71,0x65f33d76,0xc244bea5,0x32ec3eb7,0xe6f93e7c,0x856fc164,0x818cc153,0x87b3c03d,0xed3a3f78,0x8e323dd7,0x6a83be5c,0x39eb3ea3,0xf8923e99,0x524ec173,0xa899c147,0xc4ec0a9,0xb03f3f5c,0x55fa3df5,0xdb0abefe,0x13ec3e97,0x53cf3ea8,0xbc43c181,0xc850c119,0xd298c0c8,0x11073f51,0x8fcc3df0,0x2c9dbf0f,0xe1873e9d,0x76013ec3,0x358bc184,0x4c2bc11d,0x7f38c0d2,0x3f533e89,0xd540be13,0xfee3bf73,0x16e33e9b,0x7d1a3ec3,0x447ec18b,0xa1d5c0eb,0xca98c0de,0x7d863e29,0x4e43bd0b,0x5e53bf7c,0x98293ea3,0x9abd3ed9,0xb242c17b,0x2bdcc10e,0x80e8c0a5,0x4d633f66,0x90063e30,0x816bbecc,0xcf033ea5,0x1dd3ec5,0xe55ac188,0x9948c0e6,0x1e87c0d6,0xdc133f40,0xd2103e18,0xfbdfbf24,0xdcf93ea3,0x8ede3ed9,0x57f1c18f,0xf545c094,0x3db7c0df, 0x1843e15,0x3be5bc82,0xcd14bf7d,0xf2393eab,0x7df73ef0,0x607cc18e,0x5849bfcf,0x49fec0e3,0x98eb3e22,0xadefbe01,0xadc5bf7a,0x898b3eb2,0x3d653f05,0x1954c18b,0x9fbabf9a,0xa0e6c0dc,0x4f073f69,0x8dfabe15,0x32cabec3,0xf04a3eb4,0x52f33f06,0x564bc187,0x5edb3fe5,0x4d58c0ef,0xb1063f6b,0x78aebe8b,0x6d33be91,0xc4f03eb7,0x685b3f14,0x3405c18a,0x14343fbb,0xdf37c0f4,0xab443e3b,0x2604bea2,0x6341bf6e,0xa0b63eb6,0x6c0e3f13,0xbb5c185,0xdce0408c,0x73ebc10e,0x24ba3db3,0x72d9bed6,0x71b4bf67,0x61d03eb4,0xd6653f22,0xf1bfc184,0x23944040,0x93dc0d6,0xa5ba3f7a,0x3fbcbe59,0x5b3ebcf2,0x96573ebf,0x51a63f18,0x601ac182,0x4b74092,0xa69bc10d,0xcd123f5d,0xaffabec0,0xe28fbea8,0x4ff3eb4,0x36193f23,0xe9ddc178,0xa21d40e9,0xedeec121, 0xfdf93f08,0x349fbecd,0xe9d1bf3e,0xfcf83eb1,0x9a273f30,0x1950c172,0xc8e740f3,0x628dc11c,0xeec93f55,0xf83ebef6,0x1440be89,0xac363eb4,0x2f8b3f31,0xd33cc165,0xe85a4118,0xf23bc128,0x2a873e74,0xf4febe96,0x4031bf6c,0x5cd13eb2,0x228d3f3b,0xd950c142,0xbf23c180,0x54b4400e,0xcc4f3f2c,0xc8603d61,0x33cebf3c,0x2a453ebe,0xde923e5c,0xd738c140,0x717ac18c,0xac114015,0xfc4b3f3f,0x9344bd9b,0x4d2fbf28,0xd0c83eb9,0x67473e41,0x4b37c136,0x9f51c183,0xdb9d403b,0x7e3e3f2e,0xc1b3bd11,0xe27abf3a,0xf03d3ec1,0x841f3e51,0xd043c14d,0x9a7cc177,0xbcc33fcf,0x47a73f49,0x9ead3dc7,0xc187bf1b,0x10343ebc,0xce9f3e6b,0xa296c149,0xb45fc197,0x73353feb,0x9abc3f4f,0x5403be14,0x7efebf11,0x4b883eb1,0x382a3e2e,0xc952c14a,0x6decc1a0,0x2b034012, 0x15933f4c,0xb3e2be97,0x51c6bf06,0x94643eb1,0x82ec3e17,0x59dec140,0xb270c196,0x268f4025,0x68c93f3b,0xd41bbe23,0x846bf29,0xb40b3eb7,0x7d183e2b,0x7bcdc13f,0x7b53c19e,0x3f2c403d,0x40663f3c,0x3f9be8f,0x5e24bf1e,0xb1c03eb6,0x2d983e17,0x14c1c134,0x18d7c195,0x14234055,0xca813f34,0x2bebbe25,0x8041bf31,0x203a3ebc,0x90ce3e29,0xeab0c154,0x167fc1ab,0x423400e,0x78f43f50,0x83f5bed6,0xe52abecf,0x507a3ead,0x8f583e00,0x7cb2c154,0xd274c1b2,0x94f404a,0x8b23f48,0x16cebf00,0xffd2bebf,0x110e3eb2,0xdb943dd7,0x3d52c149,0x9043c1ad,0x16974064,0xbd5f3f56,0x487abf01,0xd784be56,0xb7843eb6,0xa9d93de7,0x536bc149,0xb310c1a8,0xc6f2403a,0x7d553f3a,0x67bdbedb,0x4d05bf08,0x1213eb3,0x4af73e03,0xe89ec13f,0x10b6c1a3,0x4ab8405a, 0x14733f50,0x5f86bef4,0xd999beaa,0xeeaf3eb7,0xe2f13e08,0x5c0ec15f,0x3c32c1bd,0xeb8406e,0x1e173f4c,0xc353bf09,0xe768be8e,0xcbf33eb4,0xc4203da0,0x62e1c160,0x3a8ec1c1,0x40aa4097,0x3a333f63,0xa7a3beea,0x4891bd54,0x52b13ebb,0x3c873d81,0xb989c155,0x3a86c1b6,0xdbb34081,0xff853f57,0x2d49bf06,0x8462bdd6,0x99bf3eb8,0x66d73db8,0xd776c158,0x760ec1b7,0x96314093,0xbfd3f5c,0xd8a3bea6,0x286b3ec7,0xbb1f3ebd,0x853d3dab,0x837fc14c,0xf627c1ae,0xc95c4082,0xc7153f58,0x7f33bed9,0x38933ea3,0xdd9c3ebb,0xd6de3dda,0xd413c0d2,0xa1403e30,0xbd1e,0x828dbe13,0x6f1a3f1d,0x2696bf46,0x8ebd3eed,0x5fe13f00,0xf473c0d3,0xfda0be18,0x33bebe48,0x5c1ebc62,0xdcd4bcf3,0x1f4fbf7f,0xed033ee9,0xc3d93efe,0x7c39c10b,0x63c7bf06,0x336abe26, 0x327abc49,0xffaf3db3,0xf530bf7e,0x9e8c3ee3,0xf2323efb,0xd9f1c10b,0xe13be7a,0x4f193c3d,0xa788bdde,0xe3203f23,0xaa2bf42,0x64f93ee7,0xae2f3efd,0x9bd0c10c,0x1d3b3d4a,0x194d3ea8,0x1184bdec,0x74073f38,0x864dbf2f,0xc82e3eeb,0xb9053efe,0x968c12d,0xbb30bf0e,0x77ebbd27,0xf8f23b8f,0xe7a33f25,0xc860bf42,0xf5993ee2,0xeffc3efa,0x57c9c12e,0xb656be82,0xfabc3e87,0x4eb8bbb5,0xb7613f36,0x683cbf33,0x6f7a3ee6,0x29eb3efc,0x3c32c130,0x76de3d36,0x716b3f11,0xb50abd0a,0x2f13f58,0xe14cbf08,0xe95b3ee9,0xe09c3efd,0xd213c0d3,0x58b03eea,0xfa1c3e93,0xe04ebe24,0xee293f3b,0xeee9bf28,0x32a53ef2,0x6aeb3f01,0x608c10d,0xf55e3eb0,0xce0f3f24,0x2e38be04,0xa6c63f57,0xd502bf06,0x16053eef,0xea5b3f00,0xce36c0d4,0x2e303f3e,0xff6e3f1d, 0x1694be2b,0x22433f60,0x7011bee8,0xd7883ef8,0xfa183f01,0x4873c097,0x4ef03f56,0x78b73e5e,0xae94be2b,0x5ae03f47,0x985bbf1a,0xedbb3efd,0x60553f02,0x293dc10e,0x4fb3ee3,0x93e93f7c,0xea4cbe13,0x7b253f74,0x645a3e81,0xd0d03ef3,0x517e3eff,0x6c61c055,0xbf1a3f69,0xaeebbe00,0xfcccbe46,0x1b123ef8,0xefc8bf5a,0xd9883f01,0xe49d3f03,0xdef8c095,0xf1413f17,0xdd17bde3,0x46c8be1f,0xde273f18,0x9b39bf49,0x78c03ef6,0xf973f02,0x7dfec09a,0x86b13f8a,0xad673f0b,0x26dbbe19,0xd9a03f6d,0x49fbeb0,0x64393f02,0xd6d23f03,0x4fdfc09d,0xc8fc3f89,0x12c63f6d,0x526dbdb8,0xd18e3f62,0x67493eea,0xab8a3f04,0x598c3f02,0x6584c0d7,0xc02f3f4c,0xefed3f7a,0x3622be0f,0xdb493f6b,0xc6c53ebc,0x6b333efc,0x93a53f01,0x6003c0dc,0x435f3ec4,0x1a363fb6, 0x213ebda3,0xb1523f20,0x20433f46,0xb7073eff,0x876e3efd,0xe17ec06b,0x63ed3f97,0xd5a13f01,0x624cbe98,0xfe603f6a,0x7de9be89,0xe6f73f07,0x6c723f03,0x3f79c060,0x91323f86,0x680c3e42,0x1cbabeaf,0xe6d83f47,0xecb7bf06,0xdfc23f04,0x9e53f03,0x2f9dc04c,0x90433fbe,0x7cfd3e23,0xb625bf28,0x4b2be89,0x87cabf34,0xcad13f08,0x80d83f05,0x7bc4c059,0x2043fb0,0x14583f81,0x2e8cbf58,0x4e38bece,0x88ce3eb5,0xd3d43f0e,0xd3fa3f03,0x2ea5c05c,0x47633fbf,0xb0c93ee3,0xd2edbf56,0x2881bef2,0x8f50be89,0x523b3f09,0x5eb53f05,0xa42bc081,0xa1f53f24,0xdf1b3fb1,0x5f17be47,0x40d43f28,0xdeec3f3a,0x39b3f0a,0xe2693f00,0x54dac076,0x36a03f8f,0x761e3f62,0x6dcebe49,0x976e3f5e,0x81283ee8,0xf1ed3f09,0x1883f02,0xd90ac0a5,0x64243f0d,0xd85a3fb6, 0xeff6bd36,0x3a223f19,0x76253f4c,0x25e53f05,0xb4983eff,0xeaac0ab,0xbd5abe59,0xbf943fef,0x7c7fbda4,0x28713ee0,0x7daf3f65,0x38e3f05,0x3ff73ef7,0x2813c03b,0x189c3fbe,0x142dbe02,0x964be94,0x9bbdbdd5,0x4b0ebf73,0x4cc73f07,0x80d83f06,0x7bc4c059,0x2043fb0,0x14583f81,0x2e8cbf58,0x4e38bece,0x88ce3eb5,0xd3d43f0e,0x69b73f03,0x1498c131,0x7faa3e1f,0xa6623f64,0xa89dbde8,0x5a983f79,0xc5b93e42,0xb4893eec,0xd2b53efd,0xea64c14f,0xb5893d2e,0xe2993f18,0x9214bdd1,0x1eec3f6e,0x939a3eb2,0xd1813ee7,0x2f8b3efd,0xd33cc165,0xe85a4118,0xf23bc128,0x2a873e74,0xf4febe96,0x4031bf6c,0x5cd13eb2,0x1c993f3b,0x2f98c162,0x9ad34111,0xa02dc124,0x5b1e3ee4,0x7a68bf33,0x413ebf0e,0xd8233eb2,0xdad23f38,0x3443c16c,0x6cc54101,0xd8b7c114, 0xd0503f5b,0x123abf01,0x8e7abd96,0xc8b43eb8,0x23123f32,0x7438c157,0xd227411e,0xf389c127,0x6313f25,0x859dbeeb,0x624abf1b,0xbd343eb1,0x25843f3c,0xa5f5c157,0xc4cd4133,0xd2bbc12b,0x4c0f3d82,0x5041bd12,0xea70bf7f,0xd58d3eb3,0x9c193f42,0xbb94c148,0xcb054148,0xf9c2c128,0x79123ed2,0xf6c9be02,0xa00ebf66,0x200c3eb7,0xce583f48,0x3627c158,0x7eb2414a,0x100ac129,0xf224bdf0,0x34613db6,0x2d51bf7d,0x9a893eba,0x36193f48,0xe9ddc178,0xa21d40e9,0xedeec121,0xfdf93f08,0x349fbecd,0xe9d1bf3e,0xfcf83eb1,0x22173f30,0x4a73c169,0xab8f4122,0x8f9ec129,0x31a9bdeb,0xfd69bd49,0x74dabf7d,0xf99c3eb4,0x3f733f3d,0x93b5c16e,0x965f4127,0xc5aac128,0xa7abe64,0x57fb3d1a,0xce79bf79,0x44703eb6,0xa3ed3f3f,0xb775c148,0xeecb4164,0xb9f8c127, 0x423b3d2d,0xbde33db7,0x7d78bf7e,0x7f6b3ebe,0xd4653f4f,0xf22fc134,0xf0544176,0x9ac3c123,0xb4e43e82,0x871c3ba2,0x7393bf77,0xe9643ec2,0x986a3f53,0xd0dec14b,0x50dd4170,0xad79c125,0x8d04be48,0x669b3e82,0xf7d3bf72,0x6fd63ec2,0xc3ba3f52,0xe64fc161,0xa05c4157,0xeddec123,0xe44beaf,0x1ec63e6b,0xb41bf69,0x9b783ec1,0xb8a93f4b,0x32cac15c,0xb2264154,0x6a9c126,0xd290bea2,0xdb8c3e43,0x33f0bf6d,0xf5883ebe,0x32f3f4a,0xac66c137,0x34d24181,0xf24cc122,0xd082baf9,0x54c43e98,0xc69bbf74,0x77d3ec6,0xe9153f57,0xf8fac13a,0x9c554183,0x743c11e,0x6341be2d,0x9e603f01,0x4af1bf58,0xdba13eca,0x33b3f57,0xf914c150,0xd0a04174,0xfbaec121,0xc1f5beae,0x83523ebb,0x2670bf5d,0x28953ec6,0x6e0a3f53,0x2166c154,0x4d7f4179,0x2c8ac11e, 0x940abf0a,0x52b13f06,0x2d56bf28,0xe1113ec9,0x1d723f53,0xdac0c11b,0x205c4188,0x35efc11b,0xeccd3dc8,0x3a7a3e9d,0x5b29bf72,0x109d3ecc,0x6c0e3f5a,0xbb5c185,0xdce0408c,0x73ebc10e,0x24ba3db3,0x72d9bed6,0x71b4bf67,0x61d03eb4,0x42233f22,0x440dc17e,0x9d7440ea,0xb3b8c122,0x8ddabd6a,0x28b6be74,0x7c7cbf78,0x25893eb2,0x43143f31,0x734dc182,0x966640ef,0xe14ac121,0xb31abe7e,0x5f6fbe27,0x5b08bf74,0xb9fa3eb4,0xf2333f31,0xc6b7c173,0x936d412a,0x7d12c126,0x4751be94,0x9c73dad,0x27d4bf74,0xe63f3eb9,0xa4f13f3f,0xfb05c179,0x8d47412d,0x859dc124,0xc52bbee7,0x724d3e27,0x649dbf60,0x881e3ebb,0xcec63f40,0x9b4bc166,0x8a94415b,0x54fcc120,0x62cabf07,0x8a883ea7,0xbff9bf48,0x41683ec3,0x8eb33f4c,0x2031c16a,0x58a8415b,0x8a4c11c, 0x5a61bf60,0xfc3c3ef7,0xed073cdf,0xa97e3ec5,0x3edc3f4b,0xd25cc158,0xd1c4175,0x5cf4c11a,0x15c3bf1d,0x3efb3ef3,0xdd373f21,0x86623eca,0x97993f52,0xc82dc142,0xd6f14183,0x36bbc116,0xb9d5bee1,0x98873ed1,0xf9123f4c,0xe5153ece,0x97993f56,0xc82dc142,0xd6f14183,0x36bbc116,0xb9d5bee1,0x98873ed1,0xf9123f4c,0xe5153ece,0xcef93f56,0x462ac13e,0x3a04186,0x801bc11b,0x5d3cbeea,0xbb63f49,0xa101bed4,0xb0183ecd,0x3dd33f58,0xed88c122,0xda90418d,0x54bfc113,0x57c2bea9,0x28d43f5c,0x3b2ebec6,0xf77b3ed4,0xe1af3f5b,0x8168417c,0x9d28c1d5,0xae540b9,0x1f7a3e81,0x3ee3bf4a,0x58abf0f,0xf56a3fbc,0xdad93c55,0xa3b74175,0x4b47c1d2,0xab0740aa,0x23d2bec9,0x9e89bf3e,0xa3cfbf0a,0x457c3fbc,0x3afb3cb7,0xd7d4176,0xb7d8c1cb,0x4d134083, 0x36b9bed0,0x3177bf46,0xbe34bef8,0xbd0a3fbd,0x62263d3e,0x976e417d,0xd88cc1cd,0xaacf4093,0xc043e98,0xe2cebf49,0xde9bf0a,0xab473fbd,0x6ee63d1a,0x352e4181,0x1616c1cd,0x7614409e,0x23283f0b,0x1980bf2e,0x7864befb,0xcec43fbc,0x980a3d14,0xcae417a,0xca5cc1c7,0xa96d4046,0x4d9c3e34,0xb670bf5a,0xac8ebefb,0xa72a3fbe,0x97dc3d7d,0x7bcb4173,0x87e4c1c4,0xdf24028,0xf889bf0d,0x52dabf40,0x55d6beb7,0x88943fbf,0x175b3d90,0x561f416f,0x1e4fc1bc,0xc1f73f6e,0x7c3abf36,0x6ff0bf1b,0x203abeb2,0x93473fc1,0x30d93dcb,0x25964181,0x4eecc1d5,0xd3e340c3,0x839a3f02,0xd6cfbf37,0x778ebef2,0x98313fbb,0x5443c3f,0x364417e,0xf83cc1d8,0xe95e40d4,0xf59fbee9,0x8d9abf2f,0xfcd63f10,0x76c53fba,0xf3a13af7,0xc9564183,0x4bec1d4,0xa54f40cd, 0x6c223f4f,0xe851bf05,0xed46be87,0x3af73fba,0x92833c29,0x581d4178,0x6f28c1d8,0x352a40cb,0xe137bf28,0xcbf2bf3f,0x89ce3da4,0xc2f03fbb,0x51ad3b56,0x32664182,0x5552c1d3,0x52f040d9,0x45653f0a,0xc7c33eaf,0x55753f44,0xc8193fba,0xbf763c33,0xae6e4181,0x8394c1d7,0x3b1d40de,0xc8cc3d8d,0x337dbe87,0x73b43f76,0x126f3fba,0x32f63a03,0xd1d04184,0x5e40c1cc,0x797140a8,0xf823f4e,0xa766beef,0xe5fbbeb9,0xf1353fbb,0x7d23d0e,0xab134180,0x6a98c1c6,0xa32c405b,0xd4f53f07,0x3023bf36,0x130abeea,0xb4a23fbe,0xceaa3d77,0x47254182,0x3733c1c6,0x4a7a4070,0x6ecf3f4e,0xfd56beef,0x7bafbeb9,0xc10d3fbd,0x19623d71,0xe38a417b,0xa4c2c1be,0x7abe3fca,0x5e813f01,0x369dbf32,0xaa6bf02,0x58e23fc0,0xab043db7,0xb2a04184,0xc9d4c1c9,0xa7e40a8, 0xc8d73f6d,0x9e2d3eac,0xa5873e2d,0x39eb3fbb,0x79d33d29,0x5e784184,0xc248c1d1,0xca1340cd,0x86263f52,0x3e2b3eb7,0xa2983ee1,0xa7f43fba,0x84133c8d,0xd6cd4180,0x8b28c1c7,0x7e4540bc,0xaf73f33,0x25963f0c,0xd2b33eea,0x924b3fba,0xaac03d27,0x349b4175,0x1ff3c1bf,0x77c3fa4,0x4ae83dee,0x68a5bf55,0xa02cbf0a,0x4b553fc0,0xc1b73dba,0x62a5416f,0xd0afc1b3,0x3f90bf53,0xc3f1bd84,0x7672bf37,0xa8fcbf31,0x67993fc2,0xc4163e05,0x108a4172,0x8553c1c0,0x805340bf,0x4a5b3ec7,0x27663f04,0x56c53f43,0x674d3fba,0xdb733d67,0xcfd417e,0x71e7c1cd,0x36a840d4,0xe7db3ee1,0xbcfe3eed,0x2efd3f44,0xa3013fba,0x5c4d3ccb,0x2a0d4183,0x188bc1c3,0x17104072,0x3c013f75,0x34f03e93,0x35a03cdc,0xc0333fbd,0x11ce3d85,0x43474181,0xfd76c1bb,0xaa0f3ffe, 0xd5633f7b,0xfa5a3e3a,0x1338bc8c,0xfd3b3fbf,0x54c33dc0,0x8f734180,0x9cfac1be,0xae083ff1,0x5b023f4f,0x7210bede,0x7647bec8,0x666f3fbf,0xa68d3db4,0x10d5417a,0x45d8c1b3,0xc6bcbea9,0xd1a63f53,0xac39beaf,0x9d3dbee3,0x89123fc1,0x1d3e3e02,0x3ad54175,0x8cd6c1b3,0x2a3bf14,0xa23d3efd,0x675bf19,0x22d5bf21,0xf8553fc2,0x7cf73e03,0x4e7e4170,0x2f5ac1a2,0x66abc016,0x5f0e3edb,0x8010befa,0x5ac0bf42,0xad793fc3,0xd8f73e34,0x9cf5417e,0xf712c1ba,0xdf09404d,0x4bf03f58,0xc4713ef7,0x90543e62,0x52ce3fbd,0x580d3db2,0x8132c17c,0xe41dc1d5,0x981740bc,0xa4fbe83,0xc7febf4a,0x88b9bf0e,0xf56a3ebf,0xfa273c55,0x5862c177,0xa329c1d8,0x452f40ce,0xf10b3f28,0xdb55bf3f,0xe9293d9b,0xc2f03ec1,0x64fb3b56,0x382c17d,0x3fafc1d8,0x3be40d8, 0xe1b43eec,0xca8ebf2f,0x92143f0f,0x76c53ec4,0xe8003af7,0x252fc180,0xa9edc1d5,0xb9f640c6,0x6c4abf03,0x2a45bf37,0x439abef1,0x98313ec2,0x35783c3f,0x3484c181,0x755ac1cd,0x807840a1,0xfe6abf0c,0x2b73bf2d,0x49d8bef9,0xcec43ebd,0xa6bf3d14,0xc8c8c183,0x7375c1d4,0x215440d0,0x560bbf50,0x419abf05,0xddd7be85,0x3af73ec4,0x6b5a3c29,0xae6dc181,0xde4ec1d7,0xda0640e1,0xa265bd7c,0x58f6be87,0x1aa03f76,0x126f3ec7,0xffb63a03,0x324cc181,0xb4c4c1d3,0xce1140dc,0x63eabf08,0xd01e3eaf,0xa80d3f45,0xc8193ec7,0xf7ce3c33,0x973ac17c,0x214fc1cd,0x3cf04097,0xf4c8be9b,0x4dbcbf48,0x4b99bf0a,0xab473eba,0xdc253d1a,0xe4fc175,0xdf1cc1cb,0x83a64086,0x88233ecd,0x7f0fbf46,0xac21bef9,0xbd0a3eb6,0x55d63d3e,0xce9c17a,0x418dc1c7,0x3128404d, 0x2a48be3a,0x2ee5bf5a,0xa3b1befb,0xa72a3eb1,0xe4af3d7d,0x573ec16e,0x4374c1bc,0x41423f83,0xe7433f35,0x9976bf1c,0x6d87beb3,0x93473ea3,0x5a9f3dcb,0x7d12c173,0xbca9c1c4,0xc3bf402e,0x7fe43f0b,0x9b7bf41,0xeebbbeb9,0x88943ead,0x5df43d90,0xa44bc175,0x737cc1d2,0xfb3140ad,0x55183ec6,0x52f7bf3e,0x6a7fbf0b,0x457c3ebc,0xf5413cb7,0xd0c4c183,0xd380c1cc,0x345f40ab,0xb24ebf4f,0xd8d7beee,0x2731beb6,0xf1353ec0,0xa4f33d0e,0x45bfc182,0x168bc1c6,0x5a524077,0xb9f9bf4f,0x7009beed,0x1190beb7,0xc10d3eb8,0xc4dd3d71,0xaa75c17f,0x163cc1c6,0xefd94062,0x6064bf08,0x93dcbf36,0xea07bee8,0xb4a23eb4,0x6c293d77,0xb19ec184,0x41c8c1c9,0x982140ac,0xac45bf6c,0xb6fd3ead,0x64633e33,0x39eb3ec1,0x2ca33d29,0x5e00c184,0x33a4c1d1,0xfada40d1, 0xab6abf51,0x21433eb7,0x3f9a3ee4,0xa7f43ec6,0x3e083c8d,0xd6d9c180,0xdd64c1c7,0x8ab040bf,0x54a8bf32,0x5b5c3f0c,0x5ae23eec,0x924b3ec5,0xe6ec3d27,0xe2e9c17a,0xbb8cc1be,0xfba23fd7,0x9376bf02,0xcb03bf31,0xe450bf01,0x58e23ea9,0x7f773db7,0x34f7c175,0xc8dec1bf,0x26983fb0,0xb15bdfb,0x6e30bf55,0x733fbf0a,0x4b553ea6,0x81fc3dba,0x6214c16f,0xd5aec1b3,0x9539bf3a,0xc5193d70,0x9745bf37,0xd495bf31,0x67993e99,0x3b963e05,0xd3fc17e,0xbac5c1cd,0x73a40d7,0x17d5bede,0x95bb3eee,0x59c93f45,0xa3013ec8,0x311f3ccb,0x11a9c172,0x9debc1c0,0x28e140c2,0x9c8bbec4,0xc8283f04,0x9e9d3f43,0x674d3ec7,0x38053d67,0x8debc180,0x1fb4c1be,0x12443fff,0xfc77bf51,0x5b8cbeda,0x3b2abec6,0x666f3ead,0xebbc3db4,0x4165c180,0x5055c1bb,0x31f84006, 0x1387bf7b,0x9f8d3e45,0x67f5bc45,0xfd3b3eaf,0x2e543dc0,0x287dc183,0x232c1c3,0xacbf4079,0xa35bbf74,0x18bf3e95,0x7fa63d08,0xc0333eb9,0x74de3d85,0x9c69c17e,0x98fec1ba,0xf87d4054,0xc71ebf57,0x9fa43ef9,0x9e7c3e65,0x52ce3eb7,0x8a3e3db2,0xa4e3c173,0x7c33c1b5,0x5c9d4083,0xf24abf4a,0x43aa3f04,0x9c283ea6,0x4c9d3ebd,0x4b1c3dbc,0x1cb6c180,0xc63bc1c1,0x75744098,0x985cbf43,0x4d093f10,0x83383ea0,0xe6043ebf,0xcee53d81,0xb5fdc173,0xeee9c1bb,0xa9cb40a9,0x6973bf3a,0x13443f0e,0xed523ecc,0x4b163ec3,0x11593d91,0xc790c126,0x9181418b,0xcd1fc10f,0xa1fbbeda,0x52d53ed5,0xdc403f4d,0x584f3ed5,0xbfa63f5a,0x3e40c106,0xa694193,0x5d59c107,0xe141bee1,0x8b203ef4,0xfc113f42,0x5e8d3edf,0x6b853f5d,0x3a58c12a,0xf5024180,0x31ec109, 0x918bbeea,0x91c93ebf,0x8c333f4e,0x8e8f3ed3,0xf1503f53,0xda7c102,0xeafe4195,0xe175c10b,0x9243bea1,0x46353f55,0xb2f6bee7,0xe05d3edd,0x2fcf3f5e,0x4905c0ff,0x96614192,0xcd2ec10f,0x1568bd93,0xac3a3f07,0x36a4bf58,0xce3a3ed9,0x40513f5d,0x2d64c0ca,0x4d9d419d,0x15ffc106,0xddbbee4,0xfb383f58,0x9e2cbe98,0x93e23eea,0xada03f62,0x6200c11e,0x7baf418b,0x326ac117,0xfd3cbd6b,0x81a63f0d,0x6983bf54,0x2b43ed0,0x7b723f5b,0x55f4c0bd,0xde644197,0x27b1c10d,0xb78b3d40,0x17233e41,0x7ea2bf7b,0x4c6a3edf,0x7d093f60,0x8b4ec0f8,0x4785418f,0x972c113,0x9c383d9f,0x357f3e8d,0x61fabf75,0xc07b3ed4,0xe2d43f5c,0x2da4c08e,0xdbef41a3,0xa612c106,0x1c2ebe93,0x8c2f3eed,0xdd27bf56,0xd4e93ef6,0xdddd3f65,0x3f7ac0c3,0x142b419a,0x33c5c10a, 0x478dbe1c,0x91bb3ef4,0x5369bf5d,0x6ebd3ee5,0xd5aa3f61,0x6441c03d,0x7db841aa,0x3801c10a,0x2e0ebe43,0x5c203dae,0xed52bf7a,0x13c23f03,0x5903f6a,0x4561c089,0xed9741a0,0x264c10a,0x55aebc9e,0x578a3de5,0xef7cbf7e,0xbb3d3eef,0x77d63f64,0x3fe1c10b,0x73524188,0xc6ebc0ff,0x54c9bee2,0x6eee3ed8,0x76ea3f4a,0xb0853ede,0x2a543f56,0xa3fcc0da,0xbaf7418c,0x4f3ec0e9,0x2e72bec2,0x71933edd,0x66b23f51,0xd09e3eec,0x6c0b3f57,0x831ac0d1,0xf39419a,0x21a8c100,0x1af1bed5,0x578a3f00,0x7e673f42,0x764b3eed,0x37ec3f60,0xc534c111,0x5675416f,0x5159c0df,0xd709bedf,0x22cb3f10,0xda623f33,0x2bfa3edf,0xed633f4c,0xef3fc09a,0xfea041a1,0x5359c0f5,0xfee8bec9,0x86e33ee8,0xa6c3f4c,0xd9dc3f00,0xc01e3f63,0x1928c094,0xcd0441a6,0xa6c6c102, 0x3a13bf16,0x8d8b3f4c,0xf1e5be06,0xf0ae3efc,0x1ae73f66,0x9d5bc051,0x33cb41af,0xab94c101,0xfba4bf2f,0xf4503f37,0x14873de5,0xd5783f0b,0x783a3f6b,0xfbbac047,0xd48941ac,0xec3dc105,0xb608bf02,0xe23a3eda,0xcea7bf3e,0xf1673f07,0xca63f6a,0x5d4abffe,0xce0441b8,0x3383c109,0x7102bf42,0x4afe3eb4,0x5bd5bf0c,0x740c3f17,0xaa763f71,0x17bf6c,0x34c641c4,0xa2efc11b,0x8165bf0e,0x8e713c50,0x138cbf54,0x97c43f27,0x7b813f79,0x2684bff0,0x13c941b6,0x9b55c10f,0x47c9befe,0xee1c3d0c,0x39b0bf5d,0xdb6a3f13,0x8b5d3f70,0x5d1bf7a,0x988141c6,0xc174c115,0x31c0bf4f,0xc9ef3ecf,0x3bc9bed7,0xc7c3f2b,0x2a6b3f7a,0x6bd2bd0b,0x784241cd,0xc0d9c11d,0xa2ffbb06,0xb67a3f45,0x9abfbf22,0xde223f4f,0x36653f7e,0x1609bf84,0x4fa41c8,0xb46ac110, 0x8a98bf0a,0xe2fe3f2b,0x4fec3f01,0x87c23f2e,0x831b3f7a,0x8b74401d,0x5866c108,0x6d04411a,0x28783f05,0xf7b5bf56,0xb0683e2c,0x317b3f79,0x8cbd3e94,0xf6f94002,0xe1d1c10b,0x503f412b,0x5d463f1b,0xe653bf4b,0xf5383cf0,0x79033f6d,0xe9fb3e8e,0x258c3fcb,0xdd21c116,0x66154118,0x29363f45,0xf856bf17,0x13663e73,0x45c83f6c,0xdfb53e8d,0x67574011,0x14bbc10d,0x4f7d410d,0x95093f12,0xc754bf36,0x4cad3ecf,0x8d193f7c,0x2a303e94,0x130404d,0xd5e1c10e,0xe4f74102,0x72163ea2,0x6803bf33,0xc17b3f23,0x7f913f89,0x7dc83e96,0xf7ca4018,0x1ddc117,0x53bd4101,0xcdfa3f0c,0x4d57bf0c,0x62d83f21,0x98af3f83,0x3fba3e91,0x92634085,0x2b20c104,0xc6d54107,0x26583e9b,0xf3bdbf55,0xefd43eec,0x8ef73f8e,0xc2a43e9a,0x9554404c,0xbac103,0x5c124114, 0xf51b3ea3,0x938bbf68,0x24b3e87,0x3e423f84,0xc5b3e98,0x73393ff2,0x187dc11f,0x9cac4101,0x71a93f25,0x3144beef,0x26963f1a,0x96c83f7d,0x8c823e8d,0x6c94042,0x57e2c126,0x225640e7,0x6f53ebe,0xffcabe3c,0x4c773f68,0xd063f91,0xa00e3e8d,0x9e564049,0xdd66c11b,0xac5940ef,0x15083e87,0x496dbf09,0xe6323f4d,0xa8483f8e,0xe3583e91,0x8d6c3fa8,0xbe4ec12e,0xa5c44101,0x870f3f14,0xad90be8f,0x4dc63f43,0x63ed3f71,0x18403e85,0x29fa408e,0x4f14c120,0xc53c40e1,0x236f3e77,0x5ed8bed5,0xfd9c3f60,0xd5a63f9b,0xdd873e90,0xf1814089,0xa778c10f,0x492440f5,0x59c3e9f,0x9a8fbf12,0x3b2a3f42,0x3b643f95,0xbc7d3e97,0x36ae40b0,0x82f3c10b,0xe1040eb,0xbbae3eb8,0xe29abf08,0xd4ed3f43,0xdeca3f9c,0xa3773e9a,0x3d363f85,0x46a8c120,0x97f64122, 0xa3443f36,0xfb3abf25,0xd4893e89,0xcc853f60,0x76713e85,0xafbd3f07,0x68e7c123,0x21dc4125,0x39c23e92,0x1d96bf64,0xb6cc3eb4,0x44803f57,0x65153e83,0x815a409a,0x3605c0fb,0x2ce0410a,0x6cc53ee3,0xd5d5bf47,0x9ecf3ee2,0x83a53f91,0x1263e9d,0xc0c44048,0xe88c102,0x1cc412b,0x949f3efe,0x6d25bf5a,0xbb283e21,0x8f7a3f7d,0x52593e93,0x919240b8,0x3b86c0e8,0xc85a410a,0xef293f17,0xfd25bf23,0xaf6c3ef9,0x8d653f95,0xec73ea2,0xff094078,0xf342c0f4,0x8f284130,0x1c4e3f1d,0x1945bf38,0x85013ea5,0xa5b53f82,0x24f23e96,0xf3a83ff7,0x89c1c106,0xa0654155,0x33d73f29,0x36e2bf18,0xe0443ee9,0xe2c53f64,0x262d3e87,0x62564087,0xe95ac0e0,0x16554132,0x23b43f49,0xd1efbd5e,0xad003f1d,0xb5393f83,0xbe123e9b,0xfa913f27,0xa77fc112,0x1c14415a, 0xf4ed3eaa,0xd2b1bf55,0x35503edf,0x57f33f56,0x22033e80,0x28993fca,0x2bfbc10f,0x357a414e,0x943f19,0x8892bf44,0xe9f23e71,0x25cc3f61,0x19e33e85,0x34604039,0x2e62c132,0x102d40ea,0x133ebc,0x6a913e27,0x6d763f6a,0x3c973f91,0xfdd63e86,0xb00e408f,0xd96ac134,0xcffa40dc,0x54fa3e6a,0x8d513e64,0x572a3f72,0x601c3fa0,0xecc03e86,0x5a1e4090,0xba1bc12a,0x96ba40d9,0x926a3e5e,0xae17bdc3,0x72de3f78,0x3d253f9f,0x72823e8c,0x20fc402e,0x742ac145,0xbe9240f6,0x81693e97,0x7dae3e83,0x77bc3f6b,0x8bc63f90,0x1f583e75,0xe71840bb,0xe2d4c12c,0x3caa40d1,0xe97b3e4f,0x6e283d3a,0x28f63f7a,0xbbe83fa6,0x7da23e8b,0xfb5140b6,0xd85ac11e,0xb02140d6,0xfc863e98,0x11ddbe98,0x2ee03f68,0x9d623fa3,0x89ab3e92,0x5a5640e3,0x812c11a,0xabe540c9, 0x5cf23ec0,0xfc51bdbe,0x4f4c3f6b,0x9af63fa8,0x312f3e96,0xfa8ebf12,0xb7bec112,0x3077415a,0x49bbbe9a,0x7e00bf55,0x600f3eed,0x57f33f49,0xed633e80,0x911fbfbf,0x9d93c10f,0xe7f2414f,0xbffebf15,0xa994bf41,0xfa1a3e94,0xa4f43f3f,0x6e5d3e84,0x6ff7bf8e,0x12bcc117,0xa5ab4143,0x5e31bf08,0x4f2fbf52,0x847b3e4c,0x3a693f42,0xb27d3e83,0x62dbc043,0x839fc104,0x65db4130,0x546ebf0d,0xa16cbf4d,0x2f233e68,0x8bd63f2f,0x89653e91,0xdcbbfec,0xe06c107,0xc0934156,0x6aebbf2a,0x29b6bf0b,0xc3053f02,0xc2873f3d,0x164c3e87,0x89acbf33,0x26d5c10a,0x4e674163,0xe207bed0,0xb9dbefb,0x8df33f45,0xf9873f48,0xad3a3e82,0x98f0bf53,0x6943c0fa,0x94c04166,0x5406bed1,0x34f13d50,0xbcf53f69,0x51613f47,0x330d3e89,0x1d253d34,0x1977c10a,0x7b114164, 0x21ca3b3b,0x5c7ebeef,0x9ad03f62,0xfb5d3f4f,0xdf263e82,0xbe123d2c,0x40d4c112,0xd3aa415b,0x5a223ad1,0xbc33bf5e,0x9ad03efd,0x57f33f4f,0x82993e80,0x89ac3f49,0x1320c10a,0xd4de4163,0x96153ed6,0x61acbefb,0x23363f43,0xf9873f57,0x6fb53e82,0x98f03f6a,0x522bc0fa,0x843d4166,0x6eb43ed5,0x5b3a3d43,0x13983f68,0x51613f58,0x3c0c3e89,0x53e13d37,0xc3d7c0f9,0x7fbf4167,0x88e73b53,0x59fa3d91,0x9ad03f7f,0x58753f4f,0x54e73e89,0xe5883d32,0xd7f4c0d4,0xfb804161,0x41ad3b32,0x17ca3f09,0x9ad03f58,0x62a23f4f,0x65343e94,0x505b400b,0xc10c0f5,0x4b094158,0x50913f33,0x8f1ebcfc,0xc3ca3f36,0xe3323f66,0xceee3e8d,0xf95400e,0x1071c0d4,0x5f714152,0x4a23f13,0x1563ef7,0x429a3f29,0x17983f67,0xb7023e98,0x80153f7a,0x16d0c0d6,0xee1b4160, 0x7d7c3eb2,0xe6d63f01,0xaaeb3f49,0x562e3f58,0x89ca3e94,0xc2ff3f6a,0x134cc0a8,0x3849414c,0x4b003ea4,0x991b3f2d,0x8ebd3f29,0xfe9b3f58,0x8ebd3ea4,0xd01ac073,0xa1dac0f5,0xdcac4132,0x33d7bf2a,0x5333bf22,0xb7673ec8,0x24bc3f2a,0x6603e96,0x505bc006,0x44afc0f5,0xf6654158,0x630bf31,0xef40bcb9,0x69733f37,0xe3323f3c,0xdee83e8d,0x6256c084,0x585ac0e0,0xc4114133,0x7eb8bf47,0xdff9bd05,0x53583f1f,0xb5393f29,0x66e23e9b,0xc622c0b6,0x2556c0e8,0xbde1410b,0xefc4bf1e,0x25a3bf1b,0xb9f13efd,0x6d263f17,0x99bb3ea2,0xf97c009,0x4a80c0d4,0x5c9a4152,0xe936bf12,0xeba83ef6,0x11a13f29,0x17983f3c,0x7efa3e98,0xc2ffbf56,0x2a89c0a8,0xcc9414c,0x49a5bea2,0x1fdd3f2d,0x531e3f2a,0xfe9b3f47,0x999e3ea4,0x8015bf64,0x2fa1c0d6,0x5bdb4160, 0x7c56beb0,0x78293f01,0x3b003f4a,0x562e3f47,0x7cf63e94,0x755c3d0d,0x5d15c074,0xbd824135,0x7e2e3b0b,0xc4453f40,0x9ad03f28,0x79463f4f,0xd6493eb6,0xbeb3d21,0xedd9c0a7,0x4e44414d,0x4a813b17,0xbaf73f33,0x9ad03f36,0xcc33f4f,0x950c3ea5,0x5256c098,0xfdeec0fc,0xb443410b,0x2e73bf04,0x53b3bf3d,0xe88a3edc,0x2cd3f1b,0x87383e9d,0xe2ccc083,0xbc9dc105,0x85a7410b,0x7a7fbee1,0xc2aebf48,0x2f233ee0,0xefbb3f1f,0xfed23e98,0x368bc0ae,0xa626c10b,0x7f0b40ec,0xda97becb,0x359dbf09,0x65f93f3e,0xdeca3f10,0x42933e9a,0x9959c165,0x23f2c19e,0x934fc013,0x962f3f6c,0x9422be5c,0xf49bea1,0xee5b3e93,0x85a63e3c,0x37ec169,0x4bd7c1b0,0x4214bf57,0xee3c3f5c,0xfab3bed1,0xa5f0be9a,0x61703e98,0xe0833e0d,0x4c94c16f,0xd2fec1a2,0x866dc00f, 0xd7a9bedc,0xfdd6bef7,0x30f0bf42,0xad793e95,0x92ab3e34,0x49ddc16a,0xc287c1a2,0xa7f9c01b,0xf9b63ea2,0x43abf0a,0x2ee4bf47,0x5253e92,0xf1023e36,0x2fcec168,0xc5c5c18e,0x16cac073,0xf9bd3ec7,0x6020bec8,0x1fbcbf55,0xb8e93e8f,0xda4b3e6a,0x39c4c174,0xbad4c1b3,0xfa5cbef5,0x772abeff,0xf689bf18,0x2aa6bf20,0xf8553e9d,0x61553e03,0xf7ac17a,0x2afac1b3,0x1a35be69,0x15a0bf55,0x538ebeab,0x6ccabee2,0x89123ea0,0x45563e02,0x46c9c16e,0xeb3ec18e,0xa122c06a,0x6d4ebeac,0x8e28bedf,0xd367bf55,0x8dce3e91,0x69ea3e69,0x4cbdc175,0xb168c1a2,0x68b3c003,0x234ebf57,0x6858be87,0x2a56bef1,0x56113e98,0xe0233e33,0x55e9c173,0x78e6c18e,0xd341c061,0x680ebf50,0x25e4be94,0x9386bf00,0x62b23e94,0x807e3e68,0x2ff5c172,0x2b8c172,0x8dbdc09c, 0x5b46be95,0xb94ebec2,0x54c5bf60,0xadf33e92,0xcb2d3e8f,0x9b93c177,0xafa7c19e,0xc011bfcf,0xd07cbf7f,0x5b5f3d34,0x63673a9f,0x201d3e9d,0x39f63e38,0x7b1dc17c,0xcce6c1af,0x302a3d36,0xcb00bf7d,0xd60d3e14,0x24c4bcdd,0x3e423ea4,0x870c3e08,0x149ac176,0xa78fc1a5,0xa4a23eb5,0x80eebf74,0x2b2f3e62,0x1a113e47,0x3b923ea9,0x50443e1c,0xfed1c179,0xd419c14b,0xb48ac0b3,0xcca33eab,0x170fbe30,0x1da8bf6d,0xb7cc3e96,0xcf43ea6,0x493c16d,0x7b4ec172,0xbcd2c09f,0x99283ed3,0x5247be6e,0xdf5dbf61,0x26cc3e8f,0xd9dd3e90,0x8c2c17a,0xe9e2c1b2,0x805f3fe5,0xa2a7bf63,0xdfbd3ece,0x75da3e5e,0xa6873eaf,0x836e3dec,0x4333c16f,0xd003c1a5,0x28bc3fd6,0x9fdcbf65,0x775d3e96,0x7cc43eab,0x6a663eb1,0xd7383e12,0xd265c171,0x55f8c1ae,0x65494034, 0x875bbf55,0x12763eec,0x9ad43e9b,0xccf33eb6,0xc8663deb,0xfb57c164,0xb435c1a1,0x2a5e4042,0x57aabf5e,0x2ddc3ea4,0x71b93ec2,0xb2ab3ebb,0x3fec3e0f,0x44dac178,0x1dc9c172,0x847fc098,0xae32bf48,0x5440beb6,0xe24cbf02,0x34f83e94,0x99743e8f,0x833ac17b,0xf88ec16c,0xb117c087,0x688cbf7a,0x4393be28,0x85663df2,0x7c853e9a,0xdc5f3e90,0xf69cc176,0x8f86c18a,0xc68ec041,0x3d06bf7f,0xb784bd13,0x5d073caf,0xa8d3e9a,0x7f803e6c,0xf2e4c182,0x33b3c14b,0xedd5c0ad,0x3aa4bf42,0x3956bed0,0xa800bf01,0x3b43e9a,0x38a3ea6,0xfeedc17f,0xa14dc14b,0x5ebac0b0,0xc104be83,0x555abeb4,0x5ea2bf66,0x5dc03e98,0x74b33ea6,0xe532c187,0xbd73c11c,0x4177c0ce,0xd81bbe96,0xf642bea1,0x323cbf66,0xdd9c3e9e,0x76013ec2,0x358bc184,0x4c2bc11d,0x7f38c0d2, 0x3f533e89,0xd540be13,0xfee3bf73,0x16e33e9b,0x7d1a3ec3,0x447ec18b,0xa1d5c0eb,0xca98c0de,0x7d863e29,0x4e43bd0b,0x5e53bf7c,0x98293ea3,0x9aff3ed9,0xbf70c18e,0x22bec0e9,0x835bc0da,0x9438beb6,0x7c19be27,0x9be5bf6b,0x81383ea5,0xc8f03ed9,0x219dc192,0x1bfc092,0xb282c0db,0x540dbeb2,0x8538bd58,0xf6babf6f,0xfda03ead,0xc9cc3ef0,0x237fc191,0x6c7dc0e8,0x8271c0d5,0xdc37bf45,0x1974be7c,0xd2c8bf16,0x6a273ea7,0x7df73ed9,0x607cc18e,0x5849bfcf,0x49fec0e3,0x98eb3e22,0xadefbe01,0xadc5bf7a,0x898b3eb2,0x8ede3f05,0x57f1c18f,0xf545c094,0x3db7c0df,0x1843e15,0x3be5bc82,0xcd14bf7d,0xf2393eab,0x90a23ef0,0x924fc18a,0x2225c11c,0xd6ccc0cb,0xc9d0bf41,0x3510bec4,0x5c89bf07,0xa4553ea0,0xee1e3ec2,0x58e2c18b,0xb392c118,0xe807c0bb, 0xafe2bf6f,0x2248be88,0xc48b3e66,0x2ebe3ea4,0x14153ec3,0x36fc184,0x5ea4c147,0xb9ec09d,0x1ba9bf71,0x60e2be7b,0xb3d93e6c,0xe3f83e9f,0xb1d43ea6,0xeeb0c182,0x855ec12e,0x524c065,0xb2a5bf6f,0x1db4be39,0x9a133e9e,0x1113eac,0xd4033eaf,0x6877c191,0x7ca6bfc6,0x75e4c0df,0x82bebe99,0x5fa6bda3,0x825abf73,0x9fd33eb4,0x85f3f05,0xbf83c196,0xa52fc08f,0x8c8cc0d5,0x6dcebf3d,0xfb2bbd9a,0x1fdabf2a,0x9073eb0,0x2af93ef1,0xe9e6c195,0x5046bfbc,0xd83dc0db,0xe900bf36,0x1dd8bc92,0x5259bf33,0xb62c3eb6,0xdc9a3f05,0x4c21c198,0x9f2ac084,0x915ec0c1,0xc15bf7e,0xa272bd9f,0x6ef03d92,0xde6a3eb5,0xf9333ef1,0x1e4c192,0x1034c0e1,0xd71fc0c6,0x478fbf6d,0x6cafbe8a,0xc05d3e81,0x9c9d3eab,0x18e73ed9,0xebdfc190,0x9f06c0ce,0x652ac0a1, 0x6c2fbf61,0xe7edbe70,0x5ac93ed2,0x61e13eb3,0xb17f3eda,0x54e8c189,0xab13c10c,0x5f31c094,0x87ddbf67,0x7838be5f,0xeaee3ebc,0x40ab3ead,0x1053ec5,0x9abc186,0xcdc4c0f8,0x265bc03f,0xfc6ebf6b,0x161ebe43,0x73713eb1,0x16483eba,0xcaf53ec8,0xf8adc18d,0xb5d03fc4,0x46dec0f1,0x6b3cbe74,0x2ca0be80,0xe8cdbf70,0xd30b3eb7,0x685b3f13,0x3405c18a,0x14343fbb,0xdf37c0f4,0xab443e3b,0x2604bea2,0x6341bf6e,0xa0b63eb6,0xbc903f13,0xb09fc188,0xb7f408f,0xbd51c10e,0x3edbe55,0x91f1beaf,0x286bf6a,0xc7a83eb6,0xd103f22,0x5a25c18c,0x349c4093,0xa871c10d,0x645dbf1f,0xac09be39,0x81c7bf42,0x2d6f3eb7,0x1fb13f23,0x29bc193,0x2d41400a,0x3360c0e0,0x4fffbf78,0xde253dcd,0xf634be64,0x7d8d3ebd,0x2dca3f15,0xf3bac191,0x36d03fce,0xff96c0ef, 0x676dbf2f,0xfb1fbdd5,0x628dbf37,0x5603eb9,0xda1b3f14,0xa7a0c196,0x9c82bf69,0xbcd1c0ca,0x6050bf7c,0x448d3dbe,0x269ebe04,0x30623ebb,0xcee13f07,0x8c69c14d,0x31adbd16,0x27623e90,0x3f143e36,0x92613f60,0x35a8bee5,0x42393ee5,0xb2453efe,0x3d7dc132,0x8ee3bddf,0xc46b3fa1,0x7cfcbe16,0xc7ad3f26,0xb1e63f3e,0x222d3eee,0xc65d3efa,0x77d5c10f,0xcd1c3e1e,0xe90b3faf,0xcceabdd5,0xb50f3f29,0xaea33f3d,0xf7063ef5,0xc49c3efb,0x3954c111,0x25ffbec5,0xf30b3fd9,0xb7b5bdac,0x63903ebf,0x38863f6c,0x34b93ef6,0x64fe3ef6,0x3deec0e2,0xce0cbe94,0xe9b23fe6,0x4c4abd79,0x8a263ec1,0x587d3f6c,0x9ea13eff,0x99fa3ef6,0x6966c0e6,0x8d43bf81,0xc903ffc,0x4cd6bd98,0x8603e8f,0x4bf13f75,0xdae83efd,0xad13eef,0x758ec152,0x9735be91,0x60713f73, 0x7b0fbe75,0xe7593f1b,0xf4513f41,0xc4113ee8,0x5b733ef9,0xb2eec154,0xbd94bf57,0x86423f9b,0x24debe9c,0x8fc43e9e,0x2363f66,0xdf63ee9,0x5f293ef4,0x1527c134,0x78c4bf1d,0x8c173fc7,0x626bbe15,0x7c4c3eba,0x2c523f6b,0xc5763eef,0xcd4d3ef4,0xd291c168,0x18fcbe7c,0x9ce43e9b,0x8fa7bee9,0xec4c3efe,0x62633f3c,0x68663ee3,0xcbf53efc,0x9b07c136,0xcdf2bf9c,0xb6823fd4,0x79b6be21,0xe5a93e6a,0xbc663f75,0x31b13eed,0x82993eef,0xeb4fc114,0x5843bf84,0x13a13feb,0x1e62bdac,0xfc653e87,0x8b003f75,0x1f973ef4,0x64293ef0,0x70efc117,0xfdf8bff1,0x2b244004,0xb698bdc7,0x35a53ed1,0x7af3f68,0x8853ef3,0xa5153ee8,0x282cc164,0x4e2b3e5c,0x92acbc35,0x3139bdf3,0xdc2c3f56,0xc4d63f08,0xbbc33ee2,0x2b6a3f00,0x203ec174,0x28cc3f20,0xbb82bf52, 0x60f9bee6,0x4d623ec0,0x23293f4f,0xeec43ede,0x14e43f03,0xa3cfc0ae,0x3598bf76,0x84214007,0x3a3bbe0b,0x14de3ea9,0xb9aa3f6f,0xbe983f04,0x38b03eef,0xf0d4c0e8,0xb214bfe9,0xdcb8400d,0x7b0bbdb6,0xdcd63ed8,0xfa2b3f66,0x6293efb,0xa53c3ee8,0x7132c0ab,0x4589bfdd,0xdf37401a,0x268bbe64,0x75233ef1,0xddc63f5a,0x23213f04,0x34983ee8,0xc212c087,0x77eebf37,0x23d24013,0x5fabeda,0x154b3ef0,0x68553f46,0x259a3f0c,0x473b3ef1,0x5033c0e6,0x9addc032,0x7e704033,0xd619be05,0xd21b3f0b,0x5b423f53,0xbaf53efe,0xdaee3edd,0x317fc085,0x4014bd1b,0x33103ff3,0xfc77be8a,0x12b03f0f,0xc7e73f48,0x63bf3f0b,0x81a63ef8,0x9a0fc056,0x2863ead,0x5201400b,0xa75bf35,0xa703efd,0xaafc3f01,0xa1f93f14,0x243e3efa,0x5be6c056,0xf6d73f4f,0x83fe3fc8, 0xf4b0bf24,0x4aab3f0e,0x9c6b3f06,0x65e93f11,0x5643f00,0x6567c037,0xae793f9b,0x123e400e,0x19a1bf67,0x540d3e80,0x1aef3eb3,0xf29d3f1c,0x760c3f00,0x3eb4c0c3,0x51c24058,0x59b03eba,0xe227bebb,0x1be6bf6d,0xd80a3d52,0x87623f02,0x40903f0d,0xfa2bc0be,0x7282405a,0x376b3d5b,0x4564be6b,0xd0ddbf55,0x89bebf00,0x43243f01,0x65a53f0e,0x13fc08a,0x46d0401c,0xc3373e9e,0x15b7bf03,0x434fbf3c,0xc27abee2,0x98d03f06,0x28fa3f09,0x264ac092,0x2978401f,0x28403f29,0xdf5abf18,0xf7dcbf4d,0x61313b56,0x2eb63f08,0x53c83f09,0xcd68c09a,0x1e9b4033,0x6c2e3fa2,0xc4a4bf0f,0x1f9bf3f,0x202e3eb5,0x7bfa3f0c,0x9e53f09,0x2f9dc04c,0x90433fbe,0x7cfd3e23,0xb625bf28,0x4b2be89,0x87cabf34,0xcad13f08,0xd3fa3f05,0x2ea5c05c,0x47633fbf,0xb0c93ee3, 0xd2edbf56,0x2881bef2,0x8f50be89,0x523b3f09,0xe5d83f05,0xc001c0c8,0x912a4064,0x20e53f68,0x1bc4bec7,0x6785bf57,0xea143ec1,0x653d3f05,0xc55a3f0d,0x30a9c102,0xb4e407e,0x3e883ece,0x44b8be62,0xa022bf52,0x640a3f06,0xfc3efe,0xbca93f10,0xff7ac0d0,0x3dc04084,0xb59c3fd5,0x71d4bed0,0x63f3bf35,0x43dd3f13,0x88be3f0a,0x92033f0e,0xa8efc122,0xb5c8406a,0x813bef1,0x5e453dd7,0xcbd4bf74,0x583a3e8e,0x44af3eef,0xe5b83f10,0x7647c100,0xf71a4071,0x57a7bd66,0x9e9fbdc6,0xf1debf7c,0x800a3e04,0xf8663ef9,0x583d3f0f,0xf76ec124,0xa2a14079,0x88e5bdea,0xa6bfbcfe,0x226bbf38,0xf9a93f31,0xa7723ef2,0x543b3f10,0x2f8ec106,0x1a2e4091,0xb8a3f84,0x17f3be8b,0xe5dbf35,0xb2293f27,0x4c983f02,0xf363f11,0x70dac128,0xe7b8408f,0xe7d53eb9, 0xdd49bdf1,0x2f22bf22,0x31053f43,0x44b73ef8,0x5613f12,0xf1ccc10d,0xdfdb40b1,0x66ac3fed,0x2242bea6,0x85d5bf10,0xe1df3f42,0x33e83f06,0x629e3f14,0xec3ec145,0x6c0d4051,0x8660bf01,0xb90f3d8e,0xe2b9bf15,0x27283f4e,0xb0963eea,0xe5713f0e,0xb057c0a3,0x5db74061,0x18d64006,0xbaf5bf04,0xce73bf2d,0x26313f05,0x10cb3f11,0xff373f0b,0xbef9c080,0x7742403b,0xcba44022,0x23c9bf0c,0x85c9bf21,0xb19a3f0c,0xbf2f3f18,0x68e43f07,0x669dc071,0xca5c4008,0xc4dc3fd7,0x4ae3bf18,0xb8eebf2c,0x53613edf,0xd6283f13,0xcf813f05,0x328bc045,0x89e3fff,0xe3e64018,0x5e5dbf1d,0x62ecbf21,0xf7fd3ef1,0x4a73f1c,0xdd533f04,0x4456c0af,0x7bb34098,0xca6a4048,0xab0bbef6,0x3f41bf0f,0x91323f2c,0x7d893f16,0x27423f0e,0xbe47c0dd,0x5cee40a8,0x177d4027, 0x962bed2,0xb150bf15,0x2f883f33,0x9e303f0f,0xbb973f11,0x4da1c0e8,0x6f2640d6,0x3fe84055,0x79aabedd,0x4293be96,0xdfa43f5a,0x6b2f3f12,0x432d3f16,0x7b70c034,0x80e93fd4,0x92174016,0x12aebf54,0xcfacbea9,0x939f3ee5,0xa25e3f1e,0x5f73f02,0xf362c00b,0xfeda400a,0x13a24076,0x4e3cbf30,0x64fbd8a,0x74f33f39,0x21753f2e,0xccc43f02,0x76f3c045,0x18d2402a,0x6ea5404c,0x255dbf1f,0x1194bf0b,0xfc593f10,0x6e593f22,0xead93f05,0x89d7c04d,0xf8104076,0x91324080,0x6f98bee4,0xb2c4bee7,0xb17d3f45,0x2bc3f27,0xe4c53f09,0xf5f3c08a,0x94964086,0x9a6c4063,0xe45ebef8,0x44f6bf09,0x9683f30,0x6bd33f1e,0xbe5e3f0b,0xd641c091,0xccee40b7,0x73ad408b,0x5428bed0,0x378be9e,0x34553f5c,0x7f993f22,0xfd263f10,0x6c2f4054,0xd0913f69,0x11f5be16, 0xf7283e41,0x6d473ef8,0x1b69bf5a,0xd9883fa9,0xeba23f03,0x2813403a,0x77533fbe,0xec09be15,0x96d3e90,0x151fbdd5,0xe0fcbf74,0x4cc73fa4,0xd3e13f06,0x2f83404b,0x731d3fbe,0x51d73e0e,0xb6283f27,0x1adfbe89,0xd830bf35,0xcad13fa3,0x39863f05,0x3f794060,0x57823f86,0xaec73e2b,0x1a7f3ead,0x788f3f47,0xcc68bf07,0xdfc23fa6,0xdf5d3f03,0x48734097,0xd8d33f56,0x87263e3e,0xa8e33e27,0xa7743f47,0x65b2bf1a,0xedbb3fab,0x75e23f02,0xe187406b,0x97293f97,0xf4523ef6,0x61813e97,0xfba83f6a,0xb6d0be8a,0xe6f73fa4,0xbbf93f03,0x2ea5405c,0xd9553fbf,0x3dfe3ed7,0xd3233f56,0xeef0bef2,0xf7b1be8b,0x523b3fa2,0xa4a93f05,0x7bab4059,0x625f3fb0,0xa9553f7c,0x2eb73f58,0x8149bece,0x871a3eb2,0xd3c33f9e,0xa0b43f03,0xd34a40d2,0x961c3e30,0xf3e6bda6, 0x70b63e0d,0xb8013f1d,0xc7e3bf46,0x8ebd3fb0,0xb6f63f00,0xdec64095,0xfd7e3f17,0xb60bbe10,0x412e3e1a,0x22913f18,0xca6dbf4a,0x78af3fad,0xc1d53f02,0xd18d40d3,0xd4f63eea,0xa9993e7a,0xd4cd3e20,0x3d6a3f3b,0xfc1ebf29,0x32a53fae,0x9a573f01,0xa327410c,0x1213d4a,0x109c3e8b,0xfb093de3,0xbb3f3f37,0x44aabf2f,0xc82e3fb1,0xe1ce3efe,0xce0340d4,0x28cc3f3e,0x3e83f12,0xff33e29,0xc7d63f60,0x2dd3bee8,0xd7883fad,0xe3583f01,0x4fdf409d,0x9ce03f89,0x31203f65,0x52623dbe,0x83a73f62,0x35c23eea,0xab8a3fa7,0x7743f02,0x7e07409a,0x8d3f3f8a,0x6a913f03,0x258d3e17,0x5d3e3f6d,0xb9ebeb1,0x64393fa9,0xf8e83f03,0x54da4076,0xd2633f8f,0x7b0a3f5b,0x6dd33e4c,0xee803f5e,0x3e23ee7,0xf1ed3fa3,0x84a53f02,0xa46e4081,0x48283f24,0xb71f3fae, 0x5f4f3e4c,0xec623f28,0xd46b3f39,0x39b3fa1,0xa4a93f00,0x7bab4059,0x625f3fb0,0xa9553f7c,0x2eb73f58,0x8149bece,0x871a3eb2,0xd3c33f9e,0xcec13f03,0xce68410b,0xfae3be7a,0x6b4abd37,0x873e3dd4,0x2a4d3f23,0x9271bf43,0x64f93fb2,0x94753efd,0x7675410b,0x25cbf06,0x9b6bbe60,0x71043bc3,0x5983db2,0x6fd2bf7f,0x9e8c3fb3,0x199e3efb,0xf47340d3,0xbba1be18,0x9e20be74,0x80d83bf2,0xe13fbcf3,0xf951bf7f,0xed033fb1,0xd4333efe,0x5333412e,0x1583be82,0xbcee3e47,0x43953a81,0xc4113f36,0xc0b5bf33,0x6f7a3fb2,0x878b3efc,0xfd26412d,0xbe8cbf0d,0xb673bde2,0xe91ebc17,0xf23f3f25,0xc276bf42,0xf5993fb3,0x65723efa,0x5c4410d,0x511a3eb0,0x4a2a3f16,0x1fa33e01,0xf4b83f57,0xf61bbf06,0x16053faf,0x21d33f00,0x32c24130,0x72543d36,0x73a23efe, 0xb4803cf8,0x11883f58,0xc11ebf08,0xe95b3fb1,0x68443efd,0x28fa410e,0x47493ee3,0x1d8f3f6d,0xf08e3e15,0xdaa73f74,0xd6e43e80,0xd0af3fae,0x65a83eff,0x655240d7,0x99f63f4c,0x5e613f6f,0x34703e12,0x6bfe3f6b,0xaf9f3ebc,0x6b333fab,0xb2743f01,0x5f7c40dc,0x8d653ec4,0x57663fb0,0x20b63dad,0x8f0f3f20,0xd99d3f46,0xb7073faa,0xf1283efd,0xeaa40ab,0x4ad3be59,0xabd23feb,0x7e8f3db0,0x4663ee0,0x58793f65,0x38e3fa6,0x271e3ef7,0xd90a40a5,0x1e3f3f0d,0xf4d3fb2,0xefd93d4c,0x261e3f19,0x5e9a3f4c,0x25e53fa6,0x83ae3eff,0x5c184056,0x30b13f4f,0x61943fc6,0xf4b73f25,0x39623f0e,0xa05a3f05,0x65f93f9b,0xaae73f00,0x65884037,0x7ebb3f9b,0xa589400d,0x19aa3f67,0x55863e80,0x172f3eb0,0xf29d3f91,0xd2353f00,0x343c416b,0xf4464101,0xf69ac115, 0xd053bf5b,0xb00abf01,0x6345bd8a,0xc8b43fbd,0xf93d3f32,0x2f984160,0x10754111,0x774fc126,0x5b04bee6,0xbc48bf33,0x9004bf0d,0xd8233fbe,0x5093f38,0xd33c4164,0x630c4118,0x12dac12a,0x2a7ebe7b,0x8e4cbe96,0x9036bf6c,0x5cd13fbe,0xfa713f3b,0x743f4155,0x3599411e,0xf449c129,0x62bbf26,0x71dfbeeb,0xb88dbf1a,0xbd343fbe,0xf6593f3c,0xa5f54155,0x283b4133,0x811c12d,0x4aa7bd90,0x33d0bd12,0x4218bf7f,0xd58d3fbe,0xa2ee3f42,0x36274157,0xe4e1414a,0xf374c12a,0xf23b3de2,0x64ba3db6,0x13adbf7d,0x9a893fbd,0x71f13f48,0xbb944147,0x16624148,0x3140c12a,0xefccbed5,0x7937be01,0x9097bf66,0x200c3fbd,0x7b303f48,0xb7754147,0x3a364164,0x9460c129,0x22b9bd44,0xada13db7,0x3b04bf7e,0x7f6b3fbc,0xf64e3f4f,0x4a744167,0x2ccb4122,0x67b4c12b, 0x31753dde,0x2cd6bd49,0x2880bf7e,0xf99c3fbe,0x178a3f3d,0xe9e44177,0x3c6140e9,0x284cc123,0xfdf9bf0a,0x50c2becd,0x9ff1bf3d,0xfcf83fbe,0x156d3f30,0x93b5416d,0x20154127,0x4fafc12a,0x9a43e5e,0xb56b3d1a,0xb82cbf79,0x44703fbd,0x73ff3f3f,0xd0df414a,0xa1304170,0x1b4ac126,0xb9863e43,0xa9583e82,0x5233bf72,0x6fd63fbb,0x91de3f52,0x32ca415b,0x1ed64154,0xf075c128,0xd1643e9e,0x60c03e43,0x49aabf6e,0xf5883fbc,0xa1fe3f4a,0xe65d4160,0x15734157,0xe83ec125,0xdcd3eac,0xaf553e6b,0xb739bf69,0x9b893fbb,0xb25b3f4b,0x35a4133,0x221b4177,0x8e0dc125,0xa6e7be82,0x86673c1f,0x6d7fbf77,0xeec43fbb,0xe4073f53,0xac664135,0x63114181,0x541c123,0xd8d6bb35,0x2b253e99,0x85a1bf74,0x77d3fba,0xcfdd3f57,0xf8fa4139,0xd10e4183,0x6a82c11f, 0x631d3e27,0xe4fb3f01,0xc2e3bf58,0xdba13fb9,0xe4973f57,0xf91b414e,0x284d4174,0x1bf6c123,0xc1c93eac,0x13463ebb,0xa7adbf5e,0x28a63fba,0x55303f53,0x216d4153,0xac834179,0x1526c11f,0x94433f09,0x365b3f06,0x150bf29,0xe1113fba,0xbbb13f53,0x462a413d,0x3ed34186,0x201fc11c,0x5d6c3ee9,0x8dbf3f49,0x4cdbed5,0xb0183fb9,0x8b353f58,0xc82a4141,0x186a4183,0xdb68c118,0xb9e13ee3,0xdcdf3ed1,0xb6a63f4b,0xe5153fb8,0xa2b3f56,0xdac0411a,0x20704188,0x131fc11c,0x9480bdc8,0x75833ea2,0x4df9bf71,0x109d3fb9,0xa05e3f5a,0x6204411d,0x81b0418b,0x2ecbc118,0xfcea3d55,0x99143f0d,0x61fabf54,0x2b43fb8,0x368e3f5b,0xed8b4121,0xe67f418d,0xc2ac114,0x57ec3ea8,0x3f0e3f5c,0x7c03bec7,0xf77b3fb7,0x2fc93f5b,0x490840fd,0x68ee4192,0x93d4c110, 0x154c3d88,0xc9c03f07,0x43febf58,0xce4a3fb6,0x8b353f5d,0xc82a4141,0x186a4183,0xdb68c118,0xb9e13ee3,0xdcdf3ed1,0xb6a63f4b,0xe5153fb8,0x2d093f56,0xd2634157,0x72784175,0x6739c11b,0x15dd3f1e,0x39653ef3,0xa2b63f20,0x86623fb9,0x78fb3f52,0x20324169,0xdc52415b,0x130dc11d,0x5a553f60,0x95d03ef7,0xb3d53cb1,0xa97e3fba,0xd35d3f4b,0x94944159,0xbed54163,0x2219c115,0xd8093ed1,0x9f243ec1,0xcbf73f54,0x58e3fb9,0xb21f3f4d,0x9b4b4165,0x804415b,0x8afc122,0x63423f06,0x69203ea7,0x28b7bf49,0x41683fbb,0x818c3f4c,0xfb054178,0x29e7412d,0x9ce9c126,0xc52f3ee4,0x30d23e27,0xd752bf61,0x881e3fbc,0xcb7b3f40,0xc6b74172,0x2697412a,0x5357c128,0x45ff3e91,0x83893dad,0x45fabf74,0xe63f3fbd,0x70d03f3f,0x8b4e40f6,0x147e418f,0x13f0c114, 0xd0fdbd9a,0x95a3e95,0x72bdbf74,0xc07b3fb7,0x81753f5c,0x55f440bb,0x7a854197,0x322dc10e,0x88a0bd3d,0x75bc3e4e,0xa5dfbf7a,0x4c6a3fb4,0xf0673f60,0x3f7a40c1,0xb59b419a,0x75f9c10a,0x47223e16,0xd1613ef4,0xf0fbf5d,0x6ebd3fb3,0x5f553f61,0x2d6740c8,0xf45e419d,0x1756c106,0xdd83ee3,0x74503f58,0x89cebe9a,0x93e23fb1,0x543f62,0x2da3408d,0x518541a3,0xddf1c107,0x1bbd3e90,0x5893eed,0xb4ccbf57,0xd4e93fad,0x159a3f65,0x455d4087,0x5e4541a0,0x58e7c10b,0xd5793c88,0x37b23dee,0xee13bf7e,0xbb3d3faf,0xf91a3f64,0x643d4039,0xcb8741aa,0x5cb8c10a,0xa9c03e2b,0xb2163d95,0x9557bf7b,0x13c23fa7,0xeb073f6a,0x19284092,0x477741a6,0x6e17c103,0x3a1a3f16,0x75133f4c,0xa0a5be0a,0xf0ae3fab,0xf75c3f66,0xda74101,0xc31a4195,0x61d1c10c, 0x92713ea0,0x503c3f55,0x1eb8bee8,0xe05d3fb5,0xcdc13f5e,0x3e414105,0xe8d84193,0xe0b0c107,0xe12f3ee3,0xcf703ef4,0x848c3f41,0x5e8d3fb4,0x321c3f5d,0xef434099,0xfddd41a1,0xf7e0c0f6,0xfeeb3ecb,0xdf093ee8,0x81c33f4b,0xd9ec3faa,0x9fb63f63,0x831a40cf,0xbbf0419a,0xa454c100,0x1ade3ed7,0xa6083f00,0xadc53f41,0x764b3fb0,0x830a3f60,0xa3f840d8,0x22fd418c,0x41ac0eb,0x2e6a3ec5,0xcf853edd,0x20c3f50,0xd09e3fb1,0xba803f57,0xfbba4043,0x265e41ac,0xaf2bc106,0xb59b3f01,0xba513eda,0x73a3bf3f,0xf1673fa4,0x7bc43f6a,0x9d5b404d,0x89a541af,0xda3fc101,0xfba93f2f,0xda843f37,0xa5553ddc,0xd5783fa1,0x5d423f6b,0x5d4d3ff6,0x1d741b8,0x4a0fc10a,0x70f23f41,0x8bfb3eb4,0xf299bf0d,0x740c3f95,0x11283f71,0xc7904125,0xa3c8418b,0x7448c110, 0xa2153edd,0x9c753ed5,0x17833f4c,0x584f3fb7,0x92093f5a,0x3fdd410a,0x9ff24188,0x645bc100,0x54ca3ee5,0xb2053ed8,0xeb793f49,0xb0853fb4,0x749a3f56,0x3a584129,0xe864180,0xae49c10b,0x918b3eec,0xced83ebf,0xa5b93f4d,0x8e8f3fb7,0x6cb23f53,0xc5354110,0x3644416f,0xa1a5c0e1,0xd70b3ee1,0x68dc3f10,0x8d863f32,0x2bfa3fb4,0x86593f4c,0x26843fe8,0x44c241b6,0x5084c10f,0xfb113eef,0x48e33c69,0xfdcbf62,0xdb6a3f9a,0x7ff13f70,0x173f5b,0x4c6441c4,0x5958c11b,0xc90b3f0b,0xc00d3aea,0xdee8bf56,0x97c43f85,0xf57b3f79,0x5d13f69,0xb19641c6,0xd93c115,0x31e03f4f,0x791b3ecf,0xd189beda,0xc7c3f81,0x6aa13f7a,0x16093f78,0x1f8641c8,0x8accc110,0x8a983f0b,0xfc903f2b,0xe1093f00,0x87c23f7d,0x19f03f7a,0xa3bb4002,0xcbf741ba,0x8654c104, 0xb8ef3f3c,0x966c3f1e,0x8fb83e8a,0x16723f92,0x9d803f72,0x254c4007,0x1c9541b3,0x65fec0f5,0xfc5d3e2e,0x99af3ed0,0x3fb83f65,0xf2d03f91,0xd3e13f6c,0x2f83404b,0x731d3fbe,0x51d73e0e,0xb6283f27,0x1adfbe89,0xd830bf35,0xcad13fa3,0xeba23f05,0x2813403a,0x77533fbe,0xec09be15,0x96d3e90,0x151fbdd5,0xe0fcbf74,0x4cc73fa4,0x35db3f06,0xff5c4076,0xa4cf402a,0x4253be3d,0x643b3e4f,0xdcf5beaf,0xdcd7bf6a,0x6dfc3fa5,0x525d3f0b,0x13b408a,0xf36b401c,0x7203e8f,0x15b43f03,0xf69cbf3c,0x5172bee3,0x98d03fa5,0xbbf93f09,0x2ea5405c,0xd9553fbf,0x3dfe3ed7,0xd3233f56,0xeef0bef2,0xf7b1be8b,0x523b3fa2,0x284a3f05,0x26574092,0x9839401f,0x28e23f21,0xdf4f3f18,0x6845bf4d,0xf8c2ba13,0x2eb63fa3,0x732a3f09,0xcd79409a,0x1f864033,0x15a3f9e, 0xc49f3f10,0x25dfbf3f,0xb7f63eb3,0x7bfa3fa0,0x655a3f09,0x3eaf40c3,0x15a94058,0x84283ea6,0xe2273ebb,0x6a86bf6d,0x6b613d48,0x87623fa8,0x1f733f0d,0xfa2b40be,0xa919405a,0xe05c3c77,0x45553e67,0x31b7bf55,0x67cbbf01,0x43243fa9,0xd4783f0e,0x669d4071,0xa9d64008,0x7d733fd4,0x4abd3f19,0xbdc1bf2c,0xf6ba3edd,0xd6283f99,0x846f3f05,0x32944046,0xc05d3fff,0xaafb4016,0x5e533f1e,0x56a6bf21,0x32ec3eef,0x4a73f90,0x62263f04,0xbf0a4081,0xcb32403b,0xb3b04020,0x23c03f0d,0x9bd2bf21,0x97963f0b,0xbf2f3f94,0xf5a53f07,0x7b894034,0x55b03fd4,0x4f374015,0x13043f55,0xe3bbea9,0x89763ee3,0xa25e3f8e,0x58863f02,0xf362400c,0x1772400a,0x452b4076,0x4e1d3f31,0xe1a9bd8a,0x9d343f37,0x21753f7d,0xd7f13f02,0x76ff4046,0xd042402a,0x5c8b404a, 0x25443f20,0x8aebf0b,0xffc53f0f,0x6e593f89,0x4f2f3f05,0x89e7404f,0x4cea4076,0x1f134080,0x6f9b3ee7,0xf45abee7,0x424e3f44,0x2bc3f85,0x30ec3f09,0xb05740a4,0x3e2d4061,0xf5c44004,0xbaf43f04,0xf2eebf2d,0x11993f04,0x10cb3f9c,0xf1fe3f0b,0xc00140c8,0x2a5e4064,0x60233f5e,0x1bb43ec8,0x1cf9bf57,0x1933ec0,0x653d3fa6,0xf0eb3f0d,0xff8240d0,0xd5dc4084,0x9cbc3fcf,0x71d63ed2,0xb64fbf35,0x5bc03f12,0x88be3fa2,0xbdd93f0e,0x30a94102,0xf7b1407e,0xb95c3eb2,0x44af3e65,0x41c5bf52,0x1d7a3f06,0xfc3fab,0x5f813f10,0x445d40b0,0x34224098,0x3b94046,0xab0c3ef9,0x71efbf0f,0xbef93f2b,0x7d893f96,0x7d973f0e,0xf5f9408b,0xc7694086,0xe1284061,0xe4583efa,0x7618bf09,0x18653f2f,0x6bd33f8f,0x823f3f0b,0xd6504092,0xdad740b7,0x4b8a408a, 0x54323ed3,0x559dbe9e,0xcc713f5b,0x7f993f8a,0xd2113f10,0x76474100,0x36d24071,0xf96bdde,0x9e953dc8,0x4defbf7c,0xd1e93e04,0xf8663fac,0x73293f0f,0xa8ef4122,0xae3e406a,0x53d5bf09,0x5e30bdd3,0x24bdbf74,0x1ce73e8f,0x44af3fb0,0x42da3f10,0xf76e4124,0x5d0b4079,0x9b43be39,0xa6bc3d11,0x144dbf38,0xf9013f31,0xa7723fae,0x6773f10,0x70da4128,0x1bac408f,0x1633e97,0xdd4a3dfc,0xfbfdbf22,0x434a3f42,0x44b73fad,0x5d653f12,0x2f8e4106,0x4b774091,0x34293f7a,0x17f73e8d,0x9a4ebf35,0x88483f26,0x4c983fa8,0x246a3f11,0xf1cc410d,0x922540b1,0xea3f3fe6,0x223c3ea8,0xfafcbf10,0x37b03f41,0x33e83fa5,0x8dc13f14,0xbe4740dd,0x7f8d40a8,0x69934024,0x9603ed4,0x261bf15,0xec3e3f33,0x9e303f9d,0xdf633f11,0x3fa4169,0xa333c1b0,0xfc9ebf6f, 0x59bcbf5d,0x8d7fbecc,0xd6aabe98,0x61703fc2,0x3ac3e0d,0x9cbb4166,0x56b0c19e,0x7f70c019,0x62cbbf6d,0x8886be4f,0xab9fbea0,0xee5b3fc3,0x30493e3c,0x4c67416b,0x7a7c1a2,0xfa5ac022,0x2cd3bea4,0x1893bf0a,0xceafbf47,0x5253fc3,0x3fa33e36,0x355b416a,0x3c3ac18e,0xf9c4c07a,0x9207bec6,0xbb39bec7,0x39f7bf55,0xb8e93fc4,0x90203e6a,0x49f5416f,0x575cc18e,0x5665c071,0x39833eae,0xbc19bee1,0xd356bf54,0x8dce3fc3,0x23893e69,0x56694175,0xd6d8c18e,0xab87c067,0xa2a13f50,0x4f73be98,0x6977befe,0x62b23fc3,0x321d3e68,0x36e34174,0x4a66c172,0x6854c09f,0xf5a33e98,0x1cf4bec2,0xba6fbf60,0xadf33fc3,0xc44f3e8f,0x1265416e,0xd1e1c172,0x9ca9c0a2,0x3572bed2,0x7a66be70,0x1840bf61,0x26cc3fc4,0x99093e90,0x6a6417a,0x35d9c14c,0x3869c0b7, 0xd535bead,0x9fbbbe34,0x2cb6bf6c,0xb7cc3fc3,0x3123ea6,0x4db84176,0x206dc1a2,0x6765c00a,0xec53f56,0x99a2be8d,0xe63abef1,0x56113fc2,0x88363e33,0x9c844178,0xac86c19e,0xe3a7bfdc,0xf81a3f7f,0x8d7d3cef,0x13b2bb2b,0x201d3fc2,0x9f443e38,0x7cd3417c,0x95c4c1af,0xa765bd73,0xd2c63f7d,0xdcb83e05,0x60bd0b,0x3e423fc1,0x49023e08,0x17044177,0x13c7c1a5,0xac093e81,0x4eaf3f75,0x7d0c3e54,0x27e93e42,0x3b923fc0,0x50183e1c,0x9fb417b,0xbb6fc1b2,0xa5e13fd8,0x11f13f64,0xd5f73eca,0xee53e5c,0xa6873fbf,0x4ba23dec,0x44af4170,0x2b95c1a5,0x4e453fca,0x194c3f66,0xedb93e90,0xaef33eaa,0x6a663fbe,0x30e03e12,0xf60b4178,0xecd9c18a,0xa7d8c047,0x7923f7f,0xb91dbd42,0x85663cac,0xa8d3fc2,0x3f783e6c,0x7f75417d,0x2ac5c16c,0xd8edc08b, 0xb60f3f7a,0xd7dcbe28,0x7a5b3de6,0x7c853fc2,0xe75c3e90,0x44864179,0x556fc172,0x46e5c09b,0x32da3f49,0x52c2beb6,0x57e6bf01,0x34f83fc3,0x1a113e8f,0xf0a54183,0x8b95c14b,0x7a7bc0b0,0xd3ae3f43,0x253abecb,0x793ebf02,0x3923fc2,0x223f3ea6,0x1dc4180,0xfe5ac14c,0x86e0c0b3,0xe9103e85,0x303cbeb3,0xd424bf66,0x5dc03fc2,0xa87a3ea6,0xe4e64187,0x3e42c11c,0xa77ec0d2,0x2fab3e95,0x5924bea0,0xf195bf67,0xdd9c3fc1,0xf1f03ec2,0x26d24175,0x90b4c17e,0xc209bfdc,0xea043f7b,0xfeadbcf9,0x31a53e36,0x73d23fc0,0xd0253e7b,0x4a24174,0xf97fc194,0x84a8bf70,0x27c33f7b,0x38ae3db0,0x9efe3e29,0x2d563fc0,0xa9d13e49,0x57a8416e,0x1644c185,0x26863e99,0xb08c3f78,0xfcd63c8f,0x36333e7a,0xb15b3fbe,0xa3313e5f,0xffcb416e,0xba84c196,0xa4e13f54, 0xca1e3f70,0x5acf3e00,0xbdfd3ea2,0x35a43fbe,0xad353e36,0x578e4166,0xb64ec188,0xc413ff3,0x90103f6a,0x6d1a3b8b,0x5a8a3ecf,0xe0d63fbc,0xad9b3e4d,0x368b4184,0xbf6cc11d,0x97cc0d5,0x7f22be8d,0x33e5be16,0x4a9dbf73,0x16e33fc2,0x42b13ec3,0xec4e4145,0xda274051,0xd093bf15,0xb8afbd83,0xff63bf15,0xacc53f4e,0xb0963fb1,0xb2dc3f0e,0x97c04149,0xaf754073,0x322be83,0x9cc7bbbb,0x1fedbf07,0x9dc73f59,0x59c93fb0,0x6f293f10,0xa7f04150,0x57714096,0x4f263e9f,0xca823def,0x734cbed6,0xd6023f66,0x302f3fae,0xcaf03f13,0x750c4165,0xb07d403a,0x21febf28,0x1f59bcb3,0xc61cbed9,0xbfa93f67,0x3e4f3fb2,0x68c73f0d,0xa7a84160,0xcaf7401c,0xe626bf58,0xdd80bdb8,0x9a54bec2,0x60073f6b,0x97573fb3,0x17793f0b,0xe782412f,0xd75e40ad,0x166f3f7b, 0x44d73e45,0x3048bf03,0xdfb53f56,0x1b1e3faa,0x942c3f15,0x9e934135,0x537240d6,0xa48d3fbb,0xbc7b3eb6,0x45b8be2b,0xcb103f6b,0xaed53fa8,0x32553f19,0x89b9416c,0x95f64070,0x1443be67,0x959f3df4,0xa7debea3,0x70613f70,0x14513fb1,0x48e23f10,0x9e6b4171,0x1b5040a2,0xabc5bc55,0xa0213edf,0x41923c53,0x2e7f3f66,0x59713fb0,0x37913f15,0x34e14156,0x917140c0,0x49493f2b,0xe6333eae,0x9e1bd8f,0x30f93f70,0x17873fad,0x67d43f18,0xa002417d,0x6380403d,0x9052bf23,0x83aa3e97,0x14e1be6f,0x29b3f6d,0x68c73fb3,0xcc063f0d,0x1d494157,0x751940f7,0x80533ebd,0xfa493efa,0x785d3ea4,0x68123f4f,0xf3bf3fac,0x60843f1f,0x84454170,0xe7d53fe1,0xda9ebf72,0x3ff43d91,0xb157be2c,0x3b9b3f7b,0xd6913fb4,0xb70e3f08,0x6da44176,0xc83b400d,0xaecebf63, 0xb9003d90,0xfca3be96,0xdfd23f73,0xa4ca3fb3,0x73f03f0a,0x2b634181,0x9d133fac,0xef04bfa3,0xf0163e9d,0x2acbe93,0x2ad03f68,0xa3443fb5,0xfbea3f07,0x1f974173,0x70583f20,0x5a80bf6b,0x7b8c3ee9,0x4f433ec1,0x16d3f4e,0xeec43fb5,0x7ddd3f03,0xa73b417b,0xeae23f83,0xcbabbf96,0xa0f93ed7,0xd1c6bdc6,0x30623f66,0x1cce3fb5,0xa633f06,0x5294184,0x9cf13d5d,0xe34dbfe9,0xbb6f3f05,0x40f5be38,0xd3413f55,0x18873fb6,0x9ad93f03,0x86f94113,0xe9d140dc,0x2294019,0xa96a3ecb,0x7645be84,0x77de3f61,0xcf073fa2,0x9ad63f18,0xea6d4137,0xf1b4103,0x48683fa8,0xfba23eea,0x43eb3e93,0xbe3c3f57,0x84513fa7,0x48a33f20,0xb7f4116,0xdd5d4106,0x93b04017,0x5c883edd,0x7bfd3e75,0x18e33f5e,0x36263fa1,0x48303f1f,0x4da940e9,0x6b1e40d6,0x11cd4052, 0x79a63ee0,0x8a29be96,0x67b63f59,0x6b2f3f9a,0x6ead3f16,0xf2c74134,0xa4484118,0x7e403f05,0x6feb3eab,0x1a4a3f41,0x17093f10,0x89d73fa8,0x10c73f27,0x520b40ba,0xf40e40c8,0x9cd54079,0xb9fc3ee0,0x9be0bea5,0x92683f56,0x76603f92,0x56a63f13,0x281a40bc,0x402540f9,0x98cb4082,0x48fa3eb0,0x7d333e2a,0x1dda3f6c,0xaf7d3f90,0x9fe83f19,0x2f7e40ee,0xd0354103,0xe5174056,0xe64e3ecd,0x6d063e3f,0xa7bd3f65,0xb5aa3f98,0xdf7c3f1c,0x49b414f,0x33983d2f,0x66643f03,0xba433dd5,0x3de3f6e,0x6c2b3eb1,0xd1813fb2,0xbdbe3efd,0x97f2414d,0x239abd16,0xb6743e4b,0x818bbe38,0xa603f60,0x1750bee4,0x42393fb3,0x78893efe,0x16f44131,0x21d93e1f,0xb31b3f52,0xbbd63dea,0x2eb03f79,0xe5cd3e40,0xb4893fb0,0xe0753efd,0x33014132,0x4f12bddf,0x2d103f98, 0xc5d83e1b,0x4f553f26,0x511a3f3e,0x222d3fb0,0xdafb3efa,0x7925410f,0x5b963e1e,0x47e83fa8,0xd4733ddf,0x83193f29,0x18c63f3d,0xf7063fae,0xe6263efb,0x388b4111,0x9a0fbec5,0x91c93fd1,0xd2503db8,0x3b023ebf,0xeba73f6c,0x34b93fad,0x94ee3ef6,0x3dee40e2,0xf145be94,0x1dfd3fe0,0x4dfb3d89,0x6ed93ec1,0xc5333f6c,0x9ea13faa,0xd9d13ef6,0x696640e6,0x9468bf81,0x77b53ff6,0x746c3da4,0xe27e3e8f,0x80aa3f74,0xdae83fab,0x45e63eef,0x6d094152,0xdf01be91,0x94373f5d,0x5d143e79,0xdb103f1c,0x7463f40,0xc4113fb2,0xae183ef9,0x12a94134,0x234bbf1d,0xe5b23fbe,0x18d23e1a,0x20bb3ebb,0x2c4d3f6b,0xc5763fb0,0xc6d13ef4,0xab114154,0xc5ebbf57,0x3f373f90,0x40be3e9f,0xbadf3ea0,0x4083f65,0xdf63fb2,0xe78b3ef4,0xa9694168,0x2563be7c,0xf4ed3e56, 0x80393eeb,0x5cbf3f00,0x99463f3b,0x68663fb3,0x35f83efc,0x98b34137,0x5a29bf9c,0x9953fcb,0x91073e27,0x8c9a3e6c,0x9d6b3f75,0x31b13fb0,0xc3733eef,0x70a44117,0x11f1bff1,0xcaa94001,0x726e3dd1,0xe5b03ed2,0xf7773f67,0x8853fae,0xb24e3ee8,0xeac04114,0xa837bf84,0xe9433fe3,0x6c5f3db7,0xcf683e87,0x78af3f75,0x1f973fae,0x98e23ef0,0x319c4164,0xd9ec3e5c,0xea5cbdd3,0x74ff3df8,0x4b4a3f56,0xc43b3f08,0xbbc33fb3,0x5fdf3f00,0xa39c40ae,0xf449bf76,0xbbdd4004,0x4a6e3e11,0xd69f3ea9,0xf4c73f6e,0xbe983fa6,0xae73eef,0x713240ac,0xc31bfdd,0x4954018,0x916a3e6a,0x433ef1,0xd9383f5a,0x23213fa6,0xb0de3ee8,0xf0d440e8,0xafeabfe9,0x3259400a,0xe2e43dc2,0x9f693ed8,0xf9403f66,0x6293fab,0x8b133ee8,0xc1f04087,0xb75abf37,0xb0474011, 0xeca3edc,0x5d9c3ef0,0x77473f45,0x259a3fa0,0x49cf3ef1,0x503340e7,0x9e3dc032,0xfedb4030,0x29813e09,0x6cba3f0c,0x28073f53,0xbaf53fab,0x1c063edd,0x328b4086,0xc832bd1b,0xcef43fef,0xfc2f3e8c,0x9e553f0f,0x6ab3f47,0x63bf3fa1,0x20e63ef8,0x9a0f4057,0x9eaa3ead,0x26d14009,0xa5f3f36,0xbaca3efd,0xa4763eff,0xa1f93f98,0x54d83efa,0x8bca416d,0xe936bf70,0x243a3ece,0x2ae23f0a,0x1e2b3e90,0xcfc43f4b,0xcb363fb3,0x5fa63ef5,0x46dc418b,0x4372c0eb,0xbefdc0e2,0x6b2fbe32,0xe6b6bd13,0x2043bf7b,0x98293fc1,0x7c1a3ed9,0xc4d2418e,0xe039c0e9,0x223fc0dd,0xd7633eb3,0x4be6be23,0xc190bf6c,0x81383fc0,0xa8e53ed9,0x2b824191,0x4569c0e8,0x9098c0d9,0xc8a33f44,0x2985be74,0x6299bf18,0x6a273fc0,0x760c3ed9,0x2dfb4192,0xeaeec092,0x58d1c0de, 0x428d3eae,0x5932bd50,0x557abf70,0xfd7e3fbf,0x3aed3ef0,0x5ea0418f,0xbb82c094,0x8ce5c0e3,0xa1c7be1f,0xd660bc88,0xb613bf7c,0xf2393fbf,0x16843ef0,0x73fb418e,0x12dcbfcf,0x3601c0e7,0x8d17be2b,0x4f4abe01,0x7cafbf7a,0x898b3fbe,0xbf343f05,0x9082418a,0xb04bc11c,0xa908c0ce,0xf46b3f41,0x2fa8bebf,0x98d9bf09,0xa4553fc1,0x24433ec2,0x5750418c,0x4c0cc118,0x8ef8c0bf,0x9d193f71,0xba46be83,0xdfe73e55,0x2ebe3fc0,0xb0333ec3,0xff3d4184,0xb7b5c146,0x693ec0a0,0x92c93f72,0x8a21be72,0xac8a3e5e,0xe3f83fc1,0x61543ea6,0xef514183,0x5409c12e,0x69ffc06c,0xdde33f70,0x7e1ebe32,0x844d3e97,0x1113fbf,0x9dad3eaf,0x784e417b,0x3a8ac153,0x9e6ac020,0x8a5c3f78,0x89eebe00,0x95cd3e4f,0x47b63fbf,0xe23f3e97,0x82bf4177,0x89fcc13c,0x8478bf62, 0xf3bb3f76,0xf6a5bdf2,0xc8cd3e77,0xc7473fbc,0x9fc53e9d,0x40304171,0x4135c163,0x6997be44,0xb9ba3f79,0xc60fbd7f,0x625a3e5d,0xa37b3fbd,0x7bd43e86,0xf6ba416e,0x9d9dc148,0x6b2b3faa,0xbb3c3f75,0xd19ebdb0,0x39e73e8a,0x3f313fba,0xde943e8f,0x9a0e4169,0xe3f3c16d,0x16583fd7,0x185c3f72,0x687dbd7f,0x3a693ea3,0xdf053fbb,0xf4bd3e74,0x723f4163,0x2789c153,0x6db5403d,0x15f73f5c,0x69bebdab,0x31df3f00,0xe2b53fb8,0xe1e23e83,0xbf64192,0xf5f7c0e1,0x9a95c0c9,0x6b523f6f,0x83b1be85,0xb5d03e72,0x9c9d3fbf,0x8b8d3ed9,0x64084198,0xcc7bc084,0xd31ac0c5,0x18683f7e,0x6df6bd94,0xfbe73d80,0xde6a3fbd,0xb69e3ef1,0xd12d4195,0xb0adc08f,0x571ec0d9,0x74aa3f3c,0x6b9dbd92,0xf380bf2c,0x9073fbe,0xc6a03ef1,0x1bf84194,0x4975bfbd,0x806cc0df, 0xf3973f35,0x7bf8bc89,0xd0c0bf34,0xb62c3fbd,0x6e063f05,0x8ba84191,0x56c3bfc6,0xb8ac0e3,0x67433e95,0x11fcbda2,0x26ddbf74,0x9fd33fbe,0x5d623f05,0xefe5418d,0x653d3fc4,0xbf3c0f5,0x54783e6d,0xa378be80,0x8306bf70,0xd30b3fbd,0x22e83f13,0xf7144190,0x74e2c0ce,0xc6bec0a5,0xb5cf3f63,0x876fbe65,0x59433ecb,0x61e13fbe,0xa213eda,0x5747418a,0x4802c10c,0x8c2dc098,0x40f83f69,0x3ff2be56,0x4e903eb4,0x40ab3fbf,0x87e13ec5,0x17244186,0x1e2c0f8,0x1f20c047,0xda5d3f6d,0x1f1dbe39,0xff223ea9,0x16483fbc,0xf9d83ec8,0x2f234189,0xaad63fbb,0xae55c0f7,0x974cbe42,0xd1ddbea2,0xcc75bf6d,0xa0b63fbd,0xec463f13,0xbb54184,0x9619408c,0xc97fc110,0x206bbdbf,0x4c44bed6,0x290fbf67,0x61d03fbe,0x3d723f22,0xb0a54188,0xcfb6408f,0xa44dc10f, 0xf7b23e4f,0xebc9beae,0xde7abf6a,0xc7a83fbd,0x8e9f3f22,0x5a2d418b,0x3cf4093,0x5e67c10f,0x54fb3f1e,0xb9cebe39,0x9653bf43,0x2d6f3fbd,0xb3ce3f23,0x734d4181,0x450d40ef,0x8c66c123,0xb3333e78,0xc7b2be27,0x2d49bf74,0xb9fa3fbe,0xc1363f31,0xe7364190,0xfee93fce,0xb7a4c0f2,0xd36e3f2e,0x3554bdd4,0x3b08bf39,0x5603fbd,0xb9543f14,0xfc0d4192,0x2d84009,0xd1dac0e4,0x7d343f77,0x57703dcd,0x5647be6b,0x7d8d3fbc,0x21ec3f15,0x440d417d,0x41b940ea,0x311c124,0x8dac3d51,0x3fb0be74,0x853cbf78,0x25893fbe,0xd6a83f31,0xa4dd4184,0x458540f4,0xcac2c122,0x85da3edf,0x7afdbd96,0xd862bf65,0x4e593fbd,0x76973f32,0xcb2e4186,0x370240fd,0x18ac11f,0x5d83f6c,0xa93a3e54,0x6074bea7,0x2f983fbd,0x61ba3f33,0x4f90418d,0xd7f540a1,0xe0f0c109, 0xc3083f73,0x17d43deb,0xe5efbe90,0x76c03fbc,0x36513f24,0x1acc418c,0xa1bb40bf,0xc706c101,0x7f973f75,0x2c563e8d,0xd756bd32,0x87053fbb,0x7ca33f27,0x121f4196,0xa2e8bf6a,0x7a0bc0ce,0xa9183f7c,0x929f3dbf,0xe4b0be0b,0x30623fbc,0xea0a3f07,0x3c9f4194,0x57843ef4,0x6bffc0b0,0x42973f7c,0xaa9b3dfd,0x2c9d3de4,0x72713fbb,0xd5b53f0b,0x456f4191,0x791a4057,0x9ac2c0cf,0x37b23f7b,0xafcd3e3b,0xfdc1bccb,0x817c3fba,0xfc563f19,0x10bf418e,0xcfea409c,0xca3c0b2,0x54ab3f77,0x816d3e7f,0x212d3da5,0x60803fb9,0xf15d3f1e,0x44d6417b,0x807c4130,0xbdd3c122,0xff953f64,0x7faf3eb1,0x5d64be91,0xbbe43fbc,0xd4ab3f40,0xb84a417a,0x80ca4130,0x414cc11b,0x58093f66,0x85de3ebd,0xc4873e6e,0x13983fbb,0x10dd3f40,0x99444185,0xa12c4107,0x9082c117, 0x4ff33f6d,0x27bf3eba,0x8d863da4,0xaa763fbc,0xefd93f34,0xfc6c4181,0x11f74111,0xea5fc10d,0x1cf03f66,0x45b43ed7,0x72de3dcb,0x44203fbb,0x14743f36,0x26874189,0x478840e4,0x2128c0eb,0xd4083f6e,0x17773ebb,0x5c4f3c4f,0x23bc3fba,0x3673f2b,0x24864185,0xc224103,0xc92fc0ce,0x43413f64,0xcd5e3ee4,0x97203d4e,0x12733fb8,0xd2ea3f2e,0x29b4195,0x334cbfe1,0xd98fc09d,0x9c8e3f79,0x587f3d9f,0x8a763e50,0xd6c33fbb,0xecd33f00,0x7519c165,0xe411403a,0x1e5dbf10,0x1ffb3ce3,0xbb72bed9,0x6d593f67,0x3e4f3ee6,0x903c3f0d,0xa7adc160,0x8cc1401c,0x14d9bf41,0xe1563dc5,0x7205bec2,0x30b13f6b,0x97573ee4,0xca103f0b,0x97c0c149,0xd1cc4073,0x6b2dbe33,0x9cd33c37,0x1c50bf07,0xb3183f59,0x59c93eed,0x77443f10,0xa7e9c150,0x81ba4096,0x5f963eca, 0xcaa7bde3,0xa396bed6,0x66f93f66,0x302f3ef3,0xded3f13,0xe782c12f,0xfbe340ad,0x89d13f86,0x44e8be3f,0x80bbbf03,0x10883f56,0x1b1e3eff,0x7de03f15,0x9e8ac135,0xb95640d6,0x98183fc4,0xbc5ebeb3,0xdbbdbe2b,0x5a473f6b,0xaed53f02,0x6bc93f19,0x86f9c113,0xbb4940dc,0x161a401d,0xa96bbec8,0x1d34be84,0x237d3f62,0xcf073f0a,0x1a683f18,0xb7fc116,0xc0984106,0xb16c401b,0x5c85beda,0x32513e75,0xb3633f5f,0x36263f0b,0x48873f1f,0x89b9c16c,0xbf6a4070,0x9e3ebe05,0x95b7bde7,0xd918bea3,0xf4493f70,0x14513eea,0x361f3f10,0x34e1c156,0xbf4840c0,0x2d153f41,0xe592beab,0x98f5bd8f,0x676a3f70,0x17873ef8,0x59673f18,0x9e67c171,0x402540a2,0xafbe3dad,0xa14bbedc,0xf9973c53,0x1f153f66,0x59713eef,0x88db3f15,0xa00ec17d,0x2546403d,0x7cbbbf09, 0x7ed1be94,0x91a7be6f,0x7fd83f6d,0x68d73ee5,0xd2873f0d,0x1d47c157,0x251040f7,0xcf953eea,0xfa4bbef7,0x46be3ea4,0xb51c3f50,0xf3bf3efa,0x88853f1f,0xea6cc137,0x8fde4103,0x7e003fb1,0xfb9fbee7,0x4ce3e93,0xb8c33f58,0x84513f03,0x71583f20,0xf2c7c134,0x52d64118,0x9fe73f18,0x6fe9bea9,0xa7913f41,0x45f13f10,0x89d73f03,0xdf863f27,0x6db5c176,0x3ae2400d,0x31abf4a,0xb19cbd84,0x1a83be96,0x5fa63f74,0xa4ca3ee2,0x8cd33f0a,0x845ec170,0x1ac3fe1,0xcc83bf5a,0x33f7bd84,0xcec0be2c,0xc913f7b,0xd6913ee1,0x8d213f08,0x2d73c181,0x2f943fac,0xfd80bf96,0xd858be9a,0x8559be93,0x84f53f68,0xa3443edd,0xb1513f07,0xa911c17b,0xe02f3f83,0xefb2bf89,0xc7b4bed4,0x7e63bdc5,0x6f763f67,0x1cce3edd,0x2b513f06,0xdb12c184,0xdf5d3d5d,0x98aabfdb, 0x8450bf04,0x1220be38,0xf5233f56,0x18873ed6,0xfa33f03,0x2f7fc0ee,0xe5eb4103,0xebe64059,0xe67bbeca,0x16513e3f,0xa7a43f66,0xb5aa3f14,0x2a883f1c,0x9c90c0ea,0xec4a4116,0xc7f4402f,0x4b03be4c,0x9b3d3f46,0x9be93f19,0xf6b3f14,0xdf603f23,0x4d83c113,0xd9174119,0xcd603fdc,0x6c52be88,0x8ebd3f4b,0x608d3f0b,0x9c393f0b,0xa0cd3f25,0x281cc0bb,0x779240f9,0x88514083,0x48eebead,0xe353e2a,0xc6f3f6d,0xaf7d3f1d,0x88cf3f19,0x61ec10b,0x5e5b4121,0x62b73e99,0x7c0cbdfb,0xe8a13f71,0x59433e9d,0x34553f08,0x63b03f2a,0x520bc0b9,0x5b6840c8,0xd49b407c,0xb9e1bedd,0x54c9bea5,0xaac13f57,0x76603f1a,0xe53f3f13,0xe02dc090,0x71ae40e8,0x3f5b4093,0x200ebe8f,0x49803dd8,0x389b3f74,0x9de93f25,0x69903f16,0x5b4dc087,0xc7934109,0x21964084, 0x1bd9bdd6,0x51f93f29,0x59473f3e,0x3643f27,0xb3c83f1d,0xf50cc053,0xe4de40d9,0xafda409e,0x8fddbe80,0xc55f3c15,0xfeca3f77,0xfb8b3f2d,0x74543f13,0x1c58c055,0x21f540aa,0xaefe4096,0x397be90,0x81d6be98,0x28e93f69,0x15db3f2b,0x4ab63f0e,0xf6d3c00a,0x6f4c409e,0x168e409b,0x6c46be28,0xb6fbbe8b,0x87833f72,0x4be43f35,0xb933f0c,0xea9c0b5,0xdb3c4111,0x24ea4060,0xe52bbde7,0x9eeb3f39,0xde7a3f2d,0x35483f1d,0x1aed3f20,0x4445c0a4,0xc41e411d,0xa3d74002,0x2b57bd51,0xba3d3f69,0xa2a93ed1,0x14383f1c,0xcf073f26,0x4652c007,0x97094068,0x41f9408c,0x8d6fbe77,0xd27bea6,0xd303f6a,0x68163f33,0x4d233f07,0x514bf86,0x77234061,0x170a408f,0x1818bdce,0xfcacbe43,0xfe093f79,0xc1b13f3f,0x13683f06,0x916cc0da,0x5a75411f,0xef383fa5, 0xe6ebdc2,0x564c3f71,0x1be33ea5,0xa283f12,0xde13f28,0x7cc0c0c6,0x1cd2412b,0x6382bf39,0x5c37be34,0x22673f5e,0x3cac3eed,0xcd3a3f0d,0x984a3f2e,0x39f1c040,0x2ef54100,0x4d164099,0xe57fbdd4,0xb1793ef6,0x24183f5e,0x6f653f31,0x10f93f19,0x9ed4c014,0xee524109,0x5ecc4082,0xc89b3dc3,0x4f063f4d,0xf0b33f16,0x2ce03f35,0xb7023f1d,0xfe3dc068,0xbb024116,0x2ea64037,0xbe943c6b,0xbfc33f5d,0x95183eff,0xec7d3f28,0xfc093f22,0x79a3c00a,0xf0d640ea,0x4ec240a2,0x7f8cbc9d,0xb2ca3e9c,0x3a113f73,0xf4903f38,0xa0123f15,0xe84dc00a,0x33840cc,0xfb1a40a5,0x47bbbdee,0xfd9fbdca,0x98853f7c,0xe4f73f37,0x63fa3f11,0x3b86bf88,0xfed040c2,0x3e1d40a4,0xb1d43cfa,0x2aecbd98,0x8c263f7f,0x76f33f42,0x38ef3f10,0x3852bf87,0xf75e4096,0xfebd4099, 0x674f3c14,0x8bedbe82,0x53ac3f77,0x34723f41,0x1b43f0b,0x72d43c58,0x7be74092,0x3224097,0xfd413b4d,0x7a9abe82,0x9ad03f77,0xd55a3f4f,0xf8cf3f0a,0x1108bfb0,0x203240ee,0xc2c740a2,0x8c593d31,0xc26e3ecf,0xd8ae3f69,0x79ab3f3f,0x5cf23f16,0xcb603c5f,0xec8b40f2,0x7fd4409b,0xf9993b23,0x6b943f22,0x9ad03f45,0x71653f4f,0xbfd73f17,0x7d1c3c6b,0x659540bd,0xd63040a3,0x8f943b53,0xba2dbd3c,0x9ad03f7f,0xea0c3f4f,0x1cd63f0f,0x3b863f8c,0xc58d40c2,0x663240a4,0xb1dbbcc5,0x3683bd98,0x67e83f7f,0x76f33f5e,0x2a063f10,0x1a31c030,0xdfe4127,0x64e83f62,0xa05bd27,0x17a63f5b,0x62673f04,0xc11a3f2a,0xb87c3f2a,0x72e54172,0xce9640df,0xa1febef7,0x55fa3f1b,0x77393ea6,0xa54c3f39,0x4dd33faf,0x2a93f1e,0x8ca5416f,0x1733410e,0xc0bfce, 0xfd743f17,0x1f493f1e,0x20ef3f04,0x89093fb0,0x1e423f28,0x583a4182,0x7c7040c6,0x641ebfa3,0xf9e13f46,0xa0543e94,0xf3303f0f,0x5be23fb1,0x45f93f1c,0x2f7d4181,0xc5154087,0x315cbf1f,0x7f1f3f22,0x48c33d8c,0x32a03f45,0xc5093fb2,0x34d03f12,0x68014187,0x8c8f404b,0x52e4bfab,0x655b3f50,0xd9323d85,0x27523f13,0x925c3fb4,0x38c73f0f,0x5d824154,0x84124115,0x1797bf13,0xf5ea3ee7,0x76f63f30,0xcfaf3f10,0x86493fac,0x8a133f28,0x3407414a,0xf55e4125,0x70bcc009,0x6a2a3e7a,0x58da3f64,0xe3f83ec2,0x90863fae,0xcdb33f2f,0xf3ed4184,0xd4783ffc,0xaae8bf98,0x88353f06,0xe181be36,0xa9a43f54,0x2e2c3fb4,0x2c683f0a,0xf51f418b,0x64173ee7,0x1c11c00a,0xcbc13f36,0xa46fbe08,0x8c43f30,0x650a3fb7,0x670a3f05,0x3f104188,0xc886bcff,0x7ebbc009, 0x36ac3ee5,0xd9e2be92,0x53693f58,0x4ff83fb7,0x2aa23f03,0xcc68418f,0x2268bfee,0x74b8c051,0x73083f47,0xd4afbd66,0xc3263f1f,0xea533fb9,0xd3ac3efa,0x7b354184,0x85e8bf04,0x4b68bff9,0xe2353f3f,0x9ec03e47,0x5ac03f22,0xe0443fb7,0x2c743f00,0xf0564184,0x46aabf47,0x95b7bfcb,0x596c3f48,0x85153ec5,0xfd333ef9,0x379b3fb6,0xe3c43efe,0xfdce4179,0xcddbe9d,0xa151bf27,0xf433f2c,0xd65d3ed0,0x3b543f1d,0xeefa3fb5,0x47233efe,0x344c4180,0x730cbf8e,0xb1bfbf22,0x43af3f3a,0x99d03e82,0xc0d33f22,0x3253fb5,0x549b3ef8,0xf9f04188,0x4f6ebfc7,0x734abff6,0x910a3f53,0x5d1d3e52,0xe8363f06,0xbc383fb7,0x5a623ef8,0x3a5c418a,0x8d9bc015,0x20dac00c,0x86233f5c,0xafb33b47,0xb2ea3f02,0x20fb3fb8,0xf8c13ef3,0x21574170,0x8a2bbfd1,0x18813eb7, 0xfc1a3f15,0x2e4a3e0a,0x6b8b3f4d,0x66c3fb4,0x9bdf3ef0,0xd83c4182,0x326ebff0,0x4d86bf4a,0x1d33f43,0x2a253dde,0x7ca63f23,0xfadb3fb6,0x71353ef1,0x20964183,0xcd10c035,0x4291bf50,0x3e553f50,0x4903d7f,0x1d473f14,0xf85d3fb7,0x38113ee9,0x9d174157,0x7cc8bfba,0xe2333f96,0xebf43eab,0x85bc3e3b,0x7afa3f6c,0xa3593fb2,0xa8ec3eee,0xf4594164,0x2e494124,0x595dc057,0xe0c23ee6,0xe97d3f50,0x93e3eb9,0xa2b63fb2,0x9c133f31,0x69b54158,0xab914135,0x83c1c0aa,0x5e843ebd,0xa1303f5e,0xc2bd3ea8,0x8a013fb4,0x34223f39,0xea774175,0xf3f3411d,0xd2a5c08d,0xc79c3f34,0x96503f2c,0x74b83e5a,0xa9543fb4,0x3ae93f31,0x7f074180,0xdc444104,0x2086c023,0xafed3f49,0xd35b3f01,0x920c3eb5,0x89503fb2,0x22983f27,0x11944186,0xf14e40ed,0xc66fc060, 0x366d3f64,0x30e63eca,0xc41e3e5a,0x81063fb4,0x11dd3f25,0xa3be4188,0x608540a6,0x210ac008,0xc95d3f66,0x38dd3e63,0x15983ec1,0xa48b3fb4,0x1cda3f19,0x57b0418d,0xa2904076,0xa060c04a,0x1c2f3f71,0x7e6e3e33,0x732e3e8f,0xae3e3fb6,0xa5613f15,0xdee8418c,0xa9eb3fd7,0x387cc015,0x74823f66,0x86e33d82,0x8dca3edd,0xf9553fb6,0x897a3f0a,0x5d074191,0x4e94bd02,0x8e48c063,0x65ae3f71,0x27f63d99,0x17ad3ea5,0xca9f3fb9,0xdddd3f05,0x51334190,0x12babf94,0xe4a9c054,0xa63b3f58,0x41c8bd61,0x67663f07,0x8e7a3fb9,0xefec3f00,0x52484194,0x6131c01a,0xdbb2c08d,0x4abd3f6c,0x7a4cbd0b,0x4e903ec1,0x57213fbb,0x5b7d3efa,0xa074191,0x1757400f,0x4e6ac08a,0xbf3a3f78,0xa0153e13,0xdcb13e48,0xd4673fb8,0x11da3f10,0xfc20418b,0xf48240c7,0x3aa3c091, 0x88c93f71,0xa9953e9f,0x2f73dfa,0x69e03fb7,0x24c13f22,0x17d4180,0x18814112,0x4310c0ae,0xc283f56,0x1d803f0a,0x977d3dbf,0x44183fb6,0x53ee3f30,0x94724173,0xe36f4127,0xeea7c0e7,0xe8323f4b,0x18c83f16,0x964f3e09,0x3dc93fb8,0xaa403f39,0xd3e64168,0x79d94130,0xf4eec0cb,0x612e3f21,0x53d43f3e,0xd36b3e5d,0x222d3fb6,0xaf23f3a,0xa0c54161,0x901413e,0xa67ac0f9,0x2f183f06,0xd9ca3f41,0xaac93ec8,0x5a2d3fb8,0x8bc63f40,0xbbfd4195,0xb32dc048,0x8e38c099,0x25d3f5b,0x40f1be35,0x18723ef7,0x840a3fbc,0x6c7a3ef5,0x39504194,0xcb29c05c,0xe564c095,0xa2343f5e,0x48e8be28,0x24893eed,0x7b913fbc,0x25ea3ef2,0x9de94190,0x7111c038,0xb7b9c065,0xa1443f5d,0xb5f3bde0,0xadb43ef9,0x571d3fba,0x52dc3ef3,0x95d9412b,0x5fc44122,0x8381bf6b, 0x2b253e0d,0x518a3f6f,0x72083ea8,0xad8a3faa,0x7e8a3f2c,0x620410b,0xf4734121,0x77693e78,0x7c0d3dff,0x7fb13f71,0xff7a3e9d,0x34553fa3,0x55e13f2a,0xe3e74120,0x3837412e,0x2e7dc036,0x82583e5e,0x61ca3f5d,0x14943ee7,0x65343fae,0x69a3f33,0x5455413f,0x7a664133,0x86dbc083,0x35d03e45,0x39513f63,0x4213ed6,0xd03e3fb2,0xf50d3f36,0xa44135,0xa2f74148,0x337ec0c5,0xc7023ece,0xc0ed3f43,0x48563f00,0x3153fb5,0xfad83f40,0x4d834113,0x30a54119,0x9afb3fd5,0x6c513e8a,0x1cb23f4b,0x624a3f0b,0x9c393fa1,0x980d3f25,0x9c8d40ea,0xe3c54116,0xc0c7402c,0x4afc3e50,0x45a33f46,0xb3573f19,0xf6b3f98,0xccf03f23,0x65ec414f,0xbdb64142,0x3949c0e3,0x99493ecf,0x95973f55,0x76923ebf,0x2e453fb7,0x8a153f40,0x45d84149,0x9ddd4153,0x18ec107, 0xf71e3eef,0x7b943f14,0x3c363f2a,0x1ac13fb9,0xf5fb3f47,0x68664100,0x190d412c,0x190fbfdb,0xad23e53,0x6f503f5c,0x43cc3eef,0xb9673fa8,0xc38b3f30,0x7cbc40c5,0x5b92412b,0x7447bf43,0x5c383e37,0x8bb13f5e,0xb79e3eec,0xcd3a3f9f,0x33c83f2e,0x916c40da,0xb4fe411f,0x35f03f9f,0xe6f3dc7,0x4a23f71,0x25923ea5,0xa283f9b,0x6e43f28,0xa77440f1,0x84f9414a,0x25e6c080,0x232f3e96,0x5c013f37,0xe7cd3f22,0xe62a3fac,0x863c3f3c,0xed1e4117,0x1a41414b,0x7790c0a3,0xd7093ebc,0x975a3f35,0xdd6e3f19,0x266c3fb1,0xe8a63f3f,0x16d0412e,0xbffb4162,0xf928c0fb,0xd2ae3f08,0xa0313f10,0x87c63f20,0xfc2b3fb7,0x636d3f49,0x444940a4,0xa3e8411d,0x7f374000,0x2b573d5c,0x8db03f69,0x8b1a3ed1,0x14383f90,0xa1ea3f26,0xeac40b5,0x825e4111,0x2106405e, 0xe51f3df0,0x6e2b3f39,0x44c33f2d,0x35483f8f,0x21de3f20,0x5b4d4088,0xe6a74109,0xfb464083,0x1bcb3ddf,0x24a63f29,0x99aa3f3e,0x3643f85,0xb5c83f1d,0xe02a4091,0x80f540e8,0x680d4092,0x1fe53e92,0xd1873dd8,0xba993f73,0x9de93f87,0x7b353f16,0xf50c4055,0x34c840d9,0xe42f409e,0x8f153e83,0x59703c15,0x76103f77,0xfb8b3f7e,0x7e653f13,0x264640e3,0xd80a4172,0x48b1c0c2,0xc37a3eb7,0xf87b3f0f,0x5be23f3e,0x211d3fb0,0x97c63f4b,0xcd2940b5,0xbbc74147,0x8f5ec045,0xfb373e71,0x3a243f39,0x77213f25,0x7ff63fa5,0x7d8f3f3a,0xfbc04080,0x3f8a4146,0x3ad6c01e,0x1b213e44,0x1e843f3f,0x994a3f23,0x31873f9a,0x398f3f39,0xe6eb40a9,0x16b416f,0xa94c0a8,0x6b223e95,0x87743f0f,0x277c3f46,0xc4e3faa,0x28463f49,0xbbb94090,0x1737412b,0x7a5ebd7f, 0xd2d23e1c,0xa0a83f5e,0x33f03eef,0xa1553f94,0x40d53f2d,0x1a344030,0x7e564127,0x10613f5d,0xa093d35,0x5973f5b,0xa1cf3f04,0xc11a3f82,0x31fb3f2a,0x973340a0,0x6d67418f,0xf6c8c0d8,0x5e733eae,0x62fe3eda,0x89a3f56,0x5c033fab,0xb9953f58,0x4a0b405e,0xc6304193,0x7340c0cd,0x9b6e3e83,0x5bea3ed0,0xb5d03f60,0xc0013fa1,0x8423f59,0xb3fa406b,0xe88416f,0x9bd1c098,0x96823e54,0x8d4d3f0d,0xe4c13f4e,0x1e153fa0,0xfc013f48,0xd9174010,0x69014170,0xf27ec090,0x2e303e10,0xc7aa3f0e,0x348f3f51,0x1933f92,0x619e3f48,0xa6be4022,0x1f4b4146,0xd2a5c004,0x2df53e07,0x54fa3f42,0xffda3f23,0x63283f8a,0xa83b3f38,0x41ac3f9c,0xca754145,0x401dbfe1,0xa77f3d7e,0x82483f42,0xec423f25,0x7cee3f70,0xa0453f37,0xfe414069,0x38b44116,0x33c44036, 0xbe92bc36,0xca973f5d,0x62243eff,0xec7d3f84,0x7c1c3f22,0x9ed94015,0x73194109,0x95f14082,0xc89abdbb,0x76ad3f4d,0xadbc3f16,0x2ce03f70,0xabd63f1d,0xdbe24056,0x278941a9,0xaefcc0f1,0xea493eb6,0xa5f03ed6,0x66133f55,0xc3b53fa0,0x51bd3f67,0xd61400a,0x67c94198,0xb20c0cc,0x31103e03,0x1dc53ec9,0x1b1e3f69,0x39583f93,0xee853f5c,0x32013f82,0x8c91419e,0xd5f5c0d5,0xf8b43af9,0x5ef03ecd,0x76793f6a,0x4863f7d,0x1c4c3f60,0xa1e03f89,0x7a814172,0x6b71c08e,0xf3e43d76,0x25543f0c,0xe08f3f55,0x61b73f7a,0xd0af3f48,0xaf3dbc87,0xe2a64173,0x1a2ac08e,0xa0c93b30,0x95fd3f0e,0x9ad03f54,0xb1033f4f,0x4ce83f48,0x39f14042,0x8eb94100,0xd3f04098,0xe5653ddf,0x84563ef6,0xcc793f5e,0x6f653f78,0xd1463f19,0x79ab400c,0x7cf440ea,0xc4c940a2, 0x7f7f3ccf,0xa9593e9c,0x9c03f73,0xf4903f6d,0x80dc3f15,0xa7c53f81,0x26041be,0x90e7c104,0x7325bb6b,0xd2363ed0,0x866e3f69,0x26463f7b,0x38b73f74,0x6d5418f,0xf7a5c07d,0x4a56c06f,0x53e83f61,0x30bbe33,0x77853ee2,0xcc4f3fbb,0x1daf3eea,0xc2ec4194,0xe49dc090,0x3ab5c0a2,0x1fda3f5f,0xaa0cbe66,0x265b3ede,0xb12d3fbd,0x2a413eea,0xa52b418a,0xd020c056,0x200bc010,0xedf33f61,0xb3ddbd99,0x5ef23ef0,0xa3053fb9,0xb0ad3eea,0x97204187,0xd4e1c09c,0x806abffd,0xd45d3f6a,0x81ccbdee,0xeb853ec4,0x7f353fb9,0xa8df3edc,0x975f418b,0xd003c0b6,0x5324c068,0xbdc43f66,0xea8fbe43,0x5dc03ec8,0x708b3fbc,0x48403edb,0x51094182,0x899cc085,0xfdb9bed1,0xd2cb3f5b,0x1f4a3d66,0x58e23f02,0x1dcd3fb7,0x386f3edd,0x3d0e417f,0x6bdbc0b7,0xd7373ea1, 0xef1e3f65,0x787a39be,0x41e13ee1,0x38043fb7,0xb4973ecd,0xdeec4183,0x4e44c0d5,0x28dabfab,0x4df93f70,0xd67fbe0c,0x2b393ea2,0xec073fba,0xfb0d3eca,0x3f3e4172,0x8d7ac06a,0x2c743f61,0xa3203f2f,0x1f2e3e86,0xf9873f2e,0xdc013fb4,0xf9e03edc,0x4ef3417d,0x87b1c107,0xc7a8be9e,0xb3c33f72,0x9de7be0b,0xe4713e92,0x1fb83fb9,0x18ef3eb8,0x388b4173,0xf195c01f,0x95ae3ecf,0x7c1e3f1c,0x8d6c3e6e,0xf3ed3f41,0x8f863fb4,0x64c23ee8,0xf9164159,0x20c0c00f,0xaf073fa7,0xb73b3ec4,0x36433eab,0xe7923f5c,0x69a93fb2,0xe7353ee7,0x47934180,0x94e6c11b,0xd9acc001,0x45eb3f72,0x5203be25,0xe9b43e8b,0x90643fbc,0x32943eb3,0x6e1a413a,0x9e56c002,0x60553fe4,0xb9383e43,0xba153ecb,0x9073f65,0x88763fb1,0x5e673ee7,0x74a413d,0x4d27c04a,0x3ff04017, 0x82763e55,0x618d3ef8,0xdedb3f59,0xeb9e3fb0,0x18033edb,0x8a2f415b,0xbde8c055,0xff73fe9,0xf7043ed6,0xd0743edf,0xcd183f4b,0x46fa3fb2,0x802e3edc,0x8a415b,0xab3fc094,0xfe964022,0xf9203eeb,0x1823ecb,0x76f33f4b,0xba063fb2,0x956d3ece,0x68dc4170,0x52cec0a1,0xd09f3fce,0xd6263f3d,0xca333e66,0xb3813f21,0x71043fb4,0xde623ece,0xe6b416b,0x58e2c0d1,0xdc7b401b,0x3fb53f44,0x74f93e13,0x55003f1f,0xd3fa3fb4,0x1eb83ebe,0x1c584057,0x707640aa,0xb4104095,0x3ac3e93,0x8b3be98,0xe38f3f69,0x15db3f81,0x7143f0e,0xf6d3400c,0xfc07409e,0x5df7409a,0x6c623e2e,0x700dbe8b,0x593e3f72,0x4be43f71,0x7c2d3f0c,0xe84d400c,0x8fa140cc,0x126440a4,0x47ae3dfc,0xcac8bdca,0x72d3f7c,0xe4f73f6e,0x5a3e3f11,0x46634009,0x25e54068,0x4f75408c, 0x8d6e3e7d,0xa581bea6,0x7d393f69,0x68163f75,0x774b3f07,0x5253f89,0x3ed94061,0x74c408f,0x18213ddb,0xd0a6be43,0xc37a3f79,0xc1b13f61,0xa8b13f06,0x38523f8a,0xbea74096,0xdd5c4099,0x6767bb39,0x8e71be82,0xfd1e3f77,0x34723f5f,0x9e673f0b,0x11083fb4,0xd62640ee,0x8eac40a1,0x8c3cbd19,0xd39b3ecf,0xf5e03f69,0x79ab3f61,0x64633f16,0x251c3c49,0xa969405f,0x3e0b408e,0x59af3b53,0xf59cbdb8,0x9ad03f7e,0xab8a3f4f,0x32e3f06,0x50123c4e,0x727e401f,0xb9f24091,0x3d413b48,0x4cd93ea5,0x9ad03f72,0x41a23f4f,0xdb513f02,0xd1853f84,0xa587401b,0xdaa6408f,0xaedf3ea8,0xaa603e89,0x494d3f67,0x1e0c3f62,0x4edf3f02,0xe5a33f72,0x52113fac,0xc27340a5,0x6f9f3eb1,0x2833f11,0xf1633f3f,0x91c13f5f,0x3e793ef8,0xc97d3fc5,0x47bf410e,0x27b7404f, 0xcbeebddd,0xebb83f57,0xe6323f06,0xca63f66,0x332b3f20,0x5a333f75,0xc6094115,0x5c0a4027,0xfa583cf1,0x14033f4f,0x93e23f15,0xe72e3f5e,0xae823f22,0xd185bf81,0xdbe6401b,0xda30408f,0xaed1bea5,0x35013e89,0x9b133f68,0x1e0c3f3f,0xd6243f02,0xe5bdbf6a,0x83753fac,0x48a640a5,0x6f9fbeaf,0x94ba3f11,0x5ca73f3f,0x91c13f41,0xf5303ef8,0xfb593c73,0x5ba93fb5,0x5ba840a8,0xb5aa3b22,0xf9b03f24,0x9ad03f43,0xd9303f4f,0x6ddb3ef8,0x7edc3c97,0xe95b3ea1,0x402f40cb,0x88b93b11,0x54903f3a,0x9ad03f2f,0x72823f4f,0x420b3eeb,0xb02c3fa1,0x21814129,0x68ba3f4b,0xc76d3d51,0xb2293f52,0xda1f3f10,0x94a73f67,0x36c63f2b,0xb7cc3aa9,0x715c4127,0x5d83f87,0x7a853aef,0x44033f53,0x9ad03f10,0x975b3f4f,0x98e93f2a,0x4b22bbf3,0xc23b4144,0x4460bfd1, 0x220d3b0a,0xe0a13f42,0x9ad03f26,0x3f33f4f,0xa9263f37,0x41adbf9e,0xc53b4145,0x1c03bfe0,0xa77ebd6d,0x9bb93f42,0xca3a3f25,0x7cee3f35,0x24af3f37,0xb02cbfa1,0x37a04129,0x6d373f4d,0xc769bd42,0xc7153f52,0xa8723f10,0x94a73f3b,0xf19d3f2b,0x5a31bf71,0x2af54115,0x7cc24028,0xfa58bcd2,0x1fb53f4f,0x69e03f15,0xe72e3f42,0x73323f22,0x9ff23c01,0x78794110,0x33144046,0xeb763b00,0xc4103f4b,0x9ad03f1a,0xcb293f4f,0x1a6d3f20,0xc97dbfc3,0xea3e410e,0x2174404f,0xcbe93de4,0xbd423f57,0x50273f06,0xca63f3c,0x57693f20,0xa1e0bf8d,0x40d74172,0x5897c08e,0xf3e6bd60,0x3db23f0c,0xf8233f55,0x61b73f2f,0x1f8e3f48,0xd917c013,0xf0074170,0x83c8c08f,0x2e34be0b,0x28e3f0e,0x5fb3f52,0x1933f1b,0x817c3f48,0xa6bec023,0x115a4146,0x97c3c003, 0x2df2be03,0x8c5c3f42,0x2323f23,0x63283f22,0x9b3f38,0x3201bf89,0x5515419e,0xa741c0d5,0xf8b33b83,0x5e7e3ecd,0x8a2f3f6a,0x4863f2e,0x22e23f60,0xfbc0c081,0x94c04146,0xdbc01c,0x1b20be40,0x6eeb3f3f,0xaca83f23,0x31873f12,0x45133f39,0x9ca3bcc8,0xb1e241a1,0x9a4ac0dc,0xdff13b41,0xba163ed0,0x9abf3f69,0x3e9f3f4f,0x9b73f62,0xf74ebcf7,0x93ee41c4,0x83b7c10a,0x55953b41,0x9fc53ed1,0x9abf3f69,0x41143f4f,0x73823f78,0x6a2ebd06,0xc6fb41cf,0x689ac117,0xbf443b0d,0xbcc03f3e,0x9abf3f2a,0x4c7f3f4f,0xe1583f7f,0xa7c5bf88,0xe6cb41be,0xb8f0c103,0x732a3c1b,0xcf6e3ed0,0x9bbb3f69,0x26463f2f,0xebb3f74,0x254cc00b,0xaad441b3,0x73a9c0f4,0xfc54be28,0xe0b03ed0,0xf3ae3f65,0xf2d03f1b,0x3c193f6c,0xd60c00d,0xf4064198,0x3b7c0cb, 0x3110bdfa,0x52ca3ec9,0x25a73f69,0x39583f1a,0xa8053f5c,0x4a0bc061,0xc804193,0x8b2ac0cd,0x9b73be80,0xc7973ed0,0x1b83f60,0xc0013f0b,0x44a63f59,0xb3fac06d,0x4aef416f,0x41dfc097,0x9684be4f,0xe43f3f0d,0xedfa3f4e,0x1e153f0b,0x71e73f48,0xe6ebc0aa,0xe80e416f,0x77fec0a6,0x6b22be92,0x1d83f0f,0x86593f47,0xc4e3f00,0x4dbc3f49,0xbbb6c090,0x9e5a412b,0x5f51bd07,0xd2cebe19,0x21173f5e,0x13403ef0,0xa1553f19,0x5d833f2d,0xcd29c0b6,0x60dd4147,0x4750c043,0xfb39be6d,0x9d483f39,0x94793f25,0x7ff63f06,0xfd6d3f3a,0xa774c0f1,0xe9cd414a,0xb2ac07d,0x232ebe94,0xd7813f37,0x3faf3f22,0xe62a3ef9,0x34203f3c,0x6866c101,0x6a4d412c,0xfecebfd4,0xad1be4f,0x1cdb3f5c,0xbbf3ef0,0xb9673f03,0xb1f43f30,0xe3e7c120,0x1095412e,0x2ebec032, 0x8250be5b,0x18ad3f5d,0xbaf53ee8,0x65343ef5,0x7bc73f33,0x95d6c12b,0xa08c4122,0x5502bf59,0x2b25be0b,0xc5dd3f6f,0x201d3ea8,0xad8a3f00,0xd3973f2c,0x3407c14a,0xb64e4125,0xeb7ac004,0x6a2abe77,0x27413f64,0x3b753ec3,0x90863ef3,0x58623f2f,0x5d82c154,0x12d34115,0x37bfbefb,0xf5e3bee5,0x35a03f30,0x86983f11,0x86493ef9,0x3d863f28,0x8ca5c16f,0xb624410e,0x2511bfc1,0xfd75bf16,0x18b93f1e,0x4b1f3f05,0x89093eef,0xd57a3f28,0x72e5c172,0x88c240df,0x6de4bec5,0x560cbf1a,0x780e3ea6,0xd90e3f3a,0x4dd33ef0,0x37393f1e,0x5841c182,0x25c40c6,0x74d9bf96,0xfa5cbf45,0xe8763e94,0x361e3f10,0x5be23ee9,0x56493f1c,0x2f83c181,0xfe9b4087,0xe8ddbf04,0x80edbf20,0x55073d8c,0x5af73f46,0xc5093ee8,0x4e873f12,0x6877c187,0x88fd404b,0x5b81bf9d, 0x62b4bf4f,0x336c3d85,0x58103f15,0x925c3ee1,0xe54f3f0f,0xf5bac184,0xf303ffc,0x4a92bf8b,0x7803bf05,0xbfaabe36,0x70bd3f55,0x2e3c3edf,0x50193f0a,0x10c7c18b,0x269a3ee8,0xe849c003,0xe9a4bf34,0xde29be08,0x19b93f31,0x650a3ed6,0x8a903f05,0x2c7cc188,0xadf3bcfd,0xd3fcc002,0x1b77bee2,0x91c1be92,0xe5713f59,0x4ff83ed4,0x59b43f03,0xb7dcc18f,0x9f34bfee,0xf19c049,0x43c1bf46,0x7db9bd72,0x4bfd3f21,0xea533eca,0xf5b03efa,0x6d83c184,0xb318bf04,0x3189bfeb,0x5984bf3e,0x5df3e46,0xc6c53f24,0xe0443ed4,0x47453f00,0xef28c184,0x948ebf47,0xbf06bfbd,0x7c5bbf47,0xa4cf3ec3,0x48843efd,0x379b3ed6,0x92a73efe,0x3abd402d,0x3ef73f83,0xaecf403d,0x1db63f67,0x833c3e92,0x6b33ea1,0xa1453f8b,0xa0273efd,0xedd04025,0x5b033ed5,0x71c5406f, 0xd2e3f59,0x71fe3e9f,0xb3c43eda,0xa87a3f86,0xb6703ef5,0xeca24056,0x480fbe85,0xced04030,0xfa573f3e,0xa2123eeb,0xe393ef6,0x5a863f96,0xa39c3ef3,0x5644055,0x52fcbf85,0x7f104060,0x4af83f49,0x9f493ed2,0x8f63eeb,0xab73f93,0x48883eea,0xf56a3fe9,0xeba93f85,0x53bc4096,0xdd7f3f38,0x506d3eb6,0x4e123f18,0x8fef3f73,0xc5a43ef7,0x30cb3fd7,0x1ce73c6e,0xa6d540b8,0x9bfb3f34,0x2f543efc,0x8eda3f02,0xf493f6d,0xa9373eeb,0xbd04020,0x48a8bef7,0x57cc4095,0x2fee3f51,0x874e3ecd,0x3ac53ed3,0xada33f83,0x83a93eea,0x6b0e401f,0xd029bfc6,0x6cb140ba,0x957a3f4f,0x3633ee0,0x1da83ec7,0x63453f80,0xbce63edd,0x6604085,0x9eabfbb,0x349f4032,0x247f3f0b,0xad53ef9,0xe58a3f2f,0xa43f9e,0x9c973ee9,0x45e94080,0x47aec015,0x70a54066, 0x81233f23,0x2553eff,0x5213f16,0xa8b93f9b,0x88b13ede,0xf0954054,0xd0afc03f,0x13be40b5,0x6823f4f,0x21e3ef2,0x13cf3eb3,0x8f603f8b,0x47c73ed1,0xa3554054,0x7ee7c002,0xb1104091,0xdc493f4e,0xf0973ede,0x22e3ecb,0xc7473f8f,0xa2903edd,0xd46b3f5a,0x60913e83,0xef0940c8,0x4593eb8,0x84793f2c,0xef463f25,0x55ef3f5c,0x9d063eeb,0x171a3f50,0xed48bf5a,0x57af40f0,0xc1f43ebb,0x344d3f34,0xfc9c3f1b,0x5a5c3f5a,0xabac3edd,0x3f923fd0,0xbd9dbf8a,0x343040df,0xc95f3f33,0x94c83f08,0x7a143ef2,0x4e4d3f69,0x79423edd,0x30733fcf,0x3fa0c008,0x810b4104,0xc4f83f2d,0x35573f13,0xb0533ee9,0xd34e3f66,0x29e13ecf,0x2b564021,0x1fffc025,0x738d40e2,0x229d3f4b,0xb623efb,0x68ad3eb7,0x36eb3f7b,0x963a3ed0,0xb0184024,0x8a1bc057,0x9fd34102, 0x36cd3f36,0xebf73f1b,0x140e3eb3,0x96203f78,0x89e73ec5,0xa6f840a4,0xfd5dc022,0x251403f,0xc8d13e90,0xf2683f16,0x8beb3f41,0xfd653fa4,0x4e6a3ede,0xb485409c,0x7586c064,0x2c1d407f,0x268b3ecf,0xd8783f29,0x64563f21,0xa66e3fa0,0x13b63ed2,0xa76e4072,0xb83fc066,0x74d540b1,0xa1f33f21,0x67a93f34,0xdb493ea5,0xd8123f90,0xa6723ecc,0x8ba44076,0x55c7c047,0x75774092,0x225b3f31,0x63673f10,0xd8f93ee6,0x7bee3f95,0xff973ed4,0x21c94074,0xd8d1c087,0xc6db40ec,0x245d3f13,0xa443f45,0xb6e53e8b,0xfbca3f89,0x4c1b3ec0,0x3b6d4058,0xcb3ec069,0x1b3b40d6,0xccec3f33,0x2aa3f29,0xd673e88,0x61e93f88,0xd0a93ec8,0x18f64177,0x3954c0eb,0xc0f03f9f,0x4ad33f69,0xbf73bd24,0xe38a3ecf,0x14833fb6,0xd603ebc,0xc7b64170,0x4c1fc111,0x8f234007, 0xede43f69,0x666fbd73,0xb09f3ecf,0xebc83fb6,0x4ed3ea9,0xd78b4175,0x1b2ac125,0x6b33f36,0x93d13f75,0xe155bdf6,0xaec53e86,0x33513fb9,0xa2c43ea4,0xa5824169,0x6bbec131,0x705a402a,0x92413f65,0xca3abd9a,0x2ccf3edf,0xf6d73fb7,0x31483e96,0xa7a34160,0xe2cc11f,0x9a034067,0xa28c3f3b,0x2c2fbc16,0xb19a3f2e,0x33f43fb4,0x33d3e9d,0xa4424166,0xb856c102,0x5d794049,0xe35d3f43,0xbc793d72,0x34223f24,0x50c63fb4,0x7c1d3eae,0x740c4156,0x58d6c0f1,0x4fb84077,0x37a93f00,0xcb153e48,0x29e93f57,0x15163fb2,0xcb963eb1,0xae734159,0x7660c0c0,0x48834050,0xc22c3efa,0x2b223ea1,0x2c993f50,0x420f3fb2,0x40ce3ec0,0x29224141,0x7c0c0ba,0x9dc54070,0x107a3e7b,0x189a3ec8,0x5c3e3f63,0x42b73fb0,0xf8b93ec0,0xa240413f,0x11cbc08e,0x64994046, 0xb9b73e67,0xf4f73eee,0x855e3f5a,0x36093fb0,0x53f63ece,0x63ef411e,0xd628c08a,0x41974058,0x56f13e08,0xb3023efa,0x4a9d3f5c,0x53003fae,0x9d943ece,0xa49c411a,0x5532c040,0x61624028,0x61b03de9,0x8d573f00,0xb1573f5b,0x40293fae,0xcd943edc,0x5b9a40ed,0x718bc080,0x33424062,0x61803e37,0x6b13f06,0x74f33f55,0x7f023faa,0xb28c3ed0,0x143e4103,0xc305c0b4,0xa9a4408a,0x50d73e73,0x5fbe3f01,0x39753f54,0xd8063fab,0xf9dc3ebf,0xd7eb4123,0xe679c0b7,0xc1e64081,0xdf3f3e20,0x8faf3ed3,0x5c813f65,0xcd253fae,0x8dd73ebf,0x5b8c4128,0xbd4dc0e7,0xd1f54093,0xb2db3e52,0xe3733ea8,0xbdfd3f6b,0x22533fae,0xd983eb1,0xabb44141,0x5d70c0e8,0x22424089,0x6c363e8b,0x4c4e3e8b,0x7eb73f6c,0xeb643fb0,0x35ff3eb1,0x9eb7413f,0xdb7fc10d,0x58b24095, 0xb9403ea2,0x5b7f3e22,0xa703f6f,0x9203fb1,0x139a3ea3,0x7b4c4152,0x3578c113,0x9c024088,0x9be73efa,0x90453d8a,0xb04b3f5e,0x693c3fb2,0x41873ea1,0x4c7c414d,0xb7b9c130,0x6ddf408e,0xd1313f00,0x7103bc17,0xb7843f5d,0x4f483fb3,0x72983e91,0xe0ba415a,0xbbf9c13e,0x20c94075,0x1ef63f2c,0xa2b6bd90,0xbc233f3c,0xb9ae3fb5,0xcf103e8b,0xa3bbc005,0x955141ba,0x1294c104,0xb8f1bf3c,0x6013f1e,0xad603e8d,0x16723f1a,0xf883f72,0xdbe2c05a,0x745141a9,0xea28c0f0,0xea3ebeb3,0x3c1e3ed6,0x7b893f56,0xc3b53f0c,0xba973f67,0x9733c0a1,0x62c5418f,0x2f7cc0d7,0x5e80beac,0xf2c33eda,0x9e5e3f56,0x5c033efe,0xe2e13f58,0x264dc0e4,0x5e0b4172,0xcf1fc0c1,0xc371beb4,0x8f443f0f,0x8b3b3f3f,0x211d3eee,0x1dfc3f4b,0xed25c118,0x2344414b,0x798ac0a1, 0xd711beba,0x32a53f35,0x80d43f1a,0x266c3ee9,0xa93d3f3f,0xacc136,0x46f64148,0x87d1c0c3,0xc703becc,0x6b053f43,0x130e3f01,0x3153edd,0xc9b13f40,0x16d0c12f,0x7b054162,0xee4ac0f9,0xd2b8bf07,0x823e3f10,0xa073f21,0xfc2b3ed4,0x7b203f49,0x45d9c14a,0x4f354153,0xcb76c106,0xf728beec,0x40973f14,0xaa763f2b,0x1ac13ecc,0x83f23f47,0x5455c13f,0xb04133,0xc01dc081,0x35c8be42,0xdbe63f63,0xfbca3ed6,0xd03e3ee8,0x39bf3f36,0x69b6c159,0xdcdd4135,0x6b93c0a7,0x5e79bebc,0xda3d3f5e,0x11943ea9,0x8a013edf,0x99ed3f39,0x65ecc150,0xbe54142,0xfaf7c0e1,0x9945becd,0xebc13f55,0x51db3ec0,0x2e453ed4,0xe97b3f40,0xa0c5c161,0x1df5413e,0xff77c0f6,0x2f09bf05,0x96da3f41,0x2cd83eca,0x5a2d3ecf,0x25aa3f40,0x6668c146,0x827e416f,0x8511c111, 0x31d9bec3,0xf5293ea9,0xaa323f5c,0xdad73ecc,0xdbba3f4f,0x948dc15a,0x551e4163,0x608bc114,0xd815bece,0x4b363ec1,0x21a73f55,0x58e3eca,0xa09c3f4d,0x7d05c15d,0xc9b1414d,0x6858c10a,0xd6fabec6,0x8a6f3f11,0x7bf63f39,0x10cf3eca,0x16643f46,0x72adc16c,0x69454145,0x8b82c10d,0x6288bf2c,0x7c163ef6,0xb7803f0f,0x37723ec8,0x27d43f44,0x5eb33cb9,0xa02ebf4c,0xff8640f4,0x69053b08,0x614a3f43,0x9ad03f25,0x68833f4f,0x4edb3edd,0xd303cdb,0xee34bfed,0x6e2a410e,0xf7153b05,0x15ee3f46,0x9ad03f21,0xd34e3f4f,0x3a713ecf,0x171abf45,0x174ebf5a,0x548040f1,0xc1efbeb9,0xcea83f34,0x49413f1b,0x5a5c3f45,0x59603edd,0xd46bbf51,0x8ce33e83,0xc99440c8,0x458beb6,0x1ccb3f2c,0xb54a3f26,0x55ef3f43,0x8c3b3eeb,0x4192bfd3,0x75603c6e,0xce3140b8, 0x9c00bf33,0x59e73efc,0xe5003f03,0xf493f37,0xce4a3eeb,0xe9643f4d,0x14f5bff3,0x8513410d,0x93933ebd,0xf5d53f38,0xb8133f15,0xc5053f59,0xc6973ecf,0x38d63f4b,0xa41cc035,0x996f411f,0x74863eb5,0x16163f3a,0xc7c13f16,0xbbe83f58,0xeaff3ec3,0xf56abfe5,0x4b923f85,0x56704097,0xdd7dbf37,0x80f33eb6,0x58793f19,0x8fef3f34,0x58a33ef7,0xed4ac024,0x6c593ed5,0xbbac4070,0xd2cbf58,0x413e3e9f,0x3e3a3edd,0xa87a3f26,0xad213ef5,0x44cc3fcf,0x8998c041,0xe66d4116,0xd0ec3f26,0x33093f1a,0xb44a3eea,0x243e3f64,0x3fff3ec4,0xd2af3fdc,0x838ec07f,0x4fc4129,0xe1593f0d,0x50ce3f2d,0x3ec93ef8,0x92b03f64,0x9e1b3eb7,0x3abdc02c,0x5db33f83,0x27c8403e,0x1dc8bf67,0x81f03e92,0xfb833ea4,0xa1453f21,0xa9503efd,0xf3f14035,0xd3ddc084,0xf5624112, 0xef0a3f1b,0x251a3f35,0xc73b3eb4,0x42893f78,0x43c43ebb,0x7b534060,0xeab8c0a5,0x79e84122,0xa1013f0c,0x64703f35,0x4d6a3ee2,0xfe2e3f7f,0xd71f3eae,0xece5c055,0xab15be85,0x1794031,0xfa59bf3e,0x19053eeb,0x40813ef9,0x5a863f17,0x74bc3ef3,0x585c054,0xb3f2bf85,0xbad64061,0x4aeebf48,0x39983ed2,0x37583eee,0xab73f1a,0xffa03eea,0xbd0c01e,0xcd0cbef7,0xa7794095,0x2fffbf50,0x3bab3ecd,0xc4003ed6,0xada33f29,0x5dc03eea,0x6aecc01d,0x5363bfc6,0xc6bd40bb,0x9577bf4e,0xb1913ee0,0xa243ec9,0x63453f2d,0x6bb13edd,0x3f92bfcb,0x12f3bf8a,0x6a4340e0,0xc95dbf32,0xe5553f08,0x8f2a3ef4,0x4e4d3f3a,0x2b3d3edd,0x307fbfc9,0x69f0c008,0xbef64104,0xc4f2bf2c,0x72f83f13,0x75713eeb,0xd34e3f3c,0x49453ecf,0xe964bf40,0x2991bff3,0x935b410d, 0x938dbebb,0x91ff3f38,0x57113f16,0xc5053f46,0x55a83ecf,0x38d6bf3c,0xb868c035,0xa7fe411f,0x743cbeb3,0xabd23f3a,0x226c3f16,0xbbe83f47,0xe703ec3,0xce184129,0x1006c10b,0xa67940a1,0xb9cd3e84,0xbbb23e61,0x503c3f70,0xc6473faf,0x3c973ea2,0xa41b4127,0xf395c123,0x93f740aa,0xef673e97,0xb6b3e0a,0xbdd3f72,0xf41f3fb0,0x12ef3e94,0xc5ab4111,0x69ecc10b,0x19440ae,0x1cc63eaa,0xdbed3e4f,0xd6803f6b,0x53153fac,0xd2fe3ea1,0xefa6410f,0x9a07c0e9,0xb7a340a0,0x74d13ea6,0xdd313eca,0x40293f5b,0x8893fac,0xe8963eaf,0xe3d440f5,0xa412c0e5,0xb49540b5,0x16613f1c,0xef783f01,0xdabe3f1b,0xc9e63fa7,0x4ae83ead,0x1c86413c,0x10fc128,0x84a5409e,0xb8683ebb,0xa25a3d84,0xf1e13f6d,0xfdf83fb1,0xdd343e93,0xfcb64138,0x5135c142,0x409c40a2, 0x98af3ee0,0x13143cad,0x26d03f66,0x2b6f3fb3,0x1c173e85,0x9c5440d1,0xfd80c0ae,0xd6b2409d,0xdb083f02,0x46043f27,0x4e093f0e,0x2f343fa5,0x5f0b3ebf,0x2e7140b5,0xf9eac0a7,0xa20b40c6,0xcc593f20,0xc22c3f3c,0xded3e7f,0x9eaa3f9c,0xee953ebc,0x8327408a,0x8a03c082,0x1a6040b6,0x83593f0d,0xa8d13f45,0x16553ea2,0x3fd53f95,0xd4393ec8,0x8d3b409c,0x4fbec0a2,0x15f84100,0xb1ae3f08,0x10fa3f4c,0xd9a13e8f,0x74693f8f,0xa783eb7,0x3afb40bd,0x645ec0bf,0xfbb54107,0xee9f3f30,0x14373f1a,0xfcbd3eca,0x36f43f94,0x11f53eae,0xb3f440dc,0x8bcec0d0,0xb0e740d8,0xfc133f46,0x8feb3f14,0x89443e78,0x924b3fa0,0xbe0c3eaf,0x721d40e2,0xc393c0ee,0x76db40e0,0x9dd53f4f,0xe7f4bc98,0xaef73f15,0xb7aa3fa1,0x666b3ea6,0x105a40f9,0x36a4c107,0x2d9940c2, 0xd4ee3f23,0xfa453d26,0x89a03f44,0xa6b53fa8,0xc46b3ea1,0x3676410d,0xc8d4c120,0xc34140b7,0x615c3e96,0x98f73e31,0x5be63f70,0x5ffe3fad,0x39833e95,0xd02410c,0x4cd5c134,0x59ae40c0,0x53fc3e92,0xfb183e21,0xc283f71,0xd7343fae,0xd9333e89,0x86fd4124,0x7cf6c13a,0xac7a40b2,0xf8433eb3,0xddd73ded,0xe5e63f6d,0xe6d63fb0,0x76b23e87,0x944a4122,0x8bd0c14f,0x1cff40b9,0xdccb3ed5,0x75843e02,0xae3e3f66,0xc3933fb1,0x91fd3e77,0x2f1740d1,0x38c9c102,0xd71240e5,0xbe463f02,0xe219bee1,0x99bf3f3c,0x609a3fa0,0x9a93ea0,0x85e840c5,0xfef4c0d5,0xa46e4109,0xf9a43f52,0x6d95bc81,0xa3f93f11,0xaede3f96,0xba7c3ea7,0x53aa4083,0xe914c0c6,0x5197412e,0x36603f1e,0x43333f0c,0xc7b03f10,0x8da43f82,0x15553ea3,0xa8204000,0xf466c0a9,0x5eef413f, 0xd6113f07,0xb7d13f23,0xda163f0e,0x70373f65,0xa5403ea7,0xe3763f52,0x83b0c077,0xfb4a4133,0x67383eaf,0x98e53f36,0x588a3f1c,0x6b1e3f58,0xd783eb6,0xcab03cfa,0x7d31c031,0x5b144121,0x9ab3b06,0x39753f46,0x9ad03f22,0xca323f4f,0x25893ec3,0xe37abf41,0x9896c077,0xf5ba4133,0x66efbead,0x29893f36,0x81953f1d,0x6b1e3f47,0x12e3eb6,0xd2bfbfd4,0xb050c07f,0x40074129,0xd96dbf0c,0x23773f2d,0x2ec33efa,0x92b03f3e,0x6cb93eb7,0x44ccbfc8,0xb3d9c041,0x24084116,0xcfd8bf26,0x5c343f1a,0xda8c3eec,0x243e3f3d,0x7a3a3ec4,0xb029c021,0xcda0c057,0x12394102,0x2ba7bf36,0x4c743f1b,0x8d473eb6,0x96203f31,0xb9803ec5,0xa822bff6,0x2876c0a9,0x80bf4140,0xcd92bf06,0x92fc3f23,0xba63f0f,0x70373f3d,0x39a43ea7,0x7b5bc05c,0x46c3c0a5,0xec5c4123, 0x8244bf0b,0x23f13f35,0x8cd23ee4,0xfe2e3f2d,0x1b7a3eae,0xf3f3c032,0x1e5bc084,0x754c4113,0xdbd4bf1b,0x2aa23f35,0x27d43eb6,0x42893f31,0x1e153ebb,0x21c2c072,0xa287c087,0xb0b240ed,0xe30cbf13,0xd7a73f44,0x46243e8c,0xfbca3f23,0x81b23ec0,0x2b56c01e,0xa464c025,0xdadc40e2,0x227cbf4a,0xac973efb,0xac4f3eb9,0x36eb3f2f,0x730c3ed0,0xf095c052,0x7fdac03f,0x7e5d40b6,0x67dbf4e,0xaf403ef2,0xeebb3eb5,0x8f603f21,0xc92e3ed1,0x3b6dc055,0x7d5dc069,0xbcd340d7,0xb40cbf32,0x6a283f29,0xe69f3e8a,0x61e93f24,0xb783ec8,0xa769c070,0x7fedc066,0x603240b2,0x4934bf21,0x38f53f34,0x55003ea7,0xd8123f1c,0xd1413ecc,0x9ef44154,0x2370c15f,0x9da84078,0xaf733f28,0x9364bda0,0x3ce63f3f,0x3d043fb7,0x67303e74,0x7a54415e,0xab97c175,0xe9704043, 0x38d53f4d,0x8560bdaf,0x92753f16,0xb9d43fb9,0x7c253e62,0xf129415a,0x794ac189,0xfc9b404b,0xd5e63f52,0xb1ae3d12,0xc08b3f10,0x67a93fba,0xb54d3e41,0xdf114148,0x147dc14e,0x891f4090,0x4e713f06,0x5bdbbd5d,0x32be3f59,0xd7bf3fb5,0x318c3e80,0x32c44145,0x33bcc16b,0xd6a4091,0x35993f1a,0x758b3b0f,0x9af63f4c,0x33b93fb6,0x9dc33e63,0xa4a44150,0xf651c17d,0x14664079,0x33e3f31,0xc6d2bcc1,0xa59c3f38,0xfe193fb8,0x28993e53,0x5a0d414f,0x732ac18a,0x79514083,0xb51a3f42,0xd49b3dec,0x62fa3f23,0xf05f3fb9,0x32e03e39,0x54844165,0x515dc197,0x8567400f,0x1f213f60,0x3ad53e09,0xe803eec,0x7e913fbd,0xbac13e2b,0xfd7f4165,0x9baac1a1,0x6721403c,0xe0833f5f,0xdd5b3e9d,0xd1203ec1,0xb2ab3fbc,0x28133e0f,0x54a0415a,0xc750c19e,0xf1ea4081, 0x86343f4b,0x5e103ea3,0x10ba3f03,0xa3ba3fbb,0xb5a83e0f,0x67754159,0x120ec195,0x49804062,0xd1b93f52,0x93a03e37,0x2b883f0a,0x6be83fbb,0xd1573e26,0xcf934135,0x35e9c15b,0x373240a6,0xc3f13f07,0x12c53d37,0x4bba3f59,0xfaa43fb4,0xbc03e6e,0x25754134,0x1935c170,0x617140ad,0x69863f17,0x3a7f3df1,0xfd763f4c,0xbdcf3fb4,0x78e13e57,0xa3ac4143,0xfd72c180,0x8e5b4096,0x55963f2c,0xf1a03da7,0x66273f3b,0x58b43fb7,0x67d73e4a,0xc0c34142,0x4b16c189,0x6123409f,0x2aff3f30,0x24c3e10,0xd5913f36,0xb0f3fb7,0xc1b03e35,0x9af3414e,0xec18c193,0xb526408d,0x76693f3b,0x38633e41,0xabb93f27,0xdab63fb9,0xb8e63e23,0xc946414d,0xd84fc19b,0x3126409a,0x74d33f23,0x753b3e5b,0xba5e3f3d,0x83be3fb9,0x62dd3e0f,0xd28b4172,0xec7c1ae,0x958d402e, 0x84f13f56,0x93143ee8,0xbf9c3e9a,0xccf33fbd,0x68e3deb,0xa45a4174,0x59a3c1b5,0x6d674080,0xb7943f4b,0xf8c33f03,0x66ba3ea4,0x4c9d3fbc,0xd2873dbc,0xdcad4166,0xcb7c1a9,0x6d884077,0xfd1c3f4e,0x8d593ee1,0x9143ec9,0xc88a3fbc,0x7e33df0,0x7c3d4167,0xfba0c1b0,0x765e4099,0x351f3f35,0x53173f00,0x1a433efe,0xf47b3fbb,0x68533dc6,0x42bf4158,0xe23fc1ab,0xb60240a2,0x3a603e34,0x6ff33e64,0x807c3f75,0x58973fba,0xe7bb3dd9,0xed404159,0x3c5c1a5,0x8cb24096,0x6a623f23,0xb6683ec4,0xae213f2a,0xd7883fba,0xd5013df5,0xabd8414b,0x90b4c1a1,0x765940a1,0x82d73d76,0x1146bd77,0xef313f7f,0x754b3fb9,0xc6f03e01,0x50e5413e,0x934bc198,0x35840aa,0xcc843e67,0xfc65be60,0xad923f72,0x72a43fb8,0xdaf83e13,0x22fd4140,0xf612c192,0xfe3040a7, 0x109f3f17,0xf26b3da6,0x2d733f4c,0x37f43fb8,0xad8a3e21,0xd154131,0xd9e6c189,0xef4840bc,0x77db3f15,0x601c3dac,0xdd233f4e,0xfe2a3fb5,0x8faa3e2f,0xadc411d,0xa8d2c187,0x95d940d4,0x40ab3e7b,0x2323be7a,0x9ee93f70,0x4143fb3,0x142c3e2f,0x2eca4130,0x829dc18f,0xf6d40be,0x27683e94,0x6059be8f,0x77473f6a,0x89123fb6,0xe2f93e22,0xd72c4132,0x3aaec180,0xd46740b5,0x1cb03f1c,0x3d033e0d,0x70c53f47,0x37653fb5,0x612b3e43,0x7922411f,0xbc99c172,0x122a40ca,0xb4703ef7,0x41603e3b,0x93e23f5b,0xb2073fb2,0x993a3e4e,0x1ab0411e,0xa51cc181,0x1fb940d2,0x78233eec,0xcbea3e02,0xfd763f60,0x23fb3fb2,0x6a33e3c,0xbde64106,0x7903c175,0x928640e2,0xb72e3ea2,0xed3b3e13,0xc1943f6f,0xf6fd3faf,0xc5b3e45,0xaa734105,0x5007c180,0x97a040e4, 0x53173e2b,0xc83fbe65,0x80f13f75,0x2f2b3fb0,0xa7823e39,0xe98e4120,0xfff1c161,0xe54b40c1,0xbdcd3ef0,0x94a83e2f,0x310e3f5d,0x50f83fb2,0x126b3e62,0x2ec14109,0xeb33c157,0x5cc40d1,0xf3933eac,0xb4b23e5c,0x5103f6a,0x43783faf,0x107a3e6a,0x9eb94107,0xd291c166,0xad0a40da,0xc7e3eae,0x53bc3e5b,0x4f053f6a,0xce963faf,0x2ecb3e57,0x3e1140db,0x6511c15e,0xcad640e6,0xdff73e81,0x905a3e7a,0x40ff3f6f,0x368f3fab,0x4d13e5e,0x2b4f40d8,0x59ecc16d,0x72ea40ee,0xf1fc3e80,0xa5943e1d,0xaaa43f74,0x82e03fab,0xbfd53e4c,0xa8a940d5,0x5934c178,0xe8e140f0,0xa63a3e2e,0xe3f7be4e,0x8a933f76,0xcdab3fac,0x32513e3f,0xf54140a9,0x4c27c168,0xb6e740f8,0xe9b73e77,0xa0603e54,0x52483f72,0xd41b3fa6,0x61ac3e4e,0x750540d2,0x2d25c17d,0x490c40e8, 0xf9f4bdb0,0xefabf58,0xfd2f3f06,0x80413fad,0x39173e3c,0x162a4103,0xc91bc183,0xd9d040db,0x3cf0be4d,0x3a6bbf51,0xb4fe3f0a,0xea253fb1,0xbff03e35,0x9e8c40a6,0xa544c174,0xf9ca40fb,0xc1ec3e7f,0x576dbe26,0x28bf3f74,0xa32b3fa7,0x7e1e3e41,0xa31d40a3,0x198bc179,0x235f40f4,0x63bb3db8,0xd6fabf58,0xe17a3f06,0xf6123fa8,0xdb9c3e3d,0xcbd44075,0xb9f3c174,0x81a74104,0x59233eb5,0x69e9bdab,0x892b3f6e,0x68e43f9e,0x1b313e3e,0x9a27410b,0xbfb8c146,0x7b2640c8,0xa59a3ea2,0x18e93e50,0xac193f6d,0x83fae,0x38693e7e,0xa11340e6,0xfaa4c13f,0xa20340d2,0xbf593e68,0xbe8c3e73,0x10d43f71,0x99fe3fab,0x3be63e81,0x21f640e1,0xb03cc14f,0xed140dc,0xd2b83e77,0xceb93e81,0x348b3f6f,0x7f673fab,0x37243e70,0xf00840b5,0x243cc148,0xe98040e2, 0x83473e46,0xe4da3e94,0xb8303f6f,0xee133fa6,0x30943e75,0x857940e6,0x34bc12f,0x80f440cb,0xf6523e50,0x2eb83e0b,0x65f93f78,0x15b53faa,0xae493e8b,0x68fd40bb,0x65b0c139,0x433340d7,0xb4633e32,0x56863e83,0xf2c73f73,0x71f83fa6,0xee523e84,0x5a054088,0x9df9c145,0x12ca40e8,0x4aa93e66,0x39d93e9a,0xa12b3f6d,0x59863f9f,0xe6a13e78,0x18bf4080,0x89c4c158,0x547a40f7,0xb9603e7d,0x7ddb3ea1,0x5fd03f6a,0x6ab3f9e,0x38d63e61,0x761f40ad,0x5c6ac159,0x24ce40ee,0xca3e3e5d,0x3edc3e90,0x391d3f6f,0x943a3fa6,0x1e583e61,0xad08407a,0xf71c168,0x55a74102,0xdeb03e94,0xfb8d3e83,0xe9643f6b,0x88613f9d,0x29993e4c,0xe3f64022,0xd0a5c16b,0x16fb410a,0xe0a23e9c,0xae4f3e9d,0x8a053f66,0x3d213f8e,0xbf6a3e45,0xf7c54025,0x5f14c159,0xb64e4103, 0xe8363e87,0xd5013eae,0x30e83f66,0xae473f8f,0x4b493e5b,0x8c8a3fad,0xcabac15e,0x5c59410a,0x5bef3e47,0x91e33eb8,0xdccf3f69,0x84ba3f77,0xa2a13e53,0x411a3fae,0xad5c147,0x1fda4102,0xf1153e74,0x2fb93e3a,0xab973f74,0x470b3f77,0x6a013e70,0xb6a53f0e,0xf8a5c14a,0xba6c4104,0x80913e17,0x35da3e1a,0x8d543f7a,0x4d053f5e,0x279e3e6b,0xc6af3f0a,0x2e80c132,0x66a14108,0xcaf63eba,0xdf07bf17,0xb0603f37,0xb6913f5b,0x37503e81,0x666b3cd0,0x3c6ec133,0x6e204108,0xab363b26,0xe5c0bf1e,0x9ad03f48,0x5fcc3f4f,0x485a3e81,0xbfbe3d00,0x6b7ec123,0xac2f4125,0xff173a9c,0x9c9cbf6d,0x9ad03ebc,0x3ce63f4f,0xda013e83,0xafc2beee,0x7616c123,0x486b4125,0xa8dfbe73,0xc882bf67,0xd2c3eb4,0x44803f48,0x3c583e83,0xc5d44020,0x8271c178,0x76a6410e, 0x37813ee2,0x97c7bba6,0xf7a13f65,0xd80e3f8e,0x82e03e35,0x7f773fae,0x682fc172,0xc1924113,0xa26d3e61,0x67863eb6,0xeb5b3f68,0x63fa3f77,0x247d3e3a,0x603a3faf,0x2cc5c180,0x32a64118,0x785e3ed7,0x897a3d95,0xc0383f67,0xde13f78,0x82dc3e29,0x7daa401c,0x6817c17e,0xf094410b,0x822c3ef9,0xfe46bf38,0x7643efb,0x1f0c3f91,0x83883e31,0x64f73f18,0xd486c17c,0xbced4118,0x96d63d45,0x7b263ebd,0xcbe63f6d,0x6e8b3f5f,0xaa763e2d,0xa355c052,0x2e0ec002,0x7104092,0xdc3dbf4e,0x9c3c3ede,0x1ee63ece,0xc7473f1e,0x193edd,0x45e9c080,0xf0c7c015,0xbb354067,0x55bf22,0xfd8e3eff,0x3d713f16,0xa8b93f12,0x4ba53ede,0x681c085,0xc44cbfbb,0x209a4033,0x15d9bf0a,0xea253ef9,0x22703f2f,0x823f0e,0x6293ee9,0x8ba4c075,0x2168c047,0x3dd74093, 0xab6cbf31,0x35fc3f0f,0x75323ee8,0x7bee3f17,0x57cd3ed4,0xb485c09b,0xbce6c064,0xffea4080,0xbd55bece,0x54403f28,0x88403f22,0xa66e3f0c,0xe8733ed2,0xa6f8c0a3,0x1d7ac022,0x41484042,0x7b84be8e,0x81163f16,0xb6673f42,0xfd653f07,0xc6393ede,0x8327c089,0x6f35c082,0x48cb40b7,0x120dbf0d,0x2b853f45,0x3ac93ea4,0x3fd53f18,0xc6b53ec8,0x2e79c0b3,0x250bc0a7,0x440f40c8,0x2a55bf21,0x6c4e3f3c,0x3a603e80,0x9eaa3f11,0x22813ebc,0x8d3bc09b,0xd0f1c0a2,0xac64100,0x7b0abf08,0x726b3f4c,0x562a3e90,0x74693f1d,0x226e3eb7,0x3b08c0bb,0x18c0bf,0xdc554108,0x9c7bbf30,0x7c7b3f1a,0x59213ecb,0x36f43f18,0x847f3eae,0x53aac081,0x5546c0c6,0x9a51412f,0x17d4bf1d,0x28d63f0c,0x3f463f11,0x8da43f2a,0x12493ea3,0x862dc0c3,0xa125c0d5,0x54cb410a, 0x8dc3bf52,0xec18bbee,0xb7453f11,0xaede3f16,0xa6d73ea7,0x7326c0e0,0x37dac0ee,0x43ca40e2,0xf4c9bf50,0xc955bc9d,0x1de73f14,0xb7893f0b,0x608d3ea6,0xe439c0f3,0x38b9c0e5,0xac240b7,0x7c1dbf1e,0x14f33f00,0xb2353f1b,0xc9e63f03,0xefe3ead,0xb437c0da,0xf64dc0d0,0x67ad40d9,0x2b66bf47,0x34e43f14,0x69513e77,0x92293f0c,0x3b103eaf,0x9c5cc0cf,0x565ac0ae,0x9419409f,0x523abf03,0x387c3f27,0xe0b13f0e,0x2f343f06,0x58973ebf,0x1444c102,0x7521c0b4,0xf03a408c,0xbb4be71,0xa9493f01,0x53653f54,0xd8063efe,0xf7413ebf,0x6332c11c,0xee57c08a,0x76d405c,0x793abe04,0x1ac93ef9,0x434a3f5d,0x53003ef5,0x4f13ece,0x5b9ac0ec,0x8277c080,0x98c34065,0xf4d1be33,0x7c1d3f05,0x32013f55,0x7f023f00,0xcd133ed0,0xa401c119,0x547ec040,0xeffe402c, 0xe5ffbddf,0xf5333eff,0xf20a3f5b,0x40293ef3,0x2f763edc,0x4dac13c,0x35e7c04a,0xa49f401c,0x87cfbe51,0x298d3ef6,0xf6163f5a,0xeb9e3eec,0x8b353edb,0x6eadc139,0x3adac002,0xeea03fee,0x167dbe3e,0x52223eca,0x5c9a3f66,0x88763eec,0x90ef3ee7,0xfa8bc158,0x555cc00f,0x55af3fb2,0x8511bec2,0x898e3ea7,0xea893f5d,0x69a93ee5,0xa8da3ee7,0xa30ec156,0x8ef3bfba,0x4503fa1,0x4574bea9,0x505e3e36,0x66413f6d,0xa3593ee7,0x99193eee,0x2dcbc170,0xeeafbfd1,0x18123ee8,0x90aabf13,0xb73e01,0x5b183f4f,0x66c3ee0,0x12c43ef0,0x9ecbc16d,0xac3fbf70,0x78813eff,0xc156bf08,0xd69c3e8c,0x9c133f4c,0xcb363ee2,0x47c13ef5,0x3ec0c180,0x14f9bf8e,0x33d1bf08,0xbfadbf39,0xf5c03e7d,0x3d083f24,0x3253edb,0xf9563ef8,0x1438c179,0x4739be9e,0x6429bf0d, 0x1a24bf2b,0xd1313ece,0x44783f1f,0xeefa3edd,0x6e0a3efe,0xf948c188,0x2f06bfc7,0x5f89bfe8,0xd5b9bf52,0x97013e4c,0x730c3f08,0xbc383ed2,0x6e303ef8,0x39f3c18a,0x6291c015,0x924ac005,0x8295bf5a,0x4385bbe8,0x8463f05,0x20fb3ecf,0x93703ef3,0xe558c182,0x6673bff0,0x727ebf2f,0x8526bf41,0xc9ec3dc8,0x51653f25,0xfadb3ed8,0x48683ef1,0x224fc183,0xa9ebc035,0x2485bf35,0xef22bf4e,0x54133d3d,0xc28f3f17,0xf85d3ed5,0x74c93ee9,0x3b64c172,0x60c01f,0xbda73f01,0xaa9bf1a,0x68f3e61,0x596d3f44,0x8f863ede,0xba4e3ee8,0x35adc171,0x121c06a,0x74773f7b,0x3cb6bf2d,0x3a403e7e,0x4a9d3f31,0xdc013ede,0xb1973edc,0x84bec159,0x265bc055,0x55c43ff5,0x55f6bed4,0x84763edb,0x527a3f4d,0x46fa3ee6,0x71d63edc,0xf9f8c159,0x7297c093,0x5b0b4028, 0x797abeea,0x97853ec7,0x8f043f4c,0xba063ee7,0x2b5e3ece,0x9f47c13e,0x1230c08e,0x31e8404b,0xbadabe64,0xb5003eec,0x2e2c3f5b,0x36093eee,0xf1943ece,0x2529c13e,0x13e4c0ba,0x8f074075,0x48c1be78,0xb2323ec6,0xc2273f63,0x42b73eee,0x1c963ec0,0xd6ebc122,0x512c0b7,0x196d4084,0xe9b3be1d,0xf0a73ed2,0x1c3b3f65,0xcd253ef5,0x4be83ebf,0x5aa1c126,0xea38c0e7,0x74d44095,0xd33dbe50,0x2ce43ea7,0xf7cf3f6c,0x22533ef3,0x4f1a3eb1,0x911dc190,0xdae8c038,0x816c05d,0xd576bf5c,0x9fa5bdf1,0xb703efe,0x571d3ec6,0x12483ef3,0xf455c165,0x41b34124,0x243bc051,0xe0bcbee5,0x66153f50,0xea183ebb,0xa2a53ee8,0xb9de3f31,0xea74c175,0xc6ac411d,0x771dc08a,0xc7a7bf34,0x433d3f2c,0x37723e5f,0xa9543ee0,0x63023f31,0xd3dfc169,0x75c54130,0x9886c0c8, 0x6118bf21,0x838c3f3e,0xf36f3e61,0x222d3ed6,0x24293f3a,0x946bc174,0xbbe04127,0xb4c3c0e4,0xe836bf4b,0x5f733f16,0x865d3e0e,0x3dc93ecf,0x64e33f39,0x7f07c180,0x37ca4104,0x88c7c01d,0xaffebf48,0x6cd93f01,0xe0b3eb8,0x89503ee7,0x59303f27,0x11a1c186,0xfe2240ed,0x6aa3c059,0x3742bf64,0x1c103eca,0xc563e60,0x81063edf,0x74e73f25,0x17dc180,0xc6584112,0x1a4bc0aa,0xc3dbf56,0x33963f0a,0xe7193dca,0x44183ed7,0x60c23f30,0x2486c185,0x99874103,0xb267c0ca,0x43d3bf64,0x7c103ee4,0x82b23d66,0x12733ecf,0x73303f2e,0x1a2ec16d,0xcdf44139,0x45e5c102,0x2c7abf3b,0x7fb23f0e,0x3dd13eca,0xbe343ecb,0x12583f3f,0x3b12c176,0x523d412e,0x92ddc109,0x2abdbf59,0xbc1c3ee9,0xfbd23e87,0x91bc3ec6,0xa1ae3f3d,0xacf4c17d,0x9fac411b,0x7dc4c0fe, 0x2dd0bf59,0x1a113f03,0x7d2c3e00,0x81d83ec8,0x6cba3f37,0xfc65c182,0x62a44111,0xbf0ac10b,0x1cf4bf66,0x38e33ed7,0x597d3dd7,0x44203ec2,0xb8bd3f36,0xdd20c178,0x6a42412f,0xf44c111,0x3173bf56,0xc6503ed5,0xfd723eb6,0xe7f73ec3,0xe6643f3e,0xb84ac17b,0xe0614130,0xdd48c119,0x5804bf65,0x7a6d3ebd,0xc9fb3e74,0x13983ec0,0x361b3f40,0xa3dbc188,0x53b940a6,0x7f2fc001,0xcbd6bf65,0x34443e63,0x999a3ec4,0xa48b3ee1,0x4ec93f19,0x589fc18d,0x50e34076,0x26cfc043,0x2592bf71,0xa4ae3e33,0x79a33e92,0xae3e3ed8,0x4e5b3f15,0x116dc18f,0x19bb409c,0xe818c0af,0x6274bf76,0x4f883e7f,0x234f3db2,0x60803ecd,0x56493f1e,0xfc3dc18b,0x59d140c7,0x521c08e,0x8a4cbf71,0x94543e9f,0x30cb3e03,0x69e03ed6,0x7de43f22,0x2687c189,0xb9d440e4,0x1a70c0e7, 0xd47dbf6e,0xccdd3ebb,0x87cf3c98,0x23bc3ec7,0xa9ac3f2b,0x1ac3c18c,0xa0dc40bf,0xd819c0ff,0x7ff2bf75,0xb9c83e8d,0x6d50bd18,0x86f43ec0,0x967a3f27,0x9944c185,0xe7704107,0x6d38c115,0x5001bf6d,0x74493eba,0xdd2f3db0,0xaa763ebc,0x27b3f34,0xcb1fc187,0x789640fd,0x8b26c11d,0x5c6bf6c,0x9a6a3e54,0x9d49bea4,0x2f983eb8,0xb8683f33,0x43aec16b,0xf2884152,0x1b04c115,0xa5c6bf3c,0x81903ed6,0x3fb83f08,0x96033ec7,0xb68f3f48,0x111bc0f6,0xcf22c107,0xc9e640c3,0xebdabf24,0xac6f3d19,0xce793f43,0xa6933f02,0x1c193ea1,0x5b7ec0e1,0x7b1ec11a,0x378a40ca,0xf6f9bec1,0xd0babdc2,0x17273f6b,0x9ab33f03,0x2dba3e96,0xc62cc10f,0x45d2c10b,0xf04640b0,0x34cabeaa,0xcb733e4d,0xba803f6b,0x53153ef9,0x16c03ea1,0xefe3c10e,0x7345c0e9,0x812040a2, 0x9609bea7,0xea153ec9,0x6eb53f5b,0x8893efb,0x9ca63eaf,0x2fb0c0cf,0x9047c102,0x324540e6,0xd0a6bf03,0x320bee3,0x53a03f3c,0x60783f0c,0xb0573ea0,0xfb18c0b4,0x4f7c11e,0xf2d640d8,0x1e0be9b,0xb032be98,0x60853f67,0x9d843f09,0x96073e92,0x4966c08c,0x97fc120,0x33f440e3,0xb12dbe8f,0x7452bef3,0x668c3f55,0xadcd3f11,0x43613e90,0xe6f4c0b9,0x1729c12c,0xca4840d3,0x1605be4d,0x8b2d3d2d,0xcb583f7a,0xbc0a3f05,0x48bd3e8b,0x7354c088,0xc25bc110,0x2e7b40f9,0x135bbedc,0x2896bf19,0x8af03f2d,0x9a703f18,0xeb813e96,0xb2dc049,0x96dcc110,0xbc5e4109,0x2d7fbec8,0xc999bf43,0xd5c73f03,0xfb373f24,0xa2d73e93,0xe6cec019,0x2848c10b,0x5334125,0x7fd8bf07,0x73b0bf54,0x5eab3e39,0xd803f32,0xbd03e90,0x8afdc049,0xa4a8c106,0x5275411d, 0xb224bee2,0x9ddbf5a,0xc3013e8c,0x97b73f2a,0x98053e94,0x8611c0e3,0x7c6cc12f,0x78b740cc,0x234be4e,0x497a3e0c,0x4b6f3f78,0x15b53f00,0xda803e8b,0x373bc10b,0x98f0c120,0x3c1940b9,0xa6bdbe97,0x8e963e30,0x2d5a3f70,0x5fdd3ef8,0x5a0b3e95,0xd83c10a,0x18b5c134,0x7d2740c2,0x4afebe92,0xeb673e22,0x13b23f71,0xd7133ef6,0xb4ce3e89,0xa401c124,0x1a46c123,0x59b740ad,0x958be97,0x139a3e0b,0xd2203f72,0xf41f3eef,0x57833e94,0x9da2c13c,0x5575c10d,0x2c604098,0x3543bea1,0x9e9c3e21,0x88833f6f,0x9203eec,0x940b3ea3,0xcdf2c126,0x3ceac10b,0x3feb40a3,0x22a8be84,0xe1913e60,0x2ee43f70,0xc6473ef2,0xa9ed3ea2,0xa133c0e3,0x7577c13f,0xd09f40d4,0xe23abe66,0xc80e3e74,0xb80f3f71,0x99fe3efe,0x60be3e81,0xa7ddc13e,0xe1edc0e8,0xb9c0408b, 0xea79be89,0xb9983e89,0x58823f6c,0xeb643eee,0x8ff03eb1,0x6b66c153,0x5eec0f1,0xba8c407d,0xae74befe,0x9ce33e43,0xac7e3f58,0x15163ee8,0x38ab3eb1,0xa5c8c157,0x3aa3c0c0,0x9ac34056,0x2fcebef8,0x5aae3e9e,0x9d283f51,0x420f3ee8,0x52f33ec0,0xffcec169,0xb1b8c0d0,0x13074021,0x66b8bf43,0x203e3e0a,0xc9973f22,0xd3fa3ee0,0x5b3e3ebe,0x771ec00e,0xf284c110,0xabb64116,0x1dacbf04,0x7167bf4b,0xa133ea3,0xc6713f31,0x603d3e90,0x302cbfc4,0x7282c118,0x523411f,0xd46bf32,0x5ad2bf2e,0xc3ad3e6e,0xc12b3f39,0x55863e8a,0x53c3c015,0x88d4c119,0x2e394105,0x434ebeff,0x1079bf35,0xb4203f00,0xeb293f2a,0xb22d3e8f,0x2007c046,0xbb6bc11c,0x6ee640f3,0xeb3be86,0x3eeabf31,0xbe6a3f2c,0x7533f1e,0xc05d3e91,0x622c03f,0xf959c126,0xcc0340e7, 0x3f30bebf,0xabb1be86,0xea703f63,0xd283f1b,0xd40f3e8d,0xf5b9bfeb,0xe524c11f,0xe7214102,0xdb0fbf1f,0x735bbf14,0x1db43f05,0xf5b23f2f,0xb0a73e8c,0xa24fbfa2,0x226ec12e,0xef8f4102,0x9f9cbf0e,0x91e4bea5,0x9e623f43,0x4a1b3f35,0x7a923e85,0xbfe2bf7b,0xfc7ec120,0x3e084123,0x6e21bf1a,0x138abf3e,0xd9403e94,0x2b4e3f40,0x721f3e85,0x5944c08f,0xaad0c12a,0x24ca40da,0x2568be56,0x97dcbdec,0x919b3f78,0x3d683f0d,0x82793e8c,0xafdbc08e,0xc734c134,0xd70040dd,0x3f58be65,0xdabf3e64,0x94603f72,0x601c3f0c,0x49283e86,0x343ac036,0xc6edc132,0x3a2340ea,0xf058bebb,0xa1703e25,0xc98a3f6a,0x3c973f1b,0x7fa23e86,0x20fbc02b,0x375c145,0x7d9c40f7,0xcb95be95,0xf3233e82,0xb6953f6b,0x8bc63f1c,0x49a13e75,0xc6b0befa,0x3c1fc132,0xfd3f4108, 0x6d3fbeb2,0x2ee4bf18,0xb6313f39,0xb6913f44,0xbc453e81,0xb6a5bf01,0x6bcc14a,0xba484105,0x175bbe0e,0x98643e19,0x6eeb3f7a,0x4d053f42,0xa5d73e6b,0x8c8abfa6,0xedecc15e,0x529f410a,0x5dd3be41,0xe2ab3eb8,0xad103f69,0x84ba3f31,0x6e653e53,0x411abfa8,0x2e5ac147,0xcbd04102,0x2813be6e,0xbdba3e36,0xc9b43f74,0x470b3f31,0xcf033e70,0x68f6c0b9,0x9b04c139,0x54eb40d8,0xc5d3be2e,0x81b73e83,0xcd423f73,0x71f83f04,0x6a4f3e84,0xf007c0b3,0x4ef4c148,0xb3e540e3,0xc370be42,0x12273e94,0x13c73f70,0xee133f05,0x6c983e75,0x5a05c087,0x7f91c145,0xfaca40e9,0x4a6dbe60,0x88013e9a,0x5b9a3f6d,0x59863f0d,0xb6033e78,0x18c1c07e,0x5e03c158,0x3dc40f8,0xd43cbe78,0xd4113ea1,0xb7243f6a,0x6ab3f0e,0x9c133e61,0xf7c5c022,0xa312c159,0xd49f4103, 0xe8c9be84,0x40133eae,0xf2023f67,0xae473f1d,0xd6c73e5b,0xe3f6c01e,0x131dc16b,0x2aff410b,0xe826be99,0x2a3d3e9d,0x93183f67,0x3d213f1e,0xa7333e45,0xc6c43ccb,0x7a56c14c,0xdf8f4105,0xa3eb3b51,0x5c333e12,0x9ad03f7d,0xe2a03f4f,0x206d3e68,0x3e393cdd,0x6ddc169,0xf0b84110,0xef063b44,0xbb803ebd,0x9ad03f6d,0xce183f4f,0x75ea3e45,0x50753f13,0xd5d3c165,0xbe27410e,0x1c073d2a,0x75793ebe,0x5b603f6d,0x84383f5f,0xe9573e4a,0x151c3cee,0xc3a6c181,0xbf8f411a,0xdf3f3b44,0x8b623ebe,0x9ad03f6d,0x6cb13f4f,0xa2833e26,0xa1c3cf9,0x3c86c18a,0x89bd4121,0xcfbf3b51,0xe6b43e1e,0x9ad03f7c,0x6c443f4f,0xc7693e10,0x64f7bf09,0xe38dc17c,0x25c34118,0x96d5bd2d,0x8e593ebd,0x793a3f6d,0x6e8b3f41,0x36153e2d,0x77c53f1b,0xb9a4c186,0x3c58411e, 0xafee3e8d,0x6e623e0f,0x534c3f73,0x26c83f60,0x30ad3e19,0xf5cb3f19,0x4a1cc189,0x72c9411c,0xc2103f36,0x93fbf03,0x8ea83ef4,0xc7753f61,0x18df3e12,0xf5cdbf0a,0x5933c189,0xa7b9411c,0xc229bf35,0x6411bf03,0x254a3ef6,0xc7753f40,0xea683e12,0xc2d73cf5,0xfd62c18d,0x83fe411e,0xcba3b1c,0xa6cfbf2d,0x9ad03f3c,0x79e13f4f,0xce963e09,0x603abfa7,0x5047c180,0x32594118,0x78ffbed4,0x3a7b3d95,0x2b0a3f68,0xde13f31,0xddba3e29,0x77c7bf0b,0xc8ecc186,0x14e6411e,0xb04dbe8a,0xe2123e0f,0x12343f73,0x26c83f41,0xc2c23e19,0x5075bf05,0xe463c165,0x2877410e,0x1c04bd12,0x85e03ebe,0xcf783f6d,0x84383f41,0x6c2f3e4a,0x7f77bfa7,0x8b96c172,0xbbf74113,0xa2c5be5b,0xc3bb3eb6,0xa49c3f68,0x63fa3f31,0xb2d3e3a,0x7b033fac,0x621ac183,0xa3444115, 0xf46e3f2d,0xc4bfbf14,0x8a5d3ee5,0xab003f7b,0x14663e23,0x92f43fa7,0xcfd4c184,0x505e410e,0x2ec13f27,0x9450bf3c,0xa853e38,0x41bc3f80,0xf89c3e24,0xdd6f3cea,0x623ac18e,0x92134118,0x1b1d3a7f,0x3febbf74,0x9ad03e9a,0xec73f4f,0xcf4a3e0a,0x10313f14,0xb045c18b,0x405f4115,0xb61c3f3d,0x247abf25,0x7f4a3e3e,0x5c183f63,0x6de73e13,0x2a953f10,0x166ac18c,0x11ff410f,0xfe843f30,0xd3a4bf37,0xddcbdd0,0xf0fe3f66,0x1da83e13,0xaae33fa2,0x3d87c185,0x92164108,0x5d1f3f12,0xf8bf50,0xf095bdca,0xd8773f82,0x43af3e24,0x61a44013,0xce7fc181,0x7cc940fc,0x8c413e99,0x830ebf73,0x1301bd91,0x59193f98,0xe3433e32,0x503e4017,0xe7adc180,0x3dd4104,0xb7bd3ed7,0x2b1fbf61,0x49f53e5c,0xbc123f94,0x81dc3e31,0x28424069,0xb65fc17c,0xaf6e40f5, 0x7eb03e5e,0x1876bf72,0x651b3e71,0xf2523fa3,0x66773e3a,0x1031bf06,0xbeeec18b,0xf0a14115,0xb63bbf3c,0x78fbf25,0xb8843e43,0x5c183f3e,0xb40f3e13,0x2a92bf02,0x24a9c18c,0x3c53410f,0xfe7ebf30,0xb4e7bf37,0xe69fbdc7,0xf0fe3f3c,0xcc1c3e13,0xe2f8c18c,0x5c143fd7,0x7a04c00e,0x6d7bbf65,0x98343d82,0xeae3ee0,0xf9553ed8,0xc01e3f0a,0xfde7c191,0xad86bcff,0xfc01c05b,0x6f2cbf70,0x75b83d99,0x4f7b3ea8,0xca9f3ecd,0x9ca03f05,0xf6fc191,0x4cbc400f,0xf76bc086,0xd407bf77,0x2edb3e13,0x53653e4f,0xd4673ece,0x3afd3f10,0xc469c195,0x672e3ef4,0x3c35c0ac,0x1174bf7c,0xb1183dfd,0xb18e3df1,0x72713ec3,0x103a3f0b,0x3b8ac191,0x77bcbf94,0xd64fc04c,0xf0b5bf57,0xebcabd63,0xeb9e3f08,0x8e7a3ecb,0x311f3f00,0x3837c195,0x662ac01a,0x238bc089, 0xa232bf6c,0xed17bd0e,0xff13ec4,0x57213ec3,0x1b9a3efa,0xcadec196,0x3021bfe0,0x8a99c099,0x3c1bf79,0x4a223d9f,0xed9e3e56,0xd6c33ec1,0xcf943f00,0x9baec195,0xac95c048,0x3782c095,0xe77fbf5a,0x3dd0be38,0x31d33efb,0x840a3ebf,0xa8793ef5,0x1c7ac194,0xd046c05c,0xa66c091,0x7563bf5d,0x8f55be31,0xf36f3ef2,0x7b913ebe,0x33943ef2,0x49b6c192,0xac694057,0xa3b5c0cb,0x3cb1bf7b,0xaa6c3e3b,0x8eefbc97,0x817c3ec4,0x481f3f19,0xf62bc18f,0x652cc07c,0xf6d5c068,0xa621bf5e,0x6873be40,0x40533ee8,0xcc4f3ec2,0x4a703eea,0xb2eec194,0xe82dc090,0x2948c09e,0x463bf5d,0xf98abe71,0xcde63ee3,0xb12d3eb9,0xdbe03eea,0x4f87c18d,0x2bd40a1,0x57c0c108,0xb816bf74,0xeadf3deb,0x1983be8c,0x76c03ebb,0x75193f24,0x8c3bc18b,0x6107c0b6,0xf006c061, 0xc477bf63,0x6382be50,0xbec23ed0,0x708b3ebd,0x59f53edb,0x8da4c187,0x7165c09c,0x46f6bfef,0x87cbbf68,0x4e6fbe07,0x882b3ecc,0x7f353ec9,0x1f8d3edc,0xa00ec18a,0x9d13c056,0x10a1c009,0xe344bf5f,0xe2b0bdb9,0xbbb3ef6,0xa3053ecc,0x69703eea,0x1b61c139,0x71a4c128,0xc13740a0,0x1296beba,0xc3843d87,0x6fca3f6d,0xfdf83ee9,0x2a113e93,0xf8e4c136,0xc391c142,0xf06d40a4,0xf605bedf,0x1f413cd0,0x28073f66,0x2b6f3ee5,0x3c9b3e85,0x4904c14a,0x6b6ec130,0x87d74091,0xb28beff,0xd4e7bbd4,0x178b3f5d,0x4f483ee3,0x6dfe3e91,0x862bc122,0x9f4fc13a,0xd75740b4,0xaf3bbeb3,0xc2ae3df2,0xfd8f3f6d,0xe6d63eec,0x45fc3e87,0x929fc120,0xaa88c14f,0xb01040bb,0xc6eabed5,0x25ee3e07,0x4fa93f66,0xc3933eea,0x1773e77,0x7825c14f,0xf78ac113,0xd4c5408a, 0x934abef8,0x14d83d88,0xd2ed3f5f,0x693c3ee6,0x1b363ea1,0xa071c15d,0x1698c11f,0x3b41406d,0x5b58bf3a,0xa36abc0f,0x6ec63f2f,0x33f43edf,0x597b3e9d,0x9a33c109,0x899cc146,0xb68740ca,0x162fbea2,0xec293e53,0x1f003f6c,0x83ef4,0x85f13e7e,0x2e7dc107,0xb029c157,0xa0440d3,0xcd04beac,0x79683e60,0xfe613f6a,0x43783ef2,0x141e3e6a,0x9ca4c163,0xec0bc102,0xb3e7404f,0x843cbf41,0xc8763d61,0x491f3f26,0x50c63ee1,0x4ff93eae,0xbd7cc16d,0xdbe8c111,0xe8e4400d,0x6c83bf67,0x810cbd7d,0x88983ed6,0xebc83ed7,0xe5cb3ea9,0x21e4c0de,0x23c6c14f,0xb9fc40de,0x8b70be74,0xdbe63e82,0x4a5a3f6f,0x7f673efe,0x20713e70,0x3dfec0d9,0xcebec15e,0x3e5140e7,0xbb2dbe80,0xa6843e7c,0x1b093f6f,0x368f3efe,0x85553e5e,0x761fc0ab,0x79f6c159,0x6ccc40ef, 0x1777be58,0x782e3e91,0xae1d3f6f,0x943a3f05,0x90303e61,0xf541c0a7,0x6317c168,0x976b40f9,0xa68ebe72,0xe8c73e55,0x8aca3f72,0xd41b3f05,0xf0a63e4e,0xad08c076,0x765fc168,0x81494102,0xf746be91,0x68c33e83,0x34b53f6c,0x88613f0f,0xa6fc3e4c,0xcbd7c072,0x1f1dc174,0x985e4105,0xd6efbeb2,0xf7eabdaa,0x87a03f6e,0x68e43f0e,0xd10b3e3e,0xc5d4c01c,0xc418c178,0x8810410e,0x7620bedf,0x4f61bba6,0x290f3f66,0xd80e3f1e,0x2c233e35,0x7daac019,0xa838c17e,0x5672410b,0x7f6dbef8,0x9a7dbf38,0x2a453efd,0x1f0c3f1c,0xda453e31,0x7b02bfa4,0x84fec183,0xe4174115,0xf489bf2c,0x254bf14,0x99913ee8,0xab003f2f,0x3a9f3e23,0x92f2bfa0,0xf1b6c184,0x303410e,0x2ecbbf27,0xe78cbf3c,0x1ea83e3c,0x41bc3f2d,0x9afa3e24,0xaae3bf9b,0x5e6cc185,0xbb264108, 0x5d23bf12,0x67c8bf50,0x10aebdc2,0xd8773f2a,0x432d3e24,0x61a3c010,0x4737c181,0xbb1d40fd,0x8bccbe99,0x8956bf73,0x3d64bd8d,0x59193f15,0xb7a63e32,0x503ec014,0x25ebc180,0x50ce4105,0xb6e3bed6,0xeefabf61,0xfdc13e5e,0xbc123f18,0x943e3e31,0x283ec066,0x7690c17c,0x376740f6,0x7cbebe5d,0x90c4bf72,0xfd83e72,0xf2523f09,0xdf333e3a,0x791c09a,0x1ef7c17d,0x17e40db,0x509c3d80,0x5de6bf7f,0xb6febd1b,0x1fb83ef7,0x321e3e40,0x2654c060,0x880ec17e,0x2fd240e9,0xecd6bdf0,0x3c98bf7d,0x57debd48,0xb16c3f05,0xd43e3b,0xa31dc0a2,0x2726c179,0x954440f5,0x62c0bdb1,0xfbb3bf58,0x3de63f06,0xf6123f02,0x6f5d3e3d,0x5559c09e,0x2312c17b,0xc7ff40e8,0xed76bc58,0xc2c3bf77,0x68c23e7e,0xae53efe,0xf70a3e3f,0x2a28c06c,0xb289c17a,0x85274101, 0xac1cbe97,0xb3acbf4e,0x55003f02,0x33373f0c,0x2dba3e3a,0x9e8cc0a5,0xb835c174,0x645840fc,0xfd99be7a,0xbc46be25,0x7a4a3f74,0xa32b3f04,0x13ee3e41,0xa8f7c0d4,0xb871c178,0xed3240f1,0x12dbbe29,0x2350be4e,0x59193f77,0xcdab3efa,0x51003e3f,0x1705c102,0x7228c183,0xe2d240dd,0x39ff3e52,0xc53bbf51,0x10173f09,0xea253eea,0xd3bd3e35,0x7573c0d0,0x8651c17d,0x170c40e9,0xfd913db8,0xdf21bf58,0x71c3f05,0x80413ef6,0x11643e3c,0xab0ec104,0x165c180,0x2d2640e6,0x4debbe27,0x81abe64,0x1b4c3f76,0x2f2b3eee,0x2ea73e39,0x2b69c0d6,0xbdc7c16d,0xd0f940ef,0x9725be7c,0xd8813e1f,0xe54f3f74,0x82e03efc,0xe7ae3e4c,0xbe4dc104,0x314bc175,0x83c640e4,0xdff7bea1,0xfb7e3e16,0x90d63f6f,0xf6fd3ef0,0x73f63e45,0xc04c11c,0xa5d5c187,0x584240d6, 0x791cbe78,0x769ebe78,0x50d33f70,0x4143ee3,0xbfde3e2f,0x9e78c105,0x911dc166,0x338c40dc,0x14adbeae,0x2d793e5f,0x9463f6a,0xce963ef2,0xccf73e57,0x77cbc11d,0xd07ac172,0xac2040cc,0xd198bef7,0xb27a3e42,0x1f153f5a,0xb2073ee7,0x4acb3e4e,0x1ae5c11d,0xae6fc181,0x3eee40d4,0xcae3beec,0x87893e08,0x9f0a3f60,0x23fb3ee5,0x52513e3c,0xce7c130,0x2611c189,0x4b6740bf,0x374abf16,0xde913dbe,0xd16c3f4d,0xfe2a3eda,0xc6223e2f,0x5332c13d,0xf38cc198,0x8bd740ac,0x9a18be61,0x6029be5f,0x12a13f73,0x72a43ecf,0xf87d3e13,0x3069c12e,0xb893c18f,0xabef40c0,0xdfc2be92,0xc9f1be8d,0x63393f6a,0x89123ed8,0xf0ab3e22,0xd720c145,0xcf03c14e,0x2f6b4092,0x740cbf06,0xab22bd44,0x7e023f59,0xd7bf3edd,0xca073e80,0x26ebc142,0xf5f9c16b,0x13304093, 0x3a25bf1a,0x6c423c37,0xe6b43f4c,0x33b93ed7,0x24333e63,0x924cc152,0x1655c15f,0x4418407e,0x6266bf28,0x18dfbd8f,0x47bf3f40,0x3d043ed5,0x6b673e74,0xc923c133,0xab3dc15b,0x680140a8,0xe27bbf07,0xd8ba3d55,0xeef23f58,0xfaa43ee0,0xff733e6e,0x1f23c131,0x88adc170,0xd86440af,0x60adbf17,0x82bf3e02,0x47133f4b,0xbdcf3ede,0x727c3e57,0xd892c157,0xa7dfc13e,0x4e6e407b,0x3f35bf2b,0x7ed6bd86,0x61dd3f3d,0xb9ae3edb,0x2af73e8b,0x65e8c161,0x7b46c153,0x8b9c4043,0xacadbf5b,0x383fbd9b,0x31443f02,0xe2b53ed1,0xc32c3e83,0xe79ec11e,0x1a61c161,0xcad740c4,0xe9e7bef1,0xf9113e36,0x82cf3f5c,0x50f83ee8,0xbbf63e62,0x9a92c166,0xd74dc131,0xe6c4030,0xfaecbf64,0x903cbd95,0x870e3ee5,0xf6d73ed5,0xfaee3e96,0xea9ac16b,0xce18c148,0x83a13fb7, 0x8b5fbf74,0xab97bda8,0x90b3e91,0x3f313ec8,0x32df3e8f,0xd521c131,0x9c30c180,0x5a2740b7,0x41e9bf1d,0x5bf53e17,0x825a3f46,0x37653edc,0xc70f3e43,0xbdcdc140,0xe8e8c189,0x998940a1,0xd2b6bf30,0x31763e1b,0xc1093f35,0xb0f3ed2,0x75073e35,0x9e70c141,0xb401c180,0xcac44099,0x4a8dbf2c,0x628b3dbe,0x9c2c3f3b,0x58b43ed4,0x5e223e4a,0x5458c14d,0x5547c18a,0x49ba4086,0xd141bf42,0x68753e03,0xf5513f23,0xf05f3ecb,0x9c243e39,0xe986c158,0xad86c189,0x8e214051,0x8fc6bf52,0xafd3d4d,0x9ff53f11,0x67a93ec5,0x62263e41,0x9524c14e,0xe9e2c17d,0xdfee407f,0xd5efbf30,0xb21bc4c,0x41af3f39,0xfe193ecf,0x3b83e53,0x6b4ac15c,0xf5c7c175,0x7f2d4049,0x9d19bf4d,0x7c54bd97,0x17483f17,0xb9d43ecb,0xce473e62,0x517dc164,0x4203c188,0x7c754000, 0x9452bf69,0xbcdd3c98,0xb7f13ed1,0xe0d63ebd,0xe3153e4d,0x5238c16c,0x9818c185,0x86913ecd,0x640cbf77,0xcb023cee,0xed523e81,0xb15b3eb3,0x85dd3e5f,0x8cedc167,0xebddc16d,0x62903fe4,0xa4ddbf71,0x6047bd57,0x443d3ea8,0xdf053ec3,0x95813e74,0x22d4c13f,0x7477c192,0x164540aa,0x90afbf18,0xa1313db8,0x43bf3f4c,0x37f43ed1,0xab9d3e21,0xca58c14c,0x75e6c19b,0xadfd409d,0xbf29bf22,0x36293e64,0x630f3f3d,0x83be3eca,0x5f003e0f,0x98d2c14d,0xab3fc193,0x64544090,0xc553bf3b,0xa7b53e4d,0xa8223f26,0xdab63eca,0x40f3e23,0xaf62c14b,0x10b2c1a1,0x6a9840a4,0x7e12bd50,0x29d3bd80,0x6edf3f7f,0x754b3ec9,0xc4573e01,0x46dfc157,0x8694c1ab,0xa1fd40a5,0xda99be2b,0xced03e64,0xcf643f75,0x58973ec6,0x1b313dd9,0xef6ec159,0xbf81c1a5,0x9ea54098, 0xefe4bf22,0x942c3ec7,0xf9383f2a,0xd7883ec5,0x6ac73df5,0x7e14c166,0xe664c1b0,0x483a409c,0x7fa4bf34,0x107d3f01,0xfc443eff,0xf47b3ec3,0x1ac73dc6,0x53f3c159,0x9ec1c19e,0xf4fe4084,0x4bc7bf4a,0x11c03ea9,0x23313f03,0xa3ba3ec4,0x19083e0f,0x1b96c165,0xcbc2c1b5,0x7a8b40b0,0x42ddbe8b,0x50e03eef,0xb4ea3f57,0x64c33ec6,0x1a7b3daa,0xdcf9c166,0xfe22c1a9,0x3175407c,0x300dbf4d,0xd7d63ee6,0x6a943ec9,0xc88a3ebf,0x4a213df0,0x62cfc158,0x939c195,0x8f484068,0x80eabf51,0x69963e46,0xa2163f0a,0x6be83ec3,0xe0623e26,0x4fedc163,0x93d9c197,0xaacf4015,0x5f0bf5f,0x6f23e19,0x2ab23eed,0x7e913eba,0x5c823e2b,0xfc07c16d,0x8039c196,0xbb363f6e,0x9282bf6f,0x6bd33e10,0x157b3ea4,0x35a43eb1,0xa2793e36,0x1a1c173,0xc9c1c194,0xd21abf56, 0xb79ebf7a,0x418d3dcd,0x3dc53e31,0x2d563ea6,0x52313e49,0x231ec174,0x9935c17e,0x92d1bfcf,0x8e98bf7b,0x3cbebcb5,0xa6983e3c,0x73d23ea8,0x97c83e7b,0x363ec16f,0x46d4c163,0xdb5abdb5,0xebcabf78,0xb4abd68,0x533b3e69,0xa37b3eb8,0xe32b3e86,0x7b16c175,0xd406c13c,0xbc51bf47,0x96dfbf75,0xf7aebdf3,0x738e3e81,0xc7473ebb,0xd37e3e9d,0x7768c179,0xb48dc153,0x42dbc019,0x18f3bf78,0xf1c9be01,0x23fb3e55,0x47b63eac,0xe2cf3e97,0x6570c15c,0xeb92c1b7,0xdb9940a0,0x6aa53f4a,0xf189be68,0x3ad63f10,0xa8d63ec1,0x2fe53da7,0x20fec169,0x59e2c1c2,0x4cf40b6,0xe1723f44,0x405ebdab,0x56da3f23,0xab713ec3,0x480e3d60,0x7d42c164,0x17eec1c2,0xd67340aa,0x3c203f5e,0xb7c9be46,0xd1fe3ee7,0x76e23ebf,0x3cda3d68,0xc3e6c16e,0xa412c1c1,0xaab240c2, 0x18983f14,0xd38e3d79,0xb3783f4f,0xdef43ec6,0xe9f53d58,0x259c179,0x8735c1cf,0xd0e40d8,0xa6fc3f02,0xb3363d96,0x89403f5b,0xbb0a3ec7,0x9ac83ca8,0x5691c174,0xcd75c1cf,0x717d40cd,0xc72d3f35,0xc0fbd60,0xb1893f34,0x21fb3ec4,0x61a73cb6,0xaa51c16f,0x185bc1cf,0xab4e40c3,0xa86a3f59,0x70f9be3c,0xb6b33efc,0x88ec3ec1,0xc8b23cc3,0x3ef9c16b,0xa340c1ce,0xb840b1,0x8b2c3f5f,0x90e2bef5,0xe072bdd8,0xca363ebd,0x64fb3cfa,0x382c17d,0x3fafc1d8,0x3be40d8,0xe1b43eec,0xca8ebf2f,0x92143f0f,0x76c53ec4,0xfa273af7,0x5862c177,0xa329c1d8,0x452f40ce,0xf10b3f28,0xdb55bf3f,0xe9293d9b,0xc2f03ec1,0x45463b56,0x4503c173,0xead5c1d4,0xe2f640bc,0x12f93f2d,0xdd19bf2c,0x49bbe96,0xda403ebf,0x3b963c7f,0xd3fc17e,0xbac5c1cd,0x73a40d7, 0x17d5bede,0x95bb3eee,0x59c93f45,0xa3013ec8,0xffb63ccb,0x324cc181,0xb4c4c1d3,0xce1140dc,0x63eabf08,0xd01e3eaf,0xa80d3f45,0xc8193ec7,0x6b5a3c33,0xae6dc181,0xde4ec1d7,0xda0640e1,0xa265bd7c,0x58f6be87,0x1aa03f76,0x126f3ec7,0x580d3a03,0x8132c17c,0xe41dc1d5,0x981740bc,0xa4fbe83,0xc7febf4a,0x88b9bf0e,0xf56a3ebf,0xead3c55,0x44d6c17d,0xde324130,0x3519c120,0xff8bbf65,0x892e3eb1,0xd096be8e,0xbbe43ebd,0x65163f40,0xa4ddc185,0x8c7b40f4,0xc24cc120,0x8501bee2,0xc04cbd96,0x2307bf64,0x4e593eb6,0x16e83f32,0x408fc180,0x5537c11b,0x9772bff5,0xaf69bf71,0x44e6be2a,0xd2bb3e92,0x90643eba,0xa6293eb3,0xcd0ac172,0xed81c125,0xe65e3f50,0x84c5bf73,0x9a18bdf8,0x8e503e8e,0x33513eca,0x3f3ea4,0x4532c17c,0x7147c107,0x4dc9be4e, 0xad10bf71,0xb02ebe11,0x9bd43e9a,0x1fb83ec9,0x2f63eb8,0xce44c183,0x14bac0d5,0x3d43bf9d,0x3f43bf6e,0x391cbe18,0x5a923eab,0xec073ec8,0x80373eca,0x5cdc175,0xb628c0eb,0xd96c3fac,0x31d6bf67,0xb300bd44,0xb6e13ed7,0x14833ed6,0x87053ebc,0x2d82c17d,0x6db5c0b7,0xc3bf3ed8,0xe1f4bf63,0xa7cfbc4f,0x2ef93ee9,0x38043ed5,0xcf5c3ecd,0x49e6c181,0x9baec085,0xdabebe9a,0xfb13bf59,0x13c63d1e,0xcd103f06,0x1dcd3ed4,0x9db03edd,0x5d5fc16e,0x2874c0a1,0x17f43fdb,0x88febf3c,0xebfe3e59,0x5ddd3f24,0x71043edf,0xaadd3ece,0x18b84165,0xef4cc1b5,0x621340ad,0xb1863e8f,0xd4ee3eee,0x877f3f56,0x64c33fba,0x545c3daa,0xb5204174,0xce89c1bb,0x9c8640a6,0xd6f73f3b,0x2ec13f0d,0x1e9f3eca,0x4b163fbb,0x84d33d91,0x1ce74180,0x7188c1c1,0x3bea4095, 0x200f3f44,0x30f53f10,0x67d3e9e,0xe6043fbc,0x87c23d81,0x1a2e416c,0x568f4139,0xec9bc104,0x2c863f3b,0x120f3f0e,0x8d613ec8,0xbe343fb9,0xbbf63f3f,0xacf4417c,0xf341411b,0xb1a3c100,0x2dd33f59,0xf0c63f03,0x277c3df4,0x81d83fba,0x1c133f37,0x3b124175,0xe914412e,0x217c10a,0x2ae53f5a,0xea7f3ee9,0x7a4a3e84,0x91bc3fba,0x19673f3d,0x72ad416b,0xef8d4145,0x7845c10e,0x62823f2d,0x5d813ef6,0x1adf3f0e,0x37723fba,0xa80b3f44,0x7d05415c,0x3809414d,0xcde1c10c,0xd6f33ec8,0xe5293f11,0xb8243f38,0x10cf3fb9,0xb50c3f46,0xdd204177,0x572412f,0xa57ac113,0x318e3f56,0x263ed5,0x1bef3eb4,0xe7f73fbb,0xad463f3e,0x43ae416a,0x78294152,0xfc22c117,0xa5b53f3c,0x49423ed6,0x6bc63f07,0x96033fba,0x22163f48,0x66704145,0xc9ea416f,0x600ac112, 0x31ba3ec6,0x52113ea9,0x3c473f5c,0xdad73fb9,0xf3ae3f4f,0x54a74152,0xe8904112,0x687c089,0x5f4ebed4,0xfa50bf58,0x820ebeac,0x5b643fb4,0x502d3f2e,0x219b4130,0xdccd4120,0x2235c0a2,0x488be67,0x12babf61,0x243abed7,0x709b3fb5,0xb58c3f33,0x543f4154,0x283f411c,0x1130c0e7,0xa189bf1c,0x2048bf49,0x650abdb7,0x35833fb9,0x1d8a3f36,0x932d4157,0x59c44118,0x8931c119,0xccf5bf3b,0x26f6bf2d,0x6695bd4a,0x67fd3fbd,0x7dd83f39,0xf59fbeaf,0x199bc0ff,0xa1644148,0xc50f3ea7,0x5cce3f62,0x7186bea8,0x9f273f4b,0x31fd3e8e,0x3509bf75,0x76a5c0fb,0x9b3a413d,0xeb3c3f0c,0xeb8e3f51,0x8627be24,0x43353f44,0x92bc3e92,0xbf25bf8e,0x96e1c0f8,0x78c4142,0xb2063edd,0xf5743f60,0x4d8cbe54,0xc8003f43,0x9abf3e91,0x356ec002,0xbb72c0ec,0xe2ae411d, 0x1ce73d48,0xfade3f7e,0x32093de2,0x55a43f36,0x26f23e9d,0x507fc016,0xbd74c0f0,0xb0a94124,0xd9a33df6,0xd13a3f7d,0x35adbd40,0xaf143f34,0x57363e9a,0xf18bbf39,0x51bec103,0x36ed4131,0xf9423f40,0x2f383f22,0x33adbe34,0x93923f46,0x35df3e91,0xc7e9bfde,0x479cc0ea,0x17dc410b,0x860e3f19,0x9d3a3f4a,0x7104be03,0xd0c83f36,0x14fd3ea1,0xfc9ec018,0x5d28c0e2,0xe14104,0x9a6a3bf8,0xdb283f7f,0x3a5cbd61,0x70e73f2e,0x620f3ea5,0x4e38bfab,0xfcb1c0f3,0x8cfd411d,0x4b933f35,0xe0983f34,0xa693bd04,0x60283f3d,0x3cb03e9b,0xa63ec051,0xfdd4c0ec,0xdbca40ed,0x2397be8e,0xab3f3f75,0x9264bd93,0xd8513f21,0xd98c3ea5,0x6aa9c063,0xbab0c0f0,0x14df40fa,0xedf2be87,0x68a23f76,0xd5e9ba8f,0x6d443f20,0xc7243ea3,0x81f1c081,0x5540c0f3,0x12e64101, 0x54713e3d,0x20953f68,0x1be3bec1,0xb9953f1e,0xe6153ea1,0x3ab8bfcd,0x11f1c0f5,0xbd0a40f9,0x9af93f36,0x64a53f12,0x9aedbece,0x4df43f34,0x5df23ea2,0x208ec028,0xd00dc0f1,0x3bfd40df,0x587e3e9f,0x3cd23f3b,0x1212bf1b,0x38223f25,0x29bf3ea6,0x4de4c078,0x60c1c0fa,0xb4d240cc,0xbe2bd13,0xa4a73f4e,0x914bf17,0xf2023f16,0x232d3ea5,0xd311c0a5,0x23a9c103,0x51bf40c6,0x6447be14,0x520b3f5a,0x5f18bf00,0x17ad3f0c,0xa3bc3ea3,0x5886c0c3,0x9377c106,0x5d7c40c5,0x1cde3e73,0x5f5c3f2a,0xf5d8bf35,0xd2183f07,0xf2c73ea1,0x26544062,0xcd36c17e,0x7a6240e8,0xed003def,0x6664bf7d,0x7736bd4b,0xb16c3fa6,0x2a713e3b,0x791409c,0x1d56c17d,0x2d8940da,0x512fbd80,0xd8ebbf7f,0x6c72bd19,0x1fb83fad,0xd4693e40,0x5559409f,0x1b74c17b,0xfe3d40e7, 0xeda83c72,0xa80cbf77,0x1c653e7e,0xae53fab,0x10cb3e3f,0x2a284070,0x4fc1c17a,0x20d14101,0xb1993e99,0x32cebf4e,0x892b3f02,0x33373fa0,0x8e083e3a,0xff5cc076,0x2246402a,0x55b1be24,0x645bbe55,0x85d4beaf,0x176ebf6a,0x6dfc3f06,0x3ff73f0b,0x2813c03b,0x189c3fbe,0x142dbe02,0x964be94,0x9bbdbdd5,0x4b0ebf73,0x4cc73f07,0x7b303f06,0xb7754147,0x3a364164,0x9460c129,0x22b9bd44,0xada13db7,0x3b04bf7e,0x7f6b3fbc,0x71f13f4f,0xbb944147,0x16624148,0x3140c12a,0xefccbed5,0x7937be01,0x9097bf66,0x200c3fbd,0x19093f48,0xbf1f3f98,0x785ac0f8,0xb7884142,0xb1c1bedd,0x195e3f60,0x71c1be52,0xc8003f5d,0xdb7f3e91,0x350d3f83,0x5c50c0fb,0xdeaf413d,0xeb4bbf0c,0x470e3f51,0xeb8ebe21,0x43353f5b,0xbd4d3e92,0xf59d3ed6,0xf83c0ff,0xb77d4148, 0xc50abea8,0x46383f62,0xee0bbea7,0x9f273f53,0x23e23e8e,0x507f401a,0x7e70c0f0,0xf184124,0xda30bdf7,0x2f903f7d,0x8844bd3e,0xaf143f73,0x69593e9a,0x35764006,0x8493c0ec,0x8e21411d,0x1d93bd45,0x858f3f7e,0x43c43de3,0x55a43f70,0x9a913e9d,0xf1873f4a,0x3da7c103,0x80784131,0xf952bf40,0x34733f22,0xe248be2f,0x93923f59,0x8eb93e91,0x81eb4083,0xe901c0f3,0xdaee4100,0x3f33be3e,0x16a33f68,0x1359bec1,0xb9953f8f,0xddbe3ea1,0xc7e93fe4,0x18e8c0ea,0x4eb8410b,0x8584bf19,0x3a933f4a,0xde0dbdff,0xd0c83f6f,0x3213ea1,0x4e383fb3,0xd86ac0f3,0x99e3411d,0x4b79bf35,0x1a0d3f34,0xfd5dbce4,0x60283f64,0x3a473e9b,0xfc9e401b,0x1d85c0e2,0x88da4104,0x9a73bc01,0x9f693f7f,0x83abd61,0x70e73f7e,0x1eeb3ea5,0x6aaf4067,0xfc9ec0f0,0x39e140f9, 0xb8a3e86,0x2e063f77,0x3e6cbb41,0x6d443f8c,0x2a453ea3,0xa6484054,0x4f4fc0ec,0xc4d440ed,0x401a3e8d,0x8dee3f75,0x7721bd98,0xd8513f8b,0xc1e53ea5,0x588340c5,0x4d98c106,0x70ae40c4,0xeb03be76,0x4ba83f29,0x6a6ebf35,0xd2183fa4,0xe3203ea1,0xd31140a6,0x10a3c103,0x33aa40c5,0x59de3e0f,0xc0953f5a,0x9403bf00,0x17ad3fa0,0xf8383ea3,0x2088402a,0x4383c0f1,0xeef740df,0x5f58bea0,0xc43b3f3b,0xe0c6bf1a,0x38223f87,0xc9693ea6,0x3ab63fd3,0xbb75c0f5,0x6a0740f8,0x9a9cbf37,0xfc4d3f12,0xdf0dbecb,0x4df43f72,0xcfdd3ea2,0x4ddb407a,0x9219c0fa,0xd54140cb,0x9c93d02,0xb6ff3f4e,0x4f94bf17,0xf2243f97,0x7723ea5,0xcaf7c14b,0x6e1e409f,0x797fbf89,0xea3f3e02,0xa1b83ee8,0xbc94bf61,0x4ee3eea,0x947b3f17,0xbdd5c148,0xf42c4086,0x61a1bfcb, 0xb64f3d27,0x2f983f08,0xbe40bf58,0x999e3ee4,0xd9e43f14,0xc155c161,0x7294052,0xae6c007,0xb12ebc4f,0x12353ed3,0x5843bf69,0x9c173edd,0x86493f11,0xe3dec16f,0x5864401f,0xa67cc015,0x24993ce2,0xf4003e7d,0x7226bf77,0x9e6f3ed9,0x203d3f0e,0x8a22c173,0x6e0d4051,0xcec0c001,0xfafe3e46,0x2db53e8b,0x8927bf71,0x610b3edd,0xa9c93f11,0xe649c164,0xa0274082,0xb593bfd3,0x27c33dae,0x74e93ec4,0x96f6bf6b,0x343b3ee2,0x2bd03f14,0x8516c15d,0x5747402b,0xa293c013,0x8db3d85,0x75473e34,0x439abf7b,0x55153eda,0x299c3f0f,0x9ab3c169,0x580c3fe6,0x653ac018,0x17d73e48,0x6363c66,0x2841bf7b,0xb99d3ed7,0xaa823f0b,0x93d9c177,0xbc733fc0,0x38d7c026,0xa2843e94,0x93103e5f,0xfd09bf6e,0xdca03ed4,0xeb813f0a,0xb2dc049,0x96dcc110,0xbc5e4109, 0x2d7fbec8,0xc999bf43,0xd5c73f03,0xfb373f24,0x5b3e3e93,0x771ec00e,0xf284c110,0xabb64116,0x1dacbf04,0x7167bf4b,0xa133ea3,0xc6713f31,0xfa183e90,0x4873c097,0x4ef03f56,0x78b73e5e,0xae94be2b,0x5ae03f47,0x985bbf1a,0xedbb3efd,0xf973f02,0x7dfec09a,0x86b13f8a,0xad673f0b,0x26dbbe19,0xd9a03f6d,0x49fbeb0,0x64393f02,0x876e3f03,0xe17ec06b,0x63ed3f97,0xd5a13f01,0x624cbe98,0xfe603f6a,0x7de9be89,0xe6f73f07,0x8ef33f03,0xc1614161,0xdea44052,0xed79c00c,0xae293bdc,0x17013ed3,0x3659bf69,0x9c173fb5,0x6b443f11,0xe6474164,0x75084082,0xe454bfdf,0x2816bdba,0x4f693ec4,0xd0c0bf6b,0x343b3fb3,0xd7de3f14,0x8a1e4172,0xb8304051,0xff90c007,0xf8abbe4c,0xdb123e8b,0x29a2bf70,0x610b3fb5,0x57b53f11,0xbdde4148,0x54de4086,0xc12cbfd6, 0xb669bd3d,0x1d0c3f08,0x38bdbf58,0x999e3fb3,0xd86f3f14,0xcaf7414a,0xef95409f,0x4fbdbf93,0xea51be08,0x6a763ee8,0x80cbbf61,0x4ee3fb1,0x344d3f17,0xe415416f,0x8a09401f,0xf163c01b,0x1900bd0a,0xe7b53e7d,0x351ebf77,0x9e6f3fb6,0xd2433f0e,0x9c784168,0x5dff3fe6,0xbcdcc01e,0xec0dbe4e,0xb3b43c68,0xc669bf7a,0xb99d3fb6,0xdac23f0b,0x8549415c,0xf52402b,0xa3ccc019,0x82fbd92,0x58503e34,0x65bf7b,0x55153fb6,0x51413f0f,0x958e4177,0x223a3fc0,0x1767c02d,0xad2dbe97,0x1f213e5f,0x4d6abf6e,0xdca03fb7,0x767f3f0a,0x12cbc161,0x7da63e5d,0x3005bea3,0xd47e3ec1,0x30a43f6c,0xd478bd2d,0x48cb3ee0,0x771f3f01,0xe671c16a,0x2f5a3f37,0x734abf6a,0xf7e23ecf,0xf2a43f21,0xfd693f28,0x7e173edd,0x2b6a3f04,0x203ec174,0x28cc3f20,0xbb82bf52, 0x60f9bee6,0x4d623ec0,0x23293f4f,0xeec43ede,0x75e23f03,0xe187406b,0x97293f97,0xf4523ef6,0x61813e97,0xfba83f6a,0xb6d0be8a,0xe6f73fa4,0x7743f03,0x7e07409a,0x8d3f3f8a,0x6a913f03,0x258d3e17,0x5d3e3f6d,0xb9ebeb1,0x64393fa9,0xdf5d3f03,0x48734097,0xd8d33f56,0x87263e3e,0xa8e33e27,0xa7743f47,0x65b2bf1a,0xedbb3fab,0x7bc43f02,0x9d5b404d,0x89a541af,0xda3fc101,0xfba93f2f,0xda843f37,0xa5553ddc,0xd5783fa1,0xeb073f6b,0x19284092,0x477741a6,0x6e17c103,0x3a1a3f16,0x75133f4c,0xa0a5be0a,0xf0ae3fab,0x543f66,0x2da3408d,0x518541a3,0xddf1c107,0x1bbd3e90,0x5893eed,0xb4ccbf57,0xd4e93fad,0xfbea3f65,0x1f974173,0x70583f20,0x5a80bf6b,0x7b8c3ee9,0x4f433ec1,0x16d3f4e,0xeec43fb5,0x3f353f03,0xe554416a,0x3b3a3f37,0xb04fbf81, 0x2bebecc,0xbf533f22,0xb413f29,0x7e173fb5,0x50e03f04,0xedc4161,0x2fcf3e5d,0xa318bed2,0xff39bec0,0xc7173f6c,0x4a9dbd18,0x48dc3fb4,0x177e3f01,0x8000,0x17820000,0x40000,0x0,0x17820000,0x8000,0x17830000,0x40000,0x0,0x17830000,0x8000,0x17730000,0x0,0x23280000,0x40000,0x30000,0x23280000,0x8000,0x23290000,0x40000,0x10000,0x23290000,0x8000,0x232a0000,0x40000,0x20000,0x232a0000,0x8000,0x232b0000,0x69000000,0x0,0x20001,0x30000,0x50004,0x3,0x60000,0x70005,0x6,0x80000,0x70007,0xa0009,0x6000a,0x70007,0xb0008,0xc000b,0x70007,0xd000c,0x9000d,0xe0007,0xb000c,0xc000d, 0xb000e,0xe000f,0xf000e,0x110010,0xe0012,0x12000e,0x13000d,0x100014,0x140011,0x100013,0xe0014,0x14000e,0x150011,0x130016,0x160013,0x130011,0x150017,0x170015,0x180018,0x190017,0x170019,0x1a0013,0x19001b,0x1b0019,0x130018,0x19001c,0x1d0005,0x1f001e,0x210020,0x220021,0x23001f,0x240022,0x22001f,0x240023,0x210022,0x250021,0x240024,0x260025,0x250026,0x280027,0x260029,0x290026,0x240024,0x2a0029,0x29002a,0x240028,0x23002b,0x2b0023,0x2c002c,0x2a002b,0x2b002a,0x280024,0x2a002d,0x2f002e,0x2a002a,0x2e002d,0x2f002a,0x2c002c,0x30002f,0x2f0030,0x2e002e,0x31002d,0x320023,0x2c001f, 0x230033,0x320034,0x230023,0x340033,0x32001f,0x350035,0x340032,0x330036,0x34002c,0x360033,0x370036,0x380038,0x300037,0x37002c,0x300036,0x2c0037,0x390038,0x360036,0x3a0039,0x3c003b,0x350035,0x1f003c,0x3d0030,0x350038,0x3b003e,0x40003f,0x410031,0x310042,0x400031,0x430041,0x440042,0x420031,0x440043,0x430045,0x450043,0x430046,0x310047,0x470031,0x48002e,0x430047,0x47002e,0x490048,0x46004a,0x4a0048,0x460049,0x43004a,0x4a0043,0x4b0048,0x46004c,0x4c0046,0x460049,0x4b004d,0x4e0048,0x2e002e,0x30004e,0x4e004f,0x300048,0x4f004e,0x50004f,0x510051,0x490050,0x500049,0x480048,0x4f0050, 0x4c0049,0x520052,0x490053,0x530049,0x510051,0x540053,0x530054,0x520052,0x55004c,0x3d004f,0x560030,0x520057,0x570052,0x560054,0x590058,0x580059,0x520055,0x560058,0x580055,0x540052,0x5a0057,0x5c005b,0x5e005d,0x5d005f,0x5f005d,0x600060,0x61005f,0x620061,0x5e0063,0x610062,0x640060,0x5d005d,0x650064,0x640065,0x660066,0x600064,0x680067,0x650065,0x5d0068,0x690060,0x610066,0x60006a,0x69006b,0x600060,0x6b006a,0x6a006b,0x6c006c,0x61006a,0x6d006c,0x6e006e,0x63006d,0x6d0061,0x63006c,0x61006d,0x690066,0x6f006f,0x6b0069,0x70006e,0x630071,0x6e0070,0x720065,0x730067,0x650072,0x740065, 0x660073,0x650074,0x740073,0x750075,0x660074,0x770076,0x75006f,0x760077,0x77006f,0x660066,0x750077,0x720067,0x780078,0x730072,0x790078,0x6c0067,0x6b007a,0x7c007b,0x7d007d,0x7e007c,0x7f007d,0x800080,0x81007f,0x7f0081,0x820082,0x7d007f,0x830081,0x840080,0x850083,0x830080,0x850084,0x810083,0x870086,0x840084,0x800087,0x880081,0x810085,0x8a0089,0x88008a,0x820081,0x810089,0x89008a,0x8b008b,0x820089,0x880085,0x8c008c,0x8a0088,0x8d008b,0x82008e,0x8b008d,0x8f0085,0x840084,0x90008f,0x910090,0x840084,0x860091,0x8f0090,0x920092,0x85008f,0x930092,0x940094,0x8c0093,0x93008c,0x850085, 0x920093,0x910086,0x950095,0x900091,0x970096,0x950095,0x860097,0x98008b,0x99008a,0x8a009a,0x98008a,0x8a0099,0x8c009a,0x9c009b,0x9d009d,0x9b009e,0x9e009f,0x9b00a0,0x9f009e,0x9e00a0,0xa0009d,0xa200a1,0xa1009d,0x9f00a0,0x9b00a3,0xa3009b,0xa400a4,0xa500a3,0xa300a5,0xa6009f,0xa400a7,0xa700a4,0xa8009b,0xa400a9,0xa900a4,0xa800a6,0xab00aa,0xaa00ab,0xa400a5,0xa800aa,0xaa00a5,0xa000a4,0x9f00ac,0xac009f,0xad00ad,0x9f00ae,0xae009f,0xaf00a5,0xa000ac,0xac00ad,0xaf00af,0xb100b0,0xb000b1,0xa200a2,0xa000b0,0xb000a0,0xa500af,0xb200ae,0xae00b2,0xab00ad,0xb400b3,0xb300a5,0xb400ab,0xb200b3, 0xb300b2,0xb100a5,0xb600b5,0xb500a2,0xab00b1,0xa800b7,0xb800ab,0xb900b9,0xab00b7,0xb800b4,0xa800ab,0xba00b7,0xb700ba,0xba00b9,0xa800bb,0xbb008e,0xba00ba,0x8e00bc,0xbc008e,0xbd008b,0xba00bc,0xbc008b,0x9900bd,0xbd0098,0x9800bd,0xb9008b,0xba00be,0xbe00ba,0xbd00bd,0xbf00be,0xbe00bf,0xbd00b9,0x9900c0,0xc00099,0xbf00c1,0xbd00c0,0xc000c1,0xc100bf,0x9900c2,0xc20099,0xc300c3,0xc400c2,0xc200c4,0x8c00c1,0xc3009a,0x9a00c3,0x8c0099,0x9400c5,0xc500c3,0x94008c,0xc600c5,0xc500c6,0xc600c3,0xc800c7,0xc700c8,0xc300c4,0xc600c7,0xc700c4,0xb900c3,0xbf00c9,0xc900bf,0xca00ca,0xbf00cb,0xcb00bf, 0xcc00c1,0xb900c9,0xc900ca,0xc100cc,0xcd00cb,0xcb00cd,0xc400ca,0xcf00ce,0xce00c1,0xcf00c4,0xcd00ce,0xce00cd,0xb900c1,0xcc00b8,0xd100d0,0xd000d2,0xd400d3,0xd300d4,0xd500d5,0xd200d3,0xd600d5,0xd200d7,0xd500d6,0xd800d4,0xd500d0,0xd400d9,0xd900d4,0xcf00cf,0xd400d8,0xd900c4,0xcf00d5,0xc400d9,0xda00c8,0xc400d7,0xc800da,0xda00d7,0xd500d5,0xc400da,0xd800d0,0xdb00db,0xcf00d8,0xdd00dc,0xdb00db,0xd000dd,0xdf00de,0xd700d7,0xc800df,0xdf00c8,0xe000e0,0xde00df,0xe100cd,0xcf00cf,0xdb00e1,0xe100db,0xe200e2,0xcd00e1,0xe300db,0xdc00dc,0xe400e3,0xe300e4,0xe200e2,0xdb00e3,0xe500e4,0xe000dc, 0xc800e6,0xe600c8,0xc600c6,0xe700e6,0xe600e7,0xca00e0,0xcd00e8,0xe800cd,0xe200e2,0xe900e8,0xe800e9,0xea00ca,0xec00eb,0xed00ec,0xea00ea,0xee00ed,0xed00ee,0xef00ef,0xec00ed,0xf100f0,0xee00ee,0xea00f1,0xf200ec,0xef00ef,0xf300f2,0xf200f3,0xf400f4,0xec00f2,0xf500f4,0xec00f6,0xf400f5,0xf700f6,0xf400f4,0x9600f7,0xf800f4,0xf300f3,0xf900f8,0xf80096,0xf900f4,0x9600f8,0xfa0095,0x960096,0xf900fa,0xfa00f9,0xfb00fb,0x9500fa,0xfc0090,0x950095,0xfb00fc,0xfc00fb,0xfd00fd,0x9000fc,0xfe0092,0x900090,0xfd00fe,0xfe00fd,0xff00ff,0x9200fe,0x1000094,0x920092,0xff0100,0x10000ff,0x1010101,0x940100, 0x10200c6,0x940094,0x1010102,0x1020101,0xe700e7,0xc60102,0x1040103,0x1030105,0x1070106,0x1060107,0x1080108,0x1050106,0x10a0109,0x1070107,0x103010a,0x10b0105,0x1080108,0x10c010b,0x10d010c,0x1080108,0x107010d,0x10b010e,0x10c0105,0x10e010b,0x10d0107,0x1010101,0x10c010d,0x10f0109,0x10700e7,0x109010f,0x10f00e7,0x1010101,0x107010f,0x110010e,0x1050111,0x10e0110,0x1120109,0xe70113,0x1090112,0x1120113,0xe000e0,0xe70112,0x114010c,0x1010101,0xff0114,0x1140115,0xff010c,0x1150114,0x1160115,0x1170117,0x10e0116,0x116010c,0x10e0115,0x10c0116,0x1190118,0x1170111,0x1180119,0x1190111,0x10e010e,0x1170119,0x11a0111,0xde0118,0xe0011b,0x11b00e0, 0x1130113,0x11c011b,0x11b011c,0x11c00de,0x113011d,0xb800cc,0xb400b4,0xcc011e,0x11e00cc,0x11f011f,0x120011e,0x11e0120,0xcc00b4,0xca0121,0x121011f,0xca00cc,0xe90121,0x12100e9,0xb2011f,0xb40122,0x12200b4,0x1200120,0x1230122,0x1220123,0xad00b2,0xb20124,0x12400b2,0x1230123,0x1250124,0x1240125,0xaf00ad,0xad0126,0x12600ad,0x1250125,0x1270126,0x1260127,0xb100af,0xaf0128,0x12800af,0x1270127,0x1290128,0x1280129,0xb600b1,0xb1012a,0x12a00b1,0x1290129,0x12b012a,0x12a012b,0x12b00b6,0x12d012c,0x12c00b6,0x120012b,0x11f012e,0x130012f,0x11f011f,0x12f012e,0x130011f,0x13100e9,0x120012e,0x12e012f,0x1320131,0x1230133,0x1330131,0x1230132, 0x1200133,0x1330120,0x1340131,0x1360135,0x1370136,0x1340134,0x1380137,0x1370138,0x1390139,0x1360137,0x13a0138,0x13b0134,0x136013c,0x13c0136,0x1390139,0x13d013c,0x13c013d,0x139013b,0x138013e,0x13f0139,0x1400140,0x139013e,0x13f013d,0x1380139,0x141013e,0x13e0141,0x1400140,0x142013f,0x13f0142,0x141013d,0x1380143,0x13a0144,0x1380138,0x1440143,0x1430144,0x1450145,0x1410143,0x13a0146,0x1470147,0x144013a,0x1490148,0x1470147,0x1460149,0x14a0148,0x14b014b,0x144014a,0x14a0147,0x1440148,0x147014a,0x14d014c,0x14b0145,0x14c014d,0x14d0145,0x1440144,0x14b014d,0x14e013b,0x14f013d,0x13d0150,0x14e013d,0x13d014f,0x1420150,0x14e014f,0x1510151,0x13b014e, 0x1500142,0x1520152,0x14f0150,0x153013b,0x1540151,0x1560155,0x1570156,0x1580154,0x1590157,0x1570154,0x1590158,0x1560157,0x15b015a,0x1580158,0x154015b,0x15d015c,0x1560156,0x159015d,0x15d0159,0x15e015e,0x15c015d,0x15f0159,0x1580158,0x160015f,0x1610160,0x1580158,0x15a0161,0x15f0162,0x1600159,0x162015f,0x1640163,0x162015e,0x1630164,0x1640159,0x15e0162,0x1590164,0x161015a,0x1650165,0x1600161,0x1670166,0x1650165,0x15a0167,0x168015c,0x15e015e,0x1690168,0x16a0169,0x15e015e,0x163016a,0x1680169,0x16b016b,0x15c0168,0x16a0163,0x16c016c,0x169016a,0x16d015c,0x162016b,0x160016e,0x170016f,0x1600160,0x16f016e,0x1700160,0x1710165,0x162016e,0x16e016f, 0x1720171,0x1630173,0x1730171,0x1630172,0x1620173,0x1730162,0x1740171,0x1760175,0x1770176,0x1740174,0x1780177,0x1770178,0x1790179,0x1760177,0x17a0178,0x17b0174,0x17c017a,0x17a017c,0x1780178,0x17c017d,0x17d017c,0x17e017e,0x17f017d,0x17d017f,0x1800178,0x1790181,0x181017f,0x1790180,0x1780181,0x1810178,0x17f017f,0x17e0182,0x1830180,0x184017f,0x17f0182,0x183017f,0x1840184,0x1850183,0x1830185,0x1860180,0x1840182,0x1870176,0x1880179,0x1790189,0x1870179,0x1790188,0x1800189,0x187018a,0x1880176,0x18a0187,0x1890180,0x18b018b,0x1880189,0x18c0180,0x1850185,0x18d018c,0x18c018b,0x18d0180,0x18b018c,0x18f018e,0x18b018b,0x18d018f,0x1900176,0x18a018a, 0x1910190,0x192018d,0x1910185,0x18a0193,0x1950194,0x1960196,0x1940197,0x1970198,0x1990199,0x198019a,0x19a0198,0x19b019b,0x19c019a,0x19a019c,0x1990199,0x19c019d,0x19d019c,0x19b019e,0x198019f,0x19f0059,0x19801a0,0x59019f,0x19f01a0,0x55019b,0x5901a1,0x1a10059,0x1a00198,0x5901a2,0x1a20059,0x560056,0x1a301a2,0x1a201a3,0x1a301a0,0x5601a4,0x1a5019b,0x1a601a0,0x19b01a5,0x1a7019b,0x19c01a6,0x19b01a7,0x1a701a6,0x1a801a8,0x19c01a7,0x1a501a0,0x1a901a9,0x1a601a5,0x1aa01a0,0x1a301a3,0x1ab01aa,0x1aa01a9,0x1ab01a0,0x1a901aa,0x1a401ac,0x1a301a3,0x1ac01ad,0x1ad01ab,0x1ac01a3,0x1ae01ad,0x1ad01ae,0x1af01ab,0x5a01a4,0x1a4005a,0x5a01ac,0x1af01b0, 0x1b1005a,0x540054,0x1b201b1,0x1b101b2,0x1b301b3,0x5a01b1,0x1b401ac,0x5a005a,0x1b301b4,0x1b401b3,0x1b501b5,0x1ac01b4,0x1b60054,0x1b20051,0x5401b6,0x1b60051,0x1b701b7,0x1b201b6,0x1b801ae,0x1ac01ac,0x1b501b8,0x1b801b5,0x1b901b9,0x1ae01b8,0x1ba0051,0x1b7004f,0x5101ba,0x1ba01bb,0x4f01b7,0x1bb01ba,0x1bc01b2,0x1b301b7,0x1b201bd,0x1bc01be,0x1b201b2,0x1be01bd,0x1bd01be,0x1bf01bf,0x1b301bd,0x1c101c0,0x1bf01b5,0x1c001c1,0x1c101b5,0x1b301b3,0x1bf01c1,0x1c201c0,0x1c301c3,0x1b901c2,0x1c201b9,0x1b501b5,0x1c001c2,0x1bc01b7,0x1c401c4,0x1be01bc,0x1c501b7,0x1bb01bb,0x1c601c5,0x1c501c6,0x1c401c4,0x1b701c5,0x1c7004f,0x1bb01c8,0x4f01c7,0x1c701c8, 0x1c601c6,0x1bb01c7,0x1ca01c9,0x1c901cb,0x1cd01cc,0x1ca01cd,0x1ce01c9,0x1c901cf,0x1cf01c9,0x1d001d0,0x1d101cf,0x1cf01d1,0x1ce01ce,0x1d101d2,0x1d201d1,0x1d301d3,0x1d401d2,0x1d201d4,0x1d401ce,0x16601d5,0x1d501ce,0x16501d4,0x16601d6,0x1d60166,0x1d401d4,0x1d701d6,0x1d601d7,0x1d40165,0x1d301d8,0x1d801d3,0x1d901d9,0x1d701d8,0x1d801d7,0x16501d4,0x1d70170,0x17001d7,0x1d9016f,0x1db01da,0x1da01d7,0x1db01d9,0x16f01da,0x1da016f,0x17101d7,0x16f01dc,0x1dc016f,0x1db01db,0x1dd01dc,0x1dc01dd,0x1720171,0x17101de,0x1de0171,0x1dd01dd,0x1df01de,0x1de01df,0x1d10172,0x1d001e0,0x1e101d3,0x1d101d1,0x1e201e1,0x1e001e2,0x15101d1,0x14f01e3,0x1e3014f,0x14f01e4, 0x15201e5,0x1e501e4,0x152014f,0x1e601e5,0x1e501e6,0x1e601e4,0x1e801e7,0x1e701e4,0x1e601e6,0x15201e9,0x1ea01e6,0x1eb01eb,0x1e601e9,0x1ea01e8,0x15201e6,0x1ec01e9,0x1e901ec,0x1eb01eb,0x1ed01ea,0x1ea01ed,0x1e801e8,0x1ed01ee,0x1ee01ed,0x1ed01d0,0x1e201e0,0x1e001d0,0x1eb01ed,0x1f001ef,0x1ef01ed,0x1f001eb,0x1e201ef,0x1ef01e2,0x1ec01ed,0x1f201f1,0x1f101eb,0x1f201ec,0x1f001f1,0x1f101f0,0x1ec01eb,0x15201f3,0x1f30152,0x1420142,0x1f401f3,0x1f301f4,0x1f501ec,0x1f201f6,0x1f601f4,0x1f201f5,0x1ec01f6,0x1f601ec,0x14201f4,0x14001f7,0x1f701f4,0x1400142,0x1f801f7,0x1f701f8,0x1f901f4,0x1f501fa,0x1fa01f8,0x1f501f9,0x1f401fa,0x1fa01f4,0x1fb01f8,0x1fd01fc, 0x1fe01fb,0x20001ff,0x20101fe,0x1fe0201,0x20201fb,0x2000203,0x2030200,0x1fb01ff,0x2010204,0x2040201,0x2050205,0x2060204,0x2040206,0x1fb01fb,0x2060207,0x2070206,0x2010208,0x2000209,0x2090200,0x20a020a,0x200020b,0x20b0200,0x20a0202,0x20c0209,0x209020c,0x20c0201,0x20e020d,0x20d020e,0x2050205,0x201020d,0x20d0201,0x202020c,0x20f020b,0x20b020f,0x210020a,0x20f0211,0x211020f,0x2060202,0x2050212,0x2120205,0x2130213,0x2050214,0x2140205,0x215020e,0x2060212,0x2120213,0x2150215,0x2170216,0x2160217,0x2060208,0x2150216,0x2160208,0x20e0206,0x2180214,0x2140218,0x2080213,0x2170219,0x21a020c,0x113020a,0x21b011d,0x11d021c,0x21b011c,0x21c011d,0x21d021c, 0x21b021b,0x21e021d,0x21d021e,0x21f021f,0x21c021d,0x2210220,0x21e021e,0x21b0221,0x222011c,0x223021c,0x21c0224,0x222021c,0x21c0223,0x21f0224,0x2220225,0x223011c,0x2250222,0x224021f,0x2260226,0x2230224,0x22700de,0x11c011c,0x2250227,0x2270225,0x2280228,0xde0227,0x229021f,0x22a021e,0x21e022b,0x229021e,0x21e022a,0x220022b,0x229022a,0x22c022c,0x21f0229,0x22e022d,0x22c0226,0x22d022e,0x22e0226,0x21f021f,0x22c022e,0x22b0220,0x22f022f,0x22a022b,0x11a0118,0x22f022f,0x220011a,0x2300223,0x2230226,0x2320231,0x2300232,0x2250223,0x2230231,0x2310232,0x2330233,0x2250231,0x2340228,0x2250225,0x2330234,0x2360235,0x2370237,0x2350238,0x2380239,0x23a023a, 0x239023b,0x23b023c,0x239023d,0x23c023b,0x23b023d,0x23e023a,0x23c023f,0x23f023c,0x23a0239,0x23d0240,0x240023d,0x2410241,0x2420240,0x2400242,0x23a023a,0x2420243,0x2430242,0x23d0244,0x23c0245,0x2450246,0x23d023d,0x2460247,0x2470241,0x23c023d,0x2480245,0x2450248,0x2490246,0x2410247,0x2470246,0x2480249,0x23c024a,0x24a024b,0x2480248,0x24b024c,0x24c0246,0x23c0248,0x24d024a,0x24a024d,0x24b024b,0x24e024c,0x24c024e,0x24e0246,0x250024f,0x24f0250,0x2460249,0x24e024f,0x24f0249,0x24d0246,0x23c0251,0x251023c,0x2520252,0x23c0253,0x253023c,0x23e023e,0x2540253,0x2530254,0x2550252,0x2570256,0x2580257,0x2590255,0x2570258,0x258025a,0x25b025b,0x2590258, 0x25c0257,0x25d0259,0x25e025c,0x25c0259,0x25e025d,0x257025c,0x25f0257,0x25e025e,0x260025f,0x25f0260,0x2610261,0x257025f,0x2630262,0x261025a,0x2620263,0x2630257,0x25d0261,0x2590264,0x2640259,0x2650265,0x2590266,0x2660259,0x25b025b,0x2670266,0x2660267,0x2650265,0x2680264,0x2640268,0x25a025d,0x2620269,0x2690262,0x2440244,0x2420269,0x2690242,0x242025a,0x241026a,0x26a0241,0x25a025b,0x242026a,0x26a025b,0x241025a,0x249026b,0x26b0249,0x2670267,0x25b026b,0x26b025b,0x2440241,0x262026c,0x26e026d,0x2620262,0x26d026c,0x26e0262,0x2610261,0x26f026e,0x26e026f,0x26f026d,0x2610270,0x2700261,0x2540260,0x23e0271,0x2710272,0x2730254,0x2740271,0x2710274, 0x2740272,0x2730275,0x2750273,0x2760276,0x2770275,0x2750277,0x18a0274,0x2740193,0x1930274,0x18a0277,0x1880278,0x2780188,0x2740272,0x18a0278,0x2780272,0x2720274,0x1880279,0x2790188,0x27a018b,0x2720279,0x279018b,0x27a027a,0x27c027b,0x27b027c,0x2540254,0x272027b,0x27b0272,0x252027a,0x254027d,0x27d0254,0x27c027c,0x27e027d,0x27d027e,0x27c0252,0x27a027f,0x280027e,0x281027c,0x27c027f,0x280027c,0x27a0281,0x282027f,0x27f0282,0x2810281,0x2830280,0x2800283,0x284027e,0x2820285,0x2850282,0x286027a,0x2810287,0x2870281,0x2860282,0x2890288,0x2880289,0x2810283,0x2860288,0x2880283,0x1860281,0x28b028a,0x28a028c,0x1860186,0x28c028d,0x28d028e,0x28f028f, 0x186028d,0x2910290,0x28f028f,0x28e0291,0x2920184,0x1860186,0x28f0292,0x292028f,0x2930293,0x1840292,0x294028f,0x2900290,0x26d0294,0x2940293,0x26d028f,0x2930294,0x26c026d,0x2900290,0x295026c,0x2960295,0x1850290,0x1840297,0x2970184,0x2930293,0x2980297,0x2970298,0x26d0185,0x26f0299,0x2990293,0x26f026d,0x2980299,0x2990298,0x1850293,0x2980192,0x1920298,0x29a029a,0x2840192,0x29b0282,0x2840284,0x29a029b,0x29b029c,0x2820282,0x29c0287,0x29d029a,0x29c029e,0x29a029d,0x29f029e,0x29a029a,0x298029f,0x2a00286,0x2a1029c,0x2a202a0,0x2a002a2,0x2890286,0x28602a3,0x2a30286,0x2a202a2,0x2a402a3,0x2a302a4,0x2a20289,0x2a102a5,0x2a602a4,0x2a202a2,0x2a702a6, 0x2a502a7,0x2a102a2,0x2a802a5,0x2a502a8,0x2a902a7,0x2a402a6,0x2a602a7,0x2a802a9,0x2a102aa,0x2aa02a1,0x29e029e,0x2ab02aa,0x2aa02ab,0x28902a8,0x2a402ac,0x2ae02ad,0x2a402a4,0x2ad02ac,0x2ae02a4,0x2ad02a9,0x2af02ac,0x2ac02af,0x2a90289,0x2b002ae,0x2ae02b0,0x28302ad,0x28902b1,0x2b10289,0x2af02af,0x2b202b1,0x2b102b2,0x27e0283,0x28302b3,0x2b30283,0x2b202b2,0x2b402b3,0x2b302b4,0x252027e,0x27e02b5,0x2b5027e,0x2b402b4,0x2b602b5,0x2b502b6,0x2b60252,0x24d0251,0x2510252,0x29802b6,0x26f02b7,0x2b7026f,0x2b802b8,0x2b902b7,0x2b702b9,0x2600298,0x2b80270,0x27002b8,0x298026f,0x2b902ba,0x2bc02bb,0x2b902b9,0x2bb02ba,0x2bc02b9,0x2bb02b8,0x2bd02ba,0x2ba02bd, 0x2b80298,0x2be02bc,0x2bc02be,0x2b802bb,0x26002bf,0x2bf0260,0x2c002c0,0x2be02bf,0x2bf02be,0x29802b8,0x2bd029f,0x29f02bd,0x2bd029e,0x2bb02c1,0x2c102bb,0x29e02ab,0x2bd02c1,0x2c102ab,0x2c0029e,0x26002c2,0x2c20260,0x2c3025e,0x2c002c2,0x2c2025e,0x25e02c3,0x25d02c4,0x2c402c3,0x25d025e,0x2c502c4,0x2c402c5,0x2c502c3,0x25d02c6,0x2c6025d,0x2c70268,0x2c502c6,0x2c60268,0x2bb02c7,0x2be02c8,0x2ca02c9,0x2be02be,0x2c902c8,0x2ca02be,0x2cb02c0,0x2bb02c8,0x2c802c9,0x2c002cb,0x2cc02ca,0x2ca02cc,0x2b602c9,0x2b402cd,0x2cd02b4,0x2ce02ce,0x2cf02cd,0x2cd02cf,0x24d02b6,0x2b602d0,0x2d002b6,0x2cf02cf,0x24b02d0,0x2d0024b,0x2ce024d,0x2b402d1,0x2d102b4,0x2b202b2, 0x2d202d1,0x2d102d2,0x2d202ce,0x2b202d3,0x2d302b2,0x2d402af,0x2d202d3,0x2d302af,0x2d402d4,0x2af02d5,0x2d502af,0x2ad02ad,0x1df02d5,0x2d501df,0x2ad02d4,0x2b002d6,0x2d601df,0x2b002ad,0x17202d6,0x2d60172,0x1df01df,0x1dd02d7,0x2d702d4,0x2d801df,0x2d402d7,0x2d701dd,0x2d902d8,0x2d202da,0x2da02d8,0x2d202d9,0x2d402da,0x2da02d4,0x2db02d8,0x2ce02dc,0x2dc02d9,0x2ce02db,0x2d202dc,0x2dc02d2,0x2db02d9,0x2de02dd,0x2dd02de,0x2ce02cf,0x2db02dd,0x2dd02cf,0x2df02ce,0x24b02e0,0x2e002de,0x24b02df,0x2cf02e0,0x2e002cf,0x24b02de,0x2df02e1,0x2e202bb,0x2e302cb,0x2e402e2,0x2e202cb,0x2e402e3,0x2bb02e2,0x2e502ab,0x2bb02bb,0x2e402e5,0x2e502e4,0x2e602e6,0x2ab02e5, 0x2e702e3,0x2e402e8,0x2e302e7,0x2e702e8,0x2e602e6,0x2e402e7,0x2e902e3,0x2cb02cb,0x2c902e9,0x2e902c9,0x2ea02ea,0x2e302e9,0x2eb02a8,0x2ab02ab,0x2e602eb,0x2eb02e6,0x2ec02ec,0x2a802eb,0x2ed02e6,0x2e802e8,0x2ee02ed,0x2ed02ee,0x2ec02ec,0x2e602ed,0x2ef02ea,0x2c902c9,0x2cc02ef,0x2ef02f0,0x2cc02ea,0x2f002ef,0x2f102a7,0x2a802a8,0x2ec02f1,0x2f102ec,0x2f202f2,0x2a702f1,0x2f302ee,0x2ec02f4,0x2ee02f3,0x2f302f4,0x2f202f2,0x2ec02f3,0x2f502a9,0x2a702a7,0x2f202f5,0x2f502f2,0x2f602f6,0x2a902f5,0x2f702f2,0x2f402f4,0x2f802f7,0x2f702f8,0x2f602f6,0x2f202f7,0x2f902e8,0x2fa02e3,0x24b02e1,0x2fb024e,0x24b024b,0x2fa02fb,0x2fb02fa,0x2fc02fc,0x24e02fb,0x2e102df, 0x2fd02fd,0x2fa02e1,0x2fe0250,0x24e024e,0x2fc02fe,0x2fe02fc,0x2ff02ff,0x25002fe,0x30002fc,0x30102fa,0x2fa0302,0x30002fa,0x2fa0301,0x2fd0302,0x3000301,0x3030303,0x2fc0300,0x3040303,0x3050305,0x2ff0304,0x30402fc,0x2ff0303,0x2fc0304,0x30202fd,0x3060306,0x3010302,0x30702fd,0x2fd02df,0x3090308,0x3070309,0x30602fd,0x2fd0308,0x30702df,0x30a030a,0x3090307,0x3080309,0x30b030b,0x3060308,0x30c030a,0x2df02df,0x2de030c,0x30c02de,0x30d030d,0x30a030c,0x30e030d,0x2de02de,0x2db030e,0x30e030f,0x2db030d,0x30f030e,0x310030f,0x2db02db,0x2d90310,0x31002d9,0x3110311,0x30f0310,0x31202c0,0x2c302c3,0x3130312,0x3120313,0x2cc02cc,0x2c00312,0x3140313,0x2c302c3, 0x2c50314,0x31402c5,0x3150315,0x3130314,0x31602f0,0x2cc02cc,0x3130316,0x3160313,0x3170317,0x2f00316,0x3180315,0x3130319,0x3150318,0x3180319,0x3170317,0x3130318,0x31a02c5,0x31502c7,0x2c5031a,0x31a02c7,0x31b031b,0x315031a,0x31c031b,0x31d031d,0x319031c,0x31c0319,0x3150315,0x31b031c,0x31e02f0,0x31f0317,0x3170320,0x31e0317,0x317031f,0x3190320,0x31e031f,0x3210321,0x2f0031e,0x3200319,0x3220322,0x31f0320,0x3230319,0x31d031d,0x3240323,0x3230324,0x3220322,0x3190323,0x32502ea,0x2f002f0,0x3210325,0x3250321,0x3260326,0x2ea0325,0x21a020a,0x31f031f,0x322021a,0x327020f,0x20a0321,0x20f0327,0x3270321,0x31f031f,0x20a0327,0x21a0322,0x322020c,0x3240328, 0x328020c,0x3240322,0x20e0328,0x328020e,0x218020c,0x20e0329,0x329020e,0x3240324,0x32a0329,0x329032a,0x3240218,0x31d032b,0x32b032a,0x31d0324,0x32c032b,0x32b032c,0x32c032a,0x31d032d,0x32d031d,0x32e031b,0x32c032d,0x32d031b,0x31b032e,0x2c7032f,0x32f032e,0x2c7031b,0x330032f,0x32f0330,0x330032e,0x2c70331,0x33102c7,0x2680268,0x3320331,0x3310332,0x2680330,0x2650333,0x3330332,0x2650268,0x3340333,0x3330334,0x3340332,0x2650335,0x3350265,0x2670267,0x3360335,0x3350336,0x3360334,0x2670337,0x3370267,0x2500249,0x3360337,0x3370249,0x2500250,0x2ff0338,0x3380336,0x2e30250,0x2ea0339,0x33902ea,0x3260326,0x33a0339,0x339033a,0x33b02e3,0x2e3033c,0x33c02e3, 0x33a033a,0x326033d,0x33d0326,0x2e30210,0x33b02f9,0x33e0326,0x2100321,0x326033e,0x33e0321,0x20f020f,0x210033e,0x340033f,0x33b033b,0x33f02f9,0x2f9033f,0x34102e8,0x33f0340,0x34202ee,0x2e802e8,0x33f0342,0x342033f,0x3430343,0x2ee0342,0x344033f,0x3410341,0x3450344,0x3440345,0x3430343,0x33f0344,0x34602f4,0x2ee02ee,0x3430346,0x3460343,0x3470347,0x2f40346,0x3480343,0x3450345,0x3490348,0x3480347,0x3490343,0x3470348,0x34a02f8,0x2f402f4,0x347034a,0x34a0347,0x34b034b,0x2f8034a,0x34c016b,0x34b034b,0x347034c,0x34d030a,0x30d030d,0x34e034d,0x34d034e,0x34f034f,0x30a034d,0x350034e,0x30d030d,0x30f0350,0x350030f,0x3110311,0x34e0350,0x3510309,0x30a030a, 0x34f0351,0x351034f,0x3520352,0x3090351,0x353030b,0x3090309,0x3520353,0x3530352,0x3540354,0x30b0353,0x355034e,0x3110311,0x3560355,0x3550356,0x3570357,0x34e0355,0x3580311,0x35602d9,0x3110358,0x35802d9,0x2d802d8,0x3560358,0x3590356,0x2d802d8,0x1dd0359,0x35901dd,0x1db01db,0x3560359,0x35a0356,0x1db01db,0x1d9035a,0x35a01d9,0x35b035b,0x356035a,0x35c035b,0x35d035d,0x357035c,0x35c0356,0x357035b,0x356035c,0x35f035e,0x35d034e,0x35e035f,0x35f034e,0x3570357,0x35d035f,0x360035b,0x1d901d9,0x1d30360,0x3610334,0x3360336,0x3620361,0x3610362,0x3630363,0x3340361,0x33802ff,0x3620362,0x3360338,0x3640362,0x2ff02ff,0x3050364,0x3640305,0x3650365,0x3620364, 0x3660365,0x3670367,0x3630366,0x3660362,0x3630365,0x3620366,0x3680367,0x3690369,0x3340368,0x3680334,0x3630363,0x3670368,0x36a0332,0x3340334,0x369036a,0x36a0369,0x36b036b,0x332036a,0x36c0330,0x3320332,0x36b036c,0x36c036b,0x36d036d,0x330036c,0x36e032e,0x3300330,0x36d036e,0x36e036d,0x36f036f,0x32e036e,0x370032c,0x32e032e,0x36f0370,0x370036f,0x3710371,0x32c0370,0x372032a,0x32c032c,0x3710372,0x3720371,0x3730373,0x32a0372,0x3740218,0x32a032a,0x3730374,0x3740373,0x3750375,0x2180374,0x3760303,0x3010301,0x3770376,0x3760377,0x3780378,0x3030376,0x3790301,0x3770306,0x3010379,0x3790306,0x37a037a,0x3770379,0x37b0305,0x3030303,0x378037b,0x37b0378, 0x37c037c,0x305037b,0x37d037a,0x3060306,0x30b037d,0x37d030b,0x37e037e,0x37a037d,0x37f0365,0x3050305,0x37c037f,0x37f037c,0x22d022d,0x365037f,0x3800367,0x3650365,0x22d0380,0x380022d,0x22c022c,0x3670380,0x3810226,0x22d022d,0x37c0381,0x381037c,0x3820382,0x2260381,0x383037c,0x3780378,0x3840383,0x3830382,0x384037c,0x3820383,0x3850377,0x3780386,0x3770385,0x3850386,0x3840384,0x3780385,0x3870377,0x37a037a,0x3880387,0x3870386,0x3880377,0x3860387,0x389037e,0x37a038a,0x37e0389,0x389038a,0x3880388,0x37a0389,0x2300226,0x3820382,0x2320230,0x38b0232,0x3820382,0x384038b,0x38b038c,0x3840232,0x38c038b,0x38d0233,0x2320232,0x38c038d,0x38d038c,0x38e038e, 0x233038d,0x38f038c,0x3840384,0x386038f,0x38f0386,0x3900390,0x38c038f,0x3920391,0x390038e,0x3910392,0x392038e,0x38c038c,0x3900392,0x3930386,0x3900388,0x3860393,0x3930388,0x3940394,0x3900393,0x3950394,0x3960396,0x3910395,0x3950391,0x3900390,0x3940395,0x3970394,0x3880388,0x38a0397,0x397038a,0x3980398,0x3940397,0x3990398,0x39a039a,0x3960399,0x3990394,0x3960398,0x3940399,0x39b039a,0x39c039c,0x391039b,0x39b0396,0x391039a,0x396039b,0x39e039d,0x39c038e,0x39d039e,0x39e038e,0x3910391,0x39c039e,0x39f039d,0x3a003a0,0x233039f,0x39f038e,0x233039d,0x38e039f,0x23403a0,0x2330228,0x3a00234,0x3a10228,0x3a003a0,0x3a203a1,0x3a303a2,0x3a003a0,0x39d03a3, 0x3a303a4,0x39d03a2,0x3a403a3,0xe503a2,0x3a403a4,0xe400e5,0x3a5039d,0x3a4039c,0x39d03a5,0x3a5039c,0x3a603a6,0x3a403a5,0x3a803a7,0x3a600e4,0x3a703a8,0x3a800e4,0x3a403a4,0x3a603a8,0x3a903a6,0x39c039c,0x39a03a9,0x3a903aa,0x39a03a6,0x3aa03a9,0x3ab03aa,0x3ac03ac,0x3a703ab,0x3ab03a6,0x3a703aa,0x3a603ab,0x3ad00e4,0x3ae03a7,0x3a703af,0x3ad03a7,0x3a703ae,0x3ac03af,0x3ad03ae,0x3b003b0,0xe403ad,0x3af03ac,0x3b103b1,0x3ae03af,0x3b200e2,0xe400e4,0x3b003b2,0x3b203b0,0xe900e9,0xe203b2,0x13000e9,0x3b003b0,0x12f0130,0x3b303ae,0x3b003b4,0x3ae03b3,0x3b303b4,0x12f012f,0x3b003b3,0x3b503ae,0x3b403b1,0x3ae03b5,0x3b6034f,0x34e034e,0x3b703b6,0x3b603b7, 0x3b803b8,0x34f03b6,0x3b903b7,0x34e034e,0x35e03b9,0x3b903ba,0x35e03b7,0x3ba03b9,0x3bb0352,0x34f034f,0x3b803bb,0x3bb03b8,0x3bc03bc,0x35203bb,0x3bd03b7,0x3b803be,0x3b703bd,0x3bd03be,0x3bc03bc,0x3b803bd,0x3bf03b7,0x3ba03ba,0x3c003bf,0x3bf03be,0x3c003b7,0x3be03bf,0x3c103ba,0x35e035e,0x35d03c1,0x3c1035d,0x3c203c2,0x3ba03c1,0x3c30354,0x3520352,0x3bc03c3,0x3c303bc,0x3c403c4,0x35403c3,0x3c503be,0x3bc03c6,0x3be03c5,0x3c503c6,0x3c403c4,0x3bc03c5,0x3c703c0,0x3be03c8,0x3c003c7,0x3c703c8,0x3c603c6,0x3be03c7,0x3c9035d,0x3c2035b,0x35d03c9,0x3c9035b,0x3ca03ca,0x3c203c9,0x36001d3,0x3ca03ca,0x35b0360,0x1e101e2,0x3ca03ca,0x1d301e1,0x3cb036b,0x3690369, 0x22a03cb,0x3cb022a,0x22f022f,0x36b03cb,0x3cc022a,0x3690369,0x36703cc,0x3cc022c,0x367022a,0x22c03cc,0x3cd036d,0x36b036b,0x22f03cd,0x3cd022f,0x1180118,0x36d03cd,0x3ce036f,0x36d036d,0x11803ce,0x3ce0118,0x3cf03cf,0x36f03ce,0x3d00118,0x3cf0117,0x11803d0,0x3d00117,0x3d103d1,0x3cf03d0,0x3d20371,0x36f036f,0x3cf03d2,0x3d203cf,0x3d303d3,0x37103d2,0x3d403cf,0x3d103d1,0x3d503d4,0x3d403d3,0x3d503cf,0x3d303d4,0x3d60117,0x3d10115,0x11703d6,0x3d60115,0x3d703d7,0x3d103d6,0x3d803d7,0x3d903d9,0x3d503d8,0x3d803d1,0x3d503d7,0x3d103d8,0x3da0373,0x3710371,0x3d303da,0x3da03d3,0x3db03db,0x37303da,0x3dc03d3,0x3d503d5,0x3dd03dc,0x3dc03dd,0x3db03db,0x3d303dc, 0x3de030b,0x3540354,0x3df03de,0x3de03df,0x3e003e0,0x30b03de,0x3e103df,0x3540354,0x3c403e1,0x3e103c4,0x3e203e2,0x3df03e1,0x3e303c4,0x3e203c6,0x3c403e3,0x3e303c6,0x3e403e4,0x3e203e3,0x3e503e4,0x3c603c6,0x3c803e5,0x3e503c8,0x3e603e6,0x3e403e5,0x3e7030b,0x19c03e0,0x1a803e7,0x3e703e0,0x1a8019c,0x30b03e7,0x3e803e0,0x3df03df,0x3e903e8,0x3e8019c,0x3e903e0,0x19c03e8,0x3ea03e2,0x3df03eb,0x3e203ea,0x3ea03eb,0x3e903e9,0x3df03ea,0x3ec03e2,0x3e403e4,0x3ed03ec,0x3ec03eb,0x3ed03e2,0x3eb03ec,0x3ee03e4,0x3e603e6,0x3ef03ee,0x3ee03ed,0x3ef03e4,0x3ed03ee,0x3f0037e,0x30b030b,0x1a803f0,0x3f001a8,0x1a601a6,0x37e03f0,0x3f1019e,0x19c019c,0x3e903f1,0x3f103e9, 0x3f203f2,0x19e03f1,0x3f303f2,0x3e903e9,0x3eb03f3,0x3f4019e,0x3f203f2,0x3f503f4,0x3f403f6,0x3f503f7,0x3f603f4,0x3f903f8,0x3f703f7,0x3f603f9,0x3f903f6,0x3fa03fa,0x3f803f9,0x3e03fa,0x3f603f6,0x35003e,0x3fb03f5,0x3f60034,0x3f503fb,0x3fb0034,0x350035,0x3f603fb,0x3fc0036,0x340034,0x3f503fc,0x3fc03f5,0x3fd03fd,0x3603fc,0x3fe03f2,0x3f503ff,0x3f203fe,0x3fe03ff,0x3fd03fd,0x3f503fe,0x3f303eb,0x3ff03ff,0x3f203f3,0x40003eb,0x3ff03ed,0x3eb0400,0x40003ed,0x4010401,0x3ff0400,0x4020401,0x4030403,0x3fd0402,0x40203fd,0x3ff03ff,0x4010402,0x40403fd,0x4030403,0x4050404,0x4060401,0x3ed03ed,0x3ef0406,0x4070401,0x4080408,0x4010406,0x4070403,0x3ef0401, 0x4080406,0x4070409,0x3c00403,0x3ba040a,0x40a03ba,0x1f201f2,0x1f5040a,0x40a01f5,0x3ba03c0,0x3c2040b,0x40b01f2,0x3c203ba,0x1f0040b,0x40b01f0,0x3c801f2,0x3c0040c,0x40c03c0,0x1f501f5,0x1f9040c,0x40c01f9,0x1f003c8,0x3c2040d,0x40d03c2,0x3ca03ca,0x1e2040d,0x40d01e2,0x3e601f0,0x3c8040e,0x40e03c8,0x1f901f9,0x40f040e,0x40e040f,0x40f03e6,0x1f90410,0x41001f9,0x1f801f8,0x4110410,0x4100411,0x3ef040f,0x3e60412,0x41203e6,0x40f040f,0x4130412,0x4120413,0x40f03ef,0x4110414,0x4140411,0x4150415,0x4130414,0x4140413,0x411040f,0x1f80416,0x41601f8,0x1410140,0x4110416,0x4160140,0x1410141,0x1450417,0x4170145,0x4110415,0x1410417,0x4170415,0x4080411,0x3ef0418, 0x41803ef,0x38a0413,0x37e0419,0x419037e,0x1a601a6,0x1a90419,0x41901a9,0x398038a,0x38a041a,0x41a038a,0x1a901a9,0x1ab041a,0x41a01ab,0x39a0398,0x398041b,0x41b0398,0x1ab01ab,0x1ae041b,0x41b01ae,0x3aa039a,0x39a041c,0x41c039a,0x1ae01ae,0x1b9041c,0x41c01b9,0x3ac03aa,0x3aa041d,0x41d03aa,0x1b901b9,0x1c3041d,0x41d01c3,0x3b103ac,0x3ac041e,0x41e03ac,0x1c301c3,0x41f041e,0x41e041f,0x1c303b1,0x1c00420,0x420041f,0x1c001c3,0x4210420,0x4200421,0x421041f,0x1c00422,0x42201c0,0x42301bf,0x4210422,0x42201bf,0x1bf0423,0x1be0424,0x4240423,0x42501bf,0x4230424,0x42401be,0x4250425,0x1be0426,0x42601be,0x42701c4,0x4250426,0x42601c4,0x2180427,0x3750428,0x4280375, 0x4290429,0x2130428,0x4280213,0x2150218,0x213042a,0x42a0213,0x4290429,0x42b042a,0x42a042b,0x2170215,0x215042c,0x42c0215,0x42b042b,0x42d042c,0x42c042d,0x4290217,0x375042e,0x42f0429,0x4300430,0x429042e,0x42f042b,0x3750429,0x431042e,0x42e0431,0x4300430,0x432042f,0x42f0432,0x432042b,0x4340433,0x4330434,0x42b042d,0x4320433,0x433042d,0x431042b,0x3750435,0x4350375,0x3730373,0x3db0435,0x43503db,0x3db0431,0x3dd0436,0x4360431,0x43703db,0x4310436,0x43603dd,0x4370437,0x4390438,0x4380439,0x4310430,0x4370438,0x4380430,0x4390431,0x43b043a,0x43a043b,0x4320432,0x430043a,0x43a0430,0x43b0439,0x43d043c,0x43c043d,0x4320434,0x43b043c,0x43c0434,0x2170432, 0x42d043e,0x43e043f,0x2170217,0x43f0219,0x219043f,0x4400440,0x43f0441,0x441043f,0x4420442,0x43f043e,0x4410442,0x42d0443,0x442043e,0x4440442,0x42d042d,0x4340444,0x4440445,0x4340442,0x4450444,0x4460445,0x4470447,0x4430446,0x4460443,0x4420442,0x4450446,0x4480447,0x4430449,0x4470448,0x44a0449,0x4470447,0x44b044a,0x44c0447,0x4450445,0x44d044c,0x44c044b,0x44d0447,0x44b044c,0x44e0445,0x4340434,0x43d044e,0x44e043d,0x44d044d,0x445044e,0x44f044b,0x44d044d,0x450044f,0x451043d,0x44d0452,0x43d0451,0x4510452,0x4500450,0x44d0451,0x4530450,0x4520452,0xf00453,0x4540452,0x43d043d,0x43b0454,0x4540455,0x43b0452,0x4550454,0x45600f0,0x4520452,0x4550456, 0x45600ee,0x45500f0,0xee0456,0x45700ef,0xee00ee,0x4550457,0x4570455,0x4580458,0xef0457,0x4590458,0x4550455,0x43b0459,0x4590439,0x43b0458,0x4390459,0x45a00f3,0xef00ef,0x458045a,0x45a0458,0x45b045b,0xf3045a,0x45c0439,0x4580437,0x439045c,0x45c0437,0x45b045b,0x458045c,0x45d00f9,0xf300f3,0x45b045d,0x45d045b,0x45e045e,0xf9045d,0x45f045b,0x4370437,0x3dd045f,0x45f03dd,0x45e045e,0x45b045f,0x46000fb,0xf900f9,0x45e0460,0x460045e,0x3d903d9,0xfb0460,0x46103dd,0x45e03d5,0x3dd0461,0x46103d5,0x3d903d9,0x45e0461,0x46200fd,0xfb00fb,0x3d90462,0x46203d9,0x3d703d7,0xfd0462,0x46300ff,0xfd00fd,0x3d70463,0x46303d7,0x1150115,0xff0463,0x4640409, 0x4650408,0x4080418,0x4640408,0x4650465,0x4660464,0x4180413,0x4650465,0x4130467,0x4670413,0x4150415,0x4680467,0x4670468,0x4690465,0x466046a,0x46a0468,0x4660469,0x465046a,0x46a0465,0x46b0468,0x466046c,0x46c0466,0x4690469,0x46d046c,0x46c046d,0x46b046b,0x46f046e,0x46e046f,0x4680409,0x4150470,0x4700415,0x14c0145,0x4680470,0x4700145,0x471014c,0x4690472,0x472014c,0x4680471,0x14c0472,0x4720469,0x4710468,0x4740473,0x4730474,0x469046d,0x4710473,0x473046d,0x14c0469,0x14b0475,0x4750471,0x14b014c,0x4760475,0x4750476,0x4770471,0x4740478,0x4780476,0x4740477,0x4710478,0x4780471,0x4760476,0x14b0479,0x479014b,0x1480148,0x47a0479,0x479047a,0x4030476, 0x409047b,0x47b046f,0x4050405,0x403047b,0x3d0405,0x46f046f,0x4f003d,0x47c046f,0x4f046b,0x46f047c,0x47c046b,0x1c801c8,0x4f047c,0x47d01c8,0x46b046b,0x46d047d,0x47d01c6,0x46d01c8,0x1c6047d,0x47e01c6,0x46d046d,0x474047e,0x47e0474,0x47f047f,0x1c6047e,0x4800474,0x47f0477,0x4740480,0x4800477,0x4810481,0x47f0480,0x4830482,0x48101c6,0x4820483,0x48301c6,0x47f047f,0x4810483,0x48401c4,0x1c601c6,0x4820484,0x4840482,0x4270427,0x1c40484,0x4850481,0x4820486,0x4810485,0x4850486,0x4270427,0x4820485,0x4870425,0x4270427,0x4860487,0x4870486,0x4880488,0x4250487,0x4890423,0x4250425,0x4880489,0x4890488,0x48a048a,0x4230489,0x3b503b1,0x48b048b,0x3b403b5, 0x48c048b,0x3b103b1,0x41f048c,0x48c048d,0x41f048b,0x48d048c,0x48e048d,0x41f041f,0x421048e,0x48e048f,0x421048d,0x48f048e,0x490048f,0x4210421,0x4230490,0x490048a,0x423048f,0x48a0490,0x491048b,0x48b048d,0x4930492,0x4910493,0x3b4048b,0x48b0492,0x4920493,0x4940494,0x3b40492,0x491048d,0x4950495,0x4930491,0x496048d,0x48f048f,0x4970496,0x4960495,0x497048d,0x4950496,0x498048f,0x48a048a,0x4990498,0x4980499,0x4970497,0x48f0498,0x49a012f,0x3b403b4,0x494049a,0x49a0494,0x1310131,0x12f049a,0x49b0499,0x48a048a,0x488049b,0x49b049c,0x4880499,0x49c049b,0x7a006b,0x4970497,0x499007a,0x49d006b,0x6f006f,0x495049d,0x49d0495,0x4970497,0x6b049d,0x7a0499, 0x499006c,0x49c049e,0x49e006c,0x49c0499,0x6e049e,0x49e006e,0x71006c,0x6e049f,0x49f006e,0x49c049c,0x4a0049f,0x49f04a0,0x4a00071,0x4a204a1,0x4a10071,0x4a004a0,0x49c04a3,0x4a3049c,0x4880488,0x48604a3,0x4a30486,0x48604a0,0x48104a4,0x4a40481,0x4a004a2,0x48604a4,0x4a404a2,0x48104a0,0x4a604a5,0x4a504a2,0x4810481,0x47704a7,0x4a704a6,0x4770481,0x4a804a7,0x4a704a8,0x4a604a6,0x4a804a9,0x4a904a8,0x4a804aa,0x47704ab,0x4ab0477,0x4760476,0x47a04ab,0x4ab047a,0x47a04a8,0x4ad04ac,0x4ac04ad,0x4a804aa,0x47a04ac,0x4ac04aa,0x4ad04a8,0x47a04ae,0x4ae047a,0x1480148,0x4af04ae,0x4ae04af,0x49404ad,0x49304b0,0x4b00493,0x760076,0x4b104b0,0x4b004b1,0x1310494, 0x49404b2,0x4b20494,0x4b104b1,0x13204b2,0x4b20132,0x4930131,0x49504b3,0x4b30076,0x6f0493,0x7604b3,0x4b30495,0x4b1006f,0x7604b4,0x4b40076,0x4b50075,0x4b104b4,0x4b40075,0x4b504b5,0x4b704b6,0x4b604b7,0x1320132,0x4b104b6,0x4b604b1,0x12304b5,0x13204b8,0x4b80132,0x4b704b7,0x12504b8,0x4b80125,0x4b50123,0x7504b9,0x4b90075,0x730073,0x4ba04b9,0x4b904ba,0x4bb04b5,0x4b704bc,0x4bc04ba,0x4b704bb,0x4b504bc,0x4bc04b5,0x4bb04ba,0x12704bd,0x4bd0127,0x1250125,0x4b704bd,0x4bd04b7,0x7304bb,0x7804be,0x4be04ba,0x780073,0x4bf04be,0x4be04bf,0x4bf04ba,0x4c104c0,0x4c004c1,0x4bb04bb,0x4ba04c0,0x4c004ba,0x12704bf,0x4bb04c2,0x4c204bb,0x4c304c1,0x4c504c4, 0x4c604c5,0x4c704c3,0x4c804c6,0x4c604c3,0x4c704c7,0x4ca04c9,0x4c904c8,0x4c704c7,0x4c304cb,0x4cc04ca,0x4c704c7,0x4cd04cc,0x4cb04cd,0x4c304c7,0x4ce04cb,0x4cb04ce,0x4cf04cd,0x4ca04cc,0x4cc04cd,0x4d004cf,0x4ce04d1,0x4d104ce,0x4cd04c3,0x4ce04d2,0x4d204d3,0x4cd04cd,0x4d304d4,0x4d404cf,0x4d504cd,0x4cf04d4,0x4d404d3,0x4d604d5,0x4ce04d7,0x4d204d6,0x4ce04d3,0x4d004d7,0x4d704d0,0x4d804d8,0x4d604d7,0x4da04d9,0x4d604d6,0x4d804da,0x4dc04db,0x4d904d3,0x4db04dc,0x4dc04d3,0x4db04d6,0x4de04dd,0x4dd04de,0x4d304d5,0x4db04dd,0x4dd04d5,0x4d804d3,0x4d004df,0x4dc04d6,0x4ca04e0,0x4cf04e1,0x4e104e2,0x4e304ca,0x4e504e4,0x4e404e6,0x4e304e3,0x4e604e7,0x4e704e8, 0x4e904e9,0x4e304e7,0x4eb04ea,0x4e304e3,0x4e904eb,0x4eb04e9,0x4ec04ec,0x4ea04eb,0x4ed04e9,0x4e804e8,0x4ee04ed,0x4ed04ee,0x4ef04ef,0x4e904ed,0x4f104f0,0x4ef04ec,0x4f004f1,0x4f104ec,0x4e904e9,0x4ef04f1,0x4f204ef,0x4f304ee,0x4ef04f2,0x4f404ef,0x4f004f3,0x4ef04f4,0x4f404f3,0x4f504f5,0x4f004f4,0x4f204f6,0x4f704f3,0x4ea04f8,0x4f804ea,0x4ec04ec,0x4f904f8,0x4f804f9,0x4f004f7,0x4fb04fa,0x4fa04ec,0x4fb04f0,0x4f904fa,0x4fa04f9,0x4f004ec,0x4f504fc,0x4fc04f5,0x4fd04fd,0x4fb04fc,0x4fc04fb,0x4f504f0,0x4ff04fe,0x4fe04fd,0x50004f5,0x4f50501,0x50104f5,0x4f304f3,0x5020501,0x5010502,0x5030500,0x5050504,0x5060505,0x5030503,0x5070506,0x5060507,0x5080508, 0x5050506,0x5090505,0x5080508,0x50a0509,0x50b0507,0x50c0503,0x50d050b,0x50b0503,0x50d050c,0x507050b,0x50e050c,0x50f0503,0x50d0510,0x510050d,0x507050c,0x50d0511,0x5120507,0x5130513,0x5070511,0x5120508,0x5130507,0x5140512,0x5120514,0x50d0508,0x5150511,0x5110515,0x50f0513,0x5170516,0x516050d,0x517050f,0x5150516,0x5160515,0x514050d,0x5190518,0x5180519,0x508050a,0x5140518,0x51b051a,0x5170517,0x50f051b,0x51c0513,0x51d0515,0x513051c,0x51e0513,0x514051d,0x513051e,0x51e051d,0x51f051f,0x514051e,0x520051f,0x5210521,0x5190520,0x5200514,0x519051f,0x5140520,0x51c0515,0x5220522,0x51d051c,0x5240523,0x5250525,0x5230526,0x5260527,0x5230528,0x5270526, 0x5260528,0x5250525,0x5280529,0x5290528,0x527052a,0x523052b,0x52b0523,0x52c052c,0x52d052b,0x52b052d,0x52e0527,0x52d052f,0x52f052d,0x52c052c,0x5230530,0x5310528,0x5270527,0x5320531,0x5330532,0x5270527,0x52d0533,0x5310534,0x5320528,0x5340531,0x5350534,0x5360536,0x52a0535,0x5350528,0x52a0534,0x5280535,0x533052d,0x5370537,0x5320533,0x538052e,0x5390539,0x5370538,0x5380537,0x52a052d,0x536053a,0x53a0536,0x532053b,0x537053c,0x53c053d,0x5320532,0x53d053e,0x53e0534,0x53d0532,0x53f053e,0x53e053f,0x5400534,0x5360541,0x541053f,0x5360540,0x5340541,0x5410534,0x53b053f,0x5360542,0x5420536,0x4ff0540,0x5020543,0x5430502,0x5450544,0x5000543,0x5430544, 0x5440545,0x5020546,0x5460502,0x5470547,0x5480546,0x5460548,0x5470544,0x5020549,0x5490502,0x4f604f3,0x5470549,0x54904f3,0x54a04f6,0x547054b,0x54b0547,0x54c04f6,0x548054d,0x54d054a,0x548054c,0x547054d,0x54d0547,0x54e054a,0x54c054f,0x54f054c,0x545054a,0x5440550,0x5500544,0x5510551,0x5440552,0x5520544,0x5530548,0x5450550,0x5500551,0x5480553,0x5540552,0x5520554,0x54c0551,0x5560555,0x5550548,0x556054c,0x5540555,0x5550554,0x54e0548,0x5580557,0x557054c,0x558054e,0x5560557,0x5570556,0x559054c,0x558055a,0x55a0558,0x559054e,0x55c055b,0x55b0558,0x55d0559,0x558055b,0x55f055e,0x5600560,0x55e0561,0x5610562,0x5630563,0x5600561,0x5650564,0x5620562, 0x55e0565,0x5660560,0x5630563,0x5670566,0x5680567,0x5630563,0x5620568,0x5660569,0x5670560,0x5690566,0x5680562,0x56a056a,0x5670568,0x56b0564,0x562056c,0x564056b,0x56b056c,0x56a056a,0x562056b,0x56d0569,0x560056e,0x569056d,0x56f0564,0x56c0570,0x564056f,0x56f0570,0x5710571,0x56c056f,0x5720571,0x5730570,0x5740572,0x5720574,0x5750571,0x5730576,0x5760573,0x5690570,0x5670577,0x5790578,0x5670567,0x5780577,0x5790567,0x578056a,0x57a0577,0x577057a,0x56a0569,0x57b0579,0x579057b,0x56c0578,0x57d057c,0x57c056a,0x57d056c,0x57b057c,0x57c057b,0x57e056a,0x580057f,0x57f0581,0x5820582,0x57e057f,0x583057e,0x5820582,0x5840583,0x5830584,0x5850585,0x57e0583, 0x5860585,0x57e0575,0x5850586,0x5870573,0x5750575,0x5850587,0x5870585,0x5880588,0x5730587,0x5890585,0x5840584,0x58a0589,0x589058a,0x5880588,0x5850589,0x58b0574,0x5730573,0x588058b,0x58b0588,0x58c058c,0x574058b,0x58d058a,0x588058e,0x58a058d,0x58d058e,0x58c058c,0x588058d,0x58f0582,0x5840581,0x5820590,0x5900582,0x5910591,0x582058f,0x58f0581,0x5920592,0x591058f,0x5900593,0x5910584,0x5930590,0x5950594,0x593058a,0x5940595,0x5950584,0x58a0593,0x5840595,0x5970596,0x594058e,0x5960597,0x597058e,0x58a058a,0x5940597,0x5980592,0x5810581,0x5990598,0x5980599,0x59a059a,0x5920598,0x59c059b,0x59d0539,0x539059e,0x59e059f,0x537059d,0x53905a0,0x5a00539, 0x59d059d,0x5a105a0,0x5a005a1,0x5370537,0x5a1053c,0x53c05a1,0x59d053d,0x59f05a2,0x5a3059d,0x5a405a4,0x59d05a2,0x5a305a1,0x59f059d,0x5a505a2,0x5a205a5,0x5a405a4,0x5a605a3,0x5a305a6,0x5a605a1,0x5a805a7,0x5a705a8,0x5a1053d,0x5a605a7,0x5a7053d,0x5a905a1,0x5a505aa,0x5aa05a5,0x53f059f,0x53d05ab,0x5ab053d,0x5a805a8,0x5ac05ab,0x5ab05ac,0x540053f,0x53f05ad,0x5ad053f,0x5ac05ac,0x5ae05ad,0x5ad05ae,0x5a40540,0x5a505af,0x5af05b0,0x5a405a4,0x5b005b1,0x5b105a6,0x5a505a4,0x5b205af,0x5af05b2,0x5a905b0,0x5b405b3,0x5b305a5,0x5b405a9,0x5b205b3,0x5b305b2,0x5b405a5,0x5a905b5,0x5b505b6,0x5b405b4,0x5b605b7,0x5b705b8,0x5b605b9,0x5b805b7,0x5b705b9,0x5ba05b4, 0x5b805bb,0x5bb05b8,0x5b205b6,0x5b405bc,0x5bc05b4,0x5b905b9,0x5bd05bc,0x5bc05bd,0x5b005b2,0x5b205be,0x5be05b2,0x5bd05bd,0x5bf05be,0x5be05bf,0x5b805b0,0x5ba05c0,0x5c105b8,0x5c205c2,0x5b805c0,0x5c105b9,0x5c205b8,0x5c305c1,0x5c105c3,0x5c305b9,0x5c505c4,0x5c405c5,0x5b905bd,0x5c305c4,0x5c405bd,0x5c505b9,0x5c705c6,0x5c605c7,0x5bd05bf,0x5c505c6,0x5c605bf,0x5ba05bd,0x5c805c0,0x5c005c8,0x4f705c2,0x5c805c9,0x5c905c8,0x4f705ba,0x4f905ca,0x5ca05c8,0x4f904f7,0x5cb05ca,0x5ca05cb,0x5cc05c8,0x5c205cd,0x5cd05cb,0x5c205cc,0x5c805cd,0x5cd05c8,0x5c205cb,0x5cc05ce,0x5ce05c3,0x4ca05c2,0x4e205cf,0x4e105d0,0x4cf04e2,0x5d004e1,0x5d105d0,0x4cf04cf,0x4d505d1, 0x5d105d2,0x4d505d0,0x5d205d1,0x5d305d2,0x4d504d5,0x4de05d3,0x5d304de,0x5d405d4,0x5d205d3,0x5d504e2,0x5d605d0,0x5d005d7,0x5d505d0,0x5d005d6,0x5d205d7,0x5d505d6,0x5d805d8,0x4e205d5,0x5d705d2,0x5d905d9,0x5d605d7,0x5da05d2,0x5d405d4,0x5db05da,0x5da05db,0x5d905d9,0x5d205da,0x5dc04e2,0x5d805d8,0x5dd05dc,0x5de05d4,0x5db04de,0x5d405df,0x5de05e0,0x5d405d4,0x5e005df,0x5de04de,0x5e105e1,0x5e005de,0x5df05e0,0x5e205e2,0x5db05df,0x5e304de,0x5e104db,0x4de05e3,0x5e304db,0x5e405e4,0x5e105e3,0x5e505e4,0x4db04db,0x4d905e5,0x5e505e6,0x4d905e4,0x5e605e5,0x5e805e7,0x5e905e9,0x5e705ea,0x5ea05e7,0x5eb05eb,0x4d905ea,0x5ea04d9,0x5ec05e9,0x5e905ed,0x5ed05e9, 0x5eb04d9,0x5e705ee,0x5ee05ef,0x5e705f0,0x5ef05ee,0x5ee05f0,0x5f105eb,0x5ef05f2,0x5f205ef,0x5ef05e7,0x5f105f3,0x5f405f0,0x5f505ef,0x5ef05f3,0x5f405ef,0x5f505f5,0x5f605f4,0x5f405f6,0x5f705f0,0x5f505f3,0x5f805eb,0x5f905f0,0x5eb05f8,0x5fa05eb,0x4d905f9,0x5eb05fa,0x5fa05f9,0x5fb05fb,0x4d905fa,0x5f805f0,0x5fc05fc,0x5f905f8,0x5fd05f0,0x5f605f6,0x5fe05fd,0x5fd05fe,0x5fc05fc,0x5f005fd,0x5ff05e6,0x4d904d9,0x5fb05ff,0x5ff05fb,0x6000600,0x5e605ff,0x60105f9,0x5fb0602,0x5f90601,0x6010602,0x6000600,0x5fb0601,0x60305fc,0x5f90604,0x5fc0603,0x6030604,0x6020602,0x5f90603,0x6060605,0x6070607,0x6050608,0x6080609,0x605060a,0x6090608,0x608060a,0x60a0607, 0x60c060b,0x60b0607,0x60d060a,0x609060e,0x60e0609,0x6090605,0x60d060f,0x60f0610,0x60d0611,0x610060f,0x60f0611,0x6120609,0x60a0613,0x6130611,0x6090612,0x6110613,0x6140612,0x6150615,0x60c0614,0x614060a,0x6160612,0x60a0614,0x6170610,0x60d060d,0x6180617,0x6190618,0x610060d,0x61b061a,0x617061b,0x6100610,0x61d061c,0x61a061d,0x6110610,0x610061c,0x61c061d,0x61e061e,0x611061c,0x61f061e,0x6200620,0x612061f,0x61f0612,0x6110611,0x61e061f,0x6220621,0x6200615,0x6210622,0x6220615,0x6120612,0x6200622,0x623060c,0x6240615,0x60c0623,0x6260625,0x6280627,0x6270629,0x6260627,0x6270628,0x62a0629,0x629062a,0x62b062b,0x62a062c,0x62d062a,0x6270627,0x62e062d, 0x62d062e,0x62f062f,0x62a062d,0x62c062a,0x6300630,0x62a0631,0x631062a,0x62f062f,0x6320631,0x6310632,0x6330630,0x6300634,0x62c0630,0x6350633,0x6300636,0x6340630,0x6300635,0x6320636,0x6360632,0x6370637,0x6350636,0x6380637,0x6350639,0x6370638,0x6340635,0x635063a,0x63c063b,0x638063c,0x63a0635,0x635063b,0x63b063c,0x63d063d,0x63a063b,0x638063e,0x63e063c,0x637063f,0x63f0640,0x6370641,0x640063f,0x63f0641,0x6320639,0x6430642,0x6420637,0x6430632,0x6400642,0x6420640,0x6430637,0x6320644,0x6440632,0x63a062f,0x63d0645,0x645063d,0x6460646,0x63d0647,0x647063d,0x6480648,0x6490647,0x6470649,0x6490646,0x64b064a,0x64a0646,0x6490649,0x648064c,0x64d063d, 0x648063c,0x63d064d,0x64d063c,0x64e064e,0x648064d,0x650064f,0x6480648,0x64f064c,0x6500648,0x64e064e,0x6510650,0x6500651,0x649064f,0x6530652,0x652064b,0x64f0649,0x653064c,0x6520653,0x6540654,0x64b0652,0x655064e,0x63c063c,0x63e0655,0x656064e,0x6570657,0x64e0655,0x6560651,0x657064e,0x6580656,0x6560658,0x64b0651,0x6540659,0x6590654,0x639065a,0x6570655,0x65b055c,0x65a065a,0x654065b,0x65b0654,0x65c065c,0x55c065b,0x65d0653,0x654065e,0x653065d,0x65d065e,0x65c065c,0x654065d,0x660065f,0x6620661,0x65f0663,0x663060c,0x6620662,0x60c0664,0x664060c,0x6650665,0x6660664,0x6640666,0x6620662,0x6660667,0x6680665,0x60c060c,0x6690668,0x6680669,0x66a066a, 0x6650668,0x66b060c,0x6690624,0x60c066b,0x66b0624,0x66c066c,0x669066b,0x66d066c,0x66e066e,0x66a066d,0x66d0669,0x66a066c,0x669066d,0x66f0665,0x666066a,0x6650670,0x66f0671,0x6650665,0x6710670,0x6700671,0x6720672,0x6660670,0x66f066a,0x6730673,0x671066f,0x674066a,0x66e066e,0x6750674,0x6740675,0x6730673,0x66a0674,0x6760666,0x6720672,0x6770676,0x6780677,0x6790672,0x672067a,0x6780672,0x6720679,0x671067a,0x67a0671,0x67b067b,0x679067a,0x67c0671,0x67b0673,0x671067c,0x67d0519,0x519067e,0x521067f,0x67f0521,0x6800680,0x5210681,0x6810521,0x6820682,0x6830681,0x6810683,0x6830680,0x6850684,0x6840680,0x6820683,0x5210686,0x6860521,0x687051f,0x6820686, 0x686051f,0x6870687,0x51f0688,0x688051f,0x689051d,0x6870688,0x688051d,0x6890689,0x51d068a,0x68a051d,0x68b0522,0x689068a,0x68a0522,0x682068b,0x687068c,0x68c068d,0x6820682,0x68d068e,0x68e0683,0x68d0682,0x68f068e,0x68e068f,0x68f0683,0x6910690,0x6900691,0x6830685,0x68f0690,0x6900685,0x6870683,0x692068c,0x68c0692,0x687068d,0x6890693,0x6930689,0x6940694,0x6920693,0x6930692,0x6890687,0x68b0695,0x695068b,0x6940696,0x6890695,0x6950696,0x6850694,0x6910697,0x6780679,0x6980698,0x6790699,0x6990679,0x69a069a,0x69b0699,0x699069b,0x6980698,0x69b069c,0x69d069a,0x6790679,0x67b069d,0x69d069e,0x67b069a,0x69e069d,0x69f069b,0x6a0069a,0x69a06a1,0x69f069a, 0x69a06a0,0x69e06a1,0x69f06a0,0x6a206a2,0x69b069f,0x6a1069e,0x6a306a3,0x6a006a1,0x6a506a4,0x69b069b,0x6a206a5,0x6a506a2,0x6a606a6,0x6a406a5,0x6a806a7,0x6a406a4,0x6a606a8,0x6a806a6,0x6a906a9,0x6a706a8,0x6aa069e,0x6a3067b,0x69e06ab,0x6ab069e,0x6ac06ac,0x69e06aa,0x6aa067b,0x6ad06ad,0x6ac06aa,0x6ab06ae,0x6ac06a3,0x6ae06ab,0x67c0673,0x6ad06ad,0x67b067c,0x6af0673,0x6ad0675,0x67306af,0x6af0675,0x6b006b0,0x6ad06af,0x6b106ac,0x6ad06ad,0x6b006b1,0x6b306b2,0x61e061d,0x61d06b4,0x6b4061d,0x6b206b2,0x6b506b4,0x6b406b5,0x620061e,0x61e06b6,0x6b6061e,0x6b506b5,0x6b706b6,0x6b606b7,0x6210620,0x62006b8,0x6b80620,0x6b706b7,0x6b906b8,0x6b806b9,0x6b50621, 0x6b206ba,0x6bb06b7,0x6bc06b5,0x6b506ba,0x6bb06b5,0x6b206bc,0x6bd06ba,0x6ba06bd,0x6bc06bc,0x6be06bb,0x6bb06be,0x6bf06b7,0x6b906c0,0x6c006be,0x6b906bf,0x6b706c0,0x6c006b7,0x6a706be,0x6bd06c1,0x6c106bd,0x62106b2,0x6b906c2,0x6c406c3,0x6b906b9,0x6c306c2,0x6c406b9,0x6c306bf,0x6c506c2,0x6c206c5,0x6bf0621,0x6c606c4,0x6c406c6,0x61506c3,0x62106c7,0x6c70621,0x6c506c5,0x6c806c7,0x6c706c8,0x6150615,0x6c80623,0x62306c8,0x6bc0624,0x6bd06c9,0x6970691,0x6ca06ca,0x69106cb,0x6cb0691,0x6cc06cc,0x6cd06cb,0x6cb06cd,0x6cd06ca,0x6cf06ce,0x6ce06ca,0x6cc06cd,0x69106d0,0x6d00691,0x6d1068f,0x6cc06d0,0x6d0068f,0x6d106d1,0x68f06d2,0x6d2068f,0x6d3068d,0x6d106d2, 0x6d2068d,0x6d306d3,0x68d06d4,0x6d4068d,0x6d50692,0x6d306d4,0x6d40692,0x6d506d5,0x69206d6,0x6d60692,0x6d70694,0x6d506d6,0x6d60694,0x6d706d7,0x69406d8,0x6d80694,0x6d90696,0x6d706d8,0x6d80696,0x6cc06d9,0x6d106da,0x6da06db,0x6cc06cc,0x6db06dc,0x6dc06cd,0x6db06cc,0x6dd06dc,0x6dc06dd,0x6dd06cd,0x6df06de,0x6de06df,0x6cd06cf,0x6dd06de,0x6de06cf,0x6d106cd,0x6e006da,0x6da06e0,0x6d106db,0x6d306e1,0x6e106d3,0x6e206e2,0x6e006e1,0x6e106e0,0x6cf06d1,0x6df06e3,0x6e306df,0x6e406e4,0x6df06e5,0x6e506df,0x6e606e6,0x6e706e5,0x6e506e7,0x6df06e4,0x6dd06e8,0x6e806e6,0x6dd06df,0x6e906e8,0x6e806e9,0x62e06e6,0x6e406ea,0x6ea06e4,0x6e706e7,0x62f06ea,0x6ea062f, 0x6e7062e,0x6430644,0x644062f,0x6e606e7,0x6ec06eb,0x6eb06e7,0x6ec06e6,0x64306eb,0x6eb0643,0x6e906e7,0x6ee06ed,0x6ed06e6,0x6ee06e9,0x6ec06ed,0x6ed06ec,0x6e906e6,0x6dd06ef,0x6ef06dd,0x6f006db,0x6e906ef,0x6ef06db,0x6f006f0,0x6f206f1,0x6f106f2,0x6e906ee,0x6f006f1,0x6f106ee,0x64006e9,0x64306f3,0x6f30643,0x6ec06ec,0x6f406f3,0x6f306f4,0x6ec0640,0x6ee06f5,0x6f506ee,0x6f606f6,0x6f406f5,0x6f506f4,0x6ee06ec,0x6f206f7,0x6f706f2,0x6f606f8,0x6ee06f7,0x6f706f8,0x6f006f6,0x6db06f9,0x6fb06fa,0x5f505f7,0x5f706fc,0x6fc05f7,0x6fa06fa,0x6fd06fc,0x6fc06fd,0x5f605f5,0x5f506fe,0x6fe05f5,0x6fd06fd,0x6ff06fe,0x6fe06ff,0x5fe05f6,0x5f60700,0x70005f6,0x6ff06ff, 0x7010700,0x7000701,0x6fd05fe,0x6fa0702,0x70306ff,0x70406fd,0x6fd0702,0x70306fd,0x6fa0704,0x7050702,0x7020705,0x7040704,0x7060703,0x7030706,0x70606ff,0x7080707,0x7070708,0x6ff0701,0x7060707,0x7070701,0x70506ff,0x6fa0709,0x70906fa,0x70b070a,0x7050709,0x709070a,0x70b070b,0x70a070c,0x70c070a,0x70d05dd,0x70b070c,0x70c05dd,0x5fe070d,0x701070e,0x710070f,0x7010701,0x70f070e,0x7100701,0x70f0708,0x711070e,0x70e0711,0x70805fe,0x7120710,0x7100712,0x5fc070f,0x5fe0713,0x71305fe,0x6040711,0x5fc0713,0x7130711,0x6040604,0x7110714,0x7140711,0x7150715,0x7160714,0x7140716,0x6020604,0x6040717,0x7170604,0x7160716,0x7180717,0x7170718,0x7150602,0x7110719, 0x7190711,0x70f070f,0x71a0719,0x719071a,0x6000715,0x602071b,0x71b0602,0x7180718,0x71c071b,0x71b071c,0x71a0600,0x70f071d,0x71d070f,0x71e0712,0x71a071d,0x71d0712,0x716071e,0x715071f,0x71f0715,0x7200720,0x7150721,0x7210715,0x722071a,0x716071f,0x71f0720,0x7220722,0x7240723,0x7230724,0x7160718,0x7220723,0x7230718,0x7240716,0x7260725,0x7250726,0x718071c,0x7240725,0x725071c,0x7200718,0x7280727,0x7270722,0x7280720,0x7240727,0x7270724,0x7280722,0x72a0729,0x729072a,0x7240726,0x7280729,0x7290726,0x71a0724,0x72b0721,0x721072b,0x6a00720,0x6a3072c,0x72c06a3,0x72d072d,0x72e072c,0x72c072e,0x6a206a0,0x6a0072f,0x72f06a0,0x72e072e,0x730072f,0x72f0730, 0x72d06a2,0x6a30731,0x73106a3,0x6ae06ae,0x7320731,0x7310732,0x6a6072d,0x6a20733,0x73306a2,0x7300730,0x7340733,0x7330734,0x6a906a6,0x6a60735,0x73506a6,0x7340734,0x7360735,0x7350736,0x6a706a9,0x6a90737,0x73706a9,0x7360736,0x7380737,0x7370738,0x6bd06a7,0x6a70739,0x73906a7,0x7380738,0x73a0739,0x739073a,0x73806bd,0x736073b,0x73b0736,0x73a073c,0x738073b,0x73b073c,0x6bd073a,0x73a06c9,0x6c9073a,0x73d073d,0x73a073e,0x73e073a,0x73c073c,0x73f073e,0x73e073f,0x73d073d,0x6bc06c9,0x74006be,0x6bc06bc,0x73d0740,0x741072d,0x7320732,0x7420741,0x7410742,0x7430743,0x72d0741,0x744072e,0x72d072d,0x7430744,0x7440743,0x7450745,0x72e0744,0x7460730,0x72e072e, 0x7450746,0x7460745,0x7470747,0x7300746,0x7480734,0x7300730,0x7470748,0x7480747,0x7490749,0x7340748,0x74a0736,0x7340734,0x749074a,0x74a0749,0x74b074b,0x736074a,0x6f90749,0x74b06f0,0x74906f9,0x74c0747,0x74906f2,0x747074c,0x74c06f2,0x6f006f0,0x749074c,0x74d0745,0x74706f8,0x745074d,0x74d06f8,0x6f206f2,0x747074d,0x74e0745,0x7430743,0x74f074e,0x74e074f,0x6f806f8,0x745074e,0x7500743,0x7420742,0x7510750,0x750074f,0x7510743,0x74f0750,0x7520736,0x6db074b,0x74b06f9,0x752074b,0x6db06db,0x7530752,0x7520753,0x73c0736,0x7360754,0x7540736,0x7320753,0x6ae0755,0x75506ae,0x7560756,0x7570755,0x7550757,0x7420732,0x7320758,0x7580732,0x7570757,0x7590758, 0x7580759,0x6ae0742,0x6ac075a,0x75a0756,0x6ac06ae,0x75b075a,0x75a075b,0x6b00756,0x75b06b1,0x6b1075b,0x75106ac,0x742075c,0x75c0742,0x7590759,0x75d075c,0x75c075d,0x7570751,0x756075e,0x760075f,0x7560756,0x75f075e,0x7600756,0x75f075b,0x761075e,0x75e0761,0x6580757,0x7590762,0x7620761,0x7590658,0x7570762,0x7620757,0x6580761,0x6570763,0x7630657,0x75d075d,0x7590763,0x7630759,0x75b0658,0x7640760,0x7600764,0x6b0075f,0x7660765,0x765075b,0x76606b0,0x7640765,0x7650764,0x766075b,0x6b00767,0x76706b0,0x6750675,0x7680767,0x7670768,0x6510766,0x6580769,0x7690658,0x7610761,0x75f076a,0x76a075f,0x76b076b,0x76c076a,0x76a076c,0x7610761,0x76c0769,0x769076c, 0x75f0651,0x764076d,0x76d076b,0x764075f,0x76e076d,0x76d076e,0x64f076b,0x651076f,0x76f0651,0x76c076c,0x770076f,0x76f0770,0x76c064f,0x76b0771,0x771076b,0x7720772,0x7700771,0x7710770,0x76e076c,0x7740773,0x773076b,0x774076e,0x7720773,0x7730772,0x76e076b,0x7640775,0x7750764,0x7660766,0x7760775,0x7750776,0x653076e,0x64f0777,0x777064f,0x7700770,0x65e0777,0x777065e,0x7700653,0x7720778,0x7780772,0x65e0779,0x7700778,0x7780779,0x772065e,0x774077a,0x77a0774,0x77b077b,0x779077a,0x77a0779,0x7660772,0x768077c,0x77c0776,0x7680766,0x77d077c,0x77c077d,0x65c0776,0x65e077e,0x77e065e,0x7530779,0x77f0754,0x754077f,0x77f073c,0x7530780,0x7800753,0x6db06db, 0x6e00780,0x78006e0,0x73f077f,0x73c0781,0x781073c,0x77f077f,0x7820781,0x7810782,0x77f073f,0x6e00783,0x78306e0,0x78206e2,0x77f0783,0x78306e2,0x73f0782,0x7820784,0x7860785,0x7820782,0x7850784,0x7860782,0x78506e2,0x7870784,0x7840787,0x6e2073f,0x7880786,0x7860788,0x73d0785,0x73f0789,0x789073f,0x7870787,0x78a0789,0x789078a,0x78a073d,0x6be0740,0x740073d,0x6e2078a,0x6d3078b,0x78b0788,0x6d306e2,0x6d5078b,0x78b06d5,0x6bf0788,0x6be078c,0x78c06be,0x78a078a,0x78d078c,0x78c078d,0x78706bf,0x78f078e,0x78e078a,0x78f0787,0x78d078e,0x78e078d,0x785078a,0x7910790,0x7900787,0x7910785,0x78f0790,0x790078f,0x7680787,0x6750792,0x792066e,0x6750793,0x66e0792, 0x7920793,0x77d0768,0x7680794,0x7940768,0x7930793,0x72a0794,0x794072a,0x793077d,0x66e0795,0x795066e,0x66c066c,0x7960795,0x7950796,0x7260793,0x72a0797,0x7970796,0x72a0726,0x7930797,0x7970793,0x7760796,0x77d0798,0x798077d,0x72a072a,0x7280798,0x7980728,0x71c0776,0x7260799,0x7990726,0x7960796,0x79a0799,0x799079a,0x796071c,0x66c079b,0x79b066c,0x79a079c,0x796079b,0x79b079c,0x76e079a,0x776079d,0x79d0776,0x7280728,0x79e079d,0x79d079e,0x600076e,0x71c079f,0x79f071c,0x79a079a,0x7a0079f,0x79f07a0,0x79a0600,0x79c07a1,0x7a1079c,0x7a007a2,0x79a07a1,0x7a107a2,0x77407a0,0x76e07a3,0x7a3076e,0x79e079e,0x7a407a3,0x7a307a4,0x7740774,0x7a407a5,0x7a507a4, 0x7a607a6,0x77b07a5,0x7a5077b,0x7a60774,0x7a407a7,0x7a707a8,0x7a4072b,0x7a807a7,0x7a7072b,0x7a407a6,0x79e07a9,0x7a907a8,0x79e07a4,0x72807a9,0x7a90728,0x72807a8,0x72007aa,0x7aa0720,0x72b072b,0x7a807aa,0x7aa07a8,0x77b0728,0x7a607ab,0x7ad07ac,0x7a607a6,0x7ac07ab,0x7ad07a6,0x7ac072b,0x7ae07ab,0x7ab07ae,0x72b077b,0x7af07ad,0x7ad07af,0x77907ac,0x77b07b0,0x7b0077b,0x7ae07ae,0x7b107b0,0x7b007b1,0x7790779,0x7b1077e,0x77e07b1,0x65c065c,0x7b107b2,0x7b207b1,0x7ae055d,0x7b407b3,0x7b307b1,0x55d07ae,0x7b107b3,0x7b307b4,0x7ac055d,0x7b607b5,0x7b507ae,0x7b607ac,0x7b407b5,0x7b507b4,0x7ac07ae,0x7af07b7,0x7b707af,0x7b807b8,0x7b607b7,0x7b707b6,0x7af07ac, 0x72b07b9,0x7b9072b,0x71a071a,0x71e07b9,0x7b9071e,0x7b807af,0x7af07ba,0x7ba07af,0x71e071e,0x7bb07ba,0x7ba07bb,0x71e07b8,0x71207bc,0x7bc07bb,0x712071e,0x7bd07bc,0x7bc07bd,0x71207bb,0x70807be,0x7be07bd,0x7080712,0x7bf07be,0x7be07bf,0x70807bd,0x70607c0,0x7c007bf,0x7060708,0x7c107c0,0x7c007c1,0x7c107bf,0x70607c2,0x7c20706,0x7040704,0x7c307c2,0x7c207c3,0x70407c1,0x70507c4,0x7c407c3,0x7050704,0x7c507c4,0x7c407c5,0x7c507c3,0x70507c6,0x7c60705,0x70b070b,0x7c707c6,0x7c607c7,0x70b07c5,0x70d07c8,0x7c807c7,0x70d070b,0x7c907c8,0x7c807c9,0x7c907c7,0x70d07ca,0x7ca070d,0x7cb05dd,0x7c907ca,0x7ca05dd,0x62407cb,0x6c807cc,0x7cc07cd,0x6c8066c,0x7cd07cc, 0x7cc066c,0x7cd0624,0x6c807ce,0x7ce06c8,0x7cf06c5,0x7cd07ce,0x7ce06c5,0x79c07cf,0x66c07d0,0x7d0066c,0x7cd07cd,0x7d107d0,0x7d007d1,0x7cf079c,0x7d307d2,0x7d207cd,0x7d307cf,0x7d107d2,0x7d207d1,0x7cf07cd,0x6c507d4,0x7d406c5,0x6c306c3,0x7d507d4,0x7d407d5,0x7d607cf,0x7d307d7,0x7d707d5,0x7d307d6,0x7cf07d7,0x7d707cf,0x7a207d5,0x79c07d8,0x7d8079c,0x7d107d1,0x7d907d8,0x7d807d9,0x7d107a2,0x7d307da,0x7da07d3,0x7db07db,0x7d907da,0x7da07d9,0x7d307d1,0x7d607dc,0x7dc07d6,0x7db07dd,0x7d307dc,0x7dc07dd,0x7d507db,0x6c307de,0x7de06c3,0x7df06c6,0x7d507de,0x7de06c6,0x7e007df,0x7d607e1,0x7e107df,0x7d607e0,0x7d507e1,0x7e107d5,0x7e207df,0x7dd07e3,0x7e307e0, 0x7dd07e2,0x7d607e3,0x7e307d6,0x79107e0,0x78507e4,0x7e40785,0x7880788,0x7e507e4,0x7e407e5,0x7e50791,0x78807e6,0x7e60788,0x6d506d5,0x6d707e6,0x7e606d7,0x7e507e5,0x6d707e7,0x7e706d7,0x7e806d9,0x7e507e7,0x7e706d9,0x7e807e8,0x7ea07e9,0x7e907ea,0x7e50791,0x7e807e9,0x7e90791,0x78f07e5,0x79107eb,0x7eb0791,0x7ea07ea,0x7ec07eb,0x7eb07ec,0x78d078f,0x78f07ed,0x7ed078f,0x7ec07ec,0x7ee07ed,0x7ed07ee,0x6bf078d,0x78d07ef,0x7ef078d,0x7ee07ee,0x6c607ef,0x7ef06c6,0x7df06bf,0x6c607f0,0x7f006c6,0x7ee07ee,0x7f107f0,0x7f007f1,0x7ec07df,0x7f307f2,0x7f207ee,0x7f107ec,0x7ee07f2,0x7f207f3,0x7ec07f1,0x7ea07f4,0x7f407ea,0x7f307f5,0x7ec07f4,0x7f407f5,0x7ea07f3, 0x7e807f6,0x7f607e8,0x7f707f7,0x7f507f6,0x7f607f5,0x7f707ea,0x7e807f8,0x7f807e8,0x55806d9,0x55d07f9,0x7f907b4,0x55d0556,0x7b407f9,0x7f90556,0x7b40558,0x7b607fa,0x7fa0556,0x7b607b4,0x55407fa,0x7fa0554,0x5540556,0x7b607fb,0x7fb07b6,0x7b807b8,0x55107fb,0x7fb0551,0x7b80554,0x7bb07fc,0x7fc0551,0x7bb07b8,0x55307fc,0x7fc0553,0x5530551,0x7bb07fd,0x7fd07bb,0x7bd07bd,0x7fe07fd,0x7fd07fe,0x5450553,0x55307ff,0x7ff0553,0x7fe07fe,0x80007ff,0x7ff0800,0x7bd0545,0x7bf0801,0x80107fe,0x7bf07bd,0x8020801,0x8010802,0x80207fe,0x8040803,0x8030804,0x8000800,0x7fe0803,0x80307fe,0x5000802,0x5450805,0x8050545,0x8000800,0x8060805,0x8050806,0x8000500,0x8040807, 0x8070804,0x8060808,0x8000807,0x8070808,0x5000806,0x80604fe,0x4fe0806,0x7a204fd,0x7d90809,0x80907d9,0x80a080a,0x80b0809,0x809080b,0x7a007a2,0x7a2080c,0x80c07a2,0x80b080b,0x80d080c,0x80c080d,0x80a07a0,0x7d9080e,0x80e07d9,0x80f07db,0x80a080e,0x80e07db,0x600080f,0x7a00810,0x81007a0,0x80d080d,0x8110810,0x8100811,0x80f0600,0x7db0812,0x81207db,0x81307dd,0x80f0812,0x81207dd,0x5e60813,0x6000814,0x8140600,0x8110811,0x5e40814,0x81405e4,0x81305e6,0x7dd0815,0x81507dd,0x81607e2,0x8130815,0x81507e2,0x5e10816,0x5e40817,0x81705e4,0x8110811,0x8180817,0x8170818,0x80d05e1,0x81a0819,0x8190811,0x81a080d,0x8180819,0x8190818,0x80d0811,0x80b081b,0x81b080b, 0x81a081c,0x80d081b,0x81b081c,0x80b081a,0x80a081d,0x81d080a,0x81c081e,0x80b081d,0x81d081e,0x7f3081c,0x7f5081f,0x81f07f5,0x8200820,0x821081f,0x81f0821,0x7f107f3,0x7f30822,0x82207f3,0x8210821,0x8230822,0x8220823,0x82007f1,0x7f50824,0x82407f5,0x7f707f7,0x8250824,0x8240825,0x7df0820,0x7f10826,0x82607f1,0x8230823,0x8270826,0x8260827,0x7e007df,0x7df0828,0x82807df,0x8270827,0x7e20828,0x82807e2,0x81607e0,0x7e20829,0x82907e2,0x8270827,0x82a0829,0x829082a,0x8270816,0x823082b,0x82b0823,0x82a082c,0x827082b,0x82b082c,0x823082a,0x821082d,0x82d0821,0x82c057d,0x823082d,0x82d057d,0x821082c,0x820082e,0x82e0820,0x57d082f,0x821082e,0x82e082f,0x820057d, 0x8250830,0x8300825,0x82f0831,0x8200830,0x8300831,0x82c082f,0x57d0832,0x832057d,0x571056c,0x82c0832,0x832056c,0x82a0571,0x82c0833,0x833082c,0x5710571,0x5740833,0x8330574,0x82a082a,0x5740834,0x8340574,0x58c058c,0x8160834,0x8340816,0x58c082a,0x58e0835,0x8350816,0x58e058c,0x8130835,0x8350813,0x8130816,0x58e0836,0x836058e,0x5960596,0x80f0836,0x836080f,0x80a0813,0x80f0837,0x837080f,0x5960596,0x81e0837,0x837081e,0x596080a,0x5940838,0x838081e,0x5940596,0x8390838,0x8380839,0x81c081e,0x81e083a,0x83a081e,0x8390839,0x83b083a,0x83a083b,0x839081c,0x594083c,0x83c0594,0x83d0593,0x839083c,0x83c0593,0x83d083d,0x83f083e,0x83e083f,0x839083b,0x83d083e, 0x83e083b,0x81a0839,0x81c0840,0x840081c,0x83b083b,0x8410840,0x8400841,0x83b081a,0x83f0842,0x842083f,0x8410843,0x83b0842,0x8420843,0x6d90841,0x84407f8,0x7f80844,0x84407f7,0x6d90845,0x84506d9,0x8460696,0x8440845,0x8450696,0x8250846,0x7f70847,0x84707f7,0x8440844,0x8480847,0x8470848,0x8440825,0x8460849,0x8490846,0x848084a,0x8440849,0x849084a,0x8460848,0x696084b,0x84b0696,0x68b068b,0x84c084b,0x84b084c,0x84d0846,0x84a084e,0x84e084c,0x84a084d,0x846084e,0x84e0846,0x831084c,0x825084f,0x84f0825,0x8480848,0x850084f,0x84f0850,0x8480831,0x84a0851,0x851084a,0x8500852,0x8480851,0x8510852,0x84d0850,0x8540853,0x853084a,0x854084d,0x8520853,0x8530852, 0x68b084a,0x5220855,0x855084c,0x522068b,0x8560855,0x8550856,0x856084c,0x8580857,0x8570858,0x84d084d,0x84c0857,0x857084c,0x8590856,0x854085a,0x85a0858,0x8540859,0x84d085a,0x85a084d,0x8540858,0x859085b,0x85b085c,0x8520854,0x854085d,0x85d0854,0x85c085c,0x85e085d,0x85d085e,0x85f0852,0x85e0860,0x860085e,0x850085c,0x8520861,0x8610852,0x85e085e,0x8620861,0x8610862,0x85e0850,0x85f0863,0x863085f,0x8620864,0x85e0863,0x8630864,0x8640862,0x85f0865,0x8660831,0x8500850,0x8620866,0x8660862,0x8670867,0x8310866,0x8680862,0x8640864,0x8690868,0x8680869,0x8670867,0x8620868,0x86a0869,0x86b0864,0x8640865,0x86a0864,0x86c086b,0x869086a,0x86a086b,0x86b086c, 0x86e086d,0x865086e,0x86c086b,0x86b086f,0x86f086b,0x8700870,0x86b086d,0x86f0871,0x870086c,0x871086f,0x872082f,0x8310831,0x8670872,0x8720867,0x8730873,0x82f0872,0x8740869,0x8670875,0x8690874,0x8740875,0x8730873,0x8670874,0x876057b,0x57d057d,0x82f0876,0x876082f,0x8730873,0x57b0876,0x8770578,0x57b057b,0x8730877,0x8770873,0x8750875,0x5780877,0x878057a,0x5780578,0x8750878,0x8780875,0x8790879,0x57a0878,0x87a0879,0x8750875,0x869087a,0x87a0869,0x86c086c,0x879087a,0x87b0879,0x86c086c,0x871087b,0x87b0871,0x87c087c,0x879087b,0x87d087c,0x87e087e,0x57a087d,0x87d0879,0x57a087c,0x879087d,0x87f0569,0x57a057a,0x87e087f,0x87f087e,0x8800880,0x569087f, 0x881056e,0x5690569,0x8800881,0x8810880,0x8820882,0x56e0881,0x883056e,0x8820882,0x8840883,0x885087c,0x87e0871,0x87c0886,0x8850887,0x87c087c,0x8870886,0x8850871,0x8880888,0x8870885,0x8860887,0x8890889,0x87e0886,0x88a0818,0x81a081a,0x841088a,0x88a0841,0x88b088b,0x818088a,0x88c05e1,0x8180818,0x88b088c,0x88c088b,0x5e005e0,0x5e1088c,0x88d088b,0x8410841,0x843088d,0x88d088e,0x843088b,0x88e088d,0x88f088e,0x5e205e2,0x5e0088f,0x88f05e0,0x88b088b,0x88e088f,0x890088e,0x8430843,0x83f0890,0x890083f,0x8910891,0x88e0890,0x892083f,0x891083d,0x83f0892,0x892083d,0x8930893,0x8910892,0x8940893,0x83d083d,0x5930894,0x8940591,0x5930893,0x5910894,0x8950893, 0x5910591,0x5920895,0x8950592,0x8960896,0x8930895,0x8980897,0x8960891,0x8970898,0x8980891,0x8930893,0x8960898,0x8990897,0x89a089a,0x88e0899,0x899088e,0x8910891,0x8970899,0x89c089b,0x89a05e2,0x89b089c,0x89c05e2,0x88e088e,0x89a089c,0x89d05e2,0x5db089b,0x5e2089d,0x89d089b,0x89e089e,0x5db089d,0x89f05d9,0x5db05db,0x89e089f,0x89f089e,0x8a008a0,0x5d9089f,0x8a105d6,0x5d905d9,0x8a008a1,0x8a108a0,0x8a208a2,0x5d608a1,0x8a305d8,0x5d605d6,0x8a208a3,0x8a308a2,0x8a408a4,0x5d808a3,0x8a505dd,0x5d805d8,0x8a408a5,0x8a508a4,0x7cb07cb,0x5dd08a5,0x8a607c9,0x7cb07cb,0x8a408a6,0x8a608a4,0x8a708a7,0x7c908a6,0x8a808a4,0x8a208a2,0x8a908a8,0x8a808a9,0x8a708a7, 0x8a408a8,0x8aa08a0,0x8a208ab,0x8a008aa,0x8aa08ab,0x8a908a9,0x8a208aa,0x8ac08a0,0x89e089e,0x8ad08ac,0x8ac08ad,0x8ab08ab,0x8a008ac,0x8ae089b,0x89e08af,0x89b08ae,0x8ae08af,0x8ad08ad,0x89e08ae,0x8b008af,0x89b089b,0x89a08b0,0x8b008b1,0x89a08af,0x8b108b0,0x8b207c9,0x80208a7,0x7bf08b3,0x8b307bf,0x7c107c1,0x8b408b3,0x8b308b4,0x8040802,0x80208b5,0x8b50802,0x8b408b4,0x8b608b5,0x8b508b6,0x7c10804,0x7c308b7,0x8b708b4,0x7c307c1,0x8b808b7,0x8b708b8,0x8b808b4,0x8ba08b9,0x8b908ba,0x8b608b6,0x8b408b9,0x8b908b4,0x80808b8,0x80408bb,0x8bb0804,0x8b608b6,0x8bc08bb,0x8bb08bc,0x8ba0808,0x8be08bd,0x8bd08b6,0x8be08ba,0x8bc08bd,0x8bd08bc,0x8be08b6,0x8c008bf, 0x8bf08c0,0x8080808,0x8bc08bf,0x8bf08bc,0x8b808be,0x7c308c1,0x8c107c3,0x7c507c5,0x8c208c1,0x8c108c2,0x8c308b8,0x8ba08c4,0x8c408c2,0x8ba08c3,0x8b808c4,0x8c408b8,0x8c308c2,0x8c608c5,0x8c508c6,0x8be08be,0x8ba08c5,0x8c508ba,0x8c608c3,0x8c808c7,0x8c708c8,0x8be08c0,0x8c608c7,0x8c708c0,0x80608be,0x80808c9,0x8c90808,0x8c008c0,0x4fd08c9,0x8c904fd,0x8970806,0x89608ca,0x8ca0896,0x8cb08cb,0x8cc08ca,0x8ca08cc,0x89a0897,0x89708cd,0x8cd0897,0x8cc08cc,0x8b108cd,0x8cd08b1,0x8cb089a,0x89608ce,0x8ce0896,0x59a0592,0x8cb08ce,0x8ce0592,0x8cb059a,0x59a08cf,0x8cf059a,0x8d008d0,0x8d108cf,0x8cf08d1,0x8d008cb,0x59a08d2,0x8d2059a,0x8d30599,0x8d008d2,0x8d20599, 0x8d408d3,0x8d308d5,0x8d508d3,0x8cb0599,0x8d108d6,0x8d708cc,0x8cb08cb,0x8d808d7,0x8d608d8,0x8d908cb,0x8cc08d7,0x8d708d8,0x8da08d9,0x8b108db,0x8db08d9,0x8b108da,0x8cc08db,0x8db08cc,0x8d108d9,0x8dc08d6,0x8d608dc,0x8af08d8,0x8b108dd,0x8dd08b1,0x8da08da,0x8de08dd,0x8dd08de,0x8ad08af,0x8af08df,0x8df08af,0x8de08de,0x8e008df,0x8df08e0,0x8d408ad,0x8e208e1,0x8e108e2,0x8e308e3,0x8d308e1,0x8e408d0,0x8d308d3,0x8e308e4,0x8e408e3,0x8e508e5,0x8d008e4,0x8e608e3,0x8e208e2,0x8e708e6,0x8e608e5,0x8e708e3,0x8e508e6,0x8e80884,0x8e708e7,0x8e208e8,0x8e908d1,0x8d008d0,0x8e508e9,0x8e908e5,0x8ea08ea,0x8d108e9,0x8eb08e5,0x8e708e7,0x8ec08eb,0x8eb08ea,0x8ec08e5, 0x8ea08eb,0x8ed0884,0x8e70882,0x88408ed,0x8ed0882,0x8ee08ee,0x8e708ed,0x8f008ef,0x8ee08ec,0x8ef08f0,0x8f008ec,0x8e708e7,0x8ee08f0,0x8f108dc,0x8d108d1,0x8ea08f1,0x8f108ea,0x8f208f2,0x8dc08f1,0x8f308ec,0x8ea08f4,0x8ec08f3,0x8f308f4,0x8f208f2,0x8ea08f3,0x8f508ef,0x8ec08f6,0x8ef08f5,0x8f508f6,0x8f408f4,0x8ec08f5,0x8f70882,0x8ee0880,0x88208f7,0x8f70880,0x8f808f8,0x8ee08f7,0x8f9087e,0x8890889,0x8f808f9,0x8f908f8,0x8800880,0x87e08f9,0x8fa08f8,0x8890889,0x8fb08fa,0x8fa08fb,0x8fc08fc,0x8f808fa,0x8fd08fb,0x8890889,0x88708fd,0x8fd0887,0x8fe08fe,0x8fb08fd,0x90008ff,0x8fb08fb,0x8fe0900,0x9020901,0x8ff08fc,0x9010902,0x90208fc,0x8fb08fb,0x8ff0902, 0x90308ee,0x8f808f8,0x8fc0903,0x90308fc,0x8ef08ef,0x8ee0903,0x9040901,0x8fc08f6,0x9010904,0x90408f6,0x8ef08ef,0x8fc0904,0x9050887,0x8fe0888,0x8870905,0x9050888,0x9060906,0x8fe0905,0x9080907,0x8fe08fe,0x9060908,0x9080906,0x9090909,0x9070908,0x90a0906,0x909090b,0x906090a,0x90c0906,0x8880888,0x90d090c,0x90c090d,0x90b090b,0x906090c,0x90e08ff,0x9070907,0x90f090e,0x91008c2,0x7c707c5,0x9110910,0x91007c5,0x91107c7,0x8c20910,0x91208c3,0x8c208c2,0x9110912,0x9120911,0x9130913,0x8c30912,0x9140911,0x7c707c7,0x7c90914,0x91407c9,0x9150915,0x9110914,0x91605c3,0x9150913,0x5c30916,0x9160913,0x9110911,0x9150916,0x9170915,0x7c907c9,0x9180917,0x91705c3, 0x9180915,0x5c30917,0x5ce05cc,0x9130913,0x5c305ce,0x91908c6,0x5cc08c3,0x8c60919,0x9190913,0x8c305cc,0x9130919,0x8b20918,0x91a07c9,0x91808b2,0x91b0918,0x5c3091a,0x918091b,0x91b05c5,0x91a05c3,0x5c5091b,0x8b208a7,0x8c6091a,0x5cc091c,0x91c05cc,0x8c805cb,0x8c6091c,0x91c05cb,0x5c708c8,0x5c5091d,0x91d05c5,0x91a091a,0x91e091d,0x91d091e,0x91a05c7,0x8a7091f,0x91f08a7,0x91e08a9,0x91a091f,0x91f08a9,0x8da091e,0x8d90920,0x9200921,0x8d90922,0x9210920,0x9200922,0x92108da,0x8d90923,0x92308d9,0x92408d8,0x9210923,0x92308d8,0x8de0924,0x8da0925,0x92508da,0x9220922,0x9260925,0x9250926,0x92408de,0x8d80927,0x92708d8,0x92808dc,0x9240927,0x92708dc,0x8e00928, 0x8de0929,0x92908de,0x9260926,0x92a0929,0x929092a,0x8dc08e0,0x8f2092b,0x92b0928,0x8f208dc,0x92c092b,0x92b092c,0x92c0928,0x8f2092d,0x92d08f2,0x92e08f4,0x92c092d,0x92d08f4,0x92e092e,0x8f4092f,0x92f08f4,0x93008f6,0x92e092f,0x92f08f6,0x9300930,0x8f60931,0x93108f6,0x9320901,0x9300931,0x9310901,0x9320932,0x9010933,0x9330901,0x93408ff,0x9320933,0x93308ff,0x9340934,0x8ff090e,0x9350934,0x90f090f,0x934090e,0x9350936,0x9320934,0x9340937,0x9370934,0x9360936,0x9380937,0x9370938,0x9390932,0x938093a,0x93a0938,0x93b0936,0x938093c,0x93c0938,0x93b0939,0x930093d,0x93d0930,0x9380932,0x93b093d,0x93d0932,0x92e0938,0x930093e,0x93e0930,0x93b093b,0x93f093e, 0x93e093f,0x940092e,0x93f0941,0x941093f,0x93f093b,0x9400942,0x943092e,0x93f093f,0x9440943,0x9420944,0x92c093f,0x92e0943,0x9430944,0x945092c,0x9440942,0x9460928,0x92c092c,0x9440946,0x9460944,0x9470947,0x9280946,0x9480945,0x9440949,0x9450948,0x9480949,0x9470947,0x9440948,0x94b094a,0x9490949,0x945094b,0x94c0922,0x94d0921,0x94e094c,0x94c0921,0x94e094d,0x922094c,0x94f094d,0x9210921,0x924094f,0x94f0950,0x924094d,0x950094f,0x9510926,0x9220922,0x94e0951,0x951094e,0x9520952,0x9260951,0x9530950,0x9240924,0x9280953,0x9530947,0x9280950,0x9470953,0x954092a,0x9260926,0x9520954,0x9540952,0x9550955,0x92a0954,0x9560947,0x9500949,0x9470956,0x9560949, 0x9570957,0x9500956,0x9580957,0x9590959,0x94d0958,0x958094d,0x9500950,0x9570958,0x95b095a,0x959094e,0x95a095b,0x95b094e,0x94d094d,0x959095b,0x95c095a,0x95d095d,0x952095c,0x95c0952,0x94e094e,0x95a095c,0x95f095e,0x95d0955,0x95e095f,0x95f0955,0x9520952,0x95d095f,0x9600957,0x9490949,0x94a0960,0x960094a,0x9610961,0x9570960,0x9620957,0x9590961,0x9570962,0x9630961,0x964094a,0x9610963,0x9650961,0x9640964,0x9660965,0x9650966,0x9670967,0x9610965,0x968053b,0x9660966,0x9640968,0x5420540,0x9660966,0x53b0542,0x9690540,0x5ae05ae,0x9670969,0x9690966,0x9670540,0x9660969,0x9620961,0x9670967,0x9590962,0x96a0967,0x5ae05ae,0x95a096a,0x96a095a,0x9590959, 0x967096a,0x96b05ae,0x95a05ac,0x5ae096b,0x96b05ac,0x95d095d,0x95a096b,0x96c05ac,0x95d05a8,0x5ac096c,0x96c05a8,0x95e095e,0x95d096c,0x96d05a8,0x95e05a6,0x5a8096d,0x96d05a6,0x96e096e,0x95e096d,0x5b105b0,0x96e096e,0x5a605b1,0x96f0955,0x95e095e,0x96e096f,0x96f096e,0x9700970,0x955096f,0x971096e,0x97005b0,0x96e0971,0x4c20129,0x12b0127,0x1290972,0x9720129,0x4c104c1,0x12904c2,0x9740973,0x4c104c1,0x9730972,0x97404c1,0x12d04bf,0x12b0975,0x9720973,0x12b012b,0x9730975,0x9750973,0x9760976,0x9730977,0x9770973,0x9780978,0x9730974,0x97404bf,0x4bf0978,0x780979,0x9790978,0x97a04bf,0x978097b,0x9770978,0x97c097a,0x9780979,0x97b0978,0x12d097c,0x976097d, 0x9750976,0x97e012d,0x976097f,0x97d0976,0x97a097e,0x9760977,0x97f0976,0x97c097a,0x980097b,0x79097c,0x780078,0x97c0979,0x790980,0x4fd097c,0x8c00981,0x98104fb,0x8c004fd,0x8c80981,0x98108c8,0x8c804fb,0x5cb0982,0x98204fb,0x4f908c8,0x4fb0982,0x98205cb,0x5b004f9,0x5bf0971,0x97105bf,0x9700970,0x5bf0983,0x98305bf,0x97005c7,0x9850984,0x9830985,0x9550970,0x9700984,0x98305c7,0x5c70985,0x91e0986,0x9860985,0x92a05c7,0x9850987,0x9840985,0x988092a,0x9850986,0x9870985,0x92a0988,0x9550984,0x98708e0,0x91e092a,0x9880986,0x9890988,0x91e091e,0x8a90989,0x9870988,0x8e008e0,0x988098a,0x98a0988,0x8ab08ab,0x9880989,0x98a08ad,0x8a908e0,0x8ab0989,0x98a08ab, 0x85908ad,0x858098b,0x98b0858,0x858051a,0x856098c,0x98c051a,0x5170858,0x51a098c,0x98c0856,0x5170517,0x856098d,0x98d0856,0x5150522,0x517098d,0x98d0522,0x74f0515,0x751098e,0x98f06f8,0x74f074f,0x990098f,0x98e0990,0x751074f,0x991098e,0x98e0991,0x9910990,0x7510992,0x9920751,0x991075d,0x6f40993,0x99406f4,0x9910991,0x6410994,0x9920641,0x9900991,0x9910993,0x99306f6,0x9900990,0x6f6098f,0x98f06f6,0x6f406f8,0x6f60993,0x9940640,0x75d06f4,0x6410992,0x995075d,0x6410657,0x75d0995,0x9940641,0x6390640,0x6410995,0x9950657,0x2b00639,0x2a90996,0x99602a9,0x16c02f6,0x2b00996,0x99702b0,0x172016c,0x2b00997,0x99602f6,0x2f6016c,0x2f80998,0x998016c,0x16c02f6, 0x1630997,0x9980169,0x163016c,0x1720997,0x99802f8,0x1690169,0x2f80999,0x99902f8,0x16b034b,0x1690999,0x999034b,0x99a016b,0x99c099b,0x99b099c,0x99d099d,0x99c099e,0x99b099f,0x99d099a,0x99f099b,0x9a109a0,0x99d099d,0x9a009a2,0x9a409a3,0x99d099d,0x9a309a1,0x99e09a5,0x99d099d,0x9a509a4,0x9a2099f,0x9a0099d,0x9a709a6,0x9a109a3,0x9a309a7,0x9a909a8,0x9a409a9,0x9a709a3,0x9a309a8,0x9a409a5,0x9a909a9,0x9a509aa,0x9ab090b,0x90d090d,0x9ac09ab,0x9ad090d,0x8700870,0x90d09ae,0x9ad09ac,0x90d090d,0x88809ae,0x9ae0871,0x8880870,0x87109ae,0x9b009af,0x15605ec,0x9b209b1,0x9b409b3,0x9b309b5,0x9b709b6,0x9b409b7,0x9b509b3,0x9b809b4,0x9b409b8,0x9b709b7,0x9b909b6, 0x9bb09ba,0x9b709b7,0x9ba09bc,0x9bb09b7,0x9b909b8,0x9b709bd,0x9bc09be,0x9b709b7,0x9be09bd,0x9bf09b9,0x9c009c0,0x9b909bd,0x9c209c1,0x9c109ba,0x9be09bc,0x9bd09be,0x9c009c0,0x9be09c3,0x9c309be,0x9c409c1,0x9c609c5,0x9c709c6,0x9c809c8,0x9c609c9,0x9ca09c6,0x9c809cb,0x9cc09c7,0x9ce09cd,0x9cf0018,0x9d109d0,0x9d309d2,0x9d209d4,0x9d609d5,0x9d709d4,0x9d809d2,0x9d209d9,0x9d709da,0x9db09d4,0x9dd09dc,0x9df09de,0x9e109e0,0x9e309e2,0x9e509e4,0x232b09e6,0x8000,0x17730000,0x8000,0x17760000,0x0,0x23280000,0x40000,0x10000,0x23280000,0x8000,0x23290000,0x40000,0x30000,0x23290000,0x8000,0x232a0000,0x40000,0x200000,0x232a0000,0x8000, 0x232b0000,0x40000,0x0,0x232b0000,0x8000,0x17760000,0x8000,0x17770000,0x0,0x23280000,0x40000,0x10000,0x23280000,0x8000,0x23290000,0x40000,0x30000,0x23290000,0x8000,0x232a0000,0x40000,0x200000,0x232a0000,0x8000,0x232b0000,0x40000,0xc0000,0x232b0000,0x8000,0x17770000,0x8000,0x17780000,0x0,0x23280000,0x40000,0x10000,0x23280000,0x8000,0x23290000,0x40000,0x0,0x23290000,0x8000,0x232a0000,0x40000,0x0,0x232a0000,0x8000,0x232b0000,0x40000,0x7ff00000,0x232b11a5,0x8000,0x17780000,0x8000,0x17790000,0x0,0x23280000,0x40000,0x10000,0x23280000,0x8000,0x23290000,0x40000, 0x0,0x23290000,0x8000,0x232a0000,0x40000,0x0,0x232a0000,0x8000,0x232b0000,0x40000,0x99680000,0x232b0f14,0x8000,0x17790000,0x8000,0x177a0000,0x0,0x23280000,0x40000,0x10000,0x23280000,0x8000,0x23290000,0x40000,0x20000,0x23290000,0x8000,0x232a0000,0x40000,0x200000,0x232a0000,0x8000,0x232b0000,0x40000,0x180000,0x232b0000,0x8000,0x177a0000,0x8000,0x177b0000,0x0,0x23280000,0x40000,0x50000,0x23280000,0x8000,0x23290000,0x40000,0x0,0x23290000,0x8000,0x232a0000,0x40000,0x0,0x232a0000,0x8000,0x232b0000,0x40000,0x0,0x232b0000,0x8000,0x177b0000,0x8000,0x177c0000, 0x0,0x23280000,0x40000,0x20000,0x23280000,0x8000,0x23290000,0x40000,0x0,0x23290000,0x8000,0x232a0000,0x40000,0x0,0x232a0000,0x8000,0x232b0000,0x40000,0x0,0x232b0000,0x8000,0x177c0000,0x8000,0x177d0000,0x0,0x23280000,0x40000,0x10000,0x23280000,0x8000,0x23290000,0x40000,0x0,0x23290000,0x8000,0x232a0000,0x40000,0x0,0x232a0000,0x8000,0x232b0000,0x40000,0x0,0x232b0000,0x8000,0x177d0000,0x8000,0x7dc0000,0x8000,0x7dd0000,0x0,0x13880000,0x40000,0x0,0x13880000,0x8000,0x13890000,0xc0000,0x626f0000,0x73616d6a,0x69616d6b,0x1389006e,0x8000,0x138a0000, 0x40000,0x0,0x138a0000,0x8000,0x138b0000,0x40000,0xffff0000,0x138bffff,0x8000,0x138c0000,0xc0000,0x0,0x0,0x0,0x138c8000,0x8000,0x138d0000,0x100000,0x0,0x8000,0x8000,0x8000,0x138d3f80,0x8000,0x138e0000,0xc0000,0x0,0x3f80,0x3f80,0x138e3f80,0x8000,0x7dd0000,0x8000,0x3e90000,0x8000,0x0, }; // Register Mask.pod in memory file system at application startup time static CPVRTMemoryFileSystem RegisterFile_Mask_pod("Mask.pod", _Mask_pod, 110478); // ******** End: Mask.pod ********
[ "anon@justice" ]
anon@justice
3183d4237af154f28f498ae087dc8c8d1120f740
5bf03d99f9849f283229baa747a383f1b0e682a1
/src/rpcblockchain.cpp
cabbe16eed1e6b71fbe735714cf55189fe4535dc
[ "MIT" ]
permissive
vividplatform/vividcoin
f98b94c60b7a5cd371799019af16bf1a11ce8508
7a23aba5932470ac10a843302d86f9b694201d68
refs/heads/master
2020-03-20T10:15:41.813739
2019-10-10T13:19:42
2019-10-10T13:19:42
137,364,401
3
4
MIT
2018-12-01T16:15:13
2018-06-14T13:50:16
C++
UTF-8
C++
false
false
33,415
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "base58.h" #include "checkpoints.h" #include "clientversion.h" #include "main.h" #include "rpcserver.h" #include "sync.h" #include "txdb.h" #include "util.h" #include "utilmoneystr.h" #include <stdint.h> #include <univalue.h> using namespace std; extern void TxToJSON(const CTransaction& tx, const uint256 hashBlock, UniValue& entry); void ScriptPubKeyToJSON(const CScript& scriptPubKey, UniValue& out, bool fIncludeHex); double GetDifficulty(const CBlockIndex* blockindex) { // Floating point number that is a multiple of the minimum difficulty, // minimum difficulty = 1.0. if (blockindex == NULL) { if (chainActive.Tip() == NULL) return 1.0; else blockindex = chainActive.Tip(); } int nShift = (blockindex->nBits >> 24) & 0xff; double dDiff = (double)0x0000ffff / (double)(blockindex->nBits & 0x00ffffff); while (nShift < 29) { dDiff *= 256.0; nShift++; } while (nShift > 29) { dDiff /= 256.0; nShift--; } return dDiff; } UniValue blockToJSON(const CBlock& block, const CBlockIndex* blockindex, bool txDetails = false) { UniValue result(UniValue::VOBJ); result.push_back(Pair("hash", block.GetHash().GetHex())); int confirmations = -1; // Only report confirmations if the block is on the main chain if (chainActive.Contains(blockindex)) confirmations = chainActive.Height() - blockindex->nHeight + 1; result.push_back(Pair("confirmations", confirmations)); result.push_back(Pair("size", (int)::GetSerializeSize(block, SER_NETWORK, PROTOCOL_VERSION))); result.push_back(Pair("height", blockindex->nHeight)); result.push_back(Pair("version", block.nVersion)); result.push_back(Pair("merkleroot", block.hashMerkleRoot.GetHex())); UniValue txs(UniValue::VARR); BOOST_FOREACH (const CTransaction& tx, block.vtx) { if (txDetails) { UniValue objTx(UniValue::VOBJ); TxToJSON(tx, uint256(0), objTx); txs.push_back(objTx); } else txs.push_back(tx.GetHash().GetHex()); } result.push_back(Pair("tx", txs)); result.push_back(Pair("time", block.GetBlockTime())); result.push_back(Pair("nonce", (uint64_t)block.nNonce)); result.push_back(Pair("bits", strprintf("%08x", block.nBits))); result.push_back(Pair("difficulty", GetDifficulty(blockindex))); result.push_back(Pair("chainwork", blockindex->nChainWork.GetHex())); if (blockindex->pprev) result.push_back(Pair("previousblockhash", blockindex->pprev->GetBlockHash().GetHex())); CBlockIndex* pnext = chainActive.Next(blockindex); if (pnext) result.push_back(Pair("nextblockhash", pnext->GetBlockHash().GetHex())); return result; } UniValue blockHeaderToJSON(const CBlock& block, const CBlockIndex* blockindex) { UniValue result(UniValue::VOBJ); result.push_back(Pair("version", block.nVersion)); if (blockindex->pprev) result.push_back(Pair("previousblockhash", blockindex->pprev->GetBlockHash().GetHex())); result.push_back(Pair("merkleroot", block.hashMerkleRoot.GetHex())); result.push_back(Pair("time", block.GetBlockTime())); result.push_back(Pair("bits", strprintf("%08x", block.nBits))); result.push_back(Pair("nonce", (uint64_t)block.nNonce)); return result; } UniValue getblockcount(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getblockcount\n" "\nReturns the number of blocks in the longest block chain.\n" "\nResult:\n" "n (numeric) The current block count\n" "\nExamples:\n" + HelpExampleCli("getblockcount", "") + HelpExampleRpc("getblockcount", "")); return chainActive.Height(); } UniValue getbestblockhash(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getbestblockhash\n" "\nReturns the hash of the best (tip) block in the longest block chain.\n" "\nResult\n" "\"hex\" (string) the block hash hex encoded\n" "\nExamples\n" + HelpExampleCli("getbestblockhash", "") + HelpExampleRpc("getbestblockhash", "")); return chainActive.Tip()->GetBlockHash().GetHex(); } UniValue getdifficulty(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getdifficulty\n" "\nReturns the proof-of-work difficulty as a multiple of the minimum difficulty.\n" "\nResult:\n" "n.nnn (numeric) the proof-of-work difficulty as a multiple of the minimum difficulty.\n" "\nExamples:\n" + HelpExampleCli("getdifficulty", "") + HelpExampleRpc("getdifficulty", "")); return GetDifficulty(); } UniValue getrawmempool(const UniValue& params, bool fHelp) { if (fHelp || params.size() > 1) throw runtime_error( "getrawmempool ( verbose )\n" "\nReturns all transaction ids in memory pool as a json array of string transaction ids.\n" "\nArguments:\n" "1. verbose (boolean, optional, default=false) true for a json object, false for array of transaction ids\n" "\nResult: (for verbose = false):\n" "[ (json array of string)\n" " \"transactionid\" (string) The transaction id\n" " ,...\n" "]\n" "\nResult: (for verbose = true):\n" "{ (json object)\n" " \"transactionid\" : { (json object)\n" " \"size\" : n, (numeric) transaction size in bytes\n" " \"fee\" : n, (numeric) transaction fee in vivid\n" " \"time\" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT\n" " \"height\" : n, (numeric) block height when transaction entered pool\n" " \"startingpriority\" : n, (numeric) priority when transaction entered pool\n" " \"currentpriority\" : n, (numeric) transaction priority now\n" " \"depends\" : [ (array) unconfirmed transactions used as inputs for this transaction\n" " \"transactionid\", (string) parent transaction id\n" " ... ]\n" " }, ...\n" "]\n" "\nExamples\n" + HelpExampleCli("getrawmempool", "true") + HelpExampleRpc("getrawmempool", "true")); bool fVerbose = false; if (params.size() > 0) fVerbose = params[0].get_bool(); if (fVerbose) { LOCK(mempool.cs); UniValue o(UniValue::VOBJ); BOOST_FOREACH (const PAIRTYPE(uint256, CTxMemPoolEntry) & entry, mempool.mapTx) { const uint256& hash = entry.first; const CTxMemPoolEntry& e = entry.second; UniValue info(UniValue::VOBJ); info.push_back(Pair("size", (int)e.GetTxSize())); info.push_back(Pair("fee", ValueFromAmount(e.GetFee()))); info.push_back(Pair("time", e.GetTime())); info.push_back(Pair("height", (int)e.GetHeight())); info.push_back(Pair("startingpriority", e.GetPriority(e.GetHeight()))); info.push_back(Pair("currentpriority", e.GetPriority(chainActive.Height()))); const CTransaction& tx = e.GetTx(); set<string> setDepends; BOOST_FOREACH (const CTxIn& txin, tx.vin) { if (mempool.exists(txin.prevout.hash)) setDepends.insert(txin.prevout.hash.ToString()); } UniValue depends(UniValue::VARR); BOOST_FOREACH(const string& dep, setDepends) { depends.push_back(dep); } info.push_back(Pair("depends", depends)); o.push_back(Pair(hash.ToString(), info)); } return o; } else { vector<uint256> vtxid; mempool.queryHashes(vtxid); UniValue a(UniValue::VARR); BOOST_FOREACH (const uint256& hash, vtxid) a.push_back(hash.ToString()); return a; } } UniValue getblockhash(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "getblockhash index\n" "\nReturns hash of block in best-block-chain at index provided.\n" "\nArguments:\n" "1. index (numeric, required) The block index\n" "\nResult:\n" "\"hash\" (string) The block hash\n" "\nExamples:\n" + HelpExampleCli("getblockhash", "1000") + HelpExampleRpc("getblockhash", "1000")); int nHeight = params[0].get_int(); if (nHeight < 0 || nHeight > chainActive.Height()) throw JSONRPCError(RPC_INVALID_PARAMETER, "Block height out of range"); CBlockIndex* pblockindex = chainActive[nHeight]; return pblockindex->GetBlockHash().GetHex(); } UniValue getblock(const UniValue& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 2) throw runtime_error( "getblock \"hash\" ( verbose )\n" "\nIf verbose is false, returns a string that is serialized, hex-encoded data for block 'hash'.\n" "If verbose is true, returns an Object with information about block <hash>.\n" "\nArguments:\n" "1. \"hash\" (string, required) The block hash\n" "2. verbose (boolean, optional, default=true) true for a json object, false for the hex encoded data\n" "\nResult (for verbose = true):\n" "{\n" " \"hash\" : \"hash\", (string) the block hash (same as provided)\n" " \"confirmations\" : n, (numeric) The number of confirmations, or -1 if the block is not on the main chain\n" " \"size\" : n, (numeric) The block size\n" " \"height\" : n, (numeric) The block height or index\n" " \"version\" : n, (numeric) The block version\n" " \"merkleroot\" : \"xxxx\", (string) The merkle root\n" " \"tx\" : [ (array of string) The transaction ids\n" " \"transactionid\" (string) The transaction id\n" " ,...\n" " ],\n" " \"time\" : ttt, (numeric) The block time in seconds since epoch (Jan 1 1970 GMT)\n" " \"nonce\" : n, (numeric) The nonce\n" " \"bits\" : \"1d00ffff\", (string) The bits\n" " \"difficulty\" : x.xxx, (numeric) The difficulty\n" " \"previousblockhash\" : \"hash\", (string) The hash of the previous block\n" " \"nextblockhash\" : \"hash\" (string) The hash of the next block\n" " \"moneysupply\" : \"supply\" (numeric) The money supply when this block was added to the blockchain\n" "}\n" "\nResult (for verbose=false):\n" "\"data\" (string) A string that is serialized, hex-encoded data for block 'hash'.\n" "\nExamples:\n" + HelpExampleCli("getblock", "\"00000000000fd08c2fb661d2fcb0d49abb3a91e5f27082ce64feed3b4dede2e2\"") + HelpExampleRpc("getblock", "\"00000000000fd08c2fb661d2fcb0d49abb3a91e5f27082ce64feed3b4dede2e2\"")); std::string strHash = params[0].get_str(); uint256 hash(strHash); bool fVerbose = true; if (params.size() > 1) fVerbose = params[1].get_bool(); if (mapBlockIndex.count(hash) == 0) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found"); CBlock block; CBlockIndex* pblockindex = mapBlockIndex[hash]; if (!ReadBlockFromDisk(block, pblockindex)) throw JSONRPCError(RPC_INTERNAL_ERROR, "Can't read block from disk"); if (!fVerbose) { CDataStream ssBlock(SER_NETWORK, PROTOCOL_VERSION); ssBlock << block; std::string strHex = HexStr(ssBlock.begin(), ssBlock.end()); return strHex; } return blockToJSON(block, pblockindex); } UniValue getblockheader(const UniValue& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 2) throw runtime_error( "getblockheader \"hash\" ( verbose )\n" "\nIf verbose is false, returns a string that is serialized, hex-encoded data for block 'hash' header.\n" "If verbose is true, returns an Object with information about block <hash> header.\n" "\nArguments:\n" "1. \"hash\" (string, required) The block hash\n" "2. verbose (boolean, optional, default=true) true for a json object, false for the hex encoded data\n" "\nResult (for verbose = true):\n" "{\n" " \"version\" : n, (numeric) The block version\n" " \"previousblockhash\" : \"hash\", (string) The hash of the previous block\n" " \"merkleroot\" : \"xxxx\", (string) The merkle root\n" " \"time\" : ttt, (numeric) The block time in seconds since epoch (Jan 1 1970 GMT)\n" " \"bits\" : \"1d00ffff\", (string) The bits\n" " \"nonce\" : n, (numeric) The nonce\n" "}\n" "\nResult (for verbose=false):\n" "\"data\" (string) A string that is serialized, hex-encoded data for block 'hash' header.\n" "\nExamples:\n" + HelpExampleCli("getblockheader", "\"00000000000fd08c2fb661d2fcb0d49abb3a91e5f27082ce64feed3b4dede2e2\"") + HelpExampleRpc("getblockheader", "\"00000000000fd08c2fb661d2fcb0d49abb3a91e5f27082ce64feed3b4dede2e2\"")); std::string strHash = params[0].get_str(); uint256 hash(strHash); bool fVerbose = true; if (params.size() > 1) fVerbose = params[1].get_bool(); if (mapBlockIndex.count(hash) == 0) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found"); CBlock block; CBlockIndex* pblockindex = mapBlockIndex[hash]; if (!ReadBlockFromDisk(block, pblockindex)) throw JSONRPCError(RPC_INTERNAL_ERROR, "Can't read block from disk"); if (!fVerbose) { CDataStream ssBlock(SER_NETWORK, PROTOCOL_VERSION); ssBlock << block.GetBlockHeader(); std::string strHex = HexStr(ssBlock.begin(), ssBlock.end()); return strHex; } return blockHeaderToJSON(block, pblockindex); } UniValue gettxoutsetinfo(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "gettxoutsetinfo\n" "\nReturns statistics about the unspent transaction output set.\n" "Note this call may take some time.\n" "\nResult:\n" "{\n" " \"height\":n, (numeric) The current block height (index)\n" " \"bestblock\": \"hex\", (string) the best block hash hex\n" " \"transactions\": n, (numeric) The number of transactions\n" " \"txouts\": n, (numeric) The number of output transactions\n" " \"bytes_serialized\": n, (numeric) The serialized size\n" " \"hash_serialized\": \"hash\", (string) The serialized hash\n" " \"total_amount\": x.xxx (numeric) The total amount\n" "}\n" "\nExamples:\n" + HelpExampleCli("gettxoutsetinfo", "") + HelpExampleRpc("gettxoutsetinfo", "")); UniValue ret(UniValue::VOBJ); CCoinsStats stats; FlushStateToDisk(); if (pcoinsTip->GetStats(stats)) { ret.push_back(Pair("height", (int64_t)stats.nHeight)); ret.push_back(Pair("bestblock", stats.hashBlock.GetHex())); ret.push_back(Pair("transactions", (int64_t)stats.nTransactions)); ret.push_back(Pair("txouts", (int64_t)stats.nTransactionOutputs)); ret.push_back(Pair("bytes_serialized", (int64_t)stats.nSerializedSize)); ret.push_back(Pair("hash_serialized", stats.hashSerialized.GetHex())); ret.push_back(Pair("total_amount", ValueFromAmount(stats.nTotalAmount))); } return ret; } UniValue gettxout(const UniValue& params, bool fHelp) { if (fHelp || params.size() < 2 || params.size() > 3) throw runtime_error( "gettxout \"txid\" n ( includemempool )\n" "\nReturns details about an unspent transaction output.\n" "\nArguments:\n" "1. \"txid\" (string, required) The transaction id\n" "2. n (numeric, required) vout value\n" "3. includemempool (boolean, optional) Whether to included the mem pool\n" "\nResult:\n" "{\n" " \"bestblock\" : \"hash\", (string) the block hash\n" " \"confirmations\" : n, (numeric) The number of confirmations\n" " \"value\" : x.xxx, (numeric) The transaction value in vivid\n" " \"scriptPubKey\" : { (json object)\n" " \"asm\" : \"code\", (string) \n" " \"hex\" : \"hex\", (string) \n" " \"reqSigs\" : n, (numeric) Number of required signatures\n" " \"type\" : \"pubkeyhash\", (string) The type, eg pubkeyhash\n" " \"addresses\" : [ (array of string) array of vivid addresses\n" " \"vividaddress\" (string) vivid address\n" " ,...\n" " ]\n" " },\n" " \"version\" : n, (numeric) The version\n" " \"coinbase\" : true|false (boolean) Coinbase or not\n" "}\n" "\nExamples:\n" "\nGet unspent transactions\n" + HelpExampleCli("listunspent", "") + "\nView the details\n" + HelpExampleCli("gettxout", "\"txid\" 1") + "\nAs a json rpc call\n" + HelpExampleRpc("gettxout", "\"txid\", 1")); UniValue ret(UniValue::VOBJ); std::string strHash = params[0].get_str(); uint256 hash(strHash); int n = params[1].get_int(); bool fMempool = true; if (params.size() > 2) fMempool = params[2].get_bool(); CCoins coins; if (fMempool) { LOCK(mempool.cs); CCoinsViewMemPool view(pcoinsTip, mempool); if (!view.GetCoins(hash, coins)) return NullUniValue; mempool.pruneSpent(hash, coins); // TODO: this should be done by the CCoinsViewMemPool } else { if (!pcoinsTip->GetCoins(hash, coins)) return NullUniValue; } if (n < 0 || (unsigned int)n >= coins.vout.size() || coins.vout[n].IsNull()) return NullUniValue; BlockMap::iterator it = mapBlockIndex.find(pcoinsTip->GetBestBlock()); CBlockIndex* pindex = it->second; ret.push_back(Pair("bestblock", pindex->GetBlockHash().GetHex())); if ((unsigned int)coins.nHeight == MEMPOOL_HEIGHT) ret.push_back(Pair("confirmations", 0)); else ret.push_back(Pair("confirmations", pindex->nHeight - coins.nHeight + 1)); ret.push_back(Pair("value", ValueFromAmount(coins.vout[n].nValue))); UniValue o(UniValue::VOBJ); ScriptPubKeyToJSON(coins.vout[n].scriptPubKey, o, true); ret.push_back(Pair("scriptPubKey", o)); ret.push_back(Pair("version", coins.nVersion)); ret.push_back(Pair("coinbase", coins.fCoinBase)); return ret; } UniValue verifychain(const UniValue& params, bool fHelp) { if (fHelp || params.size() > 2) throw runtime_error( "verifychain ( checklevel numblocks )\n" "\nVerifies blockchain database.\n" "\nArguments:\n" "1. checklevel (numeric, optional, 0-4, default=3) How thorough the block verification is.\n" "2. numblocks (numeric, optional, default=288, 0=all) The number of blocks to check.\n" "\nResult:\n" "true|false (boolean) Verified or not\n" "\nExamples:\n" + HelpExampleCli("verifychain", "") + HelpExampleRpc("verifychain", "")); int nCheckLevel = GetArg("-checklevel", 3); int nCheckDepth = GetArg("-checkblocks", 288); if (params.size() > 0) nCheckLevel = params[0].get_int(); if (params.size() > 1) nCheckDepth = params[1].get_int(); return CVerifyDB().VerifyDB(pcoinsTip, nCheckLevel, nCheckDepth); } UniValue getblockchaininfo(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getblockchaininfo\n" "Returns an object containing various state info regarding block chain processing.\n" "\nResult:\n" "{\n" " \"chain\": \"xxxx\", (string) current network name as defined in BIP70 (main, test, regtest)\n" " \"blocks\": xxxxxx, (numeric) the current number of blocks processed in the server\n" " \"headers\": xxxxxx, (numeric) the current number of headers we have validated\n" " \"bestblockhash\": \"...\", (string) the hash of the currently best block\n" " \"difficulty\": xxxxxx, (numeric) the current difficulty\n" " \"verificationprogress\": xxxx, (numeric) estimate of verification progress [0..1]\n" " \"chainwork\": \"xxxx\" (string) total amount of work in active chain, in hexadecimal\n" "}\n" "\nExamples:\n" + HelpExampleCli("getblockchaininfo", "") + HelpExampleRpc("getblockchaininfo", "")); UniValue obj(UniValue::VOBJ); obj.push_back(Pair("chain", Params().NetworkIDString())); obj.push_back(Pair("blocks", (int)chainActive.Height())); obj.push_back(Pair("headers", pindexBestHeader ? pindexBestHeader->nHeight : -1)); obj.push_back(Pair("bestblockhash", chainActive.Tip()->GetBlockHash().GetHex())); obj.push_back(Pair("difficulty", (double)GetDifficulty())); obj.push_back(Pair("verificationprogress", Checkpoints::GuessVerificationProgress(chainActive.Tip()))); obj.push_back(Pair("chainwork", chainActive.Tip()->nChainWork.GetHex())); return obj; } /** Comparison function for sorting the getchaintips heads. */ struct CompareBlocksByHeight { bool operator()(const CBlockIndex* a, const CBlockIndex* b) const { /* Make sure that unequal blocks with the same height do not compare equal. Use the pointers themselves to make a distinction. */ if (a->nHeight != b->nHeight) return (a->nHeight > b->nHeight); return a < b; } }; UniValue getchaintips(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getchaintips\n" "Return information about all known tips in the block tree," " including the main chain as well as orphaned branches.\n" "\nResult:\n" "[\n" " {\n" " \"height\": xxxx, (numeric) height of the chain tip\n" " \"hash\": \"xxxx\", (string) block hash of the tip\n" " \"branchlen\": 0 (numeric) zero for main chain\n" " \"status\": \"active\" (string) \"active\" for the main chain\n" " },\n" " {\n" " \"height\": xxxx,\n" " \"hash\": \"xxxx\",\n" " \"branchlen\": 1 (numeric) length of branch connecting the tip to the main chain\n" " \"status\": \"xxxx\" (string) status of the chain (active, valid-fork, valid-headers, headers-only, invalid)\n" " }\n" "]\n" "Possible values for status:\n" "1. \"invalid\" This branch contains at least one invalid block\n" "2. \"headers-only\" Not all blocks for this branch are available, but the headers are valid\n" "3. \"valid-headers\" All blocks are available for this branch, but they were never fully validated\n" "4. \"valid-fork\" This branch is not part of the active chain, but is fully validated\n" "5. \"active\" This is the tip of the active main chain, which is certainly valid\n" "\nExamples:\n" + HelpExampleCli("getchaintips", "") + HelpExampleRpc("getchaintips", "")); /* Build up a list of chain tips. We start with the list of all known blocks, and successively remove blocks that appear as pprev of another block. */ std::set<const CBlockIndex*, CompareBlocksByHeight> setTips; BOOST_FOREACH (const PAIRTYPE(const uint256, CBlockIndex*) & item, mapBlockIndex) setTips.insert(item.second); BOOST_FOREACH (const PAIRTYPE(const uint256, CBlockIndex*) & item, mapBlockIndex) { const CBlockIndex* pprev = item.second->pprev; if (pprev) setTips.erase(pprev); } // Always report the currently active tip. setTips.insert(chainActive.Tip()); /* Construct the output array. */ UniValue res(UniValue::VARR); BOOST_FOREACH (const CBlockIndex* block, setTips) { UniValue obj(UniValue::VOBJ); obj.push_back(Pair("height", block->nHeight)); obj.push_back(Pair("hash", block->phashBlock->GetHex())); const int branchLen = block->nHeight - chainActive.FindFork(block)->nHeight; obj.push_back(Pair("branchlen", branchLen)); string status; if (chainActive.Contains(block)) { // This block is part of the currently active chain. status = "active"; } else if (block->nStatus & BLOCK_FAILED_MASK) { // This block or one of its ancestors is invalid. status = "invalid"; } else if (block->nChainTx == 0) { // This block cannot be connected because full block data for it or one of its parents is missing. status = "headers-only"; } else if (block->IsValid(BLOCK_VALID_SCRIPTS)) { // This block is fully validated, but no longer part of the active chain. It was probably the active block once, but was reorganized. status = "valid-fork"; } else if (block->IsValid(BLOCK_VALID_TREE)) { // The headers for this block are valid, but it has not been validated. It was probably never part of the most-work chain. status = "valid-headers"; } else { // No clue. status = "unknown"; } obj.push_back(Pair("status", status)); res.push_back(obj); } return res; } UniValue getfeeinfo(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "getfeeinfo blocks\n" "\nReturns details of transaction fees over the last n blocks.\n" "\nArguments:\n" "1. blocks (int, required) the number of blocks to get transaction data from\n" "\nResult:\n" "{\n" " \"txcount\": xxxxx (numeric) Current tx count\n" " \"txbytes\": xxxxx (numeric) Sum of all tx sizes\n" " \"ttlfee\": xxxxx (numeric) Sum of all fees\n" " \"feeperkb\": xxxxx (numeric) Average fee per kb over the block range\n" " \"rec_highpriorityfee_perkb\": xxxxx (numeric) Recommended fee per kb to use for a high priority tx\n" "}\n" "\nExamples:\n" + HelpExampleCli("getfeeinfo", "5") + HelpExampleRpc("getfeeinfo", "5")); int nBlocks = params[0].get_int(); int nBestHeight = chainActive.Height(); int nStartHeight = nBestHeight - nBlocks; if (nBlocks < 0 || nStartHeight <= 0) throw JSONRPCError(RPC_INVALID_PARAMETER, "invalid start height"); CAmount nFees = 0; int64_t nBytes = 0; int64_t nTotal = 0; for (int i = nStartHeight; i <= nBestHeight; i++) { CBlockIndex* pindex = chainActive[i]; CBlock block; if (!ReadBlockFromDisk(block, pindex)) throw JSONRPCError(RPC_DATABASE_ERROR, "failed to read block from disk"); CAmount nValueIn = 0; CAmount nValueOut = 0; for (const CTransaction& tx : block.vtx) { if (tx.IsCoinBase() || tx.IsCoinStake()) continue; for (unsigned int j = 0; j < tx.vin.size(); j++) { COutPoint prevout = tx.vin[j].prevout; CTransaction txPrev; uint256 hashBlock; if(!GetTransaction(prevout.hash, txPrev, hashBlock, true)) throw JSONRPCError(RPC_DATABASE_ERROR, "failed to read tx from disk"); nValueIn += txPrev.vout[prevout.n].nValue; } for (unsigned int j = 0; j < tx.vout.size(); j++) { nValueOut += tx.vout[j].nValue; } nFees += nValueIn - nValueOut; nBytes += tx.GetSerializeSize(SER_NETWORK, CLIENT_VERSION); nTotal++; } pindex = chainActive.Next(pindex); if (!pindex) break; } UniValue ret(UniValue::VOBJ); CFeeRate nFeeRate = CFeeRate(nFees, nBytes); ret.push_back(Pair("txcount", (int64_t)nTotal)); ret.push_back(Pair("txbytes", (int64_t)nBytes)); ret.push_back(Pair("ttlfee", FormatMoney(nFees))); ret.push_back(Pair("feeperkb", FormatMoney(nFeeRate.GetFeePerK()))); ret.push_back(Pair("rec_highpriorityfee_perkb", FormatMoney(nFeeRate.GetFeePerK() + 1000))); return ret; } UniValue getmempoolinfo(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getmempoolinfo\n" "\nReturns details on the active state of the TX memory pool.\n" "\nResult:\n" "{\n" " \"size\": xxxxx (numeric) Current tx count\n" " \"bytes\": xxxxx (numeric) Sum of all tx sizes\n" "}\n" "\nExamples:\n" + HelpExampleCli("getmempoolinfo", "") + HelpExampleRpc("getmempoolinfo", "")); UniValue ret(UniValue::VOBJ); ret.push_back(Pair("size", (int64_t)mempool.size())); ret.push_back(Pair("bytes", (int64_t)mempool.GetTotalTxSize())); return ret; } UniValue invalidateblock(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "invalidateblock \"hash\"\n" "\nPermanently marks a block as invalid, as if it violated a consensus rule.\n" "\nArguments:\n" "1. hash (string, required) the hash of the block to mark as invalid\n" "\nResult:\n" "\nExamples:\n" + HelpExampleCli("invalidateblock", "\"blockhash\"") + HelpExampleRpc("invalidateblock", "\"blockhash\"")); std::string strHash = params[0].get_str(); uint256 hash(strHash); CValidationState state; { LOCK(cs_main); if (mapBlockIndex.count(hash) == 0) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found"); CBlockIndex* pblockindex = mapBlockIndex[hash]; InvalidateBlock(state, pblockindex); } if (state.IsValid()) { ActivateBestChain(state); } if (!state.IsValid()) { throw JSONRPCError(RPC_DATABASE_ERROR, state.GetRejectReason()); } return NullUniValue; } UniValue reconsiderblock(const UniValue& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "reconsiderblock \"hash\"\n" "\nRemoves invalidity status of a block and its descendants, reconsider them for activation.\n" "This can be used to undo the effects of invalidateblock.\n" "\nArguments:\n" "1. hash (string, required) the hash of the block to reconsider\n" "\nResult:\n" "\nExamples:\n" + HelpExampleCli("reconsiderblock", "\"blockhash\"") + HelpExampleRpc("reconsiderblock", "\"blockhash\"")); std::string strHash = params[0].get_str(); uint256 hash(strHash); CValidationState state; { LOCK(cs_main); if (mapBlockIndex.count(hash) == 0) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found"); CBlockIndex* pblockindex = mapBlockIndex[hash]; ReconsiderBlock(state, pblockindex); } if (state.IsValid()) { ActivateBestChain(state); } if (!state.IsValid()) { throw JSONRPCError(RPC_DATABASE_ERROR, state.GetRejectReason()); } return NullUniValue; }
[ "vividtoken@gmail.com" ]
vividtoken@gmail.com
72b7925040bf28812d4c0b869605289ace443197
fad392b7b1533103a0ddcc18e059fcd2e85c0fda
/build/px4_msgs/rosidl_typesupport_cpp/px4_msgs/msg/estimator_status__type_support.cpp
afc41a9830112142d4efe52cfaca64a2e49078a4
[]
no_license
adamdai/px4_ros_com_ros2
bee6ef27559a3a157d10c250a45818a5c75f2eff
bcd7a1bd13c318d69994a64215f256b9ec7ae2bb
refs/heads/master
2023-07-24T18:09:24.817561
2021-08-23T21:47:18
2021-08-23T21:47:18
399,255,215
0
0
null
null
null
null
UTF-8
C++
false
false
1,184
cpp
// generated from rosidl_typesupport_cpp/resource/idl__type_support.cpp.em // with input from px4_msgs:msg/EstimatorStatus.idl // generated code does not contain a copyright notice #include "cstddef" #include "rosidl_generator_c/message_type_support_struct.h" #include "px4_msgs/msg/estimator_status__struct.hpp" #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_cpp/visibility_control.h" #include "px4_msgs/msg/estimator_status__rosidl_typesupport_fastrtps_cpp.hpp" namespace rosidl_typesupport_cpp { template<> ROSIDL_TYPESUPPORT_CPP_PUBLIC const rosidl_message_type_support_t * get_message_type_support_handle<px4_msgs::msg::EstimatorStatus>() { return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, px4_msgs, msg, EstimatorStatus)(); } #ifdef __cplusplus extern "C" { #endif ROSIDL_TYPESUPPORT_CPP_PUBLIC const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_cpp, px4_msgs, msg, EstimatorStatus)() { return get_message_type_support_handle<px4_msgs::msg::EstimatorStatus>(); } #ifdef __cplusplus } #endif } // namespace rosidl_typesupport_cpp
[ "adamdai97@gmail.com" ]
adamdai97@gmail.com
6dadd8a5d892cdefef9e0d1a9cfce40a0212d29a
2898223584a244abedec2740accea93e803f9c53
/FileText/FileText/widget.cpp
bf28b0f04b9e59d03310b921b86560f46848fe72
[]
no_license
oobiliuoo/QtCode
4a767bbf661a94816e7f733e43bc90aeed41a993
9600278071c41b9c65d1fe55cf254232b00d2429
refs/heads/main
2023-06-09T06:58:21.953477
2021-07-01T15:43:39
2021-07-01T15:43:39
377,562,169
1
1
null
null
null
null
UTF-8
C++
false
false
3,496
cpp
#include "widget.h" #include "ui_widget.h" #include <QFile> #include <QFileDialog> #include <QMessageBox> // 文件流 // 文本流 数据流(二进制格式) #include <QTextStream> // 操作基础数据类型: int,string... #include <QDataStream> // QImage、QPoint、QRect #include <QDebug> Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) { ui->setupUi(this); #if 0 connect(ui->btnOpenFile,&QPushButton::clicked,this,[=](){ QString filename = QFileDialog::getOpenFileName(this,"open file","/home/biliu"); if(filename.isEmpty()) { QMessageBox::warning(this,"warning","select file failed"); return; } ui->filepath->setText(filename); // 创建文件对象 // 默认读取文件格式 utf-8 QFile file(filename); // 指定打开方式 bool isok = file.open(QFile::ReadOnly); if(isok == false) { QMessageBox::critical(this,"error","open file failed"); return; } // 读文件 QByteArray array = file.readAll(); // 显示到文本框 ui->textEdit->setText(array); // 写文件 // file.write(QString("aaa").toUtf8()); // char buf[128]; // file.wirte(buf,strlen(128)); // file.write(buf); // 关闭文件 file.close(); }); #endif connect(ui->btnOpenFile,&QPushButton::clicked,this,[=](){ QString filename = QFileDialog::getOpenFileName(this,"open file","/home/biliu"); if(filename.isEmpty()) { QMessageBox::warning(this,"warning","select file failed"); return; } ui->filepath->setText(filename); // 创建文件对象 // 默认读取文件格式 utf-8 QFile file(filename); // 指定打开方式 bool isok = file.open(QFile::ReadOnly); if(isok == false) { QMessageBox::critical(this,"error","open file failed"); return; } // 创建流对象 QTextStream stream(&file); // 设置IO设备给流对象 // stream.setCodec("utf8"); // 读文件 QString array = stream.readAll(); // 显示到文本框 ui->textEdit->setText(array); // 写文件 // file.write(QString("aaa").toUtf8()); // char buf[128]; // file.wirte(buf,strlen(128)); // file.write(buf); // 关闭文件 file.close(); #if 0 QFile f("text.txt"); f.open(QFile::WriteOnly); QTextStream qts(&f); // 写文件 qts<<QString("你好啊") << 123456; f.close(); QString text; f.open(QFile::ReadOnly); qts.setDevice(&f); qts>>text; qDebug() << text.toUtf8().data(); #endif QFile f("text.txt"); f.open(QFile::WriteOnly); QDataStream ds(&f); // 写文件 ds<<QString("你好啊") << 123456; f.close(); // 注意:读取顺序要一致 QString text; int number; f.open(QFile::ReadOnly); ds.setDevice(&f); ds>>text>>number; qDebug() << text.toUtf8().data()<<number; #if 0 // 特殊用法 QImage img("xxx.jpg"); QByteArray aaa; QDataStream sss(&aaa,QIODevice::ReadWrite); sss<<img; #endif }); } Widget::~Widget() { delete ui; }
[ "biliu819@163.com" ]
biliu819@163.com
2333783c189a7b8542c18617c5328fa43ad372b2
48298469e7d828ab1aa54a419701c23afeeadce1
/Server/Item/ItemTable.h
14916dd6a1b4ca8e345bb5267d4313bb44433386
[]
no_license
brock7/TianLong
c39fccb3fd2aa0ad42c9c4183d67a843ab2ce9c2
8142f9ccb118e76a5cd0a8b168bcf25e58e0be8b
refs/heads/master
2021-01-10T14:19:19.850859
2016-02-20T13:58:55
2016-02-20T13:58:55
52,155,393
5
3
null
null
null
null
GB18030
C++
false
false
7,362
h
/******************************************************************** 创建日期: 2005年11月2日 创建时间: 16:54 文件名称: ItemTable.h 文件路径: d:\Prj\Server\Server\Item\ItemTable.h 文件功能: 物品基础数据表操作 修改纪录: *********************************************************************/ #ifndef _ITEM_TABLE_H_ #define _ITEM_TABLE_H_ #include "ItemTypes.h" #include "Type.h" #include "GameStruct_Item.h" #include "GameDefine2.h" #define SELF_CONS(x) x(){memset(this,0,sizeof(x));} #define DEFAULT_CONS(theClass,parentClass) theClass(){memset(this,0,sizeof(theClass)); parentClass();} //装备都有的基础属性 struct EQUIP_TB { SELF_CONS(EQUIP_TB); INT m_IndexID; _ITEM_TYPE m_ItemType; BYTE m_EquipPoint; //装配点 CHAR m_RulerID; //规则编号 BYTE m_ReqLevel; //需要等级 INT m_MaxDur; //最大耐久 UINT m_BasePrice; //售出价格 INT m_RepaireLevel; //修理价格 INT m_PhysicAttack; //物理攻击 INT m_MagicAttack; //魔法攻击 INT m_PhysicDefense; //物理防御 INT m_MagicDefense; //魔法防御 INT m_AttackSpeed; //攻击速度 INT m_Miss; //闪避 BYTE m_CanRepaireTimes; //可修理次数 BYTE m_MaxGem; //最大镶嵌 INT m_EquipSetNum; //套装编号 INT m_EquipSetMaxNum; //最大套装数目 }; //掉落包结构 struct DROP_BOX_TB { SELF_CONS(DROP_BOX_TB); UINT m_DropBoxId; //DropBox的编号表 INT m_DropValue; //DropBox价值,参与掉落计算 _ITEM_TYPE m_DropItem[MAX_DROPBOX_CARRAGE]; //DropBox携带物品表 INT m_Quality[MAX_DROPBOX_CARRAGE]; //物品品质表 }; //物品质量段结构体 struct ITEM_QUALITY_TB { SELF_CONS(ITEM_QUALITY_TB) UINT m_ItemLevel; INT m_Quality[MAX_ITEM_TABLE_QUALITYS]; }; struct MINMAX_VALUE { SELF_CONS(MINMAX_VALUE) INT m_minValue; INT m_maxValue; }; enum MINMAX_TYPE { VT_MIN, VT_MAX }; //物品数值段结构体 struct ITEM_VALUE_TB { SELF_CONS(ITEM_VALUE_TB) UINT m_ValueType; MINMAX_VALUE m_Values[MAX_ITEM_TABLE_VALUES]; }; //普通装备表 struct COMMON_EQUIP_TB :public EQUIP_TB { DEFAULT_CONS(COMMON_EQUIP_TB,EQUIP_TB); INT m_Job; //职业属性 }; //蓝色装备表 struct BLUE_EQUIP_TB:public EQUIP_TB { DEFAULT_CONS(BLUE_EQUIP_TB,EQUIP_TB); INT m_Job; //职业属性 INT m_AttrRate[IATTRIBUTE_NUMBER]; //属性随机概率 }; //绿色装备表 struct GREEN_EQUIP_TB :public EQUIP_TB { DEFAULT_CONS(GREEN_EQUIP_TB,EQUIP_TB); INT m_Job; //职业属性 _ITEM_ATTR m_Attr[MAX_GREEN_ITEM_EXT_ATTR]; //绿色装备附加属性 }; //怪物掉落包结构体 struct MONSTER_DROPBOX_TB { SELF_CONS(MONSTER_DROPBOX_TB); UINT m_MonsterId; UINT m_MonsterValue; UINT m_DropType; MONSTER_DROPBOXS m_DropBoxs; }; //宝石表结构体 struct GEMINFO_TB { GEMINFO_TB() { m_nTableIndex = 0; m_ResourceID = 0; m_nRulerID = 0; m_nPrice = 0; m_ItemType.CleanUp(); m_GenAttr.CleanUp(); } UINT m_nTableIndex;; _ITEM_TYPE m_ItemType; WORD m_ResourceID; CHAR m_nRulerID; UINT m_nPrice; _ITEM_ATTR m_GenAttr; }; //普通物品表结构体 struct COMMITEM_INFO_TB { COMMITEM_INFO_TB() { m_nTableIndex = 0; m_nLevel = 0; m_nBasePrice = 0; m_nLayedNum = 0; m_nScriptID = 0; m_nSkillID = 0; m_nRulerID = 0; m_bCosSelf = FALSE; m_nReqSkill = -1; m_nReqSkillLevel = -1; m_TargetType = 0; m_ItemType.CleanUp(); } INT m_nTableIndex; _ITEM_TYPE m_ItemType; INT m_nLevel; UINT m_nBasePrice; CHAR m_nRulerID; //规则ID INT m_nLayedNum; //叠放数量 INT m_nScriptID; INT m_nSkillID; BOOL m_bCosSelf; INT m_nReqSkill; INT m_nReqSkillLevel; BYTE m_TargetType; }; //藏宝图结构体 struct STORE_MAP_INFO_TB { STORE_MAP_INFO_TB() { m_nTableIndex = 0; m_ItemType.CleanUp(); m_ResourceID = 0; m_nRulerID = 0; m_nLevel = 0; m_nBasePrice = 0; m_xPos = -1.0f; m_zPos = -1.0f; m_SceneID = -1; m_GrowPointType = -1; } INT m_nTableIndex;; _ITEM_TYPE m_ItemType; WORD m_ResourceID; CHAR m_nRulerID; INT m_nLevel; UINT m_nBasePrice; FLOAT m_xPos; FLOAT m_zPos; INT m_SceneID; INT m_GrowPointType; INT m_ScriptID; }; //掉落衰减表结构体 struct DROP_ATT_TB { SELF_CONS(DROP_ATT_TB); INT m_DeltaLevel; FLOAT m_AttValue; }; //装备集合结构体 struct EQUIP_SET_TB { SELF_CONS(EQUIP_SET_TB); INT m_nEquipSetSerial; INT m_nAttrCount; _ITEM_ATTR m_ItemAttr[MAX_ITEM_SET_ATTR]; }; //物品规则结构体 struct ITEM_RULER_TB :public _ITEM_RULER{ SELF_CONS(ITEM_RULER_TB); INT m_RulerIndex; }; /* *物品相关表资源数据类 */ class ItemTable { public: ItemTable() ; ~ItemTable() ; VOID CleanUp( ) ; BOOL Init(); public: MONSTER_DROPBOX_TB* GetMonsterDropTB(INT iMonsterType); DROP_BOX_TB* GetDropBoxTB(INT iDropBox); GREEN_EQUIP_TB* GetGreenItemTB(UINT itemSerial); COMMON_EQUIP_TB* GetWhiteItemTB(UINT itemSerial); BLUE_EQUIP_TB* GetBlueItemTB(UINT itemSerial); ITEM_QUALITY_TB* GetItemQualityTB(INT ItemLevel); MINMAX_VALUE GetItemValue(ITEM_ATTRIBUTE iAtt,INT QualityLevel); DROP_ATT_TB* GetDropAttTB(INT iDeltaLevel); GEMINFO_TB* GetGemInfoTB(UINT itemSerial); COMMITEM_INFO_TB* GetCommItemInfoTB(UINT itemSerial); EQUIP_SET_TB* GetEquipSetTB(INT EquipSetSerial); ITEM_RULER_TB* GetRuleValueByID(INT& iIndex); STORE_MAP_INFO_TB* GetStoreMapTB(UINT itemSerial);; protected: VOID InitWhiteItemTable(); VOID InitGreenItemTable(); VOID InitBlueItemTable(); VOID InitGoldenItemTable(); VOID InitDropBoxTable(); VOID InitMonsterDropBoxTable(); VOID InitItemLevelTable(); VOID InitItemValueTable(); VOID InitGemInfoTable(); VOID InitCommItemInfoTable(); VOID InitDropAttTable(); VOID InitEquipSetAttrTable(); VOID InitItemRulerTable(); VOID InitStoreMapTable(); private: UINT m_nCommonItemCount; COMMON_EQUIP_TB* m_pCommonEquipTableData; UINT m_nGreenItemCount; GREEN_EQUIP_TB* m_pGreenEquipTableData; UINT m_nBlueItemCount; BLUE_EQUIP_TB* m_pBlueEquipTableData; UINT m_nGoldenItemCount; UINT m_nDropBoxCount; DROP_BOX_TB* m_pDropBoxTableData; UINT m_nMonsterDropBoxCount; MONSTER_DROPBOX_TB* m_pMonsterDropTableData; UINT m_nItemLevelCount; ITEM_QUALITY_TB* m_pItemQualityData; UINT m_nValueCount; ITEM_VALUE_TB* m_pItemValueData; UINT m_nGemCount; GEMINFO_TB* m_pGemInfoData; UINT m_nCommItemCount; COMMITEM_INFO_TB* m_pCommItemInfoData; UINT m_nDropAttCount; DROP_ATT_TB* m_pDropAttData; UINT m_nEquipSetCount; EQUIP_SET_TB* m_pEquipSetData; UINT m_nItemRulerCount; INT m_nHashOffSet; ITEM_RULER_TB* m_pItemRulerData; UINT m_nStoreMapCount; STORE_MAP_INFO_TB* m_pStoreMapData; }; BYTE GetItemTileMax(_ITEM_TYPE& it); extern ItemTable g_ItemTable ; #endif
[ "xiaowave@gmail.com" ]
xiaowave@gmail.com
38d2b651017ad017fe8e549c07357a9f542636b7
0065cefdd3a4f163e92c6499c4f36feb584d99b7
/rogue/cheat/sdk/SDK/UMG_parameters.h
eab82d8ea1137a4d1d4ab70dd241657bcb37b68a
[]
no_license
YMY1666527646/Rogue_Company_hack
ecd8461fc6b25a0adca1a6ef09ee57e59181bc84
2a19c81c5bf25b6e245084c073ad7af895a696e4
refs/heads/main
2023-08-20T06:07:14.660871
2021-10-21T20:33:53
2021-10-21T20:33:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
306,780
h
#pragma once // Name: roguecompany, Version: 425 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function UMG.Widget.SetVisibility struct UWidget_SetVisibility_Params { UMG_ESlateVisibility InVisibility; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetUserFocus struct UWidget_SetUserFocus_Params { class APlayerController* PlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetToolTipText struct UWidget_SetToolTipText_Params { struct FText InToolTipText; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetToolTip struct UWidget_SetToolTip_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetRenderTranslation struct UWidget_SetRenderTranslation_Params { struct FVector2D Translation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetRenderTransformPivot struct UWidget_SetRenderTransformPivot_Params { struct FVector2D Pivot; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetRenderTransformAngle struct UWidget_SetRenderTransformAngle_Params { float Angle; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetRenderTransform struct UWidget_SetRenderTransform_Params { struct FWidgetTransform InTransform; // 0x0000(0x001C) (Parm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetRenderShear struct UWidget_SetRenderShear_Params { struct FVector2D Shear; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetRenderScale struct UWidget_SetRenderScale_Params { struct FVector2D Scale; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetRenderOpacity struct UWidget_SetRenderOpacity_Params { float InOpacity; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetNavigationRuleExplicit struct UWidget_SetNavigationRuleExplicit_Params { SlateCore_EUINavigation Direction; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* InWidget; // 0x0008(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetNavigationRuleCustomBoundary struct UWidget_SetNavigationRuleCustomBoundary_Params { SlateCore_EUINavigation Direction; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate InCustomDelegate; // 0x0004(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetNavigationRuleCustom struct UWidget_SetNavigationRuleCustom_Params { SlateCore_EUINavigation Direction; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate InCustomDelegate; // 0x0004(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetNavigationRuleBase struct UWidget_SetNavigationRuleBase_Params { SlateCore_EUINavigation Direction; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) SlateCore_EUINavigationRule Rule; // 0x0001(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetNavigationRule struct UWidget_SetNavigationRule_Params { SlateCore_EUINavigation Direction; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) SlateCore_EUINavigationRule Rule; // 0x0001(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FName WidgetToFocus; // 0x0004(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetKeyboardFocus struct UWidget_SetKeyboardFocus_Params { }; // Function UMG.Widget.SetIsEnabled struct UWidget_SetIsEnabled_Params { bool bInIsEnabled; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetFocus struct UWidget_SetFocus_Params { }; // Function UMG.Widget.SetCursor struct UWidget_SetCursor_Params { TEnumAsByte<CoreUObject_EMouseCursor> InCursor; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetClipping struct UWidget_SetClipping_Params { SlateCore_EWidgetClipping InClipping; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetAllowRenderInterpolation struct UWidget_SetAllowRenderInterpolation_Params { bool bInAllowInterpolation; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.SetAllNavigationRules struct UWidget_SetAllNavigationRules_Params { SlateCore_EUINavigationRule Rule; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FName WidgetToFocus; // 0x0004(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.ResetCursor struct UWidget_ResetCursor_Params { }; // Function UMG.Widget.RemoveFromParent struct UWidget_RemoveFromParent_Params { }; // DelegateFunction UMG.Widget.OnReply__DelegateSignature struct UWidget_OnReply__DelegateSignature_Params { struct FEventReply ReturnValue; // 0x0000(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.OnPointerEvent__DelegateSignature struct UWidget_OnPointerEvent__DelegateSignature_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent MouseEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.Widget.IsVisible struct UWidget_IsVisible_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.IsHovered struct UWidget_IsHovered_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.InvalidateLayoutAndVolatility struct UWidget_InvalidateLayoutAndVolatility_Params { }; // Function UMG.Widget.HasUserFocusedDescendants struct UWidget_HasUserFocusedDescendants_Params { class APlayerController* PlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.HasUserFocus struct UWidget_HasUserFocus_Params { class APlayerController* PlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.HasMouseCaptureByUser struct UWidget_HasMouseCaptureByUser_Params { int UserIndex; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int PointerIndex; // 0x0004(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.HasMouseCapture struct UWidget_HasMouseCapture_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.HasKeyboardFocus struct UWidget_HasKeyboardFocus_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.HasFocusedDescendants struct UWidget_HasFocusedDescendants_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.HasAnyUserFocus struct UWidget_HasAnyUserFocus_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetWidget__DelegateSignature struct UWidget_GetWidget__DelegateSignature_Params { class UWidget* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetVisibility struct UWidget_GetVisibility_Params { UMG_ESlateVisibility ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetTickSpaceGeometry struct UWidget_GetTickSpaceGeometry_Params { struct FGeometry ReturnValue; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetText__DelegateSignature struct UWidget_GetText__DelegateSignature_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetSlateVisibility__DelegateSignature struct UWidget_GetSlateVisibility__DelegateSignature_Params { UMG_ESlateVisibility ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetSlateColor__DelegateSignature struct UWidget_GetSlateColor__DelegateSignature_Params { struct FSlateColor ReturnValue; // 0x0000(0x0028) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetSlateBrush__DelegateSignature struct UWidget_GetSlateBrush__DelegateSignature_Params { struct FSlateBrush ReturnValue; // 0x0000(0x0088) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetRenderTransformAngle struct UWidget_GetRenderTransformAngle_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetRenderOpacity struct UWidget_GetRenderOpacity_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetParent struct UWidget_GetParent_Params { class UPanelWidget* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetPaintSpaceGeometry struct UWidget_GetPaintSpaceGeometry_Params { struct FGeometry ReturnValue; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetOwningPlayer struct UWidget_GetOwningPlayer_Params { class APlayerController* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetOwningLocalPlayer struct UWidget_GetOwningLocalPlayer_Params { class ULocalPlayer* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetMouseCursor__DelegateSignature struct UWidget_GetMouseCursor__DelegateSignature_Params { TEnumAsByte<CoreUObject_EMouseCursor> ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetLinearColor__DelegateSignature struct UWidget_GetLinearColor__DelegateSignature_Params { struct FLinearColor ReturnValue; // 0x0000(0x0010) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetIsEnabled struct UWidget_GetIsEnabled_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetInt32__DelegateSignature struct UWidget_GetInt32__DelegateSignature_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetGameInstance struct UWidget_GetGameInstance_Params { class UGameInstance* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetFloat__DelegateSignature struct UWidget_GetFloat__DelegateSignature_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetDesiredSize struct UWidget_GetDesiredSize_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetClipping struct UWidget_GetClipping_Params { SlateCore_EWidgetClipping ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetCheckBoxState__DelegateSignature struct UWidget_GetCheckBoxState__DelegateSignature_Params { SlateCore_ECheckBoxState ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.GetCachedGeometry struct UWidget_GetCachedGeometry_Params { struct FGeometry ReturnValue; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GetBool__DelegateSignature struct UWidget_GetBool__DelegateSignature_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GenerateWidgetForString__DelegateSignature struct UWidget_GenerateWidgetForString__DelegateSignature_Params { struct FString Item; // 0x0000(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* ReturnValue; // 0x0010(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.Widget.GenerateWidgetForObject__DelegateSignature struct UWidget_GenerateWidgetForObject__DelegateSignature_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.ForceVolatile struct UWidget_ForceVolatile_Params { bool bForce; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Widget.ForceLayoutPrepass struct UWidget_ForceLayoutPrepass_Params { }; // Function UMG.Image.SetOpacity struct UImage_SetOpacity_Params { float InOpacity; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetColorAndOpacity struct UImage_SetColorAndOpacity_Params { struct FLinearColor InColorAndOpacity; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushTintColor struct UImage_SetBrushTintColor_Params { struct FSlateColor TintColor; // 0x0000(0x0028) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushSize struct UImage_SetBrushSize_Params { struct FVector2D DesiredSize; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushResourceObject struct UImage_SetBrushResourceObject_Params { class UObject* ResourceObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushFromTextureDynamic struct UImage_SetBrushFromTextureDynamic_Params { class UTexture2DDynamic* Texture; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bMatchSize; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushFromTexture struct UImage_SetBrushFromTexture_Params { class UTexture2D* Texture; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bMatchSize; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushFromSoftTexture struct UImage_SetBrushFromSoftTexture_Params { bool bMatchSize; // 0x0028(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushFromSoftPath struct UImage_SetBrushFromSoftPath_Params { struct FSoftObjectPath SoftPath; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bMatchSize; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushFromSoftMaterial struct UImage_SetBrushFromSoftMaterial_Params { }; // Function UMG.Image.SetBrushFromMaterial struct UImage_SetBrushFromMaterial_Params { class UMaterialInterface* Material; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushFromAtlasInterface struct UImage_SetBrushFromAtlasInterface_Params { bool bMatchSize; // 0x0010(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrushFromAsset struct UImage_SetBrushFromAsset_Params { class USlateBrushAsset* Asset; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Image.SetBrush struct UImage_SetBrush_Params { struct FSlateBrush InBrush; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.Image.GetDynamicMaterial struct UImage_GetDynamicMaterial_Params { class UMaterialInstanceDynamic* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.RemoveChildAt struct UPanelWidget_RemoveChildAt_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0004(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.RemoveChild struct UPanelWidget_RemoveChild_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.HasChild struct UPanelWidget_HasChild_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.HasAnyChildren struct UPanelWidget_HasAnyChildren_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.GetChildrenCount struct UPanelWidget_GetChildrenCount_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.GetChildIndex struct UPanelWidget_GetChildIndex_Params { class UWidget* Content; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int ReturnValue; // 0x0008(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.GetChildAt struct UPanelWidget_GetChildAt_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.GetAllChildren struct UPanelWidget_GetAllChildren_Params { TArray<class UWidget*> ReturnValue; // 0x0000(0x0010) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ContainsInstancedReference, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.PanelWidget.ClearChildren struct UPanelWidget_ClearChildren_Params { }; // Function UMG.PanelWidget.AddChild struct UPanelWidget_AddChild_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UPanelSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanel.AddChildToCanvas struct UCanvasPanel_AddChildToCanvas_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UCanvasPanelSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UMGSequencePlayer.SetUserTag struct UUMGSequencePlayer_SetUserTag_Params { struct FName InUserTag; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UMGSequencePlayer.GetUserTag struct UUMGSequencePlayer_GetUserTag_Params { struct FName ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.UnregisterInputComponent struct UUserWidget_UnregisterInputComponent_Params { }; // Function UMG.UserWidget.UnbindFromAnimationStarted struct UUserWidget_UnbindFromAnimationStarted_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.UnbindFromAnimationFinished struct UUserWidget_UnbindFromAnimationFinished_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.UnbindAllFromAnimationStarted struct UUserWidget_UnbindAllFromAnimationStarted_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.UnbindAllFromAnimationFinished struct UUserWidget_UnbindAllFromAnimationFinished_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.Tick struct UUserWidget_Tick_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) float InDeltaTime; // 0x0058(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.StopListeningForInputAction struct UUserWidget_StopListeningForInputAction_Params { struct FName ActionName; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<Engine_EInputEvent> EventType; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.StopListeningForAllInputActions struct UUserWidget_StopListeningForAllInputActions_Params { }; // Function UMG.UserWidget.StopAnimationsAndLatentActions struct UUserWidget_StopAnimationsAndLatentActions_Params { }; // Function UMG.UserWidget.StopAnimation struct UUserWidget_StopAnimation_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.StopAllAnimations struct UUserWidget_StopAllAnimations_Params { }; // Function UMG.UserWidget.SetZOrderInViewport struct UUserWidget_SetZOrderInViewport_Params { int ZOrder; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetPositionInViewport struct UUserWidget_SetPositionInViewport_Params { struct FVector2D Position; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bRemoveDPIScale; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetPlaybackSpeed struct UUserWidget_SetPlaybackSpeed_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float PlaybackSpeed; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetPadding struct UUserWidget_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetOwningPlayer struct UUserWidget_SetOwningPlayer_Params { class APlayerController* LocalPlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetNumLoopsToPlay struct UUserWidget_SetNumLoopsToPlay_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int NumLoopsToPlay; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetInputActionPriority struct UUserWidget_SetInputActionPriority_Params { int NewPriority; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetInputActionBlocking struct UUserWidget_SetInputActionBlocking_Params { bool bShouldBlock; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetForegroundColor struct UUserWidget_SetForegroundColor_Params { struct FSlateColor InForegroundColor; // 0x0000(0x0028) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetDesiredSizeInViewport struct UUserWidget_SetDesiredSizeInViewport_Params { struct FVector2D Size; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetColorAndOpacity struct UUserWidget_SetColorAndOpacity_Params { struct FLinearColor InColorAndOpacity; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetAnchorsInViewport struct UUserWidget_SetAnchorsInViewport_Params { struct FAnchors Anchors; // 0x0000(0x0010) (Parm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.SetAlignmentInViewport struct UUserWidget_SetAlignmentInViewport_Params { struct FVector2D Alignment; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.ReverseAnimation struct UUserWidget_ReverseAnimation_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.RemoveFromViewport struct UUserWidget_RemoveFromViewport_Params { }; // Function UMG.UserWidget.RegisterInputComponent struct UUserWidget_RegisterInputComponent_Params { }; // Function UMG.UserWidget.PreConstruct struct UUserWidget_PreConstruct_Params { bool IsDesignTime; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.PlaySound struct UUserWidget_PlaySound_Params { class USoundBase* SoundToPlay; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.PlayAnimationTimeRange struct UUserWidget_PlayAnimationTimeRange_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float StartAtTime; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float EndAtTime; // 0x000C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int NumLoopsToPlay; // 0x0010(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<UMG_EUMGSequencePlayMode> PlayMode; // 0x0014(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float PlaybackSpeed; // 0x0018(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bRestoreState; // 0x001C(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUMGSequencePlayer* ReturnValue; // 0x0020(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.PlayAnimationReverse struct UUserWidget_PlayAnimationReverse_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float PlaybackSpeed; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bRestoreState; // 0x000C(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUMGSequencePlayer* ReturnValue; // 0x0010(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.PlayAnimationForward struct UUserWidget_PlayAnimationForward_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float PlaybackSpeed; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bRestoreState; // 0x000C(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUMGSequencePlayer* ReturnValue; // 0x0010(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.PlayAnimation struct UUserWidget_PlayAnimation_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float StartAtTime; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int NumLoopsToPlay; // 0x000C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<UMG_EUMGSequencePlayMode> PlayMode; // 0x0010(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float PlaybackSpeed; // 0x0014(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bRestoreState; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bEvaluateFirstFrame; // 0x0019(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUMGSequencePlayer* ReturnValue; // 0x0020(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.PauseAnimation struct UUserWidget_PauseAnimation_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float ReturnValue; // 0x0008(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnTouchStarted struct UUserWidget_OnTouchStarted_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent InTouchEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnTouchMoved struct UUserWidget_OnTouchMoved_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent InTouchEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnTouchGesture struct UUserWidget_OnTouchGesture_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent GestureEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnTouchForceChanged struct UUserWidget_OnTouchForceChanged_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent InTouchEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnTouchEnded struct UUserWidget_OnTouchEnded_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent InTouchEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnRemovedFromFocusPath struct UUserWidget_OnRemovedFromFocusPath_Params { struct FFocusEvent InFocusEvent; // 0x0000(0x0008) (Parm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnPreviewMouseButtonDown struct UUserWidget_OnPreviewMouseButtonDown_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent MouseEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnPreviewKeyDown struct UUserWidget_OnPreviewKeyDown_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FKeyEvent InKeyEvent; // 0x0058(0x0038) (Parm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x0090(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnPaint struct UUserWidget_OnPaint_Params { struct FPaintContext Context; // 0x0000(0x0030) (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnMouseWheel struct UUserWidget_OnMouseWheel_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent MouseEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnMouseMove struct UUserWidget_OnMouseMove_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent MouseEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnMouseLeave struct UUserWidget_OnMouseLeave_Params { struct FPointerEvent MouseEvent; // 0x0000(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnMouseEnter struct UUserWidget_OnMouseEnter_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent MouseEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnMouseCaptureLost struct UUserWidget_OnMouseCaptureLost_Params { }; // Function UMG.UserWidget.OnMouseButtonUp struct UUserWidget_OnMouseButtonUp_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent MouseEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnMouseButtonDown struct UUserWidget_OnMouseButtonDown_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent MouseEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnMouseButtonDoubleClick struct UUserWidget_OnMouseButtonDoubleClick_Params { struct FGeometry InMyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent InMouseEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnMotionDetected struct UUserWidget_OnMotionDetected_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FMotionEvent InMotionEvent; // 0x0058(0x0048) (Parm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00A0(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnKeyUp struct UUserWidget_OnKeyUp_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FKeyEvent InKeyEvent; // 0x0058(0x0038) (Parm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x0090(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnKeyDown struct UUserWidget_OnKeyDown_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FKeyEvent InKeyEvent; // 0x0058(0x0038) (Parm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x0090(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnKeyChar struct UUserWidget_OnKeyChar_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FCharacterEvent InCharacterEvent; // 0x0058(0x0020) (Parm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x0078(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnInitialized struct UUserWidget_OnInitialized_Params { }; // Function UMG.UserWidget.OnFocusReceived struct UUserWidget_OnFocusReceived_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FFocusEvent InFocusEvent; // 0x0058(0x0008) (Parm, NoDestructor, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x0060(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnFocusLost struct UUserWidget_OnFocusLost_Params { struct FFocusEvent InFocusEvent; // 0x0000(0x0008) (Parm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnDrop struct UUserWidget_OnDrop_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent PointerEvent; // 0x0058(0x0070) (Parm, NativeAccessSpecifierPublic) class UDragDropOperation* Operation; // 0x00C8(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x00D0(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnDragOver struct UUserWidget_OnDragOver_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent PointerEvent; // 0x0058(0x0070) (Parm, NativeAccessSpecifierPublic) class UDragDropOperation* Operation; // 0x00C8(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x00D0(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnDragLeave struct UUserWidget_OnDragLeave_Params { struct FPointerEvent PointerEvent; // 0x0000(0x0070) (Parm, NativeAccessSpecifierPublic) class UDragDropOperation* Operation; // 0x0070(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnDragEnter struct UUserWidget_OnDragEnter_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent PointerEvent; // 0x0058(0x0070) (Parm, NativeAccessSpecifierPublic) class UDragDropOperation* Operation; // 0x00C8(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnDragDetected struct UUserWidget_OnDragDetected_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FPointerEvent PointerEvent; // 0x0058(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UDragDropOperation* Operation; // 0x00C8(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnDragCancelled struct UUserWidget_OnDragCancelled_Params { struct FPointerEvent PointerEvent; // 0x0000(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UDragDropOperation* Operation; // 0x0070(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnAnimationStarted struct UUserWidget_OnAnimationStarted_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnAnimationFinished struct UUserWidget_OnAnimationFinished_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnAnalogValueChanged struct UUserWidget_OnAnalogValueChanged_Params { struct FGeometry MyGeometry; // 0x0000(0x0058) (Parm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FAnalogInputEvent InAnalogInputEvent; // 0x0058(0x0040) (Parm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x0098(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.OnAddedToFocusPath struct UUserWidget_OnAddedToFocusPath_Params { struct FFocusEvent InFocusEvent; // 0x0000(0x0008) (Parm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.ListenForInputAction struct UUserWidget_ListenForInputAction_Params { struct FName ActionName; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<Engine_EInputEvent> EventType; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bConsume; // 0x0009(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Callback; // 0x000C(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.IsPlayingAnimation struct UUserWidget_IsPlayingAnimation_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.IsListeningForInputAction struct UUserWidget_IsListeningForInputAction_Params { struct FName ActionName; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.IsInViewport struct UUserWidget_IsInViewport_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.IsInteractable struct UUserWidget_IsInteractable_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.IsAnyAnimationPlaying struct UUserWidget_IsAnyAnimationPlaying_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.IsAnimationPlayingForward struct UUserWidget_IsAnimationPlayingForward_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.IsAnimationPlaying struct UUserWidget_IsAnimationPlaying_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.GetOwningPlayerPawn struct UUserWidget_GetOwningPlayerPawn_Params { class APawn* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.GetIsVisible struct UUserWidget_GetIsVisible_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.GetAnimationCurrentTime struct UUserWidget_GetAnimationCurrentTime_Params { class UWidgetAnimation* InAnimation; // 0x0000(0x0008) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float ReturnValue; // 0x0008(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.GetAnchorsInViewport struct UUserWidget_GetAnchorsInViewport_Params { struct FAnchors ReturnValue; // 0x0000(0x0010) (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.GetAlignmentInViewport struct UUserWidget_GetAlignmentInViewport_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.Destruct struct UUserWidget_Destruct_Params { }; // Function UMG.UserWidget.Construct struct UUserWidget_Construct_Params { }; // Function UMG.UserWidget.CancelLatentActions struct UUserWidget_CancelLatentActions_Params { }; // Function UMG.UserWidget.BindToAnimationStarted struct UUserWidget_BindToAnimationStarted_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.BindToAnimationFinished struct UUserWidget_BindToAnimationFinished_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.BindToAnimationEvent struct UUserWidget_BindToAnimationEvent_Params { class UWidgetAnimation* Animation; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) UMG_EWidgetAnimationEvent AnimationEvent; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FName UserTag; // 0x001C(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.AddToViewport struct UUserWidget_AddToViewport_Params { int ZOrder; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserWidget.AddToPlayerScreen struct UUserWidget_AddToPlayerScreen_Params { int ZOrder; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0004(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ContentWidget.SetContent struct UContentWidget_SetContent_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UPanelSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ContentWidget.GetContentSlot struct UContentWidget_GetContentSlot_Params { class UPanelSlot* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ContentWidget.GetContent struct UContentWidget_GetContent_Params { class UWidget* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.SetText struct UEditableTextBox_SetText_Params { struct FText InText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.SetJustification struct UEditableTextBox_SetJustification_Params { TEnumAsByte<Slate_ETextJustify> InJustification; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.SetIsReadOnly struct UEditableTextBox_SetIsReadOnly_Params { bool bReadOnly; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.SetIsPassword struct UEditableTextBox_SetIsPassword_Params { bool bIsPassword; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.SetHintText struct UEditableTextBox_SetHintText_Params { struct FText InText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.SetError struct UEditableTextBox_SetError_Params { struct FText InError; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.EditableTextBox.OnEditableTextBoxCommittedEvent__DelegateSignature struct UEditableTextBox_OnEditableTextBoxCommittedEvent__DelegateSignature_Params { struct FText Text; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) TEnumAsByte<SlateCore_ETextCommit> CommitMethod; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.EditableTextBox.OnEditableTextBoxChangedEvent__DelegateSignature struct UEditableTextBox_OnEditableTextBoxChangedEvent__DelegateSignature_Params { struct FText Text; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.HasError struct UEditableTextBox_HasError_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.GetText struct UEditableTextBox_GetText_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.EditableTextBox.ClearError struct UEditableTextBox_ClearError_Params { }; // Function UMG.Border.SetVerticalAlignment struct UBorder_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetPadding struct UBorder_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetHorizontalAlignment struct UBorder_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetDesiredSizeScale struct UBorder_SetDesiredSizeScale_Params { struct FVector2D InScale; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetContentColorAndOpacity struct UBorder_SetContentColorAndOpacity_Params { struct FLinearColor InContentColorAndOpacity; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetBrushFromTexture struct UBorder_SetBrushFromTexture_Params { class UTexture2D* Texture; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetBrushFromMaterial struct UBorder_SetBrushFromMaterial_Params { class UMaterialInterface* Material; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetBrushFromAsset struct UBorder_SetBrushFromAsset_Params { class USlateBrushAsset* Asset; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetBrushColor struct UBorder_SetBrushColor_Params { struct FLinearColor InBrushColor; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Border.SetBrush struct UBorder_SetBrush_Params { struct FSlateBrush InBrush; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.Border.GetDynamicMaterial struct UBorder_GetDynamicMaterial_Params { class UMaterialInstanceDynamic* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetWheelScrollMultiplier struct UScrollBox_SetWheelScrollMultiplier_Params { float NewWheelScrollMultiplier; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetScrollOffset struct UScrollBox_SetScrollOffset_Params { float NewScrollOffset; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetScrollBarVisibility struct UScrollBox_SetScrollBarVisibility_Params { UMG_ESlateVisibility NewScrollBarVisibility; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetScrollbarThickness struct UScrollBox_SetScrollbarThickness_Params { struct FVector2D NewScrollbarThickness; // 0x0000(0x0008) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetScrollbarPadding struct UScrollBox_SetScrollbarPadding_Params { struct FMargin NewScrollbarPadding; // 0x0000(0x0010) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetOrientation struct UScrollBox_SetOrientation_Params { TEnumAsByte<SlateCore_EOrientation> NewOrientation; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetConsumeMouseWheel struct UScrollBox_SetConsumeMouseWheel_Params { SlateCore_EConsumeMouseWheel NewConsumeMouseWheel; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetAnimateWheelScrolling struct UScrollBox_SetAnimateWheelScrolling_Params { bool bShouldAnimateWheelScrolling; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetAlwaysShowScrollbar struct UScrollBox_SetAlwaysShowScrollbar_Params { bool NewAlwaysShowScrollbar; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.SetAllowOverscroll struct UScrollBox_SetAllowOverscroll_Params { bool NewAllowOverscroll; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.ScrollWidgetIntoView struct UScrollBox_ScrollWidgetIntoView_Params { class UWidget* WidgetToFind; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool AnimateScroll; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) Slate_EDescendantScrollDestination ScrollDestination; // 0x0009(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float Padding; // 0x000C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.ScrollToStart struct UScrollBox_ScrollToStart_Params { }; // Function UMG.ScrollBox.ScrollToEnd struct UScrollBox_ScrollToEnd_Params { }; // Function UMG.ScrollBox.GetViewOffsetFraction struct UScrollBox_GetViewOffsetFraction_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.GetScrollOffsetOfEnd struct UScrollBox_GetScrollOffsetOfEnd_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.GetScrollOffset struct UScrollBox_GetScrollOffset_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBox.EndInertialScrolling struct UScrollBox_EndInertialScrolling_Params { }; // Function UMG.GridPanel.SetRowFill struct UGridPanel_SetRowFill_Params { int ColumnIndex; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float Coefficient; // 0x0004(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridPanel.SetColumnFill struct UGridPanel_SetColumnFill_Params { int ColumnIndex; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float Coefficient; // 0x0004(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridPanel.AddChildToGrid struct UGridPanel_AddChildToGrid_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int InRow; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int InColumn; // 0x000C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UGridSlot* ReturnValue; // 0x0010(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.VerticalBox.AddChildToVerticalBox struct UVerticalBox_AddChildToVerticalBox_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UVerticalBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListViewBase.SetWheelScrollMultiplier struct UListViewBase_SetWheelScrollMultiplier_Params { float NewWheelScrollMultiplier; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListViewBase.SetScrollOffset struct UListViewBase_SetScrollOffset_Params { float InScrollOffset; // 0x0000(0x0004) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListViewBase.SetScrollBarVisibility struct UListViewBase_SetScrollBarVisibility_Params { UMG_ESlateVisibility InVisibility; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListViewBase.ScrollToTop struct UListViewBase_ScrollToTop_Params { }; // Function UMG.ListViewBase.ScrollToBottom struct UListViewBase_ScrollToBottom_Params { }; // Function UMG.ListViewBase.RequestRefresh struct UListViewBase_RequestRefresh_Params { }; // Function UMG.ListViewBase.RegenerateAllEntries struct UListViewBase_RegenerateAllEntries_Params { }; // Function UMG.ListViewBase.GetDisplayedEntryWidgets struct UListViewBase_GetDisplayedEntryWidgets_Params { TArray<class UUserWidget*> ReturnValue; // 0x0000(0x0010) (ConstParm, ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, ContainsInstancedReference, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.SetSelectionMode struct UListView_SetSelectionMode_Params { TEnumAsByte<Slate_ESelectionMode> SelectionMode; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.SetSelectedIndex struct UListView_SetSelectedIndex_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.ScrollIndexIntoView struct UListView_ScrollIndexIntoView_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.RemoveItem struct UListView_RemoveItem_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.NavigateToIndex struct UListView_NavigateToIndex_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.IsRefreshPending struct UListView_IsRefreshPending_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.GetNumItems struct UListView_GetNumItems_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.GetListItems struct UListView_GetListItems_Params { TArray<class UObject*> ReturnValue; // 0x0000(0x0010) (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.GetItemAt struct UListView_GetItemAt_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UObject* ReturnValue; // 0x0008(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.GetIndexForItem struct UListView_GetIndexForItem_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int ReturnValue; // 0x0008(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.ClearListItems struct UListView_ClearListItems_Params { }; // Function UMG.ListView.BP_SetSelectedItem struct UListView_BP_SetSelectedItem_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_SetListItems struct UListView_BP_SetListItems_Params { TArray<class UObject*> InListItems; // 0x0000(0x0010) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_SetItemSelection struct UListView_BP_SetItemSelection_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bSelected; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_ScrollItemIntoView struct UListView_BP_ScrollItemIntoView_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_NavigateToItem struct UListView_BP_NavigateToItem_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_IsItemVisible struct UListView_BP_IsItemVisible_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0008(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_GetSelectedItems struct UListView_BP_GetSelectedItems_Params { TArray<class UObject*> Items; // 0x0000(0x0010) (Parm, OutParm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0010(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_GetSelectedItem struct UListView_BP_GetSelectedItem_Params { class UObject* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_GetNumItemsSelected struct UListView_BP_GetNumItemsSelected_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ListView.BP_ClearSelection struct UListView_BP_ClearSelection_Params { }; // Function UMG.ListView.BP_CancelScrollIntoView struct UListView_BP_CancelScrollIntoView_Params { }; // Function UMG.ListView.AddItem struct UListView_AddItem_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TreeView.SetItemExpansion struct UTreeView_SetItemExpansion_Params { class UObject* Item; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bExpandItem; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TreeView.ExpandAll struct UTreeView_ExpandAll_Params { }; // Function UMG.TreeView.CollapseAll struct UTreeView_CollapseAll_Params { }; // Function UMG.AsyncTaskDownloadImage.DownloadImage struct UAsyncTaskDownloadImage_DownloadImage_Params { struct FString URL; // 0x0000(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UAsyncTaskDownloadImage* ReturnValue; // 0x0010(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlur.SetVerticalAlignment struct UBackgroundBlur_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlur.SetPadding struct UBackgroundBlur_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlur.SetLowQualityFallbackBrush struct UBackgroundBlur_SetLowQualityFallbackBrush_Params { struct FSlateBrush InBrush; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlur.SetHorizontalAlignment struct UBackgroundBlur_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlur.SetBlurStrength struct UBackgroundBlur_SetBlurStrength_Params { float InStrength; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlur.SetBlurRadius struct UBackgroundBlur_SetBlurRadius_Params { int InBlurRadius; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlur.SetApplyAlphaToBlur struct UBackgroundBlur_SetApplyAlphaToBlur_Params { bool bInApplyAlphaToBlur; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlurSlot.SetVerticalAlignment struct UBackgroundBlurSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlurSlot.SetPadding struct UBackgroundBlurSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.BackgroundBlurSlot.SetHorizontalAlignment struct UBackgroundBlurSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BoolBinding.GetValue struct UBoolBinding_GetValue_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BorderSlot.SetVerticalAlignment struct UBorderSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BorderSlot.SetPadding struct UBorderSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.BorderSlot.SetHorizontalAlignment struct UBorderSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.BrushBinding.GetValue struct UBrushBinding_GetValue_Params { struct FSlateBrush ReturnValue; // 0x0000(0x0088) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.Button.SetTouchMethod struct UButton_SetTouchMethod_Params { TEnumAsByte<SlateCore_EButtonTouchMethod> InTouchMethod; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Button.SetStyle struct UButton_SetStyle_Params { struct FButtonStyle InStyle; // 0x0000(0x0278) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.Button.SetPressMethod struct UButton_SetPressMethod_Params { TEnumAsByte<SlateCore_EButtonPressMethod> InPressMethod; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Button.SetColorAndOpacity struct UButton_SetColorAndOpacity_Params { struct FLinearColor InColorAndOpacity; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Button.SetClickMethod struct UButton_SetClickMethod_Params { TEnumAsByte<SlateCore_EButtonClickMethod> InClickMethod; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Button.SetBackgroundColor struct UButton_SetBackgroundColor_Params { struct FLinearColor InBackgroundColor; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Button.IsPressed struct UButton_IsPressed_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ButtonSlot.SetVerticalAlignment struct UButtonSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ButtonSlot.SetPadding struct UButtonSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.ButtonSlot.SetHorizontalAlignment struct UButtonSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetZOrder struct UCanvasPanelSlot_SetZOrder_Params { int InZOrder; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetSize struct UCanvasPanelSlot_SetSize_Params { struct FVector2D InSize; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetPosition struct UCanvasPanelSlot_SetPosition_Params { struct FVector2D InPosition; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetOffsets struct UCanvasPanelSlot_SetOffsets_Params { struct FMargin InOffset; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetMinimum struct UCanvasPanelSlot_SetMinimum_Params { struct FVector2D InMinimumAnchors; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetMaximum struct UCanvasPanelSlot_SetMaximum_Params { struct FVector2D InMaximumAnchors; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetLayout struct UCanvasPanelSlot_SetLayout_Params { struct FAnchorData InLayoutData; // 0x0000(0x0028) (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetAutoSize struct UCanvasPanelSlot_SetAutoSize_Params { bool InbAutoSize; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetAnchors struct UCanvasPanelSlot_SetAnchors_Params { struct FAnchors InAnchors; // 0x0000(0x0010) (Parm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.SetAlignment struct UCanvasPanelSlot_SetAlignment_Params { struct FVector2D InAlignment; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.GetZOrder struct UCanvasPanelSlot_GetZOrder_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.GetSize struct UCanvasPanelSlot_GetSize_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.GetPosition struct UCanvasPanelSlot_GetPosition_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.GetOffsets struct UCanvasPanelSlot_GetOffsets_Params { struct FMargin ReturnValue; // 0x0000(0x0010) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.GetLayout struct UCanvasPanelSlot_GetLayout_Params { struct FAnchorData ReturnValue; // 0x0000(0x0028) (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.GetAutoSize struct UCanvasPanelSlot_GetAutoSize_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.GetAnchors struct UCanvasPanelSlot_GetAnchors_Params { struct FAnchors ReturnValue; // 0x0000(0x0010) (Parm, OutParm, ReturnParm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.CanvasPanelSlot.GetAlignment struct UCanvasPanelSlot_GetAlignment_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CheckBox.SetIsChecked struct UCheckBox_SetIsChecked_Params { bool InIsChecked; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CheckBox.SetCheckedState struct UCheckBox_SetCheckedState_Params { SlateCore_ECheckBoxState InCheckedState; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CheckBox.IsPressed struct UCheckBox_IsPressed_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CheckBox.IsChecked struct UCheckBox_IsChecked_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CheckBox.GetCheckedState struct UCheckBox_GetCheckedState_Params { SlateCore_ECheckBoxState ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CheckedStateBinding.GetValue struct UCheckedStateBinding_GetValue_Params { SlateCore_ECheckBoxState ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CircularThrobber.SetRadius struct UCircularThrobber_SetRadius_Params { float InRadius; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CircularThrobber.SetPeriod struct UCircularThrobber_SetPeriod_Params { float InPeriod; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.CircularThrobber.SetNumberOfPieces struct UCircularThrobber_SetNumberOfPieces_Params { int InNumberOfPieces; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ColorBinding.GetSlateValue struct UColorBinding_GetSlateValue_Params { struct FSlateColor ReturnValue; // 0x0000(0x0028) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.ColorBinding.GetLinearValue struct UColorBinding_GetLinearValue_Params { struct FLinearColor ReturnValue; // 0x0000(0x0010) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.SetSelectedOption struct UComboBoxString_SetSelectedOption_Params { struct FString Option; // 0x0000(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.SetSelectedIndex struct UComboBoxString_SetSelectedIndex_Params { int Index; // 0x0000(0x0004) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.RemoveOption struct UComboBoxString_RemoveOption_Params { struct FString Option; // 0x0000(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0010(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.RefreshOptions struct UComboBoxString_RefreshOptions_Params { }; // DelegateFunction UMG.ComboBoxString.OnSelectionChangedEvent__DelegateSignature struct UComboBoxString_OnSelectionChangedEvent__DelegateSignature_Params { struct FString SelectedItem; // 0x0000(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<SlateCore_ESelectInfo> SelectionType; // 0x0010(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.ComboBoxString.OnOpeningEvent__DelegateSignature struct UComboBoxString_OnOpeningEvent__DelegateSignature_Params { }; // DelegateFunction UMG.ComboBoxString.OnClosingEvent__DelegateSignature struct UComboBoxString_OnClosingEvent__DelegateSignature_Params { }; // Function UMG.ComboBoxString.IsOpen struct UComboBoxString_IsOpen_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.GetSelectedOption struct UComboBoxString_GetSelectedOption_Params { struct FString ReturnValue; // 0x0000(0x0010) (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.GetSelectedIndex struct UComboBoxString_GetSelectedIndex_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.GetOptionCount struct UComboBoxString_GetOptionCount_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.GetOptionAtIndex struct UComboBoxString_GetOptionAtIndex_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FString ReturnValue; // 0x0008(0x0010) (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.FindOptionIndex struct UComboBoxString_FindOptionIndex_Params { struct FString Option; // 0x0000(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int ReturnValue; // 0x0010(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ComboBoxString.ClearSelection struct UComboBoxString_ClearSelection_Params { }; // Function UMG.ComboBoxString.ClearOptions struct UComboBoxString_ClearOptions_Params { }; // Function UMG.ComboBoxString.AddOption struct UComboBoxString_AddOption_Params { struct FString Option; // 0x0000(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.DragDropOperation.Drop struct UDragDropOperation_Drop_Params { struct FPointerEvent PointerEvent; // 0x0000(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.DragDropOperation.Dragged struct UDragDropOperation_Dragged_Params { struct FPointerEvent PointerEvent; // 0x0000(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.DragDropOperation.DragCancelled struct UDragDropOperation_DragCancelled_Params { struct FPointerEvent PointerEvent; // 0x0000(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.DynamicEntryBoxBase.SetEntrySpacing struct UDynamicEntryBoxBase_SetEntrySpacing_Params { struct FVector2D InEntrySpacing; // 0x0000(0x0008) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.DynamicEntryBoxBase.GetNumEntries struct UDynamicEntryBoxBase_GetNumEntries_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.DynamicEntryBoxBase.GetAllEntries struct UDynamicEntryBoxBase_GetAllEntries_Params { TArray<class UUserWidget*> ReturnValue; // 0x0000(0x0010) (ConstParm, ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, ReferenceParm, ContainsInstancedReference, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.DynamicEntryBox.Reset struct UDynamicEntryBox_Reset_Params { bool bDeleteWidgets; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.DynamicEntryBox.RemoveEntry struct UDynamicEntryBox_RemoveEntry_Params { class UUserWidget* EntryWidget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.DynamicEntryBox.BP_CreateEntryOfClass struct UDynamicEntryBox_BP_CreateEntryOfClass_Params { class UClass* EntryClass; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUserWidget* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.DynamicEntryBox.BP_CreateEntry struct UDynamicEntryBox_BP_CreateEntry_Params { class UUserWidget* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableText.SetText struct UEditableText_SetText_Params { struct FText InText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.EditableText.SetJustification struct UEditableText_SetJustification_Params { TEnumAsByte<Slate_ETextJustify> InJustification; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableText.SetIsReadOnly struct UEditableText_SetIsReadOnly_Params { bool InbIsReadyOnly; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableText.SetIsPassword struct UEditableText_SetIsPassword_Params { bool InbIsPassword; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.EditableText.SetHintText struct UEditableText_SetHintText_Params { struct FText InHintText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.EditableText.OnEditableTextCommittedEvent__DelegateSignature struct UEditableText_OnEditableTextCommittedEvent__DelegateSignature_Params { struct FText Text; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) TEnumAsByte<SlateCore_ETextCommit> CommitMethod; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.EditableText.OnEditableTextChangedEvent__DelegateSignature struct UEditableText_OnEditableTextChangedEvent__DelegateSignature_Params { struct FText Text; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.EditableText.GetText struct UEditableText_GetText_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.ExpandableArea.SetIsExpanded_Animated struct UExpandableArea_SetIsExpanded_Animated_Params { bool IsExpanded; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ExpandableArea.SetIsExpanded struct UExpandableArea_SetIsExpanded_Params { bool IsExpanded; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ExpandableArea.GetIsExpanded struct UExpandableArea_GetIsExpanded_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.FloatBinding.GetValue struct UFloatBinding_GetValue_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetVerticalAlignment struct UGridSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetRowSpan struct UGridSlot_SetRowSpan_Params { int InRowSpan; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetRow struct UGridSlot_SetRow_Params { int InRow; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetPadding struct UGridSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetNudge struct UGridSlot_SetNudge_Params { struct FVector2D InNudge; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetLayer struct UGridSlot_SetLayer_Params { int InLayer; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetHorizontalAlignment struct UGridSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetColumnSpan struct UGridSlot_SetColumnSpan_Params { int InColumnSpan; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.GridSlot.SetColumn struct UGridSlot_SetColumn_Params { int InColumn; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.HorizontalBox.AddChildToHorizontalBox struct UHorizontalBox_AddChildToHorizontalBox_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UHorizontalBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.HorizontalBoxSlot.SetVerticalAlignment struct UHorizontalBoxSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.HorizontalBoxSlot.SetSize struct UHorizontalBoxSlot_SetSize_Params { struct FSlateChildSize InSize; // 0x0000(0x0008) (Parm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.HorizontalBoxSlot.SetPadding struct UHorizontalBoxSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.HorizontalBoxSlot.SetHorizontalAlignment struct UHorizontalBoxSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.InputKeySelector.SetTextBlockVisibility struct UInputKeySelector_SetTextBlockVisibility_Params { UMG_ESlateVisibility InVisibility; // 0x0000(0x0001) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.InputKeySelector.SetSelectedKey struct UInputKeySelector_SetSelectedKey_Params { struct FInputChord InSelectedKey; // 0x0000(0x0020) (ConstParm, Parm, OutParm, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.InputKeySelector.SetNoKeySpecifiedText struct UInputKeySelector_SetNoKeySpecifiedText_Params { struct FText InNoKeySpecifiedText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.InputKeySelector.SetKeySelectionText struct UInputKeySelector_SetKeySelectionText_Params { struct FText InKeySelectionText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.InputKeySelector.SetEscapeKeys struct UInputKeySelector_SetEscapeKeys_Params { TArray<struct FKey> InKeys; // 0x0000(0x0010) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.InputKeySelector.SetAllowModifierKeys struct UInputKeySelector_SetAllowModifierKeys_Params { bool bInAllowModifierKeys; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.InputKeySelector.SetAllowGamepadKeys struct UInputKeySelector_SetAllowGamepadKeys_Params { bool bInAllowGamepadKeys; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.InputKeySelector.OnKeySelected__DelegateSignature struct UInputKeySelector_OnKeySelected__DelegateSignature_Params { struct FInputChord SelectedKey; // 0x0000(0x0020) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.InputKeySelector.OnIsSelectingKeyChanged__DelegateSignature struct UInputKeySelector_OnIsSelectingKeyChanged__DelegateSignature_Params { }; // Function UMG.InputKeySelector.GetIsSelectingKey struct UInputKeySelector_GetIsSelectingKey_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Int32Binding.GetValue struct UInt32Binding_GetValue_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.InvalidationBox.SetCanCache struct UInvalidationBox_SetCanCache_Params { bool CanCache; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.InvalidationBox.InvalidateCache struct UInvalidationBox_InvalidateCache_Params { }; // Function UMG.InvalidationBox.GetCanCache struct UInvalidationBox_GetCanCache_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserListEntry.BP_OnItemSelectionChanged struct UUserListEntry_BP_OnItemSelectionChanged_Params { bool bIsSelected; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserListEntry.BP_OnItemExpansionChanged struct UUserListEntry_BP_OnItemExpansionChanged_Params { bool bIsExpanded; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserListEntry.BP_OnEntryReleased struct UUserListEntry_BP_OnEntryReleased_Params { }; // Function UMG.UserListEntryLibrary.IsListItemSelected struct UUserListEntryLibrary_IsListItemSelected_Params { bool ReturnValue; // 0x0010(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserListEntryLibrary.IsListItemExpanded struct UUserListEntryLibrary_IsListItemExpanded_Params { bool ReturnValue; // 0x0010(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserListEntryLibrary.GetOwningListView struct UUserListEntryLibrary_GetOwningListView_Params { class UListViewBase* ReturnValue; // 0x0010(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserObjectListEntry.OnListItemObjectSet struct UUserObjectListEntry_OnListItemObjectSet_Params { class UObject* ListItemObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UserObjectListEntryLibrary.GetListItemObject struct UUserObjectListEntryLibrary_GetListItemObject_Params { class UObject* ReturnValue; // 0x0010(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.ToggleOpen struct UMenuAnchor_ToggleOpen_Params { bool bFocusOnOpen; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.ShouldOpenDueToClick struct UMenuAnchor_ShouldOpenDueToClick_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.SetPlacement struct UMenuAnchor_SetPlacement_Params { TEnumAsByte<SlateCore_EMenuPlacement> InPlacement; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.Open struct UMenuAnchor_Open_Params { bool bFocusMenu; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.IsOpen struct UMenuAnchor_IsOpen_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.HasOpenSubMenus struct UMenuAnchor_HasOpenSubMenus_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.GetMenuPosition struct UMenuAnchor_GetMenuPosition_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.FitInWindow struct UMenuAnchor_FitInWindow_Params { bool bFit; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MenuAnchor.Close struct UMenuAnchor_Close_Params { }; // Function UMG.MouseCursorBinding.GetValue struct UMouseCursorBinding_GetValue_Params { TEnumAsByte<CoreUObject_EMouseCursor> ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextLayoutWidget.SetJustification struct UTextLayoutWidget_SetJustification_Params { TEnumAsByte<Slate_ETextJustify> InJustification; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableText.SetWidgetStyle struct UMultiLineEditableText_SetWidgetStyle_Params { struct FTextBlockStyle InWidgetStyle; // 0x0000(0x0268) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableText.SetText struct UMultiLineEditableText_SetText_Params { struct FText InText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableText.SetIsReadOnly struct UMultiLineEditableText_SetIsReadOnly_Params { bool bReadOnly; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableText.SetHintText struct UMultiLineEditableText_SetHintText_Params { struct FText InHintText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.MultiLineEditableText.OnMultiLineEditableTextCommittedEvent__DelegateSignature struct UMultiLineEditableText_OnMultiLineEditableTextCommittedEvent__DelegateSignature_Params { struct FText Text; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) TEnumAsByte<SlateCore_ETextCommit> CommitMethod; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.MultiLineEditableText.OnMultiLineEditableTextChangedEvent__DelegateSignature struct UMultiLineEditableText_OnMultiLineEditableTextChangedEvent__DelegateSignature_Params { struct FText Text; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableText.GetText struct UMultiLineEditableText_GetText_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableText.GetHintText struct UMultiLineEditableText_GetHintText_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableTextBox.SetTextStyle struct UMultiLineEditableTextBox_SetTextStyle_Params { struct FTextBlockStyle InTextStyle; // 0x0000(0x0268) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableTextBox.SetText struct UMultiLineEditableTextBox_SetText_Params { struct FText InText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableTextBox.SetIsReadOnly struct UMultiLineEditableTextBox_SetIsReadOnly_Params { bool bReadOnly; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableTextBox.SetHintText struct UMultiLineEditableTextBox_SetHintText_Params { struct FText InHintText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableTextBox.SetError struct UMultiLineEditableTextBox_SetError_Params { struct FText InError; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.MultiLineEditableTextBox.OnMultiLineEditableTextBoxCommittedEvent__DelegateSignature struct UMultiLineEditableTextBox_OnMultiLineEditableTextBoxCommittedEvent__DelegateSignature_Params { struct FText Text; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) TEnumAsByte<SlateCore_ETextCommit> CommitMethod; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.MultiLineEditableTextBox.OnMultiLineEditableTextBoxChangedEvent__DelegateSignature struct UMultiLineEditableTextBox_OnMultiLineEditableTextBoxChangedEvent__DelegateSignature_Params { struct FText Text; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableTextBox.GetText struct UMultiLineEditableTextBox_GetText_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.MultiLineEditableTextBox.GetHintText struct UMultiLineEditableTextBox_GetHintText_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.Overlay.AddChildToOverlay struct UOverlay_AddChildToOverlay_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UOverlaySlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.OverlaySlot.SetVerticalAlignment struct UOverlaySlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.OverlaySlot.SetPadding struct UOverlaySlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.OverlaySlot.SetHorizontalAlignment struct UOverlaySlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ProgressBar.SetPercent struct UProgressBar_SetPercent_Params { float InPercent; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ProgressBar.SetIsMarquee struct UProgressBar_SetIsMarquee_Params { bool InbIsMarquee; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ProgressBar.SetFillColorAndOpacity struct UProgressBar_SetFillColorAndOpacity_Params { struct FLinearColor InColor; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RetainerBox.SetTextureParameter struct URetainerBox_SetTextureParameter_Params { struct FName TextureParameter; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RetainerBox.SetRetainedRendering struct URetainerBox_SetRetainedRendering_Params { bool bEnableRetainedRendering; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RetainerBox.SetRenderingPhase struct URetainerBox_SetRenderingPhase_Params { int RenderPhase; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int TotalPhases; // 0x0004(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RetainerBox.SetEffectMaterial struct URetainerBox_SetEffectMaterial_Params { class UMaterialInterface* EffectMaterial; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RetainerBox.RequestRender struct URetainerBox_RequestRender_Params { }; // Function UMG.RetainerBox.GetEffectMaterial struct URetainerBox_GetEffectMaterial_Params { class UMaterialInstanceDynamic* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetTextStyleSet struct URichTextBlock_SetTextStyleSet_Params { class UDataTable* NewTextStyleSet; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetText struct URichTextBlock_SetText_Params { struct FText InText; // 0x0000(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetMinDesiredWidth struct URichTextBlock_SetMinDesiredWidth_Params { float InMinDesiredWidth; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetDefaultTextStyle struct URichTextBlock_SetDefaultTextStyle_Params { struct FTextBlockStyle InDefaultTextStyle; // 0x0000(0x0268) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetDefaultStrikeBrush struct URichTextBlock_SetDefaultStrikeBrush_Params { struct FSlateBrush InStrikeBrush; // 0x0000(0x0088) (Parm, OutParm, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetDefaultShadowOffset struct URichTextBlock_SetDefaultShadowOffset_Params { struct FVector2D InShadowOffset; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetDefaultShadowColorAndOpacity struct URichTextBlock_SetDefaultShadowColorAndOpacity_Params { struct FLinearColor InShadowColorAndOpacity; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetDefaultFont struct URichTextBlock_SetDefaultFont_Params { struct FSlateFontInfo InFontInfo; // 0x0000(0x0050) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetDefaultColorAndOpacity struct URichTextBlock_SetDefaultColorAndOpacity_Params { struct FSlateColor InColorAndOpacity; // 0x0000(0x0028) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.SetAutoWrapText struct URichTextBlock_SetAutoWrapText_Params { bool InAutoTextWrap; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.GetText struct URichTextBlock_GetText_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.GetDecoratorByClass struct URichTextBlock_GetDecoratorByClass_Params { class UClass* DecoratorClass; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) class URichTextBlockDecorator* ReturnValue; // 0x0008(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.RichTextBlock.ClearAllDefaultStyleOverrides struct URichTextBlock_ClearAllDefaultStyleOverrides_Params { }; // Function UMG.SafeZone.SetSidesToPad struct USafeZone_SetSidesToPad_Params { bool InPadLeft; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool InPadRight; // 0x0001(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool InPadTop; // 0x0002(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool InPadBottom; // 0x0003(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScaleBox.SetUserSpecifiedScale struct UScaleBox_SetUserSpecifiedScale_Params { float InUserSpecifiedScale; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScaleBox.SetStretchDirection struct UScaleBox_SetStretchDirection_Params { TEnumAsByte<Slate_EStretchDirection> InStretchDirection; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScaleBox.SetStretch struct UScaleBox_SetStretch_Params { TEnumAsByte<Slate_EStretch> InStretch; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScaleBox.SetIgnoreInheritedScale struct UScaleBox_SetIgnoreInheritedScale_Params { bool bInIgnoreInheritedScale; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScaleBoxSlot.SetVerticalAlignment struct UScaleBoxSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScaleBoxSlot.SetPadding struct UScaleBoxSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.ScaleBoxSlot.SetHorizontalAlignment struct UScaleBoxSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBar.SetState struct UScrollBar_SetState_Params { float InOffsetFraction; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float InThumbSizeFraction; // 0x0004(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBoxSlot.SetVerticalAlignment struct UScrollBoxSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBoxSlot.SetPadding struct UScrollBoxSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.ScrollBoxSlot.SetHorizontalAlignment struct UScrollBoxSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.SetWidthOverride struct USizeBox_SetWidthOverride_Params { float InWidthOverride; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.SetMinDesiredWidth struct USizeBox_SetMinDesiredWidth_Params { float InMinDesiredWidth; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.SetMinDesiredHeight struct USizeBox_SetMinDesiredHeight_Params { float InMinDesiredHeight; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.SetMinAspectRatio struct USizeBox_SetMinAspectRatio_Params { float InMinAspectRatio; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.SetMaxDesiredWidth struct USizeBox_SetMaxDesiredWidth_Params { float InMaxDesiredWidth; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.SetMaxDesiredHeight struct USizeBox_SetMaxDesiredHeight_Params { float InMaxDesiredHeight; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.SetMaxAspectRatio struct USizeBox_SetMaxAspectRatio_Params { float InMaxAspectRatio; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.SetHeightOverride struct USizeBox_SetHeightOverride_Params { float InHeightOverride; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBox.ClearWidthOverride struct USizeBox_ClearWidthOverride_Params { }; // Function UMG.SizeBox.ClearMinDesiredWidth struct USizeBox_ClearMinDesiredWidth_Params { }; // Function UMG.SizeBox.ClearMinDesiredHeight struct USizeBox_ClearMinDesiredHeight_Params { }; // Function UMG.SizeBox.ClearMinAspectRatio struct USizeBox_ClearMinAspectRatio_Params { }; // Function UMG.SizeBox.ClearMaxDesiredWidth struct USizeBox_ClearMaxDesiredWidth_Params { }; // Function UMG.SizeBox.ClearMaxDesiredHeight struct USizeBox_ClearMaxDesiredHeight_Params { }; // Function UMG.SizeBox.ClearMaxAspectRatio struct USizeBox_ClearMaxAspectRatio_Params { }; // Function UMG.SizeBox.ClearHeightOverride struct USizeBox_ClearHeightOverride_Params { }; // Function UMG.SizeBoxSlot.SetVerticalAlignment struct USizeBoxSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SizeBoxSlot.SetPadding struct USizeBoxSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.SizeBoxSlot.SetHorizontalAlignment struct USizeBoxSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.TransformVectorLocalToAbsolute struct USlateBlueprintLibrary_TransformVectorLocalToAbsolute_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D LocalVector; // 0x0058(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0060(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.TransformVectorAbsoluteToLocal struct USlateBlueprintLibrary_TransformVectorAbsoluteToLocal_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D AbsoluteVector; // 0x0058(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0060(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.TransformScalarLocalToAbsolute struct USlateBlueprintLibrary_TransformScalarLocalToAbsolute_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) float LocalScalar; // 0x0058(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float ReturnValue; // 0x005C(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.TransformScalarAbsoluteToLocal struct USlateBlueprintLibrary_TransformScalarAbsoluteToLocal_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) float AbsoluteScalar; // 0x0058(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float ReturnValue; // 0x005C(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.ScreenToWidgetLocal struct USlateBlueprintLibrary_ScreenToWidgetLocal_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FGeometry Geometry; // 0x0008(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D ScreenPosition; // 0x0060(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D LocalCoordinate; // 0x0068(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bIncludeWindowPosition; // 0x0070(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.ScreenToWidgetAbsolute struct USlateBlueprintLibrary_ScreenToWidgetAbsolute_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ScreenPosition; // 0x0008(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D AbsoluteCoordinate; // 0x0010(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bIncludeWindowPosition; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.ScreenToViewport struct USlateBlueprintLibrary_ScreenToViewport_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ScreenPosition; // 0x0008(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ViewportPosition; // 0x0010(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.LocalToViewport struct USlateBlueprintLibrary_LocalToViewport_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FGeometry Geometry; // 0x0008(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D LocalCoordinate; // 0x0060(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D PixelPosition; // 0x0068(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ViewportPosition; // 0x0070(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.LocalToAbsolute struct USlateBlueprintLibrary_LocalToAbsolute_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D LocalCoordinate; // 0x0058(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0060(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.IsUnderLocation struct USlateBlueprintLibrary_IsUnderLocation_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D AbsoluteCoordinate; // 0x0058(0x0008) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0060(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.GetLocalTopLeft struct USlateBlueprintLibrary_GetLocalTopLeft_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0058(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.GetLocalSize struct USlateBlueprintLibrary_GetLocalSize_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0058(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.GetAbsoluteSize struct USlateBlueprintLibrary_GetAbsoluteSize_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0058(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.EqualEqual_SlateBrush struct USlateBlueprintLibrary_EqualEqual_SlateBrush_Params { struct FSlateBrush A; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FSlateBrush B; // 0x0088(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0110(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.AbsoluteToViewport struct USlateBlueprintLibrary_AbsoluteToViewport_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D AbsoluteDesktopCoordinate; // 0x0008(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D PixelPosition; // 0x0010(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ViewportPosition; // 0x0018(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SlateBlueprintLibrary.AbsoluteToLocal struct USlateBlueprintLibrary_AbsoluteToLocal_Params { struct FGeometry Geometry; // 0x0000(0x0058) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D AbsoluteCoordinate; // 0x0058(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0060(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.SetValue struct USlider_SetValue_Params { float InValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.SetStepSize struct USlider_SetStepSize_Params { float InValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.SetSliderHandleColor struct USlider_SetSliderHandleColor_Params { struct FLinearColor InValue; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.SetSliderBarColor struct USlider_SetSliderBarColor_Params { struct FLinearColor InValue; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.SetMinValue struct USlider_SetMinValue_Params { float InValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.SetMaxValue struct USlider_SetMaxValue_Params { float InValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.SetLocked struct USlider_SetLocked_Params { bool InValue; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.SetIndentHandle struct USlider_SetIndentHandle_Params { bool InValue; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.GetValue struct USlider_GetValue_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Slider.GetNormalizedValue struct USlider_GetNormalizedValue_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Spacer.SetSize struct USpacer_SetSize_Params { struct FVector2D InSize; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetValue struct USpinBox_SetValue_Params { float NewValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetMinValue struct USpinBox_SetMinValue_Params { float NewValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetMinSliderValue struct USpinBox_SetMinSliderValue_Params { float NewValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetMinFractionalDigits struct USpinBox_SetMinFractionalDigits_Params { int NewValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetMaxValue struct USpinBox_SetMaxValue_Params { float NewValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetMaxSliderValue struct USpinBox_SetMaxSliderValue_Params { float NewValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetMaxFractionalDigits struct USpinBox_SetMaxFractionalDigits_Params { int NewValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetForegroundColor struct USpinBox_SetForegroundColor_Params { struct FSlateColor InForegroundColor; // 0x0000(0x0028) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetDelta struct USpinBox_SetDelta_Params { float NewValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.SetAlwaysUsesDeltaSnap struct USpinBox_SetAlwaysUsesDeltaSnap_Params { bool bNewValue; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.SpinBox.OnSpinBoxValueCommittedEvent__DelegateSignature struct USpinBox_OnSpinBoxValueCommittedEvent__DelegateSignature_Params { float InValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<SlateCore_ETextCommit> CommitMethod; // 0x0004(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.SpinBox.OnSpinBoxValueChangedEvent__DelegateSignature struct USpinBox_OnSpinBoxValueChangedEvent__DelegateSignature_Params { float InValue; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.SpinBox.OnSpinBoxBeginSliderMovement__DelegateSignature struct USpinBox_OnSpinBoxBeginSliderMovement__DelegateSignature_Params { }; // Function UMG.SpinBox.GetValue struct USpinBox_GetValue_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.GetMinValue struct USpinBox_GetMinValue_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.GetMinSliderValue struct USpinBox_GetMinSliderValue_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.GetMinFractionalDigits struct USpinBox_GetMinFractionalDigits_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.GetMaxValue struct USpinBox_GetMaxValue_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.GetMaxSliderValue struct USpinBox_GetMaxSliderValue_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.GetMaxFractionalDigits struct USpinBox_GetMaxFractionalDigits_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.GetDelta struct USpinBox_GetDelta_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.GetAlwaysUsesDeltaSnap struct USpinBox_GetAlwaysUsesDeltaSnap_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.SpinBox.ClearMinValue struct USpinBox_ClearMinValue_Params { }; // Function UMG.SpinBox.ClearMinSliderValue struct USpinBox_ClearMinSliderValue_Params { }; // Function UMG.SpinBox.ClearMaxValue struct USpinBox_ClearMaxValue_Params { }; // Function UMG.SpinBox.ClearMaxSliderValue struct USpinBox_ClearMaxSliderValue_Params { }; // Function UMG.TextBinding.GetTextValue struct UTextBinding_GetTextValue_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.TextBinding.GetStringValue struct UTextBinding_GetStringValue_Params { struct FString ReturnValue; // 0x0000(0x0010) (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetText struct UTextBlock_SetText_Params { struct FText InText; // 0x0000(0x0018) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetStrikeBrush struct UTextBlock_SetStrikeBrush_Params { struct FSlateBrush InStrikeBrush; // 0x0000(0x0088) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetShadowOffset struct UTextBlock_SetShadowOffset_Params { struct FVector2D InShadowOffset; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetShadowColorAndOpacity struct UTextBlock_SetShadowColorAndOpacity_Params { struct FLinearColor InShadowColorAndOpacity; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetOpacity struct UTextBlock_SetOpacity_Params { float InOpacity; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetMinDesiredWidth struct UTextBlock_SetMinDesiredWidth_Params { float InMinDesiredWidth; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetFont struct UTextBlock_SetFont_Params { struct FSlateFontInfo InFontInfo; // 0x0000(0x0050) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetColorAndOpacity struct UTextBlock_SetColorAndOpacity_Params { struct FSlateColor InColorAndOpacity; // 0x0000(0x0028) (Parm, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.SetAutoWrapText struct UTextBlock_SetAutoWrapText_Params { bool InAutoTextWrap; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.GetText struct UTextBlock_GetText_Params { struct FText ReturnValue; // 0x0000(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.GetDynamicOutlineMaterial struct UTextBlock_GetDynamicOutlineMaterial_Params { class UMaterialInstanceDynamic* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TextBlock.GetDynamicFontMaterial struct UTextBlock_GetDynamicFontMaterial_Params { class UMaterialInstanceDynamic* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Throbber.SetNumberOfPieces struct UThrobber_SetNumberOfPieces_Params { int InNumberOfPieces; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Throbber.SetAnimateVertically struct UThrobber_SetAnimateVertically_Params { bool bInAnimateVertically; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Throbber.SetAnimateOpacity struct UThrobber_SetAnimateOpacity_Params { bool bInAnimateOpacity; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Throbber.SetAnimateHorizontally struct UThrobber_SetAnimateHorizontally_Params { bool bInAnimateHorizontally; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TileView.SetEntryWidth struct UTileView_SetEntryWidth_Params { float NewWidth; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.TileView.SetEntryHeight struct UTileView_SetEntryHeight_Params { float NewHeight; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UniformGridPanel.SetSlotPadding struct UUniformGridPanel_SetSlotPadding_Params { struct FMargin InSlotPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.UniformGridPanel.SetMinDesiredSlotWidth struct UUniformGridPanel_SetMinDesiredSlotWidth_Params { float InMinDesiredSlotWidth; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UniformGridPanel.SetMinDesiredSlotHeight struct UUniformGridPanel_SetMinDesiredSlotHeight_Params { float InMinDesiredSlotHeight; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UniformGridPanel.AddChildToUniformGrid struct UUniformGridPanel_AddChildToUniformGrid_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int InRow; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int InColumn; // 0x000C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUniformGridSlot* ReturnValue; // 0x0010(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UniformGridSlot.SetVerticalAlignment struct UUniformGridSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UniformGridSlot.SetRow struct UUniformGridSlot_SetRow_Params { int InRow; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UniformGridSlot.SetHorizontalAlignment struct UUniformGridSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.UniformGridSlot.SetColumn struct UUniformGridSlot_SetColumn_Params { int InColumn; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.VerticalBoxSlot.SetVerticalAlignment struct UVerticalBoxSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.VerticalBoxSlot.SetSize struct UVerticalBoxSlot_SetSize_Params { struct FSlateChildSize InSize; // 0x0000(0x0008) (Parm, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.VerticalBoxSlot.SetPadding struct UVerticalBoxSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.VerticalBoxSlot.SetHorizontalAlignment struct UVerticalBoxSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Viewport.Spawn struct UViewport_Spawn_Params { class UClass* ActorClass; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) class AActor* ReturnValue; // 0x0008(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Viewport.SetViewRotation struct UViewport_SetViewRotation_Params { struct FRotator Rotation; // 0x0000(0x000C) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.Viewport.SetViewLocation struct UViewport_SetViewLocation_Params { struct FVector Location; // 0x0000(0x000C) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Viewport.GetViewRotation struct UViewport_GetViewRotation_Params { struct FRotator ReturnValue; // 0x0000(0x000C) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.Viewport.GetViewportWorld struct UViewport_GetViewportWorld_Params { class UWorld* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.Viewport.GetViewLocation struct UViewport_GetViewLocation_Params { struct FVector ReturnValue; // 0x0000(0x000C) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.VisibilityBinding.GetValue struct UVisibilityBinding_GetValue_Params { UMG_ESlateVisibility ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimation.UnbindFromAnimationStarted struct UWidgetAnimation_UnbindFromAnimationStarted_Params { class UUserWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimation.UnbindFromAnimationFinished struct UWidgetAnimation_UnbindFromAnimationFinished_Params { class UUserWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimation.UnbindAllFromAnimationStarted struct UWidgetAnimation_UnbindAllFromAnimationStarted_Params { class UUserWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimation.UnbindAllFromAnimationFinished struct UWidgetAnimation_UnbindAllFromAnimationFinished_Params { class UUserWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimation.GetStartTime struct UWidgetAnimation_GetStartTime_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimation.GetEndTime struct UWidgetAnimation_GetEndTime_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimation.BindToAnimationStarted struct UWidgetAnimation_BindToAnimationStarted_Params { class UUserWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimation.BindToAnimationFinished struct UWidgetAnimation_BindToAnimationFinished_Params { class UUserWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FScriptDelegate Delegate; // 0x0008(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimationPlayCallbackProxy.CreatePlayAnimationTimeRangeProxyObject struct UWidgetAnimationPlayCallbackProxy_CreatePlayAnimationTimeRangeProxyObject_Params { class UUMGSequencePlayer* Result; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUserWidget* Widget; // 0x0008(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidgetAnimation* InAnimation; // 0x0010(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float StartAtTime; // 0x0018(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float EndAtTime; // 0x001C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int NumLoopsToPlay; // 0x0020(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<UMG_EUMGSequencePlayMode> PlayMode; // 0x0024(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float PlaybackSpeed; // 0x0028(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidgetAnimationPlayCallbackProxy* ReturnValue; // 0x0030(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetAnimationPlayCallbackProxy.CreatePlayAnimationProxyObject struct UWidgetAnimationPlayCallbackProxy_CreatePlayAnimationProxyObject_Params { class UUMGSequencePlayer* Result; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUserWidget* Widget; // 0x0008(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidgetAnimation* InAnimation; // 0x0010(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float StartAtTime; // 0x0018(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int NumLoopsToPlay; // 0x001C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<UMG_EUMGSequencePlayMode> PlayMode; // 0x0020(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float PlaybackSpeed; // 0x0024(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidgetAnimationPlayCallbackProxy* ReturnValue; // 0x0028(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBinding.GetValue struct UWidgetBinding_GetValue_Params { class UWidget* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.UnlockMouse struct UWidgetBlueprintLibrary_UnlockMouse_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C0(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.Unhandled struct UWidgetBlueprintLibrary_Unhandled_Params { struct FEventReply ReturnValue; // 0x0000(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetWindowTitleBarState struct UWidgetBlueprintLibrary_SetWindowTitleBarState_Params { class UWidget* TitleBarContent; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) Engine_EWindowTitleBarMode Mode; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bTitleBarDragEnabled; // 0x0009(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bWindowButtonsVisible; // 0x000A(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bTitleBarVisible; // 0x000B(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetWindowTitleBarOnCloseClickedDelegate struct UWidgetBlueprintLibrary_SetWindowTitleBarOnCloseClickedDelegate_Params { struct FScriptDelegate Delegate; // 0x0000(0x0010) (Parm, ZeroConstructor, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetWindowTitleBarCloseButtonActive struct UWidgetBlueprintLibrary_SetWindowTitleBarCloseButtonActive_Params { bool bActive; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetUserFocus struct UWidgetBlueprintLibrary_SetUserFocus_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UWidget* FocusWidget; // 0x00C0(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bInAllUsers; // 0x00C8(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00D0(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetMousePosition struct UWidgetBlueprintLibrary_SetMousePosition_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FVector2D NewMousePosition; // 0x00C0(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetInputMode_UIOnlyEx struct UWidgetBlueprintLibrary_SetInputMode_UIOnlyEx_Params { class APlayerController* PlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* InWidgetToFocus; // 0x0008(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) Engine_EMouseLockMode InMouseLockMode; // 0x0010(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetInputMode_UIOnly struct UWidgetBlueprintLibrary_SetInputMode_UIOnly_Params { class APlayerController* Target; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* InWidgetToFocus; // 0x0008(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bLockMouseToViewport; // 0x0010(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetInputMode_GameOnly struct UWidgetBlueprintLibrary_SetInputMode_GameOnly_Params { class APlayerController* PlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetInputMode_GameAndUIEx struct UWidgetBlueprintLibrary_SetInputMode_GameAndUIEx_Params { class APlayerController* PlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* InWidgetToFocus; // 0x0008(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) Engine_EMouseLockMode InMouseLockMode; // 0x0010(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bHideCursorDuringCapture; // 0x0011(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetInputMode_GameAndUI struct UWidgetBlueprintLibrary_SetInputMode_GameAndUI_Params { class APlayerController* Target; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* InWidgetToFocus; // 0x0008(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bLockMouseToViewport; // 0x0010(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bHideCursorDuringCapture; // 0x0011(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetHardwareCursor struct UWidgetBlueprintLibrary_SetHardwareCursor_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TEnumAsByte<CoreUObject_EMouseCursor> CursorShape; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FName CursorName; // 0x000C(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D HotSpot; // 0x0014(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x001C(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetFocusToGameViewport struct UWidgetBlueprintLibrary_SetFocusToGameViewport_Params { }; // Function UMG.WidgetBlueprintLibrary.SetColorVisionDeficiencyType struct UWidgetBlueprintLibrary_SetColorVisionDeficiencyType_Params { SlateCore_EColorVisionDeficiency Type; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float Severity; // 0x0004(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool CorrectDeficiency; // 0x0008(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ShowCorrectionWithDeficiency; // 0x0009(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetBrushResourceToTexture struct UWidgetBlueprintLibrary_SetBrushResourceToTexture_Params { struct FSlateBrush Brush; // 0x0000(0x0088) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UTexture2D* Texture; // 0x0088(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.SetBrushResourceToMaterial struct UWidgetBlueprintLibrary_SetBrushResourceToMaterial_Params { struct FSlateBrush Brush; // 0x0000(0x0088) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UMaterialInterface* Material; // 0x0088(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.RestorePreviousWindowTitleBarState struct UWidgetBlueprintLibrary_RestorePreviousWindowTitleBarState_Params { }; // Function UMG.WidgetBlueprintLibrary.ReleaseMouseCapture struct UWidgetBlueprintLibrary_ReleaseMouseCapture_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C0(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.ReleaseJoystickCapture struct UWidgetBlueprintLibrary_ReleaseJoystickCapture_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) bool bInAllJoysticks; // 0x00C0(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // DelegateFunction UMG.WidgetBlueprintLibrary.OnGameWindowCloseButtonClickedDelegate__DelegateSignature struct UWidgetBlueprintLibrary_OnGameWindowCloseButtonClickedDelegate__DelegateSignature_Params { }; // Function UMG.WidgetBlueprintLibrary.NoResourceBrush struct UWidgetBlueprintLibrary_NoResourceBrush_Params { struct FSlateBrush ReturnValue; // 0x0000(0x0088) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.MakeBrushFromTexture struct UWidgetBlueprintLibrary_MakeBrushFromTexture_Params { class UTexture2D* Texture; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int Width; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int Height; // 0x000C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FSlateBrush ReturnValue; // 0x0010(0x0088) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.MakeBrushFromMaterial struct UWidgetBlueprintLibrary_MakeBrushFromMaterial_Params { class UMaterialInterface* Material; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int Width; // 0x0008(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int Height; // 0x000C(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FSlateBrush ReturnValue; // 0x0010(0x0088) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.MakeBrushFromAsset struct UWidgetBlueprintLibrary_MakeBrushFromAsset_Params { class USlateBrushAsset* BrushAsset; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FSlateBrush ReturnValue; // 0x0008(0x0088) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.LockMouse struct UWidgetBlueprintLibrary_LockMouse_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UWidget* CapturingWidget; // 0x00C0(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.IsDragDropping struct UWidgetBlueprintLibrary_IsDragDropping_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.Handled struct UWidgetBlueprintLibrary_Handled_Params { struct FEventReply ReturnValue; // 0x0000(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetSafeZonePadding struct UWidgetBlueprintLibrary_GetSafeZonePadding_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector4 SafePadding; // 0x0010(0x0010) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D SafePaddingScale; // 0x0020(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector4 SpillOverPadding; // 0x0030(0x0010) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetKeyEventFromAnalogInputEvent struct UWidgetBlueprintLibrary_GetKeyEventFromAnalogInputEvent_Params { struct FAnalogInputEvent Event; // 0x0000(0x0040) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FKeyEvent ReturnValue; // 0x0040(0x0038) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetInputEventFromPointerEvent struct UWidgetBlueprintLibrary_GetInputEventFromPointerEvent_Params { struct FPointerEvent Event; // 0x0000(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FInputEvent ReturnValue; // 0x0070(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetInputEventFromNavigationEvent struct UWidgetBlueprintLibrary_GetInputEventFromNavigationEvent_Params { struct FNavigationEvent Event; // 0x0000(0x0020) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FInputEvent ReturnValue; // 0x0020(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetInputEventFromKeyEvent struct UWidgetBlueprintLibrary_GetInputEventFromKeyEvent_Params { struct FKeyEvent Event; // 0x0000(0x0038) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FInputEvent ReturnValue; // 0x0038(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetInputEventFromCharacterEvent struct UWidgetBlueprintLibrary_GetInputEventFromCharacterEvent_Params { struct FCharacterEvent Event; // 0x0000(0x0020) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FInputEvent ReturnValue; // 0x0020(0x0018) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetDynamicMaterial struct UWidgetBlueprintLibrary_GetDynamicMaterial_Params { struct FSlateBrush Brush; // 0x0000(0x0088) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UMaterialInstanceDynamic* ReturnValue; // 0x0088(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetDragDroppingContent struct UWidgetBlueprintLibrary_GetDragDroppingContent_Params { class UDragDropOperation* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetBrushResourceAsTexture2D struct UWidgetBlueprintLibrary_GetBrushResourceAsTexture2D_Params { struct FSlateBrush Brush; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UTexture2D* ReturnValue; // 0x0088(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetBrushResourceAsMaterial struct UWidgetBlueprintLibrary_GetBrushResourceAsMaterial_Params { struct FSlateBrush Brush; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UMaterialInterface* ReturnValue; // 0x0088(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetBrushResource struct UWidgetBlueprintLibrary_GetBrushResource_Params { struct FSlateBrush Brush; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UObject* ReturnValue; // 0x0088(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetAllWidgetsWithInterface struct UWidgetBlueprintLibrary_GetAllWidgetsWithInterface_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TArray<class UUserWidget*> FoundWidgets; // 0x0008(0x0010) (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UClass* Interface; // 0x0018(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool TopLevelOnly; // 0x0020(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.GetAllWidgetsOfClass struct UWidgetBlueprintLibrary_GetAllWidgetsOfClass_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) TArray<class UUserWidget*> FoundWidgets; // 0x0008(0x0010) (Parm, OutParm, ZeroConstructor, ContainsInstancedReference, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UClass* WidgetClass; // 0x0018(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool TopLevelOnly; // 0x0020(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.EndDragDrop struct UWidgetBlueprintLibrary_EndDragDrop_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C0(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.DrawTextFormatted struct UWidgetBlueprintLibrary_DrawTextFormatted_Params { struct FPaintContext Context; // 0x0000(0x0030) (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) struct FText Text; // 0x0030(0x0018) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) struct FVector2D Position; // 0x0048(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UFont* Font; // 0x0050(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) int FontSize; // 0x0058(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FName FontTypeFace; // 0x005C(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FLinearColor Tint; // 0x0064(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.DrawText struct UWidgetBlueprintLibrary_DrawText_Params { struct FPaintContext Context; // 0x0000(0x0030) (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) struct FString inString; // 0x0030(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D Position; // 0x0040(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FLinearColor Tint; // 0x0048(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.DrawLines struct UWidgetBlueprintLibrary_DrawLines_Params { struct FPaintContext Context; // 0x0000(0x0030) (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) TArray<struct FVector2D> Points; // 0x0030(0x0010) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FLinearColor Tint; // 0x0040(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bAntiAlias; // 0x0050(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) float Thickness; // 0x0054(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.DrawLine struct UWidgetBlueprintLibrary_DrawLine_Params { struct FPaintContext Context; // 0x0000(0x0030) (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D PositionA; // 0x0030(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D PositionB; // 0x0038(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FLinearColor Tint; // 0x0040(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bAntiAlias; // 0x0050(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) float Thickness; // 0x0054(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.DrawBox struct UWidgetBlueprintLibrary_DrawBox_Params { struct FPaintContext Context; // 0x0000(0x0030) (Parm, OutParm, ReferenceParm, NoDestructor, NativeAccessSpecifierPublic) struct FVector2D Position; // 0x0030(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D Size; // 0x0038(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class USlateBrushAsset* Brush; // 0x0040(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FLinearColor Tint; // 0x0048(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.DismissAllMenus struct UWidgetBlueprintLibrary_DismissAllMenus_Params { }; // Function UMG.WidgetBlueprintLibrary.DetectDragIfPressed struct UWidgetBlueprintLibrary_DetectDragIfPressed_Params { struct FPointerEvent PointerEvent; // 0x0000(0x0070) (ConstParm, Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UWidget* WidgetDetectingDrag; // 0x0070(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FKey DragKey; // 0x0078(0x0018) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x0090(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.DetectDrag struct UWidgetBlueprintLibrary_DetectDrag_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UWidget* WidgetDetectingDrag; // 0x00C0(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FKey DragKey; // 0x00C8(0x0018) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00E0(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.CreateDragDropOperation struct UWidgetBlueprintLibrary_CreateDragDropOperation_Params { class UClass* OperationClass; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UDragDropOperation* ReturnValue; // 0x0008(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.Create struct UWidgetBlueprintLibrary_Create_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UClass* WidgetType; // 0x0008(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic) class APlayerController* OwningPlayer; // 0x0010(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUserWidget* ReturnValue; // 0x0018(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.ClearUserFocus struct UWidgetBlueprintLibrary_ClearUserFocus_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) bool bInAllUsers; // 0x00C0(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.CaptureMouse struct UWidgetBlueprintLibrary_CaptureMouse_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UWidget* CapturingWidget; // 0x00C0(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00C8(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.CaptureJoystick struct UWidgetBlueprintLibrary_CaptureJoystick_Params { struct FEventReply Reply; // 0x0000(0x00C0) (Parm, OutParm, ReferenceParm, NativeAccessSpecifierPublic) class UWidget* CapturingWidget; // 0x00C0(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bInAllJoysticks; // 0x00C8(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FEventReply ReturnValue; // 0x00D0(0x00C0) (Parm, OutParm, ReturnParm, NativeAccessSpecifierPublic) }; // Function UMG.WidgetBlueprintLibrary.CancelDragDrop struct UWidgetBlueprintLibrary_CancelDragDrop_Params { }; // Function UMG.WidgetComponent.SetWindowVisibility struct UWidgetComponent_SetWindowVisibility_Params { UMG_EWindowVisibility InVisibility; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetWindowFocusable struct UWidgetComponent_SetWindowFocusable_Params { bool bInWindowFocusable; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetWidgetSpace struct UWidgetComponent_SetWidgetSpace_Params { UMG_EWidgetSpace NewSpace; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetWidget struct UWidgetComponent_SetWidget_Params { class UUserWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetTwoSided struct UWidgetComponent_SetTwoSided_Params { bool bWantTwoSided; // 0x0000(0x0001) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetTintColorAndOpacity struct UWidgetComponent_SetTintColorAndOpacity_Params { struct FLinearColor NewTintColorAndOpacity; // 0x0000(0x0010) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetTickWhenOffscreen struct UWidgetComponent_SetTickWhenOffscreen_Params { bool bWantTickWhenOffscreen; // 0x0000(0x0001) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetRedrawTime struct UWidgetComponent_SetRedrawTime_Params { float InRedrawTime; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetPivot struct UWidgetComponent_SetPivot_Params { struct FVector2D InPivot; // 0x0000(0x0008) (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetOwnerPlayer struct UWidgetComponent_SetOwnerPlayer_Params { class ULocalPlayer* LocalPlayer; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetManuallyRedraw struct UWidgetComponent_SetManuallyRedraw_Params { bool bUseManualRedraw; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetGeometryMode struct UWidgetComponent_SetGeometryMode_Params { UMG_EWidgetGeometryMode InGeometryMode; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetDrawSize struct UWidgetComponent_SetDrawSize_Params { struct FVector2D Size; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetDrawAtDesiredSize struct UWidgetComponent_SetDrawAtDesiredSize_Params { bool bInDrawAtDesiredSize; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetCylinderArcAngle struct UWidgetComponent_SetCylinderArcAngle_Params { float InCylinderArcAngle; // 0x0000(0x0004) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.SetBackgroundColor struct UWidgetComponent_SetBackgroundColor_Params { struct FLinearColor NewBackgroundColor; // 0x0000(0x0010) (ConstParm, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.RequestRedraw struct UWidgetComponent_RequestRedraw_Params { }; // Function UMG.WidgetComponent.GetWindowVisiblility struct UWidgetComponent_GetWindowVisiblility_Params { UMG_EWindowVisibility ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetWindowFocusable struct UWidgetComponent_GetWindowFocusable_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetWidgetSpace struct UWidgetComponent_GetWidgetSpace_Params { UMG_EWidgetSpace ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetUserWidgetObject struct UWidgetComponent_GetUserWidgetObject_Params { class UUserWidget* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetTwoSided struct UWidgetComponent_GetTwoSided_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetTickWhenOffscreen struct UWidgetComponent_GetTickWhenOffscreen_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetRenderTarget struct UWidgetComponent_GetRenderTarget_Params { class UTextureRenderTarget2D* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetRedrawTime struct UWidgetComponent_GetRedrawTime_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetPivot struct UWidgetComponent_GetPivot_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetOwnerPlayer struct UWidgetComponent_GetOwnerPlayer_Params { class ULocalPlayer* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetMaterialInstance struct UWidgetComponent_GetMaterialInstance_Params { class UMaterialInstanceDynamic* ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetManuallyRedraw struct UWidgetComponent_GetManuallyRedraw_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetGeometryMode struct UWidgetComponent_GetGeometryMode_Params { UMG_EWidgetGeometryMode ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetDrawSize struct UWidgetComponent_GetDrawSize_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetDrawAtDesiredSize struct UWidgetComponent_GetDrawAtDesiredSize_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetCylinderArcAngle struct UWidgetComponent_GetCylinderArcAngle_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetComponent.GetCurrentDrawSize struct UWidgetComponent_GetCurrentDrawSize_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.SetFocus struct UWidgetInteractionComponent_SetFocus_Params { class UWidget* FocusWidget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.SetCustomHitResult struct UWidgetInteractionComponent_SetCustomHitResult_Params { struct FHitResult HitResult; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.SendKeyChar struct UWidgetInteractionComponent_SendKeyChar_Params { struct FString Characters; // 0x0000(0x0010) (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bRepeat; // 0x0010(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0011(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.ScrollWheel struct UWidgetInteractionComponent_ScrollWheel_Params { float ScrollDelta; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.ReleasePointerKey struct UWidgetInteractionComponent_ReleasePointerKey_Params { struct FKey Key; // 0x0000(0x0018) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.ReleaseKey struct UWidgetInteractionComponent_ReleaseKey_Params { struct FKey Key; // 0x0000(0x0018) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0018(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.PressPointerKey struct UWidgetInteractionComponent_PressPointerKey_Params { struct FKey Key; // 0x0000(0x0018) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.PressKey struct UWidgetInteractionComponent_PressKey_Params { struct FKey Key; // 0x0000(0x0018) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bRepeat; // 0x0018(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0019(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.PressAndReleaseKey struct UWidgetInteractionComponent_PressAndReleaseKey_Params { struct FKey Key; // 0x0000(0x0018) (Parm, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0018(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.IsOverInteractableWidget struct UWidgetInteractionComponent_IsOverInteractableWidget_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.IsOverHitTestVisibleWidget struct UWidgetInteractionComponent_IsOverHitTestVisibleWidget_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.IsOverFocusableWidget struct UWidgetInteractionComponent_IsOverFocusableWidget_Params { bool ReturnValue; // 0x0000(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.GetLastHitResult struct UWidgetInteractionComponent_GetLastHitResult_Params { struct FHitResult ReturnValue; // 0x0000(0x0088) (ConstParm, Parm, OutParm, ReturnParm, ReferenceParm, IsPlainOldData, NoDestructor, ContainsInstancedReference, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.GetHoveredWidgetComponent struct UWidgetInteractionComponent_GetHoveredWidgetComponent_Params { class UWidgetComponent* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetInteractionComponent.Get2DHitLocation struct UWidgetInteractionComponent_Get2DHitLocation_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsWrapBoxSlot struct UWidgetLayoutLibrary_SlotAsWrapBoxSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWrapBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsWidgetSwitcherSlot struct UWidgetLayoutLibrary_SlotAsWidgetSwitcherSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidgetSwitcherSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsVerticalBoxSlot struct UWidgetLayoutLibrary_SlotAsVerticalBoxSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UVerticalBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsUniformGridSlot struct UWidgetLayoutLibrary_SlotAsUniformGridSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UUniformGridSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsSizeBoxSlot struct UWidgetLayoutLibrary_SlotAsSizeBoxSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class USizeBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsScrollBoxSlot struct UWidgetLayoutLibrary_SlotAsScrollBoxSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UScrollBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsScaleBoxSlot struct UWidgetLayoutLibrary_SlotAsScaleBoxSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UScaleBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsSafeBoxSlot struct UWidgetLayoutLibrary_SlotAsSafeBoxSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class USafeZoneSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsOverlaySlot struct UWidgetLayoutLibrary_SlotAsOverlaySlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UOverlaySlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsHorizontalBoxSlot struct UWidgetLayoutLibrary_SlotAsHorizontalBoxSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UHorizontalBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsGridSlot struct UWidgetLayoutLibrary_SlotAsGridSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UGridSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsCanvasSlot struct UWidgetLayoutLibrary_SlotAsCanvasSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UCanvasPanelSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.SlotAsBorderSlot struct UWidgetLayoutLibrary_SlotAsBorderSlot_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UBorderSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.RemoveAllWidgets struct UWidgetLayoutLibrary_RemoveAllWidgets_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.ProjectWorldLocationToWidgetPosition struct UWidgetLayoutLibrary_ProjectWorldLocationToWidgetPosition_Params { class APlayerController* PlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector WorldLocation; // 0x0008(0x000C) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ScreenPosition; // 0x0014(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool bPlayerViewportRelative; // 0x001C(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x001D(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.GetViewportWidgetGeometry struct UWidgetLayoutLibrary_GetViewportWidgetGeometry_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FGeometry ReturnValue; // 0x0008(0x0058) (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.GetViewportSize struct UWidgetLayoutLibrary_GetViewportSize_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0008(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.GetViewportScale struct UWidgetLayoutLibrary_GetViewportScale_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float ReturnValue; // 0x0008(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.GetPlayerScreenWidgetGeometry struct UWidgetLayoutLibrary_GetPlayerScreenWidgetGeometry_Params { class APlayerController* PlayerController; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FGeometry ReturnValue; // 0x0008(0x0058) (Parm, OutParm, ReturnParm, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.GetMousePositionScaledByDPI struct UWidgetLayoutLibrary_GetMousePositionScaledByDPI_Params { class APlayerController* Player; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float LocationX; // 0x0008(0x0004) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) float LocationY; // 0x000C(0x0004) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) bool ReturnValue; // 0x0010(0x0001) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.GetMousePositionOnViewport struct UWidgetLayoutLibrary_GetMousePositionOnViewport_Params { class UObject* WorldContextObject; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) struct FVector2D ReturnValue; // 0x0008(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetLayoutLibrary.GetMousePositionOnPlatform struct UWidgetLayoutLibrary_GetMousePositionOnPlatform_Params { struct FVector2D ReturnValue; // 0x0000(0x0008) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcher.SetActiveWidgetIndex struct UWidgetSwitcher_SetActiveWidgetIndex_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcher.SetActiveWidget struct UWidgetSwitcher_SetActiveWidget_Params { class UWidget* Widget; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcher.GetWidgetAtIndex struct UWidgetSwitcher_GetWidgetAtIndex_Params { int Index; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWidget* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcher.GetNumWidgets struct UWidgetSwitcher_GetNumWidgets_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcher.GetActiveWidgetIndex struct UWidgetSwitcher_GetActiveWidgetIndex_Params { int ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcher.GetActiveWidget struct UWidgetSwitcher_GetActiveWidget_Params { class UWidget* ReturnValue; // 0x0000(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcherSlot.SetVerticalAlignment struct UWidgetSwitcherSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcherSlot.SetPadding struct UWidgetSwitcherSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WidgetSwitcherSlot.SetHorizontalAlignment struct UWidgetSwitcherSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WindowTitleBarArea.SetVerticalAlignment struct UWindowTitleBarArea_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WindowTitleBarArea.SetPadding struct UWindowTitleBarArea_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WindowTitleBarArea.SetHorizontalAlignment struct UWindowTitleBarArea_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WindowTitleBarAreaSlot.SetVerticalAlignment struct UWindowTitleBarAreaSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WindowTitleBarAreaSlot.SetPadding struct UWindowTitleBarAreaSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WindowTitleBarAreaSlot.SetHorizontalAlignment struct UWindowTitleBarAreaSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WrapBox.SetInnerSlotPadding struct UWrapBox_SetInnerSlotPadding_Params { struct FVector2D InPadding; // 0x0000(0x0008) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WrapBox.AddChildToWrapBox struct UWrapBox_AddChildToWrapBox_Params { class UWidget* Content; // 0x0000(0x0008) (Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) class UWrapBoxSlot* ReturnValue; // 0x0008(0x0008) (ExportObject, Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WrapBoxSlot.SetVerticalAlignment struct UWrapBoxSlot_SetVerticalAlignment_Params { TEnumAsByte<SlateCore_EVerticalAlignment> InVerticalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WrapBoxSlot.SetPadding struct UWrapBoxSlot_SetPadding_Params { struct FMargin InPadding; // 0x0000(0x0010) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, NativeAccessSpecifierPublic) }; // Function UMG.WrapBoxSlot.SetHorizontalAlignment struct UWrapBoxSlot_SetHorizontalAlignment_Params { TEnumAsByte<SlateCore_EHorizontalAlignment> InHorizontalAlignment; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WrapBoxSlot.SetFillSpanWhenLessThan struct UWrapBoxSlot_SetFillSpanWhenLessThan_Params { float InFillSpanWhenLessThan; // 0x0000(0x0004) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; // Function UMG.WrapBoxSlot.SetFillEmptySpace struct UWrapBoxSlot_SetFillEmptySpace_Params { bool InbFillEmptySpace; // 0x0000(0x0001) (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "51001754+dmitrysolovev@users.noreply.github.com" ]
51001754+dmitrysolovev@users.noreply.github.com
f65d6ff2b7a2b3e56230d821bc5c4126ef04d613
794539b862b4a2ca802bd60073ac75d1e64978f8
/Litvinov group/semester 1/06.HW/6.4/main.cpp
6d84ce57ecdd96e6180c5480e7393a92dbc9eb61
[]
no_license
katerina-kamkova/SPbU-homework
30d4470da75c4c3f9898b6ab54f0e6909c9b888b
5abcc1a1d16f3d9f71e6a007cb5d7fd52fcc77d6
refs/heads/master
2022-10-11T05:44:13.241813
2020-06-07T22:34:56
2020-06-07T22:34:56
207,313,661
1
1
null
null
null
null
UTF-8
C++
false
false
242
cpp
#include "6.4.h" #include <iostream> using namespace std; int main() { Notebook *notebook = createNotebook(); input(notebook); mergeSort(notebook, menu()); print(notebook); deleteNotebook(notebook); return 0; }
[ "katerina.kamkova@mail.ru" ]
katerina.kamkova@mail.ru
92ff9ad1d9f001b9396b5c14e7de8b39f6c66b1a
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/collectd/gumtree/collectd_old_hunk_643.cpp
57c20dbec889fefa62a73164d0fe3cbe4c57409f
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,462
cpp
#include "collectd.h" #include "common.h" #include "plugin.h" #include "utils_parse_option.h" #include "utils_cmd_putnotif.h" #define print_to_socket(fh, ...) \ do { \ if (fprintf (fh, __VA_ARGS__) < 0) { \ char errbuf[1024]; \ WARNING ("handle_putnotif: failed to write to socket #%i: %s", \ fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \ return -1; \ } \ fflush(fh); \ } while (0) static int set_option_severity (notification_t *n, const char *value) { if (strcasecmp (value, "Failure") == 0) n->severity = NOTIF_FAILURE; else if (strcasecmp (value, "Warning") == 0) n->severity = NOTIF_WARNING; else if (strcasecmp (value, "Okay") == 0) n->severity = NOTIF_OKAY; else return (-1); return (0); } /* int set_option_severity */ static int set_option_time (notification_t *n, const char *value) { char *endptr = NULL; double tmp; errno = 0; tmp = strtod (value, &endptr); if ((errno != 0) /* Overflow */ || (endptr == value) /* Invalid string */ || (endptr == NULL) /* This should not happen */ || (*endptr != 0)) /* Trailing chars */ return (-1); n->time = DOUBLE_TO_CDTIME_T (tmp); return (0); } /* int set_option_time */ static int set_option (notification_t *n, const char *option, const char *value) { if ((n == NULL) || (option == NULL) || (value == NULL)) return (-1); DEBUG ("utils_cmd_putnotif: set_option (option = %s, value = %s);", option, value); /* Add a meta option in the form: <type>:<key> */ if (option[0] != '\0' && option[1] == ':') { /* Refuse empty key */ if (option[2] == '\0') return (1); if (option[0] == 's') return plugin_notification_meta_add_string (n, option + 2, value); else return (1); } if (strcasecmp ("severity", option) == 0) return (set_option_severity (n, value)); else if (strcasecmp ("time", option) == 0) return (set_option_time (n, value)); else if (strcasecmp ("message", option) == 0) sstrncpy (n->message, value, sizeof (n->message)); else if (strcasecmp ("host", option) == 0) sstrncpy (n->host, value, sizeof (n->host)); else if (strcasecmp ("plugin", option) == 0) sstrncpy (n->plugin, value, sizeof (n->plugin)); else if (strcasecmp ("plugin_instance", option) == 0) sstrncpy (n->plugin_instance, value, sizeof (n->plugin_instance)); else if (strcasecmp ("type", option) == 0) sstrncpy (n->type, value, sizeof (n->type)); else if (strcasecmp ("type_instance", option) == 0) sstrncpy (n->type_instance, value, sizeof (n->type_instance)); else return (1); return (0); } /* int set_option */ int handle_putnotif (FILE *fh, char *buffer) { char *command; notification_t n = { 0 }; int status; if ((fh == NULL) || (buffer == NULL)) return (-1); DEBUG ("utils_cmd_putnotif: handle_putnotif (fh = %p, buffer = %s);", (void *) fh, buffer); command = NULL; status = parse_string (&buffer, &command); if (status != 0) { print_to_socket (fh, "-1 Cannot parse command.\n"); return (-1); } assert (command != NULL); if (strcasecmp ("PUTNOTIF", command) != 0) { print_to_socket (fh, "-1 Unexpected command: `%s'.\n", command); return (-1); } status = 0; while (*buffer != 0) { char *key; char *value; status = parse_option (&buffer, &key, &value); if (status != 0) { print_to_socket (fh, "-1 Malformed option.\n"); break; } status = set_option (&n, key, value); if (status != 0) { print_to_socket (fh, "-1 Error parsing option `%s'\n", key); break; } } /* for (i) */ /* Check for required fields and complain if anything is missing. */ if ((status == 0) && (n.severity == 0)) { print_to_socket (fh, "-1 Option `severity' missing.\n"); status = -1; } if ((status == 0) && (n.time == 0)) { print_to_socket (fh, "-1 Option `time' missing.\n"); status = -1; } if ((status == 0) && (strlen (n.message) == 0)) { print_to_socket (fh, "-1 No message or message of length 0 given.\n"); status = -1; } /* If status is still zero the notification is fine and we can finally * dispatch it. */ if (status == 0) { plugin_dispatch_notification (&n); print_to_socket (fh, "0 Success\n"); } return (0); } /* int handle_putnotif */ /* vim: set shiftwidth=2 softtabstop=2 tabstop=8 : */
[ "993273596@qq.com" ]
993273596@qq.com
0408d2159b0ea76899e37de7a795457631fc5f92
e870e51caf43430c2bf7369a46deef02a61b36ad
/CppBehaviourTree/src/Attack.cpp
41e5af3529c68ed2b325bafcb3192d990b7b7c59
[]
no_license
maxi-jp/CppBehaviourTree
14367ed6b494e4df12a22ed24d83abedc7a5de63
52d4d772839479107e18616345b3bbb16db4c4ea
refs/heads/master
2021-06-26T02:17:17.698319
2020-10-12T21:50:46
2020-10-12T21:50:46
158,011,095
0
0
null
null
null
null
UTF-8
C++
false
false
444
cpp
#include "Attack.h" #include "Bot.h" #include "World.h" Attack::Attack() : Task() { } Attack::~Attack() { } void Attack::Reset() { } void Attack::Tick(Bot* bot, World* world) { if (bot->GetCurrentEnemy() != 0) { if (bot->GetCurrentEnemy()->IsAlive()) { // there is an enemy bot and it is alive // make the damage! bot->GetCurrentEnemy()->Damage(bot->GetDamage()); Succeed(); } else Fail(); } else Fail(); }
[ "juventudperdia@gmail.com" ]
juventudperdia@gmail.com
0ba83e4cc88b2dfe9fe9e1873ed01c76b97f3eab
1fc7a6ff8d4f93c9716a2074c71911f192745d95
/imagelib/cos/COSTimer.cpp
f0ce447eadd45dfd04a3b848d2896a0e0309ebcc
[]
no_license
playbar/gllearn
14dc6e671f5161cac768884771e2a6401a5ed5b7
19e20ffd681eadff2559f13a42af12763b00b03e
refs/heads/master
2021-12-06T05:15:10.299208
2021-11-09T11:00:46
2021-11-09T11:00:46
180,532,777
0
2
null
2020-10-13T12:55:49
2019-04-10T08:04:15
C++
UTF-8
C++
false
false
1,435
cpp
#include <COSTimer.h> #include <std_os.h> #include <time.h> #include <cerrno> #define HAS_NANO_SLEEP 1 uint COSTimer:: sleep(uint secs) { #if OS_UNIX // TODO: use nanosleep or clock_nanosleep (linux) int remain = sleep((uint) secs); return remain; #else std::cerr << "COSTimer::sleep: Unimplemented" << std::endl; return 0; #endif } uint COSTimer:: msleep(uint msecs) { return micro_sleep(msecs); } // sleep for n millionths of a second uint COSTimer:: micro_sleep(uint msecs) { #if HAS_NANO_SLEEP struct timespec tv; tv.tv_sec = msecs / 1000000; tv.tv_nsec = 1000*(msecs % 1000000); (void) nanosleep(&tv, NULL); return 0; #elif OS_UNIX if (msecs <= 0) return 0; struct timeval tv; tv.tv_sec = msecs / 1000000; tv.tv_usec = msecs % 1000000; select(1, 0, 0, 0, &tv); return 0; #else std::cerr << "COSTimer::micro_sleep: Unimplemented" << std::endl; return 0; #endif } // sleep for n thousanths of a second uint COSTimer:: milli_sleep(uint msecs) { #if HAS_NANO_SLEEP struct timespec tv; tv.tv_sec = msecs / 1000; tv.tv_nsec = 1000000*(msecs % 1000); (void) nanosleep(&tv, NULL); return 0; #elif OS_UNIX if (msecs <= 0) return 0; struct timeval tv; tv.tv_sec = msecs / 1000; tv.tv_usec = 1000*(msecs % 1000); select(1, 0, 0, 0, &tv); return 0; #else std::cerr << "COSTimer::milli_sleep: Unimplemented" << std::endl; return 0; #endif }
[ "hgl868@126.com" ]
hgl868@126.com
0be4584e29b6b2c240a8c79db97913e7a5891ad9
1578f090a72c54c851eb19a751a2920792644409
/hashset.hpp
503cd8e41b4e30403a6738363ae190e34336dcab
[]
no_license
patrickdgr81/SpellcheckerC--
c6aac42416dc136a1555565044e2e38320bf7d3c
84424204104de16d312f7971578b5161c7e68623
refs/heads/master
2021-01-25T12:20:37.848954
2014-01-03T22:34:23
2014-01-03T22:34:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,512
hpp
/** * \file hashset.hpp * \brief Declares the hashset template. * * \Author: Lu Wenhao, Wang Xiaotian (wlu-xwang) */ #ifndef HASHSET_HPP #define HASHSET_HPP 1 #include "abstractset.hpp" #include <cstddef> #include <list> #include <iostream> /// The number of buckets we decide to start with. static const size_t STARTING_BUCKETS = 17; /// The max load factor for the hash table. static const double MAX_LOAD = 0.9; /** * \class HashSet * * \brief * A set class template using hash tables. */ template <typename T> class HashSet: public AbstractSet<T> { public: /** * \brief Default constructor * \details constructor initializes the hashset and sets the number * of buckets to starting size */ HashSet(); /** * \brief Default destructor */ ~HashSet(); /** * \brief how many elements are in hashtable */ size_t size() const override; /** * \brief insert T into hashtable * \details inserts type T into hashtable, if bucket has something in * it, still add to that bucket using separate chaining */ void insert(const T&) override; /** * \brief check if T is in hashtable */ bool exists(const T&) const override; /** * \brief Some debugging outputs */ std::ostream& showStatistics(std::ostream& out) const; /** * \brief returns number of buckets in hashtable */ size_t buckets() const; /** * \brief returns number of times the hashtable has resized */ size_t reallocations() const; /** * \brief returns number of collisions */ size_t collisions() const; /** * \brief returns number of times the hashtable has resized */ size_t maximal() const; typedef typename std::list<T>::iterator bucket_it; private: /// Private copy constructor HashSet(const HashSet& orig); /// Private assignment operator HashSet& operator=(const HashSet& rhs); /// Copy the HashSet into a bigger HashSet void resizeAndCopy(); std::list<T>* buckets_; size_t numBuckets_;///number of buckets size_t size_;///number of items stored in hash table size_t reallocations_;///number of times hash table has resized size_t collisions_;///number of times inserted in nonempty bucket size_t maximal_;///largest number of elements in single bucket }; #include "hashset-private.hpp" #endif // PREDICTOR_HPP
[ "patricklu00@hotmail.com" ]
patricklu00@hotmail.com
5ae0c343374141ee147b5133e7e6f58dac65345d
eee200906478fc3c244ca551d398eb05fb2ed6ae
/gui_alian/BmpResource.cpp
f6f6e03f9a03e9888978d9cfd0ce0f3154c82242
[]
no_license
laizl123/gitskill
c4f9f95933e5a5bbcedad6e67a248708bf992924
fada7ee6318c3c2b8607be675b30634d9d73390e
refs/heads/master
2020-12-02T12:47:22.587871
2017-07-10T09:02:24
2017-07-10T09:02:24
96,595,912
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
2,882
cpp
// BmpResoure.cpp: implementation of the CBmpResource class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "resource.h" #include "BmpResource.h" CBitmap CBmpResource::m_bmpIEAddpage; // LAMP CBitmap CBmpResource::m_bmpLampWait; CBitmap CBmpResource::m_bmpLampPark; CBitmap CBmpResource::m_bmpLampTalk; CBitmap CBmpResource::m_bmpLampHold; CBitmap CBmpResource::m_bmpLampOutdial; CBitmap CBmpResource::m_bmpLampProcess; CBitmap CBmpResource::m_bmpLampIncomingcall; CBitmap CBmpResource::m_bmpLampIncomingcallWink; // add by lh.wang date:2012.12.25 CBitmap CBmpResource::m_bmpLampConference; // end add // NET CBitmap CBmpResource::m_bmpNetVerybad; CBitmap CBmpResource::m_bmpNetGood; CBitmap CBmpResource::m_bmpNetBusy; CBitmap CBmpResource::m_bmpNetBad; // title CBitmap CBmpResource::m_bmpTitleFillBG; CBitmap CBmpResource::m_bmpToolbarFillBG; ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CBmpResource::CBmpResource() { } CBmpResource::~CBmpResource() { } // ¶Áȡλͼ void CBmpResource::LoadBitmapResource() { m_bmpIEAddpage.LoadBitmap(IDB_BMP_IEADDPAGE); // LAMP m_bmpLampWait.LoadBitmap(IDB_BMP_LAMP_WAIT); m_bmpLampPark.LoadBitmap(IDB_BMP_LAMP_PARK); m_bmpLampTalk.LoadBitmap(IDB_BMP_LAMP_TALK); m_bmpLampHold.LoadBitmap(IDB_BMP_LAMP_HOLD); m_bmpLampOutdial.LoadBitmap(IDB_BMP_LAMP_OUTDIAL); m_bmpLampProcess.LoadBitmap(IDB_BMP_LAMP_PROCESS); m_bmpLampIncomingcall.LoadBitmap(IDB_BMP_LAMP_INCOMINGCALL); m_bmpLampIncomingcallWink.LoadBitmap(IDB_BMP_LAMP_INCOMINGCALL_WINK); // add by lh.wang date:2012.12.25 m_bmpLampConference.LoadBitmap(IDB_BMP_LAMP_CONFERENCE); // end add // NET m_bmpNetVerybad.LoadBitmap(IDB_BMP_NET_VERYBAD); m_bmpNetGood.LoadBitmap(IDB_BMP_NET_GOOD); m_bmpNetBusy.LoadBitmap(IDB_BMP_NET_BUSY); m_bmpNetBad.LoadBitmap(IDB_BMP_NET_BAD); // title m_bmpTitleFillBG.LoadBitmap(IDB_BMP_TITLE_FILL_BG); m_bmpToolbarFillBG.LoadBitmap(IDB_BMP_TOOLBAR_FILL_BG); } // ÊÍ·Åλͼ void CBmpResource::ReleaseBitmapResource() { m_bmpIEAddpage.DeleteObject(); // LAMP m_bmpLampWait.DeleteObject(); m_bmpLampPark.DeleteObject(); m_bmpLampTalk.DeleteObject(); m_bmpLampHold.DeleteObject(); m_bmpLampOutdial.DeleteObject(); m_bmpLampProcess.DeleteObject(); m_bmpLampIncomingcall.DeleteObject(); m_bmpLampIncomingcallWink.DeleteObject(); // add by lh.wang date:2012.12.25 m_bmpLampConference.DeleteObject(); // end add // NET m_bmpNetVerybad.DeleteObject(); m_bmpNetGood.DeleteObject(); m_bmpNetBusy.DeleteObject(); m_bmpNetBad.DeleteObject(); // title m_bmpTitleFillBG.DeleteObject(); m_bmpToolbarFillBG.DeleteObject(); }
[ "825663610@qq.com" ]
825663610@qq.com
8875a4571748919ee9c5222c025dd1d2e7062231
8dc84558f0058d90dfc4955e905dab1b22d12c08
/third_party/pdfium/core/fpdfapi/parser/cpdf_syntax_parser.cpp
245617dca1f29e9765022db714fc84c6dc6460b0
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
20,682
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 "core/fpdfapi/parser/cpdf_syntax_parser.h" #include <algorithm> #include <sstream> #include <utility> #include <vector> #include "core/fpdfapi/cpdf_modulemgr.h" #include "core/fpdfapi/parser/cpdf_array.h" #include "core/fpdfapi/parser/cpdf_boolean.h" #include "core/fpdfapi/parser/cpdf_crypto_handler.h" #include "core/fpdfapi/parser/cpdf_dictionary.h" #include "core/fpdfapi/parser/cpdf_name.h" #include "core/fpdfapi/parser/cpdf_null.h" #include "core/fpdfapi/parser/cpdf_number.h" #include "core/fpdfapi/parser/cpdf_read_validator.h" #include "core/fpdfapi/parser/cpdf_reference.h" #include "core/fpdfapi/parser/cpdf_stream.h" #include "core/fpdfapi/parser/cpdf_string.h" #include "core/fpdfapi/parser/fpdf_parser_decode.h" #include "core/fpdfapi/parser/fpdf_parser_utility.h" #include "core/fxcrt/autorestorer.h" #include "core/fxcrt/cfx_binarybuf.h" #include "core/fxcrt/fx_extension.h" #include "third_party/base/numerics/safe_math.h" #include "third_party/base/ptr_util.h" namespace { enum class ReadStatus { Normal, Backslash, Octal, FinishOctal, CarriageReturn }; } // namespace // static int CPDF_SyntaxParser::s_CurrentRecursionDepth = 0; CPDF_SyntaxParser::CPDF_SyntaxParser() = default; CPDF_SyntaxParser::~CPDF_SyntaxParser() = default; bool CPDF_SyntaxParser::GetCharAt(FX_FILESIZE pos, uint8_t& ch) { AutoRestorer<FX_FILESIZE> save_pos(&m_Pos); m_Pos = pos; return GetNextChar(ch); } bool CPDF_SyntaxParser::ReadBlockAt(FX_FILESIZE read_pos) { if (read_pos >= m_FileLen) return false; size_t read_size = CPDF_ModuleMgr::kFileBufSize; FX_SAFE_FILESIZE safe_end = read_pos; safe_end += read_size; if (!safe_end.IsValid() || safe_end.ValueOrDie() > m_FileLen) read_size = m_FileLen - read_pos; m_pFileBuf.resize(read_size); if (!m_pFileAccess->ReadBlock(m_pFileBuf.data(), read_pos, read_size)) { m_pFileBuf.clear(); return false; } m_BufOffset = read_pos; return true; } bool CPDF_SyntaxParser::GetNextChar(uint8_t& ch) { FX_FILESIZE pos = m_Pos + m_HeaderOffset; if (pos >= m_FileLen) return false; if (!IsPositionRead(pos) && !ReadBlockAt(pos)) return false; ch = m_pFileBuf[pos - m_BufOffset]; m_Pos++; return true; } bool CPDF_SyntaxParser::GetCharAtBackward(FX_FILESIZE pos, uint8_t* ch) { pos += m_HeaderOffset; if (pos >= m_FileLen) return false; if (!IsPositionRead(pos)) { FX_FILESIZE block_start = 0; if (pos >= CPDF_ModuleMgr::kFileBufSize) block_start = pos - CPDF_ModuleMgr::kFileBufSize + 1; if (!ReadBlockAt(block_start) || !IsPositionRead(pos)) return false; } *ch = m_pFileBuf[pos - m_BufOffset]; return true; } bool CPDF_SyntaxParser::ReadBlock(uint8_t* pBuf, uint32_t size) { if (!m_pFileAccess->ReadBlock(pBuf, m_Pos + m_HeaderOffset, size)) return false; m_Pos += size; return true; } void CPDF_SyntaxParser::GetNextWordInternal(bool* bIsNumber) { m_WordSize = 0; if (bIsNumber) *bIsNumber = true; ToNextWord(); uint8_t ch; if (!GetNextChar(ch)) return; if (PDFCharIsDelimiter(ch)) { if (bIsNumber) *bIsNumber = false; m_WordBuffer[m_WordSize++] = ch; if (ch == '/') { while (1) { if (!GetNextChar(ch)) return; if (!PDFCharIsOther(ch) && !PDFCharIsNumeric(ch)) { m_Pos--; return; } if (m_WordSize < sizeof(m_WordBuffer) - 1) m_WordBuffer[m_WordSize++] = ch; } } else if (ch == '<') { if (!GetNextChar(ch)) return; if (ch == '<') m_WordBuffer[m_WordSize++] = ch; else m_Pos--; } else if (ch == '>') { if (!GetNextChar(ch)) return; if (ch == '>') m_WordBuffer[m_WordSize++] = ch; else m_Pos--; } return; } while (1) { if (m_WordSize < sizeof(m_WordBuffer) - 1) m_WordBuffer[m_WordSize++] = ch; if (!PDFCharIsNumeric(ch)) { if (bIsNumber) *bIsNumber = false; } if (!GetNextChar(ch)) return; if (PDFCharIsDelimiter(ch) || PDFCharIsWhitespace(ch)) { m_Pos--; break; } } } ByteString CPDF_SyntaxParser::ReadString() { uint8_t ch; if (!GetNextChar(ch)) return ByteString(); std::ostringstream buf; int32_t parlevel = 0; ReadStatus status = ReadStatus::Normal; int32_t iEscCode = 0; while (1) { switch (status) { case ReadStatus::Normal: if (ch == ')') { if (parlevel == 0) return ByteString(buf); parlevel--; } else if (ch == '(') { parlevel++; } if (ch == '\\') status = ReadStatus::Backslash; else buf << static_cast<char>(ch); break; case ReadStatus::Backslash: if (ch >= '0' && ch <= '7') { iEscCode = FXSYS_DecimalCharToInt(static_cast<wchar_t>(ch)); status = ReadStatus::Octal; break; } if (ch == '\r') { status = ReadStatus::CarriageReturn; break; } if (ch == 'n') { buf << '\n'; } else if (ch == 'r') { buf << '\r'; } else if (ch == 't') { buf << '\t'; } else if (ch == 'b') { buf << '\b'; } else if (ch == 'f') { buf << '\f'; } else if (ch != '\n') { buf << static_cast<char>(ch); } status = ReadStatus::Normal; break; case ReadStatus::Octal: if (ch >= '0' && ch <= '7') { iEscCode = iEscCode * 8 + FXSYS_DecimalCharToInt(static_cast<wchar_t>(ch)); status = ReadStatus::FinishOctal; } else { buf << static_cast<char>(iEscCode); status = ReadStatus::Normal; continue; } break; case ReadStatus::FinishOctal: status = ReadStatus::Normal; if (ch >= '0' && ch <= '7') { iEscCode = iEscCode * 8 + FXSYS_DecimalCharToInt(static_cast<wchar_t>(ch)); buf << static_cast<char>(iEscCode); } else { buf << static_cast<char>(iEscCode); continue; } break; case ReadStatus::CarriageReturn: status = ReadStatus::Normal; if (ch != '\n') continue; break; } if (!GetNextChar(ch)) break; } GetNextChar(ch); return ByteString(buf); } ByteString CPDF_SyntaxParser::ReadHexString() { uint8_t ch; if (!GetNextChar(ch)) return ByteString(); std::ostringstream buf; bool bFirst = true; uint8_t code = 0; while (1) { if (ch == '>') break; if (std::isxdigit(ch)) { int val = FXSYS_HexCharToInt(ch); if (bFirst) { code = val * 16; } else { code += val; buf << static_cast<char>(code); } bFirst = !bFirst; } if (!GetNextChar(ch)) break; } if (!bFirst) buf << static_cast<char>(code); return ByteString(buf); } void CPDF_SyntaxParser::ToNextLine() { uint8_t ch; while (GetNextChar(ch)) { if (ch == '\n') break; if (ch == '\r') { GetNextChar(ch); if (ch != '\n') --m_Pos; break; } } } void CPDF_SyntaxParser::ToNextWord() { uint8_t ch; if (!GetNextChar(ch)) return; while (1) { while (PDFCharIsWhitespace(ch)) { if (!GetNextChar(ch)) return; } if (ch != '%') break; while (1) { if (!GetNextChar(ch)) return; if (PDFCharIsLineEnding(ch)) break; } } m_Pos--; } ByteString CPDF_SyntaxParser::GetNextWord(bool* bIsNumber) { const CPDF_ReadValidator::Session read_session(GetValidator().Get()); GetNextWordInternal(bIsNumber); ByteString ret; if (!GetValidator()->has_read_problems()) ret = ByteString(m_WordBuffer, m_WordSize); return ret; } ByteString CPDF_SyntaxParser::PeekNextWord(bool* bIsNumber) { AutoRestorer<FX_FILESIZE> save_pos(&m_Pos); return GetNextWord(bIsNumber); } ByteString CPDF_SyntaxParser::GetKeyword() { return GetNextWord(nullptr); } std::unique_ptr<CPDF_Object> CPDF_SyntaxParser::GetObjectBody( CPDF_IndirectObjectHolder* pObjList) { const CPDF_ReadValidator::Session read_session(GetValidator().Get()); auto result = GetObjectBodyInternal(pObjList, ParseType::kLoose); if (GetValidator()->has_read_problems()) return nullptr; return result; } std::unique_ptr<CPDF_Object> CPDF_SyntaxParser::GetObjectBodyInternal( CPDF_IndirectObjectHolder* pObjList, ParseType parse_type) { AutoRestorer<int> restorer(&s_CurrentRecursionDepth); if (++s_CurrentRecursionDepth > kParserMaxRecursionDepth) return nullptr; FX_FILESIZE SavedObjPos = m_Pos; bool bIsNumber; ByteString word = GetNextWord(&bIsNumber); if (word.GetLength() == 0) return nullptr; if (bIsNumber) { FX_FILESIZE SavedPos = m_Pos; ByteString nextword = GetNextWord(&bIsNumber); if (bIsNumber) { ByteString nextword2 = GetNextWord(nullptr); if (nextword2 == "R") { uint32_t refnum = FXSYS_atoui(word.c_str()); if (refnum == CPDF_Object::kInvalidObjNum) return nullptr; return pdfium::MakeUnique<CPDF_Reference>(pObjList, refnum); } } m_Pos = SavedPos; return pdfium::MakeUnique<CPDF_Number>(word.AsStringView()); } if (word == "true" || word == "false") return pdfium::MakeUnique<CPDF_Boolean>(word == "true"); if (word == "null") return pdfium::MakeUnique<CPDF_Null>(); if (word == "(") { ByteString str = ReadString(); return pdfium::MakeUnique<CPDF_String>(m_pPool, str, false); } if (word == "<") { ByteString str = ReadHexString(); return pdfium::MakeUnique<CPDF_String>(m_pPool, str, true); } if (word == "[") { auto pArray = pdfium::MakeUnique<CPDF_Array>(); while (std::unique_ptr<CPDF_Object> pObj = GetObjectBodyInternal(pObjList, ParseType::kLoose)) { pArray->Add(std::move(pObj)); } return (parse_type == ParseType::kLoose || m_WordBuffer[0] == ']') ? std::move(pArray) : nullptr; } if (word[0] == '/') { return pdfium::MakeUnique<CPDF_Name>( m_pPool, PDF_NameDecode(ByteStringView(m_WordBuffer + 1, m_WordSize - 1))); } if (word == "<<") { std::unique_ptr<CPDF_Dictionary> pDict = pdfium::MakeUnique<CPDF_Dictionary>(m_pPool); while (1) { ByteString word = GetNextWord(nullptr); if (word.IsEmpty()) return nullptr; FX_FILESIZE SavedPos = m_Pos - word.GetLength(); if (word == ">>") break; if (word == "endobj") { m_Pos = SavedPos; break; } if (word[0] != '/') continue; ByteString key = PDF_NameDecode(word.AsStringView()); if (key.IsEmpty() && parse_type == ParseType::kLoose) continue; std::unique_ptr<CPDF_Object> pObj = GetObjectBodyInternal(pObjList, ParseType::kLoose); if (!pObj) { if (parse_type == ParseType::kLoose) continue; ToNextLine(); return nullptr; } if (!key.IsEmpty()) { ByteString keyNoSlash(key.raw_str() + 1, key.GetLength() - 1); pDict->SetFor(keyNoSlash, std::move(pObj)); } } FX_FILESIZE SavedPos = m_Pos; ByteString nextword = GetNextWord(nullptr); if (nextword != "stream") { m_Pos = SavedPos; return std::move(pDict); } return ReadStream(std::move(pDict)); } if (word == ">>") m_Pos = SavedObjPos; return nullptr; } std::unique_ptr<CPDF_Object> CPDF_SyntaxParser::GetIndirectObject( CPDF_IndirectObjectHolder* pObjList, ParseType parse_type) { const CPDF_ReadValidator::Session read_session(GetValidator().Get()); const FX_FILESIZE saved_pos = GetPos(); bool is_number = false; ByteString word = GetNextWord(&is_number); if (!is_number || word.IsEmpty()) { SetPos(saved_pos); return nullptr; } const uint32_t parser_objnum = FXSYS_atoui(word.c_str()); word = GetNextWord(&is_number); if (!is_number || word.IsEmpty()) { SetPos(saved_pos); return nullptr; } const uint32_t parser_gennum = FXSYS_atoui(word.c_str()); if (GetKeyword() != "obj") { SetPos(saved_pos); return nullptr; } std::unique_ptr<CPDF_Object> pObj = GetObjectBodyInternal(pObjList, parse_type); if (pObj) { pObj->SetObjNum(parser_objnum); pObj->SetGenNum(parser_gennum); } return GetValidator()->has_read_problems() ? nullptr : std::move(pObj); } unsigned int CPDF_SyntaxParser::ReadEOLMarkers(FX_FILESIZE pos) { unsigned char byte1 = 0; unsigned char byte2 = 0; GetCharAt(pos, byte1); GetCharAt(pos + 1, byte2); if (byte1 == '\r' && byte2 == '\n') return 2; if (byte1 == '\r' || byte1 == '\n') return 1; return 0; } std::unique_ptr<CPDF_Stream> CPDF_SyntaxParser::ReadStream( std::unique_ptr<CPDF_Dictionary> pDict) { const CPDF_Number* pLenObj = ToNumber(pDict->GetDirectObjectFor("Length")); FX_FILESIZE len = pLenObj ? pLenObj->GetInteger() : -1; // Locate the start of stream. ToNextLine(); FX_FILESIZE streamStartPos = m_Pos; const ByteStringView kEndStreamStr("endstream"); const ByteStringView kEndObjStr("endobj"); bool bSearchForKeyword = true; if (len >= 0) { pdfium::base::CheckedNumeric<FX_FILESIZE> pos = m_Pos; pos += len; if (pos.IsValid() && pos.ValueOrDie() < m_FileLen) m_Pos = pos.ValueOrDie(); m_Pos += ReadEOLMarkers(m_Pos); memset(m_WordBuffer, 0, kEndStreamStr.GetLength() + 1); GetNextWordInternal(nullptr); // Earlier version of PDF specification doesn't require EOL marker before // 'endstream' keyword. If keyword 'endstream' follows the bytes in // specified length, it signals the end of stream. if (memcmp(m_WordBuffer, kEndStreamStr.raw_str(), kEndStreamStr.GetLength()) == 0) { bSearchForKeyword = false; } } if (bSearchForKeyword) { // If len is not available, len needs to be calculated // by searching the keywords "endstream" or "endobj". m_Pos = streamStartPos; FX_FILESIZE endStreamOffset = 0; while (endStreamOffset >= 0) { endStreamOffset = FindTag(kEndStreamStr, 0); // Can't find "endstream". if (endStreamOffset < 0) break; // Stop searching when "endstream" is found. if (IsWholeWord(m_Pos - kEndStreamStr.GetLength(), m_FileLen, kEndStreamStr, true)) { endStreamOffset = m_Pos - streamStartPos - kEndStreamStr.GetLength(); break; } } m_Pos = streamStartPos; FX_FILESIZE endObjOffset = 0; while (endObjOffset >= 0) { endObjOffset = FindTag(kEndObjStr, 0); // Can't find "endobj". if (endObjOffset < 0) break; // Stop searching when "endobj" is found. if (IsWholeWord(m_Pos - kEndObjStr.GetLength(), m_FileLen, kEndObjStr, true)) { endObjOffset = m_Pos - streamStartPos - kEndObjStr.GetLength(); break; } } // Can't find "endstream" or "endobj". if (endStreamOffset < 0 && endObjOffset < 0) return nullptr; if (endStreamOffset < 0 && endObjOffset >= 0) { // Correct the position of end stream. endStreamOffset = endObjOffset; } else if (endStreamOffset >= 0 && endObjOffset < 0) { // Correct the position of end obj. endObjOffset = endStreamOffset; } else if (endStreamOffset > endObjOffset) { endStreamOffset = endObjOffset; } len = endStreamOffset; int numMarkers = ReadEOLMarkers(streamStartPos + endStreamOffset - 2); if (numMarkers == 2) { len -= 2; } else { numMarkers = ReadEOLMarkers(streamStartPos + endStreamOffset - 1); if (numMarkers == 1) { len -= 1; } } if (len < 0) return nullptr; pDict->SetNewFor<CPDF_Number>("Length", static_cast<int>(len)); } m_Pos = streamStartPos; // Read up to the end of the buffer. Note, we allow zero length streams as // we need to pass them through when we are importing pages into a new // document. len = std::min(len, m_FileLen - m_Pos - m_HeaderOffset); if (len < 0) return nullptr; std::unique_ptr<uint8_t, FxFreeDeleter> pData; if (len > 0) { pData.reset(FX_Alloc(uint8_t, len)); ReadBlock(pData.get(), len); } auto pStream = pdfium::MakeUnique<CPDF_Stream>(std::move(pData), len, std::move(pDict)); streamStartPos = m_Pos; memset(m_WordBuffer, 0, kEndObjStr.GetLength() + 1); GetNextWordInternal(nullptr); int numMarkers = ReadEOLMarkers(m_Pos); if (m_WordSize == static_cast<unsigned int>(kEndObjStr.GetLength()) && numMarkers != 0 && memcmp(m_WordBuffer, kEndObjStr.raw_str(), kEndObjStr.GetLength()) == 0) { m_Pos = streamStartPos; } return pStream; } void CPDF_SyntaxParser::InitParser( const RetainPtr<IFX_SeekableReadStream>& pFileAccess, uint32_t HeaderOffset) { ASSERT(pFileAccess); return InitParserWithValidator( pdfium::MakeRetain<CPDF_ReadValidator>(pFileAccess, nullptr), HeaderOffset); } void CPDF_SyntaxParser::InitParserWithValidator( const RetainPtr<CPDF_ReadValidator>& validator, uint32_t HeaderOffset) { ASSERT(validator); m_pFileBuf.clear(); m_HeaderOffset = HeaderOffset; m_FileLen = validator->GetSize(); m_Pos = 0; m_pFileAccess = validator; m_BufOffset = 0; } uint32_t CPDF_SyntaxParser::GetDirectNum() { bool bIsNumber; GetNextWordInternal(&bIsNumber); if (!bIsNumber) return 0; m_WordBuffer[m_WordSize] = 0; return FXSYS_atoui(reinterpret_cast<const char*>(m_WordBuffer)); } bool CPDF_SyntaxParser::IsWholeWord(FX_FILESIZE startpos, FX_FILESIZE limit, const ByteStringView& tag, bool checkKeyword) { const uint32_t taglen = tag.GetLength(); bool bCheckLeft = !PDFCharIsDelimiter(tag[0]) && !PDFCharIsWhitespace(tag[0]); bool bCheckRight = !PDFCharIsDelimiter(tag[taglen - 1]) && !PDFCharIsWhitespace(tag[taglen - 1]); uint8_t ch; if (bCheckRight && startpos + (int32_t)taglen <= limit && GetCharAt(startpos + (int32_t)taglen, ch)) { if (PDFCharIsNumeric(ch) || PDFCharIsOther(ch) || (checkKeyword && PDFCharIsDelimiter(ch))) { return false; } } if (bCheckLeft && startpos > 0 && GetCharAt(startpos - 1, ch)) { if (PDFCharIsNumeric(ch) || PDFCharIsOther(ch) || (checkKeyword && PDFCharIsDelimiter(ch))) { return false; } } return true; } bool CPDF_SyntaxParser::BackwardsSearchToWord(const ByteStringView& tag, FX_FILESIZE limit) { int32_t taglen = tag.GetLength(); if (taglen == 0) return false; FX_FILESIZE pos = m_Pos; int32_t offset = taglen - 1; while (1) { if (limit && pos <= m_Pos - limit) return false; uint8_t byte; if (!GetCharAtBackward(pos, &byte)) return false; if (byte == tag[offset]) { offset--; if (offset >= 0) { pos--; continue; } if (IsWholeWord(pos, limit, tag, false)) { m_Pos = pos; return true; } } offset = byte == tag[taglen - 1] ? taglen - 2 : taglen - 1; pos--; if (pos < 0) return false; } } FX_FILESIZE CPDF_SyntaxParser::FindTag(const ByteStringView& tag, FX_FILESIZE limit) { int32_t taglen = tag.GetLength(); int32_t match = 0; limit += m_Pos; FX_FILESIZE startpos = m_Pos; while (1) { uint8_t ch; if (!GetNextChar(ch)) return -1; if (ch == tag[match]) { match++; if (match == taglen) return m_Pos - startpos - taglen; } else { match = ch == tag[0] ? 1 : 0; } if (limit && m_Pos == limit) return -1; } return -1; } RetainPtr<IFX_SeekableReadStream> CPDF_SyntaxParser::GetFileAccess() const { return m_pFileAccess; } bool CPDF_SyntaxParser::IsPositionRead(FX_FILESIZE pos) const { return m_BufOffset <= pos && pos < static_cast<FX_FILESIZE>(m_BufOffset + m_pFileBuf.size()); }
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
e19cc89781a12a28fdb5acd1fa654efc91d2dd53
fbc6fa2ae9e939c800a03d5527f1e28ef13354ca
/types/var_types.cpp
6f1f9f2e3df28f689f80416bdfc5757539e7874f
[]
no_license
tolber01/Math-interpreter
f05a8e3e7e10ccca59252aa410e3c768771b5aba
56f3010d483df43f48f6a3569c5a7015c8942928
refs/heads/master
2023-02-12T11:10:17.104758
2021-01-10T20:28:34
2021-01-10T20:28:34
328,471,497
0
0
null
null
null
null
UTF-8
C++
false
false
10,687
cpp
#include "../execution/context.hpp" #include "../parsing/parser.hpp" using namespace std; // ==== GenericValue implementation ==== GenericValue::GenericValue(ValueType object_type) : type(object_type) {} GenericValue* GenericValue::clone() { return new GenericValue(*this); } // ==== RationalNumber implementation ==== const string RationalNumber::REG_EXP_STR = R"((?:-?\d+\s*/\s*\d+|-?\d+))"; const regex RationalNumber::REG_EXP = regex(RationalNumber::REG_EXP_STR); bool RationalNumber::is_correct_str(std::string str_num) { str_num = trim(str_num); smatch number_match; if (!regex_match(str_num, number_match, REG_EXP)) return false; string::size_type slash_pos = str_num.find('/'); int numerator, denominator; if (slash_pos == string::npos) { try { numerator = stoi(str_num); } catch (invalid_argument& e) { return false; } return true; } else { try { numerator = stoi(str_num.substr(0, slash_pos)); denominator = stoi(str_num.substr(slash_pos + 1)); if (denominator == 0) throw invalid_argument("Zero division error"); } catch (invalid_argument& e) { return false; } return true; } } void RationalNumber::simplify() { for (int d = 2; d <= denominator; d++) while (numerator % d == 0 && denominator % d == 0) { numerator /= d; denominator /= d; } } RationalNumber::RationalNumber(string str_num) : GenericValue(RATIONAL_NUMBER) { str_num = trim(str_num); string::size_type slash_pos = str_num.find('/'); if (slash_pos != string::npos) { numerator = stoi(str_num.substr(0, slash_pos)); denominator = stoi(str_num.substr(slash_pos + 1)); } else { numerator = stoi(str_num); denominator = 1; } simplify(); } RationalNumber::RationalNumber() : GenericValue(RATIONAL_NUMBER), numerator(0), denominator(1) {} RationalNumber::RationalNumber(int num, int den) : GenericValue(RATIONAL_NUMBER), numerator(num), denominator(den) { simplify(); } RationalNumber::RationalNumber(const RationalNumber& other) : GenericValue(RATIONAL_NUMBER), numerator(other.numerator), denominator(other.denominator) {} GenericValue* RationalNumber::clone() { return new RationalNumber(*this); } RationalNumber& RationalNumber::operator=(const RationalNumber& other) { numerator = other.numerator; denominator = other.denominator; return *this; } string RationalNumber::to_string() const { if (denominator == 1) return std::to_string(numerator); else return std::to_string(numerator) + "/" + std::to_string(denominator); } RationalNumber RationalNumber::operator+(const RationalNumber& other) const { return RationalNumber( numerator*other.denominator + denominator*other.numerator, denominator*other.denominator); } RationalNumber RationalNumber::operator-() const { return RationalNumber(-numerator, denominator); } RationalNumber RationalNumber::operator-(const RationalNumber& other) const { return *this + (-other); } RationalNumber RationalNumber::operator*(const RationalNumber& other) const { return RationalNumber(numerator*other.numerator, denominator*other.denominator); } RationalNumber RationalNumber::operator/(const RationalNumber& other) const { return RationalNumber(numerator*other.denominator, denominator*other.numerator); } // ==== Matrix implementation ==== const regex Matrix::ROW_REG_EXP = regex( "(?:" + RationalNumber::REG_EXP_STR + "\\s*)+" ); const regex Matrix::REG_EXP = regex( "\\[\\s*(?:(?:" + RationalNumber::REG_EXP_STR + "\\s+)*" + RationalNumber::REG_EXP_STR + "\\s*;\\s*)*(?:" + RationalNumber::REG_EXP_STR + "\\s+)*" + RationalNumber::REG_EXP_STR + "\\s*\\]" ); bool Matrix::is_correct_str(string str_matrix) { str_matrix = trim(str_matrix); cmatch matrix_match_result; if (!regex_match(str_matrix.c_str(), matrix_match_result, Matrix::REG_EXP)) return false; else { smatch rows_match, columns_match, elements_match; if (!regex_search(str_matrix, rows_match, Matrix::ROW_REG_EXP)) return false; string row = rows_match[0]; int columns_number = 0, c; while (regex_search(row, columns_match, RationalNumber::REG_EXP)) { if (!RationalNumber::is_correct_str(columns_match[0])) return false; columns_number++; row = columns_match.suffix().str(); } str_matrix = rows_match.suffix().str(); while (regex_search(str_matrix, rows_match, Matrix::ROW_REG_EXP)) { row = rows_match[0]; c = 0; while (regex_search(row, columns_match, RationalNumber::REG_EXP)) { if (!RationalNumber::is_correct_str(columns_match[0])) return false; c++; row = columns_match.suffix().str(); } if (c != columns_number) return false; str_matrix = rows_match.suffix().str(); } return true; } } Matrix::Matrix(string str_matrix) : GenericValue(MATRIX) { string str_copy = str_matrix, row; str_matrix = trim(str_matrix); smatch elements_match, columns_match, rows_match; regex_search(str_copy, rows_match, Matrix::ROW_REG_EXP); row = rows_match[0]; cols_ = 0, rows_ = 1; while (regex_search(row, columns_match, RationalNumber::REG_EXP)) { cols_++; row = columns_match.suffix().str(); } str_copy = rows_match.suffix().str(); while (regex_search(str_copy, rows_match, Matrix::ROW_REG_EXP)) { rows_++; str_copy = rows_match.suffix().str(); } contents = new RationalNumber*[rows_]; contents[0] = new RationalNumber[rows_ * cols_]; for (int i = 1; i != rows_; i++) contents[i] = contents[i - 1] + cols_; int k = 0; while (regex_search(str_matrix, elements_match, RationalNumber::REG_EXP)) { contents[k / cols_][k % cols_] = RationalNumber(elements_match[0].str()); str_matrix = elements_match.suffix().str(); k++; } } Matrix::Matrix(int rows, int cols) : GenericValue(MATRIX), contents(nullptr), rows_(rows), cols_(cols) { contents = new RationalNumber*[rows_]; contents[0] = new RationalNumber[rows_ * cols_]; for (int i = 1; i != rows_; i++) contents[i] = contents[i - 1] + cols_; } Matrix::Matrix() : GenericValue(MATRIX), contents(nullptr), rows_(0), cols_(0) {} Matrix::Matrix(const Matrix& other) : GenericValue(MATRIX) { rows_ = other.rows_; cols_ = other.cols_; contents = new RationalNumber*[rows_]; contents[0] = new RationalNumber[rows_ * cols_]; for (int i = 1; i != rows_; i++) contents[i] = contents[i - 1] + cols_; for (int i = 0; i != rows_; i++) for (int j = 0; j != cols_; j++) contents[i][j] = other.contents[i][j]; } void Matrix::clear() { if (contents != nullptr) { delete [] contents[0]; delete [] contents; } contents = nullptr; rows_ = 0; cols_ = 0; } Matrix::~Matrix() { clear(); } GenericValue* Matrix::clone() { return new Matrix(*this); } Matrix& Matrix::operator=(const Matrix& other) { if (this != &other) { clear(); rows_ = other.rows_; cols_ = other.rows_; contents = new RationalNumber*[rows_]; contents[0] = new RationalNumber[rows_ * cols_]; for (int i = 1; i != rows_; i++) contents[i] = contents[i - 1] + cols_; for (int i = 0; i != rows_; i++) for (int j = 0; j != cols_; j++) contents[i][j] = other.contents[i][j]; } return *this; } void Matrix::transpose() { int new_rows = cols_, new_cols = rows_; auto new_contents = new RationalNumber*[new_rows]; new_contents[0] = new RationalNumber[new_rows * new_cols]; for (int i = 1; i != new_rows; i++) new_contents[i] = new_contents[i - 1] + new_cols; for (int i = 0; i != new_rows; i++) for (int j = 0; j != new_cols; j++) new_contents[i][j] = contents[j][i]; clear(); contents = new_contents; rows_ = new_rows; cols_ = new_cols; } Matrix Matrix::operator+(const Matrix& other) const { Matrix result(rows_, cols_); for (int i = 0; i != rows_; i++) for (int j = 0; j != cols_; j++) result.contents[i][j] = contents[i][j] + other.contents[i][j]; return result; } Matrix Matrix::operator-() const { Matrix result(rows_, cols_); for (int i = 0; i != rows_; i++) for (int j = 0; j != cols_; j++) result.contents[i][j] = -contents[i][j]; return result; } Matrix Matrix::operator-(const Matrix& other) const { Matrix result(rows_, cols_); for (int i = 0; i != rows_; i++) for (int j = 0; j != cols_; j++) result.contents[i][j] = contents[i][j] - other.contents[i][j]; return result; } Matrix Matrix::operator*(const Matrix& other) const { Matrix result(rows_, other.cols_); for (int i = 0; i != rows_; i++) for (int j = 0; j != other.cols_; j++) { RationalNumber element(0, 1); for (int k = 0; k != cols_; k++) element = element + contents[i][k] * other.contents[k][j]; result.contents[i][j] = element; } return result; } Matrix Matrix::operator*(const RationalNumber& multiplier) const { Matrix result(rows_, cols_); for (int i = 0; i != result.rows_; i++) for (int j = 0; j != result.cols_; j++) result.contents[i][j] = multiplier * contents[i][j]; return result; } Matrix operator*(const RationalNumber& multiplier, const Matrix& m) { Matrix result(m.rows_, m.cols_); for (int i = 0; i != result.rows_; i++) for (int j = 0; j != result.cols_; j++) result.contents[i][j] = multiplier * m.contents[i][j]; return result; } std::string Matrix::to_string() const { if (contents == nullptr || rows_ == 0 || cols_ == 0) return "( Empty matrix )"; else { string result = "(\n"; for (int i = 0; i != rows_; i++) { result += "\t"; for (int j = 0; j < cols_; j++) result += contents[i][j].to_string() + " "; result += "\n"; } result += ")"; return result; } }
[ "ov4.t@yandex.ru" ]
ov4.t@yandex.ru
94972761961c4872ab90c4f795381827e6d4bcd1
74837c92508b3190f8639564eaa7fa4388679f1d
/wrspice/devlib/bsim4.8.0/b4trun.cc
c9d5739f623a18b719eb0e6dad6edbf7c47720bb
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
frankhoff/xictools
35d49a88433901cc9cb88b1cfd3e8bf16ddba71c
9ff0aa58a5f5137f8a9e374a809a1cb84bab04fb
refs/heads/master
2023-03-21T13:05:38.481014
2022-09-18T21:51:41
2022-09-18T21:51:41
197,598,973
1
0
null
2019-07-18T14:07:13
2019-07-18T14:07:13
null
UTF-8
C++
false
false
4,710
cc
/*========================================================================* * * * Distributed by Whiteley Research Inc., Sunnyvale, California, USA * * http://wrcad.com * * Copyright (C) 2017 Whiteley Research Inc., all rights reserved. * * Author: Stephen R. Whiteley, except as indicated. * * * * As fully as possible recognizing licensing terms and conditions * * imposed by earlier work from which this work was derived, if any, * * this work is released under the Apache License, Version 2.0 (the * * "License"). You may not use this file except in compliance with * * the License, and compliance with inherited licenses which are * * specified in a sub-header below this one if applicable. A copy * * of the License is provided with this distribution, or you may * * obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * See the License for the specific language governing permissions * * and limitations under the License. * * * * 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 NON- * * INFRINGEMENT. IN NO EVENT SHALL WHITELEY RESEARCH INCORPORATED * * OR STEPHEN R. WHITELEY 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. * * * *========================================================================* * XicTools Integrated Circuit Design System * * * * WRspice Circuit Simulation and Analysis Tool: Device Library * * * *========================================================================* $Id:$ *========================================================================*/ /**** BSIM4.8.0 Released by Navid Paydavosi 11/01/2013 ****/ /********** * Copyright 2006 Regents of the University of California. All rights reserved. * File: b4trunc.c of BSIM4.8.0. * Author: 2000 Weidong Liu * Authors: 2001- Xuemei Xi, Mohan Dunga, Ali Niknejad, Chenming Hu. * Authors: 2006- Mohan Dunga, Ali Niknejad, Chenming Hu * Authors: 2007- Mohan Dunga, Wenwei Yang, Ali Niknejad, Chenming Hu * Project Director: Prof. Chenming Hu. **********/ #include "b4defs.h" #define BSIM4nextModel next() #define BSIM4nextInstance next() #define BSIM4instances inst() #define CKTterr(a, b, c) (b)->terr(a, c) int BSIM4dev::trunc(sGENmodel *genmod, sCKT *ckt, double *timeStep) { sBSIM4model *model = static_cast<sBSIM4model*>(genmod); sBSIM4instance *here; #ifdef STEPDEBUG double debugtemp; #endif /* STEPDEBUG */ for (; model != NULL; model = model->BSIM4nextModel) { for (here = model->BSIM4instances; here != NULL; here = here->BSIM4nextInstance) { #ifdef STEPDEBUG debugtemp = *timeStep; #endif /* STEPDEBUG */ CKTterr(here->BSIM4qb,ckt,timeStep); CKTterr(here->BSIM4qg,ckt,timeStep); CKTterr(here->BSIM4qd,ckt,timeStep); if (here->BSIM4trnqsMod) CKTterr(here->BSIM4qcdump,ckt,timeStep); if (here->BSIM4rbodyMod) { CKTterr(here->BSIM4qbs,ckt,timeStep); CKTterr(here->BSIM4qbd,ckt,timeStep); } if (here->BSIM4rgateMod == 3) CKTterr(here->BSIM4qgmid,ckt,timeStep); #ifdef STEPDEBUG if(debugtemp != *timeStep) { printf("device %s reduces step from %g to %g\n", here->BSIM4name,debugtemp,*timeStep); } #endif /* STEPDEBUG */ } } return(OK); }
[ "stevew@wrcad.com" ]
stevew@wrcad.com
4ee1bd1d41dc881990c275066081718c942a9f8e
ca72686ff29bfa25c440449bc672fceb927326a3
/advanced/homework_9b/homework_9b.cpp
2a51d5b219daef09020898287d0171b3d6e7ba6b
[ "MIT" ]
permissive
runt1m33rr0r/cpp-stuff
1ea05acac3a320330a4e9be33538044dd03c589b
0a98d8d618a8226e7e2a63b262ef8fe3ec43e185
refs/heads/master
2021-06-22T05:24:38.831066
2019-06-01T08:00:53
2019-06-01T08:00:53
109,747,935
0
0
null
null
null
null
UTF-8
C++
false
false
2,368
cpp
#include "pch.h" // Александър Янков F87134 #include <iostream> #include <vector> #include <limits> #include <unordered_set> using namespace std; typedef vector<vector<unsigned>> Graph; const unsigned MAX_VALUE = numeric_limits<unsigned>::max(); unsigned minSum; unsigned curSum; vector<unsigned> used; vector<unsigned> cycle; vector<unsigned> minCycle; Graph graph; struct Edge { unsigned from; unsigned to; unsigned weight; Edge(unsigned from, unsigned to, unsigned weight) : from(from), to(to), weight(weight) {} }; void PrintCycle(unsigned nodesCount) { if (minSum == MAX_VALUE) { cout << "-1"; return; } cout << "1 "; for (size_t i = 0; i < nodesCount - 1; i++) { cout << minCycle[i] + 1 << " "; } } void Hamilton(unsigned i, unsigned level) { size_t k; if ((0 == i) && (level > 0)) { if (level == graph.size()) { minSum = curSum; for (k = 0; k < graph.size(); k++) { minCycle[k] = cycle[k]; } } return; } if (used[i]) { return; } used[i] = 1; for (k = 0; k < graph.size(); k++) { if (graph[i][k] && k != i) { cycle[level] = k; curSum += graph[i][k]; if (curSum < minSum) { Hamilton(k, level + 1); } curSum -= graph[i][k]; } } used[i] = 0; } void Reset() { used = vector<unsigned>(graph.size()); fill(used.begin(), used.end(), 0); cycle = vector<unsigned>(graph.size()); cycle[0] = 1; minCycle = vector<unsigned>(graph.size()); minSum = MAX_VALUE; curSum = 0; } void BuildGraph(Graph& graph, const vector<Edge>& edges, unsigned nodesCount) { graph.resize(nodesCount); for (size_t i = 0; i < graph.size(); i++) { graph[i].resize(nodesCount); fill(graph[i].begin(), graph[i].end(), 0); } for (auto edge : edges) { graph[edge.from - 1][edge.to - 1] = edge.weight; graph[edge.to - 1][edge.from - 1] = edge.weight; } } int main() { unsigned edgesCount = 0; while (cin >> edgesCount) { unordered_set<unsigned> nodes; vector<Edge> edges; for (size_t i = 0; i < edgesCount; i++) { unsigned from = 0; unsigned to = 0; unsigned weight = 0; cin >> from >> to >> weight; nodes.insert(from); nodes.insert(to); edges.emplace_back(Edge(from, to, weight)); } BuildGraph(graph, edges, nodes.size()); Reset(); Hamilton(0, 0); PrintCycle(graph.size()); cout << endl; } return 0; }
[ "19938633+runt1m33rr0r@users.noreply.github.com" ]
19938633+runt1m33rr0r@users.noreply.github.com
43b70d6b685a7432ee2979ed82bc2a33418c3847
00332281a2e92b01327e437ffe20370ec8e13ea4
/dev/floyd_speak/parts/immer-master/test/map/generic.ipp
033e10cb67a9a433e7b6de5986ef5299086700e0
[ "MIT", "LGPL-3.0-only", "LGPL-2.1-or-later", "LGPL-3.0-or-later" ]
permissive
PavelVozenilek/floyd
78dd79b0376f6c819a0d9cf4ba47ffa79ade47c9
debc34005bb85000f78d08aa979bcf6a2dad4fb0
refs/heads/master
2020-06-13T17:20:14.470042
2019-06-19T11:33:48
2019-06-19T11:33:48
194,729,571
0
0
MIT
2019-07-01T19:10:33
2019-07-01T19:10:33
null
UTF-8
C++
false
false
7,556
ipp
// // immer - immutable data structures for C++ // Copyright (C) 2016, 2017 Juan Pedro Bolivar Puente // // This file is part of immer. // // immer 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 of the License, or // (at your option) any later version. // // immer is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with immer. If not, see <http://www.gnu.org/licenses/>. // #ifndef MAP_T #error "define the map template to use in MAP_T" #include <immer/map.hpp> #define MAP_T ::immer::map #endif #include <immer/algorithm.hpp> #include "test/util.hpp" #include "test/dada.hpp" #include <catch.hpp> #include <unordered_set> #include <random> template <typename T=unsigned> auto make_generator() { auto engine = std::default_random_engine{42}; auto dist = std::uniform_int_distribution<T>{}; return std::bind(dist, engine); } struct conflictor { unsigned v1; unsigned v2; bool operator== (const conflictor& x) const { return v1 == x.v1 && v2 == x.v2; } }; struct hash_conflictor { std::size_t operator() (const conflictor& x) const { return x.v1; } }; auto make_values_with_collisions(unsigned n) { auto gen = make_generator(); auto vals = std::vector<std::pair<conflictor, unsigned>>{}; auto vals_ = std::unordered_set<conflictor, hash_conflictor>{}; auto i = 0u; generate_n(back_inserter(vals), n, [&] { auto newv = conflictor{}; do { newv = { unsigned(gen() % (n / 2)), gen() }; } while (!vals_.insert(newv).second); return std::pair<conflictor, unsigned>{newv, i++}; }); return vals; } auto make_test_map(unsigned n) { auto s = MAP_T<unsigned, unsigned>{}; for (auto i = 0u; i < n; ++i) s = s.insert({i, i}); return s; } auto make_test_map(const std::vector<std::pair<conflictor, unsigned>>& vals) { auto s = MAP_T<conflictor, unsigned, hash_conflictor>{}; for (auto&& v : vals) s = s.insert(v); return s; } TEST_CASE("instantiation") { SECTION("default") { auto v = MAP_T<int, int>{}; CHECK(v.size() == 0u); } } TEST_CASE("basic insertion") { auto v1 = MAP_T<int, int>{}; CHECK(v1.count(42) == 0); auto v2 = v1.insert({42, {}}); CHECK(v1.count(42) == 0); CHECK(v2.count(42) == 1); auto v3 = v2.insert({42, {}}); CHECK(v1.count(42) == 0); CHECK(v2.count(42) == 1); CHECK(v3.count(42) == 1); } TEST_CASE("accessor") { const auto n = 666u; auto v = make_test_map(n); CHECK(v[0] == 0); CHECK(v[42] == 42); CHECK(v[665] == 665); CHECK(v[666] == 0); CHECK(v[1234] == 0); } TEST_CASE("at") { const auto n = 666u; auto v = make_test_map(n); CHECK(v.at(0) == 0); CHECK(v.at(42) == 42); CHECK(v.at(665) == 665); CHECK_THROWS_AS(v.at(666), std::out_of_range); CHECK_THROWS_AS(v.at(1234), std::out_of_range); } TEST_CASE("find") { const auto n = 666u; auto v = make_test_map(n); CHECK(*v.find(0) == 0); CHECK(*v.find(42) == 42); CHECK(*v.find(665) == 665); CHECK(v.find(666) == nullptr); CHECK(v.find(1234) == nullptr); } TEST_CASE("equals and setting") { const auto n = 666u; auto v = make_test_map(n); CHECK(v == v); CHECK(v != v.insert({1234, 42})); CHECK(v != v.erase(32)); CHECK(v == v.insert({1234, 42}).erase(1234)); CHECK(v == v.erase(32).insert({32, 32})); CHECK(v.set(1234, 42) == v.insert({1234, 42})); CHECK(v.update(1234, [] (auto&& x) { return x + 1; }) == v.set(1234, 1)); CHECK(v.update(42, [] (auto&& x) { return x + 1; }) == v.set(42, 43)); } TEST_CASE("iterator") { const auto N = 666u; auto v = make_test_map(N); SECTION("empty set") { auto s = MAP_T<unsigned, unsigned>{}; CHECK(s.begin() == s.end()); } SECTION("works with range loop") { auto seen = std::unordered_set<unsigned>{}; for (const auto& x : v) CHECK(seen.insert(x.first).second); CHECK(seen.size() == v.size()); } SECTION("iterator and collisions") { auto vals = make_values_with_collisions(N); auto s = make_test_map(vals); auto seen = std::unordered_set<conflictor, hash_conflictor>{}; for (const auto& x : s) CHECK(seen.insert(x.first).second); CHECK(seen.size() == s.size()); } } TEST_CASE("accumulate") { const auto n = 666u; auto v = make_test_map(n); auto expected_n = [] (auto n) { return n * (n - 1) / 2; }; SECTION("sum collection") { auto acc = [] (unsigned acc, const std::pair<unsigned, unsigned>& x) { return acc + x.first + x.second; }; auto sum = immer::accumulate(v, 0u, acc); CHECK(sum == 2 * expected_n(v.size())); } SECTION("sum collisions") { auto vals = make_values_with_collisions(n); auto s = make_test_map(vals); auto acc = [] (unsigned r, std::pair<conflictor, unsigned> x) { return r + x.first.v1 + x.first.v2 + x.second; }; auto sum1 = std::accumulate(vals.begin(), vals.end(), 0u, acc); auto sum2 = immer::accumulate(s, 0u, acc); CHECK(sum1 == sum2); } } TEST_CASE("update a lot") { auto v = make_test_map(666u); for (decltype(v.size()) i = 0; i < v.size(); ++i) { v = v.update(i, [] (auto&& x) { return x + 1; }); CHECK(v[i] == i+1); } } TEST_CASE("exception safety") { constexpr auto n = 2666u; using dadaist_map_t = typename dadaist_wrapper<MAP_T<unsigned, unsigned>>::type; using dadaist_conflictor_map_t = typename dadaist_wrapper<MAP_T<conflictor, unsigned, hash_conflictor>>::type; SECTION("update collisions") { auto v = dadaist_map_t{}; auto d = dadaism{}; for (auto i = 0u; i < n; ++i) v = v.set(i, i); for (auto i = 0u; i < v.size();) { try { auto s = d.next(); v = v.update(i, [] (auto x) { return x + 1; }); ++i; } catch (dada_error) {} for (auto i : test_irange(0u, i)) CHECK(v.at(i) == i + 1); for (auto i : test_irange(i, n)) CHECK(v.at(i) == i); } CHECK(d.happenings > 0); IMMER_TRACE_E(d.happenings); } SECTION("update collisisions") { auto vals = make_values_with_collisions(n); auto v = dadaist_conflictor_map_t{}; auto d = dadaism{}; for (auto i = 0u; i < n; ++i) v = v.insert(vals[i]); for (auto i = 0u; i < v.size();) { try { auto s = d.next(); v = v.update(vals[i].first, [] (auto x) { return x + 1; }); ++i; } catch (dada_error) {} for (auto i : test_irange(0u, i)) CHECK(v.at(vals[i].first) == vals[i].second + 1); for (auto i : test_irange(i, n)) CHECK(v.at(vals[i].first) == vals[i].second); } CHECK(d.happenings > 0); IMMER_TRACE_E(d.happenings); } }
[ "marcus.zetterquist@gmail.com" ]
marcus.zetterquist@gmail.com
10c234dde6d090fbdee2c119808725f0e5464e64
9bf03a25cc3c1e439ad8f8a1e829f336b8cb9e17
/URI/c++/BEE - 2697.cpp
9dcc8378c488c1630ae24211218b9080fcca0aae
[]
no_license
leonardorodriguesds/codes
793b9a5c6a426b78959f4fc3b48246df4ca1bc4a
4fdd17ff932d4a44fbb52c6b150f07f74d68d3ac
refs/heads/master
2023-09-04T13:06:54.742366
2023-08-19T23:39:50
2023-08-19T23:39:50
143,721,913
0
0
null
null
null
null
UTF-8
C++
false
false
3,349
cpp
#include <bits/stdc++.h> using namespace std; #define ALFA 256 #define MOD 1000000007 #define INF 0x3f3f3f3f #define INFLL 0x3f3f3f3f3f3f3f3f #define EPS (1e-9) #define PI 3.141592653589793238462643383279502884 #define all(a) a.begin(), a.end() #define fill(t,v) memset(t, v, sizeof(t)) #define sz(a) ((int)(a.size())) #define LOG2(X) ((unsigned) (8*sizeof(unsigned long long) - __builtin_clzll((X)) - 1)) #define ispow2(v) ((int(v) & (int(v) - 1)) == 0) #define scanf2(a, b) (scanf("%d %d", &a, &b)) #define scanf3(a, b, c) (scanf("%d %d %d", &a, &b, &c)) typedef long long ll; typedef pair<int, int> ii; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<ii> vii; typedef vector<pair<int, ii>> vpii; typedef vector<string> vs; typedef priority_queue<int, vector<int>, greater<int>> pqi; typedef vector<pqi> vpqi; void segmentTree(int node, int b, int e, vi& notas, vi& sumSegmentTree, vi& maxSegmentTree, vi& minSegmentTree) { if (b == e) { sumSegmentTree[node] = maxSegmentTree[node] = minSegmentTree[node] = notas[b]; } else { int mid = (b + e) >> 1, l = node << 1, r = node << 1 | 1; segmentTree(l, b, mid, notas, sumSegmentTree, maxSegmentTree, minSegmentTree); segmentTree(r, mid + 1, e, notas, sumSegmentTree, maxSegmentTree, minSegmentTree); int min_value = min(minSegmentTree[l], minSegmentTree[r]), max_value = max(maxSegmentTree[l], maxSegmentTree[r]); minSegmentTree[node] = min_value, maxSegmentTree[node] = max_value, sumSegmentTree[node] = (sumSegmentTree[l] + sumSegmentTree[r]); } } array<int, 3> queryUtils(int node, int b, int e, int L, int R, vi& sumSegmentTree, vi& maxSegmentTree, vi& minSegmentTree) { if (b >= L && e <= R) { return {sumSegmentTree[node], maxSegmentTree[node], minSegmentTree[node]}; } if (b > R || e < L) { return {0, -INF, INF}; } int mid = (b + e) >> 1, l = node << 1, r = node << 1 | 1; array<int, 3> left = queryUtils(l, b, mid, L, R, sumSegmentTree, maxSegmentTree, minSegmentTree); array<int, 3> right = queryUtils(r, mid + 1, e, L, R, sumSegmentTree, maxSegmentTree, minSegmentTree); return {(left[0] + right[0]), max(left[1], right[1]), min(left[2], right[2])}; } int query(int n, int i, int j, vi& sumSegmentTree, vi& maxSegmentTree, vi& minSegmentTree) { array<int, 3> ans = queryUtils(1, 0, n - 1, min(i, j), max(i, j), sumSegmentTree, maxSegmentTree, minSegmentTree); return ans[0] - ans[1] - ans[2]; } void init_problem(int n, int b) { vi notas(n, 0); for(int i = 0; i < n; i++) { int x; cin >> x; notas[i] = x; } int x = (int)(ceil(log2(n))); int max_size = 2*(int)pow(2, x) - 1; vi sumSegmentTree(max_size, 0); vi maxSegmentTree(max_size, -INF); vi minSegmentTree(max_size, INF); segmentTree(1, 0, n - 1, notas, sumSegmentTree, maxSegmentTree, minSegmentTree); ll res = 0; for(int i = 0; i <= n - b; i++) { res += query(n, i, i + b - 1, sumSegmentTree, maxSegmentTree, minSegmentTree); } cout << res << endl; } int main() { ios_base::sync_with_stdio(false); int n, b; while(cin >> n >> b) { init_problem(n, b); } return 0; }
[ "leoonardodf@gmail.com" ]
leoonardodf@gmail.com
4c0a5503e0314df40b562a9423773143a6fef763
879fc5574b6dd2c683b4c12e39ba51e44e6dc942
/src/lib/math/discretegaussiangenerator.cpp
e86e2fdec706cf31d06c8e34cc4f0ca0fa615a91
[ "MIT" ]
permissive
carlzhangweiwen/gazelle_mpc
a48072cf296dd106ee0dd8d010e728d579f2f522
45818ccf6375100a8fe2680f44f37d713380aa5c
refs/heads/master
2020-09-24T13:38:33.186719
2019-12-06T02:15:48
2019-12-06T02:15:48
225,770,500
0
0
MIT
2019-12-04T03:25:50
2019-12-04T03:25:49
null
UTF-8
C++
false
false
4,402
cpp
/* * @file discretegaussiangenerator.cpp This code provides generation of gaussian distibutions of discrete values. * Discrete uniform generator relies on the built-in C++ generator for 32-bit unsigned integers defined in <random>. * @author TPOC: palisade@njit.edu * * @copyright Copyright (c) 2017, New Jersey Institute of Technology (NJIT) * 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. * 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. * */ #include <utils/backend.h> #include "discretegaussiangenerator.h" // #include <iostream> namespace lbcrypto { DiscreteGaussianGenerator::DiscreteGaussianGenerator(double std) : DistributionGenerator() { m_std = std; m_vals.clear(); //weightDiscreteGaussian double acc = 1e-15; double variance = m_std * m_std; int fin = (int)ceil(m_std * sqrt(-2 * log(acc))); //this value of fin (M) corresponds to the limit for double precision // usually the bound of m_std * M is used, where M = 20 .. 40 - see DG14 for details // M = 20 corresponds to 1e-87 //double mr = 20; // see DG14 for details //int fin = (int)ceil(m_std * mr); double cusum = 1.0; for (si32 x = 1; x <= fin; x++) { cusum = cusum + 2 * exp(-x * x / (variance * 2)); } m_a = 1 / cusum; //fin = (int)ceil(sqrt(-2 * variance * log(acc))); //not needed - same as above double temp; for (si32 i = 1; i <= fin; i++) { temp = m_a * exp(-((double)(i * i) / (2 * variance))); m_vals.push_back(temp); } // take cumulative summation for (ui32 i = 1; i < m_vals.size(); i++) { m_vals[i] += m_vals[i - 1]; } // for (ui32 i = 0; i<m_vals.size(); i++) { // std::cout << m_vals[i] << std::endl; // } //std::cout<<m_a<<std::endl; } ui32 DiscreteGaussianGenerator::FindInVector(const std::vector<double> &S, double search) const { //STL binary search implementation auto lower = std::lower_bound(S.begin(), S.end(), search); if (lower != S.end()) return lower - S.begin(); else throw std::runtime_error("DGG Inversion Sampling. FindInVector value not found: " + std::to_string(search)); } uv64 DiscreteGaussianGenerator::GenerateVector(const ui32 size, const ui64 &modulus) const { //we need to use the binary uniform generator rathen than regular continuous distribution; see DG14 for details std::uniform_real_distribution<double> distribution(0.0, 1.0); uv64 ans(size); auto& prng = get_prng(); for (ui32 i = 0; i < size; i++) { double seed = distribution(prng) - 0.5; if (std::abs(seed) <= m_a / 2) { ans[i] = ui64(0); } else{ ui32 val = FindInVector(m_vals, (std::abs(seed) - m_a / 2)); if (seed > 0) { ans[i] = ui64(val+1); } else { ans[i] = ui64(modulus-val-1); } } } return ans; } } // namespace lbcrypto
[ "chiraag@mit.edu" ]
chiraag@mit.edu
c913eef20571352bfc7b249e358de27161c09ade
b206579e4098b2cfa376f7cc34743717c63f7cf3
/Direct3DGame/33_SCAExport_1/SMatrixExporter.cpp
011c523b50c0e7ce764b23101a7fbf65b4e9af1b
[]
no_license
seoaplo/02_Direct3DGame
b4c1a751e72517dec06b1052830e7f27a69afebb
88d4615ecc3bac7ffdce86ca4391104064567ca1
refs/heads/master
2021-11-28T05:07:04.367958
2021-09-05T13:50:56
2021-09-05T13:50:56
201,198,261
0
0
null
null
null
null
UTF-8
C++
false
false
1,349
cpp
#include "SMatrixExporter.h" void SMatrixExporter::Convert() { m_MatrixManager.Release(); SAExporter::CreateMaterialList(); m_MatrixManager.SetSize(g_iNodeMaxNum); for (auto& pNode : SAExporter::g_NodeList) { int iMaterialNum = SAExporter::FindMaterial(pNode.first); m_MatrixManager.AddObject(pNode.first, g_Scene, g_Interval, pNode.second, iMaterialNum); } } bool SMatrixExporter::Export() { m_pStream = nullptr; _wfopen_s(&m_pStream, m_filename.c_str(), _T("wb")); if (m_pStream == nullptr) return false; ExportHeader(m_pStream); m_MatrixManager.ExportObject(m_pStream); fclose(m_pStream); MessageBox(GetActiveWindow(), m_filename.c_str(), _T("Succeed!"), MB_OK); return true; } bool SMatrixExporter::Release() { SAExporter::Release(); m_MatrixManager.Release(); return true; } void SMatrixExporter::ExportHeader(FILE* pStream) { if (m_pStream == nullptr) return; g_Scene.iNumMaterials = g_MaterialManager.m_MaterialList.size(); g_Scene.iNumObjects = m_MatrixManager.m_ObjectList.size(); _ftprintf(m_pStream, _T("%s"), _T("MatrixExporter100")); _ftprintf(m_pStream, _T("\n%s %d %d %d %d %d"), L"#HEADERINFO", g_Scene.iFirstFrame, g_Scene.iLastFrame, g_Scene.iFrameSpeed, g_Scene.iTickPerFrame, g_Scene.iNumObjects); } SMatrixExporter::SMatrixExporter() { } SMatrixExporter::~SMatrixExporter() { }
[ "seoxx@naver.com" ]
seoxx@naver.com
1eca96dafb078224b50cdc0fdcf73ce9641b9eb6
3886504fcbb5d7b12397998592cbafb874c470eb
/sdk/include/inspurcloud/oss/model/PostVodPlaylistRequest.h
77d2ed7b844466a8224ee3aaa8e747224eaeaae6
[ "Apache-2.0" ]
permissive
OpenInspur/inspur-oss-cpp-sdk
1c9ff9c4de58f42db780a165059862bf52a2be8b
a0932232aaf46aab7c5a2079f72d80cc5d634ba2
refs/heads/master
2022-12-04T15:14:11.657799
2020-08-13T03:29:37
2020-08-13T03:29:37
286,946,985
0
0
null
null
null
null
UTF-8
C++
false
false
905
h
#pragma once #include <inspurcloud/oss/Export.h> #include <inspurcloud/oss/OssRequest.h> #include <inspurcloud/oss/Types.h> #include <inspurcloud/oss/model/ObjectMetaData.h> #include <inspurcloud/oss/http/HttpType.h> namespace InspurCloud { namespace OSS { class INSPURCLOUD_OSS_EXPORT PostVodPlaylistRequest : public LiveChannelRequest { public: PostVodPlaylistRequest(const std::string& bucket, const std::string& channelName, const std::string& playList, uint64_t startTime, uint64_t endTime); void setPlayList(const std::string& playList); void setStartTime(uint64_t startTime); void setEndTime(uint64_t endTime); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; private: std::string playList_; uint64_t startTime_; uint64_t endTime_; }; } }
[ "wangtengfei@inspur.com" ]
wangtengfei@inspur.com
53424323746bf3783d7e0a80818b4726e6963815
c9304af7790d66f71073e38e6899040f3da1917a
/c_plus_plus/white_belt/week2/capital_guide.cpp
107a9221cd401f1da4dca100a26d4a4698849bf0
[ "MIT" ]
permissive
raventid/coursera_learning
b086ac474be00f24af8c75ce5eada09f7ca6d39d
9cd62324b91d2a35af413dd4442867e160e7a4ea
refs/heads/master
2023-07-11T04:07:41.034279
2023-07-02T19:22:49
2023-07-02T19:22:49
78,435,867
1
0
MIT
2022-06-06T21:08:01
2017-01-09T14:25:07
Assembly
UTF-8
C++
false
false
3,151
cpp
#include <iostream> #include <string> #include <map> // Реализуйте справочник столиц стран. // На вход программе поступают следующие запросы: // CHANGE_CAPITAL country new_capital — изменение столицы страны country на new_capital, // либо добавление такой страны с такой столицей, если раньше её не было. // RENAME old_country_name new_country_name — переименование страны из old_country_name // в new_country_name. // ABOUT country — вывод столицы страны country. // DUMP — вывод столиц всех стран. int main() { int n; std::cin >> n; std::map<std::string, std::string> capitals; // dispatch loop: for(int i = 0; i < n; i++) { std::string command; std::string country; std::string capital; std::string new_capital; std::cin >> command; if (command == "CHANGE_CAPITAL") { std::cin >> country; std::cin >> new_capital; // Country didn't exist before if(capitals.count(country) == 0) { std::cout << "Introduce new country " << country << " with capital " << new_capital; capitals[country] = new_capital; } else if(capitals[country] == new_capital) { std::cout << "Country " << country << " hasn't changed its capital"; } else if(capitals[country] != new_capital) { std::cout << "Country " << country << " has changed its capital from " << capitals[country] << " to " << new_capital; capitals[country] = new_capital; } std::cout << std::endl; } if (command == "RENAME") { std::string old_country_name, new_country_name; std::cin >> old_country_name; std::cin >> new_country_name; if(capitals.count(new_country_name) || !capitals.count(old_country_name)) { std::cout << "Incorrect rename, skip"; } else { std::cout << "Country " << old_country_name << " with capital " << capitals[old_country_name] << " has been renamed to " << new_country_name; capitals[new_country_name] = capitals[old_country_name]; capitals.erase(old_country_name); } std::cout << std::endl; } if (command == "ABOUT") { std::string country; std::cin >> country; if(capitals.count(country)) { std::cout << "Country " << country << " has capital " << capitals[country]; } else { std::cout << "Country " << country << " doesn't exist"; } std::cout << std::endl; } if (command == "DUMP") { if (capitals.empty()) { std::cout << "There are no countries in the world"; } else { for(const auto& pair : capitals) { std::cout << pair.first << "/" << pair.second << " "; } } std::cout << std::endl; } } return 0; }
[ "julian.kulesh@kupibilet.ru" ]
julian.kulesh@kupibilet.ru
9f1e04b3aeee66d572adff54709d4a5288aaab57
c0f8fa65755d822bc6e4c71afdcc6c13075d7565
/src/protocol.cpp
49232ed14035dcc707c6d4231f5f486bc8c094cb
[ "MIT" ]
permissive
MNodelab/Nodelab
de42b49e7f10597df2d7b3abf0c935535170fabb
96a4508f57cc73d4826ab04cde6896fa598c902b
refs/heads/master
2020-03-22T08:10:39.187698
2018-07-04T19:30:04
2018-07-04T19:30:04
139,750,021
0
1
null
null
null
null
UTF-8
C++
false
false
7,900
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2015 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 "protocol.h" #include "util.h" #include "utilstrencodings.h" #ifndef WIN32 # include <arpa/inet.h> #endif namespace NetMsgType { const char *VERSION="version"; const char *VERACK="verack"; const char *ADDR="addr"; const char *INV="inv"; const char *GETDATA="getdata"; const char *MERKLEBLOCK="merkleblock"; const char *GETBLOCKS="getblocks"; const char *GETHEADERS="getheaders"; const char *TX="tx"; const char *HEADERS="headers"; const char *BLOCK="block"; const char *GETADDR="getaddr"; const char *MEMPOOL="mempool"; const char *PING="ping"; const char *PONG="pong"; const char *ALERT="alert"; const char *NOTFOUND="notfound"; const char *FILTERLOAD="filterload"; const char *FILTERADD="filteradd"; const char *FILTERCLEAR="filterclear"; const char *REJECT="reject"; const char *SENDHEADERS="sendheaders"; // NodeLab message types const char *TXLOCKREQUEST="ix"; const char *TXLOCKVOTE="txlvote"; const char *SPORK="spork"; const char *GETSPORKS="getsporks"; const char *MASTERNODEPAYMENTVOTE="mnw"; const char *MASTERNODEPAYMENTBLOCK="mnwb"; const char *MASTERNODEPAYMENTSYNC="mnget"; const char *MNBUDGETSYNC="mnvs"; // depreciated since 12.1 const char *MNBUDGETVOTE="mvote"; // depreciated since 12.1 const char *MNBUDGETPROPOSAL="mprop"; // depreciated since 12.1 const char *MNBUDGETFINAL="fbs"; // depreciated since 12.1 const char *MNBUDGETFINALVOTE="fbvote"; // depreciated since 12.1 const char *MNQUORUM="mn quorum"; // not implemented const char *MNANNOUNCE="mnb"; const char *MNPING="mnp"; const char *DSACCEPT="dsa"; const char *DSVIN="dsi"; const char *DSFINALTX="dsf"; const char *DSSIGNFINALTX="dss"; const char *DSCOMPLETE="dsc"; const char *DSSTATUSUPDATE="dssu"; const char *DSTX="dstx"; const char *DSQUEUE="dsq"; const char *DSEG="dseg"; const char *SYNCSTATUSCOUNT="ssc"; const char *MNGOVERNANCESYNC="govsync"; const char *MNGOVERNANCEOBJECT="govobj"; const char *MNGOVERNANCEOBJECTVOTE="govobjvote"; const char *MNVERIFY="mnv"; }; static const char* ppszTypeName[] = { "ERROR", // Should never occur NetMsgType::TX, NetMsgType::BLOCK, "filtered block", // Should never occur // NodeLab message types // NOTE: include non-implmented here, we must keep this list in sync with enum in protocol.h NetMsgType::TXLOCKREQUEST, NetMsgType::TXLOCKVOTE, NetMsgType::SPORK, NetMsgType::MASTERNODEPAYMENTVOTE, NetMsgType::MASTERNODEPAYMENTBLOCK, // reusing, was MNSCANERROR previousely, was NOT used in 12.0, we need this for inv NetMsgType::MNBUDGETVOTE, // depreciated since 12.1 NetMsgType::MNBUDGETPROPOSAL, // depreciated since 12.1 NetMsgType::MNBUDGETFINAL, // depreciated since 12.1 NetMsgType::MNBUDGETFINALVOTE, // depreciated since 12.1 NetMsgType::MNQUORUM, // not implemented NetMsgType::MNANNOUNCE, NetMsgType::MNPING, NetMsgType::DSTX, NetMsgType::MNGOVERNANCEOBJECT, NetMsgType::MNGOVERNANCEOBJECTVOTE, NetMsgType::MNVERIFY, }; /** All known message types. Keep this in the same order as the list of * messages above and in protocol.h. */ const static std::string allNetMessageTypes[] = { NetMsgType::VERSION, NetMsgType::VERACK, NetMsgType::ADDR, NetMsgType::INV, NetMsgType::GETDATA, NetMsgType::MERKLEBLOCK, NetMsgType::GETBLOCKS, NetMsgType::GETHEADERS, NetMsgType::TX, NetMsgType::HEADERS, NetMsgType::BLOCK, NetMsgType::GETADDR, NetMsgType::MEMPOOL, NetMsgType::PING, NetMsgType::PONG, NetMsgType::ALERT, NetMsgType::NOTFOUND, NetMsgType::FILTERLOAD, NetMsgType::FILTERADD, NetMsgType::FILTERCLEAR, NetMsgType::REJECT, NetMsgType::SENDHEADERS, // NodeLab message types // NOTE: do NOT include non-implmented here, we want them to be "Unknown command" in ProcessMessage() NetMsgType::TXLOCKREQUEST, NetMsgType::TXLOCKVOTE, NetMsgType::SPORK, NetMsgType::GETSPORKS, NetMsgType::MASTERNODEPAYMENTVOTE, // NetMsgType::MASTERNODEPAYMENTBLOCK, // there is no message for this, only inventory NetMsgType::MASTERNODEPAYMENTSYNC, NetMsgType::MNANNOUNCE, NetMsgType::MNPING, NetMsgType::DSACCEPT, NetMsgType::DSVIN, NetMsgType::DSFINALTX, NetMsgType::DSSIGNFINALTX, NetMsgType::DSCOMPLETE, NetMsgType::DSSTATUSUPDATE, NetMsgType::DSTX, NetMsgType::DSQUEUE, NetMsgType::DSEG, NetMsgType::SYNCSTATUSCOUNT, NetMsgType::MNGOVERNANCESYNC, NetMsgType::MNGOVERNANCEOBJECT, NetMsgType::MNGOVERNANCEOBJECTVOTE, NetMsgType::MNVERIFY, }; const static std::vector<std::string> allNetMessageTypesVec(allNetMessageTypes, allNetMessageTypes+ARRAYLEN(allNetMessageTypes)); CMessageHeader::CMessageHeader(const MessageStartChars& pchMessageStartIn) { memcpy(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE); memset(pchCommand, 0, sizeof(pchCommand)); nMessageSize = -1; nChecksum = 0; } CMessageHeader::CMessageHeader(const MessageStartChars& pchMessageStartIn, const char* pszCommand, unsigned int nMessageSizeIn) { memcpy(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE); memset(pchCommand, 0, sizeof(pchCommand)); strncpy(pchCommand, pszCommand, COMMAND_SIZE); nMessageSize = nMessageSizeIn; nChecksum = 0; } std::string CMessageHeader::GetCommand() const { return std::string(pchCommand, pchCommand + strnlen(pchCommand, COMMAND_SIZE)); } bool CMessageHeader::IsValid(const MessageStartChars& pchMessageStartIn) const { // Check start string if (memcmp(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE) != 0) return false; // Check the command string for errors for (const char* p1 = pchCommand; p1 < pchCommand + COMMAND_SIZE; p1++) { if (*p1 == 0) { // Must be all zeros after the first zero for (; p1 < pchCommand + COMMAND_SIZE; p1++) if (*p1 != 0) return false; } else if (*p1 < ' ' || *p1 > 0x7E) return false; } // Message size if (nMessageSize > MAX_SIZE) { LogPrintf("CMessageHeader::IsValid(): (%s, %u bytes) nMessageSize > MAX_SIZE\n", GetCommand(), nMessageSize); return false; } return true; } CAddress::CAddress() : CService() { Init(); } CAddress::CAddress(CService ipIn, uint64_t nServicesIn) : CService(ipIn) { Init(); nServices = nServicesIn; } void CAddress::Init() { nServices = NODE_NETWORK; nTime = 100000000; } CInv::CInv() { type = 0; hash.SetNull(); } CInv::CInv(int typeIn, const uint256& hashIn) { type = typeIn; hash = hashIn; } CInv::CInv(const std::string& strType, const uint256& hashIn) { unsigned int i; for (i = 1; i < ARRAYLEN(ppszTypeName); i++) { if (strType == ppszTypeName[i]) { type = i; break; } } if (i == ARRAYLEN(ppszTypeName)) throw std::out_of_range(strprintf("CInv::CInv(string, uint256): unknown type '%s'", strType)); hash = hashIn; } bool operator<(const CInv& a, const CInv& b) { return (a.type < b.type || (a.type == b.type && a.hash < b.hash)); } bool CInv::IsKnownType() const { return (type >= 1 && type < (int)ARRAYLEN(ppszTypeName)); } const char* CInv::GetCommand() const { if (!IsKnownType()) throw std::out_of_range(strprintf("CInv::GetCommand(): type=%d unknown type", type)); return ppszTypeName[type]; } std::string CInv::ToString() const { return strprintf("%s %s", GetCommand(), hash.ToString()); } const std::vector<std::string> &getAllNetMessageTypes() { return allNetMessageTypesVec; }
[ "mnlab@gmail.com" ]
mnlab@gmail.com
b54c87d8d8f77497a9b678d9a84a735d2189ad8f
ae25fa735ec1e5c0aa002cc22e1658376972d17c
/src/server/server-entry.hpp
b257ee0bbb8bdc3bb04d4628da0110418cbde0d7
[ "BSD-3-Clause" ]
permissive
TailinZhou/non_iid_dml
889917f48f990cfe628ab45b9d3f6f39131d4981
ddc3111a355f62877cafbbba03998f203d1350e5
refs/heads/master
2023-01-02T12:16:04.996046
2020-10-22T19:18:41
2020-10-22T19:18:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,825
hpp
#ifndef __server_entry_hpp__ #define __server_entry_hpp__ /* * Copyright (c) 2016, Anonymous Institution. * 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 University 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 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY * WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include <boost/shared_ptr.hpp> #include "common/router-handler.hpp" using std::string; using std::vector; using std::cerr; using std::cout; using std::endl; using boost::shared_ptr; class ServerThreadEntry { uint channel_id; uint num_channels; uint process_id; uint num_processes; boost::shared_ptr<zmq::context_t> zmq_ctx; GeePsConfig config; public: ServerThreadEntry( uint channel_id, uint num_channels, uint process_id, uint num_processes, boost::shared_ptr<zmq::context_t> zmq_ctx, const GeePsConfig& config) : channel_id(channel_id), num_channels(num_channels), process_id(process_id), num_processes(num_processes), zmq_ctx(zmq_ctx), config(config) { } void operator()() { server_entry( channel_id, num_channels, process_id, num_processes, zmq_ctx, config); } private: void server_entry( uint channel_id, uint num_channels, uint process_id, uint num_processes, shared_ptr<zmq::context_t> zmq_ctx, const GeePsConfig& config); }; #endif // defined __server_entry_hpp__
[ "kevhsieh@microsoft.com" ]
kevhsieh@microsoft.com
c7d28dbd791f6436164bc305858645b5b24e29ca
0358887bf64831f158c278a5c0cce18e94751d1a
/gardenDrone/Pumps.ino
07a4448a1cd89ca503ac880ea02cc105fad017dc
[]
no_license
disgustipated/GardenDrone
fb16663a5b50467af2e09a0ad49bd35e4e2b8a6d
c073e0ef5c78363c1177d449d0cd5aed58ec0cdf
refs/heads/master
2023-06-21T15:15:33.748703
2021-07-24T18:02:43
2021-07-24T18:02:43
387,055,282
0
0
null
null
null
null
UTF-8
C++
false
false
768
ino
void pumpRunning() { //should the pump be running currMillis = millis(); if ((digitalRead(PUMP_ACTIVATE_PIN) == LOW) && (currMillis > (deviceActivateStart + ACTIVATE_DURATION))){ stopPump(); } } void activatePump() { deviceActivateStart = millis(); server.send(200,"text/plain", "OK"); Serial.print("Activating deviceActivateStart = "); Serial.println(deviceActivateStart); Serial.println(deviceActivateStart + ACTIVATE_DURATION); digitalWrite(PUMP_ACTIVATE_PIN, LOW); //reversed these to prevent relay from going on during a reboot digitalWrite(WIFI_INFO_LED_PIN,LOW); } void stopPump() { Serial.println("Stopping pump"); digitalWrite(PUMP_ACTIVATE_PIN, HIGH); digitalWrite(WIFI_INFO_LED_PIN,HIGH); }
[ "disgustipated@erasethis.net" ]
disgustipated@erasethis.net
682a79f51b9225367e99ccc19bae5646d9127779
775a3fc6e96d50b2f2782d92be72bdc6170f22b7
/Arcade/The Core/37-first-reverse-try.cpp
54650e5edfe2b6accd7b67ed7562c3dad1dbaaa7
[]
no_license
son2005/CoFi
3f9e4ef1778c6e246199cae7a69bbb0b08e2567f
d76ba175f240d0018f879a636c0c91fc413e0d6f
refs/heads/master
2021-06-02T14:01:06.322261
2021-02-06T16:03:31
2021-02-06T16:03:31
94,472,532
1
0
null
null
null
null
UTF-8
C++
false
false
226
cpp
// https://codefights.com/arcade/code-arcade/list-forest-edge/ND8nghbndTNKPP4Tb std::vector<int> firstReverseTry(std::vector<int> arr) { if(arr.size() > 1) std::swap(arr[0], arr[arr.size() - 1]); return arr; }
[ "tranbaoson2005@gmail.com" ]
tranbaoson2005@gmail.com
7e77c55428f5ebc5b214b741cc9f932e1beba19d
9250c1e4685b1bfb689325f2a3c58e933e738791
/src/libs/fortD/irregAnalysis/Mall.h
bb547584ee1452be7c7f6114f77f606b5180108b
[]
no_license
canliture/DSystem
a58ba3ca867b16a69cd0e35125aeb66f20641f96
7810a6423ae4435d336374195743e1f0cec94b0c
refs/heads/master
2023-03-15T22:54:11.021114
2020-11-17T18:08:36
2020-11-17T18:08:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,294
h
/* $Id: Mall.h,v 1.3 1997/03/11 14:28:32 carr Exp $ */ /******************************************************************************/ /* Copyright (c) 1990, 1991, 1992, 1993, 1994 Rice University */ /* All Rights Reserved */ /******************************************************************************/ #ifndef Mall_h #define Mall_h /********************************************************************** * class Mall */ /********************************************************************** * Revision History: * $Log: Mall.h,v $ * Revision 1.3 1997/03/11 14:28:32 carr * newly checked in as revision 1.3 * * Revision 1.3 94/03/21 13:02:26 patton * fixed comment problem * * Revision 1.2 94/02/27 20:14:37 reinhard * Added value-based distributions. * Make CC happy. * See /home/reinhard/rn/zzzgroup_src/libs/fort_d/irreg files for details. * * Revision 1.3 1994/02/27 19:44:05 reinhard * Tweaks to make CC happy. * * Revision 1.2 1994/01/18 19:49:45 reinhard * Updated include paths according to Makefile change. * Handle value-based distributions. * * Revision 1.1 1993/09/25 15:39:09 reinhard * Initial revision * */ #ifndef context_h #include <libs/support/database/context.h> #endif #ifndef FortTextTree_h #include <libs/frontEnd/fortTextTree/FortTextTree.h> #endif //#ifndef Str_ht_h //#include <Str_ht.h> //#endif #ifndef forttypes_h #include <libs/frontEnd/ast/forttypes.h> #endif /*-------------------- EXTERNAL DECLARATIONS ----------------*/ class IrrSymTab; class NamedGenericTable; /*------------------- TYPES ---------------------------------*/ // The different types to be allocated dynamically typedef int MallType; // The different extensions for newly created variables enum ExtType { TypeIndex, // "i$type", "f$type" WorkArray, // "i$wrk" WorkArraySize, // "i$wrk_size" Index, // "x$ind" Size, // "x$size" NewSizeTemp // "$newsize" }; /*------------------- CONSTANTS -----------------------------*/ // Based on include/fort/forttypes.h static const int MallType_cnt = TYPE_LOGICAL + 2; extern const char *MallType_names[]; extern const char *MallType_prefix_strs[]; extern const char MallType_prefixes[]; extern const int MallType_asts[]; extern const char *Ext_names[]; /********************************************************************** * class Mall_entry declaration */ class Mall_entry { public: Mall_entry(const char *my_name, // Constructor const char *my_index_id, const char *my_size_id, int my_type); ~Mall_entry(); // Destructor // Access functions const char *getName() const { return name; } const char *getIndex_id() const { return index_id; } const char *getSize_id() const { return size_id; } int getType() const { return type; } private: const char *index_id; // "x$ind" const char *name; // "x" const char *size_id; // "x$size" int type; // "1" = Integer }; /********************************************************************** * class Mall declaration */ class Mall { public: Mall(); // Constructor ~Mall(); // Destructor // Access functions AST_INDEX getRoot_node() const { return root_node; } void convert(FortTree my_ft, FortTextTree my_ftt, IrrSymTab *my_st = NULL); private: Boolean check_module (); // (Type-)check module void find_init_calls(); // Find initialization calls void find_alloc_calls(); // Find allocation calls Mall_entry *gen_alloc(int type, // Generate alloc const char *name, AST_INDEX size_node, AST_INDEX &stmt_node); void find_resize_calls(); // Find resizing calls void convert_refs(); // Convert references void delete_decls(); // Delete extra declarations int prefix2type(char prefix); // Map prefix to type Boolean is_mall_call(AST_INDEX node, const char *pattern, int arg_cnt, int &type, AST_INDEX &args_list); // Private fields NamedGenericTable *dyn_arrs; // Set of dynamic arrays AST_INDEX free_node; // Node for deallocation calls FortTree ft; // Fortran tree FortTextTree ftt; // Text/structure of FortTree AST_INDEX init_node[MallType_cnt]; // Node for init calls const char *new_size_temp_name; // "$newsize" Boolean own_st; // We have our own st AST_INDEX root_node; // Root of program AST IrrSymTab *st; // Access to symbol table info const char *type_ident_name[MallType_cnt]; // "i$type" const char *wrk_ident_name[MallType_cnt]; // "i$wrk" AST_INDEX wrk_ident_node[MallType_cnt]; // "i$wrk" const char *wrk_size_name[MallType_cnt]; // "i$wrk_size" AST_INDEX wrk_size_node[MallType_cnt]; // "i$wrk_size" }; typedef Mall *Mall_ptr; // IrrSymTab.h included at end (instead of beginning) to avoid dep cycle //#ifndef IrrSymTab_h //#include <libs/fort_d/irreg/IrrSymTab.h> //#endif #endif
[ "carr" ]
carr
8524179c71d09259afc5b3dd599dfeed9cf702ee
44a87947d68f9b03aa49e3a730a82f896d11f02d
/src/util.cpp
8a80f9b351579dfd6babf1e6ce48af289bf1d515
[ "MIT" ]
permissive
gamacoin2017/newgamacoin
9df4bd0e3a7bcf2c1120b78b786c92d792a66908
ba87ed439ec33f7ca66c3b2f52d6baa0aa38b5ec
refs/heads/master
2021-09-01T03:41:47.638587
2017-12-24T15:08:35
2017-12-24T15:08:35
115,270,317
0
0
null
null
null
null
UTF-8
C++
false
false
43,213
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef WIN32 // for posix_fallocate #ifdef __linux__ #define _POSIX_C_SOURCE 200112L #endif #include <fcntl.h> #include <sys/stat.h> #include <sys/resource.h> #endif #include "util.h" #include "sync.h" #include "version.h" #include "ui_interface.h" #include <boost/algorithm/string/join.hpp> #include <boost/algorithm/string/case_conv.hpp> // for to_lower() #include <boost/algorithm/string/predicate.hpp> // for startswith() and endswith() // Work around clang compilation problem in Boost 1.46: // /usr/include/boost/program_options/detail/config_file.hpp:163:17: error: call to function 'to_internal' that is neither visible in the template definition nor found by argument-dependent lookup // See also: http://stackoverflow.com/questions/10020179/compilation-fail-in-boost-librairies-program-options // http://clang.debian.net/status.php?version=3.0&key=CANNOT_FIND_FUNCTION namespace boost { namespace program_options { std::string to_internal(const std::string&); } } #include <boost/program_options/detail/config_file.hpp> #include <boost/program_options/parsers.hpp> #include <boost/filesystem.hpp> #include <boost/filesystem/fstream.hpp> #include <boost/foreach.hpp> #include <boost/thread.hpp> #include <openssl/crypto.h> #include <openssl/rand.h> #include <stdarg.h> #ifdef WIN32 #ifdef _MSC_VER #pragma warning(disable:4786) #pragma warning(disable:4804) #pragma warning(disable:4805) #pragma warning(disable:4717) #endif #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 <io.h> /* for _commit */ #include "shlobj.h" #elif defined(__linux__) # include <sys/prctl.h> #endif using namespace std; map<string, string> mapArgs; map<string, vector<string> > mapMultiArgs; bool fDebug = false; bool fDebugNet = false; bool fPrintToConsole = false; bool fPrintToDebugger = false; bool fDaemon = false; bool fServer = false; bool fCommandLine = false; string strMiscWarning; bool fTestNet = false; bool fBloomFilters = true; bool fNoListen = false; bool fLogTimestamps = false; CMedianFilter<int64> vTimeOffsets(200,0); volatile bool fReopenDebugLog = false; bool fCachedPath[2] = {false, false}; // Init OpenSSL library multithreading support static CCriticalSection** ppmutexOpenSSL; void locking_callback(int mode, int i, const char* file, int line) { if (mode & CRYPTO_LOCK) { ENTER_CRITICAL_SECTION(*ppmutexOpenSSL[i]); } else { LEAVE_CRITICAL_SECTION(*ppmutexOpenSSL[i]); } } LockedPageManager LockedPageManager::instance; // Init class CInit { public: CInit() { // Init OpenSSL library multithreading support ppmutexOpenSSL = (CCriticalSection**)OPENSSL_malloc(CRYPTO_num_locks() * sizeof(CCriticalSection*)); for (int i = 0; i < CRYPTO_num_locks(); i++) ppmutexOpenSSL[i] = new CCriticalSection(); CRYPTO_set_locking_callback(locking_callback); #ifdef WIN32 // Seed random number generator with screen scrape and other hardware sources RAND_screen(); #endif // Seed random number generator with performance counter RandAddSeed(); } ~CInit() { // Shutdown OpenSSL library multithreading support CRYPTO_set_locking_callback(NULL); for (int i = 0; i < CRYPTO_num_locks(); i++) delete ppmutexOpenSSL[i]; OPENSSL_free(ppmutexOpenSSL); } } instance_of_cinit; void RandAddSeed() { // Seed with CPU performance counter int64 nCounter = GetPerformanceCounter(); RAND_add(&nCounter, sizeof(nCounter), 1.5); memset(&nCounter, 0, sizeof(nCounter)); } void RandAddSeedPerfmon() { RandAddSeed(); // This can take up to 2 seconds, so only do it every 10 minutes static int64 nLastPerfmon; if (GetTime() < nLastPerfmon + 10 * 60) return; nLastPerfmon = GetTime(); #ifdef WIN32 // Don't need this on Linux, OpenSSL automatically uses /dev/urandom // Seed with the entire set of perfmon data unsigned char pdata[250000]; memset(pdata, 0, sizeof(pdata)); unsigned long nSize = sizeof(pdata); long ret = RegQueryValueExA(HKEY_PERFORMANCE_DATA, "Global", NULL, NULL, pdata, &nSize); RegCloseKey(HKEY_PERFORMANCE_DATA); if (ret == ERROR_SUCCESS) { RAND_add(pdata, nSize, nSize/100.0); OPENSSL_cleanse(pdata, nSize); printf("RandAddSeed() %lu bytes\n", nSize); } #endif } uint64 GetRand(uint64 nMax) { if (nMax == 0) return 0; // The range of the random source must be a multiple of the modulus // to give every possible output value an equal possibility uint64 nRange = (std::numeric_limits<uint64>::max() / nMax) * nMax; uint64 nRand = 0; do RAND_bytes((unsigned char*)&nRand, sizeof(nRand)); while (nRand >= nRange); return (nRand % nMax); } int GetRandInt(int nMax) { return GetRand(nMax); } uint256 GetRandHash() { uint256 hash; RAND_bytes((unsigned char*)&hash, sizeof(hash)); return hash; } // // OutputDebugStringF (aka printf -- there is a #define that we really // should get rid of one day) has been broken a couple of times now // by well-meaning people adding mutexes in the most straightforward way. // It breaks because it may be called by global destructors during shutdown. // Since the order of destruction of static/global objects is undefined, // defining a mutex as a global object doesn't work (the mutex gets // destroyed, and then some later destructor calls OutputDebugStringF, // maybe indirectly, and you get a core dump at shutdown trying to lock // the mutex). static boost::once_flag debugPrintInitFlag = BOOST_ONCE_INIT; // We use boost::call_once() to make sure these are initialized in // in a thread-safe manner the first time it is called: static FILE* fileout = NULL; static boost::mutex* mutexDebugLog = NULL; static void DebugPrintInit() { assert(fileout == NULL); assert(mutexDebugLog == NULL); boost::filesystem::path pathDebug = GetDataDir() / "debug.log"; fileout = fopen(pathDebug.string().c_str(), "a"); if (fileout) setbuf(fileout, NULL); // unbuffered mutexDebugLog = new boost::mutex(); } int OutputDebugStringF(const char* pszFormat, ...) { int ret = 0; // Returns total number of characters written if (fPrintToConsole) { // print to console va_list arg_ptr; va_start(arg_ptr, pszFormat); ret += vprintf(pszFormat, arg_ptr); va_end(arg_ptr); } else if (!fPrintToDebugger) { static bool fStartedNewLine = true; boost::call_once(&DebugPrintInit, debugPrintInitFlag); if (fileout == NULL) return ret; boost::mutex::scoped_lock scoped_lock(*mutexDebugLog); // reopen the log file, if requested if (fReopenDebugLog) { fReopenDebugLog = false; boost::filesystem::path pathDebug = GetDataDir() / "debug.log"; if (freopen(pathDebug.string().c_str(),"a",fileout) != NULL) setbuf(fileout, NULL); // unbuffered } // Debug print useful for profiling if (fLogTimestamps && fStartedNewLine) ret += fprintf(fileout, "%s ", DateTimeStrFormat("%Y-%m-%d %H:%M:%S", GetTime()).c_str()); if (pszFormat[strlen(pszFormat) - 1] == '\n') fStartedNewLine = true; else fStartedNewLine = false; va_list arg_ptr; va_start(arg_ptr, pszFormat); ret += vfprintf(fileout, pszFormat, arg_ptr); va_end(arg_ptr); } #ifdef WIN32 if (fPrintToDebugger) { static CCriticalSection cs_OutputDebugStringF; // accumulate and output a line at a time { LOCK(cs_OutputDebugStringF); static std::string buffer; va_list arg_ptr; va_start(arg_ptr, pszFormat); buffer += vstrprintf(pszFormat, arg_ptr); va_end(arg_ptr); int line_start = 0, line_end; while((line_end = buffer.find('\n', line_start)) != -1) { OutputDebugStringA(buffer.substr(line_start, line_end - line_start).c_str()); line_start = line_end + 1; ret += line_end-line_start; } buffer.erase(0, line_start); } } #endif return ret; } string vstrprintf(const char *format, va_list ap) { char buffer[50000]; char* p = buffer; int limit = sizeof(buffer); int ret; loop { va_list arg_ptr; va_copy(arg_ptr, ap); #ifdef WIN32 ret = _vsnprintf(p, limit, format, arg_ptr); #else ret = vsnprintf(p, limit, format, arg_ptr); #endif va_end(arg_ptr); if (ret >= 0 && ret < limit) break; if (p != buffer) delete[] p; limit *= 2; p = new char[limit]; if (p == NULL) throw std::bad_alloc(); } string str(p, p+ret); if (p != buffer) delete[] p; return str; } string real_strprintf(const char *format, int dummy, ...) { va_list arg_ptr; va_start(arg_ptr, dummy); string str = vstrprintf(format, arg_ptr); va_end(arg_ptr); return str; } string real_strprintf(const std::string &format, int dummy, ...) { va_list arg_ptr; va_start(arg_ptr, dummy); string str = vstrprintf(format.c_str(), arg_ptr); va_end(arg_ptr); return str; } bool error(const char *format, ...) { va_list arg_ptr; va_start(arg_ptr, format); std::string str = vstrprintf(format, arg_ptr); va_end(arg_ptr); printf("ERROR: %s\n", str.c_str()); return false; } void ParseString(const string& str, char c, vector<string>& v) { if (str.empty()) return; string::size_type i1 = 0; string::size_type i2; loop { i2 = str.find(c, i1); if (i2 == str.npos) { v.push_back(str.substr(i1)); return; } v.push_back(str.substr(i1, i2-i1)); i1 = i2+1; } } string FormatMoney(int64 n, bool fPlus) { // Note: not using straight sprintf here because we do NOT want // localized number formatting. int64 n_abs = (n > 0 ? n : -n); int64 quotient = n_abs/COIN; int64 remainder = n_abs%COIN; string str = strprintf("%"PRI64d".%08"PRI64d, quotient, remainder); // Right-trim excess zeros before the decimal point: int nTrim = 0; for (int i = str.size()-1; (str[i] == '0' && isdigit(str[i-2])); --i) ++nTrim; if (nTrim) str.erase(str.size()-nTrim, nTrim); if (n < 0) str.insert((unsigned int)0, 1, '-'); else if (fPlus && n > 0) str.insert((unsigned int)0, 1, '+'); return str; } bool ParseMoney(const string& str, int64& nRet) { return ParseMoney(str.c_str(), nRet); } bool ParseMoney(const char* pszIn, int64& nRet) { string strWhole; int64 nUnits = 0; const char* p = pszIn; while (isspace(*p)) p++; for (; *p; p++) { if (*p == '.') { p++; int64 nMult = CENT*10; while (isdigit(*p) && (nMult > 0)) { nUnits += nMult * (*p++ - '0'); nMult /= 10; } break; } if (isspace(*p)) break; if (!isdigit(*p)) return false; strWhole.insert(strWhole.end(), *p); } for (; *p; p++) if (!isspace(*p)) return false; if (strWhole.size() > 10) // guard against 63 bit overflow return false; if (nUnits < 0 || nUnits > COIN) return false; int64 nWhole = atoi64(strWhole); int64 nValue = nWhole*COIN + nUnits; nRet = nValue; return true; } // safeChars chosen to allow simple messages/URLs/email addresses, but avoid anything // even possibly remotely dangerous like & or > static string safeChars("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890 .,;_/:?@"); string SanitizeString(const string& str) { string strResult; for (std::string::size_type i = 0; i < str.size(); i++) { if (safeChars.find(str[i]) != std::string::npos) strResult.push_back(str[i]); } return strResult; } static const signed char phexdigit[256] = { -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, 0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1, -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, }; bool IsHex(const string& str) { BOOST_FOREACH(unsigned char c, str) { if (phexdigit[c] < 0) return false; } return (str.size() > 0) && (str.size()%2 == 0); } vector<unsigned char> ParseHex(const char* psz) { // convert hex dump to vector vector<unsigned char> vch; loop { while (isspace(*psz)) psz++; signed char c = phexdigit[(unsigned char)*psz++]; if (c == (signed char)-1) break; unsigned char n = (c << 4); c = phexdigit[(unsigned char)*psz++]; if (c == (signed char)-1) break; n |= c; vch.push_back(n); } return vch; } vector<unsigned char> ParseHex(const string& str) { return ParseHex(str.c_str()); } static void InterpretNegativeSetting(string name, map<string, string>& mapSettingsRet) { // interpret -nofoo as -foo=0 (and -nofoo=0 as -foo=1) as long as -foo not set if (name.find("-no") == 0) { std::string positive("-"); positive.append(name.begin()+3, name.end()); if (mapSettingsRet.count(positive) == 0) { bool value = !GetBoolArg(name); mapSettingsRet[positive] = (value ? "1" : "0"); } } } void ParseParameters(int argc, const char* const argv[]) { mapArgs.clear(); mapMultiArgs.clear(); for (int i = 1; i < argc; i++) { std::string str(argv[i]); std::string strValue; size_t is_index = str.find('='); if (is_index != std::string::npos) { strValue = str.substr(is_index+1); str = str.substr(0, is_index); } #ifdef WIN32 boost::to_lower(str); if (boost::algorithm::starts_with(str, "/")) str = "-" + str.substr(1); #endif if (str[0] != '-') break; mapArgs[str] = strValue; mapMultiArgs[str].push_back(strValue); } // New 0.6 features: BOOST_FOREACH(const PAIRTYPE(string,string)& entry, mapArgs) { string name = entry.first; // interpret --foo as -foo (as long as both are not set) if (name.find("--") == 0) { std::string singleDash(name.begin()+1, name.end()); if (mapArgs.count(singleDash) == 0) mapArgs[singleDash] = entry.second; name = singleDash; } // interpret -nofoo as -foo=0 (and -nofoo=0 as -foo=1) as long as -foo not set InterpretNegativeSetting(name, mapArgs); } } std::string GetArg(const std::string& strArg, const std::string& strDefault) { if (mapArgs.count(strArg)) return mapArgs[strArg]; return strDefault; } int64 GetArg(const std::string& strArg, int64 nDefault) { if (mapArgs.count(strArg)) return atoi64(mapArgs[strArg]); return nDefault; } bool GetBoolArg(const std::string& strArg, bool fDefault) { if (mapArgs.count(strArg)) { if (mapArgs[strArg].empty()) return true; return (atoi(mapArgs[strArg]) != 0); } return fDefault; } bool SoftSetArg(const std::string& strArg, const std::string& strValue) { if (mapArgs.count(strArg)) return false; mapArgs[strArg] = strValue; return true; } bool SoftSetBoolArg(const std::string& strArg, bool fValue) { if (fValue) return SoftSetArg(strArg, std::string("1")); else return SoftSetArg(strArg, std::string("0")); } string EncodeBase64(const unsigned char* pch, size_t len) { static const char *pbase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; string strRet=""; strRet.reserve((len+2)/3*4); int mode=0, left=0; const unsigned char *pchEnd = pch+len; while (pch<pchEnd) { int enc = *(pch++); switch (mode) { case 0: // we have no bits strRet += pbase64[enc >> 2]; left = (enc & 3) << 4; mode = 1; break; case 1: // we have two bits strRet += pbase64[left | (enc >> 4)]; left = (enc & 15) << 2; mode = 2; break; case 2: // we have four bits strRet += pbase64[left | (enc >> 6)]; strRet += pbase64[enc & 63]; mode = 0; break; } } if (mode) { strRet += pbase64[left]; strRet += '='; if (mode == 1) strRet += '='; } return strRet; } string EncodeBase64(const string& str) { return EncodeBase64((const unsigned char*)str.c_str(), str.size()); } vector<unsigned char> DecodeBase64(const char* p, bool* pfInvalid) { static const int decode64_table[256] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; if (pfInvalid) *pfInvalid = false; vector<unsigned char> vchRet; vchRet.reserve(strlen(p)*3/4); int mode = 0; int left = 0; while (1) { int dec = decode64_table[(unsigned char)*p]; if (dec == -1) break; p++; switch (mode) { case 0: // we have no bits and get 6 left = dec; mode = 1; break; case 1: // we have 6 bits and keep 4 vchRet.push_back((left<<2) | (dec>>4)); left = dec & 15; mode = 2; break; case 2: // we have 4 bits and get 6, we keep 2 vchRet.push_back((left<<4) | (dec>>2)); left = dec & 3; mode = 3; break; case 3: // we have 2 bits and get 6 vchRet.push_back((left<<6) | dec); mode = 0; break; } } if (pfInvalid) switch (mode) { case 0: // 4n base64 characters processed: ok break; case 1: // 4n+1 base64 character processed: impossible *pfInvalid = true; break; case 2: // 4n+2 base64 characters processed: require '==' if (left || p[0] != '=' || p[1] != '=' || decode64_table[(unsigned char)p[2]] != -1) *pfInvalid = true; break; case 3: // 4n+3 base64 characters processed: require '=' if (left || p[0] != '=' || decode64_table[(unsigned char)p[1]] != -1) *pfInvalid = true; break; } return vchRet; } string DecodeBase64(const string& str) { vector<unsigned char> vchRet = DecodeBase64(str.c_str()); return string((const char*)&vchRet[0], vchRet.size()); } string EncodeBase32(const unsigned char* pch, size_t len) { static const char *pbase32 = "abcdefghijklmnopqrstuvwxyz234567"; string strRet=""; strRet.reserve((len+4)/5*8); int mode=0, left=0; const unsigned char *pchEnd = pch+len; while (pch<pchEnd) { int enc = *(pch++); switch (mode) { case 0: // we have no bits strRet += pbase32[enc >> 3]; left = (enc & 7) << 2; mode = 1; break; case 1: // we have three bits strRet += pbase32[left | (enc >> 6)]; strRet += pbase32[(enc >> 1) & 31]; left = (enc & 1) << 4; mode = 2; break; case 2: // we have one bit strRet += pbase32[left | (enc >> 4)]; left = (enc & 15) << 1; mode = 3; break; case 3: // we have four bits strRet += pbase32[left | (enc >> 7)]; strRet += pbase32[(enc >> 2) & 31]; left = (enc & 3) << 3; mode = 4; break; case 4: // we have two bits strRet += pbase32[left | (enc >> 5)]; strRet += pbase32[enc & 31]; mode = 0; } } static const int nPadding[5] = {0, 6, 4, 3, 1}; if (mode) { strRet += pbase32[left]; for (int n=0; n<nPadding[mode]; n++) strRet += '='; } return strRet; } string EncodeBase32(const string& str) { return EncodeBase32((const unsigned char*)str.c_str(), str.size()); } vector<unsigned char> DecodeBase32(const char* p, bool* pfInvalid) { static const int decode32_table[256] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; if (pfInvalid) *pfInvalid = false; vector<unsigned char> vchRet; vchRet.reserve((strlen(p))*5/8); int mode = 0; int left = 0; while (1) { int dec = decode32_table[(unsigned char)*p]; if (dec == -1) break; p++; switch (mode) { case 0: // we have no bits and get 5 left = dec; mode = 1; break; case 1: // we have 5 bits and keep 2 vchRet.push_back((left<<3) | (dec>>2)); left = dec & 3; mode = 2; break; case 2: // we have 2 bits and keep 7 left = left << 5 | dec; mode = 3; break; case 3: // we have 7 bits and keep 4 vchRet.push_back((left<<1) | (dec>>4)); left = dec & 15; mode = 4; break; case 4: // we have 4 bits, and keep 1 vchRet.push_back((left<<4) | (dec>>1)); left = dec & 1; mode = 5; break; case 5: // we have 1 bit, and keep 6 left = left << 5 | dec; mode = 6; break; case 6: // we have 6 bits, and keep 3 vchRet.push_back((left<<2) | (dec>>3)); left = dec & 7; mode = 7; break; case 7: // we have 3 bits, and keep 0 vchRet.push_back((left<<5) | dec); mode = 0; break; } } if (pfInvalid) switch (mode) { case 0: // 8n base32 characters processed: ok break; case 1: // 8n+1 base32 characters processed: impossible case 3: // +3 case 6: // +6 *pfInvalid = true; break; case 2: // 8n+2 base32 characters processed: require '======' if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || p[4] != '=' || p[5] != '=' || decode32_table[(unsigned char)p[6]] != -1) *pfInvalid = true; break; case 4: // 8n+4 base32 characters processed: require '====' if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || decode32_table[(unsigned char)p[4]] != -1) *pfInvalid = true; break; case 5: // 8n+5 base32 characters processed: require '===' if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || decode32_table[(unsigned char)p[3]] != -1) *pfInvalid = true; break; case 7: // 8n+7 base32 characters processed: require '=' if (left || p[0] != '=' || decode32_table[(unsigned char)p[1]] != -1) *pfInvalid = true; break; } return vchRet; } string DecodeBase32(const string& str) { vector<unsigned char> vchRet = DecodeBase32(str.c_str()); return string((const char*)&vchRet[0], vchRet.size()); } bool WildcardMatch(const char* psz, const char* mask) { loop { switch (*mask) { case '\0': return (*psz == '\0'); case '*': return WildcardMatch(psz, mask+1) || (*psz && WildcardMatch(psz+1, mask)); case '?': if (*psz == '\0') return false; break; default: if (*psz != *mask) return false; break; } psz++; mask++; } } bool WildcardMatch(const string& str, const string& mask) { return WildcardMatch(str.c_str(), mask.c_str()); } static std::string FormatException(std::exception* pex, const char* pszThread) { #ifdef WIN32 char pszModule[MAX_PATH] = ""; GetModuleFileNameA(NULL, pszModule, sizeof(pszModule)); #else const char* pszModule = "gamacoin"; #endif if (pex) return strprintf( "EXCEPTION: %s \n%s \n%s in %s \n", typeid(*pex).name(), pex->what(), pszModule, pszThread); else return strprintf( "UNKNOWN EXCEPTION \n%s in %s \n", pszModule, pszThread); } void LogException(std::exception* pex, const char* pszThread) { std::string message = FormatException(pex, pszThread); printf("\n%s", message.c_str()); } void PrintException(std::exception* pex, const char* pszThread) { std::string message = FormatException(pex, pszThread); printf("\n\n************************\n%s\n", message.c_str()); fprintf(stderr, "\n\n************************\n%s\n", message.c_str()); strMiscWarning = message; throw; } void PrintExceptionContinue(std::exception* pex, const char* pszThread) { std::string message = FormatException(pex, pszThread); printf("\n\n************************\n%s\n", message.c_str()); fprintf(stderr, "\n\n************************\n%s\n", message.c_str()); strMiscWarning = message; } boost::filesystem::path GetDefaultDataDir() { namespace fs = boost::filesystem; // Windows < Vista: C:\Documents and Settings\Username\Application Data\Bitcoin // Windows >= Vista: C:\Users\Username\AppData\Roaming\Bitcoin // Mac: ~/Library/Application Support/Bitcoin // Unix: ~/.bitcoin #ifdef WIN32 // Windows return GetSpecialFolderPath(CSIDL_APPDATA) / "Gamacoin"; #else fs::path pathRet; char* pszHome = getenv("HOME"); if (pszHome == NULL || strlen(pszHome) == 0) pathRet = fs::path("/"); else pathRet = fs::path(pszHome); #ifdef MAC_OSX // Mac pathRet /= "Library/Application Support"; fs::create_directory(pathRet); return pathRet / "Gamacoin"; #else // Unix return pathRet / ".gamacoin"; #endif #endif } const boost::filesystem::path &GetDataDir(bool fNetSpecific) { namespace fs = boost::filesystem; static fs::path pathCached[2]; static CCriticalSection csPathCached; fs::path &path = pathCached[fNetSpecific]; // This can be called during exceptions by printf, so we cache the // value so we don't have to do memory allocations after that. if (fCachedPath[fNetSpecific]) return path; LOCK(csPathCached); if (mapArgs.count("-datadir")) { path = fs::system_complete(mapArgs["-datadir"]); if (!fs::is_directory(path)) { path = ""; return path; } } else { path = GetDefaultDataDir(); } if (fNetSpecific && GetBoolArg("-testnet", false)) path /= "testnet3"; fs::create_directories(path); fCachedPath[fNetSpecific] = true; return path; } boost::filesystem::path GetConfigFile() { boost::filesystem::path pathConfigFile(GetArg("-conf", "gamacoin.conf")); if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile; return pathConfigFile; } void ReadConfigFile(map<string, string>& mapSettingsRet, map<string, vector<string> >& mapMultiSettingsRet) { boost::filesystem::ifstream streamConfig(GetConfigFile()); if (!streamConfig.good()) return; // No bitcoin.conf file is OK // clear path cache after loading config file fCachedPath[0] = fCachedPath[1] = false; set<string> setOptions; setOptions.insert("*"); for (boost::program_options::detail::config_file_iterator it(streamConfig, setOptions), end; it != end; ++it) { // Don't overwrite existing settings so command line settings override bitcoin.conf string strKey = string("-") + it->string_key; if (mapSettingsRet.count(strKey) == 0) { mapSettingsRet[strKey] = it->value[0]; // interpret nofoo=1 as foo=0 (and nofoo=0 as foo=1) as long as foo not set) InterpretNegativeSetting(strKey, mapSettingsRet); } mapMultiSettingsRet[strKey].push_back(it->value[0]); } } boost::filesystem::path GetPidFile() { boost::filesystem::path pathPidFile(GetArg("-pid", "gamacoind.pid")); if (!pathPidFile.is_complete()) pathPidFile = GetDataDir() / pathPidFile; return pathPidFile; } #ifndef WIN32 void CreatePidFile(const boost::filesystem::path &path, pid_t pid) { FILE* file = fopen(path.string().c_str(), "w"); if (file) { fprintf(file, "%d\n", pid); fclose(file); } } #endif bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest) { #ifdef WIN32 return MoveFileExA(src.string().c_str(), dest.string().c_str(), MOVEFILE_REPLACE_EXISTING); #else int rc = std::rename(src.string().c_str(), dest.string().c_str()); return (rc == 0); #endif /* WIN32 */ } void FileCommit(FILE *fileout) { fflush(fileout); // harmless if redundantly called #ifdef WIN32 _commit(_fileno(fileout)); #else #if defined(__linux__) || defined(__NetBSD__) fdatasync(fileno(fileout)); #elif defined(__APPLE__) && defined(F_FULLFSYNC) fcntl(fileno(fileout), F_FULLFSYNC, 0); #else fsync(fileno(fileout)); #endif #endif } int GetFilesize(FILE* file) { int nSavePos = ftell(file); int nFilesize = -1; if (fseek(file, 0, SEEK_END) == 0) nFilesize = ftell(file); fseek(file, nSavePos, SEEK_SET); return nFilesize; } bool TruncateFile(FILE *file, unsigned int length) { #if defined(WIN32) return _chsize(_fileno(file), length) == 0; #else return ftruncate(fileno(file), length) == 0; #endif } // this function tries to raise the file descriptor limit to the requested number. // It returns the actual file descriptor limit (which may be more or less than nMinFD) int RaiseFileDescriptorLimit(int nMinFD) { #if defined(WIN32) return 2048; #else struct rlimit limitFD; if (getrlimit(RLIMIT_NOFILE, &limitFD) != -1) { if (limitFD.rlim_cur < (rlim_t)nMinFD) { limitFD.rlim_cur = nMinFD; if (limitFD.rlim_cur > limitFD.rlim_max) limitFD.rlim_cur = limitFD.rlim_max; setrlimit(RLIMIT_NOFILE, &limitFD); getrlimit(RLIMIT_NOFILE, &limitFD); } return limitFD.rlim_cur; } return nMinFD; // getrlimit failed, assume it's fine #endif } // this function tries to make a particular range of a file allocated (corresponding to disk space) // it is advisory, and the range specified in the arguments will never contain live data void AllocateFileRange(FILE *file, unsigned int offset, unsigned int length) { #if defined(WIN32) // Windows-specific version HANDLE hFile = (HANDLE)_get_osfhandle(_fileno(file)); LARGE_INTEGER nFileSize; int64 nEndPos = (int64)offset + length; nFileSize.u.LowPart = nEndPos & 0xFFFFFFFF; nFileSize.u.HighPart = nEndPos >> 32; SetFilePointerEx(hFile, nFileSize, 0, FILE_BEGIN); SetEndOfFile(hFile); #elif defined(MAC_OSX) // OSX specific version fstore_t fst; fst.fst_flags = F_ALLOCATECONTIG; fst.fst_posmode = F_PEOFPOSMODE; fst.fst_offset = 0; fst.fst_length = (off_t)offset + length; fst.fst_bytesalloc = 0; if (fcntl(fileno(file), F_PREALLOCATE, &fst) == -1) { fst.fst_flags = F_ALLOCATEALL; fcntl(fileno(file), F_PREALLOCATE, &fst); } ftruncate(fileno(file), fst.fst_length); #elif defined(__linux__) // Version using posix_fallocate off_t nEndPos = (off_t)offset + length; posix_fallocate(fileno(file), 0, nEndPos); #else // Fallback version // TODO: just write one byte per block static const char buf[65536] = {}; fseek(file, offset, SEEK_SET); while (length > 0) { unsigned int now = 65536; if (length < now) now = length; fwrite(buf, 1, now, file); // allowed to fail; this function is advisory anyway length -= now; } #endif } void ShrinkDebugFile() { // Scroll debug.log if it's getting too big boost::filesystem::path pathLog = GetDataDir() / "debug.log"; FILE* file = fopen(pathLog.string().c_str(), "r"); if (file && GetFilesize(file) > 10 * 1000000) { // Restart the file with some of the end char pch[200000]; fseek(file, -sizeof(pch), SEEK_END); int nBytes = fread(pch, 1, sizeof(pch), file); fclose(file); file = fopen(pathLog.string().c_str(), "w"); if (file) { fwrite(pch, 1, nBytes, file); fclose(file); } } else if(file != NULL) fclose(file); } // // "Never go to sea with two chronometers; take one or three." // Our three time sources are: // - System clock // - Median of other nodes clocks // - The user (asking the user to fix the system clock if the first two disagree) // static int64 nMockTime = 0; // For unit testing int64 GetTime() { if (nMockTime) return nMockTime; return time(NULL); } void SetMockTime(int64 nMockTimeIn) { nMockTime = nMockTimeIn; } static int64 nTimeOffset = 0; int64 GetTimeOffset() { return nTimeOffset; } int64 GetAdjustedTime() { return GetTime() + GetTimeOffset(); } void AddTimeData(const CNetAddr& ip, int64 nTime) { int64 nOffsetSample = nTime - GetTime(); // Ignore duplicates static set<CNetAddr> setKnown; if (!setKnown.insert(ip).second) return; // Add data vTimeOffsets.input(nOffsetSample); printf("Added time data, samples %d, offset %+"PRI64d" (%+"PRI64d" minutes)\n", vTimeOffsets.size(), nOffsetSample, nOffsetSample/60); if (vTimeOffsets.size() >= 5 && vTimeOffsets.size() % 2 == 1) { int64 nMedian = vTimeOffsets.median(); std::vector<int64> vSorted = vTimeOffsets.sorted(); // Only let other nodes change our time by so much if (abs64(nMedian) < 35 * 60) // Gamacoin: changed maximum adjust to 35 mins to avoid letting peers change our time too much in case of an attack. { nTimeOffset = nMedian; } else { nTimeOffset = 0; static bool fDone; if (!fDone) { // If nobody has a time different than ours but within 5 minutes of ours, give a warning bool fMatch = false; BOOST_FOREACH(int64 nOffset, vSorted) if (nOffset != 0 && abs64(nOffset) < 5 * 60) fMatch = true; if (!fMatch) { fDone = true; string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Gamacoin will not work properly."); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING); } } } if (fDebug) { BOOST_FOREACH(int64 n, vSorted) printf("%+"PRI64d" ", n); printf("| "); } printf("nTimeOffset = %+"PRI64d" (%+"PRI64d" minutes)\n", nTimeOffset, nTimeOffset/60); } } uint32_t insecure_rand_Rz = 11; uint32_t insecure_rand_Rw = 11; void seed_insecure_rand(bool fDeterministic) { //The seed values have some unlikely fixed points which we avoid. if(fDeterministic) { insecure_rand_Rz = insecure_rand_Rw = 11; } else { uint32_t tmp; do { RAND_bytes((unsigned char*)&tmp, 4); } while(tmp == 0 || tmp == 0x9068ffffU); insecure_rand_Rz = tmp; do { RAND_bytes((unsigned char*)&tmp, 4); } while(tmp == 0 || tmp == 0x464fffffU); insecure_rand_Rw = tmp; } } string FormatVersion(int nVersion) { if (nVersion%100 == 0) return strprintf("%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100); else return strprintf("%d.%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100, nVersion%100); } string FormatFullVersion() { return CLIENT_BUILD; } // Format the subversion field according to BIP 14 spec (https://en.bitcoin.it/wiki/BIP_0014) std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments) { std::ostringstream ss; ss << "/"; ss << name << ":" << FormatVersion(nClientVersion); if (!comments.empty()) ss << "(" << boost::algorithm::join(comments, "; ") << ")"; ss << "/"; return ss.str(); } #ifdef WIN32 boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate) { namespace fs = boost::filesystem; char pszPath[MAX_PATH] = ""; if(SHGetSpecialFolderPathA(NULL, pszPath, nFolder, fCreate)) { return fs::path(pszPath); } printf("SHGetSpecialFolderPathA() failed, could not obtain requested path.\n"); return fs::path(""); } #endif boost::filesystem::path GetTempPath() { #if BOOST_FILESYSTEM_VERSION == 3 return boost::filesystem::temp_directory_path(); #else // TODO: remove when we don't support filesystem v2 anymore boost::filesystem::path path; #ifdef WIN32 char pszPath[MAX_PATH] = ""; if (GetTempPathA(MAX_PATH, pszPath)) path = boost::filesystem::path(pszPath); #else path = boost::filesystem::path("/tmp"); #endif if (path.empty() || !boost::filesystem::is_directory(path)) { printf("GetTempPath(): failed to find temp path\n"); return boost::filesystem::path(""); } return path; #endif } void runCommand(std::string strCommand) { int nErr = ::system(strCommand.c_str()); if (nErr) printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr); } void RenameThread(const char* name) { #if defined(PR_SET_NAME) // Only the first 15 characters are used (16 - NUL terminator) ::prctl(PR_SET_NAME, name, 0, 0, 0); #elif 0 && (defined(__FreeBSD__) || defined(__OpenBSD__)) // TODO: This is currently disabled because it needs to be verified to work // on FreeBSD or OpenBSD first. When verified the '0 &&' part can be // removed. pthread_set_name_np(pthread_self(), name); #elif defined(MAC_OSX) && defined(__MAC_OS_X_VERSION_MAX_ALLOWED) // pthread_setname_np is XCode 10.6-and-later #if __MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 pthread_setname_np(name); #endif #else // Prevent warnings for unused parameters... (void)name; #endif } bool NewThread(void(*pfn)(void*), void* parg) { try { boost::thread(pfn, parg); // thread detaches when out of scope } catch(boost::thread_resource_error &e) { printf("Error creating thread: %s\n", e.what()); return false; } return true; }
[ "aboutyou2017@gmail.com" ]
aboutyou2017@gmail.com
c897f324b8d7cc79b3debd14e454e5849d1a005d
15241b6d3d26379904dfdd2882cd79e2c0fa7c13
/src/SmallFBX/sfbxModel.cpp
b6cfd31566af5834cab6ac57f2d326ced537cde0
[ "MIT" ]
permissive
JiangKevin/SmallFBX
c6aa45fe11344e9943b924de2594f2d15240fa87
3feb94d7892395af5c70730f3fb0b8498a23682f
refs/heads/master
2023-03-27T12:32:49.458596
2021-03-25T12:38:03
2021-03-25T12:38:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,411
cpp
#include "pch.h" #include "sfbxInternal.h" #include "sfbxModel.h" #include "sfbxGeometry.h" #include "sfbxMaterial.h" namespace sfbx { ObjectClass NodeAttribute::getClass() const { return ObjectClass::NodeAttribute; } ObjectSubClass NullAttribute::getSubClass() const { return ObjectSubClass::Null; } ObjectSubClass RootAttribute::getSubClass() const { return ObjectSubClass::Root; } ObjectSubClass LimbNodeAttribute::getSubClass() const { return ObjectSubClass::LimbNode; } ObjectSubClass LightAttribute::getSubClass() const { return ObjectSubClass::Light; } ObjectSubClass CameraAttribute::getSubClass() const { return ObjectSubClass::Camera; } ObjectClass Model::getClass() const { return ObjectClass::Model; } void Model::importFBXObjects() { super::importFBXObjects(); auto n = getNode(); if (!n) return; EnumerateProperties(n, [this](Node* p) { auto get_int = [p]() -> int { if (GetPropertyCount(p) == 5) return GetPropertyValue<int32>(p, 4); #ifdef sfbxEnableLegacyFormatSupport else if (GetPropertyCount(p) == 4) { return GetPropertyValue<int32>(p, 3); } #endif return 0; }; auto get_float3 = [p]() -> float3 { if (GetPropertyCount(p) == 7) { return float3{ (float)GetPropertyValue<float64>(p, 4), (float)GetPropertyValue<float64>(p, 5), (float)GetPropertyValue<float64>(p, 6), }; } #ifdef sfbxEnableLegacyFormatSupport else if (GetPropertyCount(p) == 6) { return float3{ (float)GetPropertyValue<float64>(p, 3), (float)GetPropertyValue<float64>(p, 4), (float)GetPropertyValue<float64>(p, 5), }; } #endif return {}; }; auto pname = GetPropertyString(p); if (pname == sfbxS_Visibility) { m_visibility = GetPropertyValue<bool>(p, 4); } else if (pname == sfbxS_LclTranslation) m_position = get_float3(); else if (pname == sfbxS_RotationOrder) m_rotation_order = (RotationOrder)get_int(); else if (pname == sfbxS_PreRotation) m_pre_rotation = get_float3(); else if (pname == sfbxS_PostRotation) m_post_rotation = get_float3(); else if (pname == sfbxS_LclRotation) m_rotation = get_float3(); else if (pname == sfbxS_LclScale) m_scale = get_float3(); }); } #define sfbxVector3d(V) (float64)V.x, (float64)V.y, (float64)V.z void Model::exportFBXObjects() { super::exportFBXObjects(); auto n = getNode(); if (!n) return; // version n->createChild(sfbxS_Version, sfbxI_ModelVersion); auto properties = n->createChild(sfbxS_Properties70); // attribute properties->createChild(sfbxS_P, "DefaultAttributeIndex", "int", "Integer", "", 0); // position if (m_position != float3::zero()) properties->createChild(sfbxS_P, sfbxS_LclTranslation, sfbxS_LclTranslation, sfbxS_Empty, sfbxS_A, sfbxVector3d(m_position)); // rotation if (m_pre_rotation != float3::zero() || m_post_rotation != float3::zero() || m_rotation != float3::zero()) { // rotation active properties->createChild(sfbxS_P, sfbxS_RotationActive, sfbxS_bool, sfbxS_Empty, sfbxS_Empty, (int32)1); // rotation order if (m_rotation_order != RotationOrder::XYZ) properties->createChild(sfbxS_P, sfbxS_RotationOrder, sfbxS_RotationOrder, sfbxS_Empty, sfbxS_A, (int32)m_rotation_order); // pre-rotation if (m_pre_rotation != float3::zero()) properties->createChild(sfbxS_P, sfbxS_PreRotation, sfbxS_Vector3D, sfbxS_Vector, sfbxS_Empty, sfbxVector3d(m_pre_rotation)); // post-rotation if (m_post_rotation != float3::zero()) properties->createChild(sfbxS_P, sfbxS_PostRotation, sfbxS_Vector3D, sfbxS_Vector, sfbxS_Empty, sfbxVector3d(m_post_rotation)); // rotation if (m_rotation != float3::zero()) properties->createChild(sfbxS_P, sfbxS_LclRotation, sfbxS_LclRotation, sfbxS_Empty, sfbxS_A, sfbxVector3d(m_rotation)); } // scale if (m_scale!= float3::one()) properties->createChild(sfbxS_P, sfbxS_LclScale, sfbxS_LclScale, sfbxS_Empty, sfbxS_A, sfbxVector3d(m_scale)); } void Model::addChild(Object* v) { super::addChild(v); if (auto model = as<Model>(v)) m_child_models.push_back(model); } void Model::eraseChild(Object* v) { super::eraseChild(v); if (auto model = as<Model>(v)) erase(m_child_models, model); } void Model::addParent(Object* v) { super::addParent(v); if (auto model = as<Model>(v)) m_parent_model = model; } void Model::eraseParent(Object* v) { super::eraseParent(v); if (v == m_parent_model) m_parent_model = nullptr; } Model* Model::getParentModel() const { return m_parent_model; } bool Model::getVisibility() const { return m_visibility; } RotationOrder Model::getRotationOrder() const { return m_rotation_order; } float3 Model::getPosition() const { return m_position; } float3 Model::getPreRotation() const { return m_pre_rotation; } float3 Model::getRotation() const { return m_rotation; } float3 Model::getPostRotation() const { return m_post_rotation; } float3 Model::getScale() const { return m_scale; } void Model::updateMatrices() const { if (m_matrix_dirty) { // scale float4x4 r = scale44(m_scale); // rotation if (m_post_rotation != float3::zero()) r *= transpose(to_mat4x4(rotate_euler(m_rotation_order, m_post_rotation * DegToRad))); if (m_rotation != float3::zero()) r *= transpose(to_mat4x4(rotate_euler(m_rotation_order, m_rotation * DegToRad))); if (m_pre_rotation != float3::zero()) r *= transpose(to_mat4x4(rotate_euler(m_rotation_order, m_pre_rotation * DegToRad))); // translation (float3&)r[3] = m_position; m_matrix_local = r; m_matrix_global = m_matrix_local; if (m_parent_model) m_matrix_global *= m_parent_model->getGlobalMatrix(); m_matrix_dirty = false; } } float4x4 Model::getLocalMatrix() const { updateMatrices(); return m_matrix_local; } float4x4 Model::getGlobalMatrix() const { updateMatrices(); return m_matrix_global; } std::string Model::getPath() const { if (m_id == 0) return{}; std::string ret; if (m_parent_model) ret += m_parent_model->getPath(); ret += "/"; ret += getName(); return ret; } void Model::setVisibility(bool v) { m_visibility = v; } void Model::setRotationOrder(RotationOrder v) { m_rotation_order = v; } void Model::propagateDirty() { if (!m_matrix_dirty) { m_matrix_dirty = true; for (auto c : m_child_models) c->propagateDirty(); } } #define MarkDirty(V, A) if (A != V) { V = A; propagateDirty(); } void Model::setPosition(float3 v) { MarkDirty(m_position, v); } void Model::setPreRotation(float3 v) { MarkDirty(m_pre_rotation, v); } void Model::setRotation(float3 v) { MarkDirty(m_rotation, v); } void Model::setPostRotation(float3 v) { MarkDirty(m_post_rotation, v); } void Model::setScale(float3 v) { MarkDirty(m_scale, v); } #undef MarkDirty ObjectSubClass Null::getSubClass() const { return ObjectSubClass::Null; } void Null::exportFBXObjects() { if (!m_attr) m_attr = createChild<NullAttribute>(); super::exportFBXObjects(); } void NullAttribute::exportFBXObjects() { super::exportFBXObjects(); getNode()->createChild(sfbxS_TypeFlags, sfbxS_Null); } void Null::addChild(Object* v) { super::addChild(v); if (auto attr = as<NullAttribute>(v)) m_attr = attr; } void Null::eraseChild(Object* v) { super::eraseChild(v); if (v == m_attr) m_attr = nullptr; } ObjectSubClass Root::getSubClass() const { return ObjectSubClass::Root; } void Root::exportFBXObjects() { if (!m_attr) m_attr = createChild<RootAttribute>(); super::exportFBXObjects(); } void RootAttribute::exportFBXObjects() { super::exportFBXObjects(); getNode()->createChild(sfbxS_TypeFlags, sfbxS_Null, sfbxS_Skeleton, sfbxS_Root); } void Root::addChild(Object* v) { super::addChild(v); if (auto attr = as<RootAttribute>(v)) m_attr = attr; } void Root::eraseChild(Object* v) { super::eraseChild(v); if (v == m_attr) m_attr = nullptr; } ObjectSubClass LimbNode::getSubClass() const { return ObjectSubClass::LimbNode; } void LimbNode::exportFBXObjects() { if (!m_attr) m_attr = createChild<LimbNodeAttribute>(); super::exportFBXObjects(); } void LimbNodeAttribute::exportFBXObjects() { super::exportFBXObjects(); getNode()->createChild(sfbxS_TypeFlags, sfbxS_Skeleton); } void LimbNode::addChild(Object* v) { super::addChild(v); if (auto attr = as<LimbNodeAttribute>(v)) m_attr = attr; } void LimbNode::eraseChild(Object* v) { super::eraseChild(v); if (v == m_attr) m_attr = nullptr; } ObjectSubClass Mesh::getSubClass() const { return ObjectSubClass::Mesh; } void Mesh::importFBXObjects() { super::importFBXObjects(); #ifdef sfbxEnableLegacyFormatSupport // in old fbx, Model::Mesh has geometry data (Geometry::Mesh does not exist) auto n = getNode(); if (n->findChild(sfbxS_Vertices)) { getGeometry()->setNode(n); } #endif } void Mesh::addChild(Object* v) { super::addChild(v); if (auto geom = as<GeomMesh>(v)) m_geom = geom; else if (auto material = as<Material>(v)) m_materials.push_back(material); } void Mesh::eraseChild(Object* v) { super::eraseChild(v); if (v == m_geom) m_geom = nullptr; else if (auto material = as<Material>(v)) erase(m_materials, material); } GeomMesh* Mesh::getGeometry() { if (!m_geom) m_geom = createChild<GeomMesh>(getName()); return m_geom; } span<Material*> Mesh::getMaterials() const { return make_span(m_materials); } ObjectSubClass Light::getSubClass() const { return ObjectSubClass::Light; } void Light::importFBXObjects() { super::importFBXObjects(); } void LightAttribute::importFBXObjects() { super::importFBXObjects(); auto light = as<Light>(getParent()); if (!light) return; EnumerateProperties(getNode(), [light](Node* p) { auto name = GetPropertyString(p, 0); if (name == sfbxS_LightType) light->m_light_type = (LightType)GetPropertyValue<int32>(p, 4); else if (name == sfbxS_Color) light->m_color = float3{ (float32)GetPropertyValue<float64>(p, 4), (float32)GetPropertyValue<float64>(p, 5), (float32)GetPropertyValue<float64>(p, 6)}; else if (name == sfbxS_Intensity) light->m_intensity = (float32)GetPropertyValue<float64>(p, 4); else if (name == sfbxS_InnerAngle) light->m_inner_angle = (float32)GetPropertyValue<float64>(p, 4); else if (name == sfbxS_OuterAngle) light->m_outer_angle = (float32)GetPropertyValue<float64>(p, 4); }); } void Light::exportFBXObjects() { if (!m_attr) m_attr = createChild<LightAttribute>(); super::exportFBXObjects(); } void LightAttribute::exportFBXObjects() { super::exportFBXObjects(); auto light = as<Light>(getParent()); if (!light) return; auto color = light->m_color; auto props = getNode()->createChild(sfbxS_Properties70); props->createChild(sfbxS_P, sfbxS_LightType, sfbxS_enum, "", "", (int32)light->m_light_type); props->createChild(sfbxS_P, sfbxS_Color, sfbxS_Color, "", "A", (float64)color.x, (float64)color.y, (float64)color.z); props->createChild(sfbxS_P, sfbxS_Intensity, sfbxS_Number, "", "A", (float64)light->m_intensity); if (light->m_light_type == LightType::Spot) { props->createChild(sfbxS_P, sfbxS_InnerAngle, sfbxS_Number, "", "A", (float64)light->m_inner_angle); props->createChild(sfbxS_P, sfbxS_OuterAngle, sfbxS_Number, "", "A", (float64)light->m_outer_angle); } } void Light::addChild(Object* v) { super::addChild(v); if (auto attr = as<LightAttribute>(v)) m_attr = attr; } void Light::eraseChild(Object* v) { super::eraseChild(v); if (v == m_attr) m_attr = nullptr; } LightType Light::getLightType() const { return m_light_type; } float3 Light::getColor() const { return m_color; } float Light::getIntensity() const { return m_intensity; } float Light::getInnerAngle() const { return m_inner_angle; } float Light::getOuterAngle() const { return m_outer_angle; } void Light::setLightType(LightType v) { m_light_type = v; } void Light::setColor(float3 v) { m_color = v; } void Light::setIntensity(float v) { m_intensity = v; } void Light::setInnerAngle(float v) { m_inner_angle = v; } void Light::setOuterAngle(float v) { m_outer_angle = v; } ObjectSubClass Camera::getSubClass() const { return ObjectSubClass::Camera; } void Camera::importFBXObjects() { super::importFBXObjects(); } void CameraAttribute::importFBXObjects() { super::importFBXObjects(); auto cam = as<Camera>(getParent()); if (!cam) return; EnumerateProperties(getNode(), [cam](Node* p) { auto name = GetPropertyString(p, 0); if (name == sfbxS_CameraProjectionType) cam->m_camera_type = (CameraType)GetPropertyValue<int32>(p, 4); else if (name == sfbxS_FocalLength) cam->m_focal_length = (float32)GetPropertyValue<float64>(p, 4); else if (name == sfbxS_FilmWidth) cam->m_film_size.x = (float32)GetPropertyValue<float64>(p, 4) * InchToMillimeter; else if (name == sfbxS_FilmHeight) cam->m_film_size.y = (float32)GetPropertyValue<float64>(p, 4) * InchToMillimeter; else if (name == sfbxS_FilmOffsetX) cam->m_film_offset.x = (float32)GetPropertyValue<float64>(p, 4) * InchToMillimeter; else if (name == sfbxS_FilmOffsetY) cam->m_film_offset.y = (float32)GetPropertyValue<float64>(p, 4) * InchToMillimeter; else if (name == sfbxS_NearPlane) cam->m_near_plane = (float32)GetPropertyValue<float64>(p, 4); else if (name == sfbxS_FarPlane) cam->m_far_plane = (float32)GetPropertyValue<float64>(p, 4); }); } void Camera::exportFBXObjects() { if (!m_attr) m_attr = createChild<CameraAttribute>(); super::exportFBXObjects(); } void CameraAttribute::exportFBXObjects() { super::exportFBXObjects(); auto cam = as<Camera>(getParent()); if (!cam) return; auto props = getNode()->createChild(sfbxS_Properties70); props->createChild(sfbxS_P, sfbxS_CameraProjectionType, sfbxS_enum, "", "", (int32)cam->m_camera_type); props->createChild(sfbxS_P, sfbxS_FocalLength, sfbxS_Number, "", "A", (float64)cam->m_focal_length); props->createChild(sfbxS_P, sfbxS_FilmWidth, sfbxS_Number, "", "A", (float64)cam->m_film_size.x * MillimeterToInch); props->createChild(sfbxS_P, sfbxS_FilmHeight, sfbxS_Number, "", "A", (float64)cam->m_film_size.y * MillimeterToInch); if (cam->m_film_offset.x != 0.0f) props->createChild(sfbxS_P, sfbxS_FilmOffsetX, sfbxS_Number, "", "A", (float64)cam->m_film_offset.x * MillimeterToInch); if (cam->m_film_offset.y != 0.0f) props->createChild(sfbxS_P, sfbxS_FilmOffsetY, sfbxS_Number, "", "A", (float64)cam->m_film_offset.y * MillimeterToInch); props->createChild(sfbxS_P, sfbxS_NearPlane, sfbxS_Number, "", "A", (float64)cam->m_near_plane); props->createChild(sfbxS_P, sfbxS_FarPlane, sfbxS_Number, "", "A", (float64)cam->m_far_plane); } void Camera::addChild(Object* v) { super::addChild(v); if (auto attr = as<CameraAttribute>(v)) m_attr = attr; } void Camera::eraseChild(Object* v) { super::eraseChild(v); if (v == m_attr) m_attr = nullptr; } CameraType Camera::getCameraType() const { return m_camera_type; } float Camera::getFocalLength() const { return m_focal_length; } float2 Camera::getFilmSize() const { return m_film_size; } float2 Camera::getFilmOffset() const { return m_film_offset; } float2 Camera::getFildOfView() const { return float2{ compute_fov(m_film_size.x, m_focal_length), compute_fov(m_film_size.y, m_focal_length), }; } float2 Camera::getAspectSize() const { return m_aspect; } float Camera::getAspectRatio() const { return m_film_size.x / m_film_size.y; } float Camera::getNearPlane() const { return m_near_plane; } float Camera::getFarPlane() const { return m_far_plane; } void Camera::setCameraType(CameraType v) { m_camera_type = v; } void Camera::setFocalLength(float v) { m_focal_length = v; } void Camera::setFilmSize(float2 v) { m_film_size = v; } void Camera::setFilmShift(float2 v) { m_film_offset = v; } void Camera::setAspectSize(float2 v) { m_aspect = v; } void Camera::setNearPlane(float v) { m_near_plane = v; } void Camera::setFarPlane(float v) { m_far_plane = v; } } // namespace sfbx
[ "saint.skr@gmail.com" ]
saint.skr@gmail.com
77b5e308536e733a4ca74ca385e817e69007a081
3635df8d74077ff1d51e468f545d21a7a73a584e
/Anima/OS/TimerFactory.h
f999ff4c3d51b24deb050bfe6b3c6aa75ae2e960
[]
no_license
edamiani/Anima-Engine
2615ee632b10e35dceb82b902661acd988aa9396
14b99b71bf5ea5c4b19d08037ca56298a36f6288
refs/heads/master
2021-12-14T10:38:18.883495
2021-12-02T20:08:08
2021-12-02T20:08:08
18,024,642
4
0
null
null
null
null
UTF-8
C++
false
false
518
h
#ifndef __AE_OS_TIMER_FACTORY__ #define __AE_OS_TIMER_FACTORY__ #include "Anima/Types.h" namespace AE { namespace OS { class Timer; class TimerPeriodic; class TimerSimple; class TimerListener; class TimerFactory { public: TimerFactory() {} virtual ~TimerFactory() {} virtual AE::OS::TimerPeriodic* createTimerPeriodic(AE::ulong startInterval, AE::ulong periodicInterval, AE::OS::TimerListener *timerListener) = 0; virtual AE::OS::TimerSimple* createTimerSimple() = 0; }; } } #endif
[ "edamiani@gmail.com" ]
edamiani@gmail.com
6a894f97da48c1566c538a8d02ecc19ea1f23b98
ce7a67334e51fbfbecc46a04300de04695506d7e
/Sources/Internal/Network/Base/IPAddress.h
4044b5fc3a26a15175041fa5cd76eb87420d0452
[]
no_license
dava-bot/dava.framework
2b2cd60d419fe3948a48da2ae43142ff24016ee2
295c279990b7302be8e7f91eb0899399c118b825
refs/heads/development
2020-12-24T19:18:09.877267
2015-03-13T15:07:03
2015-03-13T15:07:03
32,009,964
4
0
null
2015-03-11T09:48:13
2015-03-11T09:48:12
null
UTF-8
C++
false
false
3,563
h
/*================================================================================== Copyright(c) 2008, binaryzebra All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the binaryzebra 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 binaryzebra 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 binaryzebra 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 __DAVAENGINE_IPADDRESS_H__ #define __DAVAENGINE_IPADDRESS_H__ #include <libuv/uv.h> #include <Base/BaseTypes.h> namespace DAVA { namespace Net { /* Class IPAddress represents IPv4 address. IPAddress can be constructed from 32-bit integer or from string. Requirements on string IPAddress should be constructed from: - must be in the form XXX.XXX.XXX.XXX with no more than 3 decimal digits in a group - each group can contain only decimal numbers from 0 to 255 with no starting zeros Also address can be converted to string. IPAddress accepts and returns numeric parameters in host byte order */ class IPAddress { public: IPAddress(uint32 address = 0); IPAddress(const char8* address); uint32 ToUInt() const; bool IsUnspecified() const; bool IsMulticast() const; bool ToString(char8* buffer, size_t size) const; String ToString() const; static IPAddress FromString(const char8* addr); friend bool operator == (const IPAddress& left, const IPAddress& right); private: uint32 addr; }; ////////////////////////////////////////////////////////////////////////// inline IPAddress::IPAddress(uint32 address) : addr(htonl(address)) { } inline uint32 IPAddress::ToUInt() const { return ntohl(addr); } inline bool IPAddress::IsUnspecified() const { return 0 == addr; } inline bool IPAddress::IsMulticast() const { return 0xE0000000 == (ToUInt() & 0xF0000000); } inline bool operator == (const IPAddress& left, const IPAddress& right) { return left.addr == right.addr; } inline bool operator < (const IPAddress& left, const IPAddress& right) { return left.ToUInt() < right.ToUInt(); } } // namespace Net } // namespace DAVA #endif // __DAVAENGINE_IPADDRESS_H__
[ "m_lazarev@wargaming.net" ]
m_lazarev@wargaming.net
9291014448ae323b4b5bc6bfa4be705f3e2d2209
8ff9ac12d33c773349654fcd5296392b090dfe87
/main.cpp
4b4f0b7f6b6b5d90091dbdc381a0b2ce36fba7f3
[]
no_license
mostafa-hussein/A-star-algorithm
f17402571afbb4ed28bc6c7ee646db182ecd0987
8e72cb78c73281ecb12de50e24e888a035ffc436
refs/heads/master
2022-04-01T23:53:53.112035
2020-02-07T22:00:39
2020-02-07T22:00:39
111,221,833
0
0
null
null
null
null
UTF-8
C++
false
false
14,939
cpp
#include <stdlib.h> #include <iostream> #include <stdio.h> #include <sys/socket.h> #include <netinet/in.h> #include <string.h> #include <arpa/inet.h> // #include <unistd.h> #define PORT 4000 using namespace std; struct link { int id; int f; int g; int h; int x; int y; link* next; link* prev; link* parent; }; class linklist { private: link * first; link * end; public: int count; linklist() { first = NULL; end =NULL; count=0; } link* get (int id) { link* current=first; while (current!=NULL) { if (current->id == id) { return current; } current = current->next; break; } } void getpath(int path[][3]) { int c=0; link* current=first; path[0][0]=c; while(current !=NULL ) { path[0][0]= ++c ; path[c][0]=current->x; path[c][1]=current->y; cout<<path[c][0]<<"\t"<<path[c][1]<<endl; current=current->parent; } } void check1 (int child[][5]) //open list 3 { for (int i = 1; i <=child[0][0] ; ++i) { link* current = first; while (current!=NULL) { if( child[i][0]==current->x && child[i][1]==current->y && current->f < child[i][2] ) child[i][3]=0; else child[i][3]=1; current=current->next; } } } void check2 (int child[][5]) //closed list 4 { for (int i = 1; i <=child[0][0] ; ++i) { link* current = first; while (current!=NULL) { if( child[i][0]==current->x && child[i][1]==current->y && current->f <child[i][2] ) child[i][4]=0; else child[i][4]=1; current=current->next; } } } void additem(int g,int h,int x,int y,link* p) { count++; if ( first == NULL && end==NULL ) { link* newlink = new link; newlink->id= count; newlink->x = x; newlink->y = y; newlink->g = g; newlink->h = h; newlink->parent=p; newlink->f=g+h; newlink->next = NULL; newlink->prev=NULL; first = newlink; end=newlink; } else { int d=g+h; if (d <= first->f ) { link* newlink = new link; newlink->id= count; newlink->g = g; newlink->h = h; newlink->parent=p; newlink->x = x; newlink->y = y; newlink->f=g+h; newlink->next=first; newlink->prev=NULL; first->prev=newlink; first =newlink; } else if ( d >= end->f ) { link* newlink = new link; newlink->id= count; newlink->g = g; newlink->h = h; newlink->parent=p; newlink->x = x; newlink->y = y; newlink->f=g+h; newlink->next=NULL; newlink->prev=end; end->next=newlink; end=newlink; } else { link* current = first; while( current != NULL ) { if( d<current->f || (d==current->f && g<=current->g)) { link* newlink = new link; newlink->id= count; newlink->g = g; newlink->h = h; newlink->parent=p; newlink->x = x; newlink->y = y; newlink->f=g+h; newlink->next=current; newlink->prev=current->prev; current->prev->next=newlink; current->prev=newlink; break; } if( d==current->f && g>current->g) { current=current->next; link* newlink = new link; newlink->id= count; newlink->g = g; newlink->parent=p; newlink->x = x; newlink->y = y; newlink->h = h; newlink->f=g+h; newlink->next=current; newlink->prev=current->prev; current->prev->next=newlink; current->prev=newlink; break; } current = current->next; } } } arrange(); } void display() { link* current = first; while( current != NULL ) { cout<<current <<"\t"<<current->id<<"\t"<< current->f<<"\t" <<current->x <<"\t"<<current->y <<"\t"<<current->parent <<endl; current = current->next; } } void arrange() { link* current = first; for(int i=0 ; i<count ; i++) { current->id=i+1; current = current->next; } } void remove(int i) { if (count==1) { first=end=NULL; } else if (i==1) { first=first->next; first->prev=NULL; } else if (i==count) { end=end->prev; end->next=NULL; } else { link* current = first; while( current != NULL ) { if(i==current->id) { current->prev->next=current->next; current->next->prev=current->prev; break; } current = current->next; } } count--; this->arrange(); } }; void display(int path[][3],char path_letter[],int startx, int starty,int goalx,int goaly,int staticop[][2],int dynamicop[][2],int sizex, int sizey,int n_of_st,int n_of_dy); void sethuristic (int huristic[][6],int goalx, int goaly,int staticop[][2],int n_of_st); int dist(int sx,int sy,int gx , int gy); void genrate (int px, int py ,int child[][5]); void path_convereter(int path[][3],char tmp[]); void a_star (int startx, int starty,int goalx,int goaly,int staticop[][2],int dynamicop[][2],int sizex, int sizey,int path[][3],int n_of_st,int n_of_dy); void setprob (int n_hist ,int history[][2] ,int size ,int prob [][3]); int main() { int startx=0 , starty=4 , goalx=5 , goaly=5; int sizex=6; int sizey=6; int n_of_st=2; int n_of_dy=2; int staticop[2][2]={{0,5},{1,5}}; int dynamicop[2][2]={{0,5},{1,5}}; int path[50][3]; a_star(startx,starty,goalx,goaly,staticop,dynamicop,sizex,sizey,path,n_of_st,n_of_dy); char path_letter[path[0][0]]; path_convereter(path,path_letter); display(path,path_letter,startx,starty,goalx,goaly,staticop,dynamicop,sizex,sizey,n_of_st,n_of_dy); for (int i = 1; i <=path[0][0] ; ++i) { cout<<path[i][0]<<"\t"<<path[i][1]<<endl; } return 0; } void setprob (int n_hist ,int history[][2] ,int size ,int prob [][3]) { } void a_star (int startx, int starty,int goalx,int goaly,int staticop[][2],int dynamicop[][2],int sizex, int sizey,int path[][3],int n_of_st,int n_of_dy) { const int x=6,y=6; bool solved= 0; int child[x-1][y-1]; linklist openlist,closedlist; int huristic [x][y]; sethuristic(huristic,goalx,goaly,staticop,n_of_st); openlist.additem(0,huristic[startx][starty],startx,starty,NULL); int c=1; while (openlist.count>0 && !solved && c) { //c--; openlist.arrange(); link* node=openlist.get(1); openlist.remove(1); genrate(node->x,node->y,child); for (int i = 1; i <= child[0][0] ; ++i) { if(child[i][0]==goalx && child[i][1]==goaly) { cout<<"Goal reached \n"; solved=1; break; } child[i][2]=node->g+1+huristic[child[i][0]][child[i][1]]; openlist.check1(child); closedlist.check2(child); } for (int i = 1; i <= child[0][0] ; ++i) { if(child[i][3]==1 && child[i][4]==1) openlist.additem(node->g+1,huristic[child[i][0]][child[i][1]],child[i][0],child[i][1],node); } closedlist.additem(node->g,node->h,node->x,node->y,node->parent); cout <<"openlist \n"; openlist.display(); cout <<"closedlist \n"; closedlist.display(); } openlist.getpath(path); } void path_convereter(int path[][3],char tmp[]) { int count=-1; for (int i = path[0][0]; i >0; --i) { count++; if(path[i][0]==path[i-1][0] && path[i-1][1]-path[i][1]>0) tmp[count]='r'; if(path[i][0]==path[i-1][0] && path[i-1][1]-path[i][1]<0) tmp[count]='l'; if(path[i][1]==path[i-1][1] && path[i-1][0]-path[i][0]>0) tmp[count]='d'; if(path[i][1]==path[i-1][1] && path[i-1][0]-path[i][0]<0) tmp[count]='u'; } tmp[count]='G'; } void genrate (int px, int py ,int child[][5]) { int id; for (int i = 0; i <5 ; ++i) for (int j = 0; j <5 ; ++j) child[i][j]=1; child[0][0]=0; if(px+1>=0 && px+1 <=5) { id=++child[0][0]; child[id][0] = px + 1; child[id][1] = py; } if(px-1>=0 && px-1 <=5) { id=++child[0][0]; child[id][0] = px - 1; child[id][1] = py; } if(py+1>=0 && py+1 <=5) { id=++child[0][0]; child[id][0] = px; child[id][1] = py+1; } if(py-1>=0 && py-1 <=5) { id=++child[0][0]; child[id][0] = px; child[id][1] = py-1; } } void sethuristic (int huristic[][6],int goalx, int goaly,int staticop[][2],int n_of_st) { for (int i = 0; i <6 ; ++i) { for (int j = 0; j <6; ++j) { huristic[i][j]=dist(i,j,goalx,goaly)+10; } } huristic[goalx][goaly]=0; for (int k = 0; k <n_of_st; ++k) { huristic[staticop[k][0]][staticop[k][1]]=1000; } /*for (int i = 0; i < 6; ++i) { for (int j = 0; j < 6 ; ++j) { cout<<huristic[i][j]<<"\t"; } cout<<endl; }*/ } int dist(int sx,int sy,int gx , int gy) { return abs(gy-sy)+abs(gx-sx); } void display(int path[][3],char path_letter[],int startx, int starty,int goalx,int goaly,int staticop[][2],int dynamicop[][2],int sizex, int sizey,int n_of_st,int n_of_dy) { char map[6][6]; for (int i = 0; i <sizex; ++i) for (int j = 0; j <sizey; ++j) map[i][j]='-'; for (int i =path[0][0]; i >0 ; --i) map[path[i][0]][path[i][1]]='*'; for (int i =0; i <n_of_st ; ++i) map[staticop[i][0]][staticop[i][1]]='#'; map[startx][starty]='S'; map[goalx][goaly]='G'; cout<<"Path from the start to goal \n"; for (int i = 0; i <sizex; ++i) { for (int j = 0; j < sizey; ++j) cout << map[i][j] << "\t"; cout << endl; } cout<<"Full path in letters ---->"; for (int j = 0; j < path[0][0]; ++j) cout<<path_letter[j]; for (int i = 0; i <sizex; ++i) for (int j = 0; j <sizey; ++j) map[i][j]='-'; map[startx][starty]='S'; map[goalx][goaly]='G'; int t=0; for (int i =path[0][0]; i >0 ; --i) { map[path[i][0]][path[i][1]] = path_letter[t]; t++; } for (int i =0; i <n_of_st ; ++i) map[staticop[i][0]][staticop[i][1]]='#'; cout<<"\npath from the start to goal wirh direcions \n"; for (int i = 0; i <sizex; ++i) { for (int j = 0; j < sizey; ++j) cout << map[i][j] << "\t"; cout << endl; } }
[ "eng.mostafa_2005@aun.edu.eg" ]
eng.mostafa_2005@aun.edu.eg
335af772765766a62b3e4b4873525e247df283cb
04d392d79a7bacc69952398403773756bfacc1f1
/PackingGeneration/Core/Headers/Types.h
799ff028386785d8723c1bfb2f6956f5c7252b91
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
Tontonis/packing-generation
2e93ee28fac1506a5ca44841102778112acbb717
e3ba06d3581461763247baf9744e9c175eafae23
refs/heads/master
2021-01-20T04:39:56.530770
2017-03-29T15:05:39
2017-03-29T15:05:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,009
h
// Copyright (c) 2013 Vasili Baranau // Distributed under the MIT software license // See the accompanying file License.txt or http://opensource.org/licenses/MIT #ifndef Core_Headers_Types_h #define Core_Headers_Types_h #include <boost/array.hpp> // TODO: Move to Core namespace and Constants.h const int DIMENSIONS = 3; // Use typedef instead of #define, as they may lead to better compiler checks namespace Core { #ifdef SINGLE_PRECISION typedef float FLOAT_TYPE; #else typedef double FLOAT_TYPE; #endif typedef int INT_TYPE; struct Axis { enum Type { X = 0, Y = 1, Z = 2 }; }; typedef boost::array<int, DIMENSIONS> DiscreteSpatialVector; typedef boost::array<FLOAT_TYPE, DIMENSIONS> SpatialVector; // NOTE: the types below are not so fundamental. May be move somewhere? template<class T> struct Nullable { T value; bool hasValue; }; } #endif /* Core_Headers_Types_h */
[ "bas1l@mail.ru" ]
bas1l@mail.ru
2d180d7a193643eb4d3c904b499920e72168c38e
092f83af8daf07844bef4f5c61b1ca7d298488b8
/bins/binary_to_cpp/src/binary_to_cpp.cpp
91a5468dfee37876ab100a2bec0d1dd5aa1d50c8
[ "MIT" ]
permissive
tiaanl/red5
1fd0d1ab0f86f8f70fc27d8b7b072d1eb1e956ad
ea7593b38f61f64f8aeb7d58854106bd58c05736
refs/heads/main
2023-01-07T05:11:57.569662
2020-11-14T19:19:46
2020-11-14T19:19:46
305,490,400
2
0
null
null
null
null
UTF-8
C++
false
false
1,332
cpp
#include <spdlog/spdlog.h> #include <filesystem> #include <fstream> #include <iostream> namespace fs = std::filesystem; int main(int argc, char** argv) { if (argc < 3) { std::cout << "USAGE: " << argv[0] << " <binary-file> <cpp-file>"; return 0; } fs::path binaryPath{argv[1]}; fs::path cppPath{argv[2]}; spdlog::info("Converting {} to {}", binaryPath.string(), cppPath.string()); std::vector<char> buffer; { std::ifstream stream{binaryPath, std::ios::binary}; stream.seekg(0, std::ios::end); auto fileSize = stream.tellg(); stream.seekg(0); buffer.resize(fileSize); stream.read(buffer.data(), buffer.size()); } if (buffer.empty()) { spdlog::error("Could not read file or file is empty: {}", binaryPath.string()); return 1; } std::string name{fs::path{cppPath}.replace_extension("").filename().string()}; std::replace(std::begin(name), std::end(name), '-', '_'); { std::ofstream stream{cppPath, std::ios::binary}; stream << "extern const unsigned char " << name << "[];\n"; stream << "const unsigned char " << name << "[] = {"; for (char ch : buffer) { stream << "0x" << std::hex << std::setw(2) << std::setfill('0') << static_cast<uint16_t>(static_cast<uint8_t>(ch)) << ","; } stream << "};"; } return 0; }
[ "tiaanl@gmail.com" ]
tiaanl@gmail.com
6d468b7bcd4628cb86e5f8bc1cf20f8a0f919d56
e3e0769670f50de27467a8f99f409f61acf313d2
/inc/lexer.hpp
5db617f37e6c42a3586fdbe59a866933f8877f9e
[]
no_license
anko9801/ArowCompiler
c0387d6b13a09621f42aa8a3fc00c1881c438ede
40e574c8817d925a08da440a5bbcc87bf6a5a5a2
refs/heads/master
2021-10-14T07:11:30.333625
2019-02-02T06:37:17
2019-02-02T06:37:17
155,954,392
2
0
null
null
null
null
UTF-8
C++
false
false
2,641
hpp
#ifndef LEXER_HPP #define LEXER_HPP #include<cstdio> #include<cstdlib> #include<fstream> #include<list> #include<string> #include<vector> #include"APP.hpp" /** * トークン種別 */ enum TokenType{ TOK_IDENTIFIER, //識別子 TOK_DIGIT, //数字 TOK_FLOAT, TOK_STRING, TOK_TRUTH, TOK_IMPORT, TOK_SYMBOL, //記号 TOK_TYPE, //型 TOK_IF, TOK_WHILE, TOK_FOR, TOK_MATCH, TOK_ASYNC, TOK_AWAIT, TOK_RETURN, //RETURN TOK_CAST, TOK_NL, TOK_EOF //EOF }; /** *個別トークン格納クラス */ typedef class Token{ public: private: std::string TokenString; TokenType Type; std::string DataType; int Number; bool Bool; int Line; std::string Filename; public: Token(std::string string, TokenType type, int line, std::string filename) : TokenString(string), Type(type), Line(line), Filename(filename) { if (type == TOK_DIGIT || type == TOK_FLOAT) { if (string[0] == '0' && string[1] == 'b') { string.erase(string.begin(), string.begin() + 2); Number = strtol(string.c_str(), NULL, 2); }else{ Number = atof(string.c_str()); } }else{ Number = 0x7fffffff; } if (type == TOK_TRUTH) Bool = true; else Bool = false; }; ~Token() {}; TokenType getTokenType() {return Type;}; std::string getTokenDataType() {return DataType;}; std::string getTokenString() {return TokenString;}; int getNumberValue() {return Number;}; bool getBoolValue() {return Bool;} bool setLine(int line) {Line = line;return true;} int getLine() {return Line;} std::string getFile() {return Filename;} }Token; /** * 切り出したToken格納用クラス */ class TokenStream{ public: private: std::vector<Token*> Tokens; int CurIndex; protected: public: TokenStream():CurIndex(0) {} ~TokenStream(); bool ungetToken(int Times=1); bool getNextToken(); bool pushToken(Token *token) { Tokens.push_back(token); return true; } Token getToken(); TokenType getCurType() {return Tokens[CurIndex]->getTokenType();} std::string getCurDataType() {return Tokens[CurIndex]->getTokenDataType();} std::string getCurString() {return Tokens[CurIndex]->getTokenString();} int getCurNumVal() {return Tokens[CurIndex]->getNumberValue();} bool getCurBoolVal() {return Tokens[CurIndex]->getBoolValue();} bool printTokens(); int getCurIndex() {return CurIndex;} int getLine() {return Tokens[CurIndex]->getLine()+1;} std::string getFile() {return Tokens[CurIndex]->getFile();} bool applyTokenIndex(int index) {CurIndex = index;return true;} private: protected: }; TokenStream *LexicalAnalysis(std::string input_filename); #endif
[ "daiusa3@icloud.com" ]
daiusa3@icloud.com
6ab19ec82680188dc5204e705eb3c8751c0fa08e
07c2844a6fd38fc39a109fd4577ddc99a19087ba
/Peta_ITB/garis.cpp
4479e237e04c7bc6eb231115dd5e5a7757531f78
[]
no_license
n4de4k/Grafika_Komputer
c1a089a3c0932585936126537eb0011dd6521f4c
c9704ccc11f17419d60c6728290b9111c8e90522
refs/heads/master
2021-09-09T04:07:06.889557
2018-03-13T18:27:30
2018-03-13T18:27:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,790
cpp
#ifndef GARIS #define GARIS #include "./titik.cpp" #include <utility> #include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <fcntl.h> #include <linux/fb.h> #include <sys/mman.h> #include <sys/ioctl.h> using namespace std; class Garis { public : Garis() { } Garis(Titik p, Titik q) { (this->awal).setX(p.getX()); (this->awal).setY(p.getY()); (this->akhir).setX(q.getX()); (this->akhir).setY(q.getY()); } Titik getAwal() { return this->awal; } Titik getAkhir() { return this->akhir; } void setAwal(Titik awal) { this->awal = awal; } void setAkhir(Titik akhir) { this->akhir = akhir; } pair<float, float> makeLine() { float x1 = awal.getX() * 1.0; float y1 = awal.getY() * 1.0; float x2 = akhir.getX() * 1.0; float y2 = akhir.getY() * 1.0; float a,b; if(x2 - x1 == 0){ a = 0; b = 0; } else { a = (y2 - y1) / (x2 - x1); b = y1 - (x1 * (y2 - y1) / (x2 - x1)); } return make_pair(a, b); } void print(int divx, int divy, int r, int g, int b){ int fbfd = 0; struct fb_var_screeninfo vinfo; struct fb_fix_screeninfo finfo; long int screensize = 0; char *fbp = 0; int x = 0, y = 0, timer = 0; long int location = 0; int maxY; // Open the file for reading and writing fbfd = open("/dev/fb0", O_RDWR); if (fbfd == -1) { perror("Error: cannot open framebuffer device"); exit(1); } //printf("The framebuffer device was opened successfully.\n"); // Get fixed screen information if (ioctl(fbfd, FBIOGET_FSCREENINFO, &finfo) == -1) { perror("Error reading fixed information"); exit(2); } // Get variable screen information if (ioctl(fbfd, FBIOGET_VSCREENINFO, &vinfo) == -1) { perror("Error reading variable information"); exit(3); } //printf("%dx%d, %dbpp\n", vinfo.xres, vinfo.yres, vinfo.bits_per_pixel); // Figure out the size of the screen in bytes screensize = vinfo.xres * vinfo.yres * vinfo.bits_per_pixel / 8; // Map the device to memory fbp = (char *)mmap(0, screensize, PROT_READ | PROT_WRITE, MAP_SHARED, fbfd, 0); if (*fbp == -1) { perror("Error: failed to map framebuffer device to memory"); exit(4); } int x0 = awal.getX(); int y0 = awal.getY(); int x1 = akhir.getX(); int y1 = akhir.getY(); int dx = abs(x1-x0), sx = x0<x1 ? 1 : -1; int dy = abs(y1-y0), sy = y0<y1 ? 1 : -1; int err = (dx>dy ? dx : -dy)/2, e2; x0 += divx; y0 += divy; x1 += divx; y1 += divy; for(;;){ location = (x0+vinfo.xoffset) * (vinfo.bits_per_pixel/8) + (y0+vinfo.yoffset) * finfo.line_length; if(y0 > 10 && y0 < vinfo.yres -10 && x0 > 5 && x0 < vinfo.xres){ // escape seg fault *(fbp + location) = b; // Some blue *(fbp + location + 1) = g; // A little green *(fbp + location + 2) = r; // A lot of red *(fbp + location + 3) = 0; // No transparency } if (x0==x1 && y0==y1) break; e2 = err; if (e2 >-dx) { err -= dy; x0 += sx; } if (e2 < dy) { err += dx; y0 += sy; } } munmap(fbp, screensize); close(fbfd); } void rotate(float degree, Titik topLeft, Titik bottomRight) { awal.rotate(degree, topLeft.getX(), topLeft.getY(), bottomRight.getX(), bottomRight.getY()); akhir.rotate(degree, topLeft.getX(), topLeft.getY(), bottomRight.getX(), bottomRight.getY());; } void scale(float scale, Titik topLeft, Titik bottomRight) { awal.scale(scale, topLeft.getX(), topLeft.getY(), bottomRight.getX(), bottomRight.getY()); akhir.scale(scale, topLeft.getX(), topLeft.getY(), bottomRight.getX(), bottomRight.getY()); } void scaleByTitik(float scale, Titik P) { awal.scaleByTitik(scale, P); akhir.scaleByTitik(scale, P); } void move(int h, int v, Titik topLeft, Titik bottomRight) { awal.move(h,v,topLeft.getX(), topLeft.getY(), bottomRight.getX(), bottomRight.getY()); akhir.move(h,v,topLeft.getX(), topLeft.getY(), bottomRight.getX(), bottomRight.getY()); } void geser(int x, int y){ awal.geser(x, y); akhir.geser(x, y); } private : Titik awal; Titik akhir; }; #endif
[ "leo112071@gmail.com" ]
leo112071@gmail.com
56995fb31c5eac52ff855b3354364f79babcba83
dd80a584130ef1a0333429ba76c1cee0eb40df73
/dalvik/vm/mterp/c/OP_ADD_LONG_2ADDR.cpp
4ae71bb66dad0f7b65d72deb81d36a3c7a1c63a1
[ "LicenseRef-scancode-generic-cla", "Apache-2.0", "MIT" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
62
cpp
HANDLE_OP_X_LONG_2ADDR(OP_ADD_LONG_2ADDR, "add", +, 0) OP_END
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
b7f2bb12a4b7722b4d96271dacf71b881042a3a5
191bf92db1a9f6df7c30e37a8f0a14d1c220a3bd
/POSSPEW.cpp
98d2d1eadcfa3c2d38e6dbf6bf935b4bc95984d4
[]
no_license
doomsday861/Allofit
958fa379296e1a4c9a78b25ab0fd7c222bb1f81a
94d644e52a64ff2949ea731c569478e721fc71bf
refs/heads/master
2023-01-04T12:35:10.447467
2022-12-28T09:30:18
2022-12-28T09:30:18
250,110,669
0
1
null
2021-01-11T09:20:21
2020-03-25T22:59:54
C++
UTF-8
C++
false
false
1,439
cpp
/** * posspew codechef **/ #include<bits/stdc++.h> #define ll long long #define testcase ll t;cin>>t;while(t--) #define pb push_back #define fi first #define se second #define vll vector<ll> #define for0(i, n) for (ll i = 0; i < (ll)(n); ++i) #define for1(i, n) for (ll i = 1; i <= (ll)(n); ++i) #define run ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); #define endl '\n' #define bend(x) x.begin(),x.end() using namespace std; int main() { run testcase{ ll n,k; cin>>n>>k; vll v(n); ll sum =0; for0(i,n) { cin>>v[i]; sum+=v[i]; } if(sum==0) { cout<<0<<endl; continue; } vll left(n,0); vll right(n,0); vll time(n,INT_MAX); if(v[0]!=0) left[0] = 1; for1(i,2*n) { if(v[i%n]!=0) { left[i%n] = 0; } else { left[i%n] = left[(i-1)%n]+1; } } if(v[n-1]!=0) right[n-1] = 1; for(ll i = 2*n-1;i>=0;i--) { if(v[i%n]!=0) { right[i%n] = 0; } else { right[i%n] = right[(i+1)%n]+1; } } for0(i,n) time[i] = min(right[i],left[i]); // for(auto x:time) // cout<<x<<" "; // cout<<endl; for0(i,n) { //cout<<k-time[i]<<" "; sum += 2* max(0LL,k-time[i]); } cout<<sum<<endl; } return 0; }
[ "kartikeyasrivastava861@gmail.com" ]
kartikeyasrivastava861@gmail.com
33b2596192701fcbbf6013313472b16876bf493c
57f24846a3fa3670c8519af87e658eca120f6d23
/B2_CoarseMesh/7/phi
33ac4516fc2b98621ac16276c72cbb6762050ef0
[]
no_license
bshambaugh/openfoam-experiments
82adb4b7d7eb0ec454d6f98eba274b279a6597d8
a1dd4012cb9791836da2f9298247ceba8701211c
refs/heads/master
2021-07-14T05:53:07.275777
2019-02-15T19:37:28
2019-02-15T19:37:28
153,547,385
0
0
null
null
null
null
UTF-8
C++
false
false
1,119,757
/*--------------------------------*- 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 surfaceScalarField; location "7"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 52920 ( 16.865 -0.00360452 16.8464 0.0186066 16.8063 0.0400771 16.7465 0.0597917 16.6685 0.0780063 16.5741 0.0944598 16.4646 0.109482 16.3416 0.12301 16.2062 0.135396 16.0596 0.146607 15.9027 0.156878 15.7366 0.166124 15.5621 0.174455 15.3801 0.182012 15.1916 0.188514 14.9972 0.194427 14.7977 0.19941 14.594 0.203792 14.3864 0.207512 14.1757 0.210738 13.9624 0.213288 13.7469 0.215563 13.5295 0.217328 13.3109 0.218627 13.0911 0.219764 12.8708 0.220334 12.6502 0.220633 12.4294 0.220773 12.2089 0.220512 11.9888 0.220047 11.7694 0.219431 11.551 0.218368 11.3339 0.217121 11.1181 0.21582 10.9039 0.214169 10.6915 0.212403 10.481 0.210487 10.273 0.208073 10.0675 0.20541 9.86492 0.202625 9.66526 0.19966 9.46838 0.196881 9.27402 0.194362 9.08213 0.191885 8.89275 0.189385 8.70611 0.186638 8.52265 0.183462 8.34265 0.179996 8.16613 0.176524 7.99285 0.173274 7.82258 0.170272 7.65518 0.167395 7.49074 0.164437 7.32956 0.161185 7.172 0.157553 7.0184 0.153606 6.8689 0.149502 6.72342 0.14547 6.58176 0.141668 6.44366 0.138092 6.30905 0.134617 6.17799 0.131061 6.05067 0.127314 5.92725 0.123418 5.80777 0.119485 5.69217 0.115601 5.58035 0.111815 5.47226 0.108096 5.36788 0.104375 5.26727 0.100613 5.17048 0.0967885 5.07757 0.0929038 4.98857 0.0890049 4.90322 0.0853457 4.82148 0.0817456 4.74363 0.0778432 4.66976 0.073873 4.59988 0.0698733 4.53402 0.0658601 4.47218 0.0618421 4.41436 0.0578193 4.36057 0.053787 4.31084 0.0497278 4.26523 0.045617 4.22378 0.0414409 4.18659 0.0371926 4.15373 0.0328646 4.12527 0.0284527 4.10132 0.0239561 4.08194 0.0193784 4.0672 0.0147339 4.05716 0.0100404 4.05186 0.00530523 4.05134 0.000519576 4.05566 -0.00432496 4.06484 -0.00918171 4.0791 -0.0142562 4.09861 -0.0195068 4.12351 -0.0249015 -0.0303756 16.8648 -0.00737175 16.8462 0.0372156 16.8061 0.080174 16.7463 0.119599 16.6683 0.156039 16.5738 0.188928 16.4643 0.218974 16.3413 0.246031 16.2059 0.270795 16.0593 0.293223 15.9024 0.313756 15.7362 0.332279 15.5618 0.348922 15.3797 0.364069 15.1912 0.377054 14.9967 0.388891 14.7973 0.398837 14.5935 0.407583 14.386 0.415 14.1753 0.421459 13.962 0.426582 13.7464 0.431139 13.529 0.43472 13.3103 0.437299 13.0905 0.439577 12.8701 0.440707 12.6495 0.441261 12.4287 0.441558 12.2082 0.441049 11.9882 0.440078 11.7687 0.438855 11.5504 0.436744 11.3333 0.434206 11.1175 0.431634 10.9033 0.42837 10.6909 0.424802 10.4803 0.421009 10.2722 0.416211 10.0668 0.410829 9.86413 0.405266 9.66444 0.39935 9.46758 0.393741 9.27322 0.388725 9.0813 0.383806 8.8919 0.378782 8.70528 0.37326 8.52188 0.366861 8.34198 0.359889 8.16554 0.352968 7.99227 0.346537 7.82196 0.340582 7.65452 0.33484 7.49003 0.328925 7.3288 0.322412 7.17124 0.315113 7.01767 0.307176 6.86823 0.298941 6.72282 0.290879 6.58116 0.283323 6.44303 0.276219 6.30838 0.269273 6.1773 0.262133 6.05001 0.254602 5.92664 0.246791 5.80719 0.238941 5.69158 0.231207 5.57974 0.223653 5.47161 0.216227 5.3672 0.20879 5.26655 0.201256 5.16974 0.193605 5.0768 0.185839 4.98776 0.17804 4.90241 0.170695 4.82064 0.163517 4.74278 0.155703 4.6689 0.147751 4.59903 0.139739 4.53319 0.131699 4.47138 0.123653 4.41359 0.115604 4.35984 0.107536 4.31015 0.0994179 4.26457 0.091197 4.22317 0.0828431 4.18601 0.0743477 4.15318 0.0656976 4.12475 0.0568763 4.10083 0.0478824 4.08147 0.0387305 4.06676 0.0294507 4.05672 0.0200794 4.05138 0.0106361 4.05081 0.00109102 4.05507 -0.00858404 4.06419 -0.0183031 4.07839 -0.0284518 4.09782 -0.0389434 4.12264 -0.049715 -0.0606507 16.8644 -0.0112081 16.8457 0.0558441 16.8056 0.120303 16.7458 0.179441 16.6677 0.234107 16.5732 0.283425 16.4637 0.328483 16.3407 0.369073 16.2053 0.4062 16.0586 0.439857 15.9017 0.47064 15.7355 0.498478 15.561 0.523444 15.3789 0.546202 15.1903 0.565678 14.9957 0.583407 14.7963 0.598275 14.5925 0.611345 14.3851 0.622431 14.1744 0.632151 13.9611 0.639923 13.7454 0.646789 13.5279 0.652236 13.3091 0.65609 13.0892 0.659449 12.8688 0.661148 12.6481 0.661922 12.4273 0.662349 12.2068 0.661616 11.9868 0.660097 11.7674 0.658227 11.549 0.655117 11.3319 0.651279 11.1162 0.647418 10.9019 0.642607 10.6895 0.637232 10.4789 0.631552 10.2707 0.624447 10.0652 0.616325 9.86252 0.607955 9.66274 0.599129 9.46583 0.590653 9.27146 0.583096 9.07953 0.575726 8.89021 0.568104 8.70374 0.559735 8.52048 0.550114 8.34068 0.539693 8.16425 0.529395 7.99096 0.519826 7.82061 0.510933 7.65314 0.502309 7.48865 0.493413 7.32743 0.483631 7.16991 0.472633 7.0164 0.460678 6.86701 0.448335 6.7216 0.436283 6.57993 0.424997 6.44178 0.414364 6.30715 0.403904 6.17615 0.393137 6.04893 0.381823 5.92559 0.370124 5.80614 0.358397 5.69049 0.346854 5.5786 0.335546 5.47041 0.324408 5.36595 0.313255 5.26525 0.301955 5.16837 0.290484 5.07536 0.278851 4.98624 0.267158 4.90085 0.25608 4.81902 0.245353 4.74111 0.233605 4.66722 0.221641 4.59737 0.209591 4.53157 0.197496 4.46982 0.1854 4.41211 0.173312 4.35845 0.161199 4.30886 0.149007 4.26338 0.136671 4.22208 0.124146 4.18501 0.111411 4.15227 0.0984444 4.12392 0.0852251 4.10005 0.0717504 4.08073 0.0580485 4.06601 0.0441732 4.05591 0.0301741 4.05049 0.0160577 4.04981 0.00177179 4.05394 -0.012719 4.06292 -0.0272765 4.07696 -0.0424981 4.09623 -0.0582098 4.12085 -0.0743311 -0.0907507 16.8637 -0.0150254 16.8451 0.0745042 16.8049 0.16048 16.745 0.239335 16.6669 0.312223 16.5724 0.377964 16.4628 0.438022 16.3397 0.492148 16.2043 0.541616 16.0577 0.586519 15.9008 0.627544 15.7345 0.664737 15.5599 0.698057 15.3776 0.728437 15.1889 0.754424 14.9943 0.777985 14.7949 0.797714 14.5912 0.81507 14.3838 0.8298 14.1731 0.842816 13.9597 0.853351 13.7439 0.862559 13.5263 0.869915 13.3073 0.875048 13.0873 0.879397 12.8668 0.88167 12.6461 0.882652 12.4253 0.883148 12.2047 0.882205 11.9847 0.880117 11.7654 0.877541 11.547 0.873479 11.3299 0.868361 11.1142 0.863166 10.8999 0.856877 10.6874 0.84972 10.4768 0.842122 10.2685 0.832791 10.0629 0.821943 9.86012 0.810712 9.66024 0.799011 9.46323 0.787656 9.26884 0.777483 9.07696 0.767608 8.88777 0.7573 8.70148 0.746017 8.5184 0.733198 8.33867 0.719416 8.16224 0.70583 7.98891 0.693154 7.81852 0.681322 7.65103 0.669798 7.48656 0.657881 7.32539 0.644805 7.16793 0.630083 7.01452 0.614088 6.86518 0.597679 6.71977 0.581694 6.57808 0.566687 6.43994 0.552499 6.30537 0.538477 6.17446 0.524039 6.04733 0.508958 5.92402 0.493427 5.80455 0.477874 5.68884 0.462563 5.57687 0.447518 5.46861 0.43266 5.36407 0.417797 5.26328 0.402744 5.1663 0.387461 5.07318 0.371972 4.98395 0.35639 4.89851 0.341516 4.8166 0.327266 4.73864 0.31156 4.66474 0.295542 4.59491 0.279415 4.52916 0.263241 4.4675 0.247066 4.4099 0.230912 4.35635 0.214739 4.3069 0.198465 4.26156 0.182005 4.22039 0.165315 4.18344 0.148362 4.15078 0.1311 4.1225 0.113503 4.09867 0.0955821 4.07935 0.0773749 4.06457 0.0589451 4.05439 0.0403576 4.04883 0.0216166 4.04799 0.00261484 4.05195 -0.0166837 4.06076 -0.0360852 4.0746 -0.0563378 4.09363 -0.0772443 4.11802 -0.0987155 -0.12066 16.8629 -0.0187379 16.8442 0.0932043 16.8039 0.200719 16.744 0.299298 16.6658 0.390401 16.5712 0.47256 16.4616 0.547602 16.3385 0.615268 16.2031 0.677054 16.0564 0.733224 15.8994 0.784482 15.7331 0.831071 15.5584 0.872785 15.376 0.910789 15.1871 0.943311 14.9925 0.972636 14.793 0.997152 14.5893 1.01876 14.382 1.03712 14.1714 1.05347 13.9578 1.0669 13.7419 1.07849 13.524 1.08778 13.3049 1.0942 13.0848 1.09943 12.8642 1.10228 12.6434 1.10347 12.4226 1.10397 12.202 1.10281 11.9819 1.10016 11.7627 1.09681 11.5443 1.09183 11.3272 1.08548 11.1115 1.07889 10.8972 1.07117 10.6846 1.06228 10.474 1.05272 10.2656 1.04123 10.0598 1.0277 9.85698 1.01355 9.65699 0.998997 9.45988 0.984767 9.26547 0.971891 9.07365 0.959426 8.88461 0.946345 8.69852 0.932101 8.51559 0.916131 8.33592 0.899085 8.15945 0.8823 7.98606 0.866536 7.81564 0.851741 7.64815 0.837287 7.48374 0.822298 7.32265 0.805888 7.16532 0.787419 7.01202 0.767379 6.86275 0.746955 6.71733 0.727108 6.57564 0.708381 6.43754 0.690594 6.30305 0.672964 6.17227 0.654823 6.04522 0.636004 5.92193 0.61672 5.8024 0.5974 5.68661 0.578353 5.57454 0.559591 5.46618 0.541016 5.36154 0.522444 5.26063 0.503652 5.16352 0.484565 5.07027 0.465222 4.98091 0.445756 4.8954 0.427023 4.81341 0.409256 4.7354 0.389567 4.66148 0.369458 4.59169 0.349212 4.526 0.328925 4.46442 0.308646 4.40694 0.288397 4.35353 0.268142 4.30422 0.247778 4.25901 0.227206 4.21795 0.206377 4.18108 0.18523 4.14848 0.163701 4.12023 0.141755 4.09639 0.119419 4.07701 0.0967514 4.06213 0.0738243 4.0518 0.0506947 4.04606 0.0273496 4.04504 0.00364106 4.04881 -0.020454 4.05742 -0.0446949 4.07107 -0.0699876 4.0899 -0.0960747 4.11407 -0.122893 -0.1504 16.8618 -0.02237 16.843 0.111941 16.8028 0.241014 16.7427 0.359345 16.6645 0.468654 16.5698 0.567229 16.4601 0.65724 16.337 0.738451 16.2015 0.81253 16.0547 0.879989 15.8977 0.941473 15.7313 0.997493 15.5564 1.04764 15.374 1.09326 15.1849 1.13234 14.9902 1.16737 14.7908 1.1966 14.5871 1.22244 14.3798 1.24444 14.1691 1.26415 13.9554 1.28061 13.7393 1.29459 13.5212 1.30582 13.3019 1.31355 13.0817 1.31957 12.861 1.32298 12.6401 1.32441 12.4193 1.32482 12.1986 1.32344 11.9785 1.32025 11.7593 1.31609 11.5409 1.31019 11.3237 1.30265 11.108 1.29461 10.8937 1.28547 10.6811 1.27492 10.4705 1.26336 10.2619 1.24973 10.0561 1.23358 9.85315 1.21647 9.65306 1.19908 9.45584 1.182 9.2614 1.16633 9.06965 1.15118 8.88075 1.13524 8.69483 1.11801 8.51201 1.09895 8.33236 1.07874 8.15582 1.05883 7.98237 1.03999 7.81193 1.02218 7.64447 1.00474 7.48015 0.986618 7.31922 0.966818 7.16206 0.94458 7.00893 0.920507 6.85974 0.89614 6.71434 0.872511 6.57265 0.85007 6.43462 0.828626 6.30023 0.807349 6.16954 0.785513 6.04255 0.762999 5.91923 0.740032 5.79963 0.716999 5.68375 0.694235 5.57157 0.671773 5.4631 0.649489 5.35833 0.627211 5.25729 0.604697 5.16004 0.581813 5.06665 0.558611 4.97715 0.535251 4.89157 0.512606 4.80951 0.491317 4.73146 0.467617 4.65752 0.443387 4.58775 0.418989 4.52211 0.394555 4.46061 0.370145 4.40323 0.345781 4.34994 0.321427 4.30075 0.296971 4.25563 0.272323 4.21462 0.247384 4.17779 0.222064 4.14519 0.196292 4.11692 0.170033 4.09301 0.143325 4.07352 0.116246 4.05847 0.0888679 4.04793 0.0612325 4.04198 0.0333073 4.04073 0.0048905 4.0443 -0.0240254 4.05274 -0.0531362 4.06623 -0.0834757 4.08491 -0.114758 4.10896 -0.146942 -0.18002 16.8605 -0.0262162 16.8417 0.130747 16.8013 0.281392 16.7412 0.419491 16.6628 0.546997 16.5681 0.661987 16.4584 0.766954 16.3351 0.861717 16.1996 0.948068 16.0527 1.02684 15.8957 1.09854 15.7291 1.16401 15.5541 1.22264 15.3715 1.27585 15.1824 1.32151 14.9876 1.36218 14.7881 1.39607 14.5844 1.42614 14.377 1.4518 14.1663 1.4749 13.9524 1.4945 13.7361 1.5109 13.5179 1.52403 13.2983 1.53309 13.0781 1.53982 12.8573 1.54376 12.6363 1.54545 12.4154 1.54573 12.1947 1.5441 11.9745 1.54042 11.7552 1.53541 11.5368 1.52859 11.3196 1.5199 11.1038 1.51035 10.8895 1.49976 10.6768 1.48761 10.4662 1.47401 10.2577 1.45825 10.0517 1.43954 9.84869 1.41946 9.64852 1.39925 9.45117 1.37935 9.25668 1.36081 9.06498 1.34287 8.8762 1.32403 8.6904 1.3038 8.50763 1.28173 8.32793 1.25843 8.15131 1.23546 7.97776 1.21353 7.80732 1.19262 7.63995 1.17211 7.47578 1.15078 7.31508 1.12752 7.15817 1.10149 7.00523 1.07345 6.85614 1.04522 6.71078 1.01788 6.56911 0.991733 6.43115 0.966587 6.29686 0.941644 6.16623 0.916143 6.03924 0.88998 5.91589 0.863389 5.79619 0.836692 5.6802 0.810228 5.5679 0.784073 5.4593 0.758091 5.35441 0.732102 5.25324 0.705864 5.15585 0.679199 5.06233 0.652132 4.97273 0.624857 4.88707 0.598259 4.80495 0.573439 4.72686 0.545705 4.65291 0.517331 4.58314 0.488764 4.51753 0.460159 4.45609 0.431593 4.39877 0.403099 4.34555 0.374644 4.2964 0.346119 4.2513 0.31742 4.21029 0.288396 4.17343 0.258925 4.14078 0.228935 4.11241 0.198401 4.08837 0.167366 4.0687 0.135922 4.05342 0.104144 4.04261 0.0720383 4.03639 0.0395332 4.03491 0.00636816 4.03829 -0.0274128 4.04661 -0.0614466 4.06001 -0.0968845 4.07865 -0.133395 4.10267 -0.170957 -0.209575 16.859 -0.0301957 16.8402 0.149629 16.7997 0.321865 16.7394 0.479749 16.661 0.625443 16.5661 0.756848 16.4563 0.876762 16.3329 0.98509 16.1973 1.0837 16.0504 1.1738 15.8932 1.2557 15.7266 1.33064 15.5514 1.39775 15.3688 1.45854 15.1795 1.51079 14.9846 1.55708 14.785 1.59559 14.5813 1.62992 14.3738 1.65927 14.1629 1.68577 13.9488 1.70858 13.7323 1.72739 13.514 1.74239 13.2943 1.7528 13.0739 1.76018 12.8531 1.76461 12.6319 1.76662 12.4109 1.76672 12.1902 1.76482 11.9699 1.76071 11.7505 1.75483 11.532 1.74706 11.3146 1.73726 11.0988 1.72614 10.8846 1.71404 10.6718 1.70032 10.4612 1.68465 10.2527 1.66673 10.0467 1.64555 9.84364 1.62252 9.64339 1.59951 9.44591 1.57682 9.25135 1.55537 9.05967 1.53455 8.87095 1.51276 8.68521 1.48954 8.50241 1.46453 8.32261 1.43823 8.14586 1.41221 7.97223 1.38717 7.8018 1.36305 7.63457 1.33934 7.47063 1.31472 7.31022 1.28794 7.15363 1.25807 7.0009 1.22618 6.85193 1.19419 6.70663 1.16318 6.56501 1.13335 6.42711 1.10448 6.29288 1.07587 6.16228 1.04675 6.03527 1.01699 5.91184 0.986815 5.79203 0.956498 5.67591 0.92635 5.56349 0.896499 5.45475 0.866822 5.34974 0.837115 5.24847 0.807134 5.15099 0.776681 5.05737 0.745753 4.96768 0.714545 4.88198 0.683961 4.79981 0.6556 4.72169 0.62383 4.64772 0.5913 4.57792 0.558559 4.5123 0.525778 4.45085 0.493044 4.39353 0.460418 4.34029 0.427881 4.2911 0.395314 4.24594 0.362577 4.20485 0.329488 4.16789 0.295884 4.13512 0.261697 4.1066 0.226924 4.08235 0.191615 4.06242 0.155858 4.04684 0.119724 4.0357 0.0831735 4.02916 0.046073 4.02745 0.00807735 4.03073 -0.030697 4.03904 -0.0697488 4.05249 -0.110341 4.0712 -0.152097 4.09525 -0.195016 -0.239098 16.8574 -0.034246 16.8384 0.168608 16.7978 0.362446 16.7374 0.540132 16.6589 0.704008 16.5639 0.851832 16.454 0.986687 16.3305 1.1086 16.1947 1.21945 16.0476 1.3209 15.8903 1.41299 15.7236 1.49738 15.5483 1.57298 15.3656 1.6413 15.1762 1.70016 14.9812 1.75207 14.7816 1.79522 14.5777 1.83384 14.37 1.86695 14.159 1.89681 13.9447 1.92288 13.728 1.94407 13.5095 1.96085 13.2897 1.97264 13.0692 1.98065 12.8483 1.98554 12.627 1.98789 12.4059 1.98782 12.1851 1.98563 11.9646 1.98117 11.745 1.97443 11.5265 1.96564 11.309 1.95474 11.0931 1.94201 10.8788 1.92831 10.6661 1.91302 10.4555 1.89525 10.2471 1.87511 10.0412 1.85154 9.83804 1.82564 9.6377 1.79985 9.44008 1.77444 9.24543 1.75003 9.05372 1.72625 8.86499 1.70149 8.67922 1.6753 8.49633 1.64741 8.31638 1.61819 8.13948 1.58911 7.96576 1.56088 7.79537 1.53344 7.62834 1.50637 7.4647 1.47835 7.30464 1.448 7.14842 1.41429 6.99592 1.37868 6.84708 1.34303 6.70186 1.3084 6.56029 1.27492 6.42244 1.24234 6.28825 1.21006 6.15763 1.17737 6.03056 1.14406 5.90704 1.11034 5.78711 1.07643 5.67084 1.04261 5.55829 1.00906 5.44943 0.975675 5.34431 0.942235 5.24297 0.90848 5.14544 0.87421 5.05179 0.839402 4.96208 0.804256 4.87636 0.769681 4.79418 0.737773 4.71602 0.701991 4.642 0.665315 4.57215 0.628414 4.50645 0.591474 4.44491 0.554582 4.3875 0.517832 4.33413 0.481247 4.28478 0.444666 4.23946 0.407896 4.1982 0.370742 4.16107 0.333017 4.12811 0.29465 4.09936 0.255672 4.07484 0.216143 4.05456 0.176134 4.03859 0.135692 4.02707 0.0946964 4.0203 0.0528421 4.01855 0.00982793 4.02188 -0.0340281 4.03028 -0.0781506 4.04386 -0.12392 4.06268 -0.170915 4.0868 -0.219142 -0.268592 16.8555 -0.0382795 16.8364 0.187667 16.7957 0.403147 16.7352 0.600653 16.6565 0.782705 16.5614 0.946955 16.4513 1.09675 16.3277 1.23227 16.1917 1.35537 16.0445 1.46817 15.887 1.57043 15.7202 1.66424 15.5449 1.7483 15.3621 1.8241 15.1726 1.88957 14.9776 1.94715 14.7778 1.99498 14.5737 2.03797 14.3657 2.07489 14.1544 2.10809 13.9399 2.13739 13.7231 2.16093 13.5045 2.17941 13.2846 2.19259 13.064 2.20122 12.843 2.20652 12.6216 2.20926 12.4004 2.20904 12.1795 2.20658 11.9588 2.20182 11.739 2.19425 11.5202 2.1844 11.3026 2.17237 11.0866 2.15798 10.8724 2.14256 10.6598 2.12566 10.4492 2.10578 10.241 2.08335 10.0351 2.05746 9.83189 2.0288 9.63146 2.00028 9.43369 1.97221 9.23889 1.94483 9.0471 1.91804 8.85829 1.8903 8.67243 1.86117 8.48939 1.83046 8.30923 1.79835 8.13217 1.76617 7.9584 1.73466 7.78808 1.70376 7.62128 1.67316 7.458 1.64163 7.29836 1.60764 7.14251 1.57014 6.99026 1.53092 6.84155 1.49174 6.69641 1.45353 6.5549 1.41643 6.41707 1.38017 6.28288 1.34424 6.15222 1.30803 6.02505 1.27123 5.90142 1.23397 5.78136 1.19649 5.66495 1.15902 5.55226 1.12175 5.44331 1.08463 5.33811 1.04743 5.23673 1.00986 5.13921 0.971727 5.04561 0.933009 4.95596 0.893909 4.87028 0.855357 4.78814 0.819914 4.70994 0.780186 4.63584 0.739417 4.56586 0.698394 4.5 0.657331 4.43827 0.616314 4.38063 0.575465 4.32701 0.534869 4.27738 0.494297 4.23178 0.453492 4.19027 0.412255 4.15288 0.370404 4.11966 0.327873 4.0906 0.284724 4.06571 0.241034 4.04502 0.196828 4.02871 0.151996 4.01708 0.106326 4.01034 0.0595863 4.00865 0.0115134 4.01209 -0.0374609 4.02062 -0.086683 4.03434 -0.137636 4.05326 -0.189838 4.07742 -0.243305 -0.298018 16.8532 -0.0420817 16.8342 0.206661 16.7934 0.443939 16.7328 0.661326 16.6539 0.861549 16.5586 1.04224 16.4484 1.20698 16.3245 1.35613 16.1884 1.49149 16.0409 1.61566 15.8833 1.72804 15.7163 1.83122 15.541 1.92367 15.3582 2.00689 15.1687 2.079 14.9736 2.1423 14.7736 2.19494 14.5692 2.24238 14.3609 2.28319 14.1493 2.31967 13.9346 2.35212 13.7176 2.37794 13.499 2.39805 13.2789 2.41262 13.0583 2.42189 12.8372 2.42758 12.6158 2.43073 12.3944 2.43041 12.1733 2.42769 11.9524 2.42269 11.7323 2.41433 11.5134 2.40335 11.2956 2.39014 11.0795 2.37407 10.8653 2.35679 10.6527 2.33821 10.4423 2.31619 10.2342 2.29143 10.0284 2.26329 9.82519 2.23201 9.62464 2.20083 9.4267 2.17016 9.2317 2.13983 9.03978 2.10996 8.85083 2.07925 8.6648 2.04719 8.48157 2.01369 8.3012 1.97873 8.12399 1.94337 7.95019 1.90846 7.77997 1.87398 7.61345 1.83968 7.45057 1.80451 7.29136 1.76685 7.13589 1.72561 6.98389 1.68292 6.8353 1.64033 6.69023 1.59859 6.54877 1.5579 6.41094 1.518 6.27672 1.47847 6.14598 1.43876 6.01871 1.39851 5.89494 1.35774 5.77475 1.31668 5.65821 1.27556 5.5454 1.23456 5.43637 1.19366 5.33114 1.15266 5.22977 1.11123 5.13232 1.06918 5.03882 1.0265 4.94929 0.98344 4.8637 0.940945 4.78164 0.901976 4.70344 0.858384 4.62923 0.813627 4.55906 0.768566 4.49294 0.723446 4.4309 0.67836 4.37291 0.633447 4.31891 0.588875 4.26886 0.544337 4.22286 0.499491 4.18098 0.454137 4.14325 0.408134 4.10968 0.36144 4.08028 0.314124 4.05509 0.266227 4.03423 0.217682 4.01792 0.168314 4.00634 0.117901 3.99968 0.0662467 3.99809 0.013105 4.00163 -0.0410018 4.01028 -0.0953348 4.0241 -0.151455 4.04307 -0.208811 4.0672 -0.267427 -0.327304 16.851 -0.0462604 16.8318 0.225802 16.7909 0.484869 16.7301 0.722162 16.6511 0.940554 16.5556 1.1377 16.4452 1.3174 16.3211 1.48021 16.1847 1.62785 16.037 1.76339 15.8792 1.88585 15.7121 1.99832 15.5367 2.09909 15.3539 2.18967 15.1645 2.2684 14.9693 2.33754 14.7691 2.39513 14.5643 2.44713 14.3556 2.4919 14.1437 2.53159 13.9287 2.56708 13.7116 2.5951 13.4929 2.61674 13.2728 2.6327 13.052 2.64264 12.8309 2.64869 12.6094 2.65228 12.3878 2.65194 12.1665 2.64899 11.9454 2.6438 11.7251 2.63469 11.5059 2.62253 11.288 2.60807 11.0717 2.59027 10.8575 2.57103 10.6451 2.55064 10.4348 2.52648 10.2269 2.49933 10.0212 2.469 9.8179 2.43528 9.61721 2.40152 9.41905 2.36831 9.22382 2.33506 9.03172 2.30206 8.84258 2.26839 8.65635 2.23342 8.47292 2.19712 8.29234 2.1593 8.11501 2.1207 7.94122 2.08225 7.77113 2.04407 7.60488 2.00593 7.44241 1.96698 7.28365 1.92561 7.12853 1.88073 6.97675 1.8347 6.82827 1.78881 6.68325 1.74361 6.54181 1.69933 6.40396 1.65585 6.26967 1.61276 6.13886 1.56958 6.01147 1.5259 5.88757 1.48164 5.76725 1.43699 5.6506 1.39221 5.53769 1.34747 5.4286 1.30275 5.32338 1.25788 5.22208 1.21253 5.12476 1.1665 5.03143 1.11983 4.94206 1.07281 4.85657 1.02643 4.77459 0.983961 4.69638 0.936593 4.62204 0.887965 4.55163 0.838974 4.48519 0.78988 4.42275 0.740799 4.36432 0.691879 4.30984 0.64336 4.25932 0.59485 4.21287 0.545938 4.17059 0.496422 4.13251 0.446215 4.09864 0.395301 4.06903 0.343737 4.04373 0.291526 4.02287 0.238543 4.00661 0.184573 3.99512 0.129392 3.98855 0.0728169 3.98705 0.0146082 3.99068 -0.0446352 3.99942 -0.104074 4.01329 -0.165323 4.03222 -0.227745 4.05619 -0.291398 -0.35635 16.8486 -0.0507553 16.8293 0.245101 16.7882 0.52595 16.7272 0.783178 16.648 1.01973 16.5523 1.23335 16.4417 1.42803 16.3174 1.60454 16.1807 1.7645 16.0327 1.91139 15.8747 2.0439 15.7074 2.16557 15.532 2.27453 15.3493 2.37239 15.1599 2.45777 14.9646 2.53284 14.7641 2.59558 14.559 2.65228 14.3498 2.70108 14.1375 2.74391 13.9223 2.78227 13.705 2.81242 13.4862 2.83552 13.2661 2.85282 13.0453 2.86348 12.8241 2.86988 12.6024 2.87391 12.3807 2.87363 12.1592 2.87049 11.9379 2.86515 11.7173 2.85532 11.4978 2.84196 11.2798 2.82615 11.0634 2.80659 10.8492 2.78528 10.6369 2.76295 10.4267 2.73665 10.219 2.70709 10.0133 2.67461 9.80998 2.63865 9.6091 2.6024 9.4107 2.56671 9.21519 2.53056 9.02286 2.49439 8.83352 2.45773 8.64707 2.41988 8.46345 2.38074 8.28271 2.34004 8.1053 2.29811 7.93156 2.25599 7.76163 2.214 7.59565 2.17191 7.43358 2.12905 7.27524 2.08395 7.12041 2.03556 6.9688 1.98631 6.82039 1.93722 6.67539 1.88861 6.53395 1.84077 6.39607 1.79373 6.2617 1.74713 6.13079 1.70049 6.00329 1.65339 5.87927 1.60565 5.75884 1.55742 5.6421 1.50896 5.52912 1.46045 5.42001 1.41186 5.31485 1.36304 5.21368 1.31371 5.11652 1.26366 5.02338 1.21297 4.93418 1.162 4.84879 1.11182 4.76687 1.06589 4.68863 1.01483 4.61414 0.962448 4.54347 0.909643 4.47668 0.85667 4.4138 0.803676 4.35487 0.750816 4.29987 0.698359 4.24889 0.645827 4.20204 0.592783 4.15942 0.53904 4.12108 0.484561 4.08702 0.429355 4.0573 0.373458 4.03198 0.316845 4.01116 0.259358 3.99498 0.200756 3.98357 0.140803 3.97707 0.0793123 3.97564 0.0160387 3.97935 -0.0483402 3.98814 -0.112861 4.00198 -0.179164 4.02076 -0.246524 4.04444 -0.315081 -0.385037 16.846 -0.05556 16.8265 0.264613 16.7853 0.567195 16.7241 0.844387 16.6447 1.0991 16.5488 1.32923 16.4379 1.5389 16.3133 1.72915 16.1764 1.90146 16.0281 2.05969 15.8698 2.20221 15.7023 2.33298 15.5269 2.45 15.3442 2.55506 15.1549 2.64706 14.9596 2.72819 14.7588 2.79633 14.5532 2.85786 14.3436 2.91076 14.1308 2.95665 13.9154 2.99772 13.6979 3.02989 13.479 3.05439 13.2589 3.07299 13.0379 3.0844 12.8167 3.09116 12.5949 3.09562 12.3731 3.09547 12.1514 3.09222 11.9298 3.08671 11.7089 3.0762 11.4893 3.0616 11.2711 3.04436 11.0546 3.02301 10.8404 2.99957 10.6281 2.97516 10.4181 2.94671 10.2104 2.91475 10.0049 2.88016 9.80137 2.84215 9.60024 2.80353 9.40157 2.76538 9.20576 2.72637 9.01318 2.68698 8.82364 2.64727 8.63699 2.60652 8.45322 2.5645 8.27239 2.52086 8.09494 2.47557 7.92127 2.42966 7.75152 2.38375 7.58579 2.33763 7.42407 2.29076 7.26612 2.2419 7.1115 2.19018 6.96 2.13781 6.81162 2.08559 6.6666 2.03363 6.52513 1.98225 6.38719 1.93166 6.25274 1.88158 6.12174 1.83149 5.99415 1.78097 5.87004 1.72977 5.74952 1.67794 5.63271 1.62577 5.5197 1.57345 5.41062 1.52094 5.30556 1.4681 5.20455 1.41472 5.10758 1.36063 5.01463 1.30593 4.92559 1.25104 4.84027 1.19714 4.75837 1.14778 4.68007 1.09313 4.60543 1.03709 4.5345 0.980577 4.46734 0.923824 4.40402 0.866999 4.34457 0.810265 4.28908 0.753844 4.23771 0.697202 4.19055 0.639939 4.14769 0.581898 4.10917 0.523078 4.07502 0.46351 4.04526 0.403212 4.01997 0.342137 3.99922 0.280111 3.9831 0.21687 3.97176 0.15215 3.96532 0.0857481 3.96395 0.0174078 3.96771 -0.0520967 3.97649 -0.121642 3.9902 -0.192872 4.00868 -0.265001 4.03191 -0.338318 -0.413242 16.8433 -0.0606001 16.8235 0.284319 16.7821 0.608619 16.7207 0.905804 16.6411 1.17868 16.545 1.42533 16.4339 1.65002 16.309 1.85405 16.1717 2.03876 16.0231 2.20833 15.8645 2.36081 15.6969 2.50058 15.5214 2.6255 15.3387 2.73768 15.1495 2.83629 14.9541 2.92358 14.7531 2.99736 14.5471 3.06387 14.3369 3.12094 14.1237 3.16984 13.908 3.21344 13.6903 3.24754 13.4713 3.27339 13.2511 3.29323 13.0301 3.30543 12.8087 3.31256 12.5869 3.31743 12.3649 3.31748 12.1429 3.31414 11.9212 3.30845 11.7001 3.29727 11.4803 3.28145 11.2619 3.26268 11.0454 3.23953 10.8311 3.21391 10.6189 3.18731 10.4089 3.15671 10.2013 3.12239 9.99571 3.08574 9.792 3.04585 9.59056 3.00497 9.39159 2.96435 9.19548 2.92247 9.00264 2.87981 8.81292 2.83699 8.62613 2.79332 8.44228 2.74835 8.26143 2.70171 8.084 2.653 7.91043 2.60322 7.74085 2.55333 7.57534 2.50314 7.41393 2.45218 7.25628 2.39955 7.10178 2.34467 6.9503 2.2893 6.80191 2.23398 6.65682 2.17871 6.51527 2.1238 6.37728 2.06966 6.24275 2.0161 6.11167 1.96257 5.98403 1.90861 5.85985 1.85394 5.73927 1.79853 5.62243 1.74261 5.50945 1.68643 5.40044 1.62995 5.29551 1.57303 5.19469 1.51554 5.09792 1.4574 5.00513 1.39872 4.91619 1.33998 4.83091 1.28243 4.74901 1.22968 4.67063 1.17152 4.59582 1.1119 4.52463 1.05176 4.45713 0.991322 4.39339 0.930743 4.33347 0.870181 4.27758 0.809734 4.22591 0.748878 4.17854 0.687308 4.13553 0.624903 4.09692 0.561684 4.06274 0.497696 4.033 0.432948 4.00776 0.367379 3.98707 0.300801 3.97101 0.232924 3.95972 0.163445 3.95334 0.0921279 3.95203 0.0187196 3.9558 -0.0558738 3.96449 -0.130327 3.97791 -0.206293 3.9959 -0.282992 4.01853 -0.360947 -0.440859 16.8395 -0.0649984 16.8203 0.303507 16.7788 0.65018 16.7171 0.967449 16.6373 1.25848 16.541 1.5217 16.4296 1.76141 16.3044 1.97926 16.1667 2.17642 16.0177 2.35731 15.8588 2.51972 15.691 2.66839 15.5154 2.80107 15.3328 2.92026 15.1437 3.02546 14.9482 3.11901 14.7469 3.19867 14.5405 3.27031 14.3298 3.33161 14.1162 3.3835 13.9002 3.42946 13.6823 3.46539 13.4631 3.49256 13.2428 3.51358 13.0216 3.52659 12.8001 3.5341 12.5782 3.53934 12.356 3.53962 12.1339 3.53625 11.9121 3.53032 11.6909 3.51847 11.4709 3.50145 11.2524 3.4811 11.0358 3.45614 10.8214 3.42834 10.6093 3.39946 10.3993 3.36671 10.1915 3.33012 9.98581 3.29145 9.78182 3.24984 9.58001 3.20679 9.38071 3.16364 9.18432 3.11887 8.99125 3.07288 8.8014 3.02684 8.61453 2.98019 8.43067 2.93222 8.24988 2.88249 8.07252 2.83036 7.89906 2.77668 7.72966 2.72274 7.56434 2.66846 7.40314 2.61338 7.24568 2.557 7.09121 2.49914 6.93966 2.44085 6.79119 2.38245 6.64601 2.3239 6.50435 2.26546 6.36627 2.20773 6.23169 2.15068 6.10056 2.09371 5.97289 2.03629 5.8487 1.97813 5.72811 1.91912 5.61128 1.85943 5.49838 1.79933 5.38949 1.73885 5.28471 1.6778 5.18408 1.61617 5.08749 1.55399 4.99481 1.4914 4.90592 1.42886 4.82062 1.36772 4.73871 1.31159 4.66022 1.25001 4.58525 1.18687 4.51382 1.12319 4.44602 1.05912 4.38192 0.994848 4.32163 0.93047 4.26545 0.865911 4.21358 0.800744 4.1661 0.73479 4.12303 0.667971 4.0844 0.600311 4.05024 0.53186 4.02055 0.462631 3.99538 0.392555 3.97475 0.321428 3.95875 0.248921 3.94752 0.174681 3.9412 0.098443 3.93994 0.0199858 3.94366 -0.059597 3.95208 -0.138743 3.96497 -0.219189 3.98226 -0.300281 4.00417 -0.382851 -0.467821 16.8365 -0.0700909 16.817 0.322997 16.7752 0.69195 16.7133 1.02934 16.6333 1.33851 16.5366 1.61833 16.425 1.87309 16.2994 2.10478 16.1614 2.31445 16.0121 2.50664 15.8528 2.67897 15.6848 2.83647 15.5091 2.97675 15.3265 3.10287 15.1373 3.21461 14.9419 3.31448 14.7403 3.40021 14.5335 3.47711 14.3224 3.54273 14.1083 3.59762 13.8919 3.6458 13.6738 3.68348 13.4544 3.71197 13.2339 3.73408 13.0126 3.74791 12.7909 3.75583 12.5688 3.76138 12.3466 3.76189 12.1243 3.75849 11.9024 3.75225 11.6811 3.73973 11.461 3.72153 11.2426 3.69958 11.0259 3.67282 10.8113 3.64288 10.5991 3.61166 10.3891 3.5768 10.1811 3.53805 9.97515 3.49743 9.77079 3.45419 9.56855 3.40904 9.36892 3.36327 9.17227 3.31552 8.979 3.26615 8.78908 3.21677 8.60223 3.16704 8.41843 3.11602 8.23778 3.06314 8.06055 3.00759 7.8872 2.95002 7.71795 2.89199 7.55278 2.83363 7.39169 2.77446 7.2343 2.71439 7.07976 2.65368 6.92806 2.59254 6.77945 2.53107 6.63412 2.46922 6.4923 2.40728 6.35413 2.3459 6.21952 2.28529 6.08838 2.22484 5.96072 2.16394 5.83658 2.10227 5.71603 2.03966 5.59928 1.97619 5.48649 1.91212 5.37776 1.84757 5.27316 1.7824 5.1727 1.71663 5.07624 1.65045 4.98363 1.58402 4.89472 1.51777 4.80937 1.45307 4.72742 1.39354 4.64881 1.32861 4.57367 1.26202 4.50204 1.19481 4.43399 1.12718 4.36961 1.05923 4.30908 0.991002 4.25275 0.922236 4.20081 0.852683 4.1533 0.782293 4.11025 0.711024 4.07167 0.638896 4.03757 0.565957 4.00796 0.492233 3.98287 0.417652 3.96231 0.341983 3.94638 0.264848 3.93522 0.185843 3.92898 0.104688 3.9277 0.0212625 3.93117 -0.0630705 3.93895 -0.146514 3.95098 -0.231218 3.96745 -0.316756 3.98863 -0.404031 -0.494135 16.8333 -0.0758352 16.8134 0.342812 16.7714 0.733952 16.7093 1.0915 16.629 1.41881 16.5321 1.71526 16.4201 1.98507 16.2942 2.23061 16.1558 2.45285 16.0062 2.65633 15.8465 2.83858 15.6782 3.00484 15.5023 3.1526 15.3196 3.28556 15.1305 3.40378 14.9349 3.50998 14.7332 3.60196 14.5261 3.68421 14.3146 3.75424 14.1 3.81217 13.8833 3.86248 13.665 3.90185 13.4453 3.93166 13.2246 3.95481 13.003 3.96944 12.781 3.9778 12.5588 3.98358 12.3365 3.98429 12.1141 3.98082 11.8922 3.97417 11.671 3.96094 11.4509 3.94165 11.2324 3.91809 11.0156 3.88957 10.8009 3.85756 10.5886 3.82399 10.3783 3.78706 10.1701 3.74631 9.96369 3.70382 9.75889 3.65899 9.55618 3.61175 9.35622 3.56323 9.15936 3.51238 8.96596 3.45955 8.77602 3.4067 8.58926 3.3538 8.4056 3.29968 8.22514 3.2436 8.04808 3.18465 7.87486 3.12324 7.70572 3.06112 7.54064 2.99871 7.37957 2.93554 7.2221 2.87186 7.06739 2.80839 6.91547 2.74447 6.76663 2.6799 6.62111 2.61475 6.4791 2.54928 6.3408 2.4842 6.20618 2.41991 6.07509 2.35593 5.94751 2.29153 5.82347 2.22631 5.70305 2.16009 5.58642 2.09282 5.4738 2.02475 5.36527 1.95611 5.26085 1.88682 5.16052 1.81696 5.06414 1.74682 4.97153 1.67663 4.88256 1.60674 4.79713 1.53851 4.71513 1.47554 4.63638 1.40736 4.56106 1.33734 4.48925 1.26662 4.42102 1.19541 4.35648 1.12377 4.29586 1.05162 4.23953 0.978563 4.18764 0.904579 4.14021 0.829721 4.09725 0.753983 4.05877 0.677373 4.02479 0.59994 3.99529 0.521727 3.97029 0.442659 3.94981 0.362459 3.93397 0.280689 3.92289 0.196919 3.91666 0.110919 3.91508 0.0228417 3.91769 -0.0656793 3.92446 -0.153275 3.93558 -0.242336 3.95126 -0.332437 3.97177 -0.42454 -0.51988 16.83 -0.082288 16.8097 0.363061 16.7674 0.776205 16.705 1.15395 16.6244 1.49939 16.5272 1.8125 16.4149 2.09735 16.2887 2.35677 16.15 2.5916 15.9999 2.80637 15.84 2.99855 15.6713 3.17354 15.4952 3.3287 15.3123 3.46842 15.123 3.59305 14.9275 3.70555 14.7256 3.80387 14.5182 3.89154 14.3064 3.96607 14.0914 4.02715 13.8744 4.07951 13.6557 4.12053 13.4357 4.1517 13.2147 4.17582 12.9929 4.19124 12.7706 4.20007 12.5482 4.20599 12.3257 4.20678 12.1033 4.20321 11.8815 4.19601 11.6604 4.18203 11.4403 4.16171 11.2218 4.13659 11.005 4.10637 10.7902 4.07241 10.5776 4.03652 10.3671 3.9976 10.1584 3.95502 9.95145 3.91074 9.74613 3.86431 9.54294 3.81494 9.34266 3.76351 9.14565 3.7094 8.95216 3.65303 8.76227 3.59659 8.57567 3.54041 8.3922 3.48314 8.21197 3.42383 8.03512 3.3615 7.86201 3.29635 7.69295 3.23019 7.52789 3.16376 7.36672 3.09671 7.20903 3.02954 7.05407 2.96335 6.90186 2.89668 6.75273 2.82903 6.60694 2.76054 6.46469 2.69153 6.32623 2.62265 6.19162 2.55452 6.06066 2.4869 5.93323 2.41895 5.80938 2.35016 5.68916 2.28031 5.57273 2.20925 5.4603 2.13717 5.35198 2.06443 5.24774 1.99107 5.1475 1.9172 5.05115 1.84317 4.9585 1.76928 4.86942 1.69581 4.78387 1.62406 4.70181 1.5576 4.62292 1.48625 4.54743 1.41283 4.47546 1.33859 4.40712 1.26376 4.34255 1.18834 4.28201 1.11215 4.22583 1.03474 4.17411 0.956305 4.12686 0.876971 4.08408 0.796755 4.04579 0.715669 4.01197 0.633761 3.9826 0.551095 3.95768 0.467577 3.93727 0.382864 3.9215 0.296464 3.91036 0.208056 3.90356 0.117722 3.90097 0.0254283 3.90254 -0.0672491 3.90835 -0.159077 3.91858 -0.252573 3.93351 -0.347359 3.95346 -0.444499 -0.545195 16.8264 -0.089384 16.8058 0.383737 16.7632 0.818735 16.7005 1.21671 16.6196 1.58028 16.522 1.91007 16.4094 2.20995 16.283 2.48323 16.1439 2.73069 15.9935 2.95674 15.8331 3.1589 15.6641 3.34263 15.4876 3.50511 15.3045 3.65153 15.1151 3.7825 14.9194 3.9012 14.7174 4.00591 14.5099 4.09904 14.2979 4.17813 14.0825 4.24249 13.8651 4.29691 13.6461 4.33955 13.4257 4.37212 13.2043 4.39718 12.9822 4.41336 12.7596 4.42268 12.5369 4.42863 12.3143 4.42939 12.0919 4.4256 11.8702 4.41773 11.6493 4.40293 11.4294 4.38167 11.2109 4.35506 10.994 4.32323 10.779 4.28745 10.5662 4.24934 10.3553 4.20851 10.146 4.16429 9.93844 4.1183 9.73255 4.07019 9.5289 4.01859 9.32833 3.96408 9.1312 3.90652 8.9377 3.84653 8.74788 3.78641 8.56148 3.72681 8.37825 3.66637 8.19827 3.60381 8.02164 3.53813 7.84863 3.46936 7.67958 3.39924 7.51446 3.32887 7.35307 3.2581 7.19504 3.18757 7.03975 3.11864 6.88719 3.04924 6.7377 2.97853 6.59157 2.90666 6.44903 2.83407 6.31037 2.76131 6.17579 2.68911 6.04504 2.61765 5.91787 2.54612 5.79428 2.47375 5.67434 2.40025 5.55817 2.32542 5.44599 2.24936 5.33788 2.17253 5.23379 2.09517 5.13361 2.01738 5.03723 1.93955 4.94449 1.86202 4.85527 1.78504 4.76958 1.70975 4.68746 1.63972 4.60841 1.56529 4.53276 1.48849 4.46067 1.41067 4.3923 1.33213 4.32783 1.25281 4.26755 1.17244 4.21166 1.09063 4.16023 1.00773 4.11328 0.923925 4.07079 0.839239 4.03275 0.75371 3.99911 0.667395 3.96984 0.580368 3.94493 0.492485 3.9244 0.403394 3.90821 0.312653 3.89629 0.219984 3.88855 0.125462 3.88501 0.0289646 3.88562 -0.0678546 3.89048 -0.163935 3.89982 -0.261918 3.91407 -0.361609 3.93372 -0.464146 -0.570241 16.8208 -0.0950333 16.8015 0.40301 16.7588 0.861488 16.6957 1.27982 16.6145 1.6615 16.5165 2.008 16.4036 2.32287 16.2769 2.60998 16.1375 2.87009 15.9868 3.10743 15.8261 3.31961 15.6566 3.51211 15.4798 3.68192 15.2963 3.835 15.1066 3.97222 14.9108 4.09698 14.7087 4.20805 14.5011 4.30662 14.2889 4.39031 14.0732 4.45814 13.8555 4.51467 13.6361 4.55893 13.4153 4.59297 13.1935 4.61894 12.971 4.63585 12.748 4.64568 12.5251 4.65154 12.3024 4.65211 12.08 4.64799 11.8584 4.63927 11.6378 4.6236 11.418 4.60146 11.1996 4.57347 10.9827 4.54013 10.7674 4.50269 10.5542 4.46251 10.3429 4.41989 10.1329 4.37421 9.92467 4.32658 9.71821 4.27665 9.51413 4.22266 9.31331 4.16491 9.11612 4.10371 8.92264 4.04001 8.73292 3.97613 8.54673 3.913 8.36376 3.84934 8.18403 3.78355 8.0076 3.71455 7.83467 3.6423 7.66555 3.56836 7.50027 3.49415 7.33854 3.41983 7.18006 3.34605 7.02439 3.27431 6.87144 3.20219 6.72152 3.12844 6.57499 3.05319 6.43208 2.97699 6.29316 2.90023 6.1586 2.82367 6.02817 2.74808 5.90139 2.67289 5.77818 2.59697 5.65859 2.51983 5.54274 2.44127 5.43081 2.36129 5.32291 2.28044 5.21894 2.19913 5.11879 2.11754 5.02235 2.03599 4.92949 1.95487 4.84011 1.87442 4.75426 1.7956 4.67208 1.7219 4.59287 1.6445 4.51706 1.56429 4.4449 1.48283 4.37659 1.40044 4.31236 1.31704 4.25246 1.23233 4.19699 1.14609 4.14598 1.05875 4.09943 0.970473 4.05732 0.881352 4.01953 0.791499 3.98589 0.701035 3.95636 0.609896 3.93099 0.517852 3.90985 0.424538 3.89294 0.32956 3.88021 0.232709 3.87162 0.134051 3.86717 0.0334223 3.86683 -0.0675126 3.87069 -0.167797 3.87923 -0.270455 3.89316 -0.375544 3.91267 -0.483652 -0.595137 16.8171 -0.101836 16.7972 0.422866 16.7541 0.904573 16.6906 1.3433 16.6091 1.7431 16.5108 2.1063 16.3975 2.43612 16.2705 2.73702 16.1308 3.00976 15.9798 3.25839 15.8188 3.48068 15.6488 3.68203 15.4716 3.85921 15.2876 4.01892 15.0975 4.16231 14.9016 4.29293 14.6994 4.41027 14.4917 4.51425 14.2795 4.60254 14.0636 4.67404 13.8455 4.73277 13.6258 4.77869 13.4045 4.81426 13.1823 4.84115 12.9593 4.85876 12.7359 4.8691 12.5127 4.87476 12.2898 4.87496 12.0675 4.87036 11.8461 4.86065 11.6257 4.84402 11.4061 4.82105 11.1878 4.79181 10.9708 4.7571 10.7553 4.71818 10.5417 4.6761 10.3298 4.63181 10.1192 4.58481 9.91019 4.53559 9.70317 4.48366 9.49873 4.4271 9.2977 4.36594 9.10047 4.30093 8.90705 4.23344 8.71744 4.16574 8.53145 4.09899 8.34872 4.03207 8.1692 3.96306 7.99295 3.8908 7.82004 3.81521 7.65077 3.73763 7.48521 3.6597 7.32304 3.582 7.16401 3.50508 7.00792 3.4304 6.85457 3.35553 6.7042 3.27882 6.55718 3.20021 6.41386 3.12031 6.27482 3.03927 6.14024 2.95824 6.01003 2.8783 5.88377 2.79916 5.76103 2.7197 5.64188 2.63899 5.52639 2.55675 5.41472 2.47296 5.307 2.38816 5.20314 2.30299 5.10298 2.21769 5.00646 2.13252 4.91347 2.04786 4.82391 1.96397 4.73788 1.88164 4.65565 1.80413 4.57628 1.72387 4.50035 1.64022 4.42817 1.555 4.36002 1.4686 4.29614 1.38092 4.23672 1.29176 4.18175 1.20106 4.13122 1.10928 4.08504 1.01665 4.04302 0.923368 4.00502 0.829507 3.97098 0.735071 3.94095 0.639924 3.91502 0.543789 3.89324 0.446315 3.87564 0.347163 3.86215 0.246196 3.85273 0.143472 3.8474 0.0387491 3.84603 -0.066137 3.84898 -0.17075 3.85729 -0.278762 3.87111 -0.389366 3.89051 -0.503053 -0.619919 16.8131 -0.109766 16.7927 0.443348 16.7492 0.948017 16.6853 1.40717 16.6034 1.82508 16.5046 2.20502 16.3911 2.54971 16.2637 2.86435 16.1238 3.14967 15.9726 3.40959 15.8112 3.64207 15.6409 3.85237 15.463 4.03702 15.2786 4.2034 15.088 4.35287 14.8918 4.48915 14.6895 4.61259 14.4818 4.72189 14.2696 4.81475 14.0536 4.89009 13.8352 4.95118 13.615 4.99881 13.3933 5.036 13.1706 5.06383 12.9473 5.08211 12.7234 5.09297 12.4998 5.09831 12.2768 5.09796 12.0545 5.09273 11.8332 5.08187 11.6131 5.06421 11.3936 5.04046 11.1754 5.01008 10.9583 4.97415 10.7426 4.93394 10.5285 4.89016 10.316 4.84432 10.1047 4.79609 9.89502 4.74528 9.68752 4.69116 9.48279 4.63184 9.28159 4.56714 9.08435 4.49817 8.89099 4.4268 8.70148 4.35526 8.51566 4.28481 8.33313 4.2146 8.15377 4.14243 7.97762 4.06695 7.80466 3.98816 7.63514 3.90715 7.46918 3.82566 7.30647 3.74471 7.14679 3.66476 6.99027 3.58692 6.83654 3.50926 6.68571 3.42966 6.53826 3.34765 6.39496 3.26361 6.25599 3.17824 6.1214 3.09283 5.99116 3.00853 5.86506 2.92526 5.74282 2.84194 5.62415 2.75767 5.50905 2.67185 5.39766 2.58435 5.29009 2.49573 5.18631 2.40678 5.08613 2.31786 4.98951 2.22915 4.89637 2.14099 4.80665 2.05369 4.72042 1.96787 4.63814 1.88641 4.55863 1.80338 4.48264 1.71621 4.41055 1.6271 4.34266 1.53649 4.27919 1.44439 4.22024 1.3507 4.16572 1.25559 4.11546 1.15953 4.06929 1.06282 4.02705 0.96561 3.98865 0.867899 3.95412 0.769603 3.92352 0.670522 3.89697 0.570341 3.87454 0.468741 3.85625 0.365453 3.84203 0.260426 3.83177 0.153732 3.82544 0.0450717 3.82323 -0.0639177 3.82614 -0.173667 3.83447 -0.287091 3.84822 -0.403117 3.86747 -0.522302 -0.644547 16.8092 -0.11896 16.7879 0.464639 16.7441 0.991851 16.6798 1.47147 16.5974 1.9075 16.4982 2.30417 16.3843 2.66368 16.2566 2.99198 16.1165 3.2898 15.9651 3.56099 15.8034 3.80377 15.6327 4.02313 15.4543 4.21541 15.2692 4.38851 15.078 4.54402 14.8815 4.68571 14.679 4.81505 14.4714 4.92953 14.2592 5.02692 14.0431 5.10622 13.8244 5.16984 13.6039 5.21928 13.3818 5.25817 13.1586 5.28697 12.9348 5.30591 12.7105 5.31729 12.4866 5.32222 12.2634 5.32115 12.041 5.31514 11.8199 5.303 11.5998 5.28423 11.3806 5.25973 11.1623 5.22833 10.9451 5.19134 10.729 5.15002 10.5145 5.10473 10.3014 5.05744 10.0895 5.00799 9.87919 4.95554 9.6713 4.89905 9.46637 4.83677 9.26505 4.76845 9.06781 4.69541 8.87452 4.62008 8.68508 4.5447 8.49937 4.47052 8.31698 4.39699 8.13768 4.32172 7.96152 4.24311 7.78843 4.16125 7.61856 4.07703 7.4521 3.99212 7.2888 3.908 7.12846 3.8251 6.97137 3.744 6.8173 3.66333 6.66622 3.58074 6.51883 3.49504 6.37567 3.40677 6.23679 3.31712 6.10219 3.22743 5.97189 3.13883 5.84577 3.05138 5.72363 2.96408 5.60534 2.87595 5.49065 2.78654 5.37952 2.69548 5.27209 2.60316 5.16835 2.51052 5.06815 2.41806 4.97142 2.32588 4.87814 2.23427 4.78827 2.14357 4.70186 2.05427 4.61952 1.96875 4.53994 1.88296 4.46399 1.79216 4.3921 1.69899 4.32454 1.60405 4.26148 1.50745 4.20289 1.40929 4.14858 1.30991 4.09831 1.20979 4.05192 1.10922 4.00928 1.00825 3.97037 0.906809 3.93522 0.804751 3.90392 0.701815 3.87665 0.597621 3.85349 0.491897 3.83446 0.384478 3.81945 0.275444 3.80832 0.164858 3.80156 0.0518309 3.79954 -0.0618984 3.80267 -0.176792 3.81104 -0.295463 3.82469 -0.416763 3.84371 -0.541324 -0.668925 16.8051 -0.12938 16.783 0.486759 16.7387 1.03609 16.674 1.53623 16.5911 1.99038 16.4915 2.40379 16.3771 2.77804 16.2492 3.11992 16.1089 3.43013 15.9573 3.71255 15.7954 3.9657 15.6242 4.19429 15.4452 4.39439 15.2594 4.5743 15.0676 4.73583 14.8706 4.88272 14.668 5.01769 14.4603 5.13719 14.2482 5.23904 14.032 5.32235 13.8132 5.38872 13.5924 5.44004 13.3698 5.48072 13.1463 5.51056 12.922 5.53016 12.6972 5.54205 12.473 5.54649 12.2496 5.54457 12.0271 5.53764 11.806 5.5241 11.586 5.50418 11.3668 5.47894 11.1485 5.44665 10.9311 5.40876 10.7146 5.36646 10.4995 5.31983 10.2858 5.27113 10.0734 5.22039 9.86272 5.16622 9.65457 5.1072 9.44953 5.04182 9.24815 4.96983 9.0509 4.89266 8.85769 4.8133 8.66829 4.73409 8.48261 4.6562 8.30025 4.57934 8.12092 4.50105 7.94461 4.41942 7.77127 4.33459 7.60096 4.24734 7.43391 4.15917 7.27003 4.07188 7.10913 3.986 6.95152 3.90162 6.79724 3.8176 6.64626 3.73172 6.49905 3.64226 6.35604 3.54978 6.21724 3.45592 6.08262 3.36205 5.95223 3.26922 5.82602 3.17759 5.70382 3.08629 5.58554 2.99424 5.47108 2.90099 5.3602 2.80636 5.25288 2.71049 5.14915 2.61425 5.04892 2.5183 4.95209 2.42271 4.85867 2.32769 4.76866 2.23358 4.68214 2.14079 4.59971 2.05118 4.52019 1.96248 4.44444 1.86791 4.37287 1.77056 4.3057 1.67122 4.24297 1.57018 4.18455 1.46772 4.13018 1.36427 4.07965 1.26032 4.03282 1.15605 3.98959 1.05147 3.94996 0.946435 3.91396 0.840753 3.8817 0.734073 3.85348 0.625848 3.82958 0.515797 3.80999 0.404068 3.79464 0.290796 3.7836 0.175897 3.77717 0.0582622 3.77548 -0.060215 3.77878 -0.180088 3.78713 -0.303816 3.80061 -0.430243 3.81934 -0.560051 -0.692925 16.7972 -0.137178 16.7777 0.506184 16.7332 1.08067 16.6679 1.60146 16.5845 2.07376 16.4844 2.50391 16.3696 2.89283 16.2414 3.2482 16.1008 3.57066 15.9491 3.86426 15.787 4.12782 15.6155 4.36577 15.436 4.57396 15.2494 4.76082 15.0569 4.92839 14.8593 5.08029 14.6564 5.22061 14.4486 5.34492 14.2366 5.45113 14.0204 5.53848 13.8014 5.60772 13.5804 5.66106 13.3575 5.7036 13.1336 5.73455 12.9089 5.75481 12.6837 5.76723 12.4591 5.77114 12.2354 5.76823 12.0128 5.7603 11.7916 5.74528 11.5716 5.72419 11.3523 5.69824 11.1338 5.66517 10.916 5.62652 10.6991 5.58335 10.4835 5.53545 10.2693 5.48533 10.0565 5.43316 9.84562 5.37713 9.63736 5.31545 9.43231 5.24687 9.23093 5.17122 9.03368 5.0899 8.84051 5.00647 8.65112 4.92348 8.46538 4.84194 8.28295 4.76177 8.10345 4.68055 7.92683 4.59604 7.7531 4.50832 7.58229 4.41815 7.41464 4.32681 7.25022 4.2363 7.08892 4.14731 6.93101 4.05952 6.77669 3.97192 6.62593 3.88248 6.47894 3.78926 6.33606 3.69266 6.19734 3.59464 6.06268 3.49671 5.93216 3.39974 5.8058 3.30396 5.68344 3.20864 5.565 3.11268 5.45041 3.01558 5.33956 2.91722 5.23229 2.81775 5.12856 2.71799 5.02827 2.61859 4.93133 2.51964 4.83779 2.42123 4.74768 2.32368 4.66113 2.22734 4.57868 2.13363 4.49939 2.04177 4.42402 1.94329 4.3529 1.84169 4.28611 1.73801 4.22357 1.63272 4.16507 1.52621 4.11039 1.41896 4.05934 1.31137 4.01179 1.2036 3.96768 1.09559 3.92697 0.987146 3.88994 0.877781 3.85708 0.766937 3.82861 0.654309 3.80457 0.53984 3.78491 0.423726 3.76964 0.30607 3.75883 0.186707 3.75268 0.0644086 3.75119 -0.0587202 3.75451 -0.183406 3.76277 -0.312073 3.77603 -0.443501 3.7944 -0.578428 -0.716414 16.7929 -0.146813 16.7724 0.526645 16.7274 1.12572 16.6616 1.66719 16.5777 2.15767 16.4771 2.60458 16.3618 3.00808 16.2331 3.37686 16.0924 3.71141 15.9405 4.01609 15.7783 4.29009 15.6065 4.53751 15.4264 4.75407 15.2392 4.94806 15.0458 5.12175 14.8476 5.27853 14.6443 5.42391 14.4364 5.5528 14.2243 5.66323 14.0082 5.75459 13.7891 5.82679 13.5679 5.88226 13.3448 5.92671 13.1205 5.95885 12.8955 5.97981 12.67 5.99278 12.445 5.99614 12.221 5.9922 11.9981 5.98316 11.7768 5.96665 11.5566 5.9444 11.337 5.91778 11.1181 5.88404 10.8999 5.84475 10.6825 5.80074 10.4664 5.75159 10.2518 5.69994 10.0388 5.64611 9.82789 5.58806 9.61969 5.52365 9.41474 5.45183 9.21341 5.37254 9.01617 5.28714 8.82302 5.19962 8.63359 5.11292 8.4477 5.02784 8.26506 4.94442 8.08524 4.86037 7.90817 4.77311 7.73394 4.68256 7.56258 4.5895 7.39437 4.49503 7.22949 4.40117 7.06793 4.30887 6.90992 4.21754 6.7557 4.12613 6.60521 4.03296 6.45846 3.93601 6.31572 3.8354 6.17704 3.73332 6.04233 3.63142 5.91165 3.53042 5.78506 3.43054 5.66248 3.33122 5.54379 3.23137 5.42892 3.13044 5.31777 3.02838 5.21022 2.9253 5.10633 2.82188 5.00594 2.71897 4.9089 2.61669 4.81522 2.51491 4.72507 2.41384 4.63864 2.31377 4.55634 2.21592 4.47751 2.1206 4.40274 2.01806 4.33214 1.91228 4.26566 1.80449 4.20312 1.69525 4.14432 1.58502 4.08903 1.47425 4.03711 1.36329 3.98851 1.25219 3.94341 1.14069 3.90212 1.02844 3.86494 0.914958 3.83209 0.799785 3.80366 0.682744 3.77962 0.563875 3.75999 0.44336 3.7448 0.321259 3.73412 0.197388 3.72808 0.070452 3.72661 -0.0572529 3.72987 -0.18666 3.73795 -0.320153 3.75093 -0.456485 3.76891 -0.596405 -0.739268 16.7885 -0.158309 16.7669 0.548215 16.7214 1.17126 16.6551 1.73345 16.5706 2.24214 16.4694 2.70583 16.3536 3.12386 16.2245 3.50594 16.0835 3.8524 15.9315 4.16807 15.7691 4.45249 15.5972 4.70946 15.4166 4.93463 15.2287 5.13598 15.0345 5.31592 14.8356 5.47752 14.6318 5.6277 14.4236 5.76092 14.2115 5.87542 13.9953 5.97072 13.7762 6.04591 13.5549 6.10356 13.3316 6.14997 13.1071 6.18337 12.8818 6.20509 12.656 6.21864 12.4306 6.22148 12.2064 6.21648 11.9832 6.20632 11.7615 6.18832 11.541 6.16497 11.321 6.13775 11.1016 6.10344 10.8828 6.06359 10.6648 6.01872 10.4482 5.9682 10.2333 5.91484 10.0203 5.85908 9.80954 5.79882 9.60156 5.73163 9.39682 5.65657 9.19562 5.57375 8.9984 5.48435 8.80524 5.39278 8.61571 5.30245 8.42956 5.21399 8.24656 5.12741 8.06629 5.04064 7.88864 4.95076 7.71381 4.85739 7.54191 4.76139 7.3732 4.66374 7.20797 4.56641 7.04629 4.47055 6.8883 4.37552 6.73426 4.28018 6.58407 4.18315 6.43759 4.08249 6.29496 3.97803 6.1563 3.87198 6.02151 3.76621 5.89063 3.66129 5.76379 3.55738 5.64094 3.45407 5.52194 3.35037 5.40673 3.24565 5.2952 3.13991 5.18722 3.03328 5.0828 2.9263 4.98197 2.81979 4.88468 2.71399 4.79093 2.60865 4.70095 2.50381 4.61498 2.39974 4.53315 2.29775 4.45495 2.19881 4.38077 2.09224 4.31058 1.98248 4.24421 1.87086 4.18145 1.75801 4.12207 1.64439 4.06595 1.53036 4.01316 1.41609 3.9639 1.30145 3.91845 1.18614 3.87708 1.06981 3.83999 0.952052 3.80724 0.832529 3.77886 0.711124 3.75484 0.587898 3.73521 0.462992 3.72003 0.336438 3.70935 0.208065 3.70327 0.076535 3.7017 -0.055683 3.70478 -0.189734 3.71264 -0.328016 3.72531 -0.469151 3.74282 -0.61392 -0.761386 16.7842 -0.171935 16.7612 0.571168 16.7151 1.21734 16.6483 1.80025 16.5633 2.3272 16.4614 2.80769 16.3451 3.24021 16.2155 3.63551 16.0742 3.9937 15.922 4.32023 15.7595 4.615 15.5874 4.88154 15.4065 5.11557 15.218 5.32448 15.023 5.51087 14.8232 5.67733 14.6188 5.8321 14.4104 5.96939 14.198 6.0878 13.9818 6.18689 13.7626 6.26507 13.5413 6.32493 13.318 6.37326 13.0933 6.40801 12.8679 6.43056 12.6418 6.44474 12.4161 6.44712 12.1915 6.4411 11.968 6.42981 11.7459 6.41039 11.5248 6.38607 11.3043 6.35832 11.0842 6.32355 10.8646 6.28317 10.646 6.23732 10.4289 6.18525 10.2139 6.12992 10.001 6.07193 9.79059 6.00923 9.58297 5.93925 9.37855 5.861 9.17755 5.77474 8.98038 5.68152 8.78717 5.58598 8.59747 5.49216 8.41093 5.40052 8.22743 5.31091 8.04659 5.22148 7.86827 5.12908 7.69279 5.03286 7.52039 4.93379 7.35128 4.83286 7.18579 4.73189 7.02408 4.63226 6.86621 4.53338 6.71238 4.43401 6.56248 4.33304 6.41626 4.22872 6.27374 4.12055 6.13505 4.01067 6.00015 3.90111 5.86907 3.79238 5.74195 3.6845 5.6188 3.57722 5.49948 3.46969 5.38392 3.36122 5.27202 3.25181 5.16366 3.14165 5.05883 3.03112 4.95766 2.92097 4.86017 2.81147 4.76648 2.70235 4.67678 2.59351 4.59123 2.48529 4.50972 2.37926 4.43192 2.27661 4.35811 2.16604 4.2881 2.05249 4.22163 1.93733 4.15847 1.82118 4.09847 1.70439 4.0417 1.58713 3.98841 1.46938 3.93889 1.35097 3.89341 1.23162 3.85215 1.11107 3.81518 0.989022 3.78251 0.865195 3.75415 0.73949 3.7301 0.611949 3.71042 0.482674 3.69517 0.351685 3.6844 0.218837 3.67817 0.0827642 3.67642 -0.0539287 3.67927 -0.192584 3.68681 -0.335558 3.69911 -0.481448 3.71608 -0.63089 -0.7827 16.7797 -0.187719 16.7553 0.595571 16.7087 1.26396 16.6414 1.86761 16.5557 2.41288 16.4532 2.91019 16.3362 3.35717 16.2061 3.76564 16.0644 4.13537 15.912 4.4726 15.7494 4.77762 15.5772 5.05373 15.396 5.29678 15.207 5.51348 15.0113 5.70654 14.8107 5.87798 14.6056 6.03721 14.3966 6.17835 14.184 6.30048 13.9677 6.40319 13.7484 6.48429 13.527 6.54634 13.3038 6.59652 13.0792 6.63264 12.8536 6.65613 12.6273 6.67098 12.4014 6.67302 12.1765 6.66607 11.9526 6.6537 11.73 6.63299 11.5082 6.60783 11.2869 6.57967 11.0659 6.5445 10.8455 6.50357 10.6263 6.45658 10.4088 6.40268 10.1937 6.3451 9.98102 6.28456 9.77106 6.21918 9.56392 6.14639 9.35991 6.06501 9.15921 5.97544 8.9621 5.87863 8.76879 5.77929 8.57882 5.68214 8.39179 5.58755 8.20764 5.49506 8.02613 5.403 7.8471 5.30811 7.67099 5.20897 7.49815 5.10664 7.32873 5.00227 7.16307 4.89754 7.00138 4.79396 6.84367 4.69109 6.69004 4.58765 6.5404 4.48267 6.39442 4.3747 6.25199 4.26298 6.11324 4.14941 5.9782 4.03616 5.84689 3.92368 5.71949 3.8119 5.59605 3.70066 5.47644 3.5893 5.36057 3.47709 5.24835 3.36403 5.13969 3.25031 5.0346 3.13622 4.93322 3.02235 4.83568 2.90901 4.74209 2.79594 4.6526 2.683 4.56732 2.57057 4.48595 2.46063 4.40835 2.35421 4.33468 2.23971 4.26463 2.12254 4.19789 2.00407 4.13428 1.88479 4.07381 1.76487 4.01668 1.64426 3.96324 1.52283 3.91375 1.40045 3.8684 1.27697 3.82727 1.1522 3.79039 1.0259 3.75776 0.897832 3.72936 0.767886 3.70524 0.636069 3.68546 0.502451 3.67009 0.367059 3.65915 0.229776 3.65269 0.0892217 3.65067 -0.0519078 3.65321 -0.195122 3.66052 -0.342864 3.67231 -0.493243 3.68861 -0.647181 -0.803171 16.7692 -0.199546 16.7492 0.615628 16.7021 1.31101 16.6342 1.93553 16.5479 2.49918 16.4447 3.01336 16.3271 3.47481 16.1963 3.8964 16.0542 4.2775 15.9015 4.62527 15.7388 4.94039 15.5665 5.22598 15.3851 5.47819 15.1957 5.70286 14.9994 5.90283 14.798 6.07946 14.5921 6.24311 14.3825 6.38791 14.1694 6.51356 13.9529 6.61968 13.7336 6.70359 13.5122 6.76781 13.289 6.8197 13.0644 6.85717 12.8389 6.88166 12.6126 6.89727 12.3865 6.89912 12.1612 6.89139 11.9369 6.87802 11.7137 6.85619 11.4911 6.83038 11.2689 6.80192 11.047 6.76642 10.8257 6.72483 10.6058 6.67649 10.388 6.62045 10.1728 6.56029 9.96045 6.49694 9.75099 6.42864 9.5444 6.35298 9.34089 6.26852 9.14054 6.17579 8.94351 6.07566 8.75004 5.97276 8.55969 5.8725 8.37203 5.77521 8.18713 5.67995 8.0049 5.58523 7.8252 5.48781 7.64851 5.38566 7.47528 5.27987 7.30565 5.1719 7.1399 5.06329 6.97825 4.9556 6.82069 4.84865 6.66724 4.7411 6.51781 4.63211 6.37202 4.52049 6.22964 4.40536 6.09081 4.28824 5.95559 4.17137 5.82406 4.05522 5.69639 3.93956 5.57269 3.82437 5.45283 3.70915 5.3367 3.59323 5.22424 3.47649 5.11538 3.35916 5.01015 3.24145 4.90868 3.12381 4.81115 3.00654 4.71765 2.88944 4.62831 2.77234 4.54316 2.65572 4.46178 2.54201 4.38421 2.43178 4.31046 2.31345 4.24018 2.19282 4.17309 2.07116 4.10912 1.94877 4.04839 1.8256 3.9912 1.70145 3.93783 1.5762 3.8885 1.44979 3.8433 1.32217 3.80229 1.19321 3.76546 1.06272 3.73281 0.930481 3.70436 0.796345 3.68014 0.660287 3.66023 0.522356 3.6447 0.382599 3.63355 0.240922 3.62684 0.0959352 3.62457 -0.0496397 3.6268 -0.19735 3.63354 -0.349608 3.64478 -0.504482 3.66031 -0.662707 -0.822792 16.7647 -0.214306 16.743 0.637403 16.6953 1.35869 16.6268 2.00403 16.5398 2.58613 16.436 3.1172 16.3177 3.59316 16.1862 4.02785 16.0435 4.42017 15.8905 4.77831 15.7275 5.10334 15.5552 5.39829 15.3737 5.65971 15.1841 5.89251 14.9873 6.09962 14.785 6.28172 14.5783 6.44983 14.368 6.59816 14.1544 6.72716 13.9377 6.83643 13.7183 6.92301 13.4967 6.98935 13.2736 7.04284 13.0492 7.08159 12.8237 7.10709 12.5975 7.12346 12.3713 7.12535 12.1457 7.11704 11.9209 7.10279 11.697 7.08008 11.4736 7.05382 11.2503 7.02515 11.0274 6.98935 10.8053 6.94697 10.5848 6.89701 10.3667 6.83851 10.1515 6.77548 9.93939 6.70905 9.73044 6.6376 9.52443 6.55899 9.32144 6.47151 9.1215 6.37573 8.92455 6.27261 8.73082 6.16648 8.53995 6.06337 8.35155 5.96361 8.16583 5.86567 7.98288 5.76819 7.80258 5.66811 7.6254 5.56284 7.45187 5.4534 7.28211 5.34166 7.11631 5.22909 6.95472 5.1172 6.79729 5.00607 6.64397 4.89442 6.49467 4.78141 6.34901 4.66615 6.20666 4.54771 6.06769 4.42721 5.93228 4.30679 5.80053 4.18697 5.67263 4.06746 5.5487 3.9483 5.42865 3.8292 5.31234 3.70954 5.19972 3.58911 5.09075 3.46813 4.98546 3.34675 4.88398 3.22529 4.78648 3.10404 4.69306 2.98287 4.60379 2.86162 4.51866 2.74084 4.43716 2.62352 4.35948 2.50946 4.2855 2.38743 4.21488 2.26344 4.14745 2.13859 4.08325 2.01297 4.02248 1.88637 3.96539 1.75854 3.9122 1.62939 3.86305 1.49894 3.81799 1.36722 3.77706 1.23414 3.74025 1.09953 3.70757 0.963164 3.67904 0.824881 3.65471 0.684615 3.63466 0.542407 3.61893 0.398329 3.60755 0.252302 3.60055 0.102937 3.59797 -0.0470584 3.59979 -0.199173 3.60609 -0.355906 3.61654 -0.514929 3.63113 -0.677301 -0.841555 16.7602 -0.232109 16.7366 0.661029 16.6883 1.40701 16.6192 2.07311 16.5316 2.67372 16.4271 3.22173 16.308 3.71226 16.1758 4.16006 16.0325 4.56349 15.8789 4.93184 15.7157 5.26655 15.5433 5.57066 15.3618 5.84129 15.172 6.08232 14.9748 6.29679 14.7718 6.48465 14.5643 6.65737 14.3533 6.80916 14.1391 6.94137 13.922 7.05354 13.7024 7.1426 13.4807 7.21102 13.2576 7.26597 13.0333 7.30594 12.8079 7.33244 12.5819 7.34949 12.3557 7.35156 12.1297 7.34298 11.9045 7.32802 11.6799 7.30469 11.4555 7.27821 11.2313 7.24939 11.0073 7.21327 10.7844 7.16991 10.5633 7.11809 10.345 7.05683 10.1299 6.99064 9.91798 6.92092 9.70947 6.84611 9.50402 6.76444 9.30156 6.67397 9.10201 6.57527 8.90509 6.46954 8.71098 6.36059 8.51943 6.25492 8.3302 6.15284 8.14365 6.05222 7.96004 5.95179 7.77928 5.84887 7.60173 5.74038 7.42798 5.62715 7.25814 5.5115 7.09234 5.39489 6.93079 5.27875 6.77346 5.1634 6.62023 5.04765 6.47099 4.93065 6.32537 4.81177 6.18298 4.6901 6.04385 4.56634 5.90823 4.44241 5.77628 4.31891 5.64819 4.19555 5.52409 4.0724 5.40391 3.94938 5.28749 3.82595 5.17479 3.70182 5.06578 3.57714 4.96049 3.45205 4.85904 3.32674 4.76159 3.20149 4.66821 3.07625 4.57894 2.95088 4.49376 2.82603 4.41208 2.7052 4.33421 2.58732 4.2599 2.46174 4.18892 2.33442 4.12122 2.2063 4.05692 2.07727 3.99622 1.94707 3.93931 1.81546 3.8863 1.68239 3.8373 1.54794 3.79235 1.41218 3.75147 1.27503 3.71467 1.13634 3.68194 0.995889 3.65333 0.853493 3.62889 0.709056 3.60868 0.562617 3.59274 0.414266 3.58112 0.263927 3.57381 0.110243 3.5709 -0.0441479 3.57226 -0.200528 3.57787 -0.361516 3.58743 -0.524489 3.60102 -0.690893 -0.859454 16.7559 -0.253375 16.7301 0.686904 16.6811 1.456 16.6114 2.14277 16.5232 2.76195 16.418 3.32693 16.2981 3.83213 16.1651 4.29308 16.021 4.70757 15.8669 5.08596 15.7033 5.43011 15.5308 5.74315 15.3492 6.0229 15.1593 6.27221 14.9619 6.49422 14.7584 6.68815 14.5501 6.86566 14.3383 7.02092 14.1235 7.15624 13.906 7.27106 13.6861 7.36241 13.4643 7.43287 13.2411 7.48915 13.0168 7.53029 12.7914 7.55779 12.5655 7.57542 12.3393 7.57775 12.1132 7.5691 11.8875 7.55365 11.6622 7.53002 11.4369 7.50351 11.2117 7.47461 10.9868 7.43811 10.7632 7.39357 10.5416 7.33963 10.3231 7.27536 10.108 7.20576 9.89632 7.13259 9.68819 7.05424 9.48323 6.96939 9.28123 6.87597 9.08198 6.77452 8.88495 6.66657 8.6903 6.55525 8.49794 6.44727 8.30785 6.34293 8.12052 6.23955 7.93637 6.13594 7.7553 6.02994 7.57753 5.91816 7.40363 5.80105 7.23377 5.68135 7.06799 5.56066 6.90648 5.44027 6.74921 5.32066 6.59601 5.20085 6.44675 5.07992 6.30109 4.95742 6.15859 4.8326 6.01926 4.70567 5.88343 4.57825 5.75131 4.45102 5.62308 4.32379 5.49886 4.19662 5.3786 4.06964 5.26214 3.94241 5.14941 3.81454 5.04042 3.68613 4.93517 3.55729 4.83377 3.42813 4.73637 3.2989 4.643 3.16961 4.5537 3.04019 4.46837 2.91135 4.38651 2.78706 4.30841 2.66543 4.23376 2.53638 4.16247 2.40572 4.09458 2.27418 4.03027 2.14158 3.96968 2.00766 3.91292 1.87222 3.86006 1.73524 3.81118 1.59683 3.76629 1.45706 3.72543 1.31588 3.68862 1.17315 3.65585 1.02865 3.62717 0.882178 3.60261 0.733617 3.58222 0.583007 3.56605 0.430437 3.55416 0.275816 3.54651 0.1179 3.5432 -0.0408429 3.54396 -0.20129 3.5488 -0.366352 3.55739 -0.533082 3.56994 -0.703436 -0.876471 16.7516 -0.278229 16.7233 0.715199 16.6737 1.50566 16.6034 2.21302 16.5145 2.85082 16.4087 3.4328 16.288 3.95277 16.1542 4.42694 16.0093 4.8525 15.8544 5.24081 15.6904 5.59414 15.5177 5.91582 15.3361 6.20454 15.1461 6.46215 14.9485 6.69181 14.7446 6.89209 14.5356 7.07462 14.3232 7.2334 14.1076 7.37177 13.8897 7.48904 13.6696 7.5825 13.4475 7.65497 13.2241 7.7125 12.9997 7.75473 12.7742 7.78324 12.5483 7.80136 12.322 7.804 12.0957 7.79545 11.8697 7.77965 11.6437 7.75599 11.4176 7.72961 11.1915 7.70067 10.9659 7.66373 10.7417 7.61779 10.5198 7.56153 10.3011 7.49404 10.086 7.42085 9.87452 7.3441 9.66669 7.26207 9.46213 7.17394 9.26045 7.07765 9.06132 6.97366 8.86398 6.86391 8.6686 6.75063 8.4753 6.64057 8.28437 6.53387 8.09639 6.42753 7.91186 6.32047 7.73064 6.21116 7.55278 6.09602 7.37882 5.97501 7.20898 5.85119 7.04325 5.72639 6.88177 5.60175 6.72453 5.4779 6.57131 5.35406 6.42195 5.22928 6.27616 5.10322 6.13349 4.97526 5.99394 4.84522 5.8579 4.71429 5.72564 4.58328 5.59732 4.45211 5.47302 4.32092 5.35272 4.18994 5.23627 4.05886 5.12357 3.92724 5.01462 3.79508 4.90945 3.66247 4.80812 3.52947 4.71074 3.39627 4.61737 3.26298 4.52797 3.12959 4.44246 2.99686 4.36046 2.86906 4.28212 2.74377 4.20717 2.61133 4.13563 2.47726 4.06763 2.34218 4.00333 2.20589 3.94283 2.06816 3.88618 1.92886 3.83342 1.788 3.78459 1.64566 3.73974 1.50192 3.69888 1.35674 3.66203 1.20999 3.62922 1.06147 3.60045 0.910947 3.57575 0.758323 3.55514 0.603619 3.53868 0.446892 3.52647 0.288027 3.51836 0.126012 3.51453 -0.0370175 3.51457 -0.201329 3.51861 -0.370386 3.5263 -0.540769 3.53782 -0.714961 -0.892601 16.7383 -0.297727 16.7162 0.737257 16.666 1.55587 16.5952 2.28385 16.5057 2.94033 16.3992 3.53931 16.2778 4.07417 16.1431 4.56164 15.9972 4.99834 15.8415 5.39651 15.6769 5.75878 15.5039 6.08879 15.3222 6.38626 15.1323 6.6521 14.9346 6.88948 14.7304 7.09634 14.5209 7.28412 14.3077 7.44653 14.0916 7.58792 13.8731 7.70747 13.6527 7.8029 13.4303 7.87738 13.2067 7.93612 12.982 7.97941 12.7563 8.00894 12.5303 8.02744 12.3039 8.03041 12.0772 8.02208 11.8508 8.00603 11.6243 7.98253 11.3975 7.95641 11.1708 7.92741 10.9446 7.88992 10.72 7.8424 10.4979 7.78365 10.2791 7.71281 10.0641 7.63589 9.85269 7.55546 9.64509 7.46968 9.44082 7.37821 9.23929 7.27918 9.03997 7.17298 8.842 7.06188 8.6457 6.94692 8.45141 6.83486 8.25972 6.72556 8.07127 6.61599 7.88652 6.50522 7.70531 6.39237 7.52749 6.27384 7.35354 6.14896 7.18375 6.02098 7.01809 5.89205 6.85664 5.7632 6.69939 5.63515 6.54613 5.50733 6.39661 5.37879 6.25059 5.24924 6.1077 5.11816 5.96791 4.98501 5.83168 4.85053 5.69931 4.71565 5.57092 4.5805 5.44659 4.44526 5.32629 4.31024 5.20987 4.17528 5.09722 4.03988 4.98835 3.90395 4.88326 3.76756 4.78199 3.63073 4.68464 3.49362 4.59123 3.35639 4.50171 3.21911 4.41597 3.0826 4.33387 2.95116 4.25533 2.82231 4.18015 2.68652 4.10843 2.54897 4.04037 2.41025 3.97608 2.27018 3.91563 2.12861 3.85904 1.98545 3.80632 1.84072 3.75751 1.69448 3.71263 1.5468 3.67173 1.39764 3.63483 1.2469 3.60193 1.09436 3.57303 0.93985 3.5481 0.783246 3.52718 0.624546 3.51033 0.463743 3.49764 0.300711 3.48894 0.134711 3.4844 -0.0324692 3.48363 -0.200566 3.48698 -0.373728 3.49397 -0.547763 3.50459 -0.72558 -0.907883 16.734 -0.321719 16.7092 0.762094 16.6582 1.60688 16.5867 2.35527 16.4966 3.03046 16.3895 3.64643 16.2674 4.19628 16.1318 4.69717 15.985 5.14514 15.8284 5.55315 15.663 5.92417 15.4896 6.26219 15.3077 6.56812 15.1177 6.84209 14.92 7.08718 14.7156 7.30081 14.5057 7.49404 14.292 7.66016 14.0753 7.80461 13.8565 7.92633 13.6357 8.02363 13.413 8.10016 13.189 8.16012 12.9639 8.20446 12.7378 8.23502 12.5115 8.2538 12.2848 8.25712 12.0578 8.24907 11.831 8.23281 11.6039 8.20961 11.3765 8.1838 11.1493 8.15463 10.9228 8.11643 10.698 8.06716 10.4759 8.00582 10.2571 7.93157 10.0422 7.85082 9.83095 7.76668 9.62352 7.6771 9.41943 7.5823 9.21778 7.48083 9.01772 7.37304 8.81892 7.26068 8.62156 7.14428 8.42628 7.03014 8.23397 6.91787 8.04522 6.80474 7.86039 6.69005 7.6793 6.57345 7.50164 6.4515 7.32777 6.32283 7.15807 6.19068 6.9925 6.05762 6.83107 5.92463 6.67379 5.79242 6.52043 5.66069 6.37071 5.52851 6.2244 5.39554 6.08123 5.26133 5.94121 5.12503 5.8048 4.98694 5.67235 4.8481 5.54393 4.70891 5.41959 4.5696 5.2993 4.43054 5.18293 4.29165 5.07035 4.15246 4.96156 4.01274 4.85655 3.87257 4.75534 3.73194 4.658 3.59097 4.56452 3.44987 4.47485 3.30879 4.38887 3.16857 4.30672 3.03331 4.22805 2.90097 4.1527 2.76187 4.08087 2.6208 4.01276 2.47836 3.94847 2.33447 3.88803 2.18904 3.83145 2.04203 3.77872 1.89345 3.72987 1.74334 3.68492 1.59174 3.64392 1.43864 3.60689 1.28393 3.57382 1.12744 3.54467 0.968999 3.51941 0.808513 3.49803 0.64592 3.48063 0.481147 3.46726 0.314082 3.45779 0.14418 3.4524 -0.0270763 3.45084 -0.199013 3.45366 -0.376547 3.46028 -0.554379 3.47017 -0.735474 -0.922422 16.7297 -0.3504 16.7019 0.789965 16.65 1.65869 16.578 2.42729 16.4873 3.12121 16.3796 3.75412 16.2568 4.31908 16.1205 4.83348 15.9727 5.29291 15.815 5.71083 15.6487 6.09048 15.4747 6.43619 15.2926 6.75027 15.1025 7.03218 14.9047 7.28492 14.7001 7.50541 14.49 7.70423 14.2759 7.87418 14.0588 8.0217 13.8396 8.14555 13.6186 8.24467 13.3954 8.32335 13.1709 8.38459 12.9454 8.43002 12.7188 8.46164 12.4919 8.48062 12.2648 8.48426 12.0373 8.47654 11.8101 8.46008 11.5824 8.43724 11.3545 8.41173 11.127 8.38214 10.9004 8.34298 10.6758 8.29181 10.4538 8.22782 10.2352 8.15018 10.0204 8.06558 9.80939 7.9777 9.60212 7.88438 9.39807 7.78635 9.19567 7.68322 8.99454 7.57418 8.79471 7.4605 8.59623 7.34276 8.40002 7.22635 8.20723 7.11066 8.01833 6.99364 7.83354 6.87485 7.65264 6.75435 7.47521 6.62893 7.30148 6.49656 7.13189 6.36027 6.96642 6.22309 6.80502 6.08603 6.64768 5.94976 6.49419 5.81419 6.34422 5.67847 6.1976 5.54217 6.05413 5.4048 5.91388 5.26527 5.77732 5.1235 5.6448 4.98062 5.51638 4.83733 5.39204 4.69393 5.27177 4.55081 5.15545 4.40798 5.04294 4.26496 4.93422 4.12146 4.82928 3.97751 4.72811 3.83311 4.63075 3.68833 4.53719 3.54343 4.44734 3.39864 4.36114 3.25477 4.27895 3.1155 4.20025 2.97967 4.1248 2.83732 4.05289 2.69271 3.98474 2.54651 3.92044 2.39878 3.85999 2.24949 3.80338 2.09864 3.75059 1.94623 3.70164 1.79229 3.65656 1.63682 3.61539 1.47982 3.57813 1.32119 3.54475 1.16081 3.51521 0.99854 3.48945 0.834269 3.46749 0.667883 3.44939 0.499255 3.43518 0.328286 3.42486 0.154498 3.41859 -0.020797 3.41636 -0.196788 3.41866 -0.378848 3.42521 -0.560923 3.43455 -0.744821 -0.936368 16.7258 -0.384331 16.6943 0.821437 16.6417 1.71134 16.569 2.49992 16.4777 3.21258 16.3694 3.86238 16.246 4.44251 16.109 4.97049 15.9603 5.4416 15.8015 5.86956 15.6342 6.25783 15.4594 6.61099 15.2768 6.93285 15.0865 7.22248 14.8887 7.48272 14.684 7.71011 14.4737 7.91458 14.2594 8.08843 14.042 8.23907 13.8226 8.36504 13.6012 8.466 13.3776 8.54694 13.1526 8.60959 12.9265 8.65618 12.6992 8.68893 12.4717 8.70806 12.244 8.712 12.0159 8.70463 11.7881 8.68792 11.5599 8.66544 11.3314 8.64015 11.1038 8.60975 10.8775 8.56931 10.6532 8.5161 10.4316 8.44941 10.2134 8.36844 9.99889 8.28006 9.78812 8.18847 9.58099 8.09151 9.37641 7.99093 9.17287 7.88676 8.97051 7.77653 8.7695 7.66151 8.56987 7.54238 8.37283 7.42339 8.17969 7.30381 7.99075 7.18258 7.80604 7.05955 7.62536 6.93504 7.44819 6.8061 7.27464 6.67011 7.10518 6.52972 6.93983 6.38844 6.77844 6.24741 6.62102 6.10718 6.46735 5.96786 6.31712 5.8287 6.17016 5.68913 6.0264 5.54857 5.88595 5.40571 5.74926 5.26019 5.61669 5.1132 5.48827 4.96575 5.36396 4.81824 5.24372 4.67105 5.12744 4.52426 5.01499 4.37742 4.90631 4.23013 4.80141 4.08241 4.70026 3.93426 4.60285 3.78574 4.50918 3.6371 4.41915 3.48866 4.33275 3.34117 4.25051 3.19774 4.17189 3.0583 4.0964 2.91281 4.02445 2.76466 3.95626 2.6147 3.89193 2.46312 3.83144 2.30998 3.77476 2.15532 3.72188 1.99912 3.67279 1.84137 3.62752 1.6821 3.58607 1.52126 3.54846 1.3588 3.51465 1.19462 3.48459 1.0286 3.45824 0.860619 3.4356 0.690516 3.41673 0.518128 3.40168 0.343337 3.39052 0.165654 3.38355 -0.0138267 3.38066 -0.193894 3.38215 -0.38034 3.38897 -0.567741 3.39783 -0.753676 -0.949862 16.7219 -0.423747 16.6865 0.856871 16.633 1.76481 16.5598 2.57318 16.4677 3.30459 16.3589 3.97117 16.2349 4.56651 16.0973 5.10812 15.9478 5.59114 15.788 6.02933 15.6195 6.42631 15.4438 6.78677 15.2605 7.11609 15.0699 7.41314 14.8719 7.68067 14.6671 7.91489 14.4567 8.12502 14.2423 8.30278 14.0248 8.45657 13.8052 8.5847 13.5836 8.68758 13.3596 8.77093 13.1341 8.83516 12.9072 8.88304 12.6791 8.91699 12.4509 8.93626 12.2225 8.94049 11.9936 8.93349 11.765 8.91648 11.5362 8.89431 11.3072 8.86906 11.0797 8.83726 10.8539 8.79518 10.6302 8.73975 10.4093 8.6703 10.1916 8.58613 9.97759 8.4941 9.76719 8.39888 9.55981 8.2989 9.35407 8.19667 9.14935 8.09148 8.94573 7.98015 8.74346 7.86378 8.54268 7.74316 8.34491 7.62116 8.1515 7.49721 7.96259 7.37149 7.77799 7.24415 7.59749 7.11554 7.42058 6.98301 7.24723 6.84346 7.07791 6.69904 6.91266 6.5537 6.75128 6.40879 6.59373 6.26473 6.43986 6.12173 6.28935 5.97921 6.14208 5.8364 5.99805 5.69259 5.85745 5.54632 5.72066 5.39698 5.58804 5.24581 5.45964 5.09415 5.33536 4.94252 5.21515 4.79126 5.0989 4.64051 4.98648 4.48983 4.87783 4.33878 4.77293 4.18731 4.67175 4.03544 4.57426 3.88323 4.48045 3.73091 4.39026 3.57886 4.30369 3.42774 4.22139 3.28004 4.14294 3.13675 4.06746 2.9883 3.99548 2.83664 3.92726 2.68291 3.86288 2.52749 3.80234 2.37053 3.74557 2.21208 3.69256 2.05213 3.64328 1.89066 3.59773 1.72764 3.55593 1.56306 3.51788 1.39686 3.48355 1.22895 3.45291 1.05924 3.42594 0.887589 3.40264 0.713818 3.38305 0.537719 3.36728 0.359105 3.35547 0.177469 3.34778 -0.00614203 3.34432 -0.190429 3.34536 -0.381379 3.35121 -0.573589 3.36013 -0.762595 -0.963021 16.7057 -0.456506 16.6782 0.884337 16.624 1.81896 16.5501 2.64709 16.4575 3.39726 16.3481 4.08049 16.2236 4.69104 16.0855 5.24627 15.9352 5.74142 15.7744 6.19007 15.6048 6.59596 15.4279 6.96368 15.2438 7.30019 15.0526 7.60437 14.8543 7.87888 14.6495 8.11978 14.439 8.33547 14.2247 8.51712 14.0071 8.67408 13.7874 8.80445 13.5656 8.90936 13.3413 8.99527 13.1152 9.06128 12.8876 9.1106 12.6587 9.14587 12.4297 9.16533 12.2003 9.16989 11.9705 9.16327 11.7411 9.14592 11.5114 9.12395 11.2821 9.09839 11.0548 9.06457 10.8295 9.02045 10.6067 8.96259 10.3867 8.89023 10.1699 8.80298 9.95644 8.70755 9.74604 8.60928 9.53771 8.50722 9.33085 8.40353 9.12501 8.29732 8.9202 8.18497 8.7167 8.06728 8.51483 7.94504 8.31644 7.81955 8.12282 7.69083 7.93394 7.56037 7.74945 7.42864 7.5691 7.29589 7.39241 7.1597 7.21924 7.01663 7.05004 6.86824 6.88487 6.71887 6.72346 6.5702 6.56575 6.42244 6.41163 6.27585 6.26086 6.12998 6.11331 5.98395 5.96909 5.83681 5.82837 5.68704 5.69151 5.53383 5.55887 5.37846 5.43048 5.22254 5.30625 5.06676 5.18606 4.91145 5.06984 4.75674 4.95744 4.60224 4.84878 4.44744 4.74384 4.29225 4.64258 4.1367 4.54498 3.98083 4.45102 3.82487 4.36067 3.66921 4.27398 3.51443 4.19159 3.36243 4.11338 3.21496 4.03794 3.06374 3.96593 2.90864 3.89769 2.75116 3.83326 2.59192 3.77263 2.43115 3.71576 2.26896 3.66257 2.10532 3.61305 1.94018 3.56717 1.77352 3.52496 1.60527 3.48643 1.43539 3.45157 1.26381 3.42037 1.09044 3.39282 0.915143 3.36891 0.737726 3.3487 0.557929 3.33231 0.375491 3.31993 0.189851 3.31173 0.00205828 3.30769 -0.186389 3.30816 -0.38184 3.31301 -0.578445 3.32183 -0.771409 -0.975776 16.7019 -0.495832 16.6699 0.916346 16.6148 1.87406 16.5402 2.72169 16.4468 3.49063 16.337 4.19035 16.212 4.81605 16.0734 5.38487 15.9225 5.89232 15.7609 6.35165 15.5901 6.76674 15.4119 7.14186 15.2267 7.48538 15.0347 7.79638 14.8361 8.07752 14.631 8.32487 14.4205 8.54593 14.2063 8.73138 13.9889 8.89149 13.7691 9.02419 13.5472 9.13128 13.3225 9.21992 13.0959 9.28791 12.8677 9.33885 12.638 9.37556 12.408 9.39532 12.1776 9.40028 11.9467 9.39411 11.7163 9.3764 11.4857 9.3545 11.2561 9.32799 11.029 9.29166 10.8044 9.24508 10.5825 9.1845 10.3637 9.10899 10.1478 9.01894 9.93448 8.92082 9.72364 8.82012 9.51446 8.7164 9.3066 8.61139 9.09976 8.50416 8.8939 8.39084 8.68929 8.27188 8.48644 8.14789 8.28752 8.01847 8.09373 7.88462 7.90489 7.74922 7.72049 7.61304 7.54024 7.47613 7.36371 7.33623 7.19069 7.18966 7.02156 7.03737 6.8564 6.88403 6.69491 6.73169 6.53699 6.58036 6.38259 6.43024 6.23157 6.28101 6.08382 6.13169 5.93947 5.98116 5.79871 5.8278 5.66183 5.67071 5.52917 5.51112 5.40081 5.35089 5.27662 5.19095 5.15648 5.03159 5.04027 4.87295 4.92786 4.71464 4.81916 4.55614 4.71414 4.39727 4.61277 4.23807 4.51503 4.07857 4.42091 3.91899 4.33042 3.7597 4.24364 3.60121 4.16114 3.44493 4.08318 3.29292 4.00781 3.13912 3.93579 2.98066 3.8675 2.81945 3.80301 2.65641 3.74229 2.49188 3.68526 2.32598 3.63186 2.15872 3.58205 1.99 3.53582 1.81975 3.49318 1.64791 3.45418 1.47439 3.41883 1.29916 3.38713 1.12214 3.35906 0.943215 3.33463 0.762157 3.3139 0.578652 3.29703 0.392369 3.28414 0.202735 3.27536 0.0108434 3.27072 -0.181746 3.27045 -0.381573 3.27478 -0.582773 3.28323 -0.779857 -0.987905 16.6982 -0.542047 16.6612 0.953353 16.6052 1.93009 16.5299 2.79702 16.4358 3.58473 16.3253 4.30077 16.1999 4.94152 16.0609 5.52383 15.9095 6.0437 15.7473 6.51392 15.5754 6.93857 15.396 7.32132 15.2095 7.67185 15.0165 7.98943 14.8172 8.27681 14.6118 8.53027 14.4013 8.75639 14.1872 8.94552 13.9699 9.10875 13.7502 9.24388 13.5282 9.35333 13.3032 9.44485 13.0761 9.51501 12.8473 9.56773 12.6168 9.60601 12.3859 9.62625 12.1544 9.63173 11.9225 9.62607 11.6908 9.60804 11.4594 9.58592 11.2296 9.55784 11.0026 9.51858 10.7786 9.46912 10.5576 9.40551 10.3399 9.3267 10.1244 9.2344 9.91111 9.13414 9.69982 9.03141 9.4899 8.92632 9.28119 8.8201 9.07351 8.71184 8.86675 8.59759 8.66124 8.47739 8.45759 8.35154 8.25823 8.21782 8.06428 8.07857 7.87547 7.93803 7.69114 7.79737 7.51096 7.65631 7.33453 7.51267 7.16159 7.3626 6.99246 7.20649 6.82725 7.04924 6.6656 6.89333 6.5074 6.73856 6.35271 6.58494 6.20145 6.43227 6.05357 6.27957 5.90919 6.12554 5.76845 5.96855 5.63159 5.80758 5.49894 5.64376 5.37062 5.47921 5.24649 5.31508 5.12639 5.1517 5.0102 4.98914 4.89777 4.82707 4.789 4.66491 4.68386 4.50241 4.58235 4.33959 4.48444 4.17648 4.39017 4.01326 4.29956 3.8503 4.21272 3.68805 4.13011 3.52754 4.05232 3.37071 3.97705 3.21438 3.90501 3.05271 3.83668 2.88779 3.77211 2.72098 3.71125 2.55274 3.65404 2.3832 3.60039 2.21236 3.55026 2.04012 3.50366 1.86635 3.46063 1.69095 3.4212 1.51381 3.38542 1.33494 3.35327 1.15429 3.32475 0.971739 3.29988 0.787031 3.27873 0.5998 3.26142 0.40968 3.24807 0.216089 3.23879 0.0201221 3.23363 -0.176588 3.23272 -0.380661 3.2363 -0.58635 3.24441 -0.787966 -0.99914 16.6951 -0.595895 16.6522 0.99617 16.5953 1.98703 16.5192 2.87311 16.4243 3.67965 16.3133 4.4118 16.1873 5.06746 16.0481 5.6631 15.8963 6.19543 15.7335 6.67671 15.5608 7.11128 15.3801 7.50204 15.1922 7.85971 14.9979 8.18373 14.7978 8.47698 14.5919 8.73615 14.3813 8.96694 14.1673 9.15954 13.9502 9.32583 13.7306 9.4635 13.5084 9.5755 13.2833 9.67 13.0558 9.74251 12.8263 9.79718 12.5952 9.83713 12.3634 9.85804 12.131 9.8642 11.8978 9.85918 11.665 9.84091 11.4328 9.81811 11.2027 9.78797 10.9758 9.74544 10.7522 9.6927 10.532 9.62574 10.315 9.54368 10.0998 9.44963 9.88628 9.34764 9.67454 9.24315 9.46397 9.13688 9.25452 9.02956 9.04613 8.92024 8.83867 8.80505 8.63246 8.68359 8.42824 8.55577 8.22858 8.41748 8.0345 8.27265 7.84571 8.12682 7.66145 7.98162 7.48131 7.83644 7.30493 7.68905 7.132 7.53552 6.96279 7.3757 6.7974 7.21463 6.63551 7.05523 6.47698 6.89708 6.32197 6.73995 6.17051 6.58373 6.02257 6.4275 5.87823 6.26988 5.73757 6.10921 5.60077 5.94438 5.46816 5.77637 5.33991 5.60747 5.21585 5.43914 5.0958 5.27175 4.97961 5.10532 4.86716 4.93953 4.7583 4.77377 4.65303 4.60769 4.55134 4.44127 4.45327 4.27456 4.35885 4.10768 4.26815 3.941 4.18128 3.77493 4.0986 3.61021 4.02078 3.44853 3.94567 3.2895 3.87362 3.12476 3.80522 2.95619 3.74054 2.78567 3.67951 2.61376 3.62207 2.44064 3.56814 2.26629 3.51769 2.09057 3.47074 1.9133 3.42735 1.73434 3.38755 1.55361 3.35138 1.37111 3.31884 1.18683 3.28992 1.00066 3.26467 0.81228 3.24316 0.621311 3.22546 0.427387 3.21167 0.229881 3.20192 0.0298671 3.19623 -0.1709 3.19476 -0.379188 3.19802 -0.589607 3.20564 -0.795583 -1.009 16.6921 -0.657795 16.6428 1.04545 16.5851 2.04478 16.5082 2.95002 16.4124 3.77545 16.3007 4.5235 16.1742 5.19389 16.0347 5.80267 15.8827 6.34742 15.7195 6.83985 15.5461 7.28468 15.3643 7.68388 15.175 8.049 14.9793 8.37945 14.778 8.67825 14.5715 8.94269 14.3607 9.17766 14.1468 9.3735 13.9299 9.54276 13.7103 9.68308 13.488 9.79779 13.2626 9.89538 13.0348 9.97036 12.8048 10.0271 12.5731 10.0688 12.3406 10.0906 12.1071 10.0976 11.873 10.0934 11.6389 10.075 11.406 10.051 11.1756 10.0184 10.9487 9.97232 10.7254 9.91597 10.5058 9.84538 10.2892 9.76029 10.0739 9.66488 9.86005 9.5615 9.6478 9.45541 9.43663 9.34804 9.22653 9.23966 9.01752 9.12924 8.80951 9.01306 8.60283 8.89027 8.39833 8.76027 8.19852 8.61729 8.00437 8.4668 7.81561 8.31558 7.63143 8.1658 7.45134 8.01654 7.27496 7.86543 7.10198 7.7085 6.93259 7.5451 6.7669 7.38032 6.60465 7.21747 6.44576 7.05597 6.29043 6.89529 6.13879 6.73537 5.99084 6.57545 5.84659 6.41413 5.70606 6.24973 5.56937 6.08108 5.43683 5.90891 5.30864 5.73565 5.18467 5.56312 5.06467 5.39174 4.9485 5.22149 4.83601 5.05202 4.72706 4.88271 4.62164 4.71311 4.51979 4.54312 4.42156 4.37279 4.32701 4.20223 4.23623 4.03178 4.14934 3.86182 4.06662 3.69293 3.98865 3.5265 3.91369 3.36446 3.84162 3.19683 3.77314 3.02467 3.70832 2.85049 3.64709 2.67499 3.58938 2.49835 3.53515 2.32053 3.48438 2.14134 3.43711 1.96057 3.39339 1.77806 3.35326 1.59374 3.31673 1.40763 3.28383 1.21974 3.25457 1.02992 3.22899 0.837854 3.20717 0.643138 3.18912 0.445429 3.17495 0.244056 3.16479 0.0400253 3.15871 -0.16482 3.15691 -0.377388 3.15961 -0.592302 3.16672 -0.80269 -1.01703 16.6733 -0.712409 16.6329 1.08584 16.5746 2.10309 16.4968 3.0278 16.4 3.87222 16.2876 4.63595 16.1606 5.32086 16.0207 5.94253 15.8686 6.4996 15.7052 7.00321 15.5313 7.45857 15.3485 7.86665 15.1579 8.23963 14.9607 8.57666 14.7581 8.88082 14.5507 9.1501 14.3397 9.38871 14.1257 9.58751 13.9088 9.75963 13.6892 9.90267 13.4667 10.0203 13.2411 10.121 13.0129 10.1985 12.7826 10.2575 12.5504 10.301 12.3172 10.3238 12.083 10.3318 11.8479 10.3284 11.6128 10.31 11.3793 10.2846 11.1485 10.2492 10.9215 10.1993 10.6984 10.1391 10.4791 10.0647 10.2624 9.97692 10.0469 9.88045 9.83249 9.77589 9.61964 9.66825 9.40787 9.55981 9.19714 9.4504 8.98758 9.3388 8.77914 9.2215 8.57218 9.09723 8.36772 8.96473 8.16799 8.81702 7.97385 8.66095 7.78515 8.50428 7.60107 8.34988 7.42105 8.19656 7.24468 8.04179 7.07161 7.88158 6.90191 7.7148 6.7358 7.54644 6.57311 7.38016 6.41381 7.21527 6.25816 7.05093 6.10637 6.88716 5.95843 6.72338 5.8143 6.55827 5.67392 6.39011 5.53735 6.21764 5.40491 6.04135 5.27681 5.86375 5.15293 5.687 5.03299 5.51168 4.91682 5.33766 4.80429 5.16456 4.69525 4.99174 4.5897 4.81866 4.4877 4.64513 4.38933 4.47117 4.29467 4.29688 4.20384 4.12261 4.11693 3.94873 4.03417 3.77568 3.956 3.60467 3.88116 3.4393 3.80905 3.26894 3.74048 3.09325 3.67549 2.91548 3.61402 2.73645 3.55603 2.55634 3.50149 2.37507 3.45042 2.19241 3.40285 2.00814 3.35882 1.82209 3.31836 1.6342 3.2815 1.44449 3.24825 1.25298 3.21867 1.0595 3.1928 0.863724 3.17068 0.665254 3.15233 0.463781 3.13785 0.258535 3.12744 0.050445 3.1211 -0.158482 3.11902 -0.375311 3.12087 -0.594144 3.1272 -0.809019 -1.02301 16.6707 -0.776533 16.6228 1.13367 16.5638 2.16215 16.4851 3.10649 16.3872 3.97006 16.2739 4.74926 16.1463 5.44846 16.0061 6.08274 15.8538 6.65194 15.6903 7.16668 15.5162 7.63276 15.3327 8.05011 15.1409 8.43144 14.9422 8.77532 14.7383 9.08479 14.5298 9.35855 14.3183 9.60025 14.1041 9.80172 13.8871 9.97656 13.6674 10.1224 13.4447 10.243 13.2188 10.3469 12.9903 10.4271 12.7595 10.4882 12.527 10.5335 12.2932 10.5576 12.0584 10.5667 11.8226 10.5641 11.5868 10.5459 11.3526 10.5187 11.1215 10.4803 10.8943 10.4265 10.6713 10.3622 10.452 10.2839 10.235 10.194 10.0188 10.0966 9.80371 9.99102 9.59014 9.88182 9.37769 9.77226 9.1663 9.66179 8.95622 9.54888 8.74743 9.43029 8.54033 9.30432 8.3363 9.16876 8.1369 9.01642 7.94288 8.85497 7.75429 8.69287 7.57036 8.53381 7.39045 8.37647 7.21412 8.21812 7.04091 8.05478 6.87083 7.88488 6.70415 7.71311 6.54093 7.54338 6.3812 7.37499 6.22526 7.20687 6.07334 7.03908 5.92542 6.8713 5.78139 6.7023 5.64115 6.53035 5.50472 6.35407 5.37238 6.17369 5.24438 5.99175 5.12058 5.8108 5.00069 5.63158 4.88451 5.45384 4.77193 5.27714 4.66283 5.10084 4.55718 4.9243 4.45507 4.74724 4.35659 4.56964 4.26186 4.39161 4.17098 4.21349 4.08406 4.03566 4.00126 3.85849 3.92287 3.68306 3.8481 3.51406 3.77596 3.34109 3.70727 3.16194 3.64209 2.98066 3.58038 2.79817 3.52209 2.61463 3.46725 2.42991 3.41588 2.24378 3.36801 2.05601 3.32368 1.86643 3.28289 1.67498 3.24569 1.48169 3.21212 1.28655 3.18223 1.0894 3.15607 0.889885 3.13367 0.687646 3.11507 0.48239 3.10038 0.273222 3.08978 0.0610438 3.08332 -0.152025 3.08087 -0.372857 3.08108 -0.594348 3.08593 -0.81387 -1.02738 16.6683 -0.850694 16.6123 1.18968 16.5527 2.22173 16.4731 3.18615 16.3741 4.06907 16.2598 4.86353 16.1315 5.57679 15.9908 6.22336 15.8383 6.80443 15.6748 7.33017 15.5005 7.80708 15.3166 8.23404 15.1239 8.62418 14.9239 8.97526 14.7186 9.29015 14.509 9.56815 14.2968 9.81245 14.0822 10.0163 13.865 10.1937 13.645 10.3424 13.4219 10.4661 13.1957 10.5731 12.9668 10.6559 12.7357 10.7194 12.5028 10.7664 12.2686 10.7918 12.0332 10.802 11.797 10.8003 11.5607 10.7822 11.3261 10.7534 11.0947 10.7117 10.8674 10.6538 10.6443 10.5853 10.4248 10.5034 10.207 10.4118 9.98994 10.3136 9.77387 10.2071 9.55938 10.0963 9.34611 9.98553 9.13397 9.87394 8.92332 9.75953 8.71424 9.63937 8.50715 9.51142 8.30397 9.37194 8.10515 9.21524 7.91139 9.04872 7.72297 8.8813 7.53923 8.71756 7.35949 8.55621 7.18325 8.39435 7.00992 8.22812 6.83935 8.05545 6.67201 7.88046 6.50818 7.70721 6.34802 7.53515 6.19181 7.36308 6.03977 7.19113 5.89186 7.01921 5.74792 6.84624 5.6078 6.67048 5.47148 6.49038 5.33925 6.30592 5.21133 6.11966 5.08759 5.93454 4.96771 5.75147 4.85149 5.57005 4.73886 5.38977 4.62971 5.20999 4.52402 5.03 4.42185 4.8494 4.32333 4.66817 4.22855 4.48639 4.13766 4.30439 4.05073 4.12258 3.96788 3.94134 3.88929 3.76165 3.81456 3.58879 3.74237 3.41328 3.67356 3.23075 3.60818 3.04603 3.54621 2.86014 3.48764 2.6732 3.4325 2.48504 3.38083 2.29545 3.33266 2.10418 3.28801 1.91107 3.2469 1.71609 3.20936 1.51923 3.17546 1.32046 3.14525 1.11961 3.11878 0.916353 3.0961 0.71033 3.07724 0.501251 3.06239 0.288064 3.05168 0.0717644 3.04492 -0.145272 3.04138 -0.369313 3.03987 -0.592839 3.04196 -0.815959 -1.0312 16.6667 -0.935891 16.6014 1.25502 16.5415 2.2816 16.4608 3.26682 16.3605 4.16936 16.2452 4.9789 16.116 5.70599 15.9748 6.36454 15.8221 6.95714 15.6586 7.49368 15.4843 7.9814 15.3001 8.4182 15.1067 8.81759 14.9057 9.17624 14.6991 9.49678 14.4883 9.77892 14.2753 10.0254 14.0601 10.2315 13.8425 10.4114 13.622 10.5628 13.3984 10.6898 13.1717 10.7998 12.9424 10.8852 12.7109 10.9509 12.4777 10.9996 12.2431 11.0264 12.0074 11.0378 11.771 11.0367 11.5346 11.0186 11.2997 10.9883 11.0681 10.9433 10.8407 10.8812 10.6176 10.8084 10.3974 10.7236 10.1785 10.6307 9.96034 10.5318 9.74311 10.4243 9.52748 10.3119 9.31318 10.1998 9.1001 10.087 8.88882 9.97082 8.6795 9.84869 8.47281 9.7181 8.27069 9.57406 8.07265 9.41328 7.87929 9.24208 7.6911 9.06949 7.50758 8.90108 7.32806 8.73573 7.15198 8.57043 6.97854 8.40155 6.80746 8.22653 6.63936 8.04856 6.47488 7.87169 6.31431 7.69573 6.15786 7.51953 6.00572 7.34326 5.85783 7.1671 5.71396 6.99011 5.57391 6.81052 5.43768 6.62662 5.30551 6.43809 5.17765 6.24753 5.05392 6.05827 4.93399 5.87139 4.81771 5.68634 4.70501 5.50247 4.59584 5.31916 4.49015 5.13569 4.388 4.95155 4.28948 4.76668 4.19472 4.58115 4.10384 4.39527 4.01693 4.2095 3.93405 4.02422 3.85529 3.84041 3.78054 3.66354 3.70831 3.4855 3.63939 3.29968 3.5738 3.11161 3.51157 2.92238 3.4527 2.73206 3.39727 2.54048 3.34531 2.34742 3.29683 2.15266 3.25186 1.95605 3.21041 1.75753 3.17254 1.5571 3.1383 1.3547 3.10776 1.15015 3.08095 0.943163 3.05793 0.733349 3.03877 0.520408 3.02371 0.303131 3.01255 0.0829176 3.00469 -0.137403 2.99888 -0.363505 2.9953 -0.589262 2.99604 -0.816694 -1.03533 16.6655 -1.0328 16.5898 1.33076 16.5301 2.34134 16.4484 3.34854 16.3467 4.27101 16.2301 5.09547 16.0999 5.83623 15.958 6.50641 15.805 7.11017 15.6414 7.65722 15.4672 8.15566 15.283 8.60242 15.0892 9.01138 14.8875 9.37796 14.6798 9.70444 14.468 9.99076 14.2541 10.2393 14.0381 10.4475 13.8198 10.6297 13.5987 10.7839 13.3743 10.9142 13.1471 11.027 12.9173 11.1149 12.6853 11.1829 12.4518 11.2332 12.2168 11.2614 11.9808 11.2738 11.7443 11.2732 11.508 11.2549 11.2733 11.223 11.0417 11.1748 10.8143 11.1086 10.5911 11.0316 10.3698 10.9449 10.1496 10.8508 9.93016 10.7512 9.71159 10.6429 9.4946 10.5289 9.27899 10.4154 9.06475 10.3012 8.8527 10.1829 8.64324 10.0581 8.43764 9.92371 8.23657 9.77512 8.03936 9.6105 7.84648 9.43495 7.65856 9.25741 7.47526 9.08438 7.29597 8.91502 7.12007 8.74633 6.94659 8.57503 6.775 8.39812 6.60614 8.21742 6.44103 8.0368 6.28007 7.85669 6.12343 7.67617 5.97122 7.49547 5.82336 7.31496 5.67956 7.13391 5.53957 6.95051 5.40337 6.76282 5.27122 6.57024 5.14334 6.37541 5.01956 6.18206 4.89953 5.99141 4.78313 5.80274 4.67036 5.61525 4.56117 5.42835 4.45553 5.24133 4.35345 5.05364 4.255 4.86513 4.16031 4.67584 4.06948 4.48609 3.98261 4.29636 3.89973 4.1071 3.82086 3.91929 3.74605 3.73835 3.67381 3.55774 3.60477 3.36872 3.53897 3.17741 3.47647 2.98489 3.41732 2.79121 3.3616 2.5962 3.30933 2.39968 3.26054 2.20145 3.21525 2.00134 3.17348 1.7993 3.13527 1.5953 3.10069 1.38927 3.06979 1.18106 3.0426 0.970352 3.01919 0.756769 2.99962 0.539972 2.98405 0.3187 2.97178 0.0951972 2.96187 -0.127495 2.95378 -0.35541 2.949 -0.584489 2.94878 -0.81647 -1.04029 16.6448 -1.12301 16.5775 1.39802 16.5185 2.40034 16.4357 3.43133 16.3326 4.3741 16.2147 5.21338 16.0833 5.96767 15.9405 6.6492 15.787 7.26366 15.6234 7.82086 15.4492 8.3298 15.2651 8.78656 15.0711 9.20533 14.869 9.5801 14.6606 9.91283 14.4479 10.2035 14.2331 10.454 14.0163 10.6644 13.7971 10.8489 13.5751 11.0059 13.3498 11.1394 13.1218 11.255 12.8914 11.3453 12.6589 11.4154 12.425 11.4671 12.1897 11.4967 11.9534 11.5101 11.717 11.5096 11.4809 11.4909 11.2467 11.4573 11.0154 11.4061 10.7882 11.3359 10.5643 11.2555 10.3418 11.1675 10.1202 11.0724 9.89946 10.972 9.67946 10.8629 9.46091 10.7475 9.24373 10.6326 9.02806 10.5169 8.81534 10.3956 8.60653 10.267 8.40199 10.1282 8.20178 9.97533 8.00531 9.80696 7.81293 9.62734 7.62526 9.44508 7.44212 9.26752 7.26297 9.09417 7.0872 8.9221 6.91371 8.74851 6.74173 8.5701 6.57221 8.38693 6.40655 8.20246 6.24528 8.01796 6.08851 7.83294 5.93628 7.64769 5.78848 7.46277 5.64477 7.27762 5.50484 7.09044 5.36864 6.89902 5.23645 6.70243 5.10847 6.50338 4.98454 6.30599 4.86435 6.11161 4.7478 5.91929 4.63493 5.72811 4.52574 5.53754 4.42016 5.34691 4.31817 5.15563 4.21983 4.96347 4.12524 4.77044 4.0345 4.57683 3.94771 4.38315 3.86487 4.18994 3.78593 3.99823 3.71104 3.81324 3.63882 3.62997 3.56967 3.43787 3.50367 3.24342 3.4409 3.04766 3.38148 2.85063 3.32547 2.65221 3.27291 2.45224 3.22382 2.25054 3.17821 2.04695 3.13612 1.84139 3.0976 1.63383 3.06268 1.42419 3.03141 1.21233 3.00381 0.997952 2.97992 0.780663 2.95975 0.560139 2.94329 0.335159 2.92923 0.109256 2.91725 -0.115511 2.90777 -0.345928 2.90234 -0.579057 2.90163 -0.815763 -1.04561 16.6442 -1.22685 16.565 1.47721 16.5069 2.45848 16.423 3.51523 16.3184 4.47867 16.1991 5.33269 16.0663 6.10051 15.9223 6.79313 15.7682 7.41784 15.6043 7.98476 15.4302 8.50386 15.2463 8.97052 15.0524 9.39923 14.8501 9.78239 14.6412 10.1217 14.4279 10.4169 14.2124 10.6695 13.9945 10.8822 13.7743 11.0691 13.5513 11.229 13.3249 11.3658 13.0961 11.4839 12.8649 11.5765 12.6317 11.6486 12.3973 11.7014 12.1616 11.7324 11.9251 11.7466 11.6888 11.746 11.4531 11.7266 11.2196 11.6908 10.9889 11.6367 10.7616 11.5632 10.5368 11.4803 10.3131 11.3912 10.0903 11.2952 9.86822 11.1941 9.64681 11.0843 9.42661 10.9677 9.20767 10.8516 8.99088 10.7337 8.77826 10.6082 8.57003 10.4752 8.36617 10.3321 8.16653 10.175 7.97063 10.0029 7.77865 9.81931 7.59116 9.63258 7.40803 9.45064 7.22883 9.27337 7.05302 9.09791 6.87949 8.92204 6.7073 8.74229 6.53738 8.55686 6.37135 8.36848 6.20989 8.17942 6.05306 7.98977 5.90087 7.79988 5.75318 7.61046 5.60961 7.42118 5.46979 7.23026 5.33359 7.03522 5.20128 6.83474 5.07312 6.63154 4.94895 6.43016 4.82852 6.23203 4.7118 6.03602 4.59883 5.84108 4.48963 5.64674 4.3841 5.45244 4.2822 5.25753 4.18396 5.06172 4.08946 4.86493 3.99883 4.66746 3.91213 4.46986 3.82933 4.27273 3.75037 4.07719 3.67543 3.88819 3.60324 3.70215 3.53401 3.50711 3.46781 3.30962 3.4048 3.11066 3.34512 2.91032 3.28885 2.70849 3.23602 2.50507 3.18665 2.29991 3.14076 2.09284 3.09839 1.88376 3.05956 1.67265 3.02432 1.45944 2.99267 1.24397 2.96464 1.02599 2.94017 0.805125 2.91913 0.581183 2.90136 0.352932 2.88555 0.125068 2.87214 -0.102105 2.86206 -0.335846 2.85602 -0.573011 2.85438 -0.814128 -1.05115 16.6441 -1.34509 16.5518 1.5695 16.4953 2.51505 16.4102 3.60029 16.3041 4.58475 16.1834 5.45346 16.049 6.2349 15.9036 6.93846 15.7485 7.57299 15.5842 8.1491 15.4101 8.6779 15.2264 9.15427 15.0327 9.59293 14.8305 9.98459 14.6215 10.3306 14.4077 10.6306 14.1916 10.8856 13.9729 11.101 13.7516 11.2903 13.5274 11.4532 13.2999 11.5933 13.07 11.7138 12.8379 11.8086 12.604 11.8825 12.369 11.9364 12.1328 11.9686 11.896 11.9834 11.6597 11.9823 11.4244 11.9619 11.1915 11.9237 10.9614 11.8668 10.7339 11.7908 10.5082 11.7059 10.2835 11.6159 10.0596 11.5191 9.83634 11.4173 9.61362 11.307 9.39183 11.1895 9.17129 11.0721 8.95424 10.9508 8.74174 10.8207 8.53386 10.6831 8.33039 10.5356 8.13105 10.3743 7.93549 10.1984 7.74374 10.0111 7.55626 9.82006 7.37295 9.63395 7.19343 9.45289 7.01729 9.27405 6.84361 9.09572 6.67142 8.91448 6.50143 8.72685 6.3353 8.53461 6.17381 8.34091 6.01704 8.14654 5.86495 7.95197 5.71743 7.75798 5.57411 7.56451 5.43449 7.36988 5.29833 7.17137 5.16585 6.96722 5.03738 6.76001 4.91286 6.55468 4.79214 6.35275 4.67522 6.15294 4.56216 5.95414 4.45294 5.75596 4.34745 5.55793 4.2456 5.35938 4.14742 5.1599 4.05299 4.95936 3.96243 4.75802 3.87578 4.55651 3.79302 4.3555 3.71403 4.15618 3.63904 3.96318 3.56692 3.77427 3.49761 3.57641 3.43126 3.37597 3.36805 3.17387 3.30815 2.97021 3.25165 2.76499 3.1986 2.55812 3.14902 2.34949 3.1029 2.13896 3.06028 1.92638 3.02119 1.71174 2.98563 1.495 2.95361 1.276 2.92509 1.05451 2.89991 0.8303 2.87771 0.60339 2.85868 0.371954 2.84116 0.142597 2.82702 -0.0879652 2.81649 -0.325316 2.80982 -0.566337 2.80745 -0.811763 -1.05584 16.6449 -1.47899 16.5379 1.67654 16.4836 2.56931 16.3974 3.68655 16.2898 4.69232 16.1676 5.57569 16.0315 6.37093 15.8845 7.08544 15.7281 7.72942 15.563 8.31418 15.3889 8.85206 15.2053 9.33781 15.0119 9.78632 14.81 10.1865 14.6011 10.5396 14.3872 10.8446 14.1706 11.1021 13.9511 11.3205 13.7288 11.5126 13.5035 11.6785 13.2748 11.822 13.0438 11.9448 12.8107 12.0417 12.5758 12.1174 12.3401 12.172 12.1034 12.2054 11.8662 12.2206 11.6299 12.2186 11.3949 12.1968 11.1625 12.1561 10.9327 12.0967 10.7048 12.0186 10.4785 11.9323 10.2529 11.8415 10.028 11.744 9.80368 11.6416 9.57981 11.5309 9.35659 11.4127 9.1351 11.2936 8.918 11.1679 8.70565 11.0331 8.49803 10.8907 8.29479 10.7388 8.09556 10.5736 7.9001 10.3939 7.70835 10.2028 7.52067 10.0077 7.33693 9.81769 7.15681 9.633 6.98006 9.45081 6.80605 9.26973 6.63399 9.08653 6.46427 8.89657 6.29832 8.70056 6.13698 8.50225 5.98036 8.30316 5.82845 8.10387 5.68119 7.90525 5.53821 7.70749 5.39894 7.50914 5.26293 7.30738 5.13026 7.09988 5.00135 6.88893 4.87636 6.67967 4.75528 6.47383 4.63816 6.27006 4.52502 6.06728 4.41579 5.86519 4.31032 5.6634 4.2085 5.4612 4.11032 5.25807 4.0159 5.05378 3.92534 4.84858 3.83868 4.64317 3.75587 4.43831 3.6768 4.23525 3.60176 4.03823 3.5297 3.84633 3.46034 3.64577 3.39385 3.44245 3.33049 3.23724 3.27043 3.03028 3.21377 2.82165 3.16056 2.61133 3.11082 2.39923 3.06455 2.18523 3.02174 1.96918 2.98241 1.75108 2.94652 1.53089 2.91406 1.30846 2.88493 1.08364 2.85878 0.856442 2.83515 0.62703 2.81476 0.392337 2.79672 0.16064 2.78202 -0.0732651 2.77107 -0.314363 2.76395 -0.559212 2.76075 -0.808562 -1.05779 16.6464 -1.62945 16.523 1.79997 16.472 2.62026 16.3845 3.77408 16.2755 4.80134 16.1519 5.69929 16.0141 6.50869 15.8653 7.23428 15.7072 7.8875 15.541 8.48038 15.3665 9.0266 15.1831 9.52121 14.99 9.97933 14.7885 10.388 14.5799 10.7482 14.366 11.0585 14.1491 11.319 13.9289 11.5408 13.7057 11.7358 13.4794 11.9048 13.2495 12.0519 13.0174 12.1769 12.7832 12.2759 12.5474 12.3533 12.3109 12.4085 12.0735 12.4428 11.8359 12.4582 11.5995 12.455 11.3647 12.4316 11.1325 12.3883 10.9027 12.3264 10.6745 12.2468 10.4474 12.1593 10.221 12.0679 9.99522 11.9698 9.77004 11.8668 9.54516 11.7558 9.32073 11.6371 9.09887 11.5155 8.88193 11.3848 8.66983 11.2452 8.46248 11.098 8.25943 10.9419 8.06024 10.7727 7.86469 10.5894 7.67268 10.3948 7.48456 10.1959 7.30014 10.0021 7.11919 9.81395 6.9416 9.6284 6.7671 9.44423 6.59519 9.25844 6.42595 9.06582 6.26039 8.86611 6.09934 8.6633 5.94296 8.45954 5.7913 8.25553 5.64434 8.05221 5.50181 7.85002 5.36307 7.64788 5.2274 7.44305 5.09457 7.23271 4.96509 7.01841 4.8395 6.80526 4.71801 6.59532 4.60068 6.3874 4.48747 6.18049 4.37826 5.97441 4.27283 5.76883 4.17102 5.56301 4.07281 5.35627 3.97833 5.14827 3.88768 4.93923 3.80092 4.72993 3.71797 4.52126 3.63874 4.31448 3.56359 4.11337 3.49159 3.91834 3.42215 3.71521 3.35554 3.50906 3.29204 3.30074 3.23185 3.09047 3.17506 2.87843 3.12174 2.66465 3.0719 2.44907 3.02551 2.23162 2.98252 2.01217 2.9429 1.7907 2.90658 1.5672 2.87351 1.34153 2.84352 1.11363 2.81621 0.883746 2.79148 0.651759 2.77027 0.413552 2.75167 0.179235 2.7368 -0.058387 2.72549 -0.303055 2.71786 -0.551584 2.71385 -0.804549 -1.05764 16.6245 -1.77542 16.5069 1.91757 16.4605 2.66672 16.3715 3.86303 16.2611 4.91173 16.1363 5.82417 15.9968 6.6481 15.846 7.3851 15.686 8.04756 15.5182 8.64815 15.3429 9.20185 15.1595 9.70463 14.9669 10.1719 14.7659 10.589 14.5577 10.9565 14.3439 11.2723 14.1269 11.536 13.9061 11.7615 13.6822 11.9597 13.4549 12.1321 13.2241 12.2827 12.9909 12.41 12.7557 12.5111 12.5189 12.5901 12.2816 12.6458 12.0435 12.681 11.8054 12.6963 11.5688 12.6916 11.3339 12.6665 11.1017 12.6205 10.8717 12.5565 10.6428 12.4757 10.415 12.3872 10.1878 12.2951 9.96123 12.1964 9.73521 12.0928 9.50941 11.9816 9.28397 11.8625 9.06227 11.7371 8.84573 11.6013 8.63405 11.4569 8.42709 11.305 8.22432 11.1446 8.0252 10.9719 7.82946 10.7852 7.63693 10.5873 7.44807 10.3847 7.26274 10.1874 7.08081 9.99589 6.9023 9.8069 6.72725 9.61928 6.55542 9.43027 6.38667 9.23457 6.2216 9.03118 6.0609 8.824 5.90482 8.61562 5.75343 8.40692 5.60679 8.19884 5.46474 7.99207 5.32669 7.78593 5.19157 7.57817 5.05869 7.3656 4.92857 7.14852 4.80227 6.93156 4.68033 6.71726 4.5628 6.50492 4.44957 6.29372 4.34042 6.08356 4.23507 5.87418 4.13329 5.66479 4.03505 5.45452 3.94044 5.24287 3.84963 5.03005 3.76266 4.8169 3.67949 4.60443 3.6 4.39397 3.52467 4.1887 3.45274 3.99027 3.38319 3.78476 3.31643 3.57583 3.25277 3.36439 3.19243 3.15081 3.13552 2.93535 3.08206 2.71811 3.03207 2.49906 2.98549 2.27819 2.94221 2.05545 2.90213 1.83078 2.86519 1.60415 2.83127 1.37545 2.80026 1.14465 2.77193 0.912068 2.74666 0.677034 2.725 0.435214 2.70639 0.19784 2.69131 -0.0433008 2.67962 -0.291365 2.67138 -0.543347 2.66642 -0.799585 -1.05534 16.6268 -1.94034 16.4903 2.05411 16.4491 2.70797 16.3585 3.9536 16.2468 5.02341 16.1208 5.95017 15.9798 6.78906 15.827 7.53792 15.6648 8.20974 15.4951 8.81786 15.3185 9.37847 15.1348 9.88838 14.9425 10.3642 14.7421 10.7894 14.5343 11.1643 14.3208 11.4858 14.1037 11.7531 13.8826 11.9827 13.658 12.1843 13.43 12.3601 13.1983 12.5144 12.9643 12.644 12.7281 12.7472 12.4904 12.8278 12.2523 12.8839 12.0135 12.9198 11.7749 12.9348 11.538 12.9285 11.3029 12.9015 11.0703 12.8531 10.8397 12.7871 10.6101 12.7054 10.3813 12.6159 10.1533 12.5231 9.92588 12.4238 9.69899 12.3197 9.47225 12.2083 9.24619 12.0886 9.02504 11.9583 8.80911 11.8173 8.59801 11.6679 8.39162 11.5114 8.18935 11.3469 7.9905 11.1707 7.79457 10.9811 7.60123 10.7807 7.41134 10.5746 7.22488 10.3739 7.04188 10.1789 6.86248 9.9863 6.68688 9.79488 6.51505 9.6021 6.34671 9.40291 6.18208 9.1958 6.02173 8.98435 5.86593 8.77142 5.71479 8.55807 5.56842 8.34521 5.4268 8.13369 5.28942 7.92331 5.15502 7.71257 5.02229 7.49833 4.89161 7.2792 4.7646 7.05858 4.6422 6.83966 4.5245 6.62262 4.41131 6.40692 4.30229 6.19257 4.19711 5.97937 4.09545 5.76645 3.99719 5.55278 3.90244 5.33762 3.81138 5.12111 3.72412 4.90416 3.64062 4.68793 3.5608 4.47379 3.48518 4.26432 3.41333 4.06212 3.34365 3.85444 3.27669 3.64279 3.21285 3.42824 3.15232 3.21133 3.09522 2.99245 3.04156 2.77177 2.9913 2.54932 2.94436 2.32514 2.90058 2.09923 2.85985 1.87151 2.82213 1.64187 2.78734 1.41024 2.75549 1.1765 2.72655 0.941007 2.70111 0.702475 2.67919 0.457132 2.66053 0.216504 2.64515 -0.0279177 2.63295 -0.279161 2.62386 -0.53426 2.61791 -0.793636 -1.05129 16.6297 -2.12523 16.4724 2.21147 16.4377 2.74261 16.3453 4.04605 16.2324 5.13633 16.1054 6.0771 15.9631 6.93137 15.8085 7.69259 15.6441 8.37412 15.4723 8.98968 15.2938 9.55691 15.1089 10.0733 14.9169 10.5563 14.7171 10.9891 14.5099 11.3715 14.2967 11.699 14.0795 11.9702 13.858 12.2042 13.633 12.4094 13.4043 12.5888 13.172 12.7467 12.9373 12.8788 12.7003 12.9842 12.4619 13.0663 12.2231 13.1227 11.9837 13.1592 11.7447 13.1738 11.5075 13.1657 11.272 13.137 11.0387 13.0864 10.8072 13.0186 10.5764 12.9362 10.3465 12.8458 10.1175 12.7521 9.8891 12.6522 9.6612 12.5476 9.43337 12.4362 9.20735 12.3146 8.98695 12.1787 8.77177 12.0324 8.56141 11.8783 8.35577 11.717 8.15427 11.5484 7.956 11.369 7.76001 11.1771 7.56563 10.9751 7.37439 10.7658 7.1866 10.5617 7.0025 10.363 6.8223 10.1665 6.64623 9.97094 6.47435 9.77399 6.30629 9.57096 6.14202 9.36008 5.98195 9.14442 5.82637 8.927 5.67541 8.70903 5.52921 8.49141 5.38782 8.27508 5.2509 8.06024 5.11715 7.84632 4.98479 7.63068 4.85383 7.41017 4.72627 7.18613 4.60351 6.96242 4.48573 6.7404 4.37264 6.52001 4.26386 6.30134 4.15897 6.08426 4.05756 5.86786 3.95939 5.65095 3.86452 5.43248 3.77316 5.21247 3.68549 4.99183 3.60158 4.77184 3.52132 4.55404 3.44524 4.3404 3.3735 4.13387 3.30368 3.92425 3.23648 3.70999 3.17241 3.49231 3.11166 3.27208 3.05431 3.04981 3.00034 2.82574 2.94969 2.59997 2.90224 2.37259 2.85784 2.14362 2.81643 1.91291 2.77801 1.6803 2.74255 1.44569 2.71015 1.20891 2.68084 0.970321 2.65524 0.728072 2.63294 0.479435 2.6139 0.235545 2.598 -0.012024 2.58488 -0.266041 2.57463 -0.524011 2.56766 -0.786661 -1.04657 16.6337 -2.33159 16.4532 2.39198 16.4266 2.76924 16.3318 4.14082 16.2178 5.25036 16.0901 6.2048 15.9466 7.07479 15.7904 7.84887 15.6238 8.54066 15.4498 9.16368 15.2694 9.73732 15.0829 10.2598 14.8901 10.749 14.6909 11.1883 14.4842 11.5782 14.2713 11.9118 14.0542 12.1874 13.8324 12.426 13.607 12.6348 13.3778 12.8179 13.145 12.9796 12.9097 13.114 12.6722 13.2217 12.4332 13.3054 12.1938 13.362 11.9541 13.3989 11.7148 13.4131 11.4772 13.4033 11.2412 13.373 11.007 13.3206 10.7743 13.2514 10.542 13.1684 10.3108 13.0771 10.0805 12.9823 9.85092 12.8818 9.62177 12.7767 9.39269 12.6652 9.16758 12.5397 8.94799 12.3983 8.73353 12.2469 8.52392 12.0879 8.31911 11.9218 8.11856 11.749 7.92111 11.5664 7.72521 11.373 7.52989 11.1704 7.33708 10.9586 7.14783 10.751 6.96267 10.5481 6.78179 10.3474 6.60537 10.1474 6.43344 9.94592 6.26557 9.73883 6.10154 9.5241 5.94166 9.3043 5.78623 9.08243 5.63535 8.85991 5.48917 8.63759 5.34779 8.41646 5.21094 8.19709 5.0775 7.97975 4.94559 7.76259 4.81479 7.54097 4.68704 7.31388 4.56412 7.08535 4.44635 6.85817 4.33346 6.63289 4.22503 6.40978 4.12057 6.18872 4.01959 5.96884 3.92171 5.74884 3.82685 5.52734 3.73517 5.30415 3.64698 5.08003 3.56251 4.85631 3.48169 4.63486 3.40495 4.41714 3.33321 4.20561 3.26334 3.99412 3.19588 3.77745 3.13156 3.55663 3.07054 3.3331 3.01289 3.10746 2.95855 2.88007 2.90744 2.65109 2.85943 2.4206 2.81445 2.18861 2.77246 1.9549 2.73349 1.71927 2.69755 1.48162 2.66473 1.24173 2.63508 0.999974 2.60919 0.753964 2.58636 0.502265 2.56666 0.255247 2.54972 0.00491141 2.53543 -0.25175 2.52409 -0.512674 2.51607 -0.778638 -1.04189 16.6385 -2.56051 16.4324 2.59806 16.4156 2.7861 16.318 4.23841 16.2028 5.36551 16.0745 6.3331 15.9302 7.21909 15.7727 8.00645 15.6041 8.70924 15.4279 9.3399 15.2454 9.91981 15.057 10.4482 14.863 10.943 14.6638 11.3875 14.4575 11.7845 14.2449 12.1245 14.0278 12.4045 13.8057 12.648 13.5799 12.8607 13.3503 13.0474 13.1171 13.2128 12.8814 13.3497 12.6435 13.4596 12.4041 13.5448 12.1644 13.6017 11.9245 13.6389 11.6851 13.6524 11.4472 13.6411 11.2107 13.6096 10.9755 13.5558 10.7413 13.4856 10.5074 13.4022 10.2745 13.31 10.0427 13.2141 9.81155 13.113 9.58081 13.0074 9.35146 12.8946 9.12724 12.7639 8.90829 12.6172 8.69438 12.4608 8.48535 12.2969 8.28123 12.1259 8.08157 11.9486 7.88453 11.7635 7.68869 11.5689 7.49342 11.3656 7.29907 11.153 7.10838 10.9416 6.92228 10.7342 6.74087 10.5288 6.56422 10.324 6.39228 10.1179 6.22457 9.90654 6.06072 9.68794 5.90096 9.46405 5.74559 9.23781 5.5947 9.01079 5.44842 8.78387 5.30681 8.55807 5.16966 8.33423 5.03613 8.11329 4.90458 7.89414 4.77428 7.67127 4.64675 7.44142 4.52389 7.2082 4.40626 6.9758 4.29364 6.74552 4.1856 6.51781 4.08166 6.29266 3.98129 6.06921 3.88396 5.84617 3.78938 5.62192 3.69748 5.39605 3.60866 5.16885 3.52348 4.94149 3.44197 4.71636 3.36448 4.49463 3.29233 4.27776 3.22257 4.06388 3.15489 3.84513 3.0903 3.62122 3.029 3.3944 2.97101 3.16545 2.91627 2.93481 2.86468 2.70268 2.81616 2.46912 2.77068 2.23408 2.72823 1.99735 2.68882 1.75868 2.65248 1.51796 2.61926 1.27496 2.58922 1.03001 2.5629 0.780284 2.53935 0.525817 2.51876 0.275843 2.50076 0.0229062 2.48537 -0.236356 2.473 -0.500303 2.46394 -0.769583 -1.03762 16.6161 -2.78876 16.4101 2.8041 16.405 2.79125 16.3037 4.33963 16.1876 5.48168 16.0588 6.46192 15.9138 7.36408 15.7552 8.16498 15.5849 8.87953 15.4065 9.51833 15.2219 10.1044 15.0316 10.6385 14.8361 11.1385 14.636 11.5877 14.43 11.9904 14.2176 12.3369 14.0003 12.6218 13.7778 12.8704 13.5516 13.0869 13.3217 13.2773 13.0882 13.4463 12.8523 13.5857 12.6141 13.6978 12.3745 13.7843 12.1346 13.8416 11.8946 13.8789 11.6552 13.8918 11.4172 13.8792 11.1801 13.8466 10.9439 13.792 10.7083 13.7212 10.4728 13.6377 10.238 13.5448 10.0044 13.4478 9.77144 13.3459 9.53912 13.2398 9.31036 13.1233 9.08669 12.9876 8.86811 12.8358 8.65447 12.6744 8.44572 12.5057 8.24193 12.3297 8.04277 12.1478 7.84598 11.9603 7.65018 11.7647 7.45507 11.5607 7.25981 11.3483 7.06797 11.1335 6.88115 10.9211 6.6994 10.7105 6.52266 10.5008 6.35078 10.2897 6.18324 10.0741 6.01957 9.85162 5.85989 9.62373 5.70451 9.39319 5.55354 9.16176 5.40705 8.93037 5.26507 8.70005 5.12742 8.47189 4.9935 8.24721 4.86216 8.02548 4.73248 7.80094 4.60543 7.56847 4.48281 7.33082 4.36539 7.09322 4.25304 6.85786 4.14536 6.62549 4.04187 6.39615 3.9421 6.16898 3.84547 5.94281 3.75146 5.71593 3.65967 5.48784 3.57029 5.25824 3.48432 5.02746 3.40204 4.79865 3.32381 4.57286 3.25085 4.35072 3.18133 4.13341 3.11347 3.91299 3.04861 3.68608 2.987 3.45601 2.92865 3.22381 2.8735 2.98996 2.82146 2.75471 2.7725 2.51808 2.72662 2.27997 2.68379 2.04018 2.64401 1.79847 2.60729 1.55468 2.57363 1.30861 2.54319 1.06046 2.5164 0.807075 2.49212 0.550096 2.4705 0.297459 2.45138 0.0420237 2.43505 -0.220016 2.4219 -0.487153 2.41192 -0.759604 -1.03326 16.6219 -3.04244 16.3868 3.03913 16.3946 2.78352 16.289 4.44523 16.1718 5.59889 16.0425 6.59115 15.897 7.50964 15.7378 8.32418 15.5663 9.05098 15.3857 9.6989 15.1991 10.2911 15.0068 10.8307 14.8097 11.3356 14.6082 11.7892 14.4019 12.1968 14.1894 12.5494 13.9718 12.8394 13.7489 13.0933 13.5222 13.3136 13.292 13.5076 13.0583 13.68 12.8221 13.8219 12.5837 13.9362 12.344 14.024 12.1041 14.0815 11.8641 14.1188 11.6249 14.1311 11.3867 14.1174 11.1492 14.0841 10.9121 14.0291 10.6753 13.958 10.4382 13.8748 10.2017 13.7813 9.96621 13.6833 9.73134 13.5808 9.49828 13.4728 9.26976 13.3519 9.04626 13.2111 8.82773 13.0543 8.61408 12.8881 8.40525 12.7145 8.20134 12.5336 8.00206 12.3471 7.80547 12.1569 7.60967 11.9605 7.41448 11.7559 7.21878 11.544 7.02633 11.3259 6.83912 11.1083 6.65723 10.8924 6.48051 10.6775 6.30878 10.4615 6.14147 10.2414 5.97801 10.0151 5.81842 9.78332 5.66301 9.5486 5.5119 9.31287 5.36514 9.07713 5.22274 8.84245 5.08453 8.61009 4.95018 8.38157 4.81893 8.15672 4.68987 7.93001 4.56335 7.69499 4.44103 7.45314 4.32379 7.21045 4.21165 6.97 4.10417 6.73297 4.00089 6.49944 3.90141 6.26846 3.80524 6.03898 3.71141 5.80976 3.61995 5.5793 3.53095 5.34724 3.44447 5.11393 3.3615 4.88161 3.28262 4.65175 3.20877 4.42457 3.13947 4.2027 3.07151 3.98095 3.00641 3.75118 2.94448 3.51793 2.88575 3.28254 2.83019 3.04553 2.77776 2.80715 2.72844 2.56739 2.68223 2.32617 2.63909 2.08332 2.59898 1.83858 2.56189 1.59177 2.52779 1.34272 2.49689 1.09135 2.46963 0.834336 2.44452 0.575212 2.4219 0.320078 2.40192 0.0619999 2.38476 -0.202848 2.37089 -0.473284 2.36029 -0.749008 -1.02848 16.6282 -3.32274 16.3619 3.30541 16.3846 2.76091 16.2736 4.55621 16.1554 5.71707 16.0258 6.72078 15.8797 7.6557 15.7201 8.48383 15.5479 9.2231 15.3655 9.88132 15.1769 10.4797 14.9827 11.0249 14.7838 11.5344 14.5809 11.9921 14.3736 12.4041 14.1609 12.7621 13.9427 13.0576 13.7192 13.3169 13.4918 13.541 13.2611 13.7383 13.0271 13.914 12.7907 14.0582 12.5522 14.1747 12.3125 14.2637 12.0726 14.3214 11.8328 14.3586 11.5936 14.3703 11.3554 14.3557 11.1175 14.322 10.8797 14.2669 10.6419 14.1959 10.4036 14.113 10.1657 14.0192 9.92857 13.9204 9.69204 13.8173 9.45853 13.7063 9.22984 13.5805 9.00617 13.4348 8.78743 13.2731 8.57351 13.102 8.36433 12.9237 8.15987 12.7381 7.95989 12.547 7.76314 12.3536 7.56721 12.1564 7.37162 11.9515 7.17581 11.7398 6.98337 11.5184 6.79613 11.2955 6.61426 11.0743 6.43764 10.8541 6.26609 10.633 6.09907 10.4084 5.93589 10.1782 5.77646 9.94275 5.62102 9.70403 5.46974 9.46415 5.32267 9.2242 5.17985 8.98528 5.04117 8.74877 4.90649 8.51624 4.77541 8.2878 4.64693 8.05849 4.52092 7.821 4.39882 7.57524 4.28168 7.32759 4.16961 7.08208 4.06213 6.84044 3.95872 6.60285 3.85907 6.36811 3.76287 6.13517 3.66924 5.90339 3.57805 5.6705 3.48941 5.43588 3.40312 5.20023 3.31984 4.96488 3.24057 4.73102 3.16602 4.49912 3.09673 4.272 3.02888 4.0488 2.96357 3.81649 2.90133 3.58017 2.84222 3.34164 2.78629 3.10146 2.73353 2.85991 2.68393 2.61699 2.63747 2.37263 2.59408 2.1267 2.55368 1.87898 2.51625 1.6292 2.4817 1.37727 2.45025 1.1228 2.42263 0.861952 2.39664 0.6012 2.3731 0.343621 2.35234 0.0827615 2.33455 -0.185055 2.32031 -0.459051 2.3096 -0.738289 -1.02228 16.6357 -3.63126 16.3356 3.60545 16.3751 2.72145 16.2575 4.6738 16.1384 5.83617 16.0084 6.85083 15.8618 7.80229 15.7018 8.64382 15.5293 9.39556 15.3457 10.065 15.1552 10.6702 14.9591 11.221 14.7587 11.7349 14.5543 12.1965 14.3457 12.6127 14.1323 12.9755 13.9133 13.2766 13.6887 13.5414 13.4605 13.7692 13.2291 13.9697 12.9948 14.1483 12.7582 14.2948 12.5196 14.4134 12.2799 14.5034 12.04 14.5613 11.8004 14.5983 11.5614 14.6093 11.323 14.594 11.0848 14.5602 10.8464 14.5052 10.6078 14.4345 10.3687 14.3521 10.1298 14.2582 9.89157 14.1587 9.65398 14.0549 9.41984 13.9405 9.19069 13.8097 8.96658 13.6589 8.74742 13.4922 8.53306 13.3164 8.32333 13.1334 8.11808 12.9433 7.91697 12.7481 7.7193 12.5513 7.52296 12.3527 7.32657 12.1479 7.13122 11.9351 6.93926 11.7103 6.75225 11.4825 6.57051 11.256 6.39401 11.0306 6.22262 10.8044 6.05586 10.5752 5.89302 10.3411 5.73379 10.102 5.57837 9.85946 5.42692 9.6156 5.27955 9.37157 5.13634 9.12849 4.99731 8.8878 4.8625 8.65106 4.73173 8.41857 4.60395 8.18627 4.47849 7.94645 4.35656 7.69717 4.23936 7.44479 4.12718 7.19426 4.0195 6.94812 3.91569 6.70666 3.81551 6.46828 3.71887 6.23182 3.62545 5.99681 3.53448 5.76146 3.44603 5.52434 3.35993 5.28632 3.27678 5.04803 3.19749 4.81031 3.12262 4.574 3.05298 4.34164 2.98547 4.11632 2.92001 3.88195 2.85746 3.64272 2.79802 3.40109 2.74177 3.15771 2.68875 2.91293 2.63894 2.66681 2.59228 2.41929 2.5487 2.17029 2.50809 1.91959 2.47038 1.66691 2.43544 1.41221 2.40334 1.1549 2.37523 0.890061 2.34846 0.627976 2.3242 0.367883 2.30294 0.104014 2.28534 -0.167451 2.27195 -0.445666 2.26139 -0.727724 -1.01224 16.6441 -3.96926 16.3077 3.94191 16.3662 2.66291 16.2407 4.79937 16.1208 5.95606 15.9902 6.98135 15.843 7.9495 15.6827 8.80413 15.5101 9.56817 15.326 10.2491 15.1338 10.8623 14.936 11.4188 14.7341 11.9368 14.5283 12.4022 14.3185 12.8226 14.104 13.19 13.8838 13.4968 13.658 13.7673 13.4285 13.9986 13.1962 14.202 12.9614 14.3832 12.7245 14.5317 12.4857 14.6522 12.2461 14.743 12.0063 14.8011 11.7668 14.8377 11.5279 14.8483 11.2894 14.8326 11.0509 14.7987 10.812 14.7441 10.5728 14.6737 10.3332 14.5917 10.0937 14.4976 9.85487 14.3975 9.61695 14.2928 9.38211 14.1753 9.15234 14.0395 8.92762 13.8836 8.7079 13.712 8.49299 13.5313 8.28263 13.3438 8.07645 13.1495 7.87403 12.9506 7.67474 12.7506 7.47736 12.5501 7.28048 12.3448 7.08573 12.1299 6.89436 11.9017 6.70767 11.6692 6.52608 11.4376 6.34966 11.207 6.17834 10.9757 6.01175 10.7418 5.84919 10.5036 5.69021 10.261 5.53483 10.0148 5.38325 9.76718 5.23561 9.5192 5.09209 9.27201 4.95282 9.02707 4.81802 8.78585 4.68776 8.54883 4.56094 8.31309 4.43631 8.07109 4.31459 7.81889 4.19714 7.56224 4.08463 7.30676 3.97656 7.0562 3.87218 6.81104 3.77134 6.56913 3.67407 6.32909 3.58043 6.09046 3.48967 5.85222 3.40129 5.61272 3.31537 5.37225 3.23257 5.13083 3.15347 4.88941 3.07851 4.64896 3.00841 4.41173 2.94131 4.18343 2.87573 3.94753 2.8129 3.70555 2.75318 3.4608 2.69669 3.2142 2.64346 2.96616 2.59347 2.7168 2.54664 2.46612 2.50291 2.21402 2.46216 1.96034 2.42425 1.70482 2.38904 1.44743 2.35645 1.18749 2.32744 0.919072 2.30011 0.655304 2.27569 0.392308 2.2555 0.124203 2.24165 -0.1536 2.22912 -0.433136 2.21427 -0.712875 -0.996967 16.6218 -4.31226 16.2783 4.28539 16.3585 2.58273 16.223 4.93488 16.1025 6.07655 15.9714 7.11242 15.8234 8.09748 15.6627 8.96483 15.49 9.74088 15.3059 10.4333 15.1126 11.0556 14.9133 11.6181 14.71 12.1401 14.5031 12.6091 14.2921 13.0336 14.0764 13.4056 13.8547 13.7185 13.6273 13.9947 13.3963 14.2296 13.1627 14.4356 12.9271 14.6188 12.6898 14.769 12.4508 14.8911 12.2112 14.9826 11.9714 15.0408 11.7321 15.0771 11.4932 15.0872 11.2545 15.0713 11.0157 15.0375 10.7764 14.9834 10.5367 14.9134 10.2966 14.8318 10.0568 14.7374 9.81787 14.6364 9.58022 14.5305 9.34511 14.4104 9.11477 14.2698 8.88938 14.109 8.66903 13.9323 8.45353 13.7468 8.24251 13.5548 8.03539 13.3566 7.83161 13.1543 7.63062 12.9516 7.43173 12.749 7.23445 12.5421 7.03998 12.3243 6.84904 12.0926 6.66261 11.8557 6.48113 11.6191 6.30472 11.3834 6.13337 11.1471 5.96678 10.9084 5.80436 10.6661 5.64555 10.4198 5.49024 10.1701 5.33856 9.91886 5.19072 9.66704 5.04697 9.41576 4.90754 9.1665 4.77283 8.92057 4.64313 8.67852 4.51757 8.43865 4.39428 8.19438 4.27319 7.93997 4.15534 7.6801 4.04219 7.4199 3.93348 7.16491 3.8284 6.91612 3.72687 6.67065 3.62901 6.42695 3.53487 6.18459 3.44406 5.94304 3.35577 5.70101 3.27018 5.45784 3.18773 5.21328 3.10882 4.96832 3.03377 4.72401 2.96318 4.48232 2.89649 4.25012 2.83081 4.01321 2.76774 3.76862 2.70781 3.52073 2.65113 3.27089 2.59771 3.01957 2.54754 2.76698 2.50055 2.51311 2.45667 2.25789 2.4158 2.00122 2.37771 1.74291 2.34218 1.48295 2.30922 1.22045 2.27964 0.948657 2.25224 0.682709 2.22949 0.415058 2.21443 0.139258 2.19744 -0.136611 2.17946 -0.415153 2.16249 -0.695907 -0.979477 16.6314 -4.68814 16.2485 4.66826 16.3514 2.47988 16.2044 5.08182 16.0837 6.19731 15.9519 7.24417 15.803 8.24644 15.6417 9.12605 15.4689 9.91373 15.2848 10.6173 15.0911 11.2493 14.8906 11.8186 14.6863 12.3444 14.4784 12.8171 14.2664 13.2455 14.0494 13.6226 13.8262 13.9418 13.5971 14.2238 13.3642 14.4625 13.129 14.6708 12.8923 14.8555 12.6542 15.0071 12.4149 15.1305 12.1752 15.2223 11.9354 15.2806 11.6962 15.3163 11.4572 15.3261 11.2183 15.3102 10.9791 15.2766 10.7394 15.2231 10.4992 15.1536 10.2587 15.0723 10.0187 14.9774 9.77989 14.8753 9.54282 14.7675 9.30832 14.6449 9.07776 14.5004 8.85187 14.3349 8.63091 14.1533 8.41487 13.9628 8.20322 13.7665 7.99515 13.5647 7.78999 13.3595 7.58734 13.1542 7.38695 12.9494 7.18896 12.7401 6.99437 12.5189 6.80357 12.2834 6.61725 12.042 6.4358 11.8006 6.25934 11.5599 6.08784 11.3186 5.92111 11.0751 5.75865 10.8285 5.59988 10.5785 5.44457 10.3255 5.29283 10.0706 5.14487 9.815 5.00096 9.55967 4.86143 9.30603 4.72675 9.05525 4.59747 8.80781 4.47315 8.56297 4.35126 8.31627 4.23133 8.05991 4.11389 7.79754 3.99982 7.53398 3.89019 7.27454 3.78425 7.02206 3.68205 6.77285 3.5837 6.52531 3.48918 6.27911 3.39819 6.03403 3.31009 5.78911 3.2248 5.54313 3.14258 5.2955 3.06378 5.04712 2.98859 4.7992 2.91746 4.55345 2.85109 4.31649 2.78539 4.07891 2.72212 3.83189 2.662 3.58085 2.60515 3.32774 2.55157 3.07315 2.50121 2.81733 2.45403 2.56029 2.40996 2.30197 2.36887 2.04231 2.33048 1.7813 2.29459 1.51884 2.2615 1.25354 2.23189 0.978274 2.20602 0.708582 2.18738 0.433698 2.16716 0.159477 2.14622 -0.115673 2.12621 -0.395145 2.10811 -0.677803 -0.961095 16.6413 -5.09791 16.2176 5.09198 16.3453 2.35216 16.1849 5.2422 16.0644 6.31782 15.9318 7.37674 15.7816 8.39664 15.6197 9.288 15.4465 10.0869 15.2626 10.8013 15.0689 11.443 14.8676 12.0199 14.6625 12.5494 14.4539 13.0257 14.2412 13.4582 14.023 13.8409 13.7982 14.1666 13.5674 14.4545 13.3327 14.6972 13.0955 14.908 12.8574 15.0936 12.6183 15.2461 12.3784 15.3704 12.1384 15.4623 11.8985 15.5205 11.6593 15.5556 11.4202 15.5652 11.181 15.5494 10.9413 15.5163 10.7011 15.4634 10.4603 15.3944 10.2193 15.3133 9.9791 15.2176 9.74035 15.114 9.50391 15.004 9.2707 14.8781 9.0407 14.7304 8.81476 14.5608 8.59345 14.3746 8.377 14.1793 8.16483 13.9786 7.95582 13.7737 7.74921 13.5661 7.54488 13.3585 7.343 13.1513 7.1441 12.939 6.94903 12.714 6.75806 12.4744 6.57168 12.2284 6.39017 11.9821 6.2136 11.7365 6.04191 11.4902 5.87495 11.2421 5.71229 10.9912 5.55341 10.7374 5.39804 10.4808 5.24624 10.2224 5.09821 9.96302 4.95422 9.70366 4.81459 9.44565 4.67985 9.19 4.55063 8.93702 4.42707 8.68654 4.30662 8.43672 4.18753 8.179 4.0709 7.91417 3.95689 7.64798 3.84618 7.38526 3.73932 7.12891 3.63651 6.87566 3.53776 6.62406 3.44298 6.37389 3.35192 6.12509 3.26406 5.87697 3.17911 5.62808 3.09714 5.37747 3.0184 5.12587 2.94306 4.87453 2.87144 4.62507 2.80508 4.38285 2.73951 4.14448 2.67609 3.89531 2.61582 3.64112 2.55881 3.38475 2.50506 3.1269 2.45451 2.86788 2.40712 2.60769 2.36278 2.34631 2.32131 2.08377 2.28246 1.82015 2.24626 1.55504 2.21334 1.28646 2.18459 1.00703 2.16182 0.731356 2.13897 0.456549 2.1154 0.183048 2.09263 -0.0929036 2.07118 -0.373695 2.05173 -0.658347 -0.942699 16.652 -5.54291 16.1858 5.55818 16.3403 2.19768 16.1644 5.41811 16.0448 6.43736 15.9113 7.51027 15.7596 8.54839 15.5966 9.45094 15.423 10.2605 15.2389 10.9853 15.0454 11.6365 14.8438 12.2216 14.6384 12.7549 14.4294 13.2347 14.2159 13.6716 13.9965 14.0603 13.7704 14.3927 13.5382 14.6867 13.3017 14.9337 13.0626 15.1471 12.8229 15.3333 12.5825 15.4865 12.3418 15.6111 12.1013 15.7027 11.8611 15.7607 11.6216 15.7951 11.3823 15.8045 11.1426 15.7891 10.9024 15.7564 10.6615 15.7043 10.42 15.6358 10.1784 15.555 9.93765 15.4583 9.69879 15.3529 9.46285 15.2399 9.23084 15.1101 9.00237 14.9588 8.77717 14.786 8.556 14.5957 8.33944 14.3958 8.12691 14.1912 7.91697 13.9837 7.70884 13.7742 7.50283 13.5646 7.29953 13.3546 7.09965 13.1388 6.9039 12.9097 6.71253 12.6658 6.52593 12.415 6.34428 12.1637 6.16755 11.9132 5.99566 11.6621 5.82842 11.4093 5.6655 11.1541 5.50642 10.8965 5.35092 10.6363 5.19904 10.3743 5.05097 10.1111 4.90693 9.8477 4.76723 9.58535 4.63233 9.3249 4.50286 9.06649 4.37926 8.81014 4.26013 8.55584 4.14181 8.29732 4.02569 8.03028 3.91205 7.76162 3.80058 7.49673 3.69301 7.23647 3.58977 6.97891 3.49073 6.7231 3.39576 6.46886 3.30467 6.21618 3.2171 5.96454 3.13264 5.71254 3.05106 5.45904 2.97251 5.20443 2.89714 4.9499 2.82527 4.69695 2.75846 4.44966 2.69317 4.20977 2.62966 3.95882 2.56927 3.70152 2.51213 3.44188 2.45822 3.18081 2.40749 2.91861 2.35985 2.65533 2.31515 2.391 2.27322 2.12571 2.23389 1.85948 2.19752 1.5914 2.16517 1.31881 2.13841 1.03378 2.1133 0.75647 2.0873 0.482548 2.06165 0.208703 2.03702 -0.0682805 2.01388 -0.350546 1.9933 -0.637775 -0.925447 16.6639 -6.0244 16.1531 6.069 16.3364 2.01442 16.1427 5.61182 16.0252 6.55486 15.8905 7.64492 15.7369 8.70198 15.5727 9.61516 15.3982 10.435 15.2138 11.1697 15.0204 11.8299 14.8187 12.4234 14.6132 12.9603 14.4041 13.4438 14.19 13.8857 13.9697 14.2805 13.7426 14.6199 13.5093 14.9201 13.2713 15.1716 13.0305 15.3879 12.7891 15.5747 12.5473 15.7283 12.3055 15.8529 12.0644 15.9438 11.8236 16.0015 11.5837 16.035 11.3438 16.0444 11.1035 16.0295 10.8625 15.9974 10.6207 15.9461 10.3783 15.8782 10.1357 15.7975 9.89421 15.6999 9.6549 15.5922 9.41921 15.4756 9.18827 15.3411 8.96126 15.1858 8.73747 15.0098 8.51709 14.8161 8.3007 14.6122 8.0877 14.4042 7.87676 14.1946 7.66744 13.9836 7.46016 13.7718 7.25576 13.559 7.05513 13.3395 6.85875 13.1061 6.66688 12.8576 6.47994 12.6019 6.29808 12.3456 6.12118 12.0901 5.94908 11.8342 5.78158 11.5768 5.61839 11.3173 5.45909 11.0558 5.30343 10.792 5.15146 10.5262 5.00335 10.2592 4.85929 9.99176 4.71952 9.72512 4.58444 9.45998 4.45454 9.19639 4.33032 8.93437 4.21158 8.67458 4.09426 8.41464 3.97847 8.14607 3.8647 7.8754 3.75281 7.60862 3.64504 7.34424 3.54168 7.08228 3.44252 6.82226 3.3474 6.56398 3.25624 6.30734 3.16888 6.0519 3.08491 5.79651 3.00392 5.54004 2.92577 5.28257 2.8506 5.02507 2.7787 4.76886 2.71138 4.51698 2.64637 4.27479 2.58282 4.02237 2.52234 3.76199 2.46511 3.49911 2.41107 3.23485 2.36015 2.96953 2.31222 2.70326 2.26711 2.43611 2.2247 2.16811 2.18502 1.89916 2.14879 1.62763 2.11787 1.34974 2.09073 1.06092 2.06217 0.785029 2.03389 0.510836 2.00589 0.236694 1.97865 -0.0410325 1.95409 -0.325987 1.93386 -0.617548 -0.909854 16.642 -6.51812 16.1198 6.59121 16.3337 1.80048 16.1197 5.82586 16.0056 6.66891 15.8697 7.78083 15.714 8.85769 15.5482 9.78098 15.3725 10.6107 15.1874 11.3548 14.9938 12.0235 14.7921 12.6251 14.5867 13.1657 14.3775 13.653 14.1629 14.1003 13.9421 14.5013 13.7142 14.8478 13.48 15.1542 13.241 15.4106 12.9989 15.6301 12.7561 15.8175 12.5129 15.9715 12.27 16.0958 12.028 16.1858 11.7864 16.2431 11.5458 16.2756 11.3052 16.285 11.0639 16.2708 10.822 16.2394 10.5791 16.189 10.3355 16.1218 10.0916 16.0414 9.84881 15.9427 9.60853 15.8325 9.3728 15.7113 9.14283 15.571 8.91712 15.4115 8.69444 15.2325 8.47479 15.0358 8.2585 14.8285 8.04509 14.6176 7.83352 14.4062 7.62343 14.1936 7.41537 13.9799 7.21049 13.7638 7.00974 13.5402 6.81313 13.3027 6.62089 13.0499 6.43362 12.7892 6.25152 12.5277 6.07444 12.2672 5.90214 12.0065 5.7344 11.7445 5.57096 11.4807 5.41145 11.2153 5.25565 10.9478 5.1036 10.6783 4.95545 10.4073 4.81137 10.1358 4.67156 9.86492 4.53632 9.59522 4.406 9.32671 4.28094 9.05942 4.1612 8.79432 4.04495 8.5309 3.92931 8.26171 3.81487 7.98983 3.7033 7.72019 3.59586 7.45169 3.49268 7.18546 3.39357 6.92137 3.2984 6.65915 3.20716 6.39858 3.11984 6.13922 3.03617 5.88018 2.95567 5.62054 2.87804 5.36021 2.80324 5.09986 2.73151 4.84059 2.66381 4.58468 2.599 4.33959 2.53548 4.08589 2.475 3.82247 2.41772 3.55639 2.36357 3.28901 2.31242 3.02068 2.26413 2.75155 2.21858 2.48166 2.17582 2.21087 2.13604 1.93895 2.10038 1.66329 2.0717 1.37842 2.0406 1.09202 2.00945 0.816183 1.97861 0.541679 1.94771 0.267592 1.91982 -0.0131352 1.89701 -0.303181 1.87753 -0.598065 -0.892869 16.6547 -7.05185 16.0868 7.15911 16.3317 1.55555 16.0952 6.06241 15.9864 6.77768 15.8491 7.91812 15.6911 9.01572 15.5234 9.94866 15.3461 10.788 15.16 11.5409 14.9658 12.2177 14.764 12.8269 14.5586 13.3711 14.3493 13.8623 14.1345 14.3151 13.9133 14.7226 13.6848 15.0763 13.4501 15.3889 13.2104 15.6503 12.9673 15.8732 12.7234 16.0614 12.4791 16.2158 12.2352 16.3396 11.9924 16.4286 11.7499 16.4856 11.5084 16.5171 11.2669 16.5266 11.0244 16.5132 10.7812 16.4826 10.5371 16.4332 10.292 16.3668 10.0465 16.2869 9.80196 16.1872 9.56036 16.0741 9.32505 15.9466 9.09549 15.8006 8.87034 15.6367 8.64841 15.4544 8.42915 15.255 8.21282 15.0448 7.99906 14.8313 7.78689 14.6183 7.57595 14.4046 7.36724 14.1886 7.16266 13.9684 6.96257 13.7403 6.76644 13.4989 6.57422 13.2421 6.38676 12.9766 6.20447 12.71 6.02721 12.4444 5.85472 12.179 5.68677 11.9125 5.52312 11.6444 5.36345 11.3749 5.20754 11.1037 5.05543 10.8304 4.90727 10.5555 4.76318 10.2799 4.62335 10.0048 4.48799 9.73057 4.35734 9.45736 4.23157 9.18519 4.11071 8.91518 3.99401 8.6476 3.87837 8.37735 3.76397 8.10423 3.65312 7.83104 3.54622 7.55858 3.44338 7.28831 3.34444 7.0203 3.24933 6.75427 3.15808 6.48983 3.07073 6.22657 2.98712 5.96378 2.90688 5.70079 2.82961 5.43748 2.75517 5.1743 2.68368 4.91208 2.61574 4.65263 2.55097 4.40436 2.48756 4.1493 2.42714 3.88288 2.36983 3.6137 2.31552 3.34332 2.26406 3.07213 2.21535 2.80026 2.16941 2.5276 2.12644 2.25384 2.08675 1.97865 2.0518 1.69825 2.02214 1.40807 1.98848 1.12568 1.95516 0.849508 1.92215 0.57469 1.89142 0.298318 1.86652 0.0117661 1.84513 -0.281791 1.82396 -0.576889 -0.871509 16.6673 -7.62622 16.0531 7.77323 16.3305 1.27819 16.069 6.32392 15.9677 6.87902 15.8289 8.05692 15.6685 9.1761 15.4988 10.1183 15.3196 10.9672 15.132 11.7285 14.9369 12.4127 14.7347 13.0292 14.529 13.5768 14.3194 14.0718 14.1045 14.53 13.8831 14.944 13.6542 15.3052 13.4191 15.624 13.1789 15.8905 12.9351 16.1169 12.6905 16.306 12.4454 16.4609 12.2008 16.5842 11.9572 16.6722 11.7139 16.7289 11.4715 16.7595 11.2289 16.7692 10.9852 16.7568 10.7408 16.727 10.4952 16.6787 10.2486 16.6134 10.0014 16.5341 9.75494 16.4337 9.51312 16.3159 9.27787 16.1819 9.04799 16.0305 8.82247 15.8622 8.6003 15.6766 8.38082 15.4745 8.16403 15.2616 7.94958 15.0458 7.7364 14.8315 7.52463 14.6163 7.31605 14.3972 7.11218 14.1723 6.91321 13.9393 6.71815 13.6939 6.52649 13.4338 6.33912 13.164 6.15674 12.8923 5.97934 12.6218 5.80669 12.3517 5.63855 12.0806 5.47471 11.8082 5.31494 11.5347 5.159 11.2596 5.00689 10.9825 4.85874 10.7037 4.71467 10.424 4.57484 10.1446 4.43942 9.86599 4.30854 9.58824 4.18228 9.31145 4.06058 9.03689 3.94281 8.76537 3.82699 8.49316 3.71325 8.21798 3.60301 7.94127 3.49661 7.66499 3.3941 7.39081 3.2954 7.119 3.20044 6.84923 3.10925 6.58102 3.02188 6.31394 2.93826 6.04741 2.85805 5.78099 2.78094 5.5146 2.70671 5.24853 2.63538 4.98341 2.56727 4.72074 2.50228 4.46935 2.43901 4.21257 2.37866 3.94324 2.32125 3.67111 2.26666 3.39791 2.21481 3.12399 2.16569 2.84938 2.11943 2.57386 2.07625 2.29701 2.03651 2.01839 2.00181 1.73295 1.9691 1.44079 1.93365 1.16112 1.89828 0.884882 1.86594 0.607037 1.83859 0.325666 1.81522 0.0351349 1.79183 -0.258398 1.76866 -0.553721 -0.8465 16.6803 -8.24209 16.0191 8.43439 16.3298 0.967478 16.0409 6.61286 15.9495 6.97042 15.809 8.19739 15.6464 9.33874 15.4748 10.2899 15.2935 11.1485 15.104 11.918 14.9078 12.609 14.7047 13.2322 14.4983 13.7832 14.288 14.2822 14.073 14.745 13.8515 15.1655 13.6223 15.5344 13.3869 15.8595 13.1462 16.1312 12.902 16.3612 12.6569 16.5511 12.4112 16.7066 12.1661 16.8293 11.922 16.9164 11.678 16.9728 11.4348 17.0028 11.1912 17.0129 10.9464 17.0016 10.7007 16.9727 10.4539 16.9256 10.206 16.8613 9.95746 16.7826 9.70973 16.6814 9.46777 16.5579 9.23207 16.4176 9.00146 16.2611 8.7751 16.0886 8.55205 15.8996 8.33157 15.695 8.11359 15.4796 7.8979 15.2615 7.68381 15.0456 7.47181 14.8283 7.2635 14.6055 7.06022 14.3756 6.86217 14.1373 6.66824 13.8878 6.4775 13.6245 6.29052 13.351 6.10819 13.0747 5.93071 12.7993 5.75791 12.5245 5.58959 12.2489 5.4256 11.9722 5.26577 11.6946 5.10986 11.4155 4.95783 11.1345 4.80975 10.8517 4.66575 10.568 4.52596 10.2844 4.39051 10.0014 4.2595 9.71926 4.13292 9.43803 4.01071 9.1591 3.89234 8.88374 3.77642 8.60908 3.66302 8.33138 3.55317 8.05113 3.44711 7.77105 3.34488 7.49304 3.24641 7.21748 3.15163 6.944 3.06057 6.67209 2.97325 6.40126 2.88959 6.13106 2.80936 5.86122 2.73226 5.5917 2.65809 5.32269 2.58681 5.05469 2.51853 4.78902 2.4531 4.53477 2.38992 4.27575 2.32954 4.00362 2.27192 3.72873 2.21698 3.45284 2.16475 3.17622 2.1153 2.89883 2.0687 2.62047 2.025 2.34071 1.98429 2.0591 1.94752 1.76972 1.91101 1.4773 1.8742 1.19793 1.84045 0.918633 1.81135 0.636146 1.78605 0.350968 1.76081 0.0603735 1.73575 -0.23334 1.71096 -0.528929 -0.819214 16.6941 -8.90022 15.9843 9.1442 16.3294 0.622387 16.0106 6.93162 15.9318 7.04919 15.7894 8.33981 15.6247 9.50342 15.4515 10.4631 15.2683 11.3318 15.0768 12.1094 14.879 12.8068 14.6747 13.4366 14.4672 13.9907 14.2556 14.4938 14.0402 14.9604 13.8185 15.3872 13.589 15.7639 13.3532 16.0953 13.1121 16.3723 12.8675 16.6058 12.622 16.7966 12.376 16.9526 12.1306 17.0746 11.8861 17.1609 11.6417 17.2173 11.3978 17.2467 11.1533 17.2574 10.9076 17.2474 10.6609 17.2194 10.4131 17.1734 10.1644 17.11 9.91543 17.0316 9.66734 16.9295 9.42459 16.8006 9.18808 16.6541 8.9566 16.4926 8.72926 16.3159 8.50506 16.1238 8.28322 15.9168 8.06377 15.699 7.84676 15.4785 7.63178 15.2606 7.41944 15.0407 7.21117 14.8138 7.00811 14.5786 6.81048 14.335 6.6173 14.081 6.42741 13.8144 6.24095 13.5374 6.05879 13.2568 5.88127 12.9768 5.70833 12.6974 5.53984 12.4174 5.37572 12.1363 5.21584 11.8544 5.06002 11.5714 4.90814 11.2864 4.76021 10.9997 4.61631 10.7119 4.47659 10.4241 4.34115 10.1369 4.21005 9.85037 4.08326 9.56482 3.96074 9.28162 3.84211 9.00237 3.72625 8.72493 3.61309 8.44454 3.50344 8.16078 3.3976 7.87688 3.29559 7.59506 3.19733 7.31574 3.10275 7.03858 3.01185 6.76299 2.92462 6.48849 2.84096 6.21471 2.76069 5.94149 2.68356 5.66884 2.60937 5.39688 2.53804 5.12602 2.46955 4.85751 2.40361 4.60072 2.34043 4.33893 2.27993 4.06413 2.22203 3.78663 2.16676 3.50811 2.11423 3.22874 2.06449 2.94857 2.01747 2.66748 1.97295 2.38523 1.93091 2.10114 1.8923 1.80833 1.85361 1.51598 1.8176 1.23394 1.785 0.951238 1.75635 0.664796 1.73095 0.376366 1.70436 0.0869702 1.67765 -0.206629 1.65102 -0.502303 -0.791181 16.6708 -9.57696 15.949 9.866 16.3291 0.242268 15.9779 7.28283 15.9148 7.11233 15.7699 8.48467 15.6035 9.66989 15.4291 10.6375 15.2442 11.5166 15.0508 12.3028 14.851 13.0067 14.6451 13.6425 14.4361 14.1996 14.2229 14.707 14.0063 15.177 13.7843 15.6092 13.5544 15.9937 13.3183 16.3314 13.0767 16.6138 12.8316 16.8509 12.5857 17.0425 12.3394 17.1989 12.0939 17.3202 11.8492 17.4056 11.6044 17.462 11.36 17.4911 11.1149 17.5025 10.8684 17.4939 10.621 17.4668 10.3726 17.4218 10.1236 17.359 9.87493 17.2802 9.62764 17.1768 9.38382 17.0444 9.14629 16.8916 8.91393 16.7249 8.6857 16.5441 8.46026 16.3493 8.23676 16.1403 8.01559 15.9202 7.79715 15.6969 7.58115 15.4766 7.36824 15.2536 7.15972 15.0223 6.95657 14.7818 6.75894 14.5326 6.56602 14.2739 6.37666 14.0038 6.19065 13.7235 6.00866 13.4388 5.83111 13.1544 5.65805 12.8705 5.48941 12.5861 5.32515 12.3006 5.16522 12.0144 5.00948 11.7271 4.85777 11.4381 4.71002 11.1474 4.56627 10.8556 4.42664 10.5637 4.29122 10.2723 4.16004 9.98155 4.03306 9.69179 3.91028 9.40439 3.79151 9.12114 3.67589 8.84056 3.56303 8.5574 3.4536 8.27022 3.34794 7.98254 3.24611 7.69689 3.14804 7.41381 3.05366 7.13296 2.96293 6.85372 2.87582 6.57561 2.7922 6.29833 2.71192 6.02178 2.63474 5.74601 2.5605 5.47113 2.48907 5.19745 2.42033 4.92625 2.35392 4.66713 2.29067 4.40218 2.22997 4.12483 2.17179 3.84481 2.11624 3.56366 2.06347 3.28151 2.01346 2.99859 1.96597 2.71497 1.92054 2.43066 1.87733 2.14436 1.83828 1.84739 1.79916 1.5551 1.76302 1.27008 1.73022 0.984042 1.69994 0.69507 1.67198 0.404328 1.6432 0.115754 1.61251 -0.17594 1.58644 -0.476229 -0.766247 16.6847 -10.2984 15.9144 10.6364 16.3288 -0.172219 15.9426 7.66911 15.8982 7.15667 15.7502 8.63272 15.5822 9.83789 15.4071 10.8126 15.2212 11.7024 15.0262 12.4978 14.824 13.2089 14.6162 13.8502 14.4056 14.4102 14.1906 14.922 13.9722 15.3954 13.7494 15.832 13.5189 16.2243 13.2822 16.5682 13.0399 16.8561 12.7942 17.0967 12.5479 17.2888 12.3014 17.4454 12.0557 17.5658 11.8109 17.6505 11.5659 17.7069 11.3212 17.7358 11.0755 17.7482 10.8284 17.741 10.5804 17.7148 10.3316 17.6705 10.0827 17.608 9.83478 17.5281 9.58886 17.4227 9.34567 17.2876 9.10711 17.1302 8.87403 16.958 8.64511 16.7731 8.4184 16.576 8.19285 16.3659 7.96945 16.1436 7.74926 15.9171 7.53196 15.6939 7.3182 15.4674 7.10919 15.2313 6.9057 14.9853 6.70783 14.7305 6.51485 14.4669 6.32566 14.1929 6.13989 13.9092 5.95799 13.6207 5.78039 13.332 5.60721 13.0437 5.43844 12.7548 5.27406 12.465 5.11407 12.1743 4.95838 11.8828 4.8068 11.5897 4.65922 11.295 4.51562 10.9992 4.37608 10.7033 4.24067 10.4077 4.10939 10.1128 3.98219 9.81899 3.8591 9.52749 3.74014 9.2401 3.6248 8.9559 3.51247 8.66973 3.40338 8.3793 3.29796 8.08796 3.19633 7.79852 3.09844 7.51169 3.00425 7.22715 2.91371 6.94427 2.82672 6.66259 2.74319 6.38186 2.66291 6.10205 2.58571 5.82321 2.51141 5.54543 2.43984 5.26902 2.37081 4.99529 2.30404 4.73389 2.24068 4.46555 2.17975 4.18576 2.1213 3.90325 2.06554 3.61942 2.01257 3.33449 1.96228 3.04888 1.91433 2.76292 1.86816 2.47683 1.82421 2.18831 1.78459 1.887 1.74539 1.59431 1.70891 1.30656 1.67539 1.01757 1.64231 0.728142 1.60975 0.436893 1.57846 0.14704 1.54937 -0.14684 1.52178 -0.44864 -0.744827 16.6981 -11.0645 15.8789 11.4555 16.3284 -0.621702 15.9046 8.09294 15.8822 7.17903 15.7299 8.78506 15.5605 10.0073 15.385 10.988 15.1988 11.8886 15.0029 12.6937 14.7984 13.4134 14.5885 14.0601 14.376 14.6227 14.1592 15.1389 13.9386 15.616 13.7145 16.0561 13.483 16.4558 13.2454 16.8058 13.0023 17.0991 12.7558 17.3432 12.5088 17.5358 12.2619 17.6923 12.0162 17.8116 11.7712 17.8955 11.5261 17.952 11.281 17.9809 11.0349 17.9942 10.7873 17.9886 10.5388 17.9633 10.2897 17.9196 10.0409 17.8568 9.79377 17.7753 9.54915 17.6673 9.30744 17.5293 9.06943 17.3682 8.83574 17.1917 8.6056 17.0032 8.37773 16.8038 8.15121 16.5924 7.92547 16.3693 7.70297 16.1396 7.48395 15.9129 7.26904 15.6823 7.05931 15.441 6.85536 15.1892 6.65713 14.9287 6.46391 14.6601 6.27467 14.3822 6.08892 14.095 5.90698 13.8027 5.72927 13.5097 5.55596 13.217 5.38707 12.9237 5.2226 12.6295 5.06255 12.3344 4.90685 12.0385 4.75536 11.7412 4.6079 11.4425 4.46442 11.1427 4.32496 10.8427 4.18954 10.5431 4.05815 10.2442 3.93071 9.94643 3.80727 9.65092 3.68805 9.35932 3.57292 9.07103 3.46119 8.78146 3.35263 8.48787 3.24754 8.19305 3.14614 7.89992 3.04846 7.60937 2.95446 7.32115 2.86409 7.03463 2.77727 6.74942 2.69383 6.4653 2.61359 6.18229 2.53638 5.90042 2.46202 5.61979 2.39029 5.34075 2.32092 5.06466 2.25394 4.80087 2.19043 4.52906 2.12926 4.24693 2.0706 3.96192 2.01468 3.67534 1.96154 3.38762 1.91099 3.09943 1.86257 2.81134 1.81588 2.52353 1.77162 2.23257 1.73117 1.92745 1.69184 1.63364 1.65512 1.34328 1.62028 1.05241 1.58511 0.763314 1.55122 0.470779 1.51982 0.178441 1.49052 -0.117537 1.46208 -0.420198 -0.722435 16.7115 -11.8755 15.8432 12.3238 16.3276 -1.10608 15.8642 8.55632 15.8667 7.17647 15.7087 8.94313 15.538 10.1779 15.3625 11.1635 15.1763 12.0748 14.9801 12.8899 14.774 13.6195 14.5619 14.2723 14.3475 14.8371 14.1288 15.3576 13.9063 15.8385 13.6802 16.2823 13.4472 16.6887 13.2085 17.0445 12.9644 17.3433 12.7169 17.5907 12.469 17.7837 12.2216 17.9397 11.9755 18.0577 11.7302 18.1408 11.4849 18.1973 11.2396 18.2263 10.993 18.2408 10.7449 18.2368 10.4958 18.2124 10.2464 18.169 9.99768 18.1055 9.75114 18.0218 9.50745 17.911 9.2667 17.7701 9.02909 17.6058 8.7949 17.4259 8.5639 17.2342 8.33537 17.0324 8.10861 16.8192 7.88277 16.5952 7.65774 16.3646 7.43665 16.134 7.22034 15.8986 7.00975 15.6516 6.80526 15.3937 6.60665 15.1273 6.41315 14.8536 6.22372 14.5716 6.03782 14.2809 5.8557 13.9848 5.67781 13.6876 5.50436 13.3904 5.33537 13.0927 5.17083 12.794 5.01072 12.4945 4.85501 12.1942 4.70355 11.8927 4.55617 11.5898 4.41278 11.2861 4.27337 10.9821 4.13793 10.6785 4.00644 10.3757 3.8788 10.0741 3.75511 9.77462 3.63565 9.47878 3.5206 9.18608 3.40936 8.89271 3.30134 8.59588 3.19665 8.29775 3.09552 8.00105 2.99805 7.70685 2.90424 7.41496 2.81406 7.12482 2.7274 6.83608 2.64408 6.54862 2.56391 6.26246 2.48669 5.97764 2.41226 5.69422 2.34033 5.41268 2.27057 5.13442 2.20348 4.86796 2.13983 4.59271 2.07846 4.3083 2.01966 4.02072 1.96366 3.73134 1.91041 3.44087 1.8596 3.15025 1.81071 2.86023 1.76355 2.57068 1.71918 2.27694 1.67815 1.96848 1.63839 1.67341 1.60113 1.38054 1.56488 1.08866 1.5283 0.799893 1.49404 0.505042 1.46243 0.210043 1.43235 -0.0874526 1.40497 -0.392822 -0.696239 16.7251 -12.7314 15.8067 13.2422 16.3262 -1.62562 15.8219 9.06067 15.852 7.14638 15.6864 9.10874 15.5145 10.3498 15.3391 11.3389 15.1531 12.2608 14.9569 13.0862 14.7504 13.826 14.5363 14.4863 14.3199 15.0535 14.0994 15.5781 13.8752 16.0627 13.6469 16.5106 13.4123 16.9233 13.1722 17.2845 12.9269 17.5886 12.6783 17.8392 12.4294 18.0326 12.1811 18.1879 11.9344 18.3044 11.6885 18.3866 11.4428 18.443 11.197 18.4721 10.95 18.4878 10.7012 18.4856 10.4515 18.462 10.2016 18.4189 9.95282 18.3543 9.70667 18.268 9.46353 18.1542 9.22322 18.0104 8.98564 17.8434 8.75098 17.6605 8.51934 17.4658 8.29038 17.2613 8.06351 17.0461 7.83798 16.8207 7.61222 16.5904 7.38911 16.3571 7.17146 16.1162 6.96005 15.863 6.75504 15.5987 6.5561 15.3262 6.36236 15.0474 6.17272 14.7613 5.98656 14.467 5.80416 14.1672 5.62602 13.8657 5.45241 13.564 5.28334 13.2618 5.11873 12.9586 4.95859 12.6546 4.80285 12.3499 4.65141 12.0441 4.50408 11.7372 4.36075 11.4294 4.22137 11.1215 4.08593 10.814 3.95437 10.5073 3.82663 10.2018 3.7028 9.89844 3.58323 9.59835 3.4682 9.30112 3.35724 9.00367 3.24966 8.70347 3.14533 8.40207 3.04448 8.1019 2.94722 7.8041 2.85359 7.50859 2.76359 7.21482 2.6771 6.92256 2.59392 6.6318 2.51383 6.34256 2.43661 6.05485 2.36207 5.76875 2.28988 5.48487 2.2197 5.2046 2.15258 4.93508 2.0888 4.65649 2.02729 4.36981 1.96846 4.07955 1.9125 3.7873 1.85921 3.49416 1.80809 3.20137 1.75876 2.90957 1.71127 2.61817 1.66707 2.32115 1.62593 2.00962 1.58592 1.71342 1.54728 1.41918 1.50865 1.12729 1.47151 0.837032 1.43694 0.539616 1.40513 0.241851 1.37553 -0.0578579 1.35073 -0.368019 -0.66308 16.6981 -13.6096 15.7699 14.1704 16.3245 -2.18019 15.7783 9.60687 15.838 7.08661 15.6627 9.28407 15.4896 10.5229 15.3144 11.5141 15.1287 12.4465 14.9326 13.2823 14.7259 14.0327 14.5113 14.7009 14.293 15.2718 14.0708 15.8003 13.8451 16.2884 13.6147 16.741 13.3783 17.1597 13.1369 17.5259 12.8904 17.8351 12.6408 18.0888 12.3907 18.2827 12.1414 18.4372 11.8936 18.5522 11.6468 18.6335 11.4003 18.6895 11.1538 18.7186 10.906 18.7356 10.6564 18.7351 10.406 18.7125 10.1555 18.6694 9.90649 18.6032 9.66053 18.5139 9.41767 18.397 9.17741 18.2507 8.93952 18.0813 8.70425 17.8958 8.47202 17.6981 8.24262 17.4907 8.01551 17.2732 7.78998 17.0462 7.5642 16.8162 7.33998 16.5813 7.12156 16.3346 6.90961 16.075 6.70426 15.8041 6.50508 15.5254 6.31117 15.2413 6.12136 14.9511 5.93495 14.6534 5.75222 14.3499 5.57382 14.0441 5.40005 13.7378 5.2309 13.4309 5.06627 13.1232 4.9061 12.8148 4.75036 12.5057 4.59893 12.1955 4.45164 11.8845 4.30836 11.5727 4.16902 11.2608 4.03358 10.9494 3.902 10.6389 3.77424 10.3296 3.65041 10.0223 3.53084 9.71791 3.41583 9.41613 3.30501 9.11448 3.19771 8.81077 3.09368 8.50611 2.99306 8.20252 2.896 7.90117 2.80254 7.60204 2.71271 7.30465 2.62639 7.00888 2.54336 6.71482 2.46336 6.42257 2.38614 6.13207 2.31148 5.84341 2.23896 5.55739 2.16834 5.27523 2.10124 5.00218 2.03733 4.7204 1.97576 4.43139 1.91702 4.13829 1.86124 3.84308 1.80798 3.54742 1.75655 3.2528 1.70694 2.95918 1.65952 2.6656 1.61663 2.36403 1.57691 2.04934 1.5348 1.75553 1.49247 1.46151 1.45248 1.16728 1.41513 0.874386 1.38 0.574743 1.34844 0.273412 1.31981 -0.0292256 1.29148 -0.33969 -0.627145 16.7108 -14.5344 15.7338 15.1474 16.3222 -2.76859 15.734 10.1951 15.8252 6.99549 15.6376 9.47167 15.4634 10.6971 15.2883 11.6893 15.1028 12.6319 14.9068 13.4784 14.7 14.2394 14.4853 14.9156 14.2659 15.4912 14.0423 16.0239 13.8151 16.5155 13.5828 16.9733 13.3449 17.3976 13.1023 17.7685 12.8548 18.0826 12.6045 18.3392 12.3534 18.5338 12.103 18.6876 11.8539 18.8013 11.6058 18.8816 11.3581 18.9372 11.1105 18.9662 10.8618 18.9843 10.6112 18.9857 10.3599 18.9639 10.1086 18.9206 9.85932 18.8526 9.61341 18.7598 9.37059 18.6399 9.13007 18.4912 8.89152 18.3198 8.65539 18.1319 8.42237 17.9311 8.19235 17.7207 7.96468 17.5008 7.73859 17.2723 7.51216 17.0426 7.28824 16.8053 7.06991 16.553 6.85791 16.287 6.65244 16.0095 6.45315 15.7247 6.25913 15.4353 6.06922 15.141 5.88266 14.84 5.6997 14.5329 5.52108 14.2227 5.34719 13.9117 5.17801 13.6001 5.01337 13.2879 4.85319 12.975 4.69745 12.6614 4.54604 12.3469 4.39881 12.0317 4.25559 11.7159 4.11629 11.4001 3.98087 11.0848 3.84931 10.7704 3.72159 10.4573 3.59784 10.146 3.47836 9.8374 3.36341 9.53108 3.25268 9.22521 3.14556 8.91789 3.04175 8.60992 2.94132 8.30295 2.84442 7.99807 2.75112 7.69535 2.66144 7.39434 2.57528 7.09504 2.49241 6.79769 2.41252 6.50245 2.33533 6.20927 2.26055 5.91819 2.18768 5.63025 2.11665 5.34626 2.04961 5.06922 1.98558 4.78443 1.92398 4.49298 1.86548 4.19679 1.81009 3.89848 1.757 3.6005 1.70551 3.30429 1.65642 3.00827 1.61057 2.71144 1.57074 2.40386 1.52752 2.09256 1.48347 1.79958 1.4378 1.50718 1.39599 1.20908 1.35849 0.911885 1.32294 0.610294 1.29105 0.305306 1.25892 0.00289781 1.22855 -0.309314 -0.591938 16.7225 -15.5048 15.697 16.1729 16.3195 -3.39112 15.6898 10.8248 15.8136 6.87165 15.6109 9.6744 15.4358 10.8722 15.2607 11.8643 15.0754 12.8173 14.8792 13.6745 14.6723 14.4464 14.4573 15.1305 14.2371 15.7114 14.0125 16.2485 13.7841 16.7439 13.5504 17.2071 13.3114 17.6365 13.0679 18.012 12.8197 18.3308 12.5689 18.59 12.3171 18.7855 12.0658 18.9389 11.8154 19.0517 11.5657 19.1314 11.3166 19.1864 11.0678 19.215 10.8179 19.2342 10.5663 19.2372 10.314 19.2162 10.0621 19.1725 9.8124 19.1022 9.56641 19.0058 9.32342 18.8829 9.08235 18.7322 8.84283 18.5594 8.60545 18.3693 8.37127 18.1653 8.14023 17.9518 7.9115 17.7296 7.68406 17.4998 7.45714 17.2696 7.23433 17.0281 7.01662 16.7707 6.80488 16.4987 6.59946 16.2149 6.4001 15.9241 6.20595 15.6295 6.01598 15.3309 5.8294 15.0266 5.64638 14.7159 5.46768 14.4014 5.29376 14.0856 5.12459 13.7693 4.95997 13.4525 4.7998 13.1351 4.64408 12.8171 4.4927 12.4983 4.34552 12.1789 4.20237 11.8591 4.06313 11.5394 3.92775 11.2202 3.79624 10.9019 3.66862 10.5849 3.54501 10.2696 3.42566 9.95674 3.3108 9.64594 3.20014 9.33587 3.09316 9.02487 2.98953 8.71354 2.88927 8.40321 2.79252 8.09483 2.69934 7.78852 2.60979 7.48389 2.52377 7.18106 2.44106 6.8804 2.36132 6.58219 2.28421 6.28638 2.20933 5.99307 2.13612 5.70346 2.06481 5.41757 1.99783 5.1362 1.93367 4.84859 1.87216 4.5545 1.8143 4.25465 1.76 3.95278 1.70802 3.65248 1.6579 3.35441 1.61026 3.05592 1.56357 2.75812 1.51968 2.44775 1.47424 2.13801 1.42977 1.84406 1.38515 1.5518 1.34125 1.25298 1.30361 0.949527 1.26673 0.647176 1.23228 0.339752 1.19653 0.0386455 1.16217 -0.27495 -0.560619 16.7343 -16.5207 15.66 17.2472 16.3162 -4.04737 15.646 11.495 15.8037 6.71387 15.5828 9.89535 15.4071 11.0479 15.2319 12.0396 15.0464 13.0027 14.8499 13.871 14.6426 14.6537 14.4272 15.3458 14.2061 15.9326 13.9805 16.4741 13.7512 16.9732 13.5164 17.4418 13.2768 17.8762 13.0327 18.2561 12.7841 18.5794 12.533 18.8412 12.2809 19.0376 12.029 19.1908 11.7775 19.3032 11.5264 19.3825 11.2759 19.4368 11.0258 19.4652 10.7747 19.4853 10.5222 19.4897 10.2691 19.4692 10.0167 19.425 9.76676 19.3521 9.52056 19.252 9.27721 19.1262 9.03544 18.974 8.79476 18.8001 8.55587 18.6082 8.32014 18.401 8.08763 18.1843 7.85727 17.9599 7.62785 17.7292 7.40169 17.4957 7.17975 17.25 6.96252 16.9879 6.751 16.7102 6.54563 16.4203 6.34617 16.1235 6.15182 15.8238 5.9617 15.5211 5.77517 15.2131 5.59224 14.8988 5.4136 14.5801 5.23974 14.2595 5.07063 13.9384 4.90605 13.6171 4.74591 13.2953 4.59019 12.9729 4.43884 12.6497 4.29171 12.326 4.14864 12.0022 4.00949 11.6785 3.87417 11.3555 3.74275 11.0334 3.61526 10.7124 3.49182 10.3931 3.37263 10.0759 3.25788 9.76069 3.1473 9.44646 3.04045 9.13172 2.937 8.81699 2.8369 8.5033 2.74027 8.19146 2.64721 7.88159 2.55777 7.57334 2.47188 7.26695 2.38932 6.96296 2.30975 6.66176 2.23277 6.36336 2.15785 6.06799 2.08429 5.77702 2.01295 5.48891 1.94599 5.20316 1.88177 4.91281 1.82076 4.6155 1.76508 4.31034 1.71313 4.00473 1.66068 3.70492 1.60959 3.40551 1.55969 3.10582 1.51125 2.80656 1.46616 2.49285 1.4201 2.18407 1.37586 1.8883 1.33318 1.59448 1.29326 1.2929 1.25364 0.98915 1.21338 0.68744 1.17238 0.380743 1.13605 0.0749766 1.10045 -0.239346 -0.529233 16.7455 -17.5817 15.6222 18.3705 16.3123 -4.73745 15.6028 12.2046 15.7956 6.52104 15.5534 10.1375 15.3779 11.2234 15.2022 12.2153 15.0163 13.1887 14.8192 14.0681 14.6111 14.8618 14.395 15.5619 14.1726 16.155 13.9459 16.7008 13.7157 17.2034 13.4802 17.6773 13.2403 18.1162 12.996 18.5004 12.7472 18.8282 12.496 19.0923 12.2437 19.29 11.9914 19.4431 11.7391 19.5555 11.4869 19.6347 11.2353 19.6884 10.9841 19.7164 10.7319 19.7374 10.4787 19.743 10.2251 19.7228 9.97252 19.6776 9.7225 19.6022 9.47601 19.4985 9.23217 19.37 8.98969 19.2165 8.74798 19.0418 8.50771 18.8485 8.27044 18.6383 8.03637 18.4184 7.80434 18.1919 7.57363 17.9599 7.34766 17.7217 7.12578 17.4719 6.90852 17.2052 6.69692 16.9218 6.49146 16.6258 6.29182 16.3232 6.09718 16.0184 5.90683 15.7114 5.72027 15.3997 5.53747 15.0816 5.35895 14.7586 5.18519 14.4332 5.01618 14.1074 4.85164 13.7816 4.69152 13.4554 4.53582 13.1286 4.38448 12.801 4.2374 12.4731 4.0944 12.1452 3.95533 11.8176 3.82011 11.4908 3.6888 11.1647 3.56147 10.8397 3.43822 10.5163 3.31921 10.1949 3.20458 9.87532 3.09407 9.55697 2.98736 9.23844 2.88409 8.92026 2.78417 8.60323 2.68768 8.28795 2.59472 7.97455 2.50537 7.66268 2.41958 7.35274 2.33715 7.04539 2.25776 6.74116 2.18096 6.44016 2.10607 6.14288 2.03217 5.85092 1.96102 5.56006 1.89409 5.2701 1.82999 4.97691 1.77086 4.67464 1.71817 4.36303 1.66345 4.05945 1.6098 3.75857 1.55782 3.4575 1.50668 3.15696 1.45732 2.85591 1.41121 2.53896 1.36508 2.2302 1.32012 1.93326 1.27803 1.63656 1.23768 1.33325 1.19642 1.0304 1.15657 0.727292 1.11273 0.424581 1.07574 0.11197 1.04123 -0.204837 -0.494636 16.7118 -18.6663 15.5843 19.4979 16.3079 -5.46102 15.5603 12.9522 15.7892 6.29213 15.523 10.4037 15.3489 11.3976 15.1725 12.3916 14.9856 13.3756 14.7875 14.2662 14.5785 15.0707 14.3613 15.7792 14.137 16.3793 13.9087 16.9291 13.6774 17.4347 13.4413 17.9134 13.2012 18.3562 12.957 18.7446 12.7083 19.0769 12.4572 19.3435 12.2048 19.5424 11.9522 19.6956 11.6993 19.8084 11.4463 19.8877 11.1939 19.9408 10.9418 19.9685 10.6889 19.9904 10.4351 19.9968 10.1813 19.9766 9.92865 19.9302 9.67858 19.8522 9.43174 19.7454 9.18738 19.6144 8.94429 19.4596 8.70182 19.2842 8.4606 19.0897 8.22232 18.8765 7.98724 18.6534 7.75436 18.4248 7.52264 18.1916 7.29567 17.9486 7.07301 17.6945 6.85515 17.423 6.64312 17.1338 6.43735 16.8315 6.23743 16.5231 6.04244 16.2134 5.85176 15.9021 5.66507 15.5864 5.48231 15.2644 5.30387 14.937 5.13021 14.6069 4.96128 14.2763 4.7968 13.9461 4.63669 13.6155 4.481 13.2843 4.32967 12.9523 4.18263 12.6201 4.0397 12.2881 3.90072 11.9566 3.76559 11.6259 3.63441 11.2959 3.50726 10.9669 3.38421 10.6394 3.26539 10.3138 3.15089 9.98983 3.04045 9.6674 2.93386 9.34503 2.83079 9.02333 2.73106 8.70296 2.63471 8.3843 2.54185 8.0674 2.4526 7.75194 2.36689 7.43845 2.28454 7.12774 2.20528 6.82041 2.12869 6.51675 2.0539 6.21767 1.97983 5.92499 1.9089 5.63099 1.84201 5.33698 1.77851 5.04041 1.72332 4.72984 1.66743 4.41891 1.61151 4.11538 1.55725 3.81283 1.5046 3.51015 1.45285 3.20871 1.40301 2.90575 1.35566 2.58631 1.30985 2.27601 1.26434 1.97877 1.22138 1.67952 1.17956 1.37508 1.13802 1.07195 1.09821 0.767101 1.05751 0.465283 1.01558 0.153896 0.984111 -0.173367 -0.45423 16.7223 -19.7976 15.5473 20.6729 16.3026 -6.21632 15.5185 13.7363 15.7841 6.02644 15.4918 10.696 15.3208 11.5686 15.1435 12.5689 14.9552 13.5639 14.7557 14.4657 14.5456 15.2809 14.3268 15.998 14.1001 16.606 13.8699 17.1593 13.6367 17.6679 13.3992 18.1509 13.1593 18.5961 12.9155 18.9884 12.6671 19.3252 12.4162 19.5944 12.1638 19.7947 11.9112 19.9483 11.6578 20.0618 11.4041 20.1414 11.151 20.1939 10.8983 20.2212 10.6446 20.2441 10.3904 20.251 10.1364 20.2305 9.88378 20.1829 9.63365 20.1024 9.38647 19.9925 9.14162 19.8592 8.898 19.7032 8.65496 19.5273 8.41312 19.3315 8.17436 19.1153 7.93897 18.8888 7.70617 18.6576 7.47464 18.4231 7.24565 18.1776 7.02156 17.9186 6.80263 17.642 6.58981 17.3467 6.3835 17.0379 6.18316 16.7235 5.98774 16.4088 5.79666 16.0932 5.60972 15.7733 5.42687 15.4472 5.24845 15.1154 5.07485 14.7805 4.906 14.4452 4.74155 14.1106 4.58145 13.7756 4.42577 13.4399 4.27447 13.1036 4.12746 12.7671 3.98459 12.431 3.8457 12.0955 3.71067 11.7609 3.57963 11.4269 3.45267 11.0938 3.32984 10.7622 3.21121 10.4324 3.09684 10.1042 2.98647 9.77777 2.88 9.4515 2.77711 9.12621 2.67758 8.80249 2.58137 8.48051 2.48862 8.16016 2.39944 7.84112 2.31379 7.5241 2.23148 7.21005 2.15229 6.8996 2.07585 6.59319 2.00121 6.29232 1.92726 5.99895 1.85646 5.70179 1.78956 5.40388 1.72729 5.10268 1.67244 4.78469 1.61492 4.47643 1.55854 4.17176 1.50382 3.86755 1.45062 3.56335 1.39852 3.26082 1.34823 2.95604 1.29989 2.63465 1.2534 2.32249 1.20736 2.02481 1.16417 1.72271 1.12161 1.41764 1.07921 1.11434 1.03904 0.807272 1.00023 0.50409 0.955937 0.198189 0.922555 -0.139985 -0.41177 16.7308 -20.9742 15.5105 21.8932 16.2975 -7.00333 15.4772 14.5566 15.78 5.72364 15.4596 11.0164 15.2942 11.734 15.116 12.7471 14.926 13.7538 14.725 14.6667 14.5134 15.4925 14.2928 16.2185 14.0635 16.8353 13.8313 17.3915 13.5958 17.9034 13.356 18.3907 13.1147 18.8373 12.8716 19.2316 12.6238 19.573 12.3732 19.845 12.121 20.0469 11.8683 20.201 11.6145 20.3156 11.3601 20.3958 11.1064 20.4476 10.853 20.4746 10.5985 20.4986 10.3438 20.5056 10.0896 20.4847 9.83698 20.4355 9.58681 20.3525 9.33939 20.24 9.09415 20.1045 8.85005 19.9473 8.60646 19.7708 8.36407 19.5739 8.12502 19.3544 7.88955 19.1243 7.65712 18.8901 7.42661 18.6536 7.19653 18.4077 6.97089 18.1443 6.75072 17.8621 6.53688 17.5605 6.32982 17.2449 6.12892 16.9244 5.93297 16.6048 5.74141 16.2847 5.55415 15.9606 5.37115 15.6302 5.19269 15.2939 5.01914 14.9541 4.85034 14.614 4.6859 14.275 4.52581 13.9357 4.37015 13.5956 4.21888 13.2549 4.07192 12.9141 3.92912 12.5737 3.79032 12.2343 3.65539 11.8959 3.52449 11.5578 3.39772 11.2206 3.27511 10.8848 3.15668 10.5508 3.04245 10.2184 2.93216 9.88807 2.8258 9.55786 2.72309 9.22892 2.62375 8.90184 2.52769 8.57656 2.43502 8.25283 2.34591 7.93024 2.26031 7.6097 2.178 7.29236 2.0988 6.9788 2.02244 6.66954 1.94804 6.36672 1.87432 6.07267 1.80363 5.77248 1.73674 5.47077 1.67716 5.16226 1.61999 4.84186 1.56169 4.53473 1.50496 4.22849 1.44977 3.92275 1.39613 3.61698 1.34379 3.31315 1.29304 3.00679 1.24392 2.68377 1.1971 2.36931 1.15036 2.07155 1.10601 1.76707 1.06251 1.46113 1.02004 1.15682 0.979428 0.847879 0.939554 0.543964 0.897417 0.240327 0.85767 -0.100238 -0.371089 16.7387 -22.1954 15.4695 23.1624 16.2879 -7.82176 15.4349 15.4096 15.7743 5.3843 15.4259 11.3648 15.2691 11.8909 15.0901 12.9261 14.8984 13.9455 14.6957 14.8694 14.4828 15.7054 14.2606 16.4408 14.0285 17.0674 13.7939 17.6261 13.556 18.1412 13.3138 18.6329 13.0704 19.0808 12.8261 19.4759 12.5792 19.8198 12.3291 20.0951 12.0771 20.2989 11.8243 20.4538 11.5699 20.57 11.3146 20.6511 11.06 20.7022 10.8058 20.7289 10.5502 20.7542 10.2949 20.7609 10.0405 20.7391 9.78783 20.6882 9.53773 20.6026 9.29026 20.4874 9.04479 20.35 8.80025 20.1919 8.55603 20.0151 8.31294 19.817 8.07347 19.5938 7.83773 19.36 7.60529 19.1225 7.37508 18.8839 7.14539 18.6374 6.91923 18.3704 6.69836 18.083 6.48368 17.7752 6.27585 17.4527 6.0743 17.1259 5.87775 16.8013 5.68567 16.4768 5.49811 16.1481 5.31498 15.8134 5.13651 15.4724 4.96301 15.1276 4.79427 14.7827 4.62985 14.4394 4.46975 14.0958 4.31411 13.7512 4.16289 13.4061 4.01599 13.061 3.87328 12.7165 3.73458 12.373 3.59974 12.0307 3.46899 11.6885 3.34242 11.3471 3.22003 11.0072 3.10181 10.669 2.98774 10.3325 2.87753 9.99828 2.7713 9.66409 2.66876 9.33146 2.56961 9.001 2.47369 8.67248 2.38111 8.34542 2.29206 8.01928 2.20649 7.69527 2.12416 7.37469 2.04489 7.05807 1.96851 6.74592 1.89442 6.44081 1.82102 6.14607 1.75036 5.84313 1.68356 5.53757 1.62602 5.21981 1.56675 4.90113 1.50799 4.59349 1.45086 4.28562 1.39524 3.97837 1.34129 3.67093 1.28873 3.36572 1.23747 3.05804 1.18766 2.73359 1.1398 2.41717 1.09261 2.11875 1.04804 1.81164 1.00383 1.50534 0.960585 1.20006 0.919192 0.889273 0.878112 0.585044 0.839517 0.278922 0.794325 -0.0550451 -0.330756 16.7474 -23.4616 15.4459 24.4639 16.2933 -8.6691 15.4101 16.2927 15.7835 5.01087 15.391 11.7573 15.2456 12.0363 15.0655 13.1062 14.8722 14.1388 14.6681 15.0735 14.4541 15.9193 14.2304 16.6645 13.9959 17.3019 13.7584 17.8636 13.5179 18.3817 13.2734 18.8774 13.028 19.3261 12.782 19.722 12.535 20.0669 12.2854 20.3447 12.0334 20.5509 11.7801 20.7071 11.5249 20.8253 11.2684 20.9076 11.0127 20.9579 10.7572 20.9844 10.4999 21.0115 10.2437 21.0172 9.98896 20.9938 9.73647 20.9406 9.48663 20.8525 9.23933 20.7347 8.99379 20.5955 8.74883 20.4368 8.50385 20.26 8.25981 20.0611 8.01959 19.8341 7.78307 19.5966 7.54981 19.3558 7.31875 19.1149 7.08932 18.8668 6.86425 18.5955 6.64382 18.3034 6.429 17.99 6.22074 17.661 6.01869 17.328 5.82159 16.9984 5.62908 16.6693 5.44131 16.3359 5.25816 15.9965 5.07978 15.6508 4.90641 15.3009 4.73775 14.9514 4.57334 14.6038 4.41325 14.2559 4.25764 13.9068 4.10648 13.5573 3.95966 13.2078 3.81704 12.8591 3.67845 12.5116 3.54371 12.1655 3.41311 11.8191 3.28675 11.4735 3.16458 11.1294 3.04658 10.787 2.93268 10.4464 2.82256 10.1084 2.71648 9.77017 2.61414 9.4338 2.51518 9.09995 2.4194 8.76825 2.3269 8.43792 2.23791 8.10827 2.15239 7.7808 2.07005 7.45703 1.99066 7.13746 1.91415 6.82244 1.84032 6.51464 1.76733 6.21906 1.69662 5.91384 1.63037 5.60383 1.57362 5.27655 1.51304 4.96171 1.45388 4.65265 1.39634 4.34316 1.34033 4.03438 1.28616 3.72511 1.23343 3.41844 1.18166 3.10982 1.13107 2.78418 1.08251 2.46573 1.03502 2.16624 0.989279 1.85738 0.944316 1.5503 0.900932 1.24345 0.858943 0.931262 0.816848 0.62714 0.778285 0.317486 0.733765 -0.0105249 -0.2947 16.7 -24.7478 15.3697 25.7942 16.2474 -9.54679 15.3146 17.2256 15.7405 4.58491 15.3391 12.1587 15.2143 12.1611 15.0367 13.2839 14.8438 14.3317 14.6394 15.2779 14.425 16.1338 14.2006 16.8888 13.965 17.5375 13.7242 18.1044 13.481 18.6249 13.2343 19.1241 12.9873 19.5731 12.7402 19.9691 12.4927 20.3143 12.2434 20.594 11.9913 20.8031 11.7373 20.9611 11.4808 21.0818 11.2228 21.1655 10.9657 21.215 10.7086 21.2415 10.449 21.271 10.1914 21.2748 9.93627 21.249 9.68399 21.1929 9.43452 21.1019 9.18745 20.9818 8.94187 20.8411 8.69644 20.6823 8.45055 20.5059 8.20528 20.3063 7.96393 20.0754 7.72588 19.8346 7.49064 19.591 7.25757 19.348 7.02963 19.0948 6.8061 18.819 6.58666 18.5229 6.3723 18.2043 6.1641 17.8692 5.96185 17.5302 5.76436 17.1959 5.57156 16.8621 5.38369 16.5238 5.20063 16.1796 5.02243 15.8289 4.84927 15.4741 4.68075 15.1199 4.51636 14.7682 4.35626 14.416 4.2007 14.0624 4.04961 13.7084 3.90288 13.3545 3.76038 13.0016 3.6219 12.65 3.48725 12.3001 3.35683 11.9496 3.23068 11.5996 3.10875 11.2513 2.99097 10.9048 2.87726 10.5601 2.76724 10.2184 2.66134 9.87607 2.5592 9.53594 2.46045 9.1987 2.36484 8.86386 2.27243 8.53034 2.18351 8.19718 2.09805 7.86627 2.01571 7.53937 1.93619 7.21698 1.85946 6.89917 1.78574 6.58836 1.71324 6.29156 1.64254 5.98454 1.57918 5.66719 1.52049 5.33525 1.45897 5.02324 1.39938 4.71223 1.34147 4.40108 1.28521 4.09064 1.23086 3.77946 1.17794 3.47136 1.12565 3.16211 1.07415 2.83567 1.02445 2.51543 0.976698 2.214 0.930572 1.9035 0.88527 1.59561 0.841111 1.28761 0.797983 0.974391 0.755336 0.669787 0.715603 0.357219 0.671025 0.0340534 -0.256963 16.7261 -26.0981 15.4185 27.1018 16.3354 -10.4637 15.4072 18.1538 15.8266 4.16556 15.3533 12.6319 15.2361 12.2784 15.0462 13.4737 14.8439 14.534 14.632 15.4898 14.4117 16.3541 14.1828 17.1177 13.9435 17.7768 13.6978 18.3501 13.4498 18.8729 13.1996 19.3743 12.9503 19.8224 12.702 20.2174 12.4545 20.5618 12.205 20.8435 11.9521 21.0559 11.6969 21.2163 11.4389 21.3398 11.1794 21.4251 10.9209 21.4735 10.6623 21.5 10.4002 21.5331 10.1409 21.5341 9.88515 21.5047 9.6329 21.4452 9.38354 21.3513 9.13638 21.229 8.89045 21.087 8.64438 20.9283 8.39743 20.7529 8.15083 20.5529 7.90828 20.318 7.66831 20.0746 7.43033 19.829 7.19734 19.581 6.97053 19.3216 6.74775 19.0418 6.52891 18.7417 6.31496 18.4183 6.10685 18.0773 5.90446 17.7326 5.70666 17.3937 5.51361 17.0552 5.32567 16.7117 5.14269 16.3626 4.96469 16.0069 4.79178 15.647 4.62339 15.2883 4.45898 14.9326 4.29887 14.5761 4.14334 14.2179 3.99234 13.8594 3.84572 13.5012 3.70333 13.144 3.56497 12.7884 3.4304 12.4347 3.30015 12.0798 3.17424 11.7256 3.05256 11.373 2.93501 11.0224 2.8215 10.6736 2.71158 10.3283 2.60589 9.98176 2.50399 9.63783 2.40548 9.29721 2.31006 8.95928 2.21775 8.62265 2.12892 8.28601 2.04352 7.95167 1.9612 7.62169 1.88156 7.29662 1.80453 6.9762 1.73068 6.66221 1.65869 6.36355 1.58863 6.0546 1.53059 5.72523 1.46652 5.39931 1.40454 5.08523 1.34457 4.7722 1.28639 4.45926 1.2298 4.14723 1.17526 3.83399 1.12231 3.52431 1.06984 3.21458 1.01731 2.8882 0.966563 2.56617 0.918573 2.26199 0.871092 1.95098 0.825068 1.64163 0.780505 1.33217 0.736719 1.01818 0.692915 0.713592 0.652317 0.397818 0.60749 0.078881 -0.216591 16.6524 -27.4273 15.2118 28.5424 16.1276 -11.3795 15.1266 19.1548 15.6432 3.649 15.1636 13.1114 15.0861 12.3559 14.9113 13.6486 14.7243 14.721 14.5259 15.6882 14.317 16.5629 14.0977 17.337 13.8668 18.0078 13.6272 18.5897 13.3829 19.1172 13.1364 19.6208 12.8907 20.0681 12.6462 20.462 12.4028 20.8051 12.1558 21.0906 11.9045 21.3072 11.6498 21.471 11.3917 21.5978 11.1319 21.6849 10.8732 21.7322 10.6144 21.7589 10.3508 21.7967 10.0905 21.7944 9.83436 21.7609 9.58204 21.6975 9.33246 21.6009 9.0848 21.4766 8.83823 21.3336 8.59137 21.1752 8.34344 21.0008 8.09583 20.8005 7.85276 20.561 7.61185 20.3155 7.37238 20.0684 7.13956 19.8138 6.91272 19.5484 6.69006 19.2645 6.47142 18.9604 6.25742 18.6323 6.04893 18.2858 5.84607 17.9355 5.64779 17.592 5.45446 17.2485 5.26645 16.8997 5.08355 16.5455 4.9058 16.1847 4.73323 15.8196 4.56507 15.4564 4.40072 15.097 4.24067 14.7361 4.08526 14.3733 3.93441 14.0102 3.78795 13.6476 3.64572 13.2862 3.50748 12.9266 3.37298 12.5692 3.24293 12.2099 3.11728 11.8512 2.99586 11.4944 2.87857 11.1397 2.76526 10.7869 2.65545 10.4381 2.55001 10.0872 2.44837 9.73947 2.35014 9.39544 2.25495 9.05447 2.1628 8.71479 2.07409 8.37472 1.98878 8.03699 1.90652 7.70395 1.82679 7.37634 1.74944 7.05356 1.67514 6.73651 1.60358 6.43511 1.53693 6.12126 1.47756 5.7846 1.41165 5.46523 1.34972 5.14716 1.28945 4.83246 1.23092 4.51779 1.17408 4.20407 1.11947 3.88861 1.06621 3.57757 1.01367 3.26712 0.960703 2.94117 0.908422 2.61845 0.860233 2.31017 0.812181 1.99903 0.765896 1.68792 0.720908 1.37716 0.676427 1.06266 0.632155 0.757865 0.590226 0.439748 0.544648 0.12446 -0.169678 16.8703 -28.9616 15.4806 29.9321 16.4543 -12.3531 15.4646 20.1445 15.925 3.18858 15.3726 13.6639 15.3055 12.423 15.1084 13.8457 14.9031 14.9263 14.6878 15.9036 14.4638 16.7869 14.2304 17.5704 13.9852 18.253 13.7313 18.8436 13.4722 19.3762 13.2122 19.8809 12.9546 20.3257 12.7001 20.7165 12.4491 21.0561 12.1949 21.3449 11.9364 21.5657 11.6744 21.733 11.4095 21.8627 11.1434 21.951 10.8791 21.9965 10.615 22.023 10.3454 22.0662 10.0799 22.0599 9.81944 22.0214 9.56316 21.9538 9.30982 21.8542 9.05862 21.7278 8.80883 21.5834 8.55907 21.4249 8.30853 21.2514 8.05891 21.0501 7.81491 20.805 7.57312 20.5573 7.33281 20.3088 7.0972 20.0494 6.8685 19.7771 6.64501 19.488 6.42595 19.1794 6.21084 18.8474 6.00037 18.4963 5.7957 18.1401 5.59603 17.7917 5.4018 17.4427 5.21319 17.0883 5.0298 16.7289 4.85174 16.3627 4.67894 15.9924 4.51041 15.625 4.3455 15.2619 4.18493 14.8967 4.0292 14.5291 3.87818 14.1612 3.73165 13.7942 3.58941 13.4284 3.45114 13.0649 3.31658 12.7037 3.18664 12.3398 3.06117 11.9767 2.93994 11.6156 2.82285 11.2568 2.70967 10.9001 2.59996 10.5479 2.4948 10.1924 2.39346 9.84081 2.29553 9.49338 2.20063 9.14936 2.10874 8.80668 2.02013 8.46333 1.93477 8.12235 1.85239 7.78633 1.77242 7.45632 1.69457 7.1314 1.61942 6.81167 1.54883 6.50571 1.49029 6.1798 1.42276 5.85213 1.35657 5.53142 1.29481 5.20891 1.23427 4.89301 1.17538 4.57667 1.11838 4.26107 1.0636 3.9434 1.00992 3.63125 0.956934 3.3201 0.904001 2.9941 0.850236 2.67222 0.801438 2.35897 0.751981 2.04849 0.70476 1.73514 0.6582 1.42372 0.612507 1.10835 0.566469 0.803904 0.524201 0.482017 0.478485 0.170177 -0.127636 16.4485 -30.2398 14.9646 31.416 15.9345 -13.3231 14.8912 21.1878 15.4923 2.58756 14.9105 14.2456 14.8806 12.4529 14.6909 14.0354 14.4988 15.1183 14.2965 16.106 14.0848 16.9985 13.864 17.7912 13.632 18.485 13.3906 19.085 13.1444 19.6224 12.8979 20.1274 12.6538 20.5698 12.4128 20.9574 12.1758 21.2931 11.9358 21.5849 11.69 21.8115 11.4394 21.9835 11.1853 22.1169 10.9295 22.2067 10.6764 22.2497 10.4232 22.2762 10.1622 22.3272 9.9053 22.3168 9.65324 22.2734 9.40495 22.2021 9.15887 22.1003 8.91404 21.9726 8.66997 21.8274 8.42525 21.6697 8.17879 21.4978 7.93287 21.2961 7.69361 21.0443 7.457 20.7939 7.22203 20.5437 6.98995 20.2815 6.76465 20.0024 6.54533 19.7073 6.33052 19.3942 6.11777 19.0602 5.90735 18.7067 5.70311 18.3444 5.5046 17.9902 5.31202 17.6353 5.12527 17.2751 4.94399 16.9101 4.76831 16.5384 4.59798 16.1627 4.43175 15.7912 4.26885 15.4248 4.11021 15.0553 3.95628 14.683 3.80687 14.3106 3.66176 13.9393 3.52077 13.5694 3.38356 13.2021 3.24988 12.8374 3.12092 12.4688 2.99642 12.1012 2.87611 11.736 2.75986 11.373 2.64738 11.0126 2.53814 10.6571 2.43359 10.2969 2.33286 9.94154 2.23555 9.59069 2.14135 9.24356 2.05028 8.89775 1.96239 8.55123 1.87747 8.20726 1.79554 7.86826 1.716 7.53586 1.63867 7.20873 1.56434 6.88599 1.50115 6.5689 1.43439 6.24656 1.36541 5.92111 1.29955 5.59729 1.23805 5.27041 1.17717 4.95389 1.11808 4.63576 1.06102 4.31812 1.0062 3.99822 0.952329 3.68512 0.899461 3.37297 0.846335 3.04723 0.791647 2.7269 0.742618 2.408 0.692699 2.09841 0.646789 1.78105 0.600922 1.46959 0.556123 1.15315 0.510727 0.8493 0.465724 0.527021 0.417789 0.218112 -0.0745683 17.0796 -32.0468 15.6122 32.8833 16.6245 -14.3354 15.5561 22.2562 16.061 2.08266 15.4386 14.868 15.4376 12.4539 15.233 14.24 15.0327 15.3186 14.8207 16.318 14.5999 17.2193 14.3682 18.0229 14.1216 18.7316 13.864 19.3426 13.6026 19.8838 13.3398 20.3903 13.079 20.8306 12.8214 21.215 12.568 21.5465 12.3172 21.8357 12.0591 22.0696 11.7944 22.2482 11.5254 22.3859 11.2549 22.4772 10.9863 22.5183 10.7179 22.5446 10.4406 22.6045 10.1689 22.5885 9.90359 22.5387 9.64327 22.4624 9.38569 22.3579 9.12995 22.2284 8.87522 22.0822 8.62015 21.9247 8.36418 21.7538 8.10974 21.5505 7.86266 21.2914 7.61665 21.0399 7.37129 20.7891 7.1291 20.5237 6.89471 20.2368 6.66818 19.9338 6.44744 19.615 6.22828 19.2793 6.00852 18.9265 5.79532 18.5576 5.5893 18.1962 5.39041 17.8342 5.19777 17.4677 5.01026 17.0976 4.82836 16.7203 4.65206 16.339 4.47955 15.9637 4.3101 15.5942 4.14524 15.2202 3.98573 14.8425 3.83133 14.465 3.68169 14.0889 3.53646 13.7146 3.395 13.3436 3.25703 12.9754 3.1243 12.6015 2.99629 12.2292 2.87259 11.8597 2.75303 11.4926 2.6373 11.1283 2.52551 10.7689 2.41897 10.4034 2.31606 10.0445 2.21663 9.69013 2.12074 9.33946 2.02925 8.98924 1.94143 8.63905 1.85477 8.29392 1.77017 7.95287 1.68868 7.61734 1.61279 7.28463 1.5379 6.96088 1.46128 6.64552 1.38907 6.31877 1.31925 5.99093 1.25312 5.66341 1.19118 5.33236 1.1292 5.01587 1.06902 4.69595 1.0112 4.37594 0.955787 4.05363 0.900258 3.74064 0.845889 3.42734 0.792739 3.10038 0.736715 2.78293 0.685851 2.45886 0.635001 2.14926 0.58574 1.83031 0.537452 1.51787 0.487698 1.20291 0.441224 0.895775 0.398948 0.569297 0.353097 0.263964 -0.0281455 16.0933 -33.1352 14.671 34.3057 15.7004 -15.3648 14.6406 23.3161 15.3126 1.41067 14.6195 15.5611 14.6405 12.4328 14.4211 14.4595 14.2185 15.5211 14.0054 16.5312 13.7845 17.4402 13.5557 18.2517 13.3164 18.9709 13.067 19.592 12.8113 20.1394 12.5577 20.6438 12.3082 21.0801 12.063 21.4602 11.8233 21.7862 11.5868 22.0722 11.3419 22.3145 11.0906 22.4996 10.8357 22.6407 10.5801 22.7328 10.329 22.7695 10.0768 22.7967 9.81228 22.8691 9.55359 22.8472 9.3022 22.7901 9.0564 22.7082 8.81332 22.601 8.57113 22.4706 8.32931 22.324 8.08617 22.1679 7.84012 21.9998 7.59553 21.7951 7.36075 21.5261 7.12862 21.272 6.89711 21.0206 6.6685 20.7523 6.44832 20.457 6.23589 20.1462 6.02759 19.8233 5.82111 19.4858 5.61284 19.1347 5.40796 18.7624 5.21173 18.3924 5.02286 18.0231 4.84038 17.6502 4.66408 17.274 4.49421 16.8902 4.32981 16.5034 4.16907 16.1244 4.01104 15.7523 3.85717 15.3741 3.70806 14.9916 3.56341 14.6097 3.42308 14.2293 3.28701 13.8507 3.15481 13.4758 3.02617 13.104 2.90262 12.725 2.78367 12.3481 2.66885 11.9745 2.55801 11.6034 2.45055 11.2358 2.34519 10.8743 2.24561 10.503 2.15033 10.1397 2.05875 9.78171 1.97214 9.42606 1.89136 9.07002 1.80993 8.72049 1.73048 8.37337 1.65294 8.0304 1.57664 7.69365 1.50161 7.35966 1.42627 7.03622 1.35021 6.72158 1.27863 6.39036 1.21113 6.05843 1.1482 5.72634 1.09008 5.39048 1.03155 5.0744 0.974703 4.75279 0.920485 4.43015 0.867761 4.10636 0.816143 3.79226 0.764999 3.47848 0.712346 3.15303 0.663663 2.83161 0.611849 2.51068 0.563539 2.19757 0.516024 1.87782 0.470705 1.56319 0.427244 1.24637 0.380313 0.942706 0.331199 0.618412 0.286374 0.308789 0.0311914 17.4199 -35.2795 15.7702 35.9553 16.8055 -16.4001 15.6461 24.4755 16.2048 0.851989 15.5283 16.2376 15.601 12.36 15.3845 14.6761 15.195 15.7106 14.9903 16.7359 14.7771 17.6534 14.5516 18.4771 14.3078 19.2147 14.0506 19.8492 13.7903 20.3997 13.5285 20.9056 13.2685 21.3401 13.0113 21.7175 12.7571 22.0403 12.5101 22.3192 12.2585 22.5661 11.9946 22.7634 11.7243 22.911 11.4515 23.0056 11.1799 23.0411 10.9093 23.0673 10.6226 23.1558 10.3434 23.1264 10.0743 23.0592 9.81379 22.9687 9.55667 22.8581 9.30063 22.7266 9.04438 22.5802 8.78648 22.4258 8.52683 22.2595 8.26812 22.0538 8.01827 21.776 7.76613 21.5242 7.51223 21.2745 7.26444 21.0001 7.02628 20.6952 6.79769 20.3748 6.57558 20.0454 6.354 19.7074 6.13028 19.3584 5.90661 18.9861 5.69392 18.6051 5.4904 18.2266 5.29334 17.8472 5.10117 17.4661 4.91457 17.0768 4.73422 16.6838 4.55716 16.3015 4.38245 15.927 4.21278 15.5437 4.0491 15.1553 3.89076 14.768 3.73715 14.3829 3.58771 14.0002 3.44127 13.6222 3.29761 13.2477 3.16032 12.8623 3.02799 12.4805 2.89987 12.1026 2.77573 11.7275 2.65508 11.3564 2.53979 10.9895 2.43007 10.6127 2.32296 10.2468 2.22056 9.88411 2.12632 9.5203 2.03215 9.16419 1.93931 8.81333 1.84905 8.46363 1.7614 8.11805 1.67605 7.779 1.59227 7.44344 1.50783 7.12067 1.42407 6.80533 1.34623 6.46821 1.27127 6.13339 1.20239 5.79522 1.13706 5.45582 1.06893 5.14253 1.00344 4.81827 0.941289 4.49231 0.882148 4.1655 0.820993 3.85342 0.761244 3.53823 0.702821 3.21145 0.648496 2.88593 0.591166 2.56801 0.539783 2.24895 0.486319 1.93129 0.435291 1.61422 0.377098 1.30456 0.327339 0.992464 0.278014 0.667737 0.226107 0.360696 0.0843664 15.69 -36.3696 14.3931 37.2522 15.4751 -17.4821 14.4168 25.5338 15.1405 0.128275 14.3366 17.0414 14.4172 12.2795 14.1558 14.9375 13.9428 15.9236 13.7164 16.9623 13.4841 17.8856 13.2452 18.7161 12.998 19.4619 12.7427 20.1046 12.4727 20.6698 12.2061 21.1721 11.948 21.5983 11.6972 21.9682 11.4557 22.2818 11.218 22.5569 10.9688 22.8154 10.7127 23.0195 10.4545 23.1693 10.1975 23.2625 9.94806 23.2905 9.69504 23.3203 9.42524 23.4256 9.16323 23.3884 8.90999 23.3124 8.6636 23.2151 8.4206 23.1011 8.1785 22.9687 7.93655 22.8222 7.69249 22.6698 7.44391 22.5081 7.19955 22.2982 6.96952 22.006 6.74185 21.7518 6.51384 21.5025 6.28837 21.2256 6.0721 20.9114 5.86351 20.5834 5.65724 20.2517 5.45437 19.9102 5.25437 19.5584 5.04722 19.1933 4.85049 18.8018 4.6648 18.4123 4.48632 18.0257 4.31434 17.6381 4.15041 17.2407 3.99185 16.8423 3.83589 16.4575 3.68184 16.081 3.53211 15.6935 3.38746 15.3 3.24737 14.9081 3.11174 14.5185 2.98051 14.1314 2.85329 13.7494 2.73014 13.3708 2.61259 12.9799 2.49993 12.5931 2.39156 12.211 2.28741 11.8317 2.18837 11.4555 2.10236 11.0756 2.01072 10.7044 1.92064 10.3369 1.83313 9.97162 1.74774 9.60568 1.66553 9.2464 1.58749 8.89137 1.51321 8.53792 1.44002 8.19123 1.36718 7.85183 1.29512 7.5155 1.22117 7.19461 1.1461 6.8804 1.07783 6.53648 1.01483 6.19638 0.956925 5.85313 0.90485 5.50789 0.850991 5.19639 0.79884 4.87042 0.750393 4.54076 0.702136 4.21375 0.653121 3.90243 0.603147 3.5882 0.554522 3.26008 0.507289 2.93317 0.458675 2.61662 0.413682 2.29394 0.36831 1.97666 0.326502 1.65603 0.289839 1.34122 0.244424 1.03788 0.205214 0.706947 0.159642 0.406268 0.143551 17.866 -38.3583 15.8584 39.2598 16.9326 -18.5563 15.6838 26.7826 16.3116 -0.499515 15.5647 17.7883 15.6147 12.2295 15.3835 15.1687 15.2017 16.1054 15.0047 17.1593 14.7963 18.0941 14.5769 18.9354 14.3511 19.6877 14.1203 20.3353 13.8815 20.9086 13.6334 21.4202 13.3795 21.8521 13.1207 22.2271 12.8565 22.546 12.5877 22.8257 12.3177 23.0855 12.0465 23.2907 11.7745 23.4413 11.5046 23.5324 11.238 23.5572 10.9737 23.5846 10.7024 23.6968 10.4337 23.6571 10.1645 23.5816 9.89471 23.4849 9.62687 23.3689 9.36211 23.2335 9.1001 23.0842 8.83824 22.9317 8.57705 22.7693 8.32029 22.5549 8.07569 22.2506 7.83154 21.996 7.58875 21.7453 7.34847 21.4658 7.10889 21.151 6.87131 20.821 6.63816 20.4848 6.412 20.1364 6.19403 19.7764 5.98383 19.4035 5.77822 19.0074 5.57634 18.6142 5.37755 18.2245 5.18293 17.8327 4.99315 17.4305 4.81046 17.025 4.6312 16.6367 4.45342 16.2588 4.2807 15.8662 4.11407 15.4666 3.95277 15.0694 3.79656 14.6747 3.64567 14.2823 3.50434 13.8908 3.3773 13.4979 3.23878 13.1184 3.10223 12.7297 2.96885 12.3443 2.83913 11.9614 2.71305 11.5815 2.59166 11.197 2.47439 10.8217 2.35903 10.4523 2.2461 10.0846 2.13686 9.71492 2.03236 9.3509 1.93263 8.9911 1.83661 8.63394 1.74448 8.28336 1.65688 7.93943 1.57136 7.60103 1.48311 7.28286 1.39464 6.96887 1.31392 6.61721 1.2357 6.27461 1.16706 5.92177 1.0969 5.57805 1.02039 5.27291 0.949436 4.94138 0.883325 4.60687 0.818079 4.279 0.7516 3.96891 0.686067 3.65374 0.62555 3.32059 0.563673 2.99504 0.504478 2.67582 0.447509 2.35091 0.389008 2.03516 0.334459 1.71058 0.266141 1.40954 0.210066 1.09395 0.156821 0.76019 0.0828394 0.480249 0.201286 47.5147 -48.1034 44.412 42.3625 46.9115 -21.0558 43.8316 29.8626 44.7937 -1.46167 43.1262 19.4558 44.3473 11.0084 44.482 15.0341 44.8081 15.7793 45.032 16.9353 45.1776 17.9485 45.2471 18.8659 45.2545 19.6803 45.2107 20.3791 45.1267 20.9926 44.9921 21.5549 44.8146 22.0296 44.5979 22.4438 44.3446 22.7992 44.0657 23.1046 43.7743 23.3768 43.4588 23.6062 43.1118 23.7882 42.7335 23.9107 42.3215 23.9691 41.9268 23.9793 41.5514 24.0723 41.1533 24.0553 40.7152 24.0197 40.2456 23.9545 39.7593 23.8552 39.266 23.7269 38.7733 23.5769 38.2811 23.4239 37.7842 23.2661 37.261 23.0782 36.7186 22.793 36.1635 22.5511 35.6087 22.3 35.0463 22.0283 34.4558 21.7415 33.846 21.4308 33.2247 21.1062 32.6001 20.761 31.9763 20.4002 31.3511 20.0287 30.7193 19.6392 30.0895 19.244 29.4626 18.8514 28.8401 18.4552 28.2188 18.0517 27.5972 17.6466 26.9972 17.2367 26.3973 16.8587 25.7916 16.4719 25.186 16.0722 24.5826 15.6728 23.983 15.2743 23.3883 14.877 22.7974 14.4817 22.212 14.0832 21.6316 13.6988 21.0457 13.3156 20.4571 12.933 19.8683 12.5502 19.2772 12.1726 18.6879 11.7863 18.1065 11.4031 17.5324 11.0264 16.9606 10.6564 16.3877 10.2879 15.8173 9.92128 15.2533 9.55513 14.6974 9.18982 14.1506 8.83016 13.6241 8.46598 13.1115 8.11361 12.6101 7.78421 12.0883 7.49064 11.581 7.12456 11.0563 6.79928 10.5215 6.45661 9.93112 6.1684 9.35794 5.84608 8.79304 5.50629 8.24301 5.15689 7.69468 4.82733 7.12686 4.53674 6.56469 4.21591 6.00723 3.87805 5.44504 3.55724 4.87944 3.24142 4.3151 2.91525 3.72887 2.62139 3.16709 2.27236 2.61445 1.96218 2.00715 1.70125 1.47678 1.29055 0.825888 1.13114 0.573405 12.026 -35.2974 16.2834 38.1052 16.007 -20.7794 16.8211 29.0484 19.0584 -3.69899 19.1212 19.393 19.596 10.5336 19.7827 14.8474 19.9327 15.6292 20.112 16.756 20.3213 17.7392 20.5388 18.6484 20.7364 19.4827 20.9075 20.208 21.073 20.8271 21.2298 21.398 21.3771 21.8824 21.5148 22.3061 21.6422 22.6719 21.7566 22.9902 21.8622 23.2712 21.957 23.5114 22.0329 23.7123 22.0697 23.8739 22.0797 23.9592 21.9328 24.1262 21.9021 24.103 21.8907 24.0667 21.8833 24.027 21.8647 23.9732 21.824 23.8959 21.7662 23.7847 21.7012 23.6419 21.6555 23.4696 21.6147 23.3069 21.6432 23.0497 21.5725 22.8637 21.4639 22.6596 21.331 22.433 21.1903 22.169 21.0397 21.8921 20.8725 21.598 20.6868 21.2919 20.4752 20.9725 20.2449 20.6306 20.0038 20.2697 19.7531 19.8899 19.4974 19.4997 19.232 19.1168 18.9463 18.7409 18.649 18.3491 18.3421 17.9535 18.037 17.5419 17.7487 17.147 17.4479 16.7727 17.1369 16.3832 16.8202 15.9895 16.4968 15.5977 16.1684 15.2054 15.8365 14.8136 15.5006 14.4191 15.1715 14.0279 14.8456 13.6416 14.5198 13.2588 14.1935 12.8765 13.8627 12.5034 13.5229 12.1261 13.1762 11.7497 12.828 11.3746 12.4817 11.0027 12.1331 10.6365 11.7777 10.2767 11.4145 9.91836 11.0468 9.55748 10.6774 9.19957 10.3004 8.843 9.95612 8.45785 9.57727 8.16306 9.19269 7.87521 8.81992 7.49733 8.46376 7.15543 8.10777 6.8126 7.76417 6.51199 7.41993 6.19032 7.04944 5.87677 6.69785 5.50848 6.33677 5.18842 5.97631 4.89719 5.61012 4.5821 5.22629 4.26188 4.85491 3.92862 4.47623 3.6201 4.09822 3.29325 3.72651 2.99309 3.29843 2.70044 2.89678 2.36383 2.48234 2.11569 2.1005 1.67239 1.65024 1.5814 1.04281 45.8663 -47.6188 40.1176 43.8539 44.5993 -25.2611 42.2908 31.3569 43.005 -4.41314 42.0359 20.362 42.3473 10.2223 42.6648 14.5299 42.8721 15.4219 42.9702 16.6579 42.9926 17.7168 42.9774 18.6636 42.94 19.5202 42.8542 20.2938 42.7234 20.9579 42.5605 21.5609 42.368 22.0748 42.1437 22.5304 41.8927 22.9229 41.6235 23.2594 41.3396 23.5551 41.0467 23.8043 40.7515 24.0075 40.4542 24.1712 40.1525 24.2608 39.7908 24.4879 39.3671 24.5268 38.9469 24.4868 38.5315 24.4424 38.1219 24.3828 37.7057 24.3121 37.2618 24.2285 36.7845 24.1192 36.2737 23.9803 35.7674 23.8132 35.2898 23.5273 34.8333 23.3202 34.3617 23.1312 33.8692 22.9255 33.3502 22.688 32.8204 22.4219 32.2782 22.1402 31.7313 21.8388 31.1792 21.5245 30.6137 21.1961 30.0343 20.8491 29.4452 20.479 28.8607 20.0843 28.2938 19.6837 27.7419 19.2928 27.1791 18.9119 26.6181 18.5144 26.0413 18.1187 25.4859 17.7025 24.9421 17.3165 24.393 16.9322 23.8457 16.5367 23.3012 16.1422 22.759 15.7476 22.2208 15.3517 21.6839 14.956 21.1484 14.5634 20.6159 14.174 20.0856 13.7891 19.559 13.403 19.0387 13.0237 18.5218 12.643 18.0103 12.2612 17.5018 11.8832 16.9981 11.5063 16.5025 11.1321 16.0143 10.7649 15.5199 10.4128 15.0182 10.0591 14.5042 9.71355 13.9759 9.37133 13.4246 9.00912 12.833 8.75468 12.3116 8.39661 11.7778 8.03108 11.2669 7.66638 10.7751 7.30445 10.3126 6.97442 9.84608 6.65688 9.3768 6.34605 8.87925 6.00604 8.36378 5.70389 7.88321 5.37776 7.3811 5.08421 6.88252 4.76047 6.34476 4.46638 5.84443 4.12043 5.33944 3.79823 4.85717 3.47536 4.37358 3.18403 3.89865 2.83876 3.3612 2.65313 2.871 2.16259 2.38914 2.06325 1.53176 18.3683 -40.0206 22.9367 39.2856 21.0911 -23.4155 21.6535 30.7946 23.1554 -5.91503 24.1839 19.3334 24.2107 10.1955 24.6785 14.0621 25.0777 15.0226 25.4675 16.2681 25.8301 17.3543 26.1541 18.3395 26.4495 19.2248 26.7231 20.0202 26.9633 20.7177 27.1723 21.3519 27.363 21.8842 27.5356 22.3578 27.6804 22.7781 27.8021 23.1377 27.8979 23.4593 27.9642 23.738 27.9969 23.9749 28.0002 24.1679 28.0217 24.2393 28.1118 24.3978 28.1083 24.5303 28.0471 24.5481 27.979 24.5105 27.911 24.4507 27.8479 24.3753 27.7895 24.2869 27.7187 24.1901 27.6334 24.0656 27.4769 23.9696 27.2414 23.7629 27.0584 23.5032 26.895 23.2946 26.73 23.0904 26.5385 22.8795 26.3246 22.6358 26.0916 22.3732 25.8338 22.0965 25.5576 21.8007 25.2674 21.4864 24.9624 21.1541 24.6371 20.8043 24.2899 20.4315 23.9298 20.0438 23.5714 19.6511 23.211 19.2723 22.8389 18.8865 22.461 18.4965 22.0644 18.0991 21.6904 17.6905 21.3113 17.3113 20.9249 16.9231 20.532 16.5352 20.1275 16.1521 19.7128 15.7665 19.2914 15.3775 18.8672 14.9875 18.4436 14.5977 18.0206 14.212 17.5961 13.8276 17.1695 13.4503 16.736 13.0765 16.2964 12.7008 15.8547 12.3249 15.4132 11.9478 14.9759 11.5694 14.5545 11.1863 14.1636 10.8037 13.7715 10.4513 13.3806 10.1045 12.9996 9.75231 12.5409 9.46783 12.1515 9.14405 11.7429 8.80526 11.309 8.46495 10.8619 8.11344 10.4064 7.76002 9.96796 7.41281 9.54535 7.07949 9.1361 6.7553 8.71665 6.42549 8.30884 6.1117 7.90253 5.78408 7.50992 5.47682 7.10788 5.16251 6.72069 4.85357 6.23148 4.60964 5.74696 4.28275 5.3334 3.88893 4.87153 3.6459 4.43439 3.27589 4.01324 3.07428 3.49969 2.67614 3.05041 2.51253 2.02054 39.6126 -39.0213 36.3258 42.5723 41.8196 -28.9093 40.2969 32.3173 40.4427 -6.06078 40.0833 19.6927 40.1362 10.1426 40.1956 14.0028 40.2617 14.9565 40.2729 16.2569 40.24 17.3872 40.1824 18.3971 40.096 19.3113 39.993 20.1232 39.859 20.8517 39.705 21.5059 39.5189 22.0703 39.3222 22.5545 39.1086 22.9917 38.8841 23.3621 38.654 23.6894 38.4226 23.9695 38.1857 24.2117 37.9173 24.4363 37.5912 24.5654 37.285 24.704 36.998 24.8173 36.6731 24.873 36.3197 24.8638 35.9518 24.8187 35.5717 24.7554 35.178 24.6806 34.7785 24.5896 34.3647 24.4795 33.9816 24.3528 33.574 24.1704 33.1266 23.9507 32.6951 23.7261 32.2863 23.4993 31.88 23.2858 31.4591 23.0567 31.0265 22.8058 30.5825 22.5405 30.1201 22.2631 29.6366 21.9699 29.1361 21.6547 28.6258 21.3145 28.1118 20.9454 27.5993 20.5564 27.0924 20.1579 26.5919 19.7729 26.0828 19.3956 25.5789 19.0005 25.068 18.61 24.5493 18.2093 24.0474 17.8131 23.5438 17.4267 23.0534 17.0256 22.5761 16.6294 22.1053 16.2373 21.6361 15.8467 21.1645 15.4592 20.6905 15.0716 20.2173 14.6852 19.747 14.2978 19.2833 13.914 18.8237 13.5361 18.3628 13.1617 17.8956 12.792 17.4175 12.426 16.9245 12.0624 16.4042 11.7067 15.8959 11.3119 15.429 10.9181 14.9863 10.5471 14.4585 10.2802 13.9652 9.9611 13.51 9.59928 13.0605 9.25478 12.6063 8.91914 12.1461 8.57364 11.6792 8.22693 11.2106 7.8814 10.7514 7.53867 10.3039 7.2028 9.84402 6.88537 9.39122 6.5645 8.93159 6.24371 8.47171 5.9367 7.99558 5.63864 7.50765 5.3415 7.06841 5.04888 6.65468 4.69649 6.14868 4.39492 5.71225 4.08233 5.19618 3.79196 4.76624 3.50423 4.27234 3.17005 3.84647 2.9384 2.52131 29.3613 -42.4833 27.0895 44.8441 26.0418 -27.8616 26.8965 31.4626 27.7594 -6.92367 29.2453 18.2068 29.3893 9.99863 29.9294 13.4626 30.4289 14.457 30.9368 15.749 31.39 16.9341 31.7872 17.9999 32.135 18.9634 32.4516 19.8067 32.7066 20.5967 32.9364 21.2761 33.1177 21.889 33.2692 22.403 33.388 22.8729 33.4704 23.2797 33.5181 23.6416 33.5329 23.9547 33.5309 24.2138 33.5224 24.4448 33.4891 24.5987 33.4534 24.7397 33.3969 24.8737 33.3169 24.953 33.2088 24.972 33.0839 24.9435 32.953 24.8862 32.8194 24.8142 32.682 24.7269 32.5233 24.6382 32.3068 24.5693 32.0327 24.4445 31.7324 24.251 31.425 24.0334 31.1173 23.8069 30.8186 23.5845 30.5148 23.3605 30.1977 23.1229 29.8669 22.8713 29.5221 22.608 29.1586 22.3334 28.7706 22.0426 28.3559 21.7292 27.9176 21.3837 27.4669 21.0071 27.017 20.6078 26.5799 20.21 26.1445 19.831 25.6936 19.4513 25.2478 19.0558 24.7881 18.669 24.3231 18.2781 23.8593 17.8905 23.3859 17.499 22.911 17.1044 22.4351 16.7132 21.9602 16.3215 21.4868 15.9327 21.0127 15.5457 20.5376 15.1604 20.0616 14.7738 19.5878 14.3879 19.1183 14.0056 18.6547 13.6253 18.1978 13.2489 17.7499 12.874 17.3066 12.5057 16.8762 12.137 16.4797 11.7085 16.0504 11.3474 15.554 11.0435 15.0528 10.7814 14.6014 10.4125 14.1375 10.0632 13.6836 9.70872 13.2326 9.37012 12.7767 9.02955 12.3123 8.69135 11.842 8.35165 11.3698 8.01095 10.9055 7.66706 10.455 7.33583 9.99956 7.01997 9.55874 6.68453 9.12463 6.37081 8.65903 6.10424 8.20544 5.7951 7.79466 5.45966 7.33093 5.16021 6.88624 4.83961 6.41125 4.55732 5.9697 4.23351 5.51213 3.9618 5.01493 3.66725 4.54591 3.40741 2.94459 37.722 -48.4762 36.6869 45.8791 38.5291 -29.7038 38.6168 31.3749 38.2135 -6.5203 38.0091 18.4112 38.164 9.84368 38.1742 13.4524 38.1492 14.482 38.1386 15.7596 38.1321 16.9406 38.1119 18.0201 38.0699 19.0053 38.0339 19.8427 37.9534 20.6772 37.8766 21.3529 37.7759 21.9897 37.6629 22.516 37.5473 22.9885 37.4223 23.4048 37.2913 23.7726 37.1461 24.0999 36.9818 24.3781 36.8022 24.6245 36.5957 24.8052 36.3904 24.945 36.1981 25.066 35.9931 25.158 35.7624 25.2027 35.5085 25.1974 35.2357 25.1591 34.9609 25.0889 34.6638 25.0241 34.298 25.004 33.9481 24.9192 33.6398 24.7527 33.3087 24.5821 32.9612 24.381 32.6098 24.1583 32.2619 23.9324 31.917 23.7054 31.568 23.4719 31.2108 23.2285 30.8426 22.9762 30.4599 22.7161 30.0566 22.4459 29.6274 22.1584 29.1701 21.8411 28.6916 21.4857 28.2061 21.0932 27.7321 20.6841 27.2736 20.2895 26.8104 19.9145 26.3344 19.5318 25.866 19.1374 25.3927 18.7514 24.9187 18.3646 24.44 17.9776 23.9632 17.5812 23.4896 17.1868 23.0166 16.7945 22.5446 16.4046 22.0725 16.0178 21.5986 15.6342 21.1221 15.2504 20.6444 14.8656 20.1659 14.4841 19.6858 14.1053 19.2064 13.7284 18.7257 13.3546 18.2658 12.9655 17.8658 12.537 17.4013 12.173 16.9215 11.8272 16.3803 11.5847 15.9324 11.2293 15.4654 10.8795 15.0049 10.5237 14.5412 10.1723 14.0834 9.82794 13.627 9.48598 13.1684 9.14996 12.7087 8.81134 12.2372 8.48244 11.7676 8.13667 11.2999 7.80355 10.8467 7.4732 10.3512 7.18003 9.86141 6.86056 9.42202 6.54363 8.99787 6.21925 8.56212 5.89541 8.10254 5.61978 7.64274 5.29941 7.17621 5.02386 6.70328 4.70645 6.23724 4.42784 5.81 4.09449 5.30742 3.91 3.4362 31.7971 -49.3555 31.1591 46.5171 31.1868 -29.7315 31.2884 31.2733 32.3267 -7.55858 33.727 17.0109 33.9734 9.59731 34.5524 12.8734 35.0394 13.9949 35.5014 15.2977 35.9176 16.5244 36.2757 17.662 36.5698 18.7112 36.8153 19.5972 37.0389 20.4536 37.2008 21.191 37.3141 21.8763 37.3779 22.4522 37.4104 22.956 37.4105 23.4047 37.3825 23.8006 37.3292 24.1532 37.2521 24.4552 37.1569 24.7196 37.0347 24.9274 36.897 25.0827 36.7536 25.2094 36.6015 25.3101 36.4287 25.3754 36.2268 25.3994 36.0103 25.3756 35.7631 25.3361 35.4404 25.3467 35.1241 25.3203 34.8282 25.2151 34.5139 25.0671 34.1913 24.9047 33.8507 24.7216 33.4965 24.5124 33.1409 24.2881 32.7883 24.058 32.4374 23.8228 32.0849 23.581 31.7281 23.3329 31.364 23.0803 30.9856 22.8243 30.5828 22.5612 30.1462 22.2777 29.6757 21.9562 29.1847 21.5842 28.6978 21.171 28.2335 20.7538 27.7793 20.3687 27.3132 19.9979 26.8372 19.6133 26.36 19.2286 25.8793 18.8453 25.398 18.4589 24.9038 18.0754 24.4138 17.6768 23.9274 17.2809 23.4434 16.8886 22.9617 16.4995 22.4801 16.1158 21.9968 15.7337 21.5137 15.3487 21.031 14.9668 20.553 14.5834 20.0729 14.2085 19.6178 13.8097 19.2121 13.3713 18.7414 13.0077 18.263 12.6514 17.6926 12.3977 17.2272 12.05 16.7593 11.6972 16.2916 11.3472 15.8214 10.9939 15.3551 10.6387 14.8887 10.2944 14.4247 9.94999 13.961 9.61363 13.4865 9.28584 13.0274 8.94151 12.5526 8.61155 12.0645 8.29162 11.6033 7.9344 11.0862 7.69712 10.6837 7.26307 10.2328 6.9945 9.79018 6.66187 9.32053 6.36507 8.8701 6.07021 8.41053 5.75899 7.96019 5.47421 7.50168 5.16495 7.02968 4.89985 6.56727 4.5569 6.09236 4.38491 3.87692 35.5028 -50.7583 36.2599 45.76 36.7608 -30.2324 37.7675 30.2666 36.8777 -6.66876 36.8458 17.0427 37.2055 9.23768 37.3648 12.7141 37.4668 13.893 37.5789 15.1856 37.7174 16.3859 37.8621 17.5173 38.0024 18.5709 38.1455 19.4541 38.3307 20.2685 38.4438 21.0778 38.5134 21.8068 38.5396 22.426 38.5398 22.9559 38.5188 23.4257 38.4777 23.8417 38.4149 24.2159 38.3289 24.5412 38.2258 24.8227 38.102 25.0512 37.9602 25.2245 37.8098 25.3598 37.6496 25.4703 37.4714 25.5536 37.2729 25.5979 37.0384 25.61 36.7539 25.6206 36.4284 25.6722 36.1463 25.6024 35.8668 25.4945 35.5665 25.3674 35.2526 25.2186 34.9224 25.0518 34.5745 24.8603 34.2152 24.6475 33.8522 24.421 33.4888 24.1862 33.1255 23.9443 32.7622 23.6963 32.3975 23.4449 32.0279 23.1939 31.6435 22.9457 31.2283 22.6929 30.7701 22.4143 30.2728 22.0815 29.7634 21.6804 29.2778 21.2395 28.8166 20.8299 28.3515 20.463 27.8741 20.0907 27.3951 19.7076 26.909 19.3313 26.4237 18.9443 25.9382 18.5608 25.437 18.178 24.9383 17.7796 24.4459 17.381 23.9578 16.9877 23.4724 16.6012 22.9825 16.2237 22.491 15.8401 22.0022 15.4556 21.5085 15.0771 21.0529 14.664 20.6338 14.2289 20.1466 13.8584 19.6582 13.4961 19.0768 13.2327 18.5904 12.8841 18.1188 12.5216 17.6464 12.1695 17.1735 11.8201 16.6947 11.4727 16.2157 11.1177 15.7443 10.7658 15.2718 10.4225 14.8143 10.0711 14.3624 9.73773 13.8535 9.45043 13.3944 9.07066 12.9761 8.70988 12.4585 8.4521 12.0115 8.14403 11.5043 7.77028 11.0508 7.44799 10.5709 7.14185 10.1231 6.81284 9.67428 6.51903 9.20265 6.23062 8.74697 5.92989 8.27163 5.64029 7.81968 5.3518 7.32772 5.04887 6.83364 4.87899 4.31964 33.1894 -47.1619 34.5356 44.4139 35.0202 -30.7171 34.9558 30.331 35.8681 -7.58108 36.8788 16.032 37.0719 9.0446 37.5457 12.2403 37.8772 13.5614 38.1465 14.9163 38.3884 16.1439 38.6059 17.2998 38.8052 18.3715 38.9941 19.2652 39.1757 20.0869 39.3097 20.9438 39.4024 21.7141 39.4475 22.3809 39.4584 22.945 39.4449 23.4391 39.4125 23.8741 39.3594 24.2691 39.2848 24.6159 39.1925 24.915 39.0833 25.1604 38.9545 25.3533 38.8078 25.5066 38.6485 25.6296 38.476 25.7261 38.2832 25.7907 38.0514 25.8418 37.7186 25.9534 37.4525 25.9383 37.192 25.8629 36.9112 25.7754 36.6178 25.6608 36.3096 25.5268 35.9865 25.3749 35.6455 25.2013 35.2885 25.0044 34.9214 24.7881 34.5493 24.5582 34.1753 24.3183 33.8008 24.0708 33.4277 23.818 33.0564 23.5652 32.6831 23.3189 32.2927 23.0833 31.8615 22.8455 31.3799 22.5631 30.8611 22.1992 30.3529 21.7477 29.8799 21.3029 29.4137 20.9293 28.9353 20.5691 28.4494 20.1935 27.9671 19.8136 27.4737 19.4377 26.9805 19.054 26.4885 18.67 25.9795 18.2886 25.4666 17.8938 24.9646 17.4897 24.4727 17.0931 23.9854 16.7109 23.4894 16.3361 22.9885 15.9565 22.5546 15.511 22.1147 15.1039 21.612 14.7316 21.1077 14.3627 20.513 14.0908 20.0071 13.7387 19.5209 13.3703 19.0343 13.0082 18.5559 12.6479 18.082 12.2941 17.6067 11.948 17.1217 11.6027 16.6387 11.2488 16.1627 10.8985 15.6623 10.5715 15.2041 10.1959 14.8075 9.84697 14.2557 9.6225 13.711 9.25452 13.2843 8.87881 12.8733 8.55501 12.3873 8.25632 11.9051 7.9302 11.4286 7.61838 10.9314 7.31001 10.4731 6.9773 10.0133 6.69042 9.56408 6.37916 9.10211 6.10227 8.62371 5.8302 8.12343 5.54914 7.65593 5.3465 4.78306 38.3253 -51.4299 35.6613 47.0778 36.6941 -31.7499 37.7795 29.2456 37.4964 -7.29803 37.6908 15.8376 38.0914 8.644 38.4085 11.9233 38.7329 13.237 39.0118 14.6374 39.2618 15.894 39.4909 17.0708 39.7196 18.1428 39.9203 19.0646 40.084 19.9232 40.229 20.7989 40.3388 21.6042 40.401 22.3187 40.4225 22.9236 40.4158 23.4458 40.3918 23.898 40.3512 24.3097 40.2893 24.6778 40.212 24.9922 40.1164 25.256 39.9966 25.473 39.8554 25.6478 39.696 25.789 39.5253 25.8967 39.3237 25.9923 39.0021 26.1634 38.7612 26.1944 38.5259 26.1737 38.2639 26.1249 37.9918 26.0475 37.7038 25.9488 37.4021 25.8285 37.0859 25.6911 36.7529 25.5343 36.4022 25.3551 36.0367 25.1536 35.661 24.9339 35.2786 24.7007 34.8921 24.4573 34.5035 24.2066 34.1159 23.9528 33.7279 23.7069 33.3323 23.4789 32.9169 23.261 32.4758 23.0042 31.9874 22.6876 31.4713 22.2637 30.9831 21.7912 30.5138 21.3985 30.0372 21.0457 29.5475 20.6832 29.0545 20.3066 28.5678 19.9244 28.0682 19.5536 27.5661 19.1721 27.0665 18.7882 26.5554 18.4049 26.0256 18.0195 25.5151 17.6036 25.0076 17.2185 24.5168 16.8268 24.1079 16.3654 23.6419 15.9771 23.1316 15.6142 22.6126 15.2505 22.0023 14.9731 21.4815 14.6115 20.9825 14.2377 20.4839 13.8689 19.9892 13.5029 19.4948 13.1422 19.0039 12.785 18.5238 12.4281 18.0408 12.0857 17.5389 11.7507 17.0467 11.3907 16.5943 11.0239 16.1144 10.6759 15.5711 10.3903 15.1511 10.0424 14.7277 9.67792 14.2134 9.39314 13.7148 9.05361 13.24 8.73117 12.7569 8.41329 12.2878 8.0875 11.8134 7.78435 11.3277 7.46303 10.8508 7.16729 10.3804 6.84961 9.94291 6.53972 9.41014 6.36296 8.94643 6.01286 8.47531 5.81762 5.242 36.7122 -55.2717 37.8453 45.9447 37.0741 -30.9786 37.686 28.6336 37.9946 -7.60654 38.6717 15.1604 38.8862 8.42951 39.2615 11.548 39.5898 12.9087 39.8864 14.3407 40.1468 15.6336 40.3848 16.8328 40.6261 17.9015 40.8414 18.8492 41.011 19.7536 41.167 20.6428 41.292 21.4791 41.3689 22.2418 41.3994 22.8932 41.3987 23.4464 41.3849 23.9118 41.3601 24.3345 41.3197 24.7182 41.2592 25.0527 41.1753 25.3399 41.0663 25.582 40.9302 25.7839 40.7771 25.9421 40.5959 26.0779 40.2911 26.297 40.0742 26.3804 39.8572 26.4113 39.62 26.4108 39.3685 26.3764 39.1001 26.3159 38.8179 26.231 38.5215 26.1248 38.2114 26.0013 37.8856 25.8601 37.5422 25.6985 37.1816 25.5143 36.8065 25.309 36.4204 25.0868 36.0252 24.8524 35.622 24.6098 35.2051 24.3697 34.7549 24.1571 34.289 23.9448 33.8764 23.6736 33.4796 23.4011 33.0693 23.0978 32.6031 22.7299 32.1126 22.2817 31.6424 21.8687 31.1712 21.517 30.6849 21.1694 30.1854 20.8062 29.685 20.4248 29.1934 20.0453 28.6918 19.6737 28.1801 19.2998 27.6679 18.9171 27.1564 18.531 26.6139 18.1461 26.1427 17.6896 25.7165 17.2531 25.2093 16.8726 24.6992 16.4872 24.1843 16.1291 23.5644 15.8705 23.0306 15.5069 22.5161 15.126 22.0037 14.7501 21.4965 14.3761 20.9926 14.0068 20.4967 13.6381 20.0002 13.2814 19.4942 12.9341 19.0147 12.5652 18.5554 12.21 18.0933 11.8528 17.6352 11.482 17.0926 11.2185 16.6315 10.8513 16.1235 10.5504 15.6048 10.1966 15.141 9.85694 14.6574 9.53724 14.1715 9.21702 13.6796 8.90517 13.1773 8.58989 12.6859 8.27568 12.2024 7.94658 11.7128 7.65683 11.2504 7.31206 10.7768 7.01337 10.2729 6.86683 9.80017 6.48557 9.35715 6.26063 5.75627 36.4422 -56.6523 37.4932 44.8937 38.0377 -31.523 38.7677 27.9036 38.9956 -7.83442 39.4883 14.6678 39.7781 8.13966 40.1409 11.1852 40.4762 12.5735 40.7867 14.0302 41.0584 15.3618 41.3008 16.5903 41.5371 17.6652 41.7666 18.6197 41.9532 19.5671 42.121 20.4749 42.2603 21.3398 42.3485 22.1536 42.3878 22.854 42.3958 23.4384 42.3973 23.9104 42.3973 24.3345 42.3771 24.7384 42.3339 25.096 42.2641 25.4097 42.1631 25.6831 42.0387 25.9083 41.8833 26.0976 41.5961 26.365 41.3942 26.499 41.1948 26.5797 40.9809 26.6253 40.7513 26.6404 40.5041 26.6236 40.2412 26.5787 39.9636 26.5086 39.672 26.4164 39.367 26.3063 39.0477 26.1794 38.7115 26.0346 38.3571 25.8688 37.985 25.6811 37.5978 25.474 37.1968 25.2534 36.7747 25.032 36.3013 24.843 35.8092 24.6492 35.3711 24.3829 34.9563 24.0884 34.5613 23.7961 34.1576 23.5015 33.7463 23.1412 33.2723 22.7557 32.7995 22.3415 32.3334 21.983 31.8567 21.6461 31.3605 21.3024 30.8509 20.9345 30.3421 20.5541 29.8409 20.1748 29.3465 19.7943 28.8305 19.4331 28.316 19.0456 27.8977 18.5644 27.4171 18.1702 26.8733 17.7968 26.3348 17.4111 25.7886 17.0334 25.159 16.7586 24.6124 16.4171 24.0932 16.0261 23.5737 15.6454 23.0559 15.2679 22.5413 14.8907 22.0258 14.5222 21.504 14.16 21.0067 13.7787 20.5413 13.3995 20.0574 13.0492 19.6219 12.6455 19.09 12.3847 18.5454 12.0266 18.0611 11.7028 17.5489 11.3636 17.0727 11.0266 16.5714 10.6979 16.0657 10.3626 15.576 10.027 15.0934 9.69961 14.6182 9.38038 14.1374 9.07068 13.6398 8.77327 13.136 8.45033 12.6179 8.175 12.1169 7.81307 11.62 7.51024 11.166 7.32086 10.6462 7.00536 10.2334 6.67341 6.26028 37.4153 -56.4348 39.3019 43.0071 39.0371 -31.2582 39.6044 27.3364 39.8102 -8.04023 40.4029 14.075 40.6837 7.85886 41.0545 10.8144 41.3911 12.2369 41.7127 13.7087 41.9978 15.0768 42.248 16.3401 42.4861 17.4272 42.7079 18.3979 42.9037 19.3712 43.0737 20.3049 43.2126 21.2009 43.3054 22.0608 43.3639 22.7955 43.4006 23.4017 43.4289 23.8821 43.4594 24.304 43.4646 24.7331 43.4389 25.1217 43.3778 25.4707 43.2917 25.7692 43.172 26.028 42.9104 26.3592 42.7259 26.5495 42.5461 26.6787 42.3522 26.7737 42.142 26.8355 41.9164 26.866 41.6743 26.8657 41.4158 26.8372 41.142 26.7824 40.854 26.7044 40.5532 26.607 40.2392 26.4935 39.9095 26.3643 39.561 26.2173 39.1926 26.0494 38.8047 25.8619 38.3912 25.667 37.9191 25.5041 37.4314 25.3307 36.9871 25.0935 36.5499 24.82 36.1155 24.5228 35.697 24.2147 35.2872 23.9113 34.8676 23.5608 34.4469 23.1764 33.9873 22.8012 33.5263 22.444 33.0594 22.113 32.5714 21.7903 32.0639 21.442 31.544 21.074 31.0233 20.6955 30.5104 20.3072 30.035 19.9085 29.6311 19.4494 29.1139 19.0816 28.5829 18.7013 28.0523 18.3274 27.5062 17.9573 26.8751 17.6644 26.3035 17.3303 25.7627 16.9579 25.2162 16.5726 24.6781 16.1835 24.1477 15.7984 23.617 15.4214 23.1084 15.0308 22.6231 14.6452 22.1301 14.2718 21.6671 13.8625 21.2103 13.5059 20.6271 13.2288 20.0969 12.9148 19.5787 12.5448 19.0728 12.2087 18.5698 11.8665 18.0628 11.5336 17.5638 11.1969 17.0605 10.8659 16.5517 10.5358 16.0478 10.2035 15.554 9.87419 15.0723 9.5524 14.5971 9.24848 14.1109 8.93654 13.6205 8.66535 13.0848 8.34878 12.589 8.00608 12.1463 7.76354 11.6541 7.49755 11.1822 7.14532 6.74365 35.9681 -51.6106 38.666 40.3092 39.7327 -32.3249 40.4447 26.6244 40.7094 -8.30493 41.3199 13.4644 41.6203 7.55846 41.9983 10.4365 42.3377 11.8974 42.6654 13.3809 42.963 14.7792 43.2293 16.0738 43.4835 17.1729 43.6783 18.2032 43.8579 19.1916 43.9908 20.172 44.0664 21.1254 44.1765 21.9507 44.289 22.6829 44.3974 23.2932 44.4789 23.8006 44.5466 24.2363 44.5767 24.7031 44.5636 25.1348 44.522 25.5123 44.4425 25.8487 44.215 26.2555 44.0621 26.5121 43.911 26.7006 43.7377 26.852 43.5473 26.9641 43.341 27.0417 43.1189 27.0881 42.8808 27.1038 42.6262 27.0918 42.3553 27.0532 42.07 26.9897 41.7714 26.9056 41.4603 26.8046 41.1343 26.6902 40.7888 26.5628 40.4184 26.4198 40.0138 26.2666 39.5432 26.1376 39.0804 25.9669 38.6539 25.7572 38.2296 25.5179 37.7944 25.2552 37.3474 24.9698 36.8979 24.6641 36.4591 24.3502 36.0103 24.0095 35.5858 23.601 35.1665 23.2204 34.7254 22.8851 34.2914 22.547 33.8292 22.2525 33.3349 21.9363 32.817 21.5919 32.2777 21.2347 31.7443 20.8405 31.2894 20.3634 30.8071 19.9317 30.2938 19.595 29.7564 19.2386 29.206 18.8778 28.6028 18.5604 28.0397 18.2275 27.5033 17.8666 26.9654 17.4958 26.4197 17.1183 25.8682 16.735 25.3192 16.3474 24.7962 15.9444 24.311 15.516 23.8358 15.1205 23.3642 14.7434 22.8445 14.3822 22.2138 14.1366 21.6717 13.7709 21.1708 13.4158 20.6432 13.0724 20.131 12.7209 19.6156 12.3819 19.1034 12.0459 18.5869 11.7133 18.075 11.3778 17.5638 11.047 17.0508 10.7166 16.5407 10.3842 16.0408 10.0523 15.5566 9.73261 15.0803 9.41291 14.598 9.14762 14.0694 8.87739 13.5363 8.53923 13.1049 8.19494 12.6805 7.9219 12.2152 7.61058 7.25314 41.6713 -55.3669 39.2758 42.7047 40.3816 -33.4307 41.2797 25.7262 41.5595 -8.58476 42.2366 12.7873 42.5703 7.22477 42.9685 10.0383 43.3153 11.5506 43.6456 13.0506 43.9518 14.4729 44.2229 15.8028 44.4685 16.9273 44.6509 18.0207 44.7687 19.0739 44.8766 20.0641 45.0214 20.9805 45.1719 21.8003 45.3036 22.5513 45.4308 23.166 45.5555 23.6759 45.6567 24.135 45.7066 24.6532 45.7186 25.1228 45.6841 25.5468 45.4982 26.0347 45.3892 26.3645 45.2759 26.6253 45.1319 26.8447 44.9672 27.0167 44.7822 27.1491 44.5795 27.2445 44.3607 27.3069 44.1259 27.3386 43.8746 27.3432 43.6067 27.3211 43.3232 27.2732 43.0254 27.2034 42.714 27.1161 42.3868 27.0174 42.0358 26.9138 41.6354 26.8203 41.1737 26.7283 40.7431 26.5682 40.3335 26.3765 39.9276 26.1631 39.5141 25.9314 39.0878 25.6815 38.6443 25.4133 38.1831 25.1254 37.7115 24.8218 37.2247 24.4964 36.7151 24.1106 36.2393 23.6962 35.8408 23.2836 35.4293 22.9585 35.0072 22.6745 34.556 22.3875 34.0703 22.0776 33.5624 21.7426 33.0302 21.3728 32.501 20.8926 31.8965 20.5362 31.3123 20.1792 30.7533 19.7977 30.2125 19.4186 29.7005 19.0723 29.2035 18.7246 28.6929 18.3772 28.1682 18.0206 27.6314 17.6551 27.0884 17.278 26.5413 16.8945 26.0767 16.409 25.5982 15.9945 25.1006 15.6181 24.4649 15.3791 23.8278 15.0193 23.3234 14.6409 22.7963 14.298 22.2674 13.9447 21.7455 13.5943 21.2205 13.246 20.7035 12.8989 20.1898 12.5595 19.6763 12.2268 19.1568 11.8973 18.6341 11.5698 18.107 11.2437 17.5746 10.9166 17.0414 10.5856 16.5187 10.2553 16.0123 9.91929 15.5119 9.64803 15.0049 9.38436 14.4801 9.06408 13.9786 8.69641 13.5721 8.32835 13.1316 8.05109 7.71358 40.2131 -58.9682 41.8037 41.1141 41.1971 -32.8241 42.2504 24.673 42.5072 -8.84155 43.1888 12.1057 43.5415 6.87213 43.9592 9.62057 44.3212 11.1886 44.6469 12.7249 44.9336 14.1862 45.1704 15.566 45.38 16.7178 45.5582 17.8424 45.7248 18.9074 45.8966 19.8923 46.0709 20.8062 46.2343 21.6369 46.3792 22.4063 46.505 23.0403 46.6755 23.5054 46.7901 24.0205 46.865 24.5782 46.885 25.1029 46.7503 25.6814 46.6935 26.0915 46.6243 26.4337 46.5197 26.7299 46.3906 26.9737 46.2352 27.1722 46.0573 27.327 45.8594 27.4423 45.6442 27.5222 45.4125 27.5703 45.1645 27.5912 44.9003 27.5853 44.6198 27.5537 44.3231 27.5001 44.0099 27.4293 43.6767 27.3506 43.2998 27.2906 42.8537 27.2664 42.4427 27.1393 42.0448 26.9661 41.6485 26.7727 41.2481 26.5636 40.8401 26.3394 40.4211 26.1004 39.9877 25.8467 39.5365 25.5766 39.0672 25.2911 38.5729 24.9907 38.0319 24.6516 37.4605 24.2676 36.8932 23.8509 36.3741 23.4777 35.898 23.1506 35.4372 22.8483 34.9707 22.5441 34.5022 22.2111 34.1083 21.7667 33.606 21.3949 33.0879 21.0543 32.5598 20.7073 32.0133 20.3441 31.4652 19.9667 30.9379 19.5997 30.4198 19.2427 29.9079 18.8892 29.3894 18.5391 28.8657 18.1788 28.3177 17.826 27.8337 17.3785 27.3658 16.8769 26.768 16.5923 26.107 16.2791 25.5729 15.9132 25.0454 15.5469 24.4915 15.1948 23.9572 14.8324 23.4224 14.4795 22.8878 14.1289 22.3536 13.7802 21.8197 13.4328 21.2914 13.0877 20.7707 12.7476 20.2553 12.4127 19.7415 12.0836 19.2257 11.7595 18.7042 11.4381 18.1713 11.1185 17.6316 10.795 17.0627 10.4882 16.5231 10.1877 16.0698 9.83766 15.6276 9.50619 15.1585 9.16552 14.6474 8.83948 14.1245 8.57404 8.17515 39.9498 -59.9732 41.3142 39.7498 42.0045 -33.5144 42.9281 23.7493 43.388 -9.30146 44.1394 11.3543 44.5364 6.47514 44.9724 9.18461 45.3384 10.8225 45.6384 12.425 45.7999 14.0248 46.0605 15.3054 46.3308 16.4475 46.5668 17.6064 46.7794 18.6948 46.9801 19.6916 47.172 20.6143 47.3433 21.4655 47.5051 22.2445 47.6507 22.8946 47.831 23.325 47.9672 23.8843 48.0361 24.5093 47.9592 25.1798 47.9619 25.6788 47.9422 26.1111 47.8851 26.4908 47.8003 26.8148 47.6846 27.0893 47.5416 27.3151 47.3731 27.4955 47.182 27.6334 46.9714 27.7327 46.7433 27.7984 46.4992 27.8353 46.2397 27.8448 45.9642 27.8292 45.6717 27.7926 45.3593 27.7417 45.0177 27.6922 44.5936 27.7147 44.1862 27.6738 43.7977 27.5278 43.4083 27.3554 43.0152 27.1659 42.6163 26.9624 42.2097 26.7459 41.7933 26.5169 41.3647 26.2753 40.9218 26.0195 40.4647 25.7481 39.9926 25.4628 39.49 25.1542 38.9442 24.8134 38.3622 24.4329 37.7936 24.0463 37.2601 23.6841 36.758 23.3504 36.281 23.0211 35.8822 22.6099 35.3997 22.2492 34.892 21.9026 34.3845 21.5618 33.8718 21.2201 33.345 20.8708 32.8035 20.5082 32.2612 20.142 31.7251 19.7788 31.1964 19.4178 30.672 19.0635 30.1318 18.719 29.6117 18.3461 29.1671 17.823 28.4923 17.5517 27.895 17.1896 27.3641 16.81 26.8176 16.4597 26.2661 16.0984 25.7222 15.7386 25.1716 15.383 24.6248 15.0263 24.0806 14.6731 23.5382 14.3226 22.9968 13.9742 22.4561 13.6284 21.9179 13.2857 21.3842 12.9464 20.8556 12.6122 20.332 12.283 19.8092 11.9609 19.2876 11.6402 18.7548 11.3278 18.2048 11.0381 17.7253 10.6672 17.2048 10.3581 16.6687 10.0423 16.1446 9.68961 15.6474 9.33674 15.1454 9.07602 8.67635 41.1267 -59.3757 43.347 37.5295 43.1766 -33.344 43.9504 22.9754 44.3028 -9.6538 45.1097 10.5474 45.5449 6.03996 45.9878 8.74166 46.3205 10.4898 46.4895 12.256 46.7895 13.7248 47.1129 14.9819 47.3963 16.1641 47.6556 17.3471 47.8933 18.4571 48.1114 19.4735 48.3173 20.4084 48.4999 21.2829 48.6718 22.0726 48.8967 22.6697 49.0837 23.1381 49.1458 23.8222 49.1228 24.5323 49.1871 25.1156 49.2202 25.6456 49.216 26.1154 49.1813 26.5255 49.1135 26.8826 49.0149 27.1879 48.8864 27.4437 48.73 27.6519 48.548 27.8155 48.3436 27.937 48.1202 28.0218 47.8803 28.0751 47.6251 28.1001 47.3549 28.0994 47.0672 28.0803 46.7603 28.0487 46.3892 28.0633 45.9663 28.1376 45.5894 28.0507 45.2098 27.9075 44.8246 27.7406 44.433 27.5575 44.0344 27.361 43.628 27.1524 43.2123 26.9325 42.7856 26.702 42.3453 26.4598 41.8899 26.2036 41.4194 25.9333 40.9288 25.6448 40.4102 25.332 39.8579 24.9853 39.2909 24.6133 38.7353 24.2396 38.2146 23.8712 37.7866 23.449 37.3117 23.0848 36.8092 22.7517 36.2916 22.4202 35.77 22.0834 35.2452 21.7449 34.7136 21.4024 34.1723 21.0496 33.6259 20.6884 33.0776 20.3271 32.5293 19.9661 32 19.5928 31.4836 19.2354 30.9329 18.8968 30.3016 18.4544 29.7622 18.091 29.2202 17.7316 28.6554 17.3748 28.1028 17.0124 27.5465 16.6546 26.9895 16.2957 26.4343 15.9382 25.8784 15.5822 25.3235 15.228 24.7702 14.8759 24.2182 14.5262 23.6684 14.1782 23.121 13.8331 22.5766 13.4908 22.0367 13.1521 21.5007 12.8191 20.9704 12.4912 20.4279 12.1827 19.8351 11.9206 19.3047 11.5684 18.7821 11.1898 18.2743 10.8659 17.7631 10.5535 17.2347 10.218 16.7044 9.86703 16.2176 9.56287 9.16312 39.6594 -53.8158 42.6015 34.5874 43.8962 -34.6387 44.8359 22.0358 45.2462 -10.0641 46.0785 9.71504 46.5651 5.55332 46.9411 8.36566 47.1791 10.2518 47.5456 11.8896 47.8944 13.376 48.2335 14.6428 48.5278 15.8698 48.8025 17.0724 49.0586 18.201 49.2928 19.2393 49.5163 20.1849 49.7238 21.0755 49.9666 21.8297 50.2423 22.3941 50.2448 23.1355 50.2778 23.7892 50.3871 24.4231 50.4611 25.0416 50.5081 25.5985 50.5254 26.0981 50.5093 26.5416 50.4611 26.9308 50.3808 27.2683 50.2692 27.5552 50.1278 27.7934 49.9579 27.9854 49.7618 28.1331 49.5444 28.2393 49.3087 28.3108 49.0563 28.3524 48.7883 28.3675 48.5038 28.3647 48.1797 28.3728 47.7497 28.4933 47.3903 28.497 47.0366 28.4044 46.6694 28.2748 46.2903 28.1196 45.9014 27.9464 45.5037 27.7587 45.0975 27.5586 44.6824 27.3475 44.2579 27.1265 43.8225 26.8952 43.3738 26.6522 42.9103 26.3968 42.4284 26.1267 41.9234 25.837 41.3904 25.5182 40.8365 25.1672 40.293 24.7831 39.8241 24.3401 39.3174 23.9557 38.7908 23.6114 38.2642 23.2782 37.7378 22.9467 37.2091 22.612 36.679 22.275 36.1432 21.9382 35.5969 21.5959 35.043 21.2422 34.4896 20.8805 33.9393 20.5164 33.3697 20.1624 32.7511 19.8541 32.254 19.3938 31.6945 19.0139 31.1299 18.6557 30.5668 18.2947 30.0067 17.9349 29.4425 17.5766 28.8792 17.2179 28.3145 16.8604 27.7492 16.5035 27.184 16.1474 26.6192 15.7927 26.0553 15.4399 25.4926 15.0889 24.9307 14.7402 24.3702 14.3936 23.8117 14.0494 23.2561 13.7076 22.7072 13.368 22.1526 13.0458 21.5595 12.7758 21.0173 12.4628 20.4657 12.12 19.9007 11.7548 19.3503 11.4164 18.8006 11.1032 18.2329 10.7857 17.6501 10.4498 17.0911 10.1219 9.59429 46.2409 -57.7178 43.3205 37.5077 44.6003 -35.9185 45.7649 20.8712 46.1734 -10.4725 47.0365 8.85192 47.5303 5.05954 47.83 8.06587 48.258 9.82382 48.6674 11.4803 49.0468 12.9965 49.395 14.2946 49.7064 15.5585 49.9978 16.781 50.274 17.9248 50.5327 18.9805 50.7839 19.9337 51.0978 20.7616 51.3564 21.5711 51.4033 22.3473 51.5051 23.0337 51.6146 23.6797 51.6988 24.3388 51.7787 24.9617 51.8375 25.5397 51.8695 26.0661 51.8719 26.5392 51.8429 26.9598 51.782 27.3292 51.689 27.6482 51.5647 27.9176 51.4099 28.1402 51.2248 28.3182 51.0147 28.4494 50.7832 28.5424 50.5318 28.6037 50.2628 28.6365 49.9593 28.6683 49.5424 28.7896 49.1815 28.8542 48.8615 28.817 48.5265 28.7394 48.173 28.6283 47.8028 28.4898 47.419 28.3301 47.0237 28.154 46.618 27.9643 46.2028 27.7628 45.7785 27.5507 45.3453 27.3284 44.902 27.0956 44.4467 26.8521 43.9763 26.5971 43.4859 26.3274 42.97 26.0342 42.4388 25.6984 41.9527 25.2692 41.4361 24.8567 40.8894 24.5025 40.3409 24.1599 39.7964 23.8226 39.2529 23.4902 38.7082 23.1568 38.1672 22.816 37.6269 22.4785 37.0886 22.1342 36.5518 21.779 35.9846 21.4478 35.3111 21.1899 34.7508 20.7227 34.2811 20.3238 33.72 19.9549 33.1396 19.5943 32.5648 19.2305 31.989 18.8704 31.4136 18.5103 30.8393 18.1509 30.265 17.7922 29.6911 17.4343 29.1173 17.0773 28.5434 16.7214 27.9693 16.3668 27.3958 16.0134 26.823 15.6617 26.2512 15.312 25.6795 14.9653 25.1078 14.6211 24.5335 14.2819 23.9411 13.9603 23.3002 13.6867 22.7146 13.3615 22.1527 13.0247 21.587 12.6857 21.0019 12.3399 20.423 11.9952 19.8663 11.6599 19.3183 11.3337 18.766 11.0021 18.1793 10.7086 10.1726 44.8645 -61.6267 46.3856 35.9866 45.6202 -35.1531 46.8772 19.6141 47.2201 -10.8154 48.0364 8.03563 48.4258 4.67015 48.9183 7.5734 49.3882 9.35391 49.8312 11.0373 50.2332 12.5945 50.5948 13.9329 50.9254 15.2278 51.237 16.4694 51.5363 17.6255 51.838 18.6789 52.1997 19.572 52.4573 20.504 52.611 21.4173 52.7748 22.1835 52.8901 22.9183 52.9721 23.5976 53.063 24.248 53.1429 24.8818 53.2081 25.4745 53.2521 26.022 53.27 26.5214 53.2591 26.9706 53.2175 27.3709 53.1435 27.7221 53.0375 28.0236 52.9002 28.2775 52.7281 28.4903 52.5255 28.6519 52.3005 28.7674 52.0448 28.8595 51.7517 28.9296 51.3446 29.0754 50.9805 29.1537 50.6806 29.1541 50.3786 29.119 50.0609 29.0571 49.7217 28.9674 49.3624 28.8492 48.9861 28.7064 48.5954 28.5447 48.1919 28.3678 47.777 28.1776 47.3524 27.9753 46.9191 27.7617 46.4778 27.5369 46.0284 27.3016 45.569 27.0564 45.0961 26.8003 44.6037 26.5266 44.099 26.2031 43.6072 25.761 43.0686 25.3953 42.5138 25.0573 41.9541 24.7197 41.3967 24.38 40.843 24.0439 40.291 23.7088 39.7445 23.3624 39.1898 23.0332 38.5599 22.7642 37.9042 22.4346 37.2888 22.0632 36.8853 21.5934 36.3712 21.2369 35.8105 20.8845 35.231 20.5344 34.6484 20.1768 34.0607 19.8183 33.4731 19.458 32.8856 19.0979 32.2986 18.7379 31.7124 18.3784 31.1269 18.0197 30.5423 17.6619 29.9582 17.3055 29.3744 16.9505 28.7909 16.5969 28.2079 16.2447 27.625 15.895 27.0437 15.5466 26.4581 15.2067 25.8481 14.8919 25.1942 14.6142 24.5981 14.2828 24.021 13.9387 23.4477 13.5979 22.8747 13.2588 22.2964 12.9182 21.7142 12.5774 21.1348 12.2394 20.5603 11.9082 19.9901 11.5722 19.4153 11.2834 10.7539 44.571 -62.706 46.0407 34.5169 46.5947 -35.7071 47.6311 18.5776 48.2529 -11.4372 49.0864 7.20211 49.5339 4.22264 50.0602 7.04713 50.5563 8.85778 51.0238 10.5698 51.4509 12.1674 51.8292 13.5546 52.1819 14.8752 52.5175 16.1338 52.8535 17.2895 53.2411 18.2913 53.5675 19.2456 53.7851 20.2865 54.0024 21.2 54.1563 22.0296 54.2861 22.7885 54.3866 23.4971 54.475 24.1596 54.5575 24.7993 54.6265 25.4056 54.6781 25.9704 54.7075 26.492 54.7117 26.9664 54.6882 27.3945 54.6318 27.7785 54.5414 28.114 54.423 28.3959 54.2688 28.6445 54.0704 28.8503 53.8374 29.0004 53.5501 29.1468 53.1538 29.3259 52.8123 29.4169 52.5188 29.4473 52.2339 29.4389 51.9443 29.4087 51.6408 29.3606 51.3165 29.2917 50.9696 29.196 50.603 29.0731 50.2192 28.9285 49.8203 28.7668 49.408 28.5899 48.9841 28.3992 48.5502 28.1955 48.108 27.9791 47.6592 27.7504 47.2052 27.5105 46.7458 27.2597 46.2775 26.9948 45.7909 26.6897 45.2715 26.2803 44.7396 25.9272 44.1933 25.6036 43.6337 25.2793 43.0691 24.9445 42.4889 24.6241 41.8453 24.3525 41.1736 24.0341 40.5191 23.6877 39.9659 23.3174 39.4943 22.9062 39.0595 22.4981 38.5157 22.1371 37.9535 21.7991 37.3792 21.4587 36.8003 21.1133 36.2127 20.7644 35.6201 20.4109 35.0234 20.0546 34.4249 19.6964 33.8256 19.3373 33.2263 18.9776 32.6279 18.6181 32.0306 18.2592 31.4343 17.9018 30.8392 17.5457 30.2444 17.1916 29.6489 16.8402 29.0549 16.489 28.4513 16.1502 27.8167 15.8412 27.1547 15.554 26.551 15.2179 25.9641 14.8696 25.3782 14.5246 24.7952 14.1808 24.2144 13.8397 23.6331 13.4994 23.0511 13.1594 22.4694 12.8211 21.8889 12.4887 21.3078 12.1533 20.7288 11.8624 11.343 45.7939 -61.9653 48.3091 32.0018 48.0243 -35.4224 48.8344 17.7675 49.3119 -11.9147 50.1735 6.34054 50.6753 3.72083 51.2395 6.48291 51.7577 8.33958 52.2459 10.0816 52.6969 11.7164 53.0954 13.1561 53.4782 14.4923 53.8461 15.7659 54.2431 16.8925 54.6615 17.8729 54.9041 19.003 55.1642 20.0265 55.3943 20.9699 55.5757 21.8482 55.7212 22.643 55.8362 23.3821 55.9317 24.0642 56.0186 24.7123 56.0924 25.3318 56.15 25.9128 56.1881 26.4539 56.2026 26.9519 56.1924 27.4046 56.156 27.8149 56.0739 28.1961 55.9564 28.5134 55.804 28.797 55.5909 29.0634 55.3019 29.2893 54.9715 29.4773 54.6846 29.6128 54.4088 29.6927 54.1306 29.7255 53.8474 29.7222 53.5617 29.6943 53.2689 29.6535 52.9589 29.6017 52.6254 29.5296 52.2692 29.4292 51.8941 29.3036 51.5021 29.1588 51.095 28.997 50.6745 28.8198 50.2419 28.6281 49.7987 28.4223 49.3468 28.2023 48.8891 27.9682 48.4287 27.72 47.9667 27.4569 47.4846 27.1719 46.942 26.8229 46.4027 26.4665 45.8514 26.1549 45.2485 25.8822 44.6018 25.5913 43.9563 25.2696 43.3652 24.9435 42.8012 24.5982 42.2593 24.2296 41.8149 23.7618 41.3124 23.4086 40.757 23.0535 40.1746 22.7194 39.5946 22.3792 39.0128 22.0406 38.4262 21.6999 37.8348 21.3558 37.2375 21.0082 36.6352 20.6569 36.0289 20.3028 35.4197 19.9465 34.8088 19.5886 34.1974 19.2296 33.5861 18.8705 32.9761 18.5117 32.3668 18.155 31.7584 17.8 31.1511 17.4474 30.5276 17.1125 29.8613 16.8165 29.197 16.5055 28.584 16.167 27.9852 15.8167 27.3854 15.4694 26.7881 15.122 26.1928 14.7762 25.6006 14.4319 25.0109 14.0891 24.4228 13.7475 23.8356 13.4083 23.2494 13.0749 22.6629 12.7398 22.0821 12.4431 11.9351 44.301 -55.8238 47.579 28.7237 48.9786 -36.8219 49.8923 16.8538 50.4192 -12.4415 51.3128 5.44696 51.8629 3.17068 52.4569 5.88897 52.9986 7.79787 53.5032 9.57698 53.9731 11.2465 54.3931 12.7361 54.807 14.0784 55.2419 15.3309 55.726 16.4084 56.0202 17.5787 56.3201 18.7031 56.5909 19.7557 56.8301 20.7306 57.033 21.6453 57.1962 22.4798 57.3327 23.2456 57.4392 23.9576 57.5325 24.619 57.6121 25.2521 57.6748 25.8501 57.7165 26.4122 57.7377 26.9308 57.7301 27.4122 57.6827 27.8624 57.5727 28.3061 57.3923 28.6938 57.1698 29.0195 56.9621 29.2711 56.7618 29.4896 56.5554 29.6838 56.3329 29.8352 56.0847 29.9409 55.8129 29.9972 55.5276 30.0076 55.2389 29.9829 54.9512 29.9412 54.6543 29.8986 54.3343 29.8495 53.9886 29.7749 53.6222 29.67 53.2379 29.5431 52.8376 29.3973 52.4226 29.2347 51.9938 29.0569 51.5518 28.8643 51.0972 28.6569 50.6308 28.4345 50.1543 28.1966 49.6691 27.942 49.1684 27.6726 48.62 27.3714 48.0299 27.0566 47.4324 26.7523 46.8582 26.4565 46.2969 26.1526 45.7277 25.8388 45.1746 25.4966 44.6487 25.1241 44.2047 24.6736 43.6529 24.3137 43.0836 23.978 42.4907 23.6465 41.902 23.3081 41.3093 22.9719 40.7158 22.6341 40.1202 22.2955 39.5211 21.9549 38.9178 21.6115 38.3097 21.265 37.6971 20.9154 37.0802 20.5633 36.4598 20.209 35.8369 19.8525 35.2128 19.4946 34.5875 19.137 33.9635 18.779 33.3338 18.4297 32.6878 18.0935 31.9907 17.8096 31.3296 17.4776 30.7047 17.1304 30.0938 16.7778 29.4821 16.4285 28.8725 16.0789 28.2638 15.7307 27.6569 15.3831 27.0521 15.0366 26.4499 14.6913 25.8496 14.3479 25.2512 14.0066 24.6561 13.67 24.0635 13.3324 23.4873 13.0193 12.5342 51.802 -59.97 48.4541 32.0716 49.9328 -38.3007 51.0664 15.7203 51.5358 -12.911 52.4526 4.53019 53.0605 2.56279 53.6992 5.25027 54.2785 7.21857 54.8066 9.04881 55.2942 10.7589 55.743 12.2874 56.1943 13.6271 56.7317 14.7935 57.1119 16.0283 57.462 17.2286 57.7759 18.3892 58.0587 19.4729 58.3101 20.4791 58.5326 21.4229 58.7139 22.2985 58.8657 23.0938 58.9883 23.835 59.0895 24.5178 59.1767 25.1649 59.2457 25.7811 59.2939 26.364 59.2952 26.9295 59.2352 27.4721 59.0557 28.0419 58.904 28.4578 58.7913 28.8065 58.6837 29.1271 58.5536 29.4012 58.4048 29.6384 58.2395 29.849 58.0471 30.0276 57.8229 30.1651 57.5656 30.2546 57.2817 30.2915 56.9869 30.2777 56.6987 30.2295 56.4137 30.1836 56.1079 30.1552 55.7704 30.1124 55.41 30.0304 55.0318 29.9213 54.6379 29.7913 54.229 29.6437 53.8053 29.4806 53.3669 29.3027 52.9137 29.1102 52.4452 28.903 51.9607 28.681 51.4598 28.4429 50.942 28.1903 50.398 27.9154 49.8348 27.6198 49.272 27.3151 48.7102 27.0182 48.1459 26.7169 47.601 26.3837 47.1321 25.9655 46.6678 25.5884 46.1031 25.2383 45.5047 24.912 44.9036 24.5791 44.3045 24.2456 43.7013 23.9113 43.0981 23.5751 42.4936 23.2386 41.8876 22.9015 41.2793 22.5632 40.6678 22.223 40.0523 21.8804 39.4326 21.5352 38.8084 21.1875 38.1799 20.8375 37.5462 20.4862 36.9095 20.1313 36.271 19.7755 35.6179 19.4321 34.9354 19.1122 34.2219 18.8069 33.5619 18.4697 32.9249 18.1146 32.2961 17.7592 31.6685 17.4055 31.0446 17.0524 30.4226 16.7009 29.8027 16.3506 29.1842 16.0017 28.5669 15.6538 27.9511 15.3071 27.3365 14.9625 26.7241 14.6191 26.1212 14.2729 25.5325 13.9212 24.9672 13.5846 13.1542 50.5092 -64.3484 51.9713 30.6096 51.0802 -37.4096 52.395 14.4054 52.7861 -13.3021 53.6774 3.63893 54.3083 1.9319 54.9756 4.5829 55.5938 6.60043 56.1611 8.48147 56.689 10.231 57.1993 11.7771 57.7675 13.0589 58.1992 14.3618 58.5824 15.645 58.9383 16.8727 59.2698 18.0577 59.5668 19.1759 59.8315 20.2144 60.0692 21.1853 60.2744 22.0933 60.4434 22.9248 60.5863 23.6922 60.6978 24.4063 60.791 25.0717 60.8602 25.7119 60.8814 26.3428 60.7796 27.0313 60.6274 27.6244 60.5693 28.1 60.5095 28.5176 60.4378 28.8782 60.3575 29.2073 60.2558 29.503 60.1304 29.7638 59.9849 29.9946 59.8167 30.1958 59.6189 30.3628 59.3853 30.4882 59.115 30.5618 58.8208 30.5718 58.535 30.5153 58.2675 30.4511 57.9726 30.4501 57.6333 30.4518 57.2694 30.3943 56.8905 30.3002 56.4987 30.1831 56.0936 30.0487 55.6744 29.8997 55.2406 29.7365 54.7921 29.5586 54.3293 29.3659 53.8512 29.1591 53.3571 28.937 52.8472 28.7003 52.3169 28.4457 51.767 28.1698 51.2013 27.8807 50.6551 27.5644 50.134 27.238 49.7105 26.8072 49.1989 26.4771 48.6317 26.1556 48.0272 25.8428 47.4213 25.518 46.809 25.1914 46.1942 24.8604 45.5788 24.5266 44.9628 24.1911 44.3467 23.8548 43.73 23.5182 43.1119 23.1813 42.4912 22.8437 41.867 22.5046 41.2389 22.1633 40.6061 21.8203 39.9676 21.476 39.3248 21.129 38.666 20.7901 37.9829 20.4586 37.2573 20.1577 36.5495 19.82 35.8862 19.4703 35.2433 19.1126 34.6004 18.7575 33.9579 18.4017 33.3176 18.0457 32.6796 17.6904 32.0444 17.3361 31.4117 16.9833 30.7808 16.6326 30.1508 16.2839 29.5228 15.9351 28.9 15.5853 28.2904 15.2287 27.703 14.8603 27.1209 14.5033 26.5269 14.1786 13.7915 50.1504 -65.6399 51.7955 28.9646 52.3289 -37.943 53.3884 13.346 54.0183 -13.932 54.9263 2.73094 55.5835 1.27472 56.2814 3.88492 56.9456 5.93622 57.5637 7.86342 58.1617 9.63293 58.7871 11.1517 59.2842 12.5618 59.7091 13.937 60.101 15.2531 60.4659 16.5078 60.8078 17.7158 61.1214 18.8623 61.4029 19.9329 61.6548 20.9333 61.879 21.8691 62.0648 22.739 62.2205 23.5364 62.3438 24.2831 62.4354 24.9801 62.4762 25.6711 62.3478 26.4712 62.2788 27.1004 62.2665 27.6366 62.2573 28.1093 62.2341 28.5408 62.1843 28.9279 62.115 29.2767 62.0264 29.5916 61.917 29.8731 61.7879 30.1237 61.6388 30.3448 61.4661 30.5355 61.2629 30.6914 61.0224 30.8023 60.7495 30.8448 60.484 30.7808 60.213 30.7221 59.9156 30.7475 59.5703 30.797 59.2005 30.7641 58.8174 30.6833 58.4238 30.5767 58.0196 30.4529 57.6037 30.3156 57.1744 30.1659 56.7308 30.0021 56.274 29.8227 55.8034 29.6297 55.3169 29.4236 54.817 29.2001 54.2994 28.9632 53.7624 28.7068 53.2418 28.4013 52.7806 28.0257 52.3493 27.6692 51.809 27.3476 51.2334 27.0527 50.6358 26.7532 50.0331 26.4455 49.4181 26.1329 48.7968 25.8127 48.1704 25.4868 47.541 25.1559 46.9107 24.8214 46.2805 24.4849 45.6509 24.1478 45.0213 23.8109 44.3905 23.4745 43.7569 23.1381 43.1183 22.8019 42.4751 22.4635 41.8233 22.1279 41.1442 21.8081 40.4196 21.5147 39.6821 21.1961 38.9894 20.8503 38.3215 20.4879 37.6666 20.1252 37.0114 19.7678 36.356 19.4129 35.7 19.0576 35.0449 18.7009 34.3919 18.3434 33.7417 17.9863 33.0947 17.6303 32.453 17.2743 31.8161 16.9208 31.1943 16.5569 30.5919 16.1876 29.9994 15.8212 29.3921 15.4675 28.7691 15.1263 28.1429 14.8048 14.4357 51.4013 -64.8411 54.2887 26.0772 54.0146 -37.669 54.8504 12.5102 55.3028 -14.3843 56.2279 1.80584 56.9141 0.588474 57.6313 3.1677 58.3348 5.23276 59.0039 7.19427 59.6718 8.96506 60.2742 10.5493 60.7769 12.0592 61.231 13.4828 61.6491 14.835 62.0337 16.1232 62.3899 17.3595 62.7193 18.5329 63.0177 19.6346 63.285 20.6659 63.5239 21.6303 63.7303 22.5326 63.8994 23.3673 64.0334 24.149 64.0991 24.9145 63.9977 25.7724 63.9812 26.4877 64.0029 27.0787 64.0278 27.6117 64.0352 28.1019 64.0244 28.5516 63.9917 28.9606 63.9368 29.3316 63.861 29.6673 63.7646 29.9695 63.6486 30.2398 63.5138 30.4795 63.3601 30.6893 63.1842 30.8673 62.98 31.0064 62.7428 31.082 62.4834 31.0402 62.1957 31.0098 61.8803 31.0628 61.5433 31.134 61.1846 31.1229 60.8074 31.0604 60.4161 30.9681 60.0134 30.8555 59.6008 30.7282 59.1769 30.5899 58.7384 30.4406 58.2869 30.2742 57.8258 30.0908 57.3507 29.8987 56.8563 29.6945 56.3698 29.4498 55.8965 29.1802 55.5144 28.7834 55.0448 28.4952 54.5042 28.2098 53.9184 27.9334 53.3263 27.6448 52.7264 27.353 52.1164 27.0556 51.498 26.7513 50.8705 26.4402 50.2354 26.122 49.5944 25.797 48.9496 25.4662 48.3035 25.1311 47.6577 24.7936 47.0132 24.4555 46.3693 24.1184 45.7236 23.7838 45.0742 23.4513 44.4057 23.1319 43.6994 22.8342 42.945 22.5625 42.2286 22.2311 41.5446 21.8802 40.8768 21.5181 40.2113 21.1534 39.5435 20.7929 38.8714 20.4399 38.1975 20.0869 37.5249 19.7302 36.8552 19.3705 36.1884 19.0102 35.5265 18.6482 34.8759 18.2809 34.2475 17.9027 33.6317 17.5366 33.0236 17.165 32.4044 16.8069 31.7658 16.4598 31.1149 16.1184 30.4627 15.7786 29.8144 15.4531 15.0866 49.916 -58.1807 53.6734 22.3198 55.2703 -39.2658 56.2028 11.5777 56.6856 -14.8671 57.5965 0.894885 58.2934 -0.10836 59.0295 2.43155 59.7566 4.50572 60.4653 6.48553 61.1463 8.28406 61.743 9.95259 62.2842 11.518 62.7825 12.9845 63.2337 14.3838 63.6439 15.713 64.0205 16.9829 64.3676 18.1859 64.6845 19.3176 64.97 20.3805 65.2215 21.3787 65.444 22.3101 65.6153 23.1961 65.7237 24.0406 65.6705 24.9677 65.6937 25.7491 65.7621 26.4192 65.8181 27.0228 65.8561 27.5737 65.8773 28.0807 65.8796 28.5492 65.8609 28.9793 65.8203 29.3722 65.7581 29.7295 65.6747 30.0528 65.5709 30.3436 65.4476 30.6028 65.3058 30.8311 65.1457 31.0274 64.9649 31.1873 64.7524 31.2945 64.4803 31.3123 64.174 31.3161 63.8533 31.3835 63.5419 31.4454 63.2102 31.4546 62.853 31.4177 62.4737 31.3473 62.077 31.2522 61.669 31.1363 61.2535 31.0053 60.8236 30.8706 60.3754 30.7224 59.9171 30.5492 59.4595 30.3562 59.0045 30.1495 58.6022 29.8521 58.2418 29.5406 57.7566 29.2686 57.2261 29.0257 56.6618 28.7741 56.0858 28.5093 55.4936 28.237 54.8909 27.9557 54.2789 27.6676 53.6575 27.3727 53.0268 27.0709 52.3868 26.762 51.7381 26.4457 51.0822 26.1221 50.4213 25.792 49.7578 25.4571 49.0943 25.119 48.4317 24.781 47.7687 24.4468 47.0898 24.1302 46.3549 23.8668 45.5997 23.5894 44.9013 23.2609 44.2223 22.9101 43.5501 22.5524 42.8775 22.1906 42.1978 21.8332 41.507 21.4836 40.8142 21.1327 40.125 20.7761 39.4397 20.4155 38.7603 20.0499 38.0995 19.671 37.464 19.2837 36.8431 18.9018 36.2156 18.5302 35.5761 18.1761 34.9154 17.8256 34.2444 17.4779 33.5723 17.1319 32.9015 16.7892 32.2311 16.4489 31.5601 16.1241 15.7494 58.4725 -62.6913 54.641 26.1513 56.4026 -41.0275 57.6246 10.3557 58.0693 -15.3118 59.0051 -0.0408424 59.7224 -0.825681 60.4828 1.67111 61.2366 3.75191 61.9676 5.75455 62.6481 7.60354 63.2678 9.33297 63.8499 10.9359 64.3843 12.4501 64.8653 13.9029 65.3 15.2783 65.6983 16.5845 66.0634 17.8208 66.396 18.985 66.7007 20.0758 66.961 21.1185 67.1756 22.0955 67.3207 23.0509 67.3228 24.0386 67.4041 24.8864 67.5142 25.639 67.6143 26.3191 67.6928 26.9443 67.7486 27.5179 67.7835 28.0459 67.7985 28.5341 67.793 28.9848 67.7663 29.399 67.7182 29.7776 67.6488 30.1222 67.5585 30.434 67.4474 30.7139 67.3159 30.9625 67.1642 31.1792 66.9903 31.3611 66.7837 31.5012 66.5167 31.5792 66.2054 31.6275 65.902 31.6869 65.6057 31.7417 65.2943 31.766 64.9587 31.7532 64.5989 31.7072 64.2146 31.6365 63.8084 31.5424 63.399 31.4147 62.987 31.2826 62.5591 31.1502 62.1383 30.97 61.749 30.7456 61.4088 30.4897 61.0092 30.2517 60.5283 30.0214 59.9965 29.8005 59.4536 29.5686 58.897 29.3307 58.3232 29.0832 57.7352 28.8249 57.1339 28.5571 56.5212 28.2803 55.8982 27.9957 55.2654 27.7038 54.6227 27.4047 53.9699 27.0984 53.3075 26.7845 52.6363 26.4632 51.9573 26.136 51.2726 25.8036 50.5859 25.4677 49.8869 25.1458 49.1343 24.8829 48.3887 24.6124 47.6947 24.2834 47.0174 23.9382 46.3398 23.5877 45.6593 23.2329 44.9663 22.8836 44.2602 22.5392 43.553 22.1909 42.8502 21.8355 42.1529 21.4735 41.4691 21.0993 40.8142 20.7047 40.1892 20.296 39.5502 19.9227 38.8871 19.5649 38.205 19.2123 37.5191 18.862 36.8318 18.5129 36.1444 18.1653 35.4565 17.8197 34.7689 17.4768 34.082 17.1358 33.3926 16.8135 16.4292 57.1086 -67.4457 58.5 24.7598 57.5874 -40.1148 59.1883 8.75468 59.5967 -15.7202 60.5193 -0.963398 61.2466 -1.55299 62.031 0.886706 62.7976 2.98537 63.5617 4.99039 64.2581 6.9072 64.9001 8.69088 65.4977 10.3383 66.0466 11.9012 66.5474 13.4021 67.0032 14.8225 67.4228 16.165 67.8083 17.4353 68.147 18.6462 68.4504 19.7724 68.6968 20.8721 68.8361 21.9561 68.9233 22.9638 69.0766 23.8852 69.2441 24.719 69.3952 25.4879 69.5227 26.1916 69.6258 26.8411 69.7019 27.4418 69.7534 27.9944 69.7827 28.5049 69.7907 28.9769 69.7775 29.4121 69.7433 29.8119 69.6881 30.1773 69.6122 30.5099 69.5153 30.8107 69.3973 31.0806 69.2569 31.3196 69.0915 31.5264 68.8938 31.6989 68.6484 31.8246 68.3645 31.9114 68.0701 31.9813 67.7738 32.038 67.468 32.0718 67.1455 32.0757 66.8035 32.0492 66.4464 31.9936 66.0623 31.9265 65.6822 31.7949 65.3244 31.6404 64.977 31.4976 64.6551 31.2919 64.2862 31.1145 63.8478 30.9281 63.3591 30.7403 62.8401 30.5404 62.3111 30.3296 61.7672 30.1124 61.2112 29.8868 60.642 29.6524 60.0583 29.4086 59.4604 29.1549 58.8492 28.8915 58.2259 28.619 57.5915 28.3381 56.9468 28.0494 56.2915 27.7537 55.625 27.451 54.9479 27.1404 54.2609 26.8231 53.5587 26.5058 52.8387 26.1877 52.0712 25.9133 51.3142 25.6398 50.6176 25.309 49.9409 24.9601 49.2674 24.6117 48.5777 24.2774 47.8658 23.9448 47.1417 23.6077 46.4195 23.2614 45.7041 22.9063 44.9953 22.5443 44.2998 22.169 43.6433 21.7557 43.0057 21.3424 42.3308 20.9709 41.6376 20.616 40.9386 20.2639 40.2379 19.913 39.5365 19.5635 38.8342 19.2151 38.1316 18.868 37.429 18.5223 36.7265 18.1793 36.0246 17.8378 35.3211 17.517 17.1287 56.9185 -69.0049 58.7275 22.9509 59.1193 -40.5066 60.396 7.47802 61.1071 -16.4313 62.0942 -1.9505 62.9588 -2.41759 63.7791 0.0664545 64.5319 2.23255 65.2403 4.282 65.9405 6.20697 66.5963 8.03516 67.2008 9.73379 67.7592 11.3428 68.275 12.8864 68.744 14.3535 69.1659 15.743 69.5501 17.0511 69.8607 18.3357 70.0746 19.5585 70.2541 20.6925 70.4761 21.7342 70.7162 22.7237 70.9509 23.6504 71.1591 24.5108 71.3423 25.3047 71.494 26.0399 71.6196 26.7156 71.7174 27.344 71.7877 27.9241 71.8334 28.4592 71.8562 28.9541 71.8569 29.4113 71.8364 29.8324 71.7951 30.2186 71.7334 30.5717 71.6513 30.8929 71.5484 31.1835 71.4236 31.4444 71.2745 31.6755 71.0969 31.8765 70.8812 32.0403 70.6275 32.1652 70.3491 32.2597 70.0581 32.329 69.7567 32.3732 69.4484 32.384 69.1493 32.3484 68.8825 32.2603 68.6325 32.1765 68.3615 32.0659 68.028 31.9739 67.6507 31.8749 67.2112 31.7314 66.7445 31.5812 66.2542 31.4184 65.7522 31.2423 65.2362 31.0565 64.7053 30.8605 64.1629 30.6548 63.6087 30.4409 63.0426 30.2186 62.4635 29.9877 61.8706 29.7478 61.2633 29.4988 60.6419 29.2404 60.0074 28.9726 59.3606 28.6962 58.7029 28.4114 58.0333 28.1206 57.3485 27.8251 56.6442 27.5274 55.8993 27.2507 55.1125 26.9744 54.3516 26.6742 53.6625 26.329 53.0166 25.9549 52.3558 25.6209 51.6657 25.3018 50.9301 25.0129 50.1765 24.6984 49.4282 24.3559 48.6905 23.9991 47.9612 23.6356 47.2482 23.2573 46.577 22.8402 45.9193 22.4134 45.2219 22.0397 44.51 21.6828 43.7967 21.3293 43.082 20.9786 42.366 20.629 41.6493 20.2802 40.9322 19.9323 40.2148 19.5854 39.4973 19.2398 38.7801 18.8965 38.0632 18.5546 37.3467 18.2335 17.8463 58.1528 -68.2004 61.741 19.3627 61.3248 -40.0905 62.156 6.64688 62.6994 -16.9748 63.7414 -2.99244 64.639 -3.31526 65.4619 -0.756416 66.2133 1.48114 66.9361 3.55925 67.6529 5.49019 68.323 7.36502 68.9372 9.11957 69.5034 10.7766 70.0173 12.3724 70.4712 13.8996 70.8324 15.3818 71.1139 16.7697 71.4131 18.0364 71.7366 19.2351 72.0566 20.3726 72.3569 21.4339 72.643 22.4376 72.9078 23.3856 73.1438 24.2748 73.3516 25.097 73.53 25.8615 73.6782 26.5673 73.799 27.2232 73.8903 27.8327 73.9543 28.3952 73.9934 28.9151 74.009 29.3958 74.0024 29.8389 73.9746 30.2464 73.9264 30.6199 73.8581 30.9611 73.7698 31.2718 73.6608 31.5533 73.5298 31.8065 73.3745 32.0319 73.1887 32.226 72.9689 32.3849 72.7197 32.5088 72.4516 32.5972 72.1877 32.6371 71.9762 32.5955 71.8255 32.4991 71.5929 32.4929 71.2912 32.4782 70.9291 32.428 70.5398 32.3633 70.1294 32.2853 69.6821 32.1786 69.2146 32.0488 68.7299 31.9031 68.2286 31.7436 67.7132 31.5718 67.1845 31.3891 66.6432 31.1962 66.0901 30.994 65.5257 30.783 64.9496 30.5638 64.3608 30.3366 63.7582 30.1015 63.1399 29.8586 62.5053 29.6073 61.8555 29.346 61.1869 29.08 60.4872 28.8203 59.742 28.5703 58.9656 28.3038 58.196 28.0203 57.4834 27.687 56.8631 27.2945 56.227 26.9651 55.5368 26.645 54.8279 26.3298 54.0967 26.0331 53.3289 25.7807 52.5663 25.461 51.8111 25.1111 51.0603 24.7499 50.3326 24.3633 49.6545 23.9354 48.9841 23.5106 48.2648 23.1327 47.532 22.7725 46.7981 22.4168 46.0637 22.0637 45.3301 21.7122 44.5969 21.3622 43.8638 21.0132 43.1307 20.6654 42.3975 20.3186 41.664 19.9732 40.9305 19.6301 40.1969 19.2882 39.4638 18.9666 18.5785 56.3266 -60.7463 60.7029 14.9864 62.7157 -42.1033 63.7848 5.57777 64.3531 -17.543 65.4117 -4.05111 66.2822 -4.18569 67.132 -1.60629 67.9214 0.691798 68.6678 2.81286 69.3829 4.77511 70.0722 6.67572 70.6951 8.49666 71.2443 10.2274 71.6815 11.9353 72.0522 13.5289 72.4565 14.9775 72.8723 16.3539 73.2664 17.6423 73.6453 18.8562 74.0082 20.0097 74.3428 21.0993 74.6523 22.1281 74.9397 23.0982 75.2025 24.0119 75.4332 24.8663 75.6355 25.6592 75.8048 26.3981 75.9467 27.0812 76.06 27.7195 76.1442 28.3109 76.2018 28.8575 76.2343 29.3633 76.2432 29.8301 76.2299 30.2597 76.1954 30.6543 76.1407 31.0158 76.0663 31.3462 75.9723 31.6473 75.8584 31.9204 75.7238 32.1665 75.5654 32.3844 75.3796 32.5707 75.1686 32.7199 74.9463 32.8195 74.7917 32.7916 74.6665 32.7207 74.4198 32.7458 74.1302 32.7824 73.8051 32.8033 73.4409 32.7922 73.0513 32.7528 72.6437 32.6929 72.2122 32.6101 71.7564 32.5046 71.2803 32.3792 70.7865 32.2374 70.2765 32.0818 69.7517 31.914 69.2129 31.735 68.6608 31.5461 68.0961 31.3476 67.5196 31.1404 66.9308 30.9253 66.3285 30.7038 65.7102 30.477 65.0658 30.2516 64.3743 30.0375 63.627 29.8273 62.8501 29.5973 62.1007 29.3197 61.3936 29.0109 60.7713 28.6426 60.1701 28.2882 59.4912 27.9735 58.7924 27.6639 58.0805 27.3569 57.3504 27.06 56.5518 26.8317 55.7888 26.5436 55.0379 26.2119 54.2895 25.8596 53.5681 25.4713 52.905 25.0264 52.217 24.6234 51.4774 24.2502 50.7202 23.89 49.9615 23.5312 49.2033 23.175 48.4466 22.8203 47.6916 22.4672 46.9383 22.1155 46.1863 21.7653 45.4351 21.4165 44.6843 21.0694 43.9333 20.7243 43.1814 20.3819 42.4279 20.0418 41.6726 19.722 19.3236 66.3298 -65.5189 61.9781 19.3381 64.0652 -44.1905 65.4301 4.21285 65.9992 -18.1121 67.108 -5.15983 67.9868 -5.06453 68.8297 -2.44915 69.6459 -0.12443 70.4299 2.02889 71.1596 4.04539 71.8655 5.96977 72.469 7.89321 72.9307 9.76568 73.3962 11.4698 73.883 13.0421 74.3558 14.5047 74.8178 15.8919 75.2557 17.2044 75.6656 18.4463 76.0513 19.6239 76.4105 20.74 76.7431 21.7955 77.0499 22.7914 77.3327 23.7292 77.5862 24.6127 77.8102 25.4352 78.0048 26.2035 78.1681 26.9179 78.3034 27.5843 78.4084 28.2058 78.4853 28.7806 78.5359 29.3127 78.5615 29.8044 78.5637 30.2575 78.5439 30.6742 78.5032 31.0565 78.4426 31.4068 78.363 31.7269 78.2651 32.0184 78.1491 32.2825 78.0152 32.5183 77.862 32.7239 77.6937 32.8882 77.5728 32.9405 77.4816 32.8828 77.2634 32.939 76.9921 33.017 76.696 33.0786 76.3776 33.1218 76.0299 33.1398 75.6531 33.1297 75.2521 33.0939 74.8285 33.0338 74.3827 32.9503 73.9163 32.8457 73.4312 32.7225 72.9291 32.5839 72.411 32.4321 71.8774 32.2687 71.3284 32.095 70.7642 31.9118 70.185 31.7196 69.5906 31.5197 68.9785 31.3158 68.3363 31.1192 67.6265 30.9614 66.857 30.8071 66.1196 30.5647 65.4256 30.2913 64.758 29.9873 64.1708 29.598 63.5419 29.2716 62.8576 28.9725 62.1579 28.6732 61.4455 28.3763 60.7135 28.0889 59.8954 27.8781 59.1172 27.6099 58.3688 27.292 57.6326 26.9481 56.9319 26.5603 56.2881 26.1151 55.5817 25.7327 54.8304 25.3747 54.0599 25.0208 53.2847 24.6652 52.506 24.3099 51.7267 23.9542 50.9482 23.5989 50.1711 23.2443 49.396 22.8906 48.6229 22.5383 47.8516 22.1878 47.0814 21.8396 46.3112 21.4945 45.5389 21.1542 44.7614 20.8192 43.9779 20.5055 20.0823 65.2375 -70.7926 66.3957 18.1799 65.3882 -43.1829 67.3174 2.28364 67.8062 -18.6008 68.9019 -6.25553 69.7578 -5.92041 70.6119 -3.3033 71.4595 -0.972032 72.2575 1.23094 73.0123 3.29058 73.711 5.27108 74.2719 7.33226 74.7964 9.24125 75.335 10.9312 75.8681 12.509 76.3776 13.9951 76.864 15.4055 77.3266 16.7418 77.7616 18.0112 78.1697 19.2159 78.5509 20.3589 78.9057 21.4407 79.2344 22.4627 79.5376 23.4259 79.8154 24.3349 80.0606 25.19 80.2768 25.9873 80.4609 26.7338 80.6177 27.4274 80.7456 28.078 80.8441 28.6821 80.9152 29.2416 80.9599 29.7597 80.9796 30.2378 80.9758 30.6779 80.9503 31.0821 80.9046 31.4525 80.84 31.7915 80.7581 32.1004 80.6611 32.3794 80.5503 32.6291 80.4371 32.8371 80.3567 32.9686 80.3234 32.9737 80.1474 33.0588 79.9128 33.1736 79.6514 33.2784 79.3635 33.3664 79.0518 33.4335 78.7147 33.4769 78.3505 33.4939 77.9602 33.4842 77.5453 33.4486 77.1076 33.3881 76.6487 33.3046 76.1708 33.2003 75.676 33.0787 75.1655 32.9425 74.6398 32.7944 74.0983 32.6364 73.5399 32.4702 72.9629 32.2966 72.3642 32.1184 71.7387 31.9414 71.0429 31.8149 70.2948 31.7096 69.5991 31.5028 68.9189 31.2448 68.2608 30.9495 67.6822 30.5659 67.0277 30.2525 66.3384 29.9608 65.6393 29.6717 64.9287 29.3838 64.1999 29.1051 63.3826 28.9062 62.5952 28.6654 61.8444 28.3607 61.1101 28.0263 60.424 27.6343 59.7821 27.2022 59.0625 26.8347 58.3028 26.4924 57.529 26.1485 56.7473 25.8025 55.9586 25.454 55.1654 25.103 54.3693 24.7504 53.5716 24.3966 52.7737 24.0422 51.9764 23.6879 51.1805 23.3342 50.3864 22.982 49.5936 22.6324 48.8009 22.2872 48.005 21.9501 47.199 21.6252 46.3871 21.3174 20.858 64.9189 -72.5711 67.0526 16.0462 67.2494 -43.3797 68.7239 0.809111 69.5783 -19.4553 70.7117 -7.38887 71.6282 -6.83689 72.4982 -4.17332 73.3568 -1.83063 74.1731 0.41458 74.9287 2.53498 75.6129 4.58691 76.2017 6.74345 76.7988 8.6441 77.3808 10.3492 77.9418 11.948 78.4781 13.4588 78.9893 14.8943 79.4746 16.2566 79.9321 17.5537 80.3623 18.7857 80.7661 19.9551 81.1437 21.0631 81.4947 22.1116 81.8185 23.1021 82.1165 24.0369 82.3858 24.9208 82.6246 25.7485 82.8337 26.5247 83.0117 27.2493 83.1622 27.9276 83.283 28.5612 83.3758 29.1487 83.4416 29.6939 83.4812 30.1982 83.496 30.6631 83.4879 31.0902 83.4591 31.4812 83.4131 31.8376 83.3516 32.1619 83.2791 32.4519 83.2155 32.6927 83.1993 32.8533 83.211 32.9569 83.0852 33.0994 82.8881 33.2559 82.661 33.4008 82.4083 33.5311 82.1318 33.6429 81.8312 33.7341 81.5058 33.8023 81.1539 33.8458 80.7752 33.863 80.3703 33.8535 79.9406 33.8178 79.488 33.7571 79.015 33.6733 78.5244 33.5693 78.0185 33.4484 77.4988 33.3141 76.9655 33.1698 76.4171 33.0187 75.8491 32.8646 75.2564 32.7111 74.605 32.5928 73.8811 32.5388 73.2036 32.387 72.5441 32.1622 71.8997 31.8892 71.3216 31.5276 70.6568 31.2308 69.9609 30.9484 69.2541 30.6676 68.5386 30.3872 67.809 30.1133 67.0119 29.9023 66.2152 29.7029 65.4666 29.414 64.7347 29.0926 64.0536 28.7073 63.4007 28.2872 62.671 27.9319 61.9046 27.6011 61.1288 27.2681 60.3438 26.9336 59.5509 26.5954 58.7513 26.2536 57.9458 25.9085 57.1356 25.5606 56.3217 25.2104 55.5052 24.8587 54.687 24.506 53.868 24.1532 53.0487 23.8013 52.2292 23.4519 51.4084 23.1081 50.5832 22.7753 49.7504 22.458 48.9229 22.1449 21.6601 66.1806 -71.7229 70.461 11.7657 70.0094 -42.9281 70.8931 -0.0745699 71.5276 -20.0897 72.6144 -8.47569 73.5611 -7.78353 74.4616 -5.0739 75.3244 -2.69335 76.1536 -0.414689 76.9169 1.77171 77.5622 3.94167 78.2231 6.08247 78.8781 7.98918 79.5014 9.7259 80.0953 11.3541 80.6586 12.8955 81.1923 14.3606 81.698 15.7508 82.1764 17.0753 82.6285 18.3336 83.0553 19.5284 83.4565 20.6619 83.8316 21.7365 84.1795 22.7543 84.4997 23.7167 84.793 24.6276 85.0536 25.4878 85.2854 26.2929 85.4867 27.048 85.6612 27.7531 85.8067 28.4157 85.9235 29.032 86.0126 29.6048 86.0748 30.1361 86.1113 30.6266 86.1244 31.0771 86.1182 31.4874 86.0971 31.8587 86.0752 32.1837 86.0763 32.4508 86.1413 32.6277 86.1595 32.8351 86.0677 33.0487 85.9105 33.2567 85.7212 33.4452 85.5052 33.6167 85.2659 33.7705 85.0033 33.9056 84.7167 34.0206 84.4052 34.1139 84.0674 34.1835 83.7024 34.228 83.3097 34.2462 82.89 34.2376 82.4446 34.2025 81.9758 34.1422 81.4866 34.0584 80.9805 33.9545 80.4606 33.834 79.929 33.7014 79.3847 33.5629 78.8235 33.4258 78.2168 33.3178 77.5138 33.2958 76.852 33.2006 76.227 33.012 75.6463 32.743 75.0855 32.4499 74.424 32.1891 73.7291 31.9257 73.0185 31.659 72.2961 31.39 71.561 31.1223 70.7726 30.9017 69.9513 30.7235 69.2057 30.4485 68.4836 30.1362 67.812 29.7642 67.1549 29.3645 66.4206 29.0215 65.6515 28.701 64.8729 28.3797 64.0841 28.057 63.2873 27.7303 62.4831 27.3996 61.6719 27.0648 60.8544 26.726 60.0314 26.3836 59.2034 26.0384 58.3711 25.6909 57.5352 25.342 56.696 24.9924 55.8538 24.6435 55.0088 24.2969 54.1612 23.9557 53.3132 23.6233 52.4718 23.2994 51.6403 22.9764 22.5022 64.2944 -63.6291 69.2126 6.84755 71.5167 -45.2323 72.7956 -1.35348 73.5351 -20.8293 74.6465 -9.58702 75.5851 -8.72219 76.4901 -5.97885 77.3619 -3.56512 78.1996 -1.25238 78.9253 1.04602 79.5787 3.28825 80.3095 5.35166 81.0201 7.27855 81.6896 9.05641 82.3206 10.7231 82.9139 12.3023 83.4725 13.802 83.9997 15.2237 84.4995 16.5755 84.9741 17.859 85.4241 19.0783 85.8492 20.2369 86.2483 21.3374 86.6203 22.3823 86.9639 23.373 87.2804 24.311 87.5676 25.2006 87.8238 26.0367 88.049 26.8228 88.2455 27.5567 88.4153 28.2459 88.5574 28.8899 88.6727 29.4895 88.7618 30.0469 88.8261 30.5624 88.8687 31.0345 88.8955 31.4606 88.9309 31.8234 89.0158 32.0988 89.1275 32.339 89.1357 32.6195 89.0707 32.9001 88.9569 33.1626 88.8125 33.401 88.6395 33.6182 88.4414 33.8148 88.2197 33.9922 87.9747 34.1506 87.7058 34.2895 87.4119 34.4078 87.0915 34.5039 86.7433 34.5762 86.3662 34.6232 85.9601 34.6437 85.5255 34.6372 85.0637 34.6039 84.5774 34.5447 84.07 34.462 83.5451 34.359 83.0061 34.2404 82.4557 34.1134 81.88 34.0015 81.2145 33.9833 80.5699 33.9404 80.0442 33.7264 79.5326 33.5235 78.9544 33.3213 78.3019 33.1024 77.6215 32.8695 76.9199 32.6274 76.2 32.3789 75.4621 32.1279 74.6545 31.9299 73.817 31.7392 73.0716 31.4689 72.3631 31.157 71.7163 30.7829 71.0576 30.4229 70.3239 30.0982 69.5546 29.7908 68.7735 29.4821 67.9815 29.1718 67.1808 28.8577 66.3718 28.5393 65.555 28.2164 64.731 27.8888 63.9003 27.5566 63.0637 27.2203 62.2218 26.8804 61.3751 26.5376 60.5242 26.1929 59.6696 25.8471 58.8117 25.5014 57.9516 25.157 57.092 24.8152 56.2381 24.4772 55.3951 24.1424 54.5523 23.8192 23.3799 75.7826 -68.5648 70.9403 11.6898 73.3488 -47.6407 74.791 -2.79568 75.5111 -21.5494 76.7181 -10.7941 77.6706 -9.67469 78.587 -6.89526 79.4546 -4.43264 80.2605 -2.05828 80.953 0.353498 81.7068 2.53439 82.4949 4.56355 83.2467 6.52677 83.9559 8.34726 84.6241 10.0549 85.2477 11.6786 85.832 13.2177 86.3827 14.673 86.9057 16.0524 87.4036 17.3611 87.8772 18.6047 88.3264 19.7877 88.7503 20.9135 89.1479 21.9847 89.5174 23.0035 89.8584 23.9701 90.1711 24.8879 90.4524 25.7555 90.7053 26.5699 90.9273 27.3346 91.1219 28.0513 91.2886 28.7233 91.4296 29.3484 91.547 29.9295 91.6444 30.465 91.7277 30.9512 91.8251 31.3632 91.9873 31.6611 92.1105 31.9756 92.1313 32.3183 92.0947 32.6561 92.0241 32.9708 91.9252 33.2614 91.7983 33.5279 91.6457 33.7708 91.4684 33.992 91.2676 34.193 91.0435 34.3748 90.7955 34.5375 90.5226 34.6807 90.2233 34.8032 89.8959 34.9036 89.5389 34.9802 89.1513 35.0313 88.7326 35.0559 88.2835 35.053 87.8056 35.0226 87.3018 34.9658 86.7757 34.885 86.2309 34.7852 85.6689 34.6754 85.107 34.5634 84.5651 34.5252 84.0645 34.441 83.4935 34.2973 82.8863 34.1308 82.2585 33.9491 81.6073 33.7536 80.9309 33.5459 80.2287 33.3296 79.4958 33.1117 78.6603 32.9635 77.8389 32.7512 77.1015 32.4767 76.4138 32.1566 75.7891 31.7817 75.1146 31.4574 74.3792 31.1583 73.6114 30.866 72.8311 30.5711 72.0391 30.2741 71.2374 29.9734 70.4263 29.6688 69.606 29.3596 68.7769 29.0455 67.9394 28.7263 67.0942 28.4018 66.2422 28.0722 65.3845 27.7381 64.5221 27.4001 63.6559 27.059 62.7871 26.7159 61.9168 26.3717 61.0466 26.0272 60.1785 25.6833 59.3146 25.3411 58.4562 25.0008 57.597 24.6784 24.2722 75.1448 -74.4564 76.0598 10.7748 74.8912 -46.4721 77.1263 -5.03077 77.6903 -22.1134 78.9111 -12.0149 79.8499 -10.6134 80.7556 -7.80097 81.5927 -5.26978 82.3262 -2.7918 83.1177 -0.437907 83.9369 1.71511 84.7607 3.73978 85.5683 5.71914 86.3251 7.59047 87.0238 9.3562 87.6711 11.0313 88.278 12.6107 88.8525 14.0986 89.3997 15.5052 89.9214 16.8393 90.4187 18.1075 90.8915 19.3148 91.3396 20.4654 91.7619 21.5623 92.1575 22.608 92.5246 23.603 92.8645 24.548 93.1729 25.4471 93.45 26.2928 93.6965 27.0881 93.9167 27.8311 94.1104 28.5296 94.2793 29.1795 94.4286 29.7802 94.5643 30.3293 94.717 30.7986 94.9368 31.1433 95.0876 31.5103 95.1463 31.9169 95.1523 32.3123 95.126 32.6823 95.0705 33.0264 94.9882 33.3438 94.8805 33.6355 94.7482 33.9032 94.5921 34.1482 94.4128 34.3723 94.2106 34.5769 93.9853 34.7628 93.7358 34.9302 93.4604 35.0786 93.1572 35.2068 92.8242 35.3131 92.4598 35.3958 92.0626 35.453 91.6321 35.4835 91.1691 35.4856 90.6776 35.4574 90.1645 35.3982 89.6552 35.2944 89.2134 35.1172 88.6387 35.1381 88.0509 35.1131 87.477 35.0148 86.8898 34.8845 86.2864 34.7342 85.6656 34.5699 85.0244 34.3948 84.3562 34.214 83.6454 34.0405 82.8131 33.944 82.0328 33.7438 81.3093 33.4746 80.646 33.14 80.0178 32.7848 79.3183 32.4812 78.5735 32.2022 77.8079 31.9238 77.0309 31.643 76.2426 31.3594 75.4446 31.0721 74.6367 30.7813 73.8189 30.4866 72.9908 30.1877 72.1521 29.8842 71.303 29.5754 70.4441 29.2607 69.5764 28.9399 68.7016 28.6129 67.8214 28.2802 66.9378 27.9426 66.0527 27.6011 65.1673 27.257 64.2826 26.9119 63.399 26.567 62.5165 26.2236 61.6353 25.8821 60.7548 25.5589 25.1688 74.6092 -76.4263 77.1572 8.22684 77.202 -46.517 78.8414 -6.67013 79.829 -23.101 81.0873 -13.2732 82.0737 -11.5998 82.9799 -8.70718 83.7645 -6.0544 84.5753 -3.60266 85.4332 -1.29576 86.2861 0.862259 87.1458 2.88002 87.997 4.868 88.7998 6.78759 89.5227 8.63331 90.188 10.366 90.8161 11.9827 91.4143 13.5004 91.9857 14.9338 92.5315 16.2936 93.0525 17.5865 93.5491 18.8182 94.0211 19.9933 94.468 21.1154 94.8888 22.1873 95.2817 23.2101 95.6466 24.183 95.9846 25.1091 96.292 25.9854 96.5687 26.8114 96.8146 27.5852 97.0348 28.3094 97.2327 28.9816 97.4159 29.597 97.6186 30.1266 97.8948 30.5224 98.0947 30.9434 98.1966 31.4085 98.2505 31.863 98.2705 32.2922 98.2599 32.693 98.2217 33.0645 98.1575 33.408 98.0683 33.7247 97.9551 34.0163 97.8187 34.2845 97.66 34.5311 97.4792 34.7577 97.2763 34.9657 97.0505 35.156 96.8001 35.329 96.5229 35.484 96.2164 35.6197 95.878 35.7342 95.5057 35.8253 95.0983 35.8909 94.6539 35.93 94.1782 35.933 93.712 35.8644 93.2832 35.7232 92.661 35.7394 92.0731 35.726 91.5207 35.6654 90.9625 35.573 90.3893 35.4577 89.7986 35.3249 89.1896 35.179 88.5605 35.0239 87.8982 34.8763 87.1077 34.8309 86.3694 34.6823 85.6733 34.4399 85.0346 34.1134 84.3904 33.7841 83.6747 33.5005 82.9202 33.2357 82.1527 32.9697 81.3747 32.7018 80.5874 32.4303 79.7918 32.155 78.9877 31.8762 78.175 31.594 77.3529 31.3087 76.5203 31.0203 75.6761 30.7284 74.8195 30.432 73.9501 30.1301 73.0689 29.8211 72.1779 29.5039 71.2797 29.1784 70.3772 28.8451 69.4728 28.5055 68.5677 28.1621 67.6626 27.817 66.7574 27.4721 65.8519 27.1291 64.9453 26.7888 64.0379 26.4662 26.0672 76.0486 -75.6065 81.1428 3.13263 80.5469 -45.9211 81.556 -7.67926 82.2552 -23.8001 83.3837 -14.4018 84.3662 -12.5822 85.2798 -9.62085 86.1444 -6.91901 87.0205 -4.47869 87.9295 -2.20478 88.8338 -0.0420716 89.7281 1.98577 90.626 3.97012 91.4136 5.99998 92.12 7.92688 92.7946 9.69139 93.4451 11.3321 94.0694 12.8761 94.6668 14.3364 95.2375 15.7229 95.7824 17.0416 96.3024 18.2983 96.798 19.4978 97.2692 20.6442 97.7158 21.7406 98.1368 22.7891 98.5301 23.7897 98.8961 24.7431 99.2308 25.6508 99.5369 26.5053 99.8137 27.3084 100.067 28.0559 100.303 28.7461 100.559 29.3408 100.899 29.7861 101.154 30.2674 101.303 30.7944 101.402 31.3095 101.467 31.7985 101.501 32.2581 101.507 32.687 101.486 33.0855 101.439 33.4547 101.368 33.7962 101.272 34.1117 101.154 34.4028 101.014 34.6714 100.852 34.9193 100.67 35.1483 100.466 35.3601 100.239 35.5559 99.9864 35.7363 99.7048 35.9013 99.3899 36.049 99.0383 36.1769 98.6462 36.2831 98.2079 36.3683 97.7226 36.4183 97.2805 36.3064 96.701 36.3027 96.1524 36.288 95.627 36.2515 95.0992 36.1932 94.5591 36.1132 94.0029 36.0139 93.429 35.8987 92.8359 35.7721 92.2135 35.6463 91.5204 35.5694 90.8077 35.5436 90.1491 35.3409 89.5394 35.0496 88.8939 34.7589 88.179 34.499 87.4282 34.2514 86.6618 34.002 85.8821 33.7494 85.0923 33.4917 84.2937 33.2289 83.4873 32.9614 82.6738 32.6897 81.853 32.4148 81.0243 32.1375 80.1863 31.8582 79.3374 31.5773 78.4753 31.2942 77.5984 31.0069 76.7064 30.7131 75.8015 30.4088 74.8871 30.0928 73.9665 29.7658 73.0419 29.4301 72.1145 29.0894 71.1851 28.7464 70.2539 28.4033 69.3207 28.0623 68.384 27.7255 67.448 27.4021 26.9682 74.013 -66.7458 79.5476 -2.40189 82.2178 -48.5913 83.7192 -9.18064 84.6816 -24.7625 85.8087 -15.5289 86.7909 -13.5645 87.755 -10.5849 88.7291 -7.89313 89.713 -5.46259 90.7235 -3.21523 91.7043 -1.0229 92.6011 1.08901 93.4171 3.15408 94.1174 5.29968 94.8038 7.24054 95.4927 9.00246 96.1672 10.6576 96.819 12.2244 97.4445 13.7108 98.0424 15.125 98.613 16.471 99.1571 17.7541 99.6757 18.9792 100.17 20.1502 100.64 21.2705 101.086 22.3427 101.508 23.3682 101.904 24.3466 102.274 25.281 102.614 26.1652 102.927 26.9953 103.221 27.762 103.536 28.4314 103.944 28.9321 104.257 29.4737 104.458 30.0665 104.606 30.6461 104.718 31.1977 104.798 31.7183 104.849 32.207 104.873 32.6637 104.869 33.089 104.84 33.4842 104.785 33.8508 104.706 34.1903 104.605 34.5046 104.481 34.7954 104.335 35.0646 104.169 35.3145 103.982 35.5471 103.773 35.7651 103.538 35.9711 103.273 36.1667 102.963 36.3591 102.587 36.5523 102.138 36.7323 101.647 36.8591 101.263 36.8032 100.803 36.7662 100.33 36.775 99.8446 36.7738 99.3439 36.7522 98.8289 36.7082 98.2996 36.6425 97.7566 36.5568 97.2 36.4554 96.628 36.3441 96.0271 36.2472 95.3095 36.287 94.7262 36.127 94.1591 35.908 93.5306 35.6781 92.8329 35.4566 92.0969 35.235 91.3396 35.0087 90.5648 34.7768 89.776 34.5382 88.975 34.2928 88.1634 34.0405 87.3426 33.7821 86.5139 33.5184 85.6778 33.2509 84.8343 32.981 83.9819 32.7106 83.1186 32.4406 82.2416 32.1712 81.3475 31.9011 80.436 31.6246 79.5135 31.3313 78.5845 31.0218 77.6497 30.7005 76.7087 30.3712 75.7608 30.0373 74.8058 29.7014 73.8445 29.3646 72.8794 29.0274 71.9158 28.6892 70.9665 28.3513 27.8748 87.3412 -71.894 82.0933 2.84599 84.8431 -51.3411 86.2081 -10.5456 87.1188 -25.6733 88.3358 -16.7459 89.3951 -14.6237 90.4848 -11.6747 91.5509 -8.9592 92.582 -6.49365 93.5397 -4.17299 94.4832 -1.96637 95.3459 0.226328 96.0814 2.41854 96.7938 4.58727 97.5346 6.49976 98.2678 8.26922 98.9799 9.94557 99.6656 11.5386 100.323 13.053 100.952 14.4964 101.551 15.8718 102.122 17.1836 102.665 18.4359 103.183 19.6324 103.677 20.7761 104.15 21.8703 104.6 22.9182 105.026 23.9202 105.429 24.8777 105.808 25.7862 106.169 26.635 106.545 27.3855 107.018 27.9587 107.39 28.56 107.646 29.2181 107.848 29.8642 108.013 30.4813 108.144 31.0661 108.245 31.6176 108.316 32.1356 108.359 32.6207 108.375 33.0737 108.363 33.4957 108.326 33.8882 108.263 34.2527 108.177 34.591 108.067 34.905 107.935 35.1968 107.781 35.4686 107.605 35.7236 107.403 35.9662 107.171 36.203 106.887 36.4514 106.522 36.7237 106.112 36.962 105.729 37.1152 105.418 37.1706 105.085 37.1365 104.673 37.1783 104.229 37.2181 103.762 37.2411 103.273 37.2415 102.765 37.2163 102.242 37.1651 101.709 37.0899 101.176 36.9885 100.648 36.8723 100.051 36.8442 99.5104 36.8271 98.9451 36.6922 98.321 36.5321 97.6409 36.3582 96.926 36.1715 96.1859 35.9751 95.4247 35.77 94.6451 35.5563 93.8491 35.3343 93.0377 35.1041 92.2124 34.8659 91.3743 34.6202 90.5247 34.3681 89.6644 34.1111 88.7934 33.852 87.9093 33.5947 87.0055 33.3444 86.077 33.0996 85.132 32.8461 84.1855 32.5711 83.2405 32.2762 82.2945 31.9679 81.3444 31.6507 80.3883 31.3272 79.426 30.9996 78.459 30.6684 77.4903 30.3334 76.524 29.9936 75.5654 29.6479 74.6158 29.3009 28.8028 87.3396 -78.4804 87.7894 2.39622 86.5895 -50.1412 89.1079 -13.064 89.7861 -26.3515 91.062 -18.0218 92.1668 -15.7285 93.3033 -12.8112 94.3746 -10.0305 95.3892 -7.50829 96.3513 -5.13507 97.2539 -2.86899 98.0432 -0.562909 98.75 1.71175 99.5557 3.78157 100.358 5.69762 101.137 7.49023 101.889 9.19298 102.613 10.8153 103.307 12.3586 103.971 13.8322 104.604 15.2389 105.205 16.5825 105.775 17.8658 106.317 19.0909 106.833 20.2594 107.329 21.3745 107.807 22.4407 108.266 23.4608 108.709 24.4349 109.137 25.3584 109.582 26.1904 110.114 26.8532 110.55 27.5224 110.864 28.2462 111.123 28.9594 111.343 29.6436 111.53 30.2947 111.685 30.9112 111.809 31.4932 111.904 32.0411 111.969 32.5556 112.005 33.0373 112.013 33.4875 111.994 33.9073 111.949 34.2983 111.877 34.6623 111.781 35.0012 111.66 35.3174 111.515 35.614 111.344 35.8951 111.141 36.1687 110.89 36.4536 110.566 36.7755 110.238 37.052 109.947 37.2526 109.682 37.381 109.456 37.3961 109.119 37.4736 108.741 37.5566 108.331 37.6282 107.891 37.6807 107.424 37.7086 106.935 37.7054 106.439 37.6612 105.965 37.5642 105.517 37.4364 105.017 37.3717 104.398 37.4632 103.821 37.4048 103.208 37.3045 102.561 37.18 101.881 37.0374 101.173 36.8797 100.439 36.709 99.6822 36.5269 98.9041 36.3344 98.1061 36.1323 97.289 35.9212 96.4531 35.7017 95.5989 35.4744 94.7268 35.2402 93.8372 35.0007 92.9308 34.7584 92.0084 34.5171 91.0715 34.2813 90.1329 34.0383 89.2038 33.7751 88.2778 33.4971 87.3446 33.2094 86.3992 32.9133 85.4409 32.609 84.4706 32.2975 83.4909 31.9793 82.5048 31.6545 81.5157 31.3225 80.5263 30.983 79.5394 30.6347 78.5567 30.2836 29.779 86.5073 -80.6662 89.6849 -0.781386 89.6068 -50.0631 91.3036 -14.7608 92.43 -27.478 93.7944 -19.3862 94.9972 -16.9312 96.1648 -13.9789 97.252 -11.1177 98.2697 -8.52591 99.2051 -6.07053 99.9774 -3.64132 100.711 -1.29672 101.559 0.864111 102.429 2.91171 103.282 4.84433 104.107 6.66484 104.906 8.39473 105.673 10.0485 106.408 11.6229 107.113 13.1275 107.785 14.5671 108.422 15.9453 109.024 17.2639 109.593 18.5223 110.133 19.7195 110.65 20.8566 111.153 21.938 111.646 22.968 112.137 23.944 112.652 24.8427 113.243 25.5998 113.739 26.3571 114.115 27.1461 114.433 27.9285 114.711 28.6816 114.954 29.4008 115.165 30.0841 115.344 30.7315 115.494 31.3437 115.613 31.9217 115.703 32.466 115.763 32.9776 115.793 33.4573 115.794 33.9062 115.766 34.3258 115.711 34.7175 115.629 35.0836 115.519 35.4267 115.382 35.7508 115.215 36.0624 115.009 36.3748 114.747 36.716 114.479 37.0437 114.239 37.2914 114.021 37.4712 113.86 37.5422 113.599 37.6568 113.292 37.7807 112.952 37.896 112.584 37.9962 112.187 38.0776 111.762 38.1342 111.313 38.1545 110.865 38.1088 110.438 37.9918 109.935 37.9385 109.278 38.029 108.72 38.0211 108.149 37.9764 107.549 37.9042 106.918 37.811 106.256 37.6991 105.565 37.5707 104.847 37.4274 104.103 37.2709 103.335 37.1026 102.543 36.9237 101.729 36.7353 100.893 36.5382 100.034 36.3332 99.1531 36.1209 98.2519 35.9019 97.3337 35.6766 96.4054 35.4454 95.4783 35.2084 94.5579 34.9587 93.6374 34.6956 92.7106 34.4239 91.7727 34.1473 90.8193 33.8666 89.8492 33.5791 88.8644 33.2823 87.8677 32.976 86.8617 32.6604 85.8487 32.3355 84.8307 32.001 83.8096 31.6559 82.7879 31.3053 30.8005 88.4325 -80.0361 94.2492 -6.59807 93.6157 -49.4296 94.7221 -15.8672 95.4922 -28.2481 96.716 -20.61 97.9052 -18.1205 99.0802 -15.1539 100.181 -12.2186 101.177 -9.52229 101.997 -6.88988 102.777 -4.42162 103.658 -2.17771 104.557 -0.0351321 105.465 2.00384 106.352 3.95784 107.213 5.80404 108.046 7.56142 108.856 9.23808 109.639 10.8402 110.392 12.3744 111.111 13.8485 111.79 15.2655 112.429 16.6248 113.03 17.922 113.597 19.1525 114.139 20.3141 114.67 21.4072 115.208 22.4304 115.782 23.3699 116.412 24.2125 116.952 25.0597 117.39 25.9185 117.771 26.7653 118.111 27.5887 118.413 28.3794 118.681 29.1329 118.917 29.8482 119.123 30.5259 119.299 31.1678 119.445 31.7752 119.561 32.3495 119.648 32.8914 119.703 33.4019 119.728 33.8817 119.721 34.3319 119.685 34.7539 119.619 35.1495 119.524 35.5216 119.4 35.8752 119.243 36.2189 119.045 36.5732 118.818 36.9428 118.612 37.2494 118.426 37.4776 118.308 37.5893 118.107 37.7437 117.856 37.9073 117.576 38.061 117.271 38.201 116.941 38.3258 116.586 38.4325 116.204 38.5164 115.795 38.564 115.365 38.5388 114.831 38.5258 114.214 38.5554 113.685 38.5582 113.154 38.5517 112.604 38.5265 112.026 38.4826 111.417 38.4194 110.778 38.338 110.11 38.2394 109.412 38.125 108.687 37.996 107.936 37.8539 107.159 37.7 106.359 37.5354 105.537 37.3606 104.694 37.176 103.833 36.9814 102.959 36.7768 102.073 36.5626 101.179 36.3394 100.279 36.1081 99.3693 35.8683 98.4441 35.6207 97.5009 35.3671 96.5379 35.1104 95.554 34.8505 94.5503 34.5828 93.5329 34.2997 92.5062 34.0028 91.4721 33.6946 90.4311 33.3765 89.3835 33.0487 88.3295 32.7098 87.2698 32.365 31.8534 86.1514 -70.4906 92.5022 -12.9488 95.486 -52.4135 97.2713 -17.6525 98.4718 -29.4486 99.7722 -21.9104 100.933 -19.2809 102.068 -16.2897 103.149 -13.2991 104.027 -10.4003 104.917 -7.77939 105.852 -5.35715 106.778 -3.10395 107.711 -0.967926 108.636 1.07908 109.545 3.04918 110.443 4.90512 111.326 6.67884 112.189 8.37478 113.027 10.0022 113.833 11.5685 114.599 13.0826 115.32 14.5442 115.998 15.9472 116.636 17.2844 117.239 18.5498 117.816 19.7367 118.389 20.8344 118.995 21.8243 119.628 22.7363 120.189 23.6515 120.679 24.5705 121.122 25.4747 121.528 26.3599 121.896 27.2209 122.226 28.0495 122.519 28.839 122.781 29.5868 123.013 30.2938 123.218 30.9632 123.395 31.5982 123.543 32.2012 123.661 32.7733 123.748 33.3151 123.802 33.8272 123.824 34.3101 123.813 34.7647 123.77 35.1925 123.696 35.5963 123.589 35.9815 123.449 36.3592 123.271 36.7511 123.091 37.1229 122.929 37.4115 122.847 37.5594 122.685 37.7512 122.475 37.9539 122.238 38.1441 121.979 38.3196 121.699 38.4811 121.396 38.629 121.065 38.7637 120.7 38.8812 120.277 38.987 119.738 39.0774 119.211 39.0531 118.736 39.0308 118.251 39.0433 117.748 39.0544 117.22 39.0542 116.665 39.038 116.08 39.0043 115.465 38.9529 114.82 38.8843 114.146 38.7992 113.443 38.6985 112.714 38.5834 111.959 38.4551 111.18 38.3145 110.378 38.1618 109.558 37.9969 108.719 37.8195 107.866 37.63 106.999 37.4298 106.117 37.2211 105.22 37.0051 104.306 36.7821 103.374 36.5531 102.417 36.3244 101.429 36.0983 100.416 35.8636 99.3891 35.6095 98.3532 35.3356 97.3096 35.0464 96.2584 34.7457 95.1994 34.4355 94.1318 34.1162 93.0561 33.7856 91.9698 33.4513 32.9251 101.493 -75.7292 95.7931 -7.24912 99.0085 -55.6289 100.352 -18.9955 101.493 -30.5903 102.855 -23.272 103.999 -20.4247 105.034 -17.3245 106.045 -14.3109 107.075 -11.4295 108.094 -8.79859 109.1 -6.36358 110.08 -4.08338 111.049 -1.93755 111.997 0.131736 112.945 2.10102 113.878 3.97136 114.806 5.75127 115.724 7.45658 116.616 9.11055 117.455 10.7297 118.236 12.301 118.972 13.8087 119.673 15.2455 120.348 16.6101 120.997 17.9005 121.625 19.1084 122.249 20.2102 122.874 21.1999 123.454 22.1566 123.983 23.122 124.476 24.0776 124.936 25.0145 125.364 25.9319 125.759 26.8262 126.117 27.6918 126.439 28.5171 126.73 29.2955 126.996 30.0275 127.239 30.7199 127.458 31.3796 127.649 32.0101 127.81 32.6126 127.938 33.187 128.032 33.7329 128.092 34.2505 128.116 34.7403 128.105 35.2035 128.059 35.6426 127.977 36.063 127.859 36.4775 127.713 36.8978 127.569 37.2665 127.512 37.4688 127.384 37.6868 127.205 37.9301 127.001 38.1582 126.777 38.3679 126.535 38.5614 126.274 38.742 125.989 38.9143 125.666 39.0868 125.243 39.3046 124.773 39.4566 124.352 39.4985 123.926 39.4795 123.479 39.4773 123.016 39.5062 122.532 39.5386 122.023 39.5627 121.488 39.5733 120.925 39.5678 120.332 39.5455 119.71 39.5062 119.059 39.4503 118.379 39.3783 117.672 39.2908 116.938 39.1885 116.181 39.0722 115.4 38.9429 114.596 38.8008 113.769 38.646 112.921 38.4781 112.053 38.2979 111.164 38.1103 110.248 37.9216 109.299 37.731 108.321 37.5306 107.321 37.3249 106.312 37.1073 105.303 36.8718 104.293 36.6197 103.275 36.3541 102.244 36.0768 101.201 35.7892 100.144 35.4921 99.0746 35.1858 97.9932 34.867 96.8963 34.5482 34.0105 102.211 -82.8176 102.294 -7.33178 101.263 -54.5979 103.968 -21.7003 104.71 -31.3324 106.02 -24.5818 107.042 -21.4467 108.123 -18.406 109.259 -15.4473 110.413 -12.5829 111.499 -9.8849 112.553 -7.41724 113.569 -5.09939 114.551 -2.91948 115.545 -0.862034 116.535 1.11074 117.543 2.96279 118.548 4.74708 119.498 6.50582 120.368 8.24118 121.159 9.93835 121.908 11.5516 122.64 13.0776 123.359 14.5258 124.067 15.9024 124.761 17.2069 125.438 18.4307 126.1 19.5486 126.724 20.5758 127.307 21.5736 127.849 22.5797 128.356 23.5714 128.829 24.5416 129.269 25.4916 129.676 26.4186 130.053 27.3153 130.405 28.1652 130.741 28.9595 131.064 29.7045 131.369 30.4146 131.649 31.0993 131.899 31.7607 132.114 32.3974 132.293 33.0077 132.436 33.5906 132.541 34.1457 132.607 34.6734 132.635 35.1754 132.624 35.654 132.573 36.114 132.482 36.5689 132.371 37.0089 132.308 37.3294 132.233 37.5435 132.088 37.832 131.915 38.1032 131.721 38.352 131.509 38.5797 131.281 38.7898 131.034 38.9882 130.76 39.189 130.398 39.449 130.017 39.6854 129.667 39.8064 129.305 39.8608 128.909 39.8756 128.475 39.9107 128.019 39.9623 127.542 40.0155 127.043 40.062 126.519 40.0969 125.97 40.1174 125.393 40.1219 124.789 40.1102 124.157 40.0827 123.495 40.0399 122.804 39.9819 122.084 39.9084 121.338 39.8188 120.566 39.7147 119.767 39.5999 118.934 39.4786 118.064 39.3483 117.159 39.203 116.223 39.0468 115.261 38.8831 114.288 38.7042 113.311 38.5078 112.337 38.2986 111.366 38.0786 110.389 37.8479 109.403 37.6064 108.402 37.3545 107.386 37.0928 106.354 36.8214 105.306 36.5403 104.243 36.2493 103.165 35.9443 102.073 35.6408 35.1074 101.629 -85.4309 105.106 -10.8096 104.833 -54.3241 106.759 -23.627 107.959 -32.5321 109.108 -25.7307 110.359 -22.6978 111.533 -19.5798 112.723 -16.6374 113.925 -13.7853 115.064 -11.0237 116.164 -8.51718 117.234 -6.16893 118.296 -3.98152 119.389 -1.95528 120.485 0.0145241 121.546 1.90201 122.489 3.80421 123.337 5.6581 124.1 7.47799 124.852 9.18614 125.609 10.7946 126.366 12.3209 127.116 13.7756 127.855 15.1629 128.581 16.4808 129.292 17.7201 129.981 18.8596 130.641 19.9154 131.259 20.956 131.828 22.0109 132.349 23.0494 132.828 24.0628 133.272 25.0483 133.688 26.0019 134.094 26.9095 134.502 27.7577 134.911 28.5504 135.309 29.3064 135.682 30.0409 136.023 30.7583 136.328 31.4561 136.595 32.1307 136.823 32.7796 137.012 33.4018 137.161 33.9965 137.27 34.5641 137.338 35.1072 137.362 35.6301 137.339 36.1376 137.273 36.635 137.211 37.0708 137.223 37.3168 137.123 37.644 136.992 37.9632 136.836 38.2589 136.659 38.5289 136.463 38.7755 136.25 39.003 136.017 39.2207 135.749 39.457 135.409 39.789 135.118 39.9772 134.822 40.1025 134.498 40.1842 134.118 40.256 133.695 40.333 133.246 40.4118 132.773 40.4882 132.278 40.5577 131.758 40.6168 131.212 40.6626 130.641 40.6934 130.043 40.7082 129.418 40.7078 128.763 40.6945 128.074 40.6711 127.347 40.6359 126.581 40.5843 125.779 40.5172 124.941 40.437 124.076 40.3442 123.192 40.2318 122.296 40.0997 121.39 39.9523 120.481 39.7925 119.565 39.6204 118.637 39.4358 117.696 39.2393 116.743 39.0319 115.776 38.8143 114.796 38.5869 113.801 38.3499 112.79 38.1034 111.764 37.8474 110.723 37.5814 109.667 37.3048 108.598 37.0137 107.518 36.7208 36.2166 103.543 -84.6251 110.049 -17.315 109.495 -53.7704 110.95 -25.0814 111.706 -33.2886 112.859 -26.8834 113.921 -23.7604 115.165 -20.8231 116.389 -17.8615 117.619 -15.0155 118.825 -12.23 119.997 -9.68955 121.154 -7.3253 122.297 -5.12505 123.392 -3.04979 124.446 -1.03944 125.382 0.965673 126.264 2.92242 127.057 4.86485 127.852 6.68266 128.658 8.38111 129.462 9.99056 130.258 11.5246 131.043 12.9902 131.816 14.3906 132.573 15.723 133.315 16.9781 134.037 18.1381 134.735 19.2175 135.387 20.3043 135.989 21.4085 136.544 22.4941 137.058 23.549 137.543 24.5638 138.015 25.5291 138.489 26.4361 138.96 27.287 139.415 28.0951 139.844 28.8769 140.244 29.6415 140.612 30.3904 140.946 31.1213 141.247 31.8306 141.511 32.5154 141.737 33.1757 141.921 33.8123 142.062 34.4235 142.155 35.0135 142.192 35.5931 142.176 36.1537 142.153 36.658 142.218 37.0059 142.205 37.3298 142.149 37.7005 142.059 38.0524 141.942 38.3762 141.799 38.672 141.633 38.9417 141.446 39.1901 141.234 39.4322 140.953 39.7378 140.698 40.0446 140.443 40.2316 140.166 40.3797 139.84 40.51 139.466 40.631 139.053 40.7451 138.611 40.8544 138.14 40.9585 137.643 41.055 137.118 41.1417 136.564 41.2165 135.98 41.2782 135.362 41.3257 134.711 41.3588 134.027 41.3784 133.314 41.3839 132.58 41.3703 131.827 41.3369 131.058 41.2861 130.275 41.2201 129.48 41.14 128.667 41.0446 127.833 40.9335 126.978 40.8069 126.105 40.6661 125.213 40.512 124.304 40.3454 123.376 40.1669 122.431 39.9772 121.468 39.777 120.489 39.566 119.495 39.3438 118.488 39.1104 117.469 38.8664 116.438 38.6123 115.395 38.3476 114.339 38.0701 113.27 37.7894 37.3468 101.695 -74.6093 109.046 -24.666 111.958 -56.6818 113.99 -27.1142 115.366 -34.6638 116.635 -28.1531 117.884 -25.009 118.981 -21.9203 120.233 -19.1131 121.494 -16.277 122.757 -13.4933 123.977 -10.9088 125.165 -8.51305 126.294 -6.25496 127.327 -4.08216 128.274 -1.98655 129.157 0.0822619 130.016 2.064 130.9 3.98043 131.784 5.79916 132.651 7.51343 133.504 9.13756 134.342 10.6873 135.165 12.1666 135.977 13.5788 136.778 14.9219 137.57 16.1858 138.352 17.3566 139.093 18.4764 139.773 19.6246 140.408 20.7726 141.009 21.8936 141.583 22.9756 142.137 24.0094 142.677 24.9893 143.199 25.9138 143.695 26.7907 144.16 27.6302 144.594 28.4433 144.998 29.2369 145.375 30.0134 145.724 30.7727 146.04 31.5145 146.321 32.2343 146.563 32.9341 146.751 33.6239 146.878 34.2962 146.951 34.9406 146.996 35.5485 147.051 36.099 147.139 36.5693 147.259 36.8867 147.291 37.297 147.287 37.7044 147.252 38.0883 147.184 38.4436 147.087 38.7695 146.96 39.068 146.804 39.346 146.611 39.626 146.35 39.9987 146.132 40.2627 145.889 40.4742 145.604 40.665 145.269 40.8444 144.887 41.0138 144.459 41.1725 143.994 41.3198 143.499 41.4537 142.98 41.5734 142.443 41.6791 141.888 41.771 141.317 41.8493 140.729 41.914 140.123 41.965 139.499 42.0023 138.858 42.0253 138.195 42.0325 137.509 42.0231 136.798 41.997 136.064 41.9547 135.307 41.897 134.527 41.8242 133.724 41.7361 132.898 41.6332 132.048 41.5159 131.176 41.3846 130.281 41.2396 129.367 41.0812 128.434 40.9101 127.484 40.7272 126.517 40.533 125.535 40.3253 124.544 40.1017 123.546 39.8642 122.539 39.6201 121.514 39.372 120.465 39.1194 119.381 38.8729 38.5106 119.245 -79.7585 112.986 -18.4076 116.595 -60.2903 117.924 -28.4432 119.231 -35.9715 120.611 -29.5327 121.88 -26.278 123.159 -23.1997 124.277 -20.2312 125.545 -17.5448 126.846 -14.7942 128.069 -12.1316 129.202 -9.64615 130.245 -7.29829 131.22 -5.05699 132.151 -2.91692 133.094 -0.860836 134.036 1.12134 134.998 3.01856 135.941 4.85686 136.855 6.59909 137.751 8.2414 138.63 9.80835 139.496 11.3001 140.357 12.7184 141.222 14.0573 142.093 15.3147 142.938 16.5117 143.695 17.7189 144.395 18.9253 145.058 20.1092 145.694 21.2572 146.31 22.36 146.906 23.4128 147.482 24.4139 148.029 25.3664 148.543 26.2769 149.021 27.1518 149.466 27.999 149.878 28.8249 150.257 29.6336 150.602 30.4283 150.898 31.2185 151.139 31.9931 151.331 32.7423 151.491 33.4637 151.644 34.143 151.801 34.784 151.961 35.388 152.122 35.9383 152.324 36.3679 152.448 36.7621 152.529 37.2156 152.576 37.6581 152.588 38.0758 152.567 38.4653 152.51 38.826 152.418 39.1603 152.284 39.48 152.062 39.8476 151.87 40.1911 151.671 40.4615 151.439 40.7061 151.166 40.9385 150.849 41.1611 150.492 41.3711 150.099 41.5653 149.677 41.7418 149.23 41.9008 148.76 42.0432 148.269 42.1701 147.757 42.2825 147.226 42.3809 146.674 42.4657 146.102 42.5369 145.51 42.5944 144.897 42.638 144.263 42.6671 143.605 42.6811 142.922 42.6795 142.215 42.6622 141.483 42.629 140.727 42.58 139.948 42.5152 139.146 42.4351 138.321 42.3404 137.474 42.232 136.605 42.109 135.717 41.969 134.817 41.8095 133.91 41.6341 132.993 41.4501 132.062 41.2562 131.113 41.0516 130.135 40.8421 129.122 40.6324 128.074 40.4208 126.988 40.2054 125.862 39.9983 39.6895 120.927 -87.2685 120.7 -18.1804 119.83 -59.4202 122.502 -31.1154 123.481 -36.9503 124.886 -30.9373 126.191 -27.5833 127.443 -24.4517 128.7 -21.4879 129.789 -18.6344 130.998 -16.0027 132.216 -13.3502 133.336 -10.7656 134.382 -8.34477 135.394 -6.06859 136.394 -3.91649 137.398 -1.86575 138.386 0.134066 139.365 2.03924 140.328 3.89406 141.274 5.6532 142.206 7.30949 143.131 8.88297 144.06 10.3708 145.004 11.775 145.964 13.0966 146.885 14.3943 147.71 15.6859 148.467 16.962 149.183 18.2099 149.868 19.4239 150.529 20.5959 151.17 21.719 151.791 22.7924 152.387 23.8177 152.953 24.8007 153.483 25.7469 153.974 26.6606 154.424 27.5487 154.824 28.4253 155.161 29.2963 155.443 30.1463 155.697 30.9646 155.951 31.7391 156.214 32.4793 156.485 33.1929 156.75 33.8778 157.002 34.5322 157.239 35.1504 157.467 35.7106 157.7 36.1344 157.859 36.6033 157.982 37.0933 158.071 37.5688 158.126 38.0207 158.144 38.4473 158.121 38.8489 158.049 39.2319 157.888 39.642 157.722 40.0131 157.581 40.3325 157.416 40.626 157.218 40.9046 156.982 41.1735 156.712 41.4316 156.408 41.675 156.073 41.9002 155.709 42.1056 155.319 42.2916 154.902 42.4596 154.461 42.6111 153.996 42.7476 153.507 42.8699 152.995 42.9784 152.458 43.0734 151.898 43.1546 151.314 43.2218 150.706 43.2747 150.075 43.3128 149.419 43.3355 148.738 43.3425 148.034 43.3334 147.306 43.3079 146.556 43.2648 145.789 43.2023 145.009 43.1209 144.215 43.0253 143.408 42.9164 142.584 42.7933 141.737 42.6563 140.858 42.5133 139.942 42.3658 138.987 42.2108 137.992 42.0466 136.96 41.874 135.898 41.6944 134.81 41.5091 133.697 41.319 132.559 41.1359 40.8501 121.145 -90.4252 124.671 -21.7065 124.271 -59.0204 126.432 -33.2761 127.625 -38.1434 129.154 -32.4667 130.575 -29.0042 131.9 -25.7767 133.135 -22.7225 134.316 -19.8156 135.406 -17.0925 136.57 -14.5144 137.753 -11.9487 138.855 -9.44675 139.912 -7.12534 140.938 -4.94246 141.942 -2.86983 142.947 -0.870544 143.946 1.03976 144.966 2.87374 145.965 4.65484 146.948 6.32643 147.948 7.88291 148.982 9.33682 150.009 10.7482 150.951 12.1541 151.809 13.5365 152.607 14.8882 153.361 16.208 154.081 17.4892 154.778 18.7273 155.455 19.9185 156.115 21.0592 156.755 22.1527 157.369 23.204 157.948 24.2209 158.484 25.2111 158.965 26.1799 159.384 27.1293 159.75 28.0595 160.097 28.9493 160.447 29.7967 160.803 30.6084 161.156 31.3865 161.5 32.1347 161.837 32.8564 162.163 33.552 162.476 34.2193 162.774 34.8517 163.055 35.4296 163.29 35.8995 163.488 36.4053 163.654 36.9279 163.784 37.4382 163.877 37.9275 163.924 38.4004 163.895 38.8784 163.808 39.3187 163.737 39.7129 163.674 40.0766 163.59 40.4165 163.475 40.7403 163.325 41.0549 163.138 41.361 162.916 41.6536 162.662 41.9287 162.378 42.1841 162.065 42.4189 161.724 42.6326 161.356 42.8269 160.964 43.0039 160.546 43.1651 160.104 43.312 159.637 43.4452 159.145 43.565 158.629 43.6713 158.087 43.7638 157.52 43.842 156.927 43.905 156.311 43.9517 155.673 43.9807 155.015 43.9911 154.339 43.9837 153.645 43.9595 152.929 43.9184 152.185 43.8648 151.409 43.8017 150.597 43.7282 149.747 43.6434 148.856 43.5469 147.929 43.4404 146.97 43.3243 145.982 43.1991 144.964 43.0644 143.917 42.921 142.842 42.7696 141.74 42.6113 140.613 42.4453 139.473 42.2761 41.9831 123.044 -89.4681 130.321 -28.9832 129.823 -58.5228 131.576 -35.0285 132.492 -39.0601 133.805 -33.7792 135.156 -30.3555 136.47 -27.0902 137.732 -23.9847 138.944 -21.0276 140.084 -18.2322 141.225 -15.6562 142.397 -13.1203 143.556 -10.6052 144.646 -8.21615 145.709 -6.00465 146.757 -3.9182 147.816 -1.9294 148.839 0.0169591 149.859 1.85318 150.908 3.60584 152.005 5.22924 153.129 6.75932 154.174 8.29166 155.121 9.80092 156 11.2759 156.821 12.7147 157.593 14.117 158.313 15.4874 159 16.8025 159.672 18.0549 160.34 19.2503 161.003 20.3969 161.65 21.5051 162.271 22.5832 162.855 23.6368 163.401 24.6656 163.913 25.6679 164.402 26.6397 164.882 27.5794 165.351 28.4812 165.802 29.3448 166.237 30.1733 166.655 30.9693 167.054 31.7348 167.439 32.4717 167.811 33.1806 168.17 33.8599 168.517 34.5052 168.838 35.1082 169.085 35.6522 169.307 36.1835 169.499 36.7363 169.639 37.2973 169.729 37.8381 169.784 38.345 169.842 38.8203 169.897 39.2641 169.932 39.6775 169.945 40.0639 169.931 40.4307 169.881 40.7895 169.793 41.1437 169.666 41.4878 169.502 41.8171 169.303 42.1282 169.068 42.4183 168.802 42.6852 168.506 42.9287 168.182 43.1509 167.832 43.354 167.457 43.5403 167.057 43.7116 166.633 43.8691 166.185 44.0136 165.711 44.1452 165.211 44.2637 164.685 44.3682 164.132 44.4576 163.553 44.5307 162.947 44.5865 162.313 44.6256 161.647 44.6495 160.947 44.659 160.212 44.6542 159.44 44.6363 158.636 44.6062 157.799 44.5644 156.932 44.5113 156.031 44.4473 155.098 44.3738 154.13 44.2917 153.129 44.2001 152.096 44.0975 151.034 43.9836 149.945 43.8578 148.837 43.7194 147.717 43.5658 146.595 43.398 43.0849 121.895 -79.0646 130.201 -37.2885 133.101 -61.4231 135.451 -37.3783 137.117 -40.7258 138.579 -35.2416 139.951 -31.7272 141.263 -28.4029 142.538 -25.2597 143.794 -22.2837 145.015 -19.4528 146.133 -16.7742 147.295 -14.2819 148.492 -11.8021 149.642 -9.36627 150.753 -7.11643 151.825 -4.98958 152.873 -2.97743 153.966 -1.07618 155.077 0.741712 156.259 2.42441 157.396 4.09167 158.426 5.73005 159.381 7.33647 160.276 8.90598 161.112 10.4396 161.876 11.9511 162.58 13.4125 163.273 14.795 163.973 16.1021 164.678 17.3504 165.377 18.5508 166.063 19.7105 166.733 20.8359 167.383 21.9331 168.015 23.0047 168.629 24.0515 169.225 25.0715 169.804 26.0611 170.366 27.0178 170.907 27.9399 171.425 28.8266 171.92 29.6789 172.391 30.4981 172.84 31.286 173.268 32.0434 173.678 32.7707 174.071 33.4671 174.444 34.1316 174.787 34.765 175.071 35.3686 175.298 35.9566 175.497 36.5375 175.688 37.1058 175.874 37.6528 176.045 38.1737 176.198 38.6676 176.328 39.1337 176.433 39.5725 176.509 39.9882 176.546 40.3936 176.542 40.7934 176.502 41.1834 176.431 41.5596 176.328 41.9195 176.196 42.2608 176.032 42.582 175.835 42.8818 175.604 43.1599 175.338 43.4171 175.038 43.6547 174.703 43.8743 174.337 44.0778 173.94 44.2665 173.512 44.4419 173.052 44.6046 172.561 44.7549 172.038 44.8914 171.484 45.0116 170.9 45.1147 170.285 45.2009 169.64 45.271 168.963 45.3263 168.254 45.3678 167.512 45.3964 166.736 45.4128 165.924 45.4176 165.078 45.411 164.196 45.393 163.279 45.3638 162.33 45.3234 161.351 45.2707 160.347 45.2038 159.322 45.1221 158.28 45.0257 157.223 44.9148 156.154 44.7891 155.073 44.6466 153.98 44.4907 44.1731 142.036 -84.1149 135.423 -30.6752 139.238 -65.2384 140.459 -38.5987 142.023 -42.2901 143.524 -36.7426 144.947 -33.1501 146.308 -29.7638 147.62 -26.5717 148.892 -23.5562 150.137 -20.6972 151.351 -17.9888 152.482 -15.413 153.66 -12.98 154.856 -10.5623 156.018 -8.27834 157.163 -6.13431 158.299 -4.1135 159.426 -2.20325 160.61 -0.442191 161.725 1.30913 162.798 3.01833 163.772 4.75694 164.672 6.43616 165.492 8.08549 166.248 9.68443 166.994 11.2048 167.761 12.6455 168.538 14.0176 169.31 15.3303 170.069 16.5918 170.811 17.8088 171.534 18.987 172.239 20.1312 172.925 21.2468 173.595 22.3349 174.251 23.3958 174.894 24.4283 175.522 25.433 176.133 26.4065 176.725 27.348 177.295 28.2569 177.841 29.133 178.362 29.9769 178.859 30.7891 179.332 31.5703 179.782 32.3208 180.208 33.0408 180.608 33.7315 180.977 34.3957 181.31 35.036 181.611 35.6556 181.892 36.2564 182.16 36.8383 182.413 37.3996 182.648 37.9388 182.86 38.4552 183.045 38.9489 183.196 39.4213 183.305 39.8795 183.37 40.3284 183.398 40.7654 183.394 41.1878 183.359 41.5938 183.297 41.9823 183.205 42.3523 183.084 42.7031 182.931 43.0344 182.745 43.346 182.524 43.6383 182.267 43.9118 181.974 44.1676 181.644 44.4069 181.279 44.6315 180.878 44.8432 180.439 45.044 179.96 45.2336 179.444 45.407 178.895 45.5614 178.312 45.6974 177.697 45.8159 177.05 45.918 176.371 46.0049 175.661 46.0777 174.92 46.1372 174.149 46.1839 173.349 46.2181 172.52 46.2399 171.664 46.2492 170.782 46.2457 169.876 46.2292 168.948 46.1993 167.996 46.1553 167.021 46.0969 166.023 46.0236 165.003 45.935 163.962 45.8306 162.9 45.708 161.819 45.5718 45.2733 144.939 -91.883 144.383 -30.1199 143.764 -64.6193 146.24 -41.0741 147.402 -43.4523 148.851 -38.1912 150.266 -34.5651 151.647 -31.1453 152.99 -27.9145 154.292 -24.8582 155.557 -21.9625 156.787 -19.2187 157.999 -16.6246 159.155 -14.1364 160.36 -11.7674 161.566 -9.48445 162.757 -7.3251 163.944 -5.30039 165.134 -3.39328 166.243 -1.55092 167.271 0.280461 168.202 2.08821 169.081 3.87719 169.906 5.61129 170.728 7.26346 171.572 8.84078 172.428 10.3483 173.283 11.7905 174.127 13.174 174.954 14.5037 175.76 15.7851 176.546 17.0232 177.31 18.2228 178.054 19.3877 178.779 20.5215 179.487 21.6266 180.18 22.703 180.858 23.75 181.523 24.7687 182.171 25.7577 182.803 26.7165 183.415 27.6448 184.006 28.5422 184.574 29.4088 185.119 30.2446 185.639 31.0497 186.136 31.8243 186.607 32.569 187.054 33.2853 187.474 33.9756 187.868 34.6418 188.238 35.2856 188.587 35.9078 188.915 36.5095 189.223 37.0918 189.506 37.6555 189.76 38.2016 189.978 38.7309 190.155 39.2448 190.289 39.7452 190.386 40.2315 190.45 40.7016 190.483 41.1544 190.488 41.589 190.464 42.0056 190.412 42.4042 190.331 42.785 190.217 43.148 190.07 43.4933 189.887 43.8211 189.667 44.1314 189.41 44.4245 189.116 44.7012 188.785 44.9626 188.418 45.2105 188.015 45.4471 187.577 45.6708 187.107 45.8771 186.604 46.0649 186.066 46.2349 185.494 46.3878 184.888 46.5244 184.247 46.6455 183.573 46.7517 182.867 46.8435 182.13 46.9213 181.363 46.9852 180.567 47.0353 179.745 47.0718 178.896 47.0945 178.022 47.1033 177.123 47.0982 176.199 47.0787 175.252 47.0446 174.28 46.9953 173.284 46.9306 172.265 46.8497 171.222 46.7513 170.153 46.6407 46.3886 146.289 -95.4231 149.805 -33.6353 149.425 -64.2395 151.638 -43.2868 152.827 -44.6415 154.363 -39.7279 155.838 -36.0397 157.26 -32.5677 158.635 -29.2894 159.968 -26.1907 161.264 -23.259 162.527 -20.4817 163.755 -17.8524 164.985 -15.3661 166.187 -12.9701 167.409 -10.7064 168.615 -8.5311 169.772 -6.45748 170.841 -4.46229 171.814 -2.52371 172.751 -0.656018 173.655 1.18436 174.566 2.96552 175.482 4.69559 176.4 6.34488 177.319 7.92183 178.232 9.43573 179.133 10.8897 180.018 12.2883 180.886 13.636 181.734 14.9376 182.56 16.1974 183.363 17.4192 184.145 18.6062 184.906 19.7603 185.649 20.8838 186.376 21.9757 187.088 23.0377 187.786 24.0705 188.469 25.0746 189.137 26.0494 189.786 26.9951 190.417 27.9114 191.028 28.7981 191.617 29.6552 192.184 30.4824 192.729 31.2798 193.25 32.048 193.747 32.788 194.221 33.5018 194.671 34.1915 195.098 34.8588 195.5 35.5055 195.876 36.1337 196.223 36.745 196.538 37.3408 196.818 37.9217 197.061 38.4875 197.268 39.0379 197.441 39.5725 197.582 40.0906 197.693 40.5906 197.776 41.0714 197.832 41.5329 197.861 41.9767 197.861 42.4038 197.831 42.8148 197.769 43.2102 197.673 43.5897 197.54 43.9534 197.371 44.3009 197.163 44.6322 196.917 44.9474 196.633 45.2467 196.313 45.5309 195.959 45.8007 195.575 46.0547 195.16 46.2917 194.713 46.5125 194.231 46.7168 193.714 46.9046 193.162 47.0768 192.573 47.2339 191.949 47.3758 191.291 47.5024 190.598 47.6139 189.873 47.7103 189.117 47.7916 188.331 47.8579 187.516 47.9094 186.673 47.946 185.804 47.9675 184.909 47.9738 183.989 47.9645 183.044 47.9395 182.076 47.8988 181.083 47.843 180.061 47.7737 179.001 47.7003 47.5166 148.692 -94.3203 156.524 -41.4668 156.089 -63.8041 158.092 -45.2898 159.077 -45.6268 160.429 -41.0796 161.827 -37.4382 163.226 -33.966 164.602 -30.6656 165.95 -27.5391 167.27 -24.579 168.562 -21.774 169.824 -19.1138 171.049 -16.5917 172.269 -14.1895 173.44 -11.8774 174.578 -9.66904 175.654 -7.53397 176.671 -5.47897 177.644 -3.49624 178.583 -1.59558 179.532 0.235271 180.5 1.9981 181.468 3.7277 182.433 5.37957 183.392 6.96314 184.341 8.48608 185.278 9.95275 186.2 11.3668 187.103 12.7327 187.986 14.0547 188.847 15.3364 189.685 16.5807 190.502 17.7897 191.298 18.9644 192.074 20.1071 192.833 21.2171 193.575 22.2954 194.303 23.3425 195.017 24.3612 195.715 25.351 196.398 26.3125 197.063 27.2458 197.711 28.1506 198.34 29.0267 198.948 29.8738 199.536 30.6923 200.101 31.4824 200.644 32.2451 201.164 32.9823 201.659 33.6961 202.129 34.389 202.571 35.0633 202.984 35.7211 203.365 36.3638 203.714 36.9919 204.03 37.6052 204.315 38.2029 204.569 38.7838 204.794 39.3472 204.993 39.8922 205.165 40.4179 205.313 40.9235 205.436 41.4101 205.532 41.8807 205.599 42.3369 205.635 42.7791 205.638 43.2072 205.607 43.6208 205.541 44.0195 205.439 44.4029 205.3 44.7709 205.124 45.1233 204.91 45.4602 204.66 45.7817 204.372 46.088 204.048 46.3787 203.686 46.6534 203.288 46.9105 202.856 47.1492 202.39 47.3711 201.888 47.5785 201.35 47.7718 200.776 47.9495 200.167 48.1116 199.523 48.2579 198.845 48.3882 198.134 48.5024 197.392 48.6005 196.619 48.6824 195.817 48.7481 194.987 48.7974 194.131 48.8298 193.25 48.8454 192.343 48.8461 191.407 48.8349 190.436 48.8138 189.424 48.7859 188.363 48.7613 48.6448 148.608 -83.6524 157.78 -50.6386 160.551 -66.5758 163.249 -47.9874 165.061 -47.4388 166.649 -42.6673 168.116 -38.9053 169.527 -35.3773 170.905 -32.0439 172.258 -28.8917 173.584 -25.9054 174.882 -23.0718 176.146 -20.3779 177.367 -17.8124 178.538 -15.3608 179.67 -13.0094 180.75 -10.7494 181.8 -8.58392 182.825 -6.50306 183.831 -4.50286 184.831 -2.59519 185.838 -0.772328 186.839 0.9979 187.844 2.72276 188.838 4.38512 189.82 5.9808 190.794 7.51261 191.756 8.99073 192.704 10.4188 193.634 11.802 194.545 13.1444 195.433 14.4486 196.297 15.716 197.14 16.9471 197.962 18.1424 198.766 19.303 199.553 20.4303 200.323 21.525 201.078 22.588 201.817 23.6217 202.542 24.6265 203.251 25.603 203.945 26.5518 204.623 27.473 205.283 28.3663 205.925 29.2317 206.548 30.0694 207.151 30.88 207.731 31.6644 208.289 32.4242 208.824 33.1617 209.333 33.8794 209.817 34.5796 210.274 35.2642 210.703 35.9343 211.105 36.5901 211.48 37.2309 211.827 37.8556 212.148 38.4632 212.442 39.0526 212.711 39.6229 212.956 40.173 213.177 40.7027 213.372 41.2157 213.537 41.7154 213.671 42.2026 213.773 42.6771 213.842 43.1384 213.877 43.5858 213.878 44.0186 213.844 44.4364 213.776 44.8389 213.674 45.2261 213.536 45.5981 213.362 45.9549 213.154 46.2969 212.908 46.6241 212.625 46.9364 212.302 47.2332 211.938 47.5141 211.53 47.779 211.08 48.0279 210.592 48.2595 210.068 48.4737 209.509 48.6712 208.914 48.8523 208.286 49.0165 207.625 49.1636 206.932 49.2935 206.208 49.4063 205.454 49.5018 204.671 49.5804 203.858 49.6433 203.011 49.6922 202.127 49.7304 201.202 49.7597 200.235 49.7809 199.225 49.7953 198.174 49.8128 49.7463 171.846 -88.6332 165.009 -43.8006 168.77 -70.3375 169.848 -49.065 171.552 -49.1429 173.174 -44.2898 174.693 -40.4242 176.14 -36.824 177.536 -33.4401 178.893 -30.2481 180.211 -27.2236 181.489 -24.35 182.725 -21.6134 183.916 -19.0033 185.065 -16.5103 186.181 -14.1248 187.273 -11.8414 188.344 -9.6553 189.404 -7.5627 190.455 -5.55458 191.483 -3.62334 192.493 -1.78227 193.503 -0.0119522 194.532 1.69418 195.548 3.3689 196.557 4.97145 197.559 6.51098 198.55 8.00025 199.524 9.44432 200.478 10.8477 201.409 12.2132 202.317 13.5413 203.201 14.8317 204.064 16.0843 204.907 17.2994 205.732 18.4778 206.54 19.6219 207.334 20.7317 208.112 21.8096 208.876 22.8574 209.626 23.8766 210.362 24.8675 211.083 25.8308 211.789 26.7668 212.479 27.6757 213.153 28.5578 213.81 29.4131 214.448 30.2422 215.066 31.046 215.664 31.8262 216.241 32.5848 216.796 33.3243 217.329 34.0467 217.839 34.7538 218.327 35.4466 218.792 36.1253 219.233 36.7894 219.651 37.4378 220.045 38.0691 220.416 38.6819 220.763 39.2757 221.085 39.851 221.377 40.41 221.638 40.9552 221.866 41.4878 222.06 42.0081 222.221 42.5158 222.349 43.0105 222.444 43.4913 222.505 43.9577 222.532 44.4092 222.525 44.8457 222.484 45.2668 222.41 45.6727 222.301 46.0635 222.159 46.4396 221.982 46.8012 221.769 47.1486 221.521 47.4818 221.234 47.8008 220.908 48.1052 220.541 48.3945 220.133 48.6681 219.681 48.925 219.188 49.1644 218.655 49.3853 218.085 49.5872 217.478 49.7706 216.835 49.936 216.157 50.0841 215.443 50.2156 214.692 50.3317 213.901 50.4339 213.071 50.5232 212.2 50.6011 211.291 50.6687 210.344 50.7274 209.361 50.7781 208.345 50.8295 50.7962 176.388 -96.5077 175.536 -42.9479 175.173 -69.975 177.272 -51.164 178.651 -50.5217 180.175 -45.8142 181.662 -41.9107 183.105 -38.2672 184.501 -34.8358 185.846 -31.5935 187.142 -28.5201 188.394 -25.601 189.604 -22.8238 190.779 -20.1782 191.925 -17.656 193.048 -15.2487 194.154 -12.9475 195.246 -10.7467 196.322 -8.63875 197.387 -6.61962 198.444 -4.68034 199.493 -2.83146 200.548 -1.0667 201.583 0.659121 202.639 2.31258 203.673 3.93818 204.691 5.49252 205.695 6.99641 206.679 8.45974 207.642 9.88572 208.58 11.2745 209.497 12.6248 210.393 13.9355 211.271 15.2063 212.132 16.4381 212.978 17.6323 213.808 18.7914 214.624 19.9163 215.425 21.0085 216.213 22.0691 216.989 23.1007 217.752 24.104 218.503 25.0797 219.242 26.0286 219.967 26.9508 220.677 27.8469 221.373 28.7174 222.052 29.5628 222.715 30.3835 223.36 31.1809 223.988 31.9571 224.597 32.7152 225.186 33.4573 225.756 34.1843 226.305 34.8972 226.834 35.5965 227.342 36.2818 227.828 36.9519 228.291 37.606 228.729 38.2434 229.14 38.8647 229.521 39.4708 229.868 40.0624 230.183 40.6406 230.465 41.206 230.714 41.7591 230.93 42.2995 231.114 42.8268 231.264 43.3406 231.382 43.8402 231.466 44.3252 231.516 44.7954 231.532 45.2505 231.515 45.6905 231.463 46.1155 231.377 46.5258 231.256 46.9218 231.101 47.3039 230.91 47.6724 230.683 48.0274 230.42 48.3687 230.118 48.6961 229.777 49.0091 229.396 49.3067 228.973 49.5871 228.509 49.8487 228.005 50.0911 227.461 50.3146 226.878 50.5199 226.254 50.708 225.589 50.88 224.884 51.037 224.138 51.1801 223.351 51.3102 222.524 51.4282 221.658 51.5346 220.755 51.6301 219.818 51.7151 218.852 51.7953 51.7825 179.276 -100.215 182.711 -46.3821 182.536 -69.8006 184.631 -53.2588 185.962 -51.8528 187.49 -47.342 188.975 -43.3958 190.412 -39.7046 191.795 -36.2187 193.122 -32.9204 194.4 -29.7973 195.635 -26.8364 196.836 -24.0251 198.01 -21.3524 199.163 -18.8083 200.297 -16.3835 201.419 -14.069 202.528 -11.8562 203.63 -9.74052 204.723 -7.71252 205.808 -5.76543 206.872 -3.89508 207.918 -2.11268 208.989 -0.412124 210.045 1.25654 211.103 2.88072 212.138 4.45721 213.148 5.9867 214.132 7.47487 215.095 8.92365 216.037 10.3322 216.962 11.6995 217.872 13.0255 218.768 14.3108 219.649 15.5569 220.516 16.7651 221.37 17.9372 222.211 19.0751 223.041 20.1794 223.858 21.2517 224.664 22.2943 225.461 23.3079 226.246 24.2938 227.022 25.2529 227.788 26.1853 228.543 27.0916 229.288 27.9726 230.02 28.8301 230.74 29.6644 231.445 30.4753 232.137 31.2654 232.812 32.0405 233.466 32.803 234.097 33.5529 234.704 34.2905 235.285 35.0153 235.841 35.726 236.371 36.4216 236.876 37.1016 237.353 37.7661 237.802 38.4155 238.222 39.0504 238.613 39.6717 238.974 40.2801 239.303 40.8761 239.603 41.46 239.87 42.0316 240.106 42.5907 240.31 43.1368 240.481 43.6693 240.619 44.1876 240.723 44.6914 240.793 45.1804 240.829 45.6545 240.83 46.1138 240.797 46.5588 240.729 46.99 240.625 47.4079 240.485 47.8125 240.308 48.2041 240.095 48.5823 239.844 48.9466 239.557 49.296 239.235 49.6294 238.876 49.9453 238.482 50.2434 238.049 50.5238 237.577 50.7869 237.064 51.0329 236.509 51.2626 235.912 51.4764 235.274 51.6752 234.595 51.8598 233.874 52.0308 233.113 52.1889 232.314 52.3342 231.477 52.4669 230.606 52.5863 229.706 52.6955 52.7046 182.827 -98.93 190.98 -54.5357 190.709 -69.5296 192.864 -55.4134 194.008 -52.9964 195.366 -48.7001 196.755 -44.7854 198.13 -41.0791 199.469 -37.558 200.769 -34.2199 202.03 -31.0589 203.258 -28.064 204.457 -25.2239 205.632 -22.5276 206.788 -19.9642 207.928 -17.5235 209.055 -15.1957 210.171 -12.9723 211.276 -10.8462 212.376 -8.81253 213.476 -6.86483 214.574 -4.99305 215.658 -3.19696 216.712 -1.46645 217.772 0.19682 218.826 1.82644 219.853 3.43048 220.855 4.98446 221.837 6.49275 222.804 7.95691 223.759 9.37775 224.702 10.756 225.635 12.0928 226.556 13.3896 227.465 14.6478 228.361 15.8687 229.245 17.0533 230.117 18.2031 230.979 19.3182 231.831 20.3996 232.676 21.4494 233.514 22.4691 234.348 23.4603 235.175 24.4252 235.997 25.3633 236.816 26.2734 237.631 27.1573 238.44 28.0215 239.236 28.8682 240.012 29.6986 240.761 30.5171 241.477 31.3245 242.161 32.1187 242.816 32.898 243.444 33.6622 244.048 34.4111 244.63 35.1449 245.188 35.8635 245.722 36.5672 246.232 37.2564 246.716 37.9315 247.173 38.5932 247.603 39.2421 248.004 39.879 248.375 40.5043 248.717 41.1181 249.029 41.7205 249.308 42.3112 249.555 42.8902 249.768 43.4563 249.947 44.0083 250.093 44.5457 250.205 45.0683 250.284 45.5759 250.329 46.0685 250.342 46.5462 250.322 47.0095 250.272 47.4585 250.19 47.8936 250.079 48.3153 249.938 48.7236 249.766 49.1184 249.563 49.4992 249.327 49.8654 249.056 50.2164 248.748 50.5517 248.401 50.8709 248.013 51.174 247.585 51.4613 247.114 51.7331 246.601 51.9897 246.045 52.2316 245.445 52.4591 244.804 52.6727 244.12 52.8725 243.396 53.0585 242.632 53.2302 241.832 53.3866 240.997 53.5301 53.5708 184.438 -88.1501 194.227 -64.3245 196.821 -72.1235 199.861 -58.4528 201.76 -54.8954 203.384 -50.3247 204.849 -46.2502 206.224 -42.454 207.544 -38.8784 208.826 -35.5018 210.075 -32.3077 211.295 -29.2835 212.489 -26.418 213.661 -23.7003 214.816 -21.1194 215.958 -18.6649 217.089 -16.3267 218.212 -14.0957 219.329 -11.9632 220.439 -9.92197 221.537 -7.96302 222.627 -6.08291 223.701 -4.27108 224.76 -2.52542 225.808 -0.851087 226.824 0.809831 227.838 2.41637 228.833 3.98995 229.817 5.50843 230.795 6.97925 231.767 8.40559 232.733 9.78982 233.692 11.1337 234.643 12.4387 235.585 13.706 236.518 14.9361 237.441 16.1295 238.358 17.2869 239.267 18.4087 240.171 19.4952 241.074 20.5471 241.979 21.5643 242.889 22.5499 243.802 23.512 244.713 24.4527 245.612 25.3742 246.487 26.2821 247.331 27.1773 248.142 28.0575 248.919 28.9218 249.665 29.7705 250.386 30.6039 251.083 31.4216 251.758 32.2233 252.411 33.0091 253.043 33.7792 253.654 34.5339 254.243 35.2738 254.811 35.9996 255.355 36.7119 255.876 37.4114 256.37 38.0989 256.837 38.7751 257.275 39.4408 257.682 40.097 258.057 40.744 258.396 41.3807 258.703 42.0042 258.98 42.6134 259.229 43.2069 259.453 43.7849 259.651 44.3478 259.823 44.8958 259.97 45.4292 260.09 45.9482 260.183 46.453 260.249 46.9441 260.285 47.4218 260.293 47.8864 260.27 48.3381 260.217 48.7771 260.132 49.2032 260.015 49.6163 259.864 50.016 259.678 50.4019 259.457 50.7735 259.197 51.1304 258.898 51.4727 258.56 51.8003 258.179 52.1134 257.757 52.4124 257.291 52.6974 256.781 52.9688 256.227 53.2265 255.629 53.4703 254.988 53.7 254.303 53.915 253.576 54.1137 252.807 54.2987 54.3834 211.343 -93.0744 204.391 -57.3725 207.653 -75.3853 208.657 -59.457 210.282 -56.5205 211.858 -51.9011 213.331 -47.7227 214.717 -43.84 216.04 -40.2016 217.317 -36.7785 218.556 -33.5473 219.766 -30.4928 220.95 -27.6025 222.114 -24.8646 223.263 -22.2677 224.398 -19.8006 225.525 -17.4528 226.643 -15.2141 227.754 -13.0746 228.857 -11.0247 229.949 -9.05539 231.022 -7.15579 232.075 -5.32345 233.1 -3.55046 234.09 -1.8415 235.101 -0.201289 236.108 1.40953 237.111 2.98659 238.108 4.51143 239.103 5.98503 240.095 7.41345 241.084 8.80026 242.071 10.1476 243.053 11.4567 244.03 12.7282 245.004 13.9621 245.976 15.158 246.948 16.3146 247.926 17.4307 248.915 18.5066 249.911 19.5509 250.905 20.57 251.883 21.5724 252.836 22.5594 253.759 23.5295 254.651 24.4821 255.515 25.4183 256.353 26.3386 257.168 27.2429 257.959 28.1309 258.727 29.0024 259.473 29.8575 260.199 30.696 260.904 31.518 261.59 32.3236 262.256 33.1133 262.902 33.8878 263.528 34.6479 264.133 35.3947 264.716 36.1291 265.275 36.8521 265.809 37.5648 266.316 38.2685 266.792 38.9643 267.237 39.6521 267.653 40.3283 268.044 40.9892 268.414 41.6342 268.764 42.264 269.092 42.8791 269.397 43.4799 269.678 44.0665 269.934 44.6393 270.165 45.1983 270.37 45.7438 270.547 46.2761 270.695 46.7955 270.815 47.3022 270.905 47.7966 270.964 48.2786 270.993 48.7483 270.99 49.2056 270.956 49.6504 270.89 50.0824 270.79 50.5016 270.656 50.9077 270.486 51.3007 270.278 51.6805 270.031 52.047 269.744 52.4006 269.415 52.7414 269.043 53.0695 268.627 53.385 268.165 53.6877 267.659 53.9773 267.105 54.2533 266.505 54.515 265.858 54.7612 265.162 54.9944 55.1349 218.069 -100.753 216.888 -56.191 216.697 -75.1941 218.221 -60.9817 219.583 -57.8824 220.98 -53.2977 222.361 -49.1042 223.707 -45.1861 225.011 -41.505 226.272 -38.0398 227.497 -34.772 228.691 -31.6867 229.86 -28.7716 231.01 -26.0147 232.145 -23.4031 233.269 -20.9241 234.381 -18.5655 235.482 -16.3152 236.57 -14.1618 237.64 -12.095 238.691 -10.1067 239.726 -8.19084 240.746 -6.34274 241.755 -4.56005 242.754 -2.84029 243.733 -1.18002 244.724 0.41776 245.739 1.97184 246.748 3.50261 247.756 4.97696 248.764 6.40531 249.773 7.79152 250.782 9.13801 251.794 10.4456 252.808 11.714 253.828 12.9424 254.857 14.1287 255.898 15.2731 256.947 16.3823 257.987 17.4662 259.008 18.5297 260.005 19.5737 260.976 20.6007 261.925 21.6104 262.852 22.6028 263.756 23.5777 264.639 24.5354 265.501 25.4765 266.343 26.4012 267.164 27.3096 267.965 28.2015 268.746 29.0766 269.507 29.9348 270.249 30.776 270.973 31.6005 271.677 32.409 272.362 33.2023 273.029 33.9817 273.675 34.7483 274.301 35.5036 274.904 36.2489 275.483 36.9859 276.036 37.7154 276.564 38.4357 277.073 39.1429 277.566 39.8353 278.043 40.5128 278.501 41.1762 278.939 41.8257 279.356 42.462 279.751 43.0851 280.122 43.6954 280.468 44.293 280.789 44.8779 281.082 45.4504 281.347 46.0106 281.584 46.5586 281.792 47.0946 281.97 47.6186 282.118 48.1308 282.235 48.6308 282.322 49.1187 282.378 49.5944 282.403 50.058 282.395 50.5096 282.353 50.9492 282.277 51.3771 282.164 51.7934 282.012 52.1983 281.821 52.592 281.588 52.9746 281.311 53.3461 280.99 53.7063 280.623 54.055 280.208 54.3917 279.746 54.7159 279.234 55.027 278.671 55.324 278.056 55.6097 55.813 223.135 -104.281 226.298 -59.3537 226.394 -75.2901 228.053 -62.6408 229.306 -59.1361 230.629 -54.6201 231.942 -50.4169 233.232 -46.4768 234.494 -42.7662 235.722 -39.2686 236.919 -35.9689 238.087 -32.855 239.233 -29.9168 240.36 -27.1419 241.472 -24.5154 242.57 -22.0224 243.654 -19.6486 244.72 -17.3814 245.768 -15.2096 246.797 -13.1243 247.81 -11.1192 248.809 -9.18979 249.799 -7.33329 250.786 -5.54651 251.771 -3.82565 252.762 -2.17079 253.766 -0.586634 254.762 0.976102 255.774 2.48998 256.79 3.96188 257.808 5.38666 258.832 6.76809 259.861 8.10812 260.9 9.40697 261.95 10.6638 263.013 11.8799 264.082 13.0591 265.147 14.2084 266.197 15.3326 267.228 16.4354 268.239 17.5182 269.232 18.5813 270.206 19.6263 271.163 20.6532 272.103 21.6626 273.026 22.6547 273.932 23.63 274.819 24.5887 275.69 25.5312 276.541 26.4577 277.375 27.368 278.19 28.2616 278.987 29.1376 279.767 29.9962 280.53 30.8376 281.276 31.6628 282.005 32.4729 282.718 33.2695 283.412 34.0542 284.087 34.8283 284.743 35.5925 285.382 36.3473 286.006 37.0915 286.618 37.8236 287.218 38.543 287.804 39.2496 288.373 39.9435 288.925 40.6248 289.456 41.2939 289.967 41.951 290.456 42.5964 290.921 43.2301 291.362 43.8523 291.777 44.4629 292.166 45.0618 292.527 45.6493 292.86 46.2252 293.165 46.7896 293.441 47.3425 293.688 47.8837 293.906 48.4131 294.094 48.9307 294.252 49.4366 294.379 49.9312 294.473 50.4149 294.535 50.8878 294.561 51.3509 294.55 51.8048 294.498 52.2496 294.405 52.6851 294.269 53.1113 294.087 53.5276 293.86 53.9336 293.586 54.3289 293.264 54.7131 292.894 55.086 292.474 55.4471 292.002 55.7959 291.477 56.1354 56.4042 228.738 -102.67 236.719 -67.3346 236.729 -75.3003 238.605 -64.5173 239.722 -60.2527 240.914 -55.8123 242.124 -51.6272 243.33 -47.6822 244.522 -43.9583 245.695 -40.4414 246.845 -37.1187 247.972 -33.9823 249.08 -31.0244 250.17 -28.2321 251.243 -25.5886 252.298 -23.0775 253.334 -20.6845 254.35 -18.398 255.35 -16.2089 256.336 -14.1102 257.313 -12.0966 258.287 -10.1637 259.261 -8.30719 260.237 -6.52293 261.218 -4.80613 262.197 -3.14984 263.167 -1.55718 264.169 -0.0259463 265.187 1.4721 266.209 2.94011 267.236 4.35957 268.273 5.73117 269.323 7.05863 270.384 8.34574 271.451 9.59648 272.516 10.8146 273.573 12.0027 274.617 13.1643 275.648 14.3019 276.665 15.4182 277.669 16.5141 278.659 17.5908 279.636 18.6495 280.599 19.6904 281.547 20.7141 282.481 21.7211 283.399 22.712 284.301 23.6866 285.188 24.6445 286.059 25.5864 286.915 26.5121 287.756 27.4205 288.584 28.3095 289.4 29.1798 290.206 30.0324 291 30.8686 291.782 31.69 292.554 32.498 293.314 33.2939 294.064 34.0784 294.804 34.8524 295.535 35.6164 296.256 36.3704 296.966 37.1138 297.663 37.8465 298.344 38.5681 299.009 39.2786 299.656 39.978 300.283 40.6664 300.89 41.3441 301.475 42.0111 302.038 42.6675 302.577 43.3131 303.092 43.9478 303.582 44.5717 304.047 45.1848 304.485 45.787 304.896 46.3784 305.28 46.9586 305.636 47.5276 305.964 48.0853 306.263 48.6316 306.533 49.1669 306.772 49.6921 306.978 50.2089 307.148 50.7181 307.278 51.2204 307.368 51.7153 307.415 52.2023 307.42 52.6808 307.38 53.1505 307.297 53.6108 307.169 54.0616 306.996 54.5024 306.776 54.9331 306.508 55.3536 306.191 55.7639 305.824 56.1634 305.403 56.5563 56.8904 232.928 -91.8725 242.754 -77.1611 245.318 -77.8639 248.178 -67.3774 249.976 -62.0511 251.445 -57.2811 252.733 -52.9146 253.927 -48.8769 255.073 -45.1041 256.188 -41.5563 257.28 -38.2102 258.351 -35.0539 259.404 -32.0774 260.439 -29.2666 261.454 -26.6044 262.451 -24.0745 263.431 -21.6638 264.395 -19.3622 265.348 -17.162 266.294 -15.0567 267.239 -13.041 268.185 -11.1099 269.136 -9.25828 270.094 -7.48039 271.058 -5.77094 272.034 -4.12505 273.013 -2.53655 273.989 -1.00161 274.987 0.473762 276.016 1.91071 277.049 3.32669 278.092 4.68895 279.138 6.01211 280.184 7.29987 281.226 8.5542 282.263 9.77774 283.293 10.9731 284.314 12.143 285.326 13.2901 286.327 14.4166 287.318 15.5235 288.297 16.6115 289.265 17.682 290.22 18.7357 291.161 19.7727 292.088 20.7944 292.998 21.8016 293.893 22.7913 294.777 23.761 295.653 24.7103 296.527 25.6385 297.402 26.545 298.28 27.4315 299.159 28.3007 300.037 29.1545 300.911 29.9944 301.78 30.8216 302.641 31.6369 303.494 32.4412 304.337 33.2349 305.171 34.0187 305.995 34.7928 306.807 35.5574 307.609 36.3126 308.397 37.0582 309.171 37.7941 309.929 38.5203 310.67 39.2368 311.393 39.9436 312.097 40.6407 312.78 41.328 313.442 42.0054 314.082 42.6728 314.7 43.3299 315.295 43.977 315.866 44.6138 316.412 45.2406 316.933 45.8571 317.429 46.4632 317.898 47.0589 318.339 47.644 318.751 48.2193 319.132 48.7864 319.477 49.3468 319.785 49.901 320.054 50.4487 320.285 50.9897 320.476 51.5237 320.628 52.0502 320.74 52.569 320.811 53.0798 320.84 53.5821 320.825 54.0758 320.767 54.5605 320.664 55.0362 320.515 55.5029 320.318 55.9608 320.072 56.4098 319.773 56.8548 57.253 264.19 -96.6004 257.149 -70.1205 258.99 -79.7046 260.011 -68.398 261.342 -63.3823 262.662 -58.6017 263.897 -54.1488 265.05 -50.0303 266.143 -46.1976 267.196 -42.6085 268.22 -39.2345 269.222 -36.0563 270.205 -33.0599 271.169 -30.2305 272.116 -27.5512 273.048 -25.0066 273.968 -22.5844 274.881 -20.2751 275.79 -18.071 276.699 -15.9656 277.612 -13.9533 278.53 -12.0283 279.456 -10.1844 280.391 -8.41533 281.335 -6.71486 282.287 -5.07704 283.25 -3.49928 284.224 -1.97556 285.2 -0.502356 286.191 0.919652 287.209 2.30891 288.223 3.67431 289.236 4.99887 290.248 6.28841 291.256 7.54576 292.26 8.7736 293.259 9.97451 294.251 11.1511 295.235 12.3057 296.211 13.4407 297.177 14.5581 298.129 15.6587 299.067 16.7442 299.99 17.8133 300.9 18.8623 301.804 19.8905 302.71 20.8957 303.625 21.8762 304.552 22.834 305.491 23.7714 306.439 24.6899 307.393 25.5909 308.349 26.4756 309.304 27.3457 310.257 28.2022 311.205 29.0464 312.147 29.879 313.083 30.7008 314.012 31.5123 314.933 32.314 315.846 33.1063 316.749 33.8894 317.643 34.6637 318.526 35.4294 319.398 36.1863 320.257 36.9347 321.103 37.6745 321.934 38.4058 322.749 39.1284 323.547 39.8425 324.328 40.5476 325.09 41.2437 325.832 41.9305 326.554 42.608 327.254 43.2762 327.933 43.9351 328.589 44.5846 329.222 45.2246 329.83 45.8552 330.411 46.4771 330.964 47.0912 331.485 47.6986 331.971 48.3 332.423 48.8954 332.839 49.4848 333.219 50.0681 333.564 50.6452 333.872 51.2158 334.142 51.7797 334.375 52.3367 334.568 52.8866 334.721 53.4291 334.833 53.964 334.902 54.4912 334.928 55.0106 334.908 55.5224 334.842 56.0267 334.728 56.524 334.564 57.0192 57.4782 273.817 -103.519 272.186 -68.4901 271.856 -79.3743 272.663 -69.2048 273.636 -64.355 274.684 -59.6504 275.741 -55.2052 276.772 -51.0611 277.767 -47.1928 278.73 -43.5721 279.669 -40.1732 280.587 -36.9745 281.488 -33.9604 282.373 -31.1157 283.246 -28.4242 284.11 -25.8712 284.97 -23.4445 285.83 -21.1343 286.691 -18.9327 287.558 -16.8327 288.433 -14.8279 289.317 -12.9118 290.21 -11.0777 291.113 -9.31847 292.026 -7.62757 292.948 -5.99946 293.878 -4.42941 294.818 -2.91513 295.767 -1.45174 296.726 -0.0391094 297.687 1.34829 298.653 2.70772 299.619 4.03271 300.586 5.32219 301.551 6.58031 302.514 7.81036 303.473 9.01539 304.426 10.1983 305.37 11.3622 306.301 12.5095 307.218 13.6405 308.127 14.7506 309.034 15.8369 309.951 16.8966 310.882 17.9307 311.831 18.9413 312.797 19.9296 313.777 20.8965 314.768 21.8435 315.767 22.7722 316.772 23.6842 317.782 24.581 318.794 25.4638 319.806 26.3337 320.817 27.1918 321.824 28.0388 322.828 28.8753 323.827 29.7019 324.82 30.519 325.807 31.3268 326.788 32.1257 327.761 32.9159 328.727 33.6978 329.685 34.4715 330.634 35.2374 331.573 35.9954 332.502 36.7458 333.419 37.4886 334.324 38.2238 335.215 38.9513 336.092 39.6709 336.953 40.3823 337.798 41.0854 338.626 41.7802 339.436 42.4665 340.226 43.1447 340.996 43.8151 341.742 44.4781 342.463 45.1342 343.156 45.7842 343.819 46.4282 344.451 47.0666 345.052 47.6995 345.62 48.3269 346.156 48.9489 346.659 49.5654 347.128 50.1764 347.562 50.7817 347.96 51.3812 348.322 51.9746 348.647 52.5619 348.933 53.1429 349.18 53.7175 349.385 54.2856 349.548 54.8473 349.668 55.4027 349.743 55.9521 349.771 56.4957 349.752 57.0381 57.5519 281.961 -106.27 284.383 -70.9116 284.667 -79.6585 285.58 -70.1183 286.444 -65.2188 287.329 -60.5347 288.219 -56.096 289.101 -51.9431 289.967 -48.0582 290.814 -44.4195 291.645 -41.0044 292.464 -37.7929 293.272 -34.7684 294.071 -31.9153 294.865 -29.2181 295.657 -26.6627 296.45 -24.2375 297.248 -21.9322 298.053 -19.7383 298.869 -17.648 299.695 -15.6542 300.533 -13.7497 301.382 -11.9269 302.242 -10.1786 303.112 -8.4974 303.99 -6.87722 304.874 -5.31333 305.76 -3.80184 306.648 -2.33919 307.533 -0.923688 308.436 0.445044 309.358 1.78498 310.278 3.11339 311.196 4.40389 312.113 5.6636 313.027 6.89666 313.935 8.10681 314.836 9.29767 315.729 10.4693 316.62 11.6183 317.52 12.7399 318.438 13.8331 319.376 14.8991 320.333 15.939 321.309 16.9552 322.301 17.9492 323.308 18.9226 324.328 19.8767 325.358 20.8129 326.398 21.7328 327.444 22.6377 328.496 23.5292 329.552 24.4084 330.609 25.2764 331.667 26.1339 332.724 26.9816 333.779 27.8199 334.832 28.6491 335.882 29.4693 336.928 30.2807 337.97 31.0836 339.008 31.8782 340.041 32.6647 341.069 33.4434 342.092 34.2147 343.108 34.9787 344.118 35.7357 345.121 36.4859 346.116 37.2293 347.101 37.9659 348.077 38.6954 349.041 39.418 349.992 40.134 350.929 40.8436 351.849 41.5469 352.749 42.2445 353.628 42.9364 354.483 43.6228 355.313 44.3039 356.118 44.9799 356.895 45.6509 357.644 46.3171 358.365 46.9785 359.057 47.6353 359.718 48.2874 360.349 48.9349 360.948 49.5776 361.514 50.2154 362.047 50.8484 362.545 51.4763 363.008 52.0992 363.434 52.7169 363.822 53.3294 364.171 53.9365 364.48 54.5384 364.748 55.1351 364.973 55.7269 365.155 56.3136 365.295 56.8987 57.4602 290.659 -103.951 297.653 -77.9055 297.919 -79.9247 298.964 -71.1631 299.771 -66.0252 300.532 -61.2963 301.28 -56.8441 302.016 -52.6791 302.741 -48.783 303.456 -45.134 304.163 -41.7121 304.868 -38.4975 305.571 -35.4719 306.275 -32.6186 306.979 -29.9224 307.687 -27.3707 308.401 -24.9521 309.126 -22.6564 309.861 -20.4741 310.61 -18.3968 311.372 -16.4164 312.147 -14.5247 312.933 -12.7131 313.728 -10.9735 314.53 -9.29937 315.339 -7.686 316.155 -6.12918 316.978 -4.62517 317.809 -3.1703 318.645 -1.75926 319.48 -0.390154 320.324 0.940713 321.185 2.25288 322.047 3.54175 322.909 4.80133 323.77 6.0362 324.63 7.247 325.495 8.43229 326.375 9.58899 327.277 10.7166 328.202 11.8153 329.148 12.8868 330.115 13.9324 331.1 14.9536 332.103 15.9525 333.121 16.9306 334.155 17.8892 335.201 18.8301 336.26 19.7546 337.328 20.6642 338.405 21.5606 339.489 22.4451 340.579 23.3188 341.673 24.1825 342.77 25.037 343.869 25.8827 344.969 26.7197 346.07 27.5481 347.171 28.3681 348.272 29.1796 349.373 29.9829 350.473 30.7782 351.572 31.5656 352.67 32.3455 353.766 33.1182 354.861 33.884 355.954 34.6431 357.044 35.3957 358.13 36.1426 359.212 36.8844 360.286 37.6216 361.349 38.3545 362.4 39.0831 363.436 39.8072 364.456 40.5269 365.459 41.2422 366.442 41.9533 367.404 42.6601 368.346 43.3628 369.264 44.0614 370.159 44.7561 371.029 45.4469 371.873 46.1339 372.692 46.8171 373.483 47.4965 374.245 48.1721 374.979 48.8439 375.683 49.5118 376.355 50.1757 376.996 50.8357 377.603 51.4917 378.177 52.1436 378.715 52.7913 379.216 53.4349 379.681 54.0741 380.107 54.709 380.494 55.3393 380.843 55.9649 381.153 56.5883 57.1915 298.682 -93.3207 307.411 -86.6344 309.697 -82.2111 311.906 -73.3718 313.207 -67.3264 314.102 -62.1913 314.82 -57.5622 315.457 -53.3157 316.055 -49.381 316.636 -45.7153 317.213 -42.2891 317.793 -39.0772 318.378 -36.0573 318.97 -33.2108 319.571 -30.5226 320.18 -27.9803 320.801 -25.573 321.435 -23.2904 322.084 -21.1225 322.746 -19.0598 323.423 -17.0931 324.112 -15.2135 324.812 -13.4127 325.522 -11.6835 326.242 -10.0197 326.972 -8.41626 327.712 -6.869 328.461 -5.37398 329.218 -3.92755 329.985 -2.52655 330.76 -1.16446 331.541 0.159767 332.337 1.45628 333.139 2.74022 333.947 3.9928 334.77 5.21374 335.612 6.40467 336.478 7.5661 337.369 8.69796 338.285 9.80116 339.223 10.8768 340.184 11.9265 341.164 12.9516 342.165 13.9531 343.184 14.9334 344.22 15.8942 345.273 16.837 346.339 17.7634 347.419 18.675 348.51 19.5732 349.611 20.4595 350.721 21.3351 351.839 22.201 352.964 23.0579 354.094 23.9064 355.23 24.7464 356.372 25.5783 357.518 26.4019 358.669 27.2174 359.824 28.0247 360.983 28.824 362.145 29.6156 363.311 30.3995 364.481 31.1762 365.653 31.9458 366.828 32.709 368.004 33.4669 369.179 34.2206 370.351 34.971 371.517 35.7186 372.675 36.4631 373.825 37.2048 374.965 37.9434 376.093 38.679 377.208 39.4116 378.309 40.141 379.395 40.8674 380.465 41.5908 381.516 42.3112 382.549 43.0286 383.562 43.7431 384.554 44.4547 385.525 45.1635 386.472 45.8694 387.396 46.5727 388.295 47.2731 389.169 47.9706 390.015 48.6653 390.834 49.357 391.624 50.0457 392.384 50.7314 393.114 51.414 393.812 52.0934 394.477 52.7694 395.109 53.442 395.707 54.1108 396.271 54.7757 396.8 55.4359 397.295 56.0937 56.7357 334.72 -97.3163 327.386 -79.3004 326.776 -81.6009 327.229 -73.8246 327.857 -67.955 328.471 -62.8045 329.002 -58.0934 329.475 -53.7893 329.917 -49.8224 330.346 -46.1448 330.777 -42.7196 331.215 -39.5154 331.665 -36.5069 332.128 -33.6742 332.607 -31.0011 333.101 -28.4746 333.611 -26.0827 334.135 -23.8151 334.675 -21.6622 335.23 -19.6147 335.8 -17.6634 336.386 -15.7991 336.987 -14.0137 337.603 -12.2996 338.234 -10.6506 338.879 -9.06139 339.537 -7.52723 340.207 -6.04369 340.886 -4.60674 341.573 -3.2131 342.27 -1.86193 342.98 -0.549751 343.711 0.724918 344.48 1.97102 345.265 3.20773 346.075 4.40432 346.91 5.56892 347.773 6.70298 348.664 7.80768 349.58 8.88451 350.522 9.93493 351.488 10.9607 352.476 11.9634 353.485 12.9444 354.513 13.9049 355.56 14.8472 356.625 15.7728 357.705 16.6833 358.799 17.5803 359.907 18.4652 361.028 19.3394 362.159 20.2037 363.301 21.059 364.453 21.9059 365.615 22.7445 366.786 23.575 367.967 24.3975 369.157 25.2119 370.356 26.0184 371.564 26.8171 372.78 27.6081 374.004 28.3915 375.236 29.1678 376.474 29.9378 377.717 30.7026 378.963 31.4634 380.209 32.2212 381.453 32.9763 382.695 33.7291 383.934 34.4798 385.168 35.2285 386.398 35.9753 387.621 36.7202 388.837 37.4631 390.044 38.2041 391.242 38.9432 392.429 39.6804 393.604 40.4158 394.766 41.1493 395.913 41.881 397.046 42.6108 398.162 43.3388 399.26 44.065 400.34 44.7895 401.4 45.5122 402.44 46.2331 403.459 46.9521 404.455 47.6692 405.428 48.3843 406.376 49.0974 407.299 49.8083 408.196 50.517 409.066 51.2233 409.909 51.9271 410.722 52.6282 411.507 53.3265 412.261 54.0218 412.983 54.7134 413.674 55.4029 56.0826 347.637 -102.301 345.144 -76.8082 344.159 -80.6153 343.583 -73.2483 343.515 -67.8871 343.666 -62.9559 343.886 -58.3134 344.114 -54.0171 344.345 -50.0535 344.585 -46.3847 344.838 -42.9726 345.107 -39.7849 345.396 -36.7959 345.707 -33.985 346.041 -31.3349 346.396 -28.83 346.772 -26.4585 347.168 -24.2106 347.583 -22.0772 348.017 -20.0494 348.472 -18.1178 348.946 -16.2733 349.439 -14.5072 349.952 -12.8119 350.482 -11.1811 351.03 -9.60918 351.594 -8.09125 352.174 -6.62367 352.772 -5.20427 353.39 -3.83115 354.029 -2.50156 354.693 -1.21366 355.386 0.0325222 356.105 1.25185 356.864 2.4482 357.655 3.61407 358.476 4.74759 359.328 5.85133 360.209 6.92675 361.118 7.97531 362.054 8.99869 363.016 9.9985 364.003 10.9766 365.013 11.9343 366.045 12.8731 367.097 13.7951 368.168 14.702 369.256 15.5951 370.36 16.4759 371.48 17.3457 372.614 18.2053 373.762 19.0555 374.924 19.897 376.1 20.73 377.29 21.5549 378.493 22.3717 379.71 23.1806 380.94 23.9818 382.183 24.7753 383.439 25.5614 384.706 26.3406 385.984 27.1136 387.27 27.8814 388.563 28.6451 389.861 29.4052 391.162 30.1624 392.466 30.9173 393.772 31.6702 395.079 32.4215 396.387 33.1715 397.696 33.9203 399.003 34.668 400.309 35.4146 401.612 36.1602 402.911 36.905 404.205 37.6488 405.494 38.3919 406.775 39.1343 408.049 39.8759 409.313 40.6167 410.567 41.3568 411.81 42.0961 413.04 42.8347 414.257 43.5725 415.46 44.3096 416.647 45.0458 417.818 45.7811 418.972 46.5154 420.108 47.2485 421.224 47.9805 422.321 48.7113 423.398 49.4408 424.452 50.1689 425.484 50.8955 426.491 51.6206 427.474 52.3442 428.429 53.0662 429.356 53.7863 430.253 54.506 55.2233 359.845 -103.26 360.68 -77.6428 360.359 -80.2945 359.929 -72.8177 359.62 -67.5783 359.441 -62.7775 359.357 -58.2294 359.315 -53.975 359.304 -50.0427 359.321 -46.4014 359.365 -43.016 359.436 -39.8563 359.537 -36.8973 359.67 -34.1175 359.833 -31.4983 360.027 -29.0235 360.249 -26.6809 360.499 -24.4607 360.776 -22.354 361.079 -20.3523 361.407 -18.4461 361.76 -16.6263 362.137 -14.8842 362.538 -13.2122 362.96 -11.6039 363.405 -10.0542 363.874 -8.55978 364.369 -7.11827 364.891 -5.72708 365.444 -4.38374 366.028 -3.08557 366.644 -1.82979 367.291 -0.614409 367.979 0.563408 368.714 1.71411 369.477 2.851 370.272 3.95175 371.101 5.02233 371.963 6.06535 372.855 7.08278 373.778 8.0765 374.728 9.04821 375.705 9.99981 376.706 10.9328 377.731 11.8481 378.778 12.7479 379.846 13.6339 380.934 14.5074 382.041 15.3696 383.165 16.2213 384.307 17.0632 385.467 17.8959 386.644 18.7198 387.839 19.5352 389.051 20.3423 390.281 21.1415 391.529 21.9332 392.793 22.7176 394.073 23.4954 395.367 24.2671 396.674 25.0336 397.992 25.7953 399.321 26.5531 400.658 27.3076 402.004 28.0594 403.357 28.809 404.718 29.5569 406.084 30.3035 407.457 31.0491 408.834 31.7939 410.216 32.5382 411.602 33.2821 412.991 34.0257 414.382 34.7692 415.774 35.5126 417.167 36.2561 418.559 36.9998 419.95 37.7437 421.338 38.4879 422.722 39.2323 424.102 39.9769 425.477 40.7217 426.845 41.4667 428.205 42.2119 429.558 42.9574 430.9 43.7029 432.233 44.4485 433.554 45.194 434.863 45.9395 436.159 46.6848 437.44 47.4301 438.706 48.1753 439.954 48.9205 441.184 49.6656 442.394 50.4106 443.582 51.1557 444.748 51.9008 445.888 52.6459 447.002 53.3927 54.145 372.591 -99.4074 377.109 -82.1617 376.853 -80.0383 376.486 -72.4504 376.055 -67.1472 375.647 -62.3695 375.292 -57.8746 374.985 -53.6679 374.718 -49.7758 374.489 -46.1726 374.299 -42.8257 374.149 -39.7063 374.04 -36.7883 373.972 -34.0496 373.945 -31.4708 373.957 -29.0359 374.009 -26.7323 374.097 -24.5494 374.222 -22.4783 374.38 -20.5102 374.57 -18.6362 374.791 -16.8473 375.042 -15.1351 375.322 -13.4926 375.633 -11.915 375.977 -10.3983 376.356 -8.9389 376.772 -7.53366 377.224 -6.17959 377.714 -4.87379 378.242 -3.61331 378.808 -2.39526 379.41 -1.21678 380.05 -0.0766213 380.731 1.03288 381.459 2.12312 382.223 3.18769 383.023 4.22293 383.856 5.23167 384.723 6.21589 385.622 7.17769 386.551 8.11904 387.509 9.04183 388.494 9.9478 389.504 10.8383 390.537 11.7145 391.593 12.5779 392.671 13.4294 393.771 14.2699 394.892 15.1001 396.035 15.9204 397.2 16.7313 398.386 17.5334 399.594 18.3271 400.823 19.113 402.073 19.8916 403.343 20.6634 404.632 21.429 405.938 22.1889 407.261 22.9439 408.6 23.6946 409.954 24.4415 411.322 25.1853 412.703 25.9265 414.097 26.6658 415.502 27.4035 416.919 28.14 418.347 28.8757 419.785 29.611 421.233 30.3459 422.69 31.0809 424.156 31.816 425.631 32.5515 427.112 33.2876 428.6 34.0244 430.094 34.7621 431.593 35.5008 433.097 36.2406 434.603 36.9815 436.112 37.7235 437.622 38.4667 439.132 39.211 440.643 39.9564 442.152 40.703 443.658 41.4507 445.162 42.1996 446.66 42.9497 448.154 43.7008 449.64 44.453 451.119 45.2064 452.587 45.9612 454.046 46.7172 455.491 47.4746 456.924 48.2334 458.34 48.9938 459.74 49.7557 461.122 50.5192 462.484 51.2844 463.824 52.0526 52.8333 385.299 -88.4908 391.372 -88.2341 392.221 -80.8872 392.729 -72.9585 392.586 -67.0046 392.13 -61.9138 391.585 -57.3292 391.033 -53.1162 390.504 -49.2464 390.013 -45.6823 389.571 -42.3829 389.179 -39.3144 388.839 -36.4484 388.551 -33.7616 388.315 -31.2345 388.13 -28.851 387.995 -26.5974 387.908 -24.4626 387.867 -22.4368 387.868 -20.5115 387.909 -18.6779 387.99 -16.9278 388.109 -15.2545 388.269 -13.6524 388.471 -12.1164 388.715 -10.6423 389.002 -9.22619 389.333 -7.86464 389.708 -6.55445 390.126 -5.29251 390.589 -4.0757 391.094 -2.90093 391.643 -1.76524 392.232 -0.665974 392.867 0.397883 393.547 1.44314 394.268 2.46671 395.027 3.46382 395.823 4.43565 396.654 5.38506 397.518 6.31381 398.413 7.22383 399.338 8.11682 400.292 8.99433 401.273 9.85746 402.28 10.7069 403.314 11.544 404.374 12.3696 405.46 13.1841 406.572 13.9883 407.709 14.7826 408.873 15.5677 410.062 16.3442 411.276 17.1126 412.516 17.8738 413.779 18.6283 415.065 19.3769 416.374 20.1202 417.704 20.8588 419.055 21.5933 420.425 22.3243 421.814 23.0524 423.222 23.778 424.646 24.5018 426.088 25.224 427.546 25.9452 429.021 26.6657 430.511 27.3858 432.016 28.1058 433.536 28.826 435.07 29.5466 436.618 30.2679 438.179 30.9902 439.753 31.7135 441.34 32.4383 442.937 33.1646 444.545 33.8927 446.163 34.6226 447.79 35.3544 449.425 36.0882 451.068 36.824 452.717 37.5619 454.372 38.3019 456.031 39.0441 457.693 39.7886 459.357 40.5354 461.022 41.2845 462.687 42.0359 464.35 42.7897 466.011 43.546 467.667 44.305 469.318 45.0665 470.961 45.8308 472.597 46.5977 474.224 47.3674 475.839 48.1401 477.442 48.9159 479.032 49.6945 480.608 50.4769 51.2772 425.061 -90.4489 417.021 -80.1937 413.183 -77.0496 411.585 -71.3602 410.375 -65.7945 409.32 -60.8592 408.353 -56.3621 407.46 -52.2231 406.619 -48.4054 405.836 -44.8993 405.116 -41.6627 404.46 -38.6585 403.868 -35.8571 403.342 -33.2349 402.879 -30.7724 402.481 -28.4526 402.145 -26.2612 401.868 -24.186 401.648 -22.2169 401.482 -20.3452 401.367 -18.5631 401.303 -16.8639 401.29 -15.2413 401.328 -13.6901 401.417 -12.2051 401.556 -10.782 401.747 -9.41683 401.988 -8.10581 402.279 -6.84559 402.62 -5.63289 403.008 -4.46448 403.445 -3.33714 403.927 -2.24775 404.455 -1.19349 405.025 -0.172315 405.645 0.822699 406.315 1.79671 407.02 2.75869 407.764 3.69234 408.544 4.6048 409.36 5.49819 410.209 6.37429 411.091 7.23461 412.005 8.0804 412.95 8.91265 413.925 9.73165 414.931 10.5382 415.968 11.333 417.035 12.1168 418.133 12.8902 419.262 13.654 420.421 14.4088 421.609 15.1554 422.827 15.8947 424.074 16.6273 425.348 17.3542 426.649 18.0759 427.976 18.7932 429.328 19.5066 430.705 20.2167 432.105 20.924 433.528 21.6291 434.974 22.3323 436.442 23.0341 437.931 23.7348 439.441 24.4349 440.973 25.1346 442.524 25.8342 444.096 26.5342 445.687 27.2347 447.298 27.9361 448.927 28.6386 450.575 29.3425 452.24 30.0481 453.923 30.7557 455.622 31.4654 457.337 32.1774 459.068 32.892 460.813 33.6092 462.572 34.3292 464.344 35.0521 466.128 35.7779 467.923 36.5069 469.728 37.239 471.542 37.9746 473.364 38.7135 475.193 39.4558 477.027 40.2017 478.865 40.9512 480.707 41.7044 482.551 42.4613 484.395 43.2221 486.239 43.9867 488.082 44.7551 489.922 45.5275 491.758 46.3038 493.59 47.0842 495.416 47.8685 497.235 48.6572 49.4679 440.933 -91.8122 436.318 -75.5786 433.362 -74.0934 430.778 -68.7764 428.715 -63.7321 427.001 -59.145 425.509 -54.8703 424.182 -50.8954 422.975 -47.1992 421.864 -43.788 420.84 -40.6391 419.9 -37.7183 419.041 -34.9979 418.262 -32.4553 417.56 -30.071 416.935 -27.8279 416.385 -25.7111 415.907 -23.7081 415.499 -21.8085 415.158 -20.0037 414.881 -18.2865 414.668 -16.6505 414.516 -15.0899 414.425 -13.5994 414.394 -12.1742 414.422 -10.8098 414.507 -9.50214 414.649 -8.24764 414.847 -7.04291 415.098 -5.8846 415.403 -4.7693 415.76 -3.69361 416.166 -2.65424 416.621 -1.64819 417.121 -0.672941 417.672 0.272384 418.266 1.20272 418.908 2.11636 419.59 3.01023 420.311 3.88383 421.07 4.73945 421.866 5.57846 422.698 6.40221 423.567 7.21171 424.472 8.00781 425.412 8.79101 426.389 9.56173 427.401 10.3209 428.448 11.0692 429.531 11.8075 430.649 12.5365 431.8 13.2572 432.985 13.9704 434.203 14.6769 435.453 15.3776 436.734 16.0733 438.045 16.7646 439.386 17.4521 440.756 18.1365 442.155 18.8182 443.581 19.4976 445.035 20.1753 446.516 20.8516 448.023 21.5269 449.556 22.2014 451.115 22.8757 452.7 23.5499 454.31 24.2244 455.944 24.8996 457.603 25.5756 459.287 26.253 460.993 26.9319 462.723 27.6126 464.476 28.2955 466.251 28.9808 468.047 29.6688 469.865 30.3597 471.703 31.0537 473.562 31.751 475.439 32.4519 477.335 33.1563 479.248 33.8646 481.178 34.5768 483.124 35.2932 485.085 36.0138 487.059 36.7387 489.047 37.4679 491.047 38.2017 493.059 38.9399 495.08 39.6829 497.111 40.4305 499.15 41.183 501.196 41.9403 503.249 42.7025 505.307 43.4695 507.369 44.2416 509.435 45.0185 511.503 45.8004 513.573 46.5876 47.4008 456.54 -89.2886 454.271 -73.3096 451.905 -71.7276 449.3 -66.1708 446.892 -61.3245 444.729 -56.9818 442.781 -52.9222 441.02 -49.134 439.424 -45.6033 437.96 -42.3241 436.612 -39.2909 435.37 -36.4769 434.23 -33.8577 433.187 -31.4123 432.238 -29.1217 431.379 -26.9692 430.608 -24.9402 429.923 -23.0225 429.32 -21.2057 428.797 -19.4813 428.353 -17.8422 427.984 -16.2817 427.689 -14.7942 427.463 -13.3741 427.306 -12.0167 427.214 -10.7177 427.185 -9.47351 427.218 -8.28094 427.312 -7.13678 427.465 -6.0376 427.676 -4.97973 427.942 -3.95954 428.261 -2.97365 428.632 -2.01899 429.052 -1.09296 429.518 -0.194002 430.037 0.684152 430.604 1.54868 431.216 2.39895 431.87 3.22911 432.568 4.04207 433.307 4.83918 434.088 5.62143 434.91 6.38969 435.773 7.14473 436.677 7.88723 437.621 8.61735 438.606 9.33625 439.63 10.0449 440.694 10.744 441.795 11.4347 442.935 12.1178 444.111 12.7941 445.324 13.4645 446.571 14.1299 447.854 14.7909 449.17 15.4481 450.52 16.1022 451.903 16.7536 453.318 17.4027 454.766 18.0501 456.245 18.6961 457.756 19.341 459.297 19.9852 460.87 20.6291 462.472 21.2729 464.105 21.9171 465.768 22.5619 467.46 23.2076 469.181 23.8547 470.93 24.5033 472.708 25.1539 474.514 25.8066 476.348 26.4618 478.209 27.1198 480.097 27.7809 482.011 28.4454 483.951 29.1135 485.917 29.7855 487.907 30.4615 489.922 31.1418 491.96 31.8265 494.021 32.5158 496.104 33.2099 498.209 33.909 500.335 34.613 502.481 35.3221 504.646 36.0364 506.83 36.756 509.032 37.4809 511.251 38.2114 513.486 38.9475 515.737 39.6892 518.003 40.4367 520.282 41.1902 522.574 41.9497 524.877 42.7154 527.191 43.4872 529.513 44.2654 45.0735 472.798 -82.8413 472.441 -72.9523 470.206 -69.4922 467.455 -63.4206 464.802 -58.6713 462.29 -54.4692 459.947 -50.5802 457.784 -46.9702 455.797 -43.6164 453.972 -40.4996 452.288 -37.6068 450.734 -34.9226 449.302 -32.4259 447.986 -30.0967 446.782 -27.9168 445.683 -25.8703 444.686 -23.9436 443.788 -22.1249 442.987 -20.4044 442.28 -18.7738 441.663 -17.2255 441.134 -15.7527 440.688 -14.3487 440.322 -13.0078 440.03 -11.725 439.81 -10.4972 439.658 -9.32182 439.574 -8.19652 439.555 -7.11804 439.6 -6.08259 439.706 -5.08622 439.872 -4.12523 440.095 -3.19633 440.373 -2.29668 440.703 -1.42376 441.085 -0.575604 441.522 0.247515 442.008 1.06241 442.546 1.8607 443.132 2.64308 443.766 3.40846 444.447 4.15831 445.174 4.89354 445.949 5.61516 446.77 6.32403 447.636 7.02103 448.547 7.70676 449.501 8.38188 450.498 9.04745 451.538 9.70436 452.619 10.3535 453.741 10.9958 454.903 11.6321 456.104 12.2632 457.345 12.8897 458.623 13.5124 459.939 14.1319 461.293 14.7486 462.684 15.3629 464.111 15.9755 465.574 16.5865 467.074 17.1964 468.609 17.8056 470.18 18.4144 471.786 19.0231 473.427 19.6321 475.102 20.2417 476.812 20.8522 478.556 21.4639 480.333 22.0772 482.144 22.6924 483.988 23.3098 485.865 23.9297 487.775 24.5523 489.717 25.178 491.69 25.8071 493.696 26.4399 495.733 27.0766 497.801 27.7175 499.899 28.3628 502.028 29.0127 504.187 29.6675 506.376 30.3273 508.594 30.9923 510.84 31.6626 513.115 32.3383 515.417 33.0196 517.747 33.7066 520.104 34.3993 522.486 35.0982 524.894 35.8033 527.327 36.5148 529.784 37.2328 532.263 37.9576 534.763 38.6894 537.285 39.4285 539.825 40.175 542.383 40.929 544.958 41.6907 42.4856 488.993 -71.1227 489.391 -73.3502 487.575 -67.6771 485.046 -60.8913 482.296 -55.9213 479.511 -51.684 476.818 -47.8873 474.277 -44.4296 471.911 -41.2502 469.722 -38.3108 467.7 -35.5847 465.83 -33.0524 464.102 -30.6982 462.51 -28.5042 461.046 -26.4526 459.704 -24.5284 458.479 -22.7188 457.367 -21.0132 456.365 -19.4023 455.469 -17.8778 454.675 -16.4319 453.979 -15.0561 453.374 -13.7442 452.858 -12.4909 452.424 -11.291 452.067 -10.1405 451.785 -9.03986 451.576 -7.98762 451.438 -6.98009 451.369 -6.01311 451.365 -5.08268 451.425 -4.18523 451.546 -3.31767 451.727 -2.4774 451.965 -1.66218 452.26 -0.870203 452.609 -0.101004 453.018 0.652858 453.483 1.39543 454.002 2.12457 454.573 2.83701 455.197 3.53463 455.872 4.21847 456.598 4.88947 457.373 5.54853 458.198 6.19654 459.07 6.8342 459.99 7.46209 460.956 8.08133 461.968 8.6928 463.024 9.29732 464.124 9.89571 465.268 10.4887 466.454 11.0771 467.682 11.6614 468.952 12.2422 470.264 12.8201 471.617 13.3956 473.011 13.969 474.446 14.5407 475.921 15.1113 477.436 15.681 478.992 16.2501 480.587 16.8191 482.222 17.3883 483.896 17.9579 485.61 18.5283 487.362 19.0999 489.153 19.6729 490.982 20.2477 492.85 20.8246 494.756 21.4038 496.7 21.9856 498.682 22.5704 500.702 23.1585 502.759 23.7502 504.853 24.3457 506.984 24.9453 509.152 25.5492 511.357 26.1578 513.599 26.771 515.877 27.3893 518.192 28.0127 520.543 28.6416 522.929 29.276 525.351 29.9162 527.809 30.5623 530.301 31.2146 532.827 31.8732 535.386 32.5385 537.979 33.2107 540.604 33.89 543.26 34.5767 545.947 35.2708 548.663 35.9729 551.409 36.6832 554.182 37.402 556.981 38.1296 559.806 38.8659 39.6381 525.184 -69.3431 516.477 -64.6428 509.135 -60.3347 504.295 -56.0514 500.269 -51.896 496.677 -48.0912 493.4 -44.6107 490.384 -41.4136 487.6 -38.4662 485.029 -35.7401 482.656 -33.2117 480.466 -30.8619 478.443 -28.6749 476.574 -26.636 474.852 -24.7304 473.269 -22.9448 471.818 -21.2676 470.494 -19.6891 469.292 -18.2003 468.205 -16.7918 467.229 -15.455 466.356 -14.1833 465.583 -12.9714 464.907 -11.8146 464.324 -10.7079 463.828 -9.64523 463.414 -8.62532 463.077 -7.65139 462.817 -6.71976 462.63 -5.82603 462.514 -4.96637 462.466 -4.13747 462.485 -3.33652 462.569 -2.56118 462.716 -1.80941 462.925 -1.07944 463.194 -0.370039 463.526 0.32058 463.918 1.00342 464.37 1.67262 464.88 2.32782 465.445 2.96902 466.066 3.59746 466.742 4.21407 467.47 4.8198 468.251 5.41553 469.083 6.00205 469.966 6.57972 470.898 7.14957 471.878 7.71243 472.906 8.26907 473.982 8.8202 475.104 9.36648 476.273 9.90854 477.487 10.4469 478.747 10.9821 480.053 11.5147 481.403 12.045 482.799 12.5734 484.239 13.1004 485.724 13.6263 487.253 14.1516 488.827 14.6765 490.445 15.2013 492.107 15.7266 493.812 16.2524 495.561 16.7792 497.354 17.3073 499.19 17.837 501.069 18.3685 502.991 18.9022 504.957 19.4384 506.965 19.9773 509.016 20.5193 511.11 21.0645 513.247 21.6134 515.426 22.1661 517.649 22.7229 519.914 23.2841 522.222 23.8498 524.573 24.4202 526.966 24.9958 529.402 25.5767 531.881 26.1631 534.401 26.7553 536.964 27.3536 539.568 27.958 542.214 28.5688 544.901 29.1864 547.628 29.811 550.396 30.443 553.204 31.0824 556.051 31.7298 558.936 32.3853 561.86 33.0493 564.821 33.7222 567.819 34.4043 570.852 35.0961 573.921 35.7973 36.5358 541.728 -65.8085 533.657 -56.5717 527.332 -54.0098 522.031 -50.7504 517.348 -47.2127 513.147 -43.8901 509.335 -40.7991 505.849 -37.9274 502.645 -35.2625 499.693 -32.7883 496.97 -30.4887 494.457 -28.3487 492.137 -26.3547 489.995 -24.4937 488.018 -22.7535 486.196 -21.1231 484.521 -19.5927 482.985 -18.1532 481.58 -16.7958 480.3 -15.5117 479.139 -14.2937 478.091 -13.1356 477.152 -12.0324 476.317 -10.9796 475.582 -9.97284 474.944 -9.00702 474.396 -8.07754 473.933 -7.18778 473.551 -6.3376 473.247 -5.52277 473.021 -4.73962 472.868 -3.98507 472.788 -3.25646 472.778 -2.55155 472.838 -1.86842 472.963 -1.20539 473.155 -0.561141 473.413 0.0618283 473.736 0.680871 474.123 1.28542 474.571 1.8802 475.079 2.46119 475.645 3.03069 476.27 3.58955 476.951 4.13864 477.688 4.67877 478.479 5.21071 479.324 5.73498 480.221 6.25221 481.17 6.7632 482.171 7.26862 483.222 7.76906 484.323 8.2651 485.475 8.75726 486.676 9.24603 487.926 9.73186 489.225 10.2152 490.574 10.6965 491.971 11.176 493.417 11.6543 494.912 12.1317 496.455 12.6085 498.046 13.0851 499.686 13.5618 501.374 14.0389 503.109 14.5168 504.893 14.9957 506.724 15.4759 508.603 15.9578 510.53 16.4416 512.505 16.9277 514.527 17.4162 516.597 17.9075 518.714 18.4018 520.879 18.8994 523.092 19.4005 525.353 19.9055 527.661 20.4144 530.018 20.9276 532.422 21.4453 534.875 21.9678 537.375 22.4953 539.924 23.0281 542.52 23.5665 545.165 24.1108 547.857 24.661 550.598 25.2176 553.386 25.7807 556.222 26.3506 559.105 26.9277 562.036 27.5122 565.014 28.1044 568.039 28.7047 571.111 29.3133 574.23 29.9307 577.395 30.5573 580.606 31.1933 583.862 31.8392 587.165 32.4946 33.1872 555.497 -58.6895 549.261 -50.3359 543.609 -48.3573 538.137 -45.279 533.085 -42.1604 528.467 -39.2722 524.237 -36.5685 520.349 -34.0398 516.768 -31.6815 513.464 -29.4842 510.412 -27.4368 507.592 -25.5283 504.985 -23.7477 502.575 -22.084 500.349 -20.5272 498.294 -19.0679 496.399 -17.6979 494.655 -16.4091 493.053 -15.1937 491.585 -14.0443 490.246 -12.9543 489.029 -11.9184 487.928 -10.9318 486.939 -9.99053 486.057 -9.09065 485.278 -8.22821 484.599 -7.39878 484.013 -6.60105 483.513 -5.8384 483.099 -5.1085 482.767 -4.40786 482.516 -3.7335 482.342 -3.08293 482.245 -2.45402 482.221 -1.84495 482.27 -1.25413 482.389 -0.680199 482.574 -0.122636 482.831 0.423577 483.153 0.963184 483.542 1.49159 483.994 2.00926 484.508 2.51664 485.083 3.01465 485.717 3.50399 486.411 3.98542 487.162 4.4596 487.97 4.92704 488.834 5.38818 489.753 5.84378 490.727 6.29441 491.756 6.74056 492.838 7.18274 493.974 7.62138 495.163 8.05692 496.405 8.48977 497.7 8.92033 499.048 9.34901 500.447 9.77617 501.9 10.2022 503.404 10.6275 504.96 11.0523 506.568 11.477 508.228 11.9019 509.939 12.3274 511.703 12.7536 513.517 13.1809 515.384 13.6095 517.302 14.0399 519.271 14.4721 521.292 14.9065 523.365 15.3433 525.49 15.7828 527.667 16.2252 529.895 16.6708 532.176 17.1198 534.509 17.5725 536.894 18.029 539.332 18.4896 541.823 18.9546 544.367 19.4241 546.963 19.8986 549.613 20.3783 552.316 20.8633 555.073 21.354 557.884 21.8506 560.748 22.3533 563.666 22.8624 566.638 23.3782 569.665 23.901 572.746 24.4312 575.882 24.9688 579.072 25.5144 582.317 26.0681 585.617 26.6304 588.973 27.2016 592.384 27.782 595.851 28.372 599.375 28.971 29.6056 568.946 -49.2004 563.622 -45.0114 558.26 -42.9955 552.62 -39.6391 547.313 -36.8531 542.388 -34.3468 537.826 -32.0068 533.605 -29.8185 529.698 -27.7754 526.083 -25.8688 522.736 -24.0897 519.637 -22.429 516.766 -20.8775 514.109 -19.4264 511.649 -18.0674 509.374 -16.7928 507.271 -15.5954 505.331 -14.4686 503.543 -13.4057 501.899 -12.4005 500.392 -11.4474 499.015 -10.5417 497.763 -9.67941 496.629 -8.85687 495.609 -8.07082 494.699 -7.31809 493.896 -6.59534 493.194 -5.89918 492.586 -5.23044 492.069 -4.59129 491.64 -3.97883 491.296 -3.39005 491.036 -2.82252 490.856 -2.27419 490.755 -1.74334 490.729 -1.22852 490.777 -0.728489 490.897 -0.242479 491.09 0.230746 491.352 0.700856 491.683 1.1607 492.081 1.61149 492.544 2.05331 493.072 2.48699 493.663 2.91314 494.316 3.33244 495.03 3.74546 495.804 4.15271 496.638 4.55443 497.53 4.9513 498.481 5.34378 499.489 5.7323 500.555 6.11728 501.677 6.49912 502.856 6.87819 504.091 7.25488 505.381 7.62956 506.728 8.0026 508.13 8.37436 509.587 8.74518 511.099 9.11538 512.666 9.48526 514.288 9.85512 515.964 10.2252 517.696 10.5959 519.482 10.9673 521.323 11.3399 523.219 11.7137 525.17 12.0891 527.175 12.4664 529.236 12.8456 531.352 13.2272 533.524 13.6112 535.751 13.998 538.034 14.3877 540.374 14.7805 542.769 15.1768 545.222 15.5767 547.731 15.9805 550.297 16.3883 552.921 16.8005 555.602 17.2172 558.342 17.6388 561.139 18.0655 563.996 18.4975 566.912 18.9349 569.887 19.3781 572.922 19.8274 576.017 20.2829 579.173 20.745 582.391 21.2139 585.67 21.6899 589.011 22.1733 592.415 22.6643 595.882 23.1632 599.413 23.6704 603.009 24.1861 606.67 24.7107 610.398 25.2435 25.809 581.84 -37.5744 576.511 -39.6826 571.074 -37.5585 565.393 -33.9577 559.919 -31.3796 554.753 -29.1806 549.917 -27.1709 545.413 -25.3143 541.227 -23.5894 537.341 -21.9823 533.733 -20.4827 530.386 -19.0819 527.281 -17.7722 524.401 -16.5461 521.73 -15.3967 519.255 -14.318 516.964 -13.304 514.844 -12.3492 512.887 -11.4481 511.082 -10.5959 509.423 -9.78793 507.901 -9.02028 506.512 -8.28954 505.247 -7.5927 504.104 -6.92702 503.075 -6.28994 502.159 -5.67892 501.351 -5.09107 500.645 -4.52421 500.034 -3.98098 499.517 -3.46165 499.09 -2.96314 498.751 -2.48303 498.496 -2.01939 498.323 -1.57067 498.23 -1.13556 498.215 -0.712943 498.274 -0.302016 498.409 0.0961056 498.616 0.493366 498.896 0.881343 499.245 1.26245 499.662 1.63565 500.148 2.00196 500.699 2.3619 501.315 2.71602 501.996 3.06482 502.74 3.40875 503.546 3.74797 504.414 4.08305 505.344 4.4144 506.334 4.74237 507.384 5.06733 508.493 5.38961 509.662 5.70957 510.889 6.02753 512.175 6.34384 513.519 6.6588 514.92 6.97274 516.38 7.28593 517.896 7.59864 519.47 7.91115 521.102 8.22368 522.791 8.53649 524.537 8.8498 526.34 9.16385 528.201 9.47887 530.12 9.79508 532.096 10.1127 534.131 10.4319 536.223 10.753 538.375 11.076 540.584 11.4013 542.853 11.7289 545.182 12.0592 547.57 12.3924 550.018 12.7286 552.527 13.068 555.097 13.4109 557.727 13.7575 560.42 14.1079 563.175 14.4625 565.992 14.8215 568.873 15.185 571.817 15.5532 574.825 15.9264 577.899 16.3048 581.038 16.6885 584.243 17.0779 587.514 17.4732 590.854 17.8746 594.261 18.2823 597.738 18.6966 601.284 19.1177 604.902 19.5458 608.591 19.9812 612.353 20.4242 616.189 20.875 620.099 21.3331 21.82 602.346 -31.5581 593.391 -30.7268 584.507 -28.675 577.428 -26.8789 571.23 -25.1815 565.593 -23.5429 560.409 -21.9869 555.616 -20.5212 551.172 -19.1457 547.047 -17.8571 543.215 -16.6508 539.654 -15.5215 536.346 -14.464 533.273 -13.4729 530.419 -12.543 527.771 -11.6695 525.315 -10.8479 523.039 -10.0737 520.934 -9.34291 518.99 -8.65149 517.198 -7.99597 515.55 -7.37324 514.042 -6.78057 512.664 -6.21555 511.413 -5.67598 510.283 -5.15982 509.269 -4.66509 508.368 -4.18966 507.575 -3.73107 506.883 -3.28946 506.289 -2.86764 505.79 -2.46346 505.381 -2.0745 505.061 -1.69904 504.826 -1.33573 504.674 -0.983459 504.602 -0.641308 504.609 -0.308531 504.692 0.0128545 504.851 0.334192 505.084 0.64789 505.391 0.956014 505.769 1.25785 506.217 1.55406 506.733 1.84509 507.318 2.13139 507.969 2.41336 508.687 2.69138 509.469 2.96564 510.316 3.23652 511.226 3.50437 512.199 3.7695 513.234 4.03221 514.331 4.29279 515.489 4.55152 516.707 4.8087 517.987 5.06458 519.326 5.31943 520.725 5.57348 522.184 5.82697 523.703 6.08011 525.281 6.3331 526.918 6.58613 528.615 6.83942 530.372 7.09313 532.189 7.34747 534.065 7.60261 536.001 7.85874 537.998 8.11602 540.055 8.37462 542.173 8.63472 544.353 8.89649 546.594 9.1601 548.897 9.42574 551.263 9.69359 553.691 9.96385 556.183 10.2367 558.739 10.5123 561.359 10.7908 564.044 11.0725 566.795 11.3574 569.611 11.6459 572.495 11.9381 575.445 12.2341 578.464 12.5342 581.552 12.8385 584.71 13.1472 587.938 13.4606 591.237 13.7786 594.609 14.1017 598.053 14.4299 601.572 14.7635 605.166 15.1026 608.836 15.4474 612.584 15.7982 616.41 16.1552 620.316 16.5185 624.302 16.8885 628.371 17.2646 17.6649 609.389 -23.9575 600.825 -22.163 593.25 -21.1003 586.421 -20.0493 580.138 -18.8985 574.333 -17.7383 568.956 -16.6101 563.966 -15.5308 559.328 -14.5083 555.016 -13.5446 551.004 -12.6388 547.271 -11.7886 543.798 -10.9909 540.567 -10.2422 537.563 -9.53909 534.772 -8.87813 532.18 -8.25601 529.776 -7.66953 527.549 -7.11564 525.489 -6.59151 523.587 -6.09455 521.837 -5.6225 520.229 -5.17331 518.759 -4.74517 517.419 -4.33642 516.205 -3.94552 515.111 -3.57098 514.132 -3.21126 513.266 -2.86452 512.506 -2.52976 511.848 -2.20942 511.288 -1.90298 510.821 -1.6083 510.446 -1.32395 510.159 -1.04885 509.958 -0.782151 509.84 -0.523164 509.803 -0.27136 509.843 -0.0269179 509.962 0.214352 510.158 0.452242 510.429 0.68504 510.774 0.913295 511.19 1.13724 511.678 1.35726 512.236 1.57368 512.862 1.78682 513.557 1.99698 514.318 2.20431 515.146 2.40909 516.038 2.61159 516.996 2.81208 518.017 3.01078 519.102 3.20791 520.25 3.40371 521.46 3.59836 522.733 3.79209 524.067 3.98506 525.463 4.17745 526.921 4.36943 528.44 4.56114 530.02 4.75275 531.662 4.9444 533.365 5.13624 535.13 5.3284 536.956 5.52103 538.844 5.71426 540.795 5.90822 542.808 6.10305 544.884 6.29887 547.023 6.49582 549.225 6.69404 551.491 6.89368 553.822 7.0949 556.218 7.29783 558.679 7.50263 561.206 7.70946 563.8 7.91844 566.461 8.12974 569.19 8.34349 571.988 8.55986 574.855 8.779 577.792 9.00104 580.8 9.22612 583.88 9.45439 587.032 9.68599 590.259 9.92105 593.559 10.1597 596.936 10.4021 600.389 10.6485 603.92 10.8988 607.53 11.1534 611.221 11.4123 614.992 11.6757 618.847 11.9437 622.785 12.2167 626.809 12.4946 630.92 12.7778 635.119 13.0657 13.3726 614.225 -15.5096 606.699 -14.6375 599.714 -14.1152 593.061 -13.3965 586.788 -12.6251 580.917 -11.8676 575.435 -11.1283 570.321 -10.4163 565.552 -9.73898 561.105 -9.09851 556.961 -8.49488 553.1 -7.9271 549.503 -7.39356 546.153 -6.89228 543.035 -6.42113 540.135 -5.97793 537.439 -5.56055 534.936 -5.16691 532.616 -4.79502 530.467 -4.44305 528.482 -4.10931 526.652 -3.79231 524.969 -3.49069 523.427 -3.20325 522.02 -2.92886 520.741 -2.66649 519.585 -2.41514 518.547 -2.17381 517.624 -1.94135 516.811 -1.71667 516.103 -1.50113 515.495 -1.29515 514.984 -1.09721 514.566 -0.906251 514.239 -0.721543 513.999 -0.542506 513.845 -0.368668 513.773 -0.199647 513.782 -0.0353527 513.87 0.125993 514.037 0.285437 514.28 0.441583 514.599 0.594674 514.991 0.744759 515.456 0.892184 515.993 1.03721 516.6 1.18004 517.276 1.32086 518.02 1.45982 518.832 1.59709 519.711 1.73289 520.656 1.86736 521.666 2.00067 522.741 2.13296 523.88 2.26438 525.083 2.39506 526.35 2.52513 527.681 2.65471 529.074 2.7839 530.531 2.91282 532.05 3.04158 533.633 3.17025 535.278 3.29896 536.987 3.42778 538.758 3.55681 540.593 3.68615 542.492 3.81587 544.454 3.94607 546.48 4.07683 548.571 4.20825 550.726 4.34043 552.947 4.47347 555.233 4.60747 557.585 4.74254 560.004 4.87878 562.491 5.0163 565.045 5.1552 567.668 5.29559 570.36 5.43757 573.122 5.58125 575.955 5.72674 578.86 5.87414 581.838 6.02354 584.889 6.17505 588.014 6.32875 591.216 6.48474 594.493 6.64313 597.849 6.804 601.284 6.96745 604.799 7.13358 608.395 7.30248 612.074 7.47427 615.837 7.64906 619.686 7.82695 623.622 8.00807 627.646 8.19251 631.76 8.38041 635.966 8.57191 640.265 8.7667 8.97477 618.63 -7.76678 611.026 -7.03353 604.15 -7.23858 597.55 -6.79698 591.258 -6.33317 585.348 -5.95708 579.805 -5.58538 574.613 -5.22446 569.759 -4.88506 565.226 -4.56535 560.995 -4.26382 557.048 -3.97999 553.367 -3.71311 549.937 -3.46222 546.743 -3.22628 543.769 -3.00424 541.003 -2.79505 538.434 -2.59769 536.05 -2.41118 533.842 -2.23462 531.8 -2.06719 529.916 -1.90814 528.182 -1.75679 526.591 -1.61255 525.137 -1.47486 523.814 -1.34319 522.616 -1.21703 521.538 -1.09586 520.575 -0.979103 519.725 -0.866372 518.982 -0.75822 518.342 -0.65477 517.8 -0.555338 517.353 -0.459427 516.998 -0.366665 516.732 -0.276761 516.553 -0.189471 516.458 -0.104603 516.445 -0.0221241 516.512 0.0589363 516.658 0.139239 516.882 0.217668 517.183 0.294283 517.558 0.369282 518.007 0.442983 518.529 0.515551 519.122 0.587054 519.785 0.657559 520.518 0.727145 521.319 0.795923 522.188 0.864011 523.124 0.931474 524.126 0.998379 525.194 1.06479 526.328 1.13078 527.526 1.19641 528.79 1.26174 530.118 1.32683 531.51 1.39172 532.966 1.45648 534.487 1.52116 536.071 1.5858 537.72 1.65045 539.432 1.71516 541.209 1.77998 543.05 1.84493 544.956 1.91007 546.927 1.97545 548.962 2.0411 551.064 2.10708 553.231 2.17343 555.464 2.24023 557.764 2.3075 560.131 2.37532 562.566 2.44374 565.07 2.5128 567.642 2.58257 570.285 2.6531 572.998 2.72444 575.782 2.79665 578.639 2.86979 581.57 2.94389 584.574 3.01903 587.654 3.09523 590.81 3.17255 594.044 3.25104 597.356 3.33074 600.749 3.4117 604.222 3.49398 607.778 3.57761 611.418 3.66265 615.143 3.74914 618.955 3.83714 622.855 3.92671 626.845 4.01788 630.927 4.11072 635.102 4.20526 639.373 4.30159 643.74 4.39959 4.50383 620.84 613.806 606.568 599.771 593.438 587.481 581.895 576.671 571.786 567.22 562.956 558.977 555.263 551.801 548.575 545.571 542.776 540.178 537.767 535.532 533.465 531.557 529.8 528.187 526.713 525.369 524.152 523.057 522.077 521.211 520.453 519.798 519.243 518.783 518.417 518.14 517.95 517.846 517.824 517.883 518.022 518.239 518.534 518.903 519.346 519.862 520.449 521.106 521.833 522.629 523.493 524.425 525.423 526.488 527.619 528.815 530.077 531.404 532.795 534.252 535.773 537.359 539.009 540.724 542.504 544.349 546.259 548.235 550.276 552.383 554.557 556.797 559.104 561.48 563.923 566.436 569.019 571.672 574.396 577.193 580.063 583.007 586.026 589.121 592.293 595.544 598.875 602.287 605.781 609.358 613.021 616.77 620.607 624.534 628.552 632.663 636.868 641.17 645.569 -2.176e-08 -79.6816 79.6816 -79.6816 -79.6816 -79.6816 -156.022 76.3407 -156.022 -156.022 -156.022 -231.323 75.3007 -231.323 -231.323 -302.043 70.7198 -302.043 -302.043 -302.043 -374.114 72.0716 -374.114 -374.114 -441.875 67.7608 -441.875 -441.875 -441.875 -507.59 65.7153 -507.59 -507.59 -507.59 -573.102 65.5114 -573.102 -573.102 -636.601 63.4995 -636.601 -636.601 -636.601 -695.631 59.0293 -695.631 -695.631 -750.285 54.6541 -750.285 -750.285 -750.285 -803.675 53.3897 -803.675 -803.675 -803.675 -846.12 42.4451 -846.12 -846.12 -886.481 40.3614 -886.481 -886.481 -886.481 -922.869 36.3876 -922.869 -922.869 -922.869 -947.461 24.5922 -947.461 -947.461 -973.028 25.5667 -973.028 -973.028 -973.028 -1033.4 60.3677 -1033.4 -1033.4 -1332.13 298.737 -1332.13 -1332.13 -1332.13 -2366.43 1034.3 -2366.43 -2366.43 -2366.43 -3734.11 1367.68 -3734.11 -3734.11 -5184.92 1450.81 -5184.92 -5184.92 -4971.96 -4758.77 -4546.07 -5835.38 1505.18 -5619.84 -5404.78 -5189.83 -4975.07 -4759.84 -4543.64 -4325.39 -4103.83 -5503.66 1625.53 -5279.67 -5055.72 -4832.07 -4610.52 -4388.23 -4165.36 -3942.68 -3720.28 -5213.56 1723.65 -4984.32 -4754.62 -4525.28 -4295.54 -4065.77 -3836.62 -3606.67 -3376.51 -3146.48 -4710.52 1798.81 -4475.03 -4238.42 -4002 -3765.35 -3528.51 -3290.86 -3053.38 -2816.18 -4423.79 1849.78 -4183.7 -3941.5 -3697.9 -3453.58 -3208.77 -2963.02 -2717.63 -2472.73 -4145.17 1921.87 -3897.62 -3648.4 -3398.94 -3146.47 -2892.95 -2638.27 -2383.05 -2126.08 -3832.44 1966.3 -3573.93 -3313.02 -3051.53 -2787.56 -2523.13 -2255.97 -1986.45 -1713.27 -1436.69 -3325.44 2161.33 -3043.26 -2755.43 -2466.11 -2173.1 -1876.71 -1570.97 -1254.68 -939.631 -2742.93 2093.31 -2537.05 -2344.95 -2344.95 -2979.24 634.292 -3115.62 136.379 -3115.62 -2930.53 -185.087 -2930.53 -2432.19 -498.341 -1979.92 -452.273 -1979.92 -1411.4 -568.515 -983.227 -428.177 -983.227 -632.386 -350.841 -632.386 -324.355 -308.031 -59.7398 -264.615 -59.7399 126.679 -186.419 126.679 285.412 -158.732 437.656 -152.244 437.656 536.598 -98.942 638.63 -102.032 638.63 705.191 -66.5609 705.191 760.743 -55.5518 821.025 -60.2826 821.025 855.086 -34.061 855.086 881.656 -26.5699 911.574 -29.9175 911.574 922.068 -10.4938 940.097 -18.0299 940.097 948.657 -8.56005 948.657 952.083 -3.42525 958.187 -6.1039 958.187 957.7 0.486637 957.7 954.897 2.80318 952.159 2.73736 952.159 945.897 6.26266 940.975 4.92178 940.975 934.921 6.05385 934.921 928.294 6.62731 921.035 7.25895 921.035 912.904 8.13048 912.904 904.133 8.77149 894.457 9.67581 894.457 884.958 9.49947 875.594 9.3635 875.594 867.134 8.45994 867.134 858.361 8.77279 848.889 9.47258 848.889 839.941 8.94774 839.941 830.344 9.59653 820.099 10.2459 820.099 810.749 9.34951 801.518 9.23136 801.518 793.736 7.78144 793.736 8.53534 -20.3873 -44.2536 -20.6148 -33.9347 -20.0814 -35.4741 -22.4353 -46.2537 -21.7043 -33.921 -22.1382 -38.9305 -22.5031 -40.3577 -23.6027 -45.0554 -24.0142 -41.7447 -23.9123 -41.5568 -24.534 -45.1384 -25.6958 -49.8814 -26.1681 -46.4876 -26.0792 -46.2333 -26.736 -50.0869 -27.9721 -55.3309 -28.5107 -51.9099 -28.4377 -51.6829 -29.1464 -55.9104 -30.475 -61.7571 -31.1137 -58.4102 -31.0525 -58.1486 -31.8089 -62.7829 -33.2274 -69.328 -33.9704 -66.1321 -33.9615 -65.9481 -34.7721 -71.048 -36.2613 -78.2512 -37.1512 -75.4315 -37.225 -75.4305 -38.0698 -80.9282 -39.6195 -88.9299 -40.7009 -86.8152 -40.8642 -86.9796 -41.7463 -93.0077 -43.3491 -101.949 -44.6568 -100.752 -44.922 -101.263 -45.8441 -107.948 -47.4548 -117.958 -49.0444 -118.036 -49.4285 -119.193 -50.3816 -126.726 -51.9498 -138.002 -53.8716 -139.994 -54.3883 -142.155 -55.3852 -150.957 -56.8829 -163.762 -59.1274 -168.31 -59.7721 -172.083 -60.8146 -182.737 -62.2083 -197.521 -64.7031 -205.476 -65.453 -211.757 -66.4914 -225.024 -67.6978 -242.532 -70.285 -254.952 -71.0319 -265.056 -71.9228 -282.048 -72.7276 -303.404 -75.0967 -321.682 -75.5639 -337.414 -75.9649 -359.576 -75.8567 -386.06 -77.3949 -411.906 -76.9028 -434.946 -76.0191 -463.64 -74.1735 -496.113 -73.5726 -529.816 -70.8122 -560.34 -67.1803 -593.922 -62.2554 -629.533 -57.3785 -664.01 -50.9011 -696.703 -43.4373 -724.141 -35.1646 -748.981 -26.6835 -769.092 -17.775 -783.941 -791.402 -19.7137 -42.9253 -20.415 -33.2334 -20.2066 -35.6825 -22.3327 -44.1276 -21.7591 -34.4947 -22.1485 -38.5411 -22.5092 -39.997 -23.693 -43.8716 -23.9746 -41.4631 -23.9953 -41.5362 -24.5116 -44.6221 -25.8031 -48.5899 -26.1423 -46.1484 -26.166 -46.2096 -26.7164 -49.5364 -28.1106 -53.9368 -28.5087 -51.5117 -28.5367 -51.6549 -29.1275 -55.3196 -30.6377 -60.2469 -31.1193 -57.9286 -31.1606 -58.1073 -31.7976 -62.1459 -33.4363 -67.6893 -34.0142 -65.5542 -34.0781 -65.8843 -34.7748 -70.3513 -36.5368 -76.4892 -37.2226 -74.7457 -37.3296 -75.3235 -38.0843 -80.1735 -39.9684 -87.0458 -40.797 -85.9866 -40.959 -86.8176 -41.7787 -92.188 -43.7898 -99.9384 -44.778 -99.7636 -45.0167 -101.025 -45.9066 -107.058 -48.0336 -115.831 -49.1896 -116.88 -49.5297 -118.853 -50.4904 -125.766 -52.705 -135.787 -54.0444 -138.655 -54.5073 -141.692 -55.5537 -149.91 -57.8203 -161.496 -59.342 -166.788 -59.9351 -171.49 -61.0627 -181.61 -63.3168 -195.267 -64.9961 -203.797 -65.7005 -211.053 -66.8512 -223.874 -68.9693 -240.413 -70.7079 -253.213 -71.4241 -264.34 -72.4446 -281.028 -74.1641 -301.685 -75.7126 -320.134 -76.1694 -336.957 -76.6997 -359.046 -77.4578 -385.302 -78.218 -411.146 -77.7133 -435.451 -76.9414 -464.412 -75.9016 -497.153 -74.8097 -530.908 -71.9223 -563.228 -68.1868 -597.657 -63.8112 -633.909 -58.7958 -669.026 -52.4279 -703.071 -44.5588 -732.01 -35.9057 -757.634 -27.1462 -777.851 -18.7079 -792.379 -802.328 -20.1481 -41.7788 -20.4773 -32.9042 -20.376 -35.7838 -22.2022 -42.3014 -21.7991 -34.8977 -22.2163 -38.1238 -22.6374 -39.5759 -23.6193 -42.8897 -23.9792 -41.1031 -24.1007 -41.4147 -24.6696 -44.0531 -25.7286 -47.5309 -26.1402 -45.7368 -26.2835 -46.0663 -26.8896 -48.9303 -28.0296 -52.7969 -28.4921 -51.0492 -28.6645 -51.4825 -29.3223 -54.6618 -30.562 -59.0073 -31.1019 -57.3887 -31.3033 -57.9059 -32.0119 -61.4374 -33.3559 -66.3453 -33.9801 -64.9299 -34.2351 -65.6293 -35.0069 -69.5795 -36.4504 -75.0457 -37.1882 -74.0079 -37.519 -74.9926 -38.3434 -79.3491 -39.8876 -85.5016 -40.7732 -85.1011 -41.1847 -86.4061 -42.0699 -91.3028 -43.7226 -98.2858 -44.7743 -98.7119 -45.2803 -100.519 -46.2323 -106.106 -47.9813 -114.082 -49.2244 -115.637 -49.8388 -118.239 -50.8574 -124.747 -52.6785 -133.966 -54.142 -137.191 -54.8749 -140.959 -55.9747 -148.811 -57.8448 -159.625 -59.5259 -165.107 -60.375 -170.64 -61.5509 -180.434 -63.4347 -193.383 -65.2883 -201.943 -66.2278 -210.113 -67.4265 -222.675 -69.2427 -238.597 -71.1356 -251.32 -72.0609 -263.415 -73.1281 -279.96 -74.6903 -300.123 -76.364 -318.46 -77.0184 -336.303 -77.5811 -358.483 -78.4579 -384.425 -79.4363 -410.167 -79.1528 -435.734 -78.3685 -465.197 -77.3653 -498.156 -76.2473 -532.026 -73.7535 -565.722 -70.1686 -601.242 -65.5925 -638.485 -60.1151 -674.503 -53.6255 -709.561 -45.8094 -739.826 -36.9706 -766.473 -27.7543 -787.067 -18.7665 -801.367 -811.863 -20.0156 -40.7799 -20.4377 -32.4821 -20.5171 -35.7044 -22.102 -40.7165 -21.865 -35.1348 -22.2861 -37.7027 -22.6935 -39.1685 -23.6384 -41.9448 -24.0008 -40.7407 -24.2082 -41.2073 -24.7205 -43.5409 -25.749 -46.5025 -26.1665 -45.3192 -26.3977 -45.8351 -26.9497 -48.3783 -28.061 -51.6855 -28.5353 -50.5749 -28.7937 -51.2241 -29.3934 -54.0622 -30.6009 -57.7997 -31.1526 -56.837 -31.446 -57.6125 -32.0992 -60.7841 -33.4139 -65.0306 -34.0534 -64.2904 -34.3949 -65.2877 -35.115 -68.8594 -36.5373 -73.6235 -37.2777 -73.2675 -37.6876 -74.5827 -38.4743 -78.5624 -40.0074 -83.9684 -40.8779 -84.2305 -41.3671 -85.9169 -42.2304 -90.4396 -43.8815 -96.6346 -44.8981 -97.6953 -45.4847 -99.932 -46.4326 -105.158 -48.1969 -112.318 -49.3716 -114.462 -50.0744 -117.536 -51.1081 -123.713 -52.9699 -132.105 -54.3253 -135.836 -55.1557 -140.129 -56.284 -147.682 -58.2266 -157.683 -59.7761 -163.558 -60.7427 -169.674 -61.9641 -179.212 -63.9443 -191.403 -65.6658 -200.222 -66.7433 -209.036 -68.0046 -221.414 -69.9344 -236.667 -71.7263 -249.529 -72.8137 -262.327 -73.9686 -278.805 -75.6373 -298.454 -77.2169 -316.88 -78.0445 -335.475 -78.7471 -357.78 -79.6632 -383.509 -80.4307 -409.4 -80.3203 -435.845 -79.7365 -465.78 -78.8779 -499.015 -77.5588 -533.345 -75.0808 -568.2 -71.5421 -604.781 -67.0705 -642.957 -61.4846 -680.089 -54.8071 -716.238 -46.7667 -747.867 -37.7854 -775.454 -28.2886 -796.564 -18.291 -811.364 -820.805 -20.1094 -39.6591 -20.4488 -32.1426 -20.6507 -35.5025 -22.0254 -39.3418 -21.9159 -35.2442 -22.3246 -37.2941 -22.7724 -38.7207 -23.6284 -41.0889 -24.0127 -40.3564 -24.2764 -40.9437 -24.8122 -43.005 -25.7448 -45.5699 -26.1802 -44.8838 -26.4746 -45.5407 -27.0509 -47.802 -28.0621 -50.6744 -28.5491 -50.0879 -28.8802 -50.893 -29.5072 -53.4352 -30.612 -56.695 -31.1715 -56.2775 -31.5452 -57.2388 -32.2267 -60.1026 -33.4341 -63.8231 -34.0764 -63.6482 -34.5085 -64.8557 -35.2579 -68.1099 -36.5693 -72.3121 -37.3136 -72.5232 -37.8227 -74.0737 -38.64 -77.7451 -40.0585 -82.55 -40.9319 -83.3571 -41.5284 -85.3203 -42.4252 -89.5428 -43.9609 -95.0989 -44.9783 -96.6779 -45.6785 -99.2318 -46.6636 -104.173 -48.3174 -110.664 -49.4922 -113.287 -50.3139 -116.714 -51.3927 -122.635 -53.1564 -130.341 -54.5112 -134.481 -55.4681 -139.172 -56.6522 -146.498 -58.5156 -155.819 -60.0465 -162.027 -61.1391 -168.581 -62.4261 -177.925 -64.3533 -189.476 -66.0376 -198.537 -67.245 -207.828 -68.5905 -220.068 -70.4962 -234.762 -72.2368 -247.788 -73.4588 -261.105 -74.7199 -277.544 -76.4062 -296.768 -77.953 -315.333 -78.9174 -334.511 -79.7395 -356.958 -80.7303 -382.518 -81.4932 -408.637 -81.5146 -435.823 -81.0546 -466.24 -80.2862 -499.783 -78.9549 -534.677 -76.5525 -570.602 -73.0773 -608.256 -68.5963 -647.438 -62.9145 -685.771 -56.0769 -723.076 -47.8631 -756.081 -38.6578 -784.66 -28.8676 -806.354 -18.8601 -821.372 -829.419 -20.1375 -38.6821 -20.471 -31.8092 -20.7719 -35.2016 -21.9576 -38.1561 -21.9768 -35.2251 -22.3869 -36.884 -22.8388 -38.2687 -23.6324 -40.2953 -24.0409 -39.9479 -24.3593 -40.6252 -24.8847 -42.4796 -25.7517 -44.7029 -26.2118 -44.4237 -26.5646 -45.188 -27.1336 -47.2329 -28.0755 -49.7325 -28.5887 -49.5747 -28.9814 -50.5003 -29.6037 -52.8129 -30.6336 -55.6651 -31.2178 -55.6933 -31.6588 -56.7978 -32.3404 -59.421 -33.4681 -62.6954 -34.1333 -62.983 -34.6374 -64.3515 -35.3924 -67.3549 -36.6204 -71.0841 -37.3829 -71.7607 -37.9688 -73.4878 -38.7993 -76.9146 -40.1328 -81.2164 -41.0185 -82.4714 -41.6971 -84.6417 -42.6149 -88.6251 -44.0654 -93.6484 -45.0897 -95.6535 -45.8769 -98.4446 -46.892 -103.158 -48.4631 -109.093 -49.6393 -112.111 -50.5512 -115.802 -51.6711 -121.515 -53.3571 -128.655 -54.7048 -133.133 -55.7562 -138.121 -56.994 -145.26 -58.7894 -154.024 -60.311 -160.505 -61.5066 -167.386 -62.8602 -176.572 -64.7397 -187.596 -66.4119 -196.865 -67.7284 -206.512 -69.1552 -218.641 -71.0418 -232.875 -72.7724 -246.057 -74.1106 -259.767 -75.4723 -276.183 -77.1756 -295.064 -78.7225 -313.787 -79.8102 -333.423 -80.7547 -356.014 -81.8037 -381.469 -82.5822 -407.858 -82.7265 -435.679 -82.3988 -466.568 -81.7106 -500.472 -80.3902 -535.997 -78.054 -572.938 -74.6359 -611.674 -70.154 -651.919 -64.3887 -691.536 -57.3888 -730.076 -48.9832 -764.486 -39.5397 -794.103 -29.4268 -816.467 -18.7266 -832.072 -838.549 -20.1856 -37.6945 -20.4894 -31.5054 -20.8766 -34.8144 -21.9085 -37.1242 -22.0292 -35.1044 -22.4395 -36.4737 -22.9046 -37.8036 -23.6397 -39.5602 -24.0677 -39.5199 -24.4292 -40.2637 -24.9583 -41.9505 -25.7625 -43.8987 -26.2425 -43.9437 -26.6424 -44.788 -27.2169 -46.6585 -28.0912 -48.8581 -28.6252 -49.0407 -29.07 -50.0555 -29.6996 -52.1833 -30.6575 -54.7071 -31.2619 -55.0889 -31.7598 -56.2999 -32.4514 -58.7294 -33.5025 -61.6444 -34.1877 -62.2977 -34.7533 -63.7859 -35.5211 -66.5872 -36.6695 -69.9357 -37.4512 -70.979 -38.1017 -72.8372 -38.9503 -76.066 -40.203 -79.9637 -41.1046 -81.5698 -41.8524 -83.894 -42.7942 -87.6833 -44.1639 -92.2787 -45.2009 -94.6165 -46.0616 -97.5839 -47.1081 -102.112 -48.6011 -107.6 -49.7866 -110.926 -50.7759 -114.813 -51.9363 -120.354 -53.552 -127.039 -54.9049 -131.78 -56.038 -136.988 -57.3261 -143.972 -59.0635 -152.287 -60.5877 -158.981 -61.8701 -166.103 -63.2848 -175.157 -65.124 -185.757 -66.7993 -195.19 -68.2094 -205.102 -69.7114 -217.139 -71.5827 -231.004 -73.3224 -244.318 -74.7628 -258.327 -76.2188 -274.727 -77.9391 -293.344 -79.5092 -312.217 -80.7097 -332.222 -81.7704 -354.953 -82.875 -380.364 -83.6963 -407.037 -83.9592 -435.416 -83.7581 -466.769 -83.1479 -501.082 -81.8675 -537.277 -79.6009 -575.205 -76.2389 -615.036 -71.7523 -656.406 -65.9151 -697.373 -58.7564 -737.234 -50.1477 -773.095 -40.4399 -803.811 -30.0375 -826.87 -20.1718 -841.938 -849.773 -20.2312 -36.7353 -20.5159 -31.2208 -20.9643 -34.366 -21.8712 -36.2172 -22.0779 -34.8977 -22.491 -36.0607 -22.9659 -37.3286 -23.6513 -38.8749 -24.0974 -39.0737 -24.4938 -39.8673 -25.027 -41.4174 -25.7779 -43.1478 -26.2762 -43.4454 -26.7143 -44.3499 -27.2947 -46.0781 -28.1125 -48.0403 -28.6657 -48.4875 -29.1521 -49.5692 -29.7893 -51.546 -30.687 -53.8095 -31.3103 -54.4656 -31.8539 -55.7563 -32.5557 -58.0276 -33.543 -60.6571 -34.2472 -61.5935 -34.8621 -63.1711 -35.6423 -65.8069 -36.7252 -68.8528 -37.5254 -70.1788 -38.2278 -72.1348 -39.0931 -75.2008 -40.2799 -78.7769 -41.1978 -80.6519 -42.001 -83.0908 -42.9645 -86.7197 -44.2688 -90.9745 -45.3199 -93.5654 -46.2398 -96.664 -47.3143 -101.037 -48.7446 -106.17 -49.9424 -109.728 -50.9947 -113.761 -52.1908 -119.158 -53.7504 -125.479 -55.1136 -130.417 -56.3145 -135.787 -57.6471 -142.64 -59.3391 -150.595 -60.8731 -157.447 -62.2292 -164.747 -63.6992 -173.687 -65.5089 -183.948 -67.1965 -193.502 -68.6879 -203.611 -70.2591 -215.568 -72.1234 -229.14 -73.8835 -242.558 -75.4157 -256.794 -76.9596 -273.183 -78.7027 -291.601 -80.3101 -310.609 -81.6161 -330.916 -82.7872 -353.782 -83.9514 -379.2 -84.8326 -406.156 -85.2113 -435.037 -85.1327 -466.848 -84.6059 -501.609 -83.3845 -538.499 -81.1919 -577.397 -77.8873 -618.341 -73.3987 -660.895 -67.4952 -703.277 -60.1798 -744.55 -51.3561 -781.919 -41.3569 -813.81 -30.6135 -837.613 -19.9792 -852.572 -860.28 -20.2553 -35.8273 -20.5479 -30.9282 -21.0368 -33.8771 -21.8456 -35.4084 -22.1217 -34.6216 -22.5403 -35.6421 -23.0225 -36.8464 -23.6672 -38.2301 -24.1291 -38.6118 -24.5538 -39.4426 -25.0908 -40.8803 -25.7982 -42.4405 -26.3123 -42.9312 -26.7813 -43.8809 -27.3673 -45.4922 -28.1391 -47.2685 -28.7089 -47.9177 -29.2289 -49.0492 -29.8734 -50.9015 -30.7222 -52.9607 -31.3619 -53.8259 -31.9425 -55.1757 -32.6538 -57.3163 -33.5895 -59.7215 -34.3103 -60.8726 -34.9651 -62.5164 -35.7569 -65.0151 -36.787 -67.8227 -37.6036 -69.3622 -38.3482 -71.3902 -39.2288 -74.3203 -40.3629 -77.6428 -41.2955 -79.7192 -42.144 -82.2423 -43.1272 -85.7365 -44.3796 -89.722 -45.4441 -92.5008 -46.4127 -95.6955 -47.5123 -99.9376 -48.8936 -104.788 -50.104 -108.517 -51.2087 -112.656 -52.4369 -117.93 -53.9538 -123.963 -55.3287 -129.042 -56.5867 -134.529 -57.9593 -141.267 -59.6184 -148.936 -61.1654 -155.9 -62.5847 -163.328 -64.1047 -172.167 -65.8958 -182.157 -67.6011 -191.797 -69.1641 -202.048 -70.7986 -213.934 -72.6648 -227.273 -74.4531 -240.769 -76.0691 -255.178 -77.6949 -271.557 -79.4679 -289.828 -81.1227 -308.954 -82.5288 -329.51 -83.8055 -352.505 -85.0353 -377.97 -85.9888 -405.203 -86.4825 -434.543 -86.5243 -466.806 -86.0881 -502.045 -84.9406 -539.646 -82.8277 -579.51 -79.5837 -621.585 -75.0976 -665.381 -69.1328 -709.241 -61.6618 -752.021 -52.6115 -790.969 -42.3017 -824.12 -31.1868 -848.728 -19.8406 -863.918 -871.348 -20.2986 -34.94 -20.5838 -30.643 -21.0979 -33.363 -21.8307 -34.6757 -22.1611 -34.2911 -22.5874 -35.2159 -23.0749 -36.3589 -23.6873 -37.6177 -24.1622 -38.1369 -24.6098 -38.9951 -25.1501 -40.34 -25.8228 -41.7678 -26.3503 -42.4038 -26.8443 -43.3869 -27.435 -44.9015 -28.1702 -46.5332 -28.7541 -47.3338 -29.3014 -48.5019 -29.9521 -50.2509 -30.762 -52.1507 -31.4159 -53.172 -32.0265 -54.5651 -32.7459 -56.5969 -33.6408 -58.8266 -34.376 -60.1373 -35.0633 -61.8291 -35.8651 -64.2133 -36.8537 -66.8342 -37.6847 -68.5311 -38.4638 -70.6111 -39.3574 -73.4266 -40.4505 -76.5497 -41.3965 -78.7733 -42.2822 -81.3566 -43.2823 -84.7364 -44.4949 -88.5095 -45.572 -91.4238 -46.5809 -94.6865 -47.7022 -98.8163 -49.0465 -103.444 -50.2695 -107.294 -51.4181 -111.507 -52.6744 -116.674 -54.1602 -122.477 -55.5481 -127.654 -56.8547 -133.222 -58.2628 -139.859 -59.8998 -147.299 -61.4624 -154.337 -62.9368 -161.853 -64.5017 -170.602 -66.284 -180.374 -68.011 -190.07 -69.638 -200.421 -71.3306 -212.241 -73.2072 -225.397 -75.0293 -238.947 -76.7228 -253.485 -78.4256 -269.854 -80.2358 -288.018 -81.945 -307.245 -83.4473 -328.008 -84.8259 -351.127 -86.1281 -376.668 -87.1632 -404.167 -87.7723 -433.934 -87.9346 -466.644 -87.5966 -502.383 -86.5355 -540.708 -84.5091 -581.537 -81.3305 -624.763 -76.8527 -669.859 -70.8311 -715.263 -63.2056 -759.646 -53.9169 -800.258 -43.2739 -834.763 -31.7951 -860.207 -21.3779 -874.335 -884.266 -20.3413 -34.0737 -20.6229 -30.3614 -21.1507 -32.8352 -21.8252 -34.0011 -22.1974 -33.9189 -22.6323 -34.781 -23.1235 -35.8677 -23.7108 -37.0304 -24.1965 -37.6512 -24.6626 -38.529 -25.2055 -39.7971 -25.8512 -41.1222 -26.3895 -41.8654 -26.9038 -42.8726 -27.4984 -44.3069 -28.2052 -45.8264 -28.8007 -46.7383 -29.3703 -47.9323 -30.026 -49.5952 -30.8059 -51.3708 -31.4715 -52.5064 -32.1066 -53.9301 -32.8328 -55.8707 -33.6962 -57.9632 -34.4436 -59.3899 -35.1575 -61.1152 -35.9676 -63.4031 -36.9244 -65.8774 -37.7677 -67.6878 -38.5753 -69.8036 -39.48 -72.5219 -40.542 -75.4877 -41.4997 -77.8156 -42.4162 -80.4401 -43.4308 -83.7218 -44.6137 -87.3266 -45.7024 -90.3351 -46.745 -93.6439 -47.8851 -97.6762 -49.2026 -102.127 -50.4379 -106.059 -51.6237 -110.322 -52.9044 -115.393 -54.369 -121.012 -55.7706 -126.253 -57.1191 -131.874 -58.5587 -138.419 -60.1828 -145.674 -61.7628 -152.757 -63.2857 -160.33 -64.8914 -168.996 -66.6732 -178.592 -68.4248 -188.318 -70.1098 -198.735 -71.8563 -210.495 -73.7506 -223.503 -75.6106 -237.087 -77.3765 -251.719 -79.1525 -268.078 -81.0066 -286.164 -82.7754 -305.477 -84.3712 -326.412 -85.8491 -349.649 -87.2303 -375.287 -88.3546 -403.043 -89.0803 -433.209 -89.3649 -466.359 -89.1328 -502.615 -88.1691 -541.671 -86.2369 -583.469 -83.1299 -627.871 -78.6677 -674.321 -72.594 -721.337 -64.8146 -767.426 -55.2752 -809.797 -44.2693 -845.769 -32.3614 -872.115 -21.0946 -885.602 -895.997 -20.383 -33.2281 -20.665 -30.0794 -21.1979 -32.3023 -21.8278 -33.3713 -22.2316 -33.5151 -22.6752 -34.3374 -23.1691 -35.3737 -23.7372 -36.4624 -24.2315 -37.1569 -24.7126 -38.0479 -25.2576 -39.2521 -25.8825 -40.4972 -26.4297 -41.3182 -26.9605 -42.3419 -27.5581 -43.7093 -28.2434 -45.1411 -28.8484 -46.1333 -29.436 -47.3447 -30.0959 -48.9353 -30.853 -50.6137 -31.5284 -51.831 -32.1834 -53.2751 -32.9152 -55.1388 -33.7549 -57.1235 -34.5125 -58.6324 -35.2481 -60.3796 -36.0653 -62.5859 -36.9984 -64.9444 -37.8522 -66.8339 -38.6832 -68.9726 -39.5974 -71.6077 -40.6365 -74.4485 -41.6045 -76.8477 -42.5467 -79.4979 -43.5737 -82.6948 -44.7353 -86.165 -45.8345 -89.2358 -46.9055 -92.5729 -48.0619 -96.5198 -49.3609 -100.828 -50.6082 -104.812 -51.8258 -109.104 -53.1281 -114.091 -54.5796 -119.561 -55.9952 -124.837 -57.3802 -130.489 -58.848 -136.952 -60.467 -144.055 -62.0654 -151.159 -63.6315 -158.764 -65.2747 -167.353 -67.063 -176.804 -68.8411 -186.54 -70.5794 -196.997 -72.3765 -208.697 -74.2948 -221.584 -76.1955 -235.186 -78.0302 -249.884 -79.8765 -266.232 -81.7801 -284.26 -83.6127 -303.644 -85.3001 -324.725 -86.8759 -348.073 -88.342 -373.821 -89.5619 -401.823 -90.4063 -432.364 -90.8157 -465.95 -90.6974 -502.733 -89.8416 -542.527 -88.012 -585.298 -84.984 -630.899 -80.5457 -678.759 -74.4252 -727.457 -66.4927 -775.358 -56.6909 -819.599 -45.2998 -857.16 -32.8999 -884.515 -20.4941 -898.008 -906.991 -20.402 -32.4284 -20.7095 -29.7719 -21.2413 -31.7705 -21.8369 -32.7757 -22.2643 -33.0877 -22.7162 -33.8854 -23.2122 -34.8777 -23.7659 -35.9087 -24.2671 -36.6556 -24.7603 -37.5547 -25.3069 -38.7054 -25.9163 -39.8878 -26.4706 -40.7639 -27.0147 -41.7978 -27.6149 -43.1091 -28.284 -44.4721 -28.8967 -45.5206 -29.4991 -46.7424 -30.1624 -48.272 -30.9026 -49.8735 -31.586 -51.1476 -32.2574 -52.6037 -32.994 -54.4022 -33.8162 -56.3013 -34.5822 -57.8663 -35.3358 -59.626 -36.159 -61.7627 -37.0748 -64.0286 -37.9375 -65.9712 -38.788 -68.1222 -39.7103 -70.6854 -40.7332 -73.4256 -41.7103 -75.8706 -42.6739 -78.5342 -43.7118 -81.6569 -44.8587 -85.0181 -45.9678 -88.1267 -47.0628 -91.4779 -48.2336 -95.349 -49.5209 -99.5403 -50.7796 -103.553 -52.0247 -107.859 -53.3464 -112.769 -54.7911 -118.116 -56.2209 -123.407 -57.6381 -129.071 -59.1318 -135.458 -60.7515 -142.436 -62.3692 -149.541 -63.9745 -157.159 -65.6525 -165.675 -67.4529 -175.004 -69.259 -184.734 -71.0468 -195.209 -72.8921 -206.852 -74.8393 -219.637 -76.783 -233.243 -78.6836 -247.983 -80.5982 -264.317 -82.556 -282.302 -84.4558 -301.744 -86.2337 -322.947 -87.9068 -346.4 -89.4632 -372.265 -90.7841 -400.502 -91.7499 -431.398 -92.2878 -465.412 -92.2912 -502.73 -91.5532 -543.265 -89.8353 -587.016 -86.8951 -633.839 -82.4901 -683.164 -76.3288 -733.619 -68.2442 -783.443 -58.1685 -829.674 -46.3703 -868.958 -33.4575 -897.428 -21.1693 -910.296 -918.485 -20.4417 -31.6481 -20.7558 -29.4577 -21.282 -31.2444 -21.8513 -32.2064 -22.2961 -32.6429 -22.7556 -33.4259 -23.2532 -34.3802 -23.7962 -35.3657 -24.303 -36.1489 -24.806 -37.0517 -25.354 -38.1575 -25.9518 -39.29 -26.5119 -40.2038 -27.0668 -41.2429 -27.6691 -42.5067 -28.3264 -43.8148 -28.9455 -44.9015 -29.5599 -46.128 -30.2261 -47.6057 -30.954 -49.1456 -31.6441 -50.4575 -32.3289 -51.9189 -33.0696 -53.6616 -33.8792 -55.4917 -34.6524 -57.0931 -35.4208 -58.8576 -36.2493 -60.9342 -37.1529 -63.125 -38.0234 -65.1006 -38.8901 -67.2555 -39.8196 -69.7559 -40.8314 -72.4139 -41.8166 -74.8853 -42.7984 -77.5524 -43.8459 -80.6094 -44.9834 -83.8807 -46.1016 -87.0084 -47.2173 -90.3623 -48.401 -94.1652 -49.6816 -98.2596 -50.9515 -102.283 -52.2207 -106.59 -53.56 -111.43 -55.003 -116.673 -56.4471 -121.963 -57.8932 -127.625 -59.4107 -133.94 -61.036 -140.811 -62.6736 -147.904 -64.3148 -155.518 -66.0256 -163.965 -67.8423 -173.187 -69.6776 -182.899 -71.5122 -193.375 -73.4037 -204.961 -75.3838 -217.657 -77.3723 -231.254 -79.3367 -246.019 -81.3181 -262.336 -83.334 -280.286 -85.3037 -299.774 -87.1717 -321.079 -88.9421 -344.63 -90.5936 -370.613 -92.0205 -399.075 -93.1108 -430.308 -93.7814 -464.741 -93.9143 -502.597 -93.3042 -543.875 -91.7078 -588.613 -88.8652 -636.681 -84.504 -687.525 -78.3091 -739.813 -70.0742 -791.678 -59.7131 -840.035 -47.4826 -881.189 -33.9695 -910.941 -20.8762 -923.39 -930.59 -20.4802 -30.8877 -20.8029 -29.1349 -21.3208 -30.7265 -21.8698 -31.6574 -22.3273 -32.1854 -22.7936 -32.9595 -23.2925 -33.8813 -23.8278 -34.8305 -24.339 -35.6376 -24.85 -36.5407 -25.3991 -37.6083 -25.9886 -38.7005 -26.5534 -39.6391 -27.1171 -40.6792 -27.7213 -41.9025 -28.3701 -43.166 -28.9944 -44.2771 -29.6187 -45.5037 -30.2876 -46.9368 -31.0068 -48.4264 -31.7025 -49.7618 -32.3984 -51.223 -33.1426 -52.9173 -33.9435 -54.6908 -34.7229 -56.3138 -35.5036 -58.0769 -36.3367 -60.1011 -37.2321 -62.2297 -38.1094 -64.2233 -38.9898 -66.3751 -39.9257 -68.82 -40.9304 -71.4092 -41.9231 -73.8926 -42.9204 -76.5551 -43.9766 -79.5533 -45.1086 -82.7486 -46.2356 -85.8815 -47.3691 -89.2288 -48.5646 -92.9697 -49.8427 -96.9815 -51.1236 -101.002 -52.4141 -105.299 -53.7697 -110.074 -55.2147 -115.228 -56.6734 -120.505 -58.1455 -126.153 -59.6855 -132.4 -61.3199 -139.176 -62.9779 -146.246 -64.6524 -153.843 -66.3946 -162.222 -68.231 -171.351 -70.0964 -181.034 -71.9753 -191.496 -73.9118 -203.024 -75.9279 -215.641 -77.9626 -229.22 -79.9892 -243.993 -82.0365 -260.289 -84.1138 -278.209 -86.1558 -297.732 -88.1136 -319.121 -89.9821 -342.761 -91.7327 -368.862 -93.2703 -397.538 -94.4886 -429.09 -95.2965 -463.933 -95.5671 -502.326 -95.0948 -544.348 -93.6304 -590.077 -90.8965 -639.415 -86.5908 -691.831 -80.3709 -746.033 -71.9877 -800.061 -61.3306 -850.693 -48.6436 -893.876 -34.5125 -925.072 -22.6043 -935.298 -945.063 -20.5174 -30.1476 -20.8497 -28.8026 -21.3583 -30.2179 -21.8915 -31.1242 -22.3582 -31.7188 -22.8304 -32.4873 -23.3304 -33.3813 -23.8602 -34.3007 -24.3751 -35.1227 -24.8925 -36.0233 -25.4428 -37.0581 -26.0263 -38.1169 -26.5949 -39.0705 -27.1659 -40.1082 -27.7718 -41.2966 -28.4147 -42.5231 -29.0434 -43.6484 -29.6759 -44.8712 -30.3471 -46.2656 -31.0603 -47.7132 -31.7608 -49.0612 -32.4659 -50.5179 -33.2135 -52.1698 -34.0085 -53.8957 -34.7933 -55.529 -35.5844 -57.2858 -36.4218 -59.2637 -37.3119 -61.3396 -38.1954 -63.3398 -39.0874 -65.4831 -40.0292 -67.8782 -41.0298 -70.4086 -42.0295 -72.8929 -43.0401 -75.5445 -44.1043 -78.489 -45.234 -81.619 -46.3693 -84.7461 -47.5185 -88.0796 -48.725 -91.7632 -50.0036 -95.703 -51.2953 -99.7104 -52.6049 -103.99 -53.9758 -108.703 -55.4259 -113.778 -56.8992 -119.031 -58.3952 -124.657 -59.9566 -130.839 -61.6028 -137.53 -63.2816 -144.567 -64.9874 -152.137 -66.7598 -160.45 -68.6185 -169.492 -70.5147 -179.137 -72.4363 -189.574 -74.4166 -201.044 -76.4712 -213.586 -78.5533 -227.137 -80.6409 -241.905 -82.7537 -258.176 -84.8949 -276.068 -87.0112 -295.616 -89.0592 -317.073 -91.0266 -340.794 -92.8803 -367.009 -94.5329 -395.885 -95.8829 -427.74 -96.8333 -462.983 -97.2496 -501.91 -96.9252 -544.672 -95.6042 -591.398 -92.9911 -642.028 -88.7539 -696.068 -82.5188 -752.268 -73.9908 -808.589 -63.0263 -861.657 -49.8497 -907.052 -34.9833 -939.938 -22.046 -948.235 -959.85 -20.5322 -29.4495 -20.8953 -28.4396 -21.3948 -29.7184 -21.9156 -30.6034 -22.3889 -31.2455 -22.866 -32.0102 -23.3672 -32.8801 -23.8931 -33.7748 -24.4111 -34.6047 -24.9338 -35.5005 -25.4851 -36.5069 -26.0645 -37.5375 -26.6364 -38.4986 -27.2133 -39.5313 -27.8208 -40.6891 -28.4597 -41.8842 -29.0923 -43.0158 -29.7315 -44.232 -30.405 -45.5922 -31.1142 -47.004 -31.819 -48.3564 -32.5319 -49.8051 -33.2825 -51.4192 -34.0739 -53.1043 -34.8635 -54.7394 -35.6633 -56.486 -36.5048 -58.4222 -37.392 -60.4524 -38.2811 -62.4507 -39.1831 -64.5811 -40.1304 -66.9308 -41.1292 -69.4098 -42.1355 -71.8866 -43.1578 -74.5223 -44.2295 -77.4173 -45.3592 -80.4893 -46.5026 -83.6027 -47.6657 -86.9165 -48.8826 -90.5463 -50.164 -94.4216 -51.4664 -98.408 -52.7933 -102.663 -54.1788 -107.318 -55.6362 -112.32 -57.1241 -117.543 -58.6423 -123.139 -60.2242 -129.257 -61.8844 -135.87 -63.5843 -142.867 -65.3197 -150.402 -67.1216 -158.648 -69.0045 -167.609 -70.9321 -177.21 -72.895 -187.611 -74.9185 -199.02 -77.0135 -211.491 -79.1439 -225.007 -81.2917 -239.757 -83.4697 -255.998 -85.6769 -273.861 -87.8694 -293.424 -90.0081 -314.934 -92.0757 -338.726 -94.0358 -365.049 -95.8076 -394.113 -97.2934 -426.254 -98.3914 -461.885 -98.9618 -501.339 -98.7957 -544.838 -97.63 -592.564 -95.1511 -644.507 -90.9968 -700.222 -84.7581 -758.507 -76.0898 -817.257 -64.8078 -872.939 -51.1202 -920.74 -35.4222 -955.636 -21.7885 -961.869 -975.012 -20.5671 -28.7708 -20.9393 -28.0674 -21.4304 -29.2273 -21.9415 -30.0923 -22.4194 -30.7675 -22.9008 -31.5289 -23.4029 -32.378 -23.9263 -33.2514 -24.4469 -34.0842 -24.974 -34.9733 -25.5263 -35.9546 -26.103 -36.9608 -26.6776 -37.924 -27.2595 -38.9493 -27.8686 -40.08 -28.505 -41.2479 -29.1409 -42.3799 -29.7859 -43.587 -30.4614 -44.9166 -31.1684 -46.297 -31.8769 -47.6479 -32.5964 -49.0856 -33.3499 -50.6657 -34.1393 -52.3148 -34.9333 -53.9454 -35.7407 -55.6786 -36.586 -57.5768 -37.4719 -59.5665 -38.3662 -61.5564 -39.277 -63.6703 -40.2296 -65.9782 -41.2283 -68.4111 -42.2408 -70.8741 -43.2734 -73.4897 -44.3524 -76.3384 -45.4838 -79.3579 -46.6351 -82.4514 -47.8108 -85.7408 -49.0376 -89.3195 -50.3235 -93.1357 -51.6365 -97.095 -52.9794 -101.32 -54.3789 -105.918 -55.8452 -110.854 -57.3478 -116.041 -58.887 -121.6 -60.4888 -127.655 -62.1645 -134.194 -63.8856 -141.146 -65.6495 -148.638 -67.4802 -156.817 -69.3887 -165.7 -71.3481 -175.25 -73.3513 -185.608 -75.4175 -196.954 -77.5542 -209.355 -79.7338 -222.827 -81.9412 -237.55 -84.1844 -253.755 -86.4596 -271.585 -88.7298 -291.153 -90.9599 -312.704 -93.1289 -336.557 -95.1988 -362.979 -97.0937 -392.219 -98.7193 -424.628 -99.9708 -460.633 -100.703 -500.607 -100.706 -544.835 -99.7086 -593.561 -97.3786 -646.837 -93.3232 -704.278 -87.0943 -764.736 -78.2917 -826.06 -66.6826 -884.548 -52.4584 -934.964 -35.8922 -972.202 -23.5243 -974.237 -992.482 -20.6001 -28.1129 -20.9812 -27.6862 -21.4651 -28.7434 -21.9686 -29.5889 -22.4499 -30.2862 -22.9347 -31.044 -23.4379 -31.8748 -23.9596 -32.7297 -24.4824 -33.5614 -25.0132 -34.4425 -25.5665 -35.4013 -26.1415 -36.3859 -26.7186 -37.3469 -27.3047 -38.3632 -27.9153 -39.4694 -28.5503 -40.6129 -29.1891 -41.7411 -29.839 -42.9371 -30.5166 -44.239 -31.2224 -45.5912 -31.9344 -46.9359 -32.6595 -48.3606 -33.4158 -49.9094 -34.2046 -51.5261 -35.0026 -53.1474 -35.8165 -54.8647 -36.6656 -56.7278 -37.5516 -58.6805 -38.4507 -60.6573 -39.3692 -62.7519 -40.3269 -65.0205 -41.3269 -67.411 -42.3454 -69.8556 -43.3873 -72.4478 -44.4732 -75.2525 -45.6076 -78.2235 -46.7666 -81.2923 -47.9539 -84.5536 -49.1903 -88.0831 -50.4819 -91.8441 -51.8055 -95.7714 -53.1632 -99.9622 -54.5764 -104.505 -56.0527 -109.378 -57.5702 -114.523 -59.1291 -120.041 -60.7504 -126.034 -62.4427 -132.502 -64.1853 -139.403 -65.9766 -146.847 -67.8356 -154.958 -69.7708 -163.765 -71.7624 -173.259 -73.8051 -183.566 -75.9136 -194.846 -78.0933 -207.175 -80.3227 -220.598 -82.5894 -235.283 -84.8978 -251.446 -87.2424 -269.241 -89.5918 -288.804 -91.9141 -310.382 -94.1861 -334.285 -96.3688 -360.796 -98.3906 -390.197 -100.16 -422.859 -101.571 -459.223 -102.474 -499.703 -102.657 -544.652 -101.841 -594.378 -99.6756 -649.003 -95.7366 -708.217 -89.5331 -770.94 -80.6041 -834.989 -68.6583 -896.494 -53.862 -949.76 -36.2822 -989.782 -22.6417 -987.877 -1010.2 -20.631 -27.4763 -21.0208 -27.2964 -21.4991 -28.2651 -21.9965 -29.0914 -22.4801 -29.8026 -22.9679 -30.5562 -23.4721 -31.3707 -23.9929 -32.2088 -24.5176 -33.0367 -25.0516 -33.9086 -25.6059 -34.847 -26.18 -35.8118 -26.7593 -36.7676 -27.3489 -37.7736 -27.9611 -38.8572 -28.5954 -39.9785 -29.237 -41.0996 -29.891 -42.2831 -30.5707 -43.5593 -31.2762 -44.8857 -31.9914 -46.2207 -32.7214 -47.6305 -33.4805 -49.1503 -34.2694 -50.7371 -35.0713 -52.3455 -35.891 -54.045 -36.7437 -55.8751 -37.6307 -57.7935 -38.5345 -59.7534 -39.4599 -61.8265 -40.4225 -64.0579 -41.4247 -66.4088 -42.4491 -68.8312 -43.4994 -71.3974 -44.592 -74.1599 -45.7304 -77.0851 -46.8971 -80.1256 -48.095 -83.3557 -49.3407 -86.8373 -50.6391 -90.5457 -51.9731 -94.4374 -53.3449 -98.5904 -54.7714 -103.079 -56.2586 -107.891 -57.7908 -112.991 -59.3688 -118.463 -61.0092 -124.394 -62.7188 -130.792 -64.483 -137.639 -66.301 -145.029 -68.188 -153.071 -70.1507 -161.803 -72.1747 -171.235 -74.2562 -181.484 -76.4069 -192.695 -78.6304 -204.951 -80.9102 -218.318 -83.236 -232.957 -85.6098 -249.073 -88.0251 -266.826 -90.4549 -286.374 -92.8703 -307.966 -95.2468 -331.909 -97.5451 -358.498 -99.6976 -388.044 -101.616 -420.94 -103.191 -457.647 -104.274 -498.62 -104.648 -544.278 -104.028 -594.998 -102.044 -650.986 -98.241 -712.02 -92.0807 -777.1 -83.0355 -844.034 -70.7448 -908.785 -55.3509 -965.154 -36.6233 -1008.51 -21.4984 -1003 -1025.44 -20.6437 -26.8758 -21.0582 -26.882 -21.5322 -27.7911 -22.025 -28.5987 -22.5103 -29.3173 -23.0005 -30.0661 -23.5056 -30.8655 -24.026 -31.6884 -24.5525 -32.5102 -25.0891 -33.372 -25.6445 -34.2915 -26.2182 -35.2382 -26.7995 -36.1863 -27.3923 -37.1808 -28.0059 -38.2435 -28.6403 -39.3442 -29.2843 -40.4556 -29.942 -41.6253 -30.6238 -42.8775 -31.3297 -44.1799 -32.0478 -45.5026 -32.7822 -46.8961 -33.544 -48.3885 -34.3338 -49.9473 -35.1392 -51.5401 -35.9642 -53.22 -36.8205 -55.0188 -37.7091 -56.9049 -38.6174 -58.8451 -39.5491 -60.8948 -40.5166 -63.0905 -41.5217 -65.4037 -42.5517 -67.8011 -43.6099 -70.3392 -44.7091 -73.0607 -45.8521 -75.9422 -47.0263 -78.9514 -48.2342 -82.1478 -49.4891 -85.5824 -50.7948 -89.24 -52.1393 -93.0929 -53.5244 -97.2052 -54.9639 -101.639 -56.4627 -106.392 -58.0097 -111.444 -59.6061 -116.866 -61.2651 -122.735 -62.9928 -129.064 -64.7786 -135.853 -66.6227 -143.185 -68.5373 -151.157 -70.528 -159.812 -72.5847 -169.178 -74.7047 -179.364 -76.8973 -190.502 -79.1652 -202.684 -81.4958 -215.988 -83.8806 -230.572 -86.3201 -246.633 -88.8072 -264.339 -91.3186 -283.863 -93.8281 -305.457 -96.3107 -329.426 -98.7273 -356.081 -101.014 -385.758 -103.085 -418.869 -104.832 -455.9 -106.102 -497.35 -106.679 -543.701 -106.269 -595.409 -104.486 -652.769 -100.84 -715.666 -94.7435 -783.196 -85.5948 -853.183 -72.9524 -921.427 -56.9326 -981.174 -37.0032 -1028.44 -22.0268 -1017.98 -1044.73 -20.6735 -26.2946 -21.0935 -26.462 -21.5645 -27.3201 -22.0537 -28.1095 -22.5402 -28.8308 -23.0324 -29.5738 -23.5385 -30.3595 -24.0589 -31.168 -24.587 -31.9822 -25.1258 -32.8331 -25.6824 -33.735 -26.2561 -34.6644 -26.8393 -35.6031 -27.4347 -36.5853 -28.05 -37.6283 -28.6848 -38.7094 -29.3311 -39.8093 -29.9921 -40.9643 -30.6759 -42.1937 -31.3826 -43.4732 -32.1035 -44.7817 -32.8418 -46.1578 -33.6063 -47.6239 -34.3975 -49.1561 -35.2064 -50.7313 -36.0361 -52.3903 -36.8959 -54.159 -37.7867 -56.0141 -38.6994 -57.9325 -39.6369 -59.9573 -40.6091 -62.1183 -41.6176 -64.3952 -42.6532 -66.7655 -43.7187 -69.2737 -44.8243 -71.9551 -45.9725 -74.794 -47.1541 -77.7698 -48.3716 -80.9303 -49.6354 -84.3186 -50.949 -87.9264 -52.3038 -91.7382 -53.7018 -95.8072 -55.154 -100.187 -56.6649 -104.881 -58.2266 -109.882 -59.8408 -115.252 -61.5184 -121.057 -63.2644 -127.318 -65.0719 -134.046 -66.9416 -141.315 -68.8836 -149.215 -70.9028 -157.793 -72.9921 -167.089 -75.1503 -177.206 -77.3846 -188.268 -79.6975 -200.371 -82.0793 -213.606 -84.5231 -228.128 -87.0285 -244.128 -89.5883 -261.779 -92.1825 -281.269 -94.787 -302.852 -97.3771 -326.836 -99.9146 -353.544 -102.339 -383.334 -104.567 -416.641 -106.491 -453.977 -107.958 -495.882 -108.75 -542.909 -108.566 -595.593 -107.003 -654.332 -103.538 -719.131 -97.5284 -789.206 -88.292 -862.419 -75.2925 -934.426 -58.6076 -997.859 -37.2789 -1049.77 -20.7694 -1034.49 -1062.69 -20.7019 -25.7332 -21.1271 -26.0368 -21.5961 -26.8511 -22.0826 -27.623 -22.5699 -28.3434 -23.0638 -29.0799 -23.5709 -29.8525 -24.0915 -30.6473 -24.621 -31.4526 -25.1619 -32.2922 -25.7196 -33.1773 -26.2937 -34.0903 -26.8785 -35.0183 -27.4765 -35.9874 -28.0932 -37.0115 -28.7288 -38.0738 -29.3773 -39.1608 -30.0413 -40.3003 -30.7271 -41.5078 -31.4349 -42.7654 -32.1585 -44.0581 -32.9005 -45.4159 -33.6676 -46.8568 -34.4606 -48.3631 -35.2728 -49.919 -36.1068 -51.5563 -36.9701 -53.2957 -37.8635 -55.1207 -38.7804 -57.0156 -39.7233 -59.0143 -40.7002 -61.1414 -41.7124 -63.383 -42.7536 -65.7244 -43.826 -68.2013 -44.9379 -70.8432 -46.0915 -73.6404 -47.2805 -76.5808 -48.5071 -79.7038 -49.7797 -83.0459 -51.1015 -86.6046 -52.4665 -90.3731 -53.8769 -94.3968 -55.3418 -98.7221 -56.865 -103.358 -58.4414 -108.306 -60.073 -113.62 -61.7689 -119.361 -63.5336 -125.554 -65.3627 -132.217 -67.2576 -139.42 -69.2268 -147.246 -71.2747 -155.745 -73.3968 -164.967 -75.5928 -175.01 -77.8689 -185.992 -80.2271 -198.012 -82.6602 -211.173 -85.1632 -225.626 -87.7347 -241.556 -90.3681 -259.145 -93.0459 -278.591 -95.7465 -300.152 -98.4456 -324.137 -101.107 -350.883 -103.672 -380.768 -106.061 -414.252 -108.168 -451.869 -109.841 -494.209 -110.86 -541.89 -110.919 -595.534 -109.597 -655.654 -106.338 -722.39 -100.443 -795.102 -91.1377 -871.724 -77.7785 -947.786 -60.3887 -1015.25 -37.6648 -1072.49 -22.2156 -1049.94 -1084.42 -20.7291 -25.1906 -21.1593 -25.6066 -21.627 -26.3833 -22.1114 -27.1387 -22.5994 -27.8554 -23.0947 -28.5846 -23.6026 -29.3445 -24.1237 -30.1262 -24.6546 -30.9218 -25.1973 -31.7495 -25.7561 -32.6185 -26.3308 -33.5156 -26.9173 -34.4318 -27.5174 -35.3872 -28.1357 -36.3932 -28.7723 -37.4373 -29.4228 -38.5102 -30.0895 -39.6336 -30.7774 -40.82 -31.4867 -42.0561 -32.2128 -43.3319 -32.9581 -44.6706 -33.7279 -46.087 -34.5228 -47.5682 -35.3383 -49.1036 -36.1764 -50.7182 -37.0431 -52.429 -37.9393 -54.2245 -38.8603 -56.0946 -39.8084 -58.0662 -40.7899 -60.16 -41.8061 -62.3668 -42.8526 -64.6778 -43.9316 -67.1223 -45.0498 -69.725 -46.2092 -72.481 -47.4055 -75.3845 -48.6407 -78.4686 -49.9221 -81.7646 -51.2523 -85.2744 -52.6275 -88.9979 -54.05 -92.9743 -55.5272 -97.2448 -57.0629 -101.822 -58.654 -106.715 -60.3026 -111.972 -62.0166 -117.647 -63.8002 -123.77 -65.6508 -130.366 -67.5706 -137.5 -69.5668 -145.249 -71.6436 -153.668 -73.7986 -162.812 -76.0322 -172.776 -78.3498 -183.674 -80.7536 -195.609 -83.2385 -208.688 -85.8005 -223.064 -88.4384 -238.918 -91.1461 -256.438 -93.9085 -275.828 -96.7061 -297.354 -99.5157 -321.327 -102.302 -348.096 -105.011 -378.059 -107.567 -411.696 -109.863 -449.573 -111.751 -492.322 -113.009 -540.632 -113.327 -595.217 -112.269 -656.712 -109.245 -725.415 -103.493 -800.853 -94.1435 -881.074 -80.4234 -961.506 -62.2576 -1033.41 -37.9082 -1096.84 -20.2481 -1067.6 -1110.77 -20.7458 -24.6717 -21.1903 -25.1621 -21.6573 -25.9163 -22.1401 -26.6559 -22.6286 -27.3669 -23.1251 -28.088 -23.6339 -28.8358 -24.1555 -29.6046 -24.6877 -30.3896 -25.232 -31.2052 -25.792 -32.0585 -26.3675 -32.9401 -26.9555 -33.8438 -27.5576 -34.7851 -28.1775 -35.7734 -28.8152 -36.7996 -29.4678 -37.8577 -30.137 -38.9644 -30.8269 -40.1301 -31.5377 -41.3453 -32.2664 -42.6032 -33.0147 -43.9223 -33.7871 -45.3145 -34.5843 -46.7711 -35.4028 -48.285 -36.2448 -49.8762 -37.1149 -51.5589 -38.0141 -53.3253 -38.9392 -55.1695 -39.8921 -57.1133 -40.8781 -59.1739 -41.8986 -61.3464 -42.9504 -63.626 -44.0357 -66.037 -45.1601 -68.6006 -46.3254 -71.3158 -47.5288 -74.181 -48.7725 -77.2248 -50.0625 -80.4746 -51.4012 -83.9357 -52.7866 -87.6126 -54.2208 -91.5401 -55.7103 -95.7553 -57.2587 -100.274 -58.8643 -105.109 -60.5296 -110.306 -62.2615 -115.915 -64.064 -121.968 -65.9362 -128.494 -67.8806 -135.556 -69.9036 -143.226 -72.0095 -151.562 -74.1972 -160.624 -76.4682 -170.505 -78.8273 -181.315 -81.2769 -193.159 -83.8136 -206.151 -86.4348 -220.442 -89.1393 -236.214 -91.922 -253.655 -94.7697 -272.981 -97.6652 -294.459 -100.587 -318.406 -103.501 -345.182 -106.357 -375.203 -109.082 -408.971 -111.574 -447.081 -113.685 -490.211 -115.196 -539.121 -115.791 -594.621 -115.021 -657.481 -112.262 -728.174 -106.689 -806.427 -97.3222 -890.44 -83.2432 -975.585 -64.2443 -1052.41 -38.1175 -1122.97 -18.9059 -1086.81 -1133.11 -20.774 -24.1669 -21.2202 -24.7159 -21.6869 -25.4497 -22.1685 -26.1743 -22.6574 -26.878 -23.155 -27.5904 -23.6647 -28.3261 -24.1869 -29.0824 -24.7203 -29.8563 -25.2662 -30.6593 -25.8273 -31.4974 -26.4036 -32.3638 -26.9932 -33.2542 -27.5972 -34.1811 -28.2186 -35.152 -28.8575 -36.1606 -29.512 -37.2031 -30.1836 -38.2929 -30.8755 -39.4382 -31.588 -40.6327 -32.3191 -41.8721 -33.0704 -43.1711 -33.8454 -44.5395 -34.6448 -45.9717 -35.4665 -47.4633 -36.3121 -49.0306 -37.1856 -50.6854 -38.0879 -52.423 -39.0169 -54.2404 -39.9746 -56.1557 -40.965 -58.1835 -41.9897 -60.3216 -43.0468 -62.5689 -44.1383 -64.9455 -45.2687 -67.4702 -46.44 -70.1445 -47.6506 -72.9705 -48.9025 -75.9729 -50.2009 -79.1762 -51.5483 -82.5883 -52.9437 -86.2172 -54.3894 -90.0944 -55.8911 -94.2536 -57.4521 -98.7127 -59.0722 -103.489 -60.754 -108.625 -62.5037 -114.166 -64.3251 -120.146 -66.2188 -126.6 -68.1874 -133.587 -70.2371 -141.177 -72.372 -149.427 -74.5925 -158.403 -76.9007 -168.197 -79.3012 -178.915 -81.7967 -190.664 -84.3854 -203.562 -87.0657 -217.762 -89.8372 -233.442 -92.6952 -250.797 -95.629 -270.047 -98.6233 -291.464 -101.658 -315.371 -104.702 -342.138 -107.708 -372.197 -110.608 -406.072 -113.301 -444.387 -115.644 -487.868 -117.419 -537.345 -118.31 -593.731 -117.854 -657.938 -115.393 -730.635 -110.037 -811.783 -100.687 -899.789 -86.2525 -990.02 -66.3568 -1072.31 -38.4961 -1150.83 -19.6795 -1105.63 -1161.35 -20.8017 -23.6753 -21.2494 -24.2682 -21.7159 -24.9832 -22.1967 -25.6935 -22.6859 -26.3887 -23.1845 -27.0918 -23.6949 -27.8157 -24.2179 -28.5594 -24.7524 -29.3218 -25.2997 -30.112 -25.8619 -30.9352 -26.4392 -31.7865 -27.0302 -32.6632 -27.636 -33.5753 -28.2589 -34.5291 -28.8992 -35.5203 -29.5556 -36.5467 -30.2294 -37.6191 -30.9232 -38.7444 -31.6376 -39.9184 -32.3711 -41.1386 -33.1251 -42.417 -33.9027 -43.762 -34.7045 -45.1699 -35.5292 -46.6387 -36.3783 -48.1815 -37.2551 -49.8086 -38.1606 -51.5175 -39.0936 -53.3075 -40.0557 -55.1935 -41.0506 -57.1886 -42.0796 -59.2926 -43.1419 -61.5066 -44.2393 -63.8482 -45.3757 -66.3338 -46.553 -68.9671 -47.7707 -71.7528 -49.0306 -74.7129 -50.3374 -77.8694 -51.6935 -81.2322 -53.0988 -84.8119 -54.5558 -88.6375 -56.0695 -92.7399 -57.6432 -97.1389 -59.2776 -101.855 -60.9757 -106.927 -62.7429 -112.398 -64.5834 -118.306 -66.4983 -124.685 -68.491 -131.595 -70.5672 -139.1 -72.7311 -147.263 -74.9843 -156.15 -77.3295 -165.852 -79.7713 -176.473 -82.3127 -188.122 -84.9535 -200.922 -87.6931 -215.022 -90.5316 -230.604 -93.4655 -247.863 -96.486 -267.026 -99.5798 -288.371 -102.729 -312.222 -105.905 -338.961 -109.064 -369.038 -112.141 -402.995 -115.041 -441.487 -117.625 -485.285 -119.678 -535.291 -120.883 -592.526 -120.767 -658.054 -118.641 -732.761 -113.546 -816.879 -104.254 -909.081 -89.4723 -1004.8 -68.5865 -1093.2 -38.6706 -1180.74 -16.3233 -1127.97 -1195.7 -20.8295 -23.1948 -21.2778 -23.8199 -21.7443 -24.5167 -22.2245 -25.2133 -22.714 -25.8992 -23.2134 -26.5924 -23.7247 -27.3044 -24.2484 -28.0356 -24.784 -28.7862 -25.3326 -29.5634 -25.896 -30.3718 -26.4743 -31.2081 -27.0667 -32.0708 -27.6742 -32.9679 -28.2986 -33.9047 -28.9403 -34.8786 -29.5985 -35.8885 -30.2744 -36.9432 -30.9702 -38.0486 -31.6864 -39.2021 -32.4222 -40.4028 -33.1789 -41.6603 -33.959 -42.9819 -34.7633 -44.3657 -35.5909 -45.811 -36.4434 -47.329 -37.3235 -48.9285 -38.2322 -50.6088 -39.169 -52.3707 -40.1355 -54.2271 -41.1347 -56.1893 -42.1682 -58.2591 -43.2356 -60.4392 -44.3387 -62.7451 -45.481 -65.1914 -46.6645 -67.7837 -47.8891 -70.5283 -49.1569 -73.4451 -50.472 -76.5544 -51.8367 -79.8674 -53.2519 -83.3968 -54.7199 -87.1695 -56.2454 -91.2143 -57.8319 -95.5525 -59.4805 -100.206 -61.1946 -105.213 -62.9792 -110.614 -64.8386 -116.446 -66.7747 -122.749 -68.7913 -129.578 -70.8938 -136.998 -73.0867 -145.07 -75.3725 -153.864 -77.7544 -163.47 -80.2374 -173.99 -82.8248 -185.535 -85.5176 -198.229 -88.3165 -212.224 -91.2221 -227.698 -94.2323 -244.853 -97.34 -263.919 -100.534 -285.176 -103.799 -308.957 -107.108 -335.652 -110.423 -365.724 -113.681 -399.737 -116.794 -438.374 -119.627 -482.452 -121.971 -532.947 -123.51 -590.987 -123.762 -657.802 -122.01 -734.513 -117.224 -821.665 -108.04 -918.265 -92.9294 -1019.91 -70.9826 -1115.14 -38.8029 -1212.92 -13.3594 -1153.42 -1219.55 -20.8498 -22.7272 -21.3058 -23.364 -21.7721 -24.0504 -22.2519 -24.7335 -22.7418 -25.4094 -23.2419 -26.0923 -23.7539 -26.7924 -24.2784 -27.5111 -24.8151 -28.2495 -25.3649 -29.0136 -25.9294 -29.8074 -26.5088 -30.6287 -27.1026 -31.477 -27.7116 -32.3589 -28.3375 -33.2788 -28.9807 -34.2354 -29.6407 -35.2285 -30.3186 -36.2652 -31.0164 -37.3509 -31.7345 -38.484 -32.4725 -39.6647 -33.2318 -40.9011 -34.0144 -42.1993 -34.8211 -43.5589 -35.6516 -44.9805 -36.5074 -46.4733 -37.3907 -48.0451 -38.3027 -49.6968 -39.2433 -51.4301 -40.214 -53.2564 -41.2175 -55.1857 -42.2554 -57.2212 -43.3278 -59.3668 -44.4366 -61.6363 -45.5848 -64.0432 -46.7743 -66.5941 -48.0057 -69.2968 -49.2813 -72.1696 -50.6045 -75.2311 -51.9779 -78.4939 -53.4028 -81.972 -54.8817 -85.6905 -56.419 -89.677 -58.018 -93.9534 -59.6808 -98.5434 -61.4107 -103.483 -63.2126 -108.812 -65.0908 -114.568 -67.0479 -120.792 -69.0881 -127.538 -71.2167 -134.869 -73.4385 -142.849 -75.7567 -151.546 -78.1753 -161.051 -80.6993 -171.466 -83.3327 -182.901 -86.0776 -195.484 -88.9357 -209.365 -91.9085 -224.725 -94.9952 -241.766 -98.1905 -260.723 -101.486 -281.881 -104.867 -305.576 -108.312 -332.207 -111.784 -362.252 -115.227 -396.293 -118.559 -435.042 -121.649 -479.362 -124.297 -530.299 -126.188 -589.096 -126.838 -657.152 -125.502 -735.849 -121.081 -826.086 -112.061 -927.285 -96.6465 -1035.33 -73.5804 -1138.21 -39.2006 -1247.3 -11.8587 -1180.76 -1261.33 -20.8787 -22.2665 -21.3331 -22.9095 -21.7995 -23.584 -22.279 -24.254 -22.7691 -24.9193 -23.2699 -25.5915 -23.7827 -26.2796 -24.308 -26.9858 -24.8457 -27.7117 -25.3967 -28.4626 -25.9623 -29.2418 -26.5428 -30.0482 -27.1379 -30.8819 -27.7484 -31.7483 -28.3758 -32.6515 -29.0204 -33.5908 -29.6822 -34.5667 -30.3621 -35.5854 -31.0617 -36.6513 -31.7817 -37.764 -32.522 -38.9244 -33.2837 -40.1393 -34.0688 -41.4143 -34.8779 -42.7498 -35.7113 -44.1471 -36.5702 -45.6143 -37.4568 -47.1586 -38.372 -48.7815 -39.3163 -50.4859 -40.2911 -52.2815 -41.299 -54.1779 -42.3413 -56.1789 -43.4186 -58.2895 -44.5328 -60.5221 -45.6868 -62.8893 -46.8824 -65.3985 -48.1206 -68.0586 -49.4037 -70.8865 -50.735 -73.8998 -52.1171 -77.1118 -53.5515 -80.5375 -55.0412 -84.2009 -56.59 -88.1281 -58.2017 -92.3418 -59.8784 -96.8667 -61.6239 -101.737 -63.4429 -106.993 -65.3398 -112.671 -67.3178 -118.814 -69.3814 -125.474 -71.536 -132.715 -73.7865 -140.598 -76.137 -149.196 -78.592 -158.596 -81.1568 -168.901 -83.8361 -180.222 -86.633 -192.687 -89.5502 -206.448 -92.5904 -221.685 -95.7538 -238.603 -99.0371 -257.44 -102.434 -278.484 -105.933 -302.077 -109.514 -328.625 -113.146 -358.62 -116.778 -392.661 -120.333 -431.488 -123.688 -476.006 -126.652 -527.335 -128.917 -586.831 -129.995 -656.073 -129.12 -736.724 -125.124 -830.082 -116.338 -936.071 -100.666 -1051 -76.4058 -1162.47 -39.3861 -1284.32 -7.7412 -1212.4 -1295.64 -20.9076 -21.8111 -21.36 -22.4571 -21.8263 -23.1177 -22.3056 -23.7747 -22.796 -24.4289 -23.2974 -25.09 -23.8109 -25.7661 -24.337 -26.4598 -24.8757 -27.173 -25.4279 -27.9105 -25.9945 -28.6751 -26.5761 -29.4666 -27.1725 -30.2855 -27.7846 -31.1363 -28.4133 -32.0227 -29.0595 -32.9447 -29.7229 -33.9032 -30.4047 -34.9036 -31.1062 -35.9498 -31.8281 -37.0421 -32.5706 -38.1819 -33.3347 -39.3752 -34.1222 -40.6269 -34.9338 -41.9381 -35.77 -43.3109 -36.632 -44.7524 -37.5217 -46.2689 -38.4402 -47.863 -39.3881 -49.5379 -40.367 -51.3027 -41.379 -53.1659 -42.4257 -55.1322 -43.5079 -57.2073 -44.6275 -59.4025 -45.7872 -61.7296 -46.9888 -64.1969 -48.2338 -66.8137 -49.5242 -69.596 -50.8635 -72.5606 -52.2541 -75.7212 -53.6981 -79.0936 -55.1983 -82.7008 -56.7586 -86.5678 -58.3827 -90.7178 -60.0733 -95.1761 -61.8341 -99.9764 -63.67 -105.157 -65.5855 -110.756 -67.5843 -116.815 -69.671 -123.388 -71.8514 -130.534 -74.1305 -138.319 -76.5131 -146.813 -79.0043 -156.105 -81.6098 -166.296 -84.3348 -177.497 -87.1836 -189.838 -90.1599 -203.472 -93.2674 -218.578 -96.5075 -235.363 -99.8792 -254.068 -103.378 -274.986 -106.995 -298.46 -110.714 -324.906 -114.508 -354.826 -118.332 -388.838 -122.114 -427.705 -125.743 -472.378 -129.036 -524.043 -131.693 -584.173 -133.231 -654.535 -132.865 -737.089 -129.363 -833.584 -120.89 -944.544 -105.01 -1066.88 -79.5227 -1187.95 -40.0134 -1323.83 -6.04002 -1246.38 -1335.74 -20.9365 -21.3595 -21.3863 -22.0072 -21.8526 -22.6515 -22.3317 -23.2955 -22.8224 -23.9382 -23.3245 -24.588 -23.8387 -25.2519 -24.3655 -25.9329 -24.9052 -26.6334 -25.4584 -27.3572 -26.0262 -28.1074 -26.6089 -28.8839 -27.2066 -29.6878 -27.82 -30.5229 -28.4502 -31.3925 -29.0978 -32.2971 -29.7629 -33.2381 -30.4465 -34.22 -31.1499 -35.2464 -31.8737 -36.3183 -32.6183 -37.4373 -33.3848 -38.6087 -34.1746 -39.837 -34.9888 -41.124 -35.8277 -42.472 -36.6927 -43.8874 -37.5854 -45.3761 -38.5072 -46.9412 -39.4587 -48.5864 -40.4415 -50.3199 -41.4577 -52.1498 -42.5087 -54.0812 -43.5957 -56.1202 -44.7206 -58.2776 -45.8859 -60.5644 -47.0935 -62.9892 -48.345 -65.5622 -49.6428 -68.2982 -50.9899 -71.2135 -52.3891 -74.322 -53.8424 -77.6402 -55.353 -81.1902 -56.9246 -84.9961 -58.561 -89.0814 -60.2653 -93.4718 -62.0414 -98.2003 -63.894 -103.304 -65.8279 -108.822 -67.8473 -114.796 -69.9569 -121.278 -72.1628 -128.329 -74.4704 -136.011 -76.8849 -144.399 -79.412 -153.578 -82.0579 -163.65 -84.8286 -174.726 -87.7291 -186.938 -90.7644 -200.437 -93.939 -215.403 -97.2561 -232.046 -100.716 -250.608 -104.317 -271.385 -108.053 -294.724 -111.912 -321.048 -115.869 -350.869 -119.887 -384.82 -123.903 -423.689 -127.812 -468.468 -131.444 -520.411 -134.514 -581.104 -136.544 -652.506 -136.739 -736.894 -133.805 -836.518 -125.741 -952.608 -109.738 -1082.88 -82.9458 -1214.75 -40.4169 -1366.36 1.37784 -1288.17 -1394.64 -20.9559 -20.9156 -21.4123 -21.5509 -21.8783 -22.1855 -22.3575 -22.8164 -22.8484 -23.4473 -23.351 -24.0853 -23.8659 -24.737 -24.3936 -25.4053 -24.9342 -26.0927 -25.4885 -26.803 -26.0573 -27.5386 -26.641 -28.3001 -27.24 -29.0888 -27.8548 -29.9081 -28.4864 -30.7608 -29.1354 -31.6481 -29.8022 -32.5713 -30.4876 -33.5346 -31.1928 -34.5413 -31.9185 -35.5926 -32.6652 -36.6906 -33.4339 -37.84 -34.2261 -39.0449 -35.0427 -40.3074 -35.8843 -41.6304 -36.7522 -43.0195 -37.648 -44.4803 -38.573 -46.0162 -39.5281 -47.6314 -40.5147 -49.3333 -41.5349 -51.1296 -42.5903 -53.0258 -43.682 -55.0285 -44.8121 -57.1475 -45.9829 -59.3936 -47.1964 -61.7757 -48.4545 -64.3041 -49.7594 -66.9933 -51.1143 -69.8586 -52.5218 -72.9145 -53.9844 -76.1777 -55.5052 -79.6694 -57.088 -83.4133 -58.7367 -87.4327 -60.4545 -91.754 -62.2456 -96.4092 -64.1148 -101.435 -66.0669 -106.87 -68.1066 -112.756 -70.239 -119.146 -72.4701 -126.097 -74.8059 -133.675 -77.2522 -141.952 -79.815 -151.015 -82.5011 -160.964 -85.3172 -171.91 -88.2692 -183.986 -91.3632 -197.343 -94.6049 -212.161 -97.9989 -228.652 -101.548 -247.06 -105.251 -267.681 -109.107 -290.868 -113.105 -317.049 -117.228 -346.746 -121.443 -380.605 -125.695 -419.437 -129.892 -464.271 -133.876 -516.427 -137.377 -577.603 -139.931 -649.952 -140.74 -736.085 -138.457 -838.801 -130.912 -960.153 -114.895 -1098.9 -86.7893 -1242.85 -41.0877 -1412.06 6.30645 -1335.57 -1443.89 -20.9842 -20.4732 -21.4376 -21.0975 -21.9036 -21.7195 -22.3827 -22.3372 -22.8739 -22.956 -23.3771 -23.5822 -23.8927 -24.2214 -24.4211 -24.8769 -24.9626 -25.5512 -25.5179 -26.2477 -26.0877 -26.9687 -26.6726 -27.7153 -27.2728 -28.4887 -27.8889 -29.2919 -28.5219 -30.1278 -29.1724 -30.9976 -29.8407 -31.9029 -30.5279 -32.8475 -31.2348 -33.8343 -31.9624 -34.8651 -32.7112 -35.9419 -33.4821 -37.069 -34.2766 -38.2504 -35.0956 -39.4884 -35.9399 -40.7861 -36.8106 -42.1487 -37.7095 -43.5814 -38.6376 -45.088 -39.5962 -46.6728 -40.5866 -48.3429 -41.6108 -50.1054 -42.6704 -51.9662 -43.7668 -53.9321 -44.902 -56.0123 -46.0782 -58.2174 -47.2976 -60.5563 -48.562 -63.0397 -49.8741 -65.6812 -51.2366 -68.4961 -52.6524 -71.4987 -54.1241 -74.7059 -55.655 -78.1385 -57.2488 -81.8194 -58.9095 -85.772 -60.6407 -90.0228 -62.4466 -94.6033 -64.3322 -99.5495 -66.3024 -104.9 -68.3622 -110.696 -70.5171 -116.991 -72.7733 -123.841 -75.1371 -131.312 -77.6148 -139.475 -80.2131 -148.417 -82.9391 -158.238 -85.8003 -169.049 -88.8037 -180.982 -91.9562 -194.19 -95.2648 -208.853 -98.7355 -225.181 -102.373 -243.422 -106.179 -263.874 -110.155 -286.893 -114.294 -312.91 -118.583 -342.457 -122.997 -376.191 -127.49 -414.944 -131.98 -459.781 -136.326 -512.081 -140.278 -573.651 -143.389 -646.84 -144.868 -734.606 -143.326 -840.343 -136.427 -967.053 -120.521 -1114.81 -91.1218 -1272.25 -42.2737 -1460.91 11.817 -1389.66 -1498.63 -21.0118 -20.032 -21.4624 -20.647 -21.9283 -21.2535 -22.4075 -21.858 -22.899 -22.4645 -23.4027 -23.0785 -23.9189 -23.7052 -24.448 -24.3477 -24.9904 -25.0088 -25.5467 -25.6914 -26.1176 -26.3979 -26.7035 -27.1293 -27.3049 -27.8873 -27.9223 -28.6745 -28.5567 -29.4935 -29.2086 -30.3457 -29.8785 -31.233 -30.5673 -32.1587 -31.2761 -33.1256 -32.0055 -34.1356 -32.7562 -35.1911 -33.5294 -36.2958 -34.3261 -37.4536 -35.1475 -38.6671 -35.9944 -39.9392 -36.868 -41.2751 -37.7698 -42.6796 -38.701 -44.1567 -39.663 -45.7109 -40.6571 -47.3488 -41.6852 -49.0773 -42.749 -50.9025 -43.85 -52.8311 -44.9902 -54.8722 -46.1718 -57.0358 -47.3969 -59.3312 -48.6677 -61.7689 -49.9867 -64.3623 -51.3567 -67.1261 -52.7807 -70.0747 -54.2614 -73.2252 -55.8022 -76.5977 -57.407 -80.2146 -59.0796 -84.0994 -60.824 -88.2785 -62.6445 -92.7828 -64.5462 -97.6478 -66.5343 -102.911 -68.6141 -108.617 -70.7912 -114.814 -73.0722 -121.56 -75.4637 -128.92 -77.9726 -136.966 -80.606 -145.784 -83.3717 -155.472 -86.2778 -166.143 -89.3322 -177.928 -92.543 -190.979 -95.9182 -205.478 -99.4655 -221.634 -103.191 -239.697 -107.101 -259.965 -111.196 -282.797 -115.476 -308.63 -119.934 -338 -124.548 -371.576 -129.285 -410.208 -134.075 -454.991 -138.793 -507.363 -143.212 -569.232 -146.913 -643.14 -149.12 -732.399 -148.417 -841.046 -142.311 -973.159 -126.704 -1130.41 -96.0127 -1302.94 -43.4018 -1513.52 23.4647 -1456.52 -1577.2 -21.0386 -19.5913 -21.4866 -20.199 -21.9525 -20.7877 -22.4317 -21.3788 -22.9235 -21.9727 -23.4277 -22.5743 -23.9446 -23.1883 -24.4745 -23.8179 -25.0177 -24.4655 -25.575 -25.1342 -26.1468 -25.826 -26.7338 -26.5424 -27.3364 -27.2847 -27.9551 -28.0558 -28.5908 -28.8578 -29.2441 -29.6924 -29.9156 -30.5615 -30.606 -31.4682 -31.3165 -32.4152 -32.0477 -33.4044 -32.8004 -34.4383 -33.5757 -35.5206 -34.3747 -36.6547 -35.1984 -37.8433 -36.0478 -39.0898 -36.9241 -40.3988 -37.8288 -41.7749 -38.7632 -43.2224 -39.7285 -44.7456 -40.7262 -46.351 -41.7582 -48.0453 -42.8262 -49.8345 -43.9317 -51.7255 -45.0767 -53.7271 -46.2636 -55.8489 -47.4944 -58.1003 -48.7714 -60.4918 -50.0972 -63.0365 -51.4747 -65.7486 -52.9067 -68.6427 -54.3963 -71.7356 -55.9469 -75.0471 -57.5624 -78.5991 -59.2468 -82.415 -61.0042 -86.5211 -62.8391 -90.9478 -64.7568 -95.7301 -66.7626 -100.906 -68.862 -106.517 -71.0611 -112.614 -73.3666 -119.255 -75.7857 -126.501 -78.3254 -134.426 -80.9936 -143.115 -83.7987 -152.667 -86.7493 -163.192 -89.8544 -174.823 -93.1232 -187.711 -96.5647 -202.036 -100.188 -218.01 -104.002 -235.883 -108.014 -255.953 -112.23 -278.581 -116.652 -304.208 -121.278 -333.374 -126.095 -366.759 -131.078 -405.225 -136.172 -449.897 -141.271 -502.263 -146.176 -564.327 -150.498 -638.818 -153.491 -729.406 -153.732 -840.805 -148.588 -978.303 -133.509 -1145.49 -101.643 -1334.81 -45.1237 -1570.04 33.9532 -1535.6 -1642.19 -21.0557 -19.1557 -21.5103 -19.7444 -21.9761 -20.3219 -22.4555 -20.8994 -22.9476 -21.4805 -23.4523 -22.0696 -23.9698 -22.6708 -24.5004 -23.2873 -25.0445 -23.9214 -25.6027 -24.576 -26.1755 -25.2532 -26.7635 -25.9543 -27.3672 -26.6811 -27.9872 -27.4358 -28.6242 -28.2208 -29.2789 -29.0377 -29.9518 -29.8886 -30.6439 -30.7761 -31.356 -31.703 -32.089 -32.6714 -32.8437 -33.6837 -33.6211 -34.7432 -34.4222 -35.8535 -35.2483 -37.0173 -36.1002 -38.2379 -36.9792 -39.5197 -37.8867 -40.8674 -38.8242 -42.2849 -39.7927 -43.777 -40.794 -45.3497 -41.8298 -47.0095 -42.9018 -48.7625 -44.0117 -50.6156 -45.1616 -52.5773 -46.3536 -54.6569 -47.5901 -56.8639 -48.8732 -59.2087 -50.2057 -61.7041 -51.5904 -64.3639 -53.0304 -67.2027 -54.5288 -70.2372 -56.089 -73.4869 -57.715 -76.9731 -59.411 -80.719 -61.1813 -84.7508 -63.0304 -89.0987 -64.9639 -93.7967 -66.9871 -98.8825 -69.1059 -104.398 -71.3267 -110.394 -73.6566 -116.925 -76.1028 -124.055 -78.673 -131.856 -81.3757 -140.413 -84.2198 -149.823 -87.2147 -160.197 -90.3702 -171.667 -93.6964 -184.384 -97.2039 -198.528 -100.904 -214.311 -104.806 -231.981 -108.92 -251.838 -113.256 -274.246 -117.82 -299.644 -122.614 -328.58 -127.635 -361.737 -132.867 -399.994 -138.269 -444.495 -143.758 -496.774 -149.163 -558.923 -154.136 -633.845 -157.975 -725.567 -159.271 -839.508 -155.281 -982.293 -141.008 -1159.76 -108.15 -1367.67 -47.6129 -1630.58 46.6373 -1629.85 -1747.8 -21.0814 -18.7196 -21.5334 -19.2924 -21.9992 -19.856 -22.4787 -20.4199 -22.9712 -20.9881 -23.4763 -21.5644 -23.9944 -22.1528 -24.5257 -22.7559 -25.0707 -23.3765 -25.6297 -24.0169 -26.2035 -24.6793 -26.7926 -25.3653 -27.3974 -26.0763 -28.0186 -26.8146 -28.6569 -27.5825 -29.3129 -28.3817 -29.9873 -29.2141 -30.681 -30.0825 -31.3948 -30.9892 -32.1295 -31.9366 -32.8861 -32.9271 -33.6655 -33.9639 -34.4688 -35.0502 -35.2971 -36.189 -36.1514 -37.3835 -37.0331 -38.6381 -37.9434 -39.957 -38.8838 -41.3445 -39.8556 -42.8052 -40.8604 -44.345 -41.8999 -45.97 -42.9759 -47.6865 -44.0902 -49.5013 -45.2448 -51.4227 -46.4419 -53.4598 -47.6839 -55.6219 -48.973 -57.9195 -50.3121 -60.365 -51.704 -62.972 -53.1518 -65.7549 -54.6588 -68.7303 -56.2285 -71.9173 -57.8649 -75.3367 -59.5723 -79.0116 -61.3552 -82.968 -63.2184 -87.2355 -65.1673 -91.8478 -67.2078 -96.842 -69.3458 -102.26 -71.588 -108.151 -73.9418 -114.571 -76.4149 -121.582 -79.0154 -129.255 -81.7522 -137.676 -84.6349 -146.94 -87.6736 -157.159 -90.8791 -168.462 -94.2624 -181.001 -97.8355 -194.955 -101.611 -210.535 -105.6 -227.991 -109.817 -247.622 -114.272 -269.79 -118.978 -294.939 -123.942 -323.616 -129.167 -356.512 -134.649 -394.512 -140.363 -438.781 -146.248 -490.889 -152.167 -553.004 -157.82 -628.192 -162.564 -720.823 -165.032 -837.04 -162.411 -984.914 -149.307 -1172.87 -115.703 -1401.27 -50.8824 -1695.4 63.438 -1744.17 -1843.09 -21.1061 -18.2831 -21.5558 -18.8427 -22.0218 -19.3901 -22.5014 -19.9402 -22.9942 -20.4953 -23.4999 -21.0588 -24.0186 -21.6341 -24.5506 -22.2239 -25.0963 -22.8308 -25.6562 -23.457 -26.231 -24.1046 -26.821 -24.7752 -27.4269 -25.4704 -28.0493 -26.1923 -28.6888 -26.943 -29.3462 -27.7243 -30.0221 -28.5383 -30.7173 -29.3873 -31.4327 -30.2738 -32.1692 -31.2002 -32.9276 -32.1687 -33.7089 -33.1825 -34.5143 -34.2448 -35.3449 -35.3585 -36.2016 -36.5268 -37.0859 -37.7539 -37.9989 -39.044 -38.9423 -40.4012 -39.9172 -41.8303 -40.9254 -43.3368 -41.9686 -44.9268 -43.0485 -46.6065 -44.1671 -48.3828 -45.3263 -50.2635 -46.5284 -52.2576 -47.7758 -54.3745 -49.0709 -56.6245 -50.4164 -59.0195 -51.8153 -61.573 -53.2709 -64.2993 -54.7863 -67.2148 -56.3653 -70.3383 -58.0119 -73.69 -59.7306 -77.2929 -61.5259 -81.1727 -63.4029 -85.3585 -65.3671 -89.8836 -67.4245 -94.7846 -69.5815 -100.103 -71.8449 -105.888 -74.2223 -112.194 -76.7219 -119.082 -79.3523 -126.625 -82.1229 -134.905 -85.0438 -144.019 -88.1259 -154.077 -91.3808 -165.207 -94.8208 -177.561 -98.459 -191.317 -102.309 -206.685 -106.386 -223.914 -110.704 -243.304 -115.279 -265.215 -120.126 -290.092 -125.259 -318.483 -130.689 -351.081 -136.422 -388.778 -142.451 -432.752 -148.738 -484.602 -155.183 -546.559 -161.541 -621.834 -167.246 -715.119 -171.007 -833.279 -169.997 -985.923 -158.498 -1184.37 -124.525 -1435.24 -55.4614 -1764.46 82.3787 -1882.01 -1947.13 -21.1299 -17.846 -21.5777 -18.3949 -22.0438 -18.9241 -22.5236 -19.4603 -23.0168 -20.0022 -23.5229 -20.5527 -24.0422 -21.1148 -24.5748 -21.6912 -25.1213 -22.2843 -25.6821 -22.8962 -26.2578 -23.5289 -26.8489 -24.1841 -27.4558 -24.8634 -28.0793 -25.5688 -28.7201 -26.3022 -29.3787 -27.0657 -30.056 -27.861 -30.7527 -28.6906 -31.4697 -29.5568 -32.2079 -30.462 -32.9681 -31.4084 -33.7514 -32.3992 -34.5589 -33.4374 -35.3916 -34.5258 -36.2507 -35.6677 -37.1375 -36.8671 -38.0532 -38.1282 -38.9994 -39.455 -39.9775 -40.8522 -40.989 -42.3253 -42.0358 -43.88 -43.1196 -45.5227 -44.2423 -47.26 -45.4061 -49.0997 -46.6131 -51.0506 -47.8658 -53.1218 -49.1667 -55.3236 -50.5185 -57.6676 -51.9244 -60.1671 -53.3875 -62.8362 -54.9112 -65.6911 -56.4993 -68.7502 -58.1561 -72.0333 -59.8858 -75.5631 -61.6934 -79.3651 -63.5839 -83.468 -65.5632 -87.9043 -67.6373 -92.7105 -69.8129 -97.9278 -72.0971 -103.604 -74.4979 -109.793 -77.0237 -116.556 -79.6836 -123.965 -82.4875 -132.101 -85.4462 -141.06 -88.5713 -150.952 -91.8752 -161.903 -95.3713 -174.065 -99.074 -187.615 -102.999 -202.76 -107.162 -219.751 -111.581 -238.884 -116.275 -260.521 -121.262 -285.105 -126.564 -313.182 -132.199 -345.446 -138.184 -382.793 -144.529 -426.408 -151.222 -477.909 -158.202 -539.578 -165.289 -614.747 -172.008 -708.4 -177.185 -828.102 -178.053 -985.055 -168.712 -1193.71 -134.822 -1469.13 -61.2365 -1838.05 111.723 -2054.97 -2100.02 -21.1449 -17.4122 -21.5991 -17.9407 -22.0652 -18.4579 -22.5453 -18.9802 -23.0388 -19.5087 -23.5454 -20.0461 -24.0652 -20.595 -24.5986 -21.1579 -25.1458 -21.737 -25.7075 -22.3346 -26.284 -22.9524 -26.876 -23.5921 -27.484 -24.2554 -28.1087 -24.9441 -28.7506 -25.6603 -29.4106 -26.4057 -30.0892 -27.1823 -30.7874 -27.9924 -31.5059 -28.8383 -32.2458 -29.7221 -33.0078 -30.6464 -33.793 -31.614 -34.6024 -32.6279 -35.4373 -33.6909 -36.2987 -34.8063 -37.1879 -35.9779 -38.1063 -37.2098 -39.0553 -38.506 -40.0364 -39.8711 -41.0512 -41.3105 -42.1015 -42.8298 -43.1891 -44.4351 -44.3159 -46.1332 -45.4841 -47.9315 -46.6959 -49.8387 -47.9539 -51.8639 -49.2604 -54.017 -50.6185 -56.3095 -52.0312 -58.7545 -53.5017 -61.3657 -55.0336 -64.1593 -56.6307 -67.1531 -58.2973 -70.3667 -60.0379 -73.8224 -61.8575 -77.5455 -63.7614 -81.5641 -65.7555 -85.9102 -67.8461 -90.6199 -70.04 -95.7339 -72.3448 -101.299 -74.7685 -107.369 -77.3202 -114.005 -80.0092 -121.276 -82.846 -129.265 -85.842 -138.064 -89.0095 -147.784 -92.3619 -158.551 -95.9136 -170.513 -99.6801 -183.848 -103.679 -198.762 -107.928 -215.502 -112.447 -234.365 -117.259 -255.71 -122.387 -279.977 -127.856 -307.712 -133.695 -339.608 -139.931 -376.557 -146.593 -419.746 -153.695 -470.807 -161.219 -532.054 -169.053 -606.913 -176.833 -700.619 -183.546 -821.39 -186.579 -982.021 -179.917 -1200.37 -147.032 -1502.02 -69.9395 -1915.14 145.195 -2270.1 -2262.86 -21.1675 -16.9772 -21.6197 -17.4885 -22.0861 -17.9916 -22.5665 -18.4998 -23.0603 -19.0149 -23.5673 -19.539 -24.0877 -20.0746 -24.6217 -20.6239 -25.1697 -21.189 -25.7322 -21.7721 -26.3096 -22.375 -26.9026 -22.9992 -27.5116 -23.6463 -28.1373 -24.3184 -28.7804 -25.0172 -29.4416 -25.7445 -30.1216 -26.5023 -30.8212 -27.2928 -31.5413 -28.1182 -32.2827 -28.9807 -33.0465 -29.8827 -33.8335 -30.827 -34.6449 -31.8165 -35.4819 -32.8539 -36.3456 -33.9426 -37.2372 -35.0863 -38.1582 -36.2888 -39.1099 -37.5542 -40.094 -38.8871 -41.112 -40.2925 -42.1657 -41.7761 -43.257 -43.3438 -44.3879 -45.0023 -45.5604 -46.759 -46.777 -48.6222 -48.04 -50.6009 -49.3522 -52.7048 -50.7163 -54.9453 -52.1357 -57.3351 -53.6135 -59.888 -55.1533 -62.6194 -56.7592 -65.5471 -58.4355 -68.6904 -60.1869 -72.0711 -62.0183 -75.7141 -63.9353 -79.6471 -65.9439 -83.9016 -68.0507 -88.5131 -70.2627 -93.5219 -72.5876 -98.9742 -75.034 -104.923 -77.6111 -111.428 -80.3288 -118.558 -83.1981 -126.395 -86.2309 -135.032 -89.4404 -144.575 -92.8406 -155.15 -96.4472 -166.907 -100.277 -180.018 -104.349 -194.69 -108.683 -211.168 -113.302 -229.746 -118.23 -250.781 -123.497 -274.711 -129.133 -302.076 -135.175 -333.566 -141.662 -370.069 -148.64 -412.768 -156.152 -463.295 -164.224 -523.982 -172.82 -598.318 -181.703 -691.736 -190.065 -813.029 -195.552 -976.534 -192.075 -1203.85 -161.511 -1532.58 -82.1149 -1994.54 183.368 -2535.59 -2430.33 -21.1892 -16.5411 -21.6398 -17.0379 -22.1064 -17.525 -22.5871 -18.0191 -23.0812 -18.5208 -23.5888 -19.0315 -24.1097 -19.5536 -24.6443 -20.0892 -25.193 -20.6403 -25.7563 -21.2089 -26.3346 -21.7967 -26.9284 -22.4053 -27.5385 -23.0363 -28.1653 -23.6916 -28.8095 -24.3729 -29.4719 -25.0821 -30.1532 -25.821 -30.8542 -26.5918 -31.5758 -27.3966 -32.3188 -28.2377 -33.0842 -29.1173 -33.8731 -30.0382 -34.6864 -31.0031 -35.5254 -32.0149 -36.3913 -33.0768 -37.2853 -34.1923 -38.2088 -35.3653 -39.1633 -36.5997 -40.1502 -37.9001 -41.1713 -39.2713 -42.2284 -40.719 -43.3233 -42.2489 -44.4581 -43.8676 -45.6349 -45.5822 -46.8561 -47.401 -48.1242 -49.3328 -49.4418 -51.3872 -50.812 -53.5752 -52.2378 -55.9093 -53.7227 -58.403 -55.2704 -61.0717 -56.885 -63.9326 -58.5708 -67.0046 -60.3326 -70.3093 -62.1756 -73.8711 -64.1055 -77.7173 -66.1284 -81.8787 -68.251 -86.3904 -70.4808 -91.2921 -72.8256 -96.6293 -75.2943 -102.454 -77.8964 -108.825 -80.6424 -115.812 -83.5436 -123.494 -86.6128 -131.962 -89.8636 -141.324 -93.3111 -151.703 -96.9719 -163.246 -100.864 -176.126 -105.008 -190.546 -109.426 -206.749 -114.144 -225.029 -119.188 -245.736 -124.593 -269.306 -130.394 -296.275 -136.637 -327.324 -143.373 -363.333 -150.666 -405.475 -158.587 -455.373 -167.211 -515.358 -176.578 -588.951 -186.596 -681.717 -196.708 -802.916 -204.943 -968.299 -205.34 -1203.45 -178.676 -1559.25 -96.9975 -2076.22 234.98 -2867.56 -2623.53 -21.21 -16.104 -21.6593 -16.5886 -22.1262 -17.058 -22.6071 -17.5382 -23.1017 -18.0262 -23.6096 -18.5235 -24.1311 -19.0321 -24.6664 -19.554 -25.2158 -20.0909 -25.7798 -20.6449 -26.3589 -21.2176 -26.9537 -21.8105 -27.5647 -22.4253 -28.1925 -23.0638 -28.8379 -23.7276 -29.5015 -24.4185 -30.1841 -25.1385 -30.8864 -25.8895 -31.6094 -26.6736 -32.354 -27.4931 -33.1211 -28.3502 -33.9117 -29.2476 -34.7269 -30.1879 -35.5679 -31.1739 -36.4359 -32.2088 -37.3322 -33.296 -38.2582 -34.4393 -39.2153 -35.6426 -40.2051 -36.9103 -41.2293 -38.2472 -42.2896 -39.6586 -43.3881 -41.1504 -44.5267 -42.7289 -45.7077 -44.4012 -46.9334 -46.1753 -48.2063 -48.0599 -49.5293 -50.0642 -50.9053 -52.1992 -52.3376 -54.477 -53.8295 -56.9111 -55.3849 -59.5163 -57.0079 -62.3096 -58.703 -65.3095 -60.4751 -68.5371 -62.3295 -72.0167 -64.272 -75.7748 -66.3089 -79.8418 -68.4472 -84.2522 -70.6943 -89.045 -73.0587 -94.265 -75.5492 -99.9633 -78.176 -106.199 -80.9497 -113.039 -83.8824 -120.561 -86.9874 -128.857 -90.2789 -138.032 -93.773 -148.209 -97.4873 -159.532 -101.441 -172.172 -105.657 -186.33 -110.158 -202.248 -114.973 -220.214 -120.132 -240.577 -125.673 -263.766 -131.638 -290.31 -138.079 -320.882 -145.062 -356.351 -152.666 -397.871 -160.995 -447.045 -170.168 -506.185 -180.313 -578.806 -191.488 -670.542 -203.436 -790.969 -214.703 -957.031 -219.765 -1198.39 -199.199 -1579.81 -114.764 -2160.65 257.96 -3240.29 -2934.09 -21.2233 -15.6688 -21.6782 -16.1337 -22.1454 -16.5909 -22.6267 -17.0569 -23.1216 -17.5313 -23.63 -18.0151 -24.152 -18.5101 -24.6879 -19.0181 -25.2379 -19.5408 -25.8027 -20.0801 -26.3826 -20.6376 -26.9783 -21.2149 -27.5902 -21.8134 -28.2191 -22.4349 -28.8655 -23.0811 -29.5303 -23.7537 -30.2141 -24.4547 -30.9178 -25.1858 -31.6422 -25.9492 -32.3883 -26.747 -33.157 -27.5815 -33.9493 -28.4552 -34.7664 -29.3708 -35.6093 -30.3309 -36.4794 -31.3387 -37.3779 -32.3975 -38.3063 -33.511 -39.266 -34.683 -40.2586 -35.9177 -41.2857 -37.22 -42.3493 -38.595 -43.4512 -40.0485 -44.5936 -41.5866 -45.7786 -43.2162 -47.0087 -44.9452 -48.2865 -46.7821 -49.6147 -48.736 -50.9965 -50.8175 -52.4349 -53.0386 -53.9337 -55.4123 -55.4966 -57.9533 -57.1279 -60.6783 -58.8322 -63.6052 -60.6143 -66.755 -62.4799 -70.1512 -64.4347 -73.82 -66.4853 -77.7911 -68.6389 -82.0986 -70.9032 -86.7807 -73.2866 -91.8815 -75.7987 -97.4512 -78.4497 -103.548 -81.2507 -110.238 -84.2144 -117.598 -87.3545 -125.717 -90.6862 -134.701 -94.2262 -144.669 -97.9931 -155.765 -102.008 -168.157 -106.294 -182.044 -110.877 -197.665 -115.788 -215.303 -121.06 -235.304 -126.736 -258.09 -132.862 -284.184 -139.5 -314.244 -146.726 -349.125 -154.638 -389.958 -163.369 -438.314 -173.088 -496.466 -184.01 -567.884 -196.356 -658.196 -210.198 -777.127 -224.75 -942.478 -235.341 -1187.8 -223.595 -1591.56 -136.345 -2247.9 235.077 -3611.71 -3151.28 -21.2429 -15.2322 -21.6965 -15.6801 -22.164 -16.1233 -22.6456 -16.5753 -23.1409 -17.036 -23.6498 -17.5063 -24.1723 -17.9876 -24.7088 -18.4816 -25.2595 -18.9901 -25.825 -19.5146 -26.4057 -20.0569 -27.0022 -20.6184 -27.6151 -21.2005 -28.2449 -21.805 -28.8924 -22.4336 -29.5583 -23.0879 -30.2433 -23.7696 -30.9483 -24.4808 -31.6741 -25.2234 -32.4217 -25.9995 -33.1919 -26.8113 -33.9859 -27.6613 -34.8048 -28.552 -35.6496 -29.4861 -36.5218 -30.4666 -37.4225 -31.4968 -38.3532 -32.5802 -39.3154 -33.7208 -40.3106 -34.9224 -41.3407 -36.1899 -42.4074 -37.5283 -43.5128 -38.9431 -44.6588 -40.4405 -45.8478 -42.0272 -47.0822 -43.7108 -48.3647 -45.4996 -49.698 -47.4026 -51.0853 -49.4302 -52.5299 -51.594 -54.0354 -53.9069 -55.6056 -56.3831 -57.245 -59.0389 -58.9582 -61.8921 -60.7502 -64.9629 -62.6266 -68.2748 -64.5935 -71.8531 -66.6577 -75.727 -68.8262 -79.93 -71.1072 -84.4997 -73.5095 -89.4793 -76.0426 -94.9181 -78.7173 -100.873 -81.5452 -107.41 -84.5393 -114.604 -87.714 -122.543 -91.0851 -131.329 -94.6702 -141.084 -98.4891 -151.946 -102.564 -164.082 -106.919 -177.689 -111.583 -193.001 -116.588 -210.298 -121.973 -229.92 -127.78 -252.283 -134.066 -277.898 -140.897 -307.413 -148.362 -341.66 -156.578 -381.743 -165.703 -429.189 -175.96 -486.209 -187.652 -556.192 -201.172 -644.676 -216.941 -761.358 -234.972 -924.447 -252.045 -1170.73 -252.342 -1591.26 -169.543 -2330.7 88.4358 -3869.69 -3561.19 -21.2616 -14.7944 -21.7142 -15.2276 -22.1821 -15.6554 -22.6641 -16.0934 -23.1597 -16.5403 -23.669 -16.997 -24.1921 -17.4646 -24.7291 -17.9446 -25.2805 -18.4387 -25.8467 -18.9485 -26.4282 -19.4754 -27.0255 -20.021 -27.6393 -20.5868 -28.2701 -21.1742 -28.9186 -21.7851 -29.5856 -22.4209 -30.2718 -23.0834 -30.978 -23.7746 -31.7052 -24.4962 -32.4541 -25.2505 -33.2259 -26.0395 -34.0215 -26.8656 -34.8421 -27.7314 -35.6889 -28.6393 -36.563 -29.5924 -37.4658 -30.5939 -38.3988 -31.6473 -39.3634 -32.7561 -40.3614 -33.9245 -41.3943 -35.157 -42.464 -36.4585 -43.5727 -37.8345 -44.7223 -39.2909 -45.9152 -40.8343 -47.1538 -42.4722 -48.4408 -44.2126 -49.7791 -46.0643 -51.1719 -48.0374 -52.6224 -50.1434 -54.1344 -52.3949 -55.7119 -54.8056 -57.3592 -57.3916 -59.081 -60.1702 -60.8827 -63.1613 -62.7698 -66.3877 -64.7485 -69.8743 -66.8258 -73.6497 -69.0091 -77.7468 -71.3065 -82.2023 -73.7271 -87.0587 -76.2809 -92.3643 -78.9788 -98.1751 -81.833 -104.555 -84.857 -111.58 -88.0656 -119.334 -91.4754 -127.92 -95.1049 -137.454 -98.9747 -148.076 -103.108 -159.949 -107.532 -173.266 -112.276 -188.257 -117.374 -205.2 -122.868 -224.426 -128.806 -246.345 -135.248 -271.456 -142.269 -300.392 -149.969 -333.96 -158.48 -373.231 -167.993 -419.676 -178.775 -475.426 -191.223 -543.745 -205.905 -629.994 -223.609 -743.654 -245.237 -902.818 -269.829 -1146.14 -286.836 -1574.25 -248.367 -2369.17 -197.678 -3920.38 -3943.95 -21.2795 -14.3555 -21.7313 -14.7759 -22.1996 -15.1871 -22.6819 -15.611 -23.178 -16.0443 -23.6877 -16.4872 -24.2113 -16.941 -24.7489 -17.407 -25.3009 -17.8867 -25.8678 -18.3816 -26.45 -18.8932 -27.0481 -19.4229 -27.6628 -19.9721 -28.2945 -20.5425 -28.944 -21.1355 -29.6121 -21.7528 -30.2994 -22.3961 -31.0069 -23.0671 -31.7353 -23.7678 -32.4857 -24.5001 -33.259 -25.2662 -34.0562 -26.0684 -34.8785 -26.9091 -35.727 -27.7908 -36.603 -28.7164 -37.5079 -29.689 -38.4432 -30.7121 -39.4102 -31.7891 -40.4107 -32.924 -41.4463 -34.1214 -42.5191 -35.3858 -43.6309 -36.7227 -44.784 -38.1378 -45.9807 -39.6377 -47.2234 -41.2295 -48.5149 -42.9211 -49.8581 -44.7211 -51.2561 -46.6393 -52.7125 -48.6871 -54.2308 -50.8765 -55.8153 -53.2212 -57.4703 -55.7366 -59.2007 -58.4398 -61.0118 -61.3502 -62.9093 -64.4902 -64.8996 -67.884 -66.9897 -71.5596 -69.1873 -75.5492 -71.5008 -79.8888 -73.9394 -84.62 -76.5134 -89.7903 -79.2341 -95.4544 -82.1141 -101.675 -85.1673 -108.527 -88.4092 -116.092 -91.857 -124.472 -95.53 -133.781 -99.4499 -144.156 -103.641 -155.757 -108.132 -168.775 -112.954 -183.435 -118.144 -200.01 -123.745 -218.824 -129.812 -240.279 -136.407 -264.861 -143.614 -293.185 -151.542 -326.032 -160.343 -364.43 -170.231 -409.789 -181.524 -464.133 -194.705 -530.563 -210.522 -614.178 -230.142 -724.034 -255.395 -877.565 -288.425 -1113.11 -330.768 -1531.91 -407.988 -2291.95 -534.339 -3794.03 -4341.91 -21.2915 -13.9174 -21.7479 -14.3195 -22.2166 -14.7184 -22.6993 -15.1283 -23.1957 -15.5478 -23.7059 -15.9771 -24.2299 -16.417 -24.7681 -16.8689 -25.3207 -17.3341 -25.8882 -17.8141 -26.4712 -18.3102 -27.0701 -18.824 -27.6856 -19.3567 -28.3182 -19.9098 -28.9687 -20.485 -29.6378 -21.0837 -30.3263 -21.7076 -31.0349 -22.3585 -31.7646 -23.0381 -32.5164 -23.7484 -33.2911 -24.4915 -34.0898 -25.2697 -34.9137 -26.0852 -35.764 -26.9405 -36.6419 -27.8385 -37.5489 -28.7821 -38.4862 -29.7747 -39.4556 -30.8197 -40.4586 -31.9211 -41.4969 -33.083 -42.5726 -34.3101 -43.6875 -35.6077 -44.844 -36.9814 -46.0443 -38.4374 -47.291 -39.9828 -48.5869 -41.6253 -49.9348 -43.3732 -51.3381 -45.2361 -52.8001 -47.2251 -54.3246 -49.352 -55.9159 -51.6299 -57.5785 -54.074 -59.3171 -56.7011 -61.1374 -59.53 -63.045 -62.5825 -65.0466 -65.8824 -67.1494 -69.4569 -69.361 -73.3376 -71.6901 -77.5597 -74.1463 -82.1638 -76.74 -87.1965 -79.483 -92.7114 -82.3882 -98.7703 -85.47 -105.445 -88.7445 -112.818 -92.2295 -120.987 -95.9452 -130.066 -99.9142 -140.187 -104.162 -151.509 -108.719 -164.219 -113.617 -178.537 -118.897 -194.73 -124.604 -213.117 -130.796 -234.087 -137.541 -258.116 -144.929 -285.796 -153.081 -317.88 -162.162 -355.35 -172.412 -399.538 -184.196 -452.349 -198.081 -516.678 -214.986 -597.272 -236.459 -702.561 -265.244 -848.781 -306.739 -1071.61 -377.763 -1460.89 -551.268 -2118.44 -891.691 -3453.61 -4599.31 -21.3083 -13.478 -21.7638 -13.864 -22.233 -14.2493 -22.7161 -14.6453 -23.2129 -15.051 -23.7235 -15.4665 -24.248 -15.8925 -24.7867 -16.3302 -25.3399 -16.7809 -25.9081 -17.2459 -26.4917 -17.7266 -27.0914 -18.2243 -27.7077 -18.7404 -28.3412 -19.2763 -28.9927 -19.8336 -29.6628 -20.4136 -30.3523 -21.0181 -31.0621 -21.6487 -31.7931 -22.3071 -32.5461 -22.9954 -33.3222 -23.7154 -34.1224 -24.4694 -34.9479 -25.2597 -35.7999 -26.0885 -36.6797 -26.9587 -37.5886 -27.8732 -38.528 -28.8352 -39.4996 -29.8481 -40.505 -30.9157 -41.546 -32.042 -42.6245 -33.2317 -43.7425 -34.4897 -44.9023 -35.8216 -46.1062 -37.2335 -47.3567 -38.7322 -48.6568 -40.3252 -50.0094 -42.0206 -51.4176 -43.8278 -52.8852 -45.7576 -54.4158 -47.8214 -56.0137 -50.0319 -57.6836 -52.4042 -59.4303 -54.9544 -61.2595 -57.7009 -63.177 -60.665 -65.1897 -63.8698 -67.3046 -67.3419 -69.5299 -71.1123 -71.8743 -75.2153 -74.3476 -79.6905 -76.9607 -84.5834 -79.7255 -89.9466 -82.6553 -95.8405 -85.7651 -102.335 -89.0714 -109.511 -92.5928 -117.465 -96.3502 -126.308 -100.367 -136.17 -104.671 -147.206 -109.292 -159.598 -114.265 -173.563 -119.633 -189.362 -125.444 -207.306 -131.758 -227.773 -138.649 -251.225 -146.215 -278.231 -154.583 -309.512 -163.933 -345.999 -174.532 -388.94 -186.783 -440.098 -201.334 -502.128 -219.264 -579.341 -242.472 -679.354 -274.494 -816.758 -322.836 -1023.27 -409.858 -1373.86 -600.206 -1928.1 -1129.7 -2924.11 -3635.7 -21.3243 -13.0375 -21.7792 -13.409 -22.2488 -13.7797 -22.7323 -14.1618 -23.2295 -14.5538 -23.7405 -14.9554 -24.2655 -15.3675 -24.8047 -15.791 -25.3585 -16.2271 -25.9273 -16.6771 -26.5116 -17.1422 -27.1121 -17.6239 -27.7291 -18.1233 -28.3635 -18.6419 -29.0159 -19.1812 -29.687 -19.7425 -30.3775 -20.3275 -31.0885 -20.9378 -31.8206 -21.575 -32.5749 -22.2411 -33.3523 -22.938 -34.154 -23.6677 -34.9811 -24.4326 -35.8347 -25.2349 -36.7163 -26.0772 -37.6271 -26.9624 -38.5686 -27.8937 -39.5423 -28.8744 -40.5501 -29.9079 -41.5936 -30.9985 -42.6748 -32.1505 -43.7958 -33.3687 -44.9587 -34.6586 -46.1661 -36.0261 -47.4205 -37.4778 -48.7246 -39.021 -50.0817 -40.6636 -51.4948 -42.4147 -52.9677 -44.2847 -54.5042 -46.2849 -56.1086 -48.4275 -57.7856 -50.7272 -59.5402 -53.1998 -61.378 -55.863 -63.3053 -58.7377 -65.3286 -61.8464 -67.4555 -65.215 -69.694 -68.8737 -72.0533 -72.8561 -74.5434 -77.2004 -77.1753 -81.9515 -79.9613 -87.1606 -82.9152 -92.8866 -86.0523 -99.1978 -89.3897 -106.174 -92.9467 -113.908 -96.7449 -122.51 -100.809 -132.106 -105.167 -142.848 -109.851 -154.914 -114.898 -168.517 -120.351 -183.909 -126.263 -201.394 -132.697 -221.34 -139.731 -244.191 -147.468 -270.494 -156.044 -300.935 -165.655 -336.388 -176.585 -378.01 -189.276 -427.406 -204.448 -486.956 -223.324 -560.465 -248.112 -654.566 -283.02 -781.85 -336.974 -969.315 -434.179 -1276.66 -622.205 -1740.07 -1073.55 -2472.76 -2547.92 -21.3395 -12.5961 -21.794 -12.9545 -22.2641 -13.3096 -22.748 -13.6779 -23.2456 -14.0561 -23.757 -14.444 -24.2824 -14.8421 -24.8221 -15.2513 -25.3765 -15.6727 -25.9459 -16.1076 -26.5309 -16.5572 -27.132 -17.0227 -27.7499 -17.5055 -28.3851 -18.0067 -29.0383 -18.5279 -29.7104 -19.0705 -30.402 -19.6359 -31.1139 -20.2258 -31.8472 -20.8417 -32.6028 -21.4856 -33.3815 -22.1592 -34.1846 -22.8647 -35.0132 -23.604 -35.8684 -24.3796 -36.7517 -25.1939 -37.6643 -26.0498 -38.6078 -26.9503 -39.5837 -27.8985 -40.5937 -28.8979 -41.6397 -29.9525 -42.7235 -31.0666 -43.8474 -32.2448 -45.0134 -33.4925 -46.2242 -34.8154 -47.4822 -36.2198 -48.7904 -37.7128 -50.1517 -39.3023 -51.5696 -40.9968 -53.0477 -42.8066 -54.5899 -44.7427 -56.2006 -46.8168 -57.8845 -49.0433 -59.6468 -51.4375 -61.493 -54.0168 -63.4296 -56.8012 -65.4634 -59.8127 -67.6018 -63.0766 -69.8534 -66.6222 -72.2271 -70.4823 -74.7335 -74.6941 -77.3837 -79.3013 -80.1904 -84.354 -83.1677 -89.9093 -86.3314 -96.034 -89.6992 -102.806 -93.2909 -110.317 -97.1289 -118.672 -101.239 -127.996 -105.65 -138.437 -110.395 -150.168 -115.514 -163.398 -121.051 -178.371 -127.062 -195.383 -133.612 -214.79 -140.784 -237.018 -148.687 -262.592 -157.465 -292.157 -167.323 -326.53 -178.566 -366.767 -191.668 -414.304 -207.409 -471.215 -227.137 -540.737 -253.321 -628.382 -290.736 -744.436 -349.324 -910.727 -451.979 -1174 -633.035 -1559.01 -1037.45 -2068.34 -1619.07 -21.3503 -12.1546 -21.8084 -12.4964 -22.2788 -12.8391 -22.7631 -13.1937 -23.2611 -13.5581 -23.7729 -13.9322 -24.2988 -14.3162 -24.839 -14.7111 -25.3939 -15.1178 -25.9639 -15.5376 -26.5495 -15.9716 -27.1514 -16.4209 -27.7699 -16.8869 -28.4059 -17.3707 -29.06 -17.8738 -29.733 -18.3976 -30.4256 -18.9434 -31.1386 -19.5128 -31.873 -20.1073 -32.6297 -20.7289 -33.4097 -21.3792 -34.2142 -22.0602 -35.0442 -22.774 -35.901 -23.5228 -36.7859 -24.309 -37.7003 -25.1354 -38.6457 -26.0049 -39.6237 -26.9205 -40.6359 -27.8857 -41.6842 -28.9042 -42.7707 -29.9802 -43.8973 -31.1182 -45.0664 -32.3235 -46.2803 -33.6014 -47.5419 -34.9582 -48.8539 -36.4008 -50.2195 -37.9367 -51.642 -39.5742 -53.1252 -41.3235 -54.6729 -43.1949 -56.2897 -45.2 -57.9803 -47.3527 -59.7499 -49.6679 -61.6044 -52.1623 -63.5501 -54.8555 -65.594 -57.7689 -67.7437 -60.9268 -70.0078 -64.3581 -72.3957 -68.0944 -74.9178 -72.1719 -77.5859 -76.6333 -80.4127 -81.5271 -83.4128 -86.9092 -86.6024 -92.8444 -89.9997 -99.4089 -93.6252 -106.691 -97.5021 -114.795 -101.657 -123.841 -106.119 -133.974 -110.925 -145.363 -116.113 -158.209 -121.732 -172.752 -127.839 -189.277 -134.502 -208.127 -141.808 -229.712 -149.871 -254.529 -158.842 -283.186 -168.935 -316.436 -180.472 -355.23 -193.953 -400.823 -210.206 -454.961 -230.68 -520.263 -258.05 -601.012 -297.532 -704.954 -359.972 -848.288 -472.121 -1061.85 -695.489 -1335.65 -1145.54 -1618.29 -842.742 -21.3644 -11.712 -21.8221 -12.0387 -22.293 -12.3682 -22.7777 -12.709 -23.2761 -13.0597 -23.7883 -13.4199 -24.3146 -13.7899 -24.8553 -14.1704 -25.4107 -14.5624 -25.9813 -14.967 -26.5675 -15.3853 -27.17 -15.8184 -27.7893 -16.2676 -28.4261 -16.734 -29.081 -17.2189 -29.7548 -17.7238 -30.4483 -18.2499 -31.1624 -18.7987 -31.8978 -19.3719 -32.6557 -19.971 -33.437 -20.5979 -34.2427 -21.2544 -35.0742 -21.9426 -35.9325 -22.6645 -36.819 -23.4225 -37.7351 -24.2193 -38.6823 -25.0577 -39.6623 -25.9406 -40.6766 -26.8713 -41.7273 -27.8535 -42.8162 -28.8913 -43.9455 -29.9889 -45.1175 -31.1515 -46.3346 -32.3843 -47.5996 -33.6932 -48.9154 -35.085 -50.285 -36.567 -51.712 -38.1473 -53.2 -39.8355 -54.7531 -41.6418 -56.3758 -43.5774 -58.0729 -45.6555 -59.8497 -47.8911 -61.7122 -50.2999 -63.6667 -52.901 -65.7203 -55.7152 -67.8809 -58.7662 -70.1573 -62.0818 -72.5588 -65.6928 -75.0963 -69.6344 -77.7817 -73.9479 -80.628 -78.6808 -83.6503 -83.8869 -86.8651 -89.6295 -90.2912 -95.9829 -93.9495 -103.033 -97.8642 -110.88 -102.062 -119.643 -106.575 -129.461 -111.439 -140.499 -116.695 -152.953 -122.394 -167.054 -128.593 -183.078 -135.366 -201.354 -142.802 -222.276 -151.018 -246.313 -160.173 -274.032 -170.489 -306.12 -182.299 -343.421 -196.123 -386.998 -212.829 -438.256 -233.933 -499.159 -262.265 -572.681 -303.427 -663.792 -369.591 -782.124 -490.675 -940.77 -718.682 -1107.64 -1159.98 -1176.99 -152.949 -21.3778 -11.2685 -21.8352 -11.5813 -22.3066 -11.8968 -22.7917 -12.224 -23.2905 -12.561 -23.8031 -12.9073 -24.3298 -13.2632 -24.871 -13.6293 -25.4269 -14.0065 -25.998 -14.3959 -26.5848 -14.7985 -27.188 -15.2153 -27.808 -15.6476 -28.4455 -16.0964 -29.1012 -16.5632 -29.7759 -17.0491 -30.4703 -17.5554 -31.1853 -18.0837 -31.9218 -18.6353 -32.6808 -19.212 -33.4632 -19.8154 -34.2703 -20.4474 -35.103 -21.1098 -35.9628 -21.8047 -36.8509 -22.5345 -37.7686 -23.3015 -38.7176 -24.1086 -39.6995 -24.9587 -40.7159 -25.8548 -41.7688 -26.8007 -42.8601 -27.8 -43.992 -28.857 -45.1668 -29.9767 -46.387 -31.1641 -47.6553 -32.4249 -48.9747 -33.7657 -50.3483 -35.1934 -51.7795 -36.716 -53.2723 -38.3427 -54.8306 -40.0835 -56.4589 -41.949 -58.1623 -43.9521 -59.9461 -46.1073 -61.8162 -48.4298 -63.7793 -50.9379 -65.8424 -53.6521 -68.0136 -56.595 -70.3017 -59.7936 -72.7165 -63.278 -75.2689 -67.0821 -77.971 -71.2458 -80.8363 -75.8154 -83.8801 -80.8431 -87.1194 -86.3903 -90.5733 -92.529 -94.2635 -99.3426 -98.2149 -106.929 -102.455 -115.402 -107.017 -124.899 -111.938 -135.579 -117.26 -147.631 -123.035 -161.278 -129.325 -176.788 -136.204 -194.476 -143.764 -214.715 -152.128 -237.949 -161.458 -264.702 -171.983 -295.595 -184.044 -331.359 -198.176 -372.866 -215.269 -421.164 -236.881 -477.546 -265.922 -543.64 -308.166 -621.547 -376.283 -714.007 -501.853 -815.199 -742.021 -867.47 -1188.35 -730.661 457.51 -21.3905 -10.8243 -21.8479 -11.124 -22.3197 -11.4249 -22.8052 -11.7386 -23.3043 -12.0618 -23.8173 -12.3942 -24.3445 -12.736 -24.886 -13.0877 -25.4424 -13.4502 -26.0141 -13.8243 -26.6015 -14.2111 -27.2052 -14.6116 -27.8259 -15.0269 -28.4641 -15.4582 -29.1206 -15.9067 -29.7961 -16.3736 -30.4914 -16.8602 -31.2074 -17.3678 -31.9449 -17.8978 -32.7049 -18.452 -33.4885 -19.0318 -34.2968 -19.6392 -35.1308 -20.2757 -35.992 -20.9436 -36.8815 -21.6449 -37.8009 -22.3821 -38.7517 -23.1579 -39.7353 -23.975 -40.7538 -24.8364 -41.8088 -25.7456 -42.9024 -26.7064 -44.0368 -27.7226 -45.2143 -28.7992 -46.4374 -29.941 -47.7089 -31.1534 -49.0318 -32.4428 -50.4092 -33.816 -51.8446 -35.2806 -53.3419 -36.8454 -54.9052 -38.5202 -56.5391 -40.3151 -58.2486 -42.2427 -60.039 -44.3168 -61.9166 -46.5522 -63.8878 -48.9666 -65.9602 -51.5798 -68.1416 -54.4136 -70.4411 -57.4941 -72.8687 -60.8504 -75.4355 -64.5153 -78.1538 -68.5275 -81.0375 -72.9318 -84.1021 -77.7786 -87.365 -83.1273 -90.8459 -89.0481 -94.5671 -95.6214 -98.554 -102.942 -102.835 -111.121 -107.445 -120.29 -112.42 -130.604 -117.806 -142.244 -123.656 -155.428 -130.033 -170.411 -137.014 -187.495 -144.695 -207.034 -153.199 -229.444 -162.694 -255.207 -173.414 -284.876 -185.705 -319.069 -200.108 -358.463 -217.521 -403.751 -239.516 -455.551 -269.007 -514.149 -311.73 -578.824 -379.917 -645.821 -501.48 -693.636 -725.377 -643.574 -1155.84 -300.193 1025.31 -21.4001 -10.3794 -21.86 -10.664 -22.3323 -10.9527 -22.8181 -11.2527 -23.3176 -11.5623 -23.831 -11.8809 -24.3585 -12.2085 -24.9005 -12.5457 -25.4574 -12.8933 -26.0296 -13.2521 -26.6175 -13.6231 -27.2219 -14.0072 -27.8432 -14.4056 -28.4821 -14.8193 -29.1393 -15.2495 -29.8156 -15.6973 -30.5117 -16.164 -31.2286 -16.6509 -31.9671 -17.1594 -32.7281 -17.6909 -33.5128 -18.2472 -34.3222 -18.8297 -35.1576 -19.4404 -36.0201 -20.0811 -36.911 -20.7539 -37.832 -21.4612 -38.7843 -22.2055 -39.7698 -22.9895 -40.7901 -23.8161 -41.8472 -24.6886 -42.9431 -25.6105 -44.0799 -26.5858 -45.26 -27.6191 -46.4859 -28.715 -47.7605 -29.8788 -49.0867 -31.1166 -50.4678 -32.435 -51.9072 -33.8412 -53.4089 -35.3438 -54.977 -36.9521 -56.6162 -38.6759 -58.3315 -40.5273 -60.1285 -42.5199 -62.0131 -44.6676 -63.9924 -46.9874 -66.0735 -49.4986 -68.2648 -52.2223 -70.5754 -55.1835 -73.0154 -58.4104 -75.596 -61.9346 -78.33 -65.7935 -81.2315 -70.0303 -84.3161 -74.6939 -87.602 -79.8415 -91.109 -85.5411 -94.8601 -91.8703 -98.8814 -98.9207 -103.202 -106.8 -107.857 -115.635 -112.886 -125.575 -118.334 -136.796 -124.256 -149.506 -130.717 -163.95 -137.796 -180.416 -145.592 -199.238 -154.231 -220.805 -163.882 -245.556 -174.782 -273.975 -187.28 -306.572 -201.916 -343.826 -219.584 -386.083 -241.836 -433.299 -271.524 -484.46 -314.186 -536.162 -381.285 -578.722 -497.072 -577.849 -701.109 -439.537 -1086.23 84.9288 1564.61 -21.4118 -9.93367 -21.8716 -10.2042 -22.3443 -10.48 -22.8305 -10.7665 -23.3304 -11.0624 -23.8441 -11.3671 -24.372 -11.6806 -24.9145 -12.0033 -25.4718 -12.336 -26.0444 -12.6795 -26.6329 -13.0346 -27.2378 -13.4023 -27.8597 -13.7837 -28.4993 -14.1797 -29.1572 -14.5915 -29.8342 -15.0203 -30.5312 -15.4671 -31.2489 -15.9332 -31.9883 -16.42 -32.7504 -16.9288 -33.5361 -17.4614 -34.3467 -18.0192 -35.1832 -18.6039 -36.047 -19.2173 -36.9393 -19.8615 -37.8617 -20.5388 -38.8157 -21.2516 -39.8029 -22.0024 -40.825 -22.7939 -41.8841 -23.6295 -42.9821 -24.5125 -44.1212 -25.4467 -45.3038 -26.4365 -46.5325 -27.4863 -47.81 -28.6013 -49.1395 -29.7871 -50.5241 -31.0504 -51.9673 -32.3979 -53.4732 -33.8379 -55.046 -35.3793 -56.6903 -37.0316 -58.4112 -38.8064 -60.2144 -40.7167 -62.106 -42.776 -64.0929 -45.0005 -66.1825 -47.409 -68.3833 -50.0216 -70.7045 -52.8623 -73.1564 -55.9585 -75.7505 -59.3406 -78.4995 -63.0444 -81.4181 -67.1118 -84.5222 -71.5898 -87.83 -76.5337 -91.3622 -82.0089 -95.1422 -88.0903 -99.1967 -94.8662 -103.556 -102.441 -108.255 -110.936 -113.335 -120.495 -118.843 -131.288 -124.834 -143.515 -131.376 -157.408 -138.55 -173.243 -146.455 -191.333 -155.221 -212.039 -165.019 -235.758 -176.086 -262.909 -188.768 -293.889 -203.6 -328.994 -221.457 -368.226 -243.843 -410.913 -273.487 -454.817 -315.58 -494.069 -380.452 -513.85 -487.829 -470.473 -662.012 -265.353 -968.722 391.639 2101.07 -21.4228 -9.48731 -21.8826 -9.74449 -22.3557 -10.0068 -22.8423 -10.28 -23.3425 -10.5622 -23.8567 -10.853 -24.3849 -11.1523 -24.9278 -11.4605 -25.4855 -11.7783 -26.0586 -12.1064 -26.6476 -12.4456 -27.2531 -12.7969 -27.8756 -13.1612 -28.5158 -13.5395 -29.1744 -13.9329 -29.8521 -14.3425 -30.5498 -14.7693 -31.2684 -15.2146 -32.0087 -15.6797 -32.7717 -16.1659 -33.5584 -16.6747 -34.37 -17.2076 -35.2077 -17.7662 -36.0727 -18.3523 -36.9664 -18.9678 -37.8902 -19.615 -38.8457 -20.2961 -39.8345 -21.0135 -40.8585 -21.77 -41.9194 -22.5685 -43.0194 -23.4125 -44.1608 -24.3054 -45.3458 -25.2514 -46.5771 -26.255 -47.8575 -27.3209 -49.19 -28.4546 -50.578 -29.6625 -52.0249 -30.951 -53.5349 -32.3279 -55.1121 -33.8021 -56.7613 -35.3824 -58.4876 -37.0801 -60.2968 -38.9076 -62.195 -40.8778 -64.1892 -43.0062 -66.2871 -45.3111 -68.4969 -47.8117 -70.8283 -50.5309 -73.2917 -53.4951 -75.8987 -56.7337 -78.6623 -60.2808 -81.5972 -64.1768 -84.72 -68.467 -88.0491 -73.2045 -91.6056 -78.4524 -95.4134 -84.2825 -99.4999 -90.7798 -103.896 -98.0445 -108.638 -106.194 -113.767 -115.366 -119.332 -125.723 -125.39 -137.456 -132.01 -150.789 -139.274 -165.979 -147.284 -183.323 -156.17 -203.153 -166.105 -225.823 -177.324 -251.69 -190.169 -281.045 -205.161 -314.001 -223.144 -350.243 -245.549 -388.509 -274.925 -425.44 -316.044 -452.951 -378.491 -451.402 -483.53 -365.435 -673.441 -75.4415 -1028.67 746.873 2523.2 -21.4332 -9.04044 -21.8931 -9.28464 -22.3667 -9.53321 -22.8536 -9.79302 -23.3542 -10.0616 -23.8686 -10.3385 -24.3973 -10.6236 -24.9405 -10.9173 -25.4986 -11.2201 -26.0722 -11.5328 -26.6617 -11.8561 -27.2676 -12.1909 -27.8907 -12.5381 -28.5315 -12.8987 -29.1907 -13.2737 -29.8692 -13.6641 -30.5677 -14.0709 -31.287 -14.4953 -32.0281 -14.9385 -32.792 -15.402 -33.5797 -15.8869 -34.3924 -16.3949 -35.2312 -16.9274 -36.0974 -17.4861 -36.9923 -18.0729 -37.9175 -18.6899 -38.8744 -19.3392 -39.8648 -20.0232 -40.8904 -20.7444 -41.9532 -21.5058 -43.0552 -22.3105 -44.1986 -23.162 -45.3859 -24.0641 -46.6197 -25.0212 -47.9028 -26.0378 -49.2383 -27.1191 -50.6295 -28.2713 -52.08 -29.5005 -53.5938 -30.8141 -55.1753 -32.2206 -56.8292 -33.7286 -58.5607 -35.3486 -60.3756 -37.0927 -62.2801 -38.9732 -64.2814 -41.0049 -66.3871 -43.2054 -68.6057 -45.5931 -70.9469 -48.1897 -73.4213 -51.0207 -76.0406 -54.1144 -78.8181 -57.5033 -81.7689 -61.226 -84.9096 -65.3263 -88.2591 -69.855 -91.8389 -74.8726 -95.6735 -80.4479 -99.7906 -86.6627 -104.222 -93.613 -109.005 -101.411 -114.182 -110.189 -119.802 -120.103 -125.924 -131.334 -132.618 -144.095 -139.968 -158.629 -148.077 -175.213 -157.077 -194.153 -167.139 -215.761 -178.497 -240.332 -191.483 -268.059 -206.601 -298.883 -224.65 -332.194 -246.964 -366.194 -275.867 -396.537 -315.545 -413.272 -373.945 -393.002 -468.365 -271.015 -645.252 101.445 -1001.13 1102.75 2889.76 -21.4415 -8.59252 -21.9031 -8.823 -22.3771 -9.05927 -22.8644 -9.30573 -23.3653 -9.56074 -23.88 -9.82373 -24.409 -10.0946 -24.9526 -10.3738 -25.5111 -10.6616 -26.0851 -10.9588 -26.6751 -11.2662 -27.2815 -11.5845 -27.9051 -11.9146 -28.5465 -12.2574 -29.2064 -12.6138 -29.8855 -12.9849 -30.5846 -13.3717 -31.3047 -13.7752 -32.0467 -14.1966 -32.8114 -14.6372 -33.6001 -15.0983 -34.4137 -15.5813 -35.2535 -16.0876 -36.1208 -16.6188 -37.017 -17.1767 -37.9435 -17.7634 -38.9018 -18.3808 -39.8937 -19.0313 -40.9209 -19.7171 -41.9854 -20.4413 -43.0892 -21.2067 -44.2347 -22.0165 -45.4242 -22.8746 -46.6604 -23.785 -47.9461 -24.7521 -49.2844 -25.7808 -50.6787 -26.877 -52.1326 -28.0466 -53.6501 -29.2966 -55.2357 -30.635 -56.894 -32.0702 -58.6305 -33.6121 -60.4508 -35.2724 -62.3614 -37.0626 -64.3694 -38.9969 -66.4826 -41.0922 -68.7096 -43.3661 -71.0602 -45.8391 -73.5451 -48.5358 -76.1762 -51.4832 -78.9671 -54.7124 -81.933 -58.2602 -85.0908 -62.1685 -88.4599 -66.486 -92.062 -71.2704 -95.9222 -76.5878 -100.069 -82.5161 -104.534 -89.1475 -109.356 -96.5892 -114.578 -104.967 -120.251 -114.43 -126.435 -125.151 -133.2 -137.33 -140.632 -151.197 -148.835 -167.01 -157.942 -185.046 -168.122 -205.582 -179.604 -228.851 -192.71 -254.952 -207.921 -283.673 -225.981 -314.134 -248.109 -344.066 -276.362 -368.284 -314.253 -375.381 -367.691 -339.565 -445.582 -193.124 -575.628 231.491 -835.746 1362.87 3088.31 -21.4509 -8.14404 -21.9126 -8.36132 -22.3869 -8.58491 -22.8746 -8.81809 -23.3758 -9.05952 -23.8909 -9.30863 -24.4202 -9.56532 -24.9641 -9.82985 -25.523 -10.1027 -26.0974 -10.3844 -26.6878 -10.6758 -27.2947 -10.9775 -27.9188 -11.2905 -28.5607 -11.6154 -29.2212 -11.9534 -29.9009 -12.3052 -30.6008 -12.6719 -31.3216 -13.0544 -32.0643 -13.4539 -32.8299 -13.8716 -33.6194 -14.3088 -34.4339 -14.7667 -35.2748 -15.2467 -36.1432 -15.7504 -37.0405 -16.2794 -37.9682 -16.8357 -38.9278 -17.4212 -39.9211 -18.038 -40.9498 -18.6884 -42.016 -19.3751 -43.1216 -20.101 -44.269 -20.8691 -45.4606 -21.683 -46.6991 -22.5466 -47.9872 -23.4639 -49.3283 -24.4398 -50.7255 -25.4798 -52.1826 -26.5895 -53.7036 -27.7755 -55.2931 -29.0456 -56.9557 -30.4076 -58.6969 -31.8709 -60.5224 -33.4468 -62.4388 -35.1462 -64.4533 -36.9825 -66.5736 -38.9719 -68.8086 -41.1312 -71.1681 -43.4797 -73.663 -46.0409 -76.3054 -48.8408 -79.109 -51.9088 -82.0894 -55.2798 -85.2636 -58.9942 -88.6513 -63.0983 -92.2748 -67.647 -96.1595 -72.7031 -100.334 -78.3414 -104.832 -84.6496 -109.692 -91.7297 -114.957 -99.7017 -120.681 -108.707 -126.922 -118.909 -133.755 -130.497 -141.265 -143.687 -149.557 -158.718 -158.763 -175.84 -169.052 -195.293 -180.645 -217.257 -193.853 -241.744 -209.125 -268.401 -227.146 -296.113 -249.005 -322.207 -276.468 -340.82 -312.374 -339.475 -360.884 -291.055 -424.262 -129.746 -488.793 296.022 -509.344 1383.42 2877.7 -21.4597 -7.69511 -21.9215 -7.89953 -22.3962 -8.11015 -22.8842 -8.33012 -23.3857 -8.558 -23.9011 -8.79323 -24.4308 -9.03569 -24.975 -9.28561 -25.5343 -9.5434 -26.1091 -9.80964 -26.6999 -10.085 -27.3072 -10.3701 -27.9318 -10.6659 -28.5743 -10.973 -29.2353 -11.2924 -29.9156 -11.6249 -30.6161 -11.9714 -31.3376 -12.3329 -32.081 -12.7105 -32.8473 -13.1053 -33.6377 -13.5185 -34.4531 -13.9513 -35.2949 -14.405 -36.1643 -14.881 -37.0627 -15.381 -37.9916 -15.9069 -38.9525 -16.4603 -39.9471 -17.0434 -40.9773 -17.6582 -42.045 -18.3074 -43.1524 -18.9937 -44.3016 -19.7199 -45.4952 -20.4894 -46.7358 -21.306 -48.0263 -22.1734 -49.3699 -23.0962 -50.7699 -24.0798 -52.23 -25.1293 -53.7544 -26.2511 -55.3476 -27.4524 -57.0143 -28.7409 -58.7599 -30.1253 -60.5904 -31.6163 -62.5123 -33.2243 -64.5328 -34.962 -66.66 -36.8447 -68.9026 -38.8886 -71.2705 -41.1117 -73.775 -43.5364 -76.4282 -46.1876 -79.2439 -49.093 -82.238 -52.2858 -85.4279 -55.8043 -88.8333 -59.6928 -92.4772 -64.0031 -96.3851 -68.7952 -100.587 -74.1399 -105.115 -80.1208 -110.011 -86.8344 -115.318 -94.3947 -121.089 -102.935 -127.386 -112.611 -134.283 -123.601 -141.866 -136.104 -150.242 -150.342 -159.541 -166.541 -169.929 -184.905 -181.622 -205.564 -194.913 -228.453 -210.219 -253.095 -228.156 -278.175 -249.674 -300.69 -276.239 -314.255 -310.024 -305.691 -353.663 -247.415 -406.13 -77.2798 -441.99 331.882 -357.617 1299.04 2580.45 -21.4679 -7.24586 -21.9299 -7.43753 -22.405 -7.635 -22.8933 -7.84184 -23.3951 -8.05618 -23.9108 -8.27753 -24.4408 -8.50576 -24.9853 -8.74105 -25.5449 -8.98379 -26.1201 -9.2345 -26.7113 -9.49381 -27.3191 -9.76233 -27.9441 -10.0408 -28.587 -10.3301 -29.2486 -10.6308 -29.9295 -10.944 -30.6305 -11.2703 -31.3527 -11.6108 -32.0968 -11.9664 -32.8639 -12.3382 -33.655 -12.7273 -34.4713 -13.135 -35.314 -13.5623 -36.1843 -14.0106 -37.0838 -14.4816 -38.0137 -14.9769 -38.9758 -15.4982 -39.9717 -16.0474 -41.0033 -16.6266 -42.0725 -17.2382 -43.1814 -17.8848 -44.3324 -18.569 -45.5278 -19.2939 -46.7705 -20.0633 -48.0632 -20.8807 -49.4092 -21.7502 -50.8119 -22.6771 -52.2749 -23.6663 -53.8025 -24.7235 -55.3991 -25.8558 -57.0697 -27.0704 -58.8195 -28.3754 -60.6548 -29.7811 -62.5819 -31.2972 -64.6082 -32.9357 -66.7417 -34.7112 -68.9915 -36.6388 -71.3676 -38.7356 -73.8811 -41.0229 -76.5444 -43.5243 -79.3717 -46.2658 -82.3788 -49.2787 -85.5835 -52.5997 -89.0058 -56.2704 -92.6689 -60.34 -96.599 -64.8651 -100.826 -69.9129 -105.384 -75.5626 -110.313 -81.9052 -115.66 -89.0485 -121.476 -97.1187 -127.826 -106.262 -134.783 -116.643 -142.436 -128.451 -150.89 -141.888 -160.275 -157.155 -170.754 -174.427 -182.534 -193.785 -195.891 -215.095 -211.206 -237.78 -229.023 -260.358 -250.142 -279.57 -275.731 -288.666 -307.33 -274.091 -346.269 -208.476 -389.364 -34.1848 -409.145 351.663 -299.928 1189.83 2306.09 -21.4747 -6.79545 -21.9379 -6.97439 -22.4133 -7.15958 -22.9019 -7.35325 -23.404 -7.55408 -23.92 -7.76157 -24.4502 -7.97555 -24.995 -8.1962 -25.555 -8.42387 -26.1304 -8.65902 -26.722 -8.90225 -27.3302 -9.15412 -27.9557 -9.41536 -28.5991 -9.68667 -29.2611 -9.9688 -29.9425 -10.2625 -30.6442 -10.5687 -31.3669 -10.888 -32.1117 -11.2216 -32.8794 -11.5704 -33.6713 -11.9355 -34.4884 -12.3179 -35.3319 -12.7187 -36.2032 -13.1394 -37.1036 -13.5812 -38.0346 -14.0459 -38.9978 -14.535 -39.9949 -15.0503 -41.0277 -15.5937 -42.0983 -16.1676 -43.2088 -16.7743 -44.3614 -17.4164 -45.5586 -18.0967 -46.8032 -18.8187 -48.098 -19.5858 -49.4463 -20.402 -50.8514 -21.272 -52.3172 -22.2005 -53.8478 -23.1929 -55.4477 -24.2559 -57.1219 -25.3962 -58.8757 -26.6215 -60.7154 -27.9414 -62.6474 -29.3652 -64.6792 -30.9039 -66.8189 -32.5715 -69.0754 -34.3822 -71.4591 -36.352 -73.9811 -38.5009 -76.6541 -40.8513 -79.4923 -43.4276 -82.5117 -46.2592 -85.7303 -49.381 -89.1687 -52.8321 -92.8501 -56.6586 -96.8011 -60.9141 -101.052 -65.6619 -105.638 -70.9766 -110.599 -76.9439 -115.983 -83.6653 -121.842 -91.2592 -128.242 -99.862 -135.256 -109.629 -142.974 -120.734 -151.501 -133.361 -160.966 -147.69 -171.527 -163.866 -183.383 -181.928 -196.791 -201.687 -212.093 -222.478 -229.757 -242.694 -250.434 -258.893 -274.995 -264.106 -304.402 -244.685 -338.912 -173.965 -373.602 0.505378 -382.668 360.728 -275.533 1082.69 2055.15 -21.482 -6.34466 -21.9453 -6.51111 -22.4211 -6.6838 -22.9099 -6.86438 -23.4123 -7.05172 -23.9285 -7.24534 -24.459 -7.44507 -25.0041 -7.65107 -25.5644 -7.86364 -26.1402 -8.08321 -26.7321 -8.31034 -27.3407 -8.54554 -27.9665 -8.78949 -28.6104 -9.04285 -29.2728 -9.30631 -29.9548 -9.58063 -30.6569 -9.8665 -31.3802 -10.1647 -32.1256 -10.4762 -32.894 -10.802 -33.6866 -11.1429 -34.5044 -11.5001 -35.3487 -11.8744 -36.2209 -12.2673 -37.1222 -12.6799 -38.0541 -13.114 -39.0184 -13.5708 -40.0166 -14.0521 -41.0507 -14.5597 -42.1226 -15.0957 -43.2345 -15.6625 -44.3886 -16.2622 -45.5875 -16.8978 -46.8339 -17.5724 -48.1307 -18.2891 -49.4811 -19.0516 -50.8886 -19.8645 -52.3569 -20.7322 -53.8903 -21.6595 -55.4933 -22.6529 -57.1709 -23.7186 -58.9285 -24.8639 -60.7724 -26.0976 -62.709 -27.4285 -64.7459 -28.867 -66.8913 -30.4261 -69.1543 -32.1193 -71.5451 -33.9612 -74.0751 -35.9708 -76.7572 -38.1692 -79.6056 -40.5792 -82.6366 -43.2282 -85.8684 -46.1492 -89.3218 -49.3787 -93.0204 -52.9601 -96.9911 -56.9433 -101.265 -61.3883 -105.877 -66.3645 -110.868 -71.9524 -116.286 -78.2471 -122.186 -85.3592 -128.633 -93.4158 -135.7 -102.561 -143.479 -112.955 -152.074 -124.766 -161.612 -138.152 -172.248 -153.23 -184.17 -170.006 -197.615 -188.242 -212.886 -207.208 -230.372 -225.208 -250.575 -238.69 -274.083 -240.598 -301.335 -217.432 -331.707 -143.593 -358.77 27.5679 -359.588 361.546 -259.493 982.598 1832.04 -21.4887 -5.8936 -21.9522 -6.04764 -22.4283 -6.2077 -22.9174 -6.37523 -23.42 -6.5491 -23.9365 -6.72886 -24.4672 -6.91435 -25.0126 -7.10568 -25.5731 -7.30313 -26.1493 -7.50711 -26.7415 -7.7181 -27.3504 -7.93661 -27.9767 -8.16324 -28.6209 -8.39862 -29.2838 -8.64339 -29.9662 -8.89824 -30.6689 -9.16383 -31.3927 -9.44091 -32.1386 -9.73031 -32.9077 -10.0329 -33.7009 -10.3497 -34.5194 -10.6815 -35.3645 -11.0293 -36.2374 -11.3943 -37.1395 -11.7778 -38.0724 -12.1811 -39.0376 -12.6056 -40.0369 -13.0528 -41.0721 -13.5244 -42.1453 -14.0226 -43.2584 -14.5493 -44.414 -15.1067 -45.6145 -15.6973 -46.8625 -16.3243 -48.1612 -16.9904 -49.5136 -17.6991 -50.9233 -18.4548 -52.394 -19.2614 -53.9301 -20.1235 -55.536 -21.047 -57.2167 -22.0379 -58.9779 -23.1027 -60.8256 -24.2498 -62.7666 -25.4876 -64.8083 -26.8253 -66.959 -28.2754 -69.228 -29.8503 -71.6255 -31.5637 -74.1631 -33.4332 -76.8536 -35.4787 -79.7116 -37.7212 -82.7535 -40.1864 -85.9976 -42.905 -89.4651 -45.9113 -93.1798 -49.2453 -97.169 -52.9541 -101.464 -57.0934 -106.101 -61.7279 -111.12 -66.9327 -116.571 -72.7963 -122.509 -79.4214 -128.999 -86.926 -136.116 -95.4437 -143.951 -105.12 -152.609 -116.108 -162.215 -128.546 -172.917 -142.527 -184.896 -158.028 -198.366 -174.772 -213.59 -191.984 -230.88 -207.917 -250.59 -218.981 -273.041 -218.147 -298.215 -192.258 -324.654 -117.154 -344.969 47.8832 -338.991 355.569 -244.516 888.122 1627.89 -21.4949 -5.44236 -21.9586 -5.58395 -22.435 -5.73129 -22.9244 -5.88584 -23.4272 -6.04626 -23.9439 -6.21216 -24.4749 -6.38339 -25.0205 -6.56004 -25.5813 -6.74236 -26.1577 -6.93072 -26.7502 -7.12557 -27.3595 -7.32736 -27.9861 -7.53664 -28.6307 -7.75402 -29.294 -7.98007 -29.9768 -8.21542 -30.68 -8.46069 -31.4043 -8.71658 -32.1507 -8.98386 -32.9203 -9.26335 -33.7141 -9.55592 -34.5333 -9.86236 -35.3791 -10.1836 -36.2527 -10.5207 -37.1556 -10.8749 -38.0894 -11.2473 -39.0555 -11.6394 -40.0558 -12.0525 -41.0921 -12.4882 -42.1663 -12.9483 -43.2807 -13.4349 -44.4376 -13.9498 -45.6395 -14.4954 -46.8892 -15.0746 -48.1895 -15.6901 -49.5438 -16.3449 -50.9555 -17.043 -52.4285 -17.7884 -53.967 -18.585 -55.5756 -19.4384 -57.2593 -20.3542 -59.0238 -21.3383 -60.8751 -22.3985 -62.8201 -23.5426 -64.8663 -24.7792 -67.022 -26.1196 -69.2966 -27.5757 -71.7003 -29.16 -74.2449 -30.8886 -76.9433 -32.7802 -79.8103 -34.8542 -82.8623 -37.1344 -86.1179 -39.6494 -89.5985 -42.4307 -93.3283 -45.5156 -97.3347 -48.9477 -101.649 -52.7787 -106.309 -57.0684 -111.355 -61.8865 -116.836 -67.315 -122.809 -73.4484 -129.34 -80.3957 -136.504 -88.2797 -144.391 -97.233 -153.107 -107.392 -162.773 -118.879 -173.536 -131.765 -185.562 -146.002 -199.047 -161.287 -214.212 -176.819 -231.293 -190.836 -250.503 -199.771 -271.914 -196.736 -295.119 -169.053 -317.823 -94.4507 -332.32 62.3806 -320.86 344.108 -233.029 800.292 1437.31 -21.5002 -4.99005 -21.9645 -5.11958 -22.4412 -5.25467 -22.9308 -5.3962 -23.4339 -5.54319 -23.9508 -5.69524 -24.482 -5.85221 -25.0278 -6.01417 -25.5888 -6.18136 -26.1655 -6.35407 -26.7583 -6.53275 -27.3679 -6.7178 -27.9948 -6.90972 -28.6397 -7.10907 -29.3034 -7.31637 -29.9866 -7.53221 -30.6902 -7.75713 -31.415 -7.9918 -32.1619 -8.23691 -32.932 -8.49323 -33.7264 -8.76155 -34.5462 -9.0426 -35.3926 -9.33719 -36.2669 -9.64636 -37.1705 -9.9712 -38.1051 -10.3128 -39.072 -10.6724 -40.0732 -11.0513 -41.1105 -11.4509 -42.1858 -11.873 -43.3013 -12.3193 -44.4595 -12.7917 -45.6627 -13.2922 -46.9138 -13.8235 -48.2157 -14.3882 -49.5717 -14.9889 -50.9853 -15.6294 -52.4604 -16.3134 -54.0011 -17.0443 -55.6122 -17.8273 -57.2987 -18.6677 -59.0662 -19.5709 -60.9209 -20.5438 -62.8696 -21.5938 -64.9199 -22.7289 -67.0802 -23.9593 -69.36 -25.296 -71.7695 -26.7504 -74.3205 -28.3376 -77.0263 -30.0745 -79.9016 -31.979 -82.9629 -34.0731 -86.2292 -36.3831 -89.7219 -38.938 -93.4656 -41.7719 -97.488 -44.9253 -101.821 -48.4457 -106.502 -52.3878 -111.572 -56.8159 -117.082 -61.8055 -123.087 -67.4428 -129.655 -73.8279 -136.862 -81.073 -144.797 -89.2975 -153.566 -98.6238 -163.288 -109.157 -174.104 -120.95 -186.17 -133.935 -199.661 -147.796 -214.758 -161.721 -231.624 -173.97 -250.335 -181.061 -270.74 -176.331 -292.075 -147.718 -311.317 -75.2081 -320.781 71.8444 -304.474 327.801 -222.759 718.578 1267.94 -21.5054 -4.53751 -21.9699 -4.65505 -22.4468 -4.77778 -22.9367 -4.90635 -23.44 -5.03992 -23.9571 -5.17813 -24.4884 -5.32083 -25.0345 -5.4681 -25.5957 -5.62012 -26.1726 -5.77719 -26.7657 -5.93968 -27.3755 -6.10797 -28.0028 -6.28251 -28.648 -6.4638 -29.3121 -6.65234 -29.9956 -6.84863 -30.6996 -7.05318 -31.4248 -7.2666 -32.1722 -7.48952 -32.9428 -7.72264 -33.7376 -7.96668 -34.5579 -8.22229 -35.4049 -8.49021 -36.2799 -8.77141 -37.1842 -9.06687 -38.1194 -9.3776 -39.0872 -9.70468 -40.0892 -10.0493 -41.1274 -10.4128 -42.2036 -10.7967 -43.3202 -11.2027 -44.4795 -11.6324 -45.684 -12.0877 -46.9364 -12.5711 -48.2398 -13.0848 -49.5973 -13.6313 -51.0127 -14.214 -52.4897 -14.8364 -54.0325 -15.5015 -55.6458 -16.2139 -57.3349 -16.9787 -59.1051 -17.8006 -60.9629 -18.686 -62.915 -19.6417 -64.9691 -20.6748 -67.1337 -21.7947 -69.4182 -23.0115 -71.833 -24.3356 -74.39 -25.7805 -77.1025 -27.3619 -79.9854 -29.0961 -83.0553 -31.0031 -86.3314 -33.107 -89.8353 -35.434 -93.5918 -38.0154 -97.6289 -40.8883 -101.979 -44.0958 -106.679 -47.6877 -111.772 -51.7228 -117.307 -56.27 -123.343 -61.4074 -129.945 -67.2258 -137.191 -73.8272 -145.17 -81.318 -153.987 -89.8072 -163.759 -99.3849 -174.621 -110.088 -186.721 -121.836 -200.211 -134.306 -215.235 -146.697 -231.884 -157.322 -250.108 -162.837 -269.551 -156.887 -289.088 -128.181 -305.223 -59.0735 -310.345 76.9665 -290.006 307.461 -212.572 641.143 1110.02 -21.5101 -4.08481 -21.9748 -4.19033 -22.452 -4.30065 -22.942 -4.41629 -23.4455 -4.53646 -23.9628 -4.66084 -24.4943 -4.78927 -25.0406 -4.92183 -25.602 -5.05869 -26.1791 -5.20009 -26.7724 -5.34638 -27.3825 -5.49789 -28.01 -5.65503 -28.6556 -5.81824 -29.3199 -5.98799 -30.0038 -6.16472 -30.7081 -6.34888 -31.4337 -6.54102 -32.1815 -6.74173 -32.9525 -6.95162 -33.7479 -7.17134 -34.5687 -7.40148 -35.4162 -7.64271 -36.2917 -7.89588 -37.1966 -8.16192 -38.1325 -8.44172 -39.101 -8.73622 -40.1038 -9.04651 -41.1427 -9.37382 -42.2199 -9.71956 -43.3374 -10.0852 -44.4977 -10.4721 -45.7033 -10.8821 -46.957 -11.3174 -48.2616 -11.7801 -49.6207 -12.2723 -51.0376 -12.7971 -52.5163 -13.3577 -54.061 -13.9568 -55.6764 -14.5984 -57.3677 -15.2874 -59.1405 -16.0278 -61.0011 -16.8254 -62.9564 -17.6864 -65.0139 -18.6172 -67.1824 -19.6263 -69.4711 -20.7227 -71.8908 -21.9159 -74.4533 -23.218 -77.1719 -24.6433 -80.0617 -26.2064 -83.1395 -27.9253 -86.4245 -29.822 -89.9387 -31.9199 -93.7068 -34.2472 -97.7573 -36.8378 -102.123 -39.7305 -106.84 -42.9698 -111.954 -46.6091 -117.513 -50.7108 -123.576 -55.3446 -130.209 -60.5924 -137.491 -66.5457 -145.51 -73.2987 -154.37 -80.9472 -164.187 -89.5681 -175.09 -99.1848 -187.216 -109.71 -200.7 -120.822 -215.648 -131.749 -232.083 -140.886 -249.84 -145.08 -268.373 -138.354 -286.225 -110.329 -299.598 -45.7002 -301.02 78.388 -277.456 283.898 -204.939 568.626 964.109 -21.5143 -3.63204 -21.9792 -3.72541 -22.4566 -3.8233 -22.9468 -3.92606 -23.4505 -4.03284 -23.9679 -4.14338 -24.4996 -4.25755 -25.0461 -4.3754 -25.6077 -4.49707 -26.185 -4.6228 -26.7785 -4.75287 -27.3888 -4.88758 -28.0165 -5.0273 -28.6623 -5.17242 -29.327 -5.32336 -30.0112 -5.4805 -30.7158 -5.64426 -31.4417 -5.8151 -32.1899 -5.99356 -32.9613 -6.18021 -33.7571 -6.37559 -34.5783 -6.58022 -35.4263 -6.79472 -36.3023 -7.01985 -37.2078 -7.25643 -38.1443 -7.50524 -39.1134 -7.76712 -40.1169 -8.04305 -41.1565 -8.33414 -42.2345 -8.64161 -43.3529 -8.96679 -44.5141 -9.3109 -45.7207 -9.6755 -46.9755 -10.0627 -48.2813 -10.4743 -49.6416 -10.912 -51.06 -11.3788 -52.5402 -11.8775 -54.0867 -12.4104 -55.704 -12.9811 -57.3974 -13.594 -59.1724 -14.2527 -61.0355 -14.9623 -62.9936 -15.7284 -65.0543 -16.5565 -67.2262 -17.4544 -69.5189 -18.4301 -71.9429 -19.4919 -74.5103 -20.6506 -77.2345 -21.9191 -80.1305 -23.3104 -83.2154 -24.8404 -86.5085 -26.5289 -90.0318 -28.3966 -93.8105 -30.4686 -97.873 -32.7753 -102.252 -35.3513 -106.986 -38.236 -112.118 -41.477 -117.699 -45.1303 -123.786 -49.2574 -130.447 -53.9309 -137.761 -59.2322 -145.816 -65.2437 -154.715 -72.0486 -164.571 -79.7119 -175.509 -88.2464 -187.657 -97.5613 -201.131 -107.348 -216.002 -116.878 -232.233 -124.656 -249.55 -127.763 -267.223 -120.681 -283.538 -94.0141 -294.478 -34.7601 -292.735 76.6447 -266.349 257.512 -197.086 499.363 830.523 -21.5179 -3.17846 -21.9832 -3.26014 -22.4607 -3.3458 -22.9511 -3.43566 -23.4549 -3.52907 -23.9725 -3.62578 -24.5043 -3.72568 -25.0509 -3.82881 -25.6127 -3.9353 -26.1902 -4.04533 -26.7839 -4.15917 -27.3944 -4.27708 -28.0223 -4.39936 -28.6684 -4.52638 -29.3333 -4.65849 -30.0177 -4.79603 -30.7226 -4.93935 -31.4489 -5.08887 -32.1974 -5.24508 -32.9691 -5.40844 -33.7653 -5.57946 -34.5869 -5.75857 -35.4353 -5.94631 -36.3118 -6.14336 -37.2178 -6.35045 -38.1548 -6.56824 -39.1244 -6.79747 -40.1285 -7.03899 -41.1688 -7.2938 -42.2475 -7.56296 -43.3667 -7.84762 -44.5287 -8.14885 -45.7362 -8.46802 -46.9919 -8.80698 -48.2989 -9.16731 -49.6603 -9.55054 -51.0799 -9.95917 -52.5616 -10.3958 -54.1095 -10.8624 -55.7285 -11.3621 -57.4237 -11.8987 -59.2008 -12.4756 -61.0662 -13.097 -63.0267 -13.7678 -65.0902 -14.4931 -67.2652 -15.2794 -69.5614 -16.134 -71.9893 -17.064 -74.5611 -18.0789 -77.2902 -19.19 -80.1917 -20.4089 -83.2829 -21.7492 -86.5832 -23.2285 -90.1148 -24.865 -93.9028 -26.6806 -97.9761 -28.702 -102.368 -30.9597 -107.116 -33.4879 -112.264 -36.3285 -117.864 -39.5306 -123.973 -43.1483 -130.66 -47.2444 -138.002 -51.8902 -146.088 -57.157 -155.021 -63.1161 -164.912 -69.821 -175.88 -77.2776 -188.046 -85.3959 -201.507 -93.8868 -216.304 -102.081 -232.342 -108.617 -249.252 -110.853 -266.122 -103.811 -281.071 -79.0658 -289.894 -25.9372 -285.488 72.239 -256.972 228.996 -191.116 433.506 704.919 -21.5212 -2.72474 -21.9866 -2.79474 -22.4643 -2.86814 -22.9548 -2.94512 -23.4587 -3.02516 -23.9765 -3.10805 -24.5085 -3.19368 -25.0552 -3.28208 -25.6171 -3.37337 -26.1947 -3.46771 -26.7886 -3.5653 -27.3993 -3.66639 -28.0274 -3.77123 -28.6737 -3.88013 -29.3388 -3.99339 -30.0235 -4.11131 -30.7286 -4.23419 -31.4551 -4.36238 -32.2039 -4.49631 -32.976 -4.63638 -33.7724 -4.783 -34.5944 -4.93656 -35.4432 -5.09752 -36.3201 -5.26648 -37.2265 -5.44404 -38.164 -5.63078 -39.1341 -5.82731 -40.1387 -6.03441 -41.1796 -6.25289 -42.2589 -6.48368 -43.3787 -6.72777 -44.5415 -6.98608 -45.7498 -7.25975 -47.0063 -7.55042 -48.3142 -7.85944 -49.6767 -8.18806 -51.0974 -8.53846 -52.5802 -8.91296 -54.1295 -9.31316 -55.75 -9.74165 -57.4468 -10.2019 -59.2257 -10.6967 -61.093 -11.2297 -63.0558 -11.805 -65.1217 -12.4271 -67.2994 -13.1017 -69.5986 -13.8348 -72.0299 -14.6326 -74.6055 -15.5032 -77.3389 -16.4566 -80.2453 -17.5025 -83.342 -18.6525 -86.6487 -19.9218 -90.1875 -21.3262 -93.9836 -22.8844 -98.0663 -24.6193 -102.469 -26.5571 -107.23 -28.7273 -112.392 -31.1656 -118.009 -33.9143 -124.137 -37.02 -130.845 -40.5361 -138.212 -44.5233 -146.327 -49.0427 -155.289 -54.154 -165.209 -59.9003 -176.204 -66.2831 -188.383 -73.2171 -201.83 -80.4394 -216.557 -87.3546 -232.42 -92.7541 -248.96 -94.3136 -265.098 -87.672 -278.856 -65.3085 -285.861 -18.9324 -279.219 65.5976 -248.994 198.771 -184.903 369.415 585.731 -21.524 -2.27095 -21.9896 -2.32921 -22.4674 -2.39032 -22.958 -2.45445 -23.4621 -2.52114 -23.9799 -2.59021 -24.512 -2.66157 -25.0588 -2.73524 -25.6209 -2.81133 -26.1986 -2.88996 -26.7926 -2.9713 -27.4035 -3.05556 -28.0318 -3.14294 -28.6782 -3.2337 -29.3435 -3.32811 -30.0284 -3.4264 -30.7338 -3.52882 -31.4605 -3.63566 -32.2095 -3.74729 -32.9818 -3.86405 -33.7786 -3.98627 -34.6009 -4.11426 -35.45 -4.24842 -36.3272 -4.38925 -37.234 -4.53727 -38.1718 -4.69292 -39.1424 -4.85674 -40.1474 -5.02936 -41.1888 -5.2115 -42.2686 -5.40388 -43.3891 -5.60735 -44.5525 -5.82269 -45.7614 -6.05082 -47.0187 -6.29313 -48.3274 -6.55076 -49.6907 -6.82472 -51.1123 -7.11682 -52.5962 -7.42907 -54.1467 -7.76273 -55.7684 -8.11994 -57.4666 -8.50368 -59.247 -8.9163 -61.116 -9.36067 -63.0807 -9.8404 -65.1487 -10.3591 -67.3287 -10.9216 -69.6305 -11.533 -72.0648 -12.1984 -74.6437 -12.9243 -77.3808 -13.7194 -80.2914 -14.5919 -83.3928 -15.5511 -86.7049 -16.6097 -90.2499 -17.7813 -94.0531 -19.0812 -98.1438 -20.5285 -102.556 -22.1451 -107.327 -23.9559 -112.502 -25.9903 -118.133 -28.2837 -124.278 -30.8752 -131.005 -33.809 -138.393 -37.135 -146.531 -40.9047 -155.518 -45.1668 -165.464 -49.9544 -176.48 -55.2671 -188.669 -61.0278 -202.103 -67.0062 -216.766 -72.6916 -232.472 -77.0473 -248.685 -78.1015 -264.173 -72.1838 -276.92 -52.5612 -282.395 -13.4577 -273.91 57.1128 -242.387 167.248 -179.447 306.475 474.045 -21.5263 -1.81716 -21.992 -1.86354 -22.4699 -1.91238 -22.9607 -1.96369 -23.4648 -2.01703 -23.9828 -2.07228 -24.515 -2.12937 -25.0619 -2.18831 -25.624 -2.24919 -26.2019 -2.3121 -26.796 -2.37718 -27.407 -2.4446 -28.0354 -2.51451 -28.682 -2.58714 -29.3474 -2.66268 -30.0325 -2.74132 -30.738 -2.82327 -31.4649 -2.90876 -32.2142 -2.99808 -32.9867 -3.0915 -33.7837 -3.18929 -34.6062 -3.29171 -35.4556 -3.39905 -36.3331 -3.51174 -37.2402 -3.63019 -38.1784 -3.75474 -39.1493 -3.88581 -40.1547 -4.02394 -41.1965 -4.16969 -42.2768 -4.32364 -43.3977 -4.48645 -44.5616 -4.65877 -45.7711 -4.84133 -47.029 -5.03523 -48.3383 -5.24141 -49.7024 -5.46065 -51.1248 -5.69439 -52.6096 -5.9443 -54.161 -6.21135 -55.7837 -6.4972 -57.4831 -6.80431 -59.2648 -7.13459 -61.1352 -7.49024 -63.1014 -7.8742 -65.1712 -8.28939 -67.3532 -8.73961 -69.6571 -9.22907 -72.0938 -9.76167 -74.6755 -10.3427 -77.4157 -10.9792 -80.3298 -11.6778 -83.4352 -12.4457 -86.7518 -13.2931 -90.3019 -14.2312 -94.111 -15.2722 -98.2085 -16.431 -102.628 -17.7254 -107.409 -19.1755 -112.594 -20.8048 -118.237 -22.6412 -124.395 -24.7166 -131.138 -27.0663 -138.544 -29.7292 -146.702 -32.747 -155.71 -36.1587 -165.676 -39.9879 -176.71 -44.2337 -188.907 -48.8308 -202.327 -53.5864 -216.934 -58.0839 -232.507 -61.4746 -248.438 -62.1701 -263.363 -57.2594 -275.288 -40.6356 -279.503 -9.24278 -269.538 47.1474 -237.107 134.818 -175.362 244.73 370.755 -21.5282 -1.36293 -21.994 -1.39774 -22.472 -1.43438 -22.9628 -1.47284 -23.467 -1.51284 -23.985 -1.55428 -24.5173 -1.59709 -25.0643 -1.6413 -25.6266 -1.68696 -26.2045 -1.73415 -26.7987 -1.78297 -27.4098 -1.83354 -28.0383 -1.88598 -28.685 -1.94045 -29.3506 -1.99712 -30.0358 -2.05611 -30.7415 -2.11758 -31.4685 -2.1817 -32.2179 -2.2487 -32.9906 -2.31878 -33.7878 -2.39214 -34.6105 -2.46895 -35.4601 -2.54947 -36.3378 -2.634 -37.2452 -2.72286 -38.1836 -2.81628 -39.1548 -2.9146 -40.1606 -3.01822 -41.2027 -3.12756 -42.2833 -3.24304 -43.4046 -3.36517 -44.5689 -3.49444 -45.7788 -3.63139 -47.0372 -3.77684 -48.3471 -3.93152 -49.7118 -4.096 -51.1348 -4.27134 -52.6203 -4.45884 -54.1724 -4.65919 -55.796 -4.87362 -57.4963 -5.10404 -59.279 -5.35186 -61.1506 -5.61867 -63.118 -5.90674 -65.1892 -6.21827 -67.3727 -6.55606 -69.6784 -6.92333 -72.1171 -7.32298 -74.7009 -7.75893 -77.4436 -8.23655 -80.3605 -8.76083 -83.4691 -9.33711 -86.7893 -9.97295 -90.3435 -10.6769 -94.1574 -11.4584 -98.2603 -12.3281 -102.686 -13.2994 -107.474 -14.3879 -112.668 -15.6109 -118.32 -16.9892 -124.489 -18.547 -131.245 -20.3109 -138.665 -22.3092 -146.838 -24.5737 -155.863 -27.1337 -165.846 -30.0051 -176.893 -33.1867 -189.096 -36.6278 -202.504 -40.1785 -217.066 -43.5218 -232.529 -46.0108 -248.242 -46.4576 -262.794 -42.7074 -273.92 -29.5089 -277.08 -6.0832 -266.072 36.1395 -232.916 101.661 -171.353 183.167 270.122 -21.5296 -0.908618 -21.9954 -0.931866 -22.4735 -0.956289 -22.9644 -0.981929 -23.4687 -1.00859 -23.9868 -1.03622 -24.5191 -1.06476 -25.0662 -1.09423 -25.6284 -1.12468 -26.2065 -1.15614 -26.8007 -1.18868 -27.4119 -1.2224 -28.0405 -1.25737 -28.6873 -1.29368 -29.3529 -1.33146 -30.0382 -1.3708 -30.744 -1.41178 -31.4712 -1.45453 -32.2207 -1.4992 -32.9936 -1.54593 -33.7909 -1.59484 -34.6138 -1.64605 -35.4635 -1.69973 -36.3414 -1.7561 -37.2489 -1.81534 -38.1876 -1.87763 -39.159 -1.94318 -40.1649 -2.01227 -41.2073 -2.08518 -42.2882 -2.16217 -43.4097 -2.2436 -44.5744 -2.3298 -45.7846 -2.42112 -47.0434 -2.51809 -48.3537 -2.62124 -49.7188 -2.73091 -51.1423 -2.84782 -52.6283 -2.97285 -54.181 -3.10645 -55.8052 -3.24942 -57.5062 -3.40308 -59.2897 -3.56834 -61.1621 -3.74624 -63.1305 -3.93834 -65.2027 -4.1461 -67.3874 -4.37136 -69.6944 -4.61628 -72.1346 -4.88282 -74.72 -5.17353 -77.4645 -5.49204 -80.3836 -5.84174 -83.4946 -6.22611 -86.8174 -6.65011 -90.3747 -7.1196 -94.1922 -7.64091 -98.2992 -8.22108 -102.73 -8.8688 -107.523 -9.59487 -112.723 -10.4108 -118.382 -11.3301 -124.56 -12.3691 -131.325 -13.5459 -138.755 -14.8787 -146.94 -16.3888 -155.978 -18.0961 -165.973 -20.0101 -177.03 -22.1298 -189.237 -24.4208 -202.635 -26.7801 -217.162 -28.9947 -232.544 -30.6288 -248.102 -30.9001 -262.472 -28.3372 -272.793 -19.1878 -275.161 -3.71547 -263.508 24.487 -229.882 68.0345 -168.799 122.084 176.623 -21.5305 -0.454288 -21.9964 -0.465949 -22.4746 -0.478155 -22.9655 -0.490976 -23.4698 -0.504308 -23.9879 -0.518119 -24.5203 -0.532388 -25.0674 -0.547124 -25.6297 -0.562347 -26.2078 -0.578079 -26.8021 -0.594353 -27.4133 -0.611213 -28.0419 -0.628698 -28.6888 -0.646858 -29.3545 -0.665747 -30.0399 -0.685415 -30.7457 -0.705908 -31.473 -0.727283 -32.2226 -0.749617 -32.9955 -0.772982 -33.7929 -0.797439 -34.6159 -0.82305 -35.4657 -0.849895 -36.3438 -0.878078 -37.2514 -0.907704 -38.1902 -0.93885 -39.1617 -0.971622 -40.1678 -1.00617 -41.2104 -1.04263 -42.2914 -1.08113 -43.4132 -1.12185 -44.578 -1.16496 -45.7885 -1.21061 -47.0475 -1.25911 -48.3581 -1.31069 -49.7235 -1.36553 -51.1473 -1.42399 -52.6336 -1.48651 -54.1867 -1.55333 -55.8114 -1.62481 -57.5128 -1.70165 -59.2968 -1.7843 -61.1698 -1.87326 -63.1388 -1.96933 -65.2117 -2.07323 -67.3972 -2.18588 -69.7051 -2.30836 -72.1463 -2.44165 -74.7328 -2.58704 -77.4785 -2.74632 -80.399 -2.92122 -83.5116 -3.11346 -86.8363 -3.3255 -90.3956 -3.5603 -94.2154 -3.82106 -98.3252 -4.11125 -102.759 -4.43516 -107.555 -4.7983 -112.76 -5.20649 -118.424 -5.66626 -124.607 -6.18589 -131.378 -6.77455 -138.816 -7.44117 -147.008 -8.19627 -156.054 -9.05016 -166.057 -10.0071 -177.121 -11.0665 -189.33 -12.211 -202.722 -13.3884 -217.226 -14.4913 -232.553 -15.3008 -248.028 -15.4251 -262.261 -14.1047 -271.965 -9.48422 -273.897 -1.78316 -261.807 12.3969 -227.851 34.0792 -166.735 60.9678 86.2294 -21.531 -21.9969 -22.4751 -22.966 -23.4703 -23.9885 -24.5209 -25.068 -25.6303 -26.2084 -26.8028 -27.414 -28.0427 -28.6895 -29.3553 -30.0407 -30.7466 -31.4739 -32.2235 -32.9965 -33.7939 -34.617 -35.4669 -36.3449 -37.2526 -38.1915 -39.1631 -40.1693 -41.2119 -42.2931 -43.4149 -44.5799 -45.7905 -47.0496 -48.3603 -49.7258 -51.1498 -52.6363 -54.1896 -55.8144 -57.5161 -59.3004 -61.1736 -63.143 -65.2162 -67.4021 -69.7104 -72.1521 -74.7391 -77.4854 -80.4067 -83.5201 -86.8456 -90.4059 -94.227 -98.3382 -102.773 -107.572 -112.778 -118.444 -124.63 -131.405 -138.846 -147.042 -156.092 -166.1 -177.166 -189.377 -202.765 -217.257 -232.558 -247.983 -262.087 -271.572 -273.355 -260.958 -226.879 -165.911 -458.897 1758.8 -705.845 1547.15 -1025.41 1619.47 -1231.76 1506.25 -1427.85 1496.29 -1564.21 1436.26 -1649.76 1385.45 -1674.68 1325.12 -1643.41 1268.63 -1551.41 1207.9 -1392.75 1141.54 -1155.74 1062.89 -887.39 1031.55 -477.328 890.138 822.572 -210.041 1968.84 -431.705 1768.81 -594.943 1782.71 -727.189 1638.49 -832.393 1601.5 -874.469 1478.33 -902.799 1413.78 -871.304 1293.62 -815.226 1212.55 -714.741 1107.41 -615.99 1042.79 -493.438 940.338 -335.317 873.429 -192.392 747.212 630.181 6.47819 1962.36 17.0262 1758.26 40.3834 1759.35 99.5304 1579.34 143.804 1557.23 208.865 1413.27 255.901 1366.75 288.873 1260.65 298.366 1203.06 302.775 1103.01 293.557 1052.01 265.463 968.432 219.269 919.623 127.084 839.398 757.264 154.253 1808.11 291.056 1621.46 438.298 1612.11 546.707 1470.94 666.881 1437.05 728.397 1351.76 784.036 1311.11 798.445 1246.24 783.878 1217.63 730.342 1156.54 655.034 1127.32 547.144 1076.32 408.39 1058.38 234.296 1013.49 991.56 239.548 1568.56 418.529 1442.48 575.136 1455.5 674.89 1371.18 750.439 1361.5 787.524 1314.67 800.516 1298.11 787.586 1259.17 756.466 1248.75 695.915 1217.09 602.647 1220.59 489.477 1189.49 345.655 1202.2 189.503 1169.64 1181.06 155.963 1412.6 263.937 1334.51 346.848 1372.59 407.024 1311.01 436.184 1332.34 457.904 1292.95 451.861 1304.16 436.944 1274.09 397.856 1287.83 358.822 1256.13 295.862 1283.55 238.346 1247.01 159.293 1281.25 87.7732 1241.16 1268.84 65.1675 1347.43 108.918 1290.75 139.05 1342.46 164.872 1285.18 170.731 1326.48 182.47 1281.21 170.918 1315.71 169.892 1275.11 145.446 1312.28 132.778 1268.79 104.237 1312.09 85.0706 1266.17 54.006 1312.32 31.7196 1263.45 1300.56 22.4548 1324.97 36.7173 1276.49 46.9976 1332.18 56.1698 1276.01 55.8277 1326.83 62.189 1274.85 54.2963 1323.6 55.7116 1273.7 45.4469 1322.54 42.588 1271.65 31.8435 1322.83 27.4057 1270.61 16.1835 1323.54 10.3169 1269.32 1310.87 7.24905 1317.73 10.5625 1273.18 13.7205 1329.02 17.018 1272.71 15.8436 1328 18.3498 1272.34 15.3756 1326.58 16.6368 1272.44 12.9266 1326.25 12.971 1271.61 8.92472 1326.88 7.96081 1271.58 4.8919 1326.61 3.23535 1270.97 1314.11 1.81584 1315.91 3.22479 1271.77 3.79106 1328.45 4.73728 1271.77 4.82089 1327.92 5.23557 1271.93 4.28839 1327.52 5.07272 1271.65 3.54123 1327.79 3.7544 1271.4 2.81542 1327.82 2.47206 1271.92 1.43194 1327.65 1.35416 1271.05 1315.46 0.297017 1315.61 0.829605 1271.24 1.52616 1327.76 1.43479 1271.86 1.74261 1327.61 2.0625 1271.61 1.60899 1327.98 1.44733 1271.81 1.54399 1327.69 0.908412 1272.03 0.688751 1328.04 0.753067 1271.86 0.186669 1328.21 0.0592291 1271.18 1315.52 0.941998 1314.67 0.129854 1272.05 -0.638242 1328.52 -1.43918 1272.66 -2.47019 1328.64 -3.95873 1273.1 -3.77946 1327.8 -4.9594 1272.99 -5.02098 1327.75 -5.21826 1272.23 -5.0597 1327.88 -4.74885 1271.54 -3.41939 1326.88 -2.36658 1270.13 1313.16 -4.54526 1319.22 -11.4631 1278.97 -15.6496 1332.71 -20.1628 1277.17 -21.4975 1329.97 -27.6937 1279.29 -25.7145 1325.82 -31.818 1279.1 -27.6047 1323.54 -31.1465 1275.77 -25.2613 1321.99 -24.2939 1270.58 -17.6229 1320.21 -10.3314 1262.83 1302.82 -116.746 1435.96 -142.87 1305.09 -136.896 1326.74 -156.744 1297.02 -153.024 1326.25 -170.934 1297.2 -172.18 1327.06 -186.802 1293.72 -177.356 1314.09 -180.728 1279.14 -159.702 1300.97 -140.815 1251.69 -106.543 1285.94 -62.7234 1219.01 1240.1 3.37599 -247.876 -373.018 -472.572 -508.868 -536.373 -514.42 -497.972 -445.267 -398.065 -323.749 -260 -167.795 -97.225 ) ; boundaryField { courseFace { type calculated; value nonuniform List<scalar> 40000 ( 1.40744e-17 -2.03254e-15 -7.66299e-17 1.14341e-14 1.4474e-14 -2.29843e-12 -1.15548e-14 -5.73559e-15 1.15143e-12 -1.07069e-12 -5.16733e-15 -1.21425e-17 -2.58451e-20 3.30109e-18 -7.65166e-16 -5.95399e-18 7.02812e-16 3.0361e-18 -3.08669e-16 9.42437e-14 -2.63809e-16 -3.22503e-16 9.39426e-14 3.20931e-15 -1.07289e-12 -3.14157e-15 -5.91572e-18 1.06137e-15 -4.48513e-13 -4.49092e-13 -4.86312e-13 6.19256e-13 1.53179e-15 -1.02458e-13 -9.32691e-13 -1.77352e-15 -1.64973e-18 -1.33139e-21 6.02808e-19 -7.50685e-16 4.91325e-13 8.28312e-16 1.27627e-15 -9.2842e-13 -8.39138e-16 -3.45197e-13 -5.0923e-16 -2.3333e-19 -9.75554e-17 -4.56915e-16 4.89361e-13 5.28483e-16 3.88201e-19 -7.8946e-17 8.27144e-17 2.98799e-16 -3.42866e-13 -3.03498e-16 4.54735e-16 -4.83356e-13 -3.8613e-16 -7.06943e-17 1.31203e-16 -1.91037e-13 -1.34499e-16 -4.65535e-20 1.56749e-21 6.51911e-20 -6.22973e-17 1.75419e-16 -3.14668e-13 -2.19506e-16 -8.91816e-20 5.52565e-21 -9.80718e-17 2.6331e-13 1.31499e-16 2.75925e-20 5.12995e-18 -3.342e-21 3.88273e-17 -9.44941e-14 -4.11696e-17 4.61004e-17 -7.66468e-14 -2.67695e-17 -1.57819e-17 4.37926e-17 -1.22548e-13 -4.71485e-17 -9.07976e-21 -3.26268e-24 8.81055e-21 -1.04295e-17 -5.82745e-18 1.76634e-14 2.88169e-18 -1.91595e-21 -7.36811e-25 -1.31548e-28 7.68078e-15 -1.17647e-12 -7.78835e-15 -5.25319e-15 1.18699e-12 -1.14581e-12 1.13712e-12 1.18821e-14 -1.14821e-12 -6.89576e-15 -1.91778e-17 -2.05408e-20 -8.73272e-18 4.18955e-15 -1.0578e-12 -8.10834e-15 1.0765e-12 3.35627e-15 2.77255e-16 -9.71242e-14 -1.07388e-12 -9.34517e-14 -1.07652e-12 -3.37517e-15 6.97511e-16 -4.85306e-13 -1.65943e-15 -3.64928e-18 8.16781e-16 -4.50706e-13 4.82942e-13 1.45723e-15 -1.28466e-16 7.62415e-16 -4.87917e-13 -9.27376e-16 -8.8889e-19 -7.15207e-22 2.35719e-20 1.59332e-19 -3.05708e-16 3.10373e-13 -8.18779e-16 9.31575e-13 1.28563e-15 2.89066e-16 -3.08231e-13 1.80058e-16 -4.91791e-13 3.42378e-13 -3.43637e-13 -3.72722e-16 4.35993e-16 -4.52497e-13 4.87665e-13 8.11522e-16 -4.87985e-13 -7.61794e-16 4.88234e-13 3.73428e-16 3.5609e-16 -4.85178e-13 -4.70943e-16 1.55951e-13 9.07775e-17 -3.55533e-20 2.26767e-17 2.88997e-16 -4.9358e-13 -2.98364e-16 1.24678e-16 -3.14227e-13 -1.71463e-16 -1.01644e-16 2.4452e-13 -2.42898e-13 -1.21394e-16 -2.19948e-17 4.9704e-14 2.30769e-17 3.13106e-17 -7.59234e-14 -1.07974e-16 1.6588e-13 4.24876e-17 5.16176e-14 -1.66184e-13 -1.10392e-16 1.22355e-13 3.63655e-17 -7.83452e-21 -8.57527e-22 3.68155e-17 -1.2191e-13 -4.44465e-17 1.51432e-17 -4.1356e-14 -1.49823e-17 -2.70591e-21 -3.26186e-25 -7.44734e-15 1.15089e-12 1.52092e-14 1.14919e-12 1.18125e-12 -1.12818e-12 1.14003e-12 5.08674e-15 -1.32095e-15 -6.65202e-18 -1.7657e-20 3.05543e-19 3.48621e-19 -6.54208e-17 -1.2696e-15 9.011e-14 1.08101e-12 -1.06893e-12 -1.03416e-13 1.31314e-13 -6.85457e-15 2.14791e-12 7.26693e-15 -4.86535e-13 -2.07735e-16 -4.42798e-13 -1.03867e-12 -2.63933e-15 -2.94446e-18 -2.19989e-16 -5.96973e-16 4.46407e-13 -4.47484e-13 -4.48063e-13 -1.19741e-15 7.69892e-17 -1.98432e-16 -1.24357e-18 1.8647e-16 -1.79278e-16 -1.23333e-18 2.99359e-16 6.56852e-19 2.33624e-16 8.98473e-21 -1.99306e-19 -1.19639e-17 1.6401e-16 -1.33416e-16 1.97519e-17 -8.93357e-17 -4.83549e-17 4.61476e-17 -4.27664e-17 5.51445e-16 -4.88149e-13 -9.91472e-16 4.51197e-13 1.3525e-16 4.47251e-13 3.57605e-16 -7.47848e-17 3.96671e-20 1.32639e-16 -1.5573e-13 -2.08151e-16 1.90358e-13 1.01826e-16 -7.91939e-17 6.47381e-20 -1.17711e-17 -6.92499e-17 4.3169e-14 1.71744e-13 9.89784e-17 -8.01073e-18 9.68399e-20 -4.58243e-18 6.10271e-18 -4.32266e-21 -1.55109e-20 2.92984e-17 -9.49947e-14 -3.05123e-17 -4.20917e-20 5.38397e-18 -9.04785e-18 4.17511e-20 5.49737e-17 -1.22049e-13 -3.92637e-17 1.20022e-17 -4.7385e-14 -2.79378e-17 2.75253e-21 1.43386e-17 -3.71761e-14 -1.13997e-17 2.06912e-21 3.53003e-23 9.05945e-17 -1.84289e-14 1.14825e-12 1.16313e-12 2.42778e-15 1.14083e-12 1.47032e-14 -1.07362e-12 -5.58167e-15 -1.45386e-17 -4.35861e-18 7.63206e-16 4.55686e-16 -1.10574e-13 -4.54233e-16 1.25718e-16 -2.75627e-15 1.03829e-12 -1.0723e-12 -3.56675e-15 -3.28017e-15 1.07304e-12 3.27777e-15 -3.11963e-16 -1.74552e-19 -2.6927e-16 -7.4549e-16 1.18907e-16 1.64246e-18 -9.72253e-16 4.4179e-13 4.85465e-13 8.09585e-16 8.05236e-16 -4.86086e-13 3.47569e-13 -9.29644e-13 -3.17771e-15 9.3364e-13 -9.29853e-13 -3.06632e-15 1.07712e-12 1.99175e-15 -3.42191e-13 -4.72629e-16 -6.04886e-16 4.90049e-13 1.07486e-12 1.83131e-15 -4.90812e-13 -1.9185e-16 -3.44444e-13 3.41606e-13 4.91189e-13 4.77756e-16 3.5981e-16 -4.91365e-13 4.85079e-13 -1.46469e-17 4.87075e-13 2.5337e-16 1.56998e-13 1.18024e-16 6.11341e-20 -1.31088e-16 1.56738e-13 -1.5364e-13 -1.91843e-13 -1.19494e-16 3.51115e-17 -1.20131e-13 -1.5693e-16 1.69865e-13 -3.11658e-13 -2.6352e-13 2.61669e-13 1.57487e-16 -5.04816e-14 -2.40386e-17 8.12263e-18 8.16758e-20 -1.64186e-17 2.63992e-17 -9.61384e-14 -5.44225e-17 -3.5239e-17 9.49573e-14 3.76692e-17 4.25723e-17 -1.21073e-13 8.24959e-14 -4.77311e-14 -4.72318e-14 -1.74279e-17 -7.79135e-18 2.3546e-14 9.17985e-19 2.40786e-14 7.5282e-18 6.72014e-19 6.30378e-17 -9.19082e-15 -5.09815e-15 1.15598e-12 1.34271e-14 -1.14978e-12 1.13918e-12 5.8566e-15 2.19311e-17 -9.01294e-16 -4.69813e-15 1.05805e-12 3.69266e-16 1.05764e-12 4.00811e-15 9.39676e-14 3.5779e-16 4.42492e-16 -8.98564e-16 3.89039e-16 7.04615e-16 -9.34686e-14 3.53921e-17 1.32229e-16 -2.76185e-16 1.24057e-15 -4.89557e-13 4.47767e-13 1.10047e-15 -8.85287e-17 2.45246e-16 1.78652e-16 -8.8653e-16 4.50471e-13 -4.87856e-13 -6.87782e-16 -4.26865e-16 -5.40469e-19 4.02042e-16 -3.89101e-16 -4.56321e-17 1.07644e-15 -4.89346e-13 -8.81963e-16 -8.29834e-19 -8.40644e-21 1.67799e-16 3.55083e-16 5.41555e-16 -4.89175e-13 -3.97573e-17 -4.90866e-13 -4.12662e-16 1.3708e-16 -4.37916e-16 4.87723e-13 3.18051e-16 4.88435e-16 -4.52485e-13 -1.10815e-16 -1.95476e-13 1.92934e-13 1.44565e-16 -5.4125e-20 5.15748e-16 -8.22685e-13 -4.73626e-16 -1.91497e-13 7.22811e-17 -3.34313e-13 -2.27935e-16 -1.28621e-17 2.55141e-14 -1.70183e-13 -1.7193e-13 -2.44541e-13 4.84198e-14 -4.92581e-14 -6.37124e-17 9.39901e-14 1.20936e-16 -1.90967e-13 -1.0636e-17 -1.66825e-13 -1.65751e-13 -8.99642e-17 1.0218e-17 -1.37382e-20 -4.27864e-17 1.21356e-13 6.11681e-17 2.387e-17 -8.27113e-14 -3.07136e-17 -3.86857e-18 2.43226e-14 3.66081e-14 1.89862e-17 -1.22501e-14 7.68465e-15 -7.70155e-15 1.17831e-12 9.63288e-15 -7.54062e-15 -1.83694e-17 -8.88249e-15 1.12193e-12 1.13531e-12 1.0428e-14 -1.14683e-12 -9.50959e-15 1.07755e-12 4.79694e-15 1.126e-15 6.25615e-18 -3.83544e-16 3.79875e-15 -1.07406e-12 -7.33872e-15 1.07248e-12 1.20808e-12 6.46462e-16 1.07025e-12 4.59937e-13 -1.03507e-12 -2.83097e-15 -4.2752e-16 2.01764e-16 1.10874e-15 -4.50962e-13 -7.2724e-17 -4.5108e-13 -9.55087e-16 -6.74478e-16 4.82873e-13 4.88043e-13 8.93262e-16 8.00727e-19 -3.33636e-19 5.27392e-16 -3.44319e-13 -3.44956e-13 -7.4866e-17 -4.88161e-13 -6.72179e-16 -4.52648e-19 -2.8799e-19 3.74392e-17 3.69447e-17 -1.0278e-16 6.89205e-17 -9.60167e-17 5.93716e-19 1.99733e-20 9.53067e-20 1.38682e-16 -5.33435e-19 4.27306e-16 -4.89064e-13 -4.02915e-16 -1.8957e-16 1.93011e-13 1.4406e-16 1.38386e-16 -1.57885e-13 -4.52283e-13 -1.92448e-13 -1.92699e-13 1.00139e-18 -1.71836e-13 -1.21209e-13 -6.86487e-17 -2.42879e-18 -1.13539e-16 1.97256e-13 7.08283e-17 -6.72083e-17 2.42734e-13 1.15175e-16 1.33087e-17 -3.20251e-17 9.49426e-14 7.82481e-14 2.63801e-13 -7.64917e-14 -2.63826e-13 -1.06121e-16 -6.8192e-20 9.84791e-18 -1.72086e-17 8.42894e-14 4.50195e-17 -3.87222e-14 -3.01778e-17 4.78855e-14 2.37372e-14 1.3426e-17 -9.58907e-19 1.21521e-14 5.97113e-15 2.16574e-15 -5.09845e-15 1.15519e-12 -2.09196e-16 5.95186e-15 -1.07399e-12 -4.43748e-15 6.16731e-15 -1.1285e-12 -1.08778e-12 1.14107e-12 6.5742e-15 1.63259e-17 -7.45324e-18 4.03045e-15 -1.05726e-12 -8.22456e-15 1.16901e-12 7.66028e-16 1.04402e-12 -1.07146e-12 -4.742e-15 4.55241e-13 1.90534e-15 -7.88241e-16 1.23187e-15 -4.84883e-13 -4.9084e-13 4.8745e-13 -4.84296e-13 -1.10288e-15 -2.78999e-16 -2.40974e-19 6.78771e-19 -5.47239e-16 4.47566e-13 8.20339e-16 7.35806e-19 -4.24388e-19 5.28332e-16 -3.45414e-13 -2.4955e-16 -3.46953e-13 -7.05809e-16 -3.21546e-19 3.61645e-19 -5.79354e-16 4.87542e-13 4.9049e-13 8.33439e-13 9.43573e-13 8.31879e-13 8.67591e-16 4.43605e-19 -1.13784e-22 4.9329e-19 -4.03421e-16 4.52251e-13 -4.87901e-13 -3.7664e-16 1.87252e-19 4.93299e-17 -3.33341e-16 4.86552e-13 2.03155e-16 1.56489e-13 -1.53461e-13 -1.56361e-13 3.32201e-13 5.91032e-17 1.97812e-13 1.65843e-16 -1.02432e-13 1.72337e-13 -4.84626e-14 1.21711e-13 4.86839e-13 -5.14465e-14 -2.43779e-17 -4.00465e-17 9.56592e-14 -1.66158e-17 1.49211e-13 1.72552e-13 7.44169e-17 -3.13864e-17 1.00622e-19 -4.34016e-17 1.2174e-13 3.14219e-17 3.86888e-14 3.57185e-17 -8.2676e-14 -2.42299e-17 -4.48019e-18 4.3154e-14 2.358e-14 3.32096e-14 1.20207e-17 5.39557e-15 1.16115e-12 8.059e-15 -1.16781e-14 1.15227e-12 7.06836e-15 -1.63626e-15 6.87124e-15 -1.12927e-12 -7.42182e-15 -7.32389e-16 1.46452e-15 6.05949e-18 -1.46072e-21 8.19565e-18 -4.02939e-15 1.05657e-12 4.04052e-15 9.08656e-16 -2.58773e-16 9.60664e-16 -9.79357e-16 -3.02381e-15 1.02582e-12 1.07652e-12 3.10302e-15 1.3023e-15 -4.89761e-13 4.47928e-13 1.4451e-15 -3.3432e-16 -7.70992e-17 -8.75391e-19 -2.40755e-17 -2.49722e-17 -8.83728e-16 4.83662e-13 8.84558e-16 7.91504e-19 -4.1898e-19 5.21611e-16 -3.40571e-13 -9.3075e-13 -4.9183e-13 -6.99973e-16 -4.90731e-19 -8.06152e-22 8.42339e-19 -1.03527e-15 1.07719e-12 4.90702e-13 4.3262e-16 4.52651e-13 4.71303e-16 2.40548e-19 -1.93191e-19 4.25065e-16 -4.90754e-13 4.49268e-13 -1.58801e-16 4.87921e-13 3.81284e-16 2.65287e-20 1.92834e-19 1.23711e-16 -2.00358e-17 3.39575e-16 -4.8594e-13 -1.56116e-13 -2.41094e-17 -9.51164e-17 1.72099e-13 9.82882e-17 -1.9206e-17 4.65164e-17 -4.73441e-14 3.34315e-17 -4.83037e-14 2.43361e-13 1.29873e-16 3.29733e-17 -7.79047e-14 -1.66987e-13 9.60519e-14 -3.55662e-18 1.6557e-13 5.63304e-17 -7.44825e-20 4.81387e-20 2.20464e-17 -2.47934e-14 2.33507e-17 -8.37361e-14 -4.79453e-14 7.40739e-14 6.6221e-14 2.43907e-14 3.69456e-14 1.16546e-17 1.22684e-14 7.68092e-15 1.16483e-12 8.82436e-16 1.15128e-12 -3.23542e-15 4.66989e-14 -5.76033e-15 1.1252e-12 4.44754e-15 -5.12682e-15 1.07565e-12 5.78854e-15 5.99527e-16 1.02607e-18 4.05707e-16 1.61046e-19 1.18554e-15 3.79094e-15 -1.06993e-12 -1.04299e-12 -1.39007e-13 -4.45389e-16 -3.57768e-15 1.20558e-12 -1.55824e-12 4.46355e-13 4.87659e-13 4.51093e-13 -1.06647e-12 -2.61385e-15 2.44081e-15 -1.11525e-12 -1.53574e-15 -4.45757e-13 -4.82485e-13 -7.05263e-16 -1.36154e-13 -2.53605e-16 -1.16774e-18 -2.89563e-21 8.60271e-19 -1.83359e-16 1.04397e-15 -1.0746e-12 -1.53035e-15 -1.11545e-18 -4.35829e-19 -1.13707e-21 3.57086e-19 4.52966e-16 1.99762e-16 6.58741e-20 1.74885e-16 1.86065e-18 2.48021e-19 1.72188e-19 3.86337e-16 -4.51423e-13 1.41599e-16 -4.86962e-13 -4.86208e-13 -1.93517e-13 -1.59814e-16 -1.45045e-19 3.07902e-16 -4.85426e-13 -2.42685e-16 -1.55861e-13 -2.99058e-13 -1.87473e-16 -1.06401e-16 1.71929e-13 9.81374e-17 8.52817e-17 -1.68973e-13 -4.14271e-13 2.42846e-13 1.20499e-13 -9.08575e-18 2.44804e-13 1.52951e-16 -9.54583e-14 -2.23772e-13 -6.32172e-17 -5.14235e-14 -1.66656e-13 -1.6599e-13 -7.38406e-17 -6.87015e-20 -1.13055e-20 -2.56691e-18 1.24321e-17 -4.74661e-14 -1.10391e-14 2.67202e-17 -6.09238e-14 4.16573e-14 2.36809e-14 4.47748e-18 1.22493e-14 3.63338e-15 2.18394e-15 -1.21802e-17 3.64107e-15 6.45645e-15 -1.11885e-12 -3.97308e-16 -1.14371e-12 -6.99293e-15 -1.53194e-17 -3.69296e-15 1.12842e-12 1.19191e-12 9.4314e-16 1.07553e-12 4.43211e-15 9.93693e-18 -3.09722e-16 9.26413e-14 -9.5592e-16 -1.48703e-16 -1.11337e-16 -4.5598e-18 1.19452e-15 -1.47239e-15 4.24843e-16 4.27889e-16 3.70063e-16 -8.78528e-16 -8.17866e-19 5.88016e-19 -8.40356e-16 -1.5744e-18 8.54632e-16 -5.89626e-13 -4.86627e-13 -4.814e-13 -9.34243e-13 -1.64735e-15 -2.56082e-18 1.42096e-15 -9.31814e-13 -1.05981e-16 -9.30507e-13 -4.55532e-13 -4.90532e-13 -6.49834e-16 -4.21599e-19 1.01065e-22 9.38288e-20 -2.67732e-19 -6.38876e-18 -3.09686e-16 3.07822e-13 3.10492e-16 4.04985e-16 -4.51589e-13 -9.74892e-13 -4.89932e-16 -4.52128e-13 1.34066e-13 -4.45306e-13 -4.88676e-13 -3.03757e-20 -5.33388e-13 -2.8933e-16 -3.34426e-13 -1.54505e-13 -5.30134e-13 -1.48922e-16 -3.14044e-13 1.70536e-13 9.69757e-17 6.61445e-21 2.04565e-16 -5.05226e-13 2.44896e-13 1.20555e-13 -4.78867e-14 7.91561e-18 3.98825e-17 -9.64383e-14 -1.92704e-13 -1.04069e-16 7.77154e-14 5.06652e-14 3.6893e-17 -9.50364e-14 -3.7443e-17 -1.76634e-18 1.4428e-17 -4.7379e-14 -4.20244e-17 4.72677e-14 4.70551e-14 1.73969e-17 3.31323e-18 1.68123e-18 -5.93987e-21 7.54665e-19 2.02158e-19 2.17784e-15 -7.15498e-15 1.1515e-12 1.22948e-14 -1.12051e-12 -6.55015e-15 3.64557e-15 -1.06179e-12 -5.51339e-15 -4.43421e-16 9.53715e-14 2.07018e-15 4.3463e-15 -1.05664e-12 -4.60595e-15 -5.67848e-16 9.79065e-14 -1.06506e-12 -1.07985e-12 -9.4252e-14 -1.07665e-12 -4.74278e-15 4.55794e-13 -4.86392e-13 4.87209e-13 2.55764e-15 -4.84908e-13 -1.21359e-15 -2.18493e-18 5.63292e-19 2.19223e-17 -1.53547e-18 9.39771e-16 -4.78704e-13 -4.82405e-13 -4.46523e-13 -1.37997e-15 -1.7714e-18 -1.13849e-18 1.42059e-15 -9.33168e-13 -7.27977e-16 -4.931e-13 -5.46133e-16 -3.45974e-13 -4.77539e-16 4.72791e-20 3.32751e-19 1.66121e-17 -3.52795e-16 3.44603e-13 9.63929e-14 2.29919e-16 1.72815e-17 -4.36339e-19 2.31123e-16 -4.52027e-13 -2.88058e-18 -4.88188e-13 -4.5098e-13 -1.58331e-13 -2.71873e-16 -3.65344e-19 -1.57947e-16 3.15248e-16 -4.93119e-13 -1.9258e-13 -3.4676e-13 -1.19592e-16 -1.73037e-13 -5.78612e-17 -2.19078e-20 9.57398e-17 -1.90254e-13 -3.26925e-16 2.44963e-13 -2.44714e-13 -2.05331e-17 -2.44485e-13 -1.08225e-16 1.85144e-17 -9.55716e-14 1.65663e-13 1.06534e-16 -5.04357e-14 5.10191e-14 -2.1333e-14 8.83167e-19 -2.56581e-14 -2.53271e-14 -4.69882e-18 -4.75987e-14 9.51045e-14 8.30231e-14 6.05069e-14 2.05285e-17 -4.2213e-21 -2.82495e-24 -5.45279e-24 -2.98585e-24 1.15925e-12 7.97857e-15 7.36109e-15 -1.15575e-12 -3.6392e-14 -1.9664e-16 4.24042e-18 -1.66408e-15 -6.0499e-18 -4.11042e-19 1.32334e-16 1.63705e-18 -4.98398e-18 2.81908e-15 -1.07211e-12 -1.06288e-12 -1.36606e-16 -1.07391e-12 -1.04379e-12 -1.34477e-13 -1.63033e-15 3.04418e-15 -1.03627e-12 -1.04102e-12 -2.45782e-15 -4.61917e-18 7.34453e-16 -4.87051e-13 -1.19004e-15 9.85788e-16 -4.50529e-13 -9.88083e-16 9.32326e-16 -4.51171e-13 -4.86681e-13 -4.85079e-13 -9.31019e-13 -1.63968e-15 -1.41215e-18 -2.11687e-19 -5.84002e-16 4.58402e-16 -3.46242e-13 9.3277e-13 6.50591e-16 3.42474e-13 4.39556e-16 4.21592e-16 -3.44585e-13 -3.48397e-13 2.75377e-16 -4.88769e-13 -3.99422e-17 -4.88395e-13 -1.17432e-17 -4.88216e-13 -4.88707e-13 -5.08068e-16 9.92306e-14 9.74574e-14 -4.49081e-13 -4.86394e-13 -2.54634e-16 -1.56788e-13 -1.06935e-17 -1.55192e-13 -1.93011e-13 -2.98924e-13 -1.91954e-13 -1.91512e-13 1.72373e-13 9.77751e-17 1.56519e-16 -3.14226e-13 -2.42657e-13 3.87378e-17 -2.4178e-13 -2.2284e-16 2.25732e-13 9.5445e-14 -9.61252e-14 -9.99158e-17 9.48504e-14 9.45084e-14 3.20023e-17 6.90859e-18 -2.7759e-18 -4.43157e-21 6.03181e-18 -2.5883e-14 -8.2815e-14 -1.96538e-17 -4.79221e-14 4.75403e-14 2.05629e-17 -1.22534e-14 -4.3651e-18 -5.25017e-22 2.39032e-24 8.63154e-27 2.12064e-15 7.17869e-15 -1.15159e-12 5.19544e-16 4.50388e-14 2.64758e-16 -5.73752e-18 6.86997e-16 6.50704e-18 3.96437e-20 -4.04936e-18 3.22705e-16 3.19869e-18 3.72273e-16 -9.53612e-14 -1.78467e-15 3.78505e-15 -1.07283e-12 -5.06941e-15 -1.81889e-16 -4.02965e-17 3.51324e-18 -1.13512e-15 -9.77309e-16 -3.43969e-18 -6.82068e-19 -4.958e-17 -4.62703e-16 5.32604e-17 1.06263e-15 -4.86618e-13 -7.47704e-17 -4.86276e-13 -1.28813e-15 -3.82486e-16 -3.6654e-16 -8.12814e-16 1.24702e-18 5.32104e-21 -8.63483e-19 -6.46854e-16 3.48552e-13 -3.69787e-16 4.91001e-13 2.86105e-16 3.47044e-13 8.52288e-16 -3.45248e-13 -9.04483e-17 -4.54866e-13 -4.21801e-18 -4.88662e-13 -5.06551e-16 2.32007e-16 -4.882e-13 -2.41951e-16 -4.88312e-13 -3.80353e-17 -4.83483e-13 -3.36431e-16 -1.55682e-16 -1.68555e-16 -1.31247e-16 1.92245e-13 1.34704e-16 -4.78675e-17 -2.40769e-16 2.9736e-13 3.09479e-16 -3.11616e-13 -1.72326e-13 -8.87496e-18 -1.72223e-13 -3.14766e-13 -1.87694e-13 1.67843e-17 -2.4391e-13 -2.42343e-13 4.8724e-14 8.24562e-17 -9.58015e-14 -9.61341e-14 -2.56109e-17 2.21563e-17 3.86341e-18 3.676e-18 5.86876e-20 3.55775e-23 -1.91984e-20 -2.96126e-18 -9.0054e-18 3.69395e-18 -4.46114e-18 2.40187e-17 -6.10824e-14 -3.7474e-14 -1.46366e-17 3.32907e-18 2.55238e-20 8.73452e-24 3.84282e-17 -7.17361e-15 1.15159e-12 7.2917e-15 9.51942e-17 6.89738e-18 -4.70101e-15 1.0743e-12 6.11553e-15 2.58177e-17 -4.39233e-15 1.07598e-12 4.783e-15 1.06591e-17 -1.26909e-16 -1.2241e-18 2.73382e-18 -1.39636e-15 -3.55911e-15 1.06867e-12 1.07451e-12 3.38581e-15 4.25322e-15 -1.524e-12 -4.43558e-15 -1.07669e-15 4.52019e-13 2.20086e-15 -4.48702e-13 -1.0568e-15 -4.46041e-16 1.06181e-15 -4.80944e-13 -4.85919e-13 -8.75779e-16 -4.33363e-14 9.34772e-13 1.64431e-15 2.727e-18 -1.63092e-15 1.07367e-12 1.86954e-15 -7.17362e-16 4.91024e-13 -4.93365e-13 -4.43745e-16 -5.77298e-16 4.88426e-13 1.00292e-15 -3.45325e-13 1.18992e-16 -4.91582e-13 -5.07934e-16 -1.17992e-18 -2.63349e-16 4.73688e-19 -2.08062e-16 -4.29359e-16 4.88399e-13 -4.88185e-13 -1.56209e-13 -1.30373e-16 -3.07077e-16 4.52302e-13 3.28968e-16 -1.19654e-16 1.93419e-13 2.17602e-16 -1.08161e-16 1.91118e-13 1.63618e-16 -1.90413e-13 -6.19981e-17 -1.72308e-13 -2.44865e-13 -1.19714e-17 -2.44664e-13 -4.95248e-14 -5.40144e-17 9.55615e-14 2.52711e-17 -1.83716e-17 4.61193e-15 1.66584e-13 7.64327e-14 7.0686e-14 2.78343e-17 1.12237e-19 -7.47727e-18 -8.17741e-18 -1.62032e-17 4.79417e-14 2.33805e-17 -2.56647e-17 7.79053e-14 2.93748e-17 -1.29008e-14 3.31513e-14 1.15876e-17 2.12455e-21 1.21659e-14 1.96605e-15 3.68498e-15 2.27874e-17 1.73131e-17 -6.10936e-15 1.13902e-12 1.06324e-12 1.08558e-12 2.00291e-16 1.13494e-12 -1.19966e-12 -5.41233e-15 -1.17454e-17 -6.64346e-20 -1.78619e-20 8.97575e-18 -3.59375e-15 1.07971e-12 -1.07472e-12 1.06942e-12 1.95782e-15 4.84814e-13 -2.89225e-15 9.3724e-13 -4.84896e-13 -4.49979e-13 -8.94412e-16 -4.58544e-16 -1.26805e-16 1.01896e-15 -4.84067e-13 -5.81266e-16 -4.46908e-13 -8.7485e-16 -3.78082e-17 5.36047e-16 7.83645e-19 -6.72657e-17 -5.90996e-16 3.46232e-13 4.13543e-17 3.44586e-13 8.11432e-16 -3.16528e-16 3.58841e-19 9.08031e-20 6.80171e-16 -3.44659e-13 -4.89674e-13 -5.41454e-16 -2.56285e-16 5.84787e-19 -4.19534e-16 4.55281e-13 3.89578e-16 -4.06259e-16 4.89107e-13 -9.76956e-14 4.85448e-13 1.85405e-16 1.9076e-13 4.72233e-16 -4.86254e-13 -3.33391e-13 -2.26806e-16 1.69759e-16 -1.91514e-13 -1.06203e-16 -3.1796e-17 1.6976e-13 4.48733e-17 1.05562e-20 7.45671e-17 -2.4484e-13 -1.23445e-16 -5.47116e-17 -8.06159e-18 -4.0399e-17 9.65959e-14 4.31516e-17 -5.52701e-18 1.43483e-17 -2.12206e-14 4.27656e-18 1.02502e-17 -6.77639e-20 4.27736e-17 -1.22316e-13 -1.2195e-13 -4.52907e-17 -1.60028e-17 7.34284e-14 8.21664e-18 6.61293e-14 2.3224e-17 -8.3172e-19 4.46489e-18 -1.23827e-20 9.37047e-19 -7.67819e-15 1.17116e-12 1.16107e-12 7.30944e-15 1.2724e-17 8.9363e-16 2.01241e-15 1.8321e-15 1.83962e-15 4.21348e-19 1.85736e-15 -1.95629e-15 -5.1221e-18 -3.03739e-18 -6.92815e-18 -4.19403e-18 3.80022e-15 -1.07598e-12 1.18967e-15 -1.07783e-12 -2.12441e-15 -2.73117e-15 9.39174e-13 2.85815e-15 1.10304e-15 -5.60545e-16 2.38049e-15 -1.17067e-12 -4.22911e-15 5.88887e-13 1.23579e-15 -5.77149e-16 -2.97862e-19 -5.31409e-16 1.85014e-18 -1.99429e-15 1.07654e-12 1.32667e-15 3.43957e-13 3.44398e-13 4.92499e-13 2.13066e-15 -9.291e-13 -1.31617e-15 -1.01497e-18 -5.10658e-23 7.67432e-22 -1.77778e-19 -2.06322e-16 -2.81914e-16 1.02475e-18 7.38808e-17 -6.35202e-19 5.4232e-19 -7.98995e-17 3.42463e-13 -9.53199e-17 4.884e-13 -7.47034e-18 4.8821e-13 4.02106e-16 7.5277e-17 -6.45276e-19 -1.798e-16 -1.19315e-16 -9.51674e-17 1.56075e-13 -1.54262e-13 -3.31556e-13 -1.904e-13 -6.78794e-17 -1.76751e-19 -3.89577e-18 -1.12348e-16 2.42043e-13 4.79036e-14 -8.51763e-17 2.43991e-13 1.5456e-16 -9.66335e-14 3.23848e-17 -1.9098e-13 1.67353e-13 5.92284e-17 2.09723e-14 7.96347e-18 -1.52403e-21 -1.0982e-19 -1.5724e-17 -1.44759e-17 -1.56936e-17 4.74209e-14 -2.65902e-14 3.49301e-14 -7.81086e-14 -2.78612e-17 -7.64712e-18 2.40293e-14 5.79129e-18 8.24103e-15 -6.04711e-15 2.14193e-15 2.12881e-15 2.71485e-17 -6.30101e-15 1.13256e-12 5.64653e-15 1.11496e-17 1.56461e-18 2.65729e-22 1.53205e-18 -1.60426e-18 8.671e-18 -4.1749e-15 1.05785e-12 4.18018e-15 3.67152e-15 -1.03893e-12 -7.18867e-15 1.07442e-12 3.85525e-15 -9.99536e-14 2.2763e-15 -4.86044e-13 -1.07323e-15 -3.98624e-18 4.61345e-19 -1.32954e-15 -4.40768e-19 -4.64211e-16 4.43234e-13 4.42634e-13 -1.86099e-17 4.86195e-13 1.44146e-18 4.4722e-13 1.75955e-15 1.90631e-18 -1.40466e-15 1.0781e-12 2.58268e-15 -3.42877e-13 -1.19012e-15 2.4763e-19 1.3385e-21 1.26467e-24 6.03145e-26 -2.34233e-22 -6.1539e-20 -3.47433e-19 4.98351e-16 -4.89153e-13 -5.03596e-16 -2.54177e-19 3.84566e-19 1.714e-16 -3.74707e-16 4.51955e-13 6.98752e-16 -4.87966e-13 -1.95231e-13 -1.48746e-16 -5.60104e-20 -3.344e-20 -1.36506e-19 3.63651e-16 -5.86564e-13 -4.0728e-16 -1.18062e-17 -1.73002e-13 1.91039e-13 2.06286e-17 1.72339e-13 -2.42442e-13 4.80313e-14 -4.78161e-14 5.08423e-14 -2.42668e-13 -1.13345e-16 1.22852e-17 -7.84166e-14 -1.91266e-13 -5.03696e-17 2.64516e-17 -7.78657e-14 -3.27443e-15 -1.15392e-18 -2.61945e-22 1.25931e-19 -7.30726e-18 1.59e-17 -4.79582e-14 -4.79441e-14 -3.78118e-17 6.09372e-14 2.14766e-17 -4.45602e-18 2.17822e-14 7.5494e-18 3.3223e-19 -2.19043e-17 1.78992e-18 2.95512e-18 3.12071e-17 -7.32312e-15 9.01777e-15 -1.14531e-12 -6.18312e-15 -1.62385e-17 -2.75536e-20 8.08284e-22 -8.57478e-22 7.18333e-22 -3.25319e-18 1.50665e-15 5.18214e-14 2.00243e-16 -1.56052e-15 2.44073e-16 1.86352e-15 -1.03613e-13 -4.55789e-16 1.44493e-16 2.42446e-15 -1.07371e-12 -2.77103e-15 -3.86564e-18 1.48898e-16 -1.02212e-15 4.52221e-13 1.50112e-15 3.05388e-16 1.6591e-18 -4.25158e-16 4.83122e-13 1.33106e-15 1.12315e-18 -3.24496e-21 6.88054e-19 9.03559e-16 -6.80837e-19 -2.72274e-16 -2.5457e-20 1.48159e-21 5.29309e-25 -1.53485e-28 -1.37638e-28 -8.61984e-26 -1.24653e-23 6.33609e-22 -4.73571e-19 -2.87302e-16 4.8325e-19 1.29479e-21 -6.83379e-19 -7.96791e-17 -4.0129e-16 4.8755e-13 4.86257e-13 2.37276e-16 -8.60319e-17 -2.26505e-17 4.76887e-19 1.61068e-17 -4.64702e-19 -1.83177e-17 -4.95997e-17 -2.97447e-13 -1.84531e-16 -7.68327e-17 6.35809e-17 -4.17518e-14 -1.71509e-13 -4.16456e-17 -2.41579e-13 2.44222e-13 1.32769e-16 -1.60962e-16 2.41591e-13 1.09358e-16 6.02081e-17 -1.91173e-13 -4.46026e-17 -9.55461e-14 -5.6968e-17 -1.62445e-18 -2.5192e-20 -3.44421e-20 4.2297e-17 -1.20412e-13 -3.88829e-17 6.78811e-18 -4.65853e-14 -4.73178e-14 -6.40418e-18 -7.52655e-18 2.37439e-14 6.85283e-18 -4.5267e-20 -4.13084e-23 1.95101e-17 -3.01399e-17 1.54905e-15 -7.67256e-15 1.11536e-12 1.15131e-12 4.8951e-15 1.80062e-17 1.6454e-19 1.59998e-21 1.44466e-23 -2.93119e-25 -5.09149e-24 -1.27962e-22 1.21664e-18 8.69261e-17 2.90906e-17 3.53023e-15 -1.03933e-12 -6.90991e-15 1.07104e-12 4.43163e-15 -4.8204e-13 -4.50636e-13 -1.4917e-15 -4.51473e-13 -2.60685e-16 -4.48469e-13 9.51848e-18 -4.88043e-13 -2.12203e-15 4.85994e-13 1.19754e-15 -1.59901e-16 4.85654e-16 -5.16749e-17 2.15503e-19 4.65479e-22 1.22074e-21 3.82431e-19 -1.50347e-21 -1.0898e-19 2.98184e-22 4.11967e-25 -5.39382e-26 -4.27881e-24 5.0521e-26 -5.69179e-28 -1.29818e-27 -1.86542e-25 -3.97921e-22 -8.34981e-20 3.25281e-22 2.00153e-19 -4.31564e-16 4.88515e-13 4.40167e-16 -9.7654e-14 5.11584e-16 -4.85627e-13 -5.21483e-16 1.95432e-13 2.49653e-16 -1.56812e-13 -2.29853e-16 1.92174e-13 1.92637e-13 -1.90743e-13 -2.89985e-16 3.32138e-13 3.14616e-13 1.72249e-13 3.12114e-13 2.83054e-16 -2.4315e-13 2.44812e-13 -4.82677e-14 6.08297e-17 -1.9371e-13 -3.12273e-13 9.62352e-14 -1.72731e-13 -7.53068e-17 4.46976e-17 -1.6601e-13 -2.40564e-14 -9.64568e-18 -8.41515e-18 2.4305e-14 -2.42872e-14 8.34213e-14 -4.75158e-14 3.80958e-14 -1.3959e-17 6.08896e-14 1.89796e-17 8.9751e-18 -2.40061e-14 -8.24939e-18 -1.43284e-21 8.21795e-15 -1.92398e-14 1.15831e-12 -1.14416e-12 -4.79566e-15 -3.56556e-15 1.07527e-12 5.78593e-15 2.97259e-16 5.86546e-18 2.49403e-20 5.59182e-23 -1.16573e-24 1.19708e-21 -8.99127e-19 4.71536e-16 -1.30015e-13 2.73196e-15 -9.44451e-13 -3.20381e-15 -1.14124e-15 1.03786e-12 2.45724e-15 -4.25637e-16 1.18288e-15 -4.53508e-13 4.49655e-13 -4.43617e-13 -8.91024e-16 -3.98512e-16 -1.8851e-18 1.53313e-15 -4.88149e-13 4.4384e-13 7.99941e-16 1.42476e-13 2.57906e-16 2.28148e-19 -5.13631e-22 -8.06391e-20 3.15661e-22 -3.86343e-20 3.06173e-22 -1.34703e-23 2.75414e-22 3.12083e-20 -2.68805e-22 3.7642e-24 1.23013e-26 3.72515e-24 -1.79733e-25 -1.57688e-23 1.06432e-24 -5.0156e-22 7.63644e-19 -1.13475e-16 4.51751e-13 9.55935e-14 9.805e-14 -1.57517e-16 8.66654e-19 8.93952e-17 -4.35042e-19 -6.73137e-17 -9.81828e-20 1.32986e-16 -1.56619e-13 -8.01949e-17 -1.55221e-13 -1.57258e-16 3.33666e-13 2.21067e-16 9.65569e-17 1.16319e-16 -2.44571e-13 1.68344e-13 2.63063e-13 1.1783e-16 -4.75811e-17 -3.26289e-17 -9.60786e-14 -1.66959e-13 -1.67138e-13 -6.83343e-17 -5.73681e-17 7.69273e-14 3.3188e-17 1.8313e-19 2.09013e-18 -1.64851e-18 2.58554e-17 -4.82789e-14 5.32866e-18 -4.69552e-14 -3.58685e-18 -2.39332e-14 -8.335e-18 2.14706e-18 6.24786e-20 2.12254e-23 1.15153e-12 1.15246e-12 9.7393e-15 -2.45328e-15 4.6889e-14 2.6177e-16 2.62872e-15 -5.18567e-15 1.12935e-12 5.62377e-15 1.36426e-17 2.13841e-20 2.43795e-23 -2.29233e-23 1.299e-20 -2.05821e-18 -5.80132e-16 4.02605e-15 -1.07485e-12 -2.47665e-16 -1.0663e-12 -9.37615e-13 -1.47223e-15 -4.88341e-13 1.25992e-16 -4.8901e-13 -4.58423e-16 6.78548e-16 -4.48965e-13 -4.47518e-13 -1.00818e-15 -1.11609e-15 4.51318e-13 2.30945e-15 -4.82039e-13 4.85574e-13 8.79343e-16 7.76238e-19 1.52592e-18 3.60708e-16 -7.38256e-19 1.80662e-16 -7.79856e-19 8.78671e-20 -8.11016e-19 -1.60123e-16 8.20085e-19 -2.13041e-20 -6.63846e-23 -2.81632e-20 2.57138e-22 -1.13428e-24 7.85398e-22 -7.905e-19 -1.12795e-16 1.61156e-18 -1.46799e-16 4.85564e-13 4.56346e-16 3.51057e-17 -3.13135e-19 7.31944e-21 -4.68963e-22 5.77033e-19 -1.65743e-16 3.35526e-13 1.54385e-13 2.06517e-16 -1.55636e-13 -9.14639e-17 -7.73492e-17 3.1438e-13 1.71321e-16 1.0784e-16 -2.43123e-13 2.44453e-13 2.44984e-13 2.447e-13 5.11453e-14 2.26683e-17 -2.29129e-17 -3.58963e-17 -6.94498e-17 9.4545e-14 3.48106e-15 -9.49747e-14 9.3931e-14 4.44071e-17 -2.45955e-14 2.551e-14 9.25129e-18 -2.07259e-17 4.76122e-14 1.06708e-17 5.77013e-15 -3.78357e-18 -1.15789e-17 3.08779e-14 1.04674e-17 1.79518e-21 2.17283e-15 3.82457e-16 -7.44107e-18 -3.58123e-18 1.32777e-16 -6.0051e-15 1.12245e-12 1.15594e-12 8.19304e-15 2.11049e-17 2.70019e-20 1.39079e-23 -1.90601e-23 3.34151e-21 4.84683e-18 -4.30966e-15 1.07982e-12 -1.02989e-12 -1.08041e-12 -9.69947e-14 1.34669e-15 -9.43876e-13 -2.64058e-15 5.90031e-16 -4.87095e-13 -4.89102e-13 -4.82032e-13 -4.48436e-13 -1.67492e-15 -5.7033e-16 -9.4456e-16 4.51225e-13 1.47738e-15 -1.19201e-15 4.85505e-13 1.23637e-15 4.1879e-16 -2.78687e-18 1.45055e-15 -9.302e-13 -7.39991e-16 -4.93013e-13 -9.08462e-16 -4.04661e-16 -6.13816e-16 4.91966e-13 6.19858e-16 1.14284e-16 2.3868e-19 1.50657e-16 -8.48348e-19 -8.07993e-22 2.38209e-19 -4.4423e-16 4.88968e-13 4.50224e-16 -2.51343e-16 3.05933e-13 3.01507e-16 -1.93525e-13 -1.13498e-16 8.69261e-17 -8.72414e-19 2.18251e-16 -3.35609e-13 -2.7106e-17 -1.92609e-13 -1.90486e-13 1.89738e-13 -5.76207e-17 3.14656e-13 2.81311e-16 -5.97613e-17 1.20541e-13 -1.02664e-17 8.53084e-17 6.72725e-17 6.22226e-17 1.28003e-17 -3.61497e-17 9.54043e-14 4.89204e-18 9.60457e-14 2.27543e-17 9.51008e-14 1.75028e-17 1.51979e-17 7.92931e-18 -2.41056e-14 -5.44631e-18 2.78141e-18 7.22842e-20 8.14611e-18 -1.55925e-15 1.31231e-17 -4.15769e-14 -1.92206e-14 -2.40175e-14 -6.67722e-18 1.42815e-20 7.4254e-15 -1.15137e-12 -7.52769e-15 -1.43715e-15 4.4534e-14 2.54231e-16 2.25768e-15 2.60593e-15 1.54191e-17 3.33593e-20 4.05255e-23 1.23791e-23 -1.13108e-20 8.13345e-18 -4.07867e-15 1.07643e-12 5.95388e-15 2.32335e-15 -1.0749e-12 -1.04072e-12 -1.07489e-12 -9.48167e-13 -4.52646e-13 -1.31697e-15 -7.31382e-16 -7.12103e-16 -6.8446e-16 -6.19344e-16 2.62129e-16 2.64695e-16 2.37983e-16 5.64952e-16 -1.1602e-15 5.91508e-13 -4.44296e-13 4.45549e-13 -9.30533e-13 -1.62108e-15 -7.68299e-16 4.91468e-13 7.6867e-16 -1.15247e-15 4.91969e-13 1.07788e-12 1.45604e-15 4.14616e-16 4.01899e-16 -3.45916e-13 1.27087e-16 -4.91364e-13 -5.37193e-16 -1.17223e-18 -1.43949e-16 1.54193e-18 3.10584e-16 -3.21391e-19 -3.73293e-16 4.87605e-13 4.88392e-13 5.34132e-16 -1.92144e-13 -4.85726e-13 -3.53141e-16 -1.58792e-16 1.91931e-13 4.49054e-13 2.98426e-16 -1.55429e-13 2.28559e-17 1.0101e-16 -1.90276e-13 2.53035e-14 8.65363e-18 -4.81063e-14 1.05406e-16 -2.44548e-13 -1.53367e-16 5.05322e-14 5.22999e-17 -9.49163e-14 1.48892e-17 -9.6143e-14 -1.9812e-17 -2.12314e-20 7.82235e-17 -1.66265e-13 -6.46119e-17 -4.17808e-17 1.22329e-13 2.92063e-17 4.81283e-14 1.67303e-18 3.84574e-14 -1.69175e-15 5.35252e-18 -1.92798e-14 -3.32487e-18 -2.12333e-18 1.22226e-14 4.11265e-18 7.33434e-18 -2.30046e-15 1.89335e-14 -1.15319e-12 -6.90783e-15 -4.64132e-18 -5.81428e-15 1.13301e-12 5.86402e-15 1.47792e-17 2.40632e-20 2.84449e-23 1.40553e-23 -2.44122e-21 -2.56947e-18 1.54028e-15 1.33469e-13 -1.07853e-12 1.06748e-12 1.0384e-12 1.04e-12 -1.07435e-12 -3.9789e-15 -5.36929e-18 -5.58112e-19 -5.25558e-19 -1.87027e-18 1.12195e-15 -4.81125e-13 -4.8882e-13 -4.4832e-13 -9.70553e-16 1.09243e-19 -1.14608e-16 4.51787e-13 1.36086e-15 -1.04918e-15 6.58381e-19 4.29828e-19 5.10571e-16 2.308e-16 -1.59126e-16 -4.06615e-16 3.43506e-13 2.53903e-16 -4.38309e-16 -3.98088e-16 3.45007e-13 7.75649e-16 -3.44246e-13 -3.75017e-16 -3.60613e-16 4.88198e-13 4.78292e-16 -1.43047e-16 -5.58307e-17 -9.47423e-14 9.73158e-14 6.22673e-16 -4.87931e-13 -4.81474e-16 -2.51707e-16 -1.2838e-16 1.93253e-13 4.49949e-13 6.77433e-13 4.30909e-16 9.63828e-17 -3.33277e-13 -2.1593e-16 -7.02012e-17 -1.30267e-16 3.14105e-13 2.42082e-16 -2.44567e-13 -2.8543e-16 2.44564e-13 1.23474e-17 2.42628e-13 1.9707e-17 1.66812e-13 5.12879e-17 6.97733e-21 -2.55688e-19 5.73247e-19 -3.01705e-17 2.45692e-19 -4.39231e-17 1.30591e-13 4.74824e-17 2.14257e-17 -4.79159e-14 -4.76018e-14 -3.79945e-14 -8.09282e-18 -1.40377e-17 4.14463e-14 2.38491e-14 1.2111e-14 4.06008e-18 2.3331e-17 -7.14306e-15 1.14496e-12 1.1605e-12 7.02837e-15 2.06802e-17 1.0037e-18 2.1761e-15 6.66427e-20 -2.83447e-20 -7.94714e-23 -9.86799e-26 1.18513e-24 7.45227e-23 9.71938e-21 -5.42956e-18 4.02232e-15 -1.07857e-12 -1.21856e-15 1.78604e-15 2.47777e-15 -1.83523e-15 -2.31554e-18 5.1731e-21 -2.72437e-22 5.30144e-22 1.28112e-19 -5.53142e-19 -9.76662e-16 -9.61055e-16 -8.86738e-16 -2.71246e-16 -2.92357e-16 6.31072e-16 -4.77422e-13 -8.93373e-16 -1.41575e-18 1.68526e-21 -5.78529e-19 7.35018e-16 -4.91668e-13 3.40546e-13 9.3072e-13 3.45648e-13 4.89525e-13 1.0799e-12 2.43004e-15 -9.28802e-13 -7.15634e-16 -3.42651e-13 -2.56202e-17 -3.45024e-13 -2.61231e-19 -4.4264e-16 4.88584e-13 4.89028e-13 -9.47396e-14 9.40224e-13 4.50748e-13 3.21493e-17 1.24843e-18 4.93131e-20 -3.20342e-16 4.85229e-13 5.46078e-16 3.1346e-16 -1.12856e-16 1.92162e-13 -8.11549e-17 1.55455e-13 2.16803e-16 -1.71732e-13 -1.31198e-16 2.44493e-13 1.69886e-16 -2.4481e-13 -1.65101e-16 2.42332e-13 2.20533e-16 -9.64201e-14 3.35152e-17 -9.48593e-14 -3.91955e-17 -6.07983e-17 1.65867e-13 6.50197e-17 1.15778e-20 5.60903e-18 -1.64556e-14 -6.03712e-18 -7.05707e-20 2.80525e-18 -2.64777e-14 -3.59718e-17 5.6225e-14 2.62747e-17 -3.6725e-14 -1.72843e-17 3.26473e-14 1.07888e-17 -2.29593e-21 -6.77856e-18 2.29516e-15 1.27217e-15 7.64851e-16 -1.29812e-17 5.83961e-15 -1.07528e-12 -5.55576e-15 -8.45964e-18 4.02666e-21 2.573e-23 -3.1096e-21 -3.74698e-19 -1.28331e-20 3.0454e-18 1.71018e-16 1.32814e-13 -1.03989e-12 9.42488e-14 -1.0758e-12 -4.10166e-15 3.03117e-16 -8.13878e-19 -2.75268e-22 -8.6857e-19 -3.31582e-16 -1.37942e-15 4.51368e-13 4.48836e-13 4.46456e-13 4.47611e-13 4.88478e-13 4.49295e-13 -6.42707e-18 3.81842e-16 -1.00309e-18 -8.3878e-21 1.6112e-18 1.10308e-15 -3.40971e-13 -1.4885e-16 1.41272e-15 3.35531e-16 2.32236e-16 9.95136e-16 3.97213e-16 -3.46091e-13 8.79974e-17 -4.54713e-13 -2.91778e-18 -4.91464e-13 -6.71172e-16 -4.3983e-16 4.91291e-13 4.92132e-13 4.02153e-16 5.94995e-16 1.2833e-16 1.92775e-13 1.48016e-16 9.9993e-20 -1.28439e-16 1.95328e-13 1.31403e-16 -3.69915e-17 -8.89672e-17 1.55295e-13 -1.89402e-13 1.21242e-16 -3.14542e-13 -4.36377e-16 3.11518e-13 3.01691e-16 -1.72096e-13 -2.47671e-16 2.42447e-13 2.06213e-16 -9.6413e-14 -1.06543e-16 9.63004e-14 2.10375e-17 3.60394e-18 2.4972e-17 -6.9459e-14 -2.69703e-17 1.32576e-21 -3.78591e-17 1.13259e-13 4.08637e-17 5.67058e-19 1.11219e-17 -3.54885e-14 -7.3996e-14 -8.12407e-18 -4.13781e-14 -2.34155e-17 3.30564e-14 1.35855e-17 -2.67452e-20 4.74836e-20 -2.16835e-17 6.90876e-15 -1.15782e-12 1.11489e-12 4.74095e-16 1.1272e-12 1.14868e-12 1.08158e-12 5.3573e-15 1.29599e-17 -1.58943e-20 6.35954e-18 1.06682e-15 -1.10202e-17 4.54705e-15 -1.07224e-12 -1.07957e-12 -6.49761e-15 1.76178e-16 -5.21404e-15 1.07262e-12 -4.46178e-13 -1.30212e-15 -2.43796e-19 -1.22078e-15 4.87535e-13 4.89232e-13 9.34096e-17 4.49362e-13 4.49145e-13 1.59902e-15 6.72204e-16 -2.34704e-16 4.47848e-13 -6.19892e-13 -1.7081e-15 1.92807e-19 1.87322e-15 -1.07777e-12 3.06885e-13 1.55833e-15 -9.31102e-13 -2.1817e-15 4.92772e-13 6.37045e-16 5.98633e-19 -1.52187e-16 5.26442e-16 -4.91017e-13 -5.31718e-16 -8.57814e-16 4.89463e-13 2.97653e-16 4.38048e-16 -9.64666e-14 -9.69163e-14 -8.19997e-17 3.76822e-19 1.16944e-16 -3.33455e-19 1.08858e-19 -3.17448e-16 4.84249e-13 2.41384e-16 1.9285e-13 2.32326e-16 -1.92215e-13 -1.97081e-16 -1.9411e-19 -2.97668e-16 3.32233e-13 1.81023e-16 2.42271e-13 1.97427e-16 -2.44125e-13 -1.3804e-16 2.43685e-13 7.52961e-17 -3.15594e-17 9.45519e-14 -9.60278e-14 -1.66941e-13 -6.65781e-17 -1.53673e-17 3.98746e-19 1.54e-22 -9.38523e-21 2.11636e-17 -6.90983e-18 1.08846e-14 1.84651e-17 -4.73084e-14 -2.29512e-17 4.97352e-20 -9.93502e-18 2.37401e-14 3.30647e-14 1.2009e-14 3.94644e-18 3.73768e-20 4.542e-20 -1.29076e-17 4.03485e-15 -1.12026e-12 -4.92374e-16 -1.13019e-12 -3.52879e-15 2.37196e-15 5.75597e-18 2.72948e-20 -1.87939e-17 8.76478e-15 -2.15207e-12 -4.09901e-15 -1.07605e-12 -5.52742e-15 -5.68008e-15 1.03982e-12 3.51026e-15 -8.24524e-16 1.98541e-15 -8.13753e-16 -3.48643e-16 -5.99301e-20 -3.75731e-16 8.06188e-16 -2.048e-15 1.0728e-12 3.17495e-15 6.68877e-16 1.92935e-19 1.40906e-18 3.41009e-16 -2.67005e-16 4.82228e-13 9.31654e-13 2.16396e-15 -3.45096e-13 -3.47245e-13 -4.91613e-13 3.48193e-13 -1.15019e-15 4.91055e-13 1.15267e-15 -2.53055e-16 4.00692e-16 -3.46478e-13 -3.16762e-17 -3.45726e-13 -3.74108e-16 2.30806e-16 -2.40622e-13 4.88164e-13 4.57406e-16 -6.74617e-17 1.0208e-16 -8.60029e-19 -4.06411e-19 -5.83799e-17 4.08717e-19 4.31001e-20 -1.25553e-16 1.93296e-13 -1.57151e-13 -5.20445e-18 -1.11087e-16 1.91867e-13 1.14262e-16 -9.1107e-21 1.61044e-16 -3.14526e-13 -2.58274e-14 1.58286e-16 -2.45278e-13 -1.52577e-16 -5.14031e-14 3.17492e-17 9.7589e-14 -9.62864e-14 9.63928e-14 1.87076e-17 -1.23955e-17 -7.50672e-14 1.64863e-13 6.34747e-17 1.82788e-20 -3.69813e-17 1.12444e-13 -8.37382e-14 -2.82149e-17 -3.49788e-18 1.09064e-14 3.79483e-18 -4.28959e-22 7.08792e-18 -2.3733e-14 -9.87525e-18 1.20621e-14 3.8984e-18 4.36399e-17 4.60218e-19 9.0069e-19 1.5746e-17 -3.07978e-15 -5.75657e-15 1.07642e-12 5.79248e-15 1.7804e-17 -1.09383e-19 1.38603e-21 1.68047e-20 -1.1149e-19 -5.55789e-16 -1.05809e-12 -1.7897e-15 -1.07611e-12 -4.73918e-15 2.9504e-15 -3.36259e-15 1.07613e-12 3.36898e-15 -1.24622e-15 4.47503e-13 -7.51767e-18 4.85745e-13 -2.15783e-16 4.49742e-13 2.80358e-15 1.79241e-18 1.38022e-18 3.43211e-16 9.32459e-16 -4.84913e-13 -7.60253e-17 -4.79656e-13 3.56091e-16 -3.21356e-18 1.00718e-15 -9.32053e-13 -7.16997e-16 -4.92676e-13 -1.35871e-15 4.91903e-13 4.71286e-17 4.91845e-13 6.09594e-16 -3.28093e-16 3.67026e-16 -3.43266e-13 -3.70646e-16 -2.1621e-16 -1.90888e-16 3.82756e-16 -1.05887e-18 4.0524e-16 -4.88924e-13 -4.11456e-16 -1.46516e-16 1.95531e-13 1.49211e-16 9.88756e-20 -1.26329e-16 1.94334e-13 4.49226e-17 4.02311e-19 -1.08637e-16 1.91401e-13 1.42295e-16 -2.84569e-19 1.10692e-17 -2.52627e-14 -1.36567e-16 2.44587e-13 1.70742e-16 -2.44072e-13 -2.43667e-17 -2.41719e-13 -9.71452e-14 -6.99274e-17 5.03938e-17 -7.76118e-14 -3.17226e-17 1.24272e-18 -5.15471e-14 -1.96775e-17 -5.6026e-21 1.11283e-17 -3.4299e-14 -2.44479e-17 1.43243e-19 -1.1656e-17 3.78254e-14 9.06462e-18 -7.84307e-20 -5.34094e-18 1.79194e-14 8.74885e-18 4.04131e-19 -1.93315e-20 2.80169e-14 1.64488e-16 1.33263e-15 5.43743e-15 -1.11536e-12 -1.2489e-14 1.13064e-12 6.07377e-15 2.11784e-17 3.21979e-16 -4.73479e-18 -2.55642e-20 1.05089e-20 -9.38799e-18 1.71961e-15 -1.07594e-12 -1.09685e-14 1.07849e-12 -1.07231e-12 -3.62204e-15 2.13744e-15 9.95918e-19 -3.89363e-16 8.35527e-16 1.69836e-18 -3.44313e-16 4.84105e-13 1.96775e-15 2.93011e-18 -1.02279e-18 9.34065e-16 -4.50707e-13 -9.35749e-16 -1.08139e-15 -8.58972e-16 4.82298e-13 8.61784e-16 7.51239e-19 -2.49041e-18 2.28362e-16 -9.31288e-13 -1.95769e-15 6.52518e-16 -3.45334e-13 -4.60748e-16 5.06715e-16 -9.02486e-19 -1.55714e-19 -6.81613e-19 -3.13733e-16 -4.82837e-16 4.89801e-13 4.8933e-16 2.10951e-16 -1.11331e-18 -9.60938e-19 -3.5631e-16 1.03759e-18 -1.44149e-16 1.9457e-13 1.46987e-16 8.875e-20 -1.01044e-16 1.56107e-13 1.03219e-16 -4.71682e-17 3.56433e-19 1.37974e-16 -1.54719e-13 -1.24946e-16 -1.58382e-16 3.14646e-13 2.79396e-16 -2.41579e-13 -2.45154e-13 -1.87793e-16 -4.85677e-14 2.44533e-13 8.71698e-17 -2.98399e-17 9.5767e-14 1.88886e-17 1.57343e-19 -2.72186e-17 7.67483e-14 2.9165e-17 1.26115e-20 -4.23509e-17 1.30443e-13 4.57373e-17 2.20356e-18 -2.17403e-18 2.38397e-17 -4.66503e-14 -1.69979e-17 -6.96557e-18 2.37029e-14 2.36771e-14 7.62312e-18 1.23957e-21 6.23916e-17 -7.18834e-15 1.16249e-12 -1.14461e-12 -9.40526e-15 -1.13807e-14 2.20682e-12 1.18035e-14 5.12472e-15 -1.07641e-12 -5.12572e-15 -1.18996e-17 -1.78546e-20 -1.23363e-20 8.43699e-18 -6.30663e-15 1.08018e-12 -1.06966e-12 -6.0338e-15 -8.67502e-18 9.52703e-17 -1.29205e-15 4.46386e-13 1.29293e-15 1.82662e-18 5.74132e-19 8.60917e-16 7.89367e-19 -3.13032e-21 1.95342e-21 -1.9141e-19 -7.06687e-16 -9.28842e-16 4.84212e-13 2.0528e-15 -6.22527e-13 -1.12434e-15 -9.79111e-19 -2.19421e-21 -8.88055e-19 -8.06107e-16 4.27002e-16 -3.10239e-13 3.47284e-13 4.63655e-16 1.60074e-18 2.83498e-16 -7.60254e-20 2.65465e-16 -1.56065e-18 3.41471e-16 -3.43813e-13 1.03461e-16 -4.89117e-13 -4.53e-16 1.27662e-16 -2.01418e-18 -1.86106e-16 1.5186e-18 1.31219e-16 -4.07058e-19 -3.99803e-22 3.14862e-19 9.16415e-17 -1.16808e-16 1.93155e-13 1.22241e-17 1.91475e-13 -1.54954e-13 1.90931e-13 1.05821e-16 1.40343e-16 7.92422e-17 -1.71726e-13 -1.97314e-16 4.8251e-14 -2.44851e-13 9.16048e-18 -9.61007e-14 -9.62259e-14 -6.62435e-18 -7.23344e-19 -7.84562e-18 4.80124e-19 1.72544e-17 -1.44602e-19 -1.3303e-22 2.36981e-19 2.15759e-17 -1.47714e-17 4.65191e-14 -3.81698e-14 8.3047e-14 -4.65028e-14 -1.71242e-14 -5.42847e-18 3.27708e-18 9.6427e-19 -4.07663e-20 -1.01425e-23 -6.67917e-18 1.36652e-17 9.56356e-16 -2.25153e-15 -5.13788e-14 1.15043e-12 -1.11096e-12 -5.99766e-15 -1.0062e-17 -2.58101e-15 -5.54256e-18 2.92142e-21 2.7963e-23 2.49169e-23 -8.58615e-21 -5.95933e-18 2.424e-15 -2.37199e-15 -5.71796e-18 3.00035e-16 -9.5004e-14 -3.0122e-16 8.95223e-16 4.71949e-16 -9.33055e-19 -8.74982e-19 -4.23819e-16 8.97216e-19 2.41427e-19 -1.30576e-21 -1.48644e-21 -5.64587e-19 3.64075e-19 7.39131e-16 -2.08774e-18 -1.31336e-15 1.7585e-18 5.46534e-21 -5.62193e-19 7.25208e-16 -4.92182e-13 -7.28918e-16 -7.07139e-16 4.0305e-16 -2.21547e-16 8.86717e-16 -4.91915e-13 1.5745e-16 -4.91696e-13 -2.74728e-16 -2.15855e-18 -3.11631e-16 -2.9354e-19 -4.15304e-16 3.9963e-17 -3.05524e-13 -4.44823e-16 4.86096e-13 3.91277e-16 6.74839e-19 6.82467e-17 -4.63869e-19 -1.33675e-22 2.57643e-20 -3.69063e-20 5.57956e-17 1.07013e-16 -1.90472e-13 -1.91367e-13 1.51883e-13 1.25338e-16 -2.51568e-14 4.23794e-17 -9.72158e-17 3.68128e-17 1.67978e-17 -8.01111e-17 -4.45442e-17 9.63402e-14 4.86111e-17 -9.54583e-14 -9.39752e-17 1.6652e-13 6.51964e-17 2.06114e-19 1.60375e-18 -1.9248e-19 -2.64892e-23 7.3315e-22 -5.55854e-21 8.437e-18 2.04388e-17 -8.24526e-14 -3.77968e-14 4.63549e-14 5.78031e-18 1.77671e-14 5.66812e-18 1.60624e-18 2.19866e-20 -3.65758e-15 6.96364e-15 -1.12553e-12 -7.27248e-15 4.32328e-14 1.5147e-14 -2.29753e-12 -1.23366e-14 -3.49555e-16 2.22886e-18 3.16751e-20 9.42578e-23 1.80939e-25 -3.62779e-23 1.48822e-20 -2.27202e-18 -9.67356e-16 -4.03885e-19 -3.48028e-18 4.38487e-15 -1.07653e-12 -3.35216e-15 1.35444e-15 -4.88686e-13 -1.35655e-15 -1.11981e-15 4.49842e-13 1.11644e-15 -4.66628e-16 7.80459e-19 -2.39547e-19 4.01978e-21 -1.04832e-18 -4.26255e-16 -8.5975e-16 4.85111e-13 8.61462e-16 6.15836e-19 4.64214e-21 -1.55635e-18 -8.99526e-16 -6.71576e-16 4.93042e-13 2.36853e-16 3.46303e-13 -4.912e-13 3.43617e-13 -3.44705e-13 -3.7797e-16 -4.91575e-13 -5.23437e-16 -4.13662e-19 1.04567e-18 -2.6053e-16 4.89701e-13 5.85301e-16 -4.88647e-13 -3.59643e-17 -1.75578e-18 6.4277e-17 -1.95787e-13 -1.41762e-16 -5.03074e-20 3.57422e-20 -1.14071e-16 1.90905e-13 9.88022e-18 1.91748e-13 -2.0866e-17 1.54656e-13 -1.54075e-13 3.32787e-13 -3.13576e-13 1.71462e-13 -2.42809e-13 -9.28546e-17 -5.10652e-14 5.12939e-14 6.38605e-17 -6.08773e-19 6.7689e-18 -9.45495e-14 6.95037e-18 -5.11449e-19 2.9526e-17 -9.51156e-14 -3.44952e-17 -6.22946e-21 2.29611e-21 -1.45163e-17 4.72682e-14 2.33583e-17 -2.58705e-14 -2.51524e-17 2.80026e-14 -4.15586e-14 4.14059e-14 9.83778e-18 1.18401e-14 3.71078e-18 -1.02732e-16 1.7604e-14 -1.14548e-12 4.66146e-14 -1.13108e-12 5.17309e-15 -2.21495e-12 -1.72166e-14 1.05737e-12 5.22526e-15 1.25878e-17 1.95887e-20 3.33849e-23 -5.70846e-21 7.71501e-18 -3.76173e-15 1.03992e-12 3.62313e-15 3.34728e-15 -1.03544e-12 -6.8348e-15 5.13134e-16 -1.14633e-15 -4.8461e-16 -5.15102e-16 1.77251e-18 1.36723e-15 -1.89022e-17 4.85217e-13 1.56269e-15 4.75858e-16 -1.49822e-19 -9.15094e-16 4.79465e-13 9.15768e-16 7.4146e-16 2.50613e-19 2.93523e-16 -4.42863e-19 -5.09217e-16 3.46143e-13 5.12462e-16 8.73964e-16 4.35084e-16 -3.444e-13 -7.65262e-16 9.35638e-16 -4.89858e-13 -4.78769e-16 -3.42749e-13 -3.6389e-16 -4.29135e-19 3.13323e-16 -3.42809e-13 1.04493e-16 -2.39953e-18 -3.93183e-16 1.81951e-18 -6.1771e-17 1.9508e-13 8.50502e-18 4.9177e-19 3.59893e-22 -2.80559e-22 4.24644e-19 1.1137e-16 -3.10275e-20 2.06761e-16 -1.91913e-13 -1.01877e-13 -8.59623e-17 2.34682e-16 -1.72034e-13 5.29187e-17 -2.45249e-13 -9.23761e-17 -5.12205e-14 6.46175e-17 -9.62286e-14 -4.1049e-17 -2.07862e-19 -2.69642e-17 4.14578e-19 -2.11722e-17 7.53566e-14 6.85737e-18 1.99694e-19 7.18333e-23 -2.94605e-23 9.34945e-20 6.78101e-18 -1.47183e-19 1.61947e-17 -6.52432e-14 3.72518e-14 6.91651e-18 2.23662e-18 -5.78093e-20 2.85793e-19 -2.24042e-20 2.997e-17 -1.70025e-15 1.01783e-14 -2.30847e-12 2.74338e-14 2.26375e-16 -1.08555e-14 1.05734e-12 8.10851e-15 1.96424e-17 1.46296e-20 -4.77121e-23 1.90934e-20 -2.72789e-18 -1.02113e-15 -4.78748e-19 2.04764e-15 1.30283e-13 4.59102e-16 -4.49802e-15 1.07217e-12 -4.89859e-13 1.07748e-12 -4.87868e-13 4.87182e-13 2.50649e-15 -4.8469e-13 -1.07516e-12 -1.18159e-15 -4.4558e-13 -4.87199e-13 -1.03633e-15 -9.01214e-19 7.89609e-16 -4.74035e-19 7.90589e-20 5.67328e-16 -3.45764e-13 -5.68379e-16 1.04179e-19 4.71262e-16 4.70603e-16 -3.46787e-13 -6.80524e-16 3.45941e-13 -3.45681e-13 -4.24893e-16 -1.03884e-15 4.58815e-13 -3.43666e-13 -3.63489e-16 2.82294e-16 4.40107e-16 -4.89651e-13 -4.46329e-16 4.91023e-17 -1.7352e-18 -7.56767e-17 -1.93951e-13 -4.28159e-18 -5.532e-19 -3.16232e-23 -6.82759e-25 4.07768e-25 2.793e-22 3.11772e-20 -4.74445e-19 -5.32572e-17 -1.4043e-16 1.5374e-13 -1.9136e-13 -9.95833e-17 -1.53599e-16 2.44523e-13 2.98453e-14 1.39993e-17 4.36574e-17 -2.41538e-13 -2.43085e-13 -1.01487e-16 -8.97107e-18 -1.8837e-21 2.67801e-17 -9.52529e-14 -1.72456e-17 -1.6843e-19 -1.68223e-23 -2.18304e-25 9.56575e-26 1.48368e-23 8.14559e-23 -2.19116e-20 5.24795e-19 -1.95055e-17 4.57631e-14 -2.32008e-14 -5.21521e-18 7.46023e-19 1.1258e-20 3.07744e-24 1.08931e-14 -1.1423e-12 -1.15287e-12 -1.14827e-12 -6.75701e-15 -1.96729e-17 -2.02874e-17 2.38021e-15 -4.47594e-16 -5.97367e-16 4.62211e-18 1.56474e-20 8.60142e-18 -4.19243e-15 1.07605e-12 5.33133e-15 1.17961e-15 1.4974e-15 3.45479e-15 -1.0731e-12 -1.0392e-12 -4.83511e-13 -1.07639e-12 1.07198e-12 3.99931e-15 4.44551e-18 -9.73119e-16 -2.66544e-15 4.84162e-13 4.76925e-13 4.51505e-13 9.61881e-16 4.65203e-16 -4.06022e-19 -5.04378e-21 7.31667e-22 -6.59674e-19 -5.26083e-16 5.13047e-19 -4.02668e-19 8.02495e-19 -6.67946e-16 4.91651e-13 -3.08108e-13 2.00725e-17 -4.16759e-16 1.62975e-18 2.36751e-16 1.015e-15 -4.9217e-13 -4.22371e-17 -4.89426e-13 -4.80348e-16 -1.84315e-16 8.14639e-17 -9.7308e-14 -4.63099e-16 4.88416e-13 2.34318e-16 6.10383e-19 -2.05169e-20 -1.91017e-20 2.15621e-22 3.28275e-22 2.59581e-20 1.63078e-20 -1.05096e-16 1.91257e-13 -1.53893e-13 -1.90618e-13 -1.97722e-16 8.08028e-17 -1.71966e-13 -2.42087e-13 5.15925e-14 -7.68925e-17 2.41233e-13 3.06891e-17 -7.19468e-17 -3.5514e-17 9.62749e-14 4.61236e-18 9.4871e-14 1.09551e-17 2.175e-19 8.08021e-22 -1.73268e-21 4.73156e-24 -4.31016e-25 -4.72209e-26 4.64214e-22 -3.10967e-18 1.05701e-14 3.49516e-18 1.54897e-17 -4.12124e-14 1.89894e-14 5.4941e-15 1.71478e-18 2.61669e-22 4.7056e-18 -1.42706e-15 -2.28846e-15 -3.8881e-14 -2.23728e-16 1.50253e-17 -5.83457e-15 1.14175e-12 1.05856e-12 1.06731e-12 5.05033e-15 1.16747e-17 2.31078e-20 -1.19993e-17 6.79363e-15 -1.07245e-12 -1.07688e-12 -1.08038e-12 -2.82946e-15 9.66184e-14 -1.37411e-13 -2.92593e-15 4.85945e-13 3.76033e-15 3.92459e-18 -1.45745e-18 1.15386e-15 -4.84134e-13 -1.03821e-12 6.2396e-13 -4.86352e-13 -1.43673e-16 -4.51676e-13 -8.93013e-16 -8.64209e-19 8.73345e-19 3.40518e-16 -1.30418e-18 2.41523e-18 8.47461e-16 -1.55407e-18 2.9769e-16 6.58673e-16 -3.56868e-17 9.71064e-19 3.71247e-16 3.86008e-16 -3.43261e-13 -6.39494e-17 -3.12005e-13 1.48385e-16 -4.9382e-13 -4.1184e-17 -4.89241e-13 -4.47256e-16 -3.28602e-16 -4.63744e-17 6.28597e-16 -1.26313e-18 2.04684e-16 8.28556e-17 7.95516e-17 -5.30358e-19 -9.06432e-19 -1.2e-16 6.5527e-17 6.17953e-17 1.09854e-16 9.91812e-18 -2.08016e-17 4.79746e-17 -5.76339e-17 1.20958e-13 3.02442e-14 5.03084e-14 -8.43901e-17 2.62496e-13 -9.49226e-14 -9.6519e-14 -4.01013e-17 2.09853e-17 9.11053e-18 3.40483e-17 -4.3369e-19 -6.59662e-20 -2.20869e-18 3.80307e-18 -3.85599e-19 -1.32164e-22 -3.08665e-25 1.63293e-21 -1.09067e-17 3.75707e-14 1.19735e-17 -8.59454e-20 -2.76069e-18 1.07807e-18 2.05975e-19 -2.30902e-18 -3.50802e-20 -1.20034e-19 2.06793e-17 -1.19567e-15 -1.04569e-16 -2.6431e-19 -7.2727e-21 -6.26279e-18 3.02387e-15 2.81458e-15 2.8556e-15 8.49509e-16 -4.51243e-18 -2.62895e-20 -7.11108e-19 7.32055e-18 -2.78923e-15 -2.7604e-15 7.51046e-16 -1.03987e-12 -1.89821e-15 -3.29029e-16 6.14501e-16 1.11588e-15 3.13635e-18 -7.8045e-21 8.56825e-21 -5.95111e-19 -1.53125e-15 -2.06165e-15 1.75273e-15 -9.29457e-16 9.39129e-16 -4.78306e-13 -9.38478e-16 -1.42608e-18 5.90941e-16 -3.489e-13 -5.92892e-16 1.40844e-15 -9.32312e-13 -9.26463e-16 -3.45841e-13 1.05986e-16 -4.5616e-13 -8.15055e-18 -4.88988e-13 -2.04273e-16 -3.44035e-13 -2.5324e-17 -3.49076e-13 1.08551e-16 -4.94291e-13 -4.24427e-17 -4.9168e-13 -8.19198e-16 4.52869e-13 9.72736e-14 -4.49911e-13 -2.84879e-17 -4.52355e-13 -1.946e-13 -1.9529e-13 -1.33511e-16 -2.04288e-16 3.36541e-13 -1.89438e-13 -1.93374e-13 6.41561e-17 -3.32161e-13 -2.96913e-13 -1.92216e-13 -2.35982e-16 2.96432e-13 3.06549e-14 -1.71571e-13 2.26983e-17 -2.43921e-13 -2.42407e-13 -9.49838e-14 -7.4651e-17 9.62376e-14 -9.53911e-14 -9.36884e-14 -3.38123e-17 -3.63468e-15 7.11877e-14 -1.64428e-13 -5.72877e-17 -9.81102e-21 -3.3098e-23 1.0692e-19 -1.87336e-18 -1.56969e-19 3.91659e-18 -2.27159e-18 -4.19348e-18 -4.89617e-18 8.45867e-18 -1.63886e-14 -4.86583e-18 -2.12445e-17 8.01147e-15 -1.15551e-12 -7.24529e-15 -2.20524e-17 1.81409e-21 -7.42632e-18 -4.14875e-16 6.46677e-16 4.87649e-15 -1.07681e-12 -3.90963e-15 -1.13215e-17 1.1779e-15 -2.70374e-18 -3.69932e-18 -1.46863e-18 1.31107e-15 8.03967e-16 -1.07233e-12 -3.38213e-15 -4.92433e-13 -1.45717e-15 -2.10864e-18 3.38846e-21 8.13181e-19 -1.63194e-15 4.50033e-13 1.50957e-15 -4.51607e-13 -9.94e-16 -3.06176e-18 -1.6108e-15 2.16887e-18 8.2812e-21 -5.11117e-19 -5.83554e-16 5.5043e-19 -1.66487e-18 -1.42877e-15 1.0654e-18 -4.9786e-16 8.30987e-16 -1.05058e-15 -5.8556e-16 4.91326e-13 1.13988e-15 -4.94369e-13 -4.04473e-17 -4.95504e-13 -1.87813e-16 -3.45295e-13 -4.17265e-16 9.34713e-14 3.81406e-16 7.02374e-16 3.53276e-16 -4.77493e-16 4.62677e-19 -3.67558e-16 -1.51557e-16 -1.46845e-16 5.08567e-19 8.80215e-19 2.28651e-16 -1.24451e-16 -1.20019e-16 -1.28662e-18 -2.98754e-16 -3.81683e-16 3.29914e-13 8.24537e-17 1.90149e-13 5.04391e-14 4.92131e-14 1.26096e-16 -2.5953e-13 -9.71167e-14 -3.11758e-13 -1.14641e-16 5.12366e-17 -2.13572e-17 -3.5772e-17 4.483e-19 5.27857e-17 -1.64665e-13 -9.35627e-14 -3.14876e-17 -5.27418e-21 -2.46049e-20 1.37245e-17 -4.66168e-14 -7.34799e-14 5.60307e-14 -2.81872e-14 -4.17437e-14 -4.09035e-14 3.26263e-14 1.39511e-14 4.40407e-18 3.7335e-15 3.09363e-17 -2.78935e-15 -7.17928e-16 -1.45213e-17 1.46673e-17 -5.50729e-15 1.08595e-12 -1.14134e-12 -4.84234e-15 1.62067e-15 -1.06413e-12 -3.11153e-16 -1.07669e-12 -4.35405e-15 -1.51655e-17 3.60235e-15 -1.03931e-12 -3.60037e-15 -4.63425e-15 1.06849e-12 1.0358e-12 3.08175e-15 4.48269e-18 4.07787e-19 -1.74933e-15 4.49784e-13 4.14915e-16 4.50641e-13 1.06518e-16 -5.39785e-16 -1.24191e-15 6.26254e-13 1.12614e-15 1.79612e-18 -2.22892e-21 -4.92759e-19 1.78027e-21 -4.48212e-21 -1.1026e-18 -2.04259e-18 9.2295e-16 -9.30169e-13 4.91189e-13 1.93163e-15 -1.07671e-12 -1.29957e-15 -2.22033e-16 5.07073e-16 -4.92952e-13 -9.82068e-16 4.91752e-13 8.03005e-16 7.34868e-16 -4.91606e-13 -4.89647e-13 -4.92651e-13 1.59402e-13 1.24646e-16 -2.43369e-20 -5.81544e-20 -5.35422e-20 4.29177e-22 6.73394e-22 7.3401e-20 5.28754e-19 6.87501e-17 -1.75554e-16 3.33895e-13 1.91298e-13 -3.31917e-13 -1.69854e-16 1.20056e-16 4.86267e-14 -2.44629e-13 -2.07424e-16 2.40282e-13 -2.59796e-13 -1.75695e-16 -9.49847e-14 -1.65789e-13 -9.49139e-14 9.54627e-14 3.47644e-17 -3.95944e-19 -4.07641e-17 -2.06634e-17 2.25602e-19 -1.1639e-19 -2.19942e-18 9.8855e-15 -3.53809e-18 -8.7487e-18 9.23765e-18 -2.54825e-18 -2.8997e-18 -1.98065e-18 3.06637e-18 1.91028e-18 1.23661e-15 -4.70921e-19 -2.23784e-17 6.79186e-15 -1.14375e-12 -6.8803e-15 -2.00018e-17 1.4678e-18 3.50131e-15 1.76757e-15 -1.0623e-12 -3.89289e-15 -3.0215e-15 -5.84781e-19 -3.01404e-15 -4.32839e-18 -6.52913e-18 3.59725e-15 -1.04304e-12 -2.93883e-16 -1.03134e-12 -3.7802e-15 1.07874e-12 3.19296e-15 7.43434e-18 -1.24582e-15 4.8886e-13 1.0931e-15 4.89765e-13 -4.77419e-13 -2.79546e-15 4.41975e-13 5.50423e-16 4.83025e-13 1.00607e-13 -3.85118e-16 1.02157e-18 5.77093e-21 7.75687e-24 1.58518e-21 1.909e-18 -1.2884e-16 3.43445e-13 -8.80203e-16 7.003e-16 1.37863e-16 -4.90253e-13 -4.24235e-17 -4.90558e-13 -3.96646e-17 -4.92257e-13 -5.07704e-16 9.94833e-16 -4.90437e-13 -3.45011e-13 -1.02318e-15 -4.72488e-16 -1.71468e-16 1.45334e-16 2.5177e-17 -2.52773e-16 1.44694e-18 1.40678e-21 -1.31203e-24 9.27462e-23 -6.11483e-19 3.26286e-17 -1.93216e-13 -1.09258e-16 2.02024e-16 1.33706e-16 -1.53036e-13 9.36378e-18 -1.90298e-13 -8.67586e-17 4.84826e-14 2.22516e-17 1.00465e-16 -8.56725e-17 -9.55512e-14 -1.07026e-16 9.29531e-14 -9.57192e-14 -9.49876e-14 -2.89684e-17 -1.91429e-19 -3.28798e-21 -1.32842e-21 1.444e-19 -1.36046e-17 4.75876e-14 1.66687e-17 -1.93271e-20 -1.30047e-17 4.75784e-14 1.5945e-17 1.23983e-18 4.80568e-19 1.41197e-14 1.3945e-14 4.08589e-18 -3.73272e-15 -9.02201e-16 -3.02799e-19 -2.77975e-15 -2.81372e-16 -9.87094e-17 5.46933e-15 -1.07547e-12 -4.75734e-15 2.39163e-15 -1.19452e-12 -5.48787e-15 -1.21161e-17 -4.26791e-18 5.38239e-21 6.99912e-21 2.92593e-18 -2.84866e-15 3.43731e-15 -1.07882e-12 -3.44015e-15 2.72988e-15 -8.22108e-19 -1.54135e-15 2.09067e-18 1.13688e-15 1.80913e-18 1.08436e-15 -2.99834e-15 5.89868e-13 4.85748e-13 -4.44801e-13 3.4823e-16 -4.86895e-13 4.84106e-13 1.6178e-15 -9.84036e-19 1.86226e-21 -3.08031e-18 -4.97943e-16 -3.46997e-13 2.80838e-17 3.43328e-19 -1.33621e-16 4.90793e-13 3.50161e-16 -3.79999e-16 3.46673e-13 8.83661e-16 -4.90496e-13 -5.04824e-16 -1.13979e-18 -8.39903e-16 3.41457e-13 3.45904e-13 4.67445e-16 -4.90729e-13 -3.56274e-16 -4.96735e-14 4.86779e-13 4.49702e-16 -4.7973e-19 -7.78461e-22 6.14617e-19 -2.71006e-17 1.90798e-13 -1.69231e-17 -6.77127e-17 -1.11533e-17 1.55435e-13 9.52422e-17 -8.58002e-17 1.90283e-13 1.99922e-16 -2.44188e-13 -1.60112e-16 -3.62151e-17 9.56939e-14 1.77641e-17 -6.77067e-17 1.91634e-13 4.03926e-17 -5.92336e-18 -7.13154e-14 -3.15494e-17 2.43983e-19 -3.59971e-21 1.64331e-17 -5.58602e-14 -9.44885e-18 -1.21152e-19 -7.36457e-23 1.35571e-19 -6.42741e-19 1.89857e-14 1.30949e-14 3.65904e-14 3.26582e-14 1.13804e-17 -3.11547e-21 -6.44207e-18 -1.4372e-18 -1.96823e-17 6.55531e-15 -1.15155e-12 1.06741e-12 5.92005e-15 2.19188e-15 -1.07614e-12 -5.2833e-15 -3.55217e-15 -6.10178e-18 8.73544e-21 -3.95529e-21 2.06475e-23 -6.68989e-21 -1.23267e-18 -3.90742e-18 2.27902e-18 -2.89829e-15 -2.05259e-18 7.77302e-18 -2.94285e-15 1.07277e-12 2.94327e-15 7.1318e-16 -6.99189e-16 -4.67893e-16 4.87834e-13 -4.82043e-13 4.88948e-13 -4.51662e-13 4.81277e-13 8.52086e-16 -1.38761e-13 -6.18197e-13 -1.08652e-15 1.73611e-19 -1.39067e-15 9.30864e-13 8.31515e-16 -1.8135e-18 -4.66823e-16 -4.93049e-13 1.39499e-16 -4.54896e-13 3.31279e-16 -1.07822e-12 -9.85955e-16 -4.92671e-13 -5.031e-16 -4.5309e-19 8.50501e-17 -9.53751e-14 -4.56046e-13 3.42545e-13 -4.8923e-13 -3.87348e-16 -1.57611e-16 1.60306e-13 -1.94752e-13 -1.34412e-16 -8.00173e-20 1.12703e-16 -1.92669e-13 1.82558e-17 -1.0201e-16 1.91141e-13 -1.92043e-13 3.87837e-17 -3.30361e-13 -7.37512e-17 -2.93379e-13 -3.06391e-14 4.89053e-14 2.41653e-13 1.02795e-16 7.56847e-17 -9.59862e-14 -2.25071e-17 6.77607e-17 -5.20517e-19 -1.86239e-19 -5.0232e-17 9.30017e-14 3.19826e-17 4.01071e-18 -1.66305e-17 5.57309e-14 1.78437e-17 2.76625e-21 1.2003e-19 -2.62614e-19 -8.1091e-15 -5.37174e-19 -5.46195e-18 -9.73721e-18 3.25886e-14 1.17237e-14 4.66277e-18 2.64599e-20 -1.64241e-18 2.75998e-18 5.3582e-18 -3.03405e-15 2.94757e-15 6.05711e-18 1.82583e-18 -3.16579e-15 -5.99541e-18 -5.18746e-18 6.59262e-21 3.93173e-23 3.85263e-23 -1.82985e-20 2.14586e-18 1.55308e-15 -2.08562e-18 -1.44617e-18 -3.93524e-18 5.29998e-21 1.91456e-18 -1.33218e-15 4.89112e-13 2.57128e-15 -4.89971e-13 4.88602e-13 -4.49665e-13 4.53247e-13 -4.87285e-13 4.50786e-13 4.79046e-13 6.22423e-13 -4.77969e-13 -9.89704e-16 -1.18716e-15 1.38524e-18 -7.27587e-21 1.26003e-18 1.57959e-15 1.89234e-20 -8.98677e-16 1.07708e-12 5.79663e-16 4.93673e-13 -4.35454e-16 3.46302e-13 -1.41478e-15 3.47111e-13 -2.50859e-16 3.1814e-18 3.83975e-16 -1.68909e-19 -4.22388e-17 3.43744e-13 3.19565e-16 -4.8701e-16 -1.2054e-16 1.15653e-16 1.42925e-16 -1.6933e-16 6.05506e-19 8.31287e-22 -5.42507e-19 -1.43563e-16 1.24809e-18 -2.14437e-17 1.91232e-13 -1.13823e-16 3.32197e-13 -3.78956e-17 1.39856e-13 -1.0641e-16 -1.37625e-17 1.83436e-16 -2.43961e-13 -1.24975e-16 -1.85088e-17 1.30289e-17 -9.5726e-14 -5.04929e-17 2.70175e-19 -3.96091e-21 2.41375e-17 -7.63063e-14 2.62709e-18 -9.55993e-14 -1.4925e-17 -5.58671e-14 -1.76781e-17 2.16016e-19 9.76176e-18 -4.71585e-14 -1.47859e-17 1.67753e-17 -6.52259e-14 -2.77874e-14 -1.57097e-17 1.84115e-14 8.10334e-15 2.50174e-17 -1.73704e-15 1.2607e-14 7.36032e-17 -1.4787e-16 -7.68592e-18 -7.683e-18 -7.5613e-16 2.14358e-18 7.54418e-19 8.32758e-19 -7.3965e-21 -1.14761e-23 9.952e-21 -6.84121e-18 3.71647e-15 -1.04063e-12 -3.71865e-15 1.7029e-15 -2.07974e-18 -1.58878e-20 -3.71859e-21 -3.93888e-19 1.25815e-15 4.15447e-19 -1.20514e-15 1.17895e-15 -1.06198e-15 3.20762e-16 -1.39684e-15 4.86551e-13 -4.85558e-13 4.85858e-13 -4.88275e-13 -1.3874e-13 -3.84557e-16 -4.34639e-16 3.88799e-18 1.12224e-15 5.736e-16 6.74917e-16 -4.92527e-13 1.2827e-15 -4.89888e-13 1.15784e-16 -3.03194e-18 1.85445e-17 5.2386e-19 4.61063e-16 -1.60913e-18 4.62074e-16 -4.92018e-13 -4.37409e-17 -4.90343e-13 -9.43587e-17 4.89659e-13 2.51215e-16 1.98569e-13 -1.9288e-13 -2.54541e-16 1.08868e-16 -8.54737e-17 -1.02724e-19 -9.21134e-17 2.0939e-16 1.02301e-16 -1.9262e-13 -2.74959e-18 -1.90093e-13 1.27293e-16 -1.53666e-13 -1.95439e-17 4.85306e-14 6.19592e-17 -2.44189e-13 -2.02038e-16 9.62935e-14 9.58814e-14 -9.61104e-14 -9.14846e-17 9.5734e-14 2.25835e-17 2.90959e-19 -2.9591e-17 9.41467e-14 2.54669e-17 -2.31215e-17 -1.59825e-17 5.64686e-14 1.77176e-17 2.23809e-17 -8.23679e-14 -3.04027e-17 4.51287e-20 3.49746e-18 -4.96022e-15 5.33671e-18 -3.25589e-14 -8.35156e-18 -6.06545e-20 5.25212e-15 -1.17557e-12 -1.14025e-12 -8.10437e-16 -1.10532e-12 -6.34363e-15 -6.34664e-15 1.14995e-12 5.87185e-15 -1.09388e-15 -1.24299e-15 3.7474e-18 3.10815e-20 -2.08753e-19 -1.69572e-16 -1.67569e-15 -1.44566e-15 3.55077e-15 -1.07466e-12 -3.55915e-15 -5.7492e-18 -6.00813e-21 3.67894e-21 1.64212e-18 -2.30112e-21 -2.64857e-18 -7.59651e-16 -4.01445e-16 4.89773e-13 -4.84411e-13 9.28171e-16 -4.4611e-13 4.48864e-13 4.47698e-13 3.82209e-16 1.02011e-13 3.44826e-13 2.00729e-15 -9.31203e-13 -4.93422e-13 -7.30272e-16 -1.28099e-15 3.47523e-13 2.3476e-17 2.61032e-18 -2.00016e-16 4.92376e-13 8.83029e-16 -4.50233e-16 1.45755e-18 4.54585e-16 -4.92942e-13 -4.94042e-16 4.89721e-13 -4.9184e-13 1.09585e-16 -1.81138e-18 -6.59478e-17 1.92606e-13 1.95755e-13 -1.94137e-13 1.5814e-13 -1.18769e-17 1.92459e-13 -4.49445e-13 -2.66412e-16 -2.93641e-16 2.98954e-13 -1.12046e-16 1.5398e-13 -2.30466e-13 -1.11942e-16 -3.49208e-17 2.24038e-13 5.8266e-17 -2.42095e-13 3.38317e-13 1.79225e-16 -6.803e-18 -9.56835e-14 -4.68114e-17 9.54189e-14 2.76607e-17 4.27326e-19 -1.36232e-18 9.35458e-14 3.09755e-17 1.10567e-17 -3.9074e-14 9.48999e-14 6.27958e-18 8.24179e-14 2.46831e-17 -7.69518e-18 2.79184e-14 -4.6804e-14 -1.32232e-17 1.41799e-18 2.58482e-15 7.20967e-19 -1.16641e-12 -1.14594e-12 2.28532e-15 5.8706e-17 -2.99973e-15 -5.29437e-15 1.05679e-12 9.12161e-15 -5.92503e-15 1.05486e-12 1.06772e-12 4.81957e-15 1.14205e-17 -3.97774e-16 1.02161e-13 1.08101e-12 -1.03459e-12 -1.70803e-16 -1.07496e-12 -3.53709e-15 -5.67657e-18 -5.88702e-21 3.59801e-24 9.08718e-23 1.51016e-18 -1.18156e-15 4.87522e-13 -4.49309e-13 3.29518e-16 -4.48681e-13 -7.15191e-17 -4.46701e-13 4.81698e-13 1.87235e-15 -6.27261e-16 8.63711e-16 6.72033e-16 -2.76361e-18 -1.72385e-15 -8.86145e-16 -1.30132e-15 3.5286e-18 9.69022e-16 -3.1021e-13 1.35785e-17 -3.48876e-13 3.28999e-16 -3.44774e-13 4.89649e-13 5.13075e-16 -4.5788e-16 4.92223e-13 -4.89487e-13 1.27738e-16 -5.56869e-16 3.59876e-18 2.02853e-16 1.93568e-13 -1.95792e-13 1.951e-13 7.40213e-17 1.40038e-16 -1.99496e-16 3.34678e-13 -1.47947e-16 1.61007e-16 1.54218e-16 1.95586e-16 1.9053e-13 1.9655e-16 -1.43429e-16 9.66255e-17 -1.03757e-13 6.32271e-17 4.9186e-14 -7.44517e-17 1.1356e-13 2.42744e-17 2.06737e-20 -7.06969e-17 9.52868e-14 5.22544e-17 5.19222e-14 2.81666e-17 -5.00325e-17 1.65103e-13 5.39358e-17 -1.54946e-17 5.54945e-14 3.52439e-17 -7.08947e-18 2.62477e-14 5.25885e-18 -8.21479e-15 8.34607e-20 -3.53712e-18 -1.86365e-18 2.34512e-14 6.78304e-18 1.31616e-18 -2.06544e-15 -4.0168e-15 -2.69435e-16 4.81112e-14 5.18886e-14 -1.15539e-12 1.12632e-12 -1.13159e-16 1.08064e-12 2.58456e-15 1.08593e-12 4.8787e-15 9.81462e-18 4.27144e-16 -1.11665e-13 4.96589e-15 -1.0796e-12 -2.03987e-15 -5.09306e-15 -3.16308e-19 2.61003e-20 5.50135e-23 6.00372e-26 6.9228e-24 -2.75682e-21 -1.23737e-18 2.28989e-15 -4.51545e-13 4.78893e-13 1.01091e-17 9.73955e-16 -4.87119e-13 9.50223e-17 -8.00114e-16 4.50682e-13 -4.7987e-13 -8.23247e-16 -6.99961e-19 -4.73714e-19 -1.52613e-15 1.0783e-12 1.5278e-15 2.37985e-18 5.25769e-17 -1.61919e-18 -9.28372e-16 3.51022e-13 -1.04358e-16 6.87891e-16 -1.50677e-18 1.53671e-18 6.23645e-16 -6.05868e-16 -3.93952e-16 1.29957e-18 3.75365e-16 -4.92709e-13 -1.81207e-16 -1.96558e-16 3.17509e-16 -1.95268e-13 -1.3016e-16 1.08949e-16 1.78001e-16 1.84969e-16 -3.35042e-13 -3.46282e-13 -1.91587e-13 2.99196e-17 4.27441e-20 1.3767e-16 -1.52737e-13 -1.77939e-16 -3.01495e-14 1.87127e-16 -2.5968e-13 -1.45973e-16 9.59623e-14 5.70158e-17 -1.76399e-17 5.20384e-14 1.86943e-17 4.67479e-17 -9.50856e-14 -7.50429e-17 1.47505e-13 4.7228e-17 1.55272e-17 -5.58476e-14 -4.72025e-18 -4.67063e-14 -1.3028e-13 -8.21686e-14 -2.43507e-17 1.25285e-19 -1.14086e-17 3.22108e-14 9.54792e-18 2.45877e-15 8.08049e-15 7.35459e-15 -1.15119e-12 -8.55217e-16 -1.11658e-12 -1.12577e-12 -9.83633e-15 -1.99994e-15 1.07639e-12 3.95522e-15 1.06286e-12 -1.0729e-12 -4.85563e-15 -1.06964e-17 8.11401e-18 -4.32742e-15 1.07865e-12 4.15367e-15 -1.04391e-12 1.07262e-12 3.53187e-15 5.66519e-18 5.31519e-21 8.62291e-24 1.36852e-28 -1.05463e-23 6.79046e-21 2.70195e-18 -2.22772e-15 4.86071e-13 1.08076e-15 9.60925e-16 -4.8205e-13 -9.58985e-16 8.54869e-16 -4.80205e-13 -1.85649e-15 2.49448e-19 2.69653e-21 -6.98852e-21 2.73615e-18 1.959e-15 -3.24635e-18 6.1735e-16 -4.93282e-13 -6.19648e-16 5.47178e-16 -4.90881e-13 -5.51547e-16 1.80992e-19 -2.75583e-21 2.38538e-21 5.80151e-19 -4.16808e-16 4.89619e-13 4.21494e-16 -7.28699e-19 -3.91272e-16 1.01802e-18 -8.49284e-19 -1.2806e-16 -1.847e-16 1.19e-16 -1.95634e-13 1.93306e-13 -1.48452e-19 -1.5794e-13 -4.98642e-16 2.97069e-13 -5.00553e-17 -4.53082e-17 -1.90361e-13 -3.00606e-16 1.86559e-13 1.01431e-16 -2.62185e-13 -3.07105e-16 2.42369e-13 1.52589e-16 -9.59247e-14 -3.5231e-17 9.39199e-14 1.91438e-17 -1.53702e-17 5.22133e-14 -1.61967e-17 7.53372e-14 2.35101e-17 -1.5179e-17 5.5195e-14 8.70612e-18 2.58689e-14 -1.29028e-17 6.00048e-16 3.83229e-18 8.50659e-18 -3.69186e-14 -8.5176e-18 4.99716e-15 1.37285e-18 -3.91271e-20 -8.72199e-19 -2.50979e-15 6.63274e-15 -1.12619e-12 -9.89851e-15 -3.95917e-17 -7.29445e-16 2.48374e-15 -1.11546e-15 4.79421e-15 -3.55203e-15 -5.68294e-18 2.09024e-20 -7.72054e-18 3.96049e-15 -1.07344e-12 -3.72068e-15 -3.28138e-15 5.31396e-15 3.02703e-19 -2.31771e-20 8.36654e-19 -3.39845e-21 -6.77937e-24 2.20537e-26 1.79691e-23 -6.58643e-21 -1.14223e-18 1.22674e-15 -1.35306e-18 8.93307e-16 -4.506e-13 -8.92917e-16 -1.74779e-18 -1.04604e-15 -1.01271e-19 7.20756e-21 3.58531e-24 2.60101e-24 9.93804e-21 2.1133e-18 -7.32318e-21 -1.41214e-18 -8.38492e-16 1.45545e-18 -1.49975e-18 -7.59603e-16 1.53584e-18 2.38778e-21 -7.45653e-25 2.48712e-24 -1.48549e-21 1.62946e-18 6.03727e-16 -1.70977e-18 1.5e-16 -1.98949e-13 -1.51526e-16 3.50039e-18 1.95172e-13 1.35301e-16 1.18006e-16 -6.37149e-17 -1.9206e-13 3.85396e-13 1.93223e-13 3.52716e-16 -2.98053e-13 4.8766e-13 3.32311e-13 6.84249e-17 1.03312e-13 1.21418e-13 2.23987e-13 -2.92936e-17 -9.47604e-14 1.91996e-13 9.47585e-14 7.10208e-17 -1.66319e-13 1.89508e-13 9.4331e-14 1.06716e-16 -1.64577e-13 1.12851e-13 2.00971e-14 1.35544e-17 1.01569e-17 -3.85614e-14 9.42208e-14 2.63922e-14 1.03837e-17 -9.6968e-15 5.57255e-14 -8.10326e-15 -9.25486e-18 8.80176e-15 -1.39854e-14 -3.60056e-18 -3.42979e-22 -1.71984e-20 -2.42548e-18 3.43553e-18 -3.02772e-15 7.04853e-18 -5.91031e-15 1.12466e-12 1.08241e-12 1.07266e-12 -1.07273e-12 -3.50061e-15 -1.65621e-17 -7.27968e-20 1.59536e-18 1.44485e-15 1.26178e-13 -1.34531e-13 3.04647e-15 -1.07647e-12 -3.51816e-15 -6.56088e-18 -8.59161e-16 5.46347e-20 1.01964e-20 1.76468e-23 -2.17106e-26 -1.83491e-24 1.24464e-20 3.1683e-18 -1.7907e-20 2.12722e-18 4.60693e-16 -2.15594e-18 -2.47476e-21 5.62764e-20 -3.28698e-21 9.06563e-24 -1.79706e-24 2.22998e-21 -1.22782e-18 -4.62833e-16 1.25354e-18 -1.45151e-21 -7.16919e-19 5.82789e-21 -1.83729e-18 -5.50448e-16 1.866e-18 2.23077e-21 2.62157e-24 -6.46753e-27 2.65697e-24 2.44472e-21 3.70141e-19 -2.40132e-21 5.74682e-20 -7.45951e-17 -2.31869e-16 -1.94098e-13 1.97619e-13 2.50584e-16 -1.93653e-13 -1.22281e-16 -2.73371e-16 1.93531e-13 5.63548e-16 -1.92504e-13 -4.87538e-16 3.3215e-13 4.00888e-16 -1.90189e-13 4.55848e-17 -2.97505e-14 1.49555e-17 6.67781e-14 -2.9079e-17 9.60523e-14 9.1201e-17 -9.46289e-14 -1.16602e-16 9.28637e-14 1.19022e-16 -1.65615e-13 -1.16192e-16 2.08396e-14 4.19749e-17 -1.11091e-13 -3.33111e-17 -2.76294e-17 7.4445e-14 1.91194e-17 2.64958e-14 -8.27044e-19 2.79537e-14 1.42689e-17 -2.32752e-14 -1.62663e-17 3.25374e-14 1.0111e-17 1.3656e-18 -3.07022e-23 -1.35156e-21 -1.5025e-20 -3.92592e-18 1.77573e-20 -2.03116e-17 9.03004e-15 -1.07692e-12 -6.96944e-15 1.08236e-12 -1.07187e-12 -3.10781e-15 -1.93502e-17 5.98997e-15 -1.07796e-12 -5.48171e-15 1.07594e-12 2.92226e-16 1.07218e-12 3.51888e-15 -1.31796e-15 4.56592e-13 2.26472e-15 1.71522e-18 -9.53397e-21 -2.38812e-23 1.93643e-21 -4.38202e-18 -1.73669e-15 8.42631e-19 1.83878e-15 -9.2961e-13 -1.83796e-15 -4.79077e-18 -1.47613e-15 3.11168e-18 7.62436e-21 -1.7631e-22 3.52202e-19 -4.81616e-16 3.47168e-13 4.82431e-16 6.42888e-19 -2.45056e-21 3.11783e-19 -5.40165e-16 4.93322e-13 5.43391e-16 5.9877e-19 -2.21964e-21 2.44389e-24 -9.71852e-23 2.76525e-24 1.64932e-22 -5.74457e-20 1.46622e-16 -1.97141e-13 4.89608e-13 4.72477e-16 -4.88516e-13 -5.37977e-16 3.37624e-13 2.13457e-16 8.65661e-17 -1.56389e-13 -3.83432e-13 -1.92663e-13 -1.00807e-16 1.57758e-16 1.90596e-13 2.77757e-17 -1.50992e-13 -2.71519e-16 2.25787e-13 1.58824e-16 -9.72081e-14 -4.92265e-17 9.47083e-14 4.55216e-17 -9.54436e-14 4.28638e-18 -6.85014e-18 2.1073e-14 3.35729e-17 -9.36648e-14 -6.42377e-17 1.29947e-13 3.86762e-17 1.89768e-17 -7.31263e-14 -2.02074e-14 -4.71767e-14 -1.27935e-17 -3.23428e-18 2.79217e-14 1.18982e-17 -2.79543e-14 -5.58578e-18 1.16908e-14 8.06191e-15 -5.74113e-26 -5.08593e-25 -2.89512e-23 -3.22257e-21 -1.78e-22 2.21622e-20 1.09309e-17 -3.57262e-15 8.74983e-16 9.46904e-14 3.00603e-15 -1.08168e-12 -4.5614e-16 -1.05916e-12 -1.97799e-15 -1.07846e-12 -3.55603e-16 -1.21917e-16 9.48264e-14 3.05917e-16 4.08546e-15 -1.06955e-12 -4.93947e-13 -2.32356e-15 -6.82062e-19 -8.31815e-21 5.10664e-18 -3.38733e-16 9.69809e-13 2.14652e-15 3.78283e-18 -6.8709e-16 9.96355e-20 -1.63443e-15 9.29856e-13 1.63373e-15 1.4036e-18 4.5306e-21 7.80333e-20 6.83261e-16 -4.91926e-13 -6.85662e-16 -4.59573e-16 1.32102e-18 -2.18956e-19 3.7952e-16 -3.43729e-13 -3.83779e-16 -5.36368e-16 1.94232e-18 4.42991e-21 2.64923e-19 -2.15558e-21 3.02458e-24 2.17751e-21 -2.59148e-18 -7.68682e-16 1.9814e-13 -3.32598e-16 4.86112e-13 3.56954e-16 -4.86738e-13 -3.07046e-16 -3.3907e-16 1.89659e-13 -1.33213e-16 -1.55846e-13 8.40021e-17 1.52586e-16 -3.31891e-13 -1.60673e-16 -2.07102e-16 2.62603e-13 1.45405e-16 3.03856e-14 3.56304e-18 9.48717e-14 9.06493e-17 -9.36786e-14 -7.57862e-17 -3.77593e-21 1.15389e-17 -9.33322e-14 -9.11353e-17 1.63674e-13 7.53349e-17 -1.29447e-13 -3.87579e-17 -1.36575e-17 3.8206e-14 3.73496e-19 2.66187e-14 7.90482e-18 6.53065e-18 -2.7544e-14 -7.31741e-18 -6.61135e-18 2.32953e-14 8.64481e-18 -2.56825e-20 -2.86285e-28 3.48972e-27 -4.50764e-25 2.02144e-22 -6.65734e-20 9.75492e-18 9.17418e-16 5.2033e-15 -1.08116e-12 1.41907e-15 -1.08124e-12 -8.6337e-15 -1.6701e-17 2.26536e-15 -1.04453e-12 -7.70488e-15 4.66735e-17 -9.83314e-14 1.07907e-12 4.97545e-15 -4.89032e-13 -8.81675e-15 1.07128e-12 4.91558e-13 1.31268e-15 -9.90048e-19 2.23084e-15 -9.70981e-13 3.97415e-16 -5.39562e-18 1.82825e-15 -9.29099e-13 -1.82739e-15 -1.26562e-18 2.16631e-15 5.5775e-16 -1.22716e-18 -1.78611e-18 -7.42932e-16 4.13165e-19 -9.77467e-16 -4.40275e-16 3.45563e-13 4.42173e-16 5.89231e-19 -3.09948e-18 -1.15995e-15 -4.91202e-16 4.91083e-13 4.98158e-16 -1.73313e-18 -4.98537e-16 2.00151e-18 1.92631e-21 1.40249e-19 -3.61921e-16 4.92468e-13 -5.41758e-13 1.97952e-13 4.08569e-16 3.91597e-13 1.5712e-13 -1.19707e-16 3.88895e-13 2.99536e-13 1.68304e-16 3.5472e-17 -3.32699e-13 -1.44416e-16 -1.03078e-13 -9.12868e-17 -7.83767e-17 1.96048e-13 2.62189e-13 3.08564e-16 -2.60891e-13 1.9115e-13 9.40764e-14 -9.63684e-18 -1.43558e-20 -4.86227e-17 9.50332e-14 -1.1377e-13 9.35799e-14 5.22454e-17 1.12187e-13 5.62816e-14 -7.16148e-18 9.44129e-14 -3.5859e-14 -9.54034e-18 1.91655e-19 1.78287e-14 5.56006e-18 1.79615e-16 -3.70812e-18 6.95227e-18 -3.24169e-14 1.82318e-14 4.4681e-18 1.0228e-26 3.65026e-24 -5.34852e-23 3.18722e-20 -1.65627e-17 6.01477e-15 -1.1497e-12 -4.88803e-15 1.21077e-15 -1.07626e-12 -8.85107e-15 -3.26036e-17 4.20887e-15 -1.06359e-12 -7.91284e-15 -2.5955e-15 1.25703e-13 1.07808e-12 -1.06694e-12 -8.8992e-15 1.06903e-12 4.91976e-13 4.77687e-15 1.49949e-15 -9.19329e-19 1.84626e-20 1.36899e-18 -2.73476e-15 6.25908e-18 -1.3107e-20 2.04616e-18 -3.55762e-16 1.68558e-18 1.62226e-15 5.79419e-16 -3.45003e-13 -5.79387e-16 -7.32021e-16 4.9155e-13 7.29798e-16 -7.25789e-16 7.07384e-16 1.74512e-16 4.66785e-16 -4.52563e-16 -5.32029e-16 4.9258e-13 5.38233e-16 7.75463e-16 -1.56794e-18 -4.37314e-16 4.94252e-13 4.41671e-16 1.92502e-19 -1.50976e-21 1.85223e-18 5.93329e-16 -3.02897e-16 -4.88146e-13 -3.38027e-16 5.28669e-16 -1.93759e-13 -1.19871e-16 2.62031e-16 1.90404e-13 -8.8842e-17 7.13788e-20 -2.87366e-16 4.35109e-14 -2.54424e-16 1.03448e-13 1.24749e-16 5.23241e-17 2.70028e-16 -2.61504e-13 -2.45619e-16 9.5311e-14 8.31127e-17 4.81508e-17 8.04659e-18 9.52709e-14 6.99432e-17 -3.71547e-17 -2.07899e-14 -6.87872e-18 5.01387e-17 -5.57859e-14 -1.63501e-17 -2.65874e-19 9.11719e-14 2.59901e-17 -1.41139e-18 -2.0159e-18 1.86905e-14 1.52675e-17 -4.12249e-14 -1.14936e-17 3.01771e-18 2.18051e-18 4.65762e-19 1.2085e-22 1.89847e-21 -4.00682e-21 6.37152e-19 1.3244e-17 -9.25736e-18 1.51531e-15 -1.07662e-12 -5.43015e-15 -3.85468e-15 -1.28895e-17 3.0055e-18 2.04155e-15 -3.83619e-15 -3.83238e-15 1.0459e-12 -8.99866e-14 1.04576e-12 -1.07834e-12 1.03366e-12 7.82646e-15 2.55464e-15 9.65504e-16 1.02597e-15 1.00535e-15 -3.75148e-18 -1.89668e-15 -3.99008e-18 -1.83399e-15 -1.28285e-18 2.17494e-15 -1.11206e-12 -1.11522e-15 -9.32896e-13 -1.68894e-15 -8.11366e-16 8.649e-19 1.37839e-18 1.06563e-15 -6.788e-16 4.95458e-13 -4.93404e-13 3.48726e-13 -3.46503e-13 3.44697e-13 4.08276e-16 1.27702e-15 -2.17685e-18 4.0485e-16 -1.66101e-18 4.39427e-16 -4.93961e-13 -4.43891e-16 -1.94559e-19 -5.10035e-23 2.24657e-21 1.075e-18 4.92229e-16 -4.92582e-13 -3.35098e-16 1.16326e-16 -1.94247e-13 -1.19144e-16 9.99116e-19 5.58642e-19 3.34677e-13 1.78427e-16 1.4273e-19 -1.15139e-16 3.32112e-13 3.91859e-16 -1.89585e-13 1.89524e-13 -3.11763e-14 -8.62528e-17 -1.12233e-13 7.98686e-18 6.19562e-17 -1.89326e-13 -1.64267e-13 -1.4912e-17 -2.7566e-19 5.03178e-17 -1.65914e-13 -5.10618e-17 1.47735e-17 -5.63004e-14 -1.62161e-17 3.0444e-19 3.99805e-17 -8.2729e-14 -9.33227e-14 -2.4067e-17 -1.81519e-18 1.89851e-14 2.86587e-18 -9.36664e-15 3.23782e-14 1.16095e-14 2.90715e-15 1.69568e-19 -1.58838e-18 -9.64855e-19 2.77549e-16 -4.88837e-14 3.98211e-16 -1.09263e-17 -3.77593e-15 -5.02607e-18 -6.85266e-18 -9.546e-18 4.41585e-15 -1.07628e-12 -4.43627e-15 -1.97003e-17 7.54669e-15 -1.07343e-12 -1.07628e-12 -1.08787e-12 4.87973e-13 -4.86252e-13 -4.52786e-13 -4.52416e-13 -4.86624e-13 -4.84699e-13 -3.45485e-15 9.33647e-13 1.66196e-16 9.32594e-13 3.8896e-15 9.54219e-19 -2.9416e-15 3.48562e-13 -1.68524e-15 2.70313e-18 -9.53183e-19 3.69319e-21 4.94067e-21 1.16229e-18 1.5356e-18 1.03091e-15 -3.81623e-16 -4.93728e-13 -1.28739e-15 -3.02683e-17 8.27682e-16 -3.48197e-13 5.82426e-16 -3.46164e-13 -3.46522e-16 -2.05366e-18 -7.32858e-16 1.91051e-18 1.96402e-21 1.99112e-22 -2.78864e-19 8.82283e-17 -1.96245e-13 -7.10782e-16 1.87484e-18 9.36657e-17 -1.60017e-13 -9.76711e-17 -2.55219e-16 9.97947e-17 -1.90807e-13 -1.01371e-16 -1.41298e-18 -1.75352e-16 3.3493e-16 -1.89981e-13 -1.48074e-16 1.25271e-16 2.19882e-17 -1.13826e-13 -7.18152e-17 -2.4275e-17 3.64648e-18 -9.4345e-14 -1.10177e-16 2.67834e-19 -1.32184e-17 -1.95018e-14 -6.71136e-17 5.92433e-19 1.43766e-17 -5.55966e-14 -1.59204e-17 -2.06454e-18 1.90388e-17 -8.19237e-14 -3.73054e-17 1.53896e-19 2.35796e-18 3.12871e-18 -4.67102e-15 -3.05569e-18 -1.11668e-18 1.15978e-14 2.6202e-18 5.05008e-17 -7.9841e-15 -6.47496e-17 -1.3451e-16 5.42663e-14 -1.07487e-12 -5.8742e-15 -2.69588e-17 -1.53017e-15 4.9778e-18 5.39215e-20 5.10676e-18 -4.00547e-15 -5.06702e-18 2.65223e-19 3.05417e-16 -7.2328e-15 1.06983e-12 1.04085e-12 4.96569e-13 -1.07599e-12 1.03306e-12 1.49587e-15 -1.56166e-15 -1.52551e-15 4.78656e-19 2.82013e-15 -1.87447e-18 4.66092e-15 -9.35558e-13 -3.13558e-15 -3.44018e-13 2.43564e-16 -4.34564e-18 7.39782e-21 -7.65351e-22 5.0343e-24 3.50885e-24 4.35279e-21 -1.97611e-18 -7.7417e-16 -4.37699e-16 3.47124e-13 -1.31629e-16 4.93891e-13 -3.47298e-13 1.0792e-12 -4.92643e-13 -1.08338e-15 1.07773e-18 -1.9253e-21 -5.42626e-19 3.35025e-21 -7.58298e-24 1.49476e-20 -3.89954e-17 5.30537e-14 -2.0042e-16 4.78751e-19 3.94093e-20 -1.145e-16 1.94078e-13 -9.41313e-17 3.87434e-13 1.37704e-16 1.55973e-13 1.92986e-16 -1.56455e-16 3.43916e-13 1.61455e-16 -7.69704e-17 -1.5316e-13 -1.74378e-16 1.34156e-17 1.11731e-17 -1.13606e-13 7.69319e-14 9.4296e-14 -1.88896e-13 -8.85579e-17 -4.7977e-17 9.27237e-14 2.1486e-17 6.62318e-20 -1.53974e-21 1.37903e-17 -5.44864e-14 -2.4383e-17 3.81049e-14 7.56035e-18 1.05317e-14 2.9205e-18 -9.98667e-18 4.66256e-14 1.12324e-17 2.42615e-18 -1.37971e-14 9.03701e-19 2.00413e-18 9.64143e-22 2.92438e-15 6.16061e-18 -6.56326e-15 1.12285e-12 6.77668e-15 -3.61074e-15 4.15503e-22 -6.55283e-15 1.05905e-12 5.10886e-15 1.19947e-17 5.69486e-21 -7.50714e-18 -8.67439e-19 4.62248e-16 -1.27842e-13 -1.26906e-13 9.19696e-15 -1.03506e-12 -4.91411e-13 -4.91655e-13 2.06787e-15 -7.69745e-16 -1.10221e-15 -1.18315e-18 2.55572e-20 4.31571e-18 6.98939e-21 4.68963e-18 -4.5558e-15 9.30493e-13 9.36126e-16 3.73604e-18 -2.54625e-21 1.86922e-23 -4.79186e-25 -4.60022e-25 -2.3711e-22 4.75753e-19 -6.6774e-16 4.94457e-13 6.70037e-16 7.08523e-16 -2.18127e-18 4.49589e-16 4.38728e-17 1.93478e-15 -8.611e-16 1.43522e-18 5.09699e-21 -3.92981e-24 -2.65535e-22 2.60442e-24 6.68413e-26 -1.83209e-22 2.20127e-19 6.97645e-17 -3.67292e-19 2.14629e-21 -8.0022e-19 -5.99379e-17 -1.57215e-13 -9.40713e-17 3.84684e-16 -9.75995e-19 2.35279e-16 -1.8975e-13 -1.52178e-16 1.96512e-16 -7.85491e-17 -2.37941e-20 -2.10868e-16 2.6202e-13 -3.10677e-14 -1.11102e-13 -1.37154e-16 2.04629e-17 1.13549e-16 -9.50355e-14 9.3669e-14 9.27893e-14 6.9502e-17 -3.42416e-19 3.09836e-23 -2.11108e-19 6.51478e-18 -5.5286e-14 -1.48957e-17 9.6781e-18 -1.0004e-19 2.21814e-18 -6.21053e-16 -6.7706e-19 6.94987e-18 -1.91785e-18 -1.42794e-19 -7.22182e-18 3.23066e-14 1.16424e-14 3.1708e-18 1.17592e-12 -1.93161e-14 3.50863e-14 -1.17878e-12 3.97514e-14 2.42255e-16 -6.95516e-15 1.145e-12 9.72403e-15 1.8382e-17 2.1692e-20 -7.66564e-23 -9.40601e-21 1.0449e-20 -6.44589e-18 3.26784e-15 -1.07349e-12 -1.0472e-12 -1.00233e-14 8.87606e-13 -1.01264e-16 -9.14163e-16 3.36982e-13 4.89878e-13 1.29544e-15 1.67021e-18 5.82254e-21 1.98286e-23 -1.70864e-20 -2.36675e-18 2.63984e-15 -3.0004e-18 -3.1465e-21 -1.66093e-23 3.56674e-26 1.00865e-23 1.11873e-21 -7.09321e-24 -3.2973e-21 1.63974e-18 1.08128e-15 -3.18558e-18 -5.33278e-16 1.21624e-15 3.47907e-13 -4.96594e-13 -5.47523e-16 -1.05128e-18 3.77186e-21 -1.0619e-24 -1.33743e-26 -9.64713e-26 1.30536e-27 -2.17518e-27 2.43889e-24 1.27543e-21 1.4266e-19 -9.27784e-20 -9.2129e-19 -2.82941e-16 1.94991e-13 -5.14749e-17 6.97207e-19 1.86672e-19 -6.3814e-22 -7.04463e-19 -2.16439e-16 1.02275e-13 1.53662e-13 1.52887e-13 1.62822e-16 8.78212e-17 1.94449e-16 2.48596e-17 -6.80211e-17 7.68583e-14 7.4976e-14 -1.11298e-13 -1.28736e-17 3.32381e-17 4.08665e-14 1.28222e-17 -4.66307e-21 -3.54256e-19 -2.84778e-17 5.66597e-14 -1.26612e-18 2.06895e-19 6.85293e-22 -2.55103e-23 -2.41773e-21 5.74615e-18 -2.75179e-14 1.89392e-14 -2.75057e-14 -8.28899e-18 -1.00605e-18 3.06856e-18 -5.12324e-19 3.46664e-15 1.92437e-15 -3.13769e-15 2.30281e-12 1.19266e-12 7.27544e-15 -5.83355e-15 1.12204e-12 1.09332e-12 3.75677e-15 1.97538e-15 -4.1989e-18 -3.94811e-20 -1.09586e-22 -2.72812e-23 3.2186e-21 8.97709e-18 -7.6809e-15 1.0735e-12 3.59833e-15 1.77211e-15 4.90209e-13 4.40666e-15 -1.07284e-12 -1.30168e-15 -3.86921e-18 -8.88085e-21 -7.91827e-24 -6.82053e-25 -1.96577e-23 9.70154e-21 3.79192e-18 -1.37346e-20 2.91363e-24 1.89284e-26 -4.98493e-24 -9.62237e-21 -1.70512e-18 9.52862e-21 1.02477e-20 1.70256e-18 1.46218e-18 -4.33641e-16 3.50397e-13 -1.0756e-12 -5.9938e-16 -9.51668e-16 1.94971e-18 2.23679e-21 5.23931e-24 -8.0283e-27 -2.96359e-30 -2.77093e-29 7.25731e-29 -2.70102e-25 7.00064e-22 -9.08189e-19 -1.91816e-16 1.86801e-16 5.08142e-17 1.97907e-13 3.49361e-16 -8.85592e-19 2.45834e-22 5.63978e-23 -2.09634e-24 -9.60469e-22 3.53455e-19 8.91244e-17 1.28846e-16 1.99883e-16 -1.90794e-13 -1.89182e-13 -3.28067e-14 -1.13401e-13 -7.67019e-14 5.89203e-17 3.35664e-18 -1.14245e-17 -2.59678e-13 -1.1156e-16 -4.00984e-18 -3.6457e-17 3.44905e-17 -7.68447e-18 9.29308e-14 4.50541e-17 -2.13208e-19 3.6085e-24 -4.35791e-25 -6.90607e-27 2.08349e-23 -9.89557e-20 -4.36422e-18 2.55589e-18 1.37754e-18 -2.32755e-14 -9.40574e-15 1.39372e-14 3.04801e-18 -1.79587e-20 -1.83168e-17 6.4693e-15 -1.15388e-12 -3.5721e-15 -7.65746e-19 -5.93974e-15 1.1467e-12 1.06748e-12 1.09003e-12 -1.10227e-12 -5.11139e-15 -1.15032e-17 -1.66913e-20 -1.76407e-23 7.77563e-23 -2.87088e-20 -1.08518e-17 4.07546e-15 4.94481e-19 1.46405e-15 -4.89721e-13 -1.45669e-15 -3.74664e-15 2.27611e-18 5.25374e-21 1.2789e-23 7.57086e-24 1.04165e-21 -6.09191e-21 -1.24059e-18 9.72165e-21 -2.98189e-23 -7.76687e-22 1.36233e-23 -8.27629e-21 3.74102e-18 1.75931e-15 -3.83964e-18 -4.57638e-18 -1.88744e-15 6.0301e-18 5.15829e-16 1.52907e-15 -2.22527e-15 4.82445e-18 -9.08937e-19 4.77158e-21 -3.59762e-24 -4.20818e-27 -1.30541e-29 1.08015e-32 -4.48893e-31 2.61629e-27 -1.2988e-23 5.07449e-20 -1.38758e-16 1.99909e-13 -1.99377e-13 -1.96735e-13 1.09729e-16 -7.76793e-19 -1.66134e-21 2.02337e-24 1.19258e-26 -2.15438e-24 -5.87551e-22 -4.30829e-20 7.84995e-20 8.05756e-20 -7.85967e-19 -1.48893e-16 -1.39798e-16 -2.2968e-17 -7.76422e-17 -1.12346e-17 -1.11675e-13 1.11973e-13 9.45085e-14 -9.33319e-14 9.40219e-14 9.37595e-14 1.64279e-13 -1.64099e-13 -9.26602e-14 7.92952e-18 -3.59292e-19 -1.71233e-22 3.98945e-25 3.9135e-29 -3.31041e-25 -2.92545e-24 -7.6074e-22 5.1913e-22 -3.75751e-22 -8.28845e-20 -2.13997e-18 -4.97898e-19 6.40735e-19 -3.96533e-19 -8.52879e-21 -7.0052e-20 4.29422e-17 -4.53108e-15 -3.92433e-17 -1.5528e-17 5.59286e-15 -1.07657e-12 -6.54734e-15 1.047e-12 -1.03155e-12 -4.74328e-15 -1.05978e-17 -1.52597e-20 -1.59368e-23 -3.29754e-26 -1.04189e-22 2.01735e-20 1.10937e-17 -2.50323e-20 7.60008e-19 -1.7998e-15 -6.4302e-19 -6.61077e-18 1.96289e-20 7.15088e-24 1.04896e-23 -4.80645e-21 -1.27845e-18 1.63053e-18 1.08535e-15 -1.69706e-18 -3.20779e-22 1.04689e-18 -3.9225e-21 -1.20143e-18 1.45483e-15 -9.30956e-13 -1.45227e-15 -1.49103e-15 1.07874e-12 1.88378e-15 -3.09851e-13 -4.93851e-13 -6.07614e-16 -3.49754e-19 -7.3317e-22 4.85598e-24 -1.19476e-26 3.95399e-30 4.48437e-33 1.89986e-35 1.48219e-32 -7.12149e-29 2.67615e-25 -6.92541e-22 8.7844e-19 2.71601e-16 -2.64478e-16 -2.48497e-16 1.01424e-18 -4.77893e-22 1.45938e-24 1.05541e-27 1.80534e-24 1.94392e-22 9.08999e-19 1.21351e-16 -1.17875e-16 -8.70064e-17 1.05493e-16 9.81225e-17 7.47769e-17 1.3688e-17 -4.98872e-17 3.15454e-17 -7.01137e-17 6.78855e-17 5.32906e-17 1.29349e-17 4.77891e-17 4.53809e-17 7.3938e-17 -7.15336e-17 -3.62655e-17 3.7012e-19 -2.87804e-23 7.01209e-25 2.24447e-28 3.43908e-25 -2.84933e-23 1.75432e-19 2.58318e-19 3.10027e-19 -4.91945e-19 -9.98335e-19 -3.3325e-18 -1.14826e-18 2.04373e-18 -2.33697e-15 -4.31275e-19 2.73585e-17 9.73181e-15 -2.30921e-12 -1.4159e-14 -7.54022e-17 5.38968e-18 -4.05352e-15 1.3618e-15 4.3016e-14 -3.94156e-15 -5.47674e-18 1.69187e-20 6.66074e-23 1.32352e-25 -7.50966e-23 1.73423e-20 -1.9318e-18 -2.49631e-15 1.96405e-18 1.23949e-20 -3.34481e-18 7.64693e-21 -7.83102e-21 4.27707e-23 1.0228e-23 -1.23059e-20 -1.30257e-21 1.04961e-15 1.00662e-15 -4.85694e-13 -1.00777e-15 -2.67953e-18 -9.53554e-16 6.79888e-19 1.69874e-20 -2.85743e-18 -2.41492e-15 2.99356e-18 3.78332e-18 2.58161e-15 1.19895e-15 3.48828e-13 -6.33562e-16 2.21956e-18 3.25133e-21 1.6903e-24 4.02675e-27 -1.29366e-29 1.99128e-32 -2.56334e-36 8.33659e-38 -4.01261e-34 1.46546e-30 -3.63754e-27 4.14878e-24 2.45396e-21 2.95084e-19 -1.82407e-19 -1.54852e-19 1.26761e-21 -2.60874e-24 1.44021e-27 2.26007e-24 1.16719e-21 -8.40802e-19 -4.37839e-17 -1.90226e-13 1.90381e-13 1.52639e-13 -1.89096e-13 -1.88836e-13 -1.53234e-13 -3.17454e-14 1.13569e-13 -7.69184e-14 1.58548e-17 -4.22536e-17 -1.35934e-18 -2.04737e-13 -3.80371e-17 -3.91777e-19 1.81641e-20 -1.036e-20 -5.58386e-21 1.45563e-22 -7.44268e-25 -3.95703e-29 3.55221e-25 4.96767e-23 -1.78821e-19 7.64722e-18 -4.60869e-14 2.74698e-14 -1.76797e-14 -1.8549e-14 -4.10939e-14 -9.36445e-15 1.38348e-14 1.60907e-14 4.00241e-18 -6.75564e-16 -2.29958e-12 1.41526e-14 -2.24682e-12 -1.19016e-14 -5.76561e-17 8.12002e-15 -1.01899e-12 -4.9366e-15 -2.05048e-17 -4.47535e-21 4.75224e-23 -7.05824e-26 -1.37157e-23 1.07689e-20 9.49622e-18 -3.24893e-15 9.79475e-13 3.24954e-15 5.25057e-18 1.30603e-21 2.4681e-23 -1.10169e-23 8.73904e-24 -5.34918e-21 1.79182e-19 2.09874e-15 -4.4363e-13 -7.02445e-17 -4.4938e-13 1.02153e-16 -8.20254e-16 4.4421e-13 1.77552e-15 3.75547e-20 -2.2009e-20 -3.16857e-18 6.88446e-21 -4.17819e-18 5.89054e-16 -9.32385e-13 -4.28503e-16 -3.34633e-18 3.06874e-21 -4.74179e-24 -8.76058e-27 -3.88497e-30 -1.11276e-32 2.29315e-35 -2.52123e-38 2.39127e-36 -1.40505e-32 6.91908e-29 -2.67124e-25 7.13976e-22 -9.56707e-19 -2.04672e-16 1.52059e-17 2.75699e-20 -1.10019e-21 3.47309e-24 -1.93996e-24 -1.57207e-22 -9.37728e-19 -2.31902e-16 1.90155e-13 -8.79678e-17 1.75967e-16 8.0512e-17 4.3222e-17 -5.2444e-13 -3.32488e-16 -7.59416e-17 7.86131e-17 1.71903e-17 -1.12201e-13 1.11407e-13 1.83693e-13 -9.24742e-14 -9.39595e-14 -5.4478e-17 -2.3022e-17 -1.15421e-17 2.27717e-19 -1.50661e-23 8.36241e-25 1.42385e-25 4.51393e-23 -1.82122e-19 -1.19817e-17 4.60951e-14 1.46437e-18 4.56058e-18 -5.25045e-19 2.10729e-18 -2.33709e-14 -5.33288e-18 2.41709e-18 -7.99541e-20 4.53414e-15 -2.29726e-12 1.13085e-12 -2.2661e-12 4.19504e-14 -2.31282e-12 -1.16184e-15 -2.30844e-12 -1.19105e-12 -5.95841e-15 -1.43897e-17 -2.23115e-20 -2.51016e-23 -6.42618e-23 2.66296e-20 -2.13054e-18 -2.81913e-15 -6.36246e-19 3.92796e-15 2.44876e-18 -1.32232e-20 -3.55191e-23 4.24521e-23 5.57392e-21 1.04961e-21 -1.2762e-18 1.04242e-15 -4.48975e-13 -4.87554e-13 -1.08106e-15 -1.68565e-15 -4.50233e-13 -5.90954e-16 4.47308e-13 -4.47429e-13 -1.8209e-15 -8.86817e-20 -9.79876e-21 2.52431e-18 1.33276e-15 3.46455e-13 -1.75445e-15 4.87434e-18 1.50988e-21 1.34791e-23 -7.07528e-27 6.13329e-30 1.58819e-32 5.59595e-36 2.0487e-38 -6.97614e-39 5.37306e-35 -3.74065e-31 2.27829e-27 -1.16537e-23 4.694e-20 -1.32405e-16 1.96998e-13 -1.35994e-14 -2.00248e-16 1.19647e-18 -1.73109e-21 -3.50824e-22 7.8096e-19 3.03285e-17 1.92467e-13 2.89154e-16 -9.26176e-19 -3.64323e-17 8.62789e-14 -1.57336e-16 -2.44548e-16 -1.36738e-16 1.10639e-13 5.36242e-15 -7.69553e-14 4.63273e-18 2.68278e-17 8.12354e-17 -5.24735e-17 -7.43326e-17 9.36893e-14 9.3215e-14 5.35655e-14 -4.72044e-18 3.98938e-19 8.61076e-24 1.71928e-23 -7.14732e-20 -1.08395e-17 4.62546e-14 2.0871e-17 -1.79515e-19 -1.17896e-17 6.46771e-14 1.46879e-17 -3.30699e-18 -1.1064e-18 1.3897e-14 2.41976e-15 4.67736e-19 -1.16431e-12 -7.57578e-15 -1.11916e-12 -2.24779e-12 -1.12862e-12 -5.42148e-15 5.9112e-14 -4.47073e-15 -6.38022e-18 2.44463e-20 1.00836e-22 1.01571e-23 -9.60948e-21 7.28192e-18 -3.8571e-15 1.07759e-12 3.8587e-15 -2.55261e-15 1.90616e-18 1.98868e-20 5.52607e-23 -2.58269e-20 -5.9195e-18 2.60678e-20 -1.96042e-21 -1.95077e-18 -1.55073e-15 -1.63998e-15 -2.18069e-15 4.84151e-13 4.85671e-13 -4.83888e-13 2.30363e-15 -4.51817e-13 4.83488e-13 2.15482e-15 1.04187e-18 3.21016e-15 -9.32008e-13 -4.54852e-16 -4.93477e-18 1.00133e-20 -1.30801e-23 -1.34529e-27 -3.30687e-29 1.00617e-32 -4.82928e-36 -2.1839e-38 -5.50686e-42 3.43988e-40 -2.32774e-36 1.37614e-32 -6.81468e-29 2.64206e-25 -7.06332e-22 9.29045e-19 2.83794e-16 -1.41318e-16 1.95017e-13 -3.4089e-16 2.46634e-18 -1.85786e-19 7.79363e-17 -1.5698e-13 1.25025e-16 -8.28746e-19 -1.21593e-21 -4.73075e-19 -1.71115e-16 3.31689e-13 -3.28478e-13 1.87473e-13 1.35598e-16 -3.14462e-17 7.83742e-17 -2.59148e-13 1.10617e-13 7.56224e-14 5.45358e-17 -2.07939e-20 4.79065e-17 4.43599e-17 1.40251e-18 9.27792e-14 8.69379e-20 5.53169e-19 -1.01926e-21 -3.95586e-18 1.77641e-14 1.61963e-17 -1.85475e-19 -9.58952e-23 6.96437e-20 6.93183e-18 2.30134e-14 -1.40398e-14 1.38276e-14 3.22352e-14 7.24206e-18 1.81225e-20 -1.13786e-12 -2.29418e-12 -2.29438e-12 -2.29371e-12 -3.41842e-14 -1.12177e-12 -1.1345e-12 -5.87636e-15 -1.4743e-17 -2.38458e-20 -2.80983e-23 -1.05762e-25 4.89516e-23 -1.51487e-20 -3.98741e-18 4.55825e-15 -3.12083e-15 9.47365e-13 3.12383e-15 5.01445e-18 -2.17824e-20 3.97305e-18 4.24906e-15 -4.20325e-18 1.33487e-18 1.17629e-15 -1.24313e-15 9.27373e-17 4.86274e-13 -4.47446e-13 4.45754e-13 -4.8724e-13 -4.85844e-13 -1.93286e-15 4.4765e-13 -6.22927e-13 3.65683e-16 -9.32736e-13 -3.79641e-15 3.65686e-18 -1.62331e-22 2.36526e-23 -2.85216e-26 2.42118e-29 -3.61015e-33 5.75318e-35 -9.25708e-39 1.25754e-42 2.54973e-44 -7.60653e-42 4.33917e-38 -2.06607e-34 7.64636e-31 -1.9144e-27 2.14946e-24 1.53759e-21 2.01891e-19 1.00614e-18 -1.72042e-17 4.85737e-13 2.90667e-16 3.48675e-16 -9.87703e-17 1.95651e-13 1.00093e-16 2.28113e-20 -4.22021e-20 -7.34332e-17 1.89348e-13 3.7298e-16 -1.68684e-16 1.1943e-16 4.13601e-14 7.58871e-14 -1.11994e-13 -2.57805e-16 7.29187e-17 7.06186e-17 -9.14619e-14 1.60126e-18 -3.98457e-19 4.18244e-19 2.30901e-17 1.03632e-17 1.29325e-13 3.21436e-17 7.93025e-18 -1.79906e-17 9.03399e-14 2.00482e-17 2.10663e-21 7.62042e-20 -8.08584e-18 4.56006e-14 1.22018e-17 -3.40688e-18 -2.42358e-18 1.38245e-14 6.9812e-15 1.56721e-18 -1.16552e-12 -1.13531e-12 -1.15502e-12 -1.1501e-12 -2.24769e-12 -1.10504e-12 3.97089e-14 2.34603e-16 6.38185e-19 1.09984e-21 1.3629e-24 8.69201e-26 -5.72691e-23 2.37069e-20 -1.80551e-18 -2.57948e-15 -8.70119e-19 3.95692e-15 2.36887e-18 -7.53246e-21 -5.96136e-18 4.20001e-15 -1.56073e-12 -4.19564e-15 1.06865e-15 -4.50102e-13 4.80482e-13 -4.44185e-13 4.80832e-13 4.78525e-13 4.5001e-13 4.86066e-13 4.8138e-13 -4.48118e-13 1.63397e-15 -1.81296e-15 -1.18631e-18 -2.53131e-15 2.94298e-19 2.24169e-20 -6.12715e-24 1.02471e-26 -6.53042e-29 5.41505e-32 -3.52397e-35 1.46491e-38 -7.69967e-41 4.50435e-45 2.62599e-45 -1.77175e-41 1.0456e-37 -5.16593e-34 1.99391e-30 -5.26821e-27 6.59906e-24 3.16134e-21 3.33766e-19 -3.70213e-20 1.14866e-16 -1.95841e-13 9.06168e-17 -3.91521e-13 -1.19101e-16 -1.93156e-13 -9.7851e-17 1.46333e-18 2.17241e-16 -5.93618e-15 1.73039e-16 7.02662e-17 -1.93736e-13 3.12055e-14 4.49168e-17 5.64538e-17 -6.29535e-17 1.10383e-13 -8.71838e-18 -4.10642e-17 4.04434e-18 -9.15184e-14 -5.36307e-17 2.25538e-17 -9.37204e-14 -1.56831e-17 -3.75267e-14 1.97843e-18 -5.52266e-14 -1.74598e-18 -5.47078e-14 -1.25329e-17 1.12336e-19 3.93331e-18 -1.8665e-14 3.23236e-18 4.4287e-18 -2.76184e-14 -1.3851e-14 -2.53568e-19 -6.77418e-20 1.74976e-15 -1.17185e-12 -1.17284e-12 7.44346e-15 -2.26033e-12 -2.28089e-12 -3.85869e-14 -2.95238e-18 -2.32933e-19 -2.05312e-21 -6.14009e-24 -1.81313e-26 8.46482e-24 -8.19091e-21 6.23394e-18 -3.31695e-15 9.3152e-13 3.3191e-15 1.4123e-17 -6.72791e-21 -1.7706e-20 -4.08653e-18 7.84486e-19 -6.08828e-15 -3.18849e-19 -2.79008e-19 -1.64849e-15 1.72792e-15 -1.56282e-15 4.95553e-16 4.04347e-16 4.88007e-13 -4.85001e-13 -1.36866e-13 1.39226e-13 -4.85725e-13 2.02615e-16 -2.69598e-18 -3.47823e-18 1.17957e-20 1.74045e-23 -6.578e-26 5.18504e-30 -4.2131e-32 1.25133e-34 -7.72538e-38 4.33231e-41 -2.82443e-44 7.20212e-47 9.57849e-44 -7.43846e-40 5.201e-36 -3.18157e-32 1.63307e-28 -6.57994e-25 1.83798e-21 -2.57993e-18 -5.57673e-16 2.50752e-18 -1.1186e-16 1.93654e-13 -7.71502e-17 -4.86351e-16 -7.61833e-17 1.56391e-13 -2.30632e-16 1.29557e-16 -2.96951e-13 -1.38183e-16 8.62956e-19 4.98975e-17 1.07051e-13 6.55718e-17 -1.34358e-18 -9.44932e-17 -1.10883e-13 -2.50559e-17 1.0953e-13 1.09881e-13 -9.28757e-14 -7.0534e-17 9.19346e-14 3.97744e-17 -4.4176e-17 -1.16615e-17 5.47222e-14 3.48943e-18 -1.93359e-17 3.39346e-18 -1.71908e-14 -5.11996e-18 4.81978e-18 -2.74081e-14 -8.88246e-18 -1.90461e-20 3.18875e-18 -1.39942e-14 -3.24298e-18 1.38562e-14 2.48528e-18 7.53521e-21 -2.30415e-12 -4.99327e-14 -2.25162e-12 -1.09422e-12 -1.18105e-12 -2.27532e-12 -1.22347e-14 -3.19651e-17 -5.37973e-20 -6.55979e-23 -6.17245e-26 -7.18983e-26 4.42758e-23 -1.39046e-20 -3.45585e-18 4.08754e-15 3.25004e-18 -2.13994e-20 -4.48673e-18 2.22553e-18 2.7535e-15 -2.36613e-18 -1.20492e-17 3.10849e-20 -2.00968e-21 -4.54449e-18 -1.20447e-15 2.39873e-16 4.48735e-13 1.02176e-13 9.14507e-16 4.8516e-13 -1.41734e-13 4.81283e-13 6.53147e-17 -4.46513e-13 -7.11521e-16 -5.54949e-19 -2.5528e-22 -1.21924e-25 -1.04441e-28 1.21777e-31 -3.76734e-36 9.85037e-38 -1.82705e-40 8.85327e-44 -4.67119e-47 -1.57366e-46 1.47277e-42 -1.28774e-38 1.03563e-34 -7.50347e-31 4.76149e-27 -2.54044e-23 1.06847e-19 -3.14959e-16 4.91052e-13 5.37053e-16 -5.98189e-20 1.55428e-16 1.97578e-13 1.10672e-16 -9.13812e-17 1.9047e-13 3.87193e-13 1.0315e-16 1.90216e-13 8.27046e-17 -1.71278e-16 -1.41158e-13 -3.75619e-13 -1.44032e-16 -2.2131e-16 2.59936e-13 2.29578e-17 7.08532e-14 2.21166e-13 1.36217e-16 -3.24299e-17 -9.1792e-14 -1.50319e-17 -5.50248e-14 -8.92258e-18 1.48027e-19 1.13272e-17 5.46426e-14 1.28237e-17 6.37386e-18 -3.55949e-14 1.92851e-14 9.00352e-19 1.87005e-14 3.69059e-18 -3.67973e-18 2.31704e-14 -3.21627e-18 2.76005e-14 5.70946e-18 -5.58774e-20 -3.74616e-23 -2.4978e-14 -2.27705e-12 -4.62846e-14 -2.27952e-12 -1.62431e-14 5.33402e-14 3.17327e-16 9.09377e-19 1.66359e-21 2.19032e-24 2.21647e-27 1.04327e-28 2.07821e-26 -5.26014e-23 1.58749e-20 8.62233e-18 -3.78255e-20 2.05067e-18 2.91736e-15 2.73199e-15 -9.44764e-13 -2.72607e-15 -3.87141e-18 -4.42843e-21 1.21504e-18 -1.0125e-15 4.45824e-13 -4.41171e-13 6.73714e-16 -4.79279e-13 -6.51291e-17 -4.79264e-13 4.46352e-13 3.39286e-15 1.68039e-15 -1.07857e-12 -1.68331e-15 -1.27775e-18 -6.25113e-22 -2.21769e-25 -6.07809e-29 -1.32355e-32 -2.63934e-36 -3.734e-40 -2.14565e-43 2.09042e-46 -8.68513e-50 1.07678e-47 -9.15546e-44 7.1582e-40 -5.03896e-36 3.10273e-32 -1.60214e-28 6.48384e-25 -1.81041e-21 2.47892e-18 8.74229e-16 -1.95194e-13 9.31353e-17 -1.06746e-16 1.97707e-13 1.08691e-16 -8.90786e-17 1.93205e-13 5.32973e-16 2.34851e-16 -1.89733e-13 -7.81637e-17 3.30921e-13 1.28376e-16 -3.32308e-16 -1.47041e-16 2.5791e-13 2.73879e-16 -7.71647e-14 9.69818e-17 -7.13785e-14 -6.71849e-17 9.41223e-20 -9.13293e-17 1.64538e-13 1.93894e-17 -1.99601e-14 1.69088e-17 -1.15548e-17 5.5025e-14 1.2478e-17 -3.21008e-18 1.82763e-14 9.31219e-18 7.35312e-18 -2.82217e-14 -5.6596e-18 1.39262e-19 7.29673e-18 -2.75823e-14 -2.50961e-18 -1.1547e-19 -2.25192e-23 1.12286e-25 3.88986e-16 -1.13774e-12 -1.30988e-14 -2.12033e-14 -2.19063e-12 -1.20482e-14 -3.30642e-17 -6.01246e-20 -8.14518e-23 -8.74316e-26 -6.75222e-29 -8.59855e-27 5.80735e-24 -2.40772e-21 1.56752e-19 2.82953e-16 -5.22437e-18 3.06635e-15 -9.78865e-13 -3.06172e-15 -3.98173e-15 -2.49353e-15 2.25567e-18 1.54845e-20 -4.61675e-21 -6.92554e-19 2.72039e-15 -4.8901e-13 3.37516e-13 -9.6618e-16 8.9013e-16 -4.81354e-13 1.33526e-15 -4.48051e-13 -7.65337e-16 -3.25952e-15 4.01161e-18 1.00257e-20 8.3473e-24 4.19149e-27 1.48991e-30 4.048e-34 8.76542e-38 1.59826e-41 2.36291e-45 5.21375e-49 -1.51262e-52 -2.06742e-49 1.55442e-45 -1.05022e-41 6.18774e-38 -3.04088e-34 1.15835e-30 -2.95424e-27 3.14632e-24 3.68966e-21 -6.27325e-19 -1.77908e-16 -1.98006e-13 -2.22623e-16 1.97562e-13 1.07454e-16 9.0256e-17 -1.9293e-13 -8.78863e-18 -1.93618e-13 -5.27316e-13 -1.9074e-13 3.17797e-16 -1.93755e-13 -8.8303e-17 1.11214e-13 1.64004e-16 7.40633e-14 5.42192e-17 -1.13016e-13 -1.60614e-16 1.11723e-13 7.39142e-17 3.90433e-17 -1.6284e-13 -4.34304e-17 9.97652e-18 -9.13058e-14 -3.26911e-17 5.51402e-14 1.22295e-17 9.49392e-18 -5.47233e-14 -3.20669e-18 -4.56697e-14 -1.67011e-17 9.92097e-15 1.88289e-18 -1.16821e-19 -3.13916e-18 1.16792e-19 1.15435e-23 2.40471e-25 4.45453e-29 -1.86799e-17 -2.65259e-14 -2.77072e-16 -7.89334e-17 -1.23427e-14 -3.4828e-17 -4.78707e-21 1.48158e-22 3.96462e-25 6.127e-28 6.87097e-28 -8.01292e-25 7.84505e-22 -6.0347e-19 3.23727e-16 -9.1563e-14 -3.2369e-16 1.62192e-18 -4.31599e-15 1.45854e-18 -2.30957e-15 8.31589e-13 2.29712e-15 3.08837e-18 2.66017e-21 1.49238e-20 3.1553e-18 -2.5102e-15 3.39798e-13 7.01039e-16 8.81894e-16 -4.79605e-13 -2.86339e-16 -3.51353e-13 -5.88128e-16 -5.46053e-18 1.9693e-20 -2.27167e-24 -2.87325e-26 -2.69369e-29 -1.39264e-32 -4.95913e-36 -1.33349e-39 -2.845e-43 -5.02231e-47 -7.34375e-51 -3.93592e-52 3.65408e-48 -3.1815e-44 2.54978e-40 -1.84225e-36 1.16614e-32 -6.20342e-29 2.59489e-25 -7.54113e-22 1.10545e-18 2.39493e-16 1.11844e-16 -1.9833e-13 -6.35135e-16 1.93416e-13 1.03873e-16 -7.30782e-17 1.53899e-13 -1.61702e-17 -1.89631e-13 -7.23261e-16 1.88399e-13 -8.41868e-17 -3.91585e-16 -3.66066e-14 9.46905e-17 1.1178e-13 1.70224e-16 -1.10296e-13 -9.50505e-17 1.10374e-13 8.83281e-17 -1.09834e-13 -3.75618e-17 -5.51842e-14 -2.77375e-17 1.87309e-17 -9.01636e-14 -5.19471e-17 5.49302e-14 1.19892e-17 -1.27953e-17 7.29203e-14 9.41827e-18 -1.13091e-17 2.47881e-19 1.98405e-18 -4.39577e-20 -2.32279e-23 3.09825e-22 1.20499e-23 -2.46113e-25 -2.62826e-29 -3.33726e-31 -5.81159e-19 -1.00349e-16 -1.86852e-18 -2.04009e-19 -3.56012e-17 -1.87943e-21 2.62596e-22 5.08336e-25 1.76448e-28 -8.36478e-31 -9.09562e-30 7.70355e-27 -4.71344e-24 1.46807e-21 3.5977e-19 -4.18587e-16 -3.63016e-19 2.25813e-18 3.3854e-15 -2.37701e-18 -6.59359e-19 3.53388e-15 3.66373e-19 -1.22118e-20 -2.15389e-23 3.74054e-23 -1.0755e-20 -2.71975e-18 1.24416e-15 -1.54289e-18 8.18957e-16 -4.49709e-13 -8.17943e-16 -1.14585e-15 1.22629e-18 -1.51018e-21 3.7701e-23 -5.68253e-26 -2.03464e-29 5.2072e-32 5.72647e-35 3.06148e-38 1.09254e-41 2.90644e-45 6.09913e-49 1.05512e-52 -4.51218e-51 4.59895e-47 -4.43813e-43 4.00604e-39 -3.32969e-35 2.49646e-31 -1.64161e-27 9.08998e-24 -3.97432e-20 1.22019e-16 -1.97957e-13 5.03058e-17 -1.9906e-13 3.91293e-13 1.97264e-13 2.99678e-16 -6.20177e-17 1.36645e-13 2.01004e-13 -1.91411e-13 1.44286e-16 1.03758e-13 2.25011e-13 3.30647e-13 1.87759e-16 -7.92606e-14 1.51283e-13 -7.53366e-14 -3.98212e-17 -1.09959e-13 1.84686e-13 1.09777e-13 -7.6629e-18 5.22551e-14 1.86043e-13 5.25248e-14 4.90292e-17 -5.44484e-14 9.29084e-14 7.30061e-14 9.08171e-18 3.5058e-18 -1.7978e-14 5.52929e-14 1.04572e-17 1.02326e-21 1.11311e-23 -8.34767e-24 9.78688e-26 5.01491e-26 -1.45709e-27 -2.28253e-29 3.4557e-31 3.94495e-35 -2.33785e-17 -6.49094e-16 -1.81993e-15 -4.46534e-17 -3.25674e-19 -4.94272e-22 -6.0911e-25 -1.73218e-27 -3.63743e-30 1.01265e-31 -1.14856e-28 1.03257e-25 -7.01148e-23 2.93788e-20 -2.11368e-18 -3.4116e-15 -3.39069e-18 3.33311e-15 -1.0761e-12 -3.32853e-15 -7.79402e-18 -3.39142e-15 4.6117e-19 2.53999e-20 8.12817e-23 -5.50407e-26 5.83361e-24 2.63781e-20 6.31258e-18 5.47003e-19 3.78484e-16 -1.56092e-15 1.37716e-18 -1.88694e-18 7.18706e-21 -3.71183e-24 2.68783e-26 -1.28449e-28 1.02227e-31 7.61663e-35 -6.52141e-38 -9.01604e-41 -5.01093e-44 -1.79327e-47 -4.71932e-51 -1.01052e-54 3.66437e-52 -3.44026e-48 3.01988e-44 -2.43992e-40 1.77716e-36 -1.134e-32 6.07957e-29 -2.56111e-25 7.47871e-22 -1.09011e-18 -2.91199e-16 -5.35098e-14 -4.09019e-16 1.58082e-13 4.52621e-16 -1.97074e-13 -9.75693e-17 8.73357e-17 1.9229e-13 3.20371e-16 -3.31732e-13 -9.70726e-17 1.885e-13 4.02247e-16 -1.12149e-13 -9.54353e-17 4.07024e-14 -6.91708e-17 -7.52397e-14 -1.68416e-16 1.09887e-13 8.27803e-17 -1.09329e-13 4.91329e-17 -5.50309e-14 3.24261e-17 -9.20945e-14 -3.95612e-17 -3.43993e-14 1.59712e-17 3.60601e-14 6.99143e-18 -5.43809e-18 1.61893e-17 -2.55885e-19 -4.69493e-23 -2.90065e-26 3.69311e-29 1.77361e-29 -1.40375e-30 -1.98553e-31 3.36402e-33 2.8394e-35 -3.6357e-37 -1.33573e-16 1.1287e-12 -2.28025e-12 -1.76685e-14 -4.74227e-17 -8.12214e-20 -1.08761e-22 -1.14498e-25 -9.73642e-29 5.8155e-30 -7.86847e-27 9.20392e-24 -9.03948e-21 6.9867e-18 -3.77751e-15 1.07804e-12 3.78345e-15 -2.87249e-15 9.29318e-13 2.88197e-15 -2.94052e-15 1.07569e-12 4.48798e-15 7.7929e-18 -2.89868e-20 -3.45572e-23 -5.94171e-21 -7.98118e-18 -2.70147e-15 2.61515e-16 -1.36389e-13 -2.59415e-16 -2.24866e-19 -2.23544e-21 1.35474e-23 -2.38258e-26 1.8397e-29 -1.1646e-31 2.8781e-34 -1.23175e-37 -1.56008e-40 5.61043e-44 1.12029e-46 6.51471e-50 2.33982e-53 4.37585e-57 1.61451e-53 -1.41684e-49 1.13921e-45 -8.18785e-42 5.06593e-38 -2.52429e-34 8.63678e-31 -7.19053e-28 -1.29177e-23 8.81745e-20 -2.82795e-16 4.92693e-13 3.93463e-16 -1.98152e-13 -1.8456e-16 1.60483e-13 8.02204e-17 1.89662e-17 -4.48238e-14 -3.81554e-13 -1.90637e-13 -7.45832e-17 1.79525e-16 4.12563e-14 -7.89229e-17 -4.20642e-14 -6.68538e-17 7.56169e-14 3.13042e-18 7.4449e-14 8.97685e-17 1.09299e-13 -4.93613e-17 -9.21539e-14 -5.38811e-17 -3.74938e-18 1.78196e-14 1.46077e-17 -5.55676e-14 -3.45434e-17 1.41785e-17 -1.70768e-19 -5.00407e-22 1.26819e-21 -7.20296e-23 5.8825e-25 1.03768e-28 1.1969e-31 -2.76266e-34 -4.24983e-34 7.83188e-36 3.87255e-37 -5.09492e-39 -2.60169e-41 1.27796e-14 1.13365e-12 1.14889e-12 9.47895e-15 2.72253e-17 4.37378e-20 5.71353e-23 5.99096e-26 5.11599e-29 -5.88219e-32 1.01646e-28 -8.81887e-26 5.55681e-23 -1.8215e-20 -3.95021e-18 5.1629e-15 -5.4897e-18 1.80552e-15 -1.0729e-12 -3.30928e-15 2.94028e-15 -4.82989e-13 -4.90726e-13 -4.58126e-15 1.76961e-18 1.11743e-21 5.67108e-18 8.97019e-16 9.29815e-13 1.90295e-15 -4.93821e-16 4.02775e-19 1.62826e-21 -1.11212e-25 1.70913e-26 -4.90656e-29 5.79305e-32 -7.2686e-35 3.01693e-37 -4.76731e-40 9.24865e-44 2.29722e-46 -2.64007e-50 -1.14294e-52 -7.00833e-56 -7.10515e-56 7.23809e-52 -6.98767e-48 6.31221e-44 -5.25267e-40 3.94426e-36 -2.59771e-32 1.4396e-28 -6.28306e-25 1.90986e-21 -2.95343e-18 -5.15988e-16 -1.98226e-13 -4.43434e-16 1.61725e-13 -2.47749e-16 -1.91475e-13 -9.61825e-17 -4.4834e-16 1.9193e-13 -3.46518e-16 -4.35906e-14 1.32884e-16 6.20433e-17 -1.87203e-13 -6.67882e-17 -7.3067e-17 1.10674e-13 6.61864e-17 -1.09968e-13 6.85241e-17 -3.67994e-14 9.86216e-17 7.26566e-14 -3.8378e-17 3.69272e-19 -2.07712e-18 -1.74541e-14 -4.86548e-18 -4.44681e-17 1.09754e-13 2.1727e-17 2.02102e-21 5.62073e-25 -9.46991e-26 -5.00528e-27 1.60088e-28 -9.00728e-31 -1.51622e-34 -2.5982e-37 -3.73186e-40 1.6706e-39 -2.10322e-41 -4.93778e-43 5.70566e-45 2.28142e-12 2.48111e-14 1.14374e-12 9.96921e-15 3.12534e-17 4.65944e-20 5.76718e-23 5.85341e-26 4.89675e-29 3.55782e-32 -1.0855e-30 6.00096e-28 -1.33916e-25 -7.70377e-23 3.72374e-20 2.23446e-17 1.95736e-16 4.51704e-13 1.07491e-12 4.70454e-15 -4.90771e-13 -8.39136e-15 4.84208e-13 1.0367e-12 2.59504e-15 9.15554e-19 1.99379e-15 -9.35182e-13 1.59743e-15 -4.32635e-18 -9.26329e-19 3.17638e-21 8.72006e-25 -5.90521e-27 8.14703e-30 -6.52793e-32 1.20312e-34 -1.18147e-37 1.96296e-40 -5.61727e-43 6.21937e-46 -1.42972e-50 -2.66647e-52 -9.97193e-57 1.58238e-58 -6.85001e-55 7.55768e-51 -7.9802e-47 7.98482e-43 -7.47915e-39 6.45692e-35 -5.03367e-31 3.44534e-27 -1.98781e-23 9.0643e-20 -2.90436e-16 4.93446e-13 -4.00882e-13 1.99205e-13 1.58189e-16 3.92237e-13 1.9583e-13 -7.07249e-17 3.85082e-13 1.92382e-13 7.98568e-17 1.90054e-17 -1.88757e-13 -1.03413e-16 1.03745e-15 7.91362e-17 -6.41828e-17 2.20091e-13 1.09821e-13 2.34021e-17 -7.3235e-14 2.90427e-13 -1.09307e-13 1.87383e-17 -4.97319e-19 -1.02996e-17 1.82113e-14 -1.09887e-13 -2.34486e-17 5.3614e-19 4.71388e-17 -5.4435e-19 -1.04679e-22 -9.59992e-27 -2.18453e-29 5.11022e-31 9.73528e-33 -2.36579e-34 1.03269e-36 1.65914e-40 2.49553e-42 -1.50653e-44 -3.33504e-45 3.56784e-47 4.61312e-49 1.1368e-12 1.14411e-12 1.18955e-12 1.08996e-14 3.80981e-17 5.3788e-20 6.32126e-23 6.19193e-26 5.06679e-29 1.42886e-31 -1.19114e-28 1.08813e-25 -7.59473e-23 3.41358e-20 -5.05146e-18 -2.00865e-15 -4.9474e-13 3.47849e-13 -4.82062e-13 -6.05781e-15 4.81976e-13 1.07542e-12 5.0655e-15 4.49402e-15 -3.33906e-18 3.1161e-20 3.2228e-18 -3.7305e-15 9.04746e-18 -1.05932e-20 -1.12301e-21 6.97253e-24 -9.37117e-27 -8.72383e-30 1.75765e-32 -4.18132e-35 1.66189e-37 -2.25821e-40 2.11027e-43 -3.88204e-46 8.16978e-49 -6.64541e-52 -7.76489e-56 2.55774e-58 -6.0534e-60 6.53661e-56 -6.7145e-52 6.53547e-48 -5.95341e-44 4.99659e-40 -3.78454e-36 2.51404e-32 -1.40472e-28 6.17388e-25 -1.8826e-21 2.86505e-18 8.32468e-16 -5.51602e-16 -1.94976e-13 -1.06473e-16 6.64857e-16 -1.95046e-13 -9.37776e-17 5.41049e-16 -1.00655e-13 1.27886e-16 2.9035e-16 -2.23393e-16 4.03693e-14 2.14931e-17 -1.11913e-13 1.32474e-17 1.4939e-16 5.65288e-17 -1.09734e-13 -5.47372e-17 1.09528e-13 -4.88532e-17 4.78037e-17 3.2272e-17 1.83487e-14 1.41484e-17 -5.86432e-17 5.64611e-19 3.6343e-22 7.74976e-21 -2.29309e-22 1.34169e-24 2.51555e-28 2.20006e-32 9.25787e-35 -1.31699e-36 -1.23004e-38 2.61241e-40 -9.45095e-43 -1.03443e-46 -9.48472e-48 6.94291e-50 4.363e-51 -4.35019e-53 2.28114e-12 1.16613e-12 1.66974e-14 9.021e-17 1.767e-19 -3.70463e-23 -3.47057e-25 -6.03044e-28 -6.93297e-31 5.63159e-30 -7.58072e-27 8.92882e-24 -8.83535e-21 6.88514e-18 -3.75604e-15 1.0826e-12 -3.4351e-13 5.04877e-13 -1.07639e-12 9.22586e-13 6.67109e-15 6.57438e-15 1.15389e-15 1.63016e-15 1.58471e-15 -5.48974e-18 -3.07621e-15 -8.46899e-18 7.10772e-20 -2.14306e-23 -1.05656e-24 9.1693e-27 -2.58105e-29 1.54549e-32 3.08891e-35 -4.59893e-38 1.22218e-40 -3.17579e-43 3.47004e-46 -3.30088e-49 5.99733e-52 -9.74043e-55 5.96758e-58 1.45228e-61 3.87595e-61 -3.89258e-57 3.70353e-53 -3.29813e-49 2.70579e-45 -2.00274e-41 1.29927e-37 -7.07913e-34 3.02283e-30 -8.86127e-27 1.23334e-23 6.57773e-21 2.09805e-18 3.60972e-16 -1.99713e-13 -1.06119e-16 8.94344e-17 -1.9449e-13 -9.19232e-17 -9.10728e-20 -5.34636e-17 -1.88973e-13 -3.42309e-13 -1.30761e-16 2.96804e-17 3.99718e-14 1.0581e-16 -7.49951e-14 7.44572e-14 1.09735e-13 3.09605e-17 -1.09869e-13 5.19493e-17 2.36589e-17 -1.08842e-13 -9.19435e-14 -9.99489e-18 -9.51181e-20 -1.319e-20 2.97515e-22 -1.39717e-24 4.22316e-25 -3.63123e-26 5.56125e-28 -2.20134e-30 -4.01772e-34 -3.37927e-38 -1.99191e-40 2.1986e-42 1.12233e-44 -2.29875e-46 7.10568e-49 2.5659e-53 1.9308e-53 -1.50264e-55 -4.17941e-57 1.16102e-12 1.1527e-12 1.38833e-14 7.85629e-17 2.4617e-19 2.75713e-22 2.42766e-25 1.79442e-28 1.15596e-31 -9.32398e-32 9.94028e-29 -8.498e-26 5.08047e-23 -1.20338e-20 -9.97937e-18 8.89798e-15 -1.03981e-12 -1.07846e-12 -1.04917e-12 1.07525e-12 -4.81317e-13 -4.89732e-13 -3.40505e-13 -4.85272e-13 -4.84326e-13 -3.26905e-15 9.65092e-13 5.086e-15 -1.74998e-18 -1.30868e-20 -1.58103e-23 -1.09101e-26 -5.29297e-30 -1.85884e-33 -5.69907e-37 -2.08072e-40 7.53476e-44 -2.58603e-46 4.85582e-49 -4.54746e-52 4.48999e-55 -7.5732e-58 9.82494e-61 -6.19279e-64 1.83579e-60 -2.02182e-56 2.13353e-52 -2.13554e-48 2.00279e-44 -1.73275e-40 1.35489e-36 -9.30765e-33 5.38993e-29 -2.46345e-25 7.86807e-22 -1.29165e-18 -1.65065e-16 -2.00371e-13 -4.31868e-16 1.1494e-18 8.86266e-17 -1.96512e-13 -9.38745e-17 -3.89814e-16 7.11613e-17 -1.89992e-13 -4.74956e-16 6.48228e-19 -1.79919e-16 1.20091e-16 -2.56866e-13 -1.01036e-16 6.83373e-17 1.22635e-16 -1.10039e-13 -7.83213e-17 -9.01333e-17 3.14434e-17 -1.45325e-13 -9.25963e-17 4.90755e-19 5.40162e-23 -1.20127e-24 6.52758e-26 -7.49746e-28 -3.98969e-29 -1.71042e-30 8.45652e-32 -8.96102e-34 2.70364e-36 4.79988e-40 4.02944e-44 2.83459e-46 -2.69226e-48 -7.74015e-51 1.67437e-52 -4.29918e-55 -1.08958e-58 -2.59241e-59 2.09759e-61 1.13478e-12 8.13655e-15 -5.63718e-17 -6.04676e-19 -2.77818e-21 -4.46587e-24 -5.02218e-27 -4.42178e-30 -3.31354e-33 1.07101e-31 -1.1799e-28 1.07157e-25 -7.34875e-23 3.10049e-20 -2.06694e-18 -3.81363e-15 -8.59069e-15 4.86741e-13 3.41269e-13 4.97027e-13 -1.03313e-12 1.06651e-12 1.31255e-15 -2.17695e-15 -2.12241e-15 1.13032e-15 6.02534e-15 -9.3237e-13 -1.94958e-15 -1.98075e-18 -1.29488e-21 -6.12604e-25 -2.23712e-28 -6.56807e-32 -1.59426e-35 -3.26491e-39 -5.72791e-43 -8.74019e-47 -1.12191e-50 -1.99139e-54 3.77682e-58 -5.44175e-61 8.05583e-64 -1.24042e-63 1.50474e-59 -1.77754e-55 2.0289e-51 -2.21916e-47 2.30313e-43 -2.24083e-39 2.01261e-35 -1.63493e-31 1.16796e-27 -7.04496e-24 3.36452e-20 -1.13143e-16 2.01346e-13 -2.22863e-16 1.00104e-18 -1.62203e-20 8.69137e-17 -1.95319e-13 -2.46287e-16 3.86991e-13 9.08456e-17 1.91448e-13 2.42271e-16 -7.3995e-17 2.25014e-13 7.55328e-17 -2.34864e-16 -7.51669e-14 -6.96435e-17 4.37997e-17 -1.33675e-17 -7.3462e-14 1.78781e-13 8.40452e-17 -1.09182e-13 -2.39566e-17 -2.21363e-21 -1.50748e-24 -1.94914e-28 6.40639e-30 -1.61079e-31 -6.59904e-33 2.31347e-34 3.31394e-36 -1.30387e-37 1.0781e-39 -2.6506e-42 -4.56703e-46 -4.04176e-50 -2.98496e-52 2.58996e-54 4.0429e-57 -1.0347e-58 1.83581e-61 3.99487e-64 2.55272e-65 -3.98045e-15 -6.30478e-17 -4.45426e-19 -1.54393e-21 6.38823e-25 1.46858e-26 2.98246e-29 3.69205e-32 -3.54995e-33 5.39156e-30 -7.29982e-27 8.64989e-24 -8.61201e-21 6.75385e-18 -3.70835e-15 1.07534e-12 5.01231e-13 3.79098e-15 -3.08317e-13 4.55774e-13 -1.07782e-12 2.07591e-15 -1.73652e-15 -1.56274e-15 7.68988e-16 -3.39489e-13 -7.63514e-16 -3.8993e-15 2.28971e-18 1.30458e-20 1.55787e-23 1.07278e-26 5.15243e-30 1.87802e-33 5.45221e-37 1.3011e-40 2.60971e-44 4.47351e-48 6.64296e-52 8.56571e-56 1.05516e-59 4.7251e-64 6.26622e-67 1.45016e-64 -1.66568e-60 1.84917e-56 -1.96749e-52 1.98623e-48 -1.8792e-44 1.64048e-40 -1.29442e-36 8.97259e-33 -5.24052e-29 2.41227e-25 -7.72342e-22 1.2408e-18 3.5691e-16 -1.53319e-18 3.64827e-21 -1.08489e-18 -1.47582e-16 -1.90146e-13 -8.24254e-17 5.23797e-16 -1.21566e-18 3.04769e-16 -1.88336e-13 -3.28237e-17 9.91846e-17 8.47587e-17 -1.2518e-18 -9.21591e-17 7.27261e-14 -7.17953e-14 -1.07572e-13 -1.45308e-16 1.46208e-16 -3.7153e-14 -8.4418e-17 6.05029e-19 1.32108e-22 1.29304e-26 3.3324e-30 4.36208e-34 -1.54303e-35 -1.69226e-38 3.55654e-38 -6.28089e-40 -3.99997e-42 1.49383e-43 -1.03296e-45 2.16019e-48 3.60296e-52 3.56612e-56 2.47133e-58 -2.04279e-60 -1.55338e-63 5.55343e-65 -1.88747e-68 -7.0173e-70 -2.16397e-18 -2.48193e-19 -1.66935e-22 2.57406e-24 1.696e-26 1.20761e-29 -4.6797e-32 -1.2509e-34 7.53212e-35 -9.45328e-32 1.01393e-28 -8.7486e-26 5.32033e-23 -1.36629e-20 -9.27587e-18 8.68117e-15 -9.3089e-13 3.41719e-13 -1.77805e-15 4.55106e-13 -5.20181e-15 -1.23338e-15 4.88425e-13 4.48649e-13 1.09887e-15 -1.4956e-15 5.98236e-19 -8.25781e-18 2.6847e-20 1.38038e-23 -3.86168e-26 -5.95343e-29 -4.37918e-32 -2.14274e-35 -7.80246e-39 -2.24002e-42 -5.25435e-46 -1.03196e-49 -1.7276e-53 -2.49938e-57 -3.15025e-61 -3.57775e-65 -1.69435e-69 -1.44985e-65 1.57854e-61 -1.64817e-57 1.63357e-53 -1.51783e-49 1.30134e-45 -1.00831e-41 6.86006e-38 -3.9277e-34 1.7665e-30 -5.47144e-27 8.09897e-24 4.50037e-21 5.2639e-19 -4.93947e-19 -1.29719e-18 -3.35399e-16 1.9427e-13 -1.90638e-16 1.20502e-18 3.49046e-19 -1.3538e-21 -9.94504e-19 -2.14947e-16 -4.05589e-14 1.84608e-13 -1.09067e-13 4.91275e-17 7.67155e-17 -7.3305e-18 -8.71545e-17 -4.78526e-17 1.07707e-13 2.61458e-17 -2.81917e-17 1.89119e-19 4.69201e-22 -1.67272e-24 -3.59106e-28 -3.49895e-32 -5.65821e-36 -6.10136e-40 5.84538e-41 6.60265e-43 -8.4954e-44 1.10399e-45 3.18355e-48 -1.35683e-49 8.21566e-52 -1.50497e-54 -2.42355e-58 -2.81589e-62 -1.67026e-64 1.35878e-66 4.47674e-70 -2.69932e-71 -5.64901e-74 3.59301e-23 -6.6551e-22 6.18157e-26 5.5816e-27 6.52802e-31 -7.48067e-32 -9.88211e-35 8.05724e-38 -6.15268e-37 5.85172e-34 -4.13223e-31 1.47564e-28 7.601e-26 -1.31267e-22 4.57194e-20 2.02463e-17 -6.41812e-15 4.94452e-13 1.5483e-15 1.33094e-15 3.4703e-13 2.17615e-15 -4.78245e-13 8.52756e-16 -1.96875e-18 -3.3541e-18 1.02035e-20 -1.17546e-20 6.91193e-23 -8.13514e-26 -1.00849e-28 5.83418e-32 1.46609e-34 1.17393e-37 5.87469e-41 2.13904e-44 6.07361e-48 1.40032e-51 2.69269e-55 4.40137e-59 6.20343e-63 7.61718e-67 8.47268e-69 -1.01677e-64 1.20059e-60 -1.37144e-56 1.50293e-52 -1.56435e-48 1.52766e-44 -1.37799e-40 1.1248e-36 -8.07649e-33 4.89441e-29 -2.34317e-25 7.83758e-22 -1.33629e-18 -2.87116e-16 6.80928e-16 -2.60595e-17 1.97951e-13 3.97341e-16 -1.41073e-18 1.25669e-21 1.46907e-22 -4.73768e-24 -1.34344e-21 -3.85501e-19 -4.74634e-17 2.0875e-16 -8.87225e-17 -1.10387e-13 -1.09592e-13 1.10264e-13 3.9322e-14 -1.11279e-13 5.9905e-17 -6.28115e-19 -9.89053e-21 1.56735e-22 -4.74601e-25 -1.29945e-27 3.07571e-30 6.46653e-34 6.18913e-38 7.64379e-42 4.28568e-45 -2.15627e-46 -1.1371e-48 1.31018e-49 -1.42448e-51 -1.50738e-54 1.019e-55 -5.57735e-58 9.14776e-61 1.41869e-64 1.99082e-68 9.45693e-71 -7.78406e-73 -1.79989e-76 1.28924e-77 -8.34079e-24 -1.40003e-24 4.2317e-28 4.16227e-30 -2.9276e-32 -4.38193e-35 2.27669e-37 4.33494e-40 2.17934e-39 -1.10259e-36 -1.27721e-34 8.13446e-31 -5.93233e-28 -3.13138e-26 2.24134e-22 -1.11274e-20 -1.4111e-17 2.57989e-15 -3.27294e-18 2.9794e-15 -1.07239e-12 -2.96638e-15 -2.30335e-15 1.77213e-15 -1.82439e-18 -1.44724e-20 1.57879e-23 -1.26894e-23 1.07158e-25 -2.80186e-28 1.23695e-31 3.25843e-34 -1.25296e-38 -2.59472e-40 -2.32352e-43 -1.1945e-46 -4.35325e-50 -1.22274e-53 -2.77089e-57 -5.21601e-61 -8.32311e-65 -1.14332e-68 5.51312e-68 -7.07398e-64 8.89738e-60 -1.09035e-55 1.29275e-51 -1.47078e-47 1.58998e-43 -1.6135e-39 1.5134e-35 -1.28556e-31 9.61636e-28 -6.08232e-24 3.0507e-20 -1.07932e-16 2.02159e-13 -4.93164e-13 -5.22925e-14 2.96436e-16 -1.0459e-18 -2.7432e-21 5.09164e-24 3.65531e-26 -2.12173e-24 -3.42095e-22 -2.0462e-20 5.48203e-20 1.27333e-19 -7.78952e-19 -1.17323e-16 -1.85808e-16 1.07462e-16 3.39801e-17 -9.75835e-17 6.97534e-19 -3.51387e-22 -1.59847e-25 5.5121e-26 -4.36096e-28 7.89741e-31 2.38936e-33 -4.2303e-36 -8.69555e-40 -8.12058e-44 -8.41172e-48 -1.72071e-50 5.21871e-52 5.9469e-55 -1.47805e-55 1.44232e-57 1.05536e-62 -6.50147e-62 3.29742e-64 -4.92721e-67 -7.34094e-71 -1.25687e-74 -4.58114e-77 3.91932e-79 1.94528e-82 -5.27245e-26 -2.44277e-27 1.23471e-30 -1.2512e-33 -3.16964e-35 1.12388e-37 2.80027e-40 -4.48086e-43 -1.11499e-41 4.08331e-39 7.94319e-38 -4.74645e-35 -1.28231e-30 6.56048e-28 4.93792e-25 2.16284e-23 1.01602e-20 6.82541e-18 2.9924e-21 8.95788e-19 -5.42177e-15 -2.01005e-18 1.17523e-15 -4.85614e-13 -1.17751e-15 -1.38741e-18 -1.05219e-21 -5.8868e-25 -1.23598e-28 -5.63224e-31 7.05537e-34 -2.01294e-38 -6.97156e-40 -1.65765e-43 3.4672e-46 3.61931e-49 1.92139e-52 7.01603e-56 1.94972e-59 4.34227e-63 8.00051e-67 1.25197e-70 -7.41758e-69 9.05824e-65 -1.07831e-60 1.24239e-56 -1.37385e-52 1.44358e-48 -1.42372e-44 1.29745e-40 -1.07023e-36 7.76677e-33 -4.75662e-29 2.30008e-25 -7.75514e-22 1.31935e-18 3.70286e-16 -8.78858e-16 -8.81318e-17 6.08811e-19 -1.89847e-21 2.52603e-24 -1.61791e-27 5.65801e-24 2.10833e-21 4.59059e-19 3.99574e-17 -1.66259e-16 -3.15785e-17 9.11788e-17 5.63498e-17 1.06921e-13 2.9069e-17 1.75756e-20 -3.97839e-20 5.8928e-22 -2.15765e-24 7.73063e-28 7.51006e-30 -1.53985e-31 8.08677e-34 -9.80395e-37 -3.27925e-39 4.64092e-42 9.30837e-46 8.44872e-50 7.87673e-54 3.72681e-56 -8.69892e-58 9.60101e-61 1.30475e-61 -1.1962e-63 7.7583e-67 3.59154e-68 -1.72446e-70 2.38063e-73 3.40032e-77 7.08046e-81 1.94239e-83 -1.78021e-85 -2.74963e-28 -3.83479e-30 2.12771e-33 -9.02708e-36 -4.92029e-39 1.85537e-40 -2.79433e-43 2.63207e-42 -2.76765e-39 2.45567e-36 -1.75105e-33 9.44936e-31 -3.7108e-28 1.04959e-25 2.02119e-23 -5.76792e-20 -1.27721e-17 6.51467e-20 5.50616e-23 -3.51147e-20 -1.38836e-17 4.38463e-20 -4.14522e-19 -2.33122e-15 5.84251e-19 8.10545e-21 1.17954e-23 9.58147e-27 5.49816e-30 1.71879e-33 2.18003e-36 -1.14164e-39 -3.66857e-43 1.1135e-45 4.86953e-49 -3.53521e-52 -4.61796e-55 -2.5472e-58 -9.32888e-62 -2.565e-65 -5.61293e-69 -1.08212e-72 8.39583e-70 -9.78662e-66 1.10505e-61 -1.19848e-57 1.23578e-53 -1.19648e-49 1.0707e-45 -8.67295e-42 6.1787e-38 -3.7107e-34 1.75413e-30 -5.72746e-27 9.01139e-24 4.93537e-21 5.71151e-19 -1.00123e-18 -7.07925e-20 7.65284e-22 -2.90659e-24 1.29716e-27 6.9001e-24 3.22527e-21 -1.98301e-18 -3.21471e-16 -4.2709e-14 1.82261e-13 3.80753e-14 -1.09729e-13 -1.08498e-13 7.74516e-17 -6.66056e-19 -1.74604e-22 -9.95134e-24 2.35882e-25 -1.77152e-27 4.40235e-30 -6.2248e-34 -2.54128e-35 2.86191e-37 -1.12353e-39 9.70542e-43 3.58405e-45 -4.22972e-48 -8.26215e-52 -7.26411e-56 -6.82914e-60 -5.2775e-62 1.07825e-63 -2.53614e-66 -9.39442e-68 8.37138e-70 -9.08802e-73 -1.74339e-74 8.07444e-77 -1.04195e-79 -1.42437e-83 -3.57242e-87 -7.57981e-90 -1.26452e-30 -5.85555e-33 3.94201e-36 -1.4403e-38 2.9878e-41 9.70721e-44 -2.5654e-43 3.57142e-40 -4.48837e-37 4.94787e-34 -4.60482e-31 3.43738e-28 -1.92773e-25 7.84935e-23 -2.82413e-20 7.39481e-18 6.26591e-15 -3.44199e-18 -4.28459e-20 -2.08195e-22 -2.38703e-20 1.43144e-22 -1.6304e-20 -5.67275e-18 1.64926e-20 1.51724e-23 -2.23956e-26 -4.79668e-29 -4.26902e-32 -2.52842e-35 -8.79894e-39 -6.57767e-42 9.21288e-46 9.96555e-49 -1.40995e-51 -8.72388e-55 2.62511e-58 4.95874e-61 2.86287e-64 1.05262e-67 2.8632e-71 -3.75276e-73 4.87759e-69 -6.12244e-65 7.49939e-61 -8.90105e-57 1.01515e-52 -1.10148e-48 1.12314e-44 -1.05952e-40 9.05841e-37 -6.82286e-33 4.34406e-29 -2.18878e-25 7.72139e-22 -1.39344e-18 -3.00789e-16 2.92035e-16 -1.19459e-18 -2.77429e-21 5.92439e-24 1.33486e-24 1.34669e-21 -2.17138e-18 -4.65653e-16 3.29788e-13 5.94459e-17 2.23397e-16 -1.53051e-16 -8.57635e-17 -1.46965e-13 -3.98409e-17 -5.84414e-21 1.62428e-24 -1.13557e-27 5.77626e-29 -6.9671e-31 3.5323e-33 -6.65718e-36 -7.81295e-40 5.00144e-41 -3.97316e-43 1.24691e-45 -7.98818e-49 -3.24921e-51 3.29349e-54 6.25369e-58 5.30556e-62 6.03523e-66 5.35729e-68 -1.05005e-69 3.24465e-72 5.64878e-74 -5.05078e-76 7.03259e-79 7.51441e-81 -3.41873e-83 4.16472e-86 5.44326e-90 1.62147e-93 -2.3876e-33 -5.95157e-36 8.53954e-39 -1.66372e-41 5.5995e-44 6.31307e-45 -1.72487e-41 2.7377e-38 -3.98418e-35 5.20289e-32 -5.97373e-29 5.81294e-26 -4.5082e-23 2.56234e-20 -9.71676e-18 3.09675e-15 -1.57031e-12 -5.05746e-15 -8.00557e-18 -8.07812e-21 -3.67226e-23 1.99887e-25 -5.23876e-23 -9.27217e-21 5.12719e-23 -4.64543e-26 -9.65317e-29 1.78775e-32 1.22762e-34 1.23958e-37 7.63627e-41 2.80471e-44 1.58267e-47 9.01769e-52 -1.56547e-54 1.47289e-57 1.19209e-60 -1.07087e-64 -4.56701e-67 -2.78474e-70 -1.02725e-73 -2.14907e-72 2.89554e-68 -3.84873e-64 5.02181e-60 -6.39399e-56 7.88892e-52 -9.35556e-48 1.05596e-43 -1.12054e-39 1.10065e-35 -9.80462e-32 7.70217e-28 -5.12376e-24 2.70735e-20 -1.01076e-16 2.00453e-13 -2.00582e-13 -3.75322e-16 1.5544e-18 -1.27429e-21 3.35029e-22 -4.35055e-19 -1.88139e-16 3.31508e-13 5.63958e-16 -2.20045e-18 -6.09676e-17 2.21566e-13 6.42339e-17 -1.61409e-16 9.50432e-19 2.53956e-22 3.4348e-26 -1.80417e-30 8.40382e-33 -1.67252e-34 1.36529e-36 -5.25594e-39 7.96356e-42 3.15637e-45 -7.05384e-47 4.39293e-49 -1.15146e-51 5.63522e-55 2.51277e-57 -2.23626e-60 -4.1201e-64 -3.3561e-68 -5.55213e-72 -4.10056e-74 8.35657e-76 -2.99017e-78 -2.87886e-80 2.67027e-82 -4.32839e-85 -2.90091e-87 1.31939e-89 -1.53058e-92 -1.90984e-96 -1.37676e-33 -1.94907e-36 -2.10898e-39 -2.0776e-42 -1.47183e-45 1.42282e-43 -4.8613e-40 8.64464e-37 -1.43595e-33 2.19406e-30 -3.02046e-27 3.64255e-24 -3.69537e-21 2.95797e-18 -1.66122e-15 4.93782e-13 -7.12253e-15 -6.33351e-15 3.73601e-18 4.06848e-20 7.31206e-23 7.49158e-26 -9.73532e-26 -1.14526e-23 9.29552e-26 -2.21031e-28 3.47792e-32 3.13272e-34 8.15747e-38 -2.16853e-40 -2.63513e-43 -1.70473e-46 -6.49049e-50 -3.10083e-53 -4.90529e-57 1.66789e-60 -1.31488e-63 -1.3418e-66 -5.21745e-71 3.65626e-73 2.12947e-76 3.29946e-73 -4.25713e-69 5.39207e-65 -6.66588e-61 7.98737e-57 -9.20011e-53 1.00863e-48 -1.03962e-44 9.917e-41 -8.57566e-37 6.53414e-33 -4.20833e-29 2.14405e-25 -7.63532e-22 1.37854e-18 3.84643e-16 -4.62195e-16 1.97241e-13 -1.7931e-16 1.41734e-18 -3.24962e-19 -2.54528e-17 6.63445e-14 4.98675e-16 -1.94974e-18 -4.24614e-21 1.46066e-18 2.66803e-16 -1.46553e-18 -8.47519e-20 1.04887e-21 -3.04215e-24 -8.01441e-28 -1.03195e-31 -2.29662e-37 -2.51651e-38 3.21326e-40 -1.99706e-42 6.22403e-45 -7.86586e-48 -5.30347e-51 7.78744e-53 -4.03071e-55 9.09728e-58 -3.48855e-61 -1.69189e-63 1.34484e-66 2.39983e-70 1.8648e-74 4.94743e-78 2.40773e-80 -5.58325e-82 2.19977e-84 1.25142e-86 -1.25258e-88 2.2547e-91 1.00819e-93 -4.67114e-96 5.20135e-99 -4.84252e-36 -4.39456e-39 1.23795e-42 4.49387e-45 7.72792e-48 -1.60456e-45 1.37732e-41 -2.17661e-38 3.14365e-35 -4.05404e-32 4.50973e-29 -4.08264e-26 2.69576e-23 -9.37685e-21 -1.97158e-18 2.84653e-15 -4.74805e-15 1.5345e-12 4.71579e-15 7.04031e-18 6.76404e-21 4.70296e-24 2.39298e-27 -1.13949e-26 1.2157e-28 -4.54915e-31 5.9665e-34 1.97017e-37 -6.77473e-40 -3.74232e-43 2.6569e-46 4.36394e-49 3.00074e-52 1.17564e-55 5.05101e-59 1.06356e-62 -1.09577e-66 1.04521e-69 1.29505e-72 1.64361e-76 1.71758e-78 -2.47185e-74 3.03735e-70 -3.64234e-66 4.23374e-62 -4.73075e-58 5.0305e-54 -5.02798e-50 4.64936e-46 -3.89505e-42 2.87245e-38 -1.78777e-34 8.77636e-31 -2.9933e-27 5.08452e-24 1.50028e-21 3.23664e-18 6.00555e-16 2.70742e-16 1.98168e-13 8.69289e-17 4.94678e-16 -1.14858e-16 3.32755e-13 1.17721e-16 1.65643e-20 1.24805e-23 1.85414e-21 1.54117e-19 -1.78117e-21 -2.31187e-23 5.46719e-25 -3.39371e-27 6.47417e-30 1.67587e-33 2.06973e-37 4.445e-42 4.82123e-44 -4.60811e-46 2.32361e-48 -6.10908e-51 6.61942e-54 6.20056e-57 -7.06677e-59 3.1556e-61 -6.27507e-64 1.9326e-67 1.00744e-69 -7.25141e-73 -1.251e-76 -9.20084e-81 -3.97571e-84 -1.03574e-86 3.19477e-88 -1.35616e-90 -4.61482e-93 5.26713e-95 -1.02733e-97 -3.16288e-100 1.52673e-102 -1.32636e-38 -8.0738e-42 3.67977e-45 7.23675e-48 -4.91558e-50 4.8774e-45 -3.87274e-41 6.21458e-38 -9.16701e-35 1.2178e-31 -1.41584e-28 1.38143e-25 -1.05763e-22 5.59994e-20 -1.46621e-17 -8.49179e-16 -1.01236e-18 1.22927e-14 1.39536e-17 -1.53817e-20 -4.98665e-23 -5.92777e-26 -4.53531e-29 -1.72522e-29 2.02868e-31 -8.98104e-34 1.74222e-36 -9.95737e-40 -1.12883e-42 9.59883e-46 9.12364e-49 -1.90685e-52 -5.84006e-55 -4.33857e-58 -1.74464e-61 -6.97704e-65 -1.65834e-68 4.41887e-75 -7.81128e-76 -1.09979e-78 1.1595e-78 -1.50351e-74 1.91578e-70 -2.38592e-66 2.88539e-62 -3.36151e-58 3.73571e-54 -3.91318e-50 3.80582e-46 -3.37033e-42 2.64888e-38 -1.78446e-34 9.82331e-31 -4.16326e-27 1.33107e-23 -4.24242e-20 1.82869e-16 -3.99436e-13 -1.06374e-16 -1.96517e-13 6.10894e-17 -3.90266e-13 -8.57693e-17 -1.90533e-13 -6.74914e-17 -1.45258e-20 9.02876e-24 1.12239e-24 5.69741e-23 -1.02564e-24 -5.88443e-28 1.68124e-28 -1.75657e-30 7.2865e-33 -1.03007e-35 -2.61368e-39 -3.1035e-43 -9.03286e-48 -6.81252e-50 5.25164e-52 -2.23726e-54 5.11423e-57 -4.86169e-60 -5.67484e-63 5.43766e-65 -2.15117e-67 3.83744e-70 -9.73789e-74 -5.37048e-76 3.54074e-79 5.89351e-83 4.06807e-87 2.79661e-90 2.54169e-93 -1.58835e-94 7.21126e-97 1.41224e-99 -2.0007e-101 4.17351e-104 8.98501e-107 -4.38565e-41 -1.03336e-44 1.48312e-47 1.39487e-50 -1.64844e-49 4.38527e-45 -9.12829e-40 1.65184e-36 -2.79095e-33 4.33536e-30 -6.06601e-27 7.43391e-24 -7.66195e-21 6.22941e-18 -3.55293e-15 1.07276e-12 3.54606e-15 5.88491e-17 -3.21743e-20 -1.74497e-22 -1.87876e-25 -7.40977e-28 -1.72678e-30 -2.3715e-32 2.74738e-34 -1.41144e-36 3.55565e-39 -4.19583e-42 6.61036e-46 2.84471e-48 -7.1305e-52 -1.62416e-54 -2.88438e-58 4.71241e-61 4.61178e-64 1.94493e-67 7.74767e-71 2.04142e-74 9.66894e-79 -5.62313e-82 1.31598e-77 -1.78483e-73 2.39024e-69 -3.14551e-65 4.04637e-61 -5.05621e-57 6.08659e-53 -6.9883e-49 7.55835e-45 -7.5808e-41 6.90746e-37 -5.55937e-33 3.79426e-29 -2.05884e-25 7.88881e-22 -1.58954e-18 -1.09051e-16 -7.60371e-16 -7.86532e-17 1.97855e-13 1.36562e-16 -6.39073e-16 -5.96289e-17 1.89046e-13 -1.62215e-16 3.01373e-18 9.55131e-22 1.44447e-25 1.50495e-26 -3.75603e-28 2.27542e-30 2.79368e-32 -5.50335e-34 3.74235e-36 -1.16754e-38 1.30655e-41 3.24228e-45 3.70363e-49 1.18675e-53 7.59423e-56 -4.94547e-58 1.83523e-60 -3.72939e-63 3.17684e-66 4.28708e-69 -3.62655e-71 1.29665e-73 -2.1058e-76 4.52607e-80 2.5881e-82 -1.5784e-85 -2.52906e-89 -1.62707e-93 -1.71243e-96 5.33698e-100 6.93104e-101 -3.36957e-103 -3.30116e-106 6.91018e-108 -1.53081e-110 -1.94026e-43 -4.8964e-47 1.32832e-50 2.17374e-53 4.4145e-50 -2.18047e-45 2.96839e-41 -4.54451e-38 6.31047e-35 -7.70718e-32 7.88564e-29 -6.14269e-26 2.7233e-23 7.11709e-21 -2.07728e-17 1.12786e-14 2.0317e-17 1.79036e-19 -4.24314e-19 -1.16982e-20 -1.58326e-22 -3.93969e-25 -5.07506e-28 -4.28546e-31 -2.63471e-34 -1.27681e-37 -4.25205e-41 -2.50457e-44 3.01799e-48 7.00279e-52 -4.96986e-54 -5.11656e-58 1.95898e-60 8.07624e-64 -2.24913e-67 -4.04909e-70 -1.83252e-73 -7.36667e-77 -2.10927e-80 -5.11404e-81 7.20942e-77 -1.01309e-72 1.41228e-68 -1.94441e-64 2.63247e-60 -3.48815e-56 4.49249e-52 -5.57672e-48 6.60437e-44 -7.3695e-40 7.62866e-36 -7.17746e-32 5.96833e-28 -4.21357e-24 2.36997e-20 -9.44785e-17 2.00488e-13 1.35898e-16 -2.77511e-19 5.58425e-16 -9.68094e-14 -3.78765e-17 1.24488e-17 -1.00748e-13 4.07851e-13 1.32233e-16 2.03571e-20 1.99772e-24 1.46409e-28 -1.57731e-31 1.50788e-33 2.80194e-36 -1.73256e-37 1.57108e-39 -6.92396e-42 1.56087e-44 -1.36475e-47 -3.33378e-51 -3.67405e-55 -1.21931e-59 -6.9699e-62 3.96313e-64 -1.30891e-66 2.40678e-69 -1.87561e-72 -2.75635e-75 2.1303e-77 -6.99588e-80 1.04696e-82 -1.96571e-86 -1.13683e-88 6.46747e-92 9.95467e-96 5.94838e-100 9.17177e-103 -1.10526e-105 -2.67534e-107 1.4034e-109 3.99143e-113 -2.18343e-114 -8.12586e-44 -5.87803e-47 -2.62813e-50 1.65849e-55 -7.16924e-51 9.68105e-47 -5.971e-43 8.11604e-40 -9.77082e-37 9.96932e-34 -8.02032e-31 4.35422e-28 -8.56822e-26 -4.51019e-23 -2.37844e-20 6.09803e-17 -3.38201e-20 1.87039e-17 -6.92785e-16 -1.87235e-17 -5.036e-20 -6.78788e-23 -5.94656e-26 -3.78569e-29 -1.86391e-32 -7.38782e-36 -2.42283e-39 -6.7008e-43 -1.5872e-46 -3.26302e-50 -5.88114e-54 -9.29133e-58 -1.30181e-61 -1.84825e-65 -3.01684e-69 -2.21618e-73 2.82071e-76 1.46366e-79 6.03756e-83 -9.32369e-82 -3.0865e-78 1.01122e-73 -1.59046e-69 2.21066e-65 -2.93119e-61 3.75501e-57 -4.6325e-53 5.45246e-49 -6.04673e-45 6.21836e-41 -5.80692e-37 4.78377e-33 -3.33318e-29 1.83603e-25 -7.03192e-22 1.31803e-18 7.77562e-16 -2.01425e-13 -1.17657e-16 -8.63945e-17 2.2824e-13 5.70204e-17 9.88912e-14 -2.18242e-16 9.95837e-16 -2.8178e-18 -9.03637e-22 -1.33672e-25 -1.25089e-29 -8.95418e-34 6.21872e-37 -1.85116e-39 -3.6796e-41 4.92085e-43 -2.92901e-45 9.77253e-48 -1.74856e-50 1.20099e-53 2.88473e-57 3.06938e-61 7.10978e-66 7.06893e-68 -3.2618e-70 9.07391e-73 -1.4502e-75 9.60386e-79 1.92444e-81 -1.22798e-83 3.5301e-86 -4.77027e-89 7.65758e-93 4.58287e-95 -2.45022e-98 -3.61189e-102 -2.0119e-106 -4.32988e-109 8.14328e-112 9.14956e-114 -5.26262e-116 1.19077e-119 -3.73128e-46 -1.34889e-49 1.4949e-52 2.75085e-55 1.24293e-51 5.01521e-46 -1.66197e-41 2.71477e-38 -4.08996e-35 5.56379e-32 -6.65064e-29 6.71398e-26 -5.38179e-23 3.06895e-20 -9.65745e-18 3.95288e-16 4.47044e-18 3.22893e-15 -1.0628e-12 -3.22194e-15 -4.74743e-18 -4.5032e-21 -3.09032e-24 -1.63553e-27 -6.95139e-31 -2.44038e-34 -7.22291e-38 -1.82762e-41 -4.00417e-45 -7.67745e-49 -1.29961e-52 -1.95579e-56 -2.6315e-60 -3.18032e-64 -3.46508e-68 -3.41327e-72 -3.04909e-76 -2.50008e-80 1.40159e-82 -5.16174e-79 1.84293e-75 -6.4497e-72 2.20819e-68 -7.41463e-65 2.49281e-61 -9.06928e-58 4.23664e-54 -2.84067e-50 2.36273e-46 -1.99678e-42 1.53279e-38 -9.94904e-35 5.01402e-31 -1.66121e-27 1.8961e-24 6.20196e-21 -1.28141e-19 -6.5965e-16 -1.9747e-13 -1.62064e-16 1.95325e-13 7.84986e-17 2.9933e-16 -1.00022e-18 1.24793e-18 -7.2642e-21 9.53398e-24 3.19643e-27 4.7389e-31 4.39801e-35 3.13863e-39 -1.16825e-42 -3.42618e-45 1.16876e-46 -9.44045e-49 4.22864e-51 -1.12659e-53 1.64637e-56 -9.18038e-60 -2.18617e-63 -2.26084e-67 -2.29689e-72 -6.03495e-74 2.32762e-76 -5.59167e-79 7.88951e-82 -4.29433e-85 -1.23585e-87 6.54302e-90 -1.65974e-92 2.00708e-95 -2.33447e-99 -1.73704e-101 8.58157e-105 1.21415e-108 6.13967e-113 1.83543e-115 -4.41077e-118 -2.79806e-120 1.79188e-122 -7.39635e-49 9.32046e-52 1.44537e-54 3.66534e-57 1.32081e-51 -3.87781e-46 -2.40975e-40 4.57859e-37 -8.16489e-34 1.34197e-30 -1.99204e-27 2.59654e-24 -2.8535e-21 2.47976e-18 -1.51574e-15 4.91932e-13 1.5095e-15 1.96657e-17 -1.16974e-14 -1.67763e-17 3.32484e-22 2.17076e-23 2.81281e-26 2.1211e-29 1.145e-32 4.79732e-36 1.62918e-39 4.60679e-43 1.10663e-46 2.29301e-50 4.14739e-54 6.60961e-58 9.35054e-62 1.18142e-65 1.33988e-69 1.37041e-73 1.27408e-77 1.08527e-81 4.60556e-80 -1.64812e-76 5.79017e-73 -1.9912e-69 6.6781e-66 -2.17493e-62 6.83988e-59 -2.05838e-55 5.8127e-52 -1.43628e-48 2.02585e-45 1.16964e-41 -1.74761e-37 1.5348e-33 -1.07211e-29 5.90828e-26 -2.31736e-22 4.8915e-19 -1.15632e-17 -3.46642e-17 8.99162e-14 4.79628e-17 1.95909e-13 6.26299e-17 4.69068e-19 -2.48467e-21 1.07738e-21 -9.31607e-24 2.63089e-26 -2.16141e-29 -7.17161e-33 -1.01366e-36 -8.90526e-41 -6.09378e-45 8.83366e-49 1.94766e-50 -2.38877e-52 1.39515e-54 -4.96418e-57 1.08993e-59 -1.33658e-62 6.249e-66 1.44963e-69 1.43951e-73 -9.05833e-79 4.34516e-80 -1.4431e-82 3.06138e-85 -3.87994e-88 1.71283e-91 6.7788e-94 -3.09737e-96 7.07363e-99 -7.78667e-102 6.72271e-106 6.08312e-108 -2.80888e-111 -3.7916e-115 -1.78908e-119 -7.02348e-122 1.93199e-124 7.51298e-127 2.56114e-51 1.30317e-53 1.26125e-56 3.93301e-57 -2.76382e-51 -3.62695e-46 1.1049e-41 -1.73972e-38 2.48512e-35 -3.11629e-32 3.26779e-29 -2.59717e-26 1.14588e-23 3.88414e-21 -1.02392e-17 5.65679e-15 1.00096e-17 1.08426e-20 -6.57268e-17 -4.03028e-21 1.28323e-22 1.16742e-25 -4.88462e-30 -8.6486e-32 -8.74183e-35 -5.32594e-38 -2.3733e-41 -8.32719e-45 -2.38894e-48 -5.70931e-52 -1.13267e-55 -1.7477e-59 -1.30539e-63 4.70848e-67 3.25404e-70 1.36119e-73 4.80792e-77 1.09989e-80 1.5578e-77 -5.497e-74 1.90151e-70 -6.43138e-67 2.12008e-63 -6.7847e-60 2.09786e-56 -6.23197e-53 1.76583e-49 -4.7209e-46 1.1639e-42 -2.45137e-39 2.66512e-36 1.72562e-32 -2.01151e-28 1.41346e-24 -7.51068e-21 2.81441e-17 -5.59021e-14 1.21322e-17 -9.00519e-14 3.91066e-13 -9.72236e-14 -4.13324e-17 -7.8692e-21 -4.63617e-24 7.1924e-25 -8.07538e-27 3.42105e-29 -6.2691e-32 3.61042e-35 1.2388e-38 1.72514e-42 1.47397e-46 9.64086e-51 1.59979e-54 -4.64489e-56 3.64052e-58 -1.65641e-60 4.85504e-63 -9.01727e-66 9.49285e-69 -3.80908e-72 -8.65204e-76 -8.29172e-80 1.85197e-84 -2.69706e-86 7.89415e-89 -1.50599e-91 1.74077e-94 -6.20571e-98 -3.23364e-100 1.31759e-102 -2.75685e-105 2.80214e-108 -1.89346e-112 -1.97793e-114 8.62598e-118 1.10146e-121 5.11508e-126 2.39585e-128 -7.56371e-131 -4.72451e-51 3.54716e-53 1.12493e-55 3.88567e-56 7.10515e-51 2.7134e-46 2.16968e-41 -1.85356e-38 1.20289e-35 -5.62255e-33 6.90339e-31 1.95773e-27 -2.3944e-24 1.51331e-21 -4.94543e-19 3.35129e-17 4.97638e-19 4.49094e-21 -2.5442e-19 -3.02887e-21 -3.22692e-24 2.35198e-27 8.1973e-30 8.76328e-33 4.47229e-36 -9.91364e-40 -4.73871e-42 -5.9813e-45 -5.35861e-48 -3.91385e-51 -2.45127e-54 -1.35053e-57 -6.64867e-61 -2.95676e-64 -1.19752e-67 -4.44481e-71 -1.51866e-74 -3.56413e-78 -4.35776e-75 1.51499e-71 -5.1564e-68 1.71413e-64 -5.54861e-61 1.74236e-57 -5.28306e-54 1.5382e-50 -4.2728e-47 1.12383e-43 -2.77238e-40 6.33931e-37 -1.32354e-33 2.47415e-30 -4.03014e-27 5.48185e-24 -5.75659e-21 3.7628e-18 -2.24853e-16 2.04713e-18 -3.58596e-16 1.37973e-15 -3.0758e-16 -6.04557e-18 -8.04068e-21 -6.14627e-24 -2.97019e-27 1.09107e-30 -6.24297e-32 2.99478e-34 -5.45141e-37 2.35884e-40 1.83597e-43 5.74884e-47 1.26267e-50 2.2441e-54 3.28274e-58 -4.57873e-62 1.07638e-63 -5.56619e-66 1.73273e-68 -3.2913e-71 3.42296e-74 -1.23407e-77 -4.16191e-81 -5.75072e-85 -3.78725e-89 -6.33006e-92 1.89013e-94 -3.70352e-97 4.37322e-100 -2.11636e-103 -5.6708e-106 2.69424e-108 -5.89833e-111 6.08925e-114 -5.60118e-118 -3.90641e-120 1.6199e-123 2.2239e-127 1.33345e-131 4.36857e-134 -7.19614e-52 1.76303e-54 2.5637e-57 -1.21715e-55 -7.91722e-51 -3.19994e-46 5.0523e-43 -3.81787e-40 2.26222e-37 -7.83057e-35 -2.55413e-32 6.52164e-29 -5.1437e-26 2.01249e-23 -2.44425e-21 9.559e-20 2.47703e-21 3.21081e-23 -5.48712e-22 -1.22357e-23 -7.70143e-26 -6.51024e-29 8.29235e-32 2.13688e-34 1.97118e-37 6.91908e-41 -6.17153e-44 -1.29945e-46 -1.34957e-49 -1.05564e-52 -6.87813e-56 -3.89342e-59 -1.95816e-62 -8.87432e-66 -3.66146e-69 -1.3852e-72 -4.83963e-76 -1.11617e-79 -1.64067e-76 5.92156e-73 -2.09473e-69 7.2388e-66 -2.43449e-62 7.93267e-59 -2.49218e-55 7.5039e-52 -2.14894e-48 5.79675e-45 -1.45441e-41 3.33872e-38 -6.85898e-35 1.22027e-31 -1.78334e-28 1.94265e-25 -1.25042e-22 1.34392e-20 -4.07974e-19 7.03396e-21 -6.43895e-19 2.25495e-18 -4.51288e-19 -1.75697e-20 -1.85106e-22 -2.49778e-25 -1.83932e-28 -9.02982e-32 -3.80606e-35 -4.27822e-37 2.32215e-39 -4.33176e-42 1.58437e-45 1.7578e-48 6.569e-52 1.60533e-55 3.00475e-59 4.54757e-63 4.23623e-67 3.32714e-69 -1.86729e-71 6.07128e-74 -1.17287e-76 1.21285e-79 -4.06864e-83 -1.69535e-86 -2.73281e-90 -2.50667e-94 -1.60923e-97 4.60014e-100 -9.13588e-103 1.07844e-105 -5.72648e-109 -1.07676e-111 5.67849e-114 -1.27537e-116 1.32579e-119 -1.45076e-123 -7.84989e-126 3.08933e-129 4.56894e-133 3.24471e-137 1.06298e-52 2.95622e-55 5.75876e-58 1.34749e-55 3.90282e-51 -6.79108e-48 1.75323e-44 -8.95596e-42 1.9242e-39 2.02502e-36 -2.87139e-33 1.88718e-30 -6.8447e-28 1.07276e-25 -7.64315e-24 2.07587e-22 7.77396e-24 1.38235e-25 -9.57718e-25 -3.15502e-26 -3.69075e-28 -1.69293e-30 -1.83719e-33 1.08939e-36 4.77984e-39 5.70218e-42 3.28932e-45 -2.80593e-49 -2.7857e-51 -3.52706e-54 -3.01683e-57 -2.0594e-60 -1.1917e-63 -6.02614e-67 -2.71207e-70 -1.10068e-73 -4.06954e-77 -5.55932e-81 -2.9528e-77 1.03104e-73 -3.50464e-70 1.15508e-66 -3.67441e-63 1.1218e-59 -3.26475e-56 8.98487e-53 -2.31509e-49 5.51341e-46 -1.19262e-42 2.28714e-39 -3.75496e-36 5.00113e-33 -4.90735e-30 2.86734e-27 -4.31442e-25 2.53211e-23 -5.26655e-22 1.25303e-23 -8.15842e-22 2.63194e-21 -4.73263e-22 -2.69807e-23 -5.09132e-25 -3.73886e-27 -5.3494e-30 -4.16627e-33 -2.19722e-36 -1.03216e-39 -2.53631e-42 1.49983e-44 -2.86279e-47 8.00496e-51 1.36744e-53 6.20997e-57 1.76094e-60 3.70937e-64 6.22433e-68 8.64314e-72 9.6264e-75 -5.57253e-77 1.90507e-79 -3.74576e-82 3.8407e-85 -1.17182e-88 -6.15909e-92 -1.16355e-95 -1.3197e-99 -4.14563e-103 1.02069e-105 -2.06422e-108 2.42971e-111 -1.37486e-114 -1.83455e-117 1.10095e-119 -2.54431e-122 2.65814e-125 -3.21002e-129 -1.46252e-131 5.44913e-135 8.78161e-139 8.55209e-56 2.09507e-57 3.74109e-60 -4.24711e-56 7.8231e-53 -2.41425e-49 1.97555e-46 -6.95292e-44 -2.63186e-41 5.63033e-38 -4.14575e-35 1.66377e-32 -3.24068e-30 3.30845e-28 -1.73453e-26 3.72693e-25 1.7731e-26 3.93853e-28 -1.43882e-27 -6.09949e-29 -1.00557e-30 -7.88421e-33 -2.76582e-35 -2.59077e-38 2.26519e-41 7.85414e-44 8.78995e-47 4.62452e-50 -9.41589e-54 -4.52352e-56 -5.31623e-59 -4.32388e-62 -2.82336e-65 -1.56678e-68 -7.61198e-72 -3.29302e-75 -1.28351e-78 -4.32209e-83 -1.49796e-78 5.27881e-75 -1.79924e-71 5.90197e-68 -1.85206e-64 5.52166e-61 -1.55073e-57 4.05868e-54 -9.76452e-51 2.12116e-47 -4.06087e-44 6.61629e-41 -8.69029e-38 8.3805e-35 -4.88626e-32 9.39548e-30 -8.1776e-28 3.38835e-26 -5.47342e-25 1.57061e-26 -8.26414e-25 2.48091e-24 -4.01856e-25 -2.9706e-26 -7.74223e-28 -9.6705e-30 -5.46168e-32 -7.69127e-35 -5.95786e-38 -3.13897e-41 -1.39471e-44 -1.35542e-47 8.30155e-50 -1.66443e-52 3.80681e-56 8.70321e-59 4.36472e-62 1.32805e-65 2.95355e-69 5.1706e-73 7.58836e-77 2.8635e-80 -1.48747e-82 5.41505e-85 -1.08888e-87 1.11307e-90 -3.12843e-94 -1.95928e-97 -4.11556e-101 -5.24489e-105 -1.09533e-108 2.11598e-111 -4.34601e-114 5.06556e-117 -2.95667e-120 -2.92797e-123 2.00088e-125 -4.7238e-128 4.93337e-131 -6.0246e-135 -2.53017e-137 8.83593e-141 1.40282e-56 1.85462e-59 4.6389e-61 -8.84818e-58 2.81336e-54 -3.1044e-51 1.40433e-48 7.26931e-46 -1.28645e-42 8.98575e-40 -3.6116e-37 7.94647e-35 -1.01558e-32 7.64488e-31 -3.1739e-29 5.65226e-28 3.26205e-29 8.74154e-31 -1.87638e-30 -9.72326e-32 -2.06039e-33 -2.2752e-35 -1.35811e-37 -3.98241e-40 -3.69444e-43 2.96408e-46 1.10436e-48 1.29588e-51 7.46788e-55 -4.99986e-59 -5.92842e-61 -7.35251e-64 -6.08291e-67 -3.98455e-70 -2.19995e-73 -1.05806e-76 -4.51685e-80 1.48846e-83 -1.11285e-79 3.71066e-76 -1.18769e-72 3.62779e-69 -1.05002e-65 2.8549e-62 -7.21471e-59 1.67212e-55 -3.4922e-52 6.41588e-49 -1.00176e-45 1.26107e-42 -1.17151e-39 6.75269e-37 -1.55499e-34 1.78722e-32 -1.11063e-30 3.60147e-29 -4.80202e-28 1.55201e-29 -7.04477e-28 1.98235e-27 -2.89208e-28 -2.62098e-29 -8.51488e-31 -1.44442e-32 -1.3503e-34 -6.24057e-37 -8.67617e-40 -6.74814e-43 -3.58464e-46 -1.52805e-49 -7.57726e-53 3.93607e-55 -8.44202e-58 1.51964e-61 4.7428e-64 2.59886e-67 8.42761e-71 1.97124e-74 3.60846e-78 5.47579e-82 1.056e-85 -3.53196e-88 1.39657e-90 -2.88019e-93 2.93825e-96 -7.55177e-100 -5.60562e-103 -1.29476e-106 -1.80886e-110 -2.90266e-114 4.01328e-117 -8.44902e-120 9.74215e-123 -5.80105e-126 -4.20313e-129 3.3627e-131 -8.13576e-134 8.48629e-137 -1.09408e-140 -4.07606e-143 1.71928e-58 2.52573e-61 9.19903e-63 -3.05431e-59 3.79352e-56 -2.84611e-53 -1.30086e-51 1.96816e-47 -1.46346e-44 6.25808e-42 -1.55083e-39 2.37226e-37 -2.30801e-35 1.40384e-33 -4.9046e-32 7.55978e-31 5.07234e-32 1.57792e-33 -2.19786e-33 -1.33311e-34 -3.40513e-36 -4.76585e-38 -3.92565e-40 -1.87791e-42 -4.66406e-45 -3.85128e-48 3.89004e-51 1.28273e-53 1.46987e-56 8.38269e-60 -5.25461e-64 -6.49641e-66 -8.00284e-69 -6.5654e-72 -4.25887e-75 -2.32395e-78 -1.10162e-81 1.1967e-84 -5.47099e-81 1.72884e-77 -5.20231e-74 1.47975e-70 -3.94424e-67 9.74703e-64 -2.20305e-60 4.47464e-57 -7.97548e-54 1.20619e-50 -1.47127e-47 1.33108e-44 -7.63114e-42 1.94809e-39 -2.5086e-37 1.93026e-35 -8.22088e-34 2.01195e-32 -2.07746e-31 8.09694e-33 -3.04853e-31 7.88663e-31 -9.6213e-32 -1.23555e-32 -5.29884e-34 -1.21497e-35 -1.65461e-37 -1.32987e-39 -5.57624e-42 -7.68485e-45 -5.98062e-48 -3.18241e-51 -1.31746e-54 -4.96824e-58 1.68753e-60 -3.8069e-63 4.92864e-67 2.21991e-69 1.30561e-72 4.45665e-76 1.0864e-79 2.06059e-83 3.20793e-87 4.84422e-91 -7.91135e-94 3.39372e-96 -7.07556e-99 7.1376e-102 -1.65319e-105 -1.44374e-108 -3.61346e-112 -5.4294e-116 -7.65416e-120 6.95303e-123 -1.52397e-125 1.73502e-128 -1.04303e-131 -5.35907e-135 5.25976e-137 -1.30304e-139 1.3563e-142 -1.81297e-146 8.56104e-60 1.07848e-62 3.02497e-64 -4.53508e-61 3.68761e-58 -7.87345e-56 -3.02056e-52 2.23576e-49 -9.73368e-47 2.60648e-44 -4.54311e-42 5.32608e-40 -4.20602e-38 2.15851e-36 -6.55008e-35 8.93599e-34 6.82863e-35 2.41679e-36 -2.31197e-36 -1.60721e-37 -4.78464e-39 -8.05491e-41 -8.38079e-43 -5.49689e-45 -2.19649e-47 -4.75544e-50 -3.53556e-53 4.23851e-56 1.28974e-58 1.46092e-61 8.41582e-65 -2.47112e-69 -6.04775e-71 -7.52694e-74 -6.16259e-77 -3.97209e-80 -2.15012e-83 6.33305e-86 -2.26056e-82 6.62156e-79 -1.8315e-75 4.74044e-72 -1.13557e-68 2.48298e-65 -4.87031e-62 8.37165e-59 -1.22027e-55 1.4358e-52 -1.25874e-49 7.10825e-47 -1.92759e-44 2.84025e-42 -2.52873e-40 1.43791e-38 -5.07514e-37 1.05331e-35 -9.25756e-35 3.9176e-36 -1.33663e-34 3.27824e-34 -3.55506e-35 -5.45541e-36 -2.78714e-37 -7.87336e-39 -1.38833e-40 -1.56977e-42 -1.09985e-44 -4.18003e-47 -5.68429e-50 -4.41475e-53 -2.34961e-56 -9.58695e-60 -3.1826e-63 6.24114e-66 -1.53115e-68 1.31053e-72 9.14097e-75 5.70587e-78 2.0334e-81 5.13673e-85 1.00503e-88 1.60388e-92 2.23939e-96 -1.52797e-99 7.56744e-102 -1.59587e-104 1.59309e-107 -3.29835e-111 -3.38191e-114 -9.08041e-118 -1.45078e-121 -1.9317e-125 1.09041e-128 -2.5544e-131 2.8667e-134 -1.72767e-137 -5.90399e-141 7.65522e-143 -1.94403e-145 2.01722e-148 6.18225e-63 7.53366e-65 4.67213e-66 -4.60881e-63 1.46215e-60 2.07812e-57 -2.33558e-54 1.30274e-51 -3.74646e-49 7.2863e-47 -9.92066e-45 9.55735e-43 -6.42321e-41 2.87155e-39 -7.71016e-38 9.36544e-37 7.88046e-38 3.0499e-39 -1.95748e-39 -1.41683e-40 -4.39682e-42 -8.42949e-44 -1.09203e-45 -9.58172e-48 -5.51947e-50 -1.99796e-52 -4.03056e-55 -2.87375e-58 3.56436e-61 1.06754e-63 1.21513e-66 7.19362e-70 1.69466e-74 -4.58995e-76 -5.86207e-79 -4.82754e-82 -3.11094e-85 2.36573e-87 -7.2004e-84 1.93109e-80 -4.84361e-77 1.12371e-73 -2.37835e-70 4.51222e-67 -7.49581e-64 1.05531e-60 -1.19988e-57 1.02044e-54 -5.67662e-52 1.61832e-49 -2.66197e-47 2.77154e-45 -1.92235e-43 8.9273e-42 -2.67916e-40 4.73462e-39 -3.71743e-38 1.69219e-39 -5.28541e-38 1.22231e-37 -1.12079e-38 -2.11898e-39 -1.24071e-40 -4.08199e-42 -8.67454e-44 -1.24619e-45 -1.20849e-47 -7.53977e-50 -2.64854e-52 -3.55579e-55 -2.75789e-58 -1.47131e-61 -5.96327e-65 -1.87902e-68 1.96179e-71 -5.54022e-74 2.58007e-78 3.34569e-80 2.1968e-83 8.11963e-87 2.11495e-90 4.25096e-94 6.93951e-98 9.55891e-102 -2.32174e-105 1.55502e-107 -3.31568e-110 3.27824e-113 -6.02361e-117 -7.24235e-120 -2.07211e-123 -3.49491e-127 -4.57429e-131 1.52333e-134 -3.98846e-137 4.4039e-140 -2.64506e-143 -5.25894e-147 1.03794e-148 -2.70772e-151 4.0674e-64 5.19821e-67 4.52269e-68 -2.47936e-65 -1.21233e-62 2.14321e-59 -1.53892e-56 4.7523e-54 -1.00325e-51 1.52954e-49 -1.69409e-47 1.3311e-45 -6.94763e-44 2.3639e-42 -5.01786e-41 4.9497e-40 4.85981e-41 2.18423e-42 -8.57267e-43 -7.7004e-44 -3.01685e-45 -7.15223e-47 -1.13608e-48 -1.24505e-50 -9.41206e-53 -4.82188e-55 -1.59286e-57 -3.00247e-60 -2.03635e-63 2.65954e-66 7.77071e-69 8.85422e-72 5.35548e-75 3.66047e-79 -3.03903e-81 -3.98869e-84 -3.30601e-87 6.73983e-89 -1.80531e-85 4.38119e-82 -9.83113e-79 2.01213e-75 -3.69082e-72 5.92791e-69 -8.07279e-66 8.89484e-63 -7.37167e-60 4.06646e-57 -1.22231e-54 2.2159e-52 -2.63486e-50 2.15435e-48 -1.23087e-46 4.86259e-45 -1.27073e-43 1.98809e-42 -1.4089e-41 6.7026e-43 -1.96481e-41 4.31941e-41 -3.3723e-42 -7.64601e-43 -5.0204e-44 -1.86201e-45 -4.54817e-47 -7.75482e-49 -9.3853e-51 -7.94437e-53 -4.45606e-55 -1.45292e-57 -1.92365e-60 -1.48862e-63 -7.94668e-67 -3.20483e-70 -9.91866e-74 5.02681e-77 -1.8165e-79 2.06917e-84 1.09742e-85 7.531e-89 2.87327e-92 7.68829e-96 1.58327e-99 2.64121e-103 3.66911e-107 -1.69011e-111 2.95859e-113 -6.36047e-116 6.23367e-119 -1.00285e-122 -1.42386e-125 -4.31561e-129 -7.63888e-133 -1.00606e-136 1.82804e-140 -5.8165e-143 6.3022e-146 -3.75392e-149 -2.87566e-153 1.31509e-154 -6.24003e-66 -1.80149e-69 2.43649e-70 2.05393e-68 -1.64835e-64 1.31617e-61 -5.11057e-59 1.08884e-56 -1.74184e-54 2.05699e-52 -1.77487e-50 1.11e-48 -4.97883e-47 1.54245e-45 -2.98519e-44 2.70873e-43 2.90921e-44 1.45258e-45 -4.03398e-46 -4.20263e-47 -1.91591e-48 -5.30914e-50 -9.90626e-52 -1.29776e-53 -1.21145e-55 -8.03343e-58 -3.70059e-60 -1.12261e-62 -1.98162e-65 -1.26777e-68 1.77442e-71 5.02023e-74 5.70276e-77 3.50809e-80 3.77647e-84 -1.77227e-86 -2.39512e-89 1.49042e-90 -3.5457e-87 7.69293e-84 -1.52211e-80 2.69934e-77 -4.19358e-74 5.53054e-71 -5.91769e-68 4.79513e-65 -2.63409e-62 8.32771e-60 -1.6473e-57 2.19816e-55 -2.06836e-53 1.40093e-51 -6.84535e-50 2.36689e-48 -5.50985e-47 7.7722e-46 -5.02898e-45 2.46026e-46 -6.86476e-45 1.43885e-44 -9.36977e-46 -2.57603e-46 -1.8632e-47 -7.62901e-49 -2.08368e-50 -4.05385e-52 -5.77238e-54 -6.02995e-56 -4.51999e-58 -2.29844e-60 -6.98695e-63 -9.11055e-66 -7.02052e-69 -3.7452e-72 -1.50828e-75 -4.65782e-79 9.12434e-83 -5.43563e-85 -1.12046e-89 3.2473e-91 2.31796e-94 9.09612e-98 2.49241e-101 5.24592e-105 8.94097e-109 1.2614e-112 5.47342e-117 5.2409e-119 -1.12955e-121 1.09813e-124 -1.51993e-128 -2.57901e-131 -8.24379e-135 -1.52444e-138 -2.04393e-142 1.70445e-146 -7.94241e-149 8.41521e-152 -4.95124e-155 1.13052e-159 2.40939e-68 -1.44753e-71 6.0484e-74 1.12559e-69 -9.8254e-67 4.29069e-64 -1.06246e-61 1.77334e-59 -2.2291e-57 2.1256e-55 -1.54339e-53 8.4584e-52 -3.39684e-50 9.45536e-49 -1.64391e-47 1.34665e-46 1.59856e-47 8.85847e-49 -1.77286e-49 -2.17922e-50 -1.1282e-51 -3.53881e-53 -7.52364e-55 -1.13989e-56 -1.25941e-58 -1.02097e-60 -6.02148e-63 -2.51633e-65 -7.04754e-68 -1.16724e-70 -6.98539e-74 1.06566e-76 2.90032e-79 3.27734e-82 2.04492e-85 2.92107e-89 -9.17259e-92 2.57869e-92 -5.43796e-89 1.04043e-85 -1.78448e-82 2.68299e-79 -3.42974e-76 3.56914e-73 -2.83397e-70 1.55397e-67 -5.14617e-65 1.10102e-62 -1.62773e-60 1.73401e-58 -1.36041e-56 7.91547e-55 -3.39612e-53 1.04932e-51 -2.21236e-50 2.8545e-49 -1.70426e-48 8.44758e-50 -2.27356e-48 4.5575e-48 -2.43064e-49 -8.16866e-50 -6.43044e-51 -2.86002e-52 -8.56067e-54 -1.85181e-55 -2.99189e-57 -3.65005e-59 -3.34894e-61 -2.25064e-63 -1.04577e-65 -2.9747e-68 -3.81445e-71 -2.92631e-74 -1.55988e-77 -6.27894e-81 -1.94668e-84 2.86086e-89 -1.49487e-90 -7.44146e-95 8.71596e-97 6.44656e-100 2.59505e-103 7.26976e-107 1.55879e-110 2.70569e-114 3.89638e-118 3.35001e-122 8.71863e-125 -1.86052e-127 1.79618e-130 -2.08998e-134 -4.31658e-137 -1.45035e-140 -2.79214e-144 -3.83389e-148 7.20689e-153 -1.01837e-154 1.04992e-157 -6.08068e-161 1.72303e-69 1.61714e-72 -5.75457e-75 7.27046e-72 -2.95639e-69 8.76582e-67 -1.6057e-64 2.17596e-62 -2.26625e-60 1.85593e-58 -1.18438e-56 5.79337e-55 -2.10035e-53 5.32119e-52 -8.46313e-51 6.38671e-50 8.26791e-51 5.03733e-52 -7.51958e-53 -1.07555e-53 -6.19052e-55 -2.15203e-56 -5.10226e-58 -8.7235e-60 -1.10656e-61 -1.05417e-63 -7.54021e-66 -3.99841e-68 -1.52688e-70 -3.96609e-73 -6.16925e-76 -3.41623e-79 5.78207e-82 1.50858e-84 1.69256e-87 1.0688e-90 1.86627e-94 3.49436e-94 -6.47649e-91 1.07504e-87 -1.56551e-84 1.94176e-81 -1.96795e-78 1.53394e-75 -8.40899e-73 2.90463e-70 -6.66865e-68 1.08032e-65 -1.28528e-63 1.14832e-61 -7.77917e-60 3.9901e-58 -1.53255e-56 4.2962e-55 -8.30845e-54 9.91296e-53 -5.50796e-52 2.7315e-53 -7.171e-52 1.37819e-51 -5.82989e-53 -2.45424e-53 -2.08402e-54 -9.94585e-56 -3.21447e-57 -7.58403e-59 -1.35447e-60 -1.86811e-62 -1.9934e-64 -1.62909e-66 -9.91423e-69 -4.2347e-71 -1.13063e-73 -1.42491e-76 -1.08769e-79 -5.79263e-83 -2.3322e-86 -7.27544e-90 -6.76077e-94 -3.80445e-96 -2.9171e-100 2.1315e-102 1.63075e-105 6.718e-109 1.92329e-112 4.20068e-116 7.40663e-120 1.08539e-123 1.16372e-127 1.37744e-130 -2.84643e-133 2.73293e-136 -2.586e-140 -6.69368e-143 -2.35718e-146 -4.71271e-150 -6.64718e-154 -1.64612e-158 -1.22979e-160 1.22016e-163 -3.35057e-72 7.70977e-75 -3.02588e-77 2.27046e-74 -5.64884e-72 1.3116e-69 -1.88958e-67 2.16747e-65 -1.95868e-63 1.41876e-61 -8.12809e-60 3.60865e-58 -1.19638e-56 2.78917e-55 -4.1061e-54 2.88119e-53 4.05253e-54 2.6919e-55 -3.02572e-56 -5.04322e-57 -3.18092e-58 -1.2074e-59 -3.14209e-61 -5.95301e-63 -8.478e-65 -9.22527e-67 -7.71006e-69 -4.92609e-71 -2.36937e-73 -8.32038e-76 -2.01143e-78 -2.94255e-81 -1.49302e-84 2.84553e-87 7.10362e-90 7.90185e-93 5.03857e-96 3.69664e-96 -5.9413e-93 8.38784e-90 -1.01062e-86 9.98899e-84 -7.65569e-81 4.20057e-78 -1.5077e-75 3.69031e-73 -6.49369e-71 8.52854e-69 -8.54642e-67 6.61528e-65 -3.9636e-63 1.8269e-61 -6.37941e-60 1.64158e-58 -2.94065e-57 3.2725e-56 -1.70481e-55 8.36699e-57 -2.16269e-55 3.99482e-55 -1.27967e-56 -7.02134e-57 -6.38369e-58 -3.24297e-59 -1.11693e-60 -2.83235e-62 -5.50717e-64 -8.3758e-66 -1.00665e-67 -9.54052e-70 -7.01627e-72 -3.89176e-74 -1.53632e-76 -3.86282e-79 -4.7826e-82 -3.63087e-85 -1.93136e-88 -7.78043e-92 -2.44447e-95 -3.87159e-99 -9.02368e-102 -9.14846e-106 4.76799e-108 3.76485e-111 1.5847e-114 4.62321e-118 1.0283e-121 1.84242e-125 2.74373e-129 3.24935e-133 2.09775e-136 -4.04863e-139 3.87485e-142 -2.82995e-146 -9.63842e-149 -3.5493e-152 -7.34961e-156 -1.06624e-159 -5.77563e-164 -1.40487e-166 2.38728e-74 1.07988e-77 -8.2207e-80 4.5189e-77 -7.92217e-75 1.53388e-72 -1.83039e-70 1.84095e-68 -1.48059e-66 9.68289e-65 -5.06116e-63 2.06562e-61 -6.33096e-60 1.37234e-58 -1.89099e-57 1.24646e-56 1.89139e-57 1.3584e-58 -1.14557e-59 -2.24528e-60 -1.53718e-61 -6.30121e-63 -1.77863e-64 -3.68262e-66 -5.79023e-68 -7.04783e-70 -6.7e-72 -4.97831e-74 -2.8713e-76 -1.26151e-78 -4.09219e-81 -9.23807e-84 -1.27239e-86 -5.84539e-90 1.27496e-92 3.04252e-95 3.34974e-98 3.03187e-98 -4.1506e-95 4.86356e-92 -4.69485e-89 3.54343e-86 -1.94773e-83 7.23973e-81 -1.87869e-78 3.5649e-76 -5.12098e-74 5.68876e-72 -4.95278e-70 3.39801e-68 -1.83328e-66 7.69829e-65 -2.47462e-63 5.90182e-62 -9.8686e-61 1.03141e-59 -5.06928e-59 2.43847e-60 -6.26267e-59 1.11343e-58 -2.49286e-60 -1.92131e-60 -1.85938e-61 -9.95014e-63 -3.63121e-64 -9.80524e-66 -2.04518e-67 -3.37632e-69 -4.47083e-71 -4.75356e-73 -4.03656e-75 -2.69331e-77 -1.37054e-79 -5.02424e-82 -1.19327e-84 -1.45104e-87 -1.09554e-90 -5.82309e-94 -2.34977e-97 -7.43833e-101 -1.47896e-104 -2.00746e-107 -2.47451e-111 9.7857e-114 7.96727e-117 3.42241e-120 1.01618e-123 2.29917e-127 4.18484e-131 6.32913e-135 7.90058e-139 3.13401e-142 -5.35551e-145 5.12855e-148 -2.63797e-152 -1.29139e-154 -4.96601e-158 -1.06433e-161 -1.58869e-165 -1.1917e-169 -1.75427e-76 -1.02354e-80 -1.90714e-82 6.58922e-80 -8.74167e-78 1.47934e-75 -1.51755e-73 1.36918e-71 -9.99121e-70 5.98816e-68 -2.89186e-66 1.09697e-64 -3.13858e-63 6.38551e-62 -8.30553e-61 5.18236e-60 8.43074e-61 6.49465e-62 -4.0284e-63 -9.49226e-64 -7.01087e-65 -3.07812e-66 -9.33788e-68 -2.09046e-69 -3.58254e-71 -4.80067e-73 -5.08956e-75 -4.29148e-77 -2.86519e-79 -1.50182e-81 -6.06237e-84 -1.82479e-86 -3.85834e-89 -5.00732e-92 -2.05141e-95 5.21907e-98 1.18879e-100 1.90795e-100 -2.17519e-97 2.05343e-94 -1.52844e-91 8.42267e-89 -3.23236e-86 8.84938e-84 -1.79956e-81 2.80577e-79 -3.42341e-77 3.31369e-75 -2.56272e-73 1.58526e-71 -7.80325e-70 3.0191e-68 -9.00906e-67 2.00846e-65 -3.15549e-64 3.11466e-63 -1.4519e-62 6.7857e-64 -1.74684e-62 2.99447e-62 -3.99266e-64 -5.03887e-64 -5.15594e-65 -2.90282e-66 -1.11323e-67 -3.17416e-69 -7.03606e-71 -1.24603e-72 -1.78583e-74 -2.08563e-76 -1.98251e-78 -1.52225e-80 -9.27958e-83 -4.3561e-85 -1.4891e-87 -3.35053e-90 -4.00246e-93 -3.00591e-96 -1.59687e-99 -6.44568e-103 -2.05125e-106 -4.60488e-110 -4.21331e-113 -5.99937e-117 1.84745e-119 1.55079e-122 6.79127e-126 2.0504e-129 4.71455e-133 8.71357e-137 1.33784e-140 1.72462e-144 4.66854e-148 -6.58218e-151 6.34738e-154 -1.90182e-158 -1.61292e-160 -6.47077e-164 -1.43411e-167 -2.20467e-171 4.21248e-79 -4.19776e-82 -6.46839e-85 7.58069e-83 -7.99013e-81 1.21964e-78 -1.10412e-76 9.09383e-75 -6.10841e-73 3.39547e-71 -1.53067e-69 5.44564e-68 -1.4664e-66 2.82509e-65 -3.49184e-64 2.07681e-63 3.60138e-64 2.94853e-65 -1.29009e-66 -3.80895e-67 -3.02514e-68 -1.41416e-69 -4.5783e-71 -1.09908e-72 -2.03216e-74 -2.9619e-76 -3.4543e-78 -3.23713e-80 -2.44328e-82 -1.47768e-84 -7.08648e-87 -2.64182e-89 -7.40766e-92 -1.47082e-94 -1.79947e-97 -6.44131e-101 1.95004e-103 9.08696e-103 -8.39528e-100 6.17042e-97 -3.41071e-94 1.34778e-91 -3.87626e-89 8.40192e-87 -1.41223e-84 1.87779e-82 -2.00201e-80 1.72521e-78 -1.20514e-76 6.81042e-75 -3.09103e-73 1.11151e-71 -3.1e-70 6.49704e-69 -9.64768e-68 9.03294e-67 -4.01219e-66 1.8078e-67 -4.70481e-66 7.79236e-66 -3.7498e-68 -1.26994e-67 -1.37127e-68 -8.07465e-70 -3.24016e-71 -9.69061e-73 -2.26643e-74 -4.25669e-76 -6.5266e-78 -8.23834e-80 -8.58653e-82 -7.36567e-84 -5.15255e-86 -2.88628e-88 -1.25557e-90 -4.0182e-93 -8.5896e-96 -1.00755e-98 -7.51792e-102 -3.98961e-105 -1.61281e-108 -5.15988e-112 -1.24343e-115 -8.38193e-119 -1.32879e-122 3.21455e-125 2.78478e-128 1.24251e-131 3.8122e-135 8.90146e-139 1.66954e-142 2.6003e-146 3.42673e-150 6.98604e-154 -7.4986e-157 7.36087e-160 -6.40548e-165 -1.8808e-166 -7.86267e-170 -1.7991e-173 3.27016e-80 2.86989e-83 2.15989e-86 7.21471e-86 -6.2649e-84 8.80358e-82 -7.17926e-80 5.47075e-78 -3.42263e-76 1.78182e-74 -7.56111e-73 2.54232e-71 -6.49125e-70 1.1925e-68 -1.41042e-67 8.02993e-67 1.47239e-67 1.27311e-68 -3.63113e-70 -1.45276e-70 -1.23778e-71 -6.13363e-73 -2.1078e-74 -5.38954e-76 -1.06686e-77 -1.67796e-79 -2.12251e-81 -2.18109e-83 -1.82618e-85 -1.24504e-87 -6.86902e-90 -3.03109e-92 -1.04823e-94 -2.74743e-97 -5.13429e-100 -5.92252e-103 -1.83475e-106 3.22227e-105 -2.34058e-102 1.29811e-99 -5.26901e-97 1.58588e-94 -3.64624e-92 6.56902e-90 -9.45322e-88 1.10125e-85 -1.04734e-83 8.16539e-82 -5.21876e-80 2.72294e-78 -1.14962e-76 3.86989e-75 -1.01558e-73 2.01001e-72 -2.82708e-71 2.52164e-70 -1.07095e-69 4.61755e-71 -1.22511e-69 1.96392e-69 6.32799e-72 -3.09159e-71 -3.51883e-72 -2.15631e-73 -8.99935e-75 -2.80661e-76 -6.87228e-78 -1.35891e-79 -2.20781e-81 -2.97796e-83 -3.35113e-85 -3.14722e-87 -2.4551e-89 -1.57297e-91 -8.13932e-94 -3.29639e-96 -9.91404e-99 -2.01744e-101 -2.32343e-104 -1.7227e-107 -9.13034e-111 -3.69651e-114 -1.18858e-117 -2.99324e-121 -1.58549e-124 -2.72046e-128 5.16194e-131 4.62471e-134 2.1016e-137 6.55073e-141 1.553e-144 2.95595e-148 4.67067e-152 6.26056e-156 1.04796e-159 -7.87201e-163 8.0085e-166 1.04879e-170 -2.05027e-172 -8.92793e-176 -4.21779e-83 1.24314e-85 2.04728e-88 5.88786e-89 -4.31426e-87 5.66801e-85 -4.22991e-83 3.01394e-81 -1.77299e-79 8.71777e-78 -3.50827e-76 1.12265e-74 -2.73459e-73 4.81491e-72 -5.46878e-71 2.98997e-70 5.76713e-71 5.23798e-72 -8.18568e-74 -5.27433e-74 -4.8116e-75 -2.52038e-76 -9.15108e-78 -2.4797e-79 -5.2318e-81 -8.78661e-83 -1.19579e-84 -1.3314e-86 -1.21985e-88 -9.20836e-91 -5.71315e-93 -2.89255e-95 -1.1802e-97 -3.80092e-100 -9.34033e-103 -1.64602e-105 -1.80145e-108 8.37123e-108 -4.65929e-105 1.93817e-102 -6.08264e-100 1.47723e-97 -2.83848e-95 4.39456e-93 -5.55492e-91 5.78305e-89 -4.98297e-87 3.55875e-85 -2.10234e-83 1.02144e-81 -4.0408e-80 1.28146e-78 -3.18278e-77 5.97981e-76 -8.00419e-75 6.81557e-74 -2.77227e-73 1.13398e-74 -3.08955e-73 4.79806e-73 5.19888e-75 -7.27301e-75 -8.70549e-76 -5.53604e-77 -2.39515e-78 -7.75304e-80 -1.97617e-81 -4.08601e-83 -6.98041e-85 -9.96746e-87 -1.19727e-88 -1.213e-90 -1.03364e-92 -7.36999e-95 -4.35798e-97 -2.09376e-99 -7.92291e-102 -2.24433e-104 -4.35688e-107 -4.92616e-110 -3.62891e-113 -1.92075e-116 -7.78817e-120 -2.5161e-123 -6.52129e-127 -2.85606e-130 -5.19023e-134 7.65369e-137 7.11829e-140 3.29393e-143 1.04262e-146 2.50867e-150 4.84487e-154 7.76519e-158 1.0588e-161 1.56275e-165 -7.52586e-169 8.19502e-172 2.8493e-176 -2.09201e-178 1.94664e-85 8.42474e-89 4.78485e-91 4.29781e-92 -2.646e-90 3.29539e-88 -2.28068e-86 1.53341e-84 -8.55294e-83 4.00297e-81 -1.54136e-79 4.70201e-78 -1.09699e-76 1.85917e-75 -2.03563e-74 1.07222e-73 2.16539e-74 2.0573e-75 -9.39988e-78 -1.82376e-77 -1.78155e-78 -9.83729e-80 -3.76267e-81 -1.07782e-82 -2.40328e-84 -4.28893e-86 -6.22924e-88 -7.44996e-90 -7.3864e-92 -6.09134e-94 -4.17712e-96 -2.3732e-98 -1.10829e-100 -4.19888e-103 -1.26367e-105 -2.91918e-108 -4.88761e-111 1.58132e-110 -6.72949e-108 2.19462e-105 -5.60703e-103 1.14444e-100 -1.89651e-98 2.58558e-96 -2.92592e-94 2.76339e-92 -2.18347e-90 1.44266e-88 -7.94258e-87 3.61861e-85 -1.34941e-83 4.05248e-82 -9.56992e-81 1.71457e-79 -2.19329e-78 1.78828e-77 -6.98025e-77 2.68281e-78 -7.56203e-77 1.13596e-76 2.0533e-78 -1.65754e-78 -2.08261e-79 -1.37021e-80 -6.12528e-82 -2.05087e-83 -5.41789e-85 -1.16499e-86 -2.07913e-88 -3.11894e-90 -3.96342e-92 -4.28091e-94 -3.92561e-96 -3.0622e-98 -2.01092e-100 -1.10114e-102 -4.92875e-105 -1.74822e-107 -4.67688e-110 -8.6781e-113 -9.63256e-116 -7.04901e-119 -3.72587e-122 -1.51308e-125 -4.91026e-129 -1.29786e-132 -4.89931e-136 -9.27401e-140 1.04735e-142 1.01741e-145 4.79526e-149 1.54083e-152 3.75862e-156 7.36131e-160 1.19704e-163 1.65706e-167 2.27098e-171 -6.3916e-175 7.90765e-178 4.46654e-182 -1.25713e-87 -1.23603e-91 7.97217e-95 2.8603e-95 -1.47118e-93 1.7472e-91 -1.13441e-89 7.25589e-88 -3.86942e-86 1.7406e-84 -6.399e-83 1.86975e-81 -4.19965e-80 6.87404e-79 -7.27665e-78 3.7029e-77 7.80081e-78 7.72628e-79 3.88063e-81 -5.99817e-81 -6.29557e-82 -3.66443e-83 -1.47301e-84 -4.42813e-86 -1.04042e-87 -1.96158e-89 -3.02303e-91 -3.85485e-93 -4.10036e-95 -3.65468e-97 -2.73391e-99 -1.714e-101 -8.96482e-104 -3.87884e-106 -1.36963e-108 -3.86351e-111 -8.46044e-114 2.21023e-113 -7.47151e-111 2.00008e-108 -4.32072e-106 7.63194e-104 -1.11645e-101 1.36506e-99 -1.40319e-97 1.21646e-95 -8.89923e-94 5.48347e-92 -2.83266e-90 1.21726e-88 -4.30081e-87 1.2286e-85 -2.76944e-84 4.74879e-83 -5.82598e-82 4.56228e-81 -1.71268e-80 6.11807e-82 -1.79635e-80 2.61789e-80 6.52816e-82 -3.666e-82 -4.82914e-83 -3.27887e-84 -1.51002e-85 -5.21263e-87 -1.4221e-88 -3.16633e-90 -5.8726e-92 -9.19424e-94 -1.2264e-95 -1.40075e-97 -1.36922e-99 -1.14785e-101 -8.2314e-104 -5.00128e-106 -2.54662e-108 -1.06547e-110 -3.55258e-113 -8.99725e-116 -1.59859e-118 -1.74194e-121 -1.2661e-124 -6.68275e-128 -2.71814e-131 -8.85912e-135 -2.37458e-138 -7.9933e-142 -1.55648e-145 1.32035e-148 1.35233e-151 6.49345e-155 2.11747e-158 5.23802e-162 1.03978e-165 1.71405e-169 2.40509e-173 3.16251e-177 -4.55196e-181 7.22124e-184 2.44885e-90 -2.52444e-93 -2.28887e-96 1.43261e-98 -7.45409e-97 8.51725e-95 -5.23775e-93 3.21963e-91 -1.65559e-89 7.12829e-88 -2.51803e-86 7.0777e-85 -1.53645e-83 2.43573e-82 -2.4992e-81 1.23179e-80 2.69831e-81 2.77764e-82 3.73037e-84 -1.87547e-84 -2.13756e-85 -1.30598e-86 -5.48808e-88 -1.72816e-89 -4.25906e-91 -8.44893e-93 -1.37447e-94 -1.85785e-96 -2.10509e-98 -2.01083e-100 -1.62392e-102 -1.10915e-104 -6.39212e-107 -3.09208e-109 -1.24434e-111 -4.10845e-114 -1.09607e-116 2.40465e-116 -6.72673e-114 1.53178e-111 -2.87376e-109 4.49161e-107 -5.90352e-105 6.56545e-103 -6.201e-101 4.9811e-99 -3.40045e-97 1.967e-95 -9.58836e-94 3.90549e-92 -1.31308e-90 3.58186e-89 -7.73339e-88 1.27318e-86 -1.50254e-85 1.13319e-84 -4.09864e-84 1.34139e-85 -4.15914e-84 5.88538e-84 1.85049e-85 -7.88204e-86 -1.08752e-86 -7.60289e-88 -3.59782e-89 -1.27697e-90 -3.58666e-92 -8.23828e-94 -1.58091e-95 -2.57132e-97 -3.58105e-99 -4.283e-101 -4.42687e-103 -3.95155e-105 -3.04475e-107 -2.01712e-109 -1.1384e-111 -5.40913e-114 -2.1217e-116 -6.66725e-119 -1.60204e-121 -2.73009e-124 -2.92049e-127 -2.10805e-130 -1.11106e-133 -4.52644e-137 -1.4815e-140 -4.01285e-144 -1.23807e-147 -2.45701e-151 1.52839e-154 1.67318e-157 8.19162e-161 2.70984e-164 6.79271e-168 1.36588e-171 2.28118e-175 3.24295e-179 4.18141e-183 -2.21159e-187 1.89001e-91 1.63925e-94 1.261e-97 9.71432e-101 -3.47771e-100 3.84086e-98 -2.26302e-96 1.34923e-94 -6.65693e-93 2.76283e-91 -9.40856e-90 2.55486e-88 -5.37787e-87 8.27815e-86 -8.25086e-85 3.94709e-84 8.9663e-85 9.54812e-86 1.99594e-87 -5.6144e-88 -6.95392e-89 -4.45656e-90 -1.95457e-91 -6.42194e-93 -1.65494e-94 -3.44068e-96 -5.88363e-98 -8.38812e-100 -1.00662e-101 -1.0234e-103 -8.84913e-106 -6.51823e-108 -4.08761e-110 -2.17566e-112 -9.77273e-115 -3.67049e-117 -1.14381e-119 2.13676e-119 -5.11533e-117 1.01544e-114 -1.68931e-112 2.37653e-110 -2.84516e-108 2.91046e-106 -2.54918e-104 1.91204e-102 -1.22602e-100 6.69496e-99 -3.09441e-97 1.1997e-95 -3.85253e-94 1.00682e-92 -2.08824e-91 3.31003e-90 -3.76763e-89 2.74272e-88 -9.5635e-88 2.83179e-89 -9.40234e-88 1.29285e-87 4.86236e-89 -1.65024e-89 -2.38346e-90 -1.71201e-91 -8.30442e-93 -3.02225e-94 -8.71417e-96 -2.05971e-97 -4.08315e-99 -6.85299e-101 -9.89572e-103 -1.2359e-104 -1.33886e-106 -1.26205e-108 -1.03454e-110 -7.361e-113 -4.52413e-115 -2.37992e-117 -1.05846e-119 -3.90278e-122 -1.15852e-124 -2.64644e-127 -4.33223e-130 -4.54971e-133 -3.26088e-136 -1.71611e-139 -7.0029e-143 -2.30144e-146 -6.28397e-150 -1.81503e-153 -3.64697e-157 1.6119e-160 1.92928e-163 9.64776e-167 3.23861e-170 8.22789e-174 1.67628e-177 2.8363e-181 4.0844e-185 5.23103e-189 -2.07253e-94 5.78116e-97 9.53654e-100 1.14086e-102 -1.49306e-103 1.61648e-101 -9.22716e-100 5.30262e-98 -2.52959e-96 1.01448e-94 -3.34472e-93 8.80759e-92 -1.80262e-90 2.70026e-89 -2.61935e-88 1.21785e-87 2.85664e-88 3.15153e-89 8.704e-91 -1.59891e-91 -2.17351e-92 -1.46023e-93 -6.66555e-95 -2.27946e-96 -6.12229e-98 -1.32956e-99 -2.38091e-101 -3.56522e-103 -4.50939e-105 -4.85195e-107 -4.46174e-109 -3.51576e-111 -2.37553e-113 -1.37431e-115 -6.78343e-118 -2.83958e-120 -1.00487e-122 1.61146e-122 -3.37738e-120 5.95798e-118 -8.93555e-116 1.14655e-113 -1.26401e-111 1.20017e-109 -9.82259e-108 6.924e-106 -4.19314e-104 2.17191e-102 -9.55791e-101 3.53998e-99 -1.08922e-97 2.73489e-96 -5.46304e-95 8.35665e-94 -9.19449e-93 6.47299e-92 -2.17945e-91 5.75203e-93 -2.07798e-91 2.77866e-91 1.20765e-92 -3.36876e-93 -5.0917e-94 -3.75059e-95 -1.8613e-96 -6.94163e-98 -2.05055e-99 -4.96719e-101 -1.00872e-102 -1.74824e-104 -2.60827e-106 -3.37995e-108 -3.81952e-110 -3.77313e-112 -3.26332e-114 -2.46845e-116 -1.62854e-118 -9.31967e-121 -4.58391e-123 -1.91342e-125 -6.64811e-128 -1.86816e-130 -4.06446e-133 -6.40051e-136 -6.59924e-139 -4.6958e-142 -2.46728e-145 -1.00816e-148 -3.32424e-152 -9.1363e-156 -2.5154e-159 -5.10114e-163 1.52612e-166 2.07398e-169 1.06217e-172 3.6202e-176 9.32397e-180 1.92513e-183 3.30099e-187 4.81619e-191 7.07027e-97 2.40108e-100 1.73337e-102 4.38476e-105 -5.38508e-107 6.38511e-105 -3.53143e-103 1.96739e-101 -9.09071e-100 3.53722e-98 -1.13291e-96 2.90318e-95 -5.79085e-94 8.4581e-93 -7.99564e-92 3.61251e-91 8.75568e-92 1.00032e-92 3.36859e-94 -4.33389e-95 -6.5298e-96 -4.59899e-97 -2.1818e-98 -7.7458e-100 -2.1625e-101 -4.89053e-103 -9.14102e-105 -1.43241e-106 -1.90164e-108 -2.15519e-110 -2.09608e-112 -1.75517e-114 -1.26771e-116 -7.89571e-119 -4.23152e-121 -1.94438e-123 -7.66079e-126 1.05817e-125 -1.9768e-123 3.14844e-121 -4.31175e-119 5.09976e-117 -5.22325e-115 4.63794e-113 -3.56962e-111 2.37773e-109 -1.36643e-107 6.74116e-106 -2.83478e-104 1.00621e-102 -2.9749e-101 7.19433e-100 -1.38705e-98 2.0515e-97 -2.18568e-96 1.49091e-95 -4.85921e-95 1.12129e-96 -4.49328e-95 5.84862e-95 2.86724e-96 -6.71692e-97 -1.06429e-97 -8.03203e-99 -4.0677e-100 -1.54642e-101 -4.66177e-103 -1.15436e-104 -2.40472e-106 -4.27932e-108 -6.58137e-110 -8.81233e-112 -1.03322e-113 -1.06403e-115 -9.64072e-118 -7.68906e-120 -5.38961e-122 -3.30891e-124 -1.7688e-126 -8.15678e-129 -3.20346e-131 -1.05109e-133 -2.80144e-136 -5.81485e-139 -8.82033e-142 -8.92836e-145 -6.30488e-148 -3.30584e-151 -1.3526e-154 -4.47718e-158 -1.23783e-161 -3.29154e-165 -6.72379e-169 1.25772e-172 2.07819e-175 1.09421e-178 3.78959e-182 9.89727e-186 2.07137e-189 3.60001e-193 -4.56465e-99 -1.03694e-102 -5.41293e-106 5.28043e-108 -7.13673e-111 2.36548e-108 -1.27497e-106 6.88982e-105 -3.09758e-103 1.1729e-101 -3.66117e-100 9.15843e-99 -1.78368e-97 2.54456e-96 -2.34507e-95 1.03094e-94 2.58916e-95 3.05332e-96 1.19785e-97 -1.11317e-98 -1.88755e-99 -1.39406e-100 -6.86534e-102 -2.52529e-103 -7.31059e-105 -1.71715e-106 -3.34022e-108 -5.45991e-110 -7.58067e-112 -9.01228e-114 -9.22863e-116 -8.16767e-118 -6.26473e-120 -4.16869e-122 -2.40386e-124 -1.19832e-126 -5.17398e-129 6.16971e-129 -1.04312e-126 1.5188e-124 -1.91882e-122 2.10987e-120 -2.02226e-118 1.68982e-116 -1.22973e-114 7.77685e-113 -4.25847e-111 2.00825e-109 -8.09568e-108 2.76177e-106 -7.86581e-105 1.83626e-103 -3.4237e-102 4.90456e-101 -5.06732e-100 3.3551e-99 -1.06144e-98 2.08862e-100 -9.51771e-99 1.20822e-98 6.56677e-100 -1.31147e-100 -2.17456e-101 -1.6777e-102 -8.65386e-104 -3.34283e-105 -1.02798e-106 -2.59929e-108 -5.53689e-110 -1.00976e-111 -1.59471e-113 -2.19949e-115 -2.66441e-117 -2.84612e-119 -2.68694e-121 -2.24412e-123 -1.65764e-125 -1.08066e-127 -6.19381e-130 -3.10154e-132 -1.3443e-134 -4.97834e-137 -1.54562e-139 -3.9141e-142 -7.76326e-145 -1.1356e-147 -1.12838e-150 -7.90651e-154 -4.13763e-157 -1.69535e-160 -5.63328e-164 -1.56609e-167 -4.06303e-171 -8.35235e-175 8.3279e-179 1.93924e-181 1.05557e-184 3.71892e-188 9.85278e-192 2.09072e-195 8.06144e-102 -7.14162e-105 -8.12564e-108 -6.69125e-111 7.3393e-116 8.24812e-112 -4.33911e-110 2.28409e-108 -1.00206e-106 3.70454e-105 -1.13022e-103 2.76707e-102 -5.26995e-101 7.34526e-100 -6.60004e-99 2.84477e-98 7.37573e-99 8.97597e-100 3.98121e-101 -2.69517e-102 -5.25271e-103 -4.07072e-104 -2.07964e-105 -7.91299e-107 -2.37046e-108 -5.76943e-110 -1.165e-111 -1.98076e-113 -2.86739e-115 -3.5639e-117 -3.82803e-119 -3.56625e-121 -2.88959e-123 -2.0398e-125 -1.2553e-127 -6.72565e-130 -3.14624e-132 3.24572e-132 -5.02799e-130 6.7602e-128 -7.94473e-126 8.17806e-124 -7.37961e-122 5.83407e-120 -4.03329e-118 2.43156e-116 -1.27327e-114 5.75813e-113 -2.23155e-111 7.33525e-110 -2.01718e-108 4.55526e-107 -8.22925e-106 1.14377e-104 -1.14781e-103 7.38835e-103 -2.27373e-102 3.6924e-104 -1.97911e-102 2.44906e-102 1.45446e-103 -2.50232e-104 -4.34612e-105 -3.42164e-106 -1.7916e-107 -7.04419e-109 -2.20422e-110 -5.68177e-112 -1.235e-113 -2.30216e-115 -3.72418e-117 -5.27348e-119 -6.57768e-121 -7.25802e-123 -7.10524e-125 -6.18054e-127 -4.77883e-129 -3.28151e-131 -1.99616e-133 -1.07112e-135 -5.03716e-138 -2.05663e-140 -7.19645e-143 -2.11808e-145 -5.10565e-148 -9.68919e-151 -1.36815e-153 -1.33452e-156 -9.27755e-160 -4.8454e-163 -1.98822e-166 -6.63199e-170 -1.85355e-173 -4.72813e-177 -9.77786e-181 3.13592e-185 1.68172e-187 9.54033e-191 3.42507e-194 9.21159e-198 5.82967e-103 5.14718e-106 4.12841e-109 3.01469e-112 2.12611e-115 2.70863e-115 -1.39541e-113 7.17211e-112 -3.08118e-110 1.11569e-108 -3.33631e-107 8.01016e-106 -1.49333e-104 2.03099e-103 -1.79217e-102 7.57052e-102 2.02717e-102 2.54295e-103 1.24941e-104 -6.0928e-106 -1.40789e-106 -1.14618e-107 -6.07099e-109 -2.38683e-110 -7.38575e-112 -1.85893e-113 -3.88784e-115 -6.86159e-117 -1.03335e-118 -1.34034e-120 -1.50339e-122 -1.46694e-124 -1.24964e-126 -9.31108e-129 -6.07537e-131 -3.47132e-133 -1.74335e-135 1.56009e-135 -2.23674e-133 2.80024e-131 -3.0826e-129 2.98777e-127 -2.55093e-125 1.91673e-123 -1.26408e-121 7.29121e-120 -3.66263e-118 1.59285e-116 -5.94958e-115 1.88873e-113 -5.02558e-112 1.09994e-110 -1.92874e-109 2.6053e-108 -2.54357e-107 1.59416e-106 -4.7796e-106 6.10115e-108 -4.03819e-106 4.87435e-106 3.12875e-107 -4.6687e-108 -8.48602e-109 -6.81119e-110 -3.62709e-111 -1.44863e-112 -4.6067e-114 -1.20792e-115 -2.67437e-117 -5.08473e-119 -8.40461e-121 -1.21861e-122 -1.56015e-124 -1.77209e-126 -1.79157e-128 -1.61546e-130 -1.30041e-132 -9.3437e-135 -5.98428e-137 -3.40647e-139 -1.71565e-141 -7.59509e-144 -2.92773e-146 -9.69945e-149 -2.71056e-151 -6.22631e-154 -1.132e-156 -1.54461e-159 -1.47916e-162 -1.02011e-165 -5.31674e-169 -2.18483e-172 -7.3162e-176 -2.05548e-179 -5.1857e-183 -1.07895e-186 -2.17637e-191 1.35014e-193 8.08236e-197 2.96372e-200 -6.58608e-106 1.3495e-108 2.36728e-111 2.96964e-114 3.02146e-117 8.66988e-119 -4.24528e-117 2.13696e-115 -9.01339e-114 3.2057e-112 -9.41775e-111 2.21992e-109 -4.04743e-108 5.41127e-107 -4.69038e-106 1.94665e-105 5.37607e-106 6.94854e-107 3.72602e-108 -1.26422e-109 -3.63511e-110 -3.11424e-111 -1.70949e-112 -6.9392e-114 -2.21493e-115 -5.75541e-117 -1.24491e-118 -2.2792e-120 -3.56302e-122 -4.79837e-124 -5.60654e-126 -5.70965e-128 -5.09157e-130 -3.986e-132 -2.74339e-134 -1.66103e-136 -8.88764e-139 6.91983e-139 -9.25911e-137 1.08694e-134 -1.12746e-132 1.03396e-130 -8.38724e-129 6.0145e-127 -3.79851e-125 2.10294e-123 -1.01619e-121 4.26033e-120 -1.53716e-118 4.72252e-117 -1.21815e-115 2.58854e-114 -4.4128e-113 5.8017e-112 -5.51845e-111 3.3722e-110 -9.86361e-110 9.14084e-112 -8.09419e-110 9.52877e-110 6.54715e-111 -8.49076e-112 -1.62305e-112 -1.32857e-113 -7.18615e-115 -2.91208e-116 -9.3975e-118 -2.50271e-119 -5.63362e-121 -1.09041e-122 -1.83762e-124 -2.72157e-126 -3.5668e-128 -4.1575e-130 -4.32564e-132 -4.02704e-134 -3.35933e-136 -2.51209e-138 -1.6829e-140 -1.00831e-142 -5.3858e-145 -2.55297e-147 -1.06608e-149 -3.88586e-152 -1.2204e-154 -3.24279e-157 -7.1083e-160 -1.23969e-162 -1.63628e-165 -1.5385e-168 -1.05246e-171 -5.47365e-175 -2.25269e-178 -7.57348e-182 -2.13934e-185 -5.36415e-189 -1.12394e-192 -6.82323e-197 9.96264e-200 6.41421e-203 1.6198e-108 1.67578e-112 3.0105e-114 8.64262e-117 1.36118e-119 4.1899e-122 -1.22383e-120 6.04595e-119 -2.50947e-117 8.7876e-116 -2.53969e-114 5.87525e-113 -1.05507e-111 1.38795e-110 -1.18464e-109 4.83652e-109 1.37687e-109 1.8322e-110 1.0605e-111 -2.32281e-113 -9.04317e-114 -8.17062e-115 -4.64764e-116 -1.94659e-117 -6.40357e-119 -1.71632e-120 -3.84273e-122 -7.26757e-124 -1.17556e-125 -1.64077e-127 -1.99043e-129 -2.11e-131 -1.96295e-133 -1.60801e-135 -1.16213e-137 -7.41751e-140 -4.20198e-142 2.85507e-142 -3.59029e-140 3.9754e-138 -3.90518e-136 3.40252e-134 -2.63314e-132 1.80873e-130 -1.09764e-128 5.8492e-127 -2.72558e-125 1.10398e-123 -3.85528e-122 1.14836e-120 -2.87642e-119 5.94385e-118 -9.86531e-117 1.26416e-115 -1.17306e-114 6.99767e-114 -1.99925e-113 1.15165e-115 -1.59286e-113 1.82673e-113 1.33322e-114 -1.51209e-115 -3.04662e-116 -2.5416e-117 -1.39485e-118 -5.72939e-120 -1.87399e-121 -5.06166e-123 -1.15663e-124 -2.27505e-126 -3.90152e-128 -5.88944e-130 -7.88195e-132 -9.40246e-134 -1.00369e-135 -9.61431e-138 -8.27846e-140 -6.41369e-142 -4.47142e-144 -2.80265e-146 -1.57519e-148 -7.91183e-151 -3.53452e-153 -1.3945e-155 -4.81415e-158 -1.43556e-160 -3.63207e-163 -7.60762e-166 -1.27423e-168 -1.62848e-171 -1.50354e-174 -1.02018e-177 -5.295e-181 -2.1831e-184 -7.37236e-188 -2.09472e-191 -5.23769e-195 -1.10516e-198 -1.01639e-202 6.66953e-206 -1.16722e-110 -4.6322e-114 -4.06741e-117 4.95155e-120 2.2836e-122 5.50443e-125 -3.34458e-124 1.62609e-122 -6.65257e-121 2.29747e-119 -6.53633e-118 1.49111e-116 -2.64208e-115 3.42922e-114 -2.88645e-113 1.16142e-112 3.40652e-113 4.66469e-114 2.8896e-115 -3.43403e-117 -2.16784e-117 -2.07093e-118 -1.22097e-119 -5.27425e-121 -1.78819e-122 -4.95089e-124 -1.14187e-125 -2.22761e-127 -3.72005e-129 -5.36938e-131 -6.74753e-133 -7.42452e-135 -7.1856e-137 -6.13839e-139 -4.6401e-141 -3.10822e-143 -1.85456e-145 1.10295e-145 -1.31118e-143 1.3761e-141 -1.28567e-139 1.06875e-137 -7.92146e-136 5.22962e-134 -3.05735e-132 1.57207e-130 -7.08006e-129 2.77624e-127 -9.40084e-126 2.71934e-124 -6.62444e-123 1.33308e-121 -2.15706e-120 2.69721e-119 -2.44456e-118 1.42536e-117 -3.97962e-117 8.93152e-120 -3.06922e-117 3.43905e-117 2.65467e-118 -2.63843e-119 -5.61773e-120 -4.77284e-121 -2.65539e-122 -1.10443e-123 -3.65753e-125 -1.00073e-126 -2.31819e-128 -4.62684e-130 -8.06047e-132 -1.23776e-133 -1.68791e-135 -2.05566e-137 -2.24534e-139 -2.20629e-141 -1.95464e-143 -1.56342e-145 -1.12959e-147 -7.36237e-150 -4.32515e-152 -2.28435e-154 -1.08091e-156 -4.55973e-159 -1.70274e-161 -5.5762e-164 -1.58102e-166 -3.81375e-169 -7.6424e-172 -1.23079e-174 -1.52453e-177 -1.38259e-180 -9.30647e-184 -4.82108e-187 -1.99136e-190 -6.75395e-194 -1.92994e-197 -4.82414e-201 -1.02538e-204 -1.1905e-208 1.92196e-113 -1.34727e-116 -2.03772e-119 -2.46171e-122 -9.64781e-126 4.52477e-128 -8.67178e-128 4.15967e-126 -1.68009e-124 5.72824e-123 -1.60888e-121 3.62827e-120 -6.35896e-119 8.15567e-118 -6.7848e-117 2.69534e-116 8.14372e-117 1.14711e-117 7.55432e-119 -2.52736e-121 -5.00763e-121 -5.07364e-122 -3.10244e-123 -1.3827e-124 -4.84041e-126 -1.37841e-127 -3.27123e-129 -6.5712e-131 -1.13122e-132 -1.68516e-134 -2.18907e-136 -2.49438e-138 -2.50485e-140 -2.22507e-142 -1.75332e-144 -1.22789e-146 -7.68281e-149 4.0113e-149 -4.53069e-147 4.52579e-145 -4.03737e-143 3.21587e-141 -2.29085e-139 1.45733e-137 -8.22314e-136 4.08897e-134 -1.78371e-132 6.78454e-131 -2.23156e-129 6.27834e-128 -1.48942e-126 2.92279e-125 -4.61686e-124 5.63949e-123 -4.99607e-122 2.84901e-121 -7.76863e-121 -1.0002e-123 -5.81458e-121 6.37132e-121 5.17512e-122 -4.50971e-123 -1.01823e-123 -8.80559e-125 -4.96222e-126 -2.08798e-127 -6.99434e-129 -1.93647e-130 -4.54217e-132 -9.18694e-134 -1.62347e-135 -2.53178e-137 -3.51122e-139 -4.35624e-141 -4.85686e-143 -4.88337e-145 -4.44075e-147 -3.65475e-149 -2.72341e-151 -1.83803e-153 -1.12244e-155 -6.19403e-158 -3.08084e-160 -1.37614e-162 -5.49162e-165 -1.94397e-167 -6.04727e-170 -1.63236e-172 -3.75865e-175 -7.21444e-178 -1.11844e-180 -1.344e-183 -1.19748e-186 -7.99514e-190 -4.13323e-193 -1.71029e-196 -5.82599e-200 -1.67446e-203 -4.19261e-207 -8.97936e-211 1.2243e-114 1.12293e-117 9.54015e-121 7.32893e-124 5.40858e-127 4.06119e-130 -2.1021e-131 1.01253e-129 -4.04241e-128 1.36342e-126 -3.7898e-125 8.46966e-124 -1.47013e-122 1.86725e-121 -1.53836e-120 6.04531e-120 1.8814e-120 2.72559e-121 1.89823e-122 7.73155e-125 -1.11453e-124 -1.20278e-125 -7.63649e-127 -3.51873e-128 -1.26656e-129 -3.70765e-131 -9.04189e-133 -1.86805e-134 -3.31022e-136 -5.08139e-138 -6.81069e-140 -8.01978e-142 -8.33705e-144 -7.68128e-146 -6.29148e-148 -4.59125e-150 -3.00116e-152 1.37972e-152 -1.48718e-150 1.41933e-148 -1.2136e-146 9.29654e-145 -6.38456e-143 3.92097e-141 -2.13944e-139 1.03079e-137 -4.36377e-136 1.61297e-134 -5.16228e-133 1.41484e-131 -3.2724e-130 6.26835e-129 -9.67703e-128 1.1554e-126 -1.00048e-125 5.5766e-125 -1.48867e-124 -7.14686e-127 -1.08412e-124 1.1622e-124 9.88863e-126 -7.55079e-127 -1.81513e-127 -1.59714e-128 -9.11008e-130 -3.8749e-131 -1.31181e-132 -3.67154e-134 -8.71094e-136 -1.7834e-137 -3.19279e-139 -5.0495e-141 -7.11048e-143 -8.96989e-145 -1.0188e-146 -1.04634e-148 -9.73529e-151 -8.21463e-153 -6.2938e-155 -4.38023e-157 -2.76876e-159 -1.58804e-161 -8.25114e-164 -3.8727e-166 -1.63565e-168 -6.1837e-171 -2.0777e-173 -6.14657e-176 -1.58131e-178 -3.4801e-181 -6.40629e-184 -9.57103e-187 -1.11673e-189 -9.7765e-193 -6.47395e-196 -3.33964e-199 -1.38436e-202 -4.73653e-206 -1.36946e-209 -3.43972e-213 1.20783e-118 3.36255e-120 5.07711e-123 6.29041e-126 6.56149e-129 6.25145e-132 4.94084e-136 2.34575e-133 -9.27591e-132 3.09771e-130 -8.54748e-129 1.89658e-127 -3.26725e-126 4.11718e-125 -3.3653e-124 1.31044e-123 4.20079e-124 6.25844e-125 4.59193e-126 4.87888e-128 -2.39093e-128 -2.76637e-129 -1.82462e-130 -8.66186e-132 -3.20577e-133 -9.63724e-135 -2.41347e-136 -5.12251e-138 -9.33302e-140 -1.47431e-141 -2.03566e-143 -2.47261e-145 -2.65552e-147 -2.53193e-149 -2.15018e-151 -1.63039e-153 -1.1098e-155 4.50559e-156 -4.65332e-154 4.25819e-152 -3.5019e-150 2.58775e-148 -1.71744e-146 1.02035e-144 -5.39388e-143 2.52239e-141 -1.03801e-139 3.7344e-138 -1.16457e-136 3.11397e-135 -7.02824e-134 1.31465e-132 -1.98428e-131 2.316e-130 -1.96396e-129 1.07288e-128 -2.80803e-128 -2.32561e-130 -1.9901e-128 2.08854e-128 1.85418e-129 -1.23803e-130 -3.18402e-131 -2.84961e-132 -1.64424e-133 -7.0646e-135 -2.41515e-136 -6.82745e-138 -1.63691e-139 -3.38879e-141 -6.13948e-143 -9.8348e-145 -1.40436e-146 -1.79883e-148 -2.0787e-150 -2.17473e-152 -2.06411e-154 -1.78092e-156 -1.39863e-158 -1.00073e-160 -6.52326e-163 -3.872e-165 -2.09032e-167 -1.02442e-169 -4.54425e-172 -1.81728e-174 -6.51567e-177 -2.08027e-179 -5.86118e-182 -1.43935e-184 -3.03129e-187 -5.35739e-190 -7.7209e-193 -8.75371e-196 -7.53101e-199 -4.94566e-202 -2.54557e-205 -1.05704e-208 -3.63281e-212 -1.05665e-215 4.47326e-120 5.17691e-123 1.05002e-125 1.9709e-128 2.80949e-131 3.49845e-134 3.62277e-137 5.17501e-137 -2.03196e-135 6.74236e-134 -1.8471e-132 4.07645e-131 -6.98261e-130 8.74585e-129 -7.10406e-128 2.74613e-127 9.07113e-128 1.38991e-128 1.07175e-129 1.76952e-131 -4.95112e-132 -6.15884e-133 -4.21742e-134 -2.06351e-135 -7.84839e-137 -2.42201e-138 -6.22488e-140 -1.35619e-141 -2.53795e-143 -4.12101e-145 -5.85391e-147 -7.32317e-149 -8.11078e-151 -7.98697e-153 -7.01686e-155 -5.51459e-157 -3.89797e-159 1.40154e-159 -1.39208e-157 1.22541e-155 -9.72189e-154 6.94756e-152 -4.46573e-150 2.57195e-148 -1.3197e-146 5.99962e-145 -2.40327e-143 8.42301e-142 -2.5603e-140 6.68132e-139 -1.47335e-137 2.69727e-136 -3.98724e-135 4.56007e-134 -3.79097e-133 2.03122e-132 -5.21574e-132 -6.1174e-134 -3.59899e-132 3.69925e-132 3.41493e-133 -1.98683e-134 -5.49861e-135 -5.00394e-136 -2.91918e-137 -1.26621e-138 -4.36834e-140 -1.24634e-141 -3.01702e-143 -6.31005e-145 -1.15578e-146 -1.87348e-148 -2.7107e-150 -3.52224e-152 -4.13101e-154 -4.39054e-156 -4.24075e-158 -3.73306e-160 -2.99841e-162 -2.20006e-164 -1.4743e-166 -9.02104e-169 -5.03758e-171 -2.56409e-173 -1.18703e-175 -4.982e-178 -1.8884e-180 -6.43231e-183 -1.95484e-185 -5.25232e-188 -1.23255e-190 -2.4866e-193 -4.22346e-196 -5.87681e-199 -6.47907e-202 -5.47847e-205 -3.56759e-208 -1.83198e-211 -7.62046e-215 -2.63045e-218 -3.17763e-122 -1.41763e-125 -3.81563e-129 1.91302e-131 5.13463e-134 9.34716e-137 1.2963e-139 1.09864e-140 -4.25543e-139 1.40357e-137 -3.8247e-136 8.41109e-135 -1.43555e-133 1.79045e-132 -1.44819e-131 5.56952e-131 1.89917e-131 2.99661e-132 2.41636e-133 5.27659e-135 -9.84077e-136 -1.32655e-136 -9.4371e-138 -4.75746e-139 -1.85929e-140 -5.88771e-142 -1.55218e-143 -3.46901e-145 -6.66212e-147 -1.11088e-148 -1.62165e-150 -2.08659e-152 -2.3796e-154 -2.41592e-156 -2.19145e-158 -1.78116e-160 -1.30416e-162 4.16499e-163 -3.99213e-161 3.39024e-159 -2.60139e-157 1.80173e-155 -1.12384e-153 6.2867e-152 -3.13656e-150 1.38783e-148 -5.41138e-147 1.84713e-145 -5.48739e-144 1.40094e-142 -3.02485e-141 5.42548e-140 -7.86238e-139 8.82093e-138 -7.19625e-137 3.78541e-136 -9.54482e-136 -1.44453e-137 -6.41479e-136 6.46096e-136 6.18302e-137 -3.11849e-138 -9.353e-139 -8.65256e-140 -5.10089e-141 -2.23245e-142 -7.76795e-144 -2.23539e-145 -5.46e-147 -1.1531e-148 -2.13462e-150 -3.49881e-152 -5.12096e-154 -6.73346e-156 -7.99455e-158 -8.6225e-160 -8.46668e-162 -7.58783e-164 -6.21942e-166 -4.66885e-168 -3.20706e-170 -2.0164e-172 -1.16033e-174 -6.10582e-177 -2.9334e-179 -1.28428e-181 -5.10949e-184 -1.83948e-186 -5.96094e-189 -1.72641e-191 -4.4282e-194 -9.94014e-197 -1.92286e-199 -3.14161e-202 -4.22433e-205 -4.53179e-208 -3.7667e-211 -2.43208e-214 -1.24586e-217 -5.19019e-221 4.10714e-125 -3.06761e-128 -5.24323e-131 -4.92943e-134 -8.72542e-138 8.58225e-140 2.20918e-142 2.47532e-144 -8.50673e-143 2.79732e-141 -7.59596e-140 1.66627e-138 -2.84008e-137 3.53692e-136 -2.85996e-135 1.09662e-134 3.84797e-135 6.24082e-136 5.25466e-137 1.40512e-138 -1.8758e-139 -2.76369e-140 -2.04428e-141 -1.06186e-142 -4.2629e-144 -1.38494e-145 -3.74351e-147 -8.57835e-149 -1.68944e-150 -2.89043e-152 -4.33197e-154 -5.72677e-156 -6.71601e-158 -7.0193e-160 -6.56278e-162 -5.50582e-164 -4.16697e-166 1.18545e-166 -1.09994e-164 9.03457e-163 -6.71972e-161 4.51909e-159 -2.74019e-157 1.49135e-155 -7.24433e-154 3.11853e-152 -1.18422e-150 3.95258e-149 -1.14929e-147 2.87418e-146 -6.08418e-145 1.07041e-143 -1.52218e-142 1.67696e-141 -1.34392e-140 6.94669e-140 -1.72141e-139 -3.18382e-141 -1.12734e-139 1.11319e-139 1.1014e-140 -4.78187e-142 -1.56784e-142 -1.47411e-143 -8.77774e-145 -3.87436e-146 -1.35923e-147 -3.94539e-149 -9.7245e-151 -2.07254e-152 -3.87071e-154 -6.40316e-156 -9.45744e-158 -1.25684e-159 -1.51113e-161 -1.65108e-163 -1.64535e-165 -1.49902e-167 -1.25212e-169 -9.5873e-172 -6.73361e-174 -4.33808e-176 -2.56349e-178 -1.38872e-180 -6.89693e-183 -3.13459e-185 -1.3008e-187 -4.91348e-190 -1.6822e-192 -5.19206e-195 -1.43452e-197 -3.5161e-200 -7.55692e-203 -1.40298e-205 -2.20688e-208 -2.86995e-211 -2.99781e-214 -2.44961e-217 -1.5681e-220 -8.01038e-224 2.00586e-126 1.9663e-129 1.79733e-132 1.4644e-135 1.1772e-138 9.73168e-142 7.76759e-145 1.07154e-147 -1.6252e-146 5.33207e-145 -1.44638e-143 3.16988e-142 -5.41502e-141 6.76559e-140 -5.46111e-139 2.08551e-138 7.53871e-139 1.25697e-139 1.10244e-140 3.45056e-142 -3.41922e-143 -5.56891e-144 -4.28747e-145 -2.29496e-146 -9.46248e-148 -3.15317e-149 -8.73608e-151 -2.0516e-152 -4.14136e-154 -7.2645e-156 -1.1169e-157 -1.51556e-159 -1.82569e-161 -1.96177e-163 -1.88775e-165 -1.63196e-167 -1.27426e-169 3.23872e-170 -2.91746e-168 2.32292e-166 -1.67796e-164 1.09752e-162 -6.47896e-161 3.43516e-159 -1.62426e-157 6.80734e-156 -2.52781e-154 8.26169e-153 -2.35403e-151 5.77318e-150 -1.19951e-148 2.07234e-147 -2.89486e-146 3.13469e-145 -2.47001e-144 1.25569e-143 -3.06049e-143 -6.67451e-145 -1.95403e-143 1.89263e-143 1.93154e-144 -7.15108e-146 -2.59142e-146 -2.47604e-147 -1.48872e-148 -6.62588e-150 -2.3449e-151 -6.86613e-153 -1.70479e-154 -3.66028e-156 -6.88898e-158 -1.14761e-159 -1.71073e-161 -2.29673e-163 -2.79197e-165 -3.08784e-167 -3.11845e-169 -2.8866e-171 -2.4501e-173 -1.90985e-175 -1.36788e-177 -9.00371e-180 -5.44597e-182 -3.03055e-184 -1.55017e-186 -7.28275e-189 -3.13657e-191 -1.23546e-193 -4.43622e-196 -1.44598e-198 -4.25519e-201 -1.12265e-203 -2.63192e-206 -5.42074e-209 -9.66696e-212 -1.46522e-214 -1.84428e-217 -1.87688e-220 -1.50797e-223 -9.56633e-227 2.41852e-129 6.52429e-132 8.89028e-135 1.10457e-137 1.19421e-140 1.20037e-143 8.31122e-147 4.47132e-150 -2.96088e-150 9.73123e-149 -2.64053e-147 5.79837e-146 -9.96904e-145 1.24848e-143 -1.00697e-142 3.83565e-142 1.42752e-142 2.44669e-143 2.23199e-144 7.94133e-146 -5.93994e-147 -1.0852e-147 -8.70622e-149 -4.80329e-150 -2.0339e-151 -6.94995e-153 -1.97331e-154 -4.7475e-156 -9.81828e-158 -1.76472e-159 -2.78134e-161 -3.87084e-163 -4.78517e-165 -5.28058e-167 -5.22305e-169 -4.6461e-171 -3.73658e-173 8.50976e-174 -7.46186e-172 5.77069e-170 -4.05519e-168 2.58342e-166 -1.48631e-164 7.67695e-163 -3.53398e-161 1.44838e-159 -5.26777e-158 1.68789e-156 -4.71838e-155 1.13605e-153 -2.31918e-152 3.93863e-151 -5.41017e-150 5.76366e-149 -4.46937e-148 2.23654e-147 -5.36564e-147 -1.3452e-148 -3.34148e-147 3.17619e-147 3.33649e-148 -1.04014e-149 -4.22506e-150 -4.10271e-151 -2.49046e-152 -1.1184e-153 -3.99229e-155 -1.17684e-156 -2.94155e-158 -6.35574e-160 -1.20275e-161 -2.01972e-163 -3.03551e-165 -4.11267e-167 -5.05021e-169 -5.64758e-171 -5.77987e-173 -5.42149e-175 -4.66918e-177 -3.69723e-179 -2.69348e-181 -1.8065e-183 -1.11699e-185 -6.36586e-188 -3.34414e-190 -1.61796e-192 -7.20146e-195 -2.94317e-197 -1.10172e-199 -3.76496e-202 -1.16956e-204 -3.28472e-207 -8.2828e-210 -1.85891e-212 -3.67207e-215 -6.29541e-218 -9.20189e-221 -1.12191e-223 -1.113e-226 -8.78987e-230 3.89466e-132 9.29676e-135 1.84124e-137 3.19185e-140 4.50154e-143 5.71683e-146 4.82097e-149 3.10033e-152 -4.98476e-154 1.69915e-152 -4.62643e-151 1.02084e-149 -1.76883e-148 2.22185e-147 -1.79207e-146 6.81379e-146 2.61197e-146 4.60245e-147 4.36099e-148 1.72856e-149 -9.78305e-151 -2.04463e-151 -1.71162e-152 -9.73592e-154 -4.2339e-155 -1.48333e-156 -4.3151e-158 -1.06328e-159 -2.252e-161 -4.14575e-163 -6.69383e-165 -9.54808e-167 -1.21032e-168 -1.37036e-170 -1.39172e-172 -1.27224e-174 -1.05238e-176 2.15389e-177 -1.84292e-175 1.38673e-173 -9.49377e-172 5.8958e-170 -3.30524e-168 1.66356e-166 -7.48881e-165 3.00691e-163 -1.07248e-161 3.37282e-160 -9.25997e-159 2.19115e-157 -4.39931e-156 7.35146e-155 -9.93952e-154 1.04275e-152 -7.96453e-152 3.92647e-151 -9.27941e-151 -2.62416e-152 -5.63934e-151 5.2628e-151 5.67943e-152 -1.46538e-153 -6.79652e-154 -6.70824e-155 -4.11347e-156 -1.86463e-157 -6.70126e-159 -1.9875e-160 -4.9959e-162 -1.08434e-163 -2.06598e-165 -3.49307e-167 -5.28983e-169 -7.22588e-171 -8.95476e-173 -1.01241e-174 -1.04797e-176 -9.94662e-179 -8.67675e-181 -6.96431e-183 -5.15053e-185 -3.51648e-187 -2.21701e-189 -1.29123e-191 -6.94638e-194 -3.45071e-196 -1.58147e-198 -6.67808e-201 -2.59312e-203 -9.23551e-206 -3.00685e-208 -8.91064e-211 -2.39057e-213 -5.76648e-216 -1.23995e-218 -2.35115e-221 -3.87821e-224 -5.4711e-227 -6.4658e-230 -6.25292e-233 -6.40734e-134 -4.58873e-137 -2.94828e-140 5.60017e-144 5.23228e-146 1.13638e-148 1.42895e-151 1.2525e-154 5.81783e-159 2.84158e-156 -7.7796e-155 1.73237e-153 -3.02057e-152 3.80694e-151 -3.07522e-150 1.16883e-149 4.61591e-150 8.36415e-151 8.22376e-152 3.57853e-153 -1.51538e-154 -3.72362e-155 -3.25752e-156 -1.911e-157 -8.53557e-159 -3.06587e-160 -9.13629e-162 -2.30541e-163 -4.99901e-165 -9.42211e-167 -1.55772e-168 -2.27592e-170 -2.95623e-172 -3.43144e-174 -3.57487e-176 -3.35475e-178 -2.85066e-180 5.25851e-181 -4.4001e-179 3.22564e-177 -2.15263e-175 1.30257e-173 -7.12811e-172 3.50909e-170 -1.54757e-168 6.09534e-167 -2.13449e-165 6.59529e-164 -1.78015e-162 4.14388e-161 -8.19048e-160 1.34798e-158 -1.79561e-157 1.85675e-156 -1.39817e-155 6.79658e-155 -1.58355e-154 -4.97781e-156 -9.39692e-155 8.6135e-155 9.53215e-156 -1.98718e-157 -1.07902e-157 -1.0832e-158 -6.71736e-160 -3.06777e-161 -1.10894e-162 -3.30425e-164 -8.34522e-166 -1.82253e-167 -3.49281e-169 -5.94363e-171 -9.0624e-173 -1.24721e-174 -1.55947e-176 -1.78059e-178 -1.86039e-180 -1.78433e-182 -1.57348e-184 -1.27843e-186 -9.59238e-189 -6.65324e-191 -4.26936e-193 -2.53535e-195 -1.39357e-197 -7.08835e-200 -3.33484e-202 -1.44973e-204 -5.81506e-207 -2.14783e-209 -7.28582e-212 -2.26213e-214 -6.40106e-217 -1.64187e-219 -3.79178e-222 -7.81822e-225 -1.42416e-227 -2.26199e-230 -3.08202e-233 -3.53082e-236 -8.59167e-136 -2.64478e-139 5.6845e-142 1.5879e-144 2.15315e-147 2.06205e-150 3.75783e-154 -1.04772e-156 -1.57928e-159 4.53511e-160 -1.259e-158 2.82985e-157 -4.95565e-156 6.27436e-155 -5.08347e-154 1.93412e-153 7.87431e-154 1.46799e-154 1.49663e-155 7.07182e-157 -2.17791e-158 -6.55251e-159 -6.00062e-160 -3.63202e-161 -1.66641e-162 -6.13677e-164 -1.87315e-165 -4.83941e-167 -1.07416e-168 -2.07224e-170 -3.50661e-172 -5.24492e-174 -6.9768e-176 -8.29646e-178 -8.85905e-180 -8.52626e-182 -7.43448e-184 1.23949e-184 -1.01588e-182 7.25632e-181 -4.72153e-179 2.79295e-177 -1.49563e-175 7.21297e-174 -3.12051e-172 1.20708e-170 -4.15454e-169 1.2625e-167 -3.35337e-166 7.68654e-165 -1.49698e-163 2.42867e-162 -3.19034e-161 3.25461e-160 -2.41837e-159 1.16019e-158 -2.66723e-158 -9.21197e-160 -1.54665e-158 1.39319e-158 1.57854e-159 -2.56748e-161 -1.692e-161 -1.7301e-162 -1.08335e-163 -4.97135e-165 -1.80626e-166 -5.41249e-168 -1.37459e-169 -3.01817e-171 -5.81721e-173 -9.95741e-175 -1.52787e-176 -2.11899e-178 -2.67101e-180 -3.07216e-182 -3.23667e-184 -3.13036e-186 -2.78857e-188 -2.29259e-190 -1.74251e-192 -1.22609e-194 -7.99331e-197 -4.83086e-199 -2.70712e-201 -1.40663e-203 -6.77493e-206 -3.02279e-208 -1.248e-210 -4.76057e-213 -1.67431e-215 -5.41478e-218 -1.60475e-220 -4.33964e-223 -1.06511e-225 -2.35689e-228 -4.66344e-231 -8.1667e-234 -1.24989e-236 -1.64502e-239 -3.97386e-133 -5.90393e-136 -6.23188e-139 -4.07409e-142 -2.90089e-146 5.26179e-148 9.39652e-151 9.03026e-154 6.96073e-157 4.85573e-160 -1.63486e-162 4.43366e-161 -7.80306e-160 9.9384e-159 -8.08826e-158 3.08516e-157 1.29589e-157 2.48714e-158 2.62802e-159 1.33719e-160 -2.83102e-162 -1.11367e-162 -1.06964e-163 -6.68282e-165 -3.15012e-166 -1.18946e-167 -3.71874e-169 -9.83573e-171 -2.23445e-172 -4.41102e-174 -7.63797e-176 -1.16905e-177 -1.5917e-179 -1.93788e-181 -2.11939e-183 -2.09009e-185 -1.86812e-187 2.82052e-188 -2.26503e-186 1.5792e-184 -1.0053e-182 5.8232e-181 -3.05566e-179 1.44561e-177 -6.14277e-176 2.33616e-174 -7.91074e-173 2.36652e-171 -6.19136e-170 1.39871e-168 -2.68642e-167 4.30017e-166 -5.57542e-165 5.61627e-164 -4.12175e-163 1.95323e-162 -4.43465e-162 -1.66701e-163 -2.51521e-162 2.22776e-162 2.5808e-163 -3.10156e-165 -2.62048e-165 -2.72619e-166 -1.72168e-167 -7.95119e-169 -2.90384e-170 -8.74543e-172 -2.2325e-173 -4.92779e-175 -9.54899e-177 -1.64388e-178 -2.54074e-180 -3.54574e-182 -4.49586e-184 -5.20381e-186 -5.51713e-188 -5.38136e-190 -4.83948e-192 -4.02131e-194 -3.09259e-196 -2.20438e-198 -1.45783e-200 -8.95083e-203 -5.10414e-205 -2.70354e-207 -1.32998e-209 -6.07396e-212 -2.57329e-214 -1.01015e-216 -3.66829e-219 -1.22968e-221 -3.79485e-224 -1.07442e-226 -2.77893e-229 -6.53131e-232 -1.3858e-234 -2.63312e-237 -4.43638e-240 -6.54362e-243 8.089e-131 -1.82342e-134 -1.16262e-136 -2.37383e-139 -3.51361e-142 -4.58823e-145 -3.31657e-148 -2.1513e-151 -1.39649e-154 -9.46397e-158 -6.36726e-161 -3.16171e-164 -1.17859e-163 1.51048e-162 -1.23705e-161 4.74056e-161 2.05662e-161 4.06625e-162 4.45143e-163 2.42307e-164 -3.14018e-166 -1.82725e-166 -1.8446e-167 -1.19017e-168 -5.76494e-170 -2.23212e-171 -7.14818e-173 -1.93538e-174 -4.49977e-176 -9.08889e-178 -1.61008e-179 -2.52093e-181 -3.51159e-183 -4.3749e-185 -4.89709e-187 -4.94427e-189 -4.52384e-191 6.18752e-192 -4.88535e-190 3.33446e-188 -2.07995e-186 1.18133e-184 -6.08255e-183 2.82646e-181 -1.18098e-179 4.42027e-178 -1.47401e-176 4.34481e-175 -1.12061e-173 2.49722e-172 -4.73395e-171 7.48262e-170 -9.58386e-169 9.54099e-168 -6.92181e-167 3.24301e-166 -7.27822e-166 -2.95466e-167 -4.04182e-166 3.52192e-166 4.16434e-167 -3.34797e-169 -4.01131e-169 -4.24661e-170 -2.70298e-171 -1.25549e-172 -4.60753e-174 -1.39427e-175 -3.57659e-177 -7.93461e-179 -1.54599e-180 -2.68029e-182 -4.16371e-184 -5.83997e-186 -7.43878e-188 -8.65337e-190 -9.23772e-192 -9.07842e-194 -8.23489e-196 -6.90838e-198 -5.3696e-200 -3.87246e-202 -2.59425e-204 -1.61571e-206 -9.35966e-209 -5.04436e-211 -2.52933e-213 -1.17967e-215 -5.11489e-218 -2.05999e-220 -7.6967e-223 -2.66335e-225 -8.51711e-228 -2.51018e-230 -6.79475e-233 -1.6821e-235 -3.78847e-238 -7.71288e-241 -1.4084e-243 -2.28331e-246 5.23087e-128 5.94322e-131 6.65119e-134 7.10862e-137 7.34393e-140 7.49179e-143 4.20545e-146 3.00932e-149 2.4371e-152 1.76789e-155 9.41506e-159 1.74534e-162 -3.54368e-165 2.14108e-166 -1.81681e-165 7.01327e-165 3.1464e-165 6.41253e-166 7.27081e-167 4.21212e-168 -2.44793e-170 -2.89257e-170 -3.0765e-171 -2.05108e-172 -1.02115e-173 -4.05481e-175 -1.33018e-176 -3.68679e-178 -8.7716e-180 -1.81269e-181 -3.28475e-183 -5.26021e-185 -7.49382e-187 -9.54887e-189 -1.09327e-190 -1.12867e-192 -1.05519e-194 1.31143e-195 -1.02164e-193 6.83698e-192 -4.18445e-190 2.33331e-188 -1.18031e-186 5.39356e-185 -2.2183e-183 8.1792e-182 -2.68838e-180 7.81462e-179 -1.98864e-177 4.3749e-176 -8.19203e-175 1.27961e-173 -1.62035e-172 1.59553e-171 -1.14524e-170 5.30973e-170 -1.17901e-169 -5.13549e-171 -6.41826e-170 5.50107e-170 6.62426e-171 -2.89471e-173 -6.07237e-173 -6.5349e-174 -4.19113e-175 -1.95748e-176 -7.21724e-178 -2.1938e-179 -5.65342e-181 -1.26047e-182 -2.4731e-184 -4.30859e-186 -6.72324e-188 -9.46377e-190 -1.21066e-191 -1.41605e-193 -1.52081e-195 -1.50482e-197 -1.37545e-199 -1.16384e-201 -9.13257e-204 -6.65604e-206 -4.51124e-208 -2.84601e-210 -1.67227e-212 -9.15516e-215 -4.67055e-217 -2.22008e-219 -9.82921e-222 -4.05083e-224 -1.55251e-226 -5.52617e-229 -1.82376e-231 -5.56821e-234 -1.56845e-236 -4.06203e-239 -9.63171e-242 -2.08019e-244 -4.06667e-247 -7.13669e-250 -2.98756e-127 1.42335e-130 6.28553e-133 7.30971e-136 -3.12307e-139 -3.28311e-141 -6.72242e-144 -7.27292e-147 -4.87999e-150 -1.30571e-153 1.72597e-156 3.42693e-159 3.8559e-162 3.46509e-165 2.46675e-168 1.00195e-168 4.63995e-169 9.74963e-170 1.14466e-170 7.0283e-172 3.65933e-175 -4.41494e-174 -4.96079e-175 -3.41948e-176 -1.75026e-177 -7.12845e-179 -2.39569e-180 -6.79769e-182 -1.65499e-183 -3.49909e-185 -6.48532e-187 -1.06208e-188 -1.54698e-190 -2.0152e-192 -2.35729e-194 -2.48373e-196 -2.37471e-198 2.69158e-199 -2.07335e-197 1.36227e-195 -8.1908e-194 4.48942e-192 -2.23378e-190 1.0049e-188 -4.07239e-187 1.48054e-185 -4.80066e-184 1.37727e-182 -3.46078e-181 7.52175e-180 -1.39223e-178 2.15065e-177 -2.69446e-176 2.62638e-175 -1.8668e-174 8.57285e-174 -1.88527e-173 -8.76357e-175 -1.00776e-173 8.48914e-174 1.04292e-174 -9.75112e-178 -9.08088e-177 -9.93535e-178 -6.41902e-179 -3.01388e-180 -1.11615e-181 -3.4072e-183 -8.81995e-185 -1.97746e-186 -3.9032e-188 -6.82783e-190 -1.06886e-191 -1.51056e-193 -1.94131e-195 -2.28191e-197 -2.46419e-199 -2.45317e-201 -2.25763e-203 -1.92494e-205 -1.52342e-207 -1.12085e-209 -7.67668e-212 -4.89938e-214 -2.91594e-216 -1.61916e-218 -8.39042e-221 -4.05751e-223 -1.83072e-225 -7.7031e-228 -3.02051e-230 -1.10264e-232 -3.74232e-235 -1.17884e-237 -3.4389e-240 -9.26478e-243 -2.29731e-245 -5.22103e-248 -1.08208e-250 -2.0308e-253 -2.41296e-124 -2.28355e-127 3.35974e-131 8.44476e-133 1.98435e-135 3.35659e-138 2.67919e-141 9.75837e-145 -6.89808e-148 -1.72558e-150 -2.06731e-153 -1.92607e-156 -1.55763e-159 -1.14558e-162 -7.83865e-166 -5.03385e-169 -2.36863e-172 1.41158e-173 1.7359e-174 1.12594e-175 7.00314e-178 -6.49197e-178 -7.73046e-179 -5.51313e-180 -2.9021e-181 -1.21254e-182 -4.17504e-184 -1.21283e-185 -3.02156e-187 -6.53556e-189 -1.23895e-190 -2.07467e-192 -3.08881e-194 -4.10924e-196 -4.90139e-198 -5.278e-200 -5.16093e-202 5.35401e-203 -4.08604e-201 2.63918e-199 -1.56074e-197 8.41832e-196 -4.12469e-194 1.82868e-192 -7.3091e-191 2.62238e-189 -8.39537e-188 2.37905e-186 -5.90737e-185 1.26937e-183 -2.32407e-182 3.55288e-181 -4.40736e-180 4.2561e-179 -2.99898e-178 1.36622e-177 -2.98069e-177 -1.47145e-178 -1.56152e-177 1.29527e-177 1.62084e-178 3.70726e-181 -1.34158e-180 -1.49257e-181 -9.71263e-183 -4.58316e-184 -1.70438e-185 -5.22353e-187 -1.35813e-188 -3.06566e-190 -6.06956e-192 -1.06571e-193 -1.67508e-195 -2.37744e-197 -3.06881e-199 -3.62383e-201 -3.9328e-203 -3.93672e-205 -3.64513e-207 -3.12926e-209 -2.49548e-211 -1.85165e-213 -1.28014e-215 -8.25541e-218 -4.97028e-220 -2.7954e-222 -1.46919e-224 -7.21657e-227 -3.31238e-229 -1.42013e-231 -5.68419e-234 -2.1225e-236 -7.38626e-239 -2.39227e-241 -7.19854e-244 -2.00797e-246 -5.1778e-249 -1.23006e-251 -2.68111e-254 -5.32908e-257 -5.26932e-122 -2.58368e-124 -4.67804e-127 -6.50333e-130 -7.26701e-133 -5.63704e-136 2.87371e-139 8.23471e-142 9.97945e-145 9.29944e-148 7.53746e-151 5.6008e-154 3.91866e-157 2.60496e-160 1.63506e-163 9.4791e-167 4.81137e-170 1.8304e-173 1.26409e-177 9.8053e-180 1.87406e-181 -9.18884e-182 -1.16356e-182 -8.59241e-184 -4.65338e-185 -1.99494e-186 -7.03833e-188 -2.09332e-189 -5.33672e-191 -1.18083e-192 -2.28938e-194 -3.91919e-196 -5.95917e-198 -8.08044e-200 -9.84575e-202 -1.08383e-203 -1.08364e-205 1.03282e-206 -7.82344e-205 4.97346e-203 -2.89613e-201 1.53897e-199 -7.43342e-198 3.25121e-196 -1.28286e-194 4.54623e-193 -1.43818e-191 4.02871e-190 -9.89283e-189 2.10318e-187 -3.81167e-186 5.77086e-185 -7.09419e-184 6.7958e-183 -4.75564e-182 2.15122e-181 -4.65302e-181 -2.42404e-182 -2.38678e-181 1.95245e-181 2.48738e-182 1.32184e-184 -1.95827e-184 -2.21612e-185 -1.45226e-186 -6.88506e-188 -2.56976e-189 -7.90205e-191 -2.06493e-192 -4.68221e-194 -9.30786e-196 -1.64096e-197 -2.59018e-199 -3.69156e-201 -4.78508e-203 -5.67482e-205 -6.18678e-207 -6.22382e-209 -5.79463e-211 -5.00517e-213 -4.01885e-215 -3.00475e-217 -2.09493e-219 -1.36368e-221 -8.29604e-224 -4.72035e-226 -2.51309e-228 -1.25199e-230 -5.83578e-233 -2.54453e-235 -1.03748e-237 -3.95356e-240 -1.40704e-242 -4.67166e-245 -1.44504e-247 -4.15667e-250 -1.1094e-252 -2.73965e-255 -6.23897e-258 -1.30314e-260 9.05541e-119 7.03896e-122 3.76037e-125 -5.08866e-128 -1.88988e-130 -4.00082e-133 -4.49164e-136 -3.88889e-139 -2.98403e-142 -2.15641e-145 -1.51591e-148 -1.04521e-151 -6.95186e-155 -4.29677e-158 -2.30625e-161 -8.90977e-165 2.05491e-169 5.19614e-171 7.15978e-174 7.19048e-177 6.20235e-180 4.83246e-183 1.81891e-186 -1.26999e-187 -7.21119e-189 -3.17374e-190 -1.14747e-191 -3.49409e-193 -9.11489e-195 -2.06287e-196 -4.08946e-198 -7.15117e-200 -1.10843e-201 -1.53509e-203 -1.91179e-205 -2.1513e-207 -2.19891e-209 1.93302e-210 -1.45582e-208 9.11936e-207 -5.23492e-205 2.74361e-203 -1.30779e-201 5.6486e-200 -2.20236e-198 7.71575e-197 -2.41391e-195 6.68969e-194 -1.62578e-192 3.42224e-191 -6.14412e-190 9.22042e-189 -1.1246e-187 1.0704e-186 -7.43898e-186 3.33865e-185 -7.15754e-185 -3.91715e-186 -3.60063e-185 2.90683e-185 3.76798e-186 3.07726e-188 -2.82378e-188 -3.25188e-189 -2.14538e-190 -1.02098e-191 -3.82106e-193 -1.17957e-194 -3.10187e-196 -7.05875e-198 -1.40893e-199 -2.49403e-201 -3.95295e-203 -5.6569e-205 -7.36224e-207 -8.76684e-209 -9.59845e-211 -9.70018e-213 -9.07675e-215 -7.884e-217 -6.36983e-219 -4.79549e-221 -3.36913e-223 -2.21179e-225 -1.35827e-227 -7.80956e-230 -4.2058e-232 -2.12179e-234 -1.00279e-236 -4.43953e-239 -1.84069e-241 -7.14449e-244 -2.59455e-246 -8.80841e-249 -2.79253e-251 -8.25531e-254 -2.27146e-256 -5.80387e-259 -1.37337e-261 -2.99525e-264 2.67462e-116 3.89358e-119 5.67604e-122 7.90864e-125 1.06121e-127 1.37039e-130 8.6522e-134 5.56646e-137 3.86672e-140 2.89615e-143 2.18838e-146 1.53041e-149 8.98752e-153 3.49949e-156 -6.16393e-160 -3.16968e-162 -4.32725e-165 -4.45995e-168 -3.97794e-171 -3.22254e-174 -2.42565e-177 -1.71607e-180 -1.14643e-183 -7.22625e-187 -4.2792e-190 -2.81446e-193 -1.92169e-195 -5.64294e-197 -1.50481e-198 -3.48206e-200 -7.05143e-202 -1.25747e-203 -1.99125e-205 -2.8189e-207 -3.58871e-209 -4.12807e-211 -4.31305e-213 3.51132e-214 -2.63357e-212 1.62737e-210 -9.2192e-209 4.77061e-207 -2.24649e-205 9.59159e-204 -3.69877e-202 1.28218e-200 -3.97044e-199 1.08946e-197 -2.62249e-196 5.4702e-195 -9.73709e-194 1.44984e-192 -1.75676e-191 1.66142e-190 -1.14618e-189 5.103e-189 -1.0832e-188 -6.21893e-190 -5.35893e-189 4.27248e-189 5.63183e-190 6.11772e-192 -4.02031e-192 -4.71364e-193 -3.12953e-194 -1.49399e-195 -5.61287e-197 -1.74312e-198 -4.59907e-200 -1.05063e-201 -2.10527e-203 -3.74177e-205 -5.95477e-207 -8.556e-209 -1.11794e-210 -1.33648e-212 -1.46917e-214 -1.49111e-216 -1.40178e-218 -1.22384e-220 -9.94446e-223 -7.53415e-225 -5.33035e-227 -3.52635e-229 -2.18393e-231 -1.26736e-233 -6.89521e-236 -3.51803e-238 -1.68352e-240 -7.55656e-243 -3.18096e-245 -1.25541e-247 -4.64313e-250 -1.60827e-252 -5.21257e-255 -1.57903e-257 -4.46402e-260 -1.17557e-262 -2.87727e-265 -6.51726e-268 5.80787e-116 5.00441e-119 9.52582e-122 2.43045e-124 3.36972e-127 -6.41606e-131 -1.97028e-132 -4.19618e-135 -5.27546e-138 -4.82497e-141 -3.26598e-144 -1.3111e-147 4.38295e-151 1.65569e-153 2.27631e-156 2.40346e-159 2.2051e-162 1.84219e-165 1.43379e-168 1.05192e-171 7.30815e-175 4.80083e-178 2.9576e-181 1.67795e-184 8.42803e-188 3.36593e-191 5.84756e-195 -7.2707e-198 -1.19438e-200 -1.7295e-203 -1.26781e-205 -2.14234e-207 -3.4571e-209 -5.00322e-211 -6.51198e-213 -7.65765e-215 -8.17801e-217 6.19226e-218 -4.63226e-216 2.82673e-214 -1.58204e-212 8.09139e-211 -3.76807e-209 1.5919e-207 -6.0773e-206 2.08639e-204 -6.40047e-203 1.74037e-201 -4.15287e-200 8.59077e-199 -1.51742e-197 2.24411e-196 -2.70293e-195 2.53914e-194 -1.73853e-193 7.66842e-193 -1.61517e-192 -9.70116e-194 -7.86742e-193 6.19749e-193 8.3026e-194 1.1139e-195 -5.64855e-196 -6.74664e-197 -4.50839e-198 -2.16278e-199 -8.1629e-201 -2.54311e-202 -6.73381e-204 -1.54377e-205 -3.10543e-207 -5.54148e-209 -8.85463e-211 -1.27736e-212 -1.67556e-214 -2.01084e-216 -2.21911e-218 -2.26139e-220 -2.13518e-222 -1.873e-224 -1.52989e-226 -1.16576e-228 -8.29995e-231 -5.52914e-233 -3.45041e-235 -2.01906e-237 -1.10865e-239 -5.71461e-242 -2.76581e-244 -1.25707e-246 -5.36516e-249 -2.14976e-251 -8.08348e-254 -2.85104e-256 -9.42587e-259 -2.91852e-261 -8.45295e-264 -2.28661e-266 -5.76658e-269 -1.35037e-271 1.46637e-113 -2.27171e-116 -4.38774e-119 6.56277e-122 4.32635e-124 1.34105e-126 2.10507e-129 2.05215e-132 1.41227e-135 5.56428e-139 -2.22688e-142 -7.72236e-145 -1.06001e-147 -1.12861e-150 -1.05028e-153 -8.94696e-157 -7.141e-160 -5.4031e-163 -3.89086e-166 -2.65857e-169 -1.70479e-172 -1.00246e-175 -5.14095e-179 -1.98285e-182 -1.33207e-186 7.944e-189 1.12785e-191 1.12085e-194 9.51559e-198 7.32117e-201 5.2359e-204 3.52524e-207 2.24447e-210 1.27977e-213 -3.54101e-217 -1.32998e-218 -1.49675e-220 1.06041e-221 -7.92312e-220 4.77951e-218 -2.64531e-216 1.33859e-214 -6.17081e-213 2.58212e-211 -9.76808e-210 3.32419e-208 -1.01116e-206 2.727e-205 -6.45611e-204 1.32561e-202 -2.32552e-201 3.41889e-200 -4.09367e-199 3.81915e-198 -2.59122e-197 1.13476e-196 -2.37363e-196 -1.4875e-197 -1.13919e-196 8.87075e-197 1.20712e-197 1.91219e-199 -7.83223e-200 -9.54183e-201 -6.43004e-202 -3.09657e-203 -1.17215e-204 -3.66411e-206 -9.73405e-208 -2.23946e-209 -4.52196e-211 -8.10122e-213 -1.29969e-214 -1.8824e-216 -2.47885e-218 -2.98622e-220 -3.30804e-222 -3.3842e-224 -3.20843e-226 -2.82689e-228 -2.32012e-230 -1.77719e-232 -1.2726e-234 -8.53114e-237 -5.36068e-239 -3.16075e-241 -1.75011e-243 -9.10503e-246 -4.45251e-248 -2.04704e-250 -8.84743e-253 -3.59403e-255 -1.37182e-257 -4.91819e-260 -1.65539e-262 -5.22743e-265 -1.54724e-267 -4.2871e-270 -1.11037e-272 -2.67766e-275 1.99796e-110 -1.9401e-113 -9.01842e-116 -2.45269e-118 -4.89665e-121 -8.11335e-124 -5.00591e-127 -1.25893e-130 1.80661e-133 3.74473e-136 4.61163e-139 4.67873e-142 4.2592e-145 3.61329e-148 2.91496e-151 2.25879e-154 1.68316e-157 1.19749e-160 7.99858e-164 4.8566e-167 2.49682e-170 8.48384e-174 -1.90076e-177 -7.4651e-180 -9.57744e-183 -9.49879e-186 -8.24795e-189 -6.55039e-192 -4.85652e-195 -3.39813e-198 -2.25709e-201 -1.42664e-204 -8.5773e-208 -4.88725e-211 -2.61722e-214 -1.29534e-217 -5.71579e-221 -1.85828e-224 -1.3177e-223 7.86483e-222 -4.30875e-220 2.15928e-218 -9.86353e-217 4.09193e-215 -1.53538e-213 5.18437e-212 -1.56513e-210 4.1904e-209 -9.85178e-208 2.00963e-206 -3.50467e-205 5.12525e-204 -6.10089e-203 5.64292e-202 -3.80133e-201 1.65429e-200 -3.4384e-200 -2.24257e-201 -1.62691e-200 1.25281e-200 1.73088e-201 3.14163e-203 -1.07347e-203 -1.33505e-204 -9.05701e-206 -4.37834e-207 -1.6625e-208 -5.21297e-210 -1.38935e-211 -3.20738e-213 -6.50046e-215 -1.16913e-216 -1.88314e-218 -2.73828e-220 -3.61996e-222 -4.37744e-224 -4.86734e-226 -4.99817e-228 -4.75705e-230 -4.20872e-232 -3.46969e-234 -2.6707e-236 -1.92257e-238 -1.29629e-240 -8.19722e-243 -4.86726e-245 -2.71603e-247 -1.42513e-249 -7.03495e-252 -3.26775e-254 -1.42834e-256 -5.87444e-259 -2.27285e-261 -8.27039e-264 -2.82926e-266 -9.09464e-269 -2.74503e-271 -7.77166e-274 -2.06151e-276 -5.1029e-279 2.75644e-107 4.00743e-110 5.80339e-113 6.47736e-116 5.16639e-119 -4.41501e-122 -1.42688e-124 -1.8219e-127 -1.83969e-130 -1.65798e-133 -1.40153e-136 -1.14333e-139 -9.1608e-143 -7.25447e-146 -5.64175e-149 -4.23176e-152 -2.97167e-155 -1.85962e-158 -9.24975e-162 -2.01083e-165 2.98296e-168 5.87717e-171 7.05249e-174 7.00209e-177 6.21253e-180 5.08482e-183 3.90204e-186 2.83291e-189 1.95528e-192 1.28541e-195 8.04089e-199 4.76491e-202 2.64916e-205 1.35534e-208 6.11245e-212 2.14502e-215 2.42211e-219 -5.18361e-222 -7.05643e-225 1.25223e-225 -6.83173e-224 3.39409e-222 -1.53791e-220 6.33196e-219 -2.35895e-217 7.91097e-216 -2.37263e-214 6.31243e-213 -1.47522e-211 2.99249e-210 -5.19282e-209 7.55728e-208 -8.93438e-207 8.19891e-206 -5.49131e-205 2.37622e-204 -4.91e-204 -3.32528e-205 -2.29165e-204 1.74581e-204 2.44806e-205 4.98722e-207 -1.45309e-207 -1.8437e-208 -1.25944e-209 -6.11337e-211 -2.32907e-212 -7.32548e-214 -1.95845e-215 -4.53621e-217 -9.2268e-219 -1.66582e-220 -2.69371e-222 -3.93235e-224 -5.21868e-226 -6.33464e-228 -7.06984e-230 -7.28683e-232 -6.96146e-234 -6.18326e-236 -5.1191e-238 -3.95867e-240 -2.86432e-242 -1.94191e-244 -1.23531e-246 -7.38249e-249 -4.14846e-251 -2.19339e-253 -1.09177e-255 -5.11805e-258 -2.25991e-260 -9.39902e-263 -3.68154e-265 -1.35783e-267 -4.71414e-270 -1.54003e-272 -4.73124e-275 -1.36579e-277 -3.70144e-280 -9.37975e-283 5.53993e-105 1.05647e-107 2.02043e-110 3.6784e-113 6.46064e-116 7.48786e-119 5.6936e-122 4.21305e-125 3.10246e-128 2.34758e-131 1.8778e-134 1.58651e-137 1.36602e-140 1.13762e-143 8.66456e-147 5.58528e-150 2.45806e-153 -3.29944e-157 -2.47467e-159 -3.83612e-162 -4.44284e-165 -4.44124e-168 -4.02763e-171 -3.39305e-174 -2.69044e-177 -2.02326e-180 -1.44883e-183 -9.89028e-187 -6.42459e-190 -3.94962e-193 -2.27131e-196 -1.19307e-199 -5.41666e-203 -1.77287e-206 5.36771e-211 8.08078e-213 9.85333e-216 8.92151e-219 7.03355e-222 5.08064e-225 -7.09757e-228 5.19555e-226 -2.33777e-224 9.56278e-223 -3.54087e-221 1.18057e-219 -3.52106e-218 9.3184e-217 -2.16701e-215 4.37619e-214 -7.5633e-213 1.09526e-211 -1.28432e-210 1.17231e-209 -7.81096e-209 3.36275e-208 -6.91128e-208 -4.8504e-209 -3.18376e-208 2.4005e-208 3.41582e-209 7.68887e-211 -1.93982e-211 -2.51218e-212 -1.72833e-213 -8.42943e-215 -3.22324e-216 -1.01695e-217 -2.72717e-219 -6.33718e-221 -1.29353e-222 -2.34408e-224 -3.80513e-226 -5.57642e-228 -7.42896e-230 -9.05176e-232 -1.01406e-233 -1.04917e-235 -1.00616e-237 -8.97203e-240 -7.45864e-242 -5.79326e-244 -4.21133e-246 -2.86943e-248 -1.83513e-250 -1.10305e-252 -6.23756e-255 -3.32082e-257 -1.66552e-259 -7.87275e-262 -3.50827e-264 -1.47395e-266 -5.83815e-269 -2.17978e-271 -7.67007e-274 -2.54272e-276 -7.93807e-279 -2.33218e-281 -6.44373e-284 -1.66803e-286 3.17447e-104 3.73661e-107 5.11679e-110 5.90111e-113 7.85717e-116 5.54517e-119 -9.24767e-122 -5.20685e-124 -1.20989e-126 -1.95913e-129 -2.49862e-132 -2.61816e-135 -2.24544e-138 -1.45779e-141 -4.3645e-145 6.03769e-148 1.47979e-150 2.08011e-153 2.37459e-156 2.39767e-159 2.21971e-162 1.92017e-165 1.56947e-168 1.22004e-171 9.04873e-175 6.40446e-178 4.3125e-181 2.74209e-184 1.62188e-187 8.64552e-191 3.83254e-194 1.00734e-197 -4.69288e-201 -1.09288e-203 -1.22343e-206 -1.10473e-209 -8.88964e-213 -6.61621e-216 -4.63658e-219 -3.08965e-222 -1.96894e-225 -1.12646e-228 -3.46446e-228 1.40909e-226 -5.19093e-225 1.7225e-223 -5.11429e-222 1.34786e-220 -3.12313e-219 6.28632e-218 -1.08218e-216 1.5565e-215 -1.81426e-214 1.6483e-213 -1.09337e-212 4.68612e-212 -9.58525e-212 -6.95882e-213 -4.36145e-212 3.25636e-212 4.7047e-213 1.15411e-214 -2.55316e-215 -3.37738e-216 -2.34156e-217 -1.14797e-218 -4.40684e-220 -1.39494e-221 -3.75251e-223 -8.74799e-225 -1.79183e-226 -3.25914e-228 -5.31103e-230 -7.81393e-232 -1.04505e-233 -1.27823e-235 -1.43737e-237 -1.49257e-239 -1.43656e-241 -1.28569e-243 -1.07288e-245 -8.36672e-248 -6.10844e-250 -4.18151e-252 -2.68766e-254 -1.62414e-256 -9.23752e-259 -4.94919e-261 -2.49946e-263 -1.19047e-265 -5.34941e-268 -2.26824e-270 -9.07562e-273 -3.42641e-275 -1.22043e-277 -4.10015e-280 -1.29881e-282 -3.87721e-285 -1.09015e-287 -2.87759e-290 1.22935e-101 1.71572e-104 2.31639e-107 2.56444e-110 4.24617e-113 1.23433e-115 3.36525e-118 5.90762e-121 7.76336e-124 8.12942e-127 6.73786e-130 3.84069e-133 6.02175e-138 -3.8416e-139 -7.18867e-142 -9.542e-145 -1.07478e-147 -1.08973e-150 -1.02295e-153 -9.03502e-157 -7.5807e-160 -6.07484e-163 -4.65903e-166 -3.41511e-169 -2.37992e-172 -1.55951e-175 -9.40426e-179 -4.97625e-182 -2.00344e-185 -1.66636e-189 8.33877e-192 1.26091e-194 1.32875e-197 1.19915e-200 9.84152e-204 7.53835e-207 5.46233e-210 3.77346e-213 2.49674e-216 1.58643e-219 9.69084e-223 5.68937e-226 3.19913e-229 2.0431e-230 -7.43282e-229 2.45787e-227 -7.2754e-226 1.9119e-224 -4.41688e-223 8.85893e-222 -1.5179e-220 2.16809e-219 -2.51632e-218 2.27738e-217 -1.50499e-216 6.42595e-216 -1.30901e-215 -9.81629e-217 -5.88947e-216 4.35782e-216 6.39508e-217 1.69091e-218 -3.31345e-219 -4.4821e-220 -3.13323e-221 -1.54476e-222 -5.95577e-224 -1.89196e-225 -5.10591e-227 -1.19409e-228 -2.45392e-230 -4.47902e-232 -7.32554e-234 -1.0818e-235 -1.45222e-237 -1.78277e-239 -2.01196e-241 -2.09666e-243 -2.02516e-245 -1.81896e-247 -1.52344e-249 -1.19258e-251 -8.74234e-254 -6.01083e-256 -3.88166e-258 -2.35747e-260 -1.3481e-262 -7.26511e-265 -3.6925e-267 -1.77098e-269 -8.01884e-272 -3.42873e-274 -1.38458e-276 -5.28023e-279 -1.90155e-281 -6.46611e-284 -2.07565e-286 -6.28728e-289 -1.79635e-291 -4.82774e-294 5.64948e-99 7.02822e-102 8.47977e-105 -7.63515e-108 -6.16765e-110 -1.61204e-112 -2.12245e-115 -2.05399e-118 -1.4328e-121 -3.98881e-125 8.36883e-128 2.04922e-130 3.05268e-133 3.73324e-136 4.05791e-139 4.06064e-142 3.81589e-145 3.41047e-148 2.92159e-151 2.40837e-154 1.91029e-157 1.4517e-160 1.04686e-163 7.03743e-167 4.25819e-170 2.12528e-173 5.94834e-177 -4.08613e-180 -9.80791e-183 -1.22609e-185 -1.24609e-188 -1.12953e-191 -9.46272e-195 -7.45643e-198 -5.58163e-201 -3.99325e-204 -2.74043e-207 -1.8076e-210 -1.14665e-213 -6.98966e-217 -4.08401e-220 -2.27614e-223 -1.1996e-226 -5.88417e-230 -1.30098e-232 3.4332e-231 -1.01335e-229 2.65521e-228 -6.11573e-227 1.22244e-225 -2.08326e-224 2.96084e-223 -3.42455e-222 3.08983e-221 -2.03574e-220 8.6657e-220 -1.75934e-219 -1.36116e-220 -7.8383e-220 5.75835e-220 8.56977e-221 2.42283e-222 -4.24018e-223 -5.87154e-224 -4.14029e-225 -2.05342e-226 -7.95309e-228 -2.53581e-229 -6.86592e-231 -1.61077e-232 -3.32094e-234 -6.08214e-236 -9.98264e-238 -1.47951e-239 -1.99332e-241 -2.45582e-243 -2.78127e-245 -2.90844e-247 -2.81903e-249 -2.54087e-251 -2.13565e-253 -1.67797e-255 -1.23483e-257 -8.5253e-260 -5.52986e-262 -3.37439e-264 -1.93941e-266 -1.05089e-268 -5.3727e-271 -2.59319e-273 -1.18228e-275 -5.09372e-278 -2.07421e-280 -7.98346e-283 -2.90441e-285 -9.9872e-288 -3.24546e-290 -9.96369e-293 -2.88905e-295 -7.89262e-298 3.51902e-96 7.84924e-99 1.7431e-101 3.43614e-104 6.41804e-107 3.85186e-110 7.29981e-114 -2.6179e-116 -5.81349e-119 -8.50532e-122 -1.04422e-124 -1.15178e-127 -1.17878e-130 -1.14139e-133 -1.05962e-136 -9.52535e-140 -8.34058e-143 -7.12093e-146 -5.90076e-149 -4.69469e-152 -3.52115e-155 -2.41128e-158 -1.40858e-161 -5.57242e-165 1.10943e-168 5.83991e-171 8.70376e-174 9.95728e-177 9.9665e-180 9.13203e-183 7.82467e-186 6.34446e-189 4.90373e-192 3.6299e-195 2.58078e-198 1.76488e-201 1.16094e-204 7.33499e-208 4.43608e-211 2.55203e-214 1.38099e-217 6.88114e-221 3.01079e-224 1.00116e-227 6.23169e-232 -2.53388e-234 -1.37936e-233 3.60456e-232 -8.28147e-231 1.65007e-229 -2.7974e-228 3.96219e-227 -4.57066e-226 4.11422e-225 -2.70451e-224 1.14866e-223 -2.32627e-223 -1.85531e-224 -1.02909e-223 7.50519e-224 1.13151e-224 3.39852e-226 -5.34801e-227 -7.5889e-228 -5.39959e-229 -2.69449e-230 -1.04858e-231 -3.35635e-233 -9.11856e-235 -2.14616e-236 -4.43917e-238 -8.15755e-240 -1.34358e-241 -1.99843e-243 -2.70212e-245 -3.34091e-247 -3.79687e-249 -3.98414e-251 -3.87489e-253 -3.50454e-255 -2.95589e-257 -2.33073e-259 -1.72157e-261 -1.19324e-263 -7.77182e-266 -4.76313e-268 -2.75032e-270 -1.49778e-272 -7.69908e-275 -3.73807e-277 -1.71535e-279 -7.44329e-282 -3.05488e-284 -1.186e-286 -4.35563e-289 -1.51324e-291 -4.97305e-294 -1.54565e-296 -4.5425e-299 -1.25946e-301 5.29982e-94 1.34027e-96 3.39664e-99 8.16832e-102 1.89443e-104 2.11057e-107 2.268e-110 2.34715e-113 2.3383e-116 2.24807e-119 2.09994e-122 1.92709e-125 1.76223e-128 1.62467e-131 1.51318e-134 1.40811e-137 1.28151e-140 1.10905e-143 8.80086e-147 6.0163e-150 2.96635e-153 -3.37587e-158 -2.67586e-159 -4.73018e-162 -6.07707e-165 -6.7115e-168 -6.72398e-171 -6.2639e-174 -5.50032e-177 -4.59063e-180 -3.66185e-183 -2.80214e-186 -2.0617e-189 -1.45978e-192 -9.94043e-196 -6.49449e-199 -4.05146e-202 -2.39244e-205 -1.31617e-208 -6.52928e-212 -2.68753e-215 -6.37514e-219 3.26492e-222 6.77105e-225 7.13385e-228 6.12647e-231 4.71546e-234 5.11655e-236 -1.09563e-234 2.17692e-233 -3.67605e-232 5.19279e-231 -5.97891e-230 5.37336e-229 -3.5271e-228 1.49615e-227 -3.02739e-227 -2.48736e-228 -1.33039e-227 9.63155e-228 1.47083e-228 4.66871e-230 -6.64348e-231 -9.67144e-232 -6.9458e-233 -3.4882e-234 -1.36423e-235 -4.38455e-237 -1.19544e-238 -2.82299e-240 -5.85845e-242 -1.08021e-243 -1.78537e-245 -2.665e-247 -3.61634e-249 -4.48719e-251 -5.11745e-253 -5.38836e-255 -5.25845e-257 -4.772e-259 -4.03857e-261 -3.1953e-263 -2.36849e-265 -1.64769e-267 -1.07738e-269 -6.63075e-272 -3.84601e-274 -2.10466e-276 -1.08757e-278 -5.31055e-281 -2.45199e-283 -1.0711e-285 -4.42819e-288 -1.73297e-290 -6.42032e-293 -2.2519e-295 -7.47767e-298 -2.35048e-300 -6.99296e-303 -1.96463e-305 4.17091e-93 8.70709e-96 2.15926e-98 4.05524e-101 7.0881e-104 1.299e-107 -1.56604e-110 -3.11668e-113 -7.81724e-116 -2.16027e-118 -4.91146e-121 -9.0695e-124 -1.40566e-126 -1.87553e-129 -2.17836e-132 -2.19073e-135 -1.8452e-138 -1.15244e-141 -1.99567e-145 8.7451e-148 1.91558e-150 2.79159e-153 3.41286e-156 3.74114e-159 3.78687e-162 3.59702e-165 3.23819e-168 2.78067e-171 2.28763e-174 1.80851e-177 1.37615e-180 1.008e-183 7.0953e-187 4.78051e-190 3.06043e-193 1.83706e-196 1.00742e-199 4.75006e-203 1.56171e-206 -1.70939e-210 -9.6995e-213 -1.21388e-215 -1.16117e-218 -9.76635e-222 -7.56883e-225 -5.52138e-228 -3.83438e-231 -2.55121e-234 -1.77355e-237 2.80454e-237 -4.72685e-236 6.66365e-235 -7.66337e-234 6.88408e-233 -4.51724e-232 1.91509e-231 -3.87097e-231 -3.27119e-232 -1.6906e-231 1.21566e-231 1.88027e-232 6.28048e-234 -8.1203e-235 -1.21425e-235 -8.80568e-237 -4.45191e-238 -1.75036e-239 -5.65012e-241 -1.54633e-242 -3.66431e-244 -7.63025e-246 -1.41173e-247 -2.34148e-249 -3.50757e-251 -4.77681e-253 -5.94835e-255 -6.8078e-257 -7.19307e-259 -7.04368e-261 -6.41377e-263 -5.44638e-265 -4.3239e-267 -3.21635e-269 -2.24577e-271 -1.4742e-273 -9.11046e-276 -5.30743e-278 -2.91796e-280 -1.5154e-282 -7.43986e-285 -3.45528e-287 -1.51893e-289 -6.32291e-292 -2.49302e-294 -9.31158e-297 -3.29492e-299 -1.10459e-301 -3.50803e-304 -1.05533e-306 -2.99997e-309 1.51529e-90 4.0253e-93 1.03754e-95 2.25383e-98 4.6168e-101 2.37693e-104 1.79128e-107 4.56267e-110 1.18438e-112 2.34948e-115 3.7641e-118 5.07943e-121 5.86026e-124 5.70168e-127 4.35785e-130 1.82003e-133 -1.66904e-136 -5.66904e-139 -9.64944e-142 -1.31083e-144 -1.56803e-147 -1.71673e-150 -1.75538e-153 -1.69623e-156 -1.56134e-159 -1.37634e-162 -1.16607e-165 -9.51608e-169 -7.48575e-172 -5.66906e-175 -4.11811e-178 -2.84951e-181 -1.85489e-184 -1.10936e-187 -5.78245e-191 -2.22475e-194 -2.74041e-199 1.17327e-200 1.69054e-203 1.7765e-206 1.62047e-209 1.35434e-212 1.06222e-215 7.91722e-219 5.64874e-222 3.87442e-225 2.56059e-228 1.63182e-231 1.00197e-234 5.91557e-238 -5.61034e-240 8.37363e-239 -9.6251e-238 8.64352e-237 -5.67035e-236 2.40334e-235 -4.85532e-235 -4.21627e-236 -2.10955e-235 1.50763e-235 2.3623e-236 8.27394e-238 -9.75943e-239 -1.50073e-239 -1.09928e-240 -5.59625e-242 -2.2125e-243 -7.17525e-245 -1.97179e-246 -4.69022e-248 -9.80223e-250 -1.82019e-251 -3.03001e-253 -4.55581e-255 -6.22741e-257 -7.7834e-259 -8.94055e-261 -9.48043e-263 -9.31614e-265 -8.5123e-267 -7.25321e-269 -5.77823e-271 -4.31329e-273 -3.02271e-275 -1.99185e-277 -1.23597e-279 -7.23134e-282 -3.99383e-284 -2.08425e-286 -1.02861e-288 -4.80391e-291 -2.12446e-293 -8.90042e-296 -3.53364e-298 -1.32975e-300 -4.7436e-303 -1.60421e-305 -5.14299e-308 -1.56301e-310 -4.49089e-313 5.19063e-88 1.34818e-90 3.9009e-93 9.0403e-96 1.93934e-98 2.67747e-102 -2.30612e-104 -5.51778e-107 -8.76905e-110 -1.11791e-112 -1.17449e-115 -9.58547e-119 -4.20056e-122 4.34234e-125 1.53564e-127 2.766e-130 3.98161e-133 5.04344e-136 5.84404e-139 6.32382e-142 6.47073e-145 6.31448e-148 5.91227e-151 5.33458e-154 4.65033e-157 3.92002e-160 3.19142e-163 2.49948e-166 1.86889e-169 1.31642e-172 8.52236e-176 4.80356e-179 1.9889e-182 6.38797e-188 -1.25749e-188 -1.94155e-191 -2.19219e-194 -2.14739e-197 -1.92533e-200 -1.61827e-203 -1.29152e-206 -9.86118e-210 -7.23708e-213 -5.11941e-216 -3.49543e-219 -2.30382e-222 -1.46382e-225 -8.93821e-229 -5.21373e-232 -2.87394e-235 -1.4662e-238 -5.58207e-242 -1.18285e-241 1.06212e-240 -6.96901e-240 2.9544e-239 -5.96858e-239 -5.32195e-240 -2.58315e-239 1.83647e-239 2.91602e-240 1.06763e-241 -1.1528e-242 -1.82512e-243 -1.35075e-244 -6.92571e-246 -2.754e-247 -8.97557e-249 -2.47739e-250 -5.917e-252 -1.24149e-253 -2.31433e-255 -3.86763e-257 -5.83802e-259 -8.01146e-261 -1.00526e-262 -1.15921e-264 -1.23387e-266 -1.21694e-268 -1.11592e-270 -9.54209e-273 -7.62841e-275 -5.71465e-277 -4.0194e-279 -2.65872e-281 -1.65636e-283 -9.73148e-286 -5.39833e-288 -2.83034e-290 -1.40374e-292 -6.59059e-295 -2.93103e-297 -1.23537e-299 -4.93653e-302 -1.87069e-304 -6.72373e-307 -2.29238e-309 -7.41373e-312 -2.27441e-314 -6.5981e-317 2.21453e-85 6.84088e-88 2.11938e-90 6.05e-93 1.66545e-95 1.93162e-98 2.01081e-101 1.77166e-104 1.08537e-107 -1.42822e-111 -1.94078e-113 -4.24546e-116 -6.89773e-119 -9.6615e-122 -1.22682e-124 -1.44656e-127 -1.60732e-130 -1.70032e-133 -1.72623e-136 -1.69274e-139 -1.6112e-142 -1.49368e-145 -1.34979e-148 -1.1865e-151 -1.00866e-154 -8.20844e-158 -6.2885e-161 -4.40213e-164 -2.63681e-167 -1.07872e-170 2.02778e-174 1.16723e-176 1.80822e-179 2.15102e-182 2.24458e-185 2.15069e-188 1.93321e-191 1.64975e-194 1.34641e-197 1.05589e-200 7.98156e-204 5.82613e-207 4.10968e-210 2.80013e-213 1.8394e-216 1.16047e-219 6.98237e-223 3.95598e-226 2.0583e-229 9.27656e-233 2.96988e-236 -2.25699e-240 -1.5915e-242 1.08071e-244 -8.37844e-244 3.55473e-243 -7.18637e-243 -6.57618e-244 -3.10312e-243 2.19658e-243 3.53508e-244 1.34927e-245 -1.33759e-246 -2.18302e-247 -1.63285e-248 -8.43414e-250 -3.37418e-251 -1.10546e-252 -3.06566e-254 -7.35436e-256 -1.54965e-257 -2.90092e-259 -4.86819e-261 -7.37896e-263 -1.01681e-264 -1.28115e-266 -1.48336e-268 -1.58515e-270 -1.5694e-272 -1.4445e-274 -1.23972e-276 -9.94713e-279 -7.47893e-281 -5.27983e-283 -3.50579e-285 -2.19272e-287 -1.29358e-289 -7.20667e-292 -3.79547e-294 -1.89137e-296 -8.92478e-299 -3.99039e-301 -1.69148e-303 -6.80046e-306 -2.59396e-308 -9.38928e-311 -3.22555e-313 -1.05167e-315 -3.22659e-318 0 2.7638e-83 9.10643e-86 3.01698e-88 9.5501e-91 2.92897e-93 4.30732e-96 6.10653e-99 8.34349e-102 1.09793e-104 1.39024e-107 1.69251e-110 1.9805e-113 2.22908e-116 2.41869e-119 2.54117e-122 2.60293e-125 2.62129e-128 2.6176e-131 2.60638e-134 2.58712e-137 2.54131e-140 2.43672e-143 2.23838e-146 1.92098e-149 1.47927e-152 9.33182e-156 3.25253e-159 -2.88101e-162 -8.48458e-165 -1.30676e-167 -1.63133e-170 -1.81104e-173 -1.85388e-176 -1.78217e-179 -1.6263e-182 -1.41857e-185 -1.18839e-188 -9.59294e-192 -7.47779e-195 -5.63565e-198 -4.10718e-201 -2.8916e-204 -1.96162e-207 -1.276e-210 -7.8896e-214 -4.56253e-217 -2.387e-220 -1.03707e-223 -2.54984e-227 1.54077e-230 3.31167e-233 3.73963e-236 3.4686e-239 2.89903e-242 2.25194e-245 4.35187e-247 -8.47167e-247 -7.95251e-248 -3.6554e-247 2.57822e-247 4.20598e-248 1.66956e-249 -1.52325e-250 -2.56605e-251 -1.9404e-252 -1.00997e-253 -4.0662e-255 -1.33961e-256 -3.73387e-258 -9.00012e-260 -1.90517e-261 -3.58262e-263 -6.03923e-265 -9.19481e-267 -1.27262e-268 -1.61039e-270 -1.87244e-272 -2.00915e-274 -1.99719e-276 -1.84547e-278 -1.58996e-280 -1.2806e-282 -9.66511e-285 -6.84935e-287 -4.56568e-289 -2.86706e-291 -1.69836e-293 -9.50205e-296 -5.0265e-298 -2.51641e-300 -1.1932e-302 -5.3624e-305 -2.28545e-307 -9.24173e-310 -3.54702e-312 -1.29245e-314 -4.47183e-317 -1.39801e-319 0 0 2.70684e-82 8.88704e-85 3.39947e-87 1.05557e-89 3.13112e-92 2.91164e-95 1.99799e-98 4.74488e-102 -1.21596e-104 -2.43727e-107 -2.91713e-110 -3.62221e-113 -7.57305e-116 -1.99982e-118 -4.72842e-121 -9.46032e-124 -1.62777e-126 -2.45525e-129 -3.28516e-132 -3.9105e-135 -4.10361e-138 -3.67451e-141 -2.52574e-144 -6.85854e-148 1.68738e-150 4.33714e-153 6.95892e-156 9.26068e-159 1.10138e-161 1.20849e-164 1.24434e-167 1.21494e-170 1.13273e-173 1.01343e-176 8.73198e-180 7.26399e-183 5.8436e-186 4.54905e-189 3.4255e-192 2.49076e-195 1.74248e-198 1.16509e-201 7.35792e-205 4.28985e-208 2.19346e-211 8.374e-215 2.23446e-219 -4.15198e-221 -6.03344e-224 -6.37976e-227 -5.87387e-230 -4.97518e-233 -3.97151e-236 -3.0261e-239 -2.21719e-242 -1.56923e-245 -1.08561e-248 -1.6561e-251 -4.21934e-251 2.96691e-251 4.90658e-252 2.02129e-253 -1.70057e-254 -2.96108e-255 -2.26442e-256 -1.18803e-257 -4.81513e-259 -1.59576e-260 -4.47204e-262 -1.08347e-263 -2.30489e-265 -4.35537e-267 -7.37725e-269 -1.12856e-270 -1.56935e-272 -1.99504e-274 -2.33012e-276 -2.51125e-278 -2.50696e-280 -2.32611e-282 -2.01216e-284 -1.62714e-286 -1.23295e-288 -8.77235e-291 -5.87101e-293 -3.70181e-295 -2.202e-297 -1.23725e-299 -6.57377e-302 -3.30605e-304 -1.57508e-306 -7.1139e-309 -3.04782e-311 -1.23928e-313 -4.78423e-316 -1.73409e-318 0 0 0 0 9.75868e-80 3.81111e-82 1.42452e-84 4.80181e-87 1.55195e-89 1.8495e-92 1.92432e-95 1.67202e-98 1.17229e-101 8.83997e-105 1.8061e-107 5.47145e-110 1.36416e-112 2.76534e-115 4.75273e-118 7.11188e-121 9.36995e-124 1.08293e-126 1.06867e-129 8.21749e-133 2.97494e-136 -5.05435e-139 -1.539e-141 -2.71177e-144 -3.90566e-147 -4.99632e-150 -5.87605e-153 -6.46999e-156 -6.7444e-159 -6.70601e-162 -6.39441e-165 -5.87048e-168 -5.20407e-171 -4.46341e-174 -3.70768e-177 -2.98301e-180 -2.32153e-183 -1.74245e-186 -1.25428e-189 -8.57433e-193 -5.46581e-196 -3.12745e-199 -1.44924e-202 -3.13574e-206 3.95123e-209 7.83499e-212 9.4466e-215 9.55682e-218 8.76971e-221 7.53126e-224 6.14853e-227 4.81477e-230 3.63634e-233 2.65795e-236 1.88433e-239 1.29716e-242 8.67307e-246 5.62897e-249 3.53548e-252 5.49407e-255 5.61778e-256 2.39212e-257 -1.85873e-258 -3.35045e-259 -2.59221e-260 -1.37138e-261 -5.59756e-263 -1.8668e-264 -5.26207e-266 -1.28188e-267 -2.74143e-269 -5.20718e-271 -8.86529e-273 -1.36307e-274 -1.90493e-276 -2.43351e-278 -2.85588e-280 -3.09234e-282 -3.10125e-284 -2.89046e-286 -2.51133e-288 -2.03953e-290 -1.55196e-292 -1.10882e-294 -7.45188e-297 -4.71833e-299 -2.81862e-301 -1.59057e-303 -8.4884e-306 -4.28833e-308 -2.05266e-310 -9.31618e-313 -4.01176e-315 -1.63772e-317 -4.56023e-320 0 0 0 0 0 2.83956e-77 1.09163e-79 4.45219e-82 1.61862e-84 5.69422e-87 7.72881e-90 9.12637e-93 8.34853e-96 3.01666e-99 -9.83381e-102 -3.29465e-104 -6.74182e-107 -1.10855e-109 -1.55636e-112 -1.88053e-115 -1.89055e-118 -1.36988e-121 -1.20428e-125 1.98543e-127 4.95957e-130 8.67413e-133 1.28673e-135 1.71806e-138 2.12199e-141 2.46163e-144 2.70921e-147 2.84832e-150 2.87565e-153 2.79927e-156 2.63547e-159 2.40507e-162 2.13007e-165 1.83113e-168 1.52612e-171 1.22946e-174 9.52198e-178 7.02288e-181 4.84948e-184 3.02979e-187 1.57013e-190 4.57623e-194 -3.36741e-197 -8.54126e-200 -1.1432e-202 -1.25527e-205 -1.23985e-208 -1.14113e-211 -9.95774e-215 -8.31967e-218 -6.69572e-221 -5.21116e-224 -3.9321e-227 -2.88101e-230 -2.05121e-233 -1.41903e-236 -9.52965e-240 -6.19991e-243 -3.89371e-246 -2.34643e-249 -1.3429e-252 -7.16088e-256 -3.38974e-259 -3.2894e-262 -3.71518e-263 -2.90799e-264 -1.55198e-265 -6.38225e-267 -2.14283e-268 -6.07776e-270 -1.4893e-271 -3.20305e-273 -6.11766e-275 -1.04721e-276 -1.61878e-278 -2.27425e-280 -2.92038e-282 -3.44465e-284 -3.74841e-286 -3.77755e-288 -3.53766e-290 -3.08808e-292 -2.5195e-294 -1.92589e-296 -1.38214e-298 -9.33002e-301 -5.93364e-303 -3.5603e-305 -2.01806e-307 -1.08185e-309 -5.49068e-312 -2.64064e-314 -1.2042e-316 -5.28047e-319 0 0 0 0 0 0 0 9.36527e-75 3.75806e-77 1.51988e-79 5.79371e-82 2.15266e-84 3.63386e-87 5.84887e-90 8.90591e-93 1.26982e-95 1.67018e-98 1.97437e-101 1.98098e-104 1.39888e-107 -1.3445e-111 -3.00492e-113 -7.54662e-116 -1.39527e-118 -2.21951e-121 -3.19778e-124 -4.27452e-127 -5.37466e-130 -6.41493e-133 -7.31637e-136 -8.01636e-139 -8.4779e-142 -8.68744e-145 -8.65343e-148 -8.39781e-151 -7.94939e-154 -7.33842e-157 -6.59398e-160 -5.74436e-163 -4.819e-166 -3.85059e-169 -2.87587e-172 -1.93433e-175 -1.06513e-178 -3.02924e-182 3.26243e-185 8.0778e-188 1.13962e-190 1.33135e-193 1.40168e-196 1.37512e-199 1.27831e-202 1.13694e-205 9.73411e-209 8.05533e-212 6.46097e-215 5.03183e-218 3.80905e-221 2.80353e-224 2.00535e-227 1.39209e-230 9.35435e-234 6.05808e-237 3.75386e-240 2.1976e-243 1.18638e-246 5.58802e-250 1.91556e-253 -6.09282e-258 -9.84478e-260 -1.29329e-262 -1.27631e-265 -1.2734e-268 -8.01215e-271 -2.4181e-272 -6.88551e-274 -1.69772e-275 -3.67339e-277 -7.05733e-279 -1.21506e-280 -1.88895e-282 -2.66869e-284 -3.44571e-286 -4.08614e-288 -4.46988e-290 -4.5279e-292 -4.26187e-294 -3.73879e-296 -3.06533e-298 -2.35443e-300 -1.69776e-302 -1.15146e-304 -7.35727e-307 -4.43509e-309 -2.52564e-311 -1.36031e-313 -6.93703e-316 -3.35392e-318 -1.11511e-320 0 0 0 0 0 0 0 0 1.2543e-72 5.1346e-75 2.09225e-77 8.21717e-80 3.15507e-82 5.88828e-85 1.06965e-87 1.88775e-90 3.22897e-93 5.34081e-96 8.52603e-99 1.31174e-101 1.94293e-104 2.76888e-107 3.79572e-110 5.00655e-113 6.35903e-116 7.78925e-119 9.22236e-122 1.05877e-124 1.18339e-127 1.29383e-130 1.39046e-133 1.47491e-136 1.54778e-139 1.60681e-142 1.64511e-145 1.65096e-148 1.61e-151 1.50842e-154 1.33684e-157 1.09368e-160 7.86981e-164 4.34135e-167 5.97236e-171 -3.08192e-173 -6.4231e-176 -9.19983e-179 -1.12596e-181 -1.25367e-184 -1.30487e-187 -1.28819e-190 -1.21687e-193 -1.10633e-196 -9.71962e-200 -8.27525e-203 -6.84141e-206 -5.49916e-209 -4.30013e-212 -3.27067e-215 -2.41732e-218 -1.7326e-221 -1.20012e-224 -7.98828e-228 -5.06119e-231 -3.0004e-234 -1.60674e-237 -7.08864e-241 -1.6584e-244 1.33548e-247 2.73634e-250 3.15801e-253 3.02804e-256 2.62951e-259 2.13862e-262 1.65614e-265 1.23239e-268 8.86004e-272 6.16696e-275 3.9886e-278 -1.38457e-281 -7.81265e-283 -1.38269e-284 -2.1642e-286 -3.07583e-288 -3.99454e-290 -4.764e-292 -5.24053e-294 -5.33767e-296 -5.0511e-298 -4.45457e-300 -3.67112e-302 -2.8341e-304 -2.0539e-306 -1.39991e-308 -8.98859e-311 -5.44499e-313 -3.11592e-315 -1.6867e-317 -7.69013e-320 0 0 0 0 0 0 0 0 0 0 1.52224e-71 7.33498e-74 3.82917e-76 1.68725e-78 5.96086e-81 9.9217e-84 1.55424e-86 2.29922e-89 3.23614e-92 4.4054e-95 5.97306e-98 8.37071e-101 1.23922e-103 1.90444e-106 2.88624e-109 4.04505e-112 4.82907e-115 4.03687e-118 -3.26287e-122 -1.09545e-123 -3.07909e-126 -6.21953e-129 -1.0586e-131 -1.59739e-134 -2.18373e-137 -2.72974e-140 -3.1232e-143 -3.24646e-146 -2.9986e-149 -2.31836e-152 -1.20032e-155 2.99216e-159 2.06829e-161 3.95595e-164 5.79554e-167 7.42959e-170 8.73114e-173 9.61803e-176 1.00582e-178 1.00668e-181 9.69652e-185 9.02506e-188 8.14128e-191 7.13335e-194 6.0798e-197 5.04449e-200 4.07477e-203 3.202e-206 2.44357e-209 1.80557e-212 1.28551e-215 8.74857e-219 5.61293e-222 3.30535e-225 1.67807e-228 5.89149e-232 -9.01311e-236 -4.70923e-238 -6.44907e-241 -6.84357e-244 -6.43619e-247 -5.61492e-250 -4.64033e-253 -3.67422e-256 -2.80605e-259 -2.07547e-262 -1.49038e-265 -1.04039e-268 -7.06246e-272 -4.65911e-275 -2.98185e-278 -1.84546e-281 -1.09855e-284 -6.25216e-288 -3.65405e-291 -6.13237e-294 -5.51836e-296 -6.03822e-298 -6.18405e-300 -5.88502e-302 -5.21863e-304 -4.32408e-306 -3.35597e-308 -2.44489e-310 -1.67508e-312 -1.08111e-314 -6.58073e-317 -3.57061e-319 0 0 0 0 0 0 0 0 0 0 0 0 5.34335e-69 2.93482e-71 1.49358e-73 6.95118e-76 1.61384e-78 2.78931e-81 4.34936e-84 5.96396e-87 6.73168e-90 4.90281e-93 -2.14474e-96 -1.71819e-98 -4.09693e-101 -6.80686e-104 -8.06693e-107 -4.17587e-110 1.09383e-112 4.55084e-115 1.08636e-117 2.07706e-120 3.44736e-123 5.12408e-126 6.90969e-129 8.47413e-132 9.37899e-135 9.13748e-138 7.30366e-141 3.56486e-144 -2.17455e-147 -9.74678e-150 -1.87209e-152 -2.84545e-155 -3.81832e-158 -4.71313e-161 -5.46173e-164 -6.01368e-167 -6.34093e-170 -6.43844e-173 -6.32144e-176 -6.0204e-179 -5.57493e-182 -5.02778e-185 -4.42017e-188 -3.78871e-191 -3.16396e-194 -2.56998e-197 -2.02453e-200 -1.5395e-203 -1.12162e-206 -7.731e-210 -4.92427e-213 -2.75113e-216 -1.14484e-219 -2.47575e-224 6.96089e-226 1.10422e-228 1.28021e-231 1.29473e-234 1.20636e-237 1.06089e-240 8.91882e-244 7.2221e-247 5.65945e-250 4.30452e-253 3.18331e-256 2.29082e-259 1.60416e-262 1.09208e-265 7.21323e-269 4.60611e-272 2.82664e-275 1.65e-278 8.99015e-282 4.39237e-285 1.72141e-288 2.78833e-292 -4.14217e-295 -6.7468e-298 -7.04679e-301 -6.31476e-304 -5.67047e-307 -8.88024e-310 -4.18898e-312 -2.88101e-314 -1.97234e-316 -1.27848e-318 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.30875e-66 7.35632e-69 4.09465e-71 2.04841e-73 9.13372e-76 1.81177e-78 3.3675e-81 5.85302e-84 9.44872e-87 1.39567e-89 1.82643e-92 1.95055e-95 1.19901e-98 -1.37962e-101 -7.15098e-104 -1.77713e-106 -3.48175e-109 -5.91198e-112 -8.98348e-115 -1.23425e-117 -1.52835e-120 -1.67237e-123 -1.52654e-126 -9.36357e-130 2.41743e-133 2.11013e-135 4.70151e-138 7.96103e-141 1.17439e-143 1.58254e-146 1.99317e-149 2.37758e-152 2.70968e-155 2.96909e-158 3.14306e-161 3.2269e-164 3.22309e-167 3.13962e-170 2.98786e-173 2.78062e-176 2.5307e-179 2.25033e-182 1.951e-185 1.6436e-188 1.33845e-191 1.04522e-194 7.72645e-198 5.281e-201 3.17104e-204 1.42961e-207 6.60584e-212 -9.33029e-214 -1.60033e-216 -1.98254e-219 -2.13432e-222 -2.1123e-225 -1.97006e-228 -1.7545e-231 -1.50376e-234 -1.24656e-237 -1.00269e-240 -7.84222e-244 -5.97093e-247 -4.42733e-250 -3.19569e-253 -2.24259e-256 -1.52628e-259 -1.00329e-262 -6.32597e-266 -3.78075e-269 -2.09422e-272 -1.02267e-275 -3.77169e-279 -1.61486e-283 1.62904e-285 2.31647e-288 2.38274e-291 2.13789e-294 1.77066e-297 1.38773e-300 1.04275e-303 7.57056e-307 5.33672e-310 3.66465e-313 2.4565e-316 1.5981e-319 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.43834e-64 1.9605e-66 1.08686e-68 5.58385e-71 2.65819e-73 5.85368e-76 1.22643e-78 2.45216e-81 4.68847e-84 8.57919e-87 1.50165e-89 2.50923e-92 3.98847e-95 5.99692e-98 8.45524e-101 1.1019e-103 1.29186e-106 1.27975e-109 8.59922e-113 -2.43082e-116 -2.35672e-118 -5.82179e-121 -1.0935e-123 -1.78819e-126 -2.66743e-129 -3.71104e-132 -4.8771e-135 -6.10651e-138 -7.32965e-141 -8.47786e-144 -9.49223e-147 -1.03311e-149 -1.09729e-152 -1.14136e-155 -1.16604e-158 -1.1724e-161 -1.16111e-164 -1.13203e-167 -1.08421e-170 -1.01644e-173 -9.2798e-177 -8.19342e-180 -6.92895e-183 -5.53034e-186 -4.05925e-189 -2.58862e-192 -1.1938e-195 5.67515e-200 1.1094e-201 1.93052e-204 2.50833e-207 2.85147e-210 2.98506e-213 2.94539e-216 2.7742e-219 2.51353e-222 2.20171e-225 1.87087e-228 1.54568e-231 1.2434e-234 9.74575e-238 7.44247e-241 5.53297e-244 3.99727e-247 2.79758e-250 1.88709e-253 1.21643e-256 7.38096e-260 4.09132e-263 1.92507e-266 5.75727e-270 -2.01182e-273 -5.93819e-276 -7.41825e-279 -7.44872e-282 -6.7105e-285 -5.64497e-288 -4.51941e-291 -3.48031e-294 -2.59469e-297 -1.88069e-300 -1.32908e-303 -9.1755e-307 -6.19602e-310 -4.09568e-313 -2.65083e-316 -1.61056e-319 0 0 0 0 0 0 0 0 0 0 0 0 0 4.27095e-62 2.45458e-64 1.3655e-66 7.17222e-69 3.39645e-71 7.98138e-74 1.7938e-76 3.86863e-79 8.03028e-82 1.60848e-84 3.11518e-87 5.84157e-90 1.0614e-92 1.86901e-95 3.18887e-98 5.26902e-101 8.42561e-104 1.30297e-106 1.94728e-109 2.81074e-112 3.91669e-115 5.26792e-118 6.8398e-121 8.57817e-124 1.04051e-126 1.22331e-129 1.39867e-132 1.56259e-135 1.71679e-138 1.86889e-141 2.03097e-144 2.21613e-147 2.43355e-150 2.68325e-153 2.95211e-156 3.21243e-159 3.42408e-162 3.54005e-165 3.5147e-168 3.3126e-171 2.91639e-174 2.33151e-177 1.58695e-180 7.31811e-184 -1.71478e-187 -1.05596e-189 -1.85906e-192 -2.53005e-195 -3.03506e-198 -3.35893e-201 -3.5043e-204 -3.48843e-207 -3.33868e-210 -3.08777e-213 -2.76938e-216 -2.41469e-219 -2.05022e-222 -1.69669e-225 -1.36889e-228 -1.07615e-231 -8.2321e-235 -6.11189e-238 -4.38579e-241 -3.02102e-244 -1.9744e-247 -1.19806e-250 -6.43723e-254 -2.65734e-257 -2.30037e-261 1.19869e-263 1.92183e-266 2.17241e-269 2.12824e-272 1.91902e-275 1.6346e-278 1.33334e-281 1.04994e-284 8.02265e-288 5.969e-291 4.33463e-294 3.07741e-297 2.13833e-300 1.45509e-303 9.6987e-307 6.33042e-310 4.04301e-313 2.52288e-316 1.51481e-319 0 0 0 0 0 0 0 0 0 0 0 0 5.06572e-61 3.79863e-63 2.83076e-65 1.66314e-67 4.57494e-70 1.17543e-72 2.81984e-75 6.31962e-78 1.32448e-80 2.59947e-83 4.78706e-86 8.30079e-89 1.36462e-91 2.15527e-94 3.34748e-97 5.28764e-100 8.77952e-103 1.54957e-105 2.84891e-108 5.25898e-111 9.42603e-114 1.60297e-116 2.5476e-119 3.73841e-122 4.99134e-125 5.90855e-128 5.83632e-131 3.88048e-134 -9.91946e-138 -9.75661e-140 -2.3061e-142 -4.09165e-145 -6.2448e-148 -8.57623e-151 -1.08015e-153 -1.25695e-156 -1.35115e-159 -1.33002e-162 -1.17101e-165 -8.66443e-169 -4.25848e-172 1.24488e-175 7.4481e-178 1.38729e-180 2.00243e-183 2.5454e-186 2.98101e-189 3.28688e-192 3.45434e-195 3.48747e-198 3.40052e-201 3.2146e-204 2.95423e-207 2.64437e-210 2.30811e-213 1.96531e-216 1.6319e-219 1.31982e-222 1.03727e-225 7.89159e-229 5.77653e-232 4.02689e-235 2.625e-238 1.54072e-241 7.3582e-245 1.67707e-248 -2.07206e-251 -4.30814e-254 -5.41284e-257 -5.71705e-260 -5.49414e-263 -4.95906e-266 -4.2719e-269 -3.54465e-272 -2.84961e-275 -2.22819e-278 -1.69922e-281 -1.26623e-284 -9.23255e-288 -6.59261e-291 -4.61232e-294 -3.1618e-297 -2.12293e-300 -1.39487e-303 -8.95456e-307 -5.60252e-310 -3.403e-313 -1.99435e-316 -9.81264e-320 0 0 0 0 0 0 0 0 0 0 0 1.42816e-58 1.16069e-60 8.77182e-63 3.46943e-65 1.10881e-67 3.22866e-70 8.62774e-73 2.12442e-75 4.82706e-78 1.01073e-80 1.94011e-83 3.37355e-86 5.17803e-89 6.57779e-92 5.45683e-95 -2.61498e-98 -2.53794e-100 -7.42348e-103 -1.62684e-105 -3.01131e-108 -4.8619e-111 -6.83529e-114 -8.05426e-117 -6.87664e-120 -7.43718e-124 1.37754e-125 4.06249e-128 8.35182e-131 1.44828e-133 2.24257e-136 3.17602e-139 4.15939e-142 5.05521e-145 5.68791e-148 5.8642e-151 5.40166e-154 4.16069e-157 2.07347e-160 -8.36384e-164 -4.44821e-166 -8.5544e-169 -1.28847e-171 -1.714e-174 -2.10296e-177 -2.43047e-180 -2.67839e-183 -2.83656e-186 -2.90281e-189 -2.88191e-192 -2.78381e-195 -2.62168e-198 -2.41012e-201 -2.16379e-204 -1.89647e-207 -1.62058e-210 -1.3469e-213 -1.08449e-216 -8.4069e-220 -6.21106e-223 -4.29577e-226 -2.68209e-229 -1.37446e-232 -3.62261e-236 3.77718e-239 8.78077e-242 1.17724e-244 1.31591e-247 1.33383e-250 1.26736e-253 1.14769e-256 1.00008e-259 8.43604e-263 6.91689e-266 5.52833e-269 4.31603e-272 3.29635e-275 2.46542e-278 1.80692e-281 1.29808e-284 9.13964e-288 6.30351e-291 4.2539e-294 2.80384e-297 1.79991e-300 1.1204e-303 6.71547e-307 3.83025e-310 2.03353e-313 9.57287e-317 2.19711e-320 0 0 0 0 0 0 0 0 0 0 2.78125e-56 2.40803e-58 1.97652e-60 1.46774e-62 4.85764e-65 1.49131e-67 4.27457e-70 1.14761e-72 2.89345e-75 6.86494e-78 1.53475e-80 3.23485e-83 6.4253e-86 1.20046e-88 2.10134e-91 3.42041e-94 5.10478e-97 6.78716e-100 7.48762e-103 5.20157e-106 -3.57696e-109 -2.427e-111 -6.43498e-114 -1.32897e-116 -2.39274e-119 -3.90701e-122 -5.88751e-125 -8.25149e-128 -1.07768e-130 -1.30734e-133 -1.45794e-136 -1.45916e-139 -1.23368e-142 -7.07659e-146 1.76768e-149 1.44923e-151 3.10182e-154 5.08498e-157 7.30984e-160 9.65704e-163 1.19904e-165 1.41731e-168 1.6083e-171 1.76251e-174 1.87375e-177 1.93919e-180 1.95885e-183 1.93488e-186 1.87077e-189 1.77078e-192 1.63961e-195 1.48231e-198 1.30439e-201 1.11192e-204 9.11559e-208 7.10384e-211 5.15578e-214 3.33934e-217 1.71326e-220 3.22363e-224 -8.05724e-227 -1.6618e-229 -2.25422e-232 -2.60613e-235 -2.75152e-238 -2.73064e-241 -2.58562e-244 -2.35668e-247 -2.07946e-250 -1.78325e-253 -1.49044e-256 -1.21665e-259 -9.71483e-263 -7.59659e-266 -5.8217e-269 -4.37434e-272 -3.22284e-275 -2.32748e-278 -1.64628e-281 -1.13891e-284 -7.68891e-288 -5.04828e-291 -3.20624e-294 -1.95277e-297 -1.12333e-300 -5.92301e-304 -2.66004e-307 -7.62634e-311 2.53315e-314 7.22552e-317 7.74843e-320 0 0 0 0 0 0 0 0 0 5.67967e-54 4.9394e-56 4.05644e-58 3.06964e-60 1.0828e-62 3.49222e-65 1.06339e-67 3.05803e-70 8.31697e-73 2.14335e-75 5.24424e-78 1.22051e-80 2.70656e-83 5.72761e-86 1.1582e-88 2.24032e-91 4.14851e-94 7.35716e-97 1.24952e-99 2.03103e-102 3.15515e-105 4.67264e-108 6.5693e-111 8.70671e-114 1.07465e-116 1.20673e-119 1.16909e-122 8.24143e-126 -3.463e-131 -1.51628e-131 -3.9238e-134 -7.41437e-137 -1.21223e-139 -1.80937e-142 -2.52639e-145 -3.3449e-148 -4.23586e-151 -5.16268e-154 -6.08575e-157 -6.96741e-160 -7.7761e-163 -8.48864e-166 -9.08978e-169 -9.56926e-172 -9.91763e-175 -1.01221e-177 -1.0164e-180 -1.00193e-183 -9.66199e-187 -9.06966e-190 -8.23071e-193 -7.15062e-196 -5.85599e-199 -4.39519e-202 -2.83516e-205 -1.255e-208 2.62651e-212 1.6407e-214 2.81567e-217 3.74357e-220 4.40268e-223 4.79339e-226 4.93531e-229 4.86263e-232 4.61854e-235 4.24976e-238 3.80178e-241 3.31522e-244 2.82368e-247 2.3527e-250 1.91989e-253 1.53571e-256 1.20472e-259 9.27026e-263 6.99586e-266 5.17441e-269 3.74661e-272 2.65062e-275 1.82687e-278 1.2211e-281 7.85881e-285 4.81128e-288 2.73935e-291 1.37978e-294 5.27123e-298 2.49014e-302 -2.4313e-304 -3.61035e-307 -3.87796e-310 -3.63329e-313 -3.13376e-316 -2.56499e-319 0 0 0 0 0 0 0 0 6.56583e-52 5.53609e-54 4.47261e-56 3.37548e-58 1.21969e-60 4.10569e-63 1.312e-65 3.97809e-68 1.14549e-70 3.13658e-73 8.17828e-76 2.03332e-78 4.82714e-81 1.09582e-83 2.38239e-86 4.96827e-89 9.95515e-92 1.92001e-94 3.57061e-97 6.41401e-100 1.11478e-102 1.87752e-105 3.0682e-108 4.87023e-111 7.51481e-114 1.12774e-116 1.64637e-119 2.33835e-122 3.23097e-125 4.34296e-128 5.67938e-131 7.22807e-134 8.95974e-137 1.08328e-139 1.28025e-142 1.48354e-145 1.69235e-148 1.90945e-151 2.14122e-154 2.3962e-157 2.68207e-160 3.00149e-163 3.3475e-166 3.69998e-169 4.02409e-172 4.27185e-175 4.38709e-178 4.3132e-181 4.00253e-184 3.42558e-187 2.57812e-190 1.4848e-193 1.9823e-197 -1.20621e-199 -2.63909e-202 -4.0075e-205 -5.22576e-208 -6.22449e-211 -6.95686e-214 -7.40137e-217 -7.5611e-220 -7.46017e-223 -7.1383e-226 -6.64453e-229 -6.03111e-232 -5.34833e-235 -4.64071e-238 -3.94465e-241 -3.28757e-244 -2.68802e-247 -2.15669e-250 -1.69781e-253 -1.31067e-256 -9.91107e-260 -7.32808e-263 -5.28315e-266 -3.69811e-269 -2.49661e-272 -1.60768e-275 -9.67784e-279 -5.2177e-282 -2.23059e-285 -3.3309e-289 7.82504e-292 1.3568e-294 1.57271e-297 1.56506e-300 1.42956e-303 1.23103e-306 1.01039e-309 7.90323e-313 5.79483e-316 3.70757e-319 0 0 0 0 0 0 0 7.03388e-51 7.35431e-53 7.56665e-55 3.57322e-57 1.56764e-59 6.37328e-62 2.40183e-64 8.40489e-67 2.73687e-69 8.30996e-72 2.3568e-74 6.25167e-77 1.55226e-79 3.60839e-82 7.84902e-85 1.5953e-87 3.02143e-90 5.30759e-93 8.57973e-96 1.25873e-98 1.63204e-101 1.75985e-104 1.28814e-107 -2.26437e-111 -3.15307e-113 -7.47374e-116 -1.23565e-118 -1.5781e-121 -1.45578e-124 -5.25434e-128 1.34058e-130 3.62774e-133 4.57885e-136 5.15323e-140 -1.47136e-141 -4.98644e-144 -1.15687e-146 -2.23324e-149 -3.81674e-152 -5.93956e-155 -8.54056e-158 -1.14351e-160 -1.43009e-163 -1.66873e-166 -1.80534e-169 -1.78326e-172 -1.55144e-175 -1.07319e-178 -3.3376e-182 6.54826e-185 1.85262e-187 3.19482e-190 4.59855e-193 5.97226e-196 7.22622e-199 8.28233e-202 9.08184e-205 9.59001e-208 9.79737e-211 9.71768e-214 9.38359e-217 8.8408e-220 8.14178e-223 7.34009e-226 6.48569e-229 5.62185e-232 4.78334e-235 3.99601e-238 3.27722e-241 2.63698e-244 2.0793e-247 1.60362e-250 1.20607e-253 8.8059e-257 6.19802e-260 4.15669e-263 2.60016e-266 1.44896e-269 6.28592e-273 7.133e-277 -2.82612e-279 -4.84536e-282 -5.77185e-285 -5.95075e-288 -5.65135e-291 -5.07555e-294 -4.3674e-297 -3.62267e-300 -2.89754e-303 -2.21547e-306 -1.57153e-309 -9.33182e-313 -2.36217e-316 6.22493e-319 0 0 0 0 0 0 1.55974e-48 1.1762e-50 1.38958e-52 7.87985e-55 3.96416e-57 1.8019e-59 7.48266e-62 2.86101e-64 1.01311e-66 3.33762e-69 1.02664e-71 2.95686e-74 7.99143e-77 2.03e-79 4.85181e-82 1.09156e-84 2.31115e-87 4.60025e-90 8.58874e-93 1.49809e-95 2.42466e-98 3.5983e-101 4.78802e-104 5.44005e-107 4.56447e-110 7.43843e-114 -7.5673e-116 -2.12319e-118 -3.88962e-121 -5.46349e-124 -5.49503e-127 -1.57193e-130 9.98098e-133 3.40459e-135 7.62392e-138 1.41849e-140 2.34204e-143 3.52563e-146 4.8986e-149 6.30803e-152 7.50918e-155 8.17103e-158 7.90047e-161 6.28513e-164 2.95082e-167 -2.37487e-170 -9.8039e-173 -1.92456e-175 -3.03904e-178 -4.27252e-181 -5.55785e-184 -6.81905e-187 -7.97957e-190 -8.97051e-193 -9.73763e-196 -1.02459e-198 -1.04817e-201 -1.04513e-204 -1.01785e-207 -9.6995e-211 -9.05778e-214 -8.29923e-217 -7.46797e-220 -6.60348e-223 -5.73898e-226 -4.90083e-229 -4.10878e-232 -3.37679e-235 -2.71393e-238 -2.1253e-241 -1.61284e-244 -1.1759e-247 -8.11797e-251 -5.16113e-254 -2.83107e-257 -1.06038e-260 2.24745e-264 1.10086e-266 1.64372e-269 1.92516e-272 2.01054e-275 1.95693e-278 1.81208e-281 1.61417e-284 1.39208e-287 1.16616e-290 9.49049e-294 7.46493e-297 5.57793e-300 3.75527e-303 1.84196e-306 -4.28331e-310 -3.48909e-312 -8.03534e-315 -1.51634e-317 -2.29691e-320 0 0 0 0 2.56712e-46 3.43994e-48 4.27646e-50 2.36774e-52 1.196e-54 5.55326e-57 2.38365e-59 9.50315e-62 3.53298e-64 1.22895e-66 4.01163e-69 1.23198e-71 3.56724e-74 9.75733e-77 2.52517e-79 6.19112e-82 1.43942e-84 3.17542e-87 6.64782e-90 1.32021e-92 2.48421e-95 4.41902e-98 7.40163e-101 1.15935e-103 1.67758e-106 2.18977e-109 2.44132e-112 1.94412e-115 -1.09635e-119 -4.90526e-121 -1.39866e-123 -2.90981e-126 -5.18253e-129 -8.29896e-132 -1.21794e-134 -1.64798e-137 -2.04867e-140 -2.30363e-143 -2.24841e-146 -1.67569e-149 -3.50294e-153 1.96551e-155 5.47858e-158 1.03277e-160 1.65492e-163 2.40512e-166 3.26047e-169 4.18524e-172 5.13383e-175 6.05523e-178 6.89845e-181 7.61797e-184 8.17826e-187 8.55689e-190 8.7455e-193 8.74898e-196 8.58299e-199 8.27054e-202 7.8384e-205 7.31381e-208 6.7221e-211 6.08543e-214 5.4224e-217 4.74848e-220 4.07686e-223 3.4193e-226 2.78676e-229 2.18968e-232 1.63781e-235 1.13979e-238 7.02526e-242 3.30689e-245 2.62607e-249 -2.11582e-251 -3.86329e-254 -5.03741e-257 -5.71271e-260 -5.97386e-263 -5.9089e-266 -5.60321e-269 -5.13461e-272 -4.57006e-275 -3.96363e-278 -3.35578e-281 -2.77334e-284 -2.22971e-287 -1.7246e-290 -1.24244e-293 -7.48217e-297 -1.79107e-300 5.70615e-303 1.67537e-305 3.4207e-308 6.27169e-311 1.09815e-313 1.87615e-316 3.12309e-319 0 0 0 4.1438e-44 5.59035e-46 7.01076e-48 3.99975e-50 2.09686e-52 1.01588e-54 4.57033e-57 1.91745e-59 7.52922e-62 2.77584e-64 9.63528e-67 3.15675e-69 9.7836e-72 2.8743e-74 8.01973e-77 2.12879e-79 5.38444e-82 1.29962e-84 2.99726e-87 6.61264e-90 1.397e-92 2.82841e-95 5.49116e-98 1.02259e-100 1.8266e-103 3.12821e-106 5.13113e-109 8.04621e-112 1.20254e-114 1.70431e-117 2.27112e-120 2.8023e-123 3.10372e-126 2.85362e-129 1.57239e-132 -1.39534e-135 -6.87267e-138 -1.581e-140 -2.92033e-143 -4.79725e-146 -7.28097e-149 -1.0402e-151 -1.41379e-154 -1.8405e-157 -2.30573e-160 -2.78962e-163 -3.2689e-166 -3.71945e-169 -4.11923e-172 -4.45087e-175 -4.70357e-178 -4.8738e-181 -4.96477e-184 -4.98465e-187 -4.9441e-190 -4.85355e-193 -4.72089e-196 -4.55007e-199 -4.3408e-202 -4.08947e-205 -3.79093e-208 -3.44078e-211 -3.03755e-214 -2.58437e-217 -2.0898e-220 -1.56763e-223 -1.03578e-226 -5.14522e-230 -2.43092e-234 4.16287e-236 7.92361e-239 1.09386e-241 1.31614e-244 1.4598e-247 1.53006e-250 1.53573e-253 1.48794e-256 1.39893e-259 1.28094e-262 1.1453e-265 1.00173e-268 8.57978e-272 7.19503e-275 5.89311e-278 4.67677e-281 3.51591e-284 2.33617e-287 9.97231e-291 -7.46286e-294 -3.31216e-296 -7.40359e-299 -1.41951e-301 -2.56341e-304 -4.4924e-307 -7.72927e-310 -1.31201e-312 -2.20233e-315 -3.64647e-318 0 0 4.32387e-42 5.60933e-44 6.85765e-46 3.92882e-48 2.09656e-50 1.0451e-52 4.87893e-55 2.13803e-57 8.81322e-60 3.42389e-62 1.25588e-64 4.35689e-67 1.43198e-69 4.46634e-72 1.32419e-74 3.7382e-77 1.00652e-79 2.58927e-82 6.37507e-85 1.50491e-87 3.41212e-90 7.44386e-93 1.56528e-95 3.17791e-98 6.23952e-101 1.1865e-103 2.18809e-106 3.91772e-109 6.81646e-112 1.15323e-114 1.89791e-117 3.03877e-120 4.73328e-123 7.17087e-126 1.05628e-128 1.51219e-131 2.10315e-134 2.84033e-137 3.72321e-140 4.7355e-143 5.84262e-146 6.99229e-149 8.11891e-152 9.15224e-155 1.00294e-157 1.07087e-160 1.11816e-163 1.14806e-166 1.16789e-169 1.18815e-172 1.22058e-175 1.2757e-178 1.36002e-181 1.47366e-184 1.6088e-187 1.74957e-190 1.87331e-193 1.95333e-196 1.96259e-199 1.87778e-202 1.68301e-205 1.37264e-208 9.52583e-212 4.40038e-215 -1.38289e-218 -7.49191e-221 -1.35663e-223 -1.92555e-226 -2.42526e-229 -2.83203e-232 -3.13062e-235 -3.31473e-238 -3.38645e-241 -3.35493e-244 -3.2346e-247 -3.04312e-250 -2.79951e-253 -2.52234e-256 -2.22846e-259 -1.93187e-262 -1.64303e-265 -1.36817e-268 -1.10837e-271 -8.58089e-275 -6.02246e-278 -3.10834e-281 7.07567e-285 6.3868e-287 1.55958e-289 3.11919e-292 5.80293e-295 1.04277e-297 1.83557e-300 3.18379e-303 5.45609e-306 9.25127e-309 1.55341e-311 2.58471e-314 4.2638e-317 5.90804e-320 3.41046e-41 5.78171e-43 8.89692e-45 6.54103e-47 4.46257e-49 2.80039e-51 1.61315e-53 8.54245e-56 4.17051e-58 1.88322e-60 7.89024e-63 3.07628e-65 1.11906e-67 3.80711e-70 1.21377e-72 3.63279e-75 1.0222e-77 2.70724e-80 6.75393e-83 1.58787e-85 3.51803e-88 7.34139e-91 1.44123e-93 2.65634e-96 4.58192e-99 7.36136e-102 1.09387e-104 1.48812e-107 1.82715e-110 1.99142e-113 1.92797e-116 1.8776e-119 2.7984e-122 7.02736e-125 1.91569e-127 4.69983e-130 1.02337e-132 2.01036e-135 3.61951e-138 6.04139e-141 9.42091e-144 1.37917e-146 1.90013e-149 2.46419e-152 3.00084e-155 3.41064e-158 3.57282e-161 3.36046e-164 2.66253e-167 1.40993e-170 -3.98732e-174 -2.67683e-176 -5.24022e-179 -7.81228e-182 -1.00451e-184 -1.15553e-187 -1.19701e-190 -1.09769e-193 -8.36883e-197 -4.07887e-200 1.80334e-203 9.03426e-206 1.72386e-208 2.59475e-211 3.46463e-214 4.28257e-217 5.00294e-220 5.58921e-223 6.01643e-226 6.27226e-229 6.35666e-232 6.28035e-235 6.06256e-238 5.72824e-241 5.30534e-244 4.82216e-247 4.30518e-250 3.77722e-253 3.25595e-256 2.75226e-259 2.26819e-262 1.79316e-265 1.2971e-268 7.17663e-272 -6.2908e-276 -1.25899e-277 -3.25332e-280 -6.72005e-283 -1.28331e-285 -2.36143e-288 -4.25102e-291 -7.53364e-294 -1.31811e-296 -2.28028e-299 -3.90401e-302 -6.61935e-305 -1.1121e-307 -1.85232e-310 -3.06007e-313 -5.01285e-316 5.14414e-39 7.34301e-41 1.04819e-42 1.05656e-44 8.83045e-47 6.40944e-49 4.13824e-51 2.41207e-53 1.28226e-55 6.26404e-58 2.82859e-60 1.1862e-62 4.63755e-65 1.69579e-67 5.81565e-70 1.87492e-72 5.69356e-75 1.63124e-77 4.41529e-80 1.13017e-82 2.73742e-85 6.27552e-88 1.36124e-90 2.79106e-93 5.39877e-96 9.81773e-99 1.66856e-101 2.62276e-104 3.73837e-107 4.62796e-110 4.39125e-113 1.31431e-116 -7.44947e-119 -2.61042e-121 -6.01579e-124 -1.15846e-126 -1.98775e-129 -3.1159e-132 -4.50644e-135 -6.02027e-138 -7.37648e-141 -8.12496e-144 -7.64521e-147 -5.18566e-150 4.61382e-155 8.7401e-156 2.12972e-158 3.7624e-161 5.69427e-164 7.76615e-167 9.73438e-170 1.12809e-172 1.20372e-175 1.16213e-178 9.68312e-182 5.95199e-185 2.80376e-189 -7.32468e-191 -1.66869e-193 -2.7466e-196 -3.91828e-199 -5.12607e-202 -6.30781e-205 -7.40248e-208 -8.35544e-211 -9.12281e-214 -9.67438e-217 -9.99496e-220 -1.00842e-222 -9.95489e-226 -9.63063e-229 -9.14257e-232 -8.52616e-235 -7.818e-238 -7.05303e-241 -6.26196e-244 -5.4689e-247 -4.6883e-250 -3.92039e-253 -3.14291e-256 -2.29545e-259 -1.25033e-262 2.41152e-266 2.64608e-268 6.82299e-271 1.43255e-273 2.7927e-276 5.25184e-279 9.66228e-282 1.74931e-284 3.12497e-287 5.51625e-290 9.63075e-293 1.66415e-295 2.84768e-298 4.82815e-301 8.11467e-304 1.35256e-306 2.23682e-309 3.66922e-312 1.02159e-36 2.1799e-38 3.89196e-40 3.3915e-42 2.64405e-44 1.86527e-46 1.20042e-48 7.09234e-51 3.867e-53 1.95446e-55 9.19237e-58 4.03702e-60 1.66053e-62 6.41463e-65 2.33296e-67 8.00617e-70 2.59779e-72 7.98433e-75 2.32836e-77 6.45186e-80 1.70107e-82 4.27239e-85 1.02322e-87 2.33879e-90 5.10524e-93 1.06474e-95 2.12206e-98 4.04119e-101 7.34971e-104 1.27518e-106 2.10666e-109 3.30363e-112 4.89266e-115 6.78441e-118 8.67211e-121 9.89954e-124 9.3116e-127 5.12144e-130 -5.15552e-133 -2.4636e-135 -5.67981e-138 -1.04944e-140 -1.7137e-143 -2.56266e-146 -3.56464e-149 -4.64201e-152 -5.6616e-155 -6.43053e-158 -6.70021e-161 -6.17984e-164 -4.56e-167 -1.5445e-170 3.11267e-173 9.57018e-176 1.78674e-178 2.79028e-181 3.94272e-184 5.20533e-187 6.52808e-190 7.85361e-193 9.1219e-196 1.02752e-198 1.12628e-201 1.20444e-204 1.25928e-207 1.28951e-210 1.29519e-213 1.27761e-216 1.23908e-219 1.18258e-222 1.11155e-225 1.02954e-228 9.3997e-232 8.45869e-235 7.49518e-238 6.51968e-241 5.52124e-244 4.45e-247 3.1834e-250 1.46152e-253 -1.23451e-256 -5.90743e-259 -1.44532e-261 -3.03951e-264 -6.01829e-267 -1.15461e-269 -2.16985e-272 -4.01303e-275 -7.3204e-278 -1.31877e-280 -2.3483e-283 -4.13601e-286 -7.2096e-289 -1.24444e-291 -2.12807e-294 -3.60707e-297 -6.0628e-300 -1.01095e-302 -1.67302e-305 -2.7471e-308 1.35501e-34 2.91484e-36 5.66997e-38 4.98796e-40 3.97139e-42 2.8835e-44 1.92078e-46 1.17984e-48 6.71207e-51 3.55031e-53 1.75205e-55 8.09174e-58 3.50731e-60 1.43042e-62 5.50217e-65 2.0005e-67 6.88904e-70 2.25118e-72 6.99286e-75 2.06826e-77 5.83349e-80 1.57125e-82 4.04705e-85 9.98041e-88 2.35928e-90 5.35174e-93 1.16606e-95 2.44256e-98 4.92275e-101 9.55232e-104 1.78563e-106 3.21694e-109 5.58695e-112 9.35427e-115 1.5096e-117 2.34691e-120 3.51137e-123 5.04752e-126 6.9526e-129 9.13788e-132 1.13803e-134 1.32686e-137 1.41507e-140 1.30938e-143 8.86808e-147 -3.19258e-152 -1.53193e-152 -3.87956e-155 -7.21839e-158 -1.16927e-160 -1.73976e-163 -2.4359e-166 -3.25189e-169 -4.17281e-172 -5.17483e-175 -6.22642e-178 -7.29049e-181 -8.32715e-184 -9.29683e-187 -1.01633e-189 -1.0896e-192 -1.14724e-195 -1.1878e-198 -1.21073e-201 -1.21621e-204 -1.20509e-207 -1.17867e-210 -1.13859e-213 -1.08665e-216 -1.02466e-219 -9.54356e-223 -8.77134e-226 -7.937e-229 -7.03231e-232 -6.01659e-235 -4.78127e-238 -3.07871e-241 -3.82205e-245 4.38408e-247 1.33573e-249 3.06913e-252 6.43118e-255 1.29095e-257 2.52547e-260 4.84818e-263 9.16162e-266 1.70701e-268 3.13926e-271 5.7028e-274 1.02403e-276 1.81869e-279 3.19648e-282 5.56256e-285 9.58923e-288 1.63833e-290 2.77536e-293 4.66364e-296 7.77671e-299 1.28737e-301 2.1151e-304 1.10166e-32 2.35062e-34 4.58122e-36 4.1007e-38 3.34589e-40 2.50316e-42 1.72568e-44 1.10111e-46 6.52777e-49 3.6079e-51 1.86477e-53 9.03772e-56 4.11753e-58 1.76746e-60 7.16341e-63 2.74667e-65 9.98214e-68 3.44464e-70 1.1306e-72 3.53534e-75 1.05487e-77 3.008e-80 8.20953e-83 2.14757e-85 5.39235e-88 1.30137e-90 3.02265e-93 6.76554e-96 1.46111e-98 3.04827e-101 6.15054e-104 1.20154e-106 2.27501e-109 4.17897e-112 7.45403e-115 1.29215e-117 2.17856e-120 3.57492e-123 5.71318e-126 8.89725e-129 1.3509e-131 2.00069e-134 2.89143e-137 4.0794e-140 5.6208e-143 7.56639e-146 9.95507e-149 1.28072e-151 1.61188e-154 1.98574e-157 2.39613e-160 2.83416e-163 3.28894e-166 3.74853e-169 4.20109e-172 4.63607e-175 5.04515e-178 5.42281e-181 5.76629e-184 6.07511e-187 6.34994e-190 6.59134e-193 6.79842e-196 6.96779e-199 7.09298e-202 7.16452e-205 7.17066e-208 7.09825e-211 6.93345e-214 6.6607e-217 6.25767e-220 5.68134e-223 4.83532e-226 3.49904e-229 1.18005e-232 -3.18544e-235 -1.18274e-237 -2.93008e-240 -6.47056e-243 -1.35869e-245 -2.77105e-248 -5.53405e-251 -1.08603e-253 -2.09809e-256 -3.99467e-259 -7.50226e-262 -1.39084e-264 -2.547e-267 -4.61012e-270 -8.25244e-273 -1.46175e-275 -2.56337e-278 -4.45252e-281 -7.66403e-284 -1.30785e-286 -2.21356e-289 -3.71738e-292 -6.19672e-295 -1.02572e-297 -1.68549e-300 7.08477e-32 1.95761e-33 4.46895e-35 4.70003e-37 4.51432e-39 3.9773e-41 3.22412e-43 2.41046e-45 1.66556e-47 1.06572e-49 6.3271e-52 3.49238e-54 1.79588e-56 8.62116e-59 3.87141e-61 1.6295e-63 6.44116e-66 2.39555e-68 8.39757e-71 2.77932e-73 8.69862e-76 2.57824e-78 7.2468e-81 1.93399e-83 4.90601e-86 1.18413e-88 2.72179e-91 5.96251e-94 1.2457e-96 2.4834e-99 4.72642e-102 8.59101e-105 1.49195e-107 2.47671e-110 3.93323e-113 5.98379e-116 8.74288e-119 1.23231e-121 1.68834e-124 2.27536e-127 3.0665e-130 4.20994e-133 5.97169e-136 8.77508e-139 1.32159e-141 2.00228e-144 2.99281e-147 4.34175e-150 6.03431e-153 7.94168e-156 9.76395e-159 1.09771e-161 1.07982e-164 8.18494e-168 1.88292e-171 -9.46926e-174 -2.71792e-176 -5.2296e-179 -8.53858e-182 -1.26322e-184 -1.74127e-187 -2.269e-190 -2.81859e-193 -3.35492e-196 -3.83819e-199 -4.22679e-202 -4.47948e-205 -4.55455e-208 -4.40123e-211 -3.93395e-214 -2.96937e-217 -1.08445e-220 2.68938e-223 1.05073e-225 2.70232e-228 6.20227e-231 1.35607e-233 2.88218e-236 5.99721e-239 1.22513e-241 2.46055e-244 4.86323e-247 9.46717e-250 1.81657e-252 3.43827e-255 6.42362e-258 1.18536e-260 2.16182e-263 3.89878e-266 6.95689e-269 1.22885e-271 2.14974e-274 3.72629e-277 6.40266e-280 1.09098e-282 1.84428e-285 3.09422e-288 5.15414e-291 8.52701e-294 1.40074e-296 7.9901e-30 2.21969e-31 3.2072e-33 4.14049e-35 4.81498e-37 5.0597e-39 4.81486e-41 4.16012e-43 3.27427e-45 2.35627e-47 1.55642e-49 9.47308e-52 5.33237e-54 2.78559e-56 1.35481e-58 6.15306e-61 2.61665e-63 1.04457e-65 3.92352e-68 1.38959e-70 4.64959e-73 1.47242e-75 4.42011e-78 1.25965e-80 3.41231e-83 8.7966e-86 2.16007e-88 5.05662e-91 1.12917e-93 2.40621e-96 4.89374e-99 9.49732e-102 1.75775e-104 3.09896e-107 5.19474e-110 8.25484e-113 1.23768e-115 1.73763e-118 2.25454e-121 2.63747e-124 2.63184e-127 1.87585e-130 -6.10257e-135 -3.56972e-136 -8.79647e-139 -1.53234e-141 -2.17385e-144 -2.51324e-147 -2.05992e-150 -8.61635e-155 4.38322e-156 1.25385e-158 2.56975e-161 4.51584e-164 7.19964e-167 1.06825e-169 1.4955e-172 1.99157e-175 2.53573e-178 3.09646e-181 3.63265e-184 4.0961e-187 4.43526e-190 4.59914e-193 4.5396e-196 4.20824e-199 3.53932e-202 2.39994e-205 4.66239e-209 -3.06417e-211 -1.01134e-213 -2.51125e-216 -5.79375e-219 -1.2998e-221 -2.86448e-224 -6.20809e-227 -1.32252e-229 -2.76867e-232 -5.69715e-235 -1.15291e-237 -2.29607e-240 -4.50358e-243 -8.70646e-246 -1.66016e-248 -3.12449e-251 -5.80774e-254 -1.06682e-256 -1.93766e-259 -3.48171e-262 -6.19231e-265 -1.0906e-267 -1.90292e-270 -3.29087e-273 -5.64302e-276 -9.5983e-279 -1.62004e-281 -2.71435e-284 -4.51618e-287 -7.46427e-290 -1.22518e-292 1.12002e-27 2.14949e-29 3.79832e-31 5.87085e-33 7.9692e-35 9.54274e-37 1.01398e-38 9.6268e-41 8.22594e-43 6.37058e-45 4.50047e-47 2.91691e-49 1.74335e-51 9.65148e-54 4.96905e-56 2.38757e-58 1.07403e-60 4.53623e-63 1.8035e-65 6.76552e-68 2.39986e-70 8.06546e-73 2.57285e-75 7.80312e-78 2.25346e-80 6.20533e-83 1.63139e-85 4.09947e-88 9.85641e-91 2.26943e-93 5.00777e-96 1.05965e-98 2.15104e-101 4.18985e-104 7.83057e-107 1.4037e-109 2.41155e-112 3.96514e-115 6.22498e-118 9.29659e-121 1.31271e-123 1.73443e-126 2.10305e-129 2.24413e-132 1.8696e-135 5.49773e-139 -2.30358e-141 -7.43231e-144 -1.5694e-146 -2.79816e-149 -4.50955e-152 -6.75706e-155 -9.54719e-158 -1.28181e-160 -1.64207e-163 -2.01058e-166 -2.35219e-169 -2.6225e-172 -2.77039e-175 -2.74184e-178 -2.48461e-181 -1.95251e-184 -1.10647e-187 9.43099e-192 1.72687e-193 4.00247e-196 7.51503e-199 1.38374e-201 2.68992e-204 5.60771e-207 1.22943e-209 2.75658e-212 6.18997e-215 1.37571e-217 3.00956e-220 6.46759e-223 1.36493e-225 2.83008e-228 5.76934e-231 1.15731e-233 2.28625e-236 4.45129e-239 8.54777e-242 1.62e-244 3.03214e-247 5.60795e-250 1.02546e-252 1.85489e-255 3.32055e-258 5.88569e-261 1.03341e-263 1.7981e-266 3.10168e-269 5.30632e-272 9.00666e-275 1.51728e-277 2.53776e-280 4.21571e-283 6.95761e-286 1.14052e-288 1.36169e-25 2.74186e-27 6.1897e-29 1.02243e-30 1.47707e-32 1.87315e-34 2.09726e-36 2.08898e-38 1.86648e-40 1.50808e-42 1.11007e-44 7.4926e-47 4.66372e-49 2.69019e-51 1.44422e-53 7.24287e-56 3.40444e-58 1.50425e-60 6.26451e-63 2.4649e-65 9.18367e-68 3.24657e-70 1.09105e-72 3.49172e-75 1.06591e-77 3.10849e-80 8.67257e-83 2.31792e-85 5.94219e-88 1.46286e-90 3.46213e-93 7.88522e-96 1.72994e-98 3.65913e-101 7.46812e-104 1.47183e-106 2.80291e-109 5.16095e-112 9.19263e-115 1.58462e-117 2.64438e-120 4.2729e-123 6.68567e-126 1.01281e-128 1.48495e-131 2.10564e-134 2.88433e-137 3.80982e-140 4.83885e-143 5.88352e-146 6.79919e-149 7.37492e-152 7.32895e-155 6.31167e-158 3.91815e-161 -2.8848e-165 -6.74302e-167 -1.58357e-169 -2.7868e-172 -4.30226e-175 -6.13933e-178 -8.31915e-181 -1.09441e-183 -1.43946e-186 -1.9844e-189 -3.05441e-192 -5.49092e-195 -1.13684e-197 -2.56135e-200 -5.95677e-203 -1.38645e-205 -3.18434e-208 -7.1786e-211 -1.58623e-213 -3.4363e-216 -7.30408e-219 -1.52479e-221 -3.1293e-224 -6.31935e-227 -1.25676e-229 -2.46334e-232 -4.76205e-235 -9.08546e-238 -1.71178e-240 -3.18669e-243 -5.86482e-246 -1.0676e-248 -1.92312e-251 -3.42959e-254 -6.05762e-257 -1.06014e-259 -1.83907e-262 -3.16353e-265 -5.39808e-268 -9.14024e-271 -1.53629e-273 -2.56411e-276 -4.25094e-279 -7.00246e-282 -1.14581e-284 1.00969e-23 2.10533e-25 5.74377e-27 1.02717e-28 1.59679e-30 2.15976e-32 2.55631e-34 2.67161e-36 2.4903e-38 2.09061e-40 1.5946e-42 1.11351e-44 7.16522e-47 4.27229e-49 2.37157e-51 1.23058e-53 5.98971e-56 2.74326e-58 1.18545e-60 4.8454e-63 1.8775e-65 6.91083e-68 2.42107e-70 8.08691e-73 2.57975e-75 7.87165e-78 2.30085e-80 6.45131e-83 1.73747e-85 4.50023e-88 1.12231e-90 2.69802e-93 6.25885e-96 1.40252e-98 3.03889e-101 6.37269e-104 1.29456e-106 2.54971e-109 4.8729e-112 9.04406e-115 1.63137e-117 2.86206e-120 4.8871e-123 8.12777e-126 1.31743e-128 2.08258e-131 3.21265e-134 4.83918e-137 7.12165e-140 1.02455e-142 1.44164e-145 1.98507e-148 2.67604e-151 3.53335e-154 4.57094e-157 5.79511e-160 7.20193e-163 8.77711e-166 1.05057e-168 1.24147e-171 1.47132e-174 1.82049e-177 2.54204e-180 4.35623e-183 9.18588e-186 2.19281e-188 5.45918e-191 1.35695e-193 3.31076e-196 7.88913e-199 1.83506e-201 4.17083e-204 9.27583e-207 2.02136e-209 4.32165e-212 9.07539e-215 1.87383e-217 3.80745e-220 7.61964e-223 1.50297e-225 2.92398e-228 5.61409e-231 1.06443e-233 1.99399e-236 3.69247e-239 6.76252e-242 1.22545e-244 2.19819e-247 3.90479e-250 6.87172e-253 1.19849e-255 2.07236e-258 3.55395e-261 6.04677e-264 1.02105e-266 1.71169e-269 2.84967e-272 4.71296e-275 7.74542e-278 1.26451e-280 5.40555e-23 1.48921e-24 4.18384e-26 8.57447e-28 1.47243e-29 2.17292e-31 2.79829e-33 3.18077e-35 3.22195e-37 2.93305e-39 2.41778e-41 1.81695e-43 1.2523e-45 7.95828e-48 4.6852e-50 2.56598e-52 1.31223e-54 6.28709e-57 2.83055e-59 1.20075e-61 4.81136e-64 1.82516e-66 6.56836e-69 2.24688e-71 7.31897e-74 2.27406e-76 6.75025e-79 1.91714e-81 5.21688e-84 1.36199e-86 3.41578e-89 8.23916e-92 1.91358e-94 4.28407e-97 9.25466e-100 1.93104e-102 3.89547e-105 7.6044e-108 1.43777e-110 2.63508e-113 4.68525e-116 8.08824e-119 1.35674e-121 2.2131e-124 3.51334e-127 5.43314e-130 8.1939e-133 1.20713e-135 1.74181e-138 2.47306e-141 3.48291e-144 4.92942e-147 7.14037e-150 1.07824e-152 1.70703e-155 2.76758e-158 4.2877e-161 5.29669e-164 7.75634e-168 -2.78617e-169 -1.40168e-171 -5.11034e-174 -1.62342e-176 -4.74895e-179 -1.31072e-181 -3.45804e-184 -8.79048e-187 -2.16448e-189 -5.18187e-192 -1.20957e-194 -2.75892e-197 -6.15992e-200 -1.34825e-202 -2.89644e-205 -6.11392e-208 -1.26924e-210 -2.59361e-213 -5.22064e-216 -1.03587e-218 -2.02731e-221 -3.91584e-224 -7.46895e-227 -1.40749e-229 -2.62176e-232 -4.82948e-235 -8.80156e-238 -1.58763e-240 -2.83559e-243 -5.01658e-246 -8.79434e-249 -1.52821e-251 -2.6333e-254 -4.5009e-257 -7.63346e-260 -1.28501e-262 -2.14777e-265 -3.56533e-268 -5.87993e-271 -9.63661e-274 -1.56901e-276 6.04057e-21 2.21727e-22 5.30516e-24 1.07236e-25 1.86485e-27 2.82591e-29 3.77064e-31 4.47032e-33 4.74675e-35 4.5465e-37 3.95317e-39 3.13821e-41 2.28623e-43 1.53559e-45 9.54938e-48 5.51922e-50 2.97507e-52 1.50044e-54 7.1009e-57 3.16193e-59 1.32806e-61 5.27365e-64 1.9841e-66 7.08675e-69 2.40752e-71 7.79283e-74 2.40733e-76 7.10823e-79 2.00912e-81 5.44336e-84 1.41551e-86 3.53735e-89 8.50495e-92 1.96958e-94 4.39782e-97 9.4776e-100 1.97317e-102 3.9721e-105 7.73797e-108 1.45981e-110 2.6687e-113 4.72939e-116 8.12477e-119 1.35193e-121 2.1734e-124 3.35549e-127 4.90773e-130 6.58459e-133 7.4069e-136 4.52526e-139 -9.23602e-142 -4.99813e-144 -1.49105e-146 -3.53745e-149 -6.85111e-152 -9.23805e-155 1.93993e-158 7.58881e-160 3.76259e-162 1.39951e-164 4.55847e-167 1.36812e-169 3.87318e-172 1.04771e-174 2.72953e-177 6.88519e-180 1.68796e-182 4.03321e-185 9.41305e-188 2.14964e-190 4.81043e-193 1.05613e-195 2.27736e-198 4.82751e-201 1.00683e-203 2.06753e-206 4.18321e-209 8.34447e-212 1.642e-214 3.18908e-217 6.11645e-220 1.159e-222 2.17076e-225 4.02048e-228 7.36644e-231 1.33575e-233 2.39796e-236 4.26355e-239 7.51044e-242 1.31121e-244 2.26956e-247 3.8959e-250 6.63458e-253 1.12122e-255 1.88093e-258 3.1332e-261 5.18398e-264 8.52168e-267 1.39215e-269 2.25951e-272 7.03667e-19 2.22646e-20 5.88314e-22 1.31536e-23 2.51601e-25 4.16274e-27 6.02063e-29 7.68709e-31 8.74194e-33 8.92571e-35 8.24053e-37 6.92304e-39 5.32259e-41 3.76384e-43 2.45923e-45 1.49076e-47 8.41543e-50 4.43888e-52 2.19455e-54 1.01982e-56 4.46628e-59 1.84783e-61 7.23839e-64 2.69026e-66 9.50521e-69 3.19841e-71 1.02672e-73 3.14928e-76 9.24414e-79 2.60038e-81 7.01958e-84 1.82076e-86 4.54361e-89 1.09215e-91 2.53175e-94 5.66719e-97 1.22671e-99 2.57219e-102 5.23703e-105 1.03898e-107 2.01937e-110 3.87889e-113 7.46599e-116 1.46769e-118 3.00832e-121 6.51829e-124 1.49e-126 3.52622e-129 8.39688e-132 1.94919e-134 4.25344e-137 8.24125e-140 1.22013e-142 3.37819e-146 -7.30944e-148 -4.1307e-150 -1.64747e-152 -5.67281e-155 -1.78993e-157 -5.312e-160 -1.50351e-162 -4.09294e-165 -1.07758e-167 -2.75452e-170 -6.8561e-173 -1.66539e-175 -3.9549e-178 -9.19543e-181 -2.09586e-183 -4.68779e-186 -1.0299e-188 -2.22433e-191 -4.72615e-194 -9.88592e-197 -2.03704e-199 -4.13721e-202 -8.2866e-205 -1.63768e-207 -3.19501e-210 -6.15612e-213 -1.17199e-215 -2.20545e-218 -4.10401e-221 -7.55475e-224 -1.37624e-226 -2.48189e-229 -4.4324e-232 -7.84166e-235 -1.37478e-237 -2.38918e-240 -4.11713e-243 -7.03721e-246 -1.19343e-248 -2.00868e-251 -3.35636e-254 -5.56918e-257 -9.17912e-260 -1.5032e-262 -2.44652e-265 -3.95615e-268 7.2247e-17 2.52781e-18 7.29065e-20 1.76298e-21 3.62158e-23 6.39818e-25 9.83433e-27 1.32916e-28 1.5948e-30 1.7133e-32 1.66048e-34 1.46155e-36 1.17529e-38 8.68033e-41 5.91617e-43 3.73692e-45 2.19599e-47 1.2048e-49 6.19089e-52 2.98826e-54 1.35857e-56 5.83196e-59 2.36929e-61 9.12871e-64 3.34227e-66 1.16492e-68 3.87162e-71 1.22878e-73 3.72908e-76 1.08325e-78 3.01416e-81 8.03551e-84 2.0513e-86 5.0052e-89 1.16259e-91 2.5496e-94 5.19096e-97 9.44815e-100 1.38181e-102 8.86211e-106 -4.24694e-108 -2.63179e-110 -1.00446e-112 -3.12469e-115 -8.2673e-118 -1.77652e-120 -2.33028e-123 3.86367e-126 4.70315e-128 2.47757e-130 1.04092e-132 3.88915e-135 1.34543e-137 4.39527e-140 1.3712e-142 4.11419e-145 1.19299e-147 3.35486e-150 9.17365e-153 2.44422e-155 6.3562e-158 1.61556e-160 4.01824e-163 9.78999e-166 2.33863e-168 5.48185e-171 1.26183e-173 2.85418e-176 6.34798e-179 1.38906e-181 2.9921e-184 6.34783e-187 1.32704e-189 2.73499e-192 5.55951e-195 1.1151e-197 2.20782e-200 4.31682e-203 8.33836e-206 1.59175e-208 3.00404e-211 5.60692e-214 1.03533e-216 1.89198e-219 3.42276e-222 6.13191e-225 1.0882e-227 1.91359e-230 3.33537e-233 5.76398e-236 9.87888e-239 1.67967e-241 2.83394e-244 4.746e-247 7.8914e-250 1.30312e-252 2.13763e-255 3.48429e-258 5.64457e-261 9.08608e-264 3.42231e-15 1.41978e-16 4.71224e-18 1.28153e-19 2.91103e-21 5.61338e-23 9.32291e-25 1.35088e-26 1.727e-28 1.96702e-30 2.01304e-32 1.8649e-34 1.57418e-36 1.21779e-38 8.67888e-41 5.72488e-43 3.51023e-45 2.00854e-47 1.07645e-49 5.4223e-52 2.57567e-54 1.1575e-56 4.93695e-59 2.00489e-61 7.77666e-64 2.89003e-66 1.0319e-68 3.54756e-71 1.17515e-73 3.7434e-76 1.13882e-78 3.25372e-81 8.38143e-84 1.72366e-86 1.22965e-89 -1.45092e-91 -1.23245e-93 -7.04739e-96 -3.47278e-98 -1.54386e-100 -6.41199e-103 -2.5512e-105 -9.82643e-108 -3.66617e-110 -1.32629e-112 -4.65758e-115 -1.58946e-117 -5.27664e-120 -1.70572e-122 -5.37398e-125 -1.65157e-127 -4.95515e-130 -1.45242e-132 -4.16208e-135 -1.16679e-137 -3.20194e-140 -8.60651e-143 -2.26717e-145 -5.85623e-148 -1.48408e-150 -3.69167e-153 -9.01829e-156 -2.16454e-158 -5.10677e-161 -1.18483e-163 -2.70448e-166 -6.07588e-169 -1.34403e-171 -2.92856e-174 -6.28803e-177 -1.33093e-179 -2.77801e-182 -5.72017e-185 -1.16235e-187 -2.33165e-190 -4.61893e-193 -9.03884e-196 -1.74791e-198 -3.3412e-201 -6.31535e-204 -1.1807e-206 -2.18404e-209 -3.99843e-212 -7.24696e-215 -1.30072e-217 -2.31259e-220 -4.07402e-223 -7.11336e-226 -1.23133e-228 -2.11369e-231 -3.59904e-234 -6.08036e-237 -1.01948e-239 -1.69688e-242 -2.8045e-245 -4.60362e-248 -7.50747e-251 -1.21659e-253 -1.95954e-256 -3.13654e-259 1.26636e-14 8.084e-16 2.96009e-17 8.17441e-19 2.28709e-20 5.45338e-22 1.0892e-23 1.91699e-25 3.01205e-27 4.25491e-29 5.46169e-31 6.42739e-33 6.98399e-35 7.05045e-37 6.64842e-39 5.88373e-41 4.90707e-43 3.87106e-45 2.8981e-47 2.06526e-49 1.40474e-51 9.14264e-54 5.70691e-56 3.42386e-58 1.97825e-60 1.10284e-62 5.94241e-65 3.09997e-67 1.56812e-69 7.70344e-72 3.68057e-74 1.71263e-76 7.77063e-79 3.44179e-81 1.48983e-83 6.30946e-86 2.61712e-88 1.06436e-90 4.24851e-93 1.66608e-95 6.42552e-98 2.43059e-100 8.94316e-103 3.20281e-105 1.11715e-107 3.79751e-110 1.25883e-112 4.07176e-115 1.28589e-117 3.96724e-120 1.19641e-122 3.52876e-125 1.01846e-127 2.8779e-130 7.96584e-133 2.16086e-135 5.74733e-138 1.49952e-140 3.8396e-143 9.65283e-146 2.38368e-148 5.78429e-151 1.37987e-153 3.23737e-156 7.47272e-159 1.69773e-161 3.79775e-164 8.36781e-167 1.8167e-169 3.88774e-172 8.2036e-175 1.70747e-177 3.50664e-180 7.10823e-183 1.42267e-185 2.81229e-188 5.49244e-191 1.06011e-193 2.02281e-196 3.81682e-199 7.12399e-202 1.31566e-204 2.40486e-207 4.35195e-210 7.79914e-213 1.38452e-215 2.43533e-218 4.24561e-221 7.33773e-224 1.25759e-226 2.13786e-229 3.60579e-232 6.03545e-235 1.00281e-237 1.65436e-240 2.71055e-243 4.41168e-246 7.1347e-249 1.14677e-251 1.83235e-254 -1.40744e-17 2.03254e-15 7.66299e-17 -1.14341e-14 -1.4474e-14 2.29843e-12 1.15548e-14 5.73559e-15 -1.15143e-12 1.07069e-12 5.16733e-15 1.21425e-17 2.58451e-20 -3.30109e-18 7.65166e-16 5.95399e-18 -7.02812e-16 -3.0361e-18 3.08669e-16 -9.42437e-14 2.63809e-16 3.22503e-16 -9.39426e-14 -3.20931e-15 1.07289e-12 3.14157e-15 5.91572e-18 -1.06137e-15 4.48513e-13 4.49092e-13 4.86312e-13 -6.19256e-13 -1.53179e-15 1.02458e-13 9.32691e-13 1.77352e-15 1.64973e-18 1.33139e-21 -6.02808e-19 7.50685e-16 -4.91325e-13 -8.28312e-16 -1.27627e-15 9.2842e-13 8.39138e-16 3.45197e-13 5.0923e-16 2.3333e-19 9.75554e-17 4.56915e-16 -4.89361e-13 -5.28483e-16 -3.88201e-19 7.8946e-17 -8.27144e-17 -2.98799e-16 3.42866e-13 3.03498e-16 -4.54735e-16 4.83356e-13 3.8613e-16 7.06943e-17 -1.31203e-16 1.91037e-13 1.34499e-16 4.65535e-20 -1.56749e-21 -6.51911e-20 6.22973e-17 -1.75419e-16 3.14668e-13 2.19506e-16 8.91816e-20 -5.52565e-21 9.80718e-17 -2.6331e-13 -1.31499e-16 -2.75925e-20 -5.12995e-18 3.342e-21 -3.88273e-17 9.44941e-14 4.11696e-17 -4.61004e-17 7.66468e-14 2.67695e-17 1.57819e-17 -4.37926e-17 1.22548e-13 4.71485e-17 9.07976e-21 3.26268e-24 -8.81055e-21 1.04295e-17 5.82745e-18 -1.76634e-14 -2.88169e-18 1.91595e-21 7.36811e-25 1.31548e-28 -7.68078e-15 1.17647e-12 7.78835e-15 5.25319e-15 -1.18699e-12 1.14581e-12 -1.13712e-12 -1.18821e-14 1.14821e-12 6.89576e-15 1.91778e-17 2.05408e-20 8.73272e-18 -4.18955e-15 1.0578e-12 8.10834e-15 -1.0765e-12 -3.35627e-15 -2.77255e-16 9.71242e-14 1.07388e-12 9.34517e-14 1.07652e-12 3.37517e-15 -6.97511e-16 4.85306e-13 1.65943e-15 3.64928e-18 -8.16781e-16 4.50706e-13 -4.82942e-13 -1.45723e-15 1.28466e-16 -7.62415e-16 4.87917e-13 9.27376e-16 8.8889e-19 7.15207e-22 -2.35719e-20 -1.59332e-19 3.05708e-16 -3.10373e-13 8.18779e-16 -9.31575e-13 -1.28563e-15 -2.89066e-16 3.08231e-13 -1.80058e-16 4.91791e-13 -3.42378e-13 3.43637e-13 3.72722e-16 -4.35993e-16 4.52497e-13 -4.87665e-13 -8.11522e-16 4.87985e-13 7.61794e-16 -4.88234e-13 -3.73428e-16 -3.5609e-16 4.85178e-13 4.70943e-16 -1.55951e-13 -9.07775e-17 3.55533e-20 -2.26767e-17 -2.88997e-16 4.9358e-13 2.98364e-16 -1.24678e-16 3.14227e-13 1.71463e-16 1.01644e-16 -2.4452e-13 2.42898e-13 1.21394e-16 2.19948e-17 -4.9704e-14 -2.30769e-17 -3.13106e-17 7.59234e-14 1.07974e-16 -1.6588e-13 -4.24876e-17 -5.16176e-14 1.66184e-13 1.10392e-16 -1.22355e-13 -3.63655e-17 7.83452e-21 8.57527e-22 -3.68155e-17 1.2191e-13 4.44465e-17 -1.51432e-17 4.1356e-14 1.49823e-17 2.70591e-21 3.26186e-25 7.44734e-15 -1.15089e-12 -1.52092e-14 -1.14919e-12 -1.18125e-12 1.12818e-12 -1.14003e-12 -5.08674e-15 1.32095e-15 6.65202e-18 1.7657e-20 -3.05543e-19 -3.48621e-19 6.54208e-17 1.2696e-15 -9.011e-14 -1.08101e-12 1.06893e-12 1.03416e-13 -1.31314e-13 6.85457e-15 -2.14791e-12 -7.26693e-15 4.86535e-13 2.07735e-16 4.42798e-13 1.03867e-12 2.63933e-15 2.94446e-18 2.19989e-16 5.96973e-16 -4.46407e-13 4.47484e-13 4.48063e-13 1.19741e-15 -7.69892e-17 1.98432e-16 1.24357e-18 -1.8647e-16 1.79278e-16 1.23333e-18 -2.99359e-16 -6.56852e-19 -2.33624e-16 -8.98473e-21 1.99306e-19 1.19639e-17 -1.6401e-16 1.33416e-16 -1.97519e-17 8.93357e-17 4.83549e-17 -4.61476e-17 4.27664e-17 -5.51445e-16 4.88149e-13 9.91472e-16 -4.51197e-13 -1.3525e-16 -4.47251e-13 -3.57605e-16 7.47848e-17 -3.96671e-20 -1.32639e-16 1.5573e-13 2.08151e-16 -1.90358e-13 -1.01826e-16 7.91939e-17 -6.47381e-20 1.17711e-17 6.92499e-17 -4.3169e-14 -1.71744e-13 -9.89784e-17 8.01073e-18 -9.68399e-20 4.58243e-18 -6.10271e-18 4.32266e-21 1.55109e-20 -2.92984e-17 9.49947e-14 3.05123e-17 4.20917e-20 -5.38397e-18 9.04785e-18 -4.17511e-20 -5.49737e-17 1.22049e-13 3.92637e-17 -1.20022e-17 4.7385e-14 2.79378e-17 -2.75253e-21 -1.43386e-17 3.71761e-14 1.13997e-17 -2.06912e-21 -3.53003e-23 -9.05945e-17 1.84289e-14 -1.14825e-12 -1.16313e-12 -2.42778e-15 -1.14083e-12 -1.47032e-14 1.07362e-12 5.58167e-15 1.45386e-17 4.35861e-18 -7.63206e-16 -4.55686e-16 1.10574e-13 4.54233e-16 -1.25718e-16 2.75627e-15 -1.03829e-12 1.0723e-12 3.56675e-15 3.28017e-15 -1.07304e-12 -3.27777e-15 3.11963e-16 1.74552e-19 2.6927e-16 7.4549e-16 -1.18907e-16 -1.64246e-18 9.72253e-16 -4.4179e-13 -4.85465e-13 -8.09585e-16 -8.05236e-16 4.86086e-13 -3.47569e-13 9.29644e-13 3.17771e-15 -9.3364e-13 9.29853e-13 3.06632e-15 -1.07712e-12 -1.99175e-15 3.42191e-13 4.72629e-16 6.04886e-16 -4.90049e-13 -1.07486e-12 -1.83131e-15 4.90812e-13 1.9185e-16 3.44444e-13 -3.41606e-13 -4.91189e-13 -4.77756e-16 -3.5981e-16 4.91365e-13 -4.85079e-13 1.46469e-17 -4.87075e-13 -2.5337e-16 -1.56998e-13 -1.18024e-16 -6.11341e-20 1.31088e-16 -1.56738e-13 1.5364e-13 1.91843e-13 1.19494e-16 -3.51115e-17 1.20131e-13 1.5693e-16 -1.69865e-13 3.11658e-13 2.6352e-13 -2.61669e-13 -1.57487e-16 5.04816e-14 2.40386e-17 -8.12263e-18 -8.16758e-20 1.64186e-17 -2.63992e-17 9.61384e-14 5.44225e-17 3.5239e-17 -9.49573e-14 -3.76692e-17 -4.25723e-17 1.21073e-13 -8.24959e-14 4.77311e-14 4.72318e-14 1.74279e-17 7.79135e-18 -2.3546e-14 -9.17985e-19 -2.40786e-14 -7.5282e-18 -6.72014e-19 -6.30378e-17 9.19082e-15 5.09815e-15 -1.15598e-12 -1.34271e-14 1.14978e-12 -1.13918e-12 -5.8566e-15 -2.19311e-17 9.01294e-16 4.69813e-15 -1.05805e-12 -3.69266e-16 -1.05764e-12 -4.00811e-15 -9.39676e-14 -3.5779e-16 -4.42492e-16 8.98564e-16 -3.89039e-16 -7.04615e-16 9.34686e-14 -3.53921e-17 -1.32229e-16 2.76185e-16 -1.24057e-15 4.89557e-13 -4.47767e-13 -1.10047e-15 8.85287e-17 -2.45246e-16 -1.78652e-16 8.8653e-16 -4.50471e-13 4.87856e-13 6.87782e-16 4.26865e-16 5.40469e-19 -4.02042e-16 3.89101e-16 4.56321e-17 -1.07644e-15 4.89346e-13 8.81963e-16 8.29834e-19 8.40644e-21 -1.67799e-16 -3.55083e-16 -5.41555e-16 4.89175e-13 3.97573e-17 4.90866e-13 4.12662e-16 -1.3708e-16 4.37916e-16 -4.87723e-13 -3.18051e-16 -4.88435e-16 4.52485e-13 1.10815e-16 1.95476e-13 -1.92934e-13 -1.44565e-16 5.4125e-20 -5.15748e-16 8.22685e-13 4.73626e-16 1.91497e-13 -7.22811e-17 3.34313e-13 2.27935e-16 1.28621e-17 -2.55141e-14 1.70183e-13 1.7193e-13 2.44541e-13 -4.84198e-14 4.92581e-14 6.37124e-17 -9.39901e-14 -1.20936e-16 1.90967e-13 1.0636e-17 1.66825e-13 1.65751e-13 8.99642e-17 -1.0218e-17 1.37382e-20 4.27864e-17 -1.21356e-13 -6.11681e-17 -2.387e-17 8.27113e-14 3.07136e-17 3.86857e-18 -2.43226e-14 -3.66081e-14 -1.89862e-17 1.22501e-14 -7.68465e-15 7.70155e-15 -1.17831e-12 -9.63288e-15 7.54062e-15 1.83694e-17 8.88249e-15 -1.12193e-12 -1.13531e-12 -1.0428e-14 1.14683e-12 9.50959e-15 -1.07755e-12 -4.79694e-15 -1.126e-15 -6.25615e-18 3.83544e-16 -3.79875e-15 1.07406e-12 7.33872e-15 -1.07248e-12 -1.20808e-12 -6.46462e-16 -1.07025e-12 -4.59937e-13 1.03507e-12 2.83097e-15 4.2752e-16 -2.01764e-16 -1.10874e-15 4.50962e-13 7.2724e-17 4.5108e-13 9.55087e-16 6.74478e-16 -4.82873e-13 -4.88043e-13 -8.93262e-16 -8.00727e-19 3.33636e-19 -5.27392e-16 3.44319e-13 3.44956e-13 7.4866e-17 4.88161e-13 6.72179e-16 4.52648e-19 2.8799e-19 -3.74392e-17 -3.69447e-17 1.0278e-16 -6.89205e-17 9.60167e-17 -5.93716e-19 -1.99733e-20 -9.53067e-20 -1.38682e-16 5.33435e-19 -4.27306e-16 4.89064e-13 4.02915e-16 1.8957e-16 -1.93011e-13 -1.4406e-16 -1.38386e-16 1.57885e-13 4.52283e-13 1.92448e-13 1.92699e-13 -1.00139e-18 1.71836e-13 1.21209e-13 6.86487e-17 2.42879e-18 1.13539e-16 -1.97256e-13 -7.08283e-17 6.72083e-17 -2.42734e-13 -1.15175e-16 -1.33087e-17 3.20251e-17 -9.49426e-14 -7.82481e-14 -2.63801e-13 7.64917e-14 2.63826e-13 1.06121e-16 6.8192e-20 -9.84791e-18 1.72086e-17 -8.42894e-14 -4.50195e-17 3.87222e-14 3.01778e-17 -4.78855e-14 -2.37372e-14 -1.3426e-17 9.58907e-19 -1.21521e-14 -5.97113e-15 -2.16574e-15 5.09845e-15 -1.15519e-12 2.09196e-16 -5.95186e-15 1.07399e-12 4.43748e-15 -6.16731e-15 1.1285e-12 1.08778e-12 -1.14107e-12 -6.5742e-15 -1.63259e-17 7.45324e-18 -4.03045e-15 1.05726e-12 8.22456e-15 -1.16901e-12 -7.66028e-16 -1.04402e-12 1.07146e-12 4.742e-15 -4.55241e-13 -1.90534e-15 7.88241e-16 -1.23187e-15 4.84883e-13 4.9084e-13 -4.8745e-13 4.84296e-13 1.10288e-15 2.78999e-16 2.40974e-19 -6.78771e-19 5.47239e-16 -4.47566e-13 -8.20339e-16 -7.35806e-19 4.24388e-19 -5.28332e-16 3.45414e-13 2.4955e-16 3.46953e-13 7.05809e-16 3.21546e-19 -3.61645e-19 5.79354e-16 -4.87542e-13 -4.9049e-13 -8.33439e-13 -9.43573e-13 -8.31879e-13 -8.67591e-16 -4.43605e-19 1.13784e-22 -4.9329e-19 4.03421e-16 -4.52251e-13 4.87901e-13 3.7664e-16 -1.87252e-19 -4.93299e-17 3.33341e-16 -4.86552e-13 -2.03155e-16 -1.56489e-13 1.53461e-13 1.56361e-13 -3.32201e-13 -5.91032e-17 -1.97812e-13 -1.65843e-16 1.02432e-13 -1.72337e-13 4.84626e-14 -1.21711e-13 -4.86839e-13 5.14465e-14 2.43779e-17 4.00465e-17 -9.56592e-14 1.66158e-17 -1.49211e-13 -1.72552e-13 -7.44169e-17 3.13864e-17 -1.00622e-19 4.34016e-17 -1.2174e-13 -3.14219e-17 -3.86888e-14 -3.57185e-17 8.2676e-14 2.42299e-17 4.48019e-18 -4.3154e-14 -2.358e-14 -3.32096e-14 -1.20207e-17 -5.39557e-15 -1.16115e-12 -8.059e-15 1.16781e-14 -1.15227e-12 -7.06836e-15 1.63626e-15 -6.87124e-15 1.12927e-12 7.42182e-15 7.32389e-16 -1.46452e-15 -6.05949e-18 1.46072e-21 -8.19565e-18 4.02939e-15 -1.05657e-12 -4.04052e-15 -9.08656e-16 2.58773e-16 -9.60664e-16 9.79357e-16 3.02381e-15 -1.02582e-12 -1.07652e-12 -3.10302e-15 -1.3023e-15 4.89761e-13 -4.47928e-13 -1.4451e-15 3.3432e-16 7.70992e-17 8.75391e-19 2.40755e-17 2.49722e-17 8.83728e-16 -4.83662e-13 -8.84558e-16 -7.91504e-19 4.1898e-19 -5.21611e-16 3.40571e-13 9.3075e-13 4.9183e-13 6.99973e-16 4.90731e-19 8.06152e-22 -8.42339e-19 1.03527e-15 -1.07719e-12 -4.90702e-13 -4.3262e-16 -4.52651e-13 -4.71303e-16 -2.40548e-19 1.93191e-19 -4.25065e-16 4.90754e-13 -4.49268e-13 1.58801e-16 -4.87921e-13 -3.81284e-16 -2.65287e-20 -1.92834e-19 -1.23711e-16 2.00358e-17 -3.39575e-16 4.8594e-13 1.56116e-13 2.41094e-17 9.51164e-17 -1.72099e-13 -9.82882e-17 1.9206e-17 -4.65164e-17 4.73441e-14 -3.34315e-17 4.83037e-14 -2.43361e-13 -1.29873e-16 -3.29733e-17 7.79047e-14 1.66987e-13 -9.60519e-14 3.55662e-18 -1.6557e-13 -5.63304e-17 7.44825e-20 -4.81387e-20 -2.20464e-17 2.47934e-14 -2.33507e-17 8.37361e-14 4.79453e-14 -7.40739e-14 -6.6221e-14 -2.43907e-14 -3.69456e-14 -1.16546e-17 -1.22684e-14 -7.68092e-15 -1.16483e-12 -8.82436e-16 -1.15128e-12 3.23542e-15 -4.66989e-14 5.76033e-15 -1.1252e-12 -4.44754e-15 5.12682e-15 -1.07565e-12 -5.78854e-15 -5.99527e-16 -1.02607e-18 -4.05707e-16 -1.61046e-19 -1.18554e-15 -3.79094e-15 1.06993e-12 1.04299e-12 1.39007e-13 4.45389e-16 3.57768e-15 -1.20558e-12 1.55824e-12 -4.46355e-13 -4.87659e-13 -4.51093e-13 1.06647e-12 2.61385e-15 -2.44081e-15 1.11525e-12 1.53574e-15 4.45757e-13 4.82485e-13 7.05263e-16 1.36154e-13 2.53605e-16 1.16774e-18 2.89563e-21 -8.60271e-19 1.83359e-16 -1.04397e-15 1.0746e-12 1.53035e-15 1.11545e-18 4.35829e-19 1.13707e-21 -3.57086e-19 -4.52966e-16 -1.99762e-16 -6.58741e-20 -1.74885e-16 -1.86065e-18 -2.48021e-19 -1.72188e-19 -3.86337e-16 4.51423e-13 -1.41599e-16 4.86962e-13 4.86208e-13 1.93517e-13 1.59814e-16 1.45045e-19 -3.07902e-16 4.85426e-13 2.42685e-16 1.55861e-13 2.99058e-13 1.87473e-16 1.06401e-16 -1.71929e-13 -9.81374e-17 -8.52817e-17 1.68973e-13 4.14271e-13 -2.42846e-13 -1.20499e-13 9.08575e-18 -2.44804e-13 -1.52951e-16 9.54583e-14 2.23772e-13 6.32172e-17 5.14235e-14 1.66656e-13 1.6599e-13 7.38406e-17 6.87015e-20 1.13055e-20 2.56691e-18 -1.24321e-17 4.74661e-14 1.10391e-14 -2.67202e-17 6.09238e-14 -4.16573e-14 -2.36809e-14 -4.47748e-18 -1.22493e-14 -3.63338e-15 -2.18394e-15 1.21802e-17 -3.64107e-15 -6.45645e-15 1.11885e-12 3.97308e-16 1.14371e-12 6.99293e-15 1.53194e-17 3.69296e-15 -1.12842e-12 -1.19191e-12 -9.4314e-16 -1.07553e-12 -4.43211e-15 -9.93693e-18 3.09722e-16 -9.26413e-14 9.5592e-16 1.48703e-16 1.11337e-16 4.5598e-18 -1.19452e-15 1.47239e-15 -4.24843e-16 -4.27889e-16 -3.70063e-16 8.78528e-16 8.17866e-19 -5.88016e-19 8.40356e-16 1.5744e-18 -8.54632e-16 5.89626e-13 4.86627e-13 4.814e-13 9.34243e-13 1.64735e-15 2.56082e-18 -1.42096e-15 9.31814e-13 1.05981e-16 9.30507e-13 4.55532e-13 4.90532e-13 6.49834e-16 4.21599e-19 -1.01065e-22 -9.38288e-20 2.67732e-19 6.38876e-18 3.09686e-16 -3.07822e-13 -3.10492e-16 -4.04985e-16 4.51589e-13 9.74892e-13 4.89932e-16 4.52128e-13 -1.34066e-13 4.45306e-13 4.88676e-13 3.03757e-20 5.33388e-13 2.8933e-16 3.34426e-13 1.54505e-13 5.30134e-13 1.48922e-16 3.14044e-13 -1.70536e-13 -9.69757e-17 -6.61445e-21 -2.04565e-16 5.05226e-13 -2.44896e-13 -1.20555e-13 4.78867e-14 -7.91561e-18 -3.98825e-17 9.64383e-14 1.92704e-13 1.04069e-16 -7.77154e-14 -5.06652e-14 -3.6893e-17 9.50364e-14 3.7443e-17 1.76634e-18 -1.4428e-17 4.7379e-14 4.20244e-17 -4.72677e-14 -4.70551e-14 -1.73969e-17 -3.31323e-18 -1.68123e-18 5.93987e-21 -7.54665e-19 -2.02158e-19 -2.17784e-15 7.15498e-15 -1.1515e-12 -1.22948e-14 1.12051e-12 6.55015e-15 -3.64557e-15 1.06179e-12 5.51339e-15 4.43421e-16 -9.53715e-14 -2.07018e-15 -4.3463e-15 1.05664e-12 4.60595e-15 5.67848e-16 -9.79065e-14 1.06506e-12 1.07985e-12 9.4252e-14 1.07665e-12 4.74278e-15 -4.55794e-13 4.86392e-13 -4.87209e-13 -2.55764e-15 4.84908e-13 1.21359e-15 2.18493e-18 -5.63292e-19 -2.19223e-17 1.53547e-18 -9.39771e-16 4.78704e-13 4.82405e-13 4.46523e-13 1.37997e-15 1.7714e-18 1.13849e-18 -1.42059e-15 9.33168e-13 7.27977e-16 4.931e-13 5.46133e-16 3.45974e-13 4.77539e-16 -4.72791e-20 -3.32751e-19 -1.66121e-17 3.52795e-16 -3.44603e-13 -9.63929e-14 -2.29919e-16 -1.72815e-17 4.36339e-19 -2.31123e-16 4.52027e-13 2.88058e-18 4.88188e-13 4.5098e-13 1.58331e-13 2.71873e-16 3.65344e-19 1.57947e-16 -3.15248e-16 4.93119e-13 1.9258e-13 3.4676e-13 1.19592e-16 1.73037e-13 5.78612e-17 2.19078e-20 -9.57398e-17 1.90254e-13 3.26925e-16 -2.44963e-13 2.44714e-13 2.05331e-17 2.44485e-13 1.08225e-16 -1.85144e-17 9.55716e-14 -1.65663e-13 -1.06534e-16 5.04357e-14 -5.10191e-14 2.1333e-14 -8.83167e-19 2.56581e-14 2.53271e-14 4.69882e-18 4.75987e-14 -9.51045e-14 -8.30231e-14 -6.05069e-14 -2.05285e-17 4.2213e-21 2.82495e-24 5.45279e-24 2.98585e-24 -1.15925e-12 -7.97857e-15 -7.36109e-15 1.15575e-12 3.6392e-14 1.9664e-16 -4.24042e-18 1.66408e-15 6.0499e-18 4.11042e-19 -1.32334e-16 -1.63705e-18 4.98398e-18 -2.81908e-15 1.07211e-12 1.06288e-12 1.36606e-16 1.07391e-12 1.04379e-12 1.34477e-13 1.63033e-15 -3.04418e-15 1.03627e-12 1.04102e-12 2.45782e-15 4.61917e-18 -7.34453e-16 4.87051e-13 1.19004e-15 -9.85788e-16 4.50529e-13 9.88083e-16 -9.32326e-16 4.51171e-13 4.86681e-13 4.85079e-13 9.31019e-13 1.63968e-15 1.41215e-18 2.11687e-19 5.84002e-16 -4.58402e-16 3.46242e-13 -9.3277e-13 -6.50591e-16 -3.42474e-13 -4.39556e-16 -4.21592e-16 3.44585e-13 3.48397e-13 -2.75377e-16 4.88769e-13 3.99422e-17 4.88395e-13 1.17432e-17 4.88216e-13 4.88707e-13 5.08068e-16 -9.92306e-14 -9.74574e-14 4.49081e-13 4.86394e-13 2.54634e-16 1.56788e-13 1.06935e-17 1.55192e-13 1.93011e-13 2.98924e-13 1.91954e-13 1.91512e-13 -1.72373e-13 -9.77751e-17 -1.56519e-16 3.14226e-13 2.42657e-13 -3.87378e-17 2.4178e-13 2.2284e-16 -2.25732e-13 -9.5445e-14 9.61252e-14 9.99158e-17 -9.48504e-14 -9.45084e-14 -3.20023e-17 -6.90859e-18 2.7759e-18 4.43157e-21 -6.03181e-18 2.5883e-14 8.2815e-14 1.96538e-17 4.79221e-14 -4.75403e-14 -2.05629e-17 1.22534e-14 4.3651e-18 5.25017e-22 -2.39032e-24 -8.63154e-27 -2.12064e-15 -7.17869e-15 1.15159e-12 -5.19544e-16 -4.50388e-14 -2.64758e-16 5.73752e-18 -6.86997e-16 -6.50704e-18 -3.96437e-20 4.04936e-18 -3.22705e-16 -3.19869e-18 -3.72273e-16 9.53612e-14 1.78467e-15 -3.78505e-15 1.07283e-12 5.06941e-15 1.81889e-16 4.02965e-17 -3.51324e-18 1.13512e-15 9.77309e-16 3.43969e-18 6.82068e-19 4.958e-17 4.62703e-16 -5.32604e-17 -1.06263e-15 4.86618e-13 7.47704e-17 4.86276e-13 1.28813e-15 3.82486e-16 3.6654e-16 8.12814e-16 -1.24702e-18 -5.32104e-21 8.63483e-19 6.46854e-16 -3.48552e-13 3.69787e-16 -4.91001e-13 -2.86105e-16 -3.47044e-13 -8.52288e-16 3.45248e-13 9.04483e-17 4.54866e-13 4.21801e-18 4.88662e-13 5.06551e-16 -2.32007e-16 4.882e-13 2.41951e-16 4.88312e-13 3.80353e-17 4.83483e-13 3.36431e-16 1.55682e-16 1.68555e-16 1.31247e-16 -1.92245e-13 -1.34704e-16 4.78675e-17 2.40769e-16 -2.9736e-13 -3.09479e-16 3.11616e-13 1.72326e-13 8.87496e-18 1.72223e-13 3.14766e-13 1.87694e-13 -1.67843e-17 2.4391e-13 2.42343e-13 -4.8724e-14 -8.24562e-17 9.58015e-14 9.61341e-14 2.56109e-17 -2.21563e-17 -3.86341e-18 -3.676e-18 -5.86876e-20 -3.55775e-23 1.91984e-20 2.96126e-18 9.0054e-18 -3.69395e-18 4.46114e-18 -2.40187e-17 6.10824e-14 3.7474e-14 1.46366e-17 -3.32907e-18 -2.55238e-20 -8.73452e-24 -3.84282e-17 7.17361e-15 -1.15159e-12 -7.2917e-15 -9.51942e-17 -6.89738e-18 4.70101e-15 -1.0743e-12 -6.11553e-15 -2.58177e-17 4.39233e-15 -1.07598e-12 -4.783e-15 -1.06591e-17 1.26909e-16 1.2241e-18 -2.73382e-18 1.39636e-15 3.55911e-15 -1.06867e-12 -1.07451e-12 -3.38581e-15 -4.25322e-15 1.524e-12 4.43558e-15 1.07669e-15 -4.52019e-13 -2.20086e-15 4.48702e-13 1.0568e-15 4.46041e-16 -1.06181e-15 4.80944e-13 4.85919e-13 8.75779e-16 4.33363e-14 -9.34772e-13 -1.64431e-15 -2.727e-18 1.63092e-15 -1.07367e-12 -1.86954e-15 7.17362e-16 -4.91024e-13 4.93365e-13 4.43745e-16 5.77298e-16 -4.88426e-13 -1.00292e-15 3.45325e-13 -1.18992e-16 4.91582e-13 5.07934e-16 1.17992e-18 2.63349e-16 -4.73688e-19 2.08062e-16 4.29359e-16 -4.88399e-13 4.88185e-13 1.56209e-13 1.30373e-16 3.07077e-16 -4.52302e-13 -3.28968e-16 1.19654e-16 -1.93419e-13 -2.17602e-16 1.08161e-16 -1.91118e-13 -1.63618e-16 1.90413e-13 6.19981e-17 1.72308e-13 2.44865e-13 1.19714e-17 2.44664e-13 4.95248e-14 5.40144e-17 -9.55615e-14 -2.52711e-17 1.83716e-17 -4.61193e-15 -1.66584e-13 -7.64327e-14 -7.0686e-14 -2.78343e-17 -1.12237e-19 7.47727e-18 8.17741e-18 1.62032e-17 -4.79417e-14 -2.33805e-17 2.56647e-17 -7.79053e-14 -2.93748e-17 1.29008e-14 -3.31513e-14 -1.15876e-17 -2.12455e-21 -1.21659e-14 -1.96605e-15 -3.68498e-15 -2.27874e-17 -1.73131e-17 6.10936e-15 -1.13902e-12 -1.06324e-12 -1.08558e-12 -2.00291e-16 -1.13494e-12 1.19966e-12 5.41233e-15 1.17454e-17 6.64346e-20 1.78619e-20 -8.97575e-18 3.59375e-15 -1.07971e-12 1.07472e-12 -1.06942e-12 -1.95782e-15 -4.84814e-13 2.89225e-15 -9.3724e-13 4.84896e-13 4.49979e-13 8.94412e-16 4.58544e-16 1.26805e-16 -1.01896e-15 4.84067e-13 5.81266e-16 4.46908e-13 8.7485e-16 3.78082e-17 -5.36047e-16 -7.83645e-19 6.72657e-17 5.90996e-16 -3.46232e-13 -4.13543e-17 -3.44586e-13 -8.11432e-16 3.16528e-16 -3.58841e-19 -9.08031e-20 -6.80171e-16 3.44659e-13 4.89674e-13 5.41454e-16 2.56285e-16 -5.84787e-19 4.19534e-16 -4.55281e-13 -3.89578e-16 4.06259e-16 -4.89107e-13 9.76956e-14 -4.85448e-13 -1.85405e-16 -1.9076e-13 -4.72233e-16 4.86254e-13 3.33391e-13 2.26806e-16 -1.69759e-16 1.91514e-13 1.06203e-16 3.1796e-17 -1.6976e-13 -4.48733e-17 -1.05562e-20 -7.45671e-17 2.4484e-13 1.23445e-16 5.47116e-17 8.06159e-18 4.0399e-17 -9.65959e-14 -4.31516e-17 5.52701e-18 -1.43483e-17 2.12206e-14 -4.27656e-18 -1.02502e-17 6.77639e-20 -4.27736e-17 1.22316e-13 1.2195e-13 4.52907e-17 1.60028e-17 -7.34284e-14 -8.21664e-18 -6.61293e-14 -2.3224e-17 8.3172e-19 -4.46489e-18 1.23827e-20 -9.37047e-19 7.67819e-15 -1.17116e-12 -1.16107e-12 -7.30944e-15 -1.2724e-17 -8.9363e-16 -2.01241e-15 -1.8321e-15 -1.83962e-15 -4.21348e-19 -1.85736e-15 1.95629e-15 5.1221e-18 3.03739e-18 6.92815e-18 4.19403e-18 -3.80022e-15 1.07598e-12 -1.18967e-15 1.07783e-12 2.12441e-15 2.73117e-15 -9.39174e-13 -2.85815e-15 -1.10304e-15 5.60545e-16 -2.38049e-15 1.17067e-12 4.22911e-15 -5.88887e-13 -1.23579e-15 5.77149e-16 2.97862e-19 5.31409e-16 -1.85014e-18 1.99429e-15 -1.07654e-12 -1.32667e-15 -3.43957e-13 -3.44398e-13 -4.92499e-13 -2.13066e-15 9.291e-13 1.31617e-15 1.01497e-18 5.10658e-23 -7.67432e-22 1.77778e-19 2.06322e-16 2.81914e-16 -1.02475e-18 -7.38808e-17 6.35202e-19 -5.4232e-19 7.98995e-17 -3.42463e-13 9.53199e-17 -4.884e-13 7.47034e-18 -4.8821e-13 -4.02106e-16 -7.5277e-17 6.45276e-19 1.798e-16 1.19315e-16 9.51674e-17 -1.56075e-13 1.54262e-13 3.31556e-13 1.904e-13 6.78794e-17 1.76751e-19 3.89577e-18 1.12348e-16 -2.42043e-13 -4.79036e-14 8.51763e-17 -2.43991e-13 -1.5456e-16 9.66335e-14 -3.23848e-17 1.9098e-13 -1.67353e-13 -5.92284e-17 -2.09723e-14 -7.96347e-18 1.52403e-21 1.0982e-19 1.5724e-17 1.44759e-17 1.56936e-17 -4.74209e-14 2.65902e-14 -3.49301e-14 7.81086e-14 2.78612e-17 7.64712e-18 -2.40293e-14 -5.79129e-18 -8.24103e-15 6.04711e-15 -2.14193e-15 -2.12881e-15 -2.71485e-17 6.30101e-15 -1.13256e-12 -5.64653e-15 -1.11496e-17 -1.56461e-18 -2.65729e-22 -1.53205e-18 1.60426e-18 -8.671e-18 4.1749e-15 -1.05785e-12 -4.18018e-15 -3.67152e-15 1.03893e-12 7.18867e-15 -1.07442e-12 -3.85525e-15 9.99536e-14 -2.2763e-15 4.86044e-13 1.07323e-15 3.98624e-18 -4.61345e-19 1.32954e-15 4.40768e-19 4.64211e-16 -4.43234e-13 -4.42634e-13 1.86099e-17 -4.86195e-13 -1.44146e-18 -4.4722e-13 -1.75955e-15 -1.90631e-18 1.40466e-15 -1.0781e-12 -2.58268e-15 3.42877e-13 1.19012e-15 -2.4763e-19 -1.3385e-21 -1.26467e-24 -6.03145e-26 2.34233e-22 6.1539e-20 3.47433e-19 -4.98351e-16 4.89153e-13 5.03596e-16 2.54177e-19 -3.84566e-19 -1.714e-16 3.74707e-16 -4.51955e-13 -6.98752e-16 4.87966e-13 1.95231e-13 1.48746e-16 5.60104e-20 3.344e-20 1.36506e-19 -3.63651e-16 5.86564e-13 4.0728e-16 1.18062e-17 1.73002e-13 -1.91039e-13 -2.06286e-17 -1.72339e-13 2.42442e-13 -4.80313e-14 4.78161e-14 -5.08423e-14 2.42668e-13 1.13345e-16 -1.22852e-17 7.84166e-14 1.91266e-13 5.03696e-17 -2.64516e-17 7.78657e-14 3.27443e-15 1.15392e-18 2.61945e-22 -1.25931e-19 7.30726e-18 -1.59e-17 4.79582e-14 4.79441e-14 3.78118e-17 -6.09372e-14 -2.14766e-17 4.45602e-18 -2.17822e-14 -7.5494e-18 -3.3223e-19 2.19043e-17 -1.78992e-18 -2.95512e-18 -3.12071e-17 7.32312e-15 -9.01777e-15 1.14531e-12 6.18312e-15 1.62385e-17 2.75536e-20 -8.08284e-22 8.57478e-22 -7.18333e-22 3.25319e-18 -1.50665e-15 -5.18214e-14 -2.00243e-16 1.56052e-15 -2.44073e-16 -1.86352e-15 1.03613e-13 4.55789e-16 -1.44493e-16 -2.42446e-15 1.07371e-12 2.77103e-15 3.86564e-18 -1.48898e-16 1.02212e-15 -4.52221e-13 -1.50112e-15 -3.05388e-16 -1.6591e-18 4.25158e-16 -4.83122e-13 -1.33106e-15 -1.12315e-18 3.24496e-21 -6.88054e-19 -9.03559e-16 6.80837e-19 2.72274e-16 2.5457e-20 -1.48159e-21 -5.29309e-25 1.53485e-28 1.37638e-28 8.61984e-26 1.24653e-23 -6.33609e-22 4.73571e-19 2.87302e-16 -4.8325e-19 -1.29479e-21 6.83379e-19 7.96791e-17 4.0129e-16 -4.8755e-13 -4.86257e-13 -2.37276e-16 8.60319e-17 2.26505e-17 -4.76887e-19 -1.61068e-17 4.64702e-19 1.83177e-17 4.95997e-17 2.97447e-13 1.84531e-16 7.68327e-17 -6.35809e-17 4.17518e-14 1.71509e-13 4.16456e-17 2.41579e-13 -2.44222e-13 -1.32769e-16 1.60962e-16 -2.41591e-13 -1.09358e-16 -6.02081e-17 1.91173e-13 4.46026e-17 9.55461e-14 5.6968e-17 1.62445e-18 2.5192e-20 3.44421e-20 -4.2297e-17 1.20412e-13 3.88829e-17 -6.78811e-18 4.65853e-14 4.73178e-14 6.40418e-18 7.52655e-18 -2.37439e-14 -6.85283e-18 4.5267e-20 4.13084e-23 -1.95101e-17 3.01399e-17 -1.54905e-15 7.67256e-15 -1.11536e-12 -1.15131e-12 -4.8951e-15 -1.80062e-17 -1.6454e-19 -1.59998e-21 -1.44466e-23 2.93119e-25 5.09149e-24 1.27962e-22 -1.21664e-18 -8.69261e-17 -2.90906e-17 -3.53023e-15 1.03933e-12 6.90991e-15 -1.07104e-12 -4.43163e-15 4.8204e-13 4.50636e-13 1.4917e-15 4.51473e-13 2.60685e-16 4.48469e-13 -9.51848e-18 4.88043e-13 2.12203e-15 -4.85994e-13 -1.19754e-15 1.59901e-16 -4.85654e-16 5.16749e-17 -2.15503e-19 -4.65479e-22 -1.22074e-21 -3.82431e-19 1.50347e-21 1.0898e-19 -2.98184e-22 -4.11967e-25 5.39382e-26 4.27881e-24 -5.0521e-26 5.69179e-28 1.29818e-27 1.86542e-25 3.97921e-22 8.34981e-20 -3.25281e-22 -2.00153e-19 4.31564e-16 -4.88515e-13 -4.40167e-16 9.7654e-14 -5.11584e-16 4.85627e-13 5.21483e-16 -1.95432e-13 -2.49653e-16 1.56812e-13 2.29853e-16 -1.92174e-13 -1.92637e-13 1.90743e-13 2.89985e-16 -3.32138e-13 -3.14616e-13 -1.72249e-13 -3.12114e-13 -2.83054e-16 2.4315e-13 -2.44812e-13 4.82677e-14 -6.08297e-17 1.9371e-13 3.12273e-13 -9.62352e-14 1.72731e-13 7.53068e-17 -4.46976e-17 1.6601e-13 2.40564e-14 9.64568e-18 8.41515e-18 -2.4305e-14 2.42872e-14 -8.34213e-14 4.75158e-14 -3.80958e-14 1.3959e-17 -6.08896e-14 -1.89796e-17 -8.9751e-18 2.40061e-14 8.24939e-18 1.43284e-21 -8.21795e-15 1.92398e-14 -1.15831e-12 1.14416e-12 4.79566e-15 3.56556e-15 -1.07527e-12 -5.78593e-15 -2.97259e-16 -5.86546e-18 -2.49403e-20 -5.59182e-23 1.16573e-24 -1.19708e-21 8.99127e-19 -4.71536e-16 1.30015e-13 -2.73196e-15 9.44451e-13 3.20381e-15 1.14124e-15 -1.03786e-12 -2.45724e-15 4.25637e-16 -1.18288e-15 4.53508e-13 -4.49655e-13 4.43617e-13 8.91024e-16 3.98512e-16 1.8851e-18 -1.53313e-15 4.88149e-13 -4.4384e-13 -7.99941e-16 -1.42476e-13 -2.57906e-16 -2.28148e-19 5.13631e-22 8.06391e-20 -3.15661e-22 3.86343e-20 -3.06173e-22 1.34703e-23 -2.75414e-22 -3.12083e-20 2.68805e-22 -3.7642e-24 -1.23013e-26 -3.72515e-24 1.79733e-25 1.57688e-23 -1.06432e-24 5.0156e-22 -7.63644e-19 1.13475e-16 -4.51751e-13 -9.55935e-14 -9.805e-14 1.57517e-16 -8.66654e-19 -8.93952e-17 4.35042e-19 6.73137e-17 9.81828e-20 -1.32986e-16 1.56619e-13 8.01949e-17 1.55221e-13 1.57258e-16 -3.33666e-13 -2.21067e-16 -9.65569e-17 -1.16319e-16 2.44571e-13 -1.68344e-13 -2.63063e-13 -1.1783e-16 4.75811e-17 3.26289e-17 9.60786e-14 1.66959e-13 1.67138e-13 6.83343e-17 5.73681e-17 -7.69273e-14 -3.3188e-17 -1.8313e-19 -2.09013e-18 1.64851e-18 -2.58554e-17 4.82789e-14 -5.32866e-18 4.69552e-14 3.58685e-18 2.39332e-14 8.335e-18 -2.14706e-18 -6.24786e-20 -2.12254e-23 -1.15153e-12 -1.15246e-12 -9.7393e-15 2.45328e-15 -4.6889e-14 -2.6177e-16 -2.62872e-15 5.18567e-15 -1.12935e-12 -5.62377e-15 -1.36426e-17 -2.13841e-20 -2.43795e-23 2.29233e-23 -1.299e-20 2.05821e-18 5.80132e-16 -4.02605e-15 1.07485e-12 2.47665e-16 1.0663e-12 9.37615e-13 1.47223e-15 4.88341e-13 -1.25992e-16 4.8901e-13 4.58423e-16 -6.78548e-16 4.48965e-13 4.47518e-13 1.00818e-15 1.11609e-15 -4.51318e-13 -2.30945e-15 4.82039e-13 -4.85574e-13 -8.79343e-16 -7.76238e-19 -1.52592e-18 -3.60708e-16 7.38256e-19 -1.80662e-16 7.79856e-19 -8.78671e-20 8.11016e-19 1.60123e-16 -8.20085e-19 2.13041e-20 6.63846e-23 2.81632e-20 -2.57138e-22 1.13428e-24 -7.85398e-22 7.905e-19 1.12795e-16 -1.61156e-18 1.46799e-16 -4.85564e-13 -4.56346e-16 -3.51057e-17 3.13135e-19 -7.31944e-21 4.68963e-22 -5.77033e-19 1.65743e-16 -3.35526e-13 -1.54385e-13 -2.06517e-16 1.55636e-13 9.14639e-17 7.73492e-17 -3.1438e-13 -1.71321e-16 -1.0784e-16 2.43123e-13 -2.44453e-13 -2.44984e-13 -2.447e-13 -5.11453e-14 -2.26683e-17 2.29129e-17 3.58963e-17 6.94498e-17 -9.4545e-14 -3.48106e-15 9.49747e-14 -9.3931e-14 -4.44071e-17 2.45955e-14 -2.551e-14 -9.25129e-18 2.07259e-17 -4.76122e-14 -1.06708e-17 -5.77013e-15 3.78357e-18 1.15789e-17 -3.08779e-14 -1.04674e-17 -1.79518e-21 -2.17283e-15 -3.82457e-16 7.44107e-18 3.58123e-18 -1.32777e-16 6.0051e-15 -1.12245e-12 -1.15594e-12 -8.19304e-15 -2.11049e-17 -2.70019e-20 -1.39079e-23 1.90601e-23 -3.34151e-21 -4.84683e-18 4.30966e-15 -1.07982e-12 1.02989e-12 1.08041e-12 9.69947e-14 -1.34669e-15 9.43876e-13 2.64058e-15 -5.90031e-16 4.87095e-13 4.89102e-13 4.82032e-13 4.48436e-13 1.67492e-15 5.7033e-16 9.4456e-16 -4.51225e-13 -1.47738e-15 1.19201e-15 -4.85505e-13 -1.23637e-15 -4.1879e-16 2.78687e-18 -1.45055e-15 9.302e-13 7.39991e-16 4.93013e-13 9.08462e-16 4.04661e-16 6.13816e-16 -4.91966e-13 -6.19858e-16 -1.14284e-16 -2.3868e-19 -1.50657e-16 8.48348e-19 8.07993e-22 -2.38209e-19 4.4423e-16 -4.88968e-13 -4.50224e-16 2.51343e-16 -3.05933e-13 -3.01507e-16 1.93525e-13 1.13498e-16 -8.69261e-17 8.72414e-19 -2.18251e-16 3.35609e-13 2.7106e-17 1.92609e-13 1.90486e-13 -1.89738e-13 5.76207e-17 -3.14656e-13 -2.81311e-16 5.97613e-17 -1.20541e-13 1.02664e-17 -8.53084e-17 -6.72725e-17 -6.22226e-17 -1.28003e-17 3.61497e-17 -9.54043e-14 -4.89204e-18 -9.60457e-14 -2.27543e-17 -9.51008e-14 -1.75028e-17 -1.51979e-17 -7.92931e-18 2.41056e-14 5.44631e-18 -2.78141e-18 -7.22842e-20 -8.14611e-18 1.55925e-15 -1.31231e-17 4.15769e-14 1.92206e-14 2.40175e-14 6.67722e-18 -1.42815e-20 -7.4254e-15 1.15137e-12 7.52769e-15 1.43715e-15 -4.4534e-14 -2.54231e-16 -2.25768e-15 -2.60593e-15 -1.54191e-17 -3.33593e-20 -4.05255e-23 -1.23791e-23 1.13108e-20 -8.13345e-18 4.07867e-15 -1.07643e-12 -5.95388e-15 -2.32335e-15 1.0749e-12 1.04072e-12 1.07489e-12 9.48167e-13 4.52646e-13 1.31697e-15 7.31382e-16 7.12103e-16 6.8446e-16 6.19344e-16 -2.62129e-16 -2.64695e-16 -2.37983e-16 -5.64952e-16 1.1602e-15 -5.91508e-13 4.44296e-13 -4.45549e-13 9.30533e-13 1.62108e-15 7.68299e-16 -4.91468e-13 -7.6867e-16 1.15247e-15 -4.91969e-13 -1.07788e-12 -1.45604e-15 -4.14616e-16 -4.01899e-16 3.45916e-13 -1.27087e-16 4.91364e-13 5.37193e-16 1.17223e-18 1.43949e-16 -1.54193e-18 -3.10584e-16 3.21391e-19 3.73293e-16 -4.87605e-13 -4.88392e-13 -5.34132e-16 1.92144e-13 4.85726e-13 3.53141e-16 1.58792e-16 -1.91931e-13 -4.49054e-13 -2.98426e-16 1.55429e-13 -2.28559e-17 -1.0101e-16 1.90276e-13 -2.53035e-14 -8.65363e-18 4.81063e-14 -1.05406e-16 2.44548e-13 1.53367e-16 -5.05322e-14 -5.22999e-17 9.49163e-14 -1.48892e-17 9.6143e-14 1.9812e-17 2.12314e-20 -7.82235e-17 1.66265e-13 6.46119e-17 4.17808e-17 -1.22329e-13 -2.92063e-17 -4.81283e-14 -1.67303e-18 -3.84574e-14 1.69175e-15 -5.35252e-18 1.92798e-14 3.32487e-18 2.12333e-18 -1.22226e-14 -4.11265e-18 -7.33434e-18 2.30046e-15 -1.89335e-14 1.15319e-12 6.90783e-15 4.64132e-18 5.81428e-15 -1.13301e-12 -5.86402e-15 -1.47792e-17 -2.40632e-20 -2.84449e-23 -1.40553e-23 2.44122e-21 2.56947e-18 -1.54028e-15 -1.33469e-13 1.07853e-12 -1.06748e-12 -1.0384e-12 -1.04e-12 1.07435e-12 3.9789e-15 5.36929e-18 5.58112e-19 5.25558e-19 1.87027e-18 -1.12195e-15 4.81125e-13 4.8882e-13 4.4832e-13 9.70553e-16 -1.09243e-19 1.14608e-16 -4.51787e-13 -1.36086e-15 1.04918e-15 -6.58381e-19 -4.29828e-19 -5.10571e-16 -2.308e-16 1.59126e-16 4.06615e-16 -3.43506e-13 -2.53903e-16 4.38309e-16 3.98088e-16 -3.45007e-13 -7.75649e-16 3.44246e-13 3.75017e-16 3.60613e-16 -4.88198e-13 -4.78292e-16 1.43047e-16 5.58307e-17 9.47423e-14 -9.73158e-14 -6.22673e-16 4.87931e-13 4.81474e-16 2.51707e-16 1.2838e-16 -1.93253e-13 -4.49949e-13 -6.77433e-13 -4.30909e-16 -9.63828e-17 3.33277e-13 2.1593e-16 7.02012e-17 1.30267e-16 -3.14105e-13 -2.42082e-16 2.44567e-13 2.8543e-16 -2.44564e-13 -1.23474e-17 -2.42628e-13 -1.9707e-17 -1.66812e-13 -5.12879e-17 -6.97733e-21 2.55688e-19 -5.73247e-19 3.01705e-17 -2.45692e-19 4.39231e-17 -1.30591e-13 -4.74824e-17 -2.14257e-17 4.79159e-14 4.76018e-14 3.79945e-14 8.09282e-18 1.40377e-17 -4.14463e-14 -2.38491e-14 -1.2111e-14 -4.06008e-18 -2.3331e-17 7.14306e-15 -1.14496e-12 -1.1605e-12 -7.02837e-15 -2.06802e-17 -1.0037e-18 -2.1761e-15 -6.66427e-20 2.83447e-20 7.94714e-23 9.86799e-26 -1.18513e-24 -7.45227e-23 -9.71938e-21 5.42956e-18 -4.02232e-15 1.07857e-12 1.21856e-15 -1.78604e-15 -2.47777e-15 1.83523e-15 2.31554e-18 -5.1731e-21 2.72437e-22 -5.30144e-22 -1.28112e-19 5.53142e-19 9.76662e-16 9.61055e-16 8.86738e-16 2.71246e-16 2.92357e-16 -6.31072e-16 4.77422e-13 8.93373e-16 1.41575e-18 -1.68526e-21 5.78529e-19 -7.35018e-16 4.91668e-13 -3.40546e-13 -9.3072e-13 -3.45648e-13 -4.89525e-13 -1.0799e-12 -2.43004e-15 9.28802e-13 7.15634e-16 3.42651e-13 2.56202e-17 3.45024e-13 2.61231e-19 4.4264e-16 -4.88584e-13 -4.89028e-13 9.47396e-14 -9.40224e-13 -4.50748e-13 -3.21493e-17 -1.24843e-18 -4.93131e-20 3.20342e-16 -4.85229e-13 -5.46078e-16 -3.1346e-16 1.12856e-16 -1.92162e-13 8.11549e-17 -1.55455e-13 -2.16803e-16 1.71732e-13 1.31198e-16 -2.44493e-13 -1.69886e-16 2.4481e-13 1.65101e-16 -2.42332e-13 -2.20533e-16 9.64201e-14 -3.35152e-17 9.48593e-14 3.91955e-17 6.07983e-17 -1.65867e-13 -6.50197e-17 -1.15778e-20 -5.60903e-18 1.64556e-14 6.03712e-18 7.05707e-20 -2.80525e-18 2.64777e-14 3.59718e-17 -5.6225e-14 -2.62747e-17 3.6725e-14 1.72843e-17 -3.26473e-14 -1.07888e-17 2.29593e-21 6.77856e-18 -2.29516e-15 -1.27217e-15 -7.64851e-16 1.29812e-17 -5.83961e-15 1.07528e-12 5.55576e-15 8.45964e-18 -4.02666e-21 -2.573e-23 3.1096e-21 3.74698e-19 1.28331e-20 -3.0454e-18 -1.71018e-16 -1.32814e-13 1.03989e-12 -9.42488e-14 1.0758e-12 4.10166e-15 -3.03117e-16 8.13878e-19 2.75268e-22 8.6857e-19 3.31582e-16 1.37942e-15 -4.51368e-13 -4.48836e-13 -4.46456e-13 -4.47611e-13 -4.88478e-13 -4.49295e-13 6.42707e-18 -3.81842e-16 1.00309e-18 8.3878e-21 -1.6112e-18 -1.10308e-15 3.40971e-13 1.4885e-16 -1.41272e-15 -3.35531e-16 -2.32236e-16 -9.95136e-16 -3.97213e-16 3.46091e-13 -8.79974e-17 4.54713e-13 2.91778e-18 4.91464e-13 6.71172e-16 4.3983e-16 -4.91291e-13 -4.92132e-13 -4.02153e-16 -5.94995e-16 -1.2833e-16 -1.92775e-13 -1.48016e-16 -9.9993e-20 1.28439e-16 -1.95328e-13 -1.31403e-16 3.69915e-17 8.89672e-17 -1.55295e-13 1.89402e-13 -1.21242e-16 3.14542e-13 4.36377e-16 -3.11518e-13 -3.01691e-16 1.72096e-13 2.47671e-16 -2.42447e-13 -2.06213e-16 9.6413e-14 1.06543e-16 -9.63004e-14 -2.10375e-17 -3.60394e-18 -2.4972e-17 6.9459e-14 2.69703e-17 -1.32576e-21 3.78591e-17 -1.13259e-13 -4.08637e-17 -5.67058e-19 -1.11219e-17 3.54885e-14 7.3996e-14 8.12407e-18 4.13781e-14 2.34155e-17 -3.30564e-14 -1.35855e-17 2.67452e-20 -4.74836e-20 2.16835e-17 -6.90876e-15 1.15782e-12 -1.11489e-12 -4.74095e-16 -1.1272e-12 -1.14868e-12 -1.08158e-12 -5.3573e-15 -1.29599e-17 1.58943e-20 -6.35954e-18 -1.06682e-15 1.10202e-17 -4.54705e-15 1.07224e-12 1.07957e-12 6.49761e-15 -1.76178e-16 5.21404e-15 -1.07262e-12 4.46178e-13 1.30212e-15 2.43796e-19 1.22078e-15 -4.87535e-13 -4.89232e-13 -9.34096e-17 -4.49362e-13 -4.49145e-13 -1.59902e-15 -6.72204e-16 2.34704e-16 -4.47848e-13 6.19892e-13 1.7081e-15 -1.92807e-19 -1.87322e-15 1.07777e-12 -3.06885e-13 -1.55833e-15 9.31102e-13 2.1817e-15 -4.92772e-13 -6.37045e-16 -5.98633e-19 1.52187e-16 -5.26442e-16 4.91017e-13 5.31718e-16 8.57814e-16 -4.89463e-13 -2.97653e-16 -4.38048e-16 9.64666e-14 9.69163e-14 8.19997e-17 -3.76822e-19 -1.16944e-16 3.33455e-19 -1.08858e-19 3.17448e-16 -4.84249e-13 -2.41384e-16 -1.9285e-13 -2.32326e-16 1.92215e-13 1.97081e-16 1.9411e-19 2.97668e-16 -3.32233e-13 -1.81023e-16 -2.42271e-13 -1.97427e-16 2.44125e-13 1.3804e-16 -2.43685e-13 -7.52961e-17 3.15594e-17 -9.45519e-14 9.60278e-14 1.66941e-13 6.65781e-17 1.53673e-17 -3.98746e-19 -1.54e-22 9.38523e-21 -2.11636e-17 6.90983e-18 -1.08846e-14 -1.84651e-17 4.73084e-14 2.29512e-17 -4.97352e-20 9.93502e-18 -2.37401e-14 -3.30647e-14 -1.2009e-14 -3.94644e-18 -3.73768e-20 -4.542e-20 1.29076e-17 -4.03485e-15 1.12026e-12 4.92374e-16 1.13019e-12 3.52879e-15 -2.37196e-15 -5.75597e-18 -2.72948e-20 1.87939e-17 -8.76478e-15 2.15207e-12 4.09901e-15 1.07605e-12 5.52742e-15 5.68008e-15 -1.03982e-12 -3.51026e-15 8.24524e-16 -1.98541e-15 8.13753e-16 3.48643e-16 5.99301e-20 3.75731e-16 -8.06188e-16 2.048e-15 -1.0728e-12 -3.17495e-15 -6.68877e-16 -1.92935e-19 -1.40906e-18 -3.41009e-16 2.67005e-16 -4.82228e-13 -9.31654e-13 -2.16396e-15 3.45096e-13 3.47245e-13 4.91613e-13 -3.48193e-13 1.15019e-15 -4.91055e-13 -1.15267e-15 2.53055e-16 -4.00692e-16 3.46478e-13 3.16762e-17 3.45726e-13 3.74108e-16 -2.30806e-16 2.40622e-13 -4.88164e-13 -4.57406e-16 6.74617e-17 -1.0208e-16 8.60029e-19 4.06411e-19 5.83799e-17 -4.08717e-19 -4.31001e-20 1.25553e-16 -1.93296e-13 1.57151e-13 5.20445e-18 1.11087e-16 -1.91867e-13 -1.14262e-16 9.1107e-21 -1.61044e-16 3.14526e-13 2.58274e-14 -1.58286e-16 2.45278e-13 1.52577e-16 5.14031e-14 -3.17492e-17 -9.7589e-14 9.62864e-14 -9.63928e-14 -1.87076e-17 1.23955e-17 7.50672e-14 -1.64863e-13 -6.34747e-17 -1.82788e-20 3.69813e-17 -1.12444e-13 8.37382e-14 2.82149e-17 3.49788e-18 -1.09064e-14 -3.79483e-18 4.28959e-22 -7.08792e-18 2.3733e-14 9.87525e-18 -1.20621e-14 -3.8984e-18 -4.36399e-17 -4.60218e-19 -9.0069e-19 -1.5746e-17 3.07978e-15 5.75657e-15 -1.07642e-12 -5.79248e-15 -1.7804e-17 1.09383e-19 -1.38603e-21 -1.68047e-20 1.1149e-19 5.55789e-16 1.05809e-12 1.7897e-15 1.07611e-12 4.73918e-15 -2.9504e-15 3.36259e-15 -1.07613e-12 -3.36898e-15 1.24622e-15 -4.47503e-13 7.51767e-18 -4.85745e-13 2.15783e-16 -4.49742e-13 -2.80358e-15 -1.79241e-18 -1.38022e-18 -3.43211e-16 -9.32459e-16 4.84913e-13 7.60253e-17 4.79656e-13 -3.56091e-16 3.21356e-18 -1.00718e-15 9.32053e-13 7.16997e-16 4.92676e-13 1.35871e-15 -4.91903e-13 -4.71286e-17 -4.91845e-13 -6.09594e-16 3.28093e-16 -3.67026e-16 3.43266e-13 3.70646e-16 2.1621e-16 1.90888e-16 -3.82756e-16 1.05887e-18 -4.0524e-16 4.88924e-13 4.11456e-16 1.46516e-16 -1.95531e-13 -1.49211e-16 -9.88756e-20 1.26329e-16 -1.94334e-13 -4.49226e-17 -4.02311e-19 1.08637e-16 -1.91401e-13 -1.42295e-16 2.84569e-19 -1.10692e-17 2.52627e-14 1.36567e-16 -2.44587e-13 -1.70742e-16 2.44072e-13 2.43667e-17 2.41719e-13 9.71452e-14 6.99274e-17 -5.03938e-17 7.76118e-14 3.17226e-17 -1.24272e-18 5.15471e-14 1.96775e-17 5.6026e-21 -1.11283e-17 3.4299e-14 2.44479e-17 -1.43243e-19 1.1656e-17 -3.78254e-14 -9.06462e-18 7.84307e-20 5.34094e-18 -1.79194e-14 -8.74885e-18 -4.04131e-19 1.93315e-20 -2.80169e-14 -1.64488e-16 -1.33263e-15 -5.43743e-15 1.11536e-12 1.2489e-14 -1.13064e-12 -6.07377e-15 -2.11784e-17 -3.21979e-16 4.73479e-18 2.55642e-20 -1.05089e-20 9.38799e-18 -1.71961e-15 1.07594e-12 1.09685e-14 -1.07849e-12 1.07231e-12 3.62204e-15 -2.13744e-15 -9.95918e-19 3.89363e-16 -8.35527e-16 -1.69836e-18 3.44313e-16 -4.84105e-13 -1.96775e-15 -2.93011e-18 1.02279e-18 -9.34065e-16 4.50707e-13 9.35749e-16 1.08139e-15 8.58972e-16 -4.82298e-13 -8.61784e-16 -7.51239e-19 2.49041e-18 -2.28362e-16 9.31288e-13 1.95769e-15 -6.52518e-16 3.45334e-13 4.60748e-16 -5.06715e-16 9.02486e-19 1.55714e-19 6.81613e-19 3.13733e-16 4.82837e-16 -4.89801e-13 -4.8933e-16 -2.10951e-16 1.11331e-18 9.60938e-19 3.5631e-16 -1.03759e-18 1.44149e-16 -1.9457e-13 -1.46987e-16 -8.875e-20 1.01044e-16 -1.56107e-13 -1.03219e-16 4.71682e-17 -3.56433e-19 -1.37974e-16 1.54719e-13 1.24946e-16 1.58382e-16 -3.14646e-13 -2.79396e-16 2.41579e-13 2.45154e-13 1.87793e-16 4.85677e-14 -2.44533e-13 -8.71698e-17 2.98399e-17 -9.5767e-14 -1.88886e-17 -1.57343e-19 2.72186e-17 -7.67483e-14 -2.9165e-17 -1.26115e-20 4.23509e-17 -1.30443e-13 -4.57373e-17 -2.20356e-18 2.17403e-18 -2.38397e-17 4.66503e-14 1.69979e-17 6.96557e-18 -2.37029e-14 -2.36771e-14 -7.62312e-18 -1.23957e-21 -6.23916e-17 7.18834e-15 -1.16249e-12 1.14461e-12 9.40526e-15 1.13807e-14 -2.20682e-12 -1.18035e-14 -5.12472e-15 1.07641e-12 5.12572e-15 1.18996e-17 1.78546e-20 1.23363e-20 -8.43699e-18 6.30663e-15 -1.08018e-12 1.06966e-12 6.0338e-15 8.67502e-18 -9.52703e-17 1.29205e-15 -4.46386e-13 -1.29293e-15 -1.82662e-18 -5.74132e-19 -8.60917e-16 -7.89367e-19 3.13032e-21 -1.95342e-21 1.9141e-19 7.06687e-16 9.28842e-16 -4.84212e-13 -2.0528e-15 6.22527e-13 1.12434e-15 9.79111e-19 2.19421e-21 8.88055e-19 8.06107e-16 -4.27002e-16 3.10239e-13 -3.47284e-13 -4.63655e-16 -1.60074e-18 -2.83498e-16 7.60254e-20 -2.65465e-16 1.56065e-18 -3.41471e-16 3.43813e-13 -1.03461e-16 4.89117e-13 4.53e-16 -1.27662e-16 2.01418e-18 1.86106e-16 -1.5186e-18 -1.31219e-16 4.07058e-19 3.99803e-22 -3.14862e-19 -9.16415e-17 1.16808e-16 -1.93155e-13 -1.22241e-17 -1.91475e-13 1.54954e-13 -1.90931e-13 -1.05821e-16 -1.40343e-16 -7.92422e-17 1.71726e-13 1.97314e-16 -4.8251e-14 2.44851e-13 -9.16048e-18 9.61007e-14 9.62259e-14 6.62435e-18 7.23344e-19 7.84562e-18 -4.80124e-19 -1.72544e-17 1.44602e-19 1.3303e-22 -2.36981e-19 -2.15759e-17 1.47714e-17 -4.65191e-14 3.81698e-14 -8.3047e-14 4.65028e-14 1.71242e-14 5.42847e-18 -3.27708e-18 -9.6427e-19 4.07663e-20 1.01425e-23 6.67917e-18 -1.36652e-17 -9.56356e-16 2.25153e-15 5.13788e-14 -1.15043e-12 1.11096e-12 5.99766e-15 1.0062e-17 2.58101e-15 5.54256e-18 -2.92142e-21 -2.7963e-23 -2.49169e-23 8.58615e-21 5.95933e-18 -2.424e-15 2.37199e-15 5.71796e-18 -3.00035e-16 9.5004e-14 3.0122e-16 -8.95223e-16 -4.71949e-16 9.33055e-19 8.74982e-19 4.23819e-16 -8.97216e-19 -2.41427e-19 1.30576e-21 1.48644e-21 5.64587e-19 -3.64075e-19 -7.39131e-16 2.08774e-18 1.31336e-15 -1.7585e-18 -5.46534e-21 5.62193e-19 -7.25208e-16 4.92182e-13 7.28918e-16 7.07139e-16 -4.0305e-16 2.21547e-16 -8.86717e-16 4.91915e-13 -1.5745e-16 4.91696e-13 2.74728e-16 2.15855e-18 3.11631e-16 2.9354e-19 4.15304e-16 -3.9963e-17 3.05524e-13 4.44823e-16 -4.86096e-13 -3.91277e-16 -6.74839e-19 -6.82467e-17 4.63869e-19 1.33675e-22 -2.57643e-20 3.69063e-20 -5.57956e-17 -1.07013e-16 1.90472e-13 1.91367e-13 -1.51883e-13 -1.25338e-16 2.51568e-14 -4.23794e-17 9.72158e-17 -3.68128e-17 -1.67978e-17 8.01111e-17 4.45442e-17 -9.63402e-14 -4.86111e-17 9.54583e-14 9.39752e-17 -1.6652e-13 -6.51964e-17 -2.06114e-19 -1.60375e-18 1.9248e-19 2.64892e-23 -7.3315e-22 5.55854e-21 -8.437e-18 -2.04388e-17 8.24526e-14 3.77968e-14 -4.63549e-14 -5.78031e-18 -1.77671e-14 -5.66812e-18 -1.60624e-18 -2.19866e-20 3.65758e-15 -6.96364e-15 1.12553e-12 7.27248e-15 -4.32328e-14 -1.5147e-14 2.29753e-12 1.23366e-14 3.49555e-16 -2.22886e-18 -3.16751e-20 -9.42578e-23 -1.80939e-25 3.62779e-23 -1.48822e-20 2.27202e-18 9.67356e-16 4.03885e-19 3.48028e-18 -4.38487e-15 1.07653e-12 3.35216e-15 -1.35444e-15 4.88686e-13 1.35655e-15 1.11981e-15 -4.49842e-13 -1.11644e-15 4.66628e-16 -7.80459e-19 2.39547e-19 -4.01978e-21 1.04832e-18 4.26255e-16 8.5975e-16 -4.85111e-13 -8.61462e-16 -6.15836e-19 -4.64214e-21 1.55635e-18 8.99526e-16 6.71576e-16 -4.93042e-13 -2.36853e-16 -3.46303e-13 4.912e-13 -3.43617e-13 3.44705e-13 3.7797e-16 4.91575e-13 5.23437e-16 4.13662e-19 -1.04567e-18 2.6053e-16 -4.89701e-13 -5.85301e-16 4.88647e-13 3.59643e-17 1.75578e-18 -6.4277e-17 1.95787e-13 1.41762e-16 5.03074e-20 -3.57422e-20 1.14071e-16 -1.90905e-13 -9.88022e-18 -1.91748e-13 2.0866e-17 -1.54656e-13 1.54075e-13 -3.32787e-13 3.13576e-13 -1.71462e-13 2.42809e-13 9.28546e-17 5.10652e-14 -5.12939e-14 -6.38605e-17 6.08773e-19 -6.7689e-18 9.45495e-14 -6.95037e-18 5.11449e-19 -2.9526e-17 9.51156e-14 3.44952e-17 6.22946e-21 -2.29611e-21 1.45163e-17 -4.72682e-14 -2.33583e-17 2.58705e-14 2.51524e-17 -2.80026e-14 4.15586e-14 -4.14059e-14 -9.83778e-18 -1.18401e-14 -3.71078e-18 1.02732e-16 -1.7604e-14 1.14548e-12 -4.66146e-14 1.13108e-12 -5.17309e-15 2.21495e-12 1.72166e-14 -1.05737e-12 -5.22526e-15 -1.25878e-17 -1.95887e-20 -3.33849e-23 5.70846e-21 -7.71501e-18 3.76173e-15 -1.03992e-12 -3.62313e-15 -3.34728e-15 1.03544e-12 6.8348e-15 -5.13134e-16 1.14633e-15 4.8461e-16 5.15102e-16 -1.77251e-18 -1.36723e-15 1.89022e-17 -4.85217e-13 -1.56269e-15 -4.75858e-16 1.49822e-19 9.15094e-16 -4.79465e-13 -9.15768e-16 -7.4146e-16 -2.50613e-19 -2.93523e-16 4.42863e-19 5.09217e-16 -3.46143e-13 -5.12462e-16 -8.73964e-16 -4.35084e-16 3.444e-13 7.65262e-16 -9.35638e-16 4.89858e-13 4.78769e-16 3.42749e-13 3.6389e-16 4.29135e-19 -3.13323e-16 3.42809e-13 -1.04493e-16 2.39953e-18 3.93183e-16 -1.81951e-18 6.1771e-17 -1.9508e-13 -8.50502e-18 -4.9177e-19 -3.59893e-22 2.80559e-22 -4.24644e-19 -1.1137e-16 3.10275e-20 -2.06761e-16 1.91913e-13 1.01877e-13 8.59623e-17 -2.34682e-16 1.72034e-13 -5.29187e-17 2.45249e-13 9.23761e-17 5.12205e-14 -6.46175e-17 9.62286e-14 4.1049e-17 2.07862e-19 2.69642e-17 -4.14578e-19 2.11722e-17 -7.53566e-14 -6.85737e-18 -1.99694e-19 -7.18333e-23 2.94605e-23 -9.34945e-20 -6.78101e-18 1.47183e-19 -1.61947e-17 6.52432e-14 -3.72518e-14 -6.91651e-18 -2.23662e-18 5.78093e-20 -2.85793e-19 2.24042e-20 -2.997e-17 1.70025e-15 -1.01783e-14 2.30847e-12 -2.74338e-14 -2.26375e-16 1.08555e-14 -1.05734e-12 -8.10851e-15 -1.96424e-17 -1.46296e-20 4.77121e-23 -1.90934e-20 2.72789e-18 1.02113e-15 4.78748e-19 -2.04764e-15 -1.30283e-13 -4.59102e-16 4.49802e-15 -1.07217e-12 4.89859e-13 -1.07748e-12 4.87868e-13 -4.87182e-13 -2.50649e-15 4.8469e-13 1.07516e-12 1.18159e-15 4.4558e-13 4.87199e-13 1.03633e-15 9.01214e-19 -7.89609e-16 4.74035e-19 -7.90589e-20 -5.67328e-16 3.45764e-13 5.68379e-16 -1.04179e-19 -4.71262e-16 -4.70603e-16 3.46787e-13 6.80524e-16 -3.45941e-13 3.45681e-13 4.24893e-16 1.03884e-15 -4.58815e-13 3.43666e-13 3.63489e-16 -2.82294e-16 -4.40107e-16 4.89651e-13 4.46329e-16 -4.91023e-17 1.7352e-18 7.56767e-17 1.93951e-13 4.28159e-18 5.532e-19 3.16232e-23 6.82759e-25 -4.07768e-25 -2.793e-22 -3.11772e-20 4.74445e-19 5.32572e-17 1.4043e-16 -1.5374e-13 1.9136e-13 9.95833e-17 1.53599e-16 -2.44523e-13 -2.98453e-14 -1.39993e-17 -4.36574e-17 2.41538e-13 2.43085e-13 1.01487e-16 8.97107e-18 1.8837e-21 -2.67801e-17 9.52529e-14 1.72456e-17 1.6843e-19 1.68223e-23 2.18304e-25 -9.56575e-26 -1.48368e-23 -8.14559e-23 2.19116e-20 -5.24795e-19 1.95055e-17 -4.57631e-14 2.32008e-14 5.21521e-18 -7.46023e-19 -1.1258e-20 -3.07744e-24 -1.08931e-14 1.1423e-12 1.15287e-12 1.14827e-12 6.75701e-15 1.96729e-17 2.02874e-17 -2.38021e-15 4.47594e-16 5.97367e-16 -4.62211e-18 -1.56474e-20 -8.60142e-18 4.19243e-15 -1.07605e-12 -5.33133e-15 -1.17961e-15 -1.4974e-15 -3.45479e-15 1.0731e-12 1.0392e-12 4.83511e-13 1.07639e-12 -1.07198e-12 -3.99931e-15 -4.44551e-18 9.73119e-16 2.66544e-15 -4.84162e-13 -4.76925e-13 -4.51505e-13 -9.61881e-16 -4.65203e-16 4.06022e-19 5.04378e-21 -7.31667e-22 6.59674e-19 5.26083e-16 -5.13047e-19 4.02668e-19 -8.02495e-19 6.67946e-16 -4.91651e-13 3.08108e-13 -2.00725e-17 4.16759e-16 -1.62975e-18 -2.36751e-16 -1.015e-15 4.9217e-13 4.22371e-17 4.89426e-13 4.80348e-16 1.84315e-16 -8.14639e-17 9.7308e-14 4.63099e-16 -4.88416e-13 -2.34318e-16 -6.10383e-19 2.05169e-20 1.91017e-20 -2.15621e-22 -3.28275e-22 -2.59581e-20 -1.63078e-20 1.05096e-16 -1.91257e-13 1.53893e-13 1.90618e-13 1.97722e-16 -8.08028e-17 1.71966e-13 2.42087e-13 -5.15925e-14 7.68925e-17 -2.41233e-13 -3.06891e-17 7.19468e-17 3.5514e-17 -9.62749e-14 -4.61236e-18 -9.4871e-14 -1.09551e-17 -2.175e-19 -8.08021e-22 1.73268e-21 -4.73156e-24 4.31016e-25 4.72209e-26 -4.64214e-22 3.10967e-18 -1.05701e-14 -3.49516e-18 -1.54897e-17 4.12124e-14 -1.89894e-14 -5.4941e-15 -1.71478e-18 -2.61669e-22 -4.7056e-18 1.42706e-15 2.28846e-15 3.8881e-14 2.23728e-16 -1.50253e-17 5.83457e-15 -1.14175e-12 -1.05856e-12 -1.06731e-12 -5.05033e-15 -1.16747e-17 -2.31078e-20 1.19993e-17 -6.79363e-15 1.07245e-12 1.07688e-12 1.08038e-12 2.82946e-15 -9.66184e-14 1.37411e-13 2.92593e-15 -4.85945e-13 -3.76033e-15 -3.92459e-18 1.45745e-18 -1.15386e-15 4.84134e-13 1.03821e-12 -6.2396e-13 4.86352e-13 1.43673e-16 4.51676e-13 8.93013e-16 8.64209e-19 -8.73345e-19 -3.40518e-16 1.30418e-18 -2.41523e-18 -8.47461e-16 1.55407e-18 -2.9769e-16 -6.58673e-16 3.56868e-17 -9.71064e-19 -3.71247e-16 -3.86008e-16 3.43261e-13 6.39494e-17 3.12005e-13 -1.48385e-16 4.9382e-13 4.1184e-17 4.89241e-13 4.47256e-16 3.28602e-16 4.63744e-17 -6.28597e-16 1.26313e-18 -2.04684e-16 -8.28556e-17 -7.95516e-17 5.30358e-19 9.06432e-19 1.2e-16 -6.5527e-17 -6.17953e-17 -1.09854e-16 -9.91812e-18 2.08016e-17 -4.79746e-17 5.76339e-17 -1.20958e-13 -3.02442e-14 -5.03084e-14 8.43901e-17 -2.62496e-13 9.49226e-14 9.6519e-14 4.01013e-17 -2.09853e-17 -9.11053e-18 -3.40483e-17 4.3369e-19 6.59662e-20 2.20869e-18 -3.80307e-18 3.85599e-19 1.32164e-22 3.08665e-25 -1.63293e-21 1.09067e-17 -3.75707e-14 -1.19735e-17 8.59454e-20 2.76069e-18 -1.07807e-18 -2.05975e-19 2.30902e-18 3.50802e-20 1.20034e-19 -2.06793e-17 1.19567e-15 1.04569e-16 2.6431e-19 7.2727e-21 6.26279e-18 -3.02387e-15 -2.81458e-15 -2.8556e-15 -8.49509e-16 4.51243e-18 2.62895e-20 7.11108e-19 -7.32055e-18 2.78923e-15 2.7604e-15 -7.51046e-16 1.03987e-12 1.89821e-15 3.29029e-16 -6.14501e-16 -1.11588e-15 -3.13635e-18 7.8045e-21 -8.56825e-21 5.95111e-19 1.53125e-15 2.06165e-15 -1.75273e-15 9.29457e-16 -9.39129e-16 4.78306e-13 9.38478e-16 1.42608e-18 -5.90941e-16 3.489e-13 5.92892e-16 -1.40844e-15 9.32312e-13 9.26463e-16 3.45841e-13 -1.05986e-16 4.5616e-13 8.15055e-18 4.88988e-13 2.04273e-16 3.44035e-13 2.5324e-17 3.49076e-13 -1.08551e-16 4.94291e-13 4.24427e-17 4.9168e-13 8.19198e-16 -4.52869e-13 -9.72736e-14 4.49911e-13 2.84879e-17 4.52355e-13 1.946e-13 1.9529e-13 1.33511e-16 2.04288e-16 -3.36541e-13 1.89438e-13 1.93374e-13 -6.41561e-17 3.32161e-13 2.96913e-13 1.92216e-13 2.35982e-16 -2.96432e-13 -3.06549e-14 1.71571e-13 -2.26983e-17 2.43921e-13 2.42407e-13 9.49838e-14 7.4651e-17 -9.62376e-14 9.53911e-14 9.36884e-14 3.38123e-17 3.63468e-15 -7.11877e-14 1.64428e-13 5.72877e-17 9.81102e-21 3.3098e-23 -1.0692e-19 1.87336e-18 1.56969e-19 -3.91659e-18 2.27159e-18 4.19348e-18 4.89617e-18 -8.45867e-18 1.63886e-14 4.86583e-18 2.12445e-17 -8.01147e-15 1.15551e-12 7.24529e-15 2.20524e-17 -1.81409e-21 7.42632e-18 4.14875e-16 -6.46677e-16 -4.87649e-15 1.07681e-12 3.90963e-15 1.13215e-17 -1.1779e-15 2.70374e-18 3.69932e-18 1.46863e-18 -1.31107e-15 -8.03967e-16 1.07233e-12 3.38213e-15 4.92433e-13 1.45717e-15 2.10864e-18 -3.38846e-21 -8.13181e-19 1.63194e-15 -4.50033e-13 -1.50957e-15 4.51607e-13 9.94e-16 3.06176e-18 1.6108e-15 -2.16887e-18 -8.2812e-21 5.11117e-19 5.83554e-16 -5.5043e-19 1.66487e-18 1.42877e-15 -1.0654e-18 4.9786e-16 -8.30987e-16 1.05058e-15 5.8556e-16 -4.91326e-13 -1.13988e-15 4.94369e-13 4.04473e-17 4.95504e-13 1.87813e-16 3.45295e-13 4.17265e-16 -9.34713e-14 -3.81406e-16 -7.02374e-16 -3.53276e-16 4.77493e-16 -4.62677e-19 3.67558e-16 1.51557e-16 1.46845e-16 -5.08567e-19 -8.80215e-19 -2.28651e-16 1.24451e-16 1.20019e-16 1.28662e-18 2.98754e-16 3.81683e-16 -3.29914e-13 -8.24537e-17 -1.90149e-13 -5.04391e-14 -4.92131e-14 -1.26096e-16 2.5953e-13 9.71167e-14 3.11758e-13 1.14641e-16 -5.12366e-17 2.13572e-17 3.5772e-17 -4.483e-19 -5.27857e-17 1.64665e-13 9.35627e-14 3.14876e-17 5.27418e-21 2.46049e-20 -1.37245e-17 4.66168e-14 7.34799e-14 -5.60307e-14 2.81872e-14 4.17437e-14 4.09035e-14 -3.26263e-14 -1.39511e-14 -4.40407e-18 -3.7335e-15 -3.09363e-17 2.78935e-15 7.17928e-16 1.45213e-17 -1.46673e-17 5.50729e-15 -1.08595e-12 1.14134e-12 4.84234e-15 -1.62067e-15 1.06413e-12 3.11153e-16 1.07669e-12 4.35405e-15 1.51655e-17 -3.60235e-15 1.03931e-12 3.60037e-15 4.63425e-15 -1.06849e-12 -1.0358e-12 -3.08175e-15 -4.48269e-18 -4.07787e-19 1.74933e-15 -4.49784e-13 -4.14915e-16 -4.50641e-13 -1.06518e-16 5.39785e-16 1.24191e-15 -6.26254e-13 -1.12614e-15 -1.79612e-18 2.22892e-21 4.92759e-19 -1.78027e-21 4.48212e-21 1.1026e-18 2.04259e-18 -9.2295e-16 9.30169e-13 -4.91189e-13 -1.93163e-15 1.07671e-12 1.29957e-15 2.22033e-16 -5.07073e-16 4.92952e-13 9.82068e-16 -4.91752e-13 -8.03005e-16 -7.34868e-16 4.91606e-13 4.89647e-13 4.92651e-13 -1.59402e-13 -1.24646e-16 2.43369e-20 5.81544e-20 5.35422e-20 -4.29177e-22 -6.73394e-22 -7.3401e-20 -5.28754e-19 -6.87501e-17 1.75554e-16 -3.33895e-13 -1.91298e-13 3.31917e-13 1.69854e-16 -1.20056e-16 -4.86267e-14 2.44629e-13 2.07424e-16 -2.40282e-13 2.59796e-13 1.75695e-16 9.49847e-14 1.65789e-13 9.49139e-14 -9.54627e-14 -3.47644e-17 3.95944e-19 4.07641e-17 2.06634e-17 -2.25602e-19 1.1639e-19 2.19942e-18 -9.8855e-15 3.53809e-18 8.7487e-18 -9.23765e-18 2.54825e-18 2.8997e-18 1.98065e-18 -3.06637e-18 -1.91028e-18 -1.23661e-15 4.70921e-19 2.23784e-17 -6.79186e-15 1.14375e-12 6.8803e-15 2.00018e-17 -1.4678e-18 -3.50131e-15 -1.76757e-15 1.0623e-12 3.89289e-15 3.0215e-15 5.84781e-19 3.01404e-15 4.32839e-18 6.52913e-18 -3.59725e-15 1.04304e-12 2.93883e-16 1.03134e-12 3.7802e-15 -1.07874e-12 -3.19296e-15 -7.43434e-18 1.24582e-15 -4.8886e-13 -1.0931e-15 -4.89765e-13 4.77419e-13 2.79546e-15 -4.41975e-13 -5.50423e-16 -4.83025e-13 -1.00607e-13 3.85118e-16 -1.02157e-18 -5.77093e-21 -7.75687e-24 -1.58518e-21 -1.909e-18 1.2884e-16 -3.43445e-13 8.80203e-16 -7.003e-16 -1.37863e-16 4.90253e-13 4.24235e-17 4.90558e-13 3.96646e-17 4.92257e-13 5.07704e-16 -9.94833e-16 4.90437e-13 3.45011e-13 1.02318e-15 4.72488e-16 1.71468e-16 -1.45334e-16 -2.5177e-17 2.52773e-16 -1.44694e-18 -1.40678e-21 1.31203e-24 -9.27462e-23 6.11483e-19 -3.26286e-17 1.93216e-13 1.09258e-16 -2.02024e-16 -1.33706e-16 1.53036e-13 -9.36378e-18 1.90298e-13 8.67586e-17 -4.84826e-14 -2.22516e-17 -1.00465e-16 8.56725e-17 9.55512e-14 1.07026e-16 -9.29531e-14 9.57192e-14 9.49876e-14 2.89684e-17 1.91429e-19 3.28798e-21 1.32842e-21 -1.444e-19 1.36046e-17 -4.75876e-14 -1.66687e-17 1.93271e-20 1.30047e-17 -4.75784e-14 -1.5945e-17 -1.23983e-18 -4.80568e-19 -1.41197e-14 -1.3945e-14 -4.08589e-18 3.73272e-15 9.02201e-16 3.02799e-19 2.77975e-15 2.81372e-16 9.87094e-17 -5.46933e-15 1.07547e-12 4.75734e-15 -2.39163e-15 1.19452e-12 5.48787e-15 1.21161e-17 4.26791e-18 -5.38239e-21 -6.99912e-21 -2.92593e-18 2.84866e-15 -3.43731e-15 1.07882e-12 3.44015e-15 -2.72988e-15 8.22108e-19 1.54135e-15 -2.09067e-18 -1.13688e-15 -1.80913e-18 -1.08436e-15 2.99834e-15 -5.89868e-13 -4.85748e-13 4.44801e-13 -3.4823e-16 4.86895e-13 -4.84106e-13 -1.6178e-15 9.84036e-19 -1.86226e-21 3.08031e-18 4.97943e-16 3.46997e-13 -2.80838e-17 -3.43328e-19 1.33621e-16 -4.90793e-13 -3.50161e-16 3.79999e-16 -3.46673e-13 -8.83661e-16 4.90496e-13 5.04824e-16 1.13979e-18 8.39903e-16 -3.41457e-13 -3.45904e-13 -4.67445e-16 4.90729e-13 3.56274e-16 4.96735e-14 -4.86779e-13 -4.49702e-16 4.7973e-19 7.78461e-22 -6.14617e-19 2.71006e-17 -1.90798e-13 1.69231e-17 6.77127e-17 1.11533e-17 -1.55435e-13 -9.52422e-17 8.58002e-17 -1.90283e-13 -1.99922e-16 2.44188e-13 1.60112e-16 3.62151e-17 -9.56939e-14 -1.77641e-17 6.77067e-17 -1.91634e-13 -4.03926e-17 5.92336e-18 7.13154e-14 3.15494e-17 -2.43983e-19 3.59971e-21 -1.64331e-17 5.58602e-14 9.44885e-18 1.21152e-19 7.36457e-23 -1.35571e-19 6.42741e-19 -1.89857e-14 -1.30949e-14 -3.65904e-14 -3.26582e-14 -1.13804e-17 3.11547e-21 6.44207e-18 1.4372e-18 1.96823e-17 -6.55531e-15 1.15155e-12 -1.06741e-12 -5.92005e-15 -2.19188e-15 1.07614e-12 5.2833e-15 3.55217e-15 6.10178e-18 -8.73544e-21 3.95529e-21 -2.06475e-23 6.68989e-21 1.23267e-18 3.90742e-18 -2.27902e-18 2.89829e-15 2.05259e-18 -7.77302e-18 2.94285e-15 -1.07277e-12 -2.94327e-15 -7.1318e-16 6.99189e-16 4.67893e-16 -4.87834e-13 4.82043e-13 -4.88948e-13 4.51662e-13 -4.81277e-13 -8.52086e-16 1.38761e-13 6.18197e-13 1.08652e-15 -1.73611e-19 1.39067e-15 -9.30864e-13 -8.31515e-16 1.8135e-18 4.66823e-16 4.93049e-13 -1.39499e-16 4.54896e-13 -3.31279e-16 1.07822e-12 9.85955e-16 4.92671e-13 5.031e-16 4.5309e-19 -8.50501e-17 9.53751e-14 4.56046e-13 -3.42545e-13 4.8923e-13 3.87348e-16 1.57611e-16 -1.60306e-13 1.94752e-13 1.34412e-16 8.00173e-20 -1.12703e-16 1.92669e-13 -1.82558e-17 1.0201e-16 -1.91141e-13 1.92043e-13 -3.87837e-17 3.30361e-13 7.37512e-17 2.93379e-13 3.06391e-14 -4.89053e-14 -2.41653e-13 -1.02795e-16 -7.56847e-17 9.59862e-14 2.25071e-17 -6.77607e-17 5.20517e-19 1.86239e-19 5.0232e-17 -9.30017e-14 -3.19826e-17 -4.01071e-18 1.66305e-17 -5.57309e-14 -1.78437e-17 -2.76625e-21 -1.2003e-19 2.62614e-19 8.1091e-15 5.37174e-19 5.46195e-18 9.73721e-18 -3.25886e-14 -1.17237e-14 -4.66277e-18 -2.64599e-20 1.64241e-18 -2.75998e-18 -5.3582e-18 3.03405e-15 -2.94757e-15 -6.05711e-18 -1.82583e-18 3.16579e-15 5.99541e-18 5.18746e-18 -6.59262e-21 -3.93173e-23 -3.85263e-23 1.82985e-20 -2.14586e-18 -1.55308e-15 2.08562e-18 1.44617e-18 3.93524e-18 -5.29998e-21 -1.91456e-18 1.33218e-15 -4.89112e-13 -2.57128e-15 4.89971e-13 -4.88602e-13 4.49665e-13 -4.53247e-13 4.87285e-13 -4.50786e-13 -4.79046e-13 -6.22423e-13 4.77969e-13 9.89704e-16 1.18716e-15 -1.38524e-18 7.27587e-21 -1.26003e-18 -1.57959e-15 -1.89234e-20 8.98677e-16 -1.07708e-12 -5.79663e-16 -4.93673e-13 4.35454e-16 -3.46302e-13 1.41478e-15 -3.47111e-13 2.50859e-16 -3.1814e-18 -3.83975e-16 1.68909e-19 4.22388e-17 -3.43744e-13 -3.19565e-16 4.8701e-16 1.2054e-16 -1.15653e-16 -1.42925e-16 1.6933e-16 -6.05506e-19 -8.31287e-22 5.42507e-19 1.43563e-16 -1.24809e-18 2.14437e-17 -1.91232e-13 1.13823e-16 -3.32197e-13 3.78956e-17 -1.39856e-13 1.0641e-16 1.37625e-17 -1.83436e-16 2.43961e-13 1.24975e-16 1.85088e-17 -1.30289e-17 9.5726e-14 5.04929e-17 -2.70175e-19 3.96091e-21 -2.41375e-17 7.63063e-14 -2.62709e-18 9.55993e-14 1.4925e-17 5.58671e-14 1.76781e-17 -2.16016e-19 -9.76176e-18 4.71585e-14 1.47859e-17 -1.67753e-17 6.52259e-14 2.77874e-14 1.57097e-17 -1.84115e-14 -8.10334e-15 -2.50174e-17 1.73704e-15 -1.2607e-14 -7.36032e-17 1.4787e-16 7.68592e-18 7.683e-18 7.5613e-16 -2.14358e-18 -7.54418e-19 -8.32758e-19 7.3965e-21 1.14761e-23 -9.952e-21 6.84121e-18 -3.71647e-15 1.04063e-12 3.71865e-15 -1.7029e-15 2.07974e-18 1.58878e-20 3.71859e-21 3.93888e-19 -1.25815e-15 -4.15447e-19 1.20514e-15 -1.17895e-15 1.06198e-15 -3.20762e-16 1.39684e-15 -4.86551e-13 4.85558e-13 -4.85858e-13 4.88275e-13 1.3874e-13 3.84557e-16 4.34639e-16 -3.88799e-18 -1.12224e-15 -5.736e-16 -6.74917e-16 4.92527e-13 -1.2827e-15 4.89888e-13 -1.15784e-16 3.03194e-18 -1.85445e-17 -5.2386e-19 -4.61063e-16 1.60913e-18 -4.62074e-16 4.92018e-13 4.37409e-17 4.90343e-13 9.43587e-17 -4.89659e-13 -2.51215e-16 -1.98569e-13 1.9288e-13 2.54541e-16 -1.08868e-16 8.54737e-17 1.02724e-19 9.21134e-17 -2.0939e-16 -1.02301e-16 1.9262e-13 2.74959e-18 1.90093e-13 -1.27293e-16 1.53666e-13 1.95439e-17 -4.85306e-14 -6.19592e-17 2.44189e-13 2.02038e-16 -9.62935e-14 -9.58814e-14 9.61104e-14 9.14846e-17 -9.5734e-14 -2.25835e-17 -2.90959e-19 2.9591e-17 -9.41467e-14 -2.54669e-17 2.31215e-17 1.59825e-17 -5.64686e-14 -1.77176e-17 -2.23809e-17 8.23679e-14 3.04027e-17 -4.51287e-20 -3.49746e-18 4.96022e-15 -5.33671e-18 3.25589e-14 8.35156e-18 6.06545e-20 -5.25212e-15 1.17557e-12 1.14025e-12 8.10437e-16 1.10532e-12 6.34363e-15 6.34664e-15 -1.14995e-12 -5.87185e-15 1.09388e-15 1.24299e-15 -3.7474e-18 -3.10815e-20 2.08753e-19 1.69572e-16 1.67569e-15 1.44566e-15 -3.55077e-15 1.07466e-12 3.55915e-15 5.7492e-18 6.00813e-21 -3.67894e-21 -1.64212e-18 2.30112e-21 2.64857e-18 7.59651e-16 4.01445e-16 -4.89773e-13 4.84411e-13 -9.28171e-16 4.4611e-13 -4.48864e-13 -4.47698e-13 -3.82209e-16 -1.02011e-13 -3.44826e-13 -2.00729e-15 9.31203e-13 4.93422e-13 7.30272e-16 1.28099e-15 -3.47523e-13 -2.3476e-17 -2.61032e-18 2.00016e-16 -4.92376e-13 -8.83029e-16 4.50233e-16 -1.45755e-18 -4.54585e-16 4.92942e-13 4.94042e-16 -4.89721e-13 4.9184e-13 -1.09585e-16 1.81138e-18 6.59478e-17 -1.92606e-13 -1.95755e-13 1.94137e-13 -1.5814e-13 1.18769e-17 -1.92459e-13 4.49445e-13 2.66412e-16 2.93641e-16 -2.98954e-13 1.12046e-16 -1.5398e-13 2.30466e-13 1.11942e-16 3.49208e-17 -2.24038e-13 -5.8266e-17 2.42095e-13 -3.38317e-13 -1.79225e-16 6.803e-18 9.56835e-14 4.68114e-17 -9.54189e-14 -2.76607e-17 -4.27326e-19 1.36232e-18 -9.35458e-14 -3.09755e-17 -1.10567e-17 3.9074e-14 -9.48999e-14 -6.27958e-18 -8.24179e-14 -2.46831e-17 7.69518e-18 -2.79184e-14 4.6804e-14 1.32232e-17 -1.41799e-18 -2.58482e-15 -7.20967e-19 1.16641e-12 1.14594e-12 -2.28532e-15 -5.8706e-17 2.99973e-15 5.29437e-15 -1.05679e-12 -9.12161e-15 5.92503e-15 -1.05486e-12 -1.06772e-12 -4.81957e-15 -1.14205e-17 3.97774e-16 -1.02161e-13 -1.08101e-12 1.03459e-12 1.70803e-16 1.07496e-12 3.53709e-15 5.67657e-18 5.88702e-21 -3.59801e-24 -9.08718e-23 -1.51016e-18 1.18156e-15 -4.87522e-13 4.49309e-13 -3.29518e-16 4.48681e-13 7.15191e-17 4.46701e-13 -4.81698e-13 -1.87235e-15 6.27261e-16 -8.63711e-16 -6.72033e-16 2.76361e-18 1.72385e-15 8.86145e-16 1.30132e-15 -3.5286e-18 -9.69022e-16 3.1021e-13 -1.35785e-17 3.48876e-13 -3.28999e-16 3.44774e-13 -4.89649e-13 -5.13075e-16 4.5788e-16 -4.92223e-13 4.89487e-13 -1.27738e-16 5.56869e-16 -3.59876e-18 -2.02853e-16 -1.93568e-13 1.95792e-13 -1.951e-13 -7.40213e-17 -1.40038e-16 1.99496e-16 -3.34678e-13 1.47947e-16 -1.61007e-16 -1.54218e-16 -1.95586e-16 -1.9053e-13 -1.9655e-16 1.43429e-16 -9.66255e-17 1.03757e-13 -6.32271e-17 -4.9186e-14 7.44517e-17 -1.1356e-13 -2.42744e-17 -2.06737e-20 7.06969e-17 -9.52868e-14 -5.22544e-17 -5.19222e-14 -2.81666e-17 5.00325e-17 -1.65103e-13 -5.39358e-17 1.54946e-17 -5.54945e-14 -3.52439e-17 7.08947e-18 -2.62477e-14 -5.25885e-18 8.21479e-15 -8.34607e-20 3.53712e-18 1.86365e-18 -2.34512e-14 -6.78304e-18 -1.31616e-18 2.06544e-15 4.0168e-15 2.69435e-16 -4.81112e-14 -5.18886e-14 1.15539e-12 -1.12632e-12 1.13159e-16 -1.08064e-12 -2.58456e-15 -1.08593e-12 -4.8787e-15 -9.81462e-18 -4.27144e-16 1.11665e-13 -4.96589e-15 1.0796e-12 2.03987e-15 5.09306e-15 3.16308e-19 -2.61003e-20 -5.50135e-23 -6.00372e-26 -6.9228e-24 2.75682e-21 1.23737e-18 -2.28989e-15 4.51545e-13 -4.78893e-13 -1.01091e-17 -9.73955e-16 4.87119e-13 -9.50223e-17 8.00114e-16 -4.50682e-13 4.7987e-13 8.23247e-16 6.99961e-19 4.73714e-19 1.52613e-15 -1.0783e-12 -1.5278e-15 -2.37985e-18 -5.25769e-17 1.61919e-18 9.28372e-16 -3.51022e-13 1.04358e-16 -6.87891e-16 1.50677e-18 -1.53671e-18 -6.23645e-16 6.05868e-16 3.93952e-16 -1.29957e-18 -3.75365e-16 4.92709e-13 1.81207e-16 1.96558e-16 -3.17509e-16 1.95268e-13 1.3016e-16 -1.08949e-16 -1.78001e-16 -1.84969e-16 3.35042e-13 3.46282e-13 1.91587e-13 -2.99196e-17 -4.27441e-20 -1.3767e-16 1.52737e-13 1.77939e-16 3.01495e-14 -1.87127e-16 2.5968e-13 1.45973e-16 -9.59623e-14 -5.70158e-17 1.76399e-17 -5.20384e-14 -1.86943e-17 -4.67479e-17 9.50856e-14 7.50429e-17 -1.47505e-13 -4.7228e-17 -1.55272e-17 5.58476e-14 4.72025e-18 4.67063e-14 1.3028e-13 8.21686e-14 2.43507e-17 -1.25285e-19 1.14086e-17 -3.22108e-14 -9.54792e-18 -2.45877e-15 -8.08049e-15 -7.35459e-15 1.15119e-12 8.55217e-16 1.11658e-12 1.12577e-12 9.83633e-15 1.99994e-15 -1.07639e-12 -3.95522e-15 -1.06286e-12 1.0729e-12 4.85563e-15 1.06964e-17 -8.11401e-18 4.32742e-15 -1.07865e-12 -4.15367e-15 1.04391e-12 -1.07262e-12 -3.53187e-15 -5.66519e-18 -5.31519e-21 -8.62291e-24 -1.36852e-28 1.05463e-23 -6.79046e-21 -2.70195e-18 2.22772e-15 -4.86071e-13 -1.08076e-15 -9.60925e-16 4.8205e-13 9.58985e-16 -8.54869e-16 4.80205e-13 1.85649e-15 -2.49448e-19 -2.69653e-21 6.98852e-21 -2.73615e-18 -1.959e-15 3.24635e-18 -6.1735e-16 4.93282e-13 6.19648e-16 -5.47178e-16 4.90881e-13 5.51547e-16 -1.80992e-19 2.75583e-21 -2.38538e-21 -5.80151e-19 4.16808e-16 -4.89619e-13 -4.21494e-16 7.28699e-19 3.91272e-16 -1.01802e-18 8.49284e-19 1.2806e-16 1.847e-16 -1.19e-16 1.95634e-13 -1.93306e-13 1.48452e-19 1.5794e-13 4.98642e-16 -2.97069e-13 5.00553e-17 4.53082e-17 1.90361e-13 3.00606e-16 -1.86559e-13 -1.01431e-16 2.62185e-13 3.07105e-16 -2.42369e-13 -1.52589e-16 9.59247e-14 3.5231e-17 -9.39199e-14 -1.91438e-17 1.53702e-17 -5.22133e-14 1.61967e-17 -7.53372e-14 -2.35101e-17 1.5179e-17 -5.5195e-14 -8.70612e-18 -2.58689e-14 1.29028e-17 -6.00048e-16 -3.83229e-18 -8.50659e-18 3.69186e-14 8.5176e-18 -4.99716e-15 -1.37285e-18 3.91271e-20 8.72199e-19 2.50979e-15 -6.63274e-15 1.12619e-12 9.89851e-15 3.95917e-17 7.29445e-16 -2.48374e-15 1.11546e-15 -4.79421e-15 3.55203e-15 5.68294e-18 -2.09024e-20 7.72054e-18 -3.96049e-15 1.07344e-12 3.72068e-15 3.28138e-15 -5.31396e-15 -3.02703e-19 2.31771e-20 -8.36654e-19 3.39845e-21 6.77937e-24 -2.20537e-26 -1.79691e-23 6.58643e-21 1.14223e-18 -1.22674e-15 1.35306e-18 -8.93307e-16 4.506e-13 8.92917e-16 1.74779e-18 1.04604e-15 1.01271e-19 -7.20756e-21 -3.58531e-24 -2.60101e-24 -9.93804e-21 -2.1133e-18 7.32318e-21 1.41214e-18 8.38492e-16 -1.45545e-18 1.49975e-18 7.59603e-16 -1.53584e-18 -2.38778e-21 7.45653e-25 -2.48712e-24 1.48549e-21 -1.62946e-18 -6.03727e-16 1.70977e-18 -1.5e-16 1.98949e-13 1.51526e-16 -3.50039e-18 -1.95172e-13 -1.35301e-16 -1.18006e-16 6.37149e-17 1.9206e-13 -3.85396e-13 -1.93223e-13 -3.52716e-16 2.98053e-13 -4.8766e-13 -3.32311e-13 -6.84249e-17 -1.03312e-13 -1.21418e-13 -2.23987e-13 2.92936e-17 9.47604e-14 -1.91996e-13 -9.47585e-14 -7.10208e-17 1.66319e-13 -1.89508e-13 -9.4331e-14 -1.06716e-16 1.64577e-13 -1.12851e-13 -2.00971e-14 -1.35544e-17 -1.01569e-17 3.85614e-14 -9.42208e-14 -2.63922e-14 -1.03837e-17 9.6968e-15 -5.57255e-14 8.10326e-15 9.25486e-18 -8.80176e-15 1.39854e-14 3.60056e-18 3.42979e-22 1.71984e-20 2.42548e-18 -3.43553e-18 3.02772e-15 -7.04853e-18 5.91031e-15 -1.12466e-12 -1.08241e-12 -1.07266e-12 1.07273e-12 3.50061e-15 1.65621e-17 7.27968e-20 -1.59536e-18 -1.44485e-15 -1.26178e-13 1.34531e-13 -3.04647e-15 1.07647e-12 3.51816e-15 6.56088e-18 8.59161e-16 -5.46347e-20 -1.01964e-20 -1.76468e-23 2.17106e-26 1.83491e-24 -1.24464e-20 -3.1683e-18 1.7907e-20 -2.12722e-18 -4.60693e-16 2.15594e-18 2.47476e-21 -5.62764e-20 3.28698e-21 -9.06563e-24 1.79706e-24 -2.22998e-21 1.22782e-18 4.62833e-16 -1.25354e-18 1.45151e-21 7.16919e-19 -5.82789e-21 1.83729e-18 5.50448e-16 -1.866e-18 -2.23077e-21 -2.62157e-24 6.46753e-27 -2.65697e-24 -2.44472e-21 -3.70141e-19 2.40132e-21 -5.74682e-20 7.45951e-17 2.31869e-16 1.94098e-13 -1.97619e-13 -2.50584e-16 1.93653e-13 1.22281e-16 2.73371e-16 -1.93531e-13 -5.63548e-16 1.92504e-13 4.87538e-16 -3.3215e-13 -4.00888e-16 1.90189e-13 -4.55848e-17 2.97505e-14 -1.49555e-17 -6.67781e-14 2.9079e-17 -9.60523e-14 -9.1201e-17 9.46289e-14 1.16602e-16 -9.28637e-14 -1.19022e-16 1.65615e-13 1.16192e-16 -2.08396e-14 -4.19749e-17 1.11091e-13 3.33111e-17 2.76294e-17 -7.4445e-14 -1.91194e-17 -2.64958e-14 8.27044e-19 -2.79537e-14 -1.42689e-17 2.32752e-14 1.62663e-17 -3.25374e-14 -1.0111e-17 -1.3656e-18 3.07022e-23 1.35156e-21 1.5025e-20 3.92592e-18 -1.77573e-20 2.03116e-17 -9.03004e-15 1.07692e-12 6.96944e-15 -1.08236e-12 1.07187e-12 3.10781e-15 1.93502e-17 -5.98997e-15 1.07796e-12 5.48171e-15 -1.07594e-12 -2.92226e-16 -1.07218e-12 -3.51888e-15 1.31796e-15 -4.56592e-13 -2.26472e-15 -1.71522e-18 9.53397e-21 2.38812e-23 -1.93643e-21 4.38202e-18 1.73669e-15 -8.42631e-19 -1.83878e-15 9.2961e-13 1.83796e-15 4.79077e-18 1.47613e-15 -3.11168e-18 -7.62436e-21 1.7631e-22 -3.52202e-19 4.81616e-16 -3.47168e-13 -4.82431e-16 -6.42888e-19 2.45056e-21 -3.11783e-19 5.40165e-16 -4.93322e-13 -5.43391e-16 -5.9877e-19 2.21964e-21 -2.44389e-24 9.71852e-23 -2.76525e-24 -1.64932e-22 5.74457e-20 -1.46622e-16 1.97141e-13 -4.89608e-13 -4.72477e-16 4.88516e-13 5.37977e-16 -3.37624e-13 -2.13457e-16 -8.65661e-17 1.56389e-13 3.83432e-13 1.92663e-13 1.00807e-16 -1.57758e-16 -1.90596e-13 -2.77757e-17 1.50992e-13 2.71519e-16 -2.25787e-13 -1.58824e-16 9.72081e-14 4.92265e-17 -9.47083e-14 -4.55216e-17 9.54436e-14 -4.28638e-18 6.85014e-18 -2.1073e-14 -3.35729e-17 9.36648e-14 6.42377e-17 -1.29947e-13 -3.86762e-17 -1.89768e-17 7.31263e-14 2.02074e-14 4.71767e-14 1.27935e-17 3.23428e-18 -2.79217e-14 -1.18982e-17 2.79543e-14 5.58578e-18 -1.16908e-14 -8.06191e-15 5.74113e-26 5.08593e-25 2.89512e-23 3.22257e-21 1.78e-22 -2.21622e-20 -1.09309e-17 3.57262e-15 -8.74983e-16 -9.46904e-14 -3.00603e-15 1.08168e-12 4.5614e-16 1.05916e-12 1.97799e-15 1.07846e-12 3.55603e-16 1.21917e-16 -9.48264e-14 -3.05917e-16 -4.08546e-15 1.06955e-12 4.93947e-13 2.32356e-15 6.82062e-19 8.31815e-21 -5.10664e-18 3.38733e-16 -9.69809e-13 -2.14652e-15 -3.78283e-18 6.8709e-16 -9.96355e-20 1.63443e-15 -9.29856e-13 -1.63373e-15 -1.4036e-18 -4.5306e-21 -7.80333e-20 -6.83261e-16 4.91926e-13 6.85662e-16 4.59573e-16 -1.32102e-18 2.18956e-19 -3.7952e-16 3.43729e-13 3.83779e-16 5.36368e-16 -1.94232e-18 -4.42991e-21 -2.64923e-19 2.15558e-21 -3.02458e-24 -2.17751e-21 2.59148e-18 7.68682e-16 -1.9814e-13 3.32598e-16 -4.86112e-13 -3.56954e-16 4.86738e-13 3.07046e-16 3.3907e-16 -1.89659e-13 1.33213e-16 1.55846e-13 -8.40021e-17 -1.52586e-16 3.31891e-13 1.60673e-16 2.07102e-16 -2.62603e-13 -1.45405e-16 -3.03856e-14 -3.56304e-18 -9.48717e-14 -9.06493e-17 9.36786e-14 7.57862e-17 3.77593e-21 -1.15389e-17 9.33322e-14 9.11353e-17 -1.63674e-13 -7.53349e-17 1.29447e-13 3.87579e-17 1.36575e-17 -3.8206e-14 -3.73496e-19 -2.66187e-14 -7.90482e-18 -6.53065e-18 2.7544e-14 7.31741e-18 6.61135e-18 -2.32953e-14 -8.64481e-18 2.56825e-20 2.86285e-28 -3.48972e-27 4.50764e-25 -2.02144e-22 6.65734e-20 -9.75492e-18 -9.17418e-16 -5.2033e-15 1.08116e-12 -1.41907e-15 1.08124e-12 8.6337e-15 1.6701e-17 -2.26536e-15 1.04453e-12 7.70488e-15 -4.66735e-17 9.83314e-14 -1.07907e-12 -4.97545e-15 4.89032e-13 8.81675e-15 -1.07128e-12 -4.91558e-13 -1.31268e-15 9.90048e-19 -2.23084e-15 9.70981e-13 -3.97415e-16 5.39562e-18 -1.82825e-15 9.29099e-13 1.82739e-15 1.26562e-18 -2.16631e-15 -5.5775e-16 1.22716e-18 1.78611e-18 7.42932e-16 -4.13165e-19 9.77467e-16 4.40275e-16 -3.45563e-13 -4.42173e-16 -5.89231e-19 3.09948e-18 1.15995e-15 4.91202e-16 -4.91083e-13 -4.98158e-16 1.73313e-18 4.98537e-16 -2.00151e-18 -1.92631e-21 -1.40249e-19 3.61921e-16 -4.92468e-13 5.41758e-13 -1.97952e-13 -4.08569e-16 -3.91597e-13 -1.5712e-13 1.19707e-16 -3.88895e-13 -2.99536e-13 -1.68304e-16 -3.5472e-17 3.32699e-13 1.44416e-16 1.03078e-13 9.12868e-17 7.83767e-17 -1.96048e-13 -2.62189e-13 -3.08564e-16 2.60891e-13 -1.9115e-13 -9.40764e-14 9.63684e-18 1.43558e-20 4.86227e-17 -9.50332e-14 1.1377e-13 -9.35799e-14 -5.22454e-17 -1.12187e-13 -5.62816e-14 7.16148e-18 -9.44129e-14 3.5859e-14 9.54034e-18 -1.91655e-19 -1.78287e-14 -5.56006e-18 -1.79615e-16 3.70812e-18 -6.95227e-18 3.24169e-14 -1.82318e-14 -4.4681e-18 -1.0228e-26 -3.65026e-24 5.34852e-23 -3.18722e-20 1.65627e-17 -6.01477e-15 1.1497e-12 4.88803e-15 -1.21077e-15 1.07626e-12 8.85107e-15 3.26036e-17 -4.20887e-15 1.06359e-12 7.91284e-15 2.5955e-15 -1.25703e-13 -1.07808e-12 1.06694e-12 8.8992e-15 -1.06903e-12 -4.91976e-13 -4.77687e-15 -1.49949e-15 9.19329e-19 -1.84626e-20 -1.36899e-18 2.73476e-15 -6.25908e-18 1.3107e-20 -2.04616e-18 3.55762e-16 -1.68558e-18 -1.62226e-15 -5.79419e-16 3.45003e-13 5.79387e-16 7.32021e-16 -4.9155e-13 -7.29798e-16 7.25789e-16 -7.07384e-16 -1.74512e-16 -4.66785e-16 4.52563e-16 5.32029e-16 -4.9258e-13 -5.38233e-16 -7.75463e-16 1.56794e-18 4.37314e-16 -4.94252e-13 -4.41671e-16 -1.92502e-19 1.50976e-21 -1.85223e-18 -5.93329e-16 3.02897e-16 4.88146e-13 3.38027e-16 -5.28669e-16 1.93759e-13 1.19871e-16 -2.62031e-16 -1.90404e-13 8.8842e-17 -7.13788e-20 2.87366e-16 -4.35109e-14 2.54424e-16 -1.03448e-13 -1.24749e-16 -5.23241e-17 -2.70028e-16 2.61504e-13 2.45619e-16 -9.5311e-14 -8.31127e-17 -4.81508e-17 -8.04659e-18 -9.52709e-14 -6.99432e-17 3.71547e-17 2.07899e-14 6.87872e-18 -5.01387e-17 5.57859e-14 1.63501e-17 2.65874e-19 -9.11719e-14 -2.59901e-17 1.41139e-18 2.0159e-18 -1.86905e-14 -1.52675e-17 4.12249e-14 1.14936e-17 -3.01771e-18 -2.18051e-18 -4.65762e-19 -1.2085e-22 -1.89847e-21 4.00682e-21 -6.37152e-19 -1.3244e-17 9.25736e-18 -1.51531e-15 1.07662e-12 5.43015e-15 3.85468e-15 1.28895e-17 -3.0055e-18 -2.04155e-15 3.83619e-15 3.83238e-15 -1.0459e-12 8.99866e-14 -1.04576e-12 1.07834e-12 -1.03366e-12 -7.82646e-15 -2.55464e-15 -9.65504e-16 -1.02597e-15 -1.00535e-15 3.75148e-18 1.89668e-15 3.99008e-18 1.83399e-15 1.28285e-18 -2.17494e-15 1.11206e-12 1.11522e-15 9.32896e-13 1.68894e-15 8.11366e-16 -8.649e-19 -1.37839e-18 -1.06563e-15 6.788e-16 -4.95458e-13 4.93404e-13 -3.48726e-13 3.46503e-13 -3.44697e-13 -4.08276e-16 -1.27702e-15 2.17685e-18 -4.0485e-16 1.66101e-18 -4.39427e-16 4.93961e-13 4.43891e-16 1.94559e-19 5.10035e-23 -2.24657e-21 -1.075e-18 -4.92229e-16 4.92582e-13 3.35098e-16 -1.16326e-16 1.94247e-13 1.19144e-16 -9.99116e-19 -5.58642e-19 -3.34677e-13 -1.78427e-16 -1.4273e-19 1.15139e-16 -3.32112e-13 -3.91859e-16 1.89585e-13 -1.89524e-13 3.11763e-14 8.62528e-17 1.12233e-13 -7.98686e-18 -6.19562e-17 1.89326e-13 1.64267e-13 1.4912e-17 2.7566e-19 -5.03178e-17 1.65914e-13 5.10618e-17 -1.47735e-17 5.63004e-14 1.62161e-17 -3.0444e-19 -3.99805e-17 8.2729e-14 9.33227e-14 2.4067e-17 1.81519e-18 -1.89851e-14 -2.86587e-18 9.36664e-15 -3.23782e-14 -1.16095e-14 -2.90715e-15 -1.69568e-19 1.58838e-18 9.64855e-19 -2.77549e-16 4.88837e-14 -3.98211e-16 1.09263e-17 3.77593e-15 5.02607e-18 6.85266e-18 9.546e-18 -4.41585e-15 1.07628e-12 4.43627e-15 1.97003e-17 -7.54669e-15 1.07343e-12 1.07628e-12 1.08787e-12 -4.87973e-13 4.86252e-13 4.52786e-13 4.52416e-13 4.86624e-13 4.84699e-13 3.45485e-15 -9.33647e-13 -1.66196e-16 -9.32594e-13 -3.8896e-15 -9.54219e-19 2.9416e-15 -3.48562e-13 1.68524e-15 -2.70313e-18 9.53183e-19 -3.69319e-21 -4.94067e-21 -1.16229e-18 -1.5356e-18 -1.03091e-15 3.81623e-16 4.93728e-13 1.28739e-15 3.02683e-17 -8.27682e-16 3.48197e-13 -5.82426e-16 3.46164e-13 3.46522e-16 2.05366e-18 7.32858e-16 -1.91051e-18 -1.96402e-21 -1.99112e-22 2.78864e-19 -8.82283e-17 1.96245e-13 7.10782e-16 -1.87484e-18 -9.36657e-17 1.60017e-13 9.76711e-17 2.55219e-16 -9.97947e-17 1.90807e-13 1.01371e-16 1.41298e-18 1.75352e-16 -3.3493e-16 1.89981e-13 1.48074e-16 -1.25271e-16 -2.19882e-17 1.13826e-13 7.18152e-17 2.4275e-17 -3.64648e-18 9.4345e-14 1.10177e-16 -2.67834e-19 1.32184e-17 1.95018e-14 6.71136e-17 -5.92433e-19 -1.43766e-17 5.55966e-14 1.59204e-17 2.06454e-18 -1.90388e-17 8.19237e-14 3.73054e-17 -1.53896e-19 -2.35796e-18 -3.12871e-18 4.67102e-15 3.05569e-18 1.11668e-18 -1.15978e-14 -2.6202e-18 -5.05008e-17 7.9841e-15 6.47496e-17 1.3451e-16 -5.42663e-14 1.07487e-12 5.8742e-15 2.69588e-17 1.53017e-15 -4.9778e-18 -5.39215e-20 -5.10676e-18 4.00547e-15 5.06702e-18 -2.65223e-19 -3.05417e-16 7.2328e-15 -1.06983e-12 -1.04085e-12 -4.96569e-13 1.07599e-12 -1.03306e-12 -1.49587e-15 1.56166e-15 1.52551e-15 -4.78656e-19 -2.82013e-15 1.87447e-18 -4.66092e-15 9.35558e-13 3.13558e-15 3.44018e-13 -2.43564e-16 4.34564e-18 -7.39782e-21 7.65351e-22 -5.0343e-24 -3.50885e-24 -4.35279e-21 1.97611e-18 7.7417e-16 4.37699e-16 -3.47124e-13 1.31629e-16 -4.93891e-13 3.47298e-13 -1.0792e-12 4.92643e-13 1.08338e-15 -1.07773e-18 1.9253e-21 5.42626e-19 -3.35025e-21 7.58298e-24 -1.49476e-20 3.89954e-17 -5.30537e-14 2.0042e-16 -4.78751e-19 -3.94093e-20 1.145e-16 -1.94078e-13 9.41313e-17 -3.87434e-13 -1.37704e-16 -1.55973e-13 -1.92986e-16 1.56455e-16 -3.43916e-13 -1.61455e-16 7.69704e-17 1.5316e-13 1.74378e-16 -1.34156e-17 -1.11731e-17 1.13606e-13 -7.69319e-14 -9.4296e-14 1.88896e-13 8.85579e-17 4.7977e-17 -9.27237e-14 -2.1486e-17 -6.62318e-20 1.53974e-21 -1.37903e-17 5.44864e-14 2.4383e-17 -3.81049e-14 -7.56035e-18 -1.05317e-14 -2.9205e-18 9.98667e-18 -4.66256e-14 -1.12324e-17 -2.42615e-18 1.37971e-14 -9.03701e-19 -2.00413e-18 -9.64143e-22 -2.92438e-15 -6.16061e-18 6.56326e-15 -1.12285e-12 -6.77668e-15 3.61074e-15 -4.15503e-22 6.55283e-15 -1.05905e-12 -5.10886e-15 -1.19947e-17 -5.69486e-21 7.50714e-18 8.67439e-19 -4.62248e-16 1.27842e-13 1.26906e-13 -9.19696e-15 1.03506e-12 4.91411e-13 4.91655e-13 -2.06787e-15 7.69745e-16 1.10221e-15 1.18315e-18 -2.55572e-20 -4.31571e-18 -6.98939e-21 -4.68963e-18 4.5558e-15 -9.30493e-13 -9.36126e-16 -3.73604e-18 2.54625e-21 -1.86922e-23 4.79186e-25 4.60022e-25 2.3711e-22 -4.75753e-19 6.6774e-16 -4.94457e-13 -6.70037e-16 -7.08523e-16 2.18127e-18 -4.49589e-16 -4.38728e-17 -1.93478e-15 8.611e-16 -1.43522e-18 -5.09699e-21 3.92981e-24 2.65535e-22 -2.60442e-24 -6.68413e-26 1.83209e-22 -2.20127e-19 -6.97645e-17 3.67292e-19 -2.14629e-21 8.0022e-19 5.99379e-17 1.57215e-13 9.40713e-17 -3.84684e-16 9.75995e-19 -2.35279e-16 1.8975e-13 1.52178e-16 -1.96512e-16 7.85491e-17 2.37941e-20 2.10868e-16 -2.6202e-13 3.10677e-14 1.11102e-13 1.37154e-16 -2.04629e-17 -1.13549e-16 9.50355e-14 -9.3669e-14 -9.27893e-14 -6.9502e-17 3.42416e-19 -3.09836e-23 2.11108e-19 -6.51478e-18 5.5286e-14 1.48957e-17 -9.6781e-18 1.0004e-19 -2.21814e-18 6.21053e-16 6.7706e-19 -6.94987e-18 1.91785e-18 1.42794e-19 7.22182e-18 -3.23066e-14 -1.16424e-14 -3.1708e-18 -1.17592e-12 1.93161e-14 -3.50863e-14 1.17878e-12 -3.97514e-14 -2.42255e-16 6.95516e-15 -1.145e-12 -9.72403e-15 -1.8382e-17 -2.1692e-20 7.66564e-23 9.40601e-21 -1.0449e-20 6.44589e-18 -3.26784e-15 1.07349e-12 1.0472e-12 1.00233e-14 -8.87606e-13 1.01264e-16 9.14163e-16 -3.36982e-13 -4.89878e-13 -1.29544e-15 -1.67021e-18 -5.82254e-21 -1.98286e-23 1.70864e-20 2.36675e-18 -2.63984e-15 3.0004e-18 3.1465e-21 1.66093e-23 -3.56674e-26 -1.00865e-23 -1.11873e-21 7.09321e-24 3.2973e-21 -1.63974e-18 -1.08128e-15 3.18558e-18 5.33278e-16 -1.21624e-15 -3.47907e-13 4.96594e-13 5.47523e-16 1.05128e-18 -3.77186e-21 1.0619e-24 1.33743e-26 9.64713e-26 -1.30536e-27 2.17518e-27 -2.43889e-24 -1.27543e-21 -1.4266e-19 9.27784e-20 9.2129e-19 2.82941e-16 -1.94991e-13 5.14749e-17 -6.97207e-19 -1.86672e-19 6.3814e-22 7.04463e-19 2.16439e-16 -1.02275e-13 -1.53662e-13 -1.52887e-13 -1.62822e-16 -8.78212e-17 -1.94449e-16 -2.48596e-17 6.80211e-17 -7.68583e-14 -7.4976e-14 1.11298e-13 1.28736e-17 -3.32381e-17 -4.08665e-14 -1.28222e-17 4.66307e-21 3.54256e-19 2.84778e-17 -5.66597e-14 1.26612e-18 -2.06895e-19 -6.85293e-22 2.55103e-23 2.41773e-21 -5.74615e-18 2.75179e-14 -1.89392e-14 2.75057e-14 8.28899e-18 1.00605e-18 -3.06856e-18 5.12324e-19 -3.46664e-15 -1.92437e-15 3.13769e-15 -2.30281e-12 -1.19266e-12 -7.27544e-15 5.83355e-15 -1.12204e-12 -1.09332e-12 -3.75677e-15 -1.97538e-15 4.1989e-18 3.94811e-20 1.09586e-22 2.72812e-23 -3.2186e-21 -8.97709e-18 7.6809e-15 -1.0735e-12 -3.59833e-15 -1.77211e-15 -4.90209e-13 -4.40666e-15 1.07284e-12 1.30168e-15 3.86921e-18 8.88085e-21 7.91827e-24 6.82053e-25 1.96577e-23 -9.70154e-21 -3.79192e-18 1.37346e-20 -2.91363e-24 -1.89284e-26 4.98493e-24 9.62237e-21 1.70512e-18 -9.52862e-21 -1.02477e-20 -1.70256e-18 -1.46218e-18 4.33641e-16 -3.50397e-13 1.0756e-12 5.9938e-16 9.51668e-16 -1.94971e-18 -2.23679e-21 -5.23931e-24 8.0283e-27 2.96359e-30 2.77093e-29 -7.25731e-29 2.70102e-25 -7.00064e-22 9.08189e-19 1.91816e-16 -1.86801e-16 -5.08142e-17 -1.97907e-13 -3.49361e-16 8.85592e-19 -2.45834e-22 -5.63978e-23 2.09634e-24 9.60469e-22 -3.53455e-19 -8.91244e-17 -1.28846e-16 -1.99883e-16 1.90794e-13 1.89182e-13 3.28067e-14 1.13401e-13 7.67019e-14 -5.89203e-17 -3.35664e-18 1.14245e-17 2.59678e-13 1.1156e-16 4.00984e-18 3.6457e-17 -3.44905e-17 7.68447e-18 -9.29308e-14 -4.50541e-17 2.13208e-19 -3.6085e-24 4.35791e-25 6.90607e-27 -2.08349e-23 9.89557e-20 4.36422e-18 -2.55589e-18 -1.37754e-18 2.32755e-14 9.40574e-15 -1.39372e-14 -3.04801e-18 1.79587e-20 1.83168e-17 -6.4693e-15 1.15388e-12 3.5721e-15 7.65746e-19 5.93974e-15 -1.1467e-12 -1.06748e-12 -1.09003e-12 1.10227e-12 5.11139e-15 1.15032e-17 1.66913e-20 1.76407e-23 -7.77563e-23 2.87088e-20 1.08518e-17 -4.07546e-15 -4.94481e-19 -1.46405e-15 4.89721e-13 1.45669e-15 3.74664e-15 -2.27611e-18 -5.25374e-21 -1.2789e-23 -7.57086e-24 -1.04165e-21 6.09191e-21 1.24059e-18 -9.72165e-21 2.98189e-23 7.76687e-22 -1.36233e-23 8.27629e-21 -3.74102e-18 -1.75931e-15 3.83964e-18 4.57638e-18 1.88744e-15 -6.0301e-18 -5.15829e-16 -1.52907e-15 2.22527e-15 -4.82445e-18 9.08937e-19 -4.77158e-21 3.59762e-24 4.20818e-27 1.30541e-29 -1.08015e-32 4.48893e-31 -2.61629e-27 1.2988e-23 -5.07449e-20 1.38758e-16 -1.99909e-13 1.99377e-13 1.96735e-13 -1.09729e-16 7.76793e-19 1.66134e-21 -2.02337e-24 -1.19258e-26 2.15438e-24 5.87551e-22 4.30829e-20 -7.84995e-20 -8.05756e-20 7.85967e-19 1.48893e-16 1.39798e-16 2.2968e-17 7.76422e-17 1.12346e-17 1.11675e-13 -1.11973e-13 -9.45085e-14 9.33319e-14 -9.40219e-14 -9.37595e-14 -1.64279e-13 1.64099e-13 9.26602e-14 -7.92952e-18 3.59292e-19 1.71233e-22 -3.98945e-25 -3.9135e-29 3.31041e-25 2.92545e-24 7.6074e-22 -5.1913e-22 3.75751e-22 8.28845e-20 2.13997e-18 4.97898e-19 -6.40735e-19 3.96533e-19 8.52879e-21 7.0052e-20 -4.29422e-17 4.53108e-15 3.92433e-17 1.5528e-17 -5.59286e-15 1.07657e-12 6.54734e-15 -1.047e-12 1.03155e-12 4.74328e-15 1.05978e-17 1.52597e-20 1.59368e-23 3.29754e-26 1.04189e-22 -2.01735e-20 -1.10937e-17 2.50323e-20 -7.60008e-19 1.7998e-15 6.4302e-19 6.61077e-18 -1.96289e-20 -7.15088e-24 -1.04896e-23 4.80645e-21 1.27845e-18 -1.63053e-18 -1.08535e-15 1.69706e-18 3.20779e-22 -1.04689e-18 3.9225e-21 1.20143e-18 -1.45483e-15 9.30956e-13 1.45227e-15 1.49103e-15 -1.07874e-12 -1.88378e-15 3.09851e-13 4.93851e-13 6.07614e-16 3.49754e-19 7.3317e-22 -4.85598e-24 1.19476e-26 -3.95399e-30 -4.48437e-33 -1.89986e-35 -1.48219e-32 7.12149e-29 -2.67615e-25 6.92541e-22 -8.7844e-19 -2.71601e-16 2.64478e-16 2.48497e-16 -1.01424e-18 4.77893e-22 -1.45938e-24 -1.05541e-27 -1.80534e-24 -1.94392e-22 -9.08999e-19 -1.21351e-16 1.17875e-16 8.70064e-17 -1.05493e-16 -9.81225e-17 -7.47769e-17 -1.3688e-17 4.98872e-17 -3.15454e-17 7.01137e-17 -6.78855e-17 -5.32906e-17 -1.29349e-17 -4.77891e-17 -4.53809e-17 -7.3938e-17 7.15336e-17 3.62655e-17 -3.7012e-19 2.87804e-23 -7.01209e-25 -2.24447e-28 -3.43908e-25 2.84933e-23 -1.75432e-19 -2.58318e-19 -3.10027e-19 4.91945e-19 9.98335e-19 3.3325e-18 1.14826e-18 -2.04373e-18 2.33697e-15 4.31275e-19 -2.73585e-17 -9.73181e-15 2.30921e-12 1.4159e-14 7.54022e-17 -5.38968e-18 4.05352e-15 -1.3618e-15 -4.3016e-14 3.94156e-15 5.47674e-18 -1.69187e-20 -6.66074e-23 -1.32352e-25 7.50966e-23 -1.73423e-20 1.9318e-18 2.49631e-15 -1.96405e-18 -1.23949e-20 3.34481e-18 -7.64693e-21 7.83102e-21 -4.27707e-23 -1.0228e-23 1.23059e-20 1.30257e-21 -1.04961e-15 -1.00662e-15 4.85694e-13 1.00777e-15 2.67953e-18 9.53554e-16 -6.79888e-19 -1.69874e-20 2.85743e-18 2.41492e-15 -2.99356e-18 -3.78332e-18 -2.58161e-15 -1.19895e-15 -3.48828e-13 6.33562e-16 -2.21956e-18 -3.25133e-21 -1.6903e-24 -4.02675e-27 1.29366e-29 -1.99128e-32 2.56334e-36 -8.33659e-38 4.01261e-34 -1.46546e-30 3.63754e-27 -4.14878e-24 -2.45396e-21 -2.95084e-19 1.82407e-19 1.54852e-19 -1.26761e-21 2.60874e-24 -1.44021e-27 -2.26007e-24 -1.16719e-21 8.40802e-19 4.37839e-17 1.90226e-13 -1.90381e-13 -1.52639e-13 1.89096e-13 1.88836e-13 1.53234e-13 3.17454e-14 -1.13569e-13 7.69184e-14 -1.58548e-17 4.22536e-17 1.35934e-18 2.04737e-13 3.80371e-17 3.91777e-19 -1.81641e-20 1.036e-20 5.58386e-21 -1.45563e-22 7.44268e-25 3.95703e-29 -3.55221e-25 -4.96767e-23 1.78821e-19 -7.64722e-18 4.60869e-14 -2.74698e-14 1.76797e-14 1.8549e-14 4.10939e-14 9.36445e-15 -1.38348e-14 -1.60907e-14 -4.00241e-18 6.75564e-16 2.29958e-12 -1.41526e-14 2.24682e-12 1.19016e-14 5.76561e-17 -8.12002e-15 1.01899e-12 4.9366e-15 2.05048e-17 4.47535e-21 -4.75224e-23 7.05824e-26 1.37157e-23 -1.07689e-20 -9.49622e-18 3.24893e-15 -9.79475e-13 -3.24954e-15 -5.25057e-18 -1.30603e-21 -2.4681e-23 1.10169e-23 -8.73904e-24 5.34918e-21 -1.79182e-19 -2.09874e-15 4.4363e-13 7.02445e-17 4.4938e-13 -1.02153e-16 8.20254e-16 -4.4421e-13 -1.77552e-15 -3.75547e-20 2.2009e-20 3.16857e-18 -6.88446e-21 4.17819e-18 -5.89054e-16 9.32385e-13 4.28503e-16 3.34633e-18 -3.06874e-21 4.74179e-24 8.76058e-27 3.88497e-30 1.11276e-32 -2.29315e-35 2.52123e-38 -2.39127e-36 1.40505e-32 -6.91908e-29 2.67124e-25 -7.13976e-22 9.56707e-19 2.04672e-16 -1.52059e-17 -2.75699e-20 1.10019e-21 -3.47309e-24 1.93996e-24 1.57207e-22 9.37728e-19 2.31902e-16 -1.90155e-13 8.79678e-17 -1.75967e-16 -8.0512e-17 -4.3222e-17 5.2444e-13 3.32488e-16 7.59416e-17 -7.86131e-17 -1.71903e-17 1.12201e-13 -1.11407e-13 -1.83693e-13 9.24742e-14 9.39595e-14 5.4478e-17 2.3022e-17 1.15421e-17 -2.27717e-19 1.50661e-23 -8.36241e-25 -1.42385e-25 -4.51393e-23 1.82122e-19 1.19817e-17 -4.60951e-14 -1.46437e-18 -4.56058e-18 5.25045e-19 -2.10729e-18 2.33709e-14 5.33288e-18 -2.41709e-18 7.99541e-20 -4.53414e-15 2.29726e-12 -1.13085e-12 2.2661e-12 -4.19504e-14 2.31282e-12 1.16184e-15 2.30844e-12 1.19105e-12 5.95841e-15 1.43897e-17 2.23115e-20 2.51016e-23 6.42618e-23 -2.66296e-20 2.13054e-18 2.81913e-15 6.36246e-19 -3.92796e-15 -2.44876e-18 1.32232e-20 3.55191e-23 -4.24521e-23 -5.57392e-21 -1.04961e-21 1.2762e-18 -1.04242e-15 4.48975e-13 4.87554e-13 1.08106e-15 1.68565e-15 4.50233e-13 5.90954e-16 -4.47308e-13 4.47429e-13 1.8209e-15 8.86817e-20 9.79876e-21 -2.52431e-18 -1.33276e-15 -3.46455e-13 1.75445e-15 -4.87434e-18 -1.50988e-21 -1.34791e-23 7.07528e-27 -6.13329e-30 -1.58819e-32 -5.59595e-36 -2.0487e-38 6.97614e-39 -5.37306e-35 3.74065e-31 -2.27829e-27 1.16537e-23 -4.694e-20 1.32405e-16 -1.96998e-13 1.35994e-14 2.00248e-16 -1.19647e-18 1.73109e-21 3.50824e-22 -7.8096e-19 -3.03285e-17 -1.92467e-13 -2.89154e-16 9.26176e-19 3.64323e-17 -8.62789e-14 1.57336e-16 2.44548e-16 1.36738e-16 -1.10639e-13 -5.36242e-15 7.69553e-14 -4.63273e-18 -2.68278e-17 -8.12354e-17 5.24735e-17 7.43326e-17 -9.36893e-14 -9.3215e-14 -5.35655e-14 4.72044e-18 -3.98938e-19 -8.61076e-24 -1.71928e-23 7.14732e-20 1.08395e-17 -4.62546e-14 -2.0871e-17 1.79515e-19 1.17896e-17 -6.46771e-14 -1.46879e-17 3.30699e-18 1.1064e-18 -1.3897e-14 -2.41976e-15 -4.67736e-19 1.16431e-12 7.57578e-15 1.11916e-12 2.24779e-12 1.12862e-12 5.42148e-15 -5.9112e-14 4.47073e-15 6.38022e-18 -2.44463e-20 -1.00836e-22 -1.01571e-23 9.60948e-21 -7.28192e-18 3.8571e-15 -1.07759e-12 -3.8587e-15 2.55261e-15 -1.90616e-18 -1.98868e-20 -5.52607e-23 2.58269e-20 5.9195e-18 -2.60678e-20 1.96042e-21 1.95077e-18 1.55073e-15 1.63998e-15 2.18069e-15 -4.84151e-13 -4.85671e-13 4.83888e-13 -2.30363e-15 4.51817e-13 -4.83488e-13 -2.15482e-15 -1.04187e-18 -3.21016e-15 9.32008e-13 4.54852e-16 4.93477e-18 -1.00133e-20 1.30801e-23 1.34529e-27 3.30687e-29 -1.00617e-32 4.82928e-36 2.1839e-38 5.50686e-42 -3.43988e-40 2.32774e-36 -1.37614e-32 6.81468e-29 -2.64206e-25 7.06332e-22 -9.29045e-19 -2.83794e-16 1.41318e-16 -1.95017e-13 3.4089e-16 -2.46634e-18 1.85786e-19 -7.79363e-17 1.5698e-13 -1.25025e-16 8.28746e-19 1.21593e-21 4.73075e-19 1.71115e-16 -3.31689e-13 3.28478e-13 -1.87473e-13 -1.35598e-16 3.14462e-17 -7.83742e-17 2.59148e-13 -1.10617e-13 -7.56224e-14 -5.45358e-17 2.07939e-20 -4.79065e-17 -4.43599e-17 -1.40251e-18 -9.27792e-14 -8.69379e-20 -5.53169e-19 1.01926e-21 3.95586e-18 -1.77641e-14 -1.61963e-17 1.85475e-19 9.58952e-23 -6.96437e-20 -6.93183e-18 -2.30134e-14 1.40398e-14 -1.38276e-14 -3.22352e-14 -7.24206e-18 -1.81225e-20 1.13786e-12 2.29418e-12 2.29438e-12 2.29371e-12 3.41842e-14 1.12177e-12 1.1345e-12 5.87636e-15 1.4743e-17 2.38458e-20 2.80983e-23 1.05762e-25 -4.89516e-23 1.51487e-20 3.98741e-18 -4.55825e-15 3.12083e-15 -9.47365e-13 -3.12383e-15 -5.01445e-18 2.17824e-20 -3.97305e-18 -4.24906e-15 4.20325e-18 -1.33487e-18 -1.17629e-15 1.24313e-15 -9.27373e-17 -4.86274e-13 4.47446e-13 -4.45754e-13 4.8724e-13 4.85844e-13 1.93286e-15 -4.4765e-13 6.22927e-13 -3.65683e-16 9.32736e-13 3.79641e-15 -3.65686e-18 1.62331e-22 -2.36526e-23 2.85216e-26 -2.42118e-29 3.61015e-33 -5.75318e-35 9.25708e-39 -1.25754e-42 -2.54973e-44 7.60653e-42 -4.33917e-38 2.06607e-34 -7.64636e-31 1.9144e-27 -2.14946e-24 -1.53759e-21 -2.01891e-19 -1.00614e-18 1.72042e-17 -4.85737e-13 -2.90667e-16 -3.48675e-16 9.87703e-17 -1.95651e-13 -1.00093e-16 -2.28113e-20 4.22021e-20 7.34332e-17 -1.89348e-13 -3.7298e-16 1.68684e-16 -1.1943e-16 -4.13601e-14 -7.58871e-14 1.11994e-13 2.57805e-16 -7.29187e-17 -7.06186e-17 9.14619e-14 -1.60126e-18 3.98457e-19 -4.18244e-19 -2.30901e-17 -1.03632e-17 -1.29325e-13 -3.21436e-17 -7.93025e-18 1.79906e-17 -9.03399e-14 -2.00482e-17 -2.10663e-21 -7.62042e-20 8.08584e-18 -4.56006e-14 -1.22018e-17 3.40688e-18 2.42358e-18 -1.38245e-14 -6.9812e-15 -1.56721e-18 1.16552e-12 1.13531e-12 1.15502e-12 1.1501e-12 2.24769e-12 1.10504e-12 -3.97089e-14 -2.34603e-16 -6.38185e-19 -1.09984e-21 -1.3629e-24 -8.69201e-26 5.72691e-23 -2.37069e-20 1.80551e-18 2.57948e-15 8.70119e-19 -3.95692e-15 -2.36887e-18 7.53246e-21 5.96136e-18 -4.20001e-15 1.56073e-12 4.19564e-15 -1.06865e-15 4.50102e-13 -4.80482e-13 4.44185e-13 -4.80832e-13 -4.78525e-13 -4.5001e-13 -4.86066e-13 -4.8138e-13 4.48118e-13 -1.63397e-15 1.81296e-15 1.18631e-18 2.53131e-15 -2.94298e-19 -2.24169e-20 6.12715e-24 -1.02471e-26 6.53042e-29 -5.41505e-32 3.52397e-35 -1.46491e-38 7.69967e-41 -4.50435e-45 -2.62599e-45 1.77175e-41 -1.0456e-37 5.16593e-34 -1.99391e-30 5.26821e-27 -6.59906e-24 -3.16134e-21 -3.33766e-19 3.70213e-20 -1.14866e-16 1.95841e-13 -9.06168e-17 3.91521e-13 1.19101e-16 1.93156e-13 9.7851e-17 -1.46333e-18 -2.17241e-16 5.93618e-15 -1.73039e-16 -7.02662e-17 1.93736e-13 -3.12055e-14 -4.49168e-17 -5.64538e-17 6.29535e-17 -1.10383e-13 8.71838e-18 4.10642e-17 -4.04434e-18 9.15184e-14 5.36307e-17 -2.25538e-17 9.37204e-14 1.56831e-17 3.75267e-14 -1.97843e-18 5.52266e-14 1.74598e-18 5.47078e-14 1.25329e-17 -1.12336e-19 -3.93331e-18 1.8665e-14 -3.23236e-18 -4.4287e-18 2.76184e-14 1.3851e-14 2.53568e-19 6.77418e-20 -1.74976e-15 1.17185e-12 1.17284e-12 -7.44346e-15 2.26033e-12 2.28089e-12 3.85869e-14 2.95238e-18 2.32933e-19 2.05312e-21 6.14009e-24 1.81313e-26 -8.46482e-24 8.19091e-21 -6.23394e-18 3.31695e-15 -9.3152e-13 -3.3191e-15 -1.4123e-17 6.72791e-21 1.7706e-20 4.08653e-18 -7.84486e-19 6.08828e-15 3.18849e-19 2.79008e-19 1.64849e-15 -1.72792e-15 1.56282e-15 -4.95553e-16 -4.04347e-16 -4.88007e-13 4.85001e-13 1.36866e-13 -1.39226e-13 4.85725e-13 -2.02615e-16 2.69598e-18 3.47823e-18 -1.17957e-20 -1.74045e-23 6.578e-26 -5.18504e-30 4.2131e-32 -1.25133e-34 7.72538e-38 -4.33231e-41 2.82443e-44 -7.20212e-47 -9.57849e-44 7.43846e-40 -5.201e-36 3.18157e-32 -1.63307e-28 6.57994e-25 -1.83798e-21 2.57993e-18 5.57673e-16 -2.50752e-18 1.1186e-16 -1.93654e-13 7.71502e-17 4.86351e-16 7.61833e-17 -1.56391e-13 2.30632e-16 -1.29557e-16 2.96951e-13 1.38183e-16 -8.62956e-19 -4.98975e-17 -1.07051e-13 -6.55718e-17 1.34358e-18 9.44932e-17 1.10883e-13 2.50559e-17 -1.0953e-13 -1.09881e-13 9.28757e-14 7.0534e-17 -9.19346e-14 -3.97744e-17 4.4176e-17 1.16615e-17 -5.47222e-14 -3.48943e-18 1.93359e-17 -3.39346e-18 1.71908e-14 5.11996e-18 -4.81978e-18 2.74081e-14 8.88246e-18 1.90461e-20 -3.18875e-18 1.39942e-14 3.24298e-18 -1.38562e-14 -2.48528e-18 -7.53521e-21 2.30415e-12 4.99327e-14 2.25162e-12 1.09422e-12 1.18105e-12 2.27532e-12 1.22347e-14 3.19651e-17 5.37973e-20 6.55979e-23 6.17245e-26 7.18983e-26 -4.42758e-23 1.39046e-20 3.45585e-18 -4.08754e-15 -3.25004e-18 2.13994e-20 4.48673e-18 -2.22553e-18 -2.7535e-15 2.36613e-18 1.20492e-17 -3.10849e-20 2.00968e-21 4.54449e-18 1.20447e-15 -2.39873e-16 -4.48735e-13 -1.02176e-13 -9.14507e-16 -4.8516e-13 1.41734e-13 -4.81283e-13 -6.53147e-17 4.46513e-13 7.11521e-16 5.54949e-19 2.5528e-22 1.21924e-25 1.04441e-28 -1.21777e-31 3.76734e-36 -9.85037e-38 1.82705e-40 -8.85327e-44 4.67119e-47 1.57366e-46 -1.47277e-42 1.28774e-38 -1.03563e-34 7.50347e-31 -4.76149e-27 2.54044e-23 -1.06847e-19 3.14959e-16 -4.91052e-13 -5.37053e-16 5.98189e-20 -1.55428e-16 -1.97578e-13 -1.10672e-16 9.13812e-17 -1.9047e-13 -3.87193e-13 -1.0315e-16 -1.90216e-13 -8.27046e-17 1.71278e-16 1.41158e-13 3.75619e-13 1.44032e-16 2.2131e-16 -2.59936e-13 -2.29578e-17 -7.08532e-14 -2.21166e-13 -1.36217e-16 3.24299e-17 9.1792e-14 1.50319e-17 5.50248e-14 8.92258e-18 -1.48027e-19 -1.13272e-17 -5.46426e-14 -1.28237e-17 -6.37386e-18 3.55949e-14 -1.92851e-14 -9.00352e-19 -1.87005e-14 -3.69059e-18 3.67973e-18 -2.31704e-14 3.21627e-18 -2.76005e-14 -5.70946e-18 5.58774e-20 3.74616e-23 2.4978e-14 2.27705e-12 4.62846e-14 2.27952e-12 1.62431e-14 -5.33402e-14 -3.17327e-16 -9.09377e-19 -1.66359e-21 -2.19032e-24 -2.21647e-27 -1.04327e-28 -2.07821e-26 5.26014e-23 -1.58749e-20 -8.62233e-18 3.78255e-20 -2.05067e-18 -2.91736e-15 -2.73199e-15 9.44764e-13 2.72607e-15 3.87141e-18 4.42843e-21 -1.21504e-18 1.0125e-15 -4.45824e-13 4.41171e-13 -6.73714e-16 4.79279e-13 6.51291e-17 4.79264e-13 -4.46352e-13 -3.39286e-15 -1.68039e-15 1.07857e-12 1.68331e-15 1.27775e-18 6.25113e-22 2.21769e-25 6.07809e-29 1.32355e-32 2.63934e-36 3.734e-40 2.14565e-43 -2.09042e-46 8.68513e-50 -1.07678e-47 9.15546e-44 -7.1582e-40 5.03896e-36 -3.10273e-32 1.60214e-28 -6.48384e-25 1.81041e-21 -2.47892e-18 -8.74229e-16 1.95194e-13 -9.31353e-17 1.06746e-16 -1.97707e-13 -1.08691e-16 8.90786e-17 -1.93205e-13 -5.32973e-16 -2.34851e-16 1.89733e-13 7.81637e-17 -3.30921e-13 -1.28376e-16 3.32308e-16 1.47041e-16 -2.5791e-13 -2.73879e-16 7.71647e-14 -9.69818e-17 7.13785e-14 6.71849e-17 -9.41223e-20 9.13293e-17 -1.64538e-13 -1.93894e-17 1.99601e-14 -1.69088e-17 1.15548e-17 -5.5025e-14 -1.2478e-17 3.21008e-18 -1.82763e-14 -9.31219e-18 -7.35312e-18 2.82217e-14 5.6596e-18 -1.39262e-19 -7.29673e-18 2.75823e-14 2.50961e-18 1.1547e-19 2.25192e-23 -1.12286e-25 -3.88986e-16 1.13774e-12 1.30988e-14 2.12033e-14 2.19063e-12 1.20482e-14 3.30642e-17 6.01246e-20 8.14518e-23 8.74316e-26 6.75222e-29 8.59855e-27 -5.80735e-24 2.40772e-21 -1.56752e-19 -2.82953e-16 5.22437e-18 -3.06635e-15 9.78865e-13 3.06172e-15 3.98173e-15 2.49353e-15 -2.25567e-18 -1.54845e-20 4.61675e-21 6.92554e-19 -2.72039e-15 4.8901e-13 -3.37516e-13 9.6618e-16 -8.9013e-16 4.81354e-13 -1.33526e-15 4.48051e-13 7.65337e-16 3.25952e-15 -4.01161e-18 -1.00257e-20 -8.3473e-24 -4.19149e-27 -1.48991e-30 -4.048e-34 -8.76542e-38 -1.59826e-41 -2.36291e-45 -5.21375e-49 1.51262e-52 2.06742e-49 -1.55442e-45 1.05022e-41 -6.18774e-38 3.04088e-34 -1.15835e-30 2.95424e-27 -3.14632e-24 -3.68966e-21 6.27325e-19 1.77908e-16 1.98006e-13 2.22623e-16 -1.97562e-13 -1.07454e-16 -9.0256e-17 1.9293e-13 8.78863e-18 1.93618e-13 5.27316e-13 1.9074e-13 -3.17797e-16 1.93755e-13 8.8303e-17 -1.11214e-13 -1.64004e-16 -7.40633e-14 -5.42192e-17 1.13016e-13 1.60614e-16 -1.11723e-13 -7.39142e-17 -3.90433e-17 1.6284e-13 4.34304e-17 -9.97652e-18 9.13058e-14 3.26911e-17 -5.51402e-14 -1.22295e-17 -9.49392e-18 5.47233e-14 3.20669e-18 4.56697e-14 1.67011e-17 -9.92097e-15 -1.88289e-18 1.16821e-19 3.13916e-18 -1.16792e-19 -1.15435e-23 -2.40471e-25 -4.45453e-29 1.86799e-17 2.65259e-14 2.77072e-16 7.89334e-17 1.23427e-14 3.4828e-17 4.78707e-21 -1.48158e-22 -3.96462e-25 -6.127e-28 -6.87097e-28 8.01292e-25 -7.84505e-22 6.0347e-19 -3.23727e-16 9.1563e-14 3.2369e-16 -1.62192e-18 4.31599e-15 -1.45854e-18 2.30957e-15 -8.31589e-13 -2.29712e-15 -3.08837e-18 -2.66017e-21 -1.49238e-20 -3.1553e-18 2.5102e-15 -3.39798e-13 -7.01039e-16 -8.81894e-16 4.79605e-13 2.86339e-16 3.51353e-13 5.88128e-16 5.46053e-18 -1.9693e-20 2.27167e-24 2.87325e-26 2.69369e-29 1.39264e-32 4.95913e-36 1.33349e-39 2.845e-43 5.02231e-47 7.34375e-51 3.93592e-52 -3.65408e-48 3.1815e-44 -2.54978e-40 1.84225e-36 -1.16614e-32 6.20342e-29 -2.59489e-25 7.54113e-22 -1.10545e-18 -2.39493e-16 -1.11844e-16 1.9833e-13 6.35135e-16 -1.93416e-13 -1.03873e-16 7.30782e-17 -1.53899e-13 1.61702e-17 1.89631e-13 7.23261e-16 -1.88399e-13 8.41868e-17 3.91585e-16 3.66066e-14 -9.46905e-17 -1.1178e-13 -1.70224e-16 1.10296e-13 9.50505e-17 -1.10374e-13 -8.83281e-17 1.09834e-13 3.75618e-17 5.51842e-14 2.77375e-17 -1.87309e-17 9.01636e-14 5.19471e-17 -5.49302e-14 -1.19892e-17 1.27953e-17 -7.29203e-14 -9.41827e-18 1.13091e-17 -2.47881e-19 -1.98405e-18 4.39577e-20 2.32279e-23 -3.09825e-22 -1.20499e-23 2.46113e-25 2.62826e-29 3.33726e-31 5.81159e-19 1.00349e-16 1.86852e-18 2.04009e-19 3.56012e-17 1.87943e-21 -2.62596e-22 -5.08336e-25 -1.76448e-28 8.36478e-31 9.09562e-30 -7.70355e-27 4.71344e-24 -1.46807e-21 -3.5977e-19 4.18587e-16 3.63016e-19 -2.25813e-18 -3.3854e-15 2.37701e-18 6.59359e-19 -3.53388e-15 -3.66373e-19 1.22118e-20 2.15389e-23 -3.74054e-23 1.0755e-20 2.71975e-18 -1.24416e-15 1.54289e-18 -8.18957e-16 4.49709e-13 8.17943e-16 1.14585e-15 -1.22629e-18 1.51018e-21 -3.7701e-23 5.68253e-26 2.03464e-29 -5.2072e-32 -5.72647e-35 -3.06148e-38 -1.09254e-41 -2.90644e-45 -6.09913e-49 -1.05512e-52 4.51218e-51 -4.59895e-47 4.43813e-43 -4.00604e-39 3.32969e-35 -2.49646e-31 1.64161e-27 -9.08998e-24 3.97432e-20 -1.22019e-16 1.97957e-13 -5.03058e-17 1.9906e-13 -3.91293e-13 -1.97264e-13 -2.99678e-16 6.20177e-17 -1.36645e-13 -2.01004e-13 1.91411e-13 -1.44286e-16 -1.03758e-13 -2.25011e-13 -3.30647e-13 -1.87759e-16 7.92606e-14 -1.51283e-13 7.53366e-14 3.98212e-17 1.09959e-13 -1.84686e-13 -1.09777e-13 7.6629e-18 -5.22551e-14 -1.86043e-13 -5.25248e-14 -4.90292e-17 5.44484e-14 -9.29084e-14 -7.30061e-14 -9.08171e-18 -3.5058e-18 1.7978e-14 -5.52929e-14 -1.04572e-17 -1.02326e-21 -1.11311e-23 8.34767e-24 -9.78688e-26 -5.01491e-26 1.45709e-27 2.28253e-29 -3.4557e-31 -3.94495e-35 2.33785e-17 6.49094e-16 1.81993e-15 4.46534e-17 3.25674e-19 4.94272e-22 6.0911e-25 1.73218e-27 3.63743e-30 -1.01265e-31 1.14856e-28 -1.03257e-25 7.01148e-23 -2.93788e-20 2.11368e-18 3.4116e-15 3.39069e-18 -3.33311e-15 1.0761e-12 3.32853e-15 7.79402e-18 3.39142e-15 -4.6117e-19 -2.53999e-20 -8.12817e-23 5.50407e-26 -5.83361e-24 -2.63781e-20 -6.31258e-18 -5.47003e-19 -3.78484e-16 1.56092e-15 -1.37716e-18 1.88694e-18 -7.18706e-21 3.71183e-24 -2.68783e-26 1.28449e-28 -1.02227e-31 -7.61663e-35 6.52141e-38 9.01604e-41 5.01093e-44 1.79327e-47 4.71932e-51 1.01052e-54 -3.66437e-52 3.44026e-48 -3.01988e-44 2.43992e-40 -1.77716e-36 1.134e-32 -6.07957e-29 2.56111e-25 -7.47871e-22 1.09011e-18 2.91199e-16 5.35098e-14 4.09019e-16 -1.58082e-13 -4.52621e-16 1.97074e-13 9.75693e-17 -8.73357e-17 -1.9229e-13 -3.20371e-16 3.31732e-13 9.70726e-17 -1.885e-13 -4.02247e-16 1.12149e-13 9.54353e-17 -4.07024e-14 6.91708e-17 7.52397e-14 1.68416e-16 -1.09887e-13 -8.27803e-17 1.09329e-13 -4.91329e-17 5.50309e-14 -3.24261e-17 9.20945e-14 3.95612e-17 3.43993e-14 -1.59712e-17 -3.60601e-14 -6.99143e-18 5.43809e-18 -1.61893e-17 2.55885e-19 4.69493e-23 2.90065e-26 -3.69311e-29 -1.77361e-29 1.40375e-30 1.98553e-31 -3.36402e-33 -2.8394e-35 3.6357e-37 1.33573e-16 -1.1287e-12 2.28025e-12 1.76685e-14 4.74227e-17 8.12214e-20 1.08761e-22 1.14498e-25 9.73642e-29 -5.8155e-30 7.86847e-27 -9.20392e-24 9.03948e-21 -6.9867e-18 3.77751e-15 -1.07804e-12 -3.78345e-15 2.87249e-15 -9.29318e-13 -2.88197e-15 2.94052e-15 -1.07569e-12 -4.48798e-15 -7.7929e-18 2.89868e-20 3.45572e-23 5.94171e-21 7.98118e-18 2.70147e-15 -2.61515e-16 1.36389e-13 2.59415e-16 2.24866e-19 2.23544e-21 -1.35474e-23 2.38258e-26 -1.8397e-29 1.1646e-31 -2.8781e-34 1.23175e-37 1.56008e-40 -5.61043e-44 -1.12029e-46 -6.51471e-50 -2.33982e-53 -4.37585e-57 -1.61451e-53 1.41684e-49 -1.13921e-45 8.18785e-42 -5.06593e-38 2.52429e-34 -8.63678e-31 7.19053e-28 1.29177e-23 -8.81745e-20 2.82795e-16 -4.92693e-13 -3.93463e-16 1.98152e-13 1.8456e-16 -1.60483e-13 -8.02204e-17 -1.89662e-17 4.48238e-14 3.81554e-13 1.90637e-13 7.45832e-17 -1.79525e-16 -4.12563e-14 7.89229e-17 4.20642e-14 6.68538e-17 -7.56169e-14 -3.13042e-18 -7.4449e-14 -8.97685e-17 -1.09299e-13 4.93613e-17 9.21539e-14 5.38811e-17 3.74938e-18 -1.78196e-14 -1.46077e-17 5.55676e-14 3.45434e-17 -1.41785e-17 1.70768e-19 5.00407e-22 -1.26819e-21 7.20296e-23 -5.8825e-25 -1.03768e-28 -1.1969e-31 2.76266e-34 4.24983e-34 -7.83188e-36 -3.87255e-37 5.09492e-39 2.60169e-41 -1.27796e-14 -1.13365e-12 -1.14889e-12 -9.47895e-15 -2.72253e-17 -4.37378e-20 -5.71353e-23 -5.99096e-26 -5.11599e-29 5.88219e-32 -1.01646e-28 8.81887e-26 -5.55681e-23 1.8215e-20 3.95021e-18 -5.1629e-15 5.4897e-18 -1.80552e-15 1.0729e-12 3.30928e-15 -2.94028e-15 4.82989e-13 4.90726e-13 4.58126e-15 -1.76961e-18 -1.11743e-21 -5.67108e-18 -8.97019e-16 -9.29815e-13 -1.90295e-15 4.93821e-16 -4.02775e-19 -1.62826e-21 1.11212e-25 -1.70913e-26 4.90656e-29 -5.79305e-32 7.2686e-35 -3.01693e-37 4.76731e-40 -9.24865e-44 -2.29722e-46 2.64007e-50 1.14294e-52 7.00833e-56 7.10515e-56 -7.23809e-52 6.98767e-48 -6.31221e-44 5.25267e-40 -3.94426e-36 2.59771e-32 -1.4396e-28 6.28306e-25 -1.90986e-21 2.95343e-18 5.15988e-16 1.98226e-13 4.43434e-16 -1.61725e-13 2.47749e-16 1.91475e-13 9.61825e-17 4.4834e-16 -1.9193e-13 3.46518e-16 4.35906e-14 -1.32884e-16 -6.20433e-17 1.87203e-13 6.67882e-17 7.3067e-17 -1.10674e-13 -6.61864e-17 1.09968e-13 -6.85241e-17 3.67994e-14 -9.86216e-17 -7.26566e-14 3.8378e-17 -3.69272e-19 2.07712e-18 1.74541e-14 4.86548e-18 4.44681e-17 -1.09754e-13 -2.1727e-17 -2.02102e-21 -5.62073e-25 9.46991e-26 5.00528e-27 -1.60088e-28 9.00728e-31 1.51622e-34 2.5982e-37 3.73186e-40 -1.6706e-39 2.10322e-41 4.93778e-43 -5.70566e-45 -2.28142e-12 -2.48111e-14 -1.14374e-12 -9.96921e-15 -3.12534e-17 -4.65944e-20 -5.76718e-23 -5.85341e-26 -4.89675e-29 -3.55782e-32 1.0855e-30 -6.00096e-28 1.33916e-25 7.70377e-23 -3.72374e-20 -2.23446e-17 -1.95736e-16 -4.51704e-13 -1.07491e-12 -4.70454e-15 4.90771e-13 8.39136e-15 -4.84208e-13 -1.0367e-12 -2.59504e-15 -9.15554e-19 -1.99379e-15 9.35182e-13 -1.59743e-15 4.32635e-18 9.26329e-19 -3.17638e-21 -8.72006e-25 5.90521e-27 -8.14703e-30 6.52793e-32 -1.20312e-34 1.18147e-37 -1.96296e-40 5.61727e-43 -6.21937e-46 1.42972e-50 2.66647e-52 9.97193e-57 -1.58238e-58 6.85001e-55 -7.55768e-51 7.9802e-47 -7.98482e-43 7.47915e-39 -6.45692e-35 5.03367e-31 -3.44534e-27 1.98781e-23 -9.0643e-20 2.90436e-16 -4.93446e-13 4.00882e-13 -1.99205e-13 -1.58189e-16 -3.92237e-13 -1.9583e-13 7.07249e-17 -3.85082e-13 -1.92382e-13 -7.98568e-17 -1.90054e-17 1.88757e-13 1.03413e-16 -1.03745e-15 -7.91362e-17 6.41828e-17 -2.20091e-13 -1.09821e-13 -2.34021e-17 7.3235e-14 -2.90427e-13 1.09307e-13 -1.87383e-17 4.97319e-19 1.02996e-17 -1.82113e-14 1.09887e-13 2.34486e-17 -5.3614e-19 -4.71388e-17 5.4435e-19 1.04679e-22 9.59992e-27 2.18453e-29 -5.11022e-31 -9.73528e-33 2.36579e-34 -1.03269e-36 -1.65914e-40 -2.49553e-42 1.50653e-44 3.33504e-45 -3.56784e-47 -4.61312e-49 -1.1368e-12 -1.14411e-12 -1.18955e-12 -1.08996e-14 -3.80981e-17 -5.3788e-20 -6.32126e-23 -6.19193e-26 -5.06679e-29 -1.42886e-31 1.19114e-28 -1.08813e-25 7.59473e-23 -3.41358e-20 5.05146e-18 2.00865e-15 4.9474e-13 -3.47849e-13 4.82062e-13 6.05781e-15 -4.81976e-13 -1.07542e-12 -5.0655e-15 -4.49402e-15 3.33906e-18 -3.1161e-20 -3.2228e-18 3.7305e-15 -9.04746e-18 1.05932e-20 1.12301e-21 -6.97253e-24 9.37117e-27 8.72383e-30 -1.75765e-32 4.18132e-35 -1.66189e-37 2.25821e-40 -2.11027e-43 3.88204e-46 -8.16978e-49 6.64541e-52 7.76489e-56 -2.55774e-58 6.0534e-60 -6.53661e-56 6.7145e-52 -6.53547e-48 5.95341e-44 -4.99659e-40 3.78454e-36 -2.51404e-32 1.40472e-28 -6.17388e-25 1.8826e-21 -2.86505e-18 -8.32468e-16 5.51602e-16 1.94976e-13 1.06473e-16 -6.64857e-16 1.95046e-13 9.37776e-17 -5.41049e-16 1.00655e-13 -1.27886e-16 -2.9035e-16 2.23393e-16 -4.03693e-14 -2.14931e-17 1.11913e-13 -1.32474e-17 -1.4939e-16 -5.65288e-17 1.09734e-13 5.47372e-17 -1.09528e-13 4.88532e-17 -4.78037e-17 -3.2272e-17 -1.83487e-14 -1.41484e-17 5.86432e-17 -5.64611e-19 -3.6343e-22 -7.74976e-21 2.29309e-22 -1.34169e-24 -2.51555e-28 -2.20006e-32 -9.25787e-35 1.31699e-36 1.23004e-38 -2.61241e-40 9.45095e-43 1.03443e-46 9.48472e-48 -6.94291e-50 -4.363e-51 4.35019e-53 -2.28114e-12 -1.16613e-12 -1.66974e-14 -9.021e-17 -1.767e-19 3.70463e-23 3.47057e-25 6.03044e-28 6.93297e-31 -5.63159e-30 7.58072e-27 -8.92882e-24 8.83535e-21 -6.88514e-18 3.75604e-15 -1.0826e-12 3.4351e-13 -5.04877e-13 1.07639e-12 -9.22586e-13 -6.67109e-15 -6.57438e-15 -1.15389e-15 -1.63016e-15 -1.58471e-15 5.48974e-18 3.07621e-15 8.46899e-18 -7.10772e-20 2.14306e-23 1.05656e-24 -9.1693e-27 2.58105e-29 -1.54549e-32 -3.08891e-35 4.59893e-38 -1.22218e-40 3.17579e-43 -3.47004e-46 3.30088e-49 -5.99733e-52 9.74043e-55 -5.96758e-58 -1.45228e-61 -3.87595e-61 3.89258e-57 -3.70353e-53 3.29813e-49 -2.70579e-45 2.00274e-41 -1.29927e-37 7.07913e-34 -3.02283e-30 8.86127e-27 -1.23334e-23 -6.57773e-21 -2.09805e-18 -3.60972e-16 1.99713e-13 1.06119e-16 -8.94344e-17 1.9449e-13 9.19232e-17 9.10728e-20 5.34636e-17 1.88973e-13 3.42309e-13 1.30761e-16 -2.96804e-17 -3.99718e-14 -1.0581e-16 7.49951e-14 -7.44572e-14 -1.09735e-13 -3.09605e-17 1.09869e-13 -5.19493e-17 -2.36589e-17 1.08842e-13 9.19435e-14 9.99489e-18 9.51181e-20 1.319e-20 -2.97515e-22 1.39717e-24 -4.22316e-25 3.63123e-26 -5.56125e-28 2.20134e-30 4.01772e-34 3.37927e-38 1.99191e-40 -2.1986e-42 -1.12233e-44 2.29875e-46 -7.10568e-49 -2.5659e-53 -1.9308e-53 1.50264e-55 4.17941e-57 -1.16102e-12 -1.1527e-12 -1.38833e-14 -7.85629e-17 -2.4617e-19 -2.75713e-22 -2.42766e-25 -1.79442e-28 -1.15596e-31 9.32398e-32 -9.94028e-29 8.498e-26 -5.08047e-23 1.20338e-20 9.97937e-18 -8.89798e-15 1.03981e-12 1.07846e-12 1.04917e-12 -1.07525e-12 4.81317e-13 4.89732e-13 3.40505e-13 4.85272e-13 4.84326e-13 3.26905e-15 -9.65092e-13 -5.086e-15 1.74998e-18 1.30868e-20 1.58103e-23 1.09101e-26 5.29297e-30 1.85884e-33 5.69907e-37 2.08072e-40 -7.53476e-44 2.58603e-46 -4.85582e-49 4.54746e-52 -4.48999e-55 7.5732e-58 -9.82494e-61 6.19279e-64 -1.83579e-60 2.02182e-56 -2.13353e-52 2.13554e-48 -2.00279e-44 1.73275e-40 -1.35489e-36 9.30765e-33 -5.38993e-29 2.46345e-25 -7.86807e-22 1.29165e-18 1.65065e-16 2.00371e-13 4.31868e-16 -1.1494e-18 -8.86266e-17 1.96512e-13 9.38745e-17 3.89814e-16 -7.11613e-17 1.89992e-13 4.74956e-16 -6.48228e-19 1.79919e-16 -1.20091e-16 2.56866e-13 1.01036e-16 -6.83373e-17 -1.22635e-16 1.10039e-13 7.83213e-17 9.01333e-17 -3.14434e-17 1.45325e-13 9.25963e-17 -4.90755e-19 -5.40162e-23 1.20127e-24 -6.52758e-26 7.49746e-28 3.98969e-29 1.71042e-30 -8.45652e-32 8.96102e-34 -2.70364e-36 -4.79988e-40 -4.02944e-44 -2.83459e-46 2.69226e-48 7.74015e-51 -1.67437e-52 4.29918e-55 1.08958e-58 2.59241e-59 -2.09759e-61 -1.13478e-12 -8.13655e-15 5.63718e-17 6.04676e-19 2.77818e-21 4.46587e-24 5.02218e-27 4.42178e-30 3.31354e-33 -1.07101e-31 1.1799e-28 -1.07157e-25 7.34875e-23 -3.10049e-20 2.06694e-18 3.81363e-15 8.59069e-15 -4.86741e-13 -3.41269e-13 -4.97027e-13 1.03313e-12 -1.06651e-12 -1.31255e-15 2.17695e-15 2.12241e-15 -1.13032e-15 -6.02534e-15 9.3237e-13 1.94958e-15 1.98075e-18 1.29488e-21 6.12604e-25 2.23712e-28 6.56807e-32 1.59426e-35 3.26491e-39 5.72791e-43 8.74019e-47 1.12191e-50 1.99139e-54 -3.77682e-58 5.44175e-61 -8.05583e-64 1.24042e-63 -1.50474e-59 1.77754e-55 -2.0289e-51 2.21916e-47 -2.30313e-43 2.24083e-39 -2.01261e-35 1.63493e-31 -1.16796e-27 7.04496e-24 -3.36452e-20 1.13143e-16 -2.01346e-13 2.22863e-16 -1.00104e-18 1.62203e-20 -8.69137e-17 1.95319e-13 2.46287e-16 -3.86991e-13 -9.08456e-17 -1.91448e-13 -2.42271e-16 7.3995e-17 -2.25014e-13 -7.55328e-17 2.34864e-16 7.51669e-14 6.96435e-17 -4.37997e-17 1.33675e-17 7.3462e-14 -1.78781e-13 -8.40452e-17 1.09182e-13 2.39566e-17 2.21363e-21 1.50748e-24 1.94914e-28 -6.40639e-30 1.61079e-31 6.59904e-33 -2.31347e-34 -3.31394e-36 1.30387e-37 -1.0781e-39 2.6506e-42 4.56703e-46 4.04176e-50 2.98496e-52 -2.58996e-54 -4.0429e-57 1.0347e-58 -1.83581e-61 -3.99487e-64 -2.55272e-65 3.98045e-15 6.30478e-17 4.45426e-19 1.54393e-21 -6.38823e-25 -1.46858e-26 -2.98246e-29 -3.69205e-32 3.54995e-33 -5.39156e-30 7.29982e-27 -8.64989e-24 8.61201e-21 -6.75385e-18 3.70835e-15 -1.07534e-12 -5.01231e-13 -3.79098e-15 3.08317e-13 -4.55774e-13 1.07782e-12 -2.07591e-15 1.73652e-15 1.56274e-15 -7.68988e-16 3.39489e-13 7.63514e-16 3.8993e-15 -2.28971e-18 -1.30458e-20 -1.55787e-23 -1.07278e-26 -5.15243e-30 -1.87802e-33 -5.45221e-37 -1.3011e-40 -2.60971e-44 -4.47351e-48 -6.64296e-52 -8.56571e-56 -1.05516e-59 -4.7251e-64 -6.26622e-67 -1.45016e-64 1.66568e-60 -1.84917e-56 1.96749e-52 -1.98623e-48 1.8792e-44 -1.64048e-40 1.29442e-36 -8.97259e-33 5.24052e-29 -2.41227e-25 7.72342e-22 -1.2408e-18 -3.5691e-16 1.53319e-18 -3.64827e-21 1.08489e-18 1.47582e-16 1.90146e-13 8.24254e-17 -5.23797e-16 1.21566e-18 -3.04769e-16 1.88336e-13 3.28237e-17 -9.91846e-17 -8.47587e-17 1.2518e-18 9.21591e-17 -7.27261e-14 7.17953e-14 1.07572e-13 1.45308e-16 -1.46208e-16 3.7153e-14 8.4418e-17 -6.05029e-19 -1.32108e-22 -1.29304e-26 -3.3324e-30 -4.36208e-34 1.54303e-35 1.69226e-38 -3.55654e-38 6.28089e-40 3.99997e-42 -1.49383e-43 1.03296e-45 -2.16019e-48 -3.60296e-52 -3.56612e-56 -2.47133e-58 2.04279e-60 1.55338e-63 -5.55343e-65 1.88747e-68 7.0173e-70 2.16397e-18 2.48193e-19 1.66935e-22 -2.57406e-24 -1.696e-26 -1.20761e-29 4.6797e-32 1.2509e-34 -7.53212e-35 9.45328e-32 -1.01393e-28 8.7486e-26 -5.32033e-23 1.36629e-20 9.27587e-18 -8.68117e-15 9.3089e-13 -3.41719e-13 1.77805e-15 -4.55106e-13 5.20181e-15 1.23338e-15 -4.88425e-13 -4.48649e-13 -1.09887e-15 1.4956e-15 -5.98236e-19 8.25781e-18 -2.6847e-20 -1.38038e-23 3.86168e-26 5.95343e-29 4.37918e-32 2.14274e-35 7.80246e-39 2.24002e-42 5.25435e-46 1.03196e-49 1.7276e-53 2.49938e-57 3.15025e-61 3.57775e-65 1.69435e-69 1.44985e-65 -1.57854e-61 1.64817e-57 -1.63357e-53 1.51783e-49 -1.30134e-45 1.00831e-41 -6.86006e-38 3.9277e-34 -1.7665e-30 5.47144e-27 -8.09897e-24 -4.50037e-21 -5.2639e-19 4.93947e-19 1.29719e-18 3.35399e-16 -1.9427e-13 1.90638e-16 -1.20502e-18 -3.49046e-19 1.3538e-21 9.94504e-19 2.14947e-16 4.05589e-14 -1.84608e-13 1.09067e-13 -4.91275e-17 -7.67155e-17 7.3305e-18 8.71545e-17 4.78526e-17 -1.07707e-13 -2.61458e-17 2.81917e-17 -1.89119e-19 -4.69201e-22 1.67272e-24 3.59106e-28 3.49895e-32 5.65821e-36 6.10136e-40 -5.84538e-41 -6.60265e-43 8.4954e-44 -1.10399e-45 -3.18355e-48 1.35683e-49 -8.21566e-52 1.50497e-54 2.42355e-58 2.81589e-62 1.67026e-64 -1.35878e-66 -4.47674e-70 2.69932e-71 5.64901e-74 -3.59301e-23 6.6551e-22 -6.18157e-26 -5.5816e-27 -6.52802e-31 7.48067e-32 9.88211e-35 -8.05724e-38 6.15268e-37 -5.85172e-34 4.13223e-31 -1.47564e-28 -7.601e-26 1.31267e-22 -4.57194e-20 -2.02463e-17 6.41812e-15 -4.94452e-13 -1.5483e-15 -1.33094e-15 -3.4703e-13 -2.17615e-15 4.78245e-13 -8.52756e-16 1.96875e-18 3.3541e-18 -1.02035e-20 1.17546e-20 -6.91193e-23 8.13514e-26 1.00849e-28 -5.83418e-32 -1.46609e-34 -1.17393e-37 -5.87469e-41 -2.13904e-44 -6.07361e-48 -1.40032e-51 -2.69269e-55 -4.40137e-59 -6.20343e-63 -7.61718e-67 -8.47268e-69 1.01677e-64 -1.20059e-60 1.37144e-56 -1.50293e-52 1.56435e-48 -1.52766e-44 1.37799e-40 -1.1248e-36 8.07649e-33 -4.89441e-29 2.34317e-25 -7.83758e-22 1.33629e-18 2.87116e-16 -6.80928e-16 2.60595e-17 -1.97951e-13 -3.97341e-16 1.41073e-18 -1.25669e-21 -1.46907e-22 4.73768e-24 1.34344e-21 3.85501e-19 4.74634e-17 -2.0875e-16 8.87225e-17 1.10387e-13 1.09592e-13 -1.10264e-13 -3.9322e-14 1.11279e-13 -5.9905e-17 6.28115e-19 9.89053e-21 -1.56735e-22 4.74601e-25 1.29945e-27 -3.07571e-30 -6.46653e-34 -6.18913e-38 -7.64379e-42 -4.28568e-45 2.15627e-46 1.1371e-48 -1.31018e-49 1.42448e-51 1.50738e-54 -1.019e-55 5.57735e-58 -9.14776e-61 -1.41869e-64 -1.99082e-68 -9.45693e-71 7.78406e-73 1.79989e-76 -1.28924e-77 8.34079e-24 1.40003e-24 -4.2317e-28 -4.16227e-30 2.9276e-32 4.38193e-35 -2.27669e-37 -4.33494e-40 -2.17934e-39 1.10259e-36 1.27721e-34 -8.13446e-31 5.93233e-28 3.13138e-26 -2.24134e-22 1.11274e-20 1.4111e-17 -2.57989e-15 3.27294e-18 -2.9794e-15 1.07239e-12 2.96638e-15 2.30335e-15 -1.77213e-15 1.82439e-18 1.44724e-20 -1.57879e-23 1.26894e-23 -1.07158e-25 2.80186e-28 -1.23695e-31 -3.25843e-34 1.25296e-38 2.59472e-40 2.32352e-43 1.1945e-46 4.35325e-50 1.22274e-53 2.77089e-57 5.21601e-61 8.32311e-65 1.14332e-68 -5.51312e-68 7.07398e-64 -8.89738e-60 1.09035e-55 -1.29275e-51 1.47078e-47 -1.58998e-43 1.6135e-39 -1.5134e-35 1.28556e-31 -9.61636e-28 6.08232e-24 -3.0507e-20 1.07932e-16 -2.02159e-13 4.93164e-13 5.22925e-14 -2.96436e-16 1.0459e-18 2.7432e-21 -5.09164e-24 -3.65531e-26 2.12173e-24 3.42095e-22 2.0462e-20 -5.48203e-20 -1.27333e-19 7.78952e-19 1.17323e-16 1.85808e-16 -1.07462e-16 -3.39801e-17 9.75835e-17 -6.97534e-19 3.51387e-22 1.59847e-25 -5.5121e-26 4.36096e-28 -7.89741e-31 -2.38936e-33 4.2303e-36 8.69555e-40 8.12058e-44 8.41172e-48 1.72071e-50 -5.21871e-52 -5.9469e-55 1.47805e-55 -1.44232e-57 -1.05536e-62 6.50147e-62 -3.29742e-64 4.92721e-67 7.34094e-71 1.25687e-74 4.58114e-77 -3.91932e-79 -1.94528e-82 5.27245e-26 2.44277e-27 -1.23471e-30 1.2512e-33 3.16964e-35 -1.12388e-37 -2.80027e-40 4.48086e-43 1.11499e-41 -4.08331e-39 -7.94319e-38 4.74645e-35 1.28231e-30 -6.56048e-28 -4.93792e-25 -2.16284e-23 -1.01602e-20 -6.82541e-18 -2.9924e-21 -8.95788e-19 5.42177e-15 2.01005e-18 -1.17523e-15 4.85614e-13 1.17751e-15 1.38741e-18 1.05219e-21 5.8868e-25 1.23598e-28 5.63224e-31 -7.05537e-34 2.01294e-38 6.97156e-40 1.65765e-43 -3.4672e-46 -3.61931e-49 -1.92139e-52 -7.01603e-56 -1.94972e-59 -4.34227e-63 -8.00051e-67 -1.25197e-70 7.41758e-69 -9.05824e-65 1.07831e-60 -1.24239e-56 1.37385e-52 -1.44358e-48 1.42372e-44 -1.29745e-40 1.07023e-36 -7.76677e-33 4.75662e-29 -2.30008e-25 7.75514e-22 -1.31935e-18 -3.70286e-16 8.78858e-16 8.81318e-17 -6.08811e-19 1.89847e-21 -2.52603e-24 1.61791e-27 -5.65801e-24 -2.10833e-21 -4.59059e-19 -3.99574e-17 1.66259e-16 3.15785e-17 -9.11788e-17 -5.63498e-17 -1.06921e-13 -2.9069e-17 -1.75756e-20 3.97839e-20 -5.8928e-22 2.15765e-24 -7.73063e-28 -7.51006e-30 1.53985e-31 -8.08677e-34 9.80395e-37 3.27925e-39 -4.64092e-42 -9.30837e-46 -8.44872e-50 -7.87673e-54 -3.72681e-56 8.69892e-58 -9.60101e-61 -1.30475e-61 1.1962e-63 -7.7583e-67 -3.59154e-68 1.72446e-70 -2.38063e-73 -3.40032e-77 -7.08046e-81 -1.94239e-83 1.78021e-85 2.74963e-28 3.83479e-30 -2.12771e-33 9.02708e-36 4.92029e-39 -1.85537e-40 2.79433e-43 -2.63207e-42 2.76765e-39 -2.45567e-36 1.75105e-33 -9.44936e-31 3.7108e-28 -1.04959e-25 -2.02119e-23 5.76792e-20 1.27721e-17 -6.51467e-20 -5.50616e-23 3.51147e-20 1.38836e-17 -4.38463e-20 4.14522e-19 2.33122e-15 -5.84251e-19 -8.10545e-21 -1.17954e-23 -9.58147e-27 -5.49816e-30 -1.71879e-33 -2.18003e-36 1.14164e-39 3.66857e-43 -1.1135e-45 -4.86953e-49 3.53521e-52 4.61796e-55 2.5472e-58 9.32888e-62 2.565e-65 5.61293e-69 1.08212e-72 -8.39583e-70 9.78662e-66 -1.10505e-61 1.19848e-57 -1.23578e-53 1.19648e-49 -1.0707e-45 8.67295e-42 -6.1787e-38 3.7107e-34 -1.75413e-30 5.72746e-27 -9.01139e-24 -4.93537e-21 -5.71151e-19 1.00123e-18 7.07925e-20 -7.65284e-22 2.90659e-24 -1.29716e-27 -6.9001e-24 -3.22527e-21 1.98301e-18 3.21471e-16 4.2709e-14 -1.82261e-13 -3.80753e-14 1.09729e-13 1.08498e-13 -7.74516e-17 6.66056e-19 1.74604e-22 9.95134e-24 -2.35882e-25 1.77152e-27 -4.40235e-30 6.2248e-34 2.54128e-35 -2.86191e-37 1.12353e-39 -9.70542e-43 -3.58405e-45 4.22972e-48 8.26215e-52 7.26411e-56 6.82914e-60 5.2775e-62 -1.07825e-63 2.53614e-66 9.39442e-68 -8.37138e-70 9.08802e-73 1.74339e-74 -8.07444e-77 1.04195e-79 1.42437e-83 3.57242e-87 7.57981e-90 1.26452e-30 5.85555e-33 -3.94201e-36 1.4403e-38 -2.9878e-41 -9.70721e-44 2.5654e-43 -3.57142e-40 4.48837e-37 -4.94787e-34 4.60482e-31 -3.43738e-28 1.92773e-25 -7.84935e-23 2.82413e-20 -7.39481e-18 -6.26591e-15 3.44199e-18 4.28459e-20 2.08195e-22 2.38703e-20 -1.43144e-22 1.6304e-20 5.67275e-18 -1.64926e-20 -1.51724e-23 2.23956e-26 4.79668e-29 4.26902e-32 2.52842e-35 8.79894e-39 6.57767e-42 -9.21288e-46 -9.96555e-49 1.40995e-51 8.72388e-55 -2.62511e-58 -4.95874e-61 -2.86287e-64 -1.05262e-67 -2.8632e-71 3.75276e-73 -4.87759e-69 6.12244e-65 -7.49939e-61 8.90105e-57 -1.01515e-52 1.10148e-48 -1.12314e-44 1.05952e-40 -9.05841e-37 6.82286e-33 -4.34406e-29 2.18878e-25 -7.72139e-22 1.39344e-18 3.00789e-16 -2.92035e-16 1.19459e-18 2.77429e-21 -5.92439e-24 -1.33486e-24 -1.34669e-21 2.17138e-18 4.65653e-16 -3.29788e-13 -5.94459e-17 -2.23397e-16 1.53051e-16 8.57635e-17 1.46965e-13 3.98409e-17 5.84414e-21 -1.62428e-24 1.13557e-27 -5.77626e-29 6.9671e-31 -3.5323e-33 6.65718e-36 7.81295e-40 -5.00144e-41 3.97316e-43 -1.24691e-45 7.98818e-49 3.24921e-51 -3.29349e-54 -6.25369e-58 -5.30556e-62 -6.03523e-66 -5.35729e-68 1.05005e-69 -3.24465e-72 -5.64878e-74 5.05078e-76 -7.03259e-79 -7.51441e-81 3.41873e-83 -4.16472e-86 -5.44326e-90 -1.62147e-93 2.3876e-33 5.95157e-36 -8.53954e-39 1.66372e-41 -5.5995e-44 -6.31307e-45 1.72487e-41 -2.7377e-38 3.98418e-35 -5.20289e-32 5.97373e-29 -5.81294e-26 4.5082e-23 -2.56234e-20 9.71676e-18 -3.09675e-15 1.57031e-12 5.05746e-15 8.00557e-18 8.07812e-21 3.67226e-23 -1.99887e-25 5.23876e-23 9.27217e-21 -5.12719e-23 4.64543e-26 9.65317e-29 -1.78775e-32 -1.22762e-34 -1.23958e-37 -7.63627e-41 -2.80471e-44 -1.58267e-47 -9.01769e-52 1.56547e-54 -1.47289e-57 -1.19209e-60 1.07087e-64 4.56701e-67 2.78474e-70 1.02725e-73 2.14907e-72 -2.89554e-68 3.84873e-64 -5.02181e-60 6.39399e-56 -7.88892e-52 9.35556e-48 -1.05596e-43 1.12054e-39 -1.10065e-35 9.80462e-32 -7.70217e-28 5.12376e-24 -2.70735e-20 1.01076e-16 -2.00453e-13 2.00582e-13 3.75322e-16 -1.5544e-18 1.27429e-21 -3.35029e-22 4.35055e-19 1.88139e-16 -3.31508e-13 -5.63958e-16 2.20045e-18 6.09676e-17 -2.21566e-13 -6.42339e-17 1.61409e-16 -9.50432e-19 -2.53956e-22 -3.4348e-26 1.80417e-30 -8.40382e-33 1.67252e-34 -1.36529e-36 5.25594e-39 -7.96356e-42 -3.15637e-45 7.05384e-47 -4.39293e-49 1.15146e-51 -5.63522e-55 -2.51277e-57 2.23626e-60 4.1201e-64 3.3561e-68 5.55213e-72 4.10056e-74 -8.35657e-76 2.99017e-78 2.87886e-80 -2.67027e-82 4.32839e-85 2.90091e-87 -1.31939e-89 1.53058e-92 1.90984e-96 1.37676e-33 1.94907e-36 2.10898e-39 2.0776e-42 1.47183e-45 -1.42282e-43 4.8613e-40 -8.64464e-37 1.43595e-33 -2.19406e-30 3.02046e-27 -3.64255e-24 3.69537e-21 -2.95797e-18 1.66122e-15 -4.93782e-13 7.12253e-15 6.33351e-15 -3.73601e-18 -4.06848e-20 -7.31206e-23 -7.49158e-26 9.73532e-26 1.14526e-23 -9.29552e-26 2.21031e-28 -3.47792e-32 -3.13272e-34 -8.15747e-38 2.16853e-40 2.63513e-43 1.70473e-46 6.49049e-50 3.10083e-53 4.90529e-57 -1.66789e-60 1.31488e-63 1.3418e-66 5.21745e-71 -3.65626e-73 -2.12947e-76 -3.29946e-73 4.25713e-69 -5.39207e-65 6.66588e-61 -7.98737e-57 9.20011e-53 -1.00863e-48 1.03962e-44 -9.917e-41 8.57566e-37 -6.53414e-33 4.20833e-29 -2.14405e-25 7.63532e-22 -1.37854e-18 -3.84643e-16 4.62195e-16 -1.97241e-13 1.7931e-16 -1.41734e-18 3.24962e-19 2.54528e-17 -6.63445e-14 -4.98675e-16 1.94974e-18 4.24614e-21 -1.46066e-18 -2.66803e-16 1.46553e-18 8.47519e-20 -1.04887e-21 3.04215e-24 8.01441e-28 1.03195e-31 2.29662e-37 2.51651e-38 -3.21326e-40 1.99706e-42 -6.22403e-45 7.86586e-48 5.30347e-51 -7.78744e-53 4.03071e-55 -9.09728e-58 3.48855e-61 1.69189e-63 -1.34484e-66 -2.39983e-70 -1.8648e-74 -4.94743e-78 -2.40773e-80 5.58325e-82 -2.19977e-84 -1.25142e-86 1.25258e-88 -2.2547e-91 -1.00819e-93 4.67114e-96 -5.20135e-99 4.84252e-36 4.39456e-39 -1.23795e-42 -4.49387e-45 -7.72792e-48 1.60456e-45 -1.37732e-41 2.17661e-38 -3.14365e-35 4.05404e-32 -4.50973e-29 4.08264e-26 -2.69576e-23 9.37685e-21 1.97158e-18 -2.84653e-15 4.74805e-15 -1.5345e-12 -4.71579e-15 -7.04031e-18 -6.76404e-21 -4.70296e-24 -2.39298e-27 1.13949e-26 -1.2157e-28 4.54915e-31 -5.9665e-34 -1.97017e-37 6.77473e-40 3.74232e-43 -2.6569e-46 -4.36394e-49 -3.00074e-52 -1.17564e-55 -5.05101e-59 -1.06356e-62 1.09577e-66 -1.04521e-69 -1.29505e-72 -1.64361e-76 -1.71758e-78 2.47185e-74 -3.03735e-70 3.64234e-66 -4.23374e-62 4.73075e-58 -5.0305e-54 5.02798e-50 -4.64936e-46 3.89505e-42 -2.87245e-38 1.78777e-34 -8.77636e-31 2.9933e-27 -5.08452e-24 -1.50028e-21 -3.23664e-18 -6.00555e-16 -2.70742e-16 -1.98168e-13 -8.69289e-17 -4.94678e-16 1.14858e-16 -3.32755e-13 -1.17721e-16 -1.65643e-20 -1.24805e-23 -1.85414e-21 -1.54117e-19 1.78117e-21 2.31187e-23 -5.46719e-25 3.39371e-27 -6.47417e-30 -1.67587e-33 -2.06973e-37 -4.445e-42 -4.82123e-44 4.60811e-46 -2.32361e-48 6.10908e-51 -6.61942e-54 -6.20056e-57 7.06677e-59 -3.1556e-61 6.27507e-64 -1.9326e-67 -1.00744e-69 7.25141e-73 1.251e-76 9.20084e-81 3.97571e-84 1.03574e-86 -3.19477e-88 1.35616e-90 4.61482e-93 -5.26713e-95 1.02733e-97 3.16288e-100 -1.52673e-102 1.32636e-38 8.0738e-42 -3.67977e-45 -7.23675e-48 4.91558e-50 -4.8774e-45 3.87274e-41 -6.21458e-38 9.16701e-35 -1.2178e-31 1.41584e-28 -1.38143e-25 1.05763e-22 -5.59994e-20 1.46621e-17 8.49179e-16 1.01236e-18 -1.22927e-14 -1.39536e-17 1.53817e-20 4.98665e-23 5.92777e-26 4.53531e-29 1.72522e-29 -2.02868e-31 8.98104e-34 -1.74222e-36 9.95737e-40 1.12883e-42 -9.59883e-46 -9.12364e-49 1.90685e-52 5.84006e-55 4.33857e-58 1.74464e-61 6.97704e-65 1.65834e-68 -4.41887e-75 7.81128e-76 1.09979e-78 -1.1595e-78 1.50351e-74 -1.91578e-70 2.38592e-66 -2.88539e-62 3.36151e-58 -3.73571e-54 3.91318e-50 -3.80582e-46 3.37033e-42 -2.64888e-38 1.78446e-34 -9.82331e-31 4.16326e-27 -1.33107e-23 4.24242e-20 -1.82869e-16 3.99436e-13 1.06374e-16 1.96517e-13 -6.10894e-17 3.90266e-13 8.57693e-17 1.90533e-13 6.74914e-17 1.45258e-20 -9.02876e-24 -1.12239e-24 -5.69741e-23 1.02564e-24 5.88443e-28 -1.68124e-28 1.75657e-30 -7.2865e-33 1.03007e-35 2.61368e-39 3.1035e-43 9.03286e-48 6.81252e-50 -5.25164e-52 2.23726e-54 -5.11423e-57 4.86169e-60 5.67484e-63 -5.43766e-65 2.15117e-67 -3.83744e-70 9.73789e-74 5.37048e-76 -3.54074e-79 -5.89351e-83 -4.06807e-87 -2.79661e-90 -2.54169e-93 1.58835e-94 -7.21126e-97 -1.41224e-99 2.0007e-101 -4.17351e-104 -8.98501e-107 4.38565e-41 1.03336e-44 -1.48312e-47 -1.39487e-50 1.64844e-49 -4.38527e-45 9.12829e-40 -1.65184e-36 2.79095e-33 -4.33536e-30 6.06601e-27 -7.43391e-24 7.66195e-21 -6.22941e-18 3.55293e-15 -1.07276e-12 -3.54606e-15 -5.88491e-17 3.21743e-20 1.74497e-22 1.87876e-25 7.40977e-28 1.72678e-30 2.3715e-32 -2.74738e-34 1.41144e-36 -3.55565e-39 4.19583e-42 -6.61036e-46 -2.84471e-48 7.1305e-52 1.62416e-54 2.88438e-58 -4.71241e-61 -4.61178e-64 -1.94493e-67 -7.74767e-71 -2.04142e-74 -9.66894e-79 5.62313e-82 -1.31598e-77 1.78483e-73 -2.39024e-69 3.14551e-65 -4.04637e-61 5.05621e-57 -6.08659e-53 6.9883e-49 -7.55835e-45 7.5808e-41 -6.90746e-37 5.55937e-33 -3.79426e-29 2.05884e-25 -7.88881e-22 1.58954e-18 1.09051e-16 7.60371e-16 7.86532e-17 -1.97855e-13 -1.36562e-16 6.39073e-16 5.96289e-17 -1.89046e-13 1.62215e-16 -3.01373e-18 -9.55131e-22 -1.44447e-25 -1.50495e-26 3.75603e-28 -2.27542e-30 -2.79368e-32 5.50335e-34 -3.74235e-36 1.16754e-38 -1.30655e-41 -3.24228e-45 -3.70363e-49 -1.18675e-53 -7.59423e-56 4.94547e-58 -1.83523e-60 3.72939e-63 -3.17684e-66 -4.28708e-69 3.62655e-71 -1.29665e-73 2.1058e-76 -4.52607e-80 -2.5881e-82 1.5784e-85 2.52906e-89 1.62707e-93 1.71243e-96 -5.33698e-100 -6.93104e-101 3.36957e-103 3.30116e-106 -6.91018e-108 1.53081e-110 1.94026e-43 4.8964e-47 -1.32832e-50 -2.17374e-53 -4.4145e-50 2.18047e-45 -2.96839e-41 4.54451e-38 -6.31047e-35 7.70718e-32 -7.88564e-29 6.14269e-26 -2.7233e-23 -7.11709e-21 2.07728e-17 -1.12786e-14 -2.0317e-17 -1.79036e-19 4.24314e-19 1.16982e-20 1.58326e-22 3.93969e-25 5.07506e-28 4.28546e-31 2.63471e-34 1.27681e-37 4.25205e-41 2.50457e-44 -3.01799e-48 -7.00279e-52 4.96986e-54 5.11656e-58 -1.95898e-60 -8.07624e-64 2.24913e-67 4.04909e-70 1.83252e-73 7.36667e-77 2.10927e-80 5.11404e-81 -7.20942e-77 1.01309e-72 -1.41228e-68 1.94441e-64 -2.63247e-60 3.48815e-56 -4.49249e-52 5.57672e-48 -6.60437e-44 7.3695e-40 -7.62866e-36 7.17746e-32 -5.96833e-28 4.21357e-24 -2.36997e-20 9.44785e-17 -2.00488e-13 -1.35898e-16 2.77511e-19 -5.58425e-16 9.68094e-14 3.78765e-17 -1.24488e-17 1.00748e-13 -4.07851e-13 -1.32233e-16 -2.03571e-20 -1.99772e-24 -1.46409e-28 1.57731e-31 -1.50788e-33 -2.80194e-36 1.73256e-37 -1.57108e-39 6.92396e-42 -1.56087e-44 1.36475e-47 3.33378e-51 3.67405e-55 1.21931e-59 6.9699e-62 -3.96313e-64 1.30891e-66 -2.40678e-69 1.87561e-72 2.75635e-75 -2.1303e-77 6.99588e-80 -1.04696e-82 1.96571e-86 1.13683e-88 -6.46747e-92 -9.95467e-96 -5.94838e-100 -9.17177e-103 1.10526e-105 2.67534e-107 -1.4034e-109 -3.99143e-113 2.18343e-114 8.12586e-44 5.87803e-47 2.62813e-50 -1.65849e-55 7.16924e-51 -9.68105e-47 5.971e-43 -8.11604e-40 9.77082e-37 -9.96932e-34 8.02032e-31 -4.35422e-28 8.56822e-26 4.51019e-23 2.37844e-20 -6.09803e-17 3.38201e-20 -1.87039e-17 6.92785e-16 1.87235e-17 5.036e-20 6.78788e-23 5.94656e-26 3.78569e-29 1.86391e-32 7.38782e-36 2.42283e-39 6.7008e-43 1.5872e-46 3.26302e-50 5.88114e-54 9.29133e-58 1.30181e-61 1.84825e-65 3.01684e-69 2.21618e-73 -2.82071e-76 -1.46366e-79 -6.03756e-83 9.32369e-82 3.0865e-78 -1.01122e-73 1.59046e-69 -2.21066e-65 2.93119e-61 -3.75501e-57 4.6325e-53 -5.45246e-49 6.04673e-45 -6.21836e-41 5.80692e-37 -4.78377e-33 3.33318e-29 -1.83603e-25 7.03192e-22 -1.31803e-18 -7.77562e-16 2.01425e-13 1.17657e-16 8.63945e-17 -2.2824e-13 -5.70204e-17 -9.88912e-14 2.18242e-16 -9.95837e-16 2.8178e-18 9.03637e-22 1.33672e-25 1.25089e-29 8.95418e-34 -6.21872e-37 1.85116e-39 3.6796e-41 -4.92085e-43 2.92901e-45 -9.77253e-48 1.74856e-50 -1.20099e-53 -2.88473e-57 -3.06938e-61 -7.10978e-66 -7.06893e-68 3.2618e-70 -9.07391e-73 1.4502e-75 -9.60386e-79 -1.92444e-81 1.22798e-83 -3.5301e-86 4.77027e-89 -7.65758e-93 -4.58287e-95 2.45022e-98 3.61189e-102 2.0119e-106 4.32988e-109 -8.14328e-112 -9.14956e-114 5.26262e-116 -1.19077e-119 3.73128e-46 1.34889e-49 -1.4949e-52 -2.75085e-55 -1.24293e-51 -5.01521e-46 1.66197e-41 -2.71477e-38 4.08996e-35 -5.56379e-32 6.65064e-29 -6.71398e-26 5.38179e-23 -3.06895e-20 9.65745e-18 -3.95288e-16 -4.47044e-18 -3.22893e-15 1.0628e-12 3.22194e-15 4.74743e-18 4.5032e-21 3.09032e-24 1.63553e-27 6.95139e-31 2.44038e-34 7.22291e-38 1.82762e-41 4.00417e-45 7.67745e-49 1.29961e-52 1.95579e-56 2.6315e-60 3.18032e-64 3.46508e-68 3.41327e-72 3.04909e-76 2.50008e-80 -1.40159e-82 5.16174e-79 -1.84293e-75 6.4497e-72 -2.20819e-68 7.41463e-65 -2.49281e-61 9.06928e-58 -4.23664e-54 2.84067e-50 -2.36273e-46 1.99678e-42 -1.53279e-38 9.94904e-35 -5.01402e-31 1.66121e-27 -1.8961e-24 -6.20196e-21 1.28141e-19 6.5965e-16 1.9747e-13 1.62064e-16 -1.95325e-13 -7.84986e-17 -2.9933e-16 1.00022e-18 -1.24793e-18 7.2642e-21 -9.53398e-24 -3.19643e-27 -4.7389e-31 -4.39801e-35 -3.13863e-39 1.16825e-42 3.42618e-45 -1.16876e-46 9.44045e-49 -4.22864e-51 1.12659e-53 -1.64637e-56 9.18038e-60 2.18617e-63 2.26084e-67 2.29689e-72 6.03495e-74 -2.32762e-76 5.59167e-79 -7.88951e-82 4.29433e-85 1.23585e-87 -6.54302e-90 1.65974e-92 -2.00708e-95 2.33447e-99 1.73704e-101 -8.58157e-105 -1.21415e-108 -6.13967e-113 -1.83543e-115 4.41077e-118 2.79806e-120 -1.79188e-122 7.39635e-49 -9.32046e-52 -1.44537e-54 -3.66534e-57 -1.32081e-51 3.87781e-46 2.40975e-40 -4.57859e-37 8.16489e-34 -1.34197e-30 1.99204e-27 -2.59654e-24 2.8535e-21 -2.47976e-18 1.51574e-15 -4.91932e-13 -1.5095e-15 -1.96657e-17 1.16974e-14 1.67763e-17 -3.32484e-22 -2.17076e-23 -2.81281e-26 -2.1211e-29 -1.145e-32 -4.79732e-36 -1.62918e-39 -4.60679e-43 -1.10663e-46 -2.29301e-50 -4.14739e-54 -6.60961e-58 -9.35054e-62 -1.18142e-65 -1.33988e-69 -1.37041e-73 -1.27408e-77 -1.08527e-81 -4.60556e-80 1.64812e-76 -5.79017e-73 1.9912e-69 -6.6781e-66 2.17493e-62 -6.83988e-59 2.05838e-55 -5.8127e-52 1.43628e-48 -2.02585e-45 -1.16964e-41 1.74761e-37 -1.5348e-33 1.07211e-29 -5.90828e-26 2.31736e-22 -4.8915e-19 1.15632e-17 3.46642e-17 -8.99162e-14 -4.79628e-17 -1.95909e-13 -6.26299e-17 -4.69068e-19 2.48467e-21 -1.07738e-21 9.31607e-24 -2.63089e-26 2.16141e-29 7.17161e-33 1.01366e-36 8.90526e-41 6.09378e-45 -8.83366e-49 -1.94766e-50 2.38877e-52 -1.39515e-54 4.96418e-57 -1.08993e-59 1.33658e-62 -6.249e-66 -1.44963e-69 -1.43951e-73 9.05833e-79 -4.34516e-80 1.4431e-82 -3.06138e-85 3.87994e-88 -1.71283e-91 -6.7788e-94 3.09737e-96 -7.07363e-99 7.78667e-102 -6.72271e-106 -6.08312e-108 2.80888e-111 3.7916e-115 1.78908e-119 7.02348e-122 -1.93199e-124 -7.51298e-127 -2.56114e-51 -1.30317e-53 -1.26125e-56 -3.93301e-57 2.76382e-51 3.62695e-46 -1.1049e-41 1.73972e-38 -2.48512e-35 3.11629e-32 -3.26779e-29 2.59717e-26 -1.14588e-23 -3.88414e-21 1.02392e-17 -5.65679e-15 -1.00096e-17 -1.08426e-20 6.57268e-17 4.03028e-21 -1.28323e-22 -1.16742e-25 4.88462e-30 8.6486e-32 8.74183e-35 5.32594e-38 2.3733e-41 8.32719e-45 2.38894e-48 5.70931e-52 1.13267e-55 1.7477e-59 1.30539e-63 -4.70848e-67 -3.25404e-70 -1.36119e-73 -4.80792e-77 -1.09989e-80 -1.5578e-77 5.497e-74 -1.90151e-70 6.43138e-67 -2.12008e-63 6.7847e-60 -2.09786e-56 6.23197e-53 -1.76583e-49 4.7209e-46 -1.1639e-42 2.45137e-39 -2.66512e-36 -1.72562e-32 2.01151e-28 -1.41346e-24 7.51068e-21 -2.81441e-17 5.59021e-14 -1.21322e-17 9.00519e-14 -3.91066e-13 9.72236e-14 4.13324e-17 7.8692e-21 4.63617e-24 -7.1924e-25 8.07538e-27 -3.42105e-29 6.2691e-32 -3.61042e-35 -1.2388e-38 -1.72514e-42 -1.47397e-46 -9.64086e-51 -1.59979e-54 4.64489e-56 -3.64052e-58 1.65641e-60 -4.85504e-63 9.01727e-66 -9.49285e-69 3.80908e-72 8.65204e-76 8.29172e-80 -1.85197e-84 2.69706e-86 -7.89415e-89 1.50599e-91 -1.74077e-94 6.20571e-98 3.23364e-100 -1.31759e-102 2.75685e-105 -2.80214e-108 1.89346e-112 1.97793e-114 -8.62598e-118 -1.10146e-121 -5.11508e-126 -2.39585e-128 7.56371e-131 4.72451e-51 -3.54716e-53 -1.12493e-55 -3.88567e-56 -7.10515e-51 -2.7134e-46 -2.16968e-41 1.85356e-38 -1.20289e-35 5.62255e-33 -6.90339e-31 -1.95773e-27 2.3944e-24 -1.51331e-21 4.94543e-19 -3.35129e-17 -4.97638e-19 -4.49094e-21 2.5442e-19 3.02887e-21 3.22692e-24 -2.35198e-27 -8.1973e-30 -8.76328e-33 -4.47229e-36 9.91364e-40 4.73871e-42 5.9813e-45 5.35861e-48 3.91385e-51 2.45127e-54 1.35053e-57 6.64867e-61 2.95676e-64 1.19752e-67 4.44481e-71 1.51866e-74 3.56413e-78 4.35776e-75 -1.51499e-71 5.1564e-68 -1.71413e-64 5.54861e-61 -1.74236e-57 5.28306e-54 -1.5382e-50 4.2728e-47 -1.12383e-43 2.77238e-40 -6.33931e-37 1.32354e-33 -2.47415e-30 4.03014e-27 -5.48185e-24 5.75659e-21 -3.7628e-18 2.24853e-16 -2.04713e-18 3.58596e-16 -1.37973e-15 3.0758e-16 6.04557e-18 8.04068e-21 6.14627e-24 2.97019e-27 -1.09107e-30 6.24297e-32 -2.99478e-34 5.45141e-37 -2.35884e-40 -1.83597e-43 -5.74884e-47 -1.26267e-50 -2.2441e-54 -3.28274e-58 4.57873e-62 -1.07638e-63 5.56619e-66 -1.73273e-68 3.2913e-71 -3.42296e-74 1.23407e-77 4.16191e-81 5.75072e-85 3.78725e-89 6.33006e-92 -1.89013e-94 3.70352e-97 -4.37322e-100 2.11636e-103 5.6708e-106 -2.69424e-108 5.89833e-111 -6.08925e-114 5.60118e-118 3.90641e-120 -1.6199e-123 -2.2239e-127 -1.33345e-131 -4.36857e-134 7.19614e-52 -1.76303e-54 -2.5637e-57 1.21715e-55 7.91722e-51 3.19994e-46 -5.0523e-43 3.81787e-40 -2.26222e-37 7.83057e-35 2.55413e-32 -6.52164e-29 5.1437e-26 -2.01249e-23 2.44425e-21 -9.559e-20 -2.47703e-21 -3.21081e-23 5.48712e-22 1.22357e-23 7.70143e-26 6.51024e-29 -8.29235e-32 -2.13688e-34 -1.97118e-37 -6.91908e-41 6.17153e-44 1.29945e-46 1.34957e-49 1.05564e-52 6.87813e-56 3.89342e-59 1.95816e-62 8.87432e-66 3.66146e-69 1.3852e-72 4.83963e-76 1.11617e-79 1.64067e-76 -5.92156e-73 2.09473e-69 -7.2388e-66 2.43449e-62 -7.93267e-59 2.49218e-55 -7.5039e-52 2.14894e-48 -5.79675e-45 1.45441e-41 -3.33872e-38 6.85898e-35 -1.22027e-31 1.78334e-28 -1.94265e-25 1.25042e-22 -1.34392e-20 4.07974e-19 -7.03396e-21 6.43895e-19 -2.25495e-18 4.51288e-19 1.75697e-20 1.85106e-22 2.49778e-25 1.83932e-28 9.02982e-32 3.80606e-35 4.27822e-37 -2.32215e-39 4.33176e-42 -1.58437e-45 -1.7578e-48 -6.569e-52 -1.60533e-55 -3.00475e-59 -4.54757e-63 -4.23623e-67 -3.32714e-69 1.86729e-71 -6.07128e-74 1.17287e-76 -1.21285e-79 4.06864e-83 1.69535e-86 2.73281e-90 2.50667e-94 1.60923e-97 -4.60014e-100 9.13588e-103 -1.07844e-105 5.72648e-109 1.07676e-111 -5.67849e-114 1.27537e-116 -1.32579e-119 1.45076e-123 7.84989e-126 -3.08933e-129 -4.56894e-133 -3.24471e-137 -1.06298e-52 -2.95622e-55 -5.75876e-58 -1.34749e-55 -3.90282e-51 6.79108e-48 -1.75323e-44 8.95596e-42 -1.9242e-39 -2.02502e-36 2.87139e-33 -1.88718e-30 6.8447e-28 -1.07276e-25 7.64315e-24 -2.07587e-22 -7.77396e-24 -1.38235e-25 9.57718e-25 3.15502e-26 3.69075e-28 1.69293e-30 1.83719e-33 -1.08939e-36 -4.77984e-39 -5.70218e-42 -3.28932e-45 2.80593e-49 2.7857e-51 3.52706e-54 3.01683e-57 2.0594e-60 1.1917e-63 6.02614e-67 2.71207e-70 1.10068e-73 4.06954e-77 5.55932e-81 2.9528e-77 -1.03104e-73 3.50464e-70 -1.15508e-66 3.67441e-63 -1.1218e-59 3.26475e-56 -8.98487e-53 2.31509e-49 -5.51341e-46 1.19262e-42 -2.28714e-39 3.75496e-36 -5.00113e-33 4.90735e-30 -2.86734e-27 4.31442e-25 -2.53211e-23 5.26655e-22 -1.25303e-23 8.15842e-22 -2.63194e-21 4.73263e-22 2.69807e-23 5.09132e-25 3.73886e-27 5.3494e-30 4.16627e-33 2.19722e-36 1.03216e-39 2.53631e-42 -1.49983e-44 2.86279e-47 -8.00496e-51 -1.36744e-53 -6.20997e-57 -1.76094e-60 -3.70937e-64 -6.22433e-68 -8.64314e-72 -9.6264e-75 5.57253e-77 -1.90507e-79 3.74576e-82 -3.8407e-85 1.17182e-88 6.15909e-92 1.16355e-95 1.3197e-99 4.14563e-103 -1.02069e-105 2.06422e-108 -2.42971e-111 1.37486e-114 1.83455e-117 -1.10095e-119 2.54431e-122 -2.65814e-125 3.21002e-129 1.46252e-131 -5.44913e-135 -8.78161e-139 -8.55209e-56 -2.09507e-57 -3.74109e-60 4.24711e-56 -7.8231e-53 2.41425e-49 -1.97555e-46 6.95292e-44 2.63186e-41 -5.63033e-38 4.14575e-35 -1.66377e-32 3.24068e-30 -3.30845e-28 1.73453e-26 -3.72693e-25 -1.7731e-26 -3.93853e-28 1.43882e-27 6.09949e-29 1.00557e-30 7.88421e-33 2.76582e-35 2.59077e-38 -2.26519e-41 -7.85414e-44 -8.78995e-47 -4.62452e-50 9.41589e-54 4.52352e-56 5.31623e-59 4.32388e-62 2.82336e-65 1.56678e-68 7.61198e-72 3.29302e-75 1.28351e-78 4.32209e-83 1.49796e-78 -5.27881e-75 1.79924e-71 -5.90197e-68 1.85206e-64 -5.52166e-61 1.55073e-57 -4.05868e-54 9.76452e-51 -2.12116e-47 4.06087e-44 -6.61629e-41 8.69029e-38 -8.3805e-35 4.88626e-32 -9.39548e-30 8.1776e-28 -3.38835e-26 5.47342e-25 -1.57061e-26 8.26414e-25 -2.48091e-24 4.01856e-25 2.9706e-26 7.74223e-28 9.6705e-30 5.46168e-32 7.69127e-35 5.95786e-38 3.13897e-41 1.39471e-44 1.35542e-47 -8.30155e-50 1.66443e-52 -3.80681e-56 -8.70321e-59 -4.36472e-62 -1.32805e-65 -2.95355e-69 -5.1706e-73 -7.58836e-77 -2.8635e-80 1.48747e-82 -5.41505e-85 1.08888e-87 -1.11307e-90 3.12843e-94 1.95928e-97 4.11556e-101 5.24489e-105 1.09533e-108 -2.11598e-111 4.34601e-114 -5.06556e-117 2.95667e-120 2.92797e-123 -2.00088e-125 4.7238e-128 -4.93337e-131 6.0246e-135 2.53017e-137 -8.83593e-141 -1.40282e-56 -1.85462e-59 -4.6389e-61 8.84818e-58 -2.81336e-54 3.1044e-51 -1.40433e-48 -7.26931e-46 1.28645e-42 -8.98575e-40 3.6116e-37 -7.94647e-35 1.01558e-32 -7.64488e-31 3.1739e-29 -5.65226e-28 -3.26205e-29 -8.74154e-31 1.87638e-30 9.72326e-32 2.06039e-33 2.2752e-35 1.35811e-37 3.98241e-40 3.69444e-43 -2.96408e-46 -1.10436e-48 -1.29588e-51 -7.46788e-55 4.99986e-59 5.92842e-61 7.35251e-64 6.08291e-67 3.98455e-70 2.19995e-73 1.05806e-76 4.51685e-80 -1.48846e-83 1.11285e-79 -3.71066e-76 1.18769e-72 -3.62779e-69 1.05002e-65 -2.8549e-62 7.21471e-59 -1.67212e-55 3.4922e-52 -6.41588e-49 1.00176e-45 -1.26107e-42 1.17151e-39 -6.75269e-37 1.55499e-34 -1.78722e-32 1.11063e-30 -3.60147e-29 4.80202e-28 -1.55201e-29 7.04477e-28 -1.98235e-27 2.89208e-28 2.62098e-29 8.51488e-31 1.44442e-32 1.3503e-34 6.24057e-37 8.67617e-40 6.74814e-43 3.58464e-46 1.52805e-49 7.57726e-53 -3.93607e-55 8.44202e-58 -1.51964e-61 -4.7428e-64 -2.59886e-67 -8.42761e-71 -1.97124e-74 -3.60846e-78 -5.47579e-82 -1.056e-85 3.53196e-88 -1.39657e-90 2.88019e-93 -2.93825e-96 7.55177e-100 5.60562e-103 1.29476e-106 1.80886e-110 2.90266e-114 -4.01328e-117 8.44902e-120 -9.74215e-123 5.80105e-126 4.20313e-129 -3.3627e-131 8.13576e-134 -8.48629e-137 1.09408e-140 4.07606e-143 -1.71928e-58 -2.52573e-61 -9.19903e-63 3.05431e-59 -3.79352e-56 2.84611e-53 1.30086e-51 -1.96816e-47 1.46346e-44 -6.25808e-42 1.55083e-39 -2.37226e-37 2.30801e-35 -1.40384e-33 4.9046e-32 -7.55978e-31 -5.07234e-32 -1.57792e-33 2.19786e-33 1.33311e-34 3.40513e-36 4.76585e-38 3.92565e-40 1.87791e-42 4.66406e-45 3.85128e-48 -3.89004e-51 -1.28273e-53 -1.46987e-56 -8.38269e-60 5.25461e-64 6.49641e-66 8.00284e-69 6.5654e-72 4.25887e-75 2.32395e-78 1.10162e-81 -1.1967e-84 5.47099e-81 -1.72884e-77 5.20231e-74 -1.47975e-70 3.94424e-67 -9.74703e-64 2.20305e-60 -4.47464e-57 7.97548e-54 -1.20619e-50 1.47127e-47 -1.33108e-44 7.63114e-42 -1.94809e-39 2.5086e-37 -1.93026e-35 8.22088e-34 -2.01195e-32 2.07746e-31 -8.09694e-33 3.04853e-31 -7.88663e-31 9.6213e-32 1.23555e-32 5.29884e-34 1.21497e-35 1.65461e-37 1.32987e-39 5.57624e-42 7.68485e-45 5.98062e-48 3.18241e-51 1.31746e-54 4.96824e-58 -1.68753e-60 3.8069e-63 -4.92864e-67 -2.21991e-69 -1.30561e-72 -4.45665e-76 -1.0864e-79 -2.06059e-83 -3.20793e-87 -4.84422e-91 7.91135e-94 -3.39372e-96 7.07556e-99 -7.1376e-102 1.65319e-105 1.44374e-108 3.61346e-112 5.4294e-116 7.65416e-120 -6.95303e-123 1.52397e-125 -1.73502e-128 1.04303e-131 5.35907e-135 -5.25976e-137 1.30304e-139 -1.3563e-142 1.81297e-146 -8.56104e-60 -1.07848e-62 -3.02497e-64 4.53508e-61 -3.68761e-58 7.87345e-56 3.02056e-52 -2.23576e-49 9.73368e-47 -2.60648e-44 4.54311e-42 -5.32608e-40 4.20602e-38 -2.15851e-36 6.55008e-35 -8.93599e-34 -6.82863e-35 -2.41679e-36 2.31197e-36 1.60721e-37 4.78464e-39 8.05491e-41 8.38079e-43 5.49689e-45 2.19649e-47 4.75544e-50 3.53556e-53 -4.23851e-56 -1.28974e-58 -1.46092e-61 -8.41582e-65 2.47112e-69 6.04775e-71 7.52694e-74 6.16259e-77 3.97209e-80 2.15012e-83 -6.33305e-86 2.26056e-82 -6.62156e-79 1.8315e-75 -4.74044e-72 1.13557e-68 -2.48298e-65 4.87031e-62 -8.37165e-59 1.22027e-55 -1.4358e-52 1.25874e-49 -7.10825e-47 1.92759e-44 -2.84025e-42 2.52873e-40 -1.43791e-38 5.07514e-37 -1.05331e-35 9.25756e-35 -3.9176e-36 1.33663e-34 -3.27824e-34 3.55506e-35 5.45541e-36 2.78714e-37 7.87336e-39 1.38833e-40 1.56977e-42 1.09985e-44 4.18003e-47 5.68429e-50 4.41475e-53 2.34961e-56 9.58695e-60 3.1826e-63 -6.24114e-66 1.53115e-68 -1.31053e-72 -9.14097e-75 -5.70587e-78 -2.0334e-81 -5.13673e-85 -1.00503e-88 -1.60388e-92 -2.23939e-96 1.52797e-99 -7.56744e-102 1.59587e-104 -1.59309e-107 3.29835e-111 3.38191e-114 9.08041e-118 1.45078e-121 1.9317e-125 -1.09041e-128 2.5544e-131 -2.8667e-134 1.72767e-137 5.90399e-141 -7.65522e-143 1.94403e-145 -2.01722e-148 -6.18225e-63 -7.53366e-65 -4.67213e-66 4.60881e-63 -1.46215e-60 -2.07812e-57 2.33558e-54 -1.30274e-51 3.74646e-49 -7.2863e-47 9.92066e-45 -9.55735e-43 6.42321e-41 -2.87155e-39 7.71016e-38 -9.36544e-37 -7.88046e-38 -3.0499e-39 1.95748e-39 1.41683e-40 4.39682e-42 8.42949e-44 1.09203e-45 9.58172e-48 5.51947e-50 1.99796e-52 4.03056e-55 2.87375e-58 -3.56436e-61 -1.06754e-63 -1.21513e-66 -7.19362e-70 -1.69466e-74 4.58995e-76 5.86207e-79 4.82754e-82 3.11094e-85 -2.36573e-87 7.2004e-84 -1.93109e-80 4.84361e-77 -1.12371e-73 2.37835e-70 -4.51222e-67 7.49581e-64 -1.05531e-60 1.19988e-57 -1.02044e-54 5.67662e-52 -1.61832e-49 2.66197e-47 -2.77154e-45 1.92235e-43 -8.9273e-42 2.67916e-40 -4.73462e-39 3.71743e-38 -1.69219e-39 5.28541e-38 -1.22231e-37 1.12079e-38 2.11898e-39 1.24071e-40 4.08199e-42 8.67454e-44 1.24619e-45 1.20849e-47 7.53977e-50 2.64854e-52 3.55579e-55 2.75789e-58 1.47131e-61 5.96327e-65 1.87902e-68 -1.96179e-71 5.54022e-74 -2.58007e-78 -3.34569e-80 -2.1968e-83 -8.11963e-87 -2.11495e-90 -4.25096e-94 -6.93951e-98 -9.55891e-102 2.32174e-105 -1.55502e-107 3.31568e-110 -3.27824e-113 6.02361e-117 7.24235e-120 2.07211e-123 3.49491e-127 4.57429e-131 -1.52333e-134 3.98846e-137 -4.4039e-140 2.64506e-143 5.25894e-147 -1.03794e-148 2.70772e-151 -4.0674e-64 -5.19821e-67 -4.52269e-68 2.47936e-65 1.21233e-62 -2.14321e-59 1.53892e-56 -4.7523e-54 1.00325e-51 -1.52954e-49 1.69409e-47 -1.3311e-45 6.94763e-44 -2.3639e-42 5.01786e-41 -4.9497e-40 -4.85981e-41 -2.18423e-42 8.57267e-43 7.7004e-44 3.01685e-45 7.15223e-47 1.13608e-48 1.24505e-50 9.41206e-53 4.82188e-55 1.59286e-57 3.00247e-60 2.03635e-63 -2.65954e-66 -7.77071e-69 -8.85422e-72 -5.35548e-75 -3.66047e-79 3.03903e-81 3.98869e-84 3.30601e-87 -6.73983e-89 1.80531e-85 -4.38119e-82 9.83113e-79 -2.01213e-75 3.69082e-72 -5.92791e-69 8.07279e-66 -8.89484e-63 7.37167e-60 -4.06646e-57 1.22231e-54 -2.2159e-52 2.63486e-50 -2.15435e-48 1.23087e-46 -4.86259e-45 1.27073e-43 -1.98809e-42 1.4089e-41 -6.7026e-43 1.96481e-41 -4.31941e-41 3.3723e-42 7.64601e-43 5.0204e-44 1.86201e-45 4.54817e-47 7.75482e-49 9.3853e-51 7.94437e-53 4.45606e-55 1.45292e-57 1.92365e-60 1.48862e-63 7.94668e-67 3.20483e-70 9.91866e-74 -5.02681e-77 1.8165e-79 -2.06917e-84 -1.09742e-85 -7.531e-89 -2.87327e-92 -7.68829e-96 -1.58327e-99 -2.64121e-103 -3.66911e-107 1.69011e-111 -2.95859e-113 6.36047e-116 -6.23367e-119 1.00285e-122 1.42386e-125 4.31561e-129 7.63888e-133 1.00606e-136 -1.82804e-140 5.8165e-143 -6.3022e-146 3.75392e-149 2.87566e-153 -1.31509e-154 6.24003e-66 1.80149e-69 -2.43649e-70 -2.05393e-68 1.64835e-64 -1.31617e-61 5.11057e-59 -1.08884e-56 1.74184e-54 -2.05699e-52 1.77487e-50 -1.11e-48 4.97883e-47 -1.54245e-45 2.98519e-44 -2.70873e-43 -2.90921e-44 -1.45258e-45 4.03398e-46 4.20263e-47 1.91591e-48 5.30914e-50 9.90626e-52 1.29776e-53 1.21145e-55 8.03343e-58 3.70059e-60 1.12261e-62 1.98162e-65 1.26777e-68 -1.77442e-71 -5.02023e-74 -5.70276e-77 -3.50809e-80 -3.77647e-84 1.77227e-86 2.39512e-89 -1.49042e-90 3.5457e-87 -7.69293e-84 1.52211e-80 -2.69934e-77 4.19358e-74 -5.53054e-71 5.91769e-68 -4.79513e-65 2.63409e-62 -8.32771e-60 1.6473e-57 -2.19816e-55 2.06836e-53 -1.40093e-51 6.84535e-50 -2.36689e-48 5.50985e-47 -7.7722e-46 5.02898e-45 -2.46026e-46 6.86476e-45 -1.43885e-44 9.36977e-46 2.57603e-46 1.8632e-47 7.62901e-49 2.08368e-50 4.05385e-52 5.77238e-54 6.02995e-56 4.51999e-58 2.29844e-60 6.98695e-63 9.11055e-66 7.02052e-69 3.7452e-72 1.50828e-75 4.65782e-79 -9.12434e-83 5.43563e-85 1.12046e-89 -3.2473e-91 -2.31796e-94 -9.09612e-98 -2.49241e-101 -5.24592e-105 -8.94097e-109 -1.2614e-112 -5.47342e-117 -5.2409e-119 1.12955e-121 -1.09813e-124 1.51993e-128 2.57901e-131 8.24379e-135 1.52444e-138 2.04393e-142 -1.70445e-146 7.94241e-149 -8.41521e-152 4.95124e-155 -1.13052e-159 -2.40939e-68 1.44753e-71 -6.0484e-74 -1.12559e-69 9.8254e-67 -4.29069e-64 1.06246e-61 -1.77334e-59 2.2291e-57 -2.1256e-55 1.54339e-53 -8.4584e-52 3.39684e-50 -9.45536e-49 1.64391e-47 -1.34665e-46 -1.59856e-47 -8.85847e-49 1.77286e-49 2.17922e-50 1.1282e-51 3.53881e-53 7.52364e-55 1.13989e-56 1.25941e-58 1.02097e-60 6.02148e-63 2.51633e-65 7.04754e-68 1.16724e-70 6.98539e-74 -1.06566e-76 -2.90032e-79 -3.27734e-82 -2.04492e-85 -2.92107e-89 9.17259e-92 -2.57869e-92 5.43796e-89 -1.04043e-85 1.78448e-82 -2.68299e-79 3.42974e-76 -3.56914e-73 2.83397e-70 -1.55397e-67 5.14617e-65 -1.10102e-62 1.62773e-60 -1.73401e-58 1.36041e-56 -7.91547e-55 3.39612e-53 -1.04932e-51 2.21236e-50 -2.8545e-49 1.70426e-48 -8.44758e-50 2.27356e-48 -4.5575e-48 2.43064e-49 8.16866e-50 6.43044e-51 2.86002e-52 8.56067e-54 1.85181e-55 2.99189e-57 3.65005e-59 3.34894e-61 2.25064e-63 1.04577e-65 2.9747e-68 3.81445e-71 2.92631e-74 1.55988e-77 6.27894e-81 1.94668e-84 -2.86086e-89 1.49487e-90 7.44146e-95 -8.71596e-97 -6.44656e-100 -2.59505e-103 -7.26976e-107 -1.55879e-110 -2.70569e-114 -3.89638e-118 -3.35001e-122 -8.71863e-125 1.86052e-127 -1.79618e-130 2.08998e-134 4.31658e-137 1.45035e-140 2.79214e-144 3.83389e-148 -7.20689e-153 1.01837e-154 -1.04992e-157 6.08068e-161 -1.72303e-69 -1.61714e-72 5.75457e-75 -7.27046e-72 2.95639e-69 -8.76582e-67 1.6057e-64 -2.17596e-62 2.26625e-60 -1.85593e-58 1.18438e-56 -5.79337e-55 2.10035e-53 -5.32119e-52 8.46313e-51 -6.38671e-50 -8.26791e-51 -5.03733e-52 7.51958e-53 1.07555e-53 6.19052e-55 2.15203e-56 5.10226e-58 8.7235e-60 1.10656e-61 1.05417e-63 7.54021e-66 3.99841e-68 1.52688e-70 3.96609e-73 6.16925e-76 3.41623e-79 -5.78207e-82 -1.50858e-84 -1.69256e-87 -1.0688e-90 -1.86627e-94 -3.49436e-94 6.47649e-91 -1.07504e-87 1.56551e-84 -1.94176e-81 1.96795e-78 -1.53394e-75 8.40899e-73 -2.90463e-70 6.66865e-68 -1.08032e-65 1.28528e-63 -1.14832e-61 7.77917e-60 -3.9901e-58 1.53255e-56 -4.2962e-55 8.30845e-54 -9.91296e-53 5.50796e-52 -2.7315e-53 7.171e-52 -1.37819e-51 5.82989e-53 2.45424e-53 2.08402e-54 9.94585e-56 3.21447e-57 7.58403e-59 1.35447e-60 1.86811e-62 1.9934e-64 1.62909e-66 9.91423e-69 4.2347e-71 1.13063e-73 1.42491e-76 1.08769e-79 5.79263e-83 2.3322e-86 7.27544e-90 6.76077e-94 3.80445e-96 2.9171e-100 -2.1315e-102 -1.63075e-105 -6.718e-109 -1.92329e-112 -4.20068e-116 -7.40663e-120 -1.08539e-123 -1.16372e-127 -1.37744e-130 2.84643e-133 -2.73293e-136 2.586e-140 6.69368e-143 2.35718e-146 4.71271e-150 6.64718e-154 1.64612e-158 1.22979e-160 -1.22016e-163 3.35057e-72 -7.70977e-75 3.02588e-77 -2.27046e-74 5.64884e-72 -1.3116e-69 1.88958e-67 -2.16747e-65 1.95868e-63 -1.41876e-61 8.12809e-60 -3.60865e-58 1.19638e-56 -2.78917e-55 4.1061e-54 -2.88119e-53 -4.05253e-54 -2.6919e-55 3.02572e-56 5.04322e-57 3.18092e-58 1.2074e-59 3.14209e-61 5.95301e-63 8.478e-65 9.22527e-67 7.71006e-69 4.92609e-71 2.36937e-73 8.32038e-76 2.01143e-78 2.94255e-81 1.49302e-84 -2.84553e-87 -7.10362e-90 -7.90185e-93 -5.03857e-96 -3.69664e-96 5.9413e-93 -8.38784e-90 1.01062e-86 -9.98899e-84 7.65569e-81 -4.20057e-78 1.5077e-75 -3.69031e-73 6.49369e-71 -8.52854e-69 8.54642e-67 -6.61528e-65 3.9636e-63 -1.8269e-61 6.37941e-60 -1.64158e-58 2.94065e-57 -3.2725e-56 1.70481e-55 -8.36699e-57 2.16269e-55 -3.99482e-55 1.27967e-56 7.02134e-57 6.38369e-58 3.24297e-59 1.11693e-60 2.83235e-62 5.50717e-64 8.3758e-66 1.00665e-67 9.54052e-70 7.01627e-72 3.89176e-74 1.53632e-76 3.86282e-79 4.7826e-82 3.63087e-85 1.93136e-88 7.78043e-92 2.44447e-95 3.87159e-99 9.02368e-102 9.14846e-106 -4.76799e-108 -3.76485e-111 -1.5847e-114 -4.62321e-118 -1.0283e-121 -1.84242e-125 -2.74373e-129 -3.24935e-133 -2.09775e-136 4.04863e-139 -3.87485e-142 2.82995e-146 9.63842e-149 3.5493e-152 7.34961e-156 1.06624e-159 5.77563e-164 1.40487e-166 -2.38728e-74 -1.07988e-77 8.2207e-80 -4.5189e-77 7.92217e-75 -1.53388e-72 1.83039e-70 -1.84095e-68 1.48059e-66 -9.68289e-65 5.06116e-63 -2.06562e-61 6.33096e-60 -1.37234e-58 1.89099e-57 -1.24646e-56 -1.89139e-57 -1.3584e-58 1.14557e-59 2.24528e-60 1.53718e-61 6.30121e-63 1.77863e-64 3.68262e-66 5.79023e-68 7.04783e-70 6.7e-72 4.97831e-74 2.8713e-76 1.26151e-78 4.09219e-81 9.23807e-84 1.27239e-86 5.84539e-90 -1.27496e-92 -3.04252e-95 -3.34974e-98 -3.03187e-98 4.1506e-95 -4.86356e-92 4.69485e-89 -3.54343e-86 1.94773e-83 -7.23973e-81 1.87869e-78 -3.5649e-76 5.12098e-74 -5.68876e-72 4.95278e-70 -3.39801e-68 1.83328e-66 -7.69829e-65 2.47462e-63 -5.90182e-62 9.8686e-61 -1.03141e-59 5.06928e-59 -2.43847e-60 6.26267e-59 -1.11343e-58 2.49286e-60 1.92131e-60 1.85938e-61 9.95014e-63 3.63121e-64 9.80524e-66 2.04518e-67 3.37632e-69 4.47083e-71 4.75356e-73 4.03656e-75 2.69331e-77 1.37054e-79 5.02424e-82 1.19327e-84 1.45104e-87 1.09554e-90 5.82309e-94 2.34977e-97 7.43833e-101 1.47896e-104 2.00746e-107 2.47451e-111 -9.7857e-114 -7.96727e-117 -3.42241e-120 -1.01618e-123 -2.29917e-127 -4.18484e-131 -6.32913e-135 -7.90058e-139 -3.13401e-142 5.35551e-145 -5.12855e-148 2.63797e-152 1.29139e-154 4.96601e-158 1.06433e-161 1.58869e-165 1.1917e-169 1.75427e-76 1.02354e-80 1.90714e-82 -6.58922e-80 8.74167e-78 -1.47934e-75 1.51755e-73 -1.36918e-71 9.99121e-70 -5.98816e-68 2.89186e-66 -1.09697e-64 3.13858e-63 -6.38551e-62 8.30553e-61 -5.18236e-60 -8.43074e-61 -6.49465e-62 4.0284e-63 9.49226e-64 7.01087e-65 3.07812e-66 9.33788e-68 2.09046e-69 3.58254e-71 4.80067e-73 5.08956e-75 4.29148e-77 2.86519e-79 1.50182e-81 6.06237e-84 1.82479e-86 3.85834e-89 5.00732e-92 2.05141e-95 -5.21907e-98 -1.18879e-100 -1.90795e-100 2.17519e-97 -2.05343e-94 1.52844e-91 -8.42267e-89 3.23236e-86 -8.84938e-84 1.79956e-81 -2.80577e-79 3.42341e-77 -3.31369e-75 2.56272e-73 -1.58526e-71 7.80325e-70 -3.0191e-68 9.00906e-67 -2.00846e-65 3.15549e-64 -3.11466e-63 1.4519e-62 -6.7857e-64 1.74684e-62 -2.99447e-62 3.99266e-64 5.03887e-64 5.15594e-65 2.90282e-66 1.11323e-67 3.17416e-69 7.03606e-71 1.24603e-72 1.78583e-74 2.08563e-76 1.98251e-78 1.52225e-80 9.27958e-83 4.3561e-85 1.4891e-87 3.35053e-90 4.00246e-93 3.00591e-96 1.59687e-99 6.44568e-103 2.05125e-106 4.60488e-110 4.21331e-113 5.99937e-117 -1.84745e-119 -1.55079e-122 -6.79127e-126 -2.0504e-129 -4.71455e-133 -8.71357e-137 -1.33784e-140 -1.72462e-144 -4.66854e-148 6.58218e-151 -6.34738e-154 1.90182e-158 1.61292e-160 6.47077e-164 1.43411e-167 2.20467e-171 -4.21248e-79 4.19776e-82 6.46839e-85 -7.58069e-83 7.99013e-81 -1.21964e-78 1.10412e-76 -9.09383e-75 6.10841e-73 -3.39547e-71 1.53067e-69 -5.44564e-68 1.4664e-66 -2.82509e-65 3.49184e-64 -2.07681e-63 -3.60138e-64 -2.94853e-65 1.29009e-66 3.80895e-67 3.02514e-68 1.41416e-69 4.5783e-71 1.09908e-72 2.03216e-74 2.9619e-76 3.4543e-78 3.23713e-80 2.44328e-82 1.47768e-84 7.08648e-87 2.64182e-89 7.40766e-92 1.47082e-94 1.79947e-97 6.44131e-101 -1.95004e-103 -9.08696e-103 8.39528e-100 -6.17042e-97 3.41071e-94 -1.34778e-91 3.87626e-89 -8.40192e-87 1.41223e-84 -1.87779e-82 2.00201e-80 -1.72521e-78 1.20514e-76 -6.81042e-75 3.09103e-73 -1.11151e-71 3.1e-70 -6.49704e-69 9.64768e-68 -9.03294e-67 4.01219e-66 -1.8078e-67 4.70481e-66 -7.79236e-66 3.7498e-68 1.26994e-67 1.37127e-68 8.07465e-70 3.24016e-71 9.69061e-73 2.26643e-74 4.25669e-76 6.5266e-78 8.23834e-80 8.58653e-82 7.36567e-84 5.15255e-86 2.88628e-88 1.25557e-90 4.0182e-93 8.5896e-96 1.00755e-98 7.51792e-102 3.98961e-105 1.61281e-108 5.15988e-112 1.24343e-115 8.38193e-119 1.32879e-122 -3.21455e-125 -2.78478e-128 -1.24251e-131 -3.8122e-135 -8.90146e-139 -1.66954e-142 -2.6003e-146 -3.42673e-150 -6.98604e-154 7.4986e-157 -7.36087e-160 6.40548e-165 1.8808e-166 7.86267e-170 1.7991e-173 -3.27016e-80 -2.86989e-83 -2.15989e-86 -7.21471e-86 6.2649e-84 -8.80358e-82 7.17926e-80 -5.47075e-78 3.42263e-76 -1.78182e-74 7.56111e-73 -2.54232e-71 6.49125e-70 -1.1925e-68 1.41042e-67 -8.02993e-67 -1.47239e-67 -1.27311e-68 3.63113e-70 1.45276e-70 1.23778e-71 6.13363e-73 2.1078e-74 5.38954e-76 1.06686e-77 1.67796e-79 2.12251e-81 2.18109e-83 1.82618e-85 1.24504e-87 6.86902e-90 3.03109e-92 1.04823e-94 2.74743e-97 5.13429e-100 5.92252e-103 1.83475e-106 -3.22227e-105 2.34058e-102 -1.29811e-99 5.26901e-97 -1.58588e-94 3.64624e-92 -6.56902e-90 9.45322e-88 -1.10125e-85 1.04734e-83 -8.16539e-82 5.21876e-80 -2.72294e-78 1.14962e-76 -3.86989e-75 1.01558e-73 -2.01001e-72 2.82708e-71 -2.52164e-70 1.07095e-69 -4.61755e-71 1.22511e-69 -1.96392e-69 -6.32799e-72 3.09159e-71 3.51883e-72 2.15631e-73 8.99935e-75 2.80661e-76 6.87228e-78 1.35891e-79 2.20781e-81 2.97796e-83 3.35113e-85 3.14722e-87 2.4551e-89 1.57297e-91 8.13932e-94 3.29639e-96 9.91404e-99 2.01744e-101 2.32343e-104 1.7227e-107 9.13034e-111 3.69651e-114 1.18858e-117 2.99324e-121 1.58549e-124 2.72046e-128 -5.16194e-131 -4.62471e-134 -2.1016e-137 -6.55073e-141 -1.553e-144 -2.95595e-148 -4.67067e-152 -6.26056e-156 -1.04796e-159 7.87201e-163 -8.0085e-166 -1.04879e-170 2.05027e-172 8.92793e-176 4.21779e-83 -1.24314e-85 -2.04728e-88 -5.88786e-89 4.31426e-87 -5.66801e-85 4.22991e-83 -3.01394e-81 1.77299e-79 -8.71777e-78 3.50827e-76 -1.12265e-74 2.73459e-73 -4.81491e-72 5.46878e-71 -2.98997e-70 -5.76713e-71 -5.23798e-72 8.18568e-74 5.27433e-74 4.8116e-75 2.52038e-76 9.15108e-78 2.4797e-79 5.2318e-81 8.78661e-83 1.19579e-84 1.3314e-86 1.21985e-88 9.20836e-91 5.71315e-93 2.89255e-95 1.1802e-97 3.80092e-100 9.34033e-103 1.64602e-105 1.80145e-108 -8.37123e-108 4.65929e-105 -1.93817e-102 6.08264e-100 -1.47723e-97 2.83848e-95 -4.39456e-93 5.55492e-91 -5.78305e-89 4.98297e-87 -3.55875e-85 2.10234e-83 -1.02144e-81 4.0408e-80 -1.28146e-78 3.18278e-77 -5.97981e-76 8.00419e-75 -6.81557e-74 2.77227e-73 -1.13398e-74 3.08955e-73 -4.79806e-73 -5.19888e-75 7.27301e-75 8.70549e-76 5.53604e-77 2.39515e-78 7.75304e-80 1.97617e-81 4.08601e-83 6.98041e-85 9.96746e-87 1.19727e-88 1.213e-90 1.03364e-92 7.36999e-95 4.35798e-97 2.09376e-99 7.92291e-102 2.24433e-104 4.35688e-107 4.92616e-110 3.62891e-113 1.92075e-116 7.78817e-120 2.5161e-123 6.52129e-127 2.85606e-130 5.19023e-134 -7.65369e-137 -7.11829e-140 -3.29393e-143 -1.04262e-146 -2.50867e-150 -4.84487e-154 -7.76519e-158 -1.0588e-161 -1.56275e-165 7.52586e-169 -8.19502e-172 -2.8493e-176 2.09201e-178 -1.94664e-85 -8.42474e-89 -4.78485e-91 -4.29781e-92 2.646e-90 -3.29539e-88 2.28068e-86 -1.53341e-84 8.55294e-83 -4.00297e-81 1.54136e-79 -4.70201e-78 1.09699e-76 -1.85917e-75 2.03563e-74 -1.07222e-73 -2.16539e-74 -2.0573e-75 9.39988e-78 1.82376e-77 1.78155e-78 9.83729e-80 3.76267e-81 1.07782e-82 2.40328e-84 4.28893e-86 6.22924e-88 7.44996e-90 7.3864e-92 6.09134e-94 4.17712e-96 2.3732e-98 1.10829e-100 4.19888e-103 1.26367e-105 2.91918e-108 4.88761e-111 -1.58132e-110 6.72949e-108 -2.19462e-105 5.60703e-103 -1.14444e-100 1.89651e-98 -2.58558e-96 2.92592e-94 -2.76339e-92 2.18347e-90 -1.44266e-88 7.94258e-87 -3.61861e-85 1.34941e-83 -4.05248e-82 9.56992e-81 -1.71457e-79 2.19329e-78 -1.78828e-77 6.98025e-77 -2.68281e-78 7.56203e-77 -1.13596e-76 -2.0533e-78 1.65754e-78 2.08261e-79 1.37021e-80 6.12528e-82 2.05087e-83 5.41789e-85 1.16499e-86 2.07913e-88 3.11894e-90 3.96342e-92 4.28091e-94 3.92561e-96 3.0622e-98 2.01092e-100 1.10114e-102 4.92875e-105 1.74822e-107 4.67688e-110 8.6781e-113 9.63256e-116 7.04901e-119 3.72587e-122 1.51308e-125 4.91026e-129 1.29786e-132 4.89931e-136 9.27401e-140 -1.04735e-142 -1.01741e-145 -4.79526e-149 -1.54083e-152 -3.75862e-156 -7.36131e-160 -1.19704e-163 -1.65706e-167 -2.27098e-171 6.3916e-175 -7.90765e-178 -4.46654e-182 1.25713e-87 1.23603e-91 -7.97217e-95 -2.8603e-95 1.47118e-93 -1.7472e-91 1.13441e-89 -7.25589e-88 3.86942e-86 -1.7406e-84 6.399e-83 -1.86975e-81 4.19965e-80 -6.87404e-79 7.27665e-78 -3.7029e-77 -7.80081e-78 -7.72628e-79 -3.88063e-81 5.99817e-81 6.29557e-82 3.66443e-83 1.47301e-84 4.42813e-86 1.04042e-87 1.96158e-89 3.02303e-91 3.85485e-93 4.10036e-95 3.65468e-97 2.73391e-99 1.714e-101 8.96482e-104 3.87884e-106 1.36963e-108 3.86351e-111 8.46044e-114 -2.21023e-113 7.47151e-111 -2.00008e-108 4.32072e-106 -7.63194e-104 1.11645e-101 -1.36506e-99 1.40319e-97 -1.21646e-95 8.89923e-94 -5.48347e-92 2.83266e-90 -1.21726e-88 4.30081e-87 -1.2286e-85 2.76944e-84 -4.74879e-83 5.82598e-82 -4.56228e-81 1.71268e-80 -6.11807e-82 1.79635e-80 -2.61789e-80 -6.52816e-82 3.666e-82 4.82914e-83 3.27887e-84 1.51002e-85 5.21263e-87 1.4221e-88 3.16633e-90 5.8726e-92 9.19424e-94 1.2264e-95 1.40075e-97 1.36922e-99 1.14785e-101 8.2314e-104 5.00128e-106 2.54662e-108 1.06547e-110 3.55258e-113 8.99725e-116 1.59859e-118 1.74194e-121 1.2661e-124 6.68275e-128 2.71814e-131 8.85912e-135 2.37458e-138 7.9933e-142 1.55648e-145 -1.32035e-148 -1.35233e-151 -6.49345e-155 -2.11747e-158 -5.23802e-162 -1.03978e-165 -1.71405e-169 -2.40509e-173 -3.16251e-177 4.55196e-181 -7.22124e-184 -2.44885e-90 2.52444e-93 2.28887e-96 -1.43261e-98 7.45409e-97 -8.51725e-95 5.23775e-93 -3.21963e-91 1.65559e-89 -7.12829e-88 2.51803e-86 -7.0777e-85 1.53645e-83 -2.43573e-82 2.4992e-81 -1.23179e-80 -2.69831e-81 -2.77764e-82 -3.73037e-84 1.87547e-84 2.13756e-85 1.30598e-86 5.48808e-88 1.72816e-89 4.25906e-91 8.44893e-93 1.37447e-94 1.85785e-96 2.10509e-98 2.01083e-100 1.62392e-102 1.10915e-104 6.39212e-107 3.09208e-109 1.24434e-111 4.10845e-114 1.09607e-116 -2.40465e-116 6.72673e-114 -1.53178e-111 2.87376e-109 -4.49161e-107 5.90352e-105 -6.56545e-103 6.201e-101 -4.9811e-99 3.40045e-97 -1.967e-95 9.58836e-94 -3.90549e-92 1.31308e-90 -3.58186e-89 7.73339e-88 -1.27318e-86 1.50254e-85 -1.13319e-84 4.09864e-84 -1.34139e-85 4.15914e-84 -5.88538e-84 -1.85049e-85 7.88204e-86 1.08752e-86 7.60289e-88 3.59782e-89 1.27697e-90 3.58666e-92 8.23828e-94 1.58091e-95 2.57132e-97 3.58105e-99 4.283e-101 4.42687e-103 3.95155e-105 3.04475e-107 2.01712e-109 1.1384e-111 5.40913e-114 2.1217e-116 6.66725e-119 1.60204e-121 2.73009e-124 2.92049e-127 2.10805e-130 1.11106e-133 4.52644e-137 1.4815e-140 4.01285e-144 1.23807e-147 2.45701e-151 -1.52839e-154 -1.67318e-157 -8.19162e-161 -2.70984e-164 -6.79271e-168 -1.36588e-171 -2.28118e-175 -3.24295e-179 -4.18141e-183 2.21159e-187 -1.89001e-91 -1.63925e-94 -1.261e-97 -9.71432e-101 3.47771e-100 -3.84086e-98 2.26302e-96 -1.34923e-94 6.65693e-93 -2.76283e-91 9.40856e-90 -2.55486e-88 5.37787e-87 -8.27815e-86 8.25086e-85 -3.94709e-84 -8.9663e-85 -9.54812e-86 -1.99594e-87 5.6144e-88 6.95392e-89 4.45656e-90 1.95457e-91 6.42194e-93 1.65494e-94 3.44068e-96 5.88363e-98 8.38812e-100 1.00662e-101 1.0234e-103 8.84913e-106 6.51823e-108 4.08761e-110 2.17566e-112 9.77273e-115 3.67049e-117 1.14381e-119 -2.13676e-119 5.11533e-117 -1.01544e-114 1.68931e-112 -2.37653e-110 2.84516e-108 -2.91046e-106 2.54918e-104 -1.91204e-102 1.22602e-100 -6.69496e-99 3.09441e-97 -1.1997e-95 3.85253e-94 -1.00682e-92 2.08824e-91 -3.31003e-90 3.76763e-89 -2.74272e-88 9.5635e-88 -2.83179e-89 9.40234e-88 -1.29285e-87 -4.86236e-89 1.65024e-89 2.38346e-90 1.71201e-91 8.30442e-93 3.02225e-94 8.71417e-96 2.05971e-97 4.08315e-99 6.85299e-101 9.89572e-103 1.2359e-104 1.33886e-106 1.26205e-108 1.03454e-110 7.361e-113 4.52413e-115 2.37992e-117 1.05846e-119 3.90278e-122 1.15852e-124 2.64644e-127 4.33223e-130 4.54971e-133 3.26088e-136 1.71611e-139 7.0029e-143 2.30144e-146 6.28397e-150 1.81503e-153 3.64697e-157 -1.6119e-160 -1.92928e-163 -9.64776e-167 -3.23861e-170 -8.22789e-174 -1.67628e-177 -2.8363e-181 -4.0844e-185 -5.23103e-189 2.07253e-94 -5.78116e-97 -9.53654e-100 -1.14086e-102 1.49306e-103 -1.61648e-101 9.22716e-100 -5.30262e-98 2.52959e-96 -1.01448e-94 3.34472e-93 -8.80759e-92 1.80262e-90 -2.70026e-89 2.61935e-88 -1.21785e-87 -2.85664e-88 -3.15153e-89 -8.704e-91 1.59891e-91 2.17351e-92 1.46023e-93 6.66555e-95 2.27946e-96 6.12229e-98 1.32956e-99 2.38091e-101 3.56522e-103 4.50939e-105 4.85195e-107 4.46174e-109 3.51576e-111 2.37553e-113 1.37431e-115 6.78343e-118 2.83958e-120 1.00487e-122 -1.61146e-122 3.37738e-120 -5.95798e-118 8.93555e-116 -1.14655e-113 1.26401e-111 -1.20017e-109 9.82259e-108 -6.924e-106 4.19314e-104 -2.17191e-102 9.55791e-101 -3.53998e-99 1.08922e-97 -2.73489e-96 5.46304e-95 -8.35665e-94 9.19449e-93 -6.47299e-92 2.17945e-91 -5.75203e-93 2.07798e-91 -2.77866e-91 -1.20765e-92 3.36876e-93 5.0917e-94 3.75059e-95 1.8613e-96 6.94163e-98 2.05055e-99 4.96719e-101 1.00872e-102 1.74824e-104 2.60827e-106 3.37995e-108 3.81952e-110 3.77313e-112 3.26332e-114 2.46845e-116 1.62854e-118 9.31967e-121 4.58391e-123 1.91342e-125 6.64811e-128 1.86816e-130 4.06446e-133 6.40051e-136 6.59924e-139 4.6958e-142 2.46728e-145 1.00816e-148 3.32424e-152 9.1363e-156 2.5154e-159 5.10114e-163 -1.52612e-166 -2.07398e-169 -1.06217e-172 -3.6202e-176 -9.32397e-180 -1.92513e-183 -3.30099e-187 -4.81619e-191 -7.07027e-97 -2.40108e-100 -1.73337e-102 -4.38476e-105 5.38508e-107 -6.38511e-105 3.53143e-103 -1.96739e-101 9.09071e-100 -3.53722e-98 1.13291e-96 -2.90318e-95 5.79085e-94 -8.4581e-93 7.99564e-92 -3.61251e-91 -8.75568e-92 -1.00032e-92 -3.36859e-94 4.33389e-95 6.5298e-96 4.59899e-97 2.1818e-98 7.7458e-100 2.1625e-101 4.89053e-103 9.14102e-105 1.43241e-106 1.90164e-108 2.15519e-110 2.09608e-112 1.75517e-114 1.26771e-116 7.89571e-119 4.23152e-121 1.94438e-123 7.66079e-126 -1.05817e-125 1.9768e-123 -3.14844e-121 4.31175e-119 -5.09976e-117 5.22325e-115 -4.63794e-113 3.56962e-111 -2.37773e-109 1.36643e-107 -6.74116e-106 2.83478e-104 -1.00621e-102 2.9749e-101 -7.19433e-100 1.38705e-98 -2.0515e-97 2.18568e-96 -1.49091e-95 4.85921e-95 -1.12129e-96 4.49328e-95 -5.84862e-95 -2.86724e-96 6.71692e-97 1.06429e-97 8.03203e-99 4.0677e-100 1.54642e-101 4.66177e-103 1.15436e-104 2.40472e-106 4.27932e-108 6.58137e-110 8.81233e-112 1.03322e-113 1.06403e-115 9.64072e-118 7.68906e-120 5.38961e-122 3.30891e-124 1.7688e-126 8.15678e-129 3.20346e-131 1.05109e-133 2.80144e-136 5.81485e-139 8.82033e-142 8.92836e-145 6.30488e-148 3.30584e-151 1.3526e-154 4.47718e-158 1.23783e-161 3.29154e-165 6.72379e-169 -1.25772e-172 -2.07819e-175 -1.09421e-178 -3.78959e-182 -9.89727e-186 -2.07137e-189 -3.60001e-193 4.56465e-99 1.03694e-102 5.41293e-106 -5.28043e-108 7.13673e-111 -2.36548e-108 1.27497e-106 -6.88982e-105 3.09758e-103 -1.1729e-101 3.66117e-100 -9.15843e-99 1.78368e-97 -2.54456e-96 2.34507e-95 -1.03094e-94 -2.58916e-95 -3.05332e-96 -1.19785e-97 1.11317e-98 1.88755e-99 1.39406e-100 6.86534e-102 2.52529e-103 7.31059e-105 1.71715e-106 3.34022e-108 5.45991e-110 7.58067e-112 9.01228e-114 9.22863e-116 8.16767e-118 6.26473e-120 4.16869e-122 2.40386e-124 1.19832e-126 5.17398e-129 -6.16971e-129 1.04312e-126 -1.5188e-124 1.91882e-122 -2.10987e-120 2.02226e-118 -1.68982e-116 1.22973e-114 -7.77685e-113 4.25847e-111 -2.00825e-109 8.09568e-108 -2.76177e-106 7.86581e-105 -1.83626e-103 3.4237e-102 -4.90456e-101 5.06732e-100 -3.3551e-99 1.06144e-98 -2.08862e-100 9.51771e-99 -1.20822e-98 -6.56677e-100 1.31147e-100 2.17456e-101 1.6777e-102 8.65386e-104 3.34283e-105 1.02798e-106 2.59929e-108 5.53689e-110 1.00976e-111 1.59471e-113 2.19949e-115 2.66441e-117 2.84612e-119 2.68694e-121 2.24412e-123 1.65764e-125 1.08066e-127 6.19381e-130 3.10154e-132 1.3443e-134 4.97834e-137 1.54562e-139 3.9141e-142 7.76326e-145 1.1356e-147 1.12838e-150 7.90651e-154 4.13763e-157 1.69535e-160 5.63328e-164 1.56609e-167 4.06303e-171 8.35235e-175 -8.3279e-179 -1.93924e-181 -1.05557e-184 -3.71892e-188 -9.85278e-192 -2.09072e-195 -8.06144e-102 7.14162e-105 8.12564e-108 6.69125e-111 -7.3393e-116 -8.24812e-112 4.33911e-110 -2.28409e-108 1.00206e-106 -3.70454e-105 1.13022e-103 -2.76707e-102 5.26995e-101 -7.34526e-100 6.60004e-99 -2.84477e-98 -7.37573e-99 -8.97597e-100 -3.98121e-101 2.69517e-102 5.25271e-103 4.07072e-104 2.07964e-105 7.91299e-107 2.37046e-108 5.76943e-110 1.165e-111 1.98076e-113 2.86739e-115 3.5639e-117 3.82803e-119 3.56625e-121 2.88959e-123 2.0398e-125 1.2553e-127 6.72565e-130 3.14624e-132 -3.24572e-132 5.02799e-130 -6.7602e-128 7.94473e-126 -8.17806e-124 7.37961e-122 -5.83407e-120 4.03329e-118 -2.43156e-116 1.27327e-114 -5.75813e-113 2.23155e-111 -7.33525e-110 2.01718e-108 -4.55526e-107 8.22925e-106 -1.14377e-104 1.14781e-103 -7.38835e-103 2.27373e-102 -3.6924e-104 1.97911e-102 -2.44906e-102 -1.45446e-103 2.50232e-104 4.34612e-105 3.42164e-106 1.7916e-107 7.04419e-109 2.20422e-110 5.68177e-112 1.235e-113 2.30216e-115 3.72418e-117 5.27348e-119 6.57768e-121 7.25802e-123 7.10524e-125 6.18054e-127 4.77883e-129 3.28151e-131 1.99616e-133 1.07112e-135 5.03716e-138 2.05663e-140 7.19645e-143 2.11808e-145 5.10565e-148 9.68919e-151 1.36815e-153 1.33452e-156 9.27755e-160 4.8454e-163 1.98822e-166 6.63199e-170 1.85355e-173 4.72813e-177 9.77786e-181 -3.13592e-185 -1.68172e-187 -9.54033e-191 -3.42507e-194 -9.21159e-198 -5.82967e-103 -5.14718e-106 -4.12841e-109 -3.01469e-112 -2.12611e-115 -2.70863e-115 1.39541e-113 -7.17211e-112 3.08118e-110 -1.11569e-108 3.33631e-107 -8.01016e-106 1.49333e-104 -2.03099e-103 1.79217e-102 -7.57052e-102 -2.02717e-102 -2.54295e-103 -1.24941e-104 6.0928e-106 1.40789e-106 1.14618e-107 6.07099e-109 2.38683e-110 7.38575e-112 1.85893e-113 3.88784e-115 6.86159e-117 1.03335e-118 1.34034e-120 1.50339e-122 1.46694e-124 1.24964e-126 9.31108e-129 6.07537e-131 3.47132e-133 1.74335e-135 -1.56009e-135 2.23674e-133 -2.80024e-131 3.0826e-129 -2.98777e-127 2.55093e-125 -1.91673e-123 1.26408e-121 -7.29121e-120 3.66263e-118 -1.59285e-116 5.94958e-115 -1.88873e-113 5.02558e-112 -1.09994e-110 1.92874e-109 -2.6053e-108 2.54357e-107 -1.59416e-106 4.7796e-106 -6.10115e-108 4.03819e-106 -4.87435e-106 -3.12875e-107 4.6687e-108 8.48602e-109 6.81119e-110 3.62709e-111 1.44863e-112 4.6067e-114 1.20792e-115 2.67437e-117 5.08473e-119 8.40461e-121 1.21861e-122 1.56015e-124 1.77209e-126 1.79157e-128 1.61546e-130 1.30041e-132 9.3437e-135 5.98428e-137 3.40647e-139 1.71565e-141 7.59509e-144 2.92773e-146 9.69945e-149 2.71056e-151 6.22631e-154 1.132e-156 1.54461e-159 1.47916e-162 1.02011e-165 5.31674e-169 2.18483e-172 7.3162e-176 2.05548e-179 5.1857e-183 1.07895e-186 2.17637e-191 -1.35014e-193 -8.08236e-197 -2.96372e-200 6.58608e-106 -1.3495e-108 -2.36728e-111 -2.96964e-114 -3.02146e-117 -8.66988e-119 4.24528e-117 -2.13696e-115 9.01339e-114 -3.2057e-112 9.41775e-111 -2.21992e-109 4.04743e-108 -5.41127e-107 4.69038e-106 -1.94665e-105 -5.37607e-106 -6.94854e-107 -3.72602e-108 1.26422e-109 3.63511e-110 3.11424e-111 1.70949e-112 6.9392e-114 2.21493e-115 5.75541e-117 1.24491e-118 2.2792e-120 3.56302e-122 4.79837e-124 5.60654e-126 5.70965e-128 5.09157e-130 3.986e-132 2.74339e-134 1.66103e-136 8.88764e-139 -6.91983e-139 9.25911e-137 -1.08694e-134 1.12746e-132 -1.03396e-130 8.38724e-129 -6.0145e-127 3.79851e-125 -2.10294e-123 1.01619e-121 -4.26033e-120 1.53716e-118 -4.72252e-117 1.21815e-115 -2.58854e-114 4.4128e-113 -5.8017e-112 5.51845e-111 -3.3722e-110 9.86361e-110 -9.14084e-112 8.09419e-110 -9.52877e-110 -6.54715e-111 8.49076e-112 1.62305e-112 1.32857e-113 7.18615e-115 2.91208e-116 9.3975e-118 2.50271e-119 5.63362e-121 1.09041e-122 1.83762e-124 2.72157e-126 3.5668e-128 4.1575e-130 4.32564e-132 4.02704e-134 3.35933e-136 2.51209e-138 1.6829e-140 1.00831e-142 5.3858e-145 2.55297e-147 1.06608e-149 3.88586e-152 1.2204e-154 3.24279e-157 7.1083e-160 1.23969e-162 1.63628e-165 1.5385e-168 1.05246e-171 5.47365e-175 2.25269e-178 7.57348e-182 2.13934e-185 5.36415e-189 1.12394e-192 6.82323e-197 -9.96264e-200 -6.41421e-203 -1.6198e-108 -1.67578e-112 -3.0105e-114 -8.64262e-117 -1.36118e-119 -4.1899e-122 1.22383e-120 -6.04595e-119 2.50947e-117 -8.7876e-116 2.53969e-114 -5.87525e-113 1.05507e-111 -1.38795e-110 1.18464e-109 -4.83652e-109 -1.37687e-109 -1.8322e-110 -1.0605e-111 2.32281e-113 9.04317e-114 8.17062e-115 4.64764e-116 1.94659e-117 6.40357e-119 1.71632e-120 3.84273e-122 7.26757e-124 1.17556e-125 1.64077e-127 1.99043e-129 2.11e-131 1.96295e-133 1.60801e-135 1.16213e-137 7.41751e-140 4.20198e-142 -2.85507e-142 3.59029e-140 -3.9754e-138 3.90518e-136 -3.40252e-134 2.63314e-132 -1.80873e-130 1.09764e-128 -5.8492e-127 2.72558e-125 -1.10398e-123 3.85528e-122 -1.14836e-120 2.87642e-119 -5.94385e-118 9.86531e-117 -1.26416e-115 1.17306e-114 -6.99767e-114 1.99925e-113 -1.15165e-115 1.59286e-113 -1.82673e-113 -1.33322e-114 1.51209e-115 3.04662e-116 2.5416e-117 1.39485e-118 5.72939e-120 1.87399e-121 5.06166e-123 1.15663e-124 2.27505e-126 3.90152e-128 5.88944e-130 7.88195e-132 9.40246e-134 1.00369e-135 9.61431e-138 8.27846e-140 6.41369e-142 4.47142e-144 2.80265e-146 1.57519e-148 7.91183e-151 3.53452e-153 1.3945e-155 4.81415e-158 1.43556e-160 3.63207e-163 7.60762e-166 1.27423e-168 1.62848e-171 1.50354e-174 1.02018e-177 5.295e-181 2.1831e-184 7.37236e-188 2.09472e-191 5.23769e-195 1.10516e-198 1.01639e-202 -6.66953e-206 1.16722e-110 4.6322e-114 4.06741e-117 -4.95155e-120 -2.2836e-122 -5.50443e-125 3.34458e-124 -1.62609e-122 6.65257e-121 -2.29747e-119 6.53633e-118 -1.49111e-116 2.64208e-115 -3.42922e-114 2.88645e-113 -1.16142e-112 -3.40652e-113 -4.66469e-114 -2.8896e-115 3.43403e-117 2.16784e-117 2.07093e-118 1.22097e-119 5.27425e-121 1.78819e-122 4.95089e-124 1.14187e-125 2.22761e-127 3.72005e-129 5.36938e-131 6.74753e-133 7.42452e-135 7.1856e-137 6.13839e-139 4.6401e-141 3.10822e-143 1.85456e-145 -1.10295e-145 1.31118e-143 -1.3761e-141 1.28567e-139 -1.06875e-137 7.92146e-136 -5.22962e-134 3.05735e-132 -1.57207e-130 7.08006e-129 -2.77624e-127 9.40084e-126 -2.71934e-124 6.62444e-123 -1.33308e-121 2.15706e-120 -2.69721e-119 2.44456e-118 -1.42536e-117 3.97962e-117 -8.93152e-120 3.06922e-117 -3.43905e-117 -2.65467e-118 2.63843e-119 5.61773e-120 4.77284e-121 2.65539e-122 1.10443e-123 3.65753e-125 1.00073e-126 2.31819e-128 4.62684e-130 8.06047e-132 1.23776e-133 1.68791e-135 2.05566e-137 2.24534e-139 2.20629e-141 1.95464e-143 1.56342e-145 1.12959e-147 7.36237e-150 4.32515e-152 2.28435e-154 1.08091e-156 4.55973e-159 1.70274e-161 5.5762e-164 1.58102e-166 3.81375e-169 7.6424e-172 1.23079e-174 1.52453e-177 1.38259e-180 9.30647e-184 4.82108e-187 1.99136e-190 6.75395e-194 1.92994e-197 4.82414e-201 1.02538e-204 1.1905e-208 -1.92196e-113 1.34727e-116 2.03772e-119 2.46171e-122 9.64781e-126 -4.52477e-128 8.67178e-128 -4.15967e-126 1.68009e-124 -5.72824e-123 1.60888e-121 -3.62827e-120 6.35896e-119 -8.15567e-118 6.7848e-117 -2.69534e-116 -8.14372e-117 -1.14711e-117 -7.55432e-119 2.52736e-121 5.00763e-121 5.07364e-122 3.10244e-123 1.3827e-124 4.84041e-126 1.37841e-127 3.27123e-129 6.5712e-131 1.13122e-132 1.68516e-134 2.18907e-136 2.49438e-138 2.50485e-140 2.22507e-142 1.75332e-144 1.22789e-146 7.68281e-149 -4.0113e-149 4.53069e-147 -4.52579e-145 4.03737e-143 -3.21587e-141 2.29085e-139 -1.45733e-137 8.22314e-136 -4.08897e-134 1.78371e-132 -6.78454e-131 2.23156e-129 -6.27834e-128 1.48942e-126 -2.92279e-125 4.61686e-124 -5.63949e-123 4.99607e-122 -2.84901e-121 7.76863e-121 1.0002e-123 5.81458e-121 -6.37132e-121 -5.17512e-122 4.50971e-123 1.01823e-123 8.80559e-125 4.96222e-126 2.08798e-127 6.99434e-129 1.93647e-130 4.54217e-132 9.18694e-134 1.62347e-135 2.53178e-137 3.51122e-139 4.35624e-141 4.85686e-143 4.88337e-145 4.44075e-147 3.65475e-149 2.72341e-151 1.83803e-153 1.12244e-155 6.19403e-158 3.08084e-160 1.37614e-162 5.49162e-165 1.94397e-167 6.04727e-170 1.63236e-172 3.75865e-175 7.21444e-178 1.11844e-180 1.344e-183 1.19748e-186 7.99514e-190 4.13323e-193 1.71029e-196 5.82599e-200 1.67446e-203 4.19261e-207 8.97936e-211 -1.2243e-114 -1.12293e-117 -9.54015e-121 -7.32893e-124 -5.40858e-127 -4.06119e-130 2.1021e-131 -1.01253e-129 4.04241e-128 -1.36342e-126 3.7898e-125 -8.46966e-124 1.47013e-122 -1.86725e-121 1.53836e-120 -6.04531e-120 -1.8814e-120 -2.72559e-121 -1.89823e-122 -7.73155e-125 1.11453e-124 1.20278e-125 7.63649e-127 3.51873e-128 1.26656e-129 3.70765e-131 9.04189e-133 1.86805e-134 3.31022e-136 5.08139e-138 6.81069e-140 8.01978e-142 8.33705e-144 7.68128e-146 6.29148e-148 4.59125e-150 3.00116e-152 -1.37972e-152 1.48718e-150 -1.41933e-148 1.2136e-146 -9.29654e-145 6.38456e-143 -3.92097e-141 2.13944e-139 -1.03079e-137 4.36377e-136 -1.61297e-134 5.16228e-133 -1.41484e-131 3.2724e-130 -6.26835e-129 9.67703e-128 -1.1554e-126 1.00048e-125 -5.5766e-125 1.48867e-124 7.14686e-127 1.08412e-124 -1.1622e-124 -9.88863e-126 7.55079e-127 1.81513e-127 1.59714e-128 9.11008e-130 3.8749e-131 1.31181e-132 3.67154e-134 8.71094e-136 1.7834e-137 3.19279e-139 5.0495e-141 7.11048e-143 8.96989e-145 1.0188e-146 1.04634e-148 9.73529e-151 8.21463e-153 6.2938e-155 4.38023e-157 2.76876e-159 1.58804e-161 8.25114e-164 3.8727e-166 1.63565e-168 6.1837e-171 2.0777e-173 6.14657e-176 1.58131e-178 3.4801e-181 6.40629e-184 9.57103e-187 1.11673e-189 9.7765e-193 6.47395e-196 3.33964e-199 1.38436e-202 4.73653e-206 1.36946e-209 3.43972e-213 -1.20783e-118 -3.36255e-120 -5.07711e-123 -6.29041e-126 -6.56149e-129 -6.25145e-132 -4.94084e-136 -2.34575e-133 9.27591e-132 -3.09771e-130 8.54748e-129 -1.89658e-127 3.26725e-126 -4.11718e-125 3.3653e-124 -1.31044e-123 -4.20079e-124 -6.25844e-125 -4.59193e-126 -4.87888e-128 2.39093e-128 2.76637e-129 1.82462e-130 8.66186e-132 3.20577e-133 9.63724e-135 2.41347e-136 5.12251e-138 9.33302e-140 1.47431e-141 2.03566e-143 2.47261e-145 2.65552e-147 2.53193e-149 2.15018e-151 1.63039e-153 1.1098e-155 -4.50559e-156 4.65332e-154 -4.25819e-152 3.5019e-150 -2.58775e-148 1.71744e-146 -1.02035e-144 5.39388e-143 -2.52239e-141 1.03801e-139 -3.7344e-138 1.16457e-136 -3.11397e-135 7.02824e-134 -1.31465e-132 1.98428e-131 -2.316e-130 1.96396e-129 -1.07288e-128 2.80803e-128 2.32561e-130 1.9901e-128 -2.08854e-128 -1.85418e-129 1.23803e-130 3.18402e-131 2.84961e-132 1.64424e-133 7.0646e-135 2.41515e-136 6.82745e-138 1.63691e-139 3.38879e-141 6.13948e-143 9.8348e-145 1.40436e-146 1.79883e-148 2.0787e-150 2.17473e-152 2.06411e-154 1.78092e-156 1.39863e-158 1.00073e-160 6.52326e-163 3.872e-165 2.09032e-167 1.02442e-169 4.54425e-172 1.81728e-174 6.51567e-177 2.08027e-179 5.86118e-182 1.43935e-184 3.03129e-187 5.35739e-190 7.7209e-193 8.75371e-196 7.53101e-199 4.94566e-202 2.54557e-205 1.05704e-208 3.63281e-212 1.05665e-215 -4.47326e-120 -5.17691e-123 -1.05002e-125 -1.9709e-128 -2.80949e-131 -3.49845e-134 -3.62277e-137 -5.17501e-137 2.03196e-135 -6.74236e-134 1.8471e-132 -4.07645e-131 6.98261e-130 -8.74585e-129 7.10406e-128 -2.74613e-127 -9.07113e-128 -1.38991e-128 -1.07175e-129 -1.76952e-131 4.95112e-132 6.15884e-133 4.21742e-134 2.06351e-135 7.84839e-137 2.42201e-138 6.22488e-140 1.35619e-141 2.53795e-143 4.12101e-145 5.85391e-147 7.32317e-149 8.11078e-151 7.98697e-153 7.01686e-155 5.51459e-157 3.89797e-159 -1.40154e-159 1.39208e-157 -1.22541e-155 9.72189e-154 -6.94756e-152 4.46573e-150 -2.57195e-148 1.3197e-146 -5.99962e-145 2.40327e-143 -8.42301e-142 2.5603e-140 -6.68132e-139 1.47335e-137 -2.69727e-136 3.98724e-135 -4.56007e-134 3.79097e-133 -2.03122e-132 5.21574e-132 6.1174e-134 3.59899e-132 -3.69925e-132 -3.41493e-133 1.98683e-134 5.49861e-135 5.00394e-136 2.91918e-137 1.26621e-138 4.36834e-140 1.24634e-141 3.01702e-143 6.31005e-145 1.15578e-146 1.87348e-148 2.7107e-150 3.52224e-152 4.13101e-154 4.39054e-156 4.24075e-158 3.73306e-160 2.99841e-162 2.20006e-164 1.4743e-166 9.02104e-169 5.03758e-171 2.56409e-173 1.18703e-175 4.982e-178 1.8884e-180 6.43231e-183 1.95484e-185 5.25232e-188 1.23255e-190 2.4866e-193 4.22346e-196 5.87681e-199 6.47907e-202 5.47847e-205 3.56759e-208 1.83198e-211 7.62046e-215 2.63045e-218 3.17763e-122 1.41763e-125 3.81563e-129 -1.91302e-131 -5.13463e-134 -9.34716e-137 -1.2963e-139 -1.09864e-140 4.25543e-139 -1.40357e-137 3.8247e-136 -8.41109e-135 1.43555e-133 -1.79045e-132 1.44819e-131 -5.56952e-131 -1.89917e-131 -2.99661e-132 -2.41636e-133 -5.27659e-135 9.84077e-136 1.32655e-136 9.4371e-138 4.75746e-139 1.85929e-140 5.88771e-142 1.55218e-143 3.46901e-145 6.66212e-147 1.11088e-148 1.62165e-150 2.08659e-152 2.3796e-154 2.41592e-156 2.19145e-158 1.78116e-160 1.30416e-162 -4.16499e-163 3.99213e-161 -3.39024e-159 2.60139e-157 -1.80173e-155 1.12384e-153 -6.2867e-152 3.13656e-150 -1.38783e-148 5.41138e-147 -1.84713e-145 5.48739e-144 -1.40094e-142 3.02485e-141 -5.42548e-140 7.86238e-139 -8.82093e-138 7.19625e-137 -3.78541e-136 9.54482e-136 1.44453e-137 6.41479e-136 -6.46096e-136 -6.18302e-137 3.11849e-138 9.353e-139 8.65256e-140 5.10089e-141 2.23245e-142 7.76795e-144 2.23539e-145 5.46e-147 1.1531e-148 2.13462e-150 3.49881e-152 5.12096e-154 6.73346e-156 7.99455e-158 8.6225e-160 8.46668e-162 7.58783e-164 6.21942e-166 4.66885e-168 3.20706e-170 2.0164e-172 1.16033e-174 6.10582e-177 2.9334e-179 1.28428e-181 5.10949e-184 1.83948e-186 5.96094e-189 1.72641e-191 4.4282e-194 9.94014e-197 1.92286e-199 3.14161e-202 4.22433e-205 4.53179e-208 3.7667e-211 2.43208e-214 1.24586e-217 5.19019e-221 -4.10714e-125 3.06761e-128 5.24323e-131 4.92943e-134 8.72542e-138 -8.58225e-140 -2.20918e-142 -2.47532e-144 8.50673e-143 -2.79732e-141 7.59596e-140 -1.66627e-138 2.84008e-137 -3.53692e-136 2.85996e-135 -1.09662e-134 -3.84797e-135 -6.24082e-136 -5.25466e-137 -1.40512e-138 1.8758e-139 2.76369e-140 2.04428e-141 1.06186e-142 4.2629e-144 1.38494e-145 3.74351e-147 8.57835e-149 1.68944e-150 2.89043e-152 4.33197e-154 5.72677e-156 6.71601e-158 7.0193e-160 6.56278e-162 5.50582e-164 4.16697e-166 -1.18545e-166 1.09994e-164 -9.03457e-163 6.71972e-161 -4.51909e-159 2.74019e-157 -1.49135e-155 7.24433e-154 -3.11853e-152 1.18422e-150 -3.95258e-149 1.14929e-147 -2.87418e-146 6.08418e-145 -1.07041e-143 1.52218e-142 -1.67696e-141 1.34392e-140 -6.94669e-140 1.72141e-139 3.18382e-141 1.12734e-139 -1.11319e-139 -1.1014e-140 4.78187e-142 1.56784e-142 1.47411e-143 8.77774e-145 3.87436e-146 1.35923e-147 3.94539e-149 9.7245e-151 2.07254e-152 3.87071e-154 6.40316e-156 9.45744e-158 1.25684e-159 1.51113e-161 1.65108e-163 1.64535e-165 1.49902e-167 1.25212e-169 9.5873e-172 6.73361e-174 4.33808e-176 2.56349e-178 1.38872e-180 6.89693e-183 3.13459e-185 1.3008e-187 4.91348e-190 1.6822e-192 5.19206e-195 1.43452e-197 3.5161e-200 7.55692e-203 1.40298e-205 2.20688e-208 2.86995e-211 2.99781e-214 2.44961e-217 1.5681e-220 8.01038e-224 -2.00586e-126 -1.9663e-129 -1.79733e-132 -1.4644e-135 -1.1772e-138 -9.73168e-142 -7.76759e-145 -1.07154e-147 1.6252e-146 -5.33207e-145 1.44638e-143 -3.16988e-142 5.41502e-141 -6.76559e-140 5.46111e-139 -2.08551e-138 -7.53871e-139 -1.25697e-139 -1.10244e-140 -3.45056e-142 3.41922e-143 5.56891e-144 4.28747e-145 2.29496e-146 9.46248e-148 3.15317e-149 8.73608e-151 2.0516e-152 4.14136e-154 7.2645e-156 1.1169e-157 1.51556e-159 1.82569e-161 1.96177e-163 1.88775e-165 1.63196e-167 1.27426e-169 -3.23872e-170 2.91746e-168 -2.32292e-166 1.67796e-164 -1.09752e-162 6.47896e-161 -3.43516e-159 1.62426e-157 -6.80734e-156 2.52781e-154 -8.26169e-153 2.35403e-151 -5.77318e-150 1.19951e-148 -2.07234e-147 2.89486e-146 -3.13469e-145 2.47001e-144 -1.25569e-143 3.06049e-143 6.67451e-145 1.95403e-143 -1.89263e-143 -1.93154e-144 7.15108e-146 2.59142e-146 2.47604e-147 1.48872e-148 6.62588e-150 2.3449e-151 6.86613e-153 1.70479e-154 3.66028e-156 6.88898e-158 1.14761e-159 1.71073e-161 2.29673e-163 2.79197e-165 3.08784e-167 3.11845e-169 2.8866e-171 2.4501e-173 1.90985e-175 1.36788e-177 9.00371e-180 5.44597e-182 3.03055e-184 1.55017e-186 7.28275e-189 3.13657e-191 1.23546e-193 4.43622e-196 1.44598e-198 4.25519e-201 1.12265e-203 2.63192e-206 5.42074e-209 9.66696e-212 1.46522e-214 1.84428e-217 1.87688e-220 1.50797e-223 9.56633e-227 -2.41852e-129 -6.52429e-132 -8.89028e-135 -1.10457e-137 -1.19421e-140 -1.20037e-143 -8.31122e-147 -4.47132e-150 2.96088e-150 -9.73123e-149 2.64053e-147 -5.79837e-146 9.96904e-145 -1.24848e-143 1.00697e-142 -3.83565e-142 -1.42752e-142 -2.44669e-143 -2.23199e-144 -7.94133e-146 5.93994e-147 1.0852e-147 8.70622e-149 4.80329e-150 2.0339e-151 6.94995e-153 1.97331e-154 4.7475e-156 9.81828e-158 1.76472e-159 2.78134e-161 3.87084e-163 4.78517e-165 5.28058e-167 5.22305e-169 4.6461e-171 3.73658e-173 -8.50976e-174 7.46186e-172 -5.77069e-170 4.05519e-168 -2.58342e-166 1.48631e-164 -7.67695e-163 3.53398e-161 -1.44838e-159 5.26777e-158 -1.68789e-156 4.71838e-155 -1.13605e-153 2.31918e-152 -3.93863e-151 5.41017e-150 -5.76366e-149 4.46937e-148 -2.23654e-147 5.36564e-147 1.3452e-148 3.34148e-147 -3.17619e-147 -3.33649e-148 1.04014e-149 4.22506e-150 4.10271e-151 2.49046e-152 1.1184e-153 3.99229e-155 1.17684e-156 2.94155e-158 6.35574e-160 1.20275e-161 2.01972e-163 3.03551e-165 4.11267e-167 5.05021e-169 5.64758e-171 5.77987e-173 5.42149e-175 4.66918e-177 3.69723e-179 2.69348e-181 1.8065e-183 1.11699e-185 6.36586e-188 3.34414e-190 1.61796e-192 7.20146e-195 2.94317e-197 1.10172e-199 3.76496e-202 1.16956e-204 3.28472e-207 8.2828e-210 1.85891e-212 3.67207e-215 6.29541e-218 9.20189e-221 1.12191e-223 1.113e-226 8.78987e-230 -3.89466e-132 -9.29676e-135 -1.84124e-137 -3.19185e-140 -4.50154e-143 -5.71683e-146 -4.82097e-149 -3.10033e-152 4.98476e-154 -1.69915e-152 4.62643e-151 -1.02084e-149 1.76883e-148 -2.22185e-147 1.79207e-146 -6.81379e-146 -2.61197e-146 -4.60245e-147 -4.36099e-148 -1.72856e-149 9.78305e-151 2.04463e-151 1.71162e-152 9.73592e-154 4.2339e-155 1.48333e-156 4.3151e-158 1.06328e-159 2.252e-161 4.14575e-163 6.69383e-165 9.54808e-167 1.21032e-168 1.37036e-170 1.39172e-172 1.27224e-174 1.05238e-176 -2.15389e-177 1.84292e-175 -1.38673e-173 9.49377e-172 -5.8958e-170 3.30524e-168 -1.66356e-166 7.48881e-165 -3.00691e-163 1.07248e-161 -3.37282e-160 9.25997e-159 -2.19115e-157 4.39931e-156 -7.35146e-155 9.93952e-154 -1.04275e-152 7.96453e-152 -3.92647e-151 9.27941e-151 2.62416e-152 5.63934e-151 -5.2628e-151 -5.67943e-152 1.46538e-153 6.79652e-154 6.70824e-155 4.11347e-156 1.86463e-157 6.70126e-159 1.9875e-160 4.9959e-162 1.08434e-163 2.06598e-165 3.49307e-167 5.28983e-169 7.22588e-171 8.95476e-173 1.01241e-174 1.04797e-176 9.94662e-179 8.67675e-181 6.96431e-183 5.15053e-185 3.51648e-187 2.21701e-189 1.29123e-191 6.94638e-194 3.45071e-196 1.58147e-198 6.67808e-201 2.59312e-203 9.23551e-206 3.00685e-208 8.91064e-211 2.39057e-213 5.76648e-216 1.23995e-218 2.35115e-221 3.87821e-224 5.4711e-227 6.4658e-230 6.25292e-233 6.40734e-134 4.58873e-137 2.94828e-140 -5.60017e-144 -5.23228e-146 -1.13638e-148 -1.42895e-151 -1.2525e-154 -5.81783e-159 -2.84158e-156 7.7796e-155 -1.73237e-153 3.02057e-152 -3.80694e-151 3.07522e-150 -1.16883e-149 -4.61591e-150 -8.36415e-151 -8.22376e-152 -3.57853e-153 1.51538e-154 3.72362e-155 3.25752e-156 1.911e-157 8.53557e-159 3.06587e-160 9.13629e-162 2.30541e-163 4.99901e-165 9.42211e-167 1.55772e-168 2.27592e-170 2.95623e-172 3.43144e-174 3.57487e-176 3.35475e-178 2.85066e-180 -5.25851e-181 4.4001e-179 -3.22564e-177 2.15263e-175 -1.30257e-173 7.12811e-172 -3.50909e-170 1.54757e-168 -6.09534e-167 2.13449e-165 -6.59529e-164 1.78015e-162 -4.14388e-161 8.19048e-160 -1.34798e-158 1.79561e-157 -1.85675e-156 1.39817e-155 -6.79658e-155 1.58355e-154 4.97781e-156 9.39692e-155 -8.6135e-155 -9.53215e-156 1.98718e-157 1.07902e-157 1.0832e-158 6.71736e-160 3.06777e-161 1.10894e-162 3.30425e-164 8.34522e-166 1.82253e-167 3.49281e-169 5.94363e-171 9.0624e-173 1.24721e-174 1.55947e-176 1.78059e-178 1.86039e-180 1.78433e-182 1.57348e-184 1.27843e-186 9.59238e-189 6.65324e-191 4.26936e-193 2.53535e-195 1.39357e-197 7.08835e-200 3.33484e-202 1.44973e-204 5.81506e-207 2.14783e-209 7.28582e-212 2.26213e-214 6.40106e-217 1.64187e-219 3.79178e-222 7.81822e-225 1.42416e-227 2.26199e-230 3.08202e-233 3.53082e-236 8.59167e-136 2.64478e-139 -5.6845e-142 -1.5879e-144 -2.15315e-147 -2.06205e-150 -3.75783e-154 1.04772e-156 1.57928e-159 -4.53511e-160 1.259e-158 -2.82985e-157 4.95565e-156 -6.27436e-155 5.08347e-154 -1.93412e-153 -7.87431e-154 -1.46799e-154 -1.49663e-155 -7.07182e-157 2.17791e-158 6.55251e-159 6.00062e-160 3.63202e-161 1.66641e-162 6.13677e-164 1.87315e-165 4.83941e-167 1.07416e-168 2.07224e-170 3.50661e-172 5.24492e-174 6.9768e-176 8.29646e-178 8.85905e-180 8.52626e-182 7.43448e-184 -1.23949e-184 1.01588e-182 -7.25632e-181 4.72153e-179 -2.79295e-177 1.49563e-175 -7.21297e-174 3.12051e-172 -1.20708e-170 4.15454e-169 -1.2625e-167 3.35337e-166 -7.68654e-165 1.49698e-163 -2.42867e-162 3.19034e-161 -3.25461e-160 2.41837e-159 -1.16019e-158 2.66723e-158 9.21197e-160 1.54665e-158 -1.39319e-158 -1.57854e-159 2.56748e-161 1.692e-161 1.7301e-162 1.08335e-163 4.97135e-165 1.80626e-166 5.41249e-168 1.37459e-169 3.01817e-171 5.81721e-173 9.95741e-175 1.52787e-176 2.11899e-178 2.67101e-180 3.07216e-182 3.23667e-184 3.13036e-186 2.78857e-188 2.29259e-190 1.74251e-192 1.22609e-194 7.99331e-197 4.83086e-199 2.70712e-201 1.40663e-203 6.77493e-206 3.02279e-208 1.248e-210 4.76057e-213 1.67431e-215 5.41478e-218 1.60475e-220 4.33964e-223 1.06511e-225 2.35689e-228 4.66344e-231 8.1667e-234 1.24989e-236 1.64502e-239 3.97386e-133 5.90393e-136 6.23188e-139 4.07409e-142 2.90089e-146 -5.26179e-148 -9.39652e-151 -9.03026e-154 -6.96073e-157 -4.85573e-160 1.63486e-162 -4.43366e-161 7.80306e-160 -9.9384e-159 8.08826e-158 -3.08516e-157 -1.29589e-157 -2.48714e-158 -2.62802e-159 -1.33719e-160 2.83102e-162 1.11367e-162 1.06964e-163 6.68282e-165 3.15012e-166 1.18946e-167 3.71874e-169 9.83573e-171 2.23445e-172 4.41102e-174 7.63797e-176 1.16905e-177 1.5917e-179 1.93788e-181 2.11939e-183 2.09009e-185 1.86812e-187 -2.82052e-188 2.26503e-186 -1.5792e-184 1.0053e-182 -5.8232e-181 3.05566e-179 -1.44561e-177 6.14277e-176 -2.33616e-174 7.91074e-173 -2.36652e-171 6.19136e-170 -1.39871e-168 2.68642e-167 -4.30017e-166 5.57542e-165 -5.61627e-164 4.12175e-163 -1.95323e-162 4.43465e-162 1.66701e-163 2.51521e-162 -2.22776e-162 -2.5808e-163 3.10156e-165 2.62048e-165 2.72619e-166 1.72168e-167 7.95119e-169 2.90384e-170 8.74543e-172 2.2325e-173 4.92779e-175 9.54899e-177 1.64388e-178 2.54074e-180 3.54574e-182 4.49586e-184 5.20381e-186 5.51713e-188 5.38136e-190 4.83948e-192 4.02131e-194 3.09259e-196 2.20438e-198 1.45783e-200 8.95083e-203 5.10414e-205 2.70354e-207 1.32998e-209 6.07396e-212 2.57329e-214 1.01015e-216 3.66829e-219 1.22968e-221 3.79485e-224 1.07442e-226 2.77893e-229 6.53131e-232 1.3858e-234 2.63312e-237 4.43638e-240 6.54362e-243 -8.089e-131 1.82342e-134 1.16262e-136 2.37383e-139 3.51361e-142 4.58823e-145 3.31657e-148 2.1513e-151 1.39649e-154 9.46397e-158 6.36726e-161 3.16171e-164 1.17859e-163 -1.51048e-162 1.23705e-161 -4.74056e-161 -2.05662e-161 -4.06625e-162 -4.45143e-163 -2.42307e-164 3.14018e-166 1.82725e-166 1.8446e-167 1.19017e-168 5.76494e-170 2.23212e-171 7.14818e-173 1.93538e-174 4.49977e-176 9.08889e-178 1.61008e-179 2.52093e-181 3.51159e-183 4.3749e-185 4.89709e-187 4.94427e-189 4.52384e-191 -6.18752e-192 4.88535e-190 -3.33446e-188 2.07995e-186 -1.18133e-184 6.08255e-183 -2.82646e-181 1.18098e-179 -4.42027e-178 1.47401e-176 -4.34481e-175 1.12061e-173 -2.49722e-172 4.73395e-171 -7.48262e-170 9.58386e-169 -9.54099e-168 6.92181e-167 -3.24301e-166 7.27822e-166 2.95466e-167 4.04182e-166 -3.52192e-166 -4.16434e-167 3.34797e-169 4.01131e-169 4.24661e-170 2.70298e-171 1.25549e-172 4.60753e-174 1.39427e-175 3.57659e-177 7.93461e-179 1.54599e-180 2.68029e-182 4.16371e-184 5.83997e-186 7.43878e-188 8.65337e-190 9.23772e-192 9.07842e-194 8.23489e-196 6.90838e-198 5.3696e-200 3.87246e-202 2.59425e-204 1.61571e-206 9.35966e-209 5.04436e-211 2.52933e-213 1.17967e-215 5.11489e-218 2.05999e-220 7.6967e-223 2.66335e-225 8.51711e-228 2.51018e-230 6.79475e-233 1.6821e-235 3.78847e-238 7.71288e-241 1.4084e-243 2.28331e-246 -5.23087e-128 -5.94322e-131 -6.65119e-134 -7.10862e-137 -7.34393e-140 -7.49179e-143 -4.20545e-146 -3.00932e-149 -2.4371e-152 -1.76789e-155 -9.41506e-159 -1.74534e-162 3.54368e-165 -2.14108e-166 1.81681e-165 -7.01327e-165 -3.1464e-165 -6.41253e-166 -7.27081e-167 -4.21212e-168 2.44793e-170 2.89257e-170 3.0765e-171 2.05108e-172 1.02115e-173 4.05481e-175 1.33018e-176 3.68679e-178 8.7716e-180 1.81269e-181 3.28475e-183 5.26021e-185 7.49382e-187 9.54887e-189 1.09327e-190 1.12867e-192 1.05519e-194 -1.31143e-195 1.02164e-193 -6.83698e-192 4.18445e-190 -2.33331e-188 1.18031e-186 -5.39356e-185 2.2183e-183 -8.1792e-182 2.68838e-180 -7.81462e-179 1.98864e-177 -4.3749e-176 8.19203e-175 -1.27961e-173 1.62035e-172 -1.59553e-171 1.14524e-170 -5.30973e-170 1.17901e-169 5.13549e-171 6.41826e-170 -5.50107e-170 -6.62426e-171 2.89471e-173 6.07237e-173 6.5349e-174 4.19113e-175 1.95748e-176 7.21724e-178 2.1938e-179 5.65342e-181 1.26047e-182 2.4731e-184 4.30859e-186 6.72324e-188 9.46377e-190 1.21066e-191 1.41605e-193 1.52081e-195 1.50482e-197 1.37545e-199 1.16384e-201 9.13257e-204 6.65604e-206 4.51124e-208 2.84601e-210 1.67227e-212 9.15516e-215 4.67055e-217 2.22008e-219 9.82921e-222 4.05083e-224 1.55251e-226 5.52617e-229 1.82376e-231 5.56821e-234 1.56845e-236 4.06203e-239 9.63171e-242 2.08019e-244 4.06667e-247 7.13669e-250 2.98756e-127 -1.42335e-130 -6.28553e-133 -7.30971e-136 3.12307e-139 3.28311e-141 6.72242e-144 7.27292e-147 4.87999e-150 1.30571e-153 -1.72597e-156 -3.42693e-159 -3.8559e-162 -3.46509e-165 -2.46675e-168 -1.00195e-168 -4.63995e-169 -9.74963e-170 -1.14466e-170 -7.0283e-172 -3.65933e-175 4.41494e-174 4.96079e-175 3.41948e-176 1.75026e-177 7.12845e-179 2.39569e-180 6.79769e-182 1.65499e-183 3.49909e-185 6.48532e-187 1.06208e-188 1.54698e-190 2.0152e-192 2.35729e-194 2.48373e-196 2.37471e-198 -2.69158e-199 2.07335e-197 -1.36227e-195 8.1908e-194 -4.48942e-192 2.23378e-190 -1.0049e-188 4.07239e-187 -1.48054e-185 4.80066e-184 -1.37727e-182 3.46078e-181 -7.52175e-180 1.39223e-178 -2.15065e-177 2.69446e-176 -2.62638e-175 1.8668e-174 -8.57285e-174 1.88527e-173 8.76357e-175 1.00776e-173 -8.48914e-174 -1.04292e-174 9.75112e-178 9.08088e-177 9.93535e-178 6.41902e-179 3.01388e-180 1.11615e-181 3.4072e-183 8.81995e-185 1.97746e-186 3.9032e-188 6.82783e-190 1.06886e-191 1.51056e-193 1.94131e-195 2.28191e-197 2.46419e-199 2.45317e-201 2.25763e-203 1.92494e-205 1.52342e-207 1.12085e-209 7.67668e-212 4.89938e-214 2.91594e-216 1.61916e-218 8.39042e-221 4.05751e-223 1.83072e-225 7.7031e-228 3.02051e-230 1.10264e-232 3.74232e-235 1.17884e-237 3.4389e-240 9.26478e-243 2.29731e-245 5.22103e-248 1.08208e-250 2.0308e-253 2.41296e-124 2.28355e-127 -3.35974e-131 -8.44476e-133 -1.98435e-135 -3.35659e-138 -2.67919e-141 -9.75837e-145 6.89808e-148 1.72558e-150 2.06731e-153 1.92607e-156 1.55763e-159 1.14558e-162 7.83865e-166 5.03385e-169 2.36863e-172 -1.41158e-173 -1.7359e-174 -1.12594e-175 -7.00314e-178 6.49197e-178 7.73046e-179 5.51313e-180 2.9021e-181 1.21254e-182 4.17504e-184 1.21283e-185 3.02156e-187 6.53556e-189 1.23895e-190 2.07467e-192 3.08881e-194 4.10924e-196 4.90139e-198 5.278e-200 5.16093e-202 -5.35401e-203 4.08604e-201 -2.63918e-199 1.56074e-197 -8.41832e-196 4.12469e-194 -1.82868e-192 7.3091e-191 -2.62238e-189 8.39537e-188 -2.37905e-186 5.90737e-185 -1.26937e-183 2.32407e-182 -3.55288e-181 4.40736e-180 -4.2561e-179 2.99898e-178 -1.36622e-177 2.98069e-177 1.47145e-178 1.56152e-177 -1.29527e-177 -1.62084e-178 -3.70726e-181 1.34158e-180 1.49257e-181 9.71263e-183 4.58316e-184 1.70438e-185 5.22353e-187 1.35813e-188 3.06566e-190 6.06956e-192 1.06571e-193 1.67508e-195 2.37744e-197 3.06881e-199 3.62383e-201 3.9328e-203 3.93672e-205 3.64513e-207 3.12926e-209 2.49548e-211 1.85165e-213 1.28014e-215 8.25541e-218 4.97028e-220 2.7954e-222 1.46919e-224 7.21657e-227 3.31238e-229 1.42013e-231 5.68419e-234 2.1225e-236 7.38626e-239 2.39227e-241 7.19854e-244 2.00797e-246 5.1778e-249 1.23006e-251 2.68111e-254 5.32908e-257 5.26932e-122 2.58368e-124 4.67804e-127 6.50333e-130 7.26701e-133 5.63704e-136 -2.87371e-139 -8.23471e-142 -9.97945e-145 -9.29944e-148 -7.53746e-151 -5.6008e-154 -3.91866e-157 -2.60496e-160 -1.63506e-163 -9.4791e-167 -4.81137e-170 -1.8304e-173 -1.26409e-177 -9.8053e-180 -1.87406e-181 9.18884e-182 1.16356e-182 8.59241e-184 4.65338e-185 1.99494e-186 7.03833e-188 2.09332e-189 5.33672e-191 1.18083e-192 2.28938e-194 3.91919e-196 5.95917e-198 8.08044e-200 9.84575e-202 1.08383e-203 1.08364e-205 -1.03282e-206 7.82344e-205 -4.97346e-203 2.89613e-201 -1.53897e-199 7.43342e-198 -3.25121e-196 1.28286e-194 -4.54623e-193 1.43818e-191 -4.02871e-190 9.89283e-189 -2.10318e-187 3.81167e-186 -5.77086e-185 7.09419e-184 -6.7958e-183 4.75564e-182 -2.15122e-181 4.65302e-181 2.42404e-182 2.38678e-181 -1.95245e-181 -2.48738e-182 -1.32184e-184 1.95827e-184 2.21612e-185 1.45226e-186 6.88506e-188 2.56976e-189 7.90205e-191 2.06493e-192 4.68221e-194 9.30786e-196 1.64096e-197 2.59018e-199 3.69156e-201 4.78508e-203 5.67482e-205 6.18678e-207 6.22382e-209 5.79463e-211 5.00517e-213 4.01885e-215 3.00475e-217 2.09493e-219 1.36368e-221 8.29604e-224 4.72035e-226 2.51309e-228 1.25199e-230 5.83578e-233 2.54453e-235 1.03748e-237 3.95356e-240 1.40704e-242 4.67166e-245 1.44504e-247 4.15667e-250 1.1094e-252 2.73965e-255 6.23897e-258 1.30314e-260 -9.05541e-119 -7.03896e-122 -3.76037e-125 5.08866e-128 1.88988e-130 4.00082e-133 4.49164e-136 3.88889e-139 2.98403e-142 2.15641e-145 1.51591e-148 1.04521e-151 6.95186e-155 4.29677e-158 2.30625e-161 8.90977e-165 -2.05491e-169 -5.19614e-171 -7.15978e-174 -7.19048e-177 -6.20235e-180 -4.83246e-183 -1.81891e-186 1.26999e-187 7.21119e-189 3.17374e-190 1.14747e-191 3.49409e-193 9.11489e-195 2.06287e-196 4.08946e-198 7.15117e-200 1.10843e-201 1.53509e-203 1.91179e-205 2.1513e-207 2.19891e-209 -1.93302e-210 1.45582e-208 -9.11936e-207 5.23492e-205 -2.74361e-203 1.30779e-201 -5.6486e-200 2.20236e-198 -7.71575e-197 2.41391e-195 -6.68969e-194 1.62578e-192 -3.42224e-191 6.14412e-190 -9.22042e-189 1.1246e-187 -1.0704e-186 7.43898e-186 -3.33865e-185 7.15754e-185 3.91715e-186 3.60063e-185 -2.90683e-185 -3.76798e-186 -3.07726e-188 2.82378e-188 3.25188e-189 2.14538e-190 1.02098e-191 3.82106e-193 1.17957e-194 3.10187e-196 7.05875e-198 1.40893e-199 2.49403e-201 3.95295e-203 5.6569e-205 7.36224e-207 8.76684e-209 9.59845e-211 9.70018e-213 9.07675e-215 7.884e-217 6.36983e-219 4.79549e-221 3.36913e-223 2.21179e-225 1.35827e-227 7.80956e-230 4.2058e-232 2.12179e-234 1.00279e-236 4.43953e-239 1.84069e-241 7.14449e-244 2.59455e-246 8.80841e-249 2.79253e-251 8.25531e-254 2.27146e-256 5.80387e-259 1.37337e-261 2.99525e-264 -2.67462e-116 -3.89358e-119 -5.67604e-122 -7.90864e-125 -1.06121e-127 -1.37039e-130 -8.6522e-134 -5.56646e-137 -3.86672e-140 -2.89615e-143 -2.18838e-146 -1.53041e-149 -8.98752e-153 -3.49949e-156 6.16393e-160 3.16968e-162 4.32725e-165 4.45995e-168 3.97794e-171 3.22254e-174 2.42565e-177 1.71607e-180 1.14643e-183 7.22625e-187 4.2792e-190 2.81446e-193 1.92169e-195 5.64294e-197 1.50481e-198 3.48206e-200 7.05143e-202 1.25747e-203 1.99125e-205 2.8189e-207 3.58871e-209 4.12807e-211 4.31305e-213 -3.51132e-214 2.63357e-212 -1.62737e-210 9.2192e-209 -4.77061e-207 2.24649e-205 -9.59159e-204 3.69877e-202 -1.28218e-200 3.97044e-199 -1.08946e-197 2.62249e-196 -5.4702e-195 9.73709e-194 -1.44984e-192 1.75676e-191 -1.66142e-190 1.14618e-189 -5.103e-189 1.0832e-188 6.21893e-190 5.35893e-189 -4.27248e-189 -5.63183e-190 -6.11772e-192 4.02031e-192 4.71364e-193 3.12953e-194 1.49399e-195 5.61287e-197 1.74312e-198 4.59907e-200 1.05063e-201 2.10527e-203 3.74177e-205 5.95477e-207 8.556e-209 1.11794e-210 1.33648e-212 1.46917e-214 1.49111e-216 1.40178e-218 1.22384e-220 9.94446e-223 7.53415e-225 5.33035e-227 3.52635e-229 2.18393e-231 1.26736e-233 6.89521e-236 3.51803e-238 1.68352e-240 7.55656e-243 3.18096e-245 1.25541e-247 4.64313e-250 1.60827e-252 5.21257e-255 1.57903e-257 4.46402e-260 1.17557e-262 2.87727e-265 6.51726e-268 -5.80787e-116 -5.00441e-119 -9.52582e-122 -2.43045e-124 -3.36972e-127 6.41606e-131 1.97028e-132 4.19618e-135 5.27546e-138 4.82497e-141 3.26598e-144 1.3111e-147 -4.38295e-151 -1.65569e-153 -2.27631e-156 -2.40346e-159 -2.2051e-162 -1.84219e-165 -1.43379e-168 -1.05192e-171 -7.30815e-175 -4.80083e-178 -2.9576e-181 -1.67795e-184 -8.42803e-188 -3.36593e-191 -5.84756e-195 7.2707e-198 1.19438e-200 1.7295e-203 1.26781e-205 2.14234e-207 3.4571e-209 5.00322e-211 6.51198e-213 7.65765e-215 8.17801e-217 -6.19226e-218 4.63226e-216 -2.82673e-214 1.58204e-212 -8.09139e-211 3.76807e-209 -1.5919e-207 6.0773e-206 -2.08639e-204 6.40047e-203 -1.74037e-201 4.15287e-200 -8.59077e-199 1.51742e-197 -2.24411e-196 2.70293e-195 -2.53914e-194 1.73853e-193 -7.66842e-193 1.61517e-192 9.70116e-194 7.86742e-193 -6.19749e-193 -8.3026e-194 -1.1139e-195 5.64855e-196 6.74664e-197 4.50839e-198 2.16278e-199 8.1629e-201 2.54311e-202 6.73381e-204 1.54377e-205 3.10543e-207 5.54148e-209 8.85463e-211 1.27736e-212 1.67556e-214 2.01084e-216 2.21911e-218 2.26139e-220 2.13518e-222 1.873e-224 1.52989e-226 1.16576e-228 8.29995e-231 5.52914e-233 3.45041e-235 2.01906e-237 1.10865e-239 5.71461e-242 2.76581e-244 1.25707e-246 5.36516e-249 2.14976e-251 8.08348e-254 2.85104e-256 9.42587e-259 2.91852e-261 8.45295e-264 2.28661e-266 5.76658e-269 1.35037e-271 -1.46637e-113 2.27171e-116 4.38774e-119 -6.56277e-122 -4.32635e-124 -1.34105e-126 -2.10507e-129 -2.05215e-132 -1.41227e-135 -5.56428e-139 2.22688e-142 7.72236e-145 1.06001e-147 1.12861e-150 1.05028e-153 8.94696e-157 7.141e-160 5.4031e-163 3.89086e-166 2.65857e-169 1.70479e-172 1.00246e-175 5.14095e-179 1.98285e-182 1.33207e-186 -7.944e-189 -1.12785e-191 -1.12085e-194 -9.51559e-198 -7.32117e-201 -5.2359e-204 -3.52524e-207 -2.24447e-210 -1.27977e-213 3.54101e-217 1.32998e-218 1.49675e-220 -1.06041e-221 7.92312e-220 -4.77951e-218 2.64531e-216 -1.33859e-214 6.17081e-213 -2.58212e-211 9.76808e-210 -3.32419e-208 1.01116e-206 -2.727e-205 6.45611e-204 -1.32561e-202 2.32552e-201 -3.41889e-200 4.09367e-199 -3.81915e-198 2.59122e-197 -1.13476e-196 2.37363e-196 1.4875e-197 1.13919e-196 -8.87075e-197 -1.20712e-197 -1.91219e-199 7.83223e-200 9.54183e-201 6.43004e-202 3.09657e-203 1.17215e-204 3.66411e-206 9.73405e-208 2.23946e-209 4.52196e-211 8.10122e-213 1.29969e-214 1.8824e-216 2.47885e-218 2.98622e-220 3.30804e-222 3.3842e-224 3.20843e-226 2.82689e-228 2.32012e-230 1.77719e-232 1.2726e-234 8.53114e-237 5.36068e-239 3.16075e-241 1.75011e-243 9.10503e-246 4.45251e-248 2.04704e-250 8.84743e-253 3.59403e-255 1.37182e-257 4.91819e-260 1.65539e-262 5.22743e-265 1.54724e-267 4.2871e-270 1.11037e-272 2.67766e-275 -1.99796e-110 1.9401e-113 9.01842e-116 2.45269e-118 4.89665e-121 8.11335e-124 5.00591e-127 1.25893e-130 -1.80661e-133 -3.74473e-136 -4.61163e-139 -4.67873e-142 -4.2592e-145 -3.61329e-148 -2.91496e-151 -2.25879e-154 -1.68316e-157 -1.19749e-160 -7.99858e-164 -4.8566e-167 -2.49682e-170 -8.48384e-174 1.90076e-177 7.4651e-180 9.57744e-183 9.49879e-186 8.24795e-189 6.55039e-192 4.85652e-195 3.39813e-198 2.25709e-201 1.42664e-204 8.5773e-208 4.88725e-211 2.61722e-214 1.29534e-217 5.71579e-221 1.85828e-224 1.3177e-223 -7.86483e-222 4.30875e-220 -2.15928e-218 9.86353e-217 -4.09193e-215 1.53538e-213 -5.18437e-212 1.56513e-210 -4.1904e-209 9.85178e-208 -2.00963e-206 3.50467e-205 -5.12525e-204 6.10089e-203 -5.64292e-202 3.80133e-201 -1.65429e-200 3.4384e-200 2.24257e-201 1.62691e-200 -1.25281e-200 -1.73088e-201 -3.14163e-203 1.07347e-203 1.33505e-204 9.05701e-206 4.37834e-207 1.6625e-208 5.21297e-210 1.38935e-211 3.20738e-213 6.50046e-215 1.16913e-216 1.88314e-218 2.73828e-220 3.61996e-222 4.37744e-224 4.86734e-226 4.99817e-228 4.75705e-230 4.20872e-232 3.46969e-234 2.6707e-236 1.92257e-238 1.29629e-240 8.19722e-243 4.86726e-245 2.71603e-247 1.42513e-249 7.03495e-252 3.26775e-254 1.42834e-256 5.87444e-259 2.27285e-261 8.27039e-264 2.82926e-266 9.09464e-269 2.74503e-271 7.77166e-274 2.06151e-276 5.1029e-279 -2.75644e-107 -4.00743e-110 -5.80339e-113 -6.47736e-116 -5.16639e-119 4.41501e-122 1.42688e-124 1.8219e-127 1.83969e-130 1.65798e-133 1.40153e-136 1.14333e-139 9.1608e-143 7.25447e-146 5.64175e-149 4.23176e-152 2.97167e-155 1.85962e-158 9.24975e-162 2.01083e-165 -2.98296e-168 -5.87717e-171 -7.05249e-174 -7.00209e-177 -6.21253e-180 -5.08482e-183 -3.90204e-186 -2.83291e-189 -1.95528e-192 -1.28541e-195 -8.04089e-199 -4.76491e-202 -2.64916e-205 -1.35534e-208 -6.11245e-212 -2.14502e-215 -2.42211e-219 5.18361e-222 7.05643e-225 -1.25223e-225 6.83173e-224 -3.39409e-222 1.53791e-220 -6.33196e-219 2.35895e-217 -7.91097e-216 2.37263e-214 -6.31243e-213 1.47522e-211 -2.99249e-210 5.19282e-209 -7.55728e-208 8.93438e-207 -8.19891e-206 5.49131e-205 -2.37622e-204 4.91e-204 3.32528e-205 2.29165e-204 -1.74581e-204 -2.44806e-205 -4.98722e-207 1.45309e-207 1.8437e-208 1.25944e-209 6.11337e-211 2.32907e-212 7.32548e-214 1.95845e-215 4.53621e-217 9.2268e-219 1.66582e-220 2.69371e-222 3.93235e-224 5.21868e-226 6.33464e-228 7.06984e-230 7.28683e-232 6.96146e-234 6.18326e-236 5.1191e-238 3.95867e-240 2.86432e-242 1.94191e-244 1.23531e-246 7.38249e-249 4.14846e-251 2.19339e-253 1.09177e-255 5.11805e-258 2.25991e-260 9.39902e-263 3.68154e-265 1.35783e-267 4.71414e-270 1.54003e-272 4.73124e-275 1.36579e-277 3.70144e-280 9.37975e-283 -5.53993e-105 -1.05647e-107 -2.02043e-110 -3.6784e-113 -6.46064e-116 -7.48786e-119 -5.6936e-122 -4.21305e-125 -3.10246e-128 -2.34758e-131 -1.8778e-134 -1.58651e-137 -1.36602e-140 -1.13762e-143 -8.66456e-147 -5.58528e-150 -2.45806e-153 3.29944e-157 2.47467e-159 3.83612e-162 4.44284e-165 4.44124e-168 4.02763e-171 3.39305e-174 2.69044e-177 2.02326e-180 1.44883e-183 9.89028e-187 6.42459e-190 3.94962e-193 2.27131e-196 1.19307e-199 5.41666e-203 1.77287e-206 -5.36771e-211 -8.08078e-213 -9.85333e-216 -8.92151e-219 -7.03355e-222 -5.08064e-225 7.09757e-228 -5.19555e-226 2.33777e-224 -9.56278e-223 3.54087e-221 -1.18057e-219 3.52106e-218 -9.3184e-217 2.16701e-215 -4.37619e-214 7.5633e-213 -1.09526e-211 1.28432e-210 -1.17231e-209 7.81096e-209 -3.36275e-208 6.91128e-208 4.8504e-209 3.18376e-208 -2.4005e-208 -3.41582e-209 -7.68887e-211 1.93982e-211 2.51218e-212 1.72833e-213 8.42943e-215 3.22324e-216 1.01695e-217 2.72717e-219 6.33718e-221 1.29353e-222 2.34408e-224 3.80513e-226 5.57642e-228 7.42896e-230 9.05176e-232 1.01406e-233 1.04917e-235 1.00616e-237 8.97203e-240 7.45864e-242 5.79326e-244 4.21133e-246 2.86943e-248 1.83513e-250 1.10305e-252 6.23756e-255 3.32082e-257 1.66552e-259 7.87275e-262 3.50827e-264 1.47395e-266 5.83815e-269 2.17978e-271 7.67007e-274 2.54272e-276 7.93807e-279 2.33218e-281 6.44373e-284 1.66803e-286 -3.17447e-104 -3.73661e-107 -5.11679e-110 -5.90111e-113 -7.85717e-116 -5.54517e-119 9.24767e-122 5.20685e-124 1.20989e-126 1.95913e-129 2.49862e-132 2.61816e-135 2.24544e-138 1.45779e-141 4.3645e-145 -6.03769e-148 -1.47979e-150 -2.08011e-153 -2.37459e-156 -2.39767e-159 -2.21971e-162 -1.92017e-165 -1.56947e-168 -1.22004e-171 -9.04873e-175 -6.40446e-178 -4.3125e-181 -2.74209e-184 -1.62188e-187 -8.64552e-191 -3.83254e-194 -1.00734e-197 4.69288e-201 1.09288e-203 1.22343e-206 1.10473e-209 8.88964e-213 6.61621e-216 4.63658e-219 3.08965e-222 1.96894e-225 1.12646e-228 3.46446e-228 -1.40909e-226 5.19093e-225 -1.7225e-223 5.11429e-222 -1.34786e-220 3.12313e-219 -6.28632e-218 1.08218e-216 -1.5565e-215 1.81426e-214 -1.6483e-213 1.09337e-212 -4.68612e-212 9.58525e-212 6.95882e-213 4.36145e-212 -3.25636e-212 -4.7047e-213 -1.15411e-214 2.55316e-215 3.37738e-216 2.34156e-217 1.14797e-218 4.40684e-220 1.39494e-221 3.75251e-223 8.74799e-225 1.79183e-226 3.25914e-228 5.31103e-230 7.81393e-232 1.04505e-233 1.27823e-235 1.43737e-237 1.49257e-239 1.43656e-241 1.28569e-243 1.07288e-245 8.36672e-248 6.10844e-250 4.18151e-252 2.68766e-254 1.62414e-256 9.23752e-259 4.94919e-261 2.49946e-263 1.19047e-265 5.34941e-268 2.26824e-270 9.07562e-273 3.42641e-275 1.22043e-277 4.10015e-280 1.29881e-282 3.87721e-285 1.09015e-287 2.87759e-290 -1.22935e-101 -1.71572e-104 -2.31639e-107 -2.56444e-110 -4.24617e-113 -1.23433e-115 -3.36525e-118 -5.90762e-121 -7.76336e-124 -8.12942e-127 -6.73786e-130 -3.84069e-133 -6.02175e-138 3.8416e-139 7.18867e-142 9.542e-145 1.07478e-147 1.08973e-150 1.02295e-153 9.03502e-157 7.5807e-160 6.07484e-163 4.65903e-166 3.41511e-169 2.37992e-172 1.55951e-175 9.40426e-179 4.97625e-182 2.00344e-185 1.66636e-189 -8.33877e-192 -1.26091e-194 -1.32875e-197 -1.19915e-200 -9.84152e-204 -7.53835e-207 -5.46233e-210 -3.77346e-213 -2.49674e-216 -1.58643e-219 -9.69084e-223 -5.68937e-226 -3.19913e-229 -2.0431e-230 7.43282e-229 -2.45787e-227 7.2754e-226 -1.9119e-224 4.41688e-223 -8.85893e-222 1.5179e-220 -2.16809e-219 2.51632e-218 -2.27738e-217 1.50499e-216 -6.42595e-216 1.30901e-215 9.81629e-217 5.88947e-216 -4.35782e-216 -6.39508e-217 -1.69091e-218 3.31345e-219 4.4821e-220 3.13323e-221 1.54476e-222 5.95577e-224 1.89196e-225 5.10591e-227 1.19409e-228 2.45392e-230 4.47902e-232 7.32554e-234 1.0818e-235 1.45222e-237 1.78277e-239 2.01196e-241 2.09666e-243 2.02516e-245 1.81896e-247 1.52344e-249 1.19258e-251 8.74234e-254 6.01083e-256 3.88166e-258 2.35747e-260 1.3481e-262 7.26511e-265 3.6925e-267 1.77098e-269 8.01884e-272 3.42873e-274 1.38458e-276 5.28023e-279 1.90155e-281 6.46611e-284 2.07565e-286 6.28728e-289 1.79635e-291 4.82774e-294 -5.64948e-99 -7.02822e-102 -8.47977e-105 7.63515e-108 6.16765e-110 1.61204e-112 2.12245e-115 2.05399e-118 1.4328e-121 3.98881e-125 -8.36883e-128 -2.04922e-130 -3.05268e-133 -3.73324e-136 -4.05791e-139 -4.06064e-142 -3.81589e-145 -3.41047e-148 -2.92159e-151 -2.40837e-154 -1.91029e-157 -1.4517e-160 -1.04686e-163 -7.03743e-167 -4.25819e-170 -2.12528e-173 -5.94834e-177 4.08613e-180 9.80791e-183 1.22609e-185 1.24609e-188 1.12953e-191 9.46272e-195 7.45643e-198 5.58163e-201 3.99325e-204 2.74043e-207 1.8076e-210 1.14665e-213 6.98966e-217 4.08401e-220 2.27614e-223 1.1996e-226 5.88417e-230 1.30098e-232 -3.4332e-231 1.01335e-229 -2.65521e-228 6.11573e-227 -1.22244e-225 2.08326e-224 -2.96084e-223 3.42455e-222 -3.08983e-221 2.03574e-220 -8.6657e-220 1.75934e-219 1.36116e-220 7.8383e-220 -5.75835e-220 -8.56977e-221 -2.42283e-222 4.24018e-223 5.87154e-224 4.14029e-225 2.05342e-226 7.95309e-228 2.53581e-229 6.86592e-231 1.61077e-232 3.32094e-234 6.08214e-236 9.98264e-238 1.47951e-239 1.99332e-241 2.45582e-243 2.78127e-245 2.90844e-247 2.81903e-249 2.54087e-251 2.13565e-253 1.67797e-255 1.23483e-257 8.5253e-260 5.52986e-262 3.37439e-264 1.93941e-266 1.05089e-268 5.3727e-271 2.59319e-273 1.18228e-275 5.09372e-278 2.07421e-280 7.98346e-283 2.90441e-285 9.9872e-288 3.24546e-290 9.96369e-293 2.88905e-295 7.89262e-298 -3.51902e-96 -7.84924e-99 -1.7431e-101 -3.43614e-104 -6.41804e-107 -3.85186e-110 -7.29981e-114 2.6179e-116 5.81349e-119 8.50532e-122 1.04422e-124 1.15178e-127 1.17878e-130 1.14139e-133 1.05962e-136 9.52535e-140 8.34058e-143 7.12093e-146 5.90076e-149 4.69469e-152 3.52115e-155 2.41128e-158 1.40858e-161 5.57242e-165 -1.10943e-168 -5.83991e-171 -8.70376e-174 -9.95728e-177 -9.9665e-180 -9.13203e-183 -7.82467e-186 -6.34446e-189 -4.90373e-192 -3.6299e-195 -2.58078e-198 -1.76488e-201 -1.16094e-204 -7.33499e-208 -4.43608e-211 -2.55203e-214 -1.38099e-217 -6.88114e-221 -3.01079e-224 -1.00116e-227 -6.23169e-232 2.53388e-234 1.37936e-233 -3.60456e-232 8.28147e-231 -1.65007e-229 2.7974e-228 -3.96219e-227 4.57066e-226 -4.11422e-225 2.70451e-224 -1.14866e-223 2.32627e-223 1.85531e-224 1.02909e-223 -7.50519e-224 -1.13151e-224 -3.39852e-226 5.34801e-227 7.5889e-228 5.39959e-229 2.69449e-230 1.04858e-231 3.35635e-233 9.11856e-235 2.14616e-236 4.43917e-238 8.15755e-240 1.34358e-241 1.99843e-243 2.70212e-245 3.34091e-247 3.79687e-249 3.98414e-251 3.87489e-253 3.50454e-255 2.95589e-257 2.33073e-259 1.72157e-261 1.19324e-263 7.77182e-266 4.76313e-268 2.75032e-270 1.49778e-272 7.69908e-275 3.73807e-277 1.71535e-279 7.44329e-282 3.05488e-284 1.186e-286 4.35563e-289 1.51324e-291 4.97305e-294 1.54565e-296 4.5425e-299 1.25946e-301 -5.29982e-94 -1.34027e-96 -3.39664e-99 -8.16832e-102 -1.89443e-104 -2.11057e-107 -2.268e-110 -2.34715e-113 -2.3383e-116 -2.24807e-119 -2.09994e-122 -1.92709e-125 -1.76223e-128 -1.62467e-131 -1.51318e-134 -1.40811e-137 -1.28151e-140 -1.10905e-143 -8.80086e-147 -6.0163e-150 -2.96635e-153 3.37587e-158 2.67586e-159 4.73018e-162 6.07707e-165 6.7115e-168 6.72398e-171 6.2639e-174 5.50032e-177 4.59063e-180 3.66185e-183 2.80214e-186 2.0617e-189 1.45978e-192 9.94043e-196 6.49449e-199 4.05146e-202 2.39244e-205 1.31617e-208 6.52928e-212 2.68753e-215 6.37514e-219 -3.26492e-222 -6.77105e-225 -7.13385e-228 -6.12647e-231 -4.71546e-234 -5.11655e-236 1.09563e-234 -2.17692e-233 3.67605e-232 -5.19279e-231 5.97891e-230 -5.37336e-229 3.5271e-228 -1.49615e-227 3.02739e-227 2.48736e-228 1.33039e-227 -9.63155e-228 -1.47083e-228 -4.66871e-230 6.64348e-231 9.67144e-232 6.9458e-233 3.4882e-234 1.36423e-235 4.38455e-237 1.19544e-238 2.82299e-240 5.85845e-242 1.08021e-243 1.78537e-245 2.665e-247 3.61634e-249 4.48719e-251 5.11745e-253 5.38836e-255 5.25845e-257 4.772e-259 4.03857e-261 3.1953e-263 2.36849e-265 1.64769e-267 1.07738e-269 6.63075e-272 3.84601e-274 2.10466e-276 1.08757e-278 5.31055e-281 2.45199e-283 1.0711e-285 4.42819e-288 1.73297e-290 6.42032e-293 2.2519e-295 7.47767e-298 2.35048e-300 6.99296e-303 1.96463e-305 -4.17091e-93 -8.70709e-96 -2.15926e-98 -4.05524e-101 -7.0881e-104 -1.299e-107 1.56604e-110 3.11668e-113 7.81724e-116 2.16027e-118 4.91146e-121 9.0695e-124 1.40566e-126 1.87553e-129 2.17836e-132 2.19073e-135 1.8452e-138 1.15244e-141 1.99567e-145 -8.7451e-148 -1.91558e-150 -2.79159e-153 -3.41286e-156 -3.74114e-159 -3.78687e-162 -3.59702e-165 -3.23819e-168 -2.78067e-171 -2.28763e-174 -1.80851e-177 -1.37615e-180 -1.008e-183 -7.0953e-187 -4.78051e-190 -3.06043e-193 -1.83706e-196 -1.00742e-199 -4.75006e-203 -1.56171e-206 1.70939e-210 9.6995e-213 1.21388e-215 1.16117e-218 9.76635e-222 7.56883e-225 5.52138e-228 3.83438e-231 2.55121e-234 1.77355e-237 -2.80454e-237 4.72685e-236 -6.66365e-235 7.66337e-234 -6.88408e-233 4.51724e-232 -1.91509e-231 3.87097e-231 3.27119e-232 1.6906e-231 -1.21566e-231 -1.88027e-232 -6.28048e-234 8.1203e-235 1.21425e-235 8.80568e-237 4.45191e-238 1.75036e-239 5.65012e-241 1.54633e-242 3.66431e-244 7.63025e-246 1.41173e-247 2.34148e-249 3.50757e-251 4.77681e-253 5.94835e-255 6.8078e-257 7.19307e-259 7.04368e-261 6.41377e-263 5.44638e-265 4.3239e-267 3.21635e-269 2.24577e-271 1.4742e-273 9.11046e-276 5.30743e-278 2.91796e-280 1.5154e-282 7.43986e-285 3.45528e-287 1.51893e-289 6.32291e-292 2.49302e-294 9.31158e-297 3.29492e-299 1.10459e-301 3.50803e-304 1.05533e-306 2.99997e-309 -1.51529e-90 -4.0253e-93 -1.03754e-95 -2.25383e-98 -4.6168e-101 -2.37693e-104 -1.79128e-107 -4.56267e-110 -1.18438e-112 -2.34948e-115 -3.7641e-118 -5.07943e-121 -5.86026e-124 -5.70168e-127 -4.35785e-130 -1.82003e-133 1.66904e-136 5.66904e-139 9.64944e-142 1.31083e-144 1.56803e-147 1.71673e-150 1.75538e-153 1.69623e-156 1.56134e-159 1.37634e-162 1.16607e-165 9.51608e-169 7.48575e-172 5.66906e-175 4.11811e-178 2.84951e-181 1.85489e-184 1.10936e-187 5.78245e-191 2.22475e-194 2.74041e-199 -1.17327e-200 -1.69054e-203 -1.7765e-206 -1.62047e-209 -1.35434e-212 -1.06222e-215 -7.91722e-219 -5.64874e-222 -3.87442e-225 -2.56059e-228 -1.63182e-231 -1.00197e-234 -5.91557e-238 5.61034e-240 -8.37363e-239 9.6251e-238 -8.64352e-237 5.67035e-236 -2.40334e-235 4.85532e-235 4.21627e-236 2.10955e-235 -1.50763e-235 -2.3623e-236 -8.27394e-238 9.75943e-239 1.50073e-239 1.09928e-240 5.59625e-242 2.2125e-243 7.17525e-245 1.97179e-246 4.69022e-248 9.80223e-250 1.82019e-251 3.03001e-253 4.55581e-255 6.22741e-257 7.7834e-259 8.94055e-261 9.48043e-263 9.31614e-265 8.5123e-267 7.25321e-269 5.77823e-271 4.31329e-273 3.02271e-275 1.99185e-277 1.23597e-279 7.23134e-282 3.99383e-284 2.08425e-286 1.02861e-288 4.80391e-291 2.12446e-293 8.90042e-296 3.53364e-298 1.32975e-300 4.7436e-303 1.60421e-305 5.14299e-308 1.56301e-310 4.49089e-313 -5.19063e-88 -1.34818e-90 -3.9009e-93 -9.0403e-96 -1.93934e-98 -2.67747e-102 2.30612e-104 5.51778e-107 8.76905e-110 1.11791e-112 1.17449e-115 9.58547e-119 4.20056e-122 -4.34234e-125 -1.53564e-127 -2.766e-130 -3.98161e-133 -5.04344e-136 -5.84404e-139 -6.32382e-142 -6.47073e-145 -6.31448e-148 -5.91227e-151 -5.33458e-154 -4.65033e-157 -3.92002e-160 -3.19142e-163 -2.49948e-166 -1.86889e-169 -1.31642e-172 -8.52236e-176 -4.80356e-179 -1.9889e-182 -6.38797e-188 1.25749e-188 1.94155e-191 2.19219e-194 2.14739e-197 1.92533e-200 1.61827e-203 1.29152e-206 9.86118e-210 7.23708e-213 5.11941e-216 3.49543e-219 2.30382e-222 1.46382e-225 8.93821e-229 5.21373e-232 2.87394e-235 1.4662e-238 5.58207e-242 1.18285e-241 -1.06212e-240 6.96901e-240 -2.9544e-239 5.96858e-239 5.32195e-240 2.58315e-239 -1.83647e-239 -2.91602e-240 -1.06763e-241 1.1528e-242 1.82512e-243 1.35075e-244 6.92571e-246 2.754e-247 8.97557e-249 2.47739e-250 5.917e-252 1.24149e-253 2.31433e-255 3.86763e-257 5.83802e-259 8.01146e-261 1.00526e-262 1.15921e-264 1.23387e-266 1.21694e-268 1.11592e-270 9.54209e-273 7.62841e-275 5.71465e-277 4.0194e-279 2.65872e-281 1.65636e-283 9.73148e-286 5.39833e-288 2.83034e-290 1.40374e-292 6.59059e-295 2.93103e-297 1.23537e-299 4.93653e-302 1.87069e-304 6.72373e-307 2.29238e-309 7.41373e-312 2.27441e-314 6.5981e-317 -2.21453e-85 -6.84088e-88 -2.11938e-90 -6.05e-93 -1.66545e-95 -1.93162e-98 -2.01081e-101 -1.77166e-104 -1.08537e-107 1.42822e-111 1.94078e-113 4.24546e-116 6.89773e-119 9.6615e-122 1.22682e-124 1.44656e-127 1.60732e-130 1.70032e-133 1.72623e-136 1.69274e-139 1.6112e-142 1.49368e-145 1.34979e-148 1.1865e-151 1.00866e-154 8.20844e-158 6.2885e-161 4.40213e-164 2.63681e-167 1.07872e-170 -2.02778e-174 -1.16723e-176 -1.80822e-179 -2.15102e-182 -2.24458e-185 -2.15069e-188 -1.93321e-191 -1.64975e-194 -1.34641e-197 -1.05589e-200 -7.98156e-204 -5.82613e-207 -4.10968e-210 -2.80013e-213 -1.8394e-216 -1.16047e-219 -6.98237e-223 -3.95598e-226 -2.0583e-229 -9.27656e-233 -2.96988e-236 2.25699e-240 1.5915e-242 -1.08071e-244 8.37844e-244 -3.55473e-243 7.18637e-243 6.57618e-244 3.10312e-243 -2.19658e-243 -3.53508e-244 -1.34927e-245 1.33759e-246 2.18302e-247 1.63285e-248 8.43414e-250 3.37418e-251 1.10546e-252 3.06566e-254 7.35436e-256 1.54965e-257 2.90092e-259 4.86819e-261 7.37896e-263 1.01681e-264 1.28115e-266 1.48336e-268 1.58515e-270 1.5694e-272 1.4445e-274 1.23972e-276 9.94713e-279 7.47893e-281 5.27983e-283 3.50579e-285 2.19272e-287 1.29358e-289 7.20667e-292 3.79547e-294 1.89137e-296 8.92478e-299 3.99039e-301 1.69148e-303 6.80046e-306 2.59396e-308 9.38928e-311 3.22555e-313 1.05167e-315 3.22659e-318 0 -2.7638e-83 -9.10643e-86 -3.01698e-88 -9.5501e-91 -2.92897e-93 -4.30732e-96 -6.10653e-99 -8.34349e-102 -1.09793e-104 -1.39024e-107 -1.69251e-110 -1.9805e-113 -2.22908e-116 -2.41869e-119 -2.54117e-122 -2.60293e-125 -2.62129e-128 -2.6176e-131 -2.60638e-134 -2.58712e-137 -2.54131e-140 -2.43672e-143 -2.23838e-146 -1.92098e-149 -1.47927e-152 -9.33182e-156 -3.25253e-159 2.88101e-162 8.48458e-165 1.30676e-167 1.63133e-170 1.81104e-173 1.85388e-176 1.78217e-179 1.6263e-182 1.41857e-185 1.18839e-188 9.59294e-192 7.47779e-195 5.63565e-198 4.10718e-201 2.8916e-204 1.96162e-207 1.276e-210 7.8896e-214 4.56253e-217 2.387e-220 1.03707e-223 2.54984e-227 -1.54077e-230 -3.31167e-233 -3.73963e-236 -3.4686e-239 -2.89903e-242 -2.25194e-245 -4.35187e-247 8.47167e-247 7.95251e-248 3.6554e-247 -2.57822e-247 -4.20598e-248 -1.66956e-249 1.52325e-250 2.56605e-251 1.9404e-252 1.00997e-253 4.0662e-255 1.33961e-256 3.73387e-258 9.00012e-260 1.90517e-261 3.58262e-263 6.03923e-265 9.19481e-267 1.27262e-268 1.61039e-270 1.87244e-272 2.00915e-274 1.99719e-276 1.84547e-278 1.58996e-280 1.2806e-282 9.66511e-285 6.84935e-287 4.56568e-289 2.86706e-291 1.69836e-293 9.50205e-296 5.0265e-298 2.51641e-300 1.1932e-302 5.3624e-305 2.28545e-307 9.24173e-310 3.54702e-312 1.29245e-314 4.47183e-317 1.39801e-319 0 0 -2.70684e-82 -8.88704e-85 -3.39947e-87 -1.05557e-89 -3.13112e-92 -2.91164e-95 -1.99799e-98 -4.74488e-102 1.21596e-104 2.43727e-107 2.91713e-110 3.62221e-113 7.57305e-116 1.99982e-118 4.72842e-121 9.46032e-124 1.62777e-126 2.45525e-129 3.28516e-132 3.9105e-135 4.10361e-138 3.67451e-141 2.52574e-144 6.85854e-148 -1.68738e-150 -4.33714e-153 -6.95892e-156 -9.26068e-159 -1.10138e-161 -1.20849e-164 -1.24434e-167 -1.21494e-170 -1.13273e-173 -1.01343e-176 -8.73198e-180 -7.26399e-183 -5.8436e-186 -4.54905e-189 -3.4255e-192 -2.49076e-195 -1.74248e-198 -1.16509e-201 -7.35792e-205 -4.28985e-208 -2.19346e-211 -8.374e-215 -2.23446e-219 4.15198e-221 6.03344e-224 6.37976e-227 5.87387e-230 4.97518e-233 3.97151e-236 3.0261e-239 2.21719e-242 1.56923e-245 1.08561e-248 1.6561e-251 4.21934e-251 -2.96691e-251 -4.90658e-252 -2.02129e-253 1.70057e-254 2.96108e-255 2.26442e-256 1.18803e-257 4.81513e-259 1.59576e-260 4.47204e-262 1.08347e-263 2.30489e-265 4.35537e-267 7.37725e-269 1.12856e-270 1.56935e-272 1.99504e-274 2.33012e-276 2.51125e-278 2.50696e-280 2.32611e-282 2.01216e-284 1.62714e-286 1.23295e-288 8.77235e-291 5.87101e-293 3.70181e-295 2.202e-297 1.23725e-299 6.57377e-302 3.30605e-304 1.57508e-306 7.1139e-309 3.04782e-311 1.23928e-313 4.78423e-316 1.73409e-318 0 0 0 0 -9.75868e-80 -3.81111e-82 -1.42452e-84 -4.80181e-87 -1.55195e-89 -1.8495e-92 -1.92432e-95 -1.67202e-98 -1.17229e-101 -8.83997e-105 -1.8061e-107 -5.47145e-110 -1.36416e-112 -2.76534e-115 -4.75273e-118 -7.11188e-121 -9.36995e-124 -1.08293e-126 -1.06867e-129 -8.21749e-133 -2.97494e-136 5.05435e-139 1.539e-141 2.71177e-144 3.90566e-147 4.99632e-150 5.87605e-153 6.46999e-156 6.7444e-159 6.70601e-162 6.39441e-165 5.87048e-168 5.20407e-171 4.46341e-174 3.70768e-177 2.98301e-180 2.32153e-183 1.74245e-186 1.25428e-189 8.57433e-193 5.46581e-196 3.12745e-199 1.44924e-202 3.13574e-206 -3.95123e-209 -7.83499e-212 -9.4466e-215 -9.55682e-218 -8.76971e-221 -7.53126e-224 -6.14853e-227 -4.81477e-230 -3.63634e-233 -2.65795e-236 -1.88433e-239 -1.29716e-242 -8.67307e-246 -5.62897e-249 -3.53548e-252 -5.49407e-255 -5.61778e-256 -2.39212e-257 1.85873e-258 3.35045e-259 2.59221e-260 1.37138e-261 5.59756e-263 1.8668e-264 5.26207e-266 1.28188e-267 2.74143e-269 5.20718e-271 8.86529e-273 1.36307e-274 1.90493e-276 2.43351e-278 2.85588e-280 3.09234e-282 3.10125e-284 2.89046e-286 2.51133e-288 2.03953e-290 1.55196e-292 1.10882e-294 7.45188e-297 4.71833e-299 2.81862e-301 1.59057e-303 8.4884e-306 4.28833e-308 2.05266e-310 9.31618e-313 4.01176e-315 1.63772e-317 4.56023e-320 0 0 0 0 0 -2.83956e-77 -1.09163e-79 -4.45219e-82 -1.61862e-84 -5.69422e-87 -7.72881e-90 -9.12637e-93 -8.34853e-96 -3.01666e-99 9.83381e-102 3.29465e-104 6.74182e-107 1.10855e-109 1.55636e-112 1.88053e-115 1.89055e-118 1.36988e-121 1.20428e-125 -1.98543e-127 -4.95957e-130 -8.67413e-133 -1.28673e-135 -1.71806e-138 -2.12199e-141 -2.46163e-144 -2.70921e-147 -2.84832e-150 -2.87565e-153 -2.79927e-156 -2.63547e-159 -2.40507e-162 -2.13007e-165 -1.83113e-168 -1.52612e-171 -1.22946e-174 -9.52198e-178 -7.02288e-181 -4.84948e-184 -3.02979e-187 -1.57013e-190 -4.57623e-194 3.36741e-197 8.54126e-200 1.1432e-202 1.25527e-205 1.23985e-208 1.14113e-211 9.95774e-215 8.31967e-218 6.69572e-221 5.21116e-224 3.9321e-227 2.88101e-230 2.05121e-233 1.41903e-236 9.52965e-240 6.19991e-243 3.89371e-246 2.34643e-249 1.3429e-252 7.16088e-256 3.38974e-259 3.2894e-262 3.71518e-263 2.90799e-264 1.55198e-265 6.38225e-267 2.14283e-268 6.07776e-270 1.4893e-271 3.20305e-273 6.11766e-275 1.04721e-276 1.61878e-278 2.27425e-280 2.92038e-282 3.44465e-284 3.74841e-286 3.77755e-288 3.53766e-290 3.08808e-292 2.5195e-294 1.92589e-296 1.38214e-298 9.33002e-301 5.93364e-303 3.5603e-305 2.01806e-307 1.08185e-309 5.49068e-312 2.64064e-314 1.2042e-316 5.28047e-319 0 0 0 0 0 0 0 -9.36527e-75 -3.75806e-77 -1.51988e-79 -5.79371e-82 -2.15266e-84 -3.63386e-87 -5.84887e-90 -8.90591e-93 -1.26982e-95 -1.67018e-98 -1.97437e-101 -1.98098e-104 -1.39888e-107 1.3445e-111 3.00492e-113 7.54662e-116 1.39527e-118 2.21951e-121 3.19778e-124 4.27452e-127 5.37466e-130 6.41493e-133 7.31637e-136 8.01636e-139 8.4779e-142 8.68744e-145 8.65343e-148 8.39781e-151 7.94939e-154 7.33842e-157 6.59398e-160 5.74436e-163 4.819e-166 3.85059e-169 2.87587e-172 1.93433e-175 1.06513e-178 3.02924e-182 -3.26243e-185 -8.0778e-188 -1.13962e-190 -1.33135e-193 -1.40168e-196 -1.37512e-199 -1.27831e-202 -1.13694e-205 -9.73411e-209 -8.05533e-212 -6.46097e-215 -5.03183e-218 -3.80905e-221 -2.80353e-224 -2.00535e-227 -1.39209e-230 -9.35435e-234 -6.05808e-237 -3.75386e-240 -2.1976e-243 -1.18638e-246 -5.58802e-250 -1.91556e-253 6.09282e-258 9.84478e-260 1.29329e-262 1.27631e-265 1.2734e-268 8.01215e-271 2.4181e-272 6.88551e-274 1.69772e-275 3.67339e-277 7.05733e-279 1.21506e-280 1.88895e-282 2.66869e-284 3.44571e-286 4.08614e-288 4.46988e-290 4.5279e-292 4.26187e-294 3.73879e-296 3.06533e-298 2.35443e-300 1.69776e-302 1.15146e-304 7.35727e-307 4.43509e-309 2.52564e-311 1.36031e-313 6.93703e-316 3.35392e-318 1.11511e-320 0 0 0 0 0 0 0 0 -1.2543e-72 -5.1346e-75 -2.09225e-77 -8.21717e-80 -3.15507e-82 -5.88828e-85 -1.06965e-87 -1.88775e-90 -3.22897e-93 -5.34081e-96 -8.52603e-99 -1.31174e-101 -1.94293e-104 -2.76888e-107 -3.79572e-110 -5.00655e-113 -6.35903e-116 -7.78925e-119 -9.22236e-122 -1.05877e-124 -1.18339e-127 -1.29383e-130 -1.39046e-133 -1.47491e-136 -1.54778e-139 -1.60681e-142 -1.64511e-145 -1.65096e-148 -1.61e-151 -1.50842e-154 -1.33684e-157 -1.09368e-160 -7.86981e-164 -4.34135e-167 -5.97236e-171 3.08192e-173 6.4231e-176 9.19983e-179 1.12596e-181 1.25367e-184 1.30487e-187 1.28819e-190 1.21687e-193 1.10633e-196 9.71962e-200 8.27525e-203 6.84141e-206 5.49916e-209 4.30013e-212 3.27067e-215 2.41732e-218 1.7326e-221 1.20012e-224 7.98828e-228 5.06119e-231 3.0004e-234 1.60674e-237 7.08864e-241 1.6584e-244 -1.33548e-247 -2.73634e-250 -3.15801e-253 -3.02804e-256 -2.62951e-259 -2.13862e-262 -1.65614e-265 -1.23239e-268 -8.86004e-272 -6.16696e-275 -3.9886e-278 1.38457e-281 7.81265e-283 1.38269e-284 2.1642e-286 3.07583e-288 3.99454e-290 4.764e-292 5.24053e-294 5.33767e-296 5.0511e-298 4.45457e-300 3.67112e-302 2.8341e-304 2.0539e-306 1.39991e-308 8.98859e-311 5.44499e-313 3.11592e-315 1.6867e-317 7.69013e-320 0 0 0 0 0 0 0 0 0 0 -1.52224e-71 -7.33498e-74 -3.82917e-76 -1.68725e-78 -5.96086e-81 -9.9217e-84 -1.55424e-86 -2.29922e-89 -3.23614e-92 -4.4054e-95 -5.97306e-98 -8.37071e-101 -1.23922e-103 -1.90444e-106 -2.88624e-109 -4.04505e-112 -4.82907e-115 -4.03687e-118 3.26287e-122 1.09545e-123 3.07909e-126 6.21953e-129 1.0586e-131 1.59739e-134 2.18373e-137 2.72974e-140 3.1232e-143 3.24646e-146 2.9986e-149 2.31836e-152 1.20032e-155 -2.99216e-159 -2.06829e-161 -3.95595e-164 -5.79554e-167 -7.42959e-170 -8.73114e-173 -9.61803e-176 -1.00582e-178 -1.00668e-181 -9.69652e-185 -9.02506e-188 -8.14128e-191 -7.13335e-194 -6.0798e-197 -5.04449e-200 -4.07477e-203 -3.202e-206 -2.44357e-209 -1.80557e-212 -1.28551e-215 -8.74857e-219 -5.61293e-222 -3.30535e-225 -1.67807e-228 -5.89149e-232 9.01311e-236 4.70923e-238 6.44907e-241 6.84357e-244 6.43619e-247 5.61492e-250 4.64033e-253 3.67422e-256 2.80605e-259 2.07547e-262 1.49038e-265 1.04039e-268 7.06246e-272 4.65911e-275 2.98185e-278 1.84546e-281 1.09855e-284 6.25216e-288 3.65405e-291 6.13237e-294 5.51836e-296 6.03822e-298 6.18405e-300 5.88502e-302 5.21863e-304 4.32408e-306 3.35597e-308 2.44489e-310 1.67508e-312 1.08111e-314 6.58073e-317 3.57061e-319 0 0 0 0 0 0 0 0 0 0 0 0 -5.34335e-69 -2.93482e-71 -1.49358e-73 -6.95118e-76 -1.61384e-78 -2.78931e-81 -4.34936e-84 -5.96396e-87 -6.73168e-90 -4.90281e-93 2.14474e-96 1.71819e-98 4.09693e-101 6.80686e-104 8.06693e-107 4.17587e-110 -1.09383e-112 -4.55084e-115 -1.08636e-117 -2.07706e-120 -3.44736e-123 -5.12408e-126 -6.90969e-129 -8.47413e-132 -9.37899e-135 -9.13748e-138 -7.30366e-141 -3.56486e-144 2.17455e-147 9.74678e-150 1.87209e-152 2.84545e-155 3.81832e-158 4.71313e-161 5.46173e-164 6.01368e-167 6.34093e-170 6.43844e-173 6.32144e-176 6.0204e-179 5.57493e-182 5.02778e-185 4.42017e-188 3.78871e-191 3.16396e-194 2.56998e-197 2.02453e-200 1.5395e-203 1.12162e-206 7.731e-210 4.92427e-213 2.75113e-216 1.14484e-219 2.47575e-224 -6.96089e-226 -1.10422e-228 -1.28021e-231 -1.29473e-234 -1.20636e-237 -1.06089e-240 -8.91882e-244 -7.2221e-247 -5.65945e-250 -4.30452e-253 -3.18331e-256 -2.29082e-259 -1.60416e-262 -1.09208e-265 -7.21323e-269 -4.60611e-272 -2.82664e-275 -1.65e-278 -8.99015e-282 -4.39237e-285 -1.72141e-288 -2.78833e-292 4.14217e-295 6.7468e-298 7.04679e-301 6.31476e-304 5.67047e-307 8.88024e-310 4.18898e-312 2.88101e-314 1.97234e-316 1.27848e-318 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.30875e-66 -7.35632e-69 -4.09465e-71 -2.04841e-73 -9.13372e-76 -1.81177e-78 -3.3675e-81 -5.85302e-84 -9.44872e-87 -1.39567e-89 -1.82643e-92 -1.95055e-95 -1.19901e-98 1.37962e-101 7.15098e-104 1.77713e-106 3.48175e-109 5.91198e-112 8.98348e-115 1.23425e-117 1.52835e-120 1.67237e-123 1.52654e-126 9.36357e-130 -2.41743e-133 -2.11013e-135 -4.70151e-138 -7.96103e-141 -1.17439e-143 -1.58254e-146 -1.99317e-149 -2.37758e-152 -2.70968e-155 -2.96909e-158 -3.14306e-161 -3.2269e-164 -3.22309e-167 -3.13962e-170 -2.98786e-173 -2.78062e-176 -2.5307e-179 -2.25033e-182 -1.951e-185 -1.6436e-188 -1.33845e-191 -1.04522e-194 -7.72645e-198 -5.281e-201 -3.17104e-204 -1.42961e-207 -6.60584e-212 9.33029e-214 1.60033e-216 1.98254e-219 2.13432e-222 2.1123e-225 1.97006e-228 1.7545e-231 1.50376e-234 1.24656e-237 1.00269e-240 7.84222e-244 5.97093e-247 4.42733e-250 3.19569e-253 2.24259e-256 1.52628e-259 1.00329e-262 6.32597e-266 3.78075e-269 2.09422e-272 1.02267e-275 3.77169e-279 1.61486e-283 -1.62904e-285 -2.31647e-288 -2.38274e-291 -2.13789e-294 -1.77066e-297 -1.38773e-300 -1.04275e-303 -7.57056e-307 -5.33672e-310 -3.66465e-313 -2.4565e-316 -1.5981e-319 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.43834e-64 -1.9605e-66 -1.08686e-68 -5.58385e-71 -2.65819e-73 -5.85368e-76 -1.22643e-78 -2.45216e-81 -4.68847e-84 -8.57919e-87 -1.50165e-89 -2.50923e-92 -3.98847e-95 -5.99692e-98 -8.45524e-101 -1.1019e-103 -1.29186e-106 -1.27975e-109 -8.59922e-113 2.43082e-116 2.35672e-118 5.82179e-121 1.0935e-123 1.78819e-126 2.66743e-129 3.71104e-132 4.8771e-135 6.10651e-138 7.32965e-141 8.47786e-144 9.49223e-147 1.03311e-149 1.09729e-152 1.14136e-155 1.16604e-158 1.1724e-161 1.16111e-164 1.13203e-167 1.08421e-170 1.01644e-173 9.2798e-177 8.19342e-180 6.92895e-183 5.53034e-186 4.05925e-189 2.58862e-192 1.1938e-195 -5.67515e-200 -1.1094e-201 -1.93052e-204 -2.50833e-207 -2.85147e-210 -2.98506e-213 -2.94539e-216 -2.7742e-219 -2.51353e-222 -2.20171e-225 -1.87087e-228 -1.54568e-231 -1.2434e-234 -9.74575e-238 -7.44247e-241 -5.53297e-244 -3.99727e-247 -2.79758e-250 -1.88709e-253 -1.21643e-256 -7.38096e-260 -4.09132e-263 -1.92507e-266 -5.75727e-270 2.01182e-273 5.93819e-276 7.41825e-279 7.44872e-282 6.7105e-285 5.64497e-288 4.51941e-291 3.48031e-294 2.59469e-297 1.88069e-300 1.32908e-303 9.1755e-307 6.19602e-310 4.09568e-313 2.65083e-316 1.61056e-319 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.27095e-62 -2.45458e-64 -1.3655e-66 -7.17222e-69 -3.39645e-71 -7.98138e-74 -1.7938e-76 -3.86863e-79 -8.03028e-82 -1.60848e-84 -3.11518e-87 -5.84157e-90 -1.0614e-92 -1.86901e-95 -3.18887e-98 -5.26902e-101 -8.42561e-104 -1.30297e-106 -1.94728e-109 -2.81074e-112 -3.91669e-115 -5.26792e-118 -6.8398e-121 -8.57817e-124 -1.04051e-126 -1.22331e-129 -1.39867e-132 -1.56259e-135 -1.71679e-138 -1.86889e-141 -2.03097e-144 -2.21613e-147 -2.43355e-150 -2.68325e-153 -2.95211e-156 -3.21243e-159 -3.42408e-162 -3.54005e-165 -3.5147e-168 -3.3126e-171 -2.91639e-174 -2.33151e-177 -1.58695e-180 -7.31811e-184 1.71478e-187 1.05596e-189 1.85906e-192 2.53005e-195 3.03506e-198 3.35893e-201 3.5043e-204 3.48843e-207 3.33868e-210 3.08777e-213 2.76938e-216 2.41469e-219 2.05022e-222 1.69669e-225 1.36889e-228 1.07615e-231 8.2321e-235 6.11189e-238 4.38579e-241 3.02102e-244 1.9744e-247 1.19806e-250 6.43723e-254 2.65734e-257 2.30037e-261 -1.19869e-263 -1.92183e-266 -2.17241e-269 -2.12824e-272 -1.91902e-275 -1.6346e-278 -1.33334e-281 -1.04994e-284 -8.02265e-288 -5.969e-291 -4.33463e-294 -3.07741e-297 -2.13833e-300 -1.45509e-303 -9.6987e-307 -6.33042e-310 -4.04301e-313 -2.52288e-316 -1.51481e-319 0 0 0 0 0 0 0 0 0 0 0 0 -5.06572e-61 -3.79863e-63 -2.83076e-65 -1.66314e-67 -4.57494e-70 -1.17543e-72 -2.81984e-75 -6.31962e-78 -1.32448e-80 -2.59947e-83 -4.78706e-86 -8.30079e-89 -1.36462e-91 -2.15527e-94 -3.34748e-97 -5.28764e-100 -8.77952e-103 -1.54957e-105 -2.84891e-108 -5.25898e-111 -9.42603e-114 -1.60297e-116 -2.5476e-119 -3.73841e-122 -4.99134e-125 -5.90855e-128 -5.83632e-131 -3.88048e-134 9.91946e-138 9.75661e-140 2.3061e-142 4.09165e-145 6.2448e-148 8.57623e-151 1.08015e-153 1.25695e-156 1.35115e-159 1.33002e-162 1.17101e-165 8.66443e-169 4.25848e-172 -1.24488e-175 -7.4481e-178 -1.38729e-180 -2.00243e-183 -2.5454e-186 -2.98101e-189 -3.28688e-192 -3.45434e-195 -3.48747e-198 -3.40052e-201 -3.2146e-204 -2.95423e-207 -2.64437e-210 -2.30811e-213 -1.96531e-216 -1.6319e-219 -1.31982e-222 -1.03727e-225 -7.89159e-229 -5.77653e-232 -4.02689e-235 -2.625e-238 -1.54072e-241 -7.3582e-245 -1.67707e-248 2.07206e-251 4.30814e-254 5.41284e-257 5.71705e-260 5.49414e-263 4.95906e-266 4.2719e-269 3.54465e-272 2.84961e-275 2.22819e-278 1.69922e-281 1.26623e-284 9.23255e-288 6.59261e-291 4.61232e-294 3.1618e-297 2.12293e-300 1.39487e-303 8.95456e-307 5.60252e-310 3.403e-313 1.99435e-316 9.81264e-320 0 0 0 0 0 0 0 0 0 0 0 -1.42816e-58 -1.16069e-60 -8.77182e-63 -3.46943e-65 -1.10881e-67 -3.22866e-70 -8.62774e-73 -2.12442e-75 -4.82706e-78 -1.01073e-80 -1.94011e-83 -3.37355e-86 -5.17803e-89 -6.57779e-92 -5.45683e-95 2.61498e-98 2.53794e-100 7.42348e-103 1.62684e-105 3.01131e-108 4.8619e-111 6.83529e-114 8.05426e-117 6.87664e-120 7.43718e-124 -1.37754e-125 -4.06249e-128 -8.35182e-131 -1.44828e-133 -2.24257e-136 -3.17602e-139 -4.15939e-142 -5.05521e-145 -5.68791e-148 -5.8642e-151 -5.40166e-154 -4.16069e-157 -2.07347e-160 8.36384e-164 4.44821e-166 8.5544e-169 1.28847e-171 1.714e-174 2.10296e-177 2.43047e-180 2.67839e-183 2.83656e-186 2.90281e-189 2.88191e-192 2.78381e-195 2.62168e-198 2.41012e-201 2.16379e-204 1.89647e-207 1.62058e-210 1.3469e-213 1.08449e-216 8.4069e-220 6.21106e-223 4.29577e-226 2.68209e-229 1.37446e-232 3.62261e-236 -3.77718e-239 -8.78077e-242 -1.17724e-244 -1.31591e-247 -1.33383e-250 -1.26736e-253 -1.14769e-256 -1.00008e-259 -8.43604e-263 -6.91689e-266 -5.52833e-269 -4.31603e-272 -3.29635e-275 -2.46542e-278 -1.80692e-281 -1.29808e-284 -9.13964e-288 -6.30351e-291 -4.2539e-294 -2.80384e-297 -1.79991e-300 -1.1204e-303 -6.71547e-307 -3.83025e-310 -2.03353e-313 -9.57287e-317 -2.19711e-320 0 0 0 0 0 0 0 0 0 0 -2.78125e-56 -2.40803e-58 -1.97652e-60 -1.46774e-62 -4.85764e-65 -1.49131e-67 -4.27457e-70 -1.14761e-72 -2.89345e-75 -6.86494e-78 -1.53475e-80 -3.23485e-83 -6.4253e-86 -1.20046e-88 -2.10134e-91 -3.42041e-94 -5.10478e-97 -6.78716e-100 -7.48762e-103 -5.20157e-106 3.57696e-109 2.427e-111 6.43498e-114 1.32897e-116 2.39274e-119 3.90701e-122 5.88751e-125 8.25149e-128 1.07768e-130 1.30734e-133 1.45794e-136 1.45916e-139 1.23368e-142 7.07659e-146 -1.76768e-149 -1.44923e-151 -3.10182e-154 -5.08498e-157 -7.30984e-160 -9.65704e-163 -1.19904e-165 -1.41731e-168 -1.6083e-171 -1.76251e-174 -1.87375e-177 -1.93919e-180 -1.95885e-183 -1.93488e-186 -1.87077e-189 -1.77078e-192 -1.63961e-195 -1.48231e-198 -1.30439e-201 -1.11192e-204 -9.11559e-208 -7.10384e-211 -5.15578e-214 -3.33934e-217 -1.71326e-220 -3.22363e-224 8.05724e-227 1.6618e-229 2.25422e-232 2.60613e-235 2.75152e-238 2.73064e-241 2.58562e-244 2.35668e-247 2.07946e-250 1.78325e-253 1.49044e-256 1.21665e-259 9.71483e-263 7.59659e-266 5.8217e-269 4.37434e-272 3.22284e-275 2.32748e-278 1.64628e-281 1.13891e-284 7.68891e-288 5.04828e-291 3.20624e-294 1.95277e-297 1.12333e-300 5.92301e-304 2.66004e-307 7.62634e-311 -2.53315e-314 -7.22552e-317 -7.74843e-320 0 0 0 0 0 0 0 0 0 -5.67967e-54 -4.9394e-56 -4.05644e-58 -3.06964e-60 -1.0828e-62 -3.49222e-65 -1.06339e-67 -3.05803e-70 -8.31697e-73 -2.14335e-75 -5.24424e-78 -1.22051e-80 -2.70656e-83 -5.72761e-86 -1.1582e-88 -2.24032e-91 -4.14851e-94 -7.35716e-97 -1.24952e-99 -2.03103e-102 -3.15515e-105 -4.67264e-108 -6.5693e-111 -8.70671e-114 -1.07465e-116 -1.20673e-119 -1.16909e-122 -8.24143e-126 3.463e-131 1.51628e-131 3.9238e-134 7.41437e-137 1.21223e-139 1.80937e-142 2.52639e-145 3.3449e-148 4.23586e-151 5.16268e-154 6.08575e-157 6.96741e-160 7.7761e-163 8.48864e-166 9.08978e-169 9.56926e-172 9.91763e-175 1.01221e-177 1.0164e-180 1.00193e-183 9.66199e-187 9.06966e-190 8.23071e-193 7.15062e-196 5.85599e-199 4.39519e-202 2.83516e-205 1.255e-208 -2.62651e-212 -1.6407e-214 -2.81567e-217 -3.74357e-220 -4.40268e-223 -4.79339e-226 -4.93531e-229 -4.86263e-232 -4.61854e-235 -4.24976e-238 -3.80178e-241 -3.31522e-244 -2.82368e-247 -2.3527e-250 -1.91989e-253 -1.53571e-256 -1.20472e-259 -9.27026e-263 -6.99586e-266 -5.17441e-269 -3.74661e-272 -2.65062e-275 -1.82687e-278 -1.2211e-281 -7.85881e-285 -4.81128e-288 -2.73935e-291 -1.37978e-294 -5.27123e-298 -2.49014e-302 2.4313e-304 3.61035e-307 3.87796e-310 3.63329e-313 3.13376e-316 2.56499e-319 0 0 0 0 0 0 0 0 -6.56583e-52 -5.53609e-54 -4.47261e-56 -3.37548e-58 -1.21969e-60 -4.10569e-63 -1.312e-65 -3.97809e-68 -1.14549e-70 -3.13658e-73 -8.17828e-76 -2.03332e-78 -4.82714e-81 -1.09582e-83 -2.38239e-86 -4.96827e-89 -9.95515e-92 -1.92001e-94 -3.57061e-97 -6.41401e-100 -1.11478e-102 -1.87752e-105 -3.0682e-108 -4.87023e-111 -7.51481e-114 -1.12774e-116 -1.64637e-119 -2.33835e-122 -3.23097e-125 -4.34296e-128 -5.67938e-131 -7.22807e-134 -8.95974e-137 -1.08328e-139 -1.28025e-142 -1.48354e-145 -1.69235e-148 -1.90945e-151 -2.14122e-154 -2.3962e-157 -2.68207e-160 -3.00149e-163 -3.3475e-166 -3.69998e-169 -4.02409e-172 -4.27185e-175 -4.38709e-178 -4.3132e-181 -4.00253e-184 -3.42558e-187 -2.57812e-190 -1.4848e-193 -1.9823e-197 1.20621e-199 2.63909e-202 4.0075e-205 5.22576e-208 6.22449e-211 6.95686e-214 7.40137e-217 7.5611e-220 7.46017e-223 7.1383e-226 6.64453e-229 6.03111e-232 5.34833e-235 4.64071e-238 3.94465e-241 3.28757e-244 2.68802e-247 2.15669e-250 1.69781e-253 1.31067e-256 9.91107e-260 7.32808e-263 5.28315e-266 3.69811e-269 2.49661e-272 1.60768e-275 9.67784e-279 5.2177e-282 2.23059e-285 3.3309e-289 -7.82504e-292 -1.3568e-294 -1.57271e-297 -1.56506e-300 -1.42956e-303 -1.23103e-306 -1.01039e-309 -7.90323e-313 -5.79483e-316 -3.70757e-319 0 0 0 0 0 0 0 -7.03388e-51 -7.35431e-53 -7.56665e-55 -3.57322e-57 -1.56764e-59 -6.37328e-62 -2.40183e-64 -8.40489e-67 -2.73687e-69 -8.30996e-72 -2.3568e-74 -6.25167e-77 -1.55226e-79 -3.60839e-82 -7.84902e-85 -1.5953e-87 -3.02143e-90 -5.30759e-93 -8.57973e-96 -1.25873e-98 -1.63204e-101 -1.75985e-104 -1.28814e-107 2.26437e-111 3.15307e-113 7.47374e-116 1.23565e-118 1.5781e-121 1.45578e-124 5.25434e-128 -1.34058e-130 -3.62774e-133 -4.57885e-136 -5.15323e-140 1.47136e-141 4.98644e-144 1.15687e-146 2.23324e-149 3.81674e-152 5.93956e-155 8.54056e-158 1.14351e-160 1.43009e-163 1.66873e-166 1.80534e-169 1.78326e-172 1.55144e-175 1.07319e-178 3.3376e-182 -6.54826e-185 -1.85262e-187 -3.19482e-190 -4.59855e-193 -5.97226e-196 -7.22622e-199 -8.28233e-202 -9.08184e-205 -9.59001e-208 -9.79737e-211 -9.71768e-214 -9.38359e-217 -8.8408e-220 -8.14178e-223 -7.34009e-226 -6.48569e-229 -5.62185e-232 -4.78334e-235 -3.99601e-238 -3.27722e-241 -2.63698e-244 -2.0793e-247 -1.60362e-250 -1.20607e-253 -8.8059e-257 -6.19802e-260 -4.15669e-263 -2.60016e-266 -1.44896e-269 -6.28592e-273 -7.133e-277 2.82612e-279 4.84536e-282 5.77185e-285 5.95075e-288 5.65135e-291 5.07555e-294 4.3674e-297 3.62267e-300 2.89754e-303 2.21547e-306 1.57153e-309 9.33182e-313 2.36217e-316 -6.22493e-319 0 0 0 0 0 0 -1.55974e-48 -1.1762e-50 -1.38958e-52 -7.87985e-55 -3.96416e-57 -1.8019e-59 -7.48266e-62 -2.86101e-64 -1.01311e-66 -3.33762e-69 -1.02664e-71 -2.95686e-74 -7.99143e-77 -2.03e-79 -4.85181e-82 -1.09156e-84 -2.31115e-87 -4.60025e-90 -8.58874e-93 -1.49809e-95 -2.42466e-98 -3.5983e-101 -4.78802e-104 -5.44005e-107 -4.56447e-110 -7.43843e-114 7.5673e-116 2.12319e-118 3.88962e-121 5.46349e-124 5.49503e-127 1.57193e-130 -9.98098e-133 -3.40459e-135 -7.62392e-138 -1.41849e-140 -2.34204e-143 -3.52563e-146 -4.8986e-149 -6.30803e-152 -7.50918e-155 -8.17103e-158 -7.90047e-161 -6.28513e-164 -2.95082e-167 2.37487e-170 9.8039e-173 1.92456e-175 3.03904e-178 4.27252e-181 5.55785e-184 6.81905e-187 7.97957e-190 8.97051e-193 9.73763e-196 1.02459e-198 1.04817e-201 1.04513e-204 1.01785e-207 9.6995e-211 9.05778e-214 8.29923e-217 7.46797e-220 6.60348e-223 5.73898e-226 4.90083e-229 4.10878e-232 3.37679e-235 2.71393e-238 2.1253e-241 1.61284e-244 1.1759e-247 8.11797e-251 5.16113e-254 2.83107e-257 1.06038e-260 -2.24745e-264 -1.10086e-266 -1.64372e-269 -1.92516e-272 -2.01054e-275 -1.95693e-278 -1.81208e-281 -1.61417e-284 -1.39208e-287 -1.16616e-290 -9.49049e-294 -7.46493e-297 -5.57793e-300 -3.75527e-303 -1.84196e-306 4.28331e-310 3.48909e-312 8.03534e-315 1.51634e-317 2.29691e-320 0 0 0 0 -2.56712e-46 -3.43994e-48 -4.27646e-50 -2.36774e-52 -1.196e-54 -5.55326e-57 -2.38365e-59 -9.50315e-62 -3.53298e-64 -1.22895e-66 -4.01163e-69 -1.23198e-71 -3.56724e-74 -9.75733e-77 -2.52517e-79 -6.19112e-82 -1.43942e-84 -3.17542e-87 -6.64782e-90 -1.32021e-92 -2.48421e-95 -4.41902e-98 -7.40163e-101 -1.15935e-103 -1.67758e-106 -2.18977e-109 -2.44132e-112 -1.94412e-115 1.09635e-119 4.90526e-121 1.39866e-123 2.90981e-126 5.18253e-129 8.29896e-132 1.21794e-134 1.64798e-137 2.04867e-140 2.30363e-143 2.24841e-146 1.67569e-149 3.50294e-153 -1.96551e-155 -5.47858e-158 -1.03277e-160 -1.65492e-163 -2.40512e-166 -3.26047e-169 -4.18524e-172 -5.13383e-175 -6.05523e-178 -6.89845e-181 -7.61797e-184 -8.17826e-187 -8.55689e-190 -8.7455e-193 -8.74898e-196 -8.58299e-199 -8.27054e-202 -7.8384e-205 -7.31381e-208 -6.7221e-211 -6.08543e-214 -5.4224e-217 -4.74848e-220 -4.07686e-223 -3.4193e-226 -2.78676e-229 -2.18968e-232 -1.63781e-235 -1.13979e-238 -7.02526e-242 -3.30689e-245 -2.62607e-249 2.11582e-251 3.86329e-254 5.03741e-257 5.71271e-260 5.97386e-263 5.9089e-266 5.60321e-269 5.13461e-272 4.57006e-275 3.96363e-278 3.35578e-281 2.77334e-284 2.22971e-287 1.7246e-290 1.24244e-293 7.48217e-297 1.79107e-300 -5.70615e-303 -1.67537e-305 -3.4207e-308 -6.27169e-311 -1.09815e-313 -1.87615e-316 -3.12309e-319 0 0 0 -4.1438e-44 -5.59035e-46 -7.01076e-48 -3.99975e-50 -2.09686e-52 -1.01588e-54 -4.57033e-57 -1.91745e-59 -7.52922e-62 -2.77584e-64 -9.63528e-67 -3.15675e-69 -9.7836e-72 -2.8743e-74 -8.01973e-77 -2.12879e-79 -5.38444e-82 -1.29962e-84 -2.99726e-87 -6.61264e-90 -1.397e-92 -2.82841e-95 -5.49116e-98 -1.02259e-100 -1.8266e-103 -3.12821e-106 -5.13113e-109 -8.04621e-112 -1.20254e-114 -1.70431e-117 -2.27112e-120 -2.8023e-123 -3.10372e-126 -2.85362e-129 -1.57239e-132 1.39534e-135 6.87267e-138 1.581e-140 2.92033e-143 4.79725e-146 7.28097e-149 1.0402e-151 1.41379e-154 1.8405e-157 2.30573e-160 2.78962e-163 3.2689e-166 3.71945e-169 4.11923e-172 4.45087e-175 4.70357e-178 4.8738e-181 4.96477e-184 4.98465e-187 4.9441e-190 4.85355e-193 4.72089e-196 4.55007e-199 4.3408e-202 4.08947e-205 3.79093e-208 3.44078e-211 3.03755e-214 2.58437e-217 2.0898e-220 1.56763e-223 1.03578e-226 5.14522e-230 2.43092e-234 -4.16287e-236 -7.92361e-239 -1.09386e-241 -1.31614e-244 -1.4598e-247 -1.53006e-250 -1.53573e-253 -1.48794e-256 -1.39893e-259 -1.28094e-262 -1.1453e-265 -1.00173e-268 -8.57978e-272 -7.19503e-275 -5.89311e-278 -4.67677e-281 -3.51591e-284 -2.33617e-287 -9.97231e-291 7.46286e-294 3.31216e-296 7.40359e-299 1.41951e-301 2.56341e-304 4.4924e-307 7.72927e-310 1.31201e-312 2.20233e-315 3.64647e-318 0 0 -4.32387e-42 -5.60933e-44 -6.85765e-46 -3.92882e-48 -2.09656e-50 -1.0451e-52 -4.87893e-55 -2.13803e-57 -8.81322e-60 -3.42389e-62 -1.25588e-64 -4.35689e-67 -1.43198e-69 -4.46634e-72 -1.32419e-74 -3.7382e-77 -1.00652e-79 -2.58927e-82 -6.37507e-85 -1.50491e-87 -3.41212e-90 -7.44386e-93 -1.56528e-95 -3.17791e-98 -6.23952e-101 -1.1865e-103 -2.18809e-106 -3.91772e-109 -6.81646e-112 -1.15323e-114 -1.89791e-117 -3.03877e-120 -4.73328e-123 -7.17087e-126 -1.05628e-128 -1.51219e-131 -2.10315e-134 -2.84033e-137 -3.72321e-140 -4.7355e-143 -5.84262e-146 -6.99229e-149 -8.11891e-152 -9.15224e-155 -1.00294e-157 -1.07087e-160 -1.11816e-163 -1.14806e-166 -1.16789e-169 -1.18815e-172 -1.22058e-175 -1.2757e-178 -1.36002e-181 -1.47366e-184 -1.6088e-187 -1.74957e-190 -1.87331e-193 -1.95333e-196 -1.96259e-199 -1.87778e-202 -1.68301e-205 -1.37264e-208 -9.52583e-212 -4.40038e-215 1.38289e-218 7.49191e-221 1.35663e-223 1.92555e-226 2.42526e-229 2.83203e-232 3.13062e-235 3.31473e-238 3.38645e-241 3.35493e-244 3.2346e-247 3.04312e-250 2.79951e-253 2.52234e-256 2.22846e-259 1.93187e-262 1.64303e-265 1.36817e-268 1.10837e-271 8.58089e-275 6.02246e-278 3.10834e-281 -7.07567e-285 -6.3868e-287 -1.55958e-289 -3.11919e-292 -5.80293e-295 -1.04277e-297 -1.83557e-300 -3.18379e-303 -5.45609e-306 -9.25127e-309 -1.55341e-311 -2.58471e-314 -4.2638e-317 -5.90804e-320 -3.41046e-41 -5.78171e-43 -8.89692e-45 -6.54103e-47 -4.46257e-49 -2.80039e-51 -1.61315e-53 -8.54245e-56 -4.17051e-58 -1.88322e-60 -7.89024e-63 -3.07628e-65 -1.11906e-67 -3.80711e-70 -1.21377e-72 -3.63279e-75 -1.0222e-77 -2.70724e-80 -6.75393e-83 -1.58787e-85 -3.51803e-88 -7.34139e-91 -1.44123e-93 -2.65634e-96 -4.58192e-99 -7.36136e-102 -1.09387e-104 -1.48812e-107 -1.82715e-110 -1.99142e-113 -1.92797e-116 -1.8776e-119 -2.7984e-122 -7.02736e-125 -1.91569e-127 -4.69983e-130 -1.02337e-132 -2.01036e-135 -3.61951e-138 -6.04139e-141 -9.42091e-144 -1.37917e-146 -1.90013e-149 -2.46419e-152 -3.00084e-155 -3.41064e-158 -3.57282e-161 -3.36046e-164 -2.66253e-167 -1.40993e-170 3.98732e-174 2.67683e-176 5.24022e-179 7.81228e-182 1.00451e-184 1.15553e-187 1.19701e-190 1.09769e-193 8.36883e-197 4.07887e-200 -1.80334e-203 -9.03426e-206 -1.72386e-208 -2.59475e-211 -3.46463e-214 -4.28257e-217 -5.00294e-220 -5.58921e-223 -6.01643e-226 -6.27226e-229 -6.35666e-232 -6.28035e-235 -6.06256e-238 -5.72824e-241 -5.30534e-244 -4.82216e-247 -4.30518e-250 -3.77722e-253 -3.25595e-256 -2.75226e-259 -2.26819e-262 -1.79316e-265 -1.2971e-268 -7.17663e-272 6.2908e-276 1.25899e-277 3.25332e-280 6.72005e-283 1.28331e-285 2.36143e-288 4.25102e-291 7.53364e-294 1.31811e-296 2.28028e-299 3.90401e-302 6.61935e-305 1.1121e-307 1.85232e-310 3.06007e-313 5.01285e-316 -5.14414e-39 -7.34301e-41 -1.04819e-42 -1.05656e-44 -8.83045e-47 -6.40944e-49 -4.13824e-51 -2.41207e-53 -1.28226e-55 -6.26404e-58 -2.82859e-60 -1.1862e-62 -4.63755e-65 -1.69579e-67 -5.81565e-70 -1.87492e-72 -5.69356e-75 -1.63124e-77 -4.41529e-80 -1.13017e-82 -2.73742e-85 -6.27552e-88 -1.36124e-90 -2.79106e-93 -5.39877e-96 -9.81773e-99 -1.66856e-101 -2.62276e-104 -3.73837e-107 -4.62796e-110 -4.39125e-113 -1.31431e-116 7.44947e-119 2.61042e-121 6.01579e-124 1.15846e-126 1.98775e-129 3.1159e-132 4.50644e-135 6.02027e-138 7.37648e-141 8.12496e-144 7.64521e-147 5.18566e-150 -4.61382e-155 -8.7401e-156 -2.12972e-158 -3.7624e-161 -5.69427e-164 -7.76615e-167 -9.73438e-170 -1.12809e-172 -1.20372e-175 -1.16213e-178 -9.68312e-182 -5.95199e-185 -2.80376e-189 7.32468e-191 1.66869e-193 2.7466e-196 3.91828e-199 5.12607e-202 6.30781e-205 7.40248e-208 8.35544e-211 9.12281e-214 9.67438e-217 9.99496e-220 1.00842e-222 9.95489e-226 9.63063e-229 9.14257e-232 8.52616e-235 7.818e-238 7.05303e-241 6.26196e-244 5.4689e-247 4.6883e-250 3.92039e-253 3.14291e-256 2.29545e-259 1.25033e-262 -2.41152e-266 -2.64608e-268 -6.82299e-271 -1.43255e-273 -2.7927e-276 -5.25184e-279 -9.66228e-282 -1.74931e-284 -3.12497e-287 -5.51625e-290 -9.63075e-293 -1.66415e-295 -2.84768e-298 -4.82815e-301 -8.11467e-304 -1.35256e-306 -2.23682e-309 -3.66922e-312 -1.02159e-36 -2.1799e-38 -3.89196e-40 -3.3915e-42 -2.64405e-44 -1.86527e-46 -1.20042e-48 -7.09234e-51 -3.867e-53 -1.95446e-55 -9.19237e-58 -4.03702e-60 -1.66053e-62 -6.41463e-65 -2.33296e-67 -8.00617e-70 -2.59779e-72 -7.98433e-75 -2.32836e-77 -6.45186e-80 -1.70107e-82 -4.27239e-85 -1.02322e-87 -2.33879e-90 -5.10524e-93 -1.06474e-95 -2.12206e-98 -4.04119e-101 -7.34971e-104 -1.27518e-106 -2.10666e-109 -3.30363e-112 -4.89266e-115 -6.78441e-118 -8.67211e-121 -9.89954e-124 -9.3116e-127 -5.12144e-130 5.15552e-133 2.4636e-135 5.67981e-138 1.04944e-140 1.7137e-143 2.56266e-146 3.56464e-149 4.64201e-152 5.6616e-155 6.43053e-158 6.70021e-161 6.17984e-164 4.56e-167 1.5445e-170 -3.11267e-173 -9.57018e-176 -1.78674e-178 -2.79028e-181 -3.94272e-184 -5.20533e-187 -6.52808e-190 -7.85361e-193 -9.1219e-196 -1.02752e-198 -1.12628e-201 -1.20444e-204 -1.25928e-207 -1.28951e-210 -1.29519e-213 -1.27761e-216 -1.23908e-219 -1.18258e-222 -1.11155e-225 -1.02954e-228 -9.3997e-232 -8.45869e-235 -7.49518e-238 -6.51968e-241 -5.52124e-244 -4.45e-247 -3.1834e-250 -1.46152e-253 1.23451e-256 5.90743e-259 1.44532e-261 3.03951e-264 6.01829e-267 1.15461e-269 2.16985e-272 4.01303e-275 7.3204e-278 1.31877e-280 2.3483e-283 4.13601e-286 7.2096e-289 1.24444e-291 2.12807e-294 3.60707e-297 6.0628e-300 1.01095e-302 1.67302e-305 2.7471e-308 -1.35501e-34 -2.91484e-36 -5.66997e-38 -4.98796e-40 -3.97139e-42 -2.8835e-44 -1.92078e-46 -1.17984e-48 -6.71207e-51 -3.55031e-53 -1.75205e-55 -8.09174e-58 -3.50731e-60 -1.43042e-62 -5.50217e-65 -2.0005e-67 -6.88904e-70 -2.25118e-72 -6.99286e-75 -2.06826e-77 -5.83349e-80 -1.57125e-82 -4.04705e-85 -9.98041e-88 -2.35928e-90 -5.35174e-93 -1.16606e-95 -2.44256e-98 -4.92275e-101 -9.55232e-104 -1.78563e-106 -3.21694e-109 -5.58695e-112 -9.35427e-115 -1.5096e-117 -2.34691e-120 -3.51137e-123 -5.04752e-126 -6.9526e-129 -9.13788e-132 -1.13803e-134 -1.32686e-137 -1.41507e-140 -1.30938e-143 -8.86808e-147 3.19258e-152 1.53193e-152 3.87956e-155 7.21839e-158 1.16927e-160 1.73976e-163 2.4359e-166 3.25189e-169 4.17281e-172 5.17483e-175 6.22642e-178 7.29049e-181 8.32715e-184 9.29683e-187 1.01633e-189 1.0896e-192 1.14724e-195 1.1878e-198 1.21073e-201 1.21621e-204 1.20509e-207 1.17867e-210 1.13859e-213 1.08665e-216 1.02466e-219 9.54356e-223 8.77134e-226 7.937e-229 7.03231e-232 6.01659e-235 4.78127e-238 3.07871e-241 3.82205e-245 -4.38408e-247 -1.33573e-249 -3.06913e-252 -6.43118e-255 -1.29095e-257 -2.52547e-260 -4.84818e-263 -9.16162e-266 -1.70701e-268 -3.13926e-271 -5.7028e-274 -1.02403e-276 -1.81869e-279 -3.19648e-282 -5.56256e-285 -9.58923e-288 -1.63833e-290 -2.77536e-293 -4.66364e-296 -7.77671e-299 -1.28737e-301 -2.1151e-304 -1.10166e-32 -2.35062e-34 -4.58122e-36 -4.1007e-38 -3.34589e-40 -2.50316e-42 -1.72568e-44 -1.10111e-46 -6.52777e-49 -3.6079e-51 -1.86477e-53 -9.03772e-56 -4.11753e-58 -1.76746e-60 -7.16341e-63 -2.74667e-65 -9.98214e-68 -3.44464e-70 -1.1306e-72 -3.53534e-75 -1.05487e-77 -3.008e-80 -8.20953e-83 -2.14757e-85 -5.39235e-88 -1.30137e-90 -3.02265e-93 -6.76554e-96 -1.46111e-98 -3.04827e-101 -6.15054e-104 -1.20154e-106 -2.27501e-109 -4.17897e-112 -7.45403e-115 -1.29215e-117 -2.17856e-120 -3.57492e-123 -5.71318e-126 -8.89725e-129 -1.3509e-131 -2.00069e-134 -2.89143e-137 -4.0794e-140 -5.6208e-143 -7.56639e-146 -9.95507e-149 -1.28072e-151 -1.61188e-154 -1.98574e-157 -2.39613e-160 -2.83416e-163 -3.28894e-166 -3.74853e-169 -4.20109e-172 -4.63607e-175 -5.04515e-178 -5.42281e-181 -5.76629e-184 -6.07511e-187 -6.34994e-190 -6.59134e-193 -6.79842e-196 -6.96779e-199 -7.09298e-202 -7.16452e-205 -7.17066e-208 -7.09825e-211 -6.93345e-214 -6.6607e-217 -6.25767e-220 -5.68134e-223 -4.83532e-226 -3.49904e-229 -1.18005e-232 3.18544e-235 1.18274e-237 2.93008e-240 6.47056e-243 1.35869e-245 2.77105e-248 5.53405e-251 1.08603e-253 2.09809e-256 3.99467e-259 7.50226e-262 1.39084e-264 2.547e-267 4.61012e-270 8.25244e-273 1.46175e-275 2.56337e-278 4.45252e-281 7.66403e-284 1.30785e-286 2.21356e-289 3.71738e-292 6.19672e-295 1.02572e-297 1.68549e-300 -7.08477e-32 -1.95761e-33 -4.46895e-35 -4.70003e-37 -4.51432e-39 -3.9773e-41 -3.22412e-43 -2.41046e-45 -1.66556e-47 -1.06572e-49 -6.3271e-52 -3.49238e-54 -1.79588e-56 -8.62116e-59 -3.87141e-61 -1.6295e-63 -6.44116e-66 -2.39555e-68 -8.39757e-71 -2.77932e-73 -8.69862e-76 -2.57824e-78 -7.2468e-81 -1.93399e-83 -4.90601e-86 -1.18413e-88 -2.72179e-91 -5.96251e-94 -1.2457e-96 -2.4834e-99 -4.72642e-102 -8.59101e-105 -1.49195e-107 -2.47671e-110 -3.93323e-113 -5.98379e-116 -8.74288e-119 -1.23231e-121 -1.68834e-124 -2.27536e-127 -3.0665e-130 -4.20994e-133 -5.97169e-136 -8.77508e-139 -1.32159e-141 -2.00228e-144 -2.99281e-147 -4.34175e-150 -6.03431e-153 -7.94168e-156 -9.76395e-159 -1.09771e-161 -1.07982e-164 -8.18494e-168 -1.88292e-171 9.46926e-174 2.71792e-176 5.2296e-179 8.53858e-182 1.26322e-184 1.74127e-187 2.269e-190 2.81859e-193 3.35492e-196 3.83819e-199 4.22679e-202 4.47948e-205 4.55455e-208 4.40123e-211 3.93395e-214 2.96937e-217 1.08445e-220 -2.68938e-223 -1.05073e-225 -2.70232e-228 -6.20227e-231 -1.35607e-233 -2.88218e-236 -5.99721e-239 -1.22513e-241 -2.46055e-244 -4.86323e-247 -9.46717e-250 -1.81657e-252 -3.43827e-255 -6.42362e-258 -1.18536e-260 -2.16182e-263 -3.89878e-266 -6.95689e-269 -1.22885e-271 -2.14974e-274 -3.72629e-277 -6.40266e-280 -1.09098e-282 -1.84428e-285 -3.09422e-288 -5.15414e-291 -8.52701e-294 -1.40074e-296 -7.9901e-30 -2.21969e-31 -3.2072e-33 -4.14049e-35 -4.81498e-37 -5.0597e-39 -4.81486e-41 -4.16012e-43 -3.27427e-45 -2.35627e-47 -1.55642e-49 -9.47308e-52 -5.33237e-54 -2.78559e-56 -1.35481e-58 -6.15306e-61 -2.61665e-63 -1.04457e-65 -3.92352e-68 -1.38959e-70 -4.64959e-73 -1.47242e-75 -4.42011e-78 -1.25965e-80 -3.41231e-83 -8.7966e-86 -2.16007e-88 -5.05662e-91 -1.12917e-93 -2.40621e-96 -4.89374e-99 -9.49732e-102 -1.75775e-104 -3.09896e-107 -5.19474e-110 -8.25484e-113 -1.23768e-115 -1.73763e-118 -2.25454e-121 -2.63747e-124 -2.63184e-127 -1.87585e-130 6.10257e-135 3.56972e-136 8.79647e-139 1.53234e-141 2.17385e-144 2.51324e-147 2.05992e-150 8.61635e-155 -4.38322e-156 -1.25385e-158 -2.56975e-161 -4.51584e-164 -7.19964e-167 -1.06825e-169 -1.4955e-172 -1.99157e-175 -2.53573e-178 -3.09646e-181 -3.63265e-184 -4.0961e-187 -4.43526e-190 -4.59914e-193 -4.5396e-196 -4.20824e-199 -3.53932e-202 -2.39994e-205 -4.66239e-209 3.06417e-211 1.01134e-213 2.51125e-216 5.79375e-219 1.2998e-221 2.86448e-224 6.20809e-227 1.32252e-229 2.76867e-232 5.69715e-235 1.15291e-237 2.29607e-240 4.50358e-243 8.70646e-246 1.66016e-248 3.12449e-251 5.80774e-254 1.06682e-256 1.93766e-259 3.48171e-262 6.19231e-265 1.0906e-267 1.90292e-270 3.29087e-273 5.64302e-276 9.5983e-279 1.62004e-281 2.71435e-284 4.51618e-287 7.46427e-290 1.22518e-292 -1.12002e-27 -2.14949e-29 -3.79832e-31 -5.87085e-33 -7.9692e-35 -9.54274e-37 -1.01398e-38 -9.6268e-41 -8.22594e-43 -6.37058e-45 -4.50047e-47 -2.91691e-49 -1.74335e-51 -9.65148e-54 -4.96905e-56 -2.38757e-58 -1.07403e-60 -4.53623e-63 -1.8035e-65 -6.76552e-68 -2.39986e-70 -8.06546e-73 -2.57285e-75 -7.80312e-78 -2.25346e-80 -6.20533e-83 -1.63139e-85 -4.09947e-88 -9.85641e-91 -2.26943e-93 -5.00777e-96 -1.05965e-98 -2.15104e-101 -4.18985e-104 -7.83057e-107 -1.4037e-109 -2.41155e-112 -3.96514e-115 -6.22498e-118 -9.29659e-121 -1.31271e-123 -1.73443e-126 -2.10305e-129 -2.24413e-132 -1.8696e-135 -5.49773e-139 2.30358e-141 7.43231e-144 1.5694e-146 2.79816e-149 4.50955e-152 6.75706e-155 9.54719e-158 1.28181e-160 1.64207e-163 2.01058e-166 2.35219e-169 2.6225e-172 2.77039e-175 2.74184e-178 2.48461e-181 1.95251e-184 1.10647e-187 -9.43099e-192 -1.72687e-193 -4.00247e-196 -7.51503e-199 -1.38374e-201 -2.68992e-204 -5.60771e-207 -1.22943e-209 -2.75658e-212 -6.18997e-215 -1.37571e-217 -3.00956e-220 -6.46759e-223 -1.36493e-225 -2.83008e-228 -5.76934e-231 -1.15731e-233 -2.28625e-236 -4.45129e-239 -8.54777e-242 -1.62e-244 -3.03214e-247 -5.60795e-250 -1.02546e-252 -1.85489e-255 -3.32055e-258 -5.88569e-261 -1.03341e-263 -1.7981e-266 -3.10168e-269 -5.30632e-272 -9.00666e-275 -1.51728e-277 -2.53776e-280 -4.21571e-283 -6.95761e-286 -1.14052e-288 -1.36169e-25 -2.74186e-27 -6.1897e-29 -1.02243e-30 -1.47707e-32 -1.87315e-34 -2.09726e-36 -2.08898e-38 -1.86648e-40 -1.50808e-42 -1.11007e-44 -7.4926e-47 -4.66372e-49 -2.69019e-51 -1.44422e-53 -7.24287e-56 -3.40444e-58 -1.50425e-60 -6.26451e-63 -2.4649e-65 -9.18367e-68 -3.24657e-70 -1.09105e-72 -3.49172e-75 -1.06591e-77 -3.10849e-80 -8.67257e-83 -2.31792e-85 -5.94219e-88 -1.46286e-90 -3.46213e-93 -7.88522e-96 -1.72994e-98 -3.65913e-101 -7.46812e-104 -1.47183e-106 -2.80291e-109 -5.16095e-112 -9.19263e-115 -1.58462e-117 -2.64438e-120 -4.2729e-123 -6.68567e-126 -1.01281e-128 -1.48495e-131 -2.10564e-134 -2.88433e-137 -3.80982e-140 -4.83885e-143 -5.88352e-146 -6.79919e-149 -7.37492e-152 -7.32895e-155 -6.31167e-158 -3.91815e-161 2.8848e-165 6.74302e-167 1.58357e-169 2.7868e-172 4.30226e-175 6.13933e-178 8.31915e-181 1.09441e-183 1.43946e-186 1.9844e-189 3.05441e-192 5.49092e-195 1.13684e-197 2.56135e-200 5.95677e-203 1.38645e-205 3.18434e-208 7.1786e-211 1.58623e-213 3.4363e-216 7.30408e-219 1.52479e-221 3.1293e-224 6.31935e-227 1.25676e-229 2.46334e-232 4.76205e-235 9.08546e-238 1.71178e-240 3.18669e-243 5.86482e-246 1.0676e-248 1.92312e-251 3.42959e-254 6.05762e-257 1.06014e-259 1.83907e-262 3.16353e-265 5.39808e-268 9.14024e-271 1.53629e-273 2.56411e-276 4.25094e-279 7.00246e-282 1.14581e-284 -1.00969e-23 -2.10533e-25 -5.74377e-27 -1.02717e-28 -1.59679e-30 -2.15976e-32 -2.55631e-34 -2.67161e-36 -2.4903e-38 -2.09061e-40 -1.5946e-42 -1.11351e-44 -7.16522e-47 -4.27229e-49 -2.37157e-51 -1.23058e-53 -5.98971e-56 -2.74326e-58 -1.18545e-60 -4.8454e-63 -1.8775e-65 -6.91083e-68 -2.42107e-70 -8.08691e-73 -2.57975e-75 -7.87165e-78 -2.30085e-80 -6.45131e-83 -1.73747e-85 -4.50023e-88 -1.12231e-90 -2.69802e-93 -6.25885e-96 -1.40252e-98 -3.03889e-101 -6.37269e-104 -1.29456e-106 -2.54971e-109 -4.8729e-112 -9.04406e-115 -1.63137e-117 -2.86206e-120 -4.8871e-123 -8.12777e-126 -1.31743e-128 -2.08258e-131 -3.21265e-134 -4.83918e-137 -7.12165e-140 -1.02455e-142 -1.44164e-145 -1.98507e-148 -2.67604e-151 -3.53335e-154 -4.57094e-157 -5.79511e-160 -7.20193e-163 -8.77711e-166 -1.05057e-168 -1.24147e-171 -1.47132e-174 -1.82049e-177 -2.54204e-180 -4.35623e-183 -9.18588e-186 -2.19281e-188 -5.45918e-191 -1.35695e-193 -3.31076e-196 -7.88913e-199 -1.83506e-201 -4.17083e-204 -9.27583e-207 -2.02136e-209 -4.32165e-212 -9.07539e-215 -1.87383e-217 -3.80745e-220 -7.61964e-223 -1.50297e-225 -2.92398e-228 -5.61409e-231 -1.06443e-233 -1.99399e-236 -3.69247e-239 -6.76252e-242 -1.22545e-244 -2.19819e-247 -3.90479e-250 -6.87172e-253 -1.19849e-255 -2.07236e-258 -3.55395e-261 -6.04677e-264 -1.02105e-266 -1.71169e-269 -2.84967e-272 -4.71296e-275 -7.74542e-278 -1.26451e-280 -5.40555e-23 -1.48921e-24 -4.18384e-26 -8.57447e-28 -1.47243e-29 -2.17292e-31 -2.79829e-33 -3.18077e-35 -3.22195e-37 -2.93305e-39 -2.41778e-41 -1.81695e-43 -1.2523e-45 -7.95828e-48 -4.6852e-50 -2.56598e-52 -1.31223e-54 -6.28709e-57 -2.83055e-59 -1.20075e-61 -4.81136e-64 -1.82516e-66 -6.56836e-69 -2.24688e-71 -7.31897e-74 -2.27406e-76 -6.75025e-79 -1.91714e-81 -5.21688e-84 -1.36199e-86 -3.41578e-89 -8.23916e-92 -1.91358e-94 -4.28407e-97 -9.25466e-100 -1.93104e-102 -3.89547e-105 -7.6044e-108 -1.43777e-110 -2.63508e-113 -4.68525e-116 -8.08824e-119 -1.35674e-121 -2.2131e-124 -3.51334e-127 -5.43314e-130 -8.1939e-133 -1.20713e-135 -1.74181e-138 -2.47306e-141 -3.48291e-144 -4.92942e-147 -7.14037e-150 -1.07824e-152 -1.70703e-155 -2.76758e-158 -4.2877e-161 -5.29669e-164 -7.75634e-168 2.78617e-169 1.40168e-171 5.11034e-174 1.62342e-176 4.74895e-179 1.31072e-181 3.45804e-184 8.79048e-187 2.16448e-189 5.18187e-192 1.20957e-194 2.75892e-197 6.15992e-200 1.34825e-202 2.89644e-205 6.11392e-208 1.26924e-210 2.59361e-213 5.22064e-216 1.03587e-218 2.02731e-221 3.91584e-224 7.46895e-227 1.40749e-229 2.62176e-232 4.82948e-235 8.80156e-238 1.58763e-240 2.83559e-243 5.01658e-246 8.79434e-249 1.52821e-251 2.6333e-254 4.5009e-257 7.63346e-260 1.28501e-262 2.14777e-265 3.56533e-268 5.87993e-271 9.63661e-274 1.56901e-276 -6.04057e-21 -2.21727e-22 -5.30516e-24 -1.07236e-25 -1.86485e-27 -2.82591e-29 -3.77064e-31 -4.47032e-33 -4.74675e-35 -4.5465e-37 -3.95317e-39 -3.13821e-41 -2.28623e-43 -1.53559e-45 -9.54938e-48 -5.51922e-50 -2.97507e-52 -1.50044e-54 -7.1009e-57 -3.16193e-59 -1.32806e-61 -5.27365e-64 -1.9841e-66 -7.08675e-69 -2.40752e-71 -7.79283e-74 -2.40733e-76 -7.10823e-79 -2.00912e-81 -5.44336e-84 -1.41551e-86 -3.53735e-89 -8.50495e-92 -1.96958e-94 -4.39782e-97 -9.4776e-100 -1.97317e-102 -3.9721e-105 -7.73797e-108 -1.45981e-110 -2.6687e-113 -4.72939e-116 -8.12477e-119 -1.35193e-121 -2.1734e-124 -3.35549e-127 -4.90773e-130 -6.58459e-133 -7.4069e-136 -4.52526e-139 9.23602e-142 4.99813e-144 1.49105e-146 3.53745e-149 6.85111e-152 9.23805e-155 -1.93993e-158 -7.58881e-160 -3.76259e-162 -1.39951e-164 -4.55847e-167 -1.36812e-169 -3.87318e-172 -1.04771e-174 -2.72953e-177 -6.88519e-180 -1.68796e-182 -4.03321e-185 -9.41305e-188 -2.14964e-190 -4.81043e-193 -1.05613e-195 -2.27736e-198 -4.82751e-201 -1.00683e-203 -2.06753e-206 -4.18321e-209 -8.34447e-212 -1.642e-214 -3.18908e-217 -6.11645e-220 -1.159e-222 -2.17076e-225 -4.02048e-228 -7.36644e-231 -1.33575e-233 -2.39796e-236 -4.26355e-239 -7.51044e-242 -1.31121e-244 -2.26956e-247 -3.8959e-250 -6.63458e-253 -1.12122e-255 -1.88093e-258 -3.1332e-261 -5.18398e-264 -8.52168e-267 -1.39215e-269 -2.25951e-272 -7.03667e-19 -2.22646e-20 -5.88314e-22 -1.31536e-23 -2.51601e-25 -4.16274e-27 -6.02063e-29 -7.68709e-31 -8.74194e-33 -8.92571e-35 -8.24053e-37 -6.92304e-39 -5.32259e-41 -3.76384e-43 -2.45923e-45 -1.49076e-47 -8.41543e-50 -4.43888e-52 -2.19455e-54 -1.01982e-56 -4.46628e-59 -1.84783e-61 -7.23839e-64 -2.69026e-66 -9.50521e-69 -3.19841e-71 -1.02672e-73 -3.14928e-76 -9.24414e-79 -2.60038e-81 -7.01958e-84 -1.82076e-86 -4.54361e-89 -1.09215e-91 -2.53175e-94 -5.66719e-97 -1.22671e-99 -2.57219e-102 -5.23703e-105 -1.03898e-107 -2.01937e-110 -3.87889e-113 -7.46599e-116 -1.46769e-118 -3.00832e-121 -6.51829e-124 -1.49e-126 -3.52622e-129 -8.39688e-132 -1.94919e-134 -4.25344e-137 -8.24125e-140 -1.22013e-142 -3.37819e-146 7.30944e-148 4.1307e-150 1.64747e-152 5.67281e-155 1.78993e-157 5.312e-160 1.50351e-162 4.09294e-165 1.07758e-167 2.75452e-170 6.8561e-173 1.66539e-175 3.9549e-178 9.19543e-181 2.09586e-183 4.68779e-186 1.0299e-188 2.22433e-191 4.72615e-194 9.88592e-197 2.03704e-199 4.13721e-202 8.2866e-205 1.63768e-207 3.19501e-210 6.15612e-213 1.17199e-215 2.20545e-218 4.10401e-221 7.55475e-224 1.37624e-226 2.48189e-229 4.4324e-232 7.84166e-235 1.37478e-237 2.38918e-240 4.11713e-243 7.03721e-246 1.19343e-248 2.00868e-251 3.35636e-254 5.56918e-257 9.17912e-260 1.5032e-262 2.44652e-265 3.95615e-268 -7.2247e-17 -2.52781e-18 -7.29065e-20 -1.76298e-21 -3.62158e-23 -6.39818e-25 -9.83433e-27 -1.32916e-28 -1.5948e-30 -1.7133e-32 -1.66048e-34 -1.46155e-36 -1.17529e-38 -8.68033e-41 -5.91617e-43 -3.73692e-45 -2.19599e-47 -1.2048e-49 -6.19089e-52 -2.98826e-54 -1.35857e-56 -5.83196e-59 -2.36929e-61 -9.12871e-64 -3.34227e-66 -1.16492e-68 -3.87162e-71 -1.22878e-73 -3.72908e-76 -1.08325e-78 -3.01416e-81 -8.03551e-84 -2.0513e-86 -5.0052e-89 -1.16259e-91 -2.5496e-94 -5.19096e-97 -9.44815e-100 -1.38181e-102 -8.86211e-106 4.24694e-108 2.63179e-110 1.00446e-112 3.12469e-115 8.2673e-118 1.77652e-120 2.33028e-123 -3.86367e-126 -4.70315e-128 -2.47757e-130 -1.04092e-132 -3.88915e-135 -1.34543e-137 -4.39527e-140 -1.3712e-142 -4.11419e-145 -1.19299e-147 -3.35486e-150 -9.17365e-153 -2.44422e-155 -6.3562e-158 -1.61556e-160 -4.01824e-163 -9.78999e-166 -2.33863e-168 -5.48185e-171 -1.26183e-173 -2.85418e-176 -6.34798e-179 -1.38906e-181 -2.9921e-184 -6.34783e-187 -1.32704e-189 -2.73499e-192 -5.55951e-195 -1.1151e-197 -2.20782e-200 -4.31682e-203 -8.33836e-206 -1.59175e-208 -3.00404e-211 -5.60692e-214 -1.03533e-216 -1.89198e-219 -3.42276e-222 -6.13191e-225 -1.0882e-227 -1.91359e-230 -3.33537e-233 -5.76398e-236 -9.87888e-239 -1.67967e-241 -2.83394e-244 -4.746e-247 -7.8914e-250 -1.30312e-252 -2.13763e-255 -3.48429e-258 -5.64457e-261 -9.08608e-264 -3.42231e-15 -1.41978e-16 -4.71224e-18 -1.28153e-19 -2.91103e-21 -5.61338e-23 -9.32291e-25 -1.35088e-26 -1.727e-28 -1.96702e-30 -2.01304e-32 -1.8649e-34 -1.57418e-36 -1.21779e-38 -8.67888e-41 -5.72488e-43 -3.51023e-45 -2.00854e-47 -1.07645e-49 -5.4223e-52 -2.57567e-54 -1.1575e-56 -4.93695e-59 -2.00489e-61 -7.77666e-64 -2.89003e-66 -1.0319e-68 -3.54756e-71 -1.17515e-73 -3.7434e-76 -1.13882e-78 -3.25372e-81 -8.38143e-84 -1.72366e-86 -1.22965e-89 1.45092e-91 1.23245e-93 7.04739e-96 3.47278e-98 1.54386e-100 6.41199e-103 2.5512e-105 9.82643e-108 3.66617e-110 1.32629e-112 4.65758e-115 1.58946e-117 5.27664e-120 1.70572e-122 5.37398e-125 1.65157e-127 4.95515e-130 1.45242e-132 4.16208e-135 1.16679e-137 3.20194e-140 8.60651e-143 2.26717e-145 5.85623e-148 1.48408e-150 3.69167e-153 9.01829e-156 2.16454e-158 5.10677e-161 1.18483e-163 2.70448e-166 6.07588e-169 1.34403e-171 2.92856e-174 6.28803e-177 1.33093e-179 2.77801e-182 5.72017e-185 1.16235e-187 2.33165e-190 4.61893e-193 9.03884e-196 1.74791e-198 3.3412e-201 6.31535e-204 1.1807e-206 2.18404e-209 3.99843e-212 7.24696e-215 1.30072e-217 2.31259e-220 4.07402e-223 7.11336e-226 1.23133e-228 2.11369e-231 3.59904e-234 6.08036e-237 1.01948e-239 1.69688e-242 2.8045e-245 4.60362e-248 7.50747e-251 1.21659e-253 1.95954e-256 3.13654e-259 -1.26636e-14 -8.084e-16 -2.96009e-17 -8.17441e-19 -2.28709e-20 -5.45338e-22 -1.0892e-23 -1.91699e-25 -3.01205e-27 -4.25491e-29 -5.46169e-31 -6.42739e-33 -6.98399e-35 -7.05045e-37 -6.64842e-39 -5.88373e-41 -4.90707e-43 -3.87106e-45 -2.8981e-47 -2.06526e-49 -1.40474e-51 -9.14264e-54 -5.70691e-56 -3.42386e-58 -1.97825e-60 -1.10284e-62 -5.94241e-65 -3.09997e-67 -1.56812e-69 -7.70344e-72 -3.68057e-74 -1.71263e-76 -7.77063e-79 -3.44179e-81 -1.48983e-83 -6.30946e-86 -2.61712e-88 -1.06436e-90 -4.24851e-93 -1.66608e-95 -6.42552e-98 -2.43059e-100 -8.94316e-103 -3.20281e-105 -1.11715e-107 -3.79751e-110 -1.25883e-112 -4.07176e-115 -1.28589e-117 -3.96724e-120 -1.19641e-122 -3.52876e-125 -1.01846e-127 -2.8779e-130 -7.96584e-133 -2.16086e-135 -5.74733e-138 -1.49952e-140 -3.8396e-143 -9.65283e-146 -2.38368e-148 -5.78429e-151 -1.37987e-153 -3.23737e-156 -7.47272e-159 -1.69773e-161 -3.79775e-164 -8.36781e-167 -1.8167e-169 -3.88774e-172 -8.2036e-175 -1.70747e-177 -3.50664e-180 -7.10823e-183 -1.42267e-185 -2.81229e-188 -5.49244e-191 -1.06011e-193 -2.02281e-196 -3.81682e-199 -7.12399e-202 -1.31566e-204 -2.40486e-207 -4.35195e-210 -7.79914e-213 -1.38452e-215 -2.43533e-218 -4.24561e-221 -7.33773e-224 -1.25759e-226 -2.13786e-229 -3.60579e-232 -6.03545e-235 -1.00281e-237 -1.65436e-240 -2.71055e-243 -4.41168e-246 -7.1347e-249 -1.14677e-251 -1.83235e-254 ) ; } courseCyclicBoundary { type cyclicAMI; value nonuniform List<scalar> 200 ( -16.8614 -16.861 -16.8605 -16.8599 -16.8592 -16.8582 -16.8567 -16.8551 -16.8533 -16.8515 -16.8494 -16.8468 -16.8441 -16.8412 -16.8382 -16.8351 -16.8314 -16.8275 -16.8235 -16.8193 -16.8152 -16.8103 -16.8052 -16.8 -16.7947 -16.7894 -16.7832 -16.777 -16.7705 -16.764 -16.7574 -16.75 -16.7424 -16.7347 -16.7268 -16.7188 -16.71 -16.701 -16.6919 -16.6825 -16.6729 -16.6626 -16.652 -16.6412 -16.6302 -16.6187 -16.6065 -16.5942 -16.5815 -16.5686 -16.5546 -16.5404 -16.5259 -16.511 -16.4959 -16.4786 -16.4619 -16.4449 -16.4274 -16.4096 -16.3879 -16.3682 -16.3479 -16.3272 -16.3061 -16.2788 -16.2555 -16.2315 -16.207 -16.1824 -16.1483 -16.121 -16.0929 -16.0644 -16.036 -15.9941 -15.9632 -15.932 -15.9005 -15.8692 -15.8198 -15.786 -15.7521 -15.7183 -15.6845 -15.6271 -15.591 -15.5542 -15.5175 -15.4811 -15.4139 -15.3759 -15.3232 -15.336 -15.1703 -15.2725 -15.0049 -15.2756 -14.5999 -15.8773 -628.607 -626.373 -622.673 -616.989 -608.363 -593.466 -578.436 -562.616 -545.263 -526.964 -500.711 -479.246 -459.064 -439.57 -423.103 -396.216 -376.443 -358.886 -342.652 -330.725 -309.312 -292.979 -279.21 -266.898 -259.462 -243.725 -230.349 -219.607 -210.39 -206.419 -195.218 -184.112 -175.569 -168.514 -166.866 -159.276 -149.795 -142.749 -137.171 -136.986 -132.299 -124.001 -117.988 -113.417 -114.095 -111.711 -104.349 -99.0153 -95.123 -96.2541 -95.697 -89.0626 -84.3215 -80.7532 -82.1929 -82.8738 -76.8684 -72.6393 -69.2532 -70.8469 -72.3881 -67.0288 -63.1404 -59.9639 -61.5572 -63.7806 -58.9573 -55.3593 -52.3541 -53.9619 -56.5764 -52.2001 -48.8589 -46.1308 -47.6558 -50.4424 -46.5347 -43.4916 -40.9556 -42.3389 -45.2193 -41.7242 -38.9448 -36.6118 -37.915 -40.7923 -37.6329 -35.0616 -32.8704 -34.0572 -36.7858 -34.1 -30.9178 -31.729 -25.8993 -40.6118 -25.9665 -33.5449 -24.832 -37.7696 ) ; } courseWalls { type calculated; value uniform 0; } freeBoundaryCourse { type calculated; value nonuniform List<scalar> 200 ( 650.073 648.211 644.663 639.411 632.526 624.088 614.194 602.957 590.514 577.023 562.653 547.546 531.84 515.64 499.045 482.164 465.135 448.08 431.112 414.327 397.75 381.422 365.386 349.679 334.338 319.41 304.917 290.885 277.378 264.411 251.995 240.131 228.783 217.866 207.295 197.072 187.235 177.873 169.037 160.719 152.892 145.493 138.34 131.398 124.683 118.218 112.14 106.409 100.976 95.8109 90.898 86.2169 81.7664 77.5805 73.6878 70.0599 66.547 63.1395 59.8583 56.7047 53.6746 50.7982 48.1208 45.6114 43.2192 40.9275 38.7316 36.629 34.6216 32.7128 30.8973 29.1636 27.4987 25.8896 24.3473 22.8882 21.49 20.1397 18.834 17.6009 16.6599 15.7308 14.6442 13.6629 12.6712 11.7058 10.6988 9.72939 8.84288 8.01637 7.19251 6.39092 5.65164 4.81581 4.12263 3.34571 2.56163 1.9002 1.18083 0.453768 4.15388 4.15291 4.15095 4.14793 4.14382 4.13858 4.13222 4.12478 4.1163 4.10685 4.09648 4.08524 4.07313 4.06012 4.04615 4.03113 4.01495 3.99751 3.97878 3.95877 3.93756 3.9153 3.8921 3.86809 3.84334 3.81789 3.79176 3.76494 3.73739 3.70908 3.67993 3.6499 3.61892 3.58695 3.55395 3.51987 3.48471 3.4485 3.41132 3.37329 3.33458 3.29536 3.25564 3.2155 3.17474 3.13318 3.0903 3.04578 3.00017 2.95374 2.90696 2.85992 2.81213 2.76269 2.71371 2.66412 2.61386 2.56294 2.51139 2.45967 2.40756 2.35551 2.30339 2.25136 2.19899 2.145 2.08973 2.03333 1.97605 1.91827 1.86054 1.8026 1.74365 1.68367 1.62299 1.5615 1.50036 1.43969 1.37878 1.31757 1.25554 1.19334 1.13085 1.06906 1.00663 0.943705 0.880095 0.81699 0.753992 0.69771 0.633289 0.567117 0.497735 0.436443 0.364721 0.306674 0.227036 0.172931 0.100457 0.0251042 ) ; } courseSymmetryWalls { type symmetryPlane; value uniform 0; } fineSymmetryWall { type symmetryPlane; value uniform 0; } fineWalls { type calculated; value uniform 0; } fineCyclicBoundary { type cyclicAMI; value nonuniform List<scalar> 160 ( 19.6266 18.3854 19.0015 19.0167 18.9887 19.1605 19.1981 19.272 19.3473 19.4113 19.475 19.5374 19.6024 19.6614 19.7197 19.7774 19.834 19.8884 19.9421 19.9945 20.0432 20.0924 20.1404 20.1865 20.227 20.2692 20.3101 20.349 20.3822 20.4179 20.4523 20.4849 20.512 20.5418 20.5706 20.598 20.6201 20.6453 20.6696 20.6928 20.7111 20.7325 20.7531 20.7729 20.7881 20.8063 20.8238 20.8407 20.8534 20.8689 20.8838 20.8981 20.9087 20.9218 20.9343 20.9463 20.9552 20.9661 20.9765 20.9863 20.9936 21.0024 21.0108 21.0187 21.0243 21.0312 21.0376 21.0436 21.0479 21.0529 21.0574 21.0616 21.0644 21.0675 21.0702 21.0726 21.0739 21.0753 21.0762 21.0767 785.201 782.162 775.032 760.61 740.709 716.677 690.226 659.133 624.608 590.29 557.58 529.216 494.268 462.757 434.454 413.444 385.952 359.977 337.881 324.051 304.209 282.939 265.803 257.539 243.738 226.063 212.507 207.971 198.915 183.78 172.727 170.555 165.26 151.954 142.672 141.916 139.57 127.679 119.577 119.626 119.569 108.87 101.529 102.06 103.552 93.8898 87.1428 87.8966 90.4797 81.773 75.5042 76.3215 79.7404 71.8586 65.9393 66.8751 70.7464 63.5393 58.0874 59.0489 63.0858 56.6192 51.6099 52.4485 56.567 50.7437 46.1443 46.96 51.0431 45.7601 41.4549 42.1563 46.155 40.7227 39.3643 33.19 48.6076 34.9407 34.1622 45.0143 ) ; } fineplug { type cyclicAMI; value nonuniform List<scalar> 80 ( -212.965 -213.188 -212.701 -215.863 -215.546 -215.056 -214.951 -214.76 -215.229 -216.201 -218.248 -221.559 -225.703 -223.994 -223.951 -223.643 -221.552 -222.287 -222.878 -222.673 -222.406 -230.361 -229.245 -229.697 -229.338 -229.744 -229.765 -229.149 -229.956 -230.154 -230.038 -234.765 -235.494 -236.612 -236.415 -236.657 -236.831 -237.653 -237.477 -237.201 -242.168 -240.091 -242.198 -243.597 -244.324 -244.812 -245.748 -245.388 -244.9 -249.435 -247.547 -249.218 -249.461 -252.474 -253.518 -254.678 -255.224 -256.968 -259.939 -258.515 -260.907 -261.49 -263.973 -264.426 -267.167 -269.518 -273.179 -276.577 -272.59 -282.179 -287.83 -289.321 -293.009 -296.39 -305.739 -316.291 -315.046 -290.01 -205.884 -192.097 ) ; } faceFine { type calculated; value nonuniform List<scalar> 13120 ( -5.57779e-21 -1.72136e-18 2.64003e-18 3.09412e-17 2.76249e-16 2.08502e-14 4.19295e-14 1.50941e-13 2.96855e-13 1.77608e-12 3.1788e-15 -8.32138e-16 2.37957e-14 2.63483e-14 5.95461e-14 6.35278e-14 2.13522e-13 -8.54538e-14 9.55923e-14 9.74553e-13 1.58208e-13 3.58492e-15 -3.60738e-13 -1.20065e-12 -2.01923e-13 -3.34319e-14 1.45133e-13 4.25658e-14 -2.12213e-13 -3.45701e-13 -1.0905e-12 1.57418e-14 2.19052e-13 1.35306e-13 5.31443e-13 9.12318e-14 6.3936e-14 1.75949e-13 -7.68257e-14 -7.16331e-14 2.74506e-14 -3.09747e-14 5.50196e-14 5.70545e-14 2.20652e-14 1.81644e-13 4.24312e-14 4.85873e-14 1.76322e-13 -1.18742e-14 -5.00445e-14 9.61608e-15 3.6102e-14 9.35622e-14 1.44512e-13 6.61069e-14 4.21107e-13 6.0052e-14 1.91806e-14 7.33783e-14 -6.92978e-14 -9.23933e-14 -8.79354e-14 -4.18695e-13 -8.71671e-14 -5.77949e-14 2.41493e-13 2.37047e-13 3.5182e-13 3.4026e-13 2.07892e-12 2.3879e-13 7.13501e-14 4.77826e-14 -1.95247e-12 -4.83401e-13 -5.21166e-13 -3.02685e-12 -6.5268e-13 -6.99935e-13 -2.77629e-13 -2.51206e-13 -2.46016e-13 -6.09193e-13 -2.09247e-13 -1.78013e-13 -1.57538e-13 -1.61508e-13 -1.46088e-13 -1.34841e-13 -1.23582e-13 -1.29803e-13 -2.36945e-12 -2.06792e-13 -2.23398e-13 -2.40668e-13 -2.48379e-13 -2.16258e-13 -1.88719e-13 -1.66627e-13 -1.57186e-13 5.69037e-13 -9.36458e-14 -6.72977e-14 -8.98177e-14 -8.27273e-14 -8.62416e-14 -8.65786e-14 -9.04401e-14 -9.15144e-14 -9.40781e-14 -1.26901e-12 -1.09513e-13 -7.28422e-14 -6.06459e-14 -3.92799e-15 4.11449e-15 8.0432e-14 5.6064e-15 2.31678e-14 -2.08771e-12 -1.28733e-13 -1.86019e-13 -2.07214e-13 -2.28245e-13 -2.50317e-13 -2.94718e-13 -3.11538e-13 -3.6572e-13 -2.8746e-12 -3.11484e-13 -2.68108e-13 -2.44728e-13 -2.04939e-13 -2.40634e-13 -2.44457e-13 -2.9186e-13 -3.10043e-13 -7.16506e-12 -5.79612e-13 -6.10083e-13 -6.14852e-13 -6.43989e-13 -6.47545e-13 -6.87649e-13 -5.63077e-13 -5.77952e-13 -4.19615e-13 -4.02216e-12 -4.61344e-13 -5.0274e-13 -5.83557e-13 -6.32126e-13 -7.42626e-13 -8.19687e-13 -8.50157e-13 -8.26518e-13 -5.32387e-12 -2.13869e-13 -2.25489e-13 -1.06515e-12 -1.82921e-12 -2.99214e-13 -2.74391e-13 -1.16417e-12 -5.96693e-13 -1.80534e-12 -2.56375e-12 -9.83161e-13 -1.40773e-12 -9.94715e-13 -2.54461e-13 -2.64064e-13 -7.76308e-14 -2.45623e-13 -6.22292e-13 -2.51859e-13 -5.68725e-13 -2.83256e-13 -8.1416e-13 -6.1168e-13 -1.77661e-13 1.37141e-13 -4.49475e-14 -2.17906e-13 -8.87855e-13 -3.41237e-13 -8.30286e-13 -9.01975e-13 -3.88979e-13 -5.56193e-13 -1.56775e-13 9.44143e-14 1.70248e-13 -3.4079e-13 -8.45711e-13 -7.71746e-13 -4.8736e-13 -1.34905e-12 -3.51297e-13 -7.04076e-13 -1.99825e-13 3.76173e-13 1.05219e-12 -4.48858e-14 -3.47878e-13 -4.65722e-13 -5.26786e-13 -1.21344e-12 -6.48582e-13 -1.15142e-13 -3.33076e-13 1.29756e-13 -3.46679e-13 -1.12973e-12 -5.94173e-13 -1.7592e-12 -7.93725e-13 -1.23898e-12 -7.47554e-13 -3.30774e-14 -4.27512e-13 7.02641e-13 7.41814e-13 2.44146e-12 9.99583e-13 1.48347e-12 3.41821e-13 -2.78227e-13 -9.62452e-13 -8.87325e-14 -1.10477e-12 -5.11711e-13 -2.34251e-14 1.36386e-12 1.25195e-12 3.5223e-13 3.83526e-13 5.35027e-14 4.55455e-14 -8.71495e-48 8.48313e-50 -7.02718e-52 9.19271e-54 -1.85427e-56 1.28474e-58 -6.47842e-61 1.61067e-63 -1.76001e-66 6.17047e-69 -2.05083e-71 3.38936e-74 -2.29458e-77 6.3905e-80 -1.78668e-82 2.41081e-85 -1.36777e-88 3.28032e-91 -8.1852e-94 9.86019e-97 -5.64477e-100 1.17766e-102 -2.68055e-105 2.95757e-108 -1.80497e-111 4.61546e-114 -8.89844e-117 8.14776e-120 -5.41115e-123 1.28703e-125 -2.33665e-128 2.01519e-131 1.11825e-133 1.65287e-130 2.07978e-127 1.25489e-124 7.11675e-122 7.60564e-119 7.85339e-116 3.87536e-113 1.82185e-110 1.59034e-107 1.33643e-104 5.36864e-102 2.22056e-99 1.58716e-96 1.09225e-93 3.61004e-91 1.41216e-88 8.49354e-86 4.94969e-83 1.41937e-80 6.29373e-78 3.3638e-75 1.73993e-72 4.99595e-70 2.36187e-67 1.0342e-64 4.29587e-62 1.14254e-59 4.22163e-57 1.42942e-54 4.52509e-52 1.1502e-49 3.24945e-47 8.6787e-45 2.11565e-42 4.78538e-40 1.00237e-37 2.1574e-35 4.26858e-33 7.13519e-31 1.03215e-28 1.64669e-26 2.49285e-24 3.54972e-22 4.80648e-20 6.42274e-18 8.48541e-16 -3.60457e-45 2.94827e-47 -2.25728e-49 2.43643e-51 -6.81822e-54 4.19198e-56 -1.93952e-58 5.31705e-61 -6.59915e-64 1.91411e-66 -6.01417e-69 1.17465e-71 -8.73303e-75 1.89697e-77 -5.12181e-80 8.50085e-83 -5.26235e-86 9.36857e-89 -2.28087e-91 3.46974e-94 -2.1455e-97 3.12915e-100 -7.1011e-103 1.01895e-105 -6.6526e-109 1.28567e-111 -2.10011e-114 2.7039e-117 -1.89907e-120 3.28716e-123 -5.01197e-126 6.3338e-129 -5.19779e-132 1.5514e-133 1.92407e-130 2.4382e-127 2.05342e-124 2.4236e-121 2.80103e-118 3.12407e-115 2.44859e-112 2.47519e-109 2.43737e-106 2.30779e-103 1.61344e-100 1.36476e-97 1.11868e-94 8.78461e-92 5.30896e-89 3.68508e-86 2.4637e-83 1.57036e-80 8.23095e-78 4.60401e-75 2.46316e-72 1.24926e-69 5.79468e-67 2.56709e-64 1.07891e-61 4.26748e-59 1.5668e-56 5.44341e-54 1.76445e-51 5.30644e-49 1.46624e-46 3.96556e-44 1.00886e-41 2.36018e-39 5.06289e-37 1.02112e-34 1.94415e-32 3.56706e-30 6.21565e-28 9.8249e-26 1.46756e-23 2.10589e-21 2.9278e-19 3.95492e-17 5.20779e-15 -1.14196e-42 9.71936e-45 -6.75998e-47 6.34552e-49 -2.31535e-51 1.40427e-53 -5.48156e-56 1.27424e-58 -2.36265e-61 7.32019e-64 -1.69374e-66 2.57598e-69 -3.03916e-72 7.30698e-75 -1.40841e-77 1.74836e-80 -1.78261e-83 3.64264e-86 -6.13736e-89 6.81151e-92 -6.66864e-95 1.2013e-97 -1.83736e-100 1.8817e-103 -1.88001e-106 3.07672e-109 -4.3827e-112 4.31153e-115 -4.60552e-118 6.94284e-121 -9.333e-124 9.19466e-127 -1.06544e-129 2.03487e-132 7.30097e-130 7.0974e-127 7.39159e-124 8.74469e-121 1.00368e-117 8.85084e-115 8.92935e-112 8.89371e-109 8.56381e-106 6.97369e-103 6.07966e-100 5.03665e-97 4.01677e-94 3.05651e-91 2.20737e-88 1.51054e-85 9.90341e-83 6.18578e-80 3.63174e-77 2.01802e-74 1.06848e-71 5.36382e-69 2.52156e-66 1.12274e-63 4.7426e-61 1.88983e-58 7.01749e-56 2.43332e-53 7.96765e-51 2.45697e-48 7.07671e-46 1.86508e-43 4.6072e-41 1.07027e-38 2.32717e-36 4.64875e-34 8.6748e-32 1.518e-29 2.49871e-27 3.87941e-25 5.694e-23 7.98491e-21 1.08086e-18 1.4196e-16 1.75556e-14 -3.13116e-40 2.96581e-42 -1.87709e-44 1.60627e-46 -7.21256e-49 4.30508e-51 -1.42432e-53 3.76795e-56 -7.99235e-59 2.07181e-61 -4.15728e-64 7.60864e-67 -9.75824e-70 1.88874e-72 -3.19968e-75 5.01837e-78 -5.44501e-81 8.95433e-84 -1.31717e-86 1.84481e-89 -1.89495e-92 2.74971e-95 -3.65954e-98 4.71714e-101 -4.83024e-104 6.41362e-107 -7.94034e-110 9.6527e-113 -1.04254e-115 1.28145e-118 -1.49929e-121 1.7538e-124 -2.01797e-127 2.35841e-130 1.22709e-129 1.59378e-126 1.95783e-123 2.30924e-120 2.63994e-117 2.9016e-114 3.0138e-111 2.99543e-108 2.87543e-105 2.6477e-102 2.30133e-99 1.90641e-96 1.51746e-93 1.15283e-90 8.2563e-88 5.60196e-85 3.63805e-82 2.24944e-79 1.3076e-76 7.15957e-74 3.73114e-71 1.84295e-68 8.53688e-66 3.69751e-63 1.51402e-60 5.84587e-58 2.11116e-55 7.1016e-53 2.24353e-50 6.64393e-48 1.8321e-45 4.69416e-43 1.12352e-40 2.51165e-38 5.22652e-36 1.0109e-33 1.8272e-31 3.09832e-29 4.93763e-27 7.43226e-25 1.06063e-22 1.44949e-20 1.90982e-18 2.43014e-16 2.98274e-14 -7.69139e-38 8.26221e-40 -4.81692e-42 3.91195e-44 -2.06053e-46 1.17699e-48 -3.35255e-51 8.18619e-54 -2.26642e-56 5.36768e-59 -9.23093e-62 1.50354e-64 -2.462e-67 4.16791e-70 -6.33607e-73 9.09042e-76 -1.22105e-78 1.81709e-81 -2.40855e-84 3.11952e-87 -3.84061e-90 5.07157e-93 -6.09235e-96 7.29326e-99 -8.71438e-102 1.05506e-104 -1.17882e-107 1.33971e-110 -1.59601e-113 1.81042e-116 -1.93029e-119 2.14489e-122 -2.48294e-125 2.74872e-128 2.83945e-130 3.80216e-127 4.3213e-124 4.66673e-121 4.81076e-118 4.69126e-115 4.24923e-112 3.57644e-109 2.77935e-106 1.93769e-103 1.13381e-100 4.65306e-98 -4.84399e-97 -2.74825e-92 -3.99033e-89 -4.09457e-86 -3.58306e-83 -2.7955e-80 -1.96734e-77 -1.27247e-74 -7.66744e-72 -4.30387e-69 -2.23511e-66 -1.07932e-63 -4.88261e-61 -2.06446e-58 -8.09732e-56 -2.94959e-53 -1.00319e-50 -3.17957e-48 -9.33292e-46 -2.53527e-43 -6.39952e-41 -1.50001e-38 -3.25281e-36 -6.52106e-34 -1.21322e-31 -2.1003e-29 -3.38652e-27 -5.10816e-25 -7.22311e-23 -9.64956e-21 -1.22099e-18 -1.45559e-16 -1.58209e-14 -2.49259e-35 2.06048e-37 -1.14734e-39 9.96773e-42 -5.39848e-44 2.92375e-46 -7.14697e-49 1.72405e-51 -5.8608e-54 1.28716e-56 -1.85313e-59 3.02182e-62 -6.06e-65 8.09287e-68 -1.18024e-70 1.73198e-73 -2.43923e-76 3.3021e-79 -4.35939e-82 5.6802e-85 -7.19545e-88 8.8718e-91 -1.07687e-93 1.30146e-96 -1.54858e-99 1.81066e-102 -2.09843e-105 2.43549e-108 -2.80842e-111 3.20569e-114 -3.64502e-117 4.16798e-120 -4.769e-123 5.43346e-126 -1.12854e-128 -6.55787e-126 -8.02112e-123 -9.41866e-120 -1.0672e-116 -1.16083e-113 -1.19805e-110 -1.18306e-107 -1.1235e-104 -1.02153e-101 -8.7956e-99 -7.2178e-96 -5.67345e-93 -4.25525e-90 -3.01483e-87 -2.02677e-84 -1.29903e-81 -7.91131e-79 -4.53701e-76 -2.45653e-73 -1.26118e-70 -6.12183e-68 -2.78738e-65 -1.19162e-62 -4.80044e-60 -1.81795e-57 -6.42824e-55 -2.12159e-52 -6.55363e-50 -1.89141e-47 -5.07293e-45 -1.26306e-42 -2.92559e-40 -6.30035e-38 -1.25785e-35 -2.32727e-33 -4.0016e-31 -6.41204e-29 -9.59379e-27 -1.34721e-24 -1.78294e-22 -2.24296e-20 -2.69748e-18 -3.10032e-16 -3.33548e-14 -9.11319e-33 4.54119e-35 -4.56654e-37 3.99462e-39 -1.29888e-41 6.42488e-44 -2.11494e-46 5.711e-49 -1.30669e-51 2.67144e-54 -5.0544e-57 8.98958e-60 -1.48437e-62 2.30863e-65 -3.43431e-68 4.94691e-71 -6.83146e-74 9.07585e-77 -1.17328e-79 1.49091e-82 -1.84861e-85 2.2349e-88 -2.65597e-91 3.13159e-94 -3.64478e-97 4.17485e-100 -4.73456e-103 5.361e-106 -6.0417e-109 6.74846e-112 -7.50331e-115 8.36856e-118 -9.34868e-121 1.04105e-123 -1.15915e-126 -1.72628e-127 -1.93445e-124 -2.03264e-121 -2.01505e-118 -1.86209e-115 -1.56811e-112 -1.18003e-109 -7.5026e-107 -3.27905e-104 3.78098e-102 3.08581e-98 4.72665e-95 5.35965e-92 5.15499e-89 4.43172e-86 3.49235e-83 2.54405e-80 1.71238e-77 1.07266e-74 6.29249e-72 3.45458e-69 1.7659e-66 8.42438e-64 3.76387e-61 1.57209e-58 6.10593e-56 2.20602e-53 7.43022e-51 2.3289e-48 6.7617e-46 1.81721e-43 4.52695e-41 1.04411e-38 2.22298e-36 4.36607e-34 7.9218e-32 1.32905e-29 2.06066e-27 2.95575e-25 3.90855e-23 4.72818e-21 5.03517e-19 3.9199e-17 -1.7961e-15 -2.95466e-30 1.70455e-32 -1.68393e-34 1.428e-36 -5.59093e-39 2.27896e-41 -6.89841e-44 1.76598e-46 -3.92494e-49 7.83894e-52 -1.44559e-54 2.50091e-57 -4.04337e-60 6.1618e-63 -8.97105e-66 1.2608e-68 -1.70419e-71 2.21961e-74 -2.80983e-77 3.48652e-80 -4.2298e-83 5.01066e-86 -5.83053e-89 6.7144e-92 -7.64213e-95 8.57128e-98 -9.51359e-101 1.05201e-103 -1.15863e-106 1.26614e-109 -1.37695e-112 1.49923e-115 -1.63538e-118 1.77994e-121 -1.93666e-124 -9.19171e-126 -1.13763e-122 -1.32025e-119 -1.47395e-116 -1.57756e-113 -1.60674e-110 -1.56479e-107 -1.46117e-104 -1.30426e-101 -1.10508e-98 -8.9192e-96 -6.8753e-93 -5.04781e-90 -3.50692e-87 -2.31079e-84 -1.44749e-81 -8.59807e-79 -4.8142e-76 -2.54373e-73 -1.27078e-70 -5.98853e-68 -2.64781e-65 -1.0985e-62 -4.282e-60 -1.565e-57 -5.33746e-55 -1.69739e-52 -5.0371e-50 -1.39238e-47 -3.57152e-45 -8.49143e-43 -1.87221e-40 -3.82464e-38 -7.22481e-36 -1.26173e-33 -2.04012e-31 -3.05975e-29 -4.26239e-27 -5.53189e-25 -6.6956e-23 -7.55583e-21 -7.84658e-19 -7.09574e-17 -3.94873e-15 -8.36412e-28 5.59379e-30 -5.53112e-32 4.44289e-34 -1.92176e-36 6.78389e-39 -1.93062e-41 4.74338e-44 -1.02626e-46 2.00407e-49 -3.61035e-52 6.08861e-55 -9.62995e-58 1.43791e-60 -2.04901e-63 2.81238e-66 -3.71985e-69 4.747e-72 -5.88367e-75 7.13419e-78 -8.46741e-81 9.82416e-84 -1.11915e-86 1.25955e-89 -1.40188e-92 1.53905e-95 -1.67166e-98 1.80619e-101 -1.94406e-104 2.07793e-107 -2.20999e-110 2.3501e-113 -2.50338e-116 2.66252e-119 -2.83066e-122 4.45157e-125 1.75396e-122 2.06381e-119 2.33486e-116 2.53228e-113 2.61741e-110 2.58787e-107 2.4523e-104 2.2213e-101 1.9125e-98 1.56935e-95 1.22957e-92 9.17533e-90 6.48691e-87 4.35242e-84 2.77571e-81 1.67863e-78 9.57932e-76 5.16214e-73 2.62995e-70 1.26391e-67 5.7039e-65 2.41682e-62 9.62104e-60 3.59063e-57 1.2511e-54 4.06629e-52 1.23292e-49 3.48049e-47 9.11594e-45 2.2124e-42 4.9748e-40 1.03515e-37 1.98928e-35 3.52971e-33 5.79e-31 8.79832e-29 1.24166e-26 1.63643e-24 2.02715e-22 2.38573e-20 2.69929e-18 2.97543e-16 3.20929e-14 -2.01423e-25 1.57001e-27 -1.5833e-29 1.15697e-31 -4.99825e-34 1.65066e-36 -4.53082e-39 1.07986e-41 -2.28084e-44 4.35731e-47 -7.67202e-50 1.26256e-52 -1.95297e-55 2.85558e-58 -3.98217e-61 5.34119e-64 -6.91173e-67 8.63815e-70 -1.04813e-72 1.24254e-75 -1.44266e-78 1.63883e-81 -1.82747e-84 2.01091e-87 -2.18865e-90 2.35139e-93 -2.49902e-96 2.63924e-99 -2.77636e-102 2.90203e-105 -3.01818e-108 3.13559e-111 -3.26209e-114 3.38994e-117 -3.52138e-120 3.72335e-123 6.55418e-122 7.61355e-119 8.49399e-116 9.07902e-113 9.25476e-110 9.01973e-107 8.41612e-104 7.50114e-101 6.35779e-98 5.1333e-95 3.95286e-92 2.89676e-89 2.01166e-86 1.32507e-83 8.28629e-81 4.90912e-78 2.74423e-75 1.44767e-72 7.21075e-70 3.38415e-67 1.49082e-64 6.161e-62 2.38861e-59 8.6696e-57 2.93534e-54 9.25964e-52 2.72021e-49 7.42686e-47 1.87867e-44 4.39627e-42 9.51141e-40 1.90002e-37 3.49841e-35 5.93553e-33 9.2901e-31 1.3444e-28 1.80488e-26 2.26303e-24 2.6744e-22 3.02347e-20 3.33628e-18 3.69695e-16 4.07424e-14 -3.96801e-23 3.63742e-25 -3.84639e-27 2.46871e-29 -1.01848e-31 3.25711e-34 -8.68844e-37 2.01391e-39 -4.15185e-42 7.75417e-45 -1.33411e-47 2.14339e-50 -3.24148e-53 4.63872e-56 -6.32932e-59 8.2989e-62 -1.05051e-64 1.28535e-67 -1.52658e-70 1.76993e-73 -2.01022e-76 2.23527e-79 -2.43965e-82 2.62548e-85 -2.79446e-88 2.93752e-91 -3.05452e-94 3.15396e-97 -3.24295e-100 3.31459e-103 -3.37079e-106 3.42199e-109 -3.47733e-112 3.53063e-115 -3.58332e-118 3.64672e-121 1.09793e-121 1.26749e-118 1.3994e-115 1.47951e-112 1.4924e-109 1.4387e-106 1.32662e-103 1.16775e-100 9.77755e-98 7.79509e-95 5.92127e-92 4.27734e-89 2.92815e-86 1.90029e-83 1.16957e-80 6.8135e-78 3.74448e-75 1.94068e-72 9.48557e-70 4.36379e-67 1.88336e-64 7.61844e-62 2.88713e-59 1.02291e-56 3.37756e-54 1.03779e-51 2.96451e-49 7.85658e-47 1.92618e-44 4.36105e-42 9.10884e-40 1.75251e-37 3.10047e-35 5.0408e-33 7.53563e-31 1.03739e-28 1.31827e-26 1.55338e-24 1.70659e-22 1.76007e-20 1.71062e-18 1.55201e-16 1.19781e-14 -5.99566e-21 6.57515e-23 -7.0651e-25 4.03739e-27 -1.59523e-29 4.94634e-32 -1.28278e-34 2.89294e-37 -5.8175e-40 1.06133e-42 -1.78369e-45 2.7981e-48 -4.1358e-51 5.78984e-54 -7.72804e-57 9.9074e-60 -1.22666e-62 1.46894e-65 -1.7075e-68 1.93653e-71 -2.15151e-74 2.34141e-77 -2.50107e-80 2.63288e-83 -2.74067e-86 2.81862e-89 -2.8675e-92 2.89538e-95 -2.91024e-98 2.90851e-101 -2.89222e-104 2.86968e-107 -2.84877e-110 2.82609e-113 -2.80248e-116 2.78468e-119 -8.71938e-122 -6.92368e-119 -7.74422e-116 -8.29635e-113 -8.48787e-110 -8.3023e-107 -7.76796e-104 -6.93995e-101 -5.90323e-98 -4.78366e-95 -3.69409e-92 -2.71376e-89 -1.89108e-86 -1.25009e-83 -7.83961e-81 -4.65574e-78 -2.61092e-75 -1.38195e-72 -6.90183e-70 -3.24636e-67 -1.43405e-64 -5.94315e-62 -2.30918e-59 -8.39497e-57 -2.84755e-54 -8.99822e-52 -2.64599e-49 -7.22544e-47 -1.82738e-44 -4.27282e-42 -9.2254e-40 -1.83624e-37 -3.36337e-35 -5.66461e-33 -8.77403e-31 -1.25118e-28 -1.64579e-26 -2.00505e-24 -2.27412e-22 -2.41775e-20 -2.42011e-18 -2.25887e-16 -1.80597e-14 -6.14548e-19 8.38268e-21 -8.40385e-23 4.52247e-25 -1.723e-27 5.17894e-30 -1.30449e-32 2.8607e-35 -5.60572e-38 9.98063e-41 -1.63764e-43 2.50819e-46 -3.6222e-49 4.9585e-52 -6.47307e-55 8.11458e-58 -9.82606e-61 1.15144e-63 -1.30986e-66 1.4534e-69 -1.57967e-72 1.68236e-75 -1.75882e-78 1.81149e-81 -1.84443e-84 1.85589e-87 -1.84736e-90 1.82448e-93 -1.79304e-96 1.75237e-99 -1.7041e-102 1.65295e-105 -1.60345e-108 1.55444e-111 -1.50635e-114 1.4622e-117 -1.43066e-120 -6.47408e-120 -7.26532e-117 -7.80518e-114 -8.00958e-111 -7.85654e-108 -7.36751e-105 -6.59392e-102 -5.61866e-99 -4.5591e-96 -3.52258e-93 -2.58714e-90 -1.8016e-87 -1.18918e-84 -7.43757e-82 -4.39936e-79 -2.45455e-76 -1.29062e-73 -6.39033e-71 -2.97315e-68 -1.29607e-65 -5.28534e-63 -2.01337e-60 -7.14551e-58 -2.35468e-55 -7.18616e-53 -2.02586e-50 -5.25608e-48 -1.24926e-45 -2.70757e-43 -5.32318e-41 -9.42716e-39 -1.48978e-36 -2.0748e-34 -2.50011e-32 -2.5298e-30 -2.04243e-28 -1.23208e-26 -7.65824e-25 -1.86261e-22 -6.48346e-20 -1.82855e-17 -4.56736e-15 -9.84978e-17 5.94596e-19 -5.36155e-21 2.7087e-23 -9.88109e-26 2.86674e-28 -6.99617e-31 1.48991e-33 -2.84161e-36 4.93267e-39 -7.89776e-42 1.18085e-44 -1.66584e-47 2.22939e-50 -2.84635e-53 3.48982e-56 -4.13366e-59 4.7404e-62 -5.27853e-65 5.73241e-68 -6.09724e-71 6.35668e-74 -6.50635e-77 6.55968e-80 -6.53625e-83 6.43746e-86 -6.27269e-89 6.06305e-92 -5.8297e-95 5.57474e-98 -5.30473e-101 5.03382e-104 -4.77522e-107 4.52707e-110 -4.29023e-113 4.07163e-116 -3.89546e-119 -2.00297e-118 -2.22983e-115 -2.37629e-112 -2.41984e-109 -2.35534e-106 -2.1912e-103 -1.94557e-100 -1.64539e-97 -1.32526e-94 -1.01635e-91 -7.41043e-89 -5.12609e-86 -3.36245e-83 -2.09044e-80 -1.22977e-77 -6.83061e-75 -3.57883e-72 -1.7673e-69 -8.21088e-67 -3.58063e-64 -1.4636e-61 -5.60077e-59 -2.0024e-56 -6.67172e-54 -2.0678e-51 -5.95173e-49 -1.58731e-46 -3.9123e-44 -8.89269e-42 -1.86068e-39 -3.57661e-37 -6.30337e-35 -1.0173e-32 -1.50308e-30 -2.03476e-28 -2.52941e-26 -2.90156e-24 -3.09524e-22 -3.10708e-20 -2.97979e-18 -2.77449e-16 -2.48603e-14 -4.30843e-16 3.03293e-18 -2.45147e-20 1.16824e-22 -4.08555e-25 1.14677e-27 -2.7231e-30 5.6643e-33 -1.05794e-35 1.80286e-38 -2.83996e-41 4.18424e-44 -5.82249e-47 7.6964e-50 -9.71799e-53 1.17943e-55 -1.3835e-58 1.57256e-61 -1.73719e-64 1.87269e-67 -1.9776e-70 2.04819e-73 -2.08408e-76 2.08968e-79 -2.0709e-82 2.02942e-85 -1.96872e-88 1.8951e-91 -1.81459e-94 1.72861e-97 -1.6394e-100 1.55089e-103 -1.46657e-106 1.38633e-109 -1.31055e-112 1.24097e-115 -1.18821e-118 -1.02786e-117 -1.12986e-114 -1.18858e-111 -1.19471e-108 -1.14743e-105 -1.05271e-102 -9.21381e-100 -7.67996e-97 -6.09413e-94 -4.60162e-91 -3.30171e-88 -2.24693e-85 -1.44928e-82 -8.85381e-80 -5.1149e-77 -2.7887e-74 -1.43334e-71 -6.93798e-69 -3.15707e-66 -1.34755e-63 -5.38713e-61 -2.01418e-58 -7.02871e-56 -2.28365e-53 -6.89443e-51 -1.93049e-48 -5.00179e-46 -1.196e-43 -2.63324e-41 -5.32727e-39 -9.88157e-37 -1.67703e-34 -2.60035e-32 -3.68188e-30 -4.76341e-28 -5.64333e-26 -6.15284e-24 -6.22469e-22 -5.92023e-20 -5.39101e-18 -4.81358e-16 -3.90159e-14 -1.04846e-15 8.51154e-18 -6.246e-20 2.80917e-22 -9.40563e-25 2.54968e-27 -5.88093e-30 1.19307e-32 -2.17954e-35 3.6424e-38 -5.63948e-41 8.1805e-44 -1.12206e-46 1.46394e-49 -1.82682e-52 2.19322e-55 -2.54642e-58 2.86721e-61 -3.14036e-64 3.35848e-67 -3.51949e-70 3.61934e-73 -3.65916e-76 3.64706e-79 -3.59317e-82 3.50217e-85 -3.3809e-88 3.23973e-91 -3.08824e-94 2.92978e-97 -2.7684e-100 2.61008e-103 -2.4599e-106 2.31817e-109 -2.18561e-112 2.06459e-115 -1.97332e-118 -1.8415e-117 -2.01494e-114 -2.10944e-111 -2.11013e-108 -2.01641e-105 -1.83998e-102 -1.60129e-99 -1.32701e-96 -1.04664e-93 -7.85202e-91 -5.59542e-88 -3.78109e-85 -2.42081e-82 -1.46722e-79 -8.40515e-77 -4.54254e-74 -2.31323e-71 -1.10865e-68 -4.99164e-66 -2.10694e-63 -8.32331e-61 -3.07242e-58 -1.05751e-55 -3.38576e-53 -1.00614e-50 -2.76936e-48 -7.04278e-46 -1.65028e-43 -3.55395e-41 -7.017e-39 -1.267e-36 -2.08687e-34 -3.12929e-32 -4.26653e-30 -5.28733e-28 -5.96168e-26 -6.13575e-24 -5.79741e-22 -5.07458e-20 -4.16385e-18 -3.25837e-16 -2.33709e-14 -9.61117e-16 8.68755e-18 -5.95678e-20 2.57928e-22 -8.41412e-25 2.23859e-27 -5.09162e-30 1.02183e-32 -1.85053e-35 3.07137e-38 -4.72989e-41 6.83147e-44 -9.3358e-47 1.21448e-49 -1.51224e-52 1.81246e-55 -2.10122e-58 2.36342e-61 -2.58706e-64 2.76588e-67 -2.8977e-70 2.97993e-73 -3.01381e-76 3.00548e-79 -2.96261e-82 2.88965e-85 -2.79241e-88 2.6789e-91 -2.55643e-94 2.4283e-97 -2.29801e-100 2.17016e-103 -2.04853e-106 1.93381e-109 -1.8268e-112 1.72926e-115 -1.67265e-118 -3.39675e-117 -3.68372e-114 -3.82126e-111 -3.78694e-108 -3.58386e-105 -3.23722e-102 -2.78764e-99 -2.28524e-96 -1.78221e-93 -1.32131e-90 -9.3003e-88 -6.20502e-85 -3.92028e-82 -2.34308e-79 -1.32278e-76 -7.04108e-74 -3.52904e-71 -1.66326e-68 -7.35819e-66 -3.04918e-63 -1.18149e-60 -4.27313e-58 -1.43943e-55 -4.50511e-53 -1.30709e-50 -3.50759e-48 -8.68352e-46 -1.97767e-43 -4.13254e-41 -7.9026e-39 -1.37934e-36 -2.19195e-34 -3.16513e-32 -4.14811e-30 -4.93408e-28 -5.33567e-26 -5.26819e-24 -4.78482e-22 -4.04265e-20 -3.2198e-18 -2.45315e-16 -1.61075e-14 -1.52842e-15 1.47465e-17 -9.26992e-20 3.79755e-22 -1.18969e-24 3.06867e-27 -6.81048e-30 1.33967e-32 -2.3856e-35 3.90354e-38 -5.93932e-41 8.48912e-44 -1.14941e-46 1.48321e-49 -1.83392e-52 2.18438e-55 -2.51806e-58 2.81809e-61 -3.07133e-64 3.27084e-67 -3.41429e-70 3.49989e-73 -3.52992e-76 3.51151e-79 -3.45334e-82 3.36141e-85 -3.24278e-88 3.10634e-91 -2.9601e-94 2.80834e-97 -2.65519e-100 2.50558e-103 -2.36343e-106 2.22984e-109 -2.10579e-112 1.99305e-115 -1.88045e-118 1.43457e-117 1.57281e-114 1.65009e-111 1.65449e-108 1.58462e-105 1.4489e-102 1.26333e-99 1.04905e-96 8.29006e-94 6.22954e-91 4.44568e-88 3.00862e-85 1.92883e-82 1.17021e-79 6.70858e-77 3.62791e-74 1.84819e-71 8.85727e-69 3.98611e-66 1.68123e-63 6.63377e-61 2.44435e-58 8.39271e-56 2.67879e-53 7.93008e-51 2.17225e-48 5.49155e-46 1.27763e-43 2.72791e-41 5.33045e-39 9.50519e-37 1.54234e-34 2.27165e-32 3.0311e-30 3.65986e-28 3.99905e-26 3.96174e-24 3.57198e-22 2.94701e-20 2.23114e-18 1.53667e-16 7.06211e-15 1.5664e-17 -1.89335e-19 1.23528e-21 -5.27423e-24 1.71769e-26 -4.59657e-29 1.05663e-31 -2.1493e-34 3.9508e-37 -6.66528e-40 1.04487e-42 -1.53759e-45 2.1415e-48 -2.84107e-51 3.61084e-54 -4.41963e-57 5.23302e-60 -6.01438e-63 6.73175e-66 -7.36228e-69 7.89046e-72 -8.30426e-75 8.60068e-78 -8.78675e-81 8.8736e-84 -8.87059e-87 8.79094e-90 -8.65242e-93 8.47174e-96 -8.25988e-99 8.02832e-102 -7.79039e-105 7.55732e-108 -7.33477e-111 7.12837e-114 -6.94557e-117 6.0102e-120 -9.05459e-118 -1.00357e-114 -1.06452e-111 -1.0795e-108 -1.04595e-105 -9.67682e-103 -8.53941e-100 -7.17917e-97 -5.74546e-94 -4.37333e-91 -3.16228e-88 -2.16913e-85 -1.40995e-82 -8.67516e-80 -5.04511e-77 -2.76869e-74 -1.4318e-71 -6.96745e-69 -3.1848e-66 -1.36478e-63 -5.47302e-61 -2.05006e-58 -7.15718e-56 -2.32337e-53 -6.99649e-51 -1.94975e-48 -5.0147e-46 -1.18692e-43 -2.57773e-41 -5.12166e-39 -9.28109e-37 -1.52917e-34 -2.28432e-32 -3.08667e-30 -3.767e-28 -4.15127e-26 -4.13904e-24 -3.75252e-22 -3.12252e-20 -2.41954e-18 -1.80835e-16 -1.20607e-14 -3.5316e-20 6.00495e-22 -4.84022e-24 2.39439e-26 -8.68361e-29 2.5301e-31 -6.2452e-34 1.35112e-36 -2.62272e-39 4.64901e-42 -7.62969e-45 1.17198e-47 -1.69947e-50 2.34293e-53 -3.09001e-56 3.91991e-59 -4.80453e-62 5.71107e-65 -6.60728e-68 7.46492e-71 -8.25948e-74 8.97028e-77 -9.58504e-80 1.01004e-82 -1.05174e-85 1.08389e-88 -1.10734e-91 1.12351e-94 -1.13381e-97 1.13936e-100 -1.14153e-103 1.14192e-106 -1.14198e-109 1.14272e-112 -1.14527e-115 1.15098e-118 -4.39454e-120 -4.87765e-117 -5.32455e-114 -5.56032e-111 -5.54916e-108 -5.28907e-105 -4.81108e-102 -4.17216e-99 -3.44533e-96 -2.70688e-93 -2.02151e-90 -1.43323e-87 -9.63375e-85 -6.13222e-82 -3.69204e-79 -2.09942e-76 -1.12567e-73 -5.68275e-71 -2.69698e-68 -1.20113e-65 -5.00995e-63 -1.95337e-60 -7.10533e-58 -2.4058e-55 -7.564e-53 -2.20289e-50 -5.92749e-48 -1.46949e-45 -3.34635e-43 -6.97831e-41 -1.32843e-38 -2.30105e-36 -3.61499e-34 -5.13575e-32 -6.58237e-30 -7.60028e-28 -7.90747e-26 -7.43481e-24 -6.36154e-22 -5.02123e-20 -3.75164e-18 -2.91031e-16 -1.86033e-14 -2.44033e-23 4.06274e-25 6.04988e-27 -6.86272e-29 3.68094e-31 -1.38287e-33 4.11672e-36 -1.03174e-38 2.25818e-41 -4.43022e-44 7.94007e-47 -1.3182e-49 2.04872e-52 -3.00746e-55 4.20181e-58 -5.62213e-61 7.24094e-64 -9.01691e-67 1.09014e-69 -1.28427e-72 1.47876e-75 -1.66869e-78 1.85023e-81 -2.0208e-84 2.17862e-87 -2.32264e-90 2.45315e-93 -2.57163e-96 2.67992e-99 -2.77993e-102 2.87441e-105 -2.96688e-108 3.06088e-111 -3.1596e-114 3.26692e-117 -3.40322e-120 -1.83064e-119 -2.05769e-116 -2.2133e-113 -2.27653e-110 -2.23698e-107 -2.0984e-104 -1.87766e-101 -1.601e-98 -1.29934e-95 -1.00277e-92 -7.35178e-90 -5.11405e-87 -3.37078e-84 -2.10263e-81 -1.2397e-78 -6.89828e-76 -3.61683e-73 -1.78405e-70 -8.26563e-68 -3.59035e-65 -1.45923e-62 -5.53821e-60 -1.95873e-57 -6.44069e-55 -1.96408e-52 -5.54032e-50 -1.44175e-47 -3.45103e-45 -7.57433e-43 -1.51937e-40 -2.77615e-38 -4.60439e-36 -6.90765e-34 -9.3432e-32 -1.13622e-29 -1.24e-27 -1.21403e-25 -1.06867e-23 -8.50717e-22 -6.19012e-20 -4.17693e-18 -2.72747e-16 -1.5483e-14 4.13827e-19 -4.53596e-21 2.58174e-23 -1.02798e-25 3.21504e-28 -8.40248e-31 1.9069e-33 -3.85723e-36 7.08658e-39 -1.19964e-41 1.8928e-44 -2.80964e-47 3.95369e-50 -5.30765e-53 6.83527e-56 -8.48576e-59 1.01983e-61 -1.19074e-64 1.35513e-67 -1.50789e-70 1.64498e-73 -1.7634e-76 1.86164e-79 -1.93975e-82 1.99869e-85 -2.03986e-88 2.06541e-91 -2.07818e-94 2.08108e-97 -2.0766e-100 2.06734e-103 -2.05612e-106 2.0455e-109 -2.03747e-112 2.03406e-115 -2.03754e-118 -1.69868e-120 -2.09874e-117 -2.21101e-114 -2.2235e-111 -2.13206e-108 -1.94737e-105 -1.69241e-102 -1.3976e-99 -1.09505e-96 -8.12872e-94 -5.70768e-91 -3.78357e-88 -2.36258e-85 -1.38638e-82 -7.62399e-80 -3.91548e-77 -1.86989e-74 -8.25863e-72 -3.34839e-69 -1.23251e-66 -4.04498e-64 -1.14389e-61 -2.56617e-59 -3.2394e-57 7.05215e-55 7.08566e-52 3.2574e-49 1.13968e-46 3.33994e-44 8.47924e-42 1.89169e-39 3.73153e-37 6.52184e-35 1.00989e-32 1.38378e-30 1.67507e-28 1.7886e-26 1.68338e-24 1.39661e-22 1.02076e-20 6.49511e-19 3.45765e-17 6.92426e-16 1.37148e-16 -1.11417e-18 5.33617e-21 -1.88401e-23 5.3745e-26 -1.30292e-28 2.77282e-31 -5.30004e-34 9.25444e-37 -1.49546e-39 2.25992e-42 -3.22166e-45 4.36382e-48 -5.6498e-51 7.02799e-54 -8.43882e-57 9.82074e-60 -1.11148e-62 1.22718e-65 -1.32573e-68 1.40505e-71 -1.46415e-74 1.50332e-77 -1.52407e-80 1.52851e-83 -1.51894e-86 1.49791e-89 -1.46824e-92 1.43257e-95 -1.39306e-98 1.35169e-101 -1.31037e-104 1.2707e-107 -1.23382e-110 1.20072e-113 -1.17242e-116 -2.10207e-119 -3.60486e-116 -3.82262e-113 -3.87408e-110 -3.74888e-107 -3.46103e-104 -3.04581e-101 -2.55235e-98 -2.03438e-95 -1.54075e-92 -1.10756e-89 -7.54726e-87 -4.86874e-84 -2.96947e-81 -1.70996e-78 -9.28259e-76 -4.74257e-73 -2.27669e-70 -1.02516e-67 -4.32168e-65 -1.70217e-62 -6.25085e-60 -2.13557e-57 -6.77171e-55 -1.9879e-52 -5.38845e-50 -1.34498e-47 -3.08235e-45 -6.46592e-43 -1.23764e-40 -2.15471e-38 -3.40117e-36 -4.85257e-34 -6.24069e-32 -7.21906e-30 -7.50243e-28 -7.00627e-26 -5.89159e-24 -4.4793e-22 -3.09445e-20 -1.93664e-18 -1.10843e-16 -3.45055e-15 9.00473e-15 -6.12422e-17 2.69391e-19 -9.01012e-22 2.47089e-24 -5.80553e-27 1.20338e-29 -2.24761e-32 3.84347e-35 -6.09226e-38 9.04125e-41 -1.26681e-43 1.68762e-46 -2.14999e-49 2.6326e-52 -3.11237e-55 3.56683e-58 -3.97578e-61 4.32355e-64 -4.60038e-67 4.80193e-70 -4.92802e-73 4.98267e-76 -4.97365e-79 4.91054e-82 -4.80305e-85 4.6612e-88 -4.49518e-91 4.31415e-94 -4.12548e-97 3.93545e-100 -3.74972e-103 3.57272e-106 -3.40741e-109 3.25609e-112 -3.12078e-115 4.11616e-118 1.24262e-115 1.3273e-112 1.35536e-109 1.3219e-106 1.2304e-103 1.09199e-100 9.23155e-98 7.42577e-95 5.67767e-92 4.12181e-89 2.83766e-86 1.85017e-83 1.14098e-80 6.64602e-78 3.65093e-75 1.88841e-72 9.18159e-70 4.18903e-67 1.79e-64 7.14902e-62 2.66298e-59 9.23082e-57 2.97027e-54 8.84885e-52 2.43389e-49 6.16235e-47 1.4316e-44 3.04104e-42 5.88502e-40 1.03349e-37 1.64027e-35 2.34279e-33 2.99877e-31 3.42658e-29 3.4844e-27 3.14772e-25 2.5278e-23 1.8119e-21 1.16893e-19 6.83771e-18 3.82439e-16 1.80042e-14 6.21019e-15 -4.09617e-17 1.79417e-19 -6.0307e-22 1.66779e-24 -3.95629e-27 8.28123e-30 -1.56152e-32 2.69463e-35 -4.30828e-38 6.44628e-41 -9.10236e-44 1.22149e-46 -1.56697e-49 1.93143e-52 -2.29783e-55 2.64919e-58 -2.96994e-61 3.24763e-64 -3.474e-67 3.64478e-70 -3.75902e-73 3.81901e-76 -3.82989e-79 3.7984e-82 -3.73163e-85 3.63707e-88 -3.52233e-91 3.39442e-94 -3.2591e-97 3.1214e-100 -2.98579e-103 2.85586e-106 -2.73415e-109 2.62267e-112 -2.52319e-115 1.77259e-118 -7.52749e-116 -8.16158e-113 -8.46293e-110 -8.38511e-107 -7.93197e-104 -7.1575e-101 -6.15487e-98 -5.03848e-95 -3.92244e-92 -2.90082e-89 -2.03549e-86 -1.35347e-83 -8.51713e-81 -5.06547e-78 -2.84301e-75 -1.50342e-72 -7.47855e-70 -3.49333e-67 -1.52945e-64 -6.26363e-62 -2.39444e-59 -8.52508e-57 -2.82004e-54 -8.64449e-52 -2.44875e-49 -6.39108e-47 -1.53188e-44 -3.36027e-42 -6.72023e-40 -1.2204e-37 -2.00374e-35 -2.96082e-33 -3.91892e-31 -4.62476e-29 -4.8458e-27 -4.49437e-25 -3.68711e-23 -2.68652e-21 -1.77033e-19 -1.0491e-17 -6.52392e-16 -2.64704e-14 6.50361e-15 -4.13927e-17 1.80591e-19 -6.08341e-22 1.68816e-24 -4.01933e-27 8.44411e-30 -1.59798e-32 2.76726e-35 -4.43972e-38 6.66567e-41 -9.44382e-44 1.2715e-46 -1.63645e-49 2.02363e-52 -2.41526e-55 2.79341e-58 -3.14152e-61 3.4461e-64 -3.69788e-67 3.89175e-70 -4.0262e-73 4.10322e-76 -4.12776e-79 4.10653e-82 -4.04692e-85 3.95676e-88 -3.84403e-91 3.71613e-94 -3.57933e-97 3.43915e-100 -3.30043e-103 3.16713e-106 -3.0422e-109 2.928e-112 -2.82658e-115 1.46021e-118 -1.43654e-115 -1.54342e-112 -1.5854e-109 -1.55561e-106 -1.45678e-103 -1.30086e-100 -1.10656e-97 -8.95702e-95 -6.89182e-92 -5.03502e-89 -3.48842e-86 -2.28902e-83 -1.42063e-80 -8.32749e-78 -4.60342e-75 -2.3959e-72 -1.17204e-69 -5.37921e-67 -2.3118e-64 -9.28387e-62 -3.47614e-59 -1.21069e-56 -3.91223e-54 -1.1697e-51 -3.22625e-49 -8.1829e-47 -1.90191e-44 -4.03552e-42 -7.78474e-40 -1.35919e-37 -2.13744e-35 -3.01173e-33 -3.78136e-31 -4.20683e-29 -4.12499e-27 -3.54976e-25 -2.67684e-23 -1.77927e-21 -1.07444e-19 -5.40132e-18 -2.8417e-16 -1.23302e-14 6.51756e-15 -4.14286e-17 1.80483e-19 -6.07017e-22 1.68186e-24 -3.99862e-27 8.39013e-30 -1.58606e-32 2.74412e-35 -4.39937e-38 6.60141e-41 -9.34899e-44 1.25839e-46 -1.6194e-49 2.0026e-52 -2.39055e-55 2.76559e-58 -3.11148e-61 3.41497e-64 -3.66685e-67 3.86198e-70 -3.99884e-73 4.07932e-76 -4.10815e-79 4.09181e-82 -4.03756e-85 3.95308e-88 -3.84616e-91 3.72404e-94 -3.59296e-97 3.45841e-100 -3.32517e-103 3.1972e-106 -3.07749e-109 2.96849e-112 -2.87231e-115 -3.28397e-118 -6.73463e-115 -7.14213e-112 -7.23934e-109 -7.00717e-106 -6.47112e-103 -5.69653e-100 -4.77523e-97 -3.80775e-94 -2.8851e-91 -2.0748e-88 -1.41441e-85 -9.12816e-83 -5.56948e-80 -3.20808e-77 -1.74182e-74 -8.89963e-72 -4.27174e-69 -1.92268e-66 -8.09893e-64 -3.18602e-61 -1.1679e-58 -3.97979e-56 -1.25747e-53 -3.67376e-51 -9.89476e-49 -2.44897e-46 -5.55039e-44 -1.14754e-41 -2.15536e-39 -3.66117e-37 -5.5969e-35 -7.65983e-33 -9.33325e-31 -1.00683e-28 -9.5657e-27 -7.97296e-25 -5.82823e-23 -3.77314e-21 -2.2515e-19 -1.0663e-17 -5.44519e-16 -1.98923e-14 1.12582e-14 -6.97863e-17 2.98002e-19 -9.86009e-22 2.69517e-24 -6.33597e-27 1.31701e-29 -2.47013e-32 4.24552e-35 -6.76865e-38 1.01091e-40 -1.42602e-43 1.91305e-46 -2.45494e-49 3.02869e-52 -3.60826e-55 4.16742e-58 -4.68221e-61 5.13319e-64 -5.50685e-67 5.79575e-70 -5.99792e-73 6.11632e-76 -6.15805e-79 6.1328e-82 -6.05143e-85 5.92542e-88 -5.76629e-91 5.58476e-94 -5.39017e-97 5.19066e-100 -4.99332e-103 4.804e-106 -4.62722e-109 4.46665e-112 -4.32541e-115 2.30685e-118 -2.12997e-115 -2.28567e-112 -2.34503e-109 -2.29827e-106 -2.14977e-103 -1.91744e-100 -1.62912e-97 -1.31712e-94 -1.01221e-91 -7.38563e-89 -5.11021e-86 -3.34851e-83 -2.07507e-80 -1.21438e-77 -6.70103e-75 -3.48071e-72 -1.69893e-69 -7.77779e-67 -3.33302e-64 -1.33409e-61 -4.97623e-59 -1.72549e-56 -5.54704e-54 -1.64849e-51 -4.51464e-49 -1.13551e-46 -2.61311e-44 -5.47947e-42 -1.04223e-39 -1.78924e-37 -2.75713e-35 -3.79061e-33 -4.61952e-31 -4.95662e-29 -4.6523e-27 -3.80173e-25 -2.70594e-23 -1.70159e-21 -9.89793e-20 -4.26278e-18 -2.16653e-16 -5.78658e-15 -7.13257e-17 6.08931e-19 -2.97867e-21 1.07029e-23 -3.10563e-26 7.65991e-29 -1.65914e-31 3.22864e-34 -5.74064e-37 9.44875e-40 -1.45478e-42 2.11323e-45 -2.9169e-48 3.84894e-51 -4.88051e-54 5.97405e-57 -7.08735e-60 8.17779e-63 -9.20655e-66 1.01417e-68 -1.09599e-71 1.16464e-74 -1.21957e-77 1.26102e-80 -1.28986e-83 1.3074e-86 -1.31524e-89 1.31522e-92 -1.3092e-95 1.29896e-98 -1.28622e-101 1.27261e-104 -1.25962e-107 1.24857e-110 -1.24072e-113 1.23711e-116 -1.96613e-117 -2.15758e-114 -2.27889e-111 -2.30021e-108 -2.21674e-105 -2.03787e-102 -1.78541e-99 -1.48922e-96 -1.18131e-93 -8.90171e-91 -6.36465e-88 -4.3124e-85 -2.76517e-82 -1.67563e-79 -9.58164e-77 -5.16202e-74 -2.61566e-71 -1.24436e-68 -5.54745e-66 -2.31276e-63 -8.99724e-61 -3.25846e-58 -1.09586e-55 -3.41312e-53 -9.81595e-51 -2.59846e-48 -6.30964e-46 -1.40009e-43 -2.82732e-41 -5.17234e-39 -8.52953e-37 -1.26097e-34 -1.66123e-32 -1.93781e-30 -1.98828e-28 -1.78333e-26 -1.39213e-24 -9.46837e-23 -5.69641e-21 -3.17883e-19 -1.24979e-17 -5.83557e-16 -1.84812e-14 2.47948e-19 -2.64093e-21 1.44619e-23 -5.60765e-26 1.72481e-28 -4.46403e-31 1.00824e-33 -2.03733e-36 3.75056e-39 -6.37818e-42 1.01308e-44 -1.51639e-47 2.15485e-50 -2.92533e-53 3.81429e-56 -4.79911e-59 5.85042e-62 -6.93517e-65 8.01998e-68 -9.07409e-71 1.00713e-73 -1.09916e-76 1.18216e-79 -1.25551e-82 1.31918e-85 -1.37365e-88 1.41986e-91 -1.45908e-94 1.4928e-97 -1.52262e-100 1.55029e-103 -1.57759e-106 1.60639e-109 -1.63855e-112 1.67604e-115 -1.71358e-118 8.64407e-118 9.63929e-115 1.02845e-111 1.04878e-108 1.02133e-105 9.48921e-103 8.4037e-100 7.08669e-97 5.68435e-94 4.33209e-91 3.13316e-88 2.14777e-85 1.39357e-82 8.54675e-80 4.94716e-77 2.69838e-74 1.38454e-71 6.67097e-69 3.01246e-66 1.27237e-63 5.01548e-61 1.84077e-58 6.27455e-56 1.98096e-53 5.77567e-51 1.55016e-48 3.81679e-46 8.58861e-44 1.75895e-41 3.2638e-39 5.45982e-37 8.18959e-35 1.09504e-32 1.29717e-30 1.35297e-28 1.23594e-26 9.86324e-25 6.90867e-23 4.34006e-21 2.57971e-19 1.06069e-17 5.4639e-16 1.52451e-14 -1.55286e-19 1.70502e-21 -9.57269e-24 3.79486e-26 -1.19023e-28 3.13394e-31 -7.18688e-34 1.47206e-36 -2.7431e-39 4.71645e-42 -7.56654e-45 1.14297e-47 -1.63792e-50 2.24097e-53 -2.94327e-56 3.72849e-59 -4.57449e-62 5.4557e-65 -6.34568e-68 7.21954e-71 -8.0557e-74 8.83709e-77 -9.55199e-80 1.01942e-82 -1.07624e-85 1.12597e-88 -1.16928e-91 1.20716e-94 -1.24077e-97 1.27144e-100 -1.30061e-103 1.32978e-106 -1.36057e-109 1.39461e-112 -1.43369e-115 1.46715e-118 -1.48325e-117 -1.67291e-114 -1.80559e-111 -1.86317e-108 -1.83651e-105 -1.72766e-102 -1.54966e-99 -1.32401e-96 -1.07638e-93 -8.31712e-91 -6.10115e-88 -4.24364e-85 -2.79499e-82 -1.74074e-79 -1.02368e-76 -5.67521e-74 -2.96119e-71 -1.45159e-68 -6.67264e-66 -2.87042e-63 -1.15304e-60 -4.31506e-58 -1.50067e-55 -4.83688e-53 -1.44064e-50 -3.95255e-48 -9.95465e-46 -2.29273e-43 -4.80887e-41 -9.14317e-39 -1.56784e-36 -2.41109e-34 -3.30479e-32 -4.01058e-30 -4.28004e-28 -3.99185e-26 -3.24118e-24 -2.29525e-22 -1.43629e-20 -8.17715e-19 -2.84941e-17 -1.23216e-15 -3.09224e-14 -3.89745e-17 3.31628e-19 -1.6642e-21 6.14194e-24 -1.82637e-26 4.60451e-29 -1.01712e-31 2.01466e-34 -3.6403e-37 6.08091e-40 -9.4913e-43 1.39637e-45 -1.95055e-48 2.60297e-51 -3.33615e-54 4.12565e-57 -4.94281e-60 5.75767e-63 -6.54196e-66 7.2714e-69 -7.92718e-72 8.49657e-75 -8.97316e-78 9.35633e-81 -9.65025e-84 9.86273e-87 -1.00043e-89 1.00872e-92 -1.01246e-95 1.01296e-98 -1.01152e-101 1.00938e-104 -1.00773e-107 1.00769e-110 -1.01035e-113 1.01592e-116 -1.00411e-116 -1.11409e-113 -1.18351e-110 -1.2015e-107 -1.16464e-104 -1.0769e-101 -9.48993e-99 -7.96161e-96 -6.35214e-93 -4.81422e-90 -3.46178e-87 -2.35876e-84 -1.52087e-81 -9.26621e-79 -5.3267e-76 -2.88441e-73 -1.46877e-70 -7.02019e-68 -3.1434e-65 -1.31582e-62 -5.13766e-60 -1.86664e-57 -6.29443e-55 -1.96443e-52 -5.65688e-50 -1.49811e-47 -3.63554e-45 -8.05247e-43 -1.62078e-40 -2.95021e-38 -4.83044e-36 -7.07192e-34 -9.19719e-32 -1.05502e-29 -1.05968e-27 -9.2571e-26 -7.00172e-24 -4.58946e-22 -2.63502e-20 -1.35409e-18 -4.06524e-17 -1.50802e-15 -3.21518e-14 -5.38923e-15 3.46647e-17 -1.52962e-19 5.21029e-22 -1.46159e-24 3.51741e-27 -7.46942e-30 1.42881e-32 -2.50106e-35 4.05633e-38 -6.15702e-41 8.81965e-44 -1.20064e-46 1.56259e-49 -1.95424e-52 2.3592e-55 -2.76014e-58 3.14049e-61 -3.48603e-64 3.78592e-67 -4.03309e-70 4.22426e-73 -4.35958e-76 4.44211e-79 -4.477e-82 4.47075e-85 -4.43062e-88 4.36411e-91 -4.27851e-94 4.18053e-97 -4.07626e-100 3.97111e-103 -3.86976e-106 3.77619e-109 -3.69386e-112 3.62547e-115 -4.23391e-116 -4.59604e-113 -4.81081e-110 -4.8105e-107 -4.59102e-104 -4.17799e-101 -3.62192e-98 -2.98791e-95 -2.343e-92 -1.74442e-89 -1.2316e-86 -8.23504e-84 -5.20759e-81 -3.10993e-78 -1.75119e-75 -9.28264e-73 -4.62381e-70 -2.16026e-67 -9.44768e-65 -3.85947e-62 -1.46932e-59 -5.20023e-57 -1.70644e-54 -5.17699e-52 -1.44752e-49 -3.71758e-47 -8.73719e-45 -1.8715e-42 -3.63712e-40 -6.38136e-38 -1.0052e-35 -1.41286e-33 -1.75999e-31 -1.92885e-29 -1.84577e-27 -1.53153e-25 -1.09679e-23 -6.7845e-22 -3.66143e-20 -1.75629e-18 -4.84649e-17 -1.7341e-15 -3.24022e-14 2.34052e-17 -2.35394e-19 1.24751e-21 -4.73673e-24 1.43437e-26 -3.66409e-29 8.1776e-32 -1.63362e-34 2.97352e-37 -4.99957e-40 7.84989e-43 -1.16124e-45 1.63047e-48 -2.18651e-51 2.81556e-54 -3.4977e-57 4.20898e-60 -4.92405e-63 5.61854e-66 -6.27114e-69 6.86498e-72 -7.38827e-75 7.83454e-78 -8.20231e-81 8.49429e-84 -8.71654e-87 8.8776e-90 -8.98769e-93 9.05793e-96 -9.09972e-99 9.12443e-102 -9.1432e-105 9.16677e-108 -9.2055e-111 9.26959e-114 -9.3835e-117 -1.62956e-116 -1.7996e-113 -1.8993e-110 -1.91517e-107 -1.84341e-104 -1.69212e-101 -1.4798e-98 -1.23164e-95 -9.74507e-93 -7.32155e-90 -5.21675e-87 -3.52051e-84 -2.24704e-81 -1.3545e-78 -7.69881e-76 -4.11926e-73 -2.07104e-70 -9.76572e-68 -4.31002e-65 -1.77649e-62 -6.82228e-60 -2.43487e-57 -8.05395e-55 -2.46167e-52 -6.92989e-50 -1.79039e-47 -4.22857e-45 -9.09023e-43 -1.77008e-40 -3.10525e-38 -4.87798e-36 -6.81456e-34 -8.40078e-32 -9.05977e-30 -8.4667e-28 -6.78931e-26 -4.62799e-24 -2.66187e-22 -1.28549e-20 -5.16872e-19 -1.0683e-17 -2.58313e-16 -3.12054e-15 -1.36408e-19 1.12971e-21 -5.98412e-24 2.3403e-26 -7.341e-29 1.94311e-31 -4.48923e-34 9.27249e-37 -1.74315e-39 3.02413e-42 -4.89541e-45 7.46134e-48 -1.0788e-50 1.48907e-53 -1.97292e-56 2.52104e-59 -3.11981e-62 3.75276e-65 -4.40223e-68 5.05102e-71 -5.68371e-74 6.28763e-77 -6.85355e-80 7.37586e-83 -7.85246e-86 8.28444e-89 -8.67569e-92 9.03242e-95 -9.36266e-98 9.67585e-101 -9.9826e-104 1.02946e-106 -1.06243e-109 1.09855e-112 -1.13932e-115 4.63086e-120 -1.29695e-115 -1.41143e-112 -1.46825e-109 -1.4587e-106 -1.38279e-103 -1.24956e-100 -1.0753e-97 -8.80248e-95 -6.84691e-92 -5.05453e-89 -3.53685e-86 -2.34272e-83 -1.46681e-80 -8.66812e-78 -4.82703e-75 -2.52871e-72 -1.24391e-69 -5.73472e-67 -2.47266e-64 -9.94901e-62 -3.72666e-59 -1.29618e-56 -4.17449e-54 -1.24116e-51 -3.39551e-49 -8.51688e-47 -1.95093e-44 -4.06348e-42 -7.65876e-40 -1.29925e-37 -1.97197e-35 -2.6599e-33 -3.16487e-31 -3.29479e-29 -2.97549e-27 -2.3118e-25 -1.53525e-23 -8.69416e-22 -4.21474e-20 -1.75858e-18 -4.06303e-17 -1.23083e-15 -2.16072e-14 2.83568e-22 -3.14176e-24 1.80549e-26 -7.4097e-29 2.41701e-31 -6.62946e-34 1.58421e-36 -3.38057e-39 6.56008e-42 -1.174e-44 1.95936e-47 -3.07756e-50 4.58383e-53 -6.51576e-56 8.88807e-59 -1.16904e-61 1.48886e-64 -1.84284e-67 2.22422e-70 -2.62554e-73 3.03937e-76 -3.45894e-79 3.87863e-82 -4.29433e-85 4.7036e-88 -5.10578e-91 5.50198e-94 -5.89503e-97 6.28938e-100 -6.69103e-103 7.10758e-106 -7.54827e-109 8.02415e-112 -8.54837e-115 9.13712e-118 4.75008e-119 5.58164e-116 6.14921e-113 6.47731e-110 6.51796e-107 6.26002e-104 5.73289e-101 5.00116e-98 4.1515e-95 3.27559e-92 2.45364e-89 1.74271e-86 1.17208e-83 7.45403e-81 4.47591e-78 2.53359e-75 1.34964e-72 6.75374e-70 3.16864e-67 1.39093e-64 5.70008e-62 2.1755e-59 7.71291e-57 2.53308e-54 7.68307e-52 2.14505e-49 5.4927e-47 1.28483e-44 2.73336e-42 5.26263e-40 9.11941e-38 1.41349e-35 1.94595e-33 2.36076e-31 2.50163e-29 2.29351e-27 1.80172e-25 1.20267e-23 6.79054e-22 3.24925e-20 1.32162e-18 3.00605e-17 9.58255e-16 1.70679e-14 -4.87056e-25 6.014e-27 -3.73857e-29 1.62301e-31 -5.54245e-34 1.58317e-36 -3.92835e-39 8.68828e-42 -1.74523e-44 3.23e-47 -5.57093e-50 9.03729e-53 -1.38951e-55 2.03807e-58 -2.86763e-61 3.88931e-64 -5.10632e-67 6.51418e-70 -8.10188e-73 9.85367e-76 -1.17512e-78 1.37761e-81 -1.59118e-84 1.81459e-87 -2.04717e-90 2.28894e-93 -2.54075e-96 2.80433e-99 -3.08241e-102 3.37883e-105 -3.69867e-108 4.04851e-111 -4.43661e-114 4.87342e-117 -5.41255e-120 -4.92568e-119 -5.74573e-116 -6.41521e-113 -6.85121e-110 -6.99274e-107 -6.81501e-104 -6.3361e-101 -5.61421e-98 -4.73607e-95 -3.79958e-92 -2.89563e-89 -2.09368e-86 -1.43444e-83 -9.29958e-81 -5.69673e-78 -3.29233e-75 -1.7922e-72 -9.17317e-70 -4.40653e-67 -1.9827e-64 -8.33837e-62 -3.27023e-59 -1.19312e-56 -4.03878e-54 -1.26484e-51 -3.65331e-49 -9.69909e-47 -2.35805e-44 -5.22843e-42 -1.05248e-39 -1.91372e-37 -3.1254e-35 -4.55537e-33 -5.88311e-31 -6.67774e-29 -6.60131e-27 -5.62593e-25 -4.08751e-23 -2.50068e-21 -1.26948e-19 -5.22136e-18 -1.18754e-16 -2.98875e-15 -5.37212e-14 -1.46858e-25 1.36576e-27 -6.98611e-30 2.57026e-32 -7.55955e-35 1.8808e-37 -4.10045e-40 8.02506e-43 -1.43496e-45 2.37597e-48 -3.68178e-51 5.38544e-54 -7.48889e-57 9.95959e-60 -1.27324e-62 1.57156e-65 -1.88004e-68 2.18715e-71 -2.48168e-74 2.75365e-77 -2.99483e-80 3.19908e-83 -3.3624e-86 3.48276e-89 -3.55982e-92 3.59446e-95 -3.5884e-98 3.54369e-101 -3.46232e-104 3.34573e-107 -3.19447e-110 3.00771e-113 -2.78284e-116 2.51485e-119 -2.83093e-121 -3.13148e-118 -3.59616e-115 -3.95179e-112 -4.152e-109 -4.16731e-106 -3.99203e-103 -3.64637e-100 -3.17262e-97 -2.62669e-94 -2.06702e-91 -1.54424e-88 -1.0939e-85 -7.33771e-83 -4.65427e-80 -2.78745e-77 -1.57377e-74 -8.36226e-72 -4.17423e-69 -1.95375e-66 -8.55684e-64 -3.49913e-61 -1.33286e-58 -4.71723e-56 -1.54695e-53 -4.68668e-51 -1.30752e-48 -3.34724e-46 -7.83241e-44 -1.66803e-41 -3.21761e-39 -5.5918e-37 -8.70209e-35 -1.20435e-32 -1.47066e-30 -1.57023e-28 -1.45063e-26 -1.14568e-24 -7.62903e-23 -4.21512e-21 -1.89447e-19 -6.7065e-18 -1.36358e-16 -2.85325e-15 -3.69852e-14 -5.59552e-23 4.59032e-25 -2.14744e-27 7.374e-30 -2.04984e-32 4.86055e-35 -1.01583e-37 1.9139e-40 -3.30497e-43 5.29767e-46 -7.96248e-49 1.13142e-51 -1.53031e-54 1.98157e-57 -2.46867e-60 2.97162e-63 -3.46912e-66 3.94064e-69 -4.36813e-72 4.73726e-75 -5.03799e-78 5.26468e-81 -5.41574e-84 5.49297e-87 -5.50072e-90 5.44506e-93 -5.33294e-96 5.17144e-99 -4.96719e-102 4.72579e-105 -4.45149e-108 4.14678e-111 -3.81207e-114 3.44533e-117 -4.22291e-120 -1.397e-117 -1.58166e-114 -1.71294e-111 -1.77306e-108 -1.75256e-105 -1.65269e-102 -1.48544e-99 -1.27124e-96 -1.03474e-93 -8.00158e-91 -5.87137e-88 -4.0829e-85 -2.68708e-82 -1.67129e-79 -9.809e-77 -5.42377e-74 -2.82056e-71 -1.377e-68 -6.29867e-66 -2.69386e-63 -1.07483e-60 -3.99119e-58 -1.37573e-55 -4.38958e-53 -1.29256e-50 -3.50089e-48 -8.69038e-46 -1.96925e-43 -4.05554e-41 -7.55347e-39 -1.2653e-36 -1.89435e-34 -2.51673e-32 -2.94257e-30 -2.99886e-28 -2.63417e-26 -1.96815e-24 -1.23156e-22 -6.33569e-21 -2.61729e-19 -8.34258e-18 -1.6427e-16 -3.11161e-15 -3.75008e-14 -1.74853e-20 1.16625e-22 -4.78755e-25 1.49525e-27 -3.85557e-30 8.58115e-33 -1.69604e-35 3.03685e-38 -4.99997e-41 7.65733e-44 -1.10093e-46 1.49722e-49 -1.9381e-52 2.40057e-55 -2.85781e-58 3.28227e-61 -3.64862e-64 3.93605e-67 -4.12971e-70 4.22132e-73 -4.2088e-76 4.09544e-79 -3.88861e-82 3.59837e-85 -3.23608e-88 2.81323e-91 -2.34037e-94 1.82645e-97 -1.2782e-100 6.99809e-104 -9.26205e-108 -5.4503e-110 1.21806e-112 -1.93496e-115 2.70261e-118 -6.72193e-118 -7.68407e-115 -8.40876e-112 -8.7968e-109 -8.79007e-106 -8.38177e-103 -7.6197e-100 -6.59717e-97 -5.43414e-94 -4.25368e-91 -3.16039e-88 -2.22593e-85 -1.48421e-82 -9.35566e-80 -5.56665e-77 -3.12146e-74 -1.64674e-71 -8.15834e-69 -3.78832e-66 -1.64532e-63 -6.66879e-61 -2.51644e-58 -8.8174e-56 -2.8608e-53 -8.56838e-51 -2.36113e-48 -5.96428e-46 -1.37546e-43 -2.88286e-41 -5.46367e-39 -9.30956e-37 -1.41676e-34 -1.91103e-32 -2.26442e-30 -2.33208e-28 -2.06099e-26 -1.53887e-24 -9.52476e-23 -4.77367e-21 -1.8812e-19 -5.59319e-18 -1.18636e-16 -1.87891e-15 -2.42908e-14 -4.22281e-18 1.80961e-20 -5.94184e-23 1.59657e-25 -3.65785e-28 7.34737e-31 -1.31996e-33 2.15226e-36 -3.22021e-39 4.45651e-42 -5.73541e-45 6.88289e-48 -7.69761e-51 7.97785e-54 -7.54849e-57 6.28284e-60 -4.11557e-63 1.04595e-66 2.86787e-69 -7.52108e-72 1.27781e-74 -1.84896e-77 2.45073e-80 -3.06972e-83 3.6948e-86 -4.31774e-89 4.93343e-92 -5.53991e-95 6.13829e-98 -6.73254e-101 7.32933e-104 -7.93791e-107 8.57008e-110 -9.24035e-113 9.96588e-116 -4.57387e-117 -5.03374e-114 -5.42605e-111 -5.58916e-108 -5.49658e-105 -5.15601e-102 -4.60876e-99 -3.92149e-96 -3.17279e-93 -2.43809e-90 -1.77724e-87 -1.22735e-84 -8.01905e-82 -4.94968e-79 -2.88177e-76 -1.58001e-73 -8.14361e-71 -3.93842e-68 -1.78366e-65 -7.54852e-63 -2.97837e-60 -1.09295e-57 -3.72026e-55 -1.17128e-52 -3.40025e-50 -9.07116e-48 -2.21569e-45 -4.93495e-43 -9.97765e-41 -1.82206e-38 -2.98831e-36 -4.37342e-34 -5.66939e-32 -6.45399e-30 -6.38687e-28 -5.42815e-26 -3.90433e-24 -2.33438e-22 -1.13482e-20 -4.36587e-19 -1.28588e-17 -2.84212e-16 -4.55996e-15 -6.71764e-14 1.2184e-17 -1.60208e-19 9.15314e-22 -3.62253e-24 1.12971e-26 -2.95497e-29 6.73114e-32 -1.36967e-34 2.536e-37 -4.33323e-40 6.90939e-43 -1.03744e-45 1.4779e-48 -2.01021e-51 2.62491e-54 -3.30607e-57 4.03307e-60 -4.78271e-63 5.53162e-66 -6.25818e-69 6.94419e-72 -7.57581e-75 8.14403e-78 -8.64462e-81 9.07772e-84 -9.44718e-87 9.75983e-90 -1.00247e-92 1.02526e-95 -1.04551e-98 1.06445e-101 -1.08338e-104 1.10361e-107 -1.1265e-110 1.1535e-113 -1.05778e-116 1.45645e-114 1.58013e-111 1.63783e-108 1.62037e-105 1.52861e-102 1.3736e-99 1.17442e-96 9.54272e-94 7.35964e-91 5.38014e-88 3.72268e-85 2.43429e-82 1.50182e-79 8.72582e-77 4.76528e-74 2.44081e-71 1.16982e-68 5.23249e-66 2.17787e-63 8.40715e-61 2.99845e-58 9.83603e-56 2.95156e-53 8.0467e-51 1.97512e-48 4.30931e-46 8.191e-44 1.30756e-41 1.60844e-39 1.07308e-37 -1.23341e-35 -6.04778e-33 -1.30774e-30 -2.04144e-28 -2.50495e-26 -2.46542e-24 -1.93957e-22 -1.19851e-20 -5.65126e-19 -1.95551e-17 -4.78852e-16 -7.42597e-15 -1.13974e-13 4.10912e-15 -2.69961e-17 1.21489e-19 -4.21712e-22 1.20483e-24 -2.9517e-27 6.37882e-30 -1.24141e-32 2.21035e-35 -3.6458e-38 5.62726e-41 -8.19594e-44 1.13435e-46 -1.50086e-49 1.90822e-52 -2.34191e-55 2.78545e-58 -3.22214e-61 3.63657e-64 -4.01592e-67 4.35061e-70 -4.63467e-73 4.86564e-76 -5.04412e-79 5.1733e-82 -5.25826e-85 5.30537e-88 -5.32172e-91 5.3147e-94 -5.29161e-97 5.25949e-100 -5.22497e-103 5.19425e-106 -5.17316e-109 5.16723e-112 -5.22301e-115 -4.77172e-114 -5.30691e-111 -5.64446e-108 -5.73715e-105 -5.56771e-102 -5.15412e-99 -4.54674e-96 -3.81821e-93 -3.04898e-90 -2.31247e-87 -1.66376e-84 -1.13404e-81 -7.31279e-79 -4.45467e-76 -2.55943e-73 -1.38463e-70 -7.04067e-68 -3.35851e-65 -1.49982e-62 -6.25651e-60 -2.43213e-57 -8.78781e-55 -2.94306e-52 -9.10781e-50 -2.59581e-47 -6.78851e-45 -1.62235e-42 -3.52701e-40 -6.93941e-38 -1.22844e-35 -1.9434e-33 -2.72596e-31 -3.35846e-29 -3.59314e-27 -3.2916e-25 -2.53648e-23 -1.6071e-21 -8.12801e-20 -3.15865e-18 -9.00109e-17 -1.80664e-15 -2.38565e-14 -2.66147e-13 1.33912e-15 -8.77599e-18 3.94306e-20 -1.36703e-22 3.9015e-25 -9.54932e-28 2.06188e-30 -4.00945e-33 7.13332e-36 -1.17571e-38 1.81338e-41 -2.63928e-44 3.65035e-47 -4.82654e-50 6.13249e-53 -7.52137e-56 8.94018e-59 -1.03353e-61 1.16574e-64 -1.28655e-67 1.39292e-70 -1.48297e-73 1.55593e-76 -1.61204e-79 1.65234e-82 -1.67847e-85 1.69249e-88 -1.69668e-91 1.69341e-94 -1.68502e-97 1.67376e-100 -1.66173e-103 1.65091e-106 -1.64315e-109 1.64019e-112 -1.96418e-115 -3.66663e-113 -4.0147e-110 -4.20263e-107 -4.20239e-104 -4.01034e-101 -3.64887e-98 -3.16218e-95 -2.60738e-92 -2.04323e-89 -1.51987e-86 -1.07182e-83 -7.15624e-81 -4.51721e-78 -2.69167e-75 -1.5116e-72 -7.98669e-70 -3.96289e-67 -1.84296e-64 -8.016e-62 -3.25347e-59 -1.22917e-56 -4.31123e-54 -1.39976e-51 -4.19367e-49 -1.15537e-46 -2.9159e-44 -6.71282e-42 -1.403e-39 -2.64787e-37 -4.48503e-35 -6.76995e-33 -9.03113e-31 -1.05419e-28 -1.06382e-26 -9.14257e-25 -6.56537e-23 -3.84399e-21 -1.77705e-19 -6.2233e-18 -1.57209e-16 -2.76167e-15 -3.37665e-14 -2.96786e-13 -5.97314e-18 5.33021e-20 -2.75817e-22 1.04457e-24 -3.18032e-27 8.19909e-30 -1.85054e-32 3.74296e-35 -6.90331e-38 1.17669e-40 -1.87366e-43 2.81165e-46 -4.00548e-49 5.45095e-52 -7.12424e-55 8.98406e-58 -1.09762e-60 1.30392e-63 -1.51104e-66 1.71318e-69 -1.90537e-72 2.0838e-75 -2.24592e-78 2.39049e-81 -2.51743e-84 2.62769e-87 -2.72303e-90 2.80589e-93 -2.87914e-96 2.94601e-99 -3.00994e-102 3.07455e-105 -3.14361e-108 3.2211e-111 -3.31141e-114 -1.54898e-115 -1.78577e-112 -1.92663e-109 -1.98647e-106 -1.95563e-103 -1.83657e-100 -1.64369e-97 -1.40045e-94 -1.1347e-91 -8.73273e-89 -6.37598e-86 -4.41069e-83 -2.88689e-80 -1.78518e-77 -1.04132e-74 -5.72029e-72 -2.95401e-69 -1.43133e-66 -6.49417e-64 -2.75304e-61 -1.08789e-58 -3.99702e-56 -1.36167e-53 -4.28836e-51 -1.24443e-48 -3.31552e-46 -8.0781e-44 -1.79196e-41 -3.60131e-39 -6.52052e-37 -1.05686e-34 -1.52216e-32 -1.93127e-30 -2.13641e-28 -2.03496e-26 -1.64364e-24 -1.10457e-22 -6.03315e-21 -2.60444e-19 -8.62768e-18 -2.15698e-16 -4.19486e-15 -7.08991e-14 -6.55674e-13 8.50566e-20 -7.48654e-22 3.85925e-24 -1.4576e-26 4.42622e-29 -1.13814e-31 2.56231e-34 -5.17034e-37 9.51545e-40 -1.61892e-42 2.57387e-45 -3.85787e-48 5.49168e-51 -7.47088e-54 9.76519e-57 -1.23214e-59 1.50694e-62 -1.79295e-65 2.08207e-68 -2.36675e-71 2.64056e-74 -2.89857e-77 3.1375e-80 -3.35577e-83 3.55334e-86 -3.73158e-89 3.89299e-92 -4.041e-95 4.17976e-98 -4.31401e-101 4.44895e-104 -4.59022e-107 4.74397e-110 -4.91691e-113 5.09888e-116 -2.07234e-115 -2.3219e-112 -2.48824e-109 -2.54752e-106 -2.48958e-103 -2.32008e-100 -2.05971e-97 -1.7401e-94 -1.39739e-91 -1.06542e-88 -7.70248e-86 -5.27312e-83 -3.41359e-80 -2.08644e-77 -1.20212e-74 -6.51763e-72 -3.31918e-69 -1.58459e-66 -7.07657e-64 -2.9496e-61 -1.14464e-58 -4.12465e-56 -1.37615e-53 -4.23787e-51 -1.20046e-48 -3.11629e-46 -7.38313e-44 -1.58923e-41 -3.09247e-39 -5.40997e-37 -8.45671e-35 -1.17332e-32 -1.43449e-30 -1.53388e-28 -1.42429e-26 -1.14208e-24 -7.89139e-23 -4.71099e-21 -2.43971e-19 -1.08709e-17 -4.02304e-16 -1.18236e-14 -2.33074e-13 -1.56635e-12 1.25855e-17 -8.02368e-20 3.53323e-22 -1.20324e-24 3.37668e-27 -8.13143e-30 1.72806e-32 -3.30825e-35 5.7959e-38 -9.4086e-41 1.42951e-43 -2.04986e-46 2.79372e-49 -3.6405e-52 4.55938e-55 -5.51287e-58 6.4611e-61 -7.36598e-64 8.19461e-67 -8.92165e-70 9.53038e-73 -1.00128e-75 1.03689e-78 -1.06051e-81 1.07328e-84 -1.07668e-87 1.07238e-90 -1.06208e-93 1.04749e-96 -1.0302e-99 1.01166e-102 -9.93191e-106 9.75968e-109 -9.61039e-112 9.49168e-115 -2.21316e-115 -2.44331e-112 -2.58906e-109 -2.61978e-106 -2.52894e-103 -2.32665e-100 -2.03793e-97 -1.69761e-94 -1.34328e-91 -1.00842e-88 -7.17306e-86 -4.82784e-83 -3.07012e-80 -1.84181e-77 -1.04067e-74 -5.5285e-72 -2.75639e-69 -1.2873e-66 -5.62013e-64 -2.28888e-61 -8.67669e-59 -3.05462e-56 -9.96402e-54 -3.00464e-51 -8.35735e-49 -2.13983e-46 -5.03456e-44 -1.087e-41 -2.15189e-39 -3.90458e-37 -6.49301e-35 -9.89074e-33 -1.37753e-30 -1.74601e-28 -1.99655e-26 -2.03162e-24 -1.80469e-22 -1.36477e-20 -8.51011e-19 -4.20271e-17 -1.57477e-15 -4.47097e-14 -6.72232e-13 -2.77504e-12 4.07796e-18 -2.56941e-20 1.12433e-22 -3.8132e-25 1.06688e-27 -2.56296e-30 5.43555e-33 -1.03871e-35 1.81674e-38 -2.94455e-41 4.46716e-44 -6.39644e-47 8.70518e-50 -1.13277e-52 1.41668e-55 -1.71051e-58 2.00184e-61 -2.27887e-64 2.53147e-67 -2.75188e-70 2.93507e-73 -3.07872e-76 3.18296e-79 -3.24995e-82 3.28333e-85 -3.28779e-88 3.2685e-91 -3.23084e-94 3.18002e-97 -3.12095e-100 3.05809e-103 -2.99543e-106 2.93649e-109 -2.88439e-112 2.84411e-115 2.53489e-115 2.8355e-112 3.02711e-109 3.08467e-106 2.99723e-103 2.7738e-100 2.44207e-97 2.04271e-94 1.62113e-91 1.2188e-88 8.66629e-86 5.81735e-83 3.67897e-80 2.18697e-77 1.21883e-74 6.34905e-72 3.08015e-69 1.38552e-66 5.74622e-64 2.18068e-61 7.49027e-59 2.28855e-56 6.02488e-54 1.26972e-51 1.62869e-49 -1.86556e-47 -2.1745e-44 -9.187e-42 -2.85542e-39 -7.28852e-37 -1.58321e-34 -2.96547e-32 -4.80647e-30 -6.72816e-28 -8.0864e-26 -8.26586e-24 -7.08977e-22 -5.00859e-20 -2.84068e-18 -1.24804e-16 -4.04249e-15 -9.00527e-14 -1.18414e-12 -3.61922e-12 -1.67847e-17 1.07155e-19 -4.7242e-22 1.61056e-24 -4.52449e-27 1.09069e-29 -2.32039e-32 4.44712e-35 -7.79999e-38 1.26767e-40 -1.92839e-43 2.76871e-46 -3.77832e-49 4.93015e-52 -6.18312e-55 7.4869e-58 -8.78769e-61 1.00338e-63 -1.11802e-66 1.21921e-69 -1.3046e-72 1.37303e-75 -1.42442e-78 1.45958e-81 -1.48e-84 1.48765e-87 -1.48474e-90 1.47361e-93 -1.45655e-96 1.43575e-99 -1.41322e-102 1.39079e-105 -1.3701e-108 1.35266e-111 -1.33999e-114 -2.33153e-115 -3.05569e-112 -3.75425e-109 -4.35801e-106 -4.7858e-103 -4.97524e-100 -4.89749e-97 -4.56456e-94 -4.0267e-91 -3.3604e-88 -2.65102e-85 -1.97533e-82 -1.38875e-79 -9.20159e-77 -5.73847e-74 -3.36356e-71 -1.85008e-68 -9.53283e-66 -4.59282e-63 -2.06479e-60 -8.64261e-58 -3.35999e-55 -1.21006e-52 -4.02533e-50 -1.23296e-47 -3.4653e-45 -8.90246e-43 -2.08165e-40 -4.40929e-38 -8.41523e-36 -1.43832e-33 -2.18628e-31 -2.93147e-29 -3.4342e-27 -3.47481e-25 -2.99435e-23 -2.15965e-21 -1.27563e-19 -6.00569e-18 -2.18179e-16 -5.90467e-15 -1.14024e-13 -1.38761e-12 -5.37538e-12 7.71552e-20 -5.58221e-22 2.68021e-24 -9.7513e-27 2.88957e-29 -7.294e-32 1.61696e-34 -3.21819e-37 5.84715e-40 -9.82591e-43 1.54335e-45 -2.2855e-48 3.21415e-51 -4.31917e-54 5.57557e-57 -6.94617e-60 8.38567e-63 -9.84551e-66 1.12786e-68 -1.26431e-71 1.39056e-74 -1.50421e-77 1.60391e-80 -1.68925e-83 1.76066e-86 -1.81927e-89 1.86671e-92 -1.90501e-95 1.9364e-98 -1.96327e-101 1.98807e-104 -2.01326e-107 2.04134e-110 -2.07486e-113 1.56755e-116 -6.5081e-114 -7.38391e-111 -8.01058e-108 -8.30239e-105 -8.21303e-102 -7.74715e-99 -6.96101e-96 -5.95146e-93 -4.83613e-90 -3.73053e-87 -2.72823e-84 -1.88903e-81 -1.23656e-78 -7.64085e-76 -4.44943e-73 -2.43749e-70 -1.25385e-67 -6.04423e-65 -2.72455e-62 -1.14578e-59 -4.48411e-57 -1.62872e-54 -5.47442e-52 -1.69732e-49 -4.83735e-47 -1.26239e-44 -3.00386e-42 -6.48634e-40 -1.26427e-37 -2.21089e-35 -3.44477e-33 -4.74348e-31 -5.7175e-29 -5.963e-27 -5.30542e-25 -3.95668e-23 -2.42014e-21 -1.18319e-19 -4.50942e-18 -1.33386e-16 -3.24174e-15 -6.90474e-14 -1.05617e-12 -6.65187e-12 -1.15855e-19 9.25656e-22 -4.41483e-24 1.56903e-26 -4.53424e-29 1.118e-31 -2.42624e-34 4.737e-37 -8.45825e-40 1.399e-42 -2.16559e-45 3.16394e-48 -4.39389e-51 5.83523e-54 -7.44929e-57 9.18317e-60 -1.09756e-62 1.27635e-65 -1.44876e-68 1.60977e-71 -1.75553e-74 1.88349e-77 -1.99245e-80 2.08238e-83 -2.15427e-86 2.20991e-89 -2.25162e-92 2.28212e-95 -2.30431e-98 2.32117e-101 -2.33567e-104 2.35076e-107 -2.36932e-110 2.39425e-113 -2.1768e-116 3.01435e-114 3.45623e-111 3.79122e-108 3.97502e-105 3.98001e-102 3.80183e-99 3.46112e-96 2.99974e-93 2.47227e-90 1.93517e-87 1.43679e-84 1.01045e-81 6.72121e-79 4.22188e-76 2.50013e-73 1.39327e-70 7.29269e-68 3.57778e-65 1.6415e-62 7.02614e-60 2.79831e-57 1.03403e-54 3.53397e-52 1.11322e-49 3.21978e-47 8.51412e-45 2.04846e-42 4.45965e-40 8.72957e-38 1.52488e-35 2.35536e-33 3.18029e-31 3.69699e-29 3.62055e-27 2.88535e-25 1.75032e-23 6.70495e-22 1.2237e-22 -2.09124e-18 -1.58057e-16 -6.253e-15 -1.33644e-13 -1.3384e-12 -5.08227e-12 -3.34312e-17 1.79169e-19 -7.1249e-22 2.26885e-24 -6.07128e-27 1.41106e-29 -2.91743e-32 5.46422e-35 -9.40372e-38 1.50409e-40 -2.25698e-43 3.20231e-46 -4.32483e-49 5.59152e-52 -6.95507e-55 8.35946e-58 -9.74623e-61 1.10605e-63 -1.22556e-66 1.32964e-69 -1.41607e-72 1.48388e-75 -1.53323e-78 1.56524e-81 -1.58168e-84 1.58479e-87 -1.57704e-90 1.56096e-93 -1.53904e-96 1.51358e-99 -1.48671e-102 1.46033e-105 -1.43617e-108 1.41574e-111 -1.40592e-114 -6.47238e-114 -7.34517e-111 -7.97368e-108 -8.27504e-105 -8.20271e-102 -7.75933e-99 -6.99764e-96 -6.01032e-93 -4.91132e-90 -3.81381e-87 -2.81098e-84 -1.96401e-81 -1.29904e-78 -8.12227e-76 -4.79331e-73 -2.66555e-70 -1.39435e-67 -6.84815e-65 -3.15149e-62 -1.35598e-59 -5.44214e-57 -2.03217e-54 -7.04085e-52 -2.25662e-49 -6.66852e-47 -1.81036e-44 -4.49701e-42 -1.01759e-39 -2.08712e-37 -3.85828e-35 -6.38721e-33 -9.39852e-31 -1.2185e-28 -1.37731e-26 -1.33987e-24 -1.10363e-22 -7.53439e-21 -4.14189e-19 -1.76039e-17 -5.45209e-16 -1.12878e-14 -1.40481e-13 -1.0645e-12 -5.82374e-12 1.05794e-19 -9.33481e-22 4.62508e-24 -1.68105e-26 4.9349e-29 -1.2316e-31 2.69934e-34 -5.31476e-37 9.56019e-40 -1.59177e-42 2.47893e-45 -3.64207e-48 5.08449e-51 -6.78594e-54 8.70402e-57 -1.07787e-59 1.29391e-62 -1.51108e-65 1.72231e-68 -1.92146e-71 2.10376e-74 -2.26592e-77 2.40622e-80 -2.52439e-83 2.62139e-86 -2.69913e-89 2.7603e-92 -2.80804e-95 2.8458e-98 -2.87718e-101 2.90583e-104 -2.93539e-107 2.96951e-110 -3.0119e-113 2.72173e-116 -4.01388e-114 -4.47116e-111 -4.75993e-108 -4.83835e-105 -4.69121e-102 -4.33421e-99 -3.8115e-96 -3.18661e-93 -2.5297e-90 -1.90428e-87 -1.35737e-84 -9.14736e-82 -5.81843e-79 -3.48696e-76 -1.96504e-73 -1.03908e-70 -5.14351e-68 -2.37721e-65 -1.02283e-62 -4.0834e-60 -1.50681e-57 -5.11626e-55 -1.58973e-52 -4.4893e-50 -1.14169e-47 -2.58095e-45 -5.08086e-43 -8.38504e-41 -1.05879e-38 -6.8802e-37 1.054e-34 4.94273e-32 1.10779e-29 1.82082e-27 2.37908e-25 2.52406e-23 2.17231e-21 1.4938e-19 7.96544e-18 3.13006e-16 8.31275e-15 1.27315e-13 8.34603e-13 3.48935e-13 8.3468e-18 -5.27745e-20 2.31493e-22 -7.86708e-25 2.20513e-27 -5.30658e-30 1.12732e-32 -2.15783e-35 3.78042e-38 -6.13764e-41 9.32757e-44 -1.33801e-46 1.82437e-49 -2.37866e-52 2.98101e-55 -3.60716e-58 4.2313e-61 -4.82866e-64 5.37781e-67 -5.86214e-70 6.27065e-73 -6.59796e-76 6.84381e-79 -7.01224e-82 7.11054e-85 -7.14819e-88 7.13593e-91 -7.08494e-94 7.00627e-97 -6.91041e-100 6.80707e-103 -6.70504e-106 6.61232e-109 -6.53617e-112 6.56774e-115 9.95956e-114 1.1251e-110 1.21558e-107 1.2551e-104 1.23731e-101 1.16354e-98 1.04267e-95 8.89464e-93 7.21503e-90 5.55865e-87 4.06241e-84 2.81262e-81 1.84224e-78 1.13985e-75 6.65166e-73 3.65485e-70 1.88751e-67 9.14453e-65 4.14763e-62 1.75733e-59 6.93911e-57 2.54713e-54 8.66786e-52 2.72648e-49 7.90186e-47 2.10269e-44 5.11775e-42 1.13452e-39 2.28006e-37 4.13257e-35 6.71548e-33 9.71838e-31 1.2427e-28 1.39107e-26 1.34769e-24 1.11386e-22 7.70583e-21 4.34706e-19 1.92525e-17 6.31812e-16 1.39973e-14 1.7824e-13 9.93168e-13 8.96503e-13 8.13987e-18 -5.16751e-20 2.2716e-22 -7.73063e-25 2.1691e-27 -5.22408e-30 1.11054e-32 -2.12695e-35 3.72825e-38 -6.05581e-41 9.20729e-44 -1.32131e-46 1.80233e-49 -2.35084e-52 2.94726e-55 -3.56768e-58 4.18655e-61 -4.77939e-64 5.32493e-67 -5.80671e-70 6.21374e-73 -6.54063e-76 6.78705e-79 -6.95693e-82 7.0574e-85 -7.09783e-88 7.0888e-91 -7.04139e-94 6.96652e-97 -6.87462e-100 6.77531e-103 -6.67737e-106 6.58876e-109 -6.51675e-112 6.55304e-115 9.9502e-114 1.11591e-110 1.19661e-107 1.22589e-104 1.19876e-101 1.11784e-98 9.92996e-96 8.39408e-93 6.74477e-90 5.14528e-87 3.72178e-84 2.54923e-81 1.65107e-78 1.00964e-75 5.81983e-73 3.15687e-70 1.60846e-67 7.68288e-65 3.43314e-62 1.43198e-59 5.56187e-57 2.00639e-54 6.70357e-52 2.06815e-49 5.87245e-47 1.52921e-44 3.63773e-42 7.87135e-40 1.54195e-37 2.72028e-35 4.29646e-33 6.03473e-31 7.48006e-29 8.10805e-27 7.60239e-25 6.08292e-23 4.08117e-21 2.2422e-19 9.75396e-18 3.19569e-16 7.28945e-15 1.01226e-13 6.80075e-13 1.20063e-12 -5.39792e-19 4.12204e-21 -1.9358e-23 6.73422e-26 -1.88715e-28 4.47049e-31 -9.23719e-34 1.70158e-36 -2.83922e-39 4.34206e-42 -6.13909e-45 8.07314e-48 -9.90859e-51 1.13557e-53 -1.21061e-56 1.18714e-59 -1.04176e-62 7.5895e-66 -3.32122e-69 -2.36532e-72 9.37319e-75 -1.75501e-77 2.67114e-80 -3.66626e-83 4.72198e-86 -5.82259e-89 6.95625e-92 -8.11574e-95 9.29896e-98 -1.05092e-100 1.1755e-103 -1.3051e-106 1.44173e-109 -1.58808e-112 1.67442e-115 -8.60243e-114 -9.6828e-111 -1.04237e-107 -1.07227e-104 -1.05306e-101 -9.86421e-99 -8.80425e-96 -7.47976e-93 -6.04179e-90 -4.63463e-87 -3.37207e-84 -2.32401e-81 -1.51506e-78 -9.32894e-76 -5.41698e-73 -2.96125e-70 -1.52128e-67 -7.33037e-65 -3.30628e-62 -1.39282e-59 -5.46722e-57 -1.9946e-54 -6.74478e-52 -2.10774e-49 -6.06738e-47 -1.60322e-44 -3.87364e-42 -8.52182e-40 -1.69898e-37 -3.05344e-35 -4.91747e-33 -7.04797e-31 -8.91806e-29 -9.8671e-27 -9.43374e-25 -7.67709e-23 -5.21192e-21 -2.87003e-19 -1.22992e-17 -3.84422e-16 -7.854e-15 -8.50808e-14 -2.80915e-13 8.22133e-13 -1.25455e-16 7.90394e-19 -3.38339e-21 1.11129e-23 -2.99085e-26 6.87261e-29 -1.38681e-31 2.50783e-34 -4.12653e-37 6.251e-40 -8.79681e-43 1.15807e-45 -1.43355e-48 1.67433e-51 -1.84787e-54 1.92523e-57 -1.88465e-60 1.7137e-63 -1.40994e-66 9.80117e-70 -4.38371e-73 -1.96145e-76 9.01792e-79 -1.65676e-81 2.44095e-84 -3.23735e-87 4.03286e-90 -4.8187e-93 5.59046e-96 -6.3479e-99 7.09466e-102 -7.83798e-105 8.58843e-108 -9.35983e-111 1.01765e-113 8.29909e-114 9.35037e-111 1.00615e-107 1.0345e-104 1.01541e-101 9.50555e-99 8.47818e-96 7.19704e-93 5.80823e-90 4.45097e-87 3.23475e-84 2.22649e-81 1.44937e-78 8.90967e-76 5.16381e-73 2.81684e-70 1.44359e-67 6.93688e-65 3.11898e-62 1.30921e-59 5.11802e-57 1.85845e-54 6.25061e-52 1.94123e-49 5.54825e-47 1.45397e-44 3.47947e-42 7.56963e-40 1.48956e-37 2.63633e-35 4.16959e-33 5.84902e-31 7.21323e-29 7.73727e-27 7.12316e-25 5.53238e-23 3.54178e-21 1.80834e-19 7.00617e-18 1.89943e-16 3.10307e-15 2.11292e-14 -4.30921e-14 -8.64485e-13 2.13477e-19 -2.21028e-21 1.14677e-23 -4.20519e-26 1.22016e-28 -2.96748e-31 6.26685e-34 -1.17703e-36 2.00007e-39 -3.1141e-42 4.48488e-45 -6.01569e-48 7.54946e-51 -8.88314e-54 9.79123e-57 -1.00531e-59 9.47895e-63 -7.92922e-66 5.32576e-69 -1.65339e-72 -3.04647e-75 8.68793e-78 -1.51561e-80 2.23232e-83 -3.00634e-86 3.82659e-89 -4.68446e-92 5.57451e-95 -6.49499e-98 7.44814e-101 -8.44046e-104 9.48292e-107 -1.05914e-109 1.17873e-112 -1.24123e-115 8.02746e-114 8.99022e-111 9.62733e-108 9.84914e-105 9.61721e-102 8.95445e-99 7.9419e-96 6.70254e-93 5.37639e-90 4.09408e-87 2.95587e-84 2.02065e-81 1.30602e-78 7.96908e-76 4.58309e-73 2.48001e-70 1.26036e-67 6.00378e-65 2.67506e-62 1.11234e-59 4.30611e-57 1.54788e-54 5.15187e-52 1.58285e-49 4.47421e-47 1.15935e-44 2.7429e-42 5.89915e-40 1.14773e-37 2.00906e-35 3.14455e-33 4.36972e-31 5.34635e-29 5.70193e-27 5.23546e-25 4.07284e-23 2.62693e-21 1.36205e-19 5.41734e-18 1.53095e-16 2.67166e-15 2.06264e-14 -2.30404e-14 -6.35859e-13 -4.02365e-22 3.82888e-24 -2.09248e-26 8.10186e-29 -2.46401e-31 6.23791e-34 -1.36348e-36 2.6378e-39 -4.59685e-42 7.3086e-45 -1.06981e-47 1.45032e-50 -1.8261e-53 2.13304e-56 -2.29475e-59 2.23022e-62 -1.86202e-65 1.1236e-68 3.55182e-73 -1.64713e-74 3.72451e-77 -6.26488e-80 9.25353e-83 -1.26689e-85 1.64883e-88 -2.06928e-91 2.52727e-94 -3.02319e-97 3.55918e-100 -4.13953e-103 4.77113e-106 -5.46393e-109 6.23157e-112 -7.09223e-115 3.71005e-118 -5.04888e-115 -5.58546e-112 -5.89621e-109 -5.93229e-106 -5.68125e-103 -5.17154e-100 -4.46746e-97 -3.65592e-94 -2.82843e-91 -2.06391e-88 -1.41653e-85 -9.11344e-83 -5.47291e-80 -3.05072e-77 -1.56621e-74 -7.319e-72 -3.05233e-69 -1.09267e-66 -3.03603e-64 -3.939e-62 2.31372e-59 2.40977e-56 1.40395e-53 6.43713e-51 2.51057e-48 8.5717e-46 2.59371e-43 6.99061e-41 1.68008e-38 3.59554e-36 6.82999e-34 1.14603e-31 1.68767e-29 2.16302e-27 2.38693e-25 2.23604e-23 1.74448e-21 1.10319e-19 5.4327e-18 1.95566e-16 4.61241e-15 5.66547e-14 1.39228e-13 -1.88282e-12 -7.63067e-23 4.92083e-25 -2.01469e-27 6.37067e-30 -1.67941e-32 3.84876e-35 -7.87814e-38 1.4682e-40 -2.52734e-43 4.06419e-46 -6.16148e-49 8.87332e-52 -1.22167e-54 1.61682e-57 -2.06672e-60 2.56223e-63 -3.09228e-66 3.64502e-69 -4.20892e-72 4.7738e-75 -5.33151e-78 5.87636e-81 -6.40539e-84 6.91832e-87 -7.41749e-90 7.90765e-93 -8.39581e-96 8.89105e-99 -9.40454e-102 9.94958e-105 -1.05419e-107 1.12e-110 -1.19462e-113 1.28058e-116 -1.85901e-117 -2.1501e-114 -2.39734e-111 -2.55558e-108 -2.60232e-105 -2.52895e-102 -2.34317e-99 -2.06779e-96 -1.73611e-93 -1.38521e-90 -1.04905e-87 -7.53107e-85 -5.11808e-82 -3.28786e-79 -1.99345e-76 -1.13884e-73 -6.11956e-71 -3.08713e-68 -1.45909e-65 -6.44692e-63 -2.65663e-60 -1.01836e-57 -3.62111e-55 -1.19072e-52 -3.60843e-50 -1.00396e-47 -2.55351e-45 -5.90805e-43 -1.23637e-40 -2.32429e-38 -3.8925e-36 -5.74508e-34 -7.36456e-32 -8.02377e-30 -7.16282e-28 -4.849e-26 -1.91964e-24 4.5455e-23 1.52864e-20 1.41306e-18 7.93814e-17 2.82645e-15 5.75359e-14 4.90736e-13 3.73155e-13 -5.67638e-20 2.52267e-22 -8.73112e-25 2.4996e-27 -6.15435e-30 1.33918e-32 -2.62776e-35 4.72214e-38 -7.86741e-41 1.22743e-43 -1.80811e-46 2.53249e-49 -3.39278e-52 4.37011e-55 -5.43651e-58 6.55802e-61 -7.69831e-64 8.82214e-67 -9.89834e-70 1.09019e-72 -1.1815e-75 1.26277e-78 -1.33371e-81 1.39467e-84 -1.44653e-87 1.49059e-90 -1.52843e-93 1.56187e-96 -1.59282e-99 1.62334e-102 -1.65551e-105 1.69156e-108 -1.7338e-111 1.78478e-114 -1.76672e-117 9.41638e-116 1.05212e-112 1.12338e-109 1.14511e-106 1.11324e-103 1.03108e-100 9.08777e-98 7.61303e-95 6.05381e-92 4.56313e-89 3.25543e-86 2.19461e-83 1.39554e-80 8.35462e-78 4.69877e-75 2.4768e-72 1.2204e-69 5.60417e-67 2.39011e-64 9.42862e-62 3.42342e-59 1.13701e-56 3.42623e-54 9.26041e-52 2.20546e-49 4.48487e-47 7.26233e-45 7.35047e-43 -4.0879e-41 -4.36462e-38 -1.32118e-35 -2.80084e-33 -4.65044e-31 -6.18099e-29 -6.46685e-27 -4.98157e-25 -2.19796e-23 5.31988e-22 1.9453e-19 1.83531e-17 1.00711e-15 3.31972e-14 5.73715e-13 1.95829e-12 -8.83838e-18 3.95859e-20 -1.36838e-22 3.89476e-25 -9.50922e-28 2.0487e-30 -3.97629e-33 7.06346e-36 -1.16286e-38 1.79228e-41 -2.60792e-44 3.60788e-47 -4.77415e-50 6.07414e-53 -7.46442e-56 8.89556e-59 -1.03174e-61 1.16836e-64 -1.29554e-67 1.4104e-70 -1.5111e-73 1.59688e-76 -1.66789e-79 1.72507e-82 -1.76998e-85 1.80458e-88 -1.83112e-91 1.852e-94 -1.86966e-97 1.88656e-100 -1.90517e-103 1.92793e-106 -1.95735e-109 1.99608e-112 -2.04818e-115 -1.41167e-115 -1.60055e-112 -1.73292e-109 -1.79282e-106 -1.77069e-103 -1.66794e-100 -1.49696e-97 -1.2787e-94 -1.0384e-91 -8.00717e-89 -5.85549e-86 -4.05542e-83 -2.65632e-80 -1.64302e-77 -9.58128e-75 -5.25878e-72 -2.71167e-69 -1.3111e-66 -5.93175e-64 -2.50562e-61 -9.85827e-59 -3.60359e-56 -1.22048e-53 -3.81868e-51 -1.10028e-48 -2.90954e-46 -7.0351e-44 -1.5492e-41 -3.09348e-39 -5.57479e-37 -9.01942e-35 -1.30242e-32 -1.66738e-30 -1.87745e-28 -1.84097e-26 -1.55139e-24 -1.10237e-22 -6.41084e-21 -2.89751e-19 -9.15665e-18 -1.45661e-16 1.67805e-15 1.26286e-13 9.42339e-13 -2.7946e-17 1.97002e-19 -9.32021e-22 3.37477e-24 -1.00197e-26 2.54567e-29 -5.69805e-32 1.14769e-34 -2.11394e-37 3.60603e-40 -5.75554e-43 8.66831e-46 -1.24068e-48 1.69783e-51 -2.2331e-54 2.83589e-57 -3.49132e-60 4.18179e-63 -4.88883e-66 5.59473e-69 -6.28389e-72 6.94388e-75 -7.56592e-78 8.14513e-81 -8.68038e-84 9.17393e-87 -9.63103e-90 1.00594e-92 -1.04689e-95 1.0871e-98 -1.12789e-101 1.17072e-104 -1.21721e-107 1.26918e-110 -1.32866e-113 8.57609e-115 9.43356e-112 1.00861e-108 1.03017e-105 1.00423e-102 9.33405e-100 8.26366e-97 6.96093e-94 5.57257e-91 4.23456e-88 3.05044e-85 2.0803e-82 1.34111e-79 8.16021e-77 4.67867e-74 2.52325e-71 1.2776e-68 6.06101e-66 2.68826e-63 1.11214e-60 4.28066e-58 1.52879e-55 5.05114e-53 1.539e-50 4.30904e-48 1.10445e-45 2.58053e-43 5.47071e-41 1.04688e-38 1.7978e-36 2.75244e-34 3.7286e-32 4.42998e-30 4.56803e-28 4.036e-26 3.00597e-24 1.84685e-22 9.08066e-21 3.41507e-19 9.1363e-18 1.5319e-16 1.29745e-15 8.48766e-15 1.12513e-13 -5.44829e-15 3.62064e-17 -1.64905e-19 5.79469e-22 -1.67617e-24 4.158e-27 -9.09939e-30 1.79346e-32 -3.23443e-35 5.40447e-38 -8.45188e-41 1.24748e-43 -1.75004e-46 2.34752e-49 -3.02672e-52 3.76795e-55 -4.54725e-58 5.33886e-61 -6.11774e-64 6.86163e-67 -7.5526e-70 8.17782e-73 -8.72985e-76 9.20637e-79 -9.60956e-82 9.94528e-85 -1.02223e-87 1.04513e-90 -1.06445e-93 1.08149e-96 -1.09757e-99 1.11408e-102 -1.13241e-105 1.15401e-108 -1.1804e-111 1.198e-114 -1.64837e-113 -1.69627e-110 -1.65865e-107 -1.53792e-104 -1.34896e-101 -1.11609e-98 -8.67871e-96 -6.31227e-93 -4.2659e-90 -2.65242e-87 -1.49298e-84 -7.37944e-82 -2.98171e-79 -7.53184e-77 1.65159e-74 4.0471e-71 3.61426e-68 2.44091e-65 1.39732e-62 7.05089e-60 3.19019e-57 1.30479e-54 4.8419e-52 1.63209e-49 4.9948e-47 1.38557e-44 3.47512e-42 7.85379e-40 1.59281e-37 2.8846e-35 4.63788e-33 6.57491e-31 8.15179e-29 8.75204e-27 8.03745e-25 6.21482e-23 3.96218e-21 2.0235e-19 7.94731e-18 2.26366e-16 4.30742e-15 4.98105e-14 1.93815e-13 -2.12654e-17 9.01707e-20 -2.75256e-22 6.27854e-25 -1.03253e-27 8.98929e-31 1.28691e-33 -8.45024e-36 2.52841e-38 -5.82967e-41 1.15439e-43 -2.05319e-46 3.36137e-49 -5.14555e-52 7.44734e-55 -1.02772e-57 1.36131e-60 -1.74027e-63 2.15706e-66 -2.60267e-69 3.06754e-72 -3.54249e-75 4.01946e-78 -4.49207e-81 4.95598e-84 -5.40903e-87 5.85128e-90 -6.28497e-93 6.71433e-96 -7.14553e-99 7.58658e-102 -8.04736e-105 8.53973e-108 -9.07786e-111 9.67863e-114 -3.21182e-116 -2.52604e-113 -2.80659e-110 -2.98137e-107 -3.02521e-104 -2.92943e-101 -2.70434e-98 -2.37751e-95 -1.98829e-92 -1.57983e-89 -1.19115e-86 -8.51054e-84 -5.75391e-81 -3.67552e-78 -2.21471e-75 -1.25661e-72 -6.70132e-70 -3.35217e-67 -1.56951e-64 -6.86234e-62 -2.79487e-59 -1.05745e-56 -3.70585e-54 -1.19912e-51 -3.56994e-49 -9.74145e-47 -2.42613e-44 -5.48911e-42 -1.12233e-39 -2.06172e-37 -3.38021e-35 -4.90857e-33 -6.25768e-31 -6.93012e-29 -6.582e-27 -5.27506e-25 -3.49202e-23 -1.8534e-21 -7.54042e-20 -2.1783e-18 -3.77781e-17 -1.66857e-16 7.13718e-15 7.82234e-14 8.83796e-20 -9.17224e-22 5.27943e-24 -2.197e-26 7.29132e-29 -2.03528e-31 4.94434e-34 -1.07078e-36 2.10471e-39 -3.80763e-42 6.4113e-45 -1.01405e-47 1.51823e-50 -2.16577e-53 2.96026e-56 -3.89595e-59 4.95833e-62 -6.12567e-65 7.37144e-68 -8.667e-71 9.98422e-74 -1.12978e-76 1.25871e-79 -1.38369e-82 1.50386e-85 -1.61895e-88 1.72934e-91 -1.83592e-94 1.94012e-97 -2.0438e-100 2.14927e-103 -2.25926e-106 2.37694e-109 -2.50601e-112 2.65086e-115 3.35477e-117 4.22254e-114 4.69197e-111 4.98481e-108 5.05897e-105 4.89986e-102 4.52457e-99 3.97907e-96 3.32897e-93 2.64633e-90 1.99635e-87 1.42726e-84 9.65652e-82 6.17347e-79 3.72324e-76 2.11464e-73 1.12892e-70 5.65367e-68 2.65029e-65 1.16022e-62 4.73112e-60 1.79214e-57 6.28724e-55 2.03609e-52 6.06477e-50 1.65491e-47 4.11863e-45 9.30223e-43 1.89604e-40 3.46547e-38 5.63829e-36 8.09614e-34 1.01562e-31 1.09936e-29 1.01108e-27 7.74417e-26 4.8077e-24 2.32677e-22 8.2628e-21 1.93753e-19 2.41549e-18 1.20464e-17 4.73125e-16 9.81768e-15 2.39506e-17 -1.8563e-19 9.81952e-22 -3.94458e-24 1.28424e-26 -3.53778e-29 8.50087e-32 -1.82229e-34 3.54575e-37 -6.34856e-40 1.05762e-42 -1.65444e-45 2.44891e-48 -3.45254e-51 4.6623e-54 -6.06027e-57 7.61539e-60 -9.28684e-63 1.10284e-65 -1.27927e-68 1.45358e-71 -1.62201e-74 1.78164e-77 -1.93054e-80 2.06776e-83 -2.19329e-86 2.30791e-89 -2.41316e-92 2.51111e-95 -2.60434e-98 2.69579e-101 -2.78876e-104 2.88687e-107 -2.99413e-110 3.115e-113 -9.54443e-117 2.59295e-113 2.79518e-110 2.87881e-107 2.8301e-104 2.65307e-101 2.36923e-98 2.01328e-95 1.62605e-92 1.24671e-89 9.06229e-87 6.23661e-84 4.05751e-81 2.49169e-78 1.44186e-75 7.84829e-73 4.01069e-70 1.92029e-67 8.5953e-65 3.58817e-62 1.39346e-59 5.02024e-57 1.67287e-54 5.13922e-52 1.45041e-49 3.74596e-47 8.81613e-45 1.88199e-42 3.62542e-40 6.2668e-38 9.65957e-36 1.31844e-33 1.58107e-31 1.65118e-29 1.48666e-27 1.14055e-25 7.35315e-24 3.91642e-22 1.68632e-20 5.705e-19 1.46129e-17 2.7231e-16 3.60224e-15 2.18112e-14 2.61197e-17 -1.42586e-19 6.04703e-22 -2.10041e-24 6.1906e-27 -1.58929e-29 3.62733e-32 -7.48162e-35 1.41335e-37 -2.47279e-40 4.04454e-43 -6.23385e-46 9.11636e-49 -1.27246e-51 1.70403e-54 -2.19946e-57 2.74742e-60 -3.33341e-63 3.94122e-66 -4.55452e-69 5.1582e-72 -5.7395e-75 6.28873e-78 -6.79955e-81 7.26904e-84 -7.69749e-87 8.08801e-90 -8.44609e-93 8.7792e-96 -9.09637e-99 9.40795e-102 -9.72545e-105 1.00615e-107 -1.043e-110 1.08466e-113 -2.99676e-116 -2.10784e-113 -2.2798e-110 -2.35624e-107 -2.32491e-104 -2.18795e-101 -1.96187e-98 -1.67432e-95 -1.35845e-92 -1.04656e-89 -7.64611e-87 -5.29031e-84 -3.46144e-81 -2.13844e-78 -1.24533e-75 -6.82417e-73 -3.51217e-70 -1.69425e-67 -7.64374e-65 -3.21764e-62 -1.26056e-59 -4.58334e-57 -1.54201e-54 -4.78463e-52 -1.36428e-49 -3.56071e-47 -8.46924e-45 -1.82691e-42 -3.55468e-40 -6.20075e-38 -9.63044e-36 -1.32121e-33 -1.58648e-31 -1.6495e-29 -1.46587e-27 -1.09576e-25 -6.75013e-24 -3.33321e-22 -1.26679e-20 -3.45836e-19 -5.79613e-18 -2.25042e-17 1.52e-15 2.81091e-14 -5.25356e-17 3.10467e-19 -1.21875e-21 3.57981e-24 -8.32163e-27 1.56489e-29 -2.34797e-32 2.54368e-35 -9.02802e-39 -4.5198e-41 1.6292e-43 -3.73593e-46 7.06665e-49 -1.18727e-51 1.83236e-54 -2.64798e-57 3.62832e-60 -4.75644e-63 6.00643e-66 -7.3465e-69 8.74247e-72 -1.0161e-74 1.15725e-77 -1.2953e-80 1.42851e-83 -1.55592e-86 1.67729e-89 -1.79303e-92 1.90421e-95 -2.01243e-98 2.11978e-101 -2.2288e-104 2.34249e-107 -2.46431e-110 2.59827e-113 -2.78151e-116 -3.85334e-115 -4.38901e-112 -4.78868e-109 -5.00023e-106 -4.99159e-103 -4.75869e-100 -4.32749e-97 -3.74935e-94 -3.09094e-91 -2.42132e-88 -1.79978e-85 -1.26747e-82 -8.44327e-80 -5.31134e-77 -3.14945e-74 -1.757e-71 -9.20296e-69 -4.51601e-66 -2.07128e-63 -8.85708e-61 -3.52157e-58 -1.2981e-55 -4.42221e-53 -1.38752e-50 -3.99471e-48 -1.05101e-45 -2.51568e-43 -5.45116e-41 -1.0635e-38 -1.85674e-36 -2.88124e-34 -3.94347e-32 -4.71897e-30 -4.88771e-28 -4.33048e-26 -3.23644e-24 -2.00616e-22 -1.01015e-20 -4.02595e-19 -1.23288e-17 -2.81764e-16 -4.73204e-15 -4.25281e-14 -1.04244e-17 8.33551e-20 -4.16594e-22 1.55625e-24 -4.71595e-27 1.21586e-29 -2.75215e-32 5.59325e-35 -1.03792e-37 1.78182e-40 -2.85984e-43 4.32864e-46 -6.22362e-49 8.55244e-52 -1.12927e-54 1.4394e-57 -1.77831e-60 2.13722e-63 -2.50679e-66 2.87793e-69 -3.24262e-72 3.59432e-75 -3.92837e-78 4.2421e-81 -4.53476e-84 4.80739e-87 -5.06262e-90 5.30442e-93 -5.53793e-96 5.76929e-99 -6.00552e-102 6.25459e-105 -6.52542e-108 6.8282e-111 -7.17468e-114 7.927e-117 4.06138e-115 4.53212e-112 4.83618e-109 4.9306e-106 4.79834e-103 4.45296e-100 3.93663e-97 3.31164e-94 2.6479e-91 2.00987e-88 1.44636e-85 9.85438e-83 6.34729e-80 3.85899e-77 2.21085e-74 1.19144e-71 6.02808e-69 2.85752e-66 1.26632e-63 5.23362e-61 2.01209e-58 7.17567e-56 2.36657e-53 7.19398e-51 2.00826e-48 5.12758e-46 1.19207e-43 2.51081e-41 4.7644e-39 8.09332e-37 1.22186e-34 1.62582e-32 1.88821e-30 1.89221e-28 1.61375e-26 1.15165e-24 6.73346e-23 3.13867e-21 1.12517e-19 2.96056e-18 5.39185e-17 6.48501e-16 5.12281e-15 -4.11303e-15 2.73626e-17 -1.24829e-19 4.39469e-22 -1.27375e-24 3.1663e-27 -6.94393e-30 1.3716e-32 -2.47908e-35 4.15161e-38 -6.50731e-41 9.62675e-44 -1.35366e-46 1.82012e-49 -2.3524e-52 2.93569e-55 -3.55172e-58 4.18067e-61 -4.80305e-64 5.4014e-67 -5.96146e-70 6.47289e-73 -6.92948e-76 7.329e-79 -7.67279e-82 7.96516e-85 -8.21272e-88 8.42384e-91 -8.60805e-94 8.77567e-97 -8.93754e-100 9.10488e-103 -9.28933e-106 9.50311e-109 -9.7593e-112 1.00794e-114 8.05104e-115 8.82031e-112 9.23234e-109 9.23708e-106 8.82609e-103 8.0465e-100 6.99233e-97 5.78574e-94 4.5534e-91 3.4044e-88 2.41508e-85 1.6234e-82 1.03254e-79 6.20468e-77 3.51683e-74 1.87693e-71 9.41447e-69 4.42919e-66 1.95026e-63 8.0183e-61 3.07042e-58 1.09207e-55 3.59704e-53 1.09364e-50 3.05846e-48 7.83691e-46 1.83211e-43 3.88943e-41 7.45921e-39 1.2849e-36 1.97525e-34 2.69051e-32 3.22102e-30 3.35845e-28 3.01838e-26 2.31089e-24 1.48694e-22 7.91619e-21 3.42486e-19 1.18205e-17 3.19717e-16 6.69428e-15 1.02993e-13 -1.37539e-15 9.1394e-18 -4.16728e-20 1.46673e-22 -4.25059e-25 1.05655e-27 -2.31706e-30 4.57684e-33 -8.2726e-36 1.38544e-38 -2.17169e-41 3.21295e-44 -4.51818e-47 6.07558e-50 -7.85294e-53 9.80094e-56 -1.18586e-58 1.39598e-61 -1.60394e-64 1.80392e-67 -1.99115e-70 2.16217e-73 -2.31491e-76 2.44861e-79 -2.56372e-82 2.66167e-85 -2.74468e-88 2.81551e-91 -2.87738e-94 2.93371e-97 -2.98813e-100 3.04439e-103 -3.1064e-106 3.17822e-109 -3.26425e-112 3.30948e-115 -6.77325e-114 -7.33171e-111 -7.58416e-108 -7.49005e-105 -7.05535e-102 -6.33239e-99 -5.40963e-96 -4.39364e-93 -3.38859e-90 -2.47855e-87 -1.71702e-84 -1.12494e-81 -6.95982e-79 -4.05954e-76 -2.22849e-73 -1.14921e-70 -5.55617e-68 -2.51317e-65 -1.06107e-62 -4.1713e-60 -1.52284e-57 -5.14811e-55 -1.60657e-52 -4.61257e-50 -1.21389e-47 -2.91654e-45 -6.36935e-43 -1.25824e-40 -2.23651e-38 -3.55599e-36 -5.02478e-34 -6.26483e-32 -6.83683e-30 -6.47258e-28 -5.26332e-26 -3.63589e-24 -2.10793e-22 -1.01226e-20 -3.97292e-19 -1.26105e-17 -3.22462e-16 -6.69493e-15 -1.15743e-13 -1.39528e-15 9.31815e-18 -4.26582e-20 1.50677e-22 -4.38105e-25 1.0924e-27 -2.40289e-30 4.76017e-33 -8.6282e-36 1.44896e-38 -2.27731e-41 3.378e-44 -4.76238e-47 6.41993e-50 -8.3183e-53 1.04066e-55 -1.26211e-58 1.48917e-61 -1.71492e-64 1.93306e-67 -2.13841e-70 2.32714e-73 -2.4969e-76 2.64674e-79 -2.77701e-82 2.88913e-85 -2.9854e-88 3.06875e-91 -3.1426e-94 3.21065e-97 -3.27685e-100 3.34533e-103 -3.42038e-106 3.50658e-109 -3.60883e-112 3.69744e-115 -3.97965e-114 -4.30399e-111 -4.44796e-108 -4.38802e-105 -4.12829e-102 -3.70014e-99 -3.15602e-96 -2.55879e-93 -1.96956e-90 -1.43742e-87 -9.93297e-85 -6.48962e-82 -4.00246e-79 -2.32636e-76 -1.27204e-73 -6.5308e-71 -3.14188e-68 -1.41323e-65 -5.92946e-63 -2.31464e-60 -8.38337e-58 -2.80881e-55 -8.67717e-53 -2.46289e-50 -6.39788e-48 -1.51462e-45 -3.25244e-43 -6.30246e-41 -1.09576e-38 -1.69849e-36 -2.33062e-34 -2.80863e-32 -2.9463e-30 -2.66368e-28 -2.05227e-26 -1.33059e-24 -7.15624e-23 -3.14029e-21 -1.10176e-19 -3.01172e-18 -6.13482e-17 -8.25841e-16 -3.40256e-15 -6.88689e-15 4.58982e-17 -2.09793e-19 7.40034e-22 -2.14909e-24 5.35262e-27 -1.17612e-29 2.32752e-32 -4.21466e-35 7.07106e-38 -1.11033e-40 1.64552e-43 -2.3179e-46 3.12204e-49 -4.04195e-52 5.0527e-55 -6.1232e-58 7.21943e-61 -8.30779e-64 9.35793e-67 -1.03449e-69 1.12504e-72 -1.20631e-75 1.27789e-78 -1.33994e-81 1.39319e-84 -1.43875e-87 1.47806e-90 -1.51275e-93 1.54464e-96 -1.57562e-99 1.60767e-102 -1.64287e-105 1.68338e-108 -1.73157e-111 1.78924e-114 -9.24959e-115 -1.00064e-111 -1.03682e-108 -1.02598e-105 -9.68682e-103 -8.71771e-100 -7.47055e-97 -6.08916e-94 -4.71534e-91 -3.46489e-88 -2.41282e-85 -1.59008e-82 -9.90244e-80 -5.81857e-77 -3.22049e-74 -1.67608e-71 -8.1868e-69 -3.74541e-66 -1.60143e-63 -6.3845e-61 -2.36734e-58 -8.14197e-56 -2.58971e-53 -7.59336e-51 -2.04532e-48 -5.04174e-46 -1.1326e-43 -2.30809e-41 -4.24541e-39 -7.00895e-37 -1.03223e-34 -1.34689e-32 -1.54542e-30 -1.54643e-28 -1.33736e-26 -9.89883e-25 -6.20749e-23 -3.26516e-21 -1.42713e-19 -5.15989e-18 -1.54908e-16 -3.94122e-15 -8.94409e-14 -2.74481e-15 1.82522e-17 -8.32718e-20 2.93239e-22 -8.50224e-25 2.11439e-27 -4.63916e-30 9.16799e-33 -1.6579e-35 2.77788e-38 -4.35647e-41 6.44844e-44 -9.07262e-47 1.22061e-49 -1.57851e-52 1.97112e-55 -2.38625e-58 2.81061e-61 -3.23115e-64 3.63612e-67 -4.01591e-70 4.36351e-73 -4.67469e-76 4.94789e-79 -5.18393e-82 5.38566e-85 -5.55752e-88 5.70508e-91 -5.83479e-94 5.9536e-97 -6.06887e-100 6.18823e-103 -6.31963e-106 6.47144e-109 -6.65268e-112 6.87394e-115 7.20568e-116 8.06722e-113 8.55264e-110 8.66376e-107 8.37798e-104 7.72634e-101 6.78829e-98 5.67577e-95 4.5109e-92 3.40362e-89 2.43497e-86 1.64936e-83 1.05625e-80 6.38507e-78 3.63727e-75 1.94902e-72 9.80499e-70 4.62133e-67 2.03613e-64 8.36591e-62 3.19712e-59 1.13321e-56 3.71393e-54 1.12169e-51 3.11052e-49 7.88808e-47 1.82125e-44 3.80987e-42 7.18223e-40 1.21292e-37 1.82291e-35 2.42043e-33 2.81667e-31 2.84773e-29 2.47825e-27 1.83896e-25 1.15356e-23 6.08457e-22 2.70203e-20 1.02544e-18 3.4593e-17 1.11253e-15 3.76032e-14 1.7141e-17 -7.77055e-20 2.72555e-22 -7.89108e-25 1.96448e-27 -4.32537e-30 8.59805e-33 -1.56746e-35 2.65326e-38 -4.21196e-41 6.32241e-44 -9.03588e-47 1.23679e-49 -1.62952e-52 2.07574e-55 -2.56637e-58 3.09026e-61 -3.63528e-64 4.18941e-67 -4.74175e-70 5.28316e-73 -5.80683e-76 6.30849e-79 -6.78644e-82 7.24152e-85 -7.67682e-88 8.09749e-91 -8.51054e-94 8.92467e-97 -9.35016e-100 9.79896e-103 -1.02848e-105 1.08236e-108 -1.14341e-111 1.21383e-114 6.42606e-118 2.19465e-114 2.37578e-111 2.45758e-108 2.42702e-105 2.28603e-102 2.05158e-99 1.75238e-96 1.42299e-93 1.09721e-90 8.02291e-88 5.55572e-85 3.63821e-82 2.2496e-79 1.31124e-76 7.19211e-74 3.70525e-71 1.78934e-68 8.08255e-66 3.40704e-63 1.3369e-60 4.87011e-58 1.64223e-55 5.10984e-53 1.46207e-50 3.8325e-48 9.16584e-46 1.99107e-43 3.90918e-41 6.89943e-39 1.08812e-36 1.52344e-34 1.87981e-32 2.0282e-30 1.89701e-28 1.52398e-26 1.04143e-24 5.99517e-23 2.88211e-21 1.14711e-19 3.76592e-18 1.02093e-16 2.29277e-15 4.16555e-14 -2.08511e-19 9.38792e-22 -3.23453e-24 9.13594e-27 -2.20771e-29 4.69948e-32 -9.00102e-35 1.57646e-37 -2.55707e-40 3.8809e-43 -5.55826e-46 7.56584e-49 -9.84756e-52 1.23208e-54 -1.48861e-57 1.74388e-60 -1.98801e-63 2.21256e-66 -2.41113e-69 2.57965e-72 -2.71632e-75 2.82141e-78 -2.89689e-81 2.94599e-84 -2.97282e-87 2.98194e-90 -2.97811e-93 2.96607e-96 -2.95037e-99 2.93534e-102 -2.92508e-105 2.92353e-108 -2.93458e-111 2.96223e-114 -3.01019e-117 6.96607e-118 7.70587e-115 8.18238e-112 8.29519e-109 8.02105e-106 7.38988e-103 6.4798e-100 5.40116e-97 4.2743e-94 3.20708e-91 2.27821e-88 1.52984e-85 9.69473e-83 5.78741e-80 3.24819e-77 1.71034e-74 8.42922e-72 3.8783e-69 1.66111e-66 6.60169e-64 2.42559e-61 8.20423e-59 2.54174e-56 7.1685e-54 1.82621e-51 4.15872e-49 8.33806e-47 1.43586e-44 2.0233e-42 2.04697e-40 6.06534e-39 -3.17561e-36 -9.39193e-34 -1.66712e-31 -2.23826e-29 -2.4039e-27 -2.10001e-25 -1.49521e-23 -8.6295e-22 -3.33064e-20 -1.20501e-18 -3.44529e-17 -7.59806e-16 -1.16255e-14 8.69861e-18 -3.89617e-20 1.34638e-22 -3.82958e-25 9.34045e-28 -2.00951e-30 3.89321e-33 -6.90065e-36 1.13309e-38 -1.7411e-41 2.52469e-44 -3.47913e-47 4.58379e-50 -5.80397e-53 7.09485e-56 -8.40654e-59 9.68933e-62 -1.08983e-64 1.19967e-67 -1.29582e-70 1.37671e-73 -1.44182e-76 1.49154e-79 -1.52698e-82 1.54978e-85 -1.56193e-88 1.56561e-91 -1.56305e-94 1.55645e-97 -1.54792e-100 1.53944e-103 -1.5329e-106 1.53006e-109 -1.53265e-112 1.54334e-115 1.0739e-115 1.19408e-112 1.26729e-109 1.2845e-106 1.24222e-103 1.14508e-100 1.00506e-97 8.39039e-95 6.65425e-92 5.00727e-89 3.57039e-86 2.40899e-83 1.53572e-80 9.23541e-78 5.23041e-75 2.78462e-72 1.39094e-69 6.50522e-67 2.84226e-64 1.15737e-61 4.38101e-59 1.53729e-56 4.98554e-54 1.48944e-51 4.08454e-49 1.02422e-46 2.33852e-44 4.83915e-42 9.02979e-40 1.51093e-37 2.25326e-35 2.97478e-33 3.45122e-31 3.49038e-29 3.05057e-27 2.28284e-25 1.44874e-23 7.7227e-22 3.42679e-20 7.79338e-19 2.36041e-17 5.78585e-16 1.18211e-14 2.05243e-13 -4.83429e-18 2.16013e-20 -7.44731e-23 2.11349e-25 -5.14353e-28 1.10421e-30 -2.13481e-33 3.77621e-36 -6.18823e-39 9.49043e-42 -1.37356e-44 1.88935e-47 -2.48478e-50 3.14073e-53 -3.83274e-56 4.53381e-59 -5.21722e-62 5.85897e-65 -6.43964e-68 6.94537e-71 -7.36823e-74 7.70582e-77 -7.9606e-80 8.13883e-83 -8.24958e-86 8.30372e-89 -8.31302e-92 8.28947e-95 -8.24485e-98 8.19036e-101 -8.13654e-104 8.09327e-107 -8.06989e-110 8.07542e-113 -8.11892e-116 1.19671e-118 4.45618e-116 5.07424e-113 5.5407e-110 5.79425e-107 5.79568e-104 5.53743e-101 5.04676e-98 4.38128e-95 3.61778e-92 2.83716e-89 2.10985e-86 1.48543e-83 9.88436e-81 6.2056e-78 3.6691e-75 2.0391e-72 1.06298e-69 5.18656e-67 2.36318e-64 1.00301e-61 3.95502e-59 1.44475e-56 4.8742e-54 1.51369e-51 4.31148e-49 1.12196e-46 2.6561e-44 5.6941e-42 1.09989e-39 1.904e-37 2.93669e-35 4.01062e-33 4.8176e-31 5.05339e-29 4.59226e-27 3.58328e-25 2.37646e-23 1.15788e-21 2.63908e-20 9.91987e-19 2.92602e-17 6.76902e-16 1.13659e-14 -4.58594e-18 2.04828e-20 -7.06074e-23 2.00381e-25 -4.87704e-28 1.04715e-30 -2.02484e-33 3.58238e-36 -5.87182e-39 9.00713e-42 -1.30391e-44 1.79395e-47 -2.35986e-50 2.98353e-53 -3.64175e-56 4.3089e-59 -4.95956e-62 5.57091e-65 -6.12443e-68 6.60692e-71 -7.01075e-74 7.33361e-77 -7.57774e-80 7.7491e-83 -7.85624e-86 7.90949e-89 -7.92e-92 7.89921e-95 -7.85829e-98 7.80792e-101 -7.75815e-104 7.71839e-107 -7.69756e-110 7.70428e-113 -7.74721e-116 7.87929e-119 5.02412e-118 5.50947e-115 5.77475e-112 5.78112e-109 5.52261e-106 5.02929e-103 4.36167e-100 3.59845e-97 2.821e-94 2.09893e-91 1.48031e-88 9.88323e-86 6.23777e-83 3.71629e-80 2.08675e-77 1.10257e-74 5.47238e-72 2.54681e-69 1.10929e-66 4.51286e-64 1.71122e-61 6.03452e-59 1.97447e-56 5.9794e-54 1.6716e-51 4.30203e-49 1.01624e-46 2.1964e-44 4.32806e-42 7.74522e-40 1.25304e-37 1.82298e-35 2.37006e-33 2.73311e-31 2.77147e-29 2.44689e-27 1.86025e-25 1.02597e-23 2.7295e-22 1.19472e-20 4.09785e-19 1.06996e-17 1.84771e-16 5.57779e-21 1.72136e-18 -2.64003e-18 -3.09412e-17 -2.76249e-16 -2.08502e-14 -4.19295e-14 -1.50941e-13 -2.96855e-13 -1.77608e-12 -3.1788e-15 8.32138e-16 -2.37957e-14 -2.63483e-14 -5.95461e-14 -6.35278e-14 -2.13522e-13 8.54538e-14 -9.55923e-14 -9.74553e-13 -1.58208e-13 -3.58492e-15 3.60738e-13 1.20065e-12 2.01923e-13 3.34319e-14 -1.45133e-13 -4.25658e-14 2.12213e-13 3.45701e-13 1.0905e-12 -1.57418e-14 -2.19052e-13 -1.35306e-13 -5.31443e-13 -9.12318e-14 -6.3936e-14 -1.75949e-13 7.68257e-14 7.16331e-14 -2.74506e-14 3.09747e-14 -5.50196e-14 -5.70545e-14 -2.20652e-14 -1.81644e-13 -4.24312e-14 -4.85873e-14 -1.76322e-13 1.18742e-14 5.00445e-14 -9.61608e-15 -3.6102e-14 -9.35622e-14 -1.44512e-13 -6.61069e-14 -4.21107e-13 -6.0052e-14 -1.91806e-14 -7.33783e-14 6.92978e-14 9.23933e-14 8.79354e-14 4.18695e-13 8.71671e-14 5.77949e-14 -2.41493e-13 -2.37047e-13 -3.5182e-13 -3.4026e-13 -2.07892e-12 -2.3879e-13 -7.13501e-14 -4.77826e-14 1.95247e-12 4.83401e-13 5.21166e-13 3.02685e-12 6.5268e-13 6.99935e-13 2.77629e-13 2.51206e-13 2.46016e-13 6.09193e-13 2.09247e-13 1.78013e-13 1.57538e-13 1.61508e-13 1.46088e-13 1.34841e-13 1.23582e-13 1.29803e-13 2.36945e-12 2.06792e-13 2.23398e-13 2.40668e-13 2.48379e-13 2.16258e-13 1.88719e-13 1.66627e-13 1.57186e-13 -5.69037e-13 9.36458e-14 6.72977e-14 8.98177e-14 8.27273e-14 8.62416e-14 8.65786e-14 9.04401e-14 9.15144e-14 9.40781e-14 1.26901e-12 1.09513e-13 7.28422e-14 6.06459e-14 3.92799e-15 -4.11449e-15 -8.0432e-14 -5.6064e-15 -2.31678e-14 2.08771e-12 1.28733e-13 1.86019e-13 2.07214e-13 2.28245e-13 2.50317e-13 2.94718e-13 3.11538e-13 3.6572e-13 2.8746e-12 3.11484e-13 2.68108e-13 2.44728e-13 2.04939e-13 2.40634e-13 2.44457e-13 2.9186e-13 3.10043e-13 7.16506e-12 5.79612e-13 6.10083e-13 6.14852e-13 6.43989e-13 6.47545e-13 6.87649e-13 5.63077e-13 5.77952e-13 4.19615e-13 4.02216e-12 4.61344e-13 5.0274e-13 5.83557e-13 6.32126e-13 7.42626e-13 8.19687e-13 8.50157e-13 8.26518e-13 5.32387e-12 2.13869e-13 2.25489e-13 1.06515e-12 1.82921e-12 2.99214e-13 2.74391e-13 1.16417e-12 5.96693e-13 1.80534e-12 2.56375e-12 9.83161e-13 1.40773e-12 9.94715e-13 2.54461e-13 2.64064e-13 7.76308e-14 2.45623e-13 6.22292e-13 2.51859e-13 5.68725e-13 2.83256e-13 8.1416e-13 6.1168e-13 1.77661e-13 -1.37141e-13 4.49475e-14 2.17906e-13 8.87855e-13 3.41237e-13 8.30286e-13 9.01975e-13 3.88979e-13 5.56193e-13 1.56775e-13 -9.44143e-14 -1.70248e-13 3.4079e-13 8.45711e-13 7.71746e-13 4.8736e-13 1.34905e-12 3.51297e-13 7.04076e-13 1.99825e-13 -3.76173e-13 -1.05219e-12 4.48858e-14 3.47878e-13 4.65722e-13 5.26786e-13 1.21344e-12 6.48582e-13 1.15142e-13 3.33076e-13 -1.29756e-13 3.46679e-13 1.12973e-12 5.94173e-13 1.7592e-12 7.93725e-13 1.23898e-12 7.47554e-13 3.30774e-14 4.27512e-13 -7.02641e-13 -7.41814e-13 -2.44146e-12 -9.99583e-13 -1.48347e-12 -3.41821e-13 2.78227e-13 9.62452e-13 8.87325e-14 1.10477e-12 5.11711e-13 2.34251e-14 -1.36386e-12 -1.25195e-12 -3.5223e-13 -3.83526e-13 -5.35027e-14 -4.55455e-14 8.71495e-48 -8.48313e-50 7.02718e-52 -9.19271e-54 1.85427e-56 -1.28474e-58 6.47842e-61 -1.61067e-63 1.76001e-66 -6.17047e-69 2.05083e-71 -3.38936e-74 2.29458e-77 -6.3905e-80 1.78668e-82 -2.41081e-85 1.36777e-88 -3.28032e-91 8.1852e-94 -9.86019e-97 5.64477e-100 -1.17766e-102 2.68055e-105 -2.95757e-108 1.80497e-111 -4.61546e-114 8.89844e-117 -8.14776e-120 5.41115e-123 -1.28703e-125 2.33665e-128 -2.01519e-131 -1.11825e-133 -1.65287e-130 -2.07978e-127 -1.25489e-124 -7.11675e-122 -7.60564e-119 -7.85339e-116 -3.87536e-113 -1.82185e-110 -1.59034e-107 -1.33643e-104 -5.36864e-102 -2.22056e-99 -1.58716e-96 -1.09225e-93 -3.61004e-91 -1.41216e-88 -8.49354e-86 -4.94969e-83 -1.41937e-80 -6.29373e-78 -3.3638e-75 -1.73993e-72 -4.99595e-70 -2.36187e-67 -1.0342e-64 -4.29587e-62 -1.14254e-59 -4.22163e-57 -1.42942e-54 -4.52509e-52 -1.1502e-49 -3.24945e-47 -8.6787e-45 -2.11565e-42 -4.78538e-40 -1.00237e-37 -2.1574e-35 -4.26858e-33 -7.13519e-31 -1.03215e-28 -1.64669e-26 -2.49285e-24 -3.54972e-22 -4.80648e-20 -6.42274e-18 -8.48541e-16 3.60457e-45 -2.94827e-47 2.25728e-49 -2.43643e-51 6.81822e-54 -4.19198e-56 1.93952e-58 -5.31705e-61 6.59915e-64 -1.91411e-66 6.01417e-69 -1.17465e-71 8.73303e-75 -1.89697e-77 5.12181e-80 -8.50085e-83 5.26235e-86 -9.36857e-89 2.28087e-91 -3.46974e-94 2.1455e-97 -3.12915e-100 7.1011e-103 -1.01895e-105 6.6526e-109 -1.28567e-111 2.10011e-114 -2.7039e-117 1.89907e-120 -3.28716e-123 5.01197e-126 -6.3338e-129 5.19779e-132 -1.5514e-133 -1.92407e-130 -2.4382e-127 -2.05342e-124 -2.4236e-121 -2.80103e-118 -3.12407e-115 -2.44859e-112 -2.47519e-109 -2.43737e-106 -2.30779e-103 -1.61344e-100 -1.36476e-97 -1.11868e-94 -8.78461e-92 -5.30896e-89 -3.68508e-86 -2.4637e-83 -1.57036e-80 -8.23095e-78 -4.60401e-75 -2.46316e-72 -1.24926e-69 -5.79468e-67 -2.56709e-64 -1.07891e-61 -4.26748e-59 -1.5668e-56 -5.44341e-54 -1.76445e-51 -5.30644e-49 -1.46624e-46 -3.96556e-44 -1.00886e-41 -2.36018e-39 -5.06289e-37 -1.02112e-34 -1.94415e-32 -3.56706e-30 -6.21565e-28 -9.8249e-26 -1.46756e-23 -2.10589e-21 -2.9278e-19 -3.95492e-17 -5.20779e-15 1.14196e-42 -9.71936e-45 6.75998e-47 -6.34552e-49 2.31535e-51 -1.40427e-53 5.48156e-56 -1.27424e-58 2.36265e-61 -7.32019e-64 1.69374e-66 -2.57598e-69 3.03916e-72 -7.30698e-75 1.40841e-77 -1.74836e-80 1.78261e-83 -3.64264e-86 6.13736e-89 -6.81151e-92 6.66864e-95 -1.2013e-97 1.83736e-100 -1.8817e-103 1.88001e-106 -3.07672e-109 4.3827e-112 -4.31153e-115 4.60552e-118 -6.94284e-121 9.333e-124 -9.19466e-127 1.06544e-129 -2.03487e-132 -7.30097e-130 -7.0974e-127 -7.39159e-124 -8.74469e-121 -1.00368e-117 -8.85084e-115 -8.92935e-112 -8.89371e-109 -8.56381e-106 -6.97369e-103 -6.07966e-100 -5.03665e-97 -4.01677e-94 -3.05651e-91 -2.20737e-88 -1.51054e-85 -9.90341e-83 -6.18578e-80 -3.63174e-77 -2.01802e-74 -1.06848e-71 -5.36382e-69 -2.52156e-66 -1.12274e-63 -4.7426e-61 -1.88983e-58 -7.01749e-56 -2.43332e-53 -7.96765e-51 -2.45697e-48 -7.07671e-46 -1.86508e-43 -4.6072e-41 -1.07027e-38 -2.32717e-36 -4.64875e-34 -8.6748e-32 -1.518e-29 -2.49871e-27 -3.87941e-25 -5.694e-23 -7.98491e-21 -1.08086e-18 -1.4196e-16 -1.75556e-14 3.13116e-40 -2.96581e-42 1.87709e-44 -1.60627e-46 7.21256e-49 -4.30508e-51 1.42432e-53 -3.76795e-56 7.99235e-59 -2.07181e-61 4.15728e-64 -7.60864e-67 9.75824e-70 -1.88874e-72 3.19968e-75 -5.01837e-78 5.44501e-81 -8.95433e-84 1.31717e-86 -1.84481e-89 1.89495e-92 -2.74971e-95 3.65954e-98 -4.71714e-101 4.83024e-104 -6.41362e-107 7.94034e-110 -9.6527e-113 1.04254e-115 -1.28145e-118 1.49929e-121 -1.7538e-124 2.01797e-127 -2.35841e-130 -1.22709e-129 -1.59378e-126 -1.95783e-123 -2.30924e-120 -2.63994e-117 -2.9016e-114 -3.0138e-111 -2.99543e-108 -2.87543e-105 -2.6477e-102 -2.30133e-99 -1.90641e-96 -1.51746e-93 -1.15283e-90 -8.2563e-88 -5.60196e-85 -3.63805e-82 -2.24944e-79 -1.3076e-76 -7.15957e-74 -3.73114e-71 -1.84295e-68 -8.53688e-66 -3.69751e-63 -1.51402e-60 -5.84587e-58 -2.11116e-55 -7.1016e-53 -2.24353e-50 -6.64393e-48 -1.8321e-45 -4.69416e-43 -1.12352e-40 -2.51165e-38 -5.22652e-36 -1.0109e-33 -1.8272e-31 -3.09832e-29 -4.93763e-27 -7.43226e-25 -1.06063e-22 -1.44949e-20 -1.90982e-18 -2.43014e-16 -2.98274e-14 7.69139e-38 -8.26221e-40 4.81692e-42 -3.91195e-44 2.06053e-46 -1.17699e-48 3.35255e-51 -8.18619e-54 2.26642e-56 -5.36768e-59 9.23093e-62 -1.50354e-64 2.462e-67 -4.16791e-70 6.33607e-73 -9.09042e-76 1.22105e-78 -1.81709e-81 2.40855e-84 -3.11952e-87 3.84061e-90 -5.07157e-93 6.09235e-96 -7.29326e-99 8.71438e-102 -1.05506e-104 1.17882e-107 -1.33971e-110 1.59601e-113 -1.81042e-116 1.93029e-119 -2.14489e-122 2.48294e-125 -2.74872e-128 -2.83945e-130 -3.80216e-127 -4.3213e-124 -4.66673e-121 -4.81076e-118 -4.69126e-115 -4.24923e-112 -3.57644e-109 -2.77935e-106 -1.93769e-103 -1.13381e-100 -4.65306e-98 4.84399e-97 2.74825e-92 3.99033e-89 4.09457e-86 3.58306e-83 2.7955e-80 1.96734e-77 1.27247e-74 7.66744e-72 4.30387e-69 2.23511e-66 1.07932e-63 4.88261e-61 2.06446e-58 8.09732e-56 2.94959e-53 1.00319e-50 3.17957e-48 9.33292e-46 2.53527e-43 6.39952e-41 1.50001e-38 3.25281e-36 6.52106e-34 1.21322e-31 2.1003e-29 3.38652e-27 5.10816e-25 7.22311e-23 9.64956e-21 1.22099e-18 1.45559e-16 1.58209e-14 2.49259e-35 -2.06048e-37 1.14734e-39 -9.96773e-42 5.39848e-44 -2.92375e-46 7.14697e-49 -1.72405e-51 5.8608e-54 -1.28716e-56 1.85313e-59 -3.02182e-62 6.06e-65 -8.09287e-68 1.18024e-70 -1.73198e-73 2.43923e-76 -3.3021e-79 4.35939e-82 -5.6802e-85 7.19545e-88 -8.8718e-91 1.07687e-93 -1.30146e-96 1.54858e-99 -1.81066e-102 2.09843e-105 -2.43549e-108 2.80842e-111 -3.20569e-114 3.64502e-117 -4.16798e-120 4.769e-123 -5.43346e-126 1.12854e-128 6.55787e-126 8.02112e-123 9.41866e-120 1.0672e-116 1.16083e-113 1.19805e-110 1.18306e-107 1.1235e-104 1.02153e-101 8.7956e-99 7.2178e-96 5.67345e-93 4.25525e-90 3.01483e-87 2.02677e-84 1.29903e-81 7.91131e-79 4.53701e-76 2.45653e-73 1.26118e-70 6.12183e-68 2.78738e-65 1.19162e-62 4.80044e-60 1.81795e-57 6.42824e-55 2.12159e-52 6.55363e-50 1.89141e-47 5.07293e-45 1.26306e-42 2.92559e-40 6.30035e-38 1.25785e-35 2.32727e-33 4.0016e-31 6.41204e-29 9.59379e-27 1.34721e-24 1.78294e-22 2.24296e-20 2.69748e-18 3.10032e-16 3.33548e-14 9.11319e-33 -4.54119e-35 4.56654e-37 -3.99462e-39 1.29888e-41 -6.42488e-44 2.11494e-46 -5.711e-49 1.30669e-51 -2.67144e-54 5.0544e-57 -8.98958e-60 1.48437e-62 -2.30863e-65 3.43431e-68 -4.94691e-71 6.83146e-74 -9.07585e-77 1.17328e-79 -1.49091e-82 1.84861e-85 -2.2349e-88 2.65597e-91 -3.13159e-94 3.64478e-97 -4.17485e-100 4.73456e-103 -5.361e-106 6.0417e-109 -6.74846e-112 7.50331e-115 -8.36856e-118 9.34868e-121 -1.04105e-123 1.15915e-126 1.72628e-127 1.93445e-124 2.03264e-121 2.01505e-118 1.86209e-115 1.56811e-112 1.18003e-109 7.5026e-107 3.27905e-104 -3.78098e-102 -3.08581e-98 -4.72665e-95 -5.35965e-92 -5.15499e-89 -4.43172e-86 -3.49235e-83 -2.54405e-80 -1.71238e-77 -1.07266e-74 -6.29249e-72 -3.45458e-69 -1.7659e-66 -8.42438e-64 -3.76387e-61 -1.57209e-58 -6.10593e-56 -2.20602e-53 -7.43022e-51 -2.3289e-48 -6.7617e-46 -1.81721e-43 -4.52695e-41 -1.04411e-38 -2.22298e-36 -4.36607e-34 -7.9218e-32 -1.32905e-29 -2.06066e-27 -2.95575e-25 -3.90855e-23 -4.72818e-21 -5.03517e-19 -3.9199e-17 1.7961e-15 2.95466e-30 -1.70455e-32 1.68393e-34 -1.428e-36 5.59093e-39 -2.27896e-41 6.89841e-44 -1.76598e-46 3.92494e-49 -7.83894e-52 1.44559e-54 -2.50091e-57 4.04337e-60 -6.1618e-63 8.97105e-66 -1.2608e-68 1.70419e-71 -2.21961e-74 2.80983e-77 -3.48652e-80 4.2298e-83 -5.01066e-86 5.83053e-89 -6.7144e-92 7.64213e-95 -8.57128e-98 9.51359e-101 -1.05201e-103 1.15863e-106 -1.26614e-109 1.37695e-112 -1.49923e-115 1.63538e-118 -1.77994e-121 1.93666e-124 9.19171e-126 1.13763e-122 1.32025e-119 1.47395e-116 1.57756e-113 1.60674e-110 1.56479e-107 1.46117e-104 1.30426e-101 1.10508e-98 8.9192e-96 6.8753e-93 5.04781e-90 3.50692e-87 2.31079e-84 1.44749e-81 8.59807e-79 4.8142e-76 2.54373e-73 1.27078e-70 5.98853e-68 2.64781e-65 1.0985e-62 4.282e-60 1.565e-57 5.33746e-55 1.69739e-52 5.0371e-50 1.39238e-47 3.57152e-45 8.49143e-43 1.87221e-40 3.82464e-38 7.22481e-36 1.26173e-33 2.04012e-31 3.05975e-29 4.26239e-27 5.53189e-25 6.6956e-23 7.55583e-21 7.84658e-19 7.09574e-17 3.94873e-15 8.36412e-28 -5.59379e-30 5.53112e-32 -4.44289e-34 1.92176e-36 -6.78389e-39 1.93062e-41 -4.74338e-44 1.02626e-46 -2.00407e-49 3.61035e-52 -6.08861e-55 9.62995e-58 -1.43791e-60 2.04901e-63 -2.81238e-66 3.71985e-69 -4.747e-72 5.88367e-75 -7.13419e-78 8.46741e-81 -9.82416e-84 1.11915e-86 -1.25955e-89 1.40188e-92 -1.53905e-95 1.67166e-98 -1.80619e-101 1.94406e-104 -2.07793e-107 2.20999e-110 -2.3501e-113 2.50338e-116 -2.66252e-119 2.83066e-122 -4.45157e-125 -1.75396e-122 -2.06381e-119 -2.33486e-116 -2.53228e-113 -2.61741e-110 -2.58787e-107 -2.4523e-104 -2.2213e-101 -1.9125e-98 -1.56935e-95 -1.22957e-92 -9.17533e-90 -6.48691e-87 -4.35242e-84 -2.77571e-81 -1.67863e-78 -9.57932e-76 -5.16214e-73 -2.62995e-70 -1.26391e-67 -5.7039e-65 -2.41682e-62 -9.62104e-60 -3.59063e-57 -1.2511e-54 -4.06629e-52 -1.23292e-49 -3.48049e-47 -9.11594e-45 -2.2124e-42 -4.9748e-40 -1.03515e-37 -1.98928e-35 -3.52971e-33 -5.79e-31 -8.79832e-29 -1.24166e-26 -1.63643e-24 -2.02715e-22 -2.38573e-20 -2.69929e-18 -2.97543e-16 -3.20929e-14 2.01423e-25 -1.57001e-27 1.5833e-29 -1.15697e-31 4.99825e-34 -1.65066e-36 4.53082e-39 -1.07986e-41 2.28084e-44 -4.35731e-47 7.67202e-50 -1.26256e-52 1.95297e-55 -2.85558e-58 3.98217e-61 -5.34119e-64 6.91173e-67 -8.63815e-70 1.04813e-72 -1.24254e-75 1.44266e-78 -1.63883e-81 1.82747e-84 -2.01091e-87 2.18865e-90 -2.35139e-93 2.49902e-96 -2.63924e-99 2.77636e-102 -2.90203e-105 3.01818e-108 -3.13559e-111 3.26209e-114 -3.38994e-117 3.52138e-120 -3.72335e-123 -6.55418e-122 -7.61355e-119 -8.49399e-116 -9.07902e-113 -9.25476e-110 -9.01973e-107 -8.41612e-104 -7.50114e-101 -6.35779e-98 -5.1333e-95 -3.95286e-92 -2.89676e-89 -2.01166e-86 -1.32507e-83 -8.28629e-81 -4.90912e-78 -2.74423e-75 -1.44767e-72 -7.21075e-70 -3.38415e-67 -1.49082e-64 -6.161e-62 -2.38861e-59 -8.6696e-57 -2.93534e-54 -9.25964e-52 -2.72021e-49 -7.42686e-47 -1.87867e-44 -4.39627e-42 -9.51141e-40 -1.90002e-37 -3.49841e-35 -5.93553e-33 -9.2901e-31 -1.3444e-28 -1.80488e-26 -2.26303e-24 -2.6744e-22 -3.02347e-20 -3.33628e-18 -3.69695e-16 -4.07424e-14 3.96801e-23 -3.63742e-25 3.84639e-27 -2.46871e-29 1.01848e-31 -3.25711e-34 8.68844e-37 -2.01391e-39 4.15185e-42 -7.75417e-45 1.33411e-47 -2.14339e-50 3.24148e-53 -4.63872e-56 6.32932e-59 -8.2989e-62 1.05051e-64 -1.28535e-67 1.52658e-70 -1.76993e-73 2.01022e-76 -2.23527e-79 2.43965e-82 -2.62548e-85 2.79446e-88 -2.93752e-91 3.05452e-94 -3.15396e-97 3.24295e-100 -3.31459e-103 3.37079e-106 -3.42199e-109 3.47733e-112 -3.53063e-115 3.58332e-118 -3.64672e-121 -1.09793e-121 -1.26749e-118 -1.3994e-115 -1.47951e-112 -1.4924e-109 -1.4387e-106 -1.32662e-103 -1.16775e-100 -9.77755e-98 -7.79509e-95 -5.92127e-92 -4.27734e-89 -2.92815e-86 -1.90029e-83 -1.16957e-80 -6.8135e-78 -3.74448e-75 -1.94068e-72 -9.48557e-70 -4.36379e-67 -1.88336e-64 -7.61844e-62 -2.88713e-59 -1.02291e-56 -3.37756e-54 -1.03779e-51 -2.96451e-49 -7.85658e-47 -1.92618e-44 -4.36105e-42 -9.10884e-40 -1.75251e-37 -3.10047e-35 -5.0408e-33 -7.53563e-31 -1.03739e-28 -1.31827e-26 -1.55338e-24 -1.70659e-22 -1.76007e-20 -1.71062e-18 -1.55201e-16 -1.19781e-14 5.99566e-21 -6.57515e-23 7.0651e-25 -4.03739e-27 1.59523e-29 -4.94634e-32 1.28278e-34 -2.89294e-37 5.8175e-40 -1.06133e-42 1.78369e-45 -2.7981e-48 4.1358e-51 -5.78984e-54 7.72804e-57 -9.9074e-60 1.22666e-62 -1.46894e-65 1.7075e-68 -1.93653e-71 2.15151e-74 -2.34141e-77 2.50107e-80 -2.63288e-83 2.74067e-86 -2.81862e-89 2.8675e-92 -2.89538e-95 2.91024e-98 -2.90851e-101 2.89222e-104 -2.86968e-107 2.84877e-110 -2.82609e-113 2.80248e-116 -2.78468e-119 8.71938e-122 6.92368e-119 7.74422e-116 8.29635e-113 8.48787e-110 8.3023e-107 7.76796e-104 6.93995e-101 5.90323e-98 4.78366e-95 3.69409e-92 2.71376e-89 1.89108e-86 1.25009e-83 7.83961e-81 4.65574e-78 2.61092e-75 1.38195e-72 6.90183e-70 3.24636e-67 1.43405e-64 5.94315e-62 2.30918e-59 8.39497e-57 2.84755e-54 8.99822e-52 2.64599e-49 7.22544e-47 1.82738e-44 4.27282e-42 9.2254e-40 1.83624e-37 3.36337e-35 5.66461e-33 8.77403e-31 1.25118e-28 1.64579e-26 2.00505e-24 2.27412e-22 2.41775e-20 2.42011e-18 2.25887e-16 1.80597e-14 6.14548e-19 -8.38268e-21 8.40385e-23 -4.52247e-25 1.723e-27 -5.17894e-30 1.30449e-32 -2.8607e-35 5.60572e-38 -9.98063e-41 1.63764e-43 -2.50819e-46 3.6222e-49 -4.9585e-52 6.47307e-55 -8.11458e-58 9.82606e-61 -1.15144e-63 1.30986e-66 -1.4534e-69 1.57967e-72 -1.68236e-75 1.75882e-78 -1.81149e-81 1.84443e-84 -1.85589e-87 1.84736e-90 -1.82448e-93 1.79304e-96 -1.75237e-99 1.7041e-102 -1.65295e-105 1.60345e-108 -1.55444e-111 1.50635e-114 -1.4622e-117 1.43066e-120 6.47408e-120 7.26532e-117 7.80518e-114 8.00958e-111 7.85654e-108 7.36751e-105 6.59392e-102 5.61866e-99 4.5591e-96 3.52258e-93 2.58714e-90 1.8016e-87 1.18918e-84 7.43757e-82 4.39936e-79 2.45455e-76 1.29062e-73 6.39033e-71 2.97315e-68 1.29607e-65 5.28534e-63 2.01337e-60 7.14551e-58 2.35468e-55 7.18616e-53 2.02586e-50 5.25608e-48 1.24926e-45 2.70757e-43 5.32318e-41 9.42716e-39 1.48978e-36 2.0748e-34 2.50011e-32 2.5298e-30 2.04243e-28 1.23208e-26 7.65824e-25 1.86261e-22 6.48346e-20 1.82855e-17 4.56736e-15 9.84978e-17 -5.94596e-19 5.36155e-21 -2.7087e-23 9.88109e-26 -2.86674e-28 6.99617e-31 -1.48991e-33 2.84161e-36 -4.93267e-39 7.89776e-42 -1.18085e-44 1.66584e-47 -2.22939e-50 2.84635e-53 -3.48982e-56 4.13366e-59 -4.7404e-62 5.27853e-65 -5.73241e-68 6.09724e-71 -6.35668e-74 6.50635e-77 -6.55968e-80 6.53625e-83 -6.43746e-86 6.27269e-89 -6.06305e-92 5.8297e-95 -5.57474e-98 5.30473e-101 -5.03382e-104 4.77522e-107 -4.52707e-110 4.29023e-113 -4.07163e-116 3.89546e-119 2.00297e-118 2.22983e-115 2.37629e-112 2.41984e-109 2.35534e-106 2.1912e-103 1.94557e-100 1.64539e-97 1.32526e-94 1.01635e-91 7.41043e-89 5.12609e-86 3.36245e-83 2.09044e-80 1.22977e-77 6.83061e-75 3.57883e-72 1.7673e-69 8.21088e-67 3.58063e-64 1.4636e-61 5.60077e-59 2.0024e-56 6.67172e-54 2.0678e-51 5.95173e-49 1.58731e-46 3.9123e-44 8.89269e-42 1.86068e-39 3.57661e-37 6.30337e-35 1.0173e-32 1.50308e-30 2.03476e-28 2.52941e-26 2.90156e-24 3.09524e-22 3.10708e-20 2.97979e-18 2.77449e-16 2.48603e-14 4.30843e-16 -3.03293e-18 2.45147e-20 -1.16824e-22 4.08555e-25 -1.14677e-27 2.7231e-30 -5.6643e-33 1.05794e-35 -1.80286e-38 2.83996e-41 -4.18424e-44 5.82249e-47 -7.6964e-50 9.71799e-53 -1.17943e-55 1.3835e-58 -1.57256e-61 1.73719e-64 -1.87269e-67 1.9776e-70 -2.04819e-73 2.08408e-76 -2.08968e-79 2.0709e-82 -2.02942e-85 1.96872e-88 -1.8951e-91 1.81459e-94 -1.72861e-97 1.6394e-100 -1.55089e-103 1.46657e-106 -1.38633e-109 1.31055e-112 -1.24097e-115 1.18821e-118 1.02786e-117 1.12986e-114 1.18858e-111 1.19471e-108 1.14743e-105 1.05271e-102 9.21381e-100 7.67996e-97 6.09413e-94 4.60162e-91 3.30171e-88 2.24693e-85 1.44928e-82 8.85381e-80 5.1149e-77 2.7887e-74 1.43334e-71 6.93798e-69 3.15707e-66 1.34755e-63 5.38713e-61 2.01418e-58 7.02871e-56 2.28365e-53 6.89443e-51 1.93049e-48 5.00179e-46 1.196e-43 2.63324e-41 5.32727e-39 9.88157e-37 1.67703e-34 2.60035e-32 3.68188e-30 4.76341e-28 5.64333e-26 6.15284e-24 6.22469e-22 5.92023e-20 5.39101e-18 4.81358e-16 3.90159e-14 1.04846e-15 -8.51154e-18 6.246e-20 -2.80917e-22 9.40563e-25 -2.54968e-27 5.88093e-30 -1.19307e-32 2.17954e-35 -3.6424e-38 5.63948e-41 -8.1805e-44 1.12206e-46 -1.46394e-49 1.82682e-52 -2.19322e-55 2.54642e-58 -2.86721e-61 3.14036e-64 -3.35848e-67 3.51949e-70 -3.61934e-73 3.65916e-76 -3.64706e-79 3.59317e-82 -3.50217e-85 3.3809e-88 -3.23973e-91 3.08824e-94 -2.92978e-97 2.7684e-100 -2.61008e-103 2.4599e-106 -2.31817e-109 2.18561e-112 -2.06459e-115 1.97332e-118 1.8415e-117 2.01494e-114 2.10944e-111 2.11013e-108 2.01641e-105 1.83998e-102 1.60129e-99 1.32701e-96 1.04664e-93 7.85202e-91 5.59542e-88 3.78109e-85 2.42081e-82 1.46722e-79 8.40515e-77 4.54254e-74 2.31323e-71 1.10865e-68 4.99164e-66 2.10694e-63 8.32331e-61 3.07242e-58 1.05751e-55 3.38576e-53 1.00614e-50 2.76936e-48 7.04278e-46 1.65028e-43 3.55395e-41 7.017e-39 1.267e-36 2.08687e-34 3.12929e-32 4.26653e-30 5.28733e-28 5.96168e-26 6.13575e-24 5.79741e-22 5.07458e-20 4.16385e-18 3.25837e-16 2.33709e-14 9.61117e-16 -8.68755e-18 5.95678e-20 -2.57928e-22 8.41412e-25 -2.23859e-27 5.09162e-30 -1.02183e-32 1.85053e-35 -3.07137e-38 4.72989e-41 -6.83147e-44 9.3358e-47 -1.21448e-49 1.51224e-52 -1.81246e-55 2.10122e-58 -2.36342e-61 2.58706e-64 -2.76588e-67 2.8977e-70 -2.97993e-73 3.01381e-76 -3.00548e-79 2.96261e-82 -2.88965e-85 2.79241e-88 -2.6789e-91 2.55643e-94 -2.4283e-97 2.29801e-100 -2.17016e-103 2.04853e-106 -1.93381e-109 1.8268e-112 -1.72926e-115 1.67265e-118 3.39675e-117 3.68372e-114 3.82126e-111 3.78694e-108 3.58386e-105 3.23722e-102 2.78764e-99 2.28524e-96 1.78221e-93 1.32131e-90 9.3003e-88 6.20502e-85 3.92028e-82 2.34308e-79 1.32278e-76 7.04108e-74 3.52904e-71 1.66326e-68 7.35819e-66 3.04918e-63 1.18149e-60 4.27313e-58 1.43943e-55 4.50511e-53 1.30709e-50 3.50759e-48 8.68352e-46 1.97767e-43 4.13254e-41 7.9026e-39 1.37934e-36 2.19195e-34 3.16513e-32 4.14811e-30 4.93408e-28 5.33567e-26 5.26819e-24 4.78482e-22 4.04265e-20 3.2198e-18 2.45315e-16 1.61075e-14 1.52842e-15 -1.47465e-17 9.26992e-20 -3.79755e-22 1.18969e-24 -3.06867e-27 6.81048e-30 -1.33967e-32 2.3856e-35 -3.90354e-38 5.93932e-41 -8.48912e-44 1.14941e-46 -1.48321e-49 1.83392e-52 -2.18438e-55 2.51806e-58 -2.81809e-61 3.07133e-64 -3.27084e-67 3.41429e-70 -3.49989e-73 3.52992e-76 -3.51151e-79 3.45334e-82 -3.36141e-85 3.24278e-88 -3.10634e-91 2.9601e-94 -2.80834e-97 2.65519e-100 -2.50558e-103 2.36343e-106 -2.22984e-109 2.10579e-112 -1.99305e-115 1.88045e-118 -1.43457e-117 -1.57281e-114 -1.65009e-111 -1.65449e-108 -1.58462e-105 -1.4489e-102 -1.26333e-99 -1.04905e-96 -8.29006e-94 -6.22954e-91 -4.44568e-88 -3.00862e-85 -1.92883e-82 -1.17021e-79 -6.70858e-77 -3.62791e-74 -1.84819e-71 -8.85727e-69 -3.98611e-66 -1.68123e-63 -6.63377e-61 -2.44435e-58 -8.39271e-56 -2.67879e-53 -7.93008e-51 -2.17225e-48 -5.49155e-46 -1.27763e-43 -2.72791e-41 -5.33045e-39 -9.50519e-37 -1.54234e-34 -2.27165e-32 -3.0311e-30 -3.65986e-28 -3.99905e-26 -3.96174e-24 -3.57198e-22 -2.94701e-20 -2.23114e-18 -1.53667e-16 -7.06211e-15 -1.5664e-17 1.89335e-19 -1.23528e-21 5.27423e-24 -1.71769e-26 4.59657e-29 -1.05663e-31 2.1493e-34 -3.9508e-37 6.66528e-40 -1.04487e-42 1.53759e-45 -2.1415e-48 2.84107e-51 -3.61084e-54 4.41963e-57 -5.23302e-60 6.01438e-63 -6.73175e-66 7.36228e-69 -7.89046e-72 8.30426e-75 -8.60068e-78 8.78675e-81 -8.8736e-84 8.87059e-87 -8.79094e-90 8.65242e-93 -8.47174e-96 8.25988e-99 -8.02832e-102 7.79039e-105 -7.55732e-108 7.33477e-111 -7.12837e-114 6.94557e-117 -6.0102e-120 9.05459e-118 1.00357e-114 1.06452e-111 1.0795e-108 1.04595e-105 9.67682e-103 8.53941e-100 7.17917e-97 5.74546e-94 4.37333e-91 3.16228e-88 2.16913e-85 1.40995e-82 8.67516e-80 5.04511e-77 2.76869e-74 1.4318e-71 6.96745e-69 3.1848e-66 1.36478e-63 5.47302e-61 2.05006e-58 7.15718e-56 2.32337e-53 6.99649e-51 1.94975e-48 5.0147e-46 1.18692e-43 2.57773e-41 5.12166e-39 9.28109e-37 1.52917e-34 2.28432e-32 3.08667e-30 3.767e-28 4.15127e-26 4.13904e-24 3.75252e-22 3.12252e-20 2.41954e-18 1.80835e-16 1.20607e-14 3.5316e-20 -6.00495e-22 4.84022e-24 -2.39439e-26 8.68361e-29 -2.5301e-31 6.2452e-34 -1.35112e-36 2.62272e-39 -4.64901e-42 7.62969e-45 -1.17198e-47 1.69947e-50 -2.34293e-53 3.09001e-56 -3.91991e-59 4.80453e-62 -5.71107e-65 6.60728e-68 -7.46492e-71 8.25948e-74 -8.97028e-77 9.58504e-80 -1.01004e-82 1.05174e-85 -1.08389e-88 1.10734e-91 -1.12351e-94 1.13381e-97 -1.13936e-100 1.14153e-103 -1.14192e-106 1.14198e-109 -1.14272e-112 1.14527e-115 -1.15098e-118 4.39454e-120 4.87765e-117 5.32455e-114 5.56032e-111 5.54916e-108 5.28907e-105 4.81108e-102 4.17216e-99 3.44533e-96 2.70688e-93 2.02151e-90 1.43323e-87 9.63375e-85 6.13222e-82 3.69204e-79 2.09942e-76 1.12567e-73 5.68275e-71 2.69698e-68 1.20113e-65 5.00995e-63 1.95337e-60 7.10533e-58 2.4058e-55 7.564e-53 2.20289e-50 5.92749e-48 1.46949e-45 3.34635e-43 6.97831e-41 1.32843e-38 2.30105e-36 3.61499e-34 5.13575e-32 6.58237e-30 7.60028e-28 7.90747e-26 7.43481e-24 6.36154e-22 5.02123e-20 3.75164e-18 2.91031e-16 1.86033e-14 2.44033e-23 -4.06274e-25 -6.04988e-27 6.86272e-29 -3.68094e-31 1.38287e-33 -4.11672e-36 1.03174e-38 -2.25818e-41 4.43022e-44 -7.94007e-47 1.3182e-49 -2.04872e-52 3.00746e-55 -4.20181e-58 5.62213e-61 -7.24094e-64 9.01691e-67 -1.09014e-69 1.28427e-72 -1.47876e-75 1.66869e-78 -1.85023e-81 2.0208e-84 -2.17862e-87 2.32264e-90 -2.45315e-93 2.57163e-96 -2.67992e-99 2.77993e-102 -2.87441e-105 2.96688e-108 -3.06088e-111 3.1596e-114 -3.26692e-117 3.40322e-120 1.83064e-119 2.05769e-116 2.2133e-113 2.27653e-110 2.23698e-107 2.0984e-104 1.87766e-101 1.601e-98 1.29934e-95 1.00277e-92 7.35178e-90 5.11405e-87 3.37078e-84 2.10263e-81 1.2397e-78 6.89828e-76 3.61683e-73 1.78405e-70 8.26563e-68 3.59035e-65 1.45923e-62 5.53821e-60 1.95873e-57 6.44069e-55 1.96408e-52 5.54032e-50 1.44175e-47 3.45103e-45 7.57433e-43 1.51937e-40 2.77615e-38 4.60439e-36 6.90765e-34 9.3432e-32 1.13622e-29 1.24e-27 1.21403e-25 1.06867e-23 8.50717e-22 6.19012e-20 4.17693e-18 2.72747e-16 1.5483e-14 -4.13827e-19 4.53596e-21 -2.58174e-23 1.02798e-25 -3.21504e-28 8.40248e-31 -1.9069e-33 3.85723e-36 -7.08658e-39 1.19964e-41 -1.8928e-44 2.80964e-47 -3.95369e-50 5.30765e-53 -6.83527e-56 8.48576e-59 -1.01983e-61 1.19074e-64 -1.35513e-67 1.50789e-70 -1.64498e-73 1.7634e-76 -1.86164e-79 1.93975e-82 -1.99869e-85 2.03986e-88 -2.06541e-91 2.07818e-94 -2.08108e-97 2.0766e-100 -2.06734e-103 2.05612e-106 -2.0455e-109 2.03747e-112 -2.03406e-115 2.03754e-118 1.69868e-120 2.09874e-117 2.21101e-114 2.2235e-111 2.13206e-108 1.94737e-105 1.69241e-102 1.3976e-99 1.09505e-96 8.12872e-94 5.70768e-91 3.78357e-88 2.36258e-85 1.38638e-82 7.62399e-80 3.91548e-77 1.86989e-74 8.25863e-72 3.34839e-69 1.23251e-66 4.04498e-64 1.14389e-61 2.56617e-59 3.2394e-57 -7.05215e-55 -7.08566e-52 -3.2574e-49 -1.13968e-46 -3.33994e-44 -8.47924e-42 -1.89169e-39 -3.73153e-37 -6.52184e-35 -1.00989e-32 -1.38378e-30 -1.67507e-28 -1.7886e-26 -1.68338e-24 -1.39661e-22 -1.02076e-20 -6.49511e-19 -3.45765e-17 -6.92426e-16 -1.37148e-16 1.11417e-18 -5.33617e-21 1.88401e-23 -5.3745e-26 1.30292e-28 -2.77282e-31 5.30004e-34 -9.25444e-37 1.49546e-39 -2.25992e-42 3.22166e-45 -4.36382e-48 5.6498e-51 -7.02799e-54 8.43882e-57 -9.82074e-60 1.11148e-62 -1.22718e-65 1.32573e-68 -1.40505e-71 1.46415e-74 -1.50332e-77 1.52407e-80 -1.52851e-83 1.51894e-86 -1.49791e-89 1.46824e-92 -1.43257e-95 1.39306e-98 -1.35169e-101 1.31037e-104 -1.2707e-107 1.23382e-110 -1.20072e-113 1.17242e-116 2.10207e-119 3.60486e-116 3.82262e-113 3.87408e-110 3.74888e-107 3.46103e-104 3.04581e-101 2.55235e-98 2.03438e-95 1.54075e-92 1.10756e-89 7.54726e-87 4.86874e-84 2.96947e-81 1.70996e-78 9.28259e-76 4.74257e-73 2.27669e-70 1.02516e-67 4.32168e-65 1.70217e-62 6.25085e-60 2.13557e-57 6.77171e-55 1.9879e-52 5.38845e-50 1.34498e-47 3.08235e-45 6.46592e-43 1.23764e-40 2.15471e-38 3.40117e-36 4.85257e-34 6.24069e-32 7.21906e-30 7.50243e-28 7.00627e-26 5.89159e-24 4.4793e-22 3.09445e-20 1.93664e-18 1.10843e-16 3.45055e-15 -9.00473e-15 6.12422e-17 -2.69391e-19 9.01012e-22 -2.47089e-24 5.80553e-27 -1.20338e-29 2.24761e-32 -3.84347e-35 6.09226e-38 -9.04125e-41 1.26681e-43 -1.68762e-46 2.14999e-49 -2.6326e-52 3.11237e-55 -3.56683e-58 3.97578e-61 -4.32355e-64 4.60038e-67 -4.80193e-70 4.92802e-73 -4.98267e-76 4.97365e-79 -4.91054e-82 4.80305e-85 -4.6612e-88 4.49518e-91 -4.31415e-94 4.12548e-97 -3.93545e-100 3.74972e-103 -3.57272e-106 3.40741e-109 -3.25609e-112 3.12078e-115 -4.11616e-118 -1.24262e-115 -1.3273e-112 -1.35536e-109 -1.3219e-106 -1.2304e-103 -1.09199e-100 -9.23155e-98 -7.42577e-95 -5.67767e-92 -4.12181e-89 -2.83766e-86 -1.85017e-83 -1.14098e-80 -6.64602e-78 -3.65093e-75 -1.88841e-72 -9.18159e-70 -4.18903e-67 -1.79e-64 -7.14902e-62 -2.66298e-59 -9.23082e-57 -2.97027e-54 -8.84885e-52 -2.43389e-49 -6.16235e-47 -1.4316e-44 -3.04104e-42 -5.88502e-40 -1.03349e-37 -1.64027e-35 -2.34279e-33 -2.99877e-31 -3.42658e-29 -3.4844e-27 -3.14772e-25 -2.5278e-23 -1.8119e-21 -1.16893e-19 -6.83771e-18 -3.82439e-16 -1.80042e-14 -6.21019e-15 4.09617e-17 -1.79417e-19 6.0307e-22 -1.66779e-24 3.95629e-27 -8.28123e-30 1.56152e-32 -2.69463e-35 4.30828e-38 -6.44628e-41 9.10236e-44 -1.22149e-46 1.56697e-49 -1.93143e-52 2.29783e-55 -2.64919e-58 2.96994e-61 -3.24763e-64 3.474e-67 -3.64478e-70 3.75902e-73 -3.81901e-76 3.82989e-79 -3.7984e-82 3.73163e-85 -3.63707e-88 3.52233e-91 -3.39442e-94 3.2591e-97 -3.1214e-100 2.98579e-103 -2.85586e-106 2.73415e-109 -2.62267e-112 2.52319e-115 -1.77259e-118 7.52749e-116 8.16158e-113 8.46293e-110 8.38511e-107 7.93197e-104 7.1575e-101 6.15487e-98 5.03848e-95 3.92244e-92 2.90082e-89 2.03549e-86 1.35347e-83 8.51713e-81 5.06547e-78 2.84301e-75 1.50342e-72 7.47855e-70 3.49333e-67 1.52945e-64 6.26363e-62 2.39444e-59 8.52508e-57 2.82004e-54 8.64449e-52 2.44875e-49 6.39108e-47 1.53188e-44 3.36027e-42 6.72023e-40 1.2204e-37 2.00374e-35 2.96082e-33 3.91892e-31 4.62476e-29 4.8458e-27 4.49437e-25 3.68711e-23 2.68652e-21 1.77033e-19 1.0491e-17 6.52392e-16 2.64704e-14 -6.50361e-15 4.13927e-17 -1.80591e-19 6.08341e-22 -1.68816e-24 4.01933e-27 -8.44411e-30 1.59798e-32 -2.76726e-35 4.43972e-38 -6.66567e-41 9.44382e-44 -1.2715e-46 1.63645e-49 -2.02363e-52 2.41526e-55 -2.79341e-58 3.14152e-61 -3.4461e-64 3.69788e-67 -3.89175e-70 4.0262e-73 -4.10322e-76 4.12776e-79 -4.10653e-82 4.04692e-85 -3.95676e-88 3.84403e-91 -3.71613e-94 3.57933e-97 -3.43915e-100 3.30043e-103 -3.16713e-106 3.0422e-109 -2.928e-112 2.82658e-115 -1.46021e-118 1.43654e-115 1.54342e-112 1.5854e-109 1.55561e-106 1.45678e-103 1.30086e-100 1.10656e-97 8.95702e-95 6.89182e-92 5.03502e-89 3.48842e-86 2.28902e-83 1.42063e-80 8.32749e-78 4.60342e-75 2.3959e-72 1.17204e-69 5.37921e-67 2.3118e-64 9.28387e-62 3.47614e-59 1.21069e-56 3.91223e-54 1.1697e-51 3.22625e-49 8.1829e-47 1.90191e-44 4.03552e-42 7.78474e-40 1.35919e-37 2.13744e-35 3.01173e-33 3.78136e-31 4.20683e-29 4.12499e-27 3.54976e-25 2.67684e-23 1.77927e-21 1.07444e-19 5.40132e-18 2.8417e-16 1.23302e-14 -6.51756e-15 4.14286e-17 -1.80483e-19 6.07017e-22 -1.68186e-24 3.99862e-27 -8.39013e-30 1.58606e-32 -2.74412e-35 4.39937e-38 -6.60141e-41 9.34899e-44 -1.25839e-46 1.6194e-49 -2.0026e-52 2.39055e-55 -2.76559e-58 3.11148e-61 -3.41497e-64 3.66685e-67 -3.86198e-70 3.99884e-73 -4.07932e-76 4.10815e-79 -4.09181e-82 4.03756e-85 -3.95308e-88 3.84616e-91 -3.72404e-94 3.59296e-97 -3.45841e-100 3.32517e-103 -3.1972e-106 3.07749e-109 -2.96849e-112 2.87231e-115 3.28397e-118 6.73463e-115 7.14213e-112 7.23934e-109 7.00717e-106 6.47112e-103 5.69653e-100 4.77523e-97 3.80775e-94 2.8851e-91 2.0748e-88 1.41441e-85 9.12816e-83 5.56948e-80 3.20808e-77 1.74182e-74 8.89963e-72 4.27174e-69 1.92268e-66 8.09893e-64 3.18602e-61 1.1679e-58 3.97979e-56 1.25747e-53 3.67376e-51 9.89476e-49 2.44897e-46 5.55039e-44 1.14754e-41 2.15536e-39 3.66117e-37 5.5969e-35 7.65983e-33 9.33325e-31 1.00683e-28 9.5657e-27 7.97296e-25 5.82823e-23 3.77314e-21 2.2515e-19 1.0663e-17 5.44519e-16 1.98923e-14 -1.12582e-14 6.97863e-17 -2.98002e-19 9.86009e-22 -2.69517e-24 6.33597e-27 -1.31701e-29 2.47013e-32 -4.24552e-35 6.76865e-38 -1.01091e-40 1.42602e-43 -1.91305e-46 2.45494e-49 -3.02869e-52 3.60826e-55 -4.16742e-58 4.68221e-61 -5.13319e-64 5.50685e-67 -5.79575e-70 5.99792e-73 -6.11632e-76 6.15805e-79 -6.1328e-82 6.05143e-85 -5.92542e-88 5.76629e-91 -5.58476e-94 5.39017e-97 -5.19066e-100 4.99332e-103 -4.804e-106 4.62722e-109 -4.46665e-112 4.32541e-115 -2.30685e-118 2.12997e-115 2.28567e-112 2.34503e-109 2.29827e-106 2.14977e-103 1.91744e-100 1.62912e-97 1.31712e-94 1.01221e-91 7.38563e-89 5.11021e-86 3.34851e-83 2.07507e-80 1.21438e-77 6.70103e-75 3.48071e-72 1.69893e-69 7.77779e-67 3.33302e-64 1.33409e-61 4.97623e-59 1.72549e-56 5.54704e-54 1.64849e-51 4.51464e-49 1.13551e-46 2.61311e-44 5.47947e-42 1.04223e-39 1.78924e-37 2.75713e-35 3.79061e-33 4.61952e-31 4.95662e-29 4.6523e-27 3.80173e-25 2.70594e-23 1.70159e-21 9.89793e-20 4.26278e-18 2.16653e-16 5.78658e-15 7.13257e-17 -6.08931e-19 2.97867e-21 -1.07029e-23 3.10563e-26 -7.65991e-29 1.65914e-31 -3.22864e-34 5.74064e-37 -9.44875e-40 1.45478e-42 -2.11323e-45 2.9169e-48 -3.84894e-51 4.88051e-54 -5.97405e-57 7.08735e-60 -8.17779e-63 9.20655e-66 -1.01417e-68 1.09599e-71 -1.16464e-74 1.21957e-77 -1.26102e-80 1.28986e-83 -1.3074e-86 1.31524e-89 -1.31522e-92 1.3092e-95 -1.29896e-98 1.28622e-101 -1.27261e-104 1.25962e-107 -1.24857e-110 1.24072e-113 -1.23711e-116 1.96613e-117 2.15758e-114 2.27889e-111 2.30021e-108 2.21674e-105 2.03787e-102 1.78541e-99 1.48922e-96 1.18131e-93 8.90171e-91 6.36465e-88 4.3124e-85 2.76517e-82 1.67563e-79 9.58164e-77 5.16202e-74 2.61566e-71 1.24436e-68 5.54745e-66 2.31276e-63 8.99724e-61 3.25846e-58 1.09586e-55 3.41312e-53 9.81595e-51 2.59846e-48 6.30964e-46 1.40009e-43 2.82732e-41 5.17234e-39 8.52953e-37 1.26097e-34 1.66123e-32 1.93781e-30 1.98828e-28 1.78333e-26 1.39213e-24 9.46837e-23 5.69641e-21 3.17883e-19 1.24979e-17 5.83557e-16 1.84812e-14 -2.47948e-19 2.64093e-21 -1.44619e-23 5.60765e-26 -1.72481e-28 4.46403e-31 -1.00824e-33 2.03733e-36 -3.75056e-39 6.37818e-42 -1.01308e-44 1.51639e-47 -2.15485e-50 2.92533e-53 -3.81429e-56 4.79911e-59 -5.85042e-62 6.93517e-65 -8.01998e-68 9.07409e-71 -1.00713e-73 1.09916e-76 -1.18216e-79 1.25551e-82 -1.31918e-85 1.37365e-88 -1.41986e-91 1.45908e-94 -1.4928e-97 1.52262e-100 -1.55029e-103 1.57759e-106 -1.60639e-109 1.63855e-112 -1.67604e-115 1.71358e-118 -8.64407e-118 -9.63929e-115 -1.02845e-111 -1.04878e-108 -1.02133e-105 -9.48921e-103 -8.4037e-100 -7.08669e-97 -5.68435e-94 -4.33209e-91 -3.13316e-88 -2.14777e-85 -1.39357e-82 -8.54675e-80 -4.94716e-77 -2.69838e-74 -1.38454e-71 -6.67097e-69 -3.01246e-66 -1.27237e-63 -5.01548e-61 -1.84077e-58 -6.27455e-56 -1.98096e-53 -5.77567e-51 -1.55016e-48 -3.81679e-46 -8.58861e-44 -1.75895e-41 -3.2638e-39 -5.45982e-37 -8.18959e-35 -1.09504e-32 -1.29717e-30 -1.35297e-28 -1.23594e-26 -9.86324e-25 -6.90867e-23 -4.34006e-21 -2.57971e-19 -1.06069e-17 -5.4639e-16 -1.52451e-14 1.55286e-19 -1.70502e-21 9.57269e-24 -3.79486e-26 1.19023e-28 -3.13394e-31 7.18688e-34 -1.47206e-36 2.7431e-39 -4.71645e-42 7.56654e-45 -1.14297e-47 1.63792e-50 -2.24097e-53 2.94327e-56 -3.72849e-59 4.57449e-62 -5.4557e-65 6.34568e-68 -7.21954e-71 8.0557e-74 -8.83709e-77 9.55199e-80 -1.01942e-82 1.07624e-85 -1.12597e-88 1.16928e-91 -1.20716e-94 1.24077e-97 -1.27144e-100 1.30061e-103 -1.32978e-106 1.36057e-109 -1.39461e-112 1.43369e-115 -1.46715e-118 1.48325e-117 1.67291e-114 1.80559e-111 1.86317e-108 1.83651e-105 1.72766e-102 1.54966e-99 1.32401e-96 1.07638e-93 8.31712e-91 6.10115e-88 4.24364e-85 2.79499e-82 1.74074e-79 1.02368e-76 5.67521e-74 2.96119e-71 1.45159e-68 6.67264e-66 2.87042e-63 1.15304e-60 4.31506e-58 1.50067e-55 4.83688e-53 1.44064e-50 3.95255e-48 9.95465e-46 2.29273e-43 4.80887e-41 9.14317e-39 1.56784e-36 2.41109e-34 3.30479e-32 4.01058e-30 4.28004e-28 3.99185e-26 3.24118e-24 2.29525e-22 1.43629e-20 8.17715e-19 2.84941e-17 1.23216e-15 3.09224e-14 3.89745e-17 -3.31628e-19 1.6642e-21 -6.14194e-24 1.82637e-26 -4.60451e-29 1.01712e-31 -2.01466e-34 3.6403e-37 -6.08091e-40 9.4913e-43 -1.39637e-45 1.95055e-48 -2.60297e-51 3.33615e-54 -4.12565e-57 4.94281e-60 -5.75767e-63 6.54196e-66 -7.2714e-69 7.92718e-72 -8.49657e-75 8.97316e-78 -9.35633e-81 9.65025e-84 -9.86273e-87 1.00043e-89 -1.00872e-92 1.01246e-95 -1.01296e-98 1.01152e-101 -1.00938e-104 1.00773e-107 -1.00769e-110 1.01035e-113 -1.01592e-116 1.00411e-116 1.11409e-113 1.18351e-110 1.2015e-107 1.16464e-104 1.0769e-101 9.48993e-99 7.96161e-96 6.35214e-93 4.81422e-90 3.46178e-87 2.35876e-84 1.52087e-81 9.26621e-79 5.3267e-76 2.88441e-73 1.46877e-70 7.02019e-68 3.1434e-65 1.31582e-62 5.13766e-60 1.86664e-57 6.29443e-55 1.96443e-52 5.65688e-50 1.49811e-47 3.63554e-45 8.05247e-43 1.62078e-40 2.95021e-38 4.83044e-36 7.07192e-34 9.19719e-32 1.05502e-29 1.05968e-27 9.2571e-26 7.00172e-24 4.58946e-22 2.63502e-20 1.35409e-18 4.06524e-17 1.50802e-15 3.21518e-14 5.38923e-15 -3.46647e-17 1.52962e-19 -5.21029e-22 1.46159e-24 -3.51741e-27 7.46942e-30 -1.42881e-32 2.50106e-35 -4.05633e-38 6.15702e-41 -8.81965e-44 1.20064e-46 -1.56259e-49 1.95424e-52 -2.3592e-55 2.76014e-58 -3.14049e-61 3.48603e-64 -3.78592e-67 4.03309e-70 -4.22426e-73 4.35958e-76 -4.44211e-79 4.477e-82 -4.47075e-85 4.43062e-88 -4.36411e-91 4.27851e-94 -4.18053e-97 4.07626e-100 -3.97111e-103 3.86976e-106 -3.77619e-109 3.69386e-112 -3.62547e-115 4.23391e-116 4.59604e-113 4.81081e-110 4.8105e-107 4.59102e-104 4.17799e-101 3.62192e-98 2.98791e-95 2.343e-92 1.74442e-89 1.2316e-86 8.23504e-84 5.20759e-81 3.10993e-78 1.75119e-75 9.28264e-73 4.62381e-70 2.16026e-67 9.44768e-65 3.85947e-62 1.46932e-59 5.20023e-57 1.70644e-54 5.17699e-52 1.44752e-49 3.71758e-47 8.73719e-45 1.8715e-42 3.63712e-40 6.38136e-38 1.0052e-35 1.41286e-33 1.75999e-31 1.92885e-29 1.84577e-27 1.53153e-25 1.09679e-23 6.7845e-22 3.66143e-20 1.75629e-18 4.84649e-17 1.7341e-15 3.24022e-14 -2.34052e-17 2.35394e-19 -1.24751e-21 4.73673e-24 -1.43437e-26 3.66409e-29 -8.1776e-32 1.63362e-34 -2.97352e-37 4.99957e-40 -7.84989e-43 1.16124e-45 -1.63047e-48 2.18651e-51 -2.81556e-54 3.4977e-57 -4.20898e-60 4.92405e-63 -5.61854e-66 6.27114e-69 -6.86498e-72 7.38827e-75 -7.83454e-78 8.20231e-81 -8.49429e-84 8.71654e-87 -8.8776e-90 8.98769e-93 -9.05793e-96 9.09972e-99 -9.12443e-102 9.1432e-105 -9.16677e-108 9.2055e-111 -9.26959e-114 9.3835e-117 1.62956e-116 1.7996e-113 1.8993e-110 1.91517e-107 1.84341e-104 1.69212e-101 1.4798e-98 1.23164e-95 9.74507e-93 7.32155e-90 5.21675e-87 3.52051e-84 2.24704e-81 1.3545e-78 7.69881e-76 4.11926e-73 2.07104e-70 9.76572e-68 4.31002e-65 1.77649e-62 6.82228e-60 2.43487e-57 8.05395e-55 2.46167e-52 6.92989e-50 1.79039e-47 4.22857e-45 9.09023e-43 1.77008e-40 3.10525e-38 4.87798e-36 6.81456e-34 8.40078e-32 9.05977e-30 8.4667e-28 6.78931e-26 4.62799e-24 2.66187e-22 1.28549e-20 5.16872e-19 1.0683e-17 2.58313e-16 3.12054e-15 1.36408e-19 -1.12971e-21 5.98412e-24 -2.3403e-26 7.341e-29 -1.94311e-31 4.48923e-34 -9.27249e-37 1.74315e-39 -3.02413e-42 4.89541e-45 -7.46134e-48 1.0788e-50 -1.48907e-53 1.97292e-56 -2.52104e-59 3.11981e-62 -3.75276e-65 4.40223e-68 -5.05102e-71 5.68371e-74 -6.28763e-77 6.85355e-80 -7.37586e-83 7.85246e-86 -8.28444e-89 8.67569e-92 -9.03242e-95 9.36266e-98 -9.67585e-101 9.9826e-104 -1.02946e-106 1.06243e-109 -1.09855e-112 1.13932e-115 -4.63086e-120 1.29695e-115 1.41143e-112 1.46825e-109 1.4587e-106 1.38279e-103 1.24956e-100 1.0753e-97 8.80248e-95 6.84691e-92 5.05453e-89 3.53685e-86 2.34272e-83 1.46681e-80 8.66812e-78 4.82703e-75 2.52871e-72 1.24391e-69 5.73472e-67 2.47266e-64 9.94901e-62 3.72666e-59 1.29618e-56 4.17449e-54 1.24116e-51 3.39551e-49 8.51688e-47 1.95093e-44 4.06348e-42 7.65876e-40 1.29925e-37 1.97197e-35 2.6599e-33 3.16487e-31 3.29479e-29 2.97549e-27 2.3118e-25 1.53525e-23 8.69416e-22 4.21474e-20 1.75858e-18 4.06303e-17 1.23083e-15 2.16072e-14 -2.83568e-22 3.14176e-24 -1.80549e-26 7.4097e-29 -2.41701e-31 6.62946e-34 -1.58421e-36 3.38057e-39 -6.56008e-42 1.174e-44 -1.95936e-47 3.07756e-50 -4.58383e-53 6.51576e-56 -8.88807e-59 1.16904e-61 -1.48886e-64 1.84284e-67 -2.22422e-70 2.62554e-73 -3.03937e-76 3.45894e-79 -3.87863e-82 4.29433e-85 -4.7036e-88 5.10578e-91 -5.50198e-94 5.89503e-97 -6.28938e-100 6.69103e-103 -7.10758e-106 7.54827e-109 -8.02415e-112 8.54837e-115 -9.13712e-118 -4.75008e-119 -5.58164e-116 -6.14921e-113 -6.47731e-110 -6.51796e-107 -6.26002e-104 -5.73289e-101 -5.00116e-98 -4.1515e-95 -3.27559e-92 -2.45364e-89 -1.74271e-86 -1.17208e-83 -7.45403e-81 -4.47591e-78 -2.53359e-75 -1.34964e-72 -6.75374e-70 -3.16864e-67 -1.39093e-64 -5.70008e-62 -2.1755e-59 -7.71291e-57 -2.53308e-54 -7.68307e-52 -2.14505e-49 -5.4927e-47 -1.28483e-44 -2.73336e-42 -5.26263e-40 -9.11941e-38 -1.41349e-35 -1.94595e-33 -2.36076e-31 -2.50163e-29 -2.29351e-27 -1.80172e-25 -1.20267e-23 -6.79054e-22 -3.24925e-20 -1.32162e-18 -3.00605e-17 -9.58255e-16 -1.70679e-14 4.87056e-25 -6.014e-27 3.73857e-29 -1.62301e-31 5.54245e-34 -1.58317e-36 3.92835e-39 -8.68828e-42 1.74523e-44 -3.23e-47 5.57093e-50 -9.03729e-53 1.38951e-55 -2.03807e-58 2.86763e-61 -3.88931e-64 5.10632e-67 -6.51418e-70 8.10188e-73 -9.85367e-76 1.17512e-78 -1.37761e-81 1.59118e-84 -1.81459e-87 2.04717e-90 -2.28894e-93 2.54075e-96 -2.80433e-99 3.08241e-102 -3.37883e-105 3.69867e-108 -4.04851e-111 4.43661e-114 -4.87342e-117 5.41255e-120 4.92568e-119 5.74573e-116 6.41521e-113 6.85121e-110 6.99274e-107 6.81501e-104 6.3361e-101 5.61421e-98 4.73607e-95 3.79958e-92 2.89563e-89 2.09368e-86 1.43444e-83 9.29958e-81 5.69673e-78 3.29233e-75 1.7922e-72 9.17317e-70 4.40653e-67 1.9827e-64 8.33837e-62 3.27023e-59 1.19312e-56 4.03878e-54 1.26484e-51 3.65331e-49 9.69909e-47 2.35805e-44 5.22843e-42 1.05248e-39 1.91372e-37 3.1254e-35 4.55537e-33 5.88311e-31 6.67774e-29 6.60131e-27 5.62593e-25 4.08751e-23 2.50068e-21 1.26948e-19 5.22136e-18 1.18754e-16 2.98875e-15 5.37212e-14 1.46858e-25 -1.36576e-27 6.98611e-30 -2.57026e-32 7.55955e-35 -1.8808e-37 4.10045e-40 -8.02506e-43 1.43496e-45 -2.37597e-48 3.68178e-51 -5.38544e-54 7.48889e-57 -9.95959e-60 1.27324e-62 -1.57156e-65 1.88004e-68 -2.18715e-71 2.48168e-74 -2.75365e-77 2.99483e-80 -3.19908e-83 3.3624e-86 -3.48276e-89 3.55982e-92 -3.59446e-95 3.5884e-98 -3.54369e-101 3.46232e-104 -3.34573e-107 3.19447e-110 -3.00771e-113 2.78284e-116 -2.51485e-119 2.83093e-121 3.13148e-118 3.59616e-115 3.95179e-112 4.152e-109 4.16731e-106 3.99203e-103 3.64637e-100 3.17262e-97 2.62669e-94 2.06702e-91 1.54424e-88 1.0939e-85 7.33771e-83 4.65427e-80 2.78745e-77 1.57377e-74 8.36226e-72 4.17423e-69 1.95375e-66 8.55684e-64 3.49913e-61 1.33286e-58 4.71723e-56 1.54695e-53 4.68668e-51 1.30752e-48 3.34724e-46 7.83241e-44 1.66803e-41 3.21761e-39 5.5918e-37 8.70209e-35 1.20435e-32 1.47066e-30 1.57023e-28 1.45063e-26 1.14568e-24 7.62903e-23 4.21512e-21 1.89447e-19 6.7065e-18 1.36358e-16 2.85325e-15 3.69852e-14 5.59552e-23 -4.59032e-25 2.14744e-27 -7.374e-30 2.04984e-32 -4.86055e-35 1.01583e-37 -1.9139e-40 3.30497e-43 -5.29767e-46 7.96248e-49 -1.13142e-51 1.53031e-54 -1.98157e-57 2.46867e-60 -2.97162e-63 3.46912e-66 -3.94064e-69 4.36813e-72 -4.73726e-75 5.03799e-78 -5.26468e-81 5.41574e-84 -5.49297e-87 5.50072e-90 -5.44506e-93 5.33294e-96 -5.17144e-99 4.96719e-102 -4.72579e-105 4.45149e-108 -4.14678e-111 3.81207e-114 -3.44533e-117 4.22291e-120 1.397e-117 1.58166e-114 1.71294e-111 1.77306e-108 1.75256e-105 1.65269e-102 1.48544e-99 1.27124e-96 1.03474e-93 8.00158e-91 5.87137e-88 4.0829e-85 2.68708e-82 1.67129e-79 9.809e-77 5.42377e-74 2.82056e-71 1.377e-68 6.29867e-66 2.69386e-63 1.07483e-60 3.99119e-58 1.37573e-55 4.38958e-53 1.29256e-50 3.50089e-48 8.69038e-46 1.96925e-43 4.05554e-41 7.55347e-39 1.2653e-36 1.89435e-34 2.51673e-32 2.94257e-30 2.99886e-28 2.63417e-26 1.96815e-24 1.23156e-22 6.33569e-21 2.61729e-19 8.34258e-18 1.6427e-16 3.11161e-15 3.75008e-14 1.74853e-20 -1.16625e-22 4.78755e-25 -1.49525e-27 3.85557e-30 -8.58115e-33 1.69604e-35 -3.03685e-38 4.99997e-41 -7.65733e-44 1.10093e-46 -1.49722e-49 1.9381e-52 -2.40057e-55 2.85781e-58 -3.28227e-61 3.64862e-64 -3.93605e-67 4.12971e-70 -4.22132e-73 4.2088e-76 -4.09544e-79 3.88861e-82 -3.59837e-85 3.23608e-88 -2.81323e-91 2.34037e-94 -1.82645e-97 1.2782e-100 -6.99809e-104 9.26205e-108 5.4503e-110 -1.21806e-112 1.93496e-115 -2.70261e-118 6.72193e-118 7.68407e-115 8.40876e-112 8.7968e-109 8.79007e-106 8.38177e-103 7.6197e-100 6.59717e-97 5.43414e-94 4.25368e-91 3.16039e-88 2.22593e-85 1.48421e-82 9.35566e-80 5.56665e-77 3.12146e-74 1.64674e-71 8.15834e-69 3.78832e-66 1.64532e-63 6.66879e-61 2.51644e-58 8.8174e-56 2.8608e-53 8.56838e-51 2.36113e-48 5.96428e-46 1.37546e-43 2.88286e-41 5.46367e-39 9.30956e-37 1.41676e-34 1.91103e-32 2.26442e-30 2.33208e-28 2.06099e-26 1.53887e-24 9.52476e-23 4.77367e-21 1.8812e-19 5.59319e-18 1.18636e-16 1.87891e-15 2.42908e-14 4.22281e-18 -1.80961e-20 5.94184e-23 -1.59657e-25 3.65785e-28 -7.34737e-31 1.31996e-33 -2.15226e-36 3.22021e-39 -4.45651e-42 5.73541e-45 -6.88289e-48 7.69761e-51 -7.97785e-54 7.54849e-57 -6.28284e-60 4.11557e-63 -1.04595e-66 -2.86787e-69 7.52108e-72 -1.27781e-74 1.84896e-77 -2.45073e-80 3.06972e-83 -3.6948e-86 4.31774e-89 -4.93343e-92 5.53991e-95 -6.13829e-98 6.73254e-101 -7.32933e-104 7.93791e-107 -8.57008e-110 9.24035e-113 -9.96588e-116 4.57387e-117 5.03374e-114 5.42605e-111 5.58916e-108 5.49658e-105 5.15601e-102 4.60876e-99 3.92149e-96 3.17279e-93 2.43809e-90 1.77724e-87 1.22735e-84 8.01905e-82 4.94968e-79 2.88177e-76 1.58001e-73 8.14361e-71 3.93842e-68 1.78366e-65 7.54852e-63 2.97837e-60 1.09295e-57 3.72026e-55 1.17128e-52 3.40025e-50 9.07116e-48 2.21569e-45 4.93495e-43 9.97765e-41 1.82206e-38 2.98831e-36 4.37342e-34 5.66939e-32 6.45399e-30 6.38687e-28 5.42815e-26 3.90433e-24 2.33438e-22 1.13482e-20 4.36587e-19 1.28588e-17 2.84212e-16 4.55996e-15 6.71764e-14 -1.2184e-17 1.60208e-19 -9.15314e-22 3.62253e-24 -1.12971e-26 2.95497e-29 -6.73114e-32 1.36967e-34 -2.536e-37 4.33323e-40 -6.90939e-43 1.03744e-45 -1.4779e-48 2.01021e-51 -2.62491e-54 3.30607e-57 -4.03307e-60 4.78271e-63 -5.53162e-66 6.25818e-69 -6.94419e-72 7.57581e-75 -8.14403e-78 8.64462e-81 -9.07772e-84 9.44718e-87 -9.75983e-90 1.00247e-92 -1.02526e-95 1.04551e-98 -1.06445e-101 1.08338e-104 -1.10361e-107 1.1265e-110 -1.1535e-113 1.05778e-116 -1.45645e-114 -1.58013e-111 -1.63783e-108 -1.62037e-105 -1.52861e-102 -1.3736e-99 -1.17442e-96 -9.54272e-94 -7.35964e-91 -5.38014e-88 -3.72268e-85 -2.43429e-82 -1.50182e-79 -8.72582e-77 -4.76528e-74 -2.44081e-71 -1.16982e-68 -5.23249e-66 -2.17787e-63 -8.40715e-61 -2.99845e-58 -9.83603e-56 -2.95156e-53 -8.0467e-51 -1.97512e-48 -4.30931e-46 -8.191e-44 -1.30756e-41 -1.60844e-39 -1.07308e-37 1.23341e-35 6.04778e-33 1.30774e-30 2.04144e-28 2.50495e-26 2.46542e-24 1.93957e-22 1.19851e-20 5.65126e-19 1.95551e-17 4.78852e-16 7.42597e-15 1.13974e-13 -4.10912e-15 2.69961e-17 -1.21489e-19 4.21712e-22 -1.20483e-24 2.9517e-27 -6.37882e-30 1.24141e-32 -2.21035e-35 3.6458e-38 -5.62726e-41 8.19594e-44 -1.13435e-46 1.50086e-49 -1.90822e-52 2.34191e-55 -2.78545e-58 3.22214e-61 -3.63657e-64 4.01592e-67 -4.35061e-70 4.63467e-73 -4.86564e-76 5.04412e-79 -5.1733e-82 5.25826e-85 -5.30537e-88 5.32172e-91 -5.3147e-94 5.29161e-97 -5.25949e-100 5.22497e-103 -5.19425e-106 5.17316e-109 -5.16723e-112 5.22301e-115 4.77172e-114 5.30691e-111 5.64446e-108 5.73715e-105 5.56771e-102 5.15412e-99 4.54674e-96 3.81821e-93 3.04898e-90 2.31247e-87 1.66376e-84 1.13404e-81 7.31279e-79 4.45467e-76 2.55943e-73 1.38463e-70 7.04067e-68 3.35851e-65 1.49982e-62 6.25651e-60 2.43213e-57 8.78781e-55 2.94306e-52 9.10781e-50 2.59581e-47 6.78851e-45 1.62235e-42 3.52701e-40 6.93941e-38 1.22844e-35 1.9434e-33 2.72596e-31 3.35846e-29 3.59314e-27 3.2916e-25 2.53648e-23 1.6071e-21 8.12801e-20 3.15865e-18 9.00109e-17 1.80664e-15 2.38565e-14 2.66147e-13 -1.33912e-15 8.77599e-18 -3.94306e-20 1.36703e-22 -3.9015e-25 9.54932e-28 -2.06188e-30 4.00945e-33 -7.13332e-36 1.17571e-38 -1.81338e-41 2.63928e-44 -3.65035e-47 4.82654e-50 -6.13249e-53 7.52137e-56 -8.94018e-59 1.03353e-61 -1.16574e-64 1.28655e-67 -1.39292e-70 1.48297e-73 -1.55593e-76 1.61204e-79 -1.65234e-82 1.67847e-85 -1.69249e-88 1.69668e-91 -1.69341e-94 1.68502e-97 -1.67376e-100 1.66173e-103 -1.65091e-106 1.64315e-109 -1.64019e-112 1.96418e-115 3.66663e-113 4.0147e-110 4.20263e-107 4.20239e-104 4.01034e-101 3.64887e-98 3.16218e-95 2.60738e-92 2.04323e-89 1.51987e-86 1.07182e-83 7.15624e-81 4.51721e-78 2.69167e-75 1.5116e-72 7.98669e-70 3.96289e-67 1.84296e-64 8.016e-62 3.25347e-59 1.22917e-56 4.31123e-54 1.39976e-51 4.19367e-49 1.15537e-46 2.9159e-44 6.71282e-42 1.403e-39 2.64787e-37 4.48503e-35 6.76995e-33 9.03113e-31 1.05419e-28 1.06382e-26 9.14257e-25 6.56537e-23 3.84399e-21 1.77705e-19 6.2233e-18 1.57209e-16 2.76167e-15 3.37665e-14 2.96786e-13 5.97314e-18 -5.33021e-20 2.75817e-22 -1.04457e-24 3.18032e-27 -8.19909e-30 1.85054e-32 -3.74296e-35 6.90331e-38 -1.17669e-40 1.87366e-43 -2.81165e-46 4.00548e-49 -5.45095e-52 7.12424e-55 -8.98406e-58 1.09762e-60 -1.30392e-63 1.51104e-66 -1.71318e-69 1.90537e-72 -2.0838e-75 2.24592e-78 -2.39049e-81 2.51743e-84 -2.62769e-87 2.72303e-90 -2.80589e-93 2.87914e-96 -2.94601e-99 3.00994e-102 -3.07455e-105 3.14361e-108 -3.2211e-111 3.31141e-114 1.54898e-115 1.78577e-112 1.92663e-109 1.98647e-106 1.95563e-103 1.83657e-100 1.64369e-97 1.40045e-94 1.1347e-91 8.73273e-89 6.37598e-86 4.41069e-83 2.88689e-80 1.78518e-77 1.04132e-74 5.72029e-72 2.95401e-69 1.43133e-66 6.49417e-64 2.75304e-61 1.08789e-58 3.99702e-56 1.36167e-53 4.28836e-51 1.24443e-48 3.31552e-46 8.0781e-44 1.79196e-41 3.60131e-39 6.52052e-37 1.05686e-34 1.52216e-32 1.93127e-30 2.13641e-28 2.03496e-26 1.64364e-24 1.10457e-22 6.03315e-21 2.60444e-19 8.62768e-18 2.15698e-16 4.19486e-15 7.08991e-14 6.55674e-13 -8.50566e-20 7.48654e-22 -3.85925e-24 1.4576e-26 -4.42622e-29 1.13814e-31 -2.56231e-34 5.17034e-37 -9.51545e-40 1.61892e-42 -2.57387e-45 3.85787e-48 -5.49168e-51 7.47088e-54 -9.76519e-57 1.23214e-59 -1.50694e-62 1.79295e-65 -2.08207e-68 2.36675e-71 -2.64056e-74 2.89857e-77 -3.1375e-80 3.35577e-83 -3.55334e-86 3.73158e-89 -3.89299e-92 4.041e-95 -4.17976e-98 4.31401e-101 -4.44895e-104 4.59022e-107 -4.74397e-110 4.91691e-113 -5.09888e-116 2.07234e-115 2.3219e-112 2.48824e-109 2.54752e-106 2.48958e-103 2.32008e-100 2.05971e-97 1.7401e-94 1.39739e-91 1.06542e-88 7.70248e-86 5.27312e-83 3.41359e-80 2.08644e-77 1.20212e-74 6.51763e-72 3.31918e-69 1.58459e-66 7.07657e-64 2.9496e-61 1.14464e-58 4.12465e-56 1.37615e-53 4.23787e-51 1.20046e-48 3.11629e-46 7.38313e-44 1.58923e-41 3.09247e-39 5.40997e-37 8.45671e-35 1.17332e-32 1.43449e-30 1.53388e-28 1.42429e-26 1.14208e-24 7.89139e-23 4.71099e-21 2.43971e-19 1.08709e-17 4.02304e-16 1.18236e-14 2.33074e-13 1.56635e-12 -1.25855e-17 8.02368e-20 -3.53323e-22 1.20324e-24 -3.37668e-27 8.13143e-30 -1.72806e-32 3.30825e-35 -5.7959e-38 9.4086e-41 -1.42951e-43 2.04986e-46 -2.79372e-49 3.6405e-52 -4.55938e-55 5.51287e-58 -6.4611e-61 7.36598e-64 -8.19461e-67 8.92165e-70 -9.53038e-73 1.00128e-75 -1.03689e-78 1.06051e-81 -1.07328e-84 1.07668e-87 -1.07238e-90 1.06208e-93 -1.04749e-96 1.0302e-99 -1.01166e-102 9.93191e-106 -9.75968e-109 9.61039e-112 -9.49168e-115 2.21316e-115 2.44331e-112 2.58906e-109 2.61978e-106 2.52894e-103 2.32665e-100 2.03793e-97 1.69761e-94 1.34328e-91 1.00842e-88 7.17306e-86 4.82784e-83 3.07012e-80 1.84181e-77 1.04067e-74 5.5285e-72 2.75639e-69 1.2873e-66 5.62013e-64 2.28888e-61 8.67669e-59 3.05462e-56 9.96402e-54 3.00464e-51 8.35735e-49 2.13983e-46 5.03456e-44 1.087e-41 2.15189e-39 3.90458e-37 6.49301e-35 9.89074e-33 1.37753e-30 1.74601e-28 1.99655e-26 2.03162e-24 1.80469e-22 1.36477e-20 8.51011e-19 4.20271e-17 1.57477e-15 4.47097e-14 6.72232e-13 2.77504e-12 -4.07796e-18 2.56941e-20 -1.12433e-22 3.8132e-25 -1.06688e-27 2.56296e-30 -5.43555e-33 1.03871e-35 -1.81674e-38 2.94455e-41 -4.46716e-44 6.39644e-47 -8.70518e-50 1.13277e-52 -1.41668e-55 1.71051e-58 -2.00184e-61 2.27887e-64 -2.53147e-67 2.75188e-70 -2.93507e-73 3.07872e-76 -3.18296e-79 3.24995e-82 -3.28333e-85 3.28779e-88 -3.2685e-91 3.23084e-94 -3.18002e-97 3.12095e-100 -3.05809e-103 2.99543e-106 -2.93649e-109 2.88439e-112 -2.84411e-115 -2.53489e-115 -2.8355e-112 -3.02711e-109 -3.08467e-106 -2.99723e-103 -2.7738e-100 -2.44207e-97 -2.04271e-94 -1.62113e-91 -1.2188e-88 -8.66629e-86 -5.81735e-83 -3.67897e-80 -2.18697e-77 -1.21883e-74 -6.34905e-72 -3.08015e-69 -1.38552e-66 -5.74622e-64 -2.18068e-61 -7.49027e-59 -2.28855e-56 -6.02488e-54 -1.26972e-51 -1.62869e-49 1.86556e-47 2.1745e-44 9.187e-42 2.85542e-39 7.28852e-37 1.58321e-34 2.96547e-32 4.80647e-30 6.72816e-28 8.0864e-26 8.26586e-24 7.08977e-22 5.00859e-20 2.84068e-18 1.24804e-16 4.04249e-15 9.00527e-14 1.18414e-12 3.61922e-12 1.67847e-17 -1.07155e-19 4.7242e-22 -1.61056e-24 4.52449e-27 -1.09069e-29 2.32039e-32 -4.44712e-35 7.79999e-38 -1.26767e-40 1.92839e-43 -2.76871e-46 3.77832e-49 -4.93015e-52 6.18312e-55 -7.4869e-58 8.78769e-61 -1.00338e-63 1.11802e-66 -1.21921e-69 1.3046e-72 -1.37303e-75 1.42442e-78 -1.45958e-81 1.48e-84 -1.48765e-87 1.48474e-90 -1.47361e-93 1.45655e-96 -1.43575e-99 1.41322e-102 -1.39079e-105 1.3701e-108 -1.35266e-111 1.33999e-114 2.33153e-115 3.05569e-112 3.75425e-109 4.35801e-106 4.7858e-103 4.97524e-100 4.89749e-97 4.56456e-94 4.0267e-91 3.3604e-88 2.65102e-85 1.97533e-82 1.38875e-79 9.20159e-77 5.73847e-74 3.36356e-71 1.85008e-68 9.53283e-66 4.59282e-63 2.06479e-60 8.64261e-58 3.35999e-55 1.21006e-52 4.02533e-50 1.23296e-47 3.4653e-45 8.90246e-43 2.08165e-40 4.40929e-38 8.41523e-36 1.43832e-33 2.18628e-31 2.93147e-29 3.4342e-27 3.47481e-25 2.99435e-23 2.15965e-21 1.27563e-19 6.00569e-18 2.18179e-16 5.90467e-15 1.14024e-13 1.38761e-12 5.37538e-12 -7.71552e-20 5.58221e-22 -2.68021e-24 9.7513e-27 -2.88957e-29 7.294e-32 -1.61696e-34 3.21819e-37 -5.84715e-40 9.82591e-43 -1.54335e-45 2.2855e-48 -3.21415e-51 4.31917e-54 -5.57557e-57 6.94617e-60 -8.38567e-63 9.84551e-66 -1.12786e-68 1.26431e-71 -1.39056e-74 1.50421e-77 -1.60391e-80 1.68925e-83 -1.76066e-86 1.81927e-89 -1.86671e-92 1.90501e-95 -1.9364e-98 1.96327e-101 -1.98807e-104 2.01326e-107 -2.04134e-110 2.07486e-113 -1.56755e-116 6.5081e-114 7.38391e-111 8.01058e-108 8.30239e-105 8.21303e-102 7.74715e-99 6.96101e-96 5.95146e-93 4.83613e-90 3.73053e-87 2.72823e-84 1.88903e-81 1.23656e-78 7.64085e-76 4.44943e-73 2.43749e-70 1.25385e-67 6.04423e-65 2.72455e-62 1.14578e-59 4.48411e-57 1.62872e-54 5.47442e-52 1.69732e-49 4.83735e-47 1.26239e-44 3.00386e-42 6.48634e-40 1.26427e-37 2.21089e-35 3.44477e-33 4.74348e-31 5.7175e-29 5.963e-27 5.30542e-25 3.95668e-23 2.42014e-21 1.18319e-19 4.50942e-18 1.33386e-16 3.24174e-15 6.90474e-14 1.05617e-12 6.65187e-12 1.15855e-19 -9.25656e-22 4.41483e-24 -1.56903e-26 4.53424e-29 -1.118e-31 2.42624e-34 -4.737e-37 8.45825e-40 -1.399e-42 2.16559e-45 -3.16394e-48 4.39389e-51 -5.83523e-54 7.44929e-57 -9.18317e-60 1.09756e-62 -1.27635e-65 1.44876e-68 -1.60977e-71 1.75553e-74 -1.88349e-77 1.99245e-80 -2.08238e-83 2.15427e-86 -2.20991e-89 2.25162e-92 -2.28212e-95 2.30431e-98 -2.32117e-101 2.33567e-104 -2.35076e-107 2.36932e-110 -2.39425e-113 2.1768e-116 -3.01435e-114 -3.45623e-111 -3.79122e-108 -3.97502e-105 -3.98001e-102 -3.80183e-99 -3.46112e-96 -2.99974e-93 -2.47227e-90 -1.93517e-87 -1.43679e-84 -1.01045e-81 -6.72121e-79 -4.22188e-76 -2.50013e-73 -1.39327e-70 -7.29269e-68 -3.57778e-65 -1.6415e-62 -7.02614e-60 -2.79831e-57 -1.03403e-54 -3.53397e-52 -1.11322e-49 -3.21978e-47 -8.51412e-45 -2.04846e-42 -4.45965e-40 -8.72957e-38 -1.52488e-35 -2.35536e-33 -3.18029e-31 -3.69699e-29 -3.62055e-27 -2.88535e-25 -1.75032e-23 -6.70495e-22 -1.2237e-22 2.09124e-18 1.58057e-16 6.253e-15 1.33644e-13 1.3384e-12 5.08227e-12 3.34312e-17 -1.79169e-19 7.1249e-22 -2.26885e-24 6.07128e-27 -1.41106e-29 2.91743e-32 -5.46422e-35 9.40372e-38 -1.50409e-40 2.25698e-43 -3.20231e-46 4.32483e-49 -5.59152e-52 6.95507e-55 -8.35946e-58 9.74623e-61 -1.10605e-63 1.22556e-66 -1.32964e-69 1.41607e-72 -1.48388e-75 1.53323e-78 -1.56524e-81 1.58168e-84 -1.58479e-87 1.57704e-90 -1.56096e-93 1.53904e-96 -1.51358e-99 1.48671e-102 -1.46033e-105 1.43617e-108 -1.41574e-111 1.40592e-114 6.47238e-114 7.34517e-111 7.97368e-108 8.27504e-105 8.20271e-102 7.75933e-99 6.99764e-96 6.01032e-93 4.91132e-90 3.81381e-87 2.81098e-84 1.96401e-81 1.29904e-78 8.12227e-76 4.79331e-73 2.66555e-70 1.39435e-67 6.84815e-65 3.15149e-62 1.35598e-59 5.44214e-57 2.03217e-54 7.04085e-52 2.25662e-49 6.66852e-47 1.81036e-44 4.49701e-42 1.01759e-39 2.08712e-37 3.85828e-35 6.38721e-33 9.39852e-31 1.2185e-28 1.37731e-26 1.33987e-24 1.10363e-22 7.53439e-21 4.14189e-19 1.76039e-17 5.45209e-16 1.12878e-14 1.40481e-13 1.0645e-12 5.82374e-12 -1.05794e-19 9.33481e-22 -4.62508e-24 1.68105e-26 -4.9349e-29 1.2316e-31 -2.69934e-34 5.31476e-37 -9.56019e-40 1.59177e-42 -2.47893e-45 3.64207e-48 -5.08449e-51 6.78594e-54 -8.70402e-57 1.07787e-59 -1.29391e-62 1.51108e-65 -1.72231e-68 1.92146e-71 -2.10376e-74 2.26592e-77 -2.40622e-80 2.52439e-83 -2.62139e-86 2.69913e-89 -2.7603e-92 2.80804e-95 -2.8458e-98 2.87718e-101 -2.90583e-104 2.93539e-107 -2.96951e-110 3.0119e-113 -2.72173e-116 4.01388e-114 4.47116e-111 4.75993e-108 4.83835e-105 4.69121e-102 4.33421e-99 3.8115e-96 3.18661e-93 2.5297e-90 1.90428e-87 1.35737e-84 9.14736e-82 5.81843e-79 3.48696e-76 1.96504e-73 1.03908e-70 5.14351e-68 2.37721e-65 1.02283e-62 4.0834e-60 1.50681e-57 5.11626e-55 1.58973e-52 4.4893e-50 1.14169e-47 2.58095e-45 5.08086e-43 8.38504e-41 1.05879e-38 6.8802e-37 -1.054e-34 -4.94273e-32 -1.10779e-29 -1.82082e-27 -2.37908e-25 -2.52406e-23 -2.17231e-21 -1.4938e-19 -7.96544e-18 -3.13006e-16 -8.31275e-15 -1.27315e-13 -8.34603e-13 -3.48935e-13 -8.3468e-18 5.27745e-20 -2.31493e-22 7.86708e-25 -2.20513e-27 5.30658e-30 -1.12732e-32 2.15783e-35 -3.78042e-38 6.13764e-41 -9.32757e-44 1.33801e-46 -1.82437e-49 2.37866e-52 -2.98101e-55 3.60716e-58 -4.2313e-61 4.82866e-64 -5.37781e-67 5.86214e-70 -6.27065e-73 6.59796e-76 -6.84381e-79 7.01224e-82 -7.11054e-85 7.14819e-88 -7.13593e-91 7.08494e-94 -7.00627e-97 6.91041e-100 -6.80707e-103 6.70504e-106 -6.61232e-109 6.53617e-112 -6.56774e-115 -9.95956e-114 -1.1251e-110 -1.21558e-107 -1.2551e-104 -1.23731e-101 -1.16354e-98 -1.04267e-95 -8.89464e-93 -7.21503e-90 -5.55865e-87 -4.06241e-84 -2.81262e-81 -1.84224e-78 -1.13985e-75 -6.65166e-73 -3.65485e-70 -1.88751e-67 -9.14453e-65 -4.14763e-62 -1.75733e-59 -6.93911e-57 -2.54713e-54 -8.66786e-52 -2.72648e-49 -7.90186e-47 -2.10269e-44 -5.11775e-42 -1.13452e-39 -2.28006e-37 -4.13257e-35 -6.71548e-33 -9.71838e-31 -1.2427e-28 -1.39107e-26 -1.34769e-24 -1.11386e-22 -7.70583e-21 -4.34706e-19 -1.92525e-17 -6.31812e-16 -1.39973e-14 -1.7824e-13 -9.93168e-13 -8.96503e-13 -8.13987e-18 5.16751e-20 -2.2716e-22 7.73063e-25 -2.1691e-27 5.22408e-30 -1.11054e-32 2.12695e-35 -3.72825e-38 6.05581e-41 -9.20729e-44 1.32131e-46 -1.80233e-49 2.35084e-52 -2.94726e-55 3.56768e-58 -4.18655e-61 4.77939e-64 -5.32493e-67 5.80671e-70 -6.21374e-73 6.54063e-76 -6.78705e-79 6.95693e-82 -7.0574e-85 7.09783e-88 -7.0888e-91 7.04139e-94 -6.96652e-97 6.87462e-100 -6.77531e-103 6.67737e-106 -6.58876e-109 6.51675e-112 -6.55304e-115 -9.9502e-114 -1.11591e-110 -1.19661e-107 -1.22589e-104 -1.19876e-101 -1.11784e-98 -9.92996e-96 -8.39408e-93 -6.74477e-90 -5.14528e-87 -3.72178e-84 -2.54923e-81 -1.65107e-78 -1.00964e-75 -5.81983e-73 -3.15687e-70 -1.60846e-67 -7.68288e-65 -3.43314e-62 -1.43198e-59 -5.56187e-57 -2.00639e-54 -6.70357e-52 -2.06815e-49 -5.87245e-47 -1.52921e-44 -3.63773e-42 -7.87135e-40 -1.54195e-37 -2.72028e-35 -4.29646e-33 -6.03473e-31 -7.48006e-29 -8.10805e-27 -7.60239e-25 -6.08292e-23 -4.08117e-21 -2.2422e-19 -9.75396e-18 -3.19569e-16 -7.28945e-15 -1.01226e-13 -6.80075e-13 -1.20063e-12 5.39792e-19 -4.12204e-21 1.9358e-23 -6.73422e-26 1.88715e-28 -4.47049e-31 9.23719e-34 -1.70158e-36 2.83922e-39 -4.34206e-42 6.13909e-45 -8.07314e-48 9.90859e-51 -1.13557e-53 1.21061e-56 -1.18714e-59 1.04176e-62 -7.5895e-66 3.32122e-69 2.36532e-72 -9.37319e-75 1.75501e-77 -2.67114e-80 3.66626e-83 -4.72198e-86 5.82259e-89 -6.95625e-92 8.11574e-95 -9.29896e-98 1.05092e-100 -1.1755e-103 1.3051e-106 -1.44173e-109 1.58808e-112 -1.67442e-115 8.60243e-114 9.6828e-111 1.04237e-107 1.07227e-104 1.05306e-101 9.86421e-99 8.80425e-96 7.47976e-93 6.04179e-90 4.63463e-87 3.37207e-84 2.32401e-81 1.51506e-78 9.32894e-76 5.41698e-73 2.96125e-70 1.52128e-67 7.33037e-65 3.30628e-62 1.39282e-59 5.46722e-57 1.9946e-54 6.74478e-52 2.10774e-49 6.06738e-47 1.60322e-44 3.87364e-42 8.52182e-40 1.69898e-37 3.05344e-35 4.91747e-33 7.04797e-31 8.91806e-29 9.8671e-27 9.43374e-25 7.67709e-23 5.21192e-21 2.87003e-19 1.22992e-17 3.84422e-16 7.854e-15 8.50808e-14 2.80915e-13 -8.22133e-13 1.25455e-16 -7.90394e-19 3.38339e-21 -1.11129e-23 2.99085e-26 -6.87261e-29 1.38681e-31 -2.50783e-34 4.12653e-37 -6.251e-40 8.79681e-43 -1.15807e-45 1.43355e-48 -1.67433e-51 1.84787e-54 -1.92523e-57 1.88465e-60 -1.7137e-63 1.40994e-66 -9.80117e-70 4.38371e-73 1.96145e-76 -9.01792e-79 1.65676e-81 -2.44095e-84 3.23735e-87 -4.03286e-90 4.8187e-93 -5.59046e-96 6.3479e-99 -7.09466e-102 7.83798e-105 -8.58843e-108 9.35983e-111 -1.01765e-113 -8.29909e-114 -9.35037e-111 -1.00615e-107 -1.0345e-104 -1.01541e-101 -9.50555e-99 -8.47818e-96 -7.19704e-93 -5.80823e-90 -4.45097e-87 -3.23475e-84 -2.22649e-81 -1.44937e-78 -8.90967e-76 -5.16381e-73 -2.81684e-70 -1.44359e-67 -6.93688e-65 -3.11898e-62 -1.30921e-59 -5.11802e-57 -1.85845e-54 -6.25061e-52 -1.94123e-49 -5.54825e-47 -1.45397e-44 -3.47947e-42 -7.56963e-40 -1.48956e-37 -2.63633e-35 -4.16959e-33 -5.84902e-31 -7.21323e-29 -7.73727e-27 -7.12316e-25 -5.53238e-23 -3.54178e-21 -1.80834e-19 -7.00617e-18 -1.89943e-16 -3.10307e-15 -2.11292e-14 4.30921e-14 8.64485e-13 -2.13477e-19 2.21028e-21 -1.14677e-23 4.20519e-26 -1.22016e-28 2.96748e-31 -6.26685e-34 1.17703e-36 -2.00007e-39 3.1141e-42 -4.48488e-45 6.01569e-48 -7.54946e-51 8.88314e-54 -9.79123e-57 1.00531e-59 -9.47895e-63 7.92922e-66 -5.32576e-69 1.65339e-72 3.04647e-75 -8.68793e-78 1.51561e-80 -2.23232e-83 3.00634e-86 -3.82659e-89 4.68446e-92 -5.57451e-95 6.49499e-98 -7.44814e-101 8.44046e-104 -9.48292e-107 1.05914e-109 -1.17873e-112 1.24123e-115 -8.02746e-114 -8.99022e-111 -9.62733e-108 -9.84914e-105 -9.61721e-102 -8.95445e-99 -7.9419e-96 -6.70254e-93 -5.37639e-90 -4.09408e-87 -2.95587e-84 -2.02065e-81 -1.30602e-78 -7.96908e-76 -4.58309e-73 -2.48001e-70 -1.26036e-67 -6.00378e-65 -2.67506e-62 -1.11234e-59 -4.30611e-57 -1.54788e-54 -5.15187e-52 -1.58285e-49 -4.47421e-47 -1.15935e-44 -2.7429e-42 -5.89915e-40 -1.14773e-37 -2.00906e-35 -3.14455e-33 -4.36972e-31 -5.34635e-29 -5.70193e-27 -5.23546e-25 -4.07284e-23 -2.62693e-21 -1.36205e-19 -5.41734e-18 -1.53095e-16 -2.67166e-15 -2.06264e-14 2.30404e-14 6.35859e-13 4.02365e-22 -3.82888e-24 2.09248e-26 -8.10186e-29 2.46401e-31 -6.23791e-34 1.36348e-36 -2.6378e-39 4.59685e-42 -7.3086e-45 1.06981e-47 -1.45032e-50 1.8261e-53 -2.13304e-56 2.29475e-59 -2.23022e-62 1.86202e-65 -1.1236e-68 -3.55182e-73 1.64713e-74 -3.72451e-77 6.26488e-80 -9.25353e-83 1.26689e-85 -1.64883e-88 2.06928e-91 -2.52727e-94 3.02319e-97 -3.55918e-100 4.13953e-103 -4.77113e-106 5.46393e-109 -6.23157e-112 7.09223e-115 -3.71005e-118 5.04888e-115 5.58546e-112 5.89621e-109 5.93229e-106 5.68125e-103 5.17154e-100 4.46746e-97 3.65592e-94 2.82843e-91 2.06391e-88 1.41653e-85 9.11344e-83 5.47291e-80 3.05072e-77 1.56621e-74 7.319e-72 3.05233e-69 1.09267e-66 3.03603e-64 3.939e-62 -2.31372e-59 -2.40977e-56 -1.40395e-53 -6.43713e-51 -2.51057e-48 -8.5717e-46 -2.59371e-43 -6.99061e-41 -1.68008e-38 -3.59554e-36 -6.82999e-34 -1.14603e-31 -1.68767e-29 -2.16302e-27 -2.38693e-25 -2.23604e-23 -1.74448e-21 -1.10319e-19 -5.4327e-18 -1.95566e-16 -4.61241e-15 -5.66547e-14 -1.39228e-13 1.88282e-12 7.63067e-23 -4.92083e-25 2.01469e-27 -6.37067e-30 1.67941e-32 -3.84876e-35 7.87814e-38 -1.4682e-40 2.52734e-43 -4.06419e-46 6.16148e-49 -8.87332e-52 1.22167e-54 -1.61682e-57 2.06672e-60 -2.56223e-63 3.09228e-66 -3.64502e-69 4.20892e-72 -4.7738e-75 5.33151e-78 -5.87636e-81 6.40539e-84 -6.91832e-87 7.41749e-90 -7.90765e-93 8.39581e-96 -8.89105e-99 9.40454e-102 -9.94958e-105 1.05419e-107 -1.12e-110 1.19462e-113 -1.28058e-116 1.85901e-117 2.1501e-114 2.39734e-111 2.55558e-108 2.60232e-105 2.52895e-102 2.34317e-99 2.06779e-96 1.73611e-93 1.38521e-90 1.04905e-87 7.53107e-85 5.11808e-82 3.28786e-79 1.99345e-76 1.13884e-73 6.11956e-71 3.08713e-68 1.45909e-65 6.44692e-63 2.65663e-60 1.01836e-57 3.62111e-55 1.19072e-52 3.60843e-50 1.00396e-47 2.55351e-45 5.90805e-43 1.23637e-40 2.32429e-38 3.8925e-36 5.74508e-34 7.36456e-32 8.02377e-30 7.16282e-28 4.849e-26 1.91964e-24 -4.5455e-23 -1.52864e-20 -1.41306e-18 -7.93814e-17 -2.82645e-15 -5.75359e-14 -4.90736e-13 -3.73155e-13 5.67638e-20 -2.52267e-22 8.73112e-25 -2.4996e-27 6.15435e-30 -1.33918e-32 2.62776e-35 -4.72214e-38 7.86741e-41 -1.22743e-43 1.80811e-46 -2.53249e-49 3.39278e-52 -4.37011e-55 5.43651e-58 -6.55802e-61 7.69831e-64 -8.82214e-67 9.89834e-70 -1.09019e-72 1.1815e-75 -1.26277e-78 1.33371e-81 -1.39467e-84 1.44653e-87 -1.49059e-90 1.52843e-93 -1.56187e-96 1.59282e-99 -1.62334e-102 1.65551e-105 -1.69156e-108 1.7338e-111 -1.78478e-114 1.76672e-117 -9.41638e-116 -1.05212e-112 -1.12338e-109 -1.14511e-106 -1.11324e-103 -1.03108e-100 -9.08777e-98 -7.61303e-95 -6.05381e-92 -4.56313e-89 -3.25543e-86 -2.19461e-83 -1.39554e-80 -8.35462e-78 -4.69877e-75 -2.4768e-72 -1.2204e-69 -5.60417e-67 -2.39011e-64 -9.42862e-62 -3.42342e-59 -1.13701e-56 -3.42623e-54 -9.26041e-52 -2.20546e-49 -4.48487e-47 -7.26233e-45 -7.35047e-43 4.0879e-41 4.36462e-38 1.32118e-35 2.80084e-33 4.65044e-31 6.18099e-29 6.46685e-27 4.98157e-25 2.19796e-23 -5.31988e-22 -1.9453e-19 -1.83531e-17 -1.00711e-15 -3.31972e-14 -5.73715e-13 -1.95829e-12 8.83838e-18 -3.95859e-20 1.36838e-22 -3.89476e-25 9.50922e-28 -2.0487e-30 3.97629e-33 -7.06346e-36 1.16286e-38 -1.79228e-41 2.60792e-44 -3.60788e-47 4.77415e-50 -6.07414e-53 7.46442e-56 -8.89556e-59 1.03174e-61 -1.16836e-64 1.29554e-67 -1.4104e-70 1.5111e-73 -1.59688e-76 1.66789e-79 -1.72507e-82 1.76998e-85 -1.80458e-88 1.83112e-91 -1.852e-94 1.86966e-97 -1.88656e-100 1.90517e-103 -1.92793e-106 1.95735e-109 -1.99608e-112 2.04818e-115 1.41167e-115 1.60055e-112 1.73292e-109 1.79282e-106 1.77069e-103 1.66794e-100 1.49696e-97 1.2787e-94 1.0384e-91 8.00717e-89 5.85549e-86 4.05542e-83 2.65632e-80 1.64302e-77 9.58128e-75 5.25878e-72 2.71167e-69 1.3111e-66 5.93175e-64 2.50562e-61 9.85827e-59 3.60359e-56 1.22048e-53 3.81868e-51 1.10028e-48 2.90954e-46 7.0351e-44 1.5492e-41 3.09348e-39 5.57479e-37 9.01942e-35 1.30242e-32 1.66738e-30 1.87745e-28 1.84097e-26 1.55139e-24 1.10237e-22 6.41084e-21 2.89751e-19 9.15665e-18 1.45661e-16 -1.67805e-15 -1.26286e-13 -9.42339e-13 2.7946e-17 -1.97002e-19 9.32021e-22 -3.37477e-24 1.00197e-26 -2.54567e-29 5.69805e-32 -1.14769e-34 2.11394e-37 -3.60603e-40 5.75554e-43 -8.66831e-46 1.24068e-48 -1.69783e-51 2.2331e-54 -2.83589e-57 3.49132e-60 -4.18179e-63 4.88883e-66 -5.59473e-69 6.28389e-72 -6.94388e-75 7.56592e-78 -8.14513e-81 8.68038e-84 -9.17393e-87 9.63103e-90 -1.00594e-92 1.04689e-95 -1.0871e-98 1.12789e-101 -1.17072e-104 1.21721e-107 -1.26918e-110 1.32866e-113 -8.57609e-115 -9.43356e-112 -1.00861e-108 -1.03017e-105 -1.00423e-102 -9.33405e-100 -8.26366e-97 -6.96093e-94 -5.57257e-91 -4.23456e-88 -3.05044e-85 -2.0803e-82 -1.34111e-79 -8.16021e-77 -4.67867e-74 -2.52325e-71 -1.2776e-68 -6.06101e-66 -2.68826e-63 -1.11214e-60 -4.28066e-58 -1.52879e-55 -5.05114e-53 -1.539e-50 -4.30904e-48 -1.10445e-45 -2.58053e-43 -5.47071e-41 -1.04688e-38 -1.7978e-36 -2.75244e-34 -3.7286e-32 -4.42998e-30 -4.56803e-28 -4.036e-26 -3.00597e-24 -1.84685e-22 -9.08066e-21 -3.41507e-19 -9.1363e-18 -1.5319e-16 -1.29745e-15 -8.48766e-15 -1.12513e-13 5.44829e-15 -3.62064e-17 1.64905e-19 -5.79469e-22 1.67617e-24 -4.158e-27 9.09939e-30 -1.79346e-32 3.23443e-35 -5.40447e-38 8.45188e-41 -1.24748e-43 1.75004e-46 -2.34752e-49 3.02672e-52 -3.76795e-55 4.54725e-58 -5.33886e-61 6.11774e-64 -6.86163e-67 7.5526e-70 -8.17782e-73 8.72985e-76 -9.20637e-79 9.60956e-82 -9.94528e-85 1.02223e-87 -1.04513e-90 1.06445e-93 -1.08149e-96 1.09757e-99 -1.11408e-102 1.13241e-105 -1.15401e-108 1.1804e-111 -1.198e-114 1.64837e-113 1.69627e-110 1.65865e-107 1.53792e-104 1.34896e-101 1.11609e-98 8.67871e-96 6.31227e-93 4.2659e-90 2.65242e-87 1.49298e-84 7.37944e-82 2.98171e-79 7.53184e-77 -1.65159e-74 -4.0471e-71 -3.61426e-68 -2.44091e-65 -1.39732e-62 -7.05089e-60 -3.19019e-57 -1.30479e-54 -4.8419e-52 -1.63209e-49 -4.9948e-47 -1.38557e-44 -3.47512e-42 -7.85379e-40 -1.59281e-37 -2.8846e-35 -4.63788e-33 -6.57491e-31 -8.15179e-29 -8.75204e-27 -8.03745e-25 -6.21482e-23 -3.96218e-21 -2.0235e-19 -7.94731e-18 -2.26366e-16 -4.30742e-15 -4.98105e-14 -1.93815e-13 2.12654e-17 -9.01707e-20 2.75256e-22 -6.27854e-25 1.03253e-27 -8.98929e-31 -1.28691e-33 8.45024e-36 -2.52841e-38 5.82967e-41 -1.15439e-43 2.05319e-46 -3.36137e-49 5.14555e-52 -7.44734e-55 1.02772e-57 -1.36131e-60 1.74027e-63 -2.15706e-66 2.60267e-69 -3.06754e-72 3.54249e-75 -4.01946e-78 4.49207e-81 -4.95598e-84 5.40903e-87 -5.85128e-90 6.28497e-93 -6.71433e-96 7.14553e-99 -7.58658e-102 8.04736e-105 -8.53973e-108 9.07786e-111 -9.67863e-114 3.21182e-116 2.52604e-113 2.80659e-110 2.98137e-107 3.02521e-104 2.92943e-101 2.70434e-98 2.37751e-95 1.98829e-92 1.57983e-89 1.19115e-86 8.51054e-84 5.75391e-81 3.67552e-78 2.21471e-75 1.25661e-72 6.70132e-70 3.35217e-67 1.56951e-64 6.86234e-62 2.79487e-59 1.05745e-56 3.70585e-54 1.19912e-51 3.56994e-49 9.74145e-47 2.42613e-44 5.48911e-42 1.12233e-39 2.06172e-37 3.38021e-35 4.90857e-33 6.25768e-31 6.93012e-29 6.582e-27 5.27506e-25 3.49202e-23 1.8534e-21 7.54042e-20 2.1783e-18 3.77781e-17 1.66857e-16 -7.13718e-15 -7.82234e-14 -8.83796e-20 9.17224e-22 -5.27943e-24 2.197e-26 -7.29132e-29 2.03528e-31 -4.94434e-34 1.07078e-36 -2.10471e-39 3.80763e-42 -6.4113e-45 1.01405e-47 -1.51823e-50 2.16577e-53 -2.96026e-56 3.89595e-59 -4.95833e-62 6.12567e-65 -7.37144e-68 8.667e-71 -9.98422e-74 1.12978e-76 -1.25871e-79 1.38369e-82 -1.50386e-85 1.61895e-88 -1.72934e-91 1.83592e-94 -1.94012e-97 2.0438e-100 -2.14927e-103 2.25926e-106 -2.37694e-109 2.50601e-112 -2.65086e-115 -3.35477e-117 -4.22254e-114 -4.69197e-111 -4.98481e-108 -5.05897e-105 -4.89986e-102 -4.52457e-99 -3.97907e-96 -3.32897e-93 -2.64633e-90 -1.99635e-87 -1.42726e-84 -9.65652e-82 -6.17347e-79 -3.72324e-76 -2.11464e-73 -1.12892e-70 -5.65367e-68 -2.65029e-65 -1.16022e-62 -4.73112e-60 -1.79214e-57 -6.28724e-55 -2.03609e-52 -6.06477e-50 -1.65491e-47 -4.11863e-45 -9.30223e-43 -1.89604e-40 -3.46547e-38 -5.63829e-36 -8.09614e-34 -1.01562e-31 -1.09936e-29 -1.01108e-27 -7.74417e-26 -4.8077e-24 -2.32677e-22 -8.2628e-21 -1.93753e-19 -2.41549e-18 -1.20464e-17 -4.73125e-16 -9.81768e-15 -2.39506e-17 1.8563e-19 -9.81952e-22 3.94458e-24 -1.28424e-26 3.53778e-29 -8.50087e-32 1.82229e-34 -3.54575e-37 6.34856e-40 -1.05762e-42 1.65444e-45 -2.44891e-48 3.45254e-51 -4.6623e-54 6.06027e-57 -7.61539e-60 9.28684e-63 -1.10284e-65 1.27927e-68 -1.45358e-71 1.62201e-74 -1.78164e-77 1.93054e-80 -2.06776e-83 2.19329e-86 -2.30791e-89 2.41316e-92 -2.51111e-95 2.60434e-98 -2.69579e-101 2.78876e-104 -2.88687e-107 2.99413e-110 -3.115e-113 9.54443e-117 -2.59295e-113 -2.79518e-110 -2.87881e-107 -2.8301e-104 -2.65307e-101 -2.36923e-98 -2.01328e-95 -1.62605e-92 -1.24671e-89 -9.06229e-87 -6.23661e-84 -4.05751e-81 -2.49169e-78 -1.44186e-75 -7.84829e-73 -4.01069e-70 -1.92029e-67 -8.5953e-65 -3.58817e-62 -1.39346e-59 -5.02024e-57 -1.67287e-54 -5.13922e-52 -1.45041e-49 -3.74596e-47 -8.81613e-45 -1.88199e-42 -3.62542e-40 -6.2668e-38 -9.65957e-36 -1.31844e-33 -1.58107e-31 -1.65118e-29 -1.48666e-27 -1.14055e-25 -7.35315e-24 -3.91642e-22 -1.68632e-20 -5.705e-19 -1.46129e-17 -2.7231e-16 -3.60224e-15 -2.18112e-14 -2.61197e-17 1.42586e-19 -6.04703e-22 2.10041e-24 -6.1906e-27 1.58929e-29 -3.62733e-32 7.48162e-35 -1.41335e-37 2.47279e-40 -4.04454e-43 6.23385e-46 -9.11636e-49 1.27246e-51 -1.70403e-54 2.19946e-57 -2.74742e-60 3.33341e-63 -3.94122e-66 4.55452e-69 -5.1582e-72 5.7395e-75 -6.28873e-78 6.79955e-81 -7.26904e-84 7.69749e-87 -8.08801e-90 8.44609e-93 -8.7792e-96 9.09637e-99 -9.40795e-102 9.72545e-105 -1.00615e-107 1.043e-110 -1.08466e-113 2.99676e-116 2.10784e-113 2.2798e-110 2.35624e-107 2.32491e-104 2.18795e-101 1.96187e-98 1.67432e-95 1.35845e-92 1.04656e-89 7.64611e-87 5.29031e-84 3.46144e-81 2.13844e-78 1.24533e-75 6.82417e-73 3.51217e-70 1.69425e-67 7.64374e-65 3.21764e-62 1.26056e-59 4.58334e-57 1.54201e-54 4.78463e-52 1.36428e-49 3.56071e-47 8.46924e-45 1.82691e-42 3.55468e-40 6.20075e-38 9.63044e-36 1.32121e-33 1.58648e-31 1.6495e-29 1.46587e-27 1.09576e-25 6.75013e-24 3.33321e-22 1.26679e-20 3.45836e-19 5.79613e-18 2.25042e-17 -1.52e-15 -2.81091e-14 5.25356e-17 -3.10467e-19 1.21875e-21 -3.57981e-24 8.32163e-27 -1.56489e-29 2.34797e-32 -2.54368e-35 9.02802e-39 4.5198e-41 -1.6292e-43 3.73593e-46 -7.06665e-49 1.18727e-51 -1.83236e-54 2.64798e-57 -3.62832e-60 4.75644e-63 -6.00643e-66 7.3465e-69 -8.74247e-72 1.0161e-74 -1.15725e-77 1.2953e-80 -1.42851e-83 1.55592e-86 -1.67729e-89 1.79303e-92 -1.90421e-95 2.01243e-98 -2.11978e-101 2.2288e-104 -2.34249e-107 2.46431e-110 -2.59827e-113 2.78151e-116 3.85334e-115 4.38901e-112 4.78868e-109 5.00023e-106 4.99159e-103 4.75869e-100 4.32749e-97 3.74935e-94 3.09094e-91 2.42132e-88 1.79978e-85 1.26747e-82 8.44327e-80 5.31134e-77 3.14945e-74 1.757e-71 9.20296e-69 4.51601e-66 2.07128e-63 8.85708e-61 3.52157e-58 1.2981e-55 4.42221e-53 1.38752e-50 3.99471e-48 1.05101e-45 2.51568e-43 5.45116e-41 1.0635e-38 1.85674e-36 2.88124e-34 3.94347e-32 4.71897e-30 4.88771e-28 4.33048e-26 3.23644e-24 2.00616e-22 1.01015e-20 4.02595e-19 1.23288e-17 2.81764e-16 4.73204e-15 4.25281e-14 1.04244e-17 -8.33551e-20 4.16594e-22 -1.55625e-24 4.71595e-27 -1.21586e-29 2.75215e-32 -5.59325e-35 1.03792e-37 -1.78182e-40 2.85984e-43 -4.32864e-46 6.22362e-49 -8.55244e-52 1.12927e-54 -1.4394e-57 1.77831e-60 -2.13722e-63 2.50679e-66 -2.87793e-69 3.24262e-72 -3.59432e-75 3.92837e-78 -4.2421e-81 4.53476e-84 -4.80739e-87 5.06262e-90 -5.30442e-93 5.53793e-96 -5.76929e-99 6.00552e-102 -6.25459e-105 6.52542e-108 -6.8282e-111 7.17468e-114 -7.927e-117 -4.06138e-115 -4.53212e-112 -4.83618e-109 -4.9306e-106 -4.79834e-103 -4.45296e-100 -3.93663e-97 -3.31164e-94 -2.6479e-91 -2.00987e-88 -1.44636e-85 -9.85438e-83 -6.34729e-80 -3.85899e-77 -2.21085e-74 -1.19144e-71 -6.02808e-69 -2.85752e-66 -1.26632e-63 -5.23362e-61 -2.01209e-58 -7.17567e-56 -2.36657e-53 -7.19398e-51 -2.00826e-48 -5.12758e-46 -1.19207e-43 -2.51081e-41 -4.7644e-39 -8.09332e-37 -1.22186e-34 -1.62582e-32 -1.88821e-30 -1.89221e-28 -1.61375e-26 -1.15165e-24 -6.73346e-23 -3.13867e-21 -1.12517e-19 -2.96056e-18 -5.39185e-17 -6.48501e-16 -5.12281e-15 4.11303e-15 -2.73626e-17 1.24829e-19 -4.39469e-22 1.27375e-24 -3.1663e-27 6.94393e-30 -1.3716e-32 2.47908e-35 -4.15161e-38 6.50731e-41 -9.62675e-44 1.35366e-46 -1.82012e-49 2.3524e-52 -2.93569e-55 3.55172e-58 -4.18067e-61 4.80305e-64 -5.4014e-67 5.96146e-70 -6.47289e-73 6.92948e-76 -7.329e-79 7.67279e-82 -7.96516e-85 8.21272e-88 -8.42384e-91 8.60805e-94 -8.77567e-97 8.93754e-100 -9.10488e-103 9.28933e-106 -9.50311e-109 9.7593e-112 -1.00794e-114 -8.05104e-115 -8.82031e-112 -9.23234e-109 -9.23708e-106 -8.82609e-103 -8.0465e-100 -6.99233e-97 -5.78574e-94 -4.5534e-91 -3.4044e-88 -2.41508e-85 -1.6234e-82 -1.03254e-79 -6.20468e-77 -3.51683e-74 -1.87693e-71 -9.41447e-69 -4.42919e-66 -1.95026e-63 -8.0183e-61 -3.07042e-58 -1.09207e-55 -3.59704e-53 -1.09364e-50 -3.05846e-48 -7.83691e-46 -1.83211e-43 -3.88943e-41 -7.45921e-39 -1.2849e-36 -1.97525e-34 -2.69051e-32 -3.22102e-30 -3.35845e-28 -3.01838e-26 -2.31089e-24 -1.48694e-22 -7.91619e-21 -3.42486e-19 -1.18205e-17 -3.19717e-16 -6.69428e-15 -1.02993e-13 1.37539e-15 -9.1394e-18 4.16728e-20 -1.46673e-22 4.25059e-25 -1.05655e-27 2.31706e-30 -4.57684e-33 8.2726e-36 -1.38544e-38 2.17169e-41 -3.21295e-44 4.51818e-47 -6.07558e-50 7.85294e-53 -9.80094e-56 1.18586e-58 -1.39598e-61 1.60394e-64 -1.80392e-67 1.99115e-70 -2.16217e-73 2.31491e-76 -2.44861e-79 2.56372e-82 -2.66167e-85 2.74468e-88 -2.81551e-91 2.87738e-94 -2.93371e-97 2.98813e-100 -3.04439e-103 3.1064e-106 -3.17822e-109 3.26425e-112 -3.30948e-115 6.77325e-114 7.33171e-111 7.58416e-108 7.49005e-105 7.05535e-102 6.33239e-99 5.40963e-96 4.39364e-93 3.38859e-90 2.47855e-87 1.71702e-84 1.12494e-81 6.95982e-79 4.05954e-76 2.22849e-73 1.14921e-70 5.55617e-68 2.51317e-65 1.06107e-62 4.1713e-60 1.52284e-57 5.14811e-55 1.60657e-52 4.61257e-50 1.21389e-47 2.91654e-45 6.36935e-43 1.25824e-40 2.23651e-38 3.55599e-36 5.02478e-34 6.26483e-32 6.83683e-30 6.47258e-28 5.26332e-26 3.63589e-24 2.10793e-22 1.01226e-20 3.97292e-19 1.26105e-17 3.22462e-16 6.69493e-15 1.15743e-13 1.39528e-15 -9.31815e-18 4.26582e-20 -1.50677e-22 4.38105e-25 -1.0924e-27 2.40289e-30 -4.76017e-33 8.6282e-36 -1.44896e-38 2.27731e-41 -3.378e-44 4.76238e-47 -6.41993e-50 8.3183e-53 -1.04066e-55 1.26211e-58 -1.48917e-61 1.71492e-64 -1.93306e-67 2.13841e-70 -2.32714e-73 2.4969e-76 -2.64674e-79 2.77701e-82 -2.88913e-85 2.9854e-88 -3.06875e-91 3.1426e-94 -3.21065e-97 3.27685e-100 -3.34533e-103 3.42038e-106 -3.50658e-109 3.60883e-112 -3.69744e-115 3.97965e-114 4.30399e-111 4.44796e-108 4.38802e-105 4.12829e-102 3.70014e-99 3.15602e-96 2.55879e-93 1.96956e-90 1.43742e-87 9.93297e-85 6.48962e-82 4.00246e-79 2.32636e-76 1.27204e-73 6.5308e-71 3.14188e-68 1.41323e-65 5.92946e-63 2.31464e-60 8.38337e-58 2.80881e-55 8.67717e-53 2.46289e-50 6.39788e-48 1.51462e-45 3.25244e-43 6.30246e-41 1.09576e-38 1.69849e-36 2.33062e-34 2.80863e-32 2.9463e-30 2.66368e-28 2.05227e-26 1.33059e-24 7.15624e-23 3.14029e-21 1.10176e-19 3.01172e-18 6.13482e-17 8.25841e-16 3.40256e-15 6.88689e-15 -4.58982e-17 2.09793e-19 -7.40034e-22 2.14909e-24 -5.35262e-27 1.17612e-29 -2.32752e-32 4.21466e-35 -7.07106e-38 1.11033e-40 -1.64552e-43 2.3179e-46 -3.12204e-49 4.04195e-52 -5.0527e-55 6.1232e-58 -7.21943e-61 8.30779e-64 -9.35793e-67 1.03449e-69 -1.12504e-72 1.20631e-75 -1.27789e-78 1.33994e-81 -1.39319e-84 1.43875e-87 -1.47806e-90 1.51275e-93 -1.54464e-96 1.57562e-99 -1.60767e-102 1.64287e-105 -1.68338e-108 1.73157e-111 -1.78924e-114 9.24959e-115 1.00064e-111 1.03682e-108 1.02598e-105 9.68682e-103 8.71771e-100 7.47055e-97 6.08916e-94 4.71534e-91 3.46489e-88 2.41282e-85 1.59008e-82 9.90244e-80 5.81857e-77 3.22049e-74 1.67608e-71 8.1868e-69 3.74541e-66 1.60143e-63 6.3845e-61 2.36734e-58 8.14197e-56 2.58971e-53 7.59336e-51 2.04532e-48 5.04174e-46 1.1326e-43 2.30809e-41 4.24541e-39 7.00895e-37 1.03223e-34 1.34689e-32 1.54542e-30 1.54643e-28 1.33736e-26 9.89883e-25 6.20749e-23 3.26516e-21 1.42713e-19 5.15989e-18 1.54908e-16 3.94122e-15 8.94409e-14 2.74481e-15 -1.82522e-17 8.32718e-20 -2.93239e-22 8.50224e-25 -2.11439e-27 4.63916e-30 -9.16799e-33 1.6579e-35 -2.77788e-38 4.35647e-41 -6.44844e-44 9.07262e-47 -1.22061e-49 1.57851e-52 -1.97112e-55 2.38625e-58 -2.81061e-61 3.23115e-64 -3.63612e-67 4.01591e-70 -4.36351e-73 4.67469e-76 -4.94789e-79 5.18393e-82 -5.38566e-85 5.55752e-88 -5.70508e-91 5.83479e-94 -5.9536e-97 6.06887e-100 -6.18823e-103 6.31963e-106 -6.47144e-109 6.65268e-112 -6.87394e-115 -7.20568e-116 -8.06722e-113 -8.55264e-110 -8.66376e-107 -8.37798e-104 -7.72634e-101 -6.78829e-98 -5.67577e-95 -4.5109e-92 -3.40362e-89 -2.43497e-86 -1.64936e-83 -1.05625e-80 -6.38507e-78 -3.63727e-75 -1.94902e-72 -9.80499e-70 -4.62133e-67 -2.03613e-64 -8.36591e-62 -3.19712e-59 -1.13321e-56 -3.71393e-54 -1.12169e-51 -3.11052e-49 -7.88808e-47 -1.82125e-44 -3.80987e-42 -7.18223e-40 -1.21292e-37 -1.82291e-35 -2.42043e-33 -2.81667e-31 -2.84773e-29 -2.47825e-27 -1.83896e-25 -1.15356e-23 -6.08457e-22 -2.70203e-20 -1.02544e-18 -3.4593e-17 -1.11253e-15 -3.76032e-14 -1.7141e-17 7.77055e-20 -2.72555e-22 7.89108e-25 -1.96448e-27 4.32537e-30 -8.59805e-33 1.56746e-35 -2.65326e-38 4.21196e-41 -6.32241e-44 9.03588e-47 -1.23679e-49 1.62952e-52 -2.07574e-55 2.56637e-58 -3.09026e-61 3.63528e-64 -4.18941e-67 4.74175e-70 -5.28316e-73 5.80683e-76 -6.30849e-79 6.78644e-82 -7.24152e-85 7.67682e-88 -8.09749e-91 8.51054e-94 -8.92467e-97 9.35016e-100 -9.79896e-103 1.02848e-105 -1.08236e-108 1.14341e-111 -1.21383e-114 -6.42606e-118 -2.19465e-114 -2.37578e-111 -2.45758e-108 -2.42702e-105 -2.28603e-102 -2.05158e-99 -1.75238e-96 -1.42299e-93 -1.09721e-90 -8.02291e-88 -5.55572e-85 -3.63821e-82 -2.2496e-79 -1.31124e-76 -7.19211e-74 -3.70525e-71 -1.78934e-68 -8.08255e-66 -3.40704e-63 -1.3369e-60 -4.87011e-58 -1.64223e-55 -5.10984e-53 -1.46207e-50 -3.8325e-48 -9.16584e-46 -1.99107e-43 -3.90918e-41 -6.89943e-39 -1.08812e-36 -1.52344e-34 -1.87981e-32 -2.0282e-30 -1.89701e-28 -1.52398e-26 -1.04143e-24 -5.99517e-23 -2.88211e-21 -1.14711e-19 -3.76592e-18 -1.02093e-16 -2.29277e-15 -4.16555e-14 2.08511e-19 -9.38792e-22 3.23453e-24 -9.13594e-27 2.20771e-29 -4.69948e-32 9.00102e-35 -1.57646e-37 2.55707e-40 -3.8809e-43 5.55826e-46 -7.56584e-49 9.84756e-52 -1.23208e-54 1.48861e-57 -1.74388e-60 1.98801e-63 -2.21256e-66 2.41113e-69 -2.57965e-72 2.71632e-75 -2.82141e-78 2.89689e-81 -2.94599e-84 2.97282e-87 -2.98194e-90 2.97811e-93 -2.96607e-96 2.95037e-99 -2.93534e-102 2.92508e-105 -2.92353e-108 2.93458e-111 -2.96223e-114 3.01019e-117 -6.96607e-118 -7.70587e-115 -8.18238e-112 -8.29519e-109 -8.02105e-106 -7.38988e-103 -6.4798e-100 -5.40116e-97 -4.2743e-94 -3.20708e-91 -2.27821e-88 -1.52984e-85 -9.69473e-83 -5.78741e-80 -3.24819e-77 -1.71034e-74 -8.42922e-72 -3.8783e-69 -1.66111e-66 -6.60169e-64 -2.42559e-61 -8.20423e-59 -2.54174e-56 -7.1685e-54 -1.82621e-51 -4.15872e-49 -8.33806e-47 -1.43586e-44 -2.0233e-42 -2.04697e-40 -6.06534e-39 3.17561e-36 9.39193e-34 1.66712e-31 2.23826e-29 2.4039e-27 2.10001e-25 1.49521e-23 8.6295e-22 3.33064e-20 1.20501e-18 3.44529e-17 7.59806e-16 1.16255e-14 -8.69861e-18 3.89617e-20 -1.34638e-22 3.82958e-25 -9.34045e-28 2.00951e-30 -3.89321e-33 6.90065e-36 -1.13309e-38 1.7411e-41 -2.52469e-44 3.47913e-47 -4.58379e-50 5.80397e-53 -7.09485e-56 8.40654e-59 -9.68933e-62 1.08983e-64 -1.19967e-67 1.29582e-70 -1.37671e-73 1.44182e-76 -1.49154e-79 1.52698e-82 -1.54978e-85 1.56193e-88 -1.56561e-91 1.56305e-94 -1.55645e-97 1.54792e-100 -1.53944e-103 1.5329e-106 -1.53006e-109 1.53265e-112 -1.54334e-115 -1.0739e-115 -1.19408e-112 -1.26729e-109 -1.2845e-106 -1.24222e-103 -1.14508e-100 -1.00506e-97 -8.39039e-95 -6.65425e-92 -5.00727e-89 -3.57039e-86 -2.40899e-83 -1.53572e-80 -9.23541e-78 -5.23041e-75 -2.78462e-72 -1.39094e-69 -6.50522e-67 -2.84226e-64 -1.15737e-61 -4.38101e-59 -1.53729e-56 -4.98554e-54 -1.48944e-51 -4.08454e-49 -1.02422e-46 -2.33852e-44 -4.83915e-42 -9.02979e-40 -1.51093e-37 -2.25326e-35 -2.97478e-33 -3.45122e-31 -3.49038e-29 -3.05057e-27 -2.28284e-25 -1.44874e-23 -7.7227e-22 -3.42679e-20 -7.79338e-19 -2.36041e-17 -5.78585e-16 -1.18211e-14 -2.05243e-13 4.83429e-18 -2.16013e-20 7.44731e-23 -2.11349e-25 5.14353e-28 -1.10421e-30 2.13481e-33 -3.77621e-36 6.18823e-39 -9.49043e-42 1.37356e-44 -1.88935e-47 2.48478e-50 -3.14073e-53 3.83274e-56 -4.53381e-59 5.21722e-62 -5.85897e-65 6.43964e-68 -6.94537e-71 7.36823e-74 -7.70582e-77 7.9606e-80 -8.13883e-83 8.24958e-86 -8.30372e-89 8.31302e-92 -8.28947e-95 8.24485e-98 -8.19036e-101 8.13654e-104 -8.09327e-107 8.06989e-110 -8.07542e-113 8.11892e-116 -1.19671e-118 -4.45618e-116 -5.07424e-113 -5.5407e-110 -5.79425e-107 -5.79568e-104 -5.53743e-101 -5.04676e-98 -4.38128e-95 -3.61778e-92 -2.83716e-89 -2.10985e-86 -1.48543e-83 -9.88436e-81 -6.2056e-78 -3.6691e-75 -2.0391e-72 -1.06298e-69 -5.18656e-67 -2.36318e-64 -1.00301e-61 -3.95502e-59 -1.44475e-56 -4.8742e-54 -1.51369e-51 -4.31148e-49 -1.12196e-46 -2.6561e-44 -5.6941e-42 -1.09989e-39 -1.904e-37 -2.93669e-35 -4.01062e-33 -4.8176e-31 -5.05339e-29 -4.59226e-27 -3.58328e-25 -2.37646e-23 -1.15788e-21 -2.63908e-20 -9.91987e-19 -2.92602e-17 -6.76902e-16 -1.13659e-14 4.58594e-18 -2.04828e-20 7.06074e-23 -2.00381e-25 4.87704e-28 -1.04715e-30 2.02484e-33 -3.58238e-36 5.87182e-39 -9.00713e-42 1.30391e-44 -1.79395e-47 2.35986e-50 -2.98353e-53 3.64175e-56 -4.3089e-59 4.95956e-62 -5.57091e-65 6.12443e-68 -6.60692e-71 7.01075e-74 -7.33361e-77 7.57774e-80 -7.7491e-83 7.85624e-86 -7.90949e-89 7.92e-92 -7.89921e-95 7.85829e-98 -7.80792e-101 7.75815e-104 -7.71839e-107 7.69756e-110 -7.70428e-113 7.74721e-116 -7.87929e-119 -5.02412e-118 -5.50947e-115 -5.77475e-112 -5.78112e-109 -5.52261e-106 -5.02929e-103 -4.36167e-100 -3.59845e-97 -2.821e-94 -2.09893e-91 -1.48031e-88 -9.88323e-86 -6.23777e-83 -3.71629e-80 -2.08675e-77 -1.10257e-74 -5.47238e-72 -2.54681e-69 -1.10929e-66 -4.51286e-64 -1.71122e-61 -6.03452e-59 -1.97447e-56 -5.9794e-54 -1.6716e-51 -4.30203e-49 -1.01624e-46 -2.1964e-44 -4.32806e-42 -7.74522e-40 -1.25304e-37 -1.82298e-35 -2.37006e-33 -2.73311e-31 -2.77147e-29 -2.44689e-27 -1.86025e-25 -1.02597e-23 -2.7295e-22 -1.19472e-20 -4.09785e-19 -1.06996e-17 -1.84771e-16 ) ; } inletFace { type calculated; value nonuniform List<scalar> 450 ( 2.07938e-12 3.05366e-13 1.41867e-12 2.22998e-12 6.78328e-13 5.83375e-13 1.46527e-12 9.38587e-13 6.81705e-13 2.22158e-12 9.16954e-13 2.42091e-13 1.08413e-12 -1.3954e-13 4.11394e-14 -6.59709e-12 -5.43281e-12 3.61416e-13 -2.02798e-12 6.60146e-14 1.75815e-12 -3.0412e-12 -7.85443e-13 1.9168e-12 -5.77946e-12 -3.30841e-13 1.33204e-12 -3.73542e-12 -2.11723e-12 5.09952e-12 -8.00292e-12 -7.42368e-12 5.78403e-12 -2.64914e-12 1.39214e-13 6.27411e-12 -6.20245e-13 -9.27381e-12 5.15681e-12 -4.03636e-12 -2.93792e-12 1.45438e-12 -2.28323e-12 -3.64835e-12 4.40792e-12 -1.18332e-11 -2.22407e-11 -3.35452e-12 -5.65552e-12 -9.80808e-12 -6.28441e-12 2.97778e-13 -2.96063e-12 1.11536e-12 -1.17369e-12 -5.61323e-12 -3.60816e-12 -2.23079e-12 -1.38337e-11 -7.73298e-12 -2.11735e-11 -1.43187e-11 -1.45558e-11 -5.33011e-12 -2.57455e-12 6.00592e-13 2.48144e-12 3.51362e-12 -1.09311e-12 4.48446e-13 -3.12043e-12 -8.37275e-13 4.56922e-12 9.44633e-12 4.54854e-12 1.41863e-11 1.40238e-11 1.13648e-11 7.04047e-12 1.8187e-11 6.15744e-12 5.64482e-12 1.09149e-11 9.74839e-12 8.49612e-12 2.16602e-11 1.12152e-11 9.4153e-12 2.00377e-11 1.09736e-11 -7.26503e-12 1.74928e-11 3.58916e-12 6.21204e-12 1.63964e-11 -4.16758e-13 5.43455e-12 1.18079e-11 4.08713e-12 5.30486e-12 2.31605e-11 2.43181e-12 7.60603e-12 1.7697e-11 9.82033e-12 -2.46837e-11 6.53056e-12 -1.63091e-11 5.59501e-12 4.55728e-12 -1.75571e-11 4.45784e-12 8.41841e-12 -1.48151e-11 4.37859e-12 4.79573e-12 -8.97852e-12 4.92583e-12 9.17559e-12 -8.64638e-12 -1.66859e-11 -1.64934e-12 -1.32733e-11 -1.08373e-12 -2.8895e-12 -1.18602e-11 -2.42586e-13 -2.29657e-13 -1.23143e-11 5.43851e-13 -5.57401e-12 -1.54009e-11 1.4324e-12 7.44666e-12 -1.34435e-11 -3.5503e-12 -2.48956e-12 -2.49722e-12 5.69081e-13 -2.77447e-12 -2.63463e-12 4.96881e-13 -1.37477e-12 -1.04052e-12 9.42853e-13 -4.50834e-12 -7.47909e-13 9.41245e-13 1.21218e-12 -2.262e-12 2.1165e-12 -9.74795e-13 4.60483e-12 4.02894e-12 -1.3572e-12 4.14736e-12 4.00071e-12 -9.09783e-13 6.58586e-12 3.28657e-12 -2.8506e-12 5.45672e-12 2.23528e-12 -3.9529e-13 3.81652e-12 7.51078e-12 -1.38833e-12 9.7641e-12 5.72447e-12 -1.51303e-12 9.68277e-12 5.11594e-12 -1.12095e-12 1.09893e-11 4.57091e-12 -1.79914e-12 1.11038e-11 3.38359e-12 4.51544e-12 8.85192e-12 8.74607e-12 -2.20243e-12 1.32708e-11 5.76449e-12 -2.21282e-12 1.3687e-11 4.4186e-12 -3.76718e-12 1.45564e-11 4.94254e-12 -1.73814e-12 1.60327e-11 3.92226e-12 1.00295e-11 1.17096e-11 7.79718e-12 -9.56698e-13 1.2311e-11 4.98929e-12 -1.15754e-12 1.37413e-11 1.9571e-12 -5.83099e-12 1.22614e-11 2.68519e-12 -5.17385e-13 1.42158e-11 2.10583e-12 8.17342e-12 1.07012e-11 9.60586e-12 1.3544e-12 9.15171e-12 3.85531e-12 -2.29673e-13 6.28449e-12 -2.4774e-13 -2.78052e-12 7.35713e-12 1.14576e-12 1.1756e-12 8.67988e-12 4.70666e-13 5.60312e-12 6.80119e-12 -2.07938e-12 -3.05366e-13 -1.41867e-12 -2.22998e-12 -6.78328e-13 -5.83375e-13 -1.46527e-12 -9.38587e-13 -6.81705e-13 -2.22158e-12 -9.16954e-13 -2.42091e-13 -1.08413e-12 1.3954e-13 -4.11394e-14 6.59709e-12 5.43281e-12 -3.61416e-13 2.02798e-12 -6.60146e-14 -1.75815e-12 3.0412e-12 7.85443e-13 -1.9168e-12 5.77946e-12 3.30841e-13 -1.33204e-12 3.73542e-12 2.11723e-12 -5.09952e-12 8.00292e-12 7.42368e-12 -5.78403e-12 2.64914e-12 -1.39214e-13 -6.27411e-12 6.20245e-13 9.27381e-12 -5.15681e-12 4.03636e-12 2.93792e-12 -1.45438e-12 2.28323e-12 3.64835e-12 -4.40792e-12 1.18332e-11 2.22407e-11 3.35452e-12 5.65552e-12 9.80808e-12 6.28441e-12 -2.97778e-13 2.96063e-12 -1.11536e-12 1.17369e-12 5.61323e-12 3.60816e-12 2.23079e-12 1.38337e-11 7.73298e-12 2.11735e-11 1.43187e-11 1.45558e-11 5.33011e-12 2.57455e-12 -6.00592e-13 -2.48144e-12 -3.51362e-12 1.09311e-12 -4.48446e-13 3.12043e-12 8.37275e-13 -4.56922e-12 -9.44633e-12 -4.54854e-12 -1.41863e-11 -1.40238e-11 -1.13648e-11 -7.04047e-12 -1.8187e-11 -6.15744e-12 -5.64482e-12 -1.09149e-11 -9.74839e-12 -8.49612e-12 -2.16602e-11 -1.12152e-11 -9.4153e-12 -2.00377e-11 -1.09736e-11 7.26503e-12 -1.74928e-11 -3.58916e-12 -6.21204e-12 -1.63964e-11 4.16758e-13 -5.43455e-12 -1.18079e-11 -4.08713e-12 -5.30486e-12 -2.31605e-11 -2.43181e-12 -7.60603e-12 -1.7697e-11 -9.82033e-12 2.46837e-11 -6.53056e-12 1.63091e-11 -5.59501e-12 -4.55728e-12 1.75571e-11 -4.45784e-12 -8.41841e-12 1.48151e-11 -4.37859e-12 -4.79573e-12 8.97852e-12 -4.92583e-12 -9.17559e-12 8.64638e-12 1.66859e-11 1.64934e-12 1.32733e-11 1.08373e-12 2.8895e-12 1.18602e-11 2.42586e-13 2.29657e-13 1.23143e-11 -5.43851e-13 5.57401e-12 1.54009e-11 -1.4324e-12 -7.44666e-12 1.34435e-11 3.5503e-12 2.48956e-12 2.49722e-12 -5.69081e-13 2.77447e-12 2.63463e-12 -4.96881e-13 1.37477e-12 1.04052e-12 -9.42853e-13 4.50834e-12 7.47909e-13 -9.41245e-13 -1.21218e-12 2.262e-12 -2.1165e-12 9.74795e-13 -4.60483e-12 -4.02894e-12 1.3572e-12 -4.14736e-12 -4.00071e-12 9.09783e-13 -6.58586e-12 -3.28657e-12 2.8506e-12 -5.45672e-12 -2.23528e-12 3.9529e-13 -3.81652e-12 -7.51078e-12 1.38833e-12 -9.7641e-12 -5.72447e-12 1.51303e-12 -9.68277e-12 -5.11594e-12 1.12095e-12 -1.09893e-11 -4.57091e-12 1.79914e-12 -1.11038e-11 -3.38359e-12 -4.51544e-12 -8.85192e-12 -8.74607e-12 2.20243e-12 -1.32708e-11 -5.76449e-12 2.21282e-12 -1.3687e-11 -4.4186e-12 3.76718e-12 -1.45564e-11 -4.94254e-12 1.73814e-12 -1.60327e-11 -3.92226e-12 -1.00295e-11 -1.17096e-11 -7.79718e-12 9.56698e-13 -1.2311e-11 -4.98929e-12 1.15754e-12 -1.37413e-11 -1.9571e-12 5.83099e-12 -1.22614e-11 -2.68519e-12 5.17385e-13 -1.42158e-11 -2.10583e-12 -8.17342e-12 -1.07012e-11 -9.60586e-12 -1.3544e-12 -9.15171e-12 -3.85531e-12 2.29673e-13 -6.28449e-12 2.4774e-13 2.78052e-12 -7.35713e-12 -1.14576e-12 -1.1756e-12 -8.67988e-12 -4.70666e-13 -5.60312e-12 -6.80119e-12 ) ; } inlet { type calculated; value nonuniform List<scalar> 15 ( -1299.9 -1300.2 -1299.9 -1299.9 -1300.2 -1299.9 -1299.9 -1300.2 -1299.9 -1299.9 -1300.2 -1299.9 -1299.9 -1300.2 -1299.9 ) ; } inletWalls { type calculated; value uniform 0; } outletInlet { type cyclicAMI; value nonuniform List<scalar> 15 ( 1142.88 1148.44 1193.74 1187.94 1226.65 1231.94 1261.39 1277.27 1305.11 1324.71 1362.55 1396.57 1451.88 1556.34 1432.59 ) ; } } // ************************************************************************* //
[ "brent.shambaugh@gmail.com" ]
brent.shambaugh@gmail.com
963dc43da22f6caf70f34a40c07092cfcc737a9c
ecbf53ba2ed807597173f35a52a4a0d191ae4669
/src/PID.cpp
508b0d433968acb3b020538dd2afb11788138f32
[]
no_license
tigeryu8900/PID-controller
90bcc8711af7655c1219fb73dd5f949c842a2a5a
85d430d86c81d2b63c3f93107b52bc790dd8ffcf
refs/heads/master
2020-06-14T04:32:26.337396
2019-07-04T22:31:51
2019-07-04T22:31:51
194,901,033
1
0
null
null
null
null
UTF-8
C++
false
false
2,687
cpp
// // Created by tiger on 7/2/2019. // #include "PID.h" namespace PID { int64_t PID::nanos() { return std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::time_point_cast<std::chrono::nanoseconds>( (std::chrono::high_resolution_clock::now())).time_since_epoch()).count(); } PID::PID(double setPoint, kpid_t kpid, double clampingLimit = -1, double cutoffFrequency = -1) : _setPoint(setPoint), _kpid(kpid), _clampingLimit(clampingLimit), _lpf(cutoffFrequency) { _startTime = _previousTime = nanos(); std::this_thread::sleep_for(std::chrono::milliseconds(2)); } /* double PID::next(double input) { // std::cout << "input: " << input << std::endl; if (_lpf.getCutOffFrequency() > 0) input = _lpf.update(input); static double previousInput = input; int64_t currentTime = nanos(); _integral += static_cast<double>(currentTime - _previousTime) * input; double p = _setPoint - input; double i = _setPoint - _integral / static_cast<double>(currentTime - _previousTime); double d = (input - previousInput) * (_setPoint - (input + previousInput) / 2); // std::cout << "input: " << input << " time lapse: " << currentTime - _previousTime << " p: " << p << " i: " << i << " d: " << d << std::endl; // std::cout << "_setPoint: " << _setPoint << " _integral: " <<_integral << " elapsed time: " << // static_cast<double>(currentTime - _previousTime) << std::endl; previousInput = input; _previousTime = currentTime; return p * _kpid.p + ((_clampingLimit > 0 && std::abs(i) > _clampingLimit) ? 0 : (i * _kpid.i)) + d * _kpid.d; } */ double PID::next(double input) { static double previousInput = input; int64_t now = nanos(); /*Compute all the working error variables*/ double error = _setPoint - input; double dInput = (input - previousInput); _integral += (_kpid.i * error) - _kpid.p * dInput; // if(outputSum > outMax) outputSum= outMax; // else if(outputSum < outMin) outputSum= outMin; /*Add Proportional on Error, if P_ON_E is specified*/ double output = _kpid.p * error + _integral - _kpid.d * dInput; // if(output > outMax) output = outMax; // else if(output < outMin) output = outMin; /*Remember some variables for next time*/ previousInput = input; _previousTime = now; return output; } void PID::setkP(double value) { _kpid.p = value; } void PID::setkI(double value) { _kpid.i = value; } void PID::setkD(double value) { _kpid.d = value; } void PID::setkpid(kpid_t value) { _kpid = value; } kpid_t PID::getkpid() { return _kpid; } void PID::setValue(double value) { _setPoint = value; } double PID::getValue() { return _setPoint; } } // namespace PID
[ "tigeryu8900@gmail.com" ]
tigeryu8900@gmail.com
d428ae608e9bb7d8da194c3ef93e21e7d551e5cd
fa39a27d0915c551735418f69704bfc024b9cc49
/C++/C++PrimerPlus/11/1/vector.h
4dc1d3ee40c796612a631b4df0abac97d93e6248
[]
no_license
fenneishi/learningCode
99c125fa554079a9799fb7893d8d665b04cd7581
cc95ac44d74e285065ad1cea84e057ba5f6c56d2
refs/heads/master
2020-04-29T11:50:54.746482
2019-03-17T15:05:23
2019-03-17T15:05:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,641
h
#ifndef VECTOR_H_ #define VECTOR_H_ #include <iostream> #include <fstream> namespace VECTOR { class Vector { public: enum Mode{RECT,POL};//RECT for rectangle,POL for Polar modes; private: Mode _mode;//RECT or POL double _x; double _y; double _mag;//length double _ang;//direction in degrees //private methods for setting values void _set_x(); void _set_y(); void _set_mag(); void _set_ang(); public: // construct Vector():_x(0),_y(0),_mag(0),_ang(0),_mode(RECT){}; Vector(double a,double b,Mode mode=RECT); void reset(double a,double b,Mode mode=RECT); // get Value double getX()const{return _x;} double getY()const{return _y;} double getmag()const{return _mag;} double getang()const{return _ang;} // change mode void toPOL(){_mode=POL;} void toRECT(){_mode=RECT;} // overload operator Vector operator+(const Vector & v) const{return Vector(_x+v._x,_y+v._y);} Vector operator-(const Vector & v) const{return Vector(_x-v._x,_y+v._y);} Vector operator-() const{return Vector(-_x,-_y);}; Vector operator*(int num) const{return Vector(_x*num,_y*num);}; friend Vector operator*(int num,const Vector &v){return Vector(v._x*num,v._y*num);}; friend std::ostream & operator<<(std::ostream & os,const Vector & v); friend std::ofstream & operator<<(std::ofstream & os,const Vector & v); // destruct ~Vector(){}; }; } // VECTOR # endif
[ "fenneishi@163.com" ]
fenneishi@163.com
8a4cf5b7da86fa5335d7a9ca59622dd477c472d3
3594d75edecb33d285b1dfed6107ee960d440657
/base/i18n/streaming_utf8_validator_perftest.cc
18b91ab9273b1218a94d6bc68a7024021fd5a603
[ "BSD-3-Clause" ]
permissive
Lynskylate/chromium-base-bazel
fa3f87822e56446ff2228ad4402d6c075681e805
e68247d002809f0359e28ee7fc6c5c33de93ce9d
refs/heads/master
2022-04-29T03:13:18.519535
2018-11-20T01:11:12
2018-11-20T01:11:12
259,334,137
1
2
null
null
null
null
UTF-8
C++
false
false
8,636
cc
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // All data that is passed through a WebSocket with type "Text" needs to be // validated as UTF8. Since this is done on the IO thread, it needs to be // reasonably fast. // We are only interested in the performance on valid UTF8. Invalid UTF8 will // result in a connection failure, so is unlikely to become a source of // performance issues. #include "base/i18n/streaming_utf8_validator.h" #include <stddef.h> #include <string> #include "base/bind.h" #include "base/callback.h" #include "base/macros.h" #include "base/strings/string_util.h" #include "base/strings/stringprintf.h" #include "base/test/perf_time_logger.h" #include "gtest/gtest.h" namespace base { namespace { // We want to test ranges of valid UTF-8 sequences. These ranges are inclusive. // They are intended to be large enough that the validator needs to do // meaningful work while being in some sense "realistic" (eg. control characters // are not included). const char kOneByteSeqRangeStart[] = " "; // U+0020 const char kOneByteSeqRangeEnd[] = "~"; // U+007E const char kTwoByteSeqRangeStart[] = "\xc2\xa0"; // U+00A0 non-breaking space const char kTwoByteSeqRangeEnd[] = "\xc9\x8f"; // U+024F small y with stroke const char kThreeByteSeqRangeStart[] = "\xe3\x81\x82"; // U+3042 Hiragana "a" const char kThreeByteSeqRangeEnd[] = "\xe9\xbf\x83"; // U+9FC3 "to blink" const char kFourByteSeqRangeStart[] = "\xf0\xa0\x80\x8b"; // U+2000B const char kFourByteSeqRangeEnd[] = "\xf0\xaa\x9a\xb2"; // U+2A6B2 // The different lengths of strings to test. const size_t kTestLengths[] = {1, 32, 256, 32768, 1 << 20}; // Simplest possible byte-at-a-time validator, to provide a baseline // for comparison. This is only tried on 1-byte UTF-8 sequences, as // the results will not be meaningful with sequences containing // top-bit-set bytes. bool IsString7Bit(const std::string& s) { for (std::string::const_iterator it = s.begin(); it != s.end(); ++it) { if (*it & 0x80) return false; } return true; } // Assumes that |previous| is a valid UTF-8 sequence, and attempts to return // the next one. Is just barely smart enough to iterate through the ranges // defined about. std::string NextUtf8Sequence(const std::string& previous) { DCHECK(StreamingUtf8Validator::Validate(previous)); std::string next = previous; for (int i = static_cast<int>(previous.length() - 1); i >= 0; --i) { // All bytes in a UTF-8 sequence except the first one are // constrained to the range 0x80 to 0xbf, inclusive. When we // increment past 0xbf, we carry into the previous byte. if (i > 0 && next[i] == '\xbf') { next[i] = '\x80'; continue; // carry } ++next[i]; break; // no carry } DCHECK(StreamingUtf8Validator::Validate(next)) << "Result \"" << next << "\" failed validation"; return next; } typedef bool (*TestTargetType)(const std::string&); // Run fuction |target| over |test_string| |times| times, and report the results // using |description|. bool RunTest(const std::string& description, TestTargetType target, const std::string& test_string, int times) { base::PerfTimeLogger timer(description.c_str()); bool result = true; for (int i = 0; i < times; ++i) { result = target(test_string) && result; } timer.Done(); return result; } // Construct a string by repeating |input| enough times to equal or exceed // |length|. std::string ConstructRepeatedTestString(const std::string& input, size_t length) { std::string output = input; while (output.length() * 2 < length) { output += output; } if (output.length() < length) { output += ConstructRepeatedTestString(input, length - output.length()); } return output; } // Construct a string by expanding the range of UTF-8 sequences // between |input_start| and |input_end|, inclusive, and then // repeating the resulting string until it equals or exceeds |length| // bytes. |input_start| and |input_end| must be valid UTF-8 // sequences. std::string ConstructRangedTestString(const std::string& input_start, const std::string& input_end, size_t length) { std::string output = input_start; std::string input = input_start; while (output.length() < length && input != input_end) { input = NextUtf8Sequence(input); output += input; } if (output.length() < length) { output = ConstructRepeatedTestString(output, length); } return output; } struct TestFunctionDescription { TestTargetType function; const char* function_name; }; bool IsStringUTF8(const std::string& str) { return base::IsStringUTF8(base::StringPiece(str)); } // IsString7Bit is intentionally placed last so it can be excluded easily. const TestFunctionDescription kTestFunctions[] = { {&StreamingUtf8Validator::Validate, "StreamingUtf8Validator"}, {&IsStringUTF8, "IsStringUTF8"}, {&IsString7Bit, "IsString7Bit"}}; // Construct a test string from |construct_test_string| for each of the lengths // in |kTestLengths| in turn. For each string, run each test in |test_functions| // for a number of iterations such that the total number of bytes validated // is around 16MB. void RunSomeTests( const char format[], base::Callback<std::string(size_t length)> construct_test_string, const TestFunctionDescription* test_functions, size_t test_count) { for (size_t i = 0; i < arraysize(kTestLengths); ++i) { const size_t length = kTestLengths[i]; const std::string test_string = construct_test_string.Run(length); const int real_length = static_cast<int>(test_string.length()); const int times = (1 << 24) / real_length; for (size_t test_index = 0; test_index < test_count; ++test_index) { EXPECT_TRUE(RunTest(StringPrintf(format, test_functions[test_index].function_name, real_length, times), test_functions[test_index].function, test_string, times)); } } } TEST(StreamingUtf8ValidatorPerfTest, OneByteRepeated) { RunSomeTests("%s: bytes=1 repeated length=%d repeat=%d", base::Bind(ConstructRepeatedTestString, kOneByteSeqRangeStart), kTestFunctions, 3); } TEST(StreamingUtf8ValidatorPerfTest, OneByteRange) { RunSomeTests("%s: bytes=1 ranged length=%d repeat=%d", base::Bind(ConstructRangedTestString, kOneByteSeqRangeStart, kOneByteSeqRangeEnd), kTestFunctions, 3); } TEST(StreamingUtf8ValidatorPerfTest, TwoByteRepeated) { RunSomeTests("%s: bytes=2 repeated length=%d repeat=%d", base::Bind(ConstructRepeatedTestString, kTwoByteSeqRangeStart), kTestFunctions, 2); } TEST(StreamingUtf8ValidatorPerfTest, TwoByteRange) { RunSomeTests("%s: bytes=2 ranged length=%d repeat=%d", base::Bind(ConstructRangedTestString, kTwoByteSeqRangeStart, kTwoByteSeqRangeEnd), kTestFunctions, 2); } TEST(StreamingUtf8ValidatorPerfTest, ThreeByteRepeated) { RunSomeTests( "%s: bytes=3 repeated length=%d repeat=%d", base::Bind(ConstructRepeatedTestString, kThreeByteSeqRangeStart), kTestFunctions, 2); } TEST(StreamingUtf8ValidatorPerfTest, ThreeByteRange) { RunSomeTests("%s: bytes=3 ranged length=%d repeat=%d", base::Bind(ConstructRangedTestString, kThreeByteSeqRangeStart, kThreeByteSeqRangeEnd), kTestFunctions, 2); } TEST(StreamingUtf8ValidatorPerfTest, FourByteRepeated) { RunSomeTests("%s: bytes=4 repeated length=%d repeat=%d", base::Bind(ConstructRepeatedTestString, kFourByteSeqRangeStart), kTestFunctions, 2); } TEST(StreamingUtf8ValidatorPerfTest, FourByteRange) { RunSomeTests("%s: bytes=4 ranged length=%d repeat=%d", base::Bind(ConstructRangedTestString, kFourByteSeqRangeStart, kFourByteSeqRangeEnd), kTestFunctions, 2); } } // namespace } // namespace base
[ "damian@pecke.tt" ]
damian@pecke.tt
be16e82ce1c2266ebdbcf45b9409e81ea4a1f24f
14e18690460ab3fbfdaa24190838c4643dce0089
/src/usDotx/us_usx_frame.h
b206d4357a08700c8c2c74fb120b94e10219a678
[]
no_license
MrBigDog/MyProject
e864265b3e299bf6b3b05e3af33cbfcfd7d043ea
a0326b0d5f4c56cd8d269b3efbb61b402d61430c
refs/heads/master
2021-09-10T21:56:22.886786
2018-04-03T01:10:57
2018-04-03T01:10:57
113,719,751
3
0
null
null
null
null
UTF-8
C++
false
false
1,272
h
/////////////////////////////////////////////////////////////////////////// // // This source file is part of Uniscope Virtual Globe // Copyright (c) 2008-2009 by The Uniscope Team . All Rights Reserved // /////////////////////////////////////////////////////////////////////////// // // Filename: us_usx_frame.h // Author : Uniscope Team // Modifier: Uniscope Team // Created : // Purpose : usx_frame class // Reference : // /////////////////////////////////////////////////////////////////////////// #ifndef _US_USX_FRAME_H_ #define _US_USX_FRAME_H_ #include <usDotx/Export.h> #include <usUtil/us_matrix4.h> #include <usUtil/us_common_file.h> namespace uniscope_globe { class usx_mesh; class usx_animation; class USDOTX_EXPORT usx_frame { public: usx_frame(void); virtual ~usx_frame(void); usx_frame* find_frame(cpstr frame_name); void reset(void); void update_hierarchy(matrix4<double> in_mat); usx_frame* clone(void); public: ustring m_name; matrix4<double> m_original_mat; matrix4<double> m_transform_mat; matrix4<double> m_combined_mat; usx_frame* m_frame_parent; usx_frame* m_frame_sibling; usx_frame* m_frame_first_child; usx_animation* m_animation; usx_mesh* m_mesh; }; } #endif // _US_USX_FRAME_H_
[ "635669462@qq.com" ]
635669462@qq.com
59eca04ab9660a42342d828404b0ac38ddd43f56
2999c075c4e39d2f6d84e2281c90e8d925c800ee
/R-Type/ClientFinal/ClientFinal/GraphicalElem.h
6d437b8b2996065404b6aaaf0432316a4cd53101
[]
no_license
lelabo-m/R-Type
b69c31aae2c3451a508059e5980c8e3b5fb572a3
68933e5b979b6ae3ef0d9d2bc1b066212cc58391
refs/heads/master
2021-09-28T02:48:51.492494
2015-04-25T22:03:01
2015-04-25T22:03:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
673
h
#ifndef GRAPHICALELEM_H_ #define GRAPHICALELEM_H_ #include "Vector2D.h" #include "SFMLanimatedSprite.h" class GraphicalElem { public: GraphicalElem(const std::string& name, size_t classid, size_t id, size_t x, size_t y, size_t v); const std::string& Name() const; size_t Id() const; size_t ClassId() const; Vector2D& Position(); size_t Velocity() const; size_t Animation() const; SFMLanimation* GetAnimation(); void Play(size_t, bool loop = true); void Draw(); private: bool _loop; std::string _name; size_t _classid; size_t _id; Vector2D _pos; size_t _velocity; SFMLanimation* _animation; }; #endif /* !GRAPHICALELEM_H_*/
[ "christopher.millon@outlook.com" ]
christopher.millon@outlook.com
5c491d44347635876491e06678f089a27542a728
6d70bf6047e59bb02406885d0497cce3722808cd
/RosalindProblems/problem4/Problem4Solver.cpp
fa404d8a604da006af5b5dee1e47afb7e3823239
[]
no_license
dteixeira/rosalind-problems
2d83b7ff5a297bf81b12764d07bc22ae38af8c2f
95cb89a239ebd58fed338c8b4431e0d658401a7c
refs/heads/master
2021-05-26T12:17:03.316589
2013-09-03T14:58:45
2013-09-03T14:58:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,762
cpp
#include "Problem4Solver.h" Problem4Solver::Problem4Solver() : ISolver("problem4/") { } Problem4Solver::~Problem4Solver() { } bool Problem4Solver::solve() { if(!reader_->isFileOpen() || !writer_->isFileOpen()) return false; else { // Read input data. int nBytes = static_cast<int>(reader_->getFileSize()); std::unique_ptr<char[]> buffer(new char[nBytes * sizeof(char)]); reader_->read(buffer.get(), nBytes); reader_->closeFile(); std::stringstream sstream(std::string(buffer.get(), nBytes)); int nMonths = 0; int nPairs = 0; sstream >> nMonths >> nPairs; // Compute the solution. monthPairs_ = std::unique_ptr<long long[]>(new long long[nMonths + 1]); std::fill(monthPairs_.get(), monthPairs_.get() + nMonths + 1, 0); monthPairs_[1] = 1; monthPairs_[2] = 1; long long result = fibonacciSolveRecursive(nMonths, nPairs); // Write answer. std::array<char, 128> toWrite; sprintf(toWrite.data(), "%lld", result); writer_->write(toWrite.data(), strlen(toWrite.data())); writer_->closeFile(); return true; } } long long Problem4Solver::fibonacciSolveRecursive(int nMonths, int& nPairs) { if(!monthPairs_[nMonths]) { if(!monthPairs_[nMonths - 1]) monthPairs_[nMonths - 1] = fibonacciSolveRecursive(nMonths - 1, nPairs); if(!monthPairs_[nMonths - 2]) monthPairs_[nMonths - 2] = fibonacciSolveRecursive(nMonths - 2, nPairs); monthPairs_[nMonths] = monthPairs_[nMonths - 1] + monthPairs_[nMonths - 2] * nPairs; } return monthPairs_[nMonths]; } std::string Problem4Solver::getName() { return "Problem 4"; }
[ "diogo.andre.teixeira@gmail.com" ]
diogo.andre.teixeira@gmail.com
e25dd31be51ffbcda0be81d6de5d118cb75357e6
3a79a5211d34468f88e41cb9b9ca6110dcad6d26
/Engine/include/Engine/Engine.h
00c74cd1f1dde614886030b1451bc59d448a8988
[ "MIT" ]
permissive
vazgriz/VoxelGameOld
6e84c8fd50b452f29c5d5ec6398c41afe3f75744
28b85445dc64606aecd840c977fb0557008e37a0
refs/heads/master
2022-12-05T16:23:00.499974
2020-08-20T22:21:26
2020-08-20T22:21:26
233,920,335
7
1
null
null
null
null
UTF-8
C++
false
false
1,034
h
#pragma once #include "Engine/Buffer.h" #include "Engine/Camera.h" #include "Engine/Clock.h" #include "Engine/Mesh.h" #include "Engine/Graphics.h" #include "Engine/Image.h" #include "Engine/Input.h" #include "Engine/MemoryManager.h" #include "Engine/Mesh.h" #include "Engine/RenderGraph/RenderGraph.h" #include "Engine/System.h" #include "Engine/Window.h" #include "FreeListAllocator.h" namespace VoxelEngine { class RenderGraph; class Engine { public: Engine(); ~Engine(); Graphics& getGraphics() { return *m_graphics; } SystemGroup& getUpdateGroup() { return *m_updateGroup; } RenderGraph& renderGraph() { return *m_renderGraph; } void run(); void addWindow(Window& window); void setRenderGraph(RenderGraph& renderGraph); private: Window* m_window; RenderGraph* m_renderGraph; std::unique_ptr<SystemGroup> m_updateGroup; std::unique_ptr<Clock> m_updateClock; std::unique_ptr<Graphics> m_graphics; }; }
[ "contact@ryan-vazquez.dev" ]
contact@ryan-vazquez.dev
4db4ff7665a6118e3c6952df9b614bcfea709d64
39d5249686d1b7c2fca9bc33be0c0f6949378bba
/test_ice_cpp/src/server.cpp
d906b2d406a2d4b16c14ae24ce12477db71d9d1b
[]
no_license
marcinlos/rozprochy
1896526dd9dce89d3cc43fc26c9ecede2015d643
32cdc88552778a69ed5def499213b2c50e515f65
refs/heads/master
2021-01-22T13:57:27.657818
2014-09-06T14:21:09
2014-09-06T14:21:09
8,122,196
0
1
null
null
null
null
UTF-8
C++
false
false
1,068
cpp
#include <iostream> #include <string> #include <Ice/Ice.h> #include "generated/Printer.h" class PrinterI: public rozprochy::iiice::test::Printer { virtual void print(const std::string& text, const Ice::Current&) { std::cout << text << std::endl; } }; int main(int argc, char* argv[]) { int status = 0; Ice::CommunicatorPtr ic; try { ic = Ice::initialize(argc, argv); Ice::ObjectAdapterPtr adapter = ic->createObjectAdapterWithEndpoints( "SimplePrinterAdapter", "default -p 10000"); Ice::ObjectPtr object = new PrinterI; adapter->add(object, ic->stringToIdentity("SimplePrinter")); adapter->activate(); ic->waitForShutdown(); } catch (const Ice::Exception& e) { std::cerr << e << std::endl; status = 1; } if (ic) { try { ic->destroy(); } catch (const Ice::Exception& e) { std::cerr << e << std::endl; status = 1; } } return status; }
[ "losiu99@gazeta.pl" ]
losiu99@gazeta.pl
8d0981eacafa86785cf2d84b40ea68cdf0964a2b
5a7fe0ecaa45bcc169cba4c622c694e2ebab4164
/Assignment_2_2.cpp
9cd940ecf8147d6562dbc3325f67cc28c4822036
[]
no_license
bipulkmr-crypto/data_structures_1
de48514b323f2d99cfc2587f36ad5601b28bdd17
ed976be5e51fd1c5b2918d421132c052473884a1
refs/heads/master
2023-06-07T06:36:41.634531
2021-05-27T11:04:06
2021-05-27T11:04:06
382,251,172
0
0
null
null
null
null
UTF-8
C++
false
false
2,013
cpp
// // this is linear recursion wilh time complexity of O(n) // //The depth of the tree is n and width is 1 // //the disadvantange is the time taken is comparitively more than the iterative version of the solution and there is also change of stack overflow in case of normal compiler // //advantage is that some complex problems like NP hard problems can be solved easily by reccursion and it is more intuitive and easier to understand // //space complexity is o(n) as we know the space complexity is directly proportional to the depth of the reccursive tree // //time complexity is also O(n) // #include <bits/stdc++.h> // using namespace std; // int mini = INT_MAX; // int n; // int arr[10001]; // int mx = INT_MIN; // bool good(int x) // { // int val = sqrt(x); // return ((val * val) == x); // } // void solve(int pos) // { // if (pos >= n) // return; // else // { // if (good(arr[pos])) // { // mini = min(arr[pos], mini); // mx = max(arr[pos], mx); // } // solve(pos + 1); // } // } // int main() // { // cin >> n; // int i; // for (i = 0; i < n; i++) // cin >> arr[i]; // solve(0); // cout << mini << " " << mx << endl; // } #include <bits/stdc++.h> using namespace std; int mini = INT_MAX; int n; int arr[10001]; int mx = INT_MIN; // int sum = 1; int solve(int n, int p) { if (p < n) { return 0; } else if (n < 2) { return n; } else { if (n % p == 0) { return (p + solve(n / p, p + 1)); } else { return (solve(n, p + 1)); } } } int main() { cin >> n; int i; for (i = 0; i < n; i++) { cin >> arr[i]; } for (i = 0; i < n; i++) { int sum = solve(arr[i], 2); if (sum == arr[i]) { mini = min(arr[i], mini); mx = max(arr[i], mx); } } cout << mini << " " << mx << endl; }
[ "bipul1707@gmail.com" ]
bipul1707@gmail.com
9ca217555f87e4f509cbcd406830ada1ce0dab81
808b3a49735d93a33802b86e122df29ffb61209e
/programmers/소수찾기.c++
ccdd67502fb41d19e46a876d2a595848fe44492a
[]
no_license
KingJoo/programmers
0deb1a9c5c615d0583f8142cd395d33186c3c255
e51b2dadebdc75d10b07ea567775784e2ffa3cb8
refs/heads/master
2023-08-12T03:40:43.243599
2021-09-28T11:20:25
2021-09-28T11:20:25
410,730,410
0
0
null
null
null
null
UTF-8
C++
false
false
315
#include <string> #include <vector> #include <cmath> using namespace std; int solution(int n) { vector<bool> a(n+1,0); int c=0; for(int i=2;i<=sqrt(n);i++) if(!a[i]) for(int j=i+i;j<=n;j+=i) a[j]=1; for(int i=2;i<=n;i++) if(!a[i]) c++; return c; }
[ "jkangju@gmail.com" ]
jkangju@gmail.com
27720b11794a0bc03d554e694835d489bc0638b0
a2111a80faf35749d74a533e123d9da9da108214
/raw/pmsb13/pmsb13-data-20130530/sources/6ndbc4zuiueuaiyv/2013-04-11T09-43-51.121+0200/sandbox/my_sandbox/apps/index_a2/index_a2.cpp
13251213075b53f175b72a84513f756b54c797a4
[ "MIT" ]
permissive
bkahlert/seqan-research
f2c550d539f511825842a60f6b994c1f0a3934c2
21945be863855077eec7cbdb51c3450afcf560a3
refs/heads/master
2022-12-24T13:05:48.828734
2015-07-01T01:56:22
2015-07-01T01:56:22
21,610,669
1
0
null
null
null
null
UTF-8
C++
false
false
666
cpp
#include <seqan/sequence.h> #include <seqan/index.h> using namespace seqan; int main() { String<Dna5> genome = "ACGTACGTACGTN"; Index<String<Dna5>, IndexEsa<> > esaIndex(genome); Finder<Index<String<Dna5>, IndexEsa<> > > esaFinder(esaIndex); // String<char> text = "This is the first example"; // Index<String<char>, FMIndex<> > index(text); /* find(esaFinder, "ACGT"); // first occurrence of "ACGT" position(esaFinder); // -> 0 find(esaFinder, "ACGT"); // second occurrence of "ACGT" position(esaFinder); // -> 4 find(esaFinder, "ACGT"); // third occurrence of "ACGT" position(esaFinder); // -> 8 */ return 0; }
[ "mail@bkahlert.com" ]
mail@bkahlert.com
51b772f1362e56a179e5ced790a0101e8417fea9
3714880a44d422dcfd4d9043f3abc1518b9fd823
/src/bot/modules/AI/AIAnswer.cpp
de06700ff54fa907cde764fb8d4d88fe09b29e6c
[ "MIT" ]
permissive
fkrauthan/IrcBot
b17880a6b309ef780e234aa4b4c460ee3732d47f
63620a12f1873a0865bb2d63f81434a6fd950c5d
refs/heads/master
2021-01-20T05:31:16.121399
2014-05-23T20:21:33
2014-05-23T20:21:33
5,297,924
2
0
null
2012-08-04T20:37:20
2012-08-04T19:09:15
C++
UTF-8
C++
false
false
2,040
cpp
/* * AIAnswer.cpp * * Created on: 13.07.2011 * Author: fkrauthan */ #include "AIAnswer.h" #include <libbase/StringUtils/StringUtils.h> #include <ticpp/ticpp.h> #include <cstdlib> AIAnswer::AIAnswer(ticpp::Element* node) { mCategory = node->GetAttribute("name"); ticpp::Element* answers = node->FirstChildElement("answers", false); if(answers) { ticpp::Iterator<ticpp::Node> child; for(child = child.begin(answers); child!=child.end(); ++child) { mAnswers.push_back((*child).ToElement()->GetText()); } } ticpp::Element* categories = node->FirstChildElement("categories", false); if(categories) { ticpp::Iterator<ticpp::Node> child; for(child = child.begin(categories); child!=child.end(); ++child) { AIAnswer* tmpAnswer = new AIAnswer((*child).ToElement()); mChilds[tmpAnswer->getCategory()] = tmpAnswer; } } } AIAnswer::~AIAnswer() { cleanUpAll(); } const std::string& AIAnswer::getCategory() { return mCategory; } std::string AIAnswer::getAnswer(const std::string category, std::map<std::string, std::string> params) { if(category == "") { int pos = std::rand() % mAnswers.size(); std::string ret = mAnswers[pos]; std::map<std::string, std::string>::iterator iter; for(iter=params.begin(); iter!=params.end(); ++iter) { ret = Base::StringUtils::replaceAll(ret, iter->first, iter->second); } return ret; } else { size_t pos = category.find_first_of('/'); std::map<std::string, AIAnswer*>::iterator iter; if(pos == std::string::npos) { iter = mChilds.find(category); } else { iter = mChilds.find(category.substr(0, pos)); } if(iter != mChilds.end()) { if(pos == std::string::npos) { return iter->second->getAnswer("", params); } else { return iter->second->getAnswer(category.substr(pos+1), params); } } return ""; } } void AIAnswer::cleanUpAll() { std::map<std::string, AIAnswer*>::iterator iter; for(iter=mChilds.begin(); iter!=mChilds.end(); ++iter) { delete iter->second; } mChilds.clear(); mAnswers.clear(); }
[ "mail@fkrauthan.de" ]
mail@fkrauthan.de
7bbca215e0f1d7109c1bb98b93fc236090dd47f5
2af29f0c2676c57191678f1a2f0244c364f81fa1
/Source/sn/TileTerrain.cpp
c44e8cd065027e17bbc00292d33b51ffbb628969
[ "MIT" ]
permissive
kochol/kge
7c313c0c68242e7d9eee1f4a7dd97fd60038f63e
9ffee7ab7f56481383d8f152cfa0434e2f9103c1
refs/heads/master
2020-04-26T11:28:25.158808
2018-06-30T07:26:07
2018-06-30T07:26:07
4,322,408
10
1
null
2014-05-29T20:47:11
2012-05-14T10:11:55
C
UTF-8
C++
false
false
65,270
cpp
// File name: TileTerrain.cpp // Des: This is a tile based terrain class good for strategic games // Date: 22/11/1387 // Programmers: Ali Akbar Mohammadi (Kochol) #include <stdio.h> #include "../../Include/sn/TileTerrain.h" #include "../../Include/gfx/Renderer.h" #include "../../Include/gfx/MeshManager.h" #include "../../Include/core/mem_fun.h" #include "../../Include/sn/Light.h" //#include "../../Include/io/File.h" #include <queue> typedef std::map<kge::u32, kge::sn::DecalData*> MapDecalData; namespace kge { namespace sn { //------------------------------------------------------------------------------------ // Constructor //------------------------------------------------------------------------------------ TileTerrain::TileTerrain() : m_pIndices(NULL), m_fWidth(1.0f), m_fHeight(1.0f), m_iNumVerts(0), m_iNumIndices(0), m_iNumCols(0), m_iNumRows(0), m_fXOffset(-0.5f), m_fYOffset(-0.5f), m_pTileTexture(NULL), m_pTextureID(NULL), m_pDTM(NULL), m_pTiles(NULL), m_pBlendTiles(NULL), m_iNumColspp(0), m_iNumRowspp(0), m_pTilesTemp(NULL), m_pTextureBlend(NULL), m_pTiles2(NULL), m_bWater(false), m_bCaustics(false), m_ppCausticsTextures(NULL), m_iCurrentCaustic(0), m_pCausticsTimer(NULL), m_pBlendMap(NULL), m_pVshader(NULL), m_pPshader(NULL), m_pMesh(NULL), m_pPos(NULL), m_pNorTexColor(NULL), m_bPosChanged(false), m_bNorTexChanged(false), m_bReceiveShadow(false), m_pShadowShaderCode(NULL), m_pShadowMatrix(NULL), m_pNormalMapTileTexture(NULL), m_pNormalVerts(NULL), m_shDecalWVP(0), m_shDecalAlpha(0), m_bTileTerrain2(false) { m_eNodeType = ENT_TileTerrain; m_pAABB = NULL; m_cNormal[0].c = 0x00ff0000; m_cNormal[1].c = 0x0000ff00; m_cNormal[2].c = 0x000000ff; m_cNormal[3].c = 0x00ffffff; m_pMaterial = KGE_NEW(gfx::Material)(); const char chv[] = "float4x4 matViewProjection;\n"\ "struct VS_INPUT \n"\ "{\n"\ " float4 Position : POSITION0;\n"\ " float2 Texcoord : TEXCOORD0;\n"\ "};\n"\ "struct VS_OUTPUT \n"\ "{\n"\ " float4 Position : POSITION0;\n"\ " float2 Texcoord : TEXCOORD0; \n"\ "};\n"\ "VS_OUTPUT main( VS_INPUT Input )\n"\ "{\n"\ " VS_OUTPUT Output;\n"\ " Output.Position = mul( Input.Position, matViewProjection );\n"\ " Output.Texcoord = Input.Texcoord;\n"\ " return( Output );\n"\ "}"; const char chp[] = "float fAlpha;"\ "sampler2D baseMap;\n"\ "struct PS_INPUT \n"\ "{\n"\ " float2 Texcoord : TEXCOORD0;\n"\ "};\n"\ "float4 main( PS_INPUT Input ) : COLOR0\n"\ "{\n"\ " float4 c = tex2D( baseMap, Input.Texcoord );\n"\ " c.a *= fAlpha;\n"\ " return c;\n"\ "}"; m_pVSdecal = gfx::Renderer::GetSingletonPtr()-> CreateVertexShaderFromString(chv, "main", gfx::ESV_VS2); m_shDecalWVP = m_pVSdecal->GetConstatnt("matViewProjection"); m_pPSdecal = gfx::Renderer::GetSingletonPtr()-> CreatePixelShaderFromString(chp, "main", gfx::ESV_PS2); m_shDecalAlpha = m_pPSdecal->GetConstatnt("fAlpha"); m_pDecalFun = core::mem_fun(this, &TileTerrain::SetDecalShaderParams); } // Constructor //------------------------------------------------------------------------------------ // Destructor //------------------------------------------------------------------------------------ TileTerrain::~TileTerrain() { m_vTerrainData.clear(); KGE_DELETE_ARRAY(m_pTiles); KGE_DELETE_ARRAY(m_pTiles2); KGE_DELETE_ARRAY(m_pTilesTemp); KGE_DELETE_ARRAY(m_pBlendTiles); KGE_DELETE_ARRAY(m_pNormalVerts); KGE_DELETE(m_pMaterial, Material); KGE_DELETE(m_pCausticsTimer, Timer); KGE_DELETE(m_pMesh, Mesh); KGE_DELETE_CLASS_ARRAY(m_pAABB, AABB, GetAABBcount()); } // Destructor //------------------------------------------------------------------------------------ // Karhayee ke Ghabl az render bayad anjam shvad. Mesle colision detection. //------------------------------------------------------------------------------------ void TileTerrain::PreRender(float elapsedTime) { if (m_pParent) *m_pFinalMat = (*m_pParent->GetFinalMatrix()) * (*m_pAbsMat); else *m_pFinalMat = *m_pAbsMat; if (m_bVis) { if (m_bPosChanged) { m_pMesh->m_pvbPosition->SetData(m_pPos, 0, m_iNumVerts); m_bPosChanged = false; } if (m_bNorTexChanged) { m_pMesh->m_pvbNormalTexcoord->SetData(m_pNorTexColor, 0, m_iNumVerts); if (m_pNormalMapTileTexture || m_pMaterial[0].ppTexture[1]) m_pMesh->m_pvbTangentBinormal->SetData(m_pMesh->m_pTangentBinormal, 0, m_iNumVerts); m_bNorTexChanged = false; } if ( !m_bAutoCulling) { for (int i = 0; i < GetAABBcount(); i++) { m_vVisibleParts.push_back(i); } } else { m_vVisibleParts.clear(); const math::Frustum* pFrus = m_pSnMan->GetActiveCamera()->GetFrustum(); for (int i = 0; i < GetAABBcount(); i++) { if (pFrus->Collision(&m_pAABB[i]) != math::ECT_Out ) { m_vVisibleParts.push_back(i); ///m_pSnMan->m_pSceneAABB->AddAABB(&m_pAABB[i]); } } } // Check for caustics if (m_bCaustics) { if (m_pCausticsTimer->NextFrame()) { m_iCurrentCaustic++; if (m_iCurrentCaustic >= m_iNumCausticsTextures) m_iCurrentCaustic = 0; } } m_pSnMan->RegNode(this); } } // PreRender //------------------------------------------------------------------------------------ // Render the terrain //------------------------------------------------------------------------------------ void TileTerrain::Render() { // Set decals data MapDecalData::iterator it; for (it = m_mDecalBufferData.begin(); it != m_mDecalBufferData.end(); it++) { it->second->VertexBuffer->SetData(it->second->Vertices, 0, it->second->vbOffset); } m_pRenderer->SetTransForm(m_pFinalMat); m_pRenderer->SetMaterial(m_pMaterial); if (!m_bTileTerrain2) { m_pVshader->PreRender(); m_pVshader->Render(); m_pPshader->Render(); // Set textures m_pRenderer->SetTexture(m_pTileTexture->GetTexture()); m_pRenderer->SetTexture(m_pBlendMap, 1); m_pRenderer->SetTexture(m_pTextureID, 2); m_pRenderer->SetTexture(m_pTextureBlend, 3); m_pRenderer->SetTextureParams(gfx::ETP_Point, 3); } if (m_bCaustics) m_pRenderer->SetTexture(m_ppCausticsTextures[m_iCurrentCaustic], 4); if(m_pNormalMapTileTexture) { m_pRenderer->SetTexture(m_pNormalMapTileTexture->GetTexture(), 5); } if (m_pMaterial[0].ppTexture[1]) m_pRenderer->SetTexture(m_pMaterial[0].ppTexture[1], 5); m_pRenderer->SetVertexDec(m_pMesh->m_pVertexDec); m_pRenderer->SetVertexBuffer(m_pMesh->m_pvbPosition); m_pRenderer->SetVertexBuffer(m_pMesh->m_pvbNormalTexcoord, 1); m_pRenderer->SetVertexBuffer(m_pMesh->m_pvbTangentBinormal, 2); m_pRenderer->SetIndexBuffer(m_pMesh->m_pIndexBuffer); if (!m_bTileTerrain2) { const size_t m_vVisiblePartsSize = m_vVisibleParts.size(); for (size_t i = 0; i < m_vVisiblePartsSize; ++i) { m_pRenderer->DrawTriangleList(m_iNumVerts, 1536, m_pMesh->m_pVertexDec, 0, m_vVisibleParts[i] * 1536); } m_pRenderer->SetTextureParams(gfx::ETP_Anisotropic, 3); } #ifdef DEBUG // for (int i = 0; i < m_iNumUparts * m_iNumVparts; i++) // { // m_pAABB[i].DebugRender(); // } //m_pRenderer->Disable(gfx::ERF_Lighting); //m_pRenderer->SetTexture(MAXID); //m_pRenderer->DrawLineList(m_pNormalVerts, m_iNumVerts * 2, 0, 0); //m_pRenderer->Enable(gfx::ERF_Lighting); #endif // DEBUG } // Render //------------------------------------------------------------------------------------ // Karhaee ke bad az render bayad anjam beshe. //------------------------------------------------------------------------------------ void TileTerrain::PostRender() { } // PostRender //------------------------------------------------------------------------------------ // Ezafe kardane effect be hamin gereh. //------------------------------------------------------------------------------------ bool TileTerrain::AddEffect ( efx::EffectType p, efx::Effect** ppOut ) { return false; } // AddEffect //------------------------------------------------------------------------------------ // Draw the node with/without its Materials and Transforms. //------------------------------------------------------------------------------------ void TileTerrain::Draw( bool WithMaterial , bool WithTransform, bool bPosition , bool bNormalTexcoord , bool bTangentBinormal ) { } // Draw //------------------------------------------------------------------------------------ // Creates a tile based terrain with the given size //------------------------------------------------------------------------------------ void TileTerrain::ReCreate(int numCols, int numRows, float MinHeight, float MaxHeight) { if (!m_bTileTerrain2) { if (!m_pTileTexture) { io::Logger::Log("You have to assign a TileTexture to init this terrain.", io::ELM_Error); return; } // Create the TextureID int tx, ty, mip; tx = gfx::Texture::GetPowerOf2Size(numCols, mip); ty = gfx::Texture::GetPowerOf2Size(numRows, mip); if (m_pTextureID) m_pTextureID->DecRef(); int handle = Device::GetSingletonPtr()->GetTextureManager()->Add(NULL, NULL, "TextureID"); m_pTextureID = Device::GetSingletonPtr()->GetTextureManager()->GetResource(handle); m_pTextureID->CreateTexture(tx, ty, gfx::ETF_A32B32G32R32F, 1); m_iTextureIDSizeX = tx; m_iTextureIDSizeY = ty; float* f = KGE_NEW_ARRAY(float, tx * ty * 4); int cfcf = tx * 4; float cc = 0.0f, ccy = 0.0f; for (int r = 0; r < numRows; r++) { cc = 0.0f; for (int c = 0; c < numCols; c++) { f[r * cfcf + c * 4] = cc; f[r * cfcf + c * 4 + 1] = ccy; f[r * cfcf + c * 4 + 2] = 0; f[r * cfcf + c * 4 + 3] = 0; cc += m_pTileTexture->GetU() - 4.0f * m_pTileTexture->GetdU(); } ccy += m_pTileTexture->GetV() - 4.0f * m_pTileTexture->GetdV(); } io::Logger::Log(io::ELM_Warning, "TextureID %f %f", m_pTileTexture->GetU(), m_pTileTexture->GetV()); m_pTextureID->SetData((u8*)f, tx * ty * 4 * 4); KGE_DELETE_ARRAY(f); // Create texture blend if (m_pTextureBlend) m_pTextureBlend->DecRef(); handle = Device::GetSingletonPtr()->GetTextureManager()->Add(NULL, NULL, "TextureBlend"); m_pTextureBlend = Device::GetSingletonPtr()->GetTextureManager()->GetResource(handle); m_pTextureBlend->CreateTexture(tx, ty, gfx::ETF_A8, 1); u8* temp = KGE_NEW_ARRAY(u8, tx * ty); memset(temp, 255, tx * ty); m_pTextureBlend->SetData(temp, tx * ty); KGE_DELETE_ARRAY(temp); // Create tile data holders. KGE_DELETE_ARRAY(m_pTiles); KGE_DELETE_ARRAY(m_pTiles2); KGE_DELETE_ARRAY(m_pTilesTemp); KGE_DELETE_ARRAY(m_pBlendTiles); m_pTiles = KGE_NEW_ARRAY(int, numCols * numRows); m_pTiles2 = KGE_NEW_ARRAY(int, numCols * numRows); m_pTilesTemp = KGE_NEW_ARRAY(int, numCols * numRows); m_pBlendTiles = KGE_NEW_ARRAY(u8 , numCols * numRows); } // Clear the memory m_vTerrainData.clear(); KGE_DELETE_ARRAY(m_pPos); KGE_DELETE_ARRAY(m_pNorTexColor); KGE_DELETE_ARRAY(m_pIndices); KGE_DELETE(m_pMesh, Mesh); KGE_DELETE_CLASS_ARRAY(m_pAABB, AABB, GetAABBcount()); m_iNumCols = numCols; m_iNumRows = numRows; m_iNumColspp = numCols + 1; m_iNumRowspp = numRows + 1; m_iNumVerts = (numRows + 1) * (numCols + 1); m_iNumIndices = numRows * numCols * 6; bool bRand = false; float DHeight = MaxHeight - MinHeight; printf("%f\t%f\t%f\n", DHeight, MaxHeight, MinHeight); if (DHeight > 0.0f) { bRand = true; } int k = 0; int index= 0; m_pPos = KGE_NEW_ARRAY(gfx::Vertex3, m_iNumVerts); m_pNorTexColor = KGE_NEW_ARRAY(gfx::VertexNTC, m_iNumVerts); m_pMesh = KGE_NEW(sn::Mesh)(); for (int i = 0; i <= numRows; i++) { for (int j = 0; j <= numCols; j++) { // Create terrain data TileTerrainData t; if (bRand) { t.Height = (float)(rand() % 101) / 100.0f * DHeight + MinHeight; } else t.Height = MinHeight; t.TileID = 0; m_vTerrainData.push_back(t); // Create vectors m_pPos[index].X = j * m_fWidth + m_fXOffset ; m_pPos[index].Y = t.Height; m_pPos[index].Z = i * m_fHeight + m_fYOffset; m_pNorTexColor[index].tex.X = (float)j; m_pNorTexColor[index].tex.Y = (float)i; m_pNorTexColor[index].Color = 0xffffffff; index++; } // for j } // for i // Create Indexes and split the terrain. int iu, iv; iu = ceil((float)numCols / 16.0f); iv = ceil((float)numRows / 16.0f); m_iNumUparts = iu; m_iNumVparts = iv; m_pAABB = KGE_NEW_CLASS_ARRAY(math::AABB, iu * iv); m_pIndices = KGE_NEW_ARRAY(u32, m_iNumIndices); k = 0; int numColspp = numCols + 1; for (int v = 0; v < iv; v++) { for (int u = 0; u < iu; u++) { for (int i = v * 16; i < (v + 1) * 16; i++) { if (i >= numRows) break; for (int j = u * 16; j < (u + 1) * 16; j++) { if (j >= numCols) break; m_pIndices[k ] = (i * numColspp + j) + 1; m_pIndices[k + 1] = (i * numColspp + j); m_pIndices[k + 2] = ((i + 1) * numColspp + j); m_pIndices[k + 3] = (i * numColspp + j) + 1; m_pIndices[k + 4] = ((i + 1) * numColspp + j); m_pIndices[k + 5] = ((i + 1) * numColspp + j) + 1; m_pAABB[v * iu + u].AddInternalPoint(&m_pPos[m_pIndices[k ]]); m_pAABB[v * iu + u].AddInternalPoint(&m_pPos[m_pIndices[k + 1]]); m_pAABB[v * iu + u].AddInternalPoint(&m_pPos[m_pIndices[k + 2]]); m_pAABB[v * iu + u].AddInternalPoint(&m_pPos[m_pIndices[k + 5]]); k += 6; } // for j } // for i } // for u } // for v // Create shader if (m_pVshader) { m_pVshader->DecRef(); m_pVshader = NULL; } if (m_pPshader) { m_pPshader->DecRef(); m_pPshader = NULL; } core::String VertexShaderCode, PixelShaderCode; CreateShaderCode(VertexShaderCode, PixelShaderCode); m_pVshader = gfx::Renderer::GetSingletonPtr()->CreateVertexShaderFromString (VertexShaderCode.ToCharPointer(), "main", gfx::ESV_VS3); m_pPshader = gfx::Renderer::GetSingletonPtr()->CreatePixelShaderFromString (PixelShaderCode.ToCharPointer(), "main", gfx::ESV_PS3); m_pVshader->ConnectOnPreRender(core::mem_fun(this, &TileTerrain::SetShaderParams)); m_shLit = m_pVshader->GetConstatnt("DirLit"); m_shWVP = m_pVshader->GetConstatnt("matViewProjection"); m_shView = m_pVshader->GetConstatnt("matView"); m_shfvEyePosition = m_pVshader->GetConstatnt("fvEyePosition"); if (m_bReceiveShadow) m_shShadowMat = m_pVshader->GetConstatnt("matLight"); // Calculate Normals #ifdef DEBUG KGE_DELETE_ARRAY(m_pNormalVerts); m_pNormalVerts = KGE_NEW_ARRAY(gfx::Vertex3C, m_iNumVerts * 2); #endif // DEBUG gfx::RecalculateNormals_Smooth32<gfx::VertexNTC>(m_pPos, m_pNorTexColor, m_iNumVerts, m_pIndices, m_iNumIndices); // Create Mesh m_pMesh->m_pPos = m_pPos; m_pMesh->m_pNorTexColor = m_pNorTexColor; m_pMesh->m_sName = "Tile Terrain Mesh"; m_pMesh->m_pIndices32 = m_pIndices; m_pMesh->m_NumVerts = m_iNumVerts; m_pMesh->m_NumIndices = m_iNumIndices; m_pMesh->m_pRenderer = m_pRenderer; m_pMesh->m_pVertexDec = m_pRenderer->GetVertexDec(gfx::EVT_P0NTC1BT2); if (m_pNormalMapTileTexture || m_pMaterial[0].ppTexture[1]) m_pMesh->PrepareBuffers(true, true); else m_pMesh->PrepareBuffers(false, true); m_pRenderer->SetTextureParams(gfx::ETP_Point, 1); m_pRenderer->SetTextureParams(gfx::ETP_Mirror, 1); m_pRenderer->SetTextureParams(gfx::ETP_Anisotropic, 4); m_pRenderer->SetTextureParams(gfx::ETP_Anisotropic, 5); // Create Normal lines for debug. for (int i = 0; i <= numRows; i++) { for (int j = 0; j <= numCols; j++) { //m_vTerrainData[i * numCols + j].LeftNormal->set( m_pVertices[(i * numColspp + j)].Nor.X // ,m_pVertices[(i * numColspp + j)].Nor.Y // ,m_pVertices[(i * numColspp + j)].Nor.Z); //m_vTerrainData[i * numCols + j].RightNormal->set(m_pVertices[((i + 1) * numCols + j) + 1].Nor.X // ,m_pVertices[((i + 1) * numCols + j) + 1].Nor.Y // ,m_pVertices[((i + 1) * numCols + j) + 1].Nor.Z); #ifdef DEBUG m_pNormalVerts[(i * numColspp + j) * 2 ].c = m_cNormal[0]; m_pNormalVerts[(i * numColspp + j) * 2 ].pos = m_pPos[(i * numColspp + j)]; m_pNormalVerts[(i * numColspp + j) * 2 + 1].c = m_cNormal[0]; m_pNormalVerts[(i * numColspp + j) * 2 + 1].pos = m_pPos[(i * numColspp + j)] + m_pNorTexColor[(i * numColspp + j)].Nor; #endif // DEBUG } } if (m_pDTM) m_pDTM->Init(this); } // ReCreate //------------------------------------------------------------------------------------ // Sets the tile texture //------------------------------------------------------------------------------------ void TileTerrain::SetTileTexture(gfx::TileTexture * pTileTex) { pTileTex->AddRef(); m_pTileTexture = pTileTex; } // SetTileTexture //------------------------------------------------------------------------------------ // Sets the tile in the terrain. //------------------------------------------------------------------------------------ void TileTerrain::SetTile(int Col, int Row, u32 TileID) { if (Col < 0 || Col >= m_iNumCols || Row < 0 || Row >= m_iNumRows) return; if (TileID < 0 || TileID >= m_pTileTexture->GetTileCount()) return; math::Vector v = m_pTileTexture->GetTile(TileID)->GetTile(Col, Row); float f[4]; f[0] = (float)(Col * m_pTileTexture->GetU()) - v.x; f[1] = (float)(Row * m_pTileTexture->GetV()) - v.y; f[2] = 0; f[3] = 0; m_pTextureID->SetData(Col, Row, 1, 1, (u8*)f, 16); m_pTiles[Row * m_iNumCols + Col] = TileID; m_pTiles2[Row * m_iNumCols + Col] = -1; m_pBlendTiles[Row * m_iNumCols + Col] = 255; m_pTextureBlend->SetData(Col, Row, 1, 1 , &m_pBlendTiles[Row * m_iNumCols + Col], 1); } // SetTile void TileTerrain::SetTile( int Col, int Row, int TileID, int TileID2 ) { if (Col < 0 || Col >= m_iNumCols || Row < 0 || Row >= m_iNumRows) return; if (TileID < 0 || TileID >= m_pTileTexture->GetTileCount()) return; if (TileID == TileID2) return; math::Vector v = m_pTileTexture->GetTile(TileID)->GetTile(Col, Row); math::Vector v2; float f[4]; f[0] = (float)(Col * m_pTileTexture->GetU()) - v.x; f[1] = (float)(Row * m_pTileTexture->GetV()) - v.y; if (TileID2 >= 0) { v2 = m_pTileTexture->GetTile(TileID2)->GetTile(Col, Row); f[2] = (float)(Col * m_pTileTexture->GetU()) - v2.x; f[3] = (float)(Row * m_pTileTexture->GetV()) - v2.y; } else { f[2] = 0; f[3] = 0; } m_pTextureID->SetData(Col, Row, 1, 1, (u8*)f, 16); m_pTiles[Row * m_iNumCols + Col] = TileID; m_pTiles2[Row * m_iNumCols + Col] = TileID2; } //------------------------------------------------------------------------------------ // Sets the tiles in the terrain. //------------------------------------------------------------------------------------ void TileTerrain::SetTiles(u32 tileID) { if (tileID < 0 || tileID >= m_pTileTexture->GetTileCount()) return; float* data = KGE_NEW_ARRAY(float, 4 * m_iNumRows * m_iNumCols); int c = 0; for (int i = 0; i < m_iNumRows; ++i) { for (int j = 0; j < m_iNumCols; ++j) { math::Vector v = m_pTileTexture->GetTile(tileID)->GetTile(j, i); data[c] = (j * m_pTileTexture->GetU()) - v.x; data[c + 1] = (i * m_pTileTexture->GetV()) - v.y; data[c + 2] = 0; data[c + 3] = 0; m_pTiles[i * m_iNumCols + j] = tileID; m_pTiles2[i * m_iNumCols + j] = -1; m_pBlendTiles[i * m_iNumCols + j] = 255; c += 4; } } m_pTextureID->SetData(0, 0, m_iNumRows, m_iNumCols, (u8*)data, 16 * m_iNumRows * m_iNumCols); m_pTextureBlend->SetData(0, 0, m_iNumRows, m_iNumCols , m_pBlendTiles, m_iNumRows * m_iNumCols); KGE_DELETE_ARRAY(data); } //------------------------------------------------------------------------------------ // Blend the tile stored in the given position and their same tiles attached to it. //------------------------------------------------------------------------------------ void TileTerrain::Blend( int Col, int Row ) { if (Col < 0 || Col >= m_iNumCols || Row < 0 || Row >= m_iNumRows) return; int tile = m_pTiles[Row * m_iNumCols + Col]; memset(m_pTilesTemp, 0, m_iNumCols * m_iNumRows * 4); Flood_Fill(Col, Row, tile); for (int r = 1; r < m_iNumRows - 1; r++) { for (int c = 1; c < m_iNumCols - 1; c++) { if (m_pTilesTemp[r * m_iNumCols + c] == 0) { int i = 0; if (m_pTilesTemp[r * m_iNumCols + c + 1] == 2) i++; if (m_pTilesTemp[r * m_iNumCols + c - 1] == 2) i++; if (m_pTilesTemp[(r + 1) * m_iNumCols + c] == 2) i++; if (m_pTilesTemp[(r - 1) * m_iNumCols + c] == 2) i++; if (i > 1) { m_pTilesTemp[r * m_iNumCols + c] = 3; } } } } for (int r = 1; r < m_iNumRows - 1; r++) { for (int c = 1; c < m_iNumCols - 1; c++) { u32 t = 0; if (m_pTilesTemp[r * m_iNumCols + c] == 2 || m_pTilesTemp[r * m_iNumCols + c] == 3) { if (m_pBlendTiles[r * m_iNumCols + c] == 255) { if (m_pTiles[(r - 1) * m_iNumCols + c - 1] == tile) t |= 1; if (m_pTiles[(r - 1) * m_iNumCols + c] == tile) t |= 2; if (m_pTiles[(r - 1) * m_iNumCols + c + 1] == tile) t |= 4; if (m_pTiles[r * m_iNumCols + c - 1] == tile) t |= 8; if (m_pTiles[r * m_iNumCols + c + 1] == tile) t |= 16; if (m_pTiles[(r + 1) * m_iNumCols + c - 1] == tile) t |= 32; if (m_pTiles[(r + 1) * m_iNumCols + c] == tile) t |= 64; if (m_pTiles[(r + 1) * m_iNumCols + c + 1] == tile) t |= 128; printf("%d\n", t); if (t == 128) m_pBlendTiles[r * m_iNumCols + c] = 0; // 0 else if (t == 224 || t == 96 || t == 192 || t == 64) m_pBlendTiles[r * m_iNumCols + c] = 13; // 1 else if (t == 32) m_pBlendTiles[r * m_iNumCols + c] = 26; // 2 else if (t == 10 || t == 14 || t == 11 || t == 15 || t == 42 || t == 46 || t == 43 || t == 47) m_pBlendTiles[r * m_iNumCols + c] = 39; // 3 else if (t == 20 || t == 16 || t == 144 || t == 148) m_pBlendTiles[r * m_iNumCols + c] = 53; // 4 else if (t == 255 || t == 254 || t == 251 || t == 223 || t == 127 || t == 250 || t == 222 || t == 126 || t == 219 || t == 123 || t == 95 || t == 90 || t == 91 || t == 94 || t == 122 || t == 218) m_pBlendTiles[r * m_iNumCols + c] = 64; // 5 (12,13,14) else if (t == 9 || t == 8 || t == 40 || t == 41) m_pBlendTiles[r * m_iNumCols + c] = 77; // 6 else if (t == 72 || t == 73 || t == 104 || t == 200 || t == 105 || t == 201 || t == 232 || t == 233) m_pBlendTiles[r * m_iNumCols + c] = 90; // 7 else if (t == 4) m_pBlendTiles[r * m_iNumCols + c] = 104; // 8 else if (t == 3 || t == 6 || t == 2 || t == 7) m_pBlendTiles[r * m_iNumCols + c] = 115; // 9 else if (t == 1) m_pBlendTiles[r * m_iNumCols + c] = 128; // 10 else if (t == 18 || t == 19 || t == 22 || t == 146 || t == 23 || t == 150 || t == 147 || t == 151) m_pBlendTiles[r * m_iNumCols + c] = 141; // 11 else if (t == 80 || t == 208 || t == 112 || t == 240 || t == 84 || t == 212 || t == 116 || t == 244) m_pBlendTiles[r * m_iNumCols + c] = 192; // 15 m_pTextureBlend->SetData(c, r, 1, 1 , &m_pBlendTiles[r * m_iNumCols + c], 1); SetTile(c, r, m_pTiles[r*m_iNumCols+c], tile); } else if (m_pTilesTemp[r * m_iNumCols + c] == 2) { SetTile(c, r, tile, m_pTiles2[r*m_iNumCols+c]); } } } } // m_pTextureBlend->SetData(0, 0, m_iNumCols, m_iNumRows ,m_pBlendTiles, m_iNumCols * m_iNumRows); } // Blend //------------------------------------------------------------------------------------ // Fill the terrain with the given tile ID //------------------------------------------------------------------------------------ void TileTerrain::Fill( int Col, int Row, int TileID ) { if (TileID < 0 || TileID >= m_pTileTexture->GetTileCount()) return; int tile = m_pTiles[Row * m_iNumCols + Col]; Flood_Fill(Col, Row, tile, TileID); } // Fill //------------------------------------------------------------------------------------ // This function is for blending //------------------------------------------------------------------------------------ void TileTerrain::Flood_Fill( int Col, int Row, int TileID ) { if (Col < 0 || Col >= m_iNumCols || Row < 0 || Row >= m_iNumRows) return; if (m_pTiles[Row * m_iNumCols + Col] != TileID) return; if (m_pTilesTemp[Row * m_iNumCols + Col] != 0) return; std::queue<int> qc, qr; qc.push(Col); qr.push(Row); m_pTilesTemp[Row * m_iNumCols + Col] = 1; int c,r; while (!qc.empty()) { c = qc.front(); r = qr.front(); qc.pop(); qr.pop(); if (c > 0) { if (m_pTiles[r * m_iNumCols + c - 1] == TileID && m_pBlendTiles[r * m_iNumCols + c - 1] == 255 && m_pTilesTemp[r * m_iNumCols + c - 1] == 0) { m_pTilesTemp[r * m_iNumCols + c - 1] = 1; qc.push(c - 1); qr.push(r); } else if (m_pTiles[r * m_iNumCols + c - 1] != TileID && m_pTilesTemp[r * m_iNumCols + c - 1] == 0) { m_pTilesTemp[r * m_iNumCols + c - 1] = 2; } } if (c < m_iNumCols - 1) { if (m_pTiles[r * m_iNumCols + c + 1] == TileID && m_pBlendTiles[r * m_iNumCols + c + 1] == 255 && m_pTilesTemp[r * m_iNumCols + c + 1] == 0) { m_pTilesTemp[r * m_iNumCols + c + 1] = 1; qc.push(c + 1); qr.push(r); } else if (m_pTiles[r * m_iNumCols + c + 1] != TileID && m_pTilesTemp[r * m_iNumCols + c + 1] == 0) { m_pTilesTemp[r * m_iNumCols + c + 1] = 2; } } if (r > 0) { if (m_pTiles[(r - 1) * m_iNumCols + c] == TileID && m_pBlendTiles[(r - 1) * m_iNumCols + c] == 255 && m_pTilesTemp[(r - 1) * m_iNumCols + c] == 0) { m_pTilesTemp[(r - 1) * m_iNumCols + c] = 1; qc.push(c); qr.push(r - 1); } else if (m_pTiles[(r - 1) * m_iNumCols + c] != TileID && m_pTilesTemp[(r - 1) * m_iNumCols + c] == 0) { m_pTilesTemp[(r - 1) * m_iNumCols + c] = 2; } } if (r < m_iNumRows - 1) { if (m_pTiles[(r + 1) * m_iNumCols + c] == TileID && m_pBlendTiles[(r + 1) * m_iNumCols + c] == 255 && m_pTilesTemp[(r + 1) * m_iNumCols + c] == 0) { m_pTilesTemp[(r + 1) * m_iNumCols + c] = 1; qc.push(c); qr.push(r + 1); } else if (m_pTiles[(r + 1) * m_iNumCols + c] != TileID && m_pTilesTemp[(r + 1) * m_iNumCols + c] == 0) { m_pTilesTemp[(r + 1) * m_iNumCols + c] = 2; } } } } // Flood_Fill ( BLEND ) //------------------------------------------------------------------------------------ // This function is for filling //------------------------------------------------------------------------------------ void TileTerrain::Flood_Fill( int Col, int Row, int ReplaceID, int TileID ) { if (Col < 0 || Col >= m_iNumCols || Row < 0 || Row >= m_iNumRows) return; if (m_pTiles[Row * m_iNumCols + Col] != ReplaceID) return; if (m_pTiles[Row * m_iNumCols + Col] == TileID) return; std::queue<int> qc, qr; qc.push(Col); qr.push(Row); SetTile(Col, Row, TileID); int c,r; while (!qc.empty()) { c = qc.front(); r = qr.front(); qc.pop(); qr.pop(); if (c > 0) { if (m_pTiles[r * m_iNumCols + c - 1] == ReplaceID) { SetTile(c - 1, r, TileID); qc.push(c - 1); qr.push(r); } } if (c < m_iNumCols - 1) { if (m_pTiles[r * m_iNumCols + c + 1] == ReplaceID) { SetTile(c + 1, r, TileID); qc.push(c + 1); qr.push(r); } } if (r > 0) { if (m_pTiles[(r - 1) * m_iNumCols + c] == ReplaceID) { SetTile(c, r - 1, TileID); qc.push(c); qr.push(r - 1); } } if (r < m_iNumRows - 1) { if (m_pTiles[(r + 1) * m_iNumCols + c] == ReplaceID) { SetTile(c, r + 1, TileID); qc.push(c); qr.push(r + 1); } } } } // Flood_Fill ( FILL ) //------------------------------------------------------------------------------------ // Returns the terrain height at the given grid position //------------------------------------------------------------------------------------ float TileTerrain::GetHeight( float x, float z ) { float c = (x - m_fXOffset) / m_fWidth; float d = (z - m_fYOffset) / m_fHeight; int col = (int)c; int row = (int)d; float A = m_pPos[row * m_iNumColspp + col].Y; float B = m_pPos[row * m_iNumColspp + col + 1].Y; float C = m_pPos[(row + 1) * m_iNumColspp + col].Y; float D = m_pPos[(row + 1) * m_iNumColspp + col + 1].Y; float s = c - (float)col; float t = d - (float)row; if (t < 1.0f - s) { float uy = B - A; float vy = C - A; return A + s * uy + t * vy; } else { float uy = C - D; float vy = B - D; return D + (1.0f - s) * uy + (1.0f - t) * vy; } } // GetHeight //------------------------------------------------------------------------------------ // Sets the terrain height by the index id. //------------------------------------------------------------------------------------ void TileTerrain::SetHeight( int IndexID, float h ) { m_bPosChanged = true; m_pPos[m_pIndices[IndexID]].Y = h; math::Vector2I v = GetTileByFaceID(IndexID / 3); // Update AABBs int tu = v.x / 16; int tv = v.y / 16; m_pAABB[tv * m_iNumUparts + tu].AddY(h); } // SetHeight( index ID ) //------------------------------------------------------------------------------------ // Sets the terrain height by the tile position. //------------------------------------------------------------------------------------ void TileTerrain::SetHeight( int Col, int Row, float h ) { if (Col < 0 || Col >= m_iNumCols || Row < 0 || Row >= m_iNumRows) return; m_bPosChanged = true; m_pPos[Row * m_iNumColspp + Col].Y = h; m_pPos[Row * m_iNumColspp + Col + 1].Y = h; m_pPos[(Row + 1) * m_iNumColspp + Col].Y = h; m_pPos[(Row + 1) * m_iNumColspp + Col + 1].Y = h; // Update AABBs int tu = Col / 16; int tv = Row / 16; int mu = Col % 16; int mv = Row % 16; m_pAABB[tv * m_iNumUparts + tu].AddY(h); if ((mu == 15 || mu == 0)) { if (mu == 0 && tu != 0) mu = -1; else if (mu == 15 && tu != m_iNumUparts - 1) mu = 1; else mu = -2; } else mu = -2; if ((mv == 15 || mv == 0)) { if (mv == 0 && tv != 0) mv = -1; else if (mv == 15 && tv != m_iNumVparts - 1) mv = 1; else mv = -2; } else mv = -2; if (mu != -2) { m_pAABB[tv * m_iNumUparts + tu + mu].AddY(h); } if (mv != -2) { m_pAABB[(tv + mv) * m_iNumUparts + tu].AddY(h); } } // SetHeight ( Col, Row ) //------------------------------------------------------------------------------------ // Sets the terrain color by the index id. //------------------------------------------------------------------------------------ void TileTerrain::SetVertexColor( int IndexID, gfx::Color c ) { m_bNorTexChanged = true; m_pNorTexColor[m_pIndices[IndexID]].Color = c.c; } // SetVertexColor //------------------------------------------------------------------------------------ // Sets the terrain color by the tile position. //------------------------------------------------------------------------------------ void TileTerrain::SetVertexColor( int Col, int Row, gfx::Color c ) { if (Col < 0 || Col >= m_iNumCols || Row < 0 || Row >= m_iNumRows) return; m_bNorTexChanged = true; m_pNorTexColor[Row * m_iNumColspp + Col].Color = c.c; m_pNorTexColor[Row * m_iNumColspp + Col + 1].Color = c.c; m_pNorTexColor[(Row + 1) * m_iNumColspp + Col].Color = c.c; m_pNorTexColor[(Row + 1) * m_iNumColspp + Col + 1].Color = c.c; } // SetVertexColor //------------------------------------------------------------------------------------ // Adds the terrain height by the index id. //------------------------------------------------------------------------------------ void TileTerrain::SetHeightAdd( int IndexID, float h ) { m_bPosChanged = true; m_pPos[m_pIndices[IndexID]].Y += h; math::Vector2I v = GetTileByFaceID(IndexID / 3); // Update AABBs int tu = v.x / 16; int tv = v.y / 16; m_pAABB[tv * m_iNumUparts + tu].AddY(m_pPos[m_pIndices[IndexID]].Y); } // SetHeightAdd //------------------------------------------------------------------------------------ // Adds the terrain height by the tile position. //------------------------------------------------------------------------------------ void TileTerrain::SetHeightAdd( int Col, int Row, float h ) { if (Col < 0 || Col >= m_iNumCols || Row < 0 || Row >= m_iNumRows) return; m_bPosChanged = true; m_pPos[Row * m_iNumColspp + Col].Y += h; m_pPos[Row * m_iNumColspp + Col + 1].Y += h; m_pPos[(Row + 1) * m_iNumColspp + Col].Y += h; m_pPos[(Row + 1) * m_iNumColspp + Col + 1].Y += h; // Update AABBs int tu = Col / 16; int tv = Row / 16; int mu = Col % 16; int mv = Row % 16; m_pAABB[tv * m_iNumUparts + tu].AddY(m_pPos[Row * m_iNumColspp + Col].Y); m_pAABB[tv * m_iNumUparts + tu].AddY(m_pPos[Row * m_iNumColspp + Col + 1].Y); m_pAABB[tv * m_iNumUparts + tu].AddY(m_pPos[(Row + 1) * m_iNumColspp + Col].Y); m_pAABB[tv * m_iNumUparts + tu].AddY(m_pPos[(Row + 1) * m_iNumColspp + Col + 1].Y); if ((mu == 15 || mu == 0)) { if (mu == 0 && tu != 0) mu = -1; else if (mu == 15 && tu != m_iNumUparts - 1) mu = 1; else mu = -2; } else mu = -2; if ((mv == 15 || mv == 0)) { if (mv == 0 && tv != 0) mv = -1; else if (mv == 15 && tv != m_iNumVparts - 1) mv = 1; else mv = -2; } else mv = -2; if (mu != -2) { if (mu == -1) { m_pAABB[tv * m_iNumUparts + tu + mu].AddY(m_pPos[Row * m_iNumColspp + Col].Y); m_pAABB[tv * m_iNumUparts + tu + mu].AddY(m_pPos[(Row + 1) * m_iNumColspp + Col].Y); } else { m_pAABB[tv * m_iNumUparts + tu + mu].AddY(m_pPos[Row * m_iNumColspp + Col + 1].Y); m_pAABB[tv * m_iNumUparts + tu + mu].AddY(m_pPos[(Row + 1) * m_iNumColspp + Col + 1].Y); } } if (mv != -2) { if (mv == -1) { m_pAABB[(tv + mv) * m_iNumUparts + tu].AddY(m_pPos[Row * m_iNumColspp + Col].Y); m_pAABB[(tv + mv) * m_iNumUparts + tu].AddY(m_pPos[Row * m_iNumColspp + Col + 1].Y); } else { m_pAABB[(tv + mv) * m_iNumUparts + tu].AddY(m_pPos[(Row + 1) * m_iNumColspp + Col].Y); m_pAABB[(tv + mv) * m_iNumUparts + tu].AddY(m_pPos[(Row + 1) * m_iNumColspp + Col + 1].Y); } } } // SetHeightAdd ( Col, Row ) //------------------------------------------------------------------------------------ // Gets the column number and row number by Face index. //------------------------------------------------------------------------------------ math::Vector2I TileTerrain::GetTileByFaceID( int FaceID ) { math::Vector2I v; v.y = m_pNorTexColor[m_pIndices[FaceID * 3]].tex.Y; v.x = m_pNorTexColor[m_pIndices[FaceID * 3]].tex.X - 1; return v; } // GetTileByFaceID //------------------------------------------------------------------------------------ // Returns the DynamicTriangleMesh pointer and send updates to it if needed. //------------------------------------------------------------------------------------ void TileTerrain::SetDynamicTriangleMesh( ph::DynamicTriangleMesh* pDTM ) { if (m_pDTM) m_pDTM->DecRef(); m_pDTM = pDTM; m_pDTM->AddRef(); } // SetDynamicTriangleMesh //------------------------------------------------------------------------------------ // Recalculate the terrain normals //------------------------------------------------------------------------------------ void TileTerrain::UpdateNormals() { m_bNorTexChanged = true; gfx::RecalculateNormals_Smooth32<gfx::VertexNTC>(m_pPos, m_pNorTexColor, m_iNumVerts, m_pIndices, m_iNumIndices); if (m_pNormalMapTileTexture || m_pMaterial[0].ppTexture[1]) { gfx::CalcBinormalsTangents32(m_pPos, m_pNorTexColor, m_pMesh->m_pTangentBinormal, m_iNumVerts, m_pIndices, m_iNumIndices); } } // UpdateNormals //------------------------------------------------------------------------------------ // Create a decal and return its pointer. //------------------------------------------------------------------------------------ Decal* TileTerrain::CreateDecal(int sizeX, int sizeY, gfx::Texture* pTex) { if (sizeX >= m_iNumRows || sizeY >= m_iNumCols) { const int newSizeX = sizeX >= m_iNumRows ? m_iNumRows - 1 : sizeX; const int newSizeY = sizeY >= m_iNumCols ? m_iNumCols - 1 : sizeY; io::Logger::Log(io::ELM_Warning, "Decal size (%d, %d) is bigger than terrain, size reduced to (%d, %d).", sizeX, sizeY, newSizeX, newSizeY); return this->CreateDecal(newSizeX, newSizeY, pTex); } // Find a place in vertex buffer for this decal texture MapDecalData::iterator it = m_mDecalBufferData.find(pTex->GetHandle()); DecalData * pDecalData = NULL; // not found if (it == m_mDecalBufferData.end()) { pDecalData = KGE_NEW(DecalData); pDecalData->vbOffset = 0; pDecalData->ibOffset = 0; pDecalData->vbSizeTotal = 1600; pDecalData->ibSizeTotal = 6000; pDecalData->VertexBuffer = m_pRenderer->CreateVertexBuffer(NULL, 1600, gfx::EVT_V3T, true); pDecalData->IndexBuffer = m_pRenderer->CreateIndexBuffer(NULL, 5400, gfx::EIBT_16Bit, true); pDecalData->Vertices = KGE_NEW_ARRAY(gfx::Vertex3T, 1600); m_mDecalBufferData.insert(MapDecalData::value_type(pTex->GetHandle(), pDecalData)); } // found else { pDecalData = it->second; } // Check for empty space bool bEmptyFound = false; RemovedDecal rd = {0}; rd.VertexSize = (sizeX + 2) * (sizeY + 2); for (size_t i = 0; i < pDecalData->Space.size(); i++) { if (pDecalData->Space[i].VertexSize == rd.VertexSize) { rd.ibOffset = pDecalData->Space[i].ibOffset; rd.vbOffset = pDecalData->Space[i].vbOffset; pDecalData->Space.erase(pDecalData->Space.begin() + i); bEmptyFound = true; break; } } if (!bEmptyFound) { // check if vertex buffer is full if (rd.VertexSize + pDecalData->vbOffset >= pDecalData->vbSizeTotal) { // we need to expand our vertex buffer while (rd.VertexSize + pDecalData->vbOffset >= pDecalData->vbSizeTotal) { pDecalData->vbSizeTotal += 1600; } KGE_DELETE(pDecalData->VertexBuffer, HardwareBuffer); pDecalData->VertexBuffer = m_pRenderer->CreateVertexBuffer(NULL, pDecalData->vbSizeTotal, gfx::EVT_V3T, true); gfx::Vertex3T* pNewVertices = KGE_NEW_ARRAY(gfx::Vertex3T, pDecalData->vbSizeTotal); memcpy(pNewVertices, pDecalData->Vertices, pDecalData->vbOffset * sizeof(gfx::Vertex3T)); KGE_DELETE_ARRAY(pDecalData->Vertices); pDecalData->Vertices = pNewVertices; // SetDecals for (size_t i = 0; i < pDecalData->Decals.size(); i++) { pDecalData->Decals[i]->m_pVertices = &pNewVertices[pDecalData->Decals[i]->m_iVbOffset]; } } // check if index buffer is full if ((sizeX + 1) * (sizeY + 1) * 6 + pDecalData->ibOffset >= pDecalData->ibSizeTotal) { while ((sizeX + 1) * (sizeY + 1) * 6 + pDecalData->ibOffset >= pDecalData->ibSizeTotal) { pDecalData->ibSizeTotal += 6000; } KGE_DELETE(pDecalData->IndexBuffer, HardwareBuffer); pDecalData->IndexBuffer = m_pRenderer->CreateIndexBuffer(NULL, pDecalData->ibSizeTotal, gfx::EIBT_16Bit, true); u16* pTemp = KGE_NEW_ARRAY(u16, pDecalData->ibSizeTotal); // SetIndex for (size_t i = 0; i < pDecalData->Decals.size(); i++) { memcpy(&pTemp[pDecalData->Decals[i]->m_iIbOffset], pDecalData->Decals[i]->m_pIndices, pDecalData->Decals[i]->m_iICount * 2); } pDecalData->IndexBuffer->SetData(pTemp, 0, pDecalData->ibOffset); KGE_DELETE_ARRAY(pTemp); } rd.ibOffset = pDecalData->ibOffset; rd.vbOffset = pDecalData->vbOffset; } Decal* pDecal = KGE_NEW(Decal)(); gfx::Vertex3T* pVerts = &pDecalData->Vertices[rd.vbOffset]; pDecal->m_ppVertexBuffer = &pDecalData->VertexBuffer; pDecal->m_ppIndexBuffer = &pDecalData->IndexBuffer; pDecal->m_iIbOffset = rd.ibOffset; pDecal->m_iVbOffset = rd.vbOffset; pDecal->m_pTerrain = this; pDecal->m_iIndex = pTex->GetHandle(); int iOffset = rd.vbOffset; if (!bEmptyFound) pDecalData->vbOffset += rd.VertexSize; u16* pIndices = KGE_NEW_ARRAY(u16, (sizeX + 1) * (sizeY + 1) * 6); float fU = 1.0f / (float)sizeX; float fV = 1.0f / (float)sizeY; int sizeXpp = sizeX + 1; int sizeXp2 = sizeX + 2; int sizeYpp = sizeY + 1; for (int y = 0; y < sizeY + 2; y++) { for (int x = 0; x < sizeXp2; x++) { pVerts[y * sizeXp2 + x].pos.X = x * m_fWidth; pVerts[y * sizeXp2 + x].pos.Z = y * m_fHeight; pVerts[y * sizeXp2 + x].pos.Y = 0.0f; pVerts[y * sizeXp2 + x].tex.X = x * fU; pVerts[y * sizeXp2 + x].tex.Y = y * fV; } // for x } // for y int k = 0; for (int y = 0; y < sizeYpp; y++) { for (int x = 0; x < sizeXpp; x++) { pIndices[k ] = (y * sizeXp2 + x) + 1 + iOffset; pIndices[k + 1] = (y * sizeXp2 + x) + iOffset; pIndices[k + 2] = ((y + 1) * sizeXp2 + x) + iOffset; pIndices[k + 3] = (y * sizeXp2 + x) + 1 + iOffset; pIndices[k + 4] = ((y + 1) * sizeXp2 + x) + iOffset; pIndices[k + 5] = ((y + 1) * sizeXp2 + x) + 1 + iOffset; k += 6; } // for x } // for y pDecal->m_eVertexType = gfx::EVT_V3T; pDecal->m_pIndices = pIndices; pDecal->m_pMaterial ->ppTexture[0] = pTex; pDecal->m_pMaterial ->Alpha = true; pDecal->m_pVertices = pVerts; pDecal->m_iVCount = sizeXp2 * (sizeY + 2); pDecal->m_iICount = sizeXpp * sizeYpp * 6; pDecal->m_iSizeX = sizeX; pDecal->m_iSizeY = sizeY; pDecal->m_fU = fU; pDecal->m_fV = fV; gfx::ShaderInstance* si = KGE_NEW(gfx::ShaderInstance)(); si->m_pVertexShader = m_pVSdecal; si->m_pPixelShader = m_pPSdecal; si->m_pFun = m_pDecalFun; si->m_pUserData = (void*)pDecal; pDecal->m_pMaterial ->shader = si; // Set indexes to index buffer pDecalData->IndexBuffer->SetData(pIndices, rd.ibOffset, pDecal->m_iICount); if (!bEmptyFound) pDecalData->ibOffset += pDecal->m_iICount; m_pVSdecal->AddRef(); m_pPSdecal->AddRef(); m_pSnMan->AddSceneNode(pDecal, ENT_Decal); pDecalData->Decals.push_back(pDecal); return pDecal; } // CreateDecal //------------------------------------------------------------------------------------ // Sets the decal on position //------------------------------------------------------------------------------------ void TileTerrain::SetDecal( float fx, float fy, Decal* pDecal ) { int ix = (int)(fx / m_fWidth); int iy = (int)(fy / m_fHeight); if (ix < 0 || ix > m_iNumCols - pDecal->m_iSizeX - 1 || iy < 0 || iy > m_iNumRows - pDecal->m_iSizeY - 1) return; float fu = (fx / m_fHeight) - ix; float fv = (fy / m_fHeight) - iy; fu /= pDecal->m_iSizeX; fv /= pDecal->m_iSizeY; pDecal->GetAbsoluteMatrix()->_41 = ix * m_fWidth + m_fXOffset; pDecal->GetAbsoluteMatrix()->_43 = iy * m_fHeight + m_fYOffset; for (int y = 0; y < pDecal->m_iSizeY + 2; y++) { for (int x = 0; x < pDecal->m_iSizeX + 2; x++) { pDecal->m_pVertices[y * (pDecal->m_iSizeX + 2) + x].pos.Y = m_pPos[(iy + y) * m_iNumColspp + ix + x].Y + 0.05f; pDecal->m_pVertices[y * (pDecal->m_iSizeX + 2) + x].tex.X = x * pDecal->m_fU - fu; pDecal->m_pVertices[y * (pDecal->m_iSizeX + 2) + x].tex.Y = y * pDecal->m_fV - fv; } // for x } // for y pDecal->m_bPosChanged = true; } // SetDecal //------------------------------------------------------------------------------------ // Creates the terrain shader code //------------------------------------------------------------------------------------ void TileTerrain::CreateShaderCode(core::String &VertexCode, core::String &PixelCode) { // Create vertex shader VertexCode = "float4x4 matViewProjection;\n"\ "float4x4 matView;\n"\ "float3 DirLit;\n"\ "float3 fvEyePosition;\n"; if (m_bReceiveShadow) { VertexCode += "float4x4 matLight;\n"; } VertexCode += "struct VS_INPUT\n"\ "{\n"\ "float4 Position : POSITION0;\n"\ "float3 Normal : NORMAL;\n"\ "float2 Texcoord : TEXCOORD0;\n"\ "float4 color : COLOR0;\n"; if (m_pNormalMapTileTexture) { VertexCode += " float3 Binormal : BINORMAL0;\n"\ " float3 Tangent : TANGENT0;\n"; } VertexCode += "};\n"\ "struct VS_OUTPUT \n"\ "{\n"\ "float4 Position : POSITION0;\n"\ "float2 Texcoord : TEXCOORD0;\n"\ "float Height: TEXCOORD2;\n"\ "float4 color : COLOR0;\n"; if (m_bReceiveShadow) { VertexCode += " float4 ProjTex: TEXCOORD3;\n"; } if (m_pNormalMapTileTexture) { VertexCode += "float3 ViewDirection : TEXCOORD4;\n"\ " float3 LightDirection: TEXCOORD5;\n"; } else { VertexCode += "float Lit: TEXCOORD1;\n"; } VertexCode += "};\n"\ "VS_OUTPUT main( VS_INPUT Input )\n"\ "{\n"\ "VS_OUTPUT Output;\n"\ "Output.Position = mul( Input.Position, matViewProjection );\n"\ "Output.Texcoord = Input.Texcoord;\n"\ "Output.Height = Input.Position.y / 25.0;\n"\ "Output.color = Input.color;\n"; if (m_bReceiveShadow) { VertexCode += "Output.ProjTex = mul( Input.Position, matLight );\n"; } if (m_pNormalMapTileTexture) { VertexCode += "float3 fvObjectPosition = mul( Input.Position, matView ).xyz;\n"\ "float3 fvNormal = mul( float4(Input.Normal, 1.0), matView ).xyz;\n"\ "float3 fvBinormal = mul( float4(Input.Binormal, 1.0), matView ).xyz;\n"\ "float3 fvTangent = mul( float4(Input.Tangent, 1.0), matView ).xyz;\n"\ "float3 fvViewDirection = fvEyePosition - fvObjectPosition;\n"\ "Output.ViewDirection.x = dot( fvTangent, fvViewDirection );\n"\ "Output.ViewDirection.y = dot( fvBinormal, fvViewDirection );\n"\ "Output.ViewDirection.z = dot( fvNormal, fvViewDirection );\n"\ "Output.LightDirection.x = dot( fvTangent, DirLit );\n"\ "Output.LightDirection.y = dot( fvBinormal, DirLit );\n"\ "Output.LightDirection.z = dot( fvNormal, DirLit );\n"; } else { VertexCode += "Output.Lit = 0.5 * dot(DirLit, Input.Normal) + 0.5;\n"; } VertexCode += "return( Output );\n"\ "}"; // Create pixel shader PixelCode = "sampler2D baseMap;\n"\ "sampler2D BlendMap;\n"\ "sampler2D TextureID;\n"\ "sampler2D TextureBlend;\n"\ "sampler2D TextureUnder;\n"; if (m_bReceiveShadow) { PixelCode += m_pShadowShaderCode; } if (m_pNormalMapTileTexture) { PixelCode += "sampler2D bumpMap;\n"; } PixelCode += "struct PS_INPUT \n"\ "{\n"\ " float2 Texcoord : TEXCOORD0;\n"\ " float Height: TEXCOORD2;\n"\ " float4 color : COLOR0;\n"; if (m_bReceiveShadow) { PixelCode += " float4 ProjTex: TEXCOORD3;\n"; } if (m_pNormalMapTileTexture) { PixelCode += "float3 ViewDirection : TEXCOORD4;\n"\ " float3 LightDirection: TEXCOORD5;\n"; } else { PixelCode += "float Lit: TEXCOORD1;\n"; } PixelCode += "};\n"\ "float4 main( PS_INPUT Input ) : COLOR0\n"\ "{\n"; // if want under water coloring if (m_bWater) { PixelCode += " float4 c1 = float4("; PixelCode += m_cStart.c[0]; PixelCode += ", "; PixelCode += m_cStart.c[1]; PixelCode += ", "; PixelCode += m_cStart.c[2]; PixelCode += ", 1);\n"\ " float4 c2 = float4("; PixelCode += m_cEnd.c[0]; PixelCode += ", "; PixelCode += m_cEnd.c[1]; PixelCode += ", "; PixelCode += m_cEnd.c[2]; PixelCode += ", 1);\n"; } PixelCode += " float2 m[16] = \n"\ " {\n"\ " float2(0.0, 0.0),\n"\ " float2(0.25, 0.0),\n"\ " float2(0.5, 0.0),\n"\ " float2(0.75, 0.0),\n"\ " float2(0.0, 0.25),\n"\ " float2(0.25, 0.25),\n"\ " float2(0.5, 0.25),\n"\ " float2(0.75, 0.25),\n"\ " float2(0.0, 0.5),\n"\ " float2(0.25, 0.5),\n"\ " float2(0.5, 0.5),\n"\ " float2(0.75, 0.5),\n"\ " float2(0.0, 0.75),\n"\ " float2(0.25, 0.75),\n"\ " float2(0.5, 0.75),\n"\ " float2(0.75, 0.75)\n"\ " };\n"\ " float4 d = tex2D( TextureID, Input.Texcoord * float2( "; // Set the texture ID size PixelCode += (float)(1.0f / (float)m_iTextureIDSizeX); PixelCode += " , "; PixelCode += (float)(1.0f / (float)m_iTextureIDSizeY); PixelCode += " ) );\n"\ " float4 b = tex2D( TextureBlend, Input.Texcoord * float2( "; PixelCode += (float)(1.0f / (float)m_iTextureIDSizeX); PixelCode += " , "; PixelCode += (float)(1.0f / (float)m_iTextureIDSizeY); PixelCode += " ) );\n"\ " float2 z = Input.Texcoord * float2( "; // Sets the tile texture size PixelCode += m_pTileTexture->GetU(); PixelCode += " , "; PixelCode += m_pTileTexture->GetV(); PixelCode += " ) ;\n"\ " float2 tex;\n"\ " tex.x = z.x - d.r;\n"\ " tex.y = z.y - d.g;\n"; // Normal map if (m_pNormalMapTileTexture) { PixelCode += "float4 fvSpecular = {0.5188, 0.5065, 0.3195, 1};\n"\ "float3 fvLightDirection = normalize( Input.LightDirection );\n"\ "float3 fvNormal = tex2D( bumpMap, tex ).wyz;\n"; } PixelCode += " float4 c;\n"\ " if (b.a < 0.9)\n"\ " {\n"\ " float2 t = m[b.a * 20];\n"\ " float2 s = (int2)(Input.Texcoord) * 0.25;\n"\ " float4 a = tex2D( BlendMap, Input.Texcoord * 0.25 - s + t );\n"\ " t.x = z.x - d.b;\n"\ " t.y = z.y - d.a;\n"\ " c = (1 - a.r) * tex2D( baseMap, tex) + a.r * tex2D( baseMap, t);\n"; if (m_pNormalMapTileTexture) { // blend normals PixelCode += "fvNormal.xy = (1 - a.r) * fvNormal.xy + a.r * tex2D( bumpMap, t ).wy;\n"; } PixelCode += " }\n"\ " else\n"\ " c = tex2D( baseMap, tex);\n"; // Calc normal map if (m_pNormalMapTileTexture) { PixelCode += "fvNormal = normalize( ( fvNormal * 2.0f ) - 1.0f );\n"\ "float fNDotL = max(0.25, dot( fvNormal, fvLightDirection )) + 0.2; \n"\ "float3 fvReflection = normalize( ( ( 2.0f * fvNormal ) * ( fNDotL ) ) - fvLightDirection ); \n"\ "float3 fvViewDirection = normalize( Input.ViewDirection );\n"\ "float fRDotV = max( 0.0f, dot( fvReflection, fvViewDirection ) );\n"; } io::Logger::Log(io::ELM_Warning, "%d b", m_bCaustics); if (m_bWater || m_bCaustics) { PixelCode += " float4 col = float4(1, 1, 1, 1);\n"\ " if (Input.Height < 0.0)\n"\ " {\n"\ " Input.Height *= -1.0;\n"; if (m_bWater) { PixelCode += " col = lerp(c1, c2, Input.Height);\n"; } if (m_bCaustics) { PixelCode += " float4 under = tex2D(TextureUnder, Input.Texcoord * 0.1);\n"; if (m_bWater) PixelCode += " col += under / ((Input.Height * 0.2 + 1.5) );\n"; else PixelCode += " col = under / ((Input.Height * 0.2 + 1.5) * 0.5);\n"; } PixelCode += " }\n"; } if (m_bReceiveShadow) { PixelCode += "Input.ProjTex.xy /= Input.ProjTex.w;\n"\ "Input.ProjTex.x = 0.5f * Input.ProjTex.x + 0.5f;\n"\ "Input.ProjTex.y = -0.5f * Input.ProjTex.y + 0.5f;\n"; } if (m_bReceiveShadow && m_pNormalMapTileTexture) { PixelCode += "float shad = GetShadow(Input.ProjTex.xy);\n"\ "float4 spec = float4(0,0,0,0);\n"\ "if (shad > 0.8f)\n"\ "spec = c.a * fvSpecular * pow( fRDotV, 10 /*fSpecularPower*/ );\n"; } PixelCode += " float4 dd = "; if (m_bWater || m_bCaustics) { PixelCode += "col * "; } if (m_bReceiveShadow && !m_pNormalMapTileTexture) { PixelCode += "GetShadow(Input.ProjTex.xy) * "; } if (m_pNormalMapTileTexture && !m_bReceiveShadow) { PixelCode += "c * fNDotL * Input.color * float4(0.9863, 0.9850, 0.9850, 1.0) + fvSpecular * pow( fRDotV, 25 /*fSpecularPower*/ ); \n"; } else if (m_pNormalMapTileTexture && m_bReceiveShadow) { PixelCode += "c * fNDotL * Input.color * float4(0.9863, 0.9850, 0.9850, 1.0) * shad + spec ; \n"; } else { PixelCode += "c * Input.Lit * Input.color; \n"; } PixelCode += " dd.a = Input.Height * 0.05;\n"\ " return dd;\n"\ "}\n"; io::Logger::Log(VertexCode.ToCharPointer()); io::Logger::Log(PixelCode.ToCharPointer()); //io::File f; //f.Open("e:/ter1ps.txt", true); //f.write((void*)PixelCode.ToCharPointer(), PixelCode.GetLenght() / 2); //f.write((void*)(PixelCode.ToCharPointer() + PixelCode.GetLenght() / 2), PixelCode.GetLenght() / 2); //f.Open("e:/ter1vs.txt", true); //f.write((void*)VertexCode.ToCharPointer(), VertexCode.GetLenght()); } // CreateShaderCode //------------------------------------------------------------------------------------ // Enables the under water vertex coloring effect. //------------------------------------------------------------------------------------ void TileTerrain::EnableWater( bool Enable, const gfx::Colorf& cStart /*= gfx::Colorf(255, 255, 255)*/, const gfx::Colorf& cEnd /*= gfx::Colorf(0, 229, 255)*/ ) { m_bWater = Enable; m_cStart = cStart; m_cEnd = cEnd; } // EnableWater //------------------------------------------------------------------------------------ // Enable and sets the caustics textures. //------------------------------------------------------------------------------------ void TileTerrain::SetCaustics( gfx::Texture** ppTextures, int TexturesCount, int speed /*= 100*/ ) { if (TexturesCount <= 0) { m_bCaustics = false; KGE_DELETE(m_pCausticsTimer, Timer); return; } if (!m_pCausticsTimer) m_pCausticsTimer = KGE_NEW(core::Timer)(); m_bCaustics = true; m_iCurrentCaustic = 0; m_ppCausticsTextures = ppTextures; m_iNumCausticsTextures = TexturesCount; m_pCausticsTimer->Interval = speed; } // SetCaustics //------------------------------------------------------------------------------------ // Sets the shader params //------------------------------------------------------------------------------------ void TileTerrain::SetShaderParams() { // Get lights Light* pLit = m_pSnMan->GetNearestLight(math::Vector()); math::Vector dir = pLit->GetLightData()->Direction; //dir.Negate(); //dir.Normalize(); //io::Logger::Log(io::ELM_Warning, "dir=%f %f %f", dir.x, dir.y, dir.z); m_pVshader->SetConstant(m_shLit, &dir.x, 3); // GET WVP math::Matrix mat = m_pRenderer->GetTransForm(kge::gfx::ETM_Projection) * m_pRenderer->GetTransForm(kge::gfx::ETM_View) * (*m_pFinalMat); m_pVshader->SetConstant(m_shWVP, mat.m_fMat, 16); if (m_bReceiveShadow) m_pVshader->SetConstant(m_shShadowMat, m_pShadowMatrix->m_fMat, 16); if (m_shView) m_pVshader->SetConstant(m_shView, m_pSnMan->GetActiveCamera()->GetViewMatrix().m_fMat, 16); if (m_pNormalMapTileTexture || m_pMaterial[0].ppTexture[1] ) { kge::sn::SceneNode* pCam = m_pSnMan->GetActiveCamera(); math::Vector vp = pCam->GetPosition(); mat.Identity(); mat.Inverse(); mat.TransFormVec2(dir); mat.TransFormVec2(vp); dir.Normalize(); m_pVshader->SetConstant(m_shLit, &dir.x, 3); mat.Identity(); //m_pVshader->SetConstant(m_shView, mat.m_fMat, 16); //vp.Normalize(); //vp = vp * 100.0f; //(0, 0, 0);//(-mat._14, -mat._24, -mat._34);// m_pVshader->SetConstant(m_shfvEyePosition, &vp.x, 3); } userSetShaderParams(); } // SetShaderParams //------------------------------------------------------------------------------------ // Create an array of Y position vertices and return //------------------------------------------------------------------------------------ void TileTerrain::GetYs(float* h) { for( int i = 0; i < m_iNumVerts; i++ ) h[i] = m_pPos[i].Y; } // GetYs //------------------------------------------------------------------------------------ // Sets the heights //------------------------------------------------------------------------------------ void TileTerrain::SetYs( float* pHeights ) { m_bPosChanged = true; for (int i = 0; i < m_iNumUparts * m_iNumVparts; i++) { m_pAABB[i].ResetY(); } int u, v; for( int i = 0; i < m_iNumVerts; i++ ) { m_pPos[i].Y = pHeights[i]; u = (m_pNorTexColor[i].tex.X ) / 16; v = (m_pNorTexColor[i].tex.Y ) / 16; if (u >= m_iNumUparts) u--; if (v >= m_iNumVparts) v--; m_pAABB[v * m_iNumUparts + u].AddY(pHeights[i]); } } // SetYs //------------------------------------------------------------------------------------ // Returns the tile count if you pass the NULL and set them otherwise //------------------------------------------------------------------------------------ int TileTerrain::GetTiles(int *pTiles1, int* pTiles2) { int tilescount = m_iNumCols * m_iNumRows; if (!pTiles1 || !pTiles2) return tilescount; memcpy(pTiles1, m_pTiles, sizeof(int) * tilescount); memcpy(pTiles2, m_pTiles2, sizeof(int) * tilescount); return tilescount; } // GetTiles //------------------------------------------------------------------------------------ // Sets the tiles //------------------------------------------------------------------------------------ void TileTerrain::SetTiles(int *pTiles1, int* pTiles2) { for (int j = 0; j < m_iNumRows; j++) { for (int i = 0; i < m_iNumCols; i++) { SetTile(i, j, pTiles1[j * m_iNumCols + i], pTiles2[j * m_iNumCols + i]); } // for i } // for j } // SetTiles //------------------------------------------------------------------------------------ // Returns blend map size if you pass NULL and set the pointer otherwise //------------------------------------------------------------------------------------ int TileTerrain::GetBlendMap(u8* pBlendMap) { int tilescount = m_iNumCols * m_iNumRows; if (!pBlendMap) return tilescount; memcpy(pBlendMap, m_pBlendTiles, tilescount); return tilescount; } // GetBlendMap //------------------------------------------------------------------------------------ // Sets the blend map //------------------------------------------------------------------------------------ void TileTerrain::SetBlendMap(u8* pBlendMap) { int tilescount = m_iNumCols * m_iNumRows; memcpy(m_pBlendTiles, pBlendMap, tilescount); m_pTextureBlend->SetData(0, 0, m_iNumCols, m_iNumRows ,m_pBlendTiles, tilescount); } // SetBlendMap //------------------------------------------------------------------------------------ // Copy the vertex colors to the pointer //------------------------------------------------------------------------------------ void TileTerrain::GetVertexColors(ul32* pVertexColor) { for (int i = 0; i < m_iNumVerts; i++) { pVertexColor[i] = m_pNorTexColor[i].Color; } } // GetVertexColors //------------------------------------------------------------------------------------ // Copy the vertex colors from the pointer //------------------------------------------------------------------------------------ void TileTerrain::SetVertexColors(ul32* pVertexColor) { m_bNorTexChanged = true; for (int i = 0; i < m_iNumVerts; i++) { m_pNorTexColor[i].Color = pVertexColor[i]; } } // SetVertexColors void TileTerrain::ReceiveShadow( const char* Code, math::Matrix* shadowmat ) { if ( Code && shadowmat) { m_bReceiveShadow = true; m_pShadowShaderCode = Code; m_pShadowMatrix = shadowmat; } else { m_bReceiveShadow = false; m_pShadowShaderCode = 0; m_pShadowMatrix = 0; } } // ReceiveShadow void TileTerrain::SetDecalShaderParams( gfx::ShaderInstance* pSI ) { math::Matrix mat = m_pRenderer->GetTransForm(gfx::ETM_Projection) * m_pRenderer->GetTransForm(gfx::ETM_View) * *((Decal*)(pSI->m_pUserData))->GetAbsoluteMatrix(); pSI->m_pVertexShader->SetConstant(m_shDecalWVP, mat.m_fMat, 16); float f = ((Decal*)(pSI->m_pUserData))->m_alpha; pSI->m_pPixelShader->SetConstant(m_shDecalAlpha, &f, 1); } // SetDecalShaderParams void TileTerrain::SetNormalMapTileTexture( gfx::TileTexture * pTileTex ) { m_pNormalMapTileTexture = pTileTex; } //------------------------------------------------------------------------------------ // Smooths the tile height //------------------------------------------------------------------------------------ void TileTerrain::Smooth( int Col, int Row ) { SmoothOneNode(Col, Row); SmoothOneNode(Col + 1, Row); SmoothOneNode(Col, Row + 1); SmoothOneNode(Col + 1, Row + 1); } // Smooth //------------------------------------------------------------------------------------ // Smooths one node height //------------------------------------------------------------------------------------ void TileTerrain::SmoothOneNode( int Col, int Row ) { if (Col < 1 || Col > m_iNumCols - 1 || Row < 1 || Row > m_iNumRows - 1) return; m_bPosChanged = true; float h = m_pPos[Row * m_iNumColspp + Col].Y + m_pPos[Row * m_iNumColspp + Col + 1].Y + m_pPos[(Row + 1) * m_iNumColspp + Col].Y + m_pPos[(Row + 1) * m_iNumColspp + Col + 1].Y + m_pPos[Row * m_iNumColspp + Col - 1].Y + m_pPos[(Row - 1) * m_iNumColspp + Col - 1].Y + m_pPos[(Row + 1) * m_iNumColspp + Col - 1].Y + m_pPos[(Row - 1) * m_iNumColspp + Col + 1].Y + m_pPos[(Row - 1) * m_iNumColspp + Col].Y ; m_pPos[Row * m_iNumColspp + Col].Y = h / 9.0f; } // SmoothOneNode //------------------------------------------------------------------------------------ // Empty space in vertex buffer //------------------------------------------------------------------------------------ void TileTerrain::RemoveDecal( Decal* pDecal ) { // Find a place in vertex buffer for this decal texture MapDecalData::iterator it = m_mDecalBufferData.find(pDecal->m_iIndex); // found if (it != m_mDecalBufferData.end()) { RemovedDecal rd; rd.VertexSize = pDecal->m_iVCount; rd.vbOffset = pDecal->m_iVbOffset; rd.ibOffset = pDecal->m_iIbOffset; it->second->Space.push_back(rd); for (size_t i = 0; i < it->second->Decals.size(); i++) { if (it->second->Decals[i] == pDecal) { it->second->Decals.erase(it->second->Decals.begin() + i); break; } } } } // RemoveDecal //------------------------------------------------------------------------------------ // //------------------------------------------------------------------------------------ void TileTerrain::OnLost() { } // OnLost //------------------------------------------------------------------------------------ // Refills vertex and index buffers after reseting device //------------------------------------------------------------------------------------ void TileTerrain::OnReset() { if (m_pMesh) m_pMesh->RefillBuffers(); UpdateNormals(); // Refill decals index buffer size_t arraySize = 6000; u16* pTemp = KGE_NEW_ARRAY(u16, arraySize); for (MapDecalData::iterator it = m_mDecalBufferData.begin(), it_end = m_mDecalBufferData.end(); it != it_end; ++it) { DecalData* pDecalData = it->second; if (pDecalData->ibSizeTotal > arraySize) { KGE_DELETE_ARRAY(pTemp); arraySize = pDecalData->ibSizeTotal; pTemp = KGE_NEW_ARRAY(u16, arraySize); } for (size_t i = 0, size = pDecalData->Decals.size(); i < size; ++i) { memcpy( &pTemp[pDecalData->Decals[i]->m_iIbOffset], pDecalData->Decals[i]->m_pIndices, pDecalData->Decals[i]->m_iICount * 2); } pDecalData->IndexBuffer->SetData(pTemp, 0, pDecalData->ibOffset); } KGE_DELETE_ARRAY(pTemp); // m_pRenderer->SetTextureParams(gfx::ETP_Point, 1); m_pRenderer->SetTextureParams(gfx::ETP_Mirror, 1); m_pRenderer->SetTextureParams(gfx::ETP_Anisotropic, 4); m_pRenderer->SetTextureParams(gfx::ETP_Anisotropic, 5); } // OnReset //------------------------------------------------------------------------------------ // //------------------------------------------------------------------------------------ void TileTerrain::RecreateShaders() { // Create shader if (m_pVshader) { m_pVshader->DecRef(); m_pVshader = NULL; } if (m_pPshader) { m_pPshader->DecRef(); m_pPshader = NULL; } core::String VertexShaderCode; core::String PixelShaderCode; CreateShaderCode(VertexShaderCode, PixelShaderCode); m_pVshader = gfx::Renderer::GetSingletonPtr()->CreateVertexShaderFromString (VertexShaderCode.ToCharPointer(), "main", gfx::ESV_VS3); m_pPshader = gfx::Renderer::GetSingletonPtr()->CreatePixelShaderFromString (PixelShaderCode.ToCharPointer(), "main", gfx::ESV_PS3); m_pVshader->ConnectOnPreRender(core::mem_fun(this, &TileTerrain::SetShaderParams)); m_shLit = m_pVshader->GetConstatnt("DirLit"); m_shWVP = m_pVshader->GetConstatnt("matViewProjection"); m_shView = m_pVshader->GetConstatnt("matView"); m_shfvEyePosition = m_pVshader->GetConstatnt("fvEyePosition"); if (m_bReceiveShadow) m_shShadowMat = m_pVshader->GetConstatnt("matLight"); m_pRenderer->SetTextureParams(gfx::ETP_Point, 1); m_pRenderer->SetTextureParams(gfx::ETP_Mirror, 1); m_pRenderer->SetTextureParams(gfx::ETP_Anisotropic, 4); m_pRenderer->SetTextureParams(gfx::ETP_Anisotropic, 5); } // RecreateShaders } // sn } // kge
[ "kocholsoft@yahoo.com" ]
kocholsoft@yahoo.com
5ccdcc0ea0c157023af3144ae8b48960d4b357aa
fc6d89e1b89a6fc32a4c2c50d0edd211398a3946
/002._SimpleLed/002._SimpleLed.ino
a056b17b94925da9337dd2ce6f8337322a587f48
[]
no_license
Axolodev/LearningArduino
86f7d0dcddb5c4b2faae16c56b2eb1b8d2634e33
fdd073dd819def825b43d8ed0cd9bb64b88b74a0
refs/heads/master
2023-01-27T21:04:21.987226
2017-10-21T18:06:16
2017-10-21T18:06:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
403
ino
unsigned int ledPin = 10; unsigned int delayTime = 1000; void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(ledPin, OUTPUT); } int getDelayTime(){ return random (300, 1000); } void loop() { // put your main code here, to run repeatedly: digitalWrite(ledPin, HIGH); delay(getDelayTime()); digitalWrite(ledPin, LOW); delay(getDelayTime()); }
[ "rroberto.rruiz@gmail.com" ]
rroberto.rruiz@gmail.com
9af3b06fe5324a6aa75560787e5184480dd56b71
dd1393cef959982b09bbdbc08180f963f7ecaec6
/PrimeEngine/PrimeEngine-Core/Graphics/BasicWindow.cpp
6429f67d268602f8e7848bd97e6dc87e4edc6f6d
[]
no_license
TomasMonkevic/PrimeEngine
5926d34c04daf32df90aae789cada8fcc3f4df0f
bd143c14151b84f2e2e39f21b93f24189b83909e
refs/heads/master
2022-09-25T07:38:36.647152
2020-02-24T10:20:00
2020-02-24T10:20:00
198,994,960
3
0
null
2020-02-21T20:51:05
2019-07-26T10:08:10
C
UTF-8
C++
false
false
764
cpp
#pragma once #include <Graphics/BasicWindow.h> #include <Graphics/OpenGL.h> namespace PrimeEngine { namespace Graphics { void BasicWindow::Clear() { GlCall(glClearColor(_color[0], _color[1], _color[2], _color[3])); GlCall(glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)); } void BasicWindow::SetSize(int width, int height) { _width = width; _height = height; } Math::Vector2 BasicWindow::GetSize() const { return Math::Vector2((float)_width, (float)_height); } void BasicWindow::SetColor(const Color& color) { _color = color; } const Color& BasicWindow::GetColor() const { return _color; } } }
[ "tomas.monkevic@sbdigital.lt" ]
tomas.monkevic@sbdigital.lt
835d159b110fda71848983153e3cf6b828f3dc0d
ecdd55ef7ea5ad5e07603daa9224afe2df47c29b
/src/qt/blockbrowser.h
5593f894860bf4848663d81832ac4d7751e6ddc3
[ "MIT" ]
permissive
compounddev/Compound-Coin
b9deb393e94b00df8a0608eca787e5e3c4b6a449
698e0c3fc31f3c24c5726f4ff46b636fde3a3e95
refs/heads/master
2021-09-04T15:12:39.626639
2017-10-05T03:21:38
2017-10-05T03:21:38
105,627,488
22
18
MIT
2018-01-08T13:05:08
2017-10-03T07:59:46
C++
UTF-8
C++
false
false
1,293
h
#ifndef BLOCKBROWSER_H #define BLOCKBROWSER_H #include "clientmodel.h" #include "main.h" #include "wallet.h" #include "base58.h" #include <QWidget> #include <QDir> #include <QFile> #include <QProcess> #include <QTime> #include <QTimer> #include <QStringList> #include <QMap> #include <QSettings> #include <QSlider> std::string getBlockHash(int); std::string getBlockMerkle(int); int getBlockNonce(int); int getBlocknBits(int); int getBlockTime(int); double getBlockHardness(int); double getBlockMint(int); double getTxTotalValue(std::string); double getTxFees(std::string); std::string getInputs(std::string); std::string getOutputs(std::string); int64_t getInputValue(CTransaction, CScript); int blocksInPastHours(int); double convertCoins(int64_t); bool addnode(std::string); const CBlockIndex* getBlockIndex(int); int getBlockHashrate(int); namespace Ui { class BlockBrowser; } class ClientModel; class BlockBrowser : public QWidget { Q_OBJECT public: explicit BlockBrowser(QWidget *parent = 0); ~BlockBrowser(); void setModel(ClientModel *model); public slots: void blockClicked(); void txClicked(); void updateExplorer(bool); private slots: private: Ui::BlockBrowser *ui; ClientModel *model; }; #endif // BLOCKBROWSER_H
[ "32350979+compoundev@users.noreply.github.com" ]
32350979+compoundev@users.noreply.github.com
21658c31c1b0d97b3e83d1b625470ee824ccd26d
7aa5b7134c72245d67654930f9f773c14d542bb2
/luis/learning_image_transport/src/backup/my_subscriber-1.cpp
ba36cde99cc18a0474ed1cb734ed0b816c4f6f19
[ "BSD-3-Clause" ]
permissive
shantanu-vyas/crw-cmu
2b226552e39db0906e231e85c8a086ebcb380255
db2fe823665dbd53f25e78fa12bc49f57d4b63aa
refs/heads/master
2021-01-19T18:07:29.549792
2013-08-12T19:26:16
2013-08-12T19:26:16
11,484,469
3
1
null
null
null
null
UTF-8
C++
false
false
1,625
cpp
/* * File: my_subscriber.cpp * Author: pototo * * Created on July 28, 2011, 9:56 PM * * This program recognizes the water in front of the boat by using ground * plane detection techniques already available. This will look for the pixels * from the boat, and go up the image until it finds the vector plane the repre- * sents the water */ #include <ros/ros.h> #include <image_transport/image_transport.h> #include <opencv/cv.h> #include <opencv/highgui.h> #include <opencv/ml.h> #include <cv_bridge/CvBridge.h> //access the elements of a picture template<class T> class Image { private: IplImage* imgp; public: Image(IplImage* img=0) {imgp=img;} ~Image(){imgp=0;} void operator=(IplImage* img) {imgp=img;} inline T* operator[](const int rowIndx) { return ((T *)(imgp->imageData + rowIndx*imgp->widthStep)); } }; void imageCallback(const sensor_msgs::ImageConstPtr& msg) { sensor_msgs::CvBridge bridge; try { cvShowImage("view", bridge.imgMsgToCv(msg, "bgr8")); } catch (sensor_msgs::CvBridgeException& e) { ROS_ERROR("Could not convert from '%s' to 'bgr8'.", msg->encoding.c_str()); } } int main(int argc, char **argv) { ros::init(argc, argv, "image_listener"); ros::NodeHandle nh; ros::Rate loop_rate(1); cvNamedWindow("view"); //while(nh.ok()) //{ ROS_INFO("getting image"); cvStartWindowThread(); image_transport::ImageTransport it(nh); image_transport::Subscriber sub = it.subscribe("camera/image", 1, imageCallback); ros::spin(); cvDestroyWindow("view"); loop_rate.sleep(); //} return 0; }
[ "shantanusvyas@gmail.com" ]
shantanusvyas@gmail.com
ead82ce9274524cde7edb79e395d2c6833ebb3ea
1a79c0b96269ba602a58f955c9161a3250000cd5
/160324.Geekband_Homework4/test.cpp
30d1653ad642e8c7520abb712127fd473f6a3bd9
[]
no_license
weiweikong/Program_Practice
4f1b31a81694f2bc768124cc7cf7d29b33802216
d475652be31e1927481c3b91374868ca670471b0
refs/heads/master
2021-01-21T13:03:13.379462
2016-04-23T11:41:14
2016-04-23T11:41:14
53,239,701
1
0
null
null
null
null
UTF-8
C++
false
false
2,498
cpp
#include <iostream> using namespace std; static void print_object(const char *name, void *this_, size_t size) { void **ugly = reinterpret_cast<void**>(this_); size_t i; printf("created %s at address %p of size %zu\n", name, this_, size); for(i = 0 ; i < size / sizeof(void*) ; i++) { printf(" pointer[%zu] == %p\n", i, ugly[i]); } } class A { public: int id; A(): id(1) { printf("A: yay, my address is %p, my size is %zu, and my id is %d!\n", this, sizeof(*this), this->id); print_object(__FUNCTION__, this, sizeof(*this)); } virtual void print() { printf("I am A(%d)\n", id); } virtual void print2(){ printf("I am print2() from A\n"); } }; class B { public: int age; B(): age(2) { printf("B: yay, my address is %p, my size is %zu, and my age is %d!\n", this, sizeof(*this), this->age); print_object(__FUNCTION__, this, sizeof(*this)); } virtual void print() { printf("I am B(%d)\n", age); } }; class C: public A, public B { public: int mode; C(): mode(4) { printf("C: yay, my address is %p, my size is %zu, my id, age and mode are %d, %d, %d!\n", this, sizeof(*this), this->id, this->age, this->mode); print_object(__FUNCTION__, this, sizeof(*this)); } virtual void print() { printf("I am C(%d, %d, %d)\n", id, age, mode); } virtual void print2(){ printf("I am print2() from C\n"); } }; int main(int argc, char* argv[]) { //A a; //B b; C c; typedef void(*Fun)(void); Fun pFun = nullptr; long *cAsLong = (long *)&c; cout << "C vtable ptr: "<<&cAsLong[0]<<endl; long **cVtable = (long **)&c; cout << "[0] C vtable: " << &cVtable[0][0] <<endl; cout << "[1] C vtable: " << &cVtable[0][1] <<endl; cout << "[2] C vtable: " << &cVtable[0][2] <<endl; cout << "[3] C vtable: " << &cVtable[0][3] <<endl; cout << "[4] C vtable: " << &cVtable[0][4] <<endl; /* for (int i = 0; (Fun)cVtable[0][i] != NULL; i++) { pFun = (Fun)cVtable[0][i]; cout << " [" << i << "] "; pFun(); }*/ cout << "[0]" << endl; pFun = (Fun)cVtable[0][0]; pFun(); cout << "[1]" << endl; pFun = (Fun)cVtable[0][1]; pFun(); cout << "[2]" << endl; cout << *((int *) &cVtable[0][2]) << endl; //pFun(); //cout << "[3]" << endl; //pFun = (Fun)cVtable[0][3]; //pFun(); cout << "[4]" << endl; pFun = (Fun)cVtable[0][4]; pFun(); return 0; }
[ "kongww.nudt@gmail.com" ]
kongww.nudt@gmail.com
455a6d0a8b669b7ad731ea63fae165769bf62191
398f882bb7a394f21fde53f0b160f981b61a7aff
/Tarea1/Collector.cpp
18a7f15bf4b7d0cbed06c8ff6325c8bbd7c08f18
[]
no_license
AkionGarro/ITCR.Datos2.Tarea1
62aac0cbc057db3f5c7f7a34f1b9c473063aa43f
8b4209e01db47205e861e00e4116fb4582184226
refs/heads/main
2023-03-26T20:02:53.511901
2021-03-18T18:11:21
2021-03-18T18:11:21
343,580,393
0
0
null
null
null
null
UTF-8
C++
false
false
2,395
cpp
// // Created by garroakion on 1/3/21. // #include "Collector.h" #include "Node.h" //---------------------Singlethon Implementation-------------------------- Collector* Collector::collector_= nullptr; Collector *Collector::GetInstance() { if(collector_==nullptr){ collector_ = new Collector(); } return collector_; } //------------------------------Constructor-------------------------------- Collector::Collector() { head = NULL; } //------------------------------Methods-------------------------------- void Collector::add_node(Node *n) { if (head == NULL) { head = n; } else { setHead(n); } } Node *Collector::setHead(Node *head) { head->setNext(this->head); this->head = head; } Node * Collector::getHead() { return head; } void Collector::collectorStatus() { if(this->head==NULL){ cout<<"Collector: [ ]"<<endl; cout<<""<<endl; }else{ Node *tmp = Collector::GetInstance()->getHead(); cout<< "Collector: ["; while(tmp->getNext()!= nullptr){ cout<<tmp->getValue()<<"->"; tmp = tmp->getNext(); } cout<<tmp->getValue()<<"] \n\n"; cout<<""<<endl; } } void Collector::deleteNode(Node *nodeDelete) { int top = Collector::size(Collector::GetInstance()); Node *current = Collector::GetInstance()->getHead(); Node *previous = new Node(); previous = NULL; for (int i = 0; i < top; i++) { if (Collector::GetInstance()->getHead()==nodeDelete && previous == NULL) { current = current->getNext(); Collector::GetInstance()->head = current; cout<<"Se elimino el nodo del collector y se agrego a la lista"<<endl; break; } if (current != nodeDelete && current->getNext() == nullptr) { cout << "No se encuentra el nodo"<<endl; } if (current == nodeDelete) { previous->setNext(current->getNext()); cout<<"Se elimino el nodo del collector y se agrego a la lista"<<endl; } else { previous = current; current = current->getNext(); } } return; } int Collector::size(Collector *collector) { int i = 0; Node *ptr = collector->getHead(); while (ptr != nullptr) { ptr = ptr->getNext(); i++; } return i; }
[ "carloscamp1008@estudiantec.cr" ]
carloscamp1008@estudiantec.cr
4f436d45a57e7a30a8154ad390deb2058e3c1ec3
e33c83c67754a38d6f2cd6c6799b1e1c30876318
/Test/Queue.cpp
7a6ae2776128661e9e439d377ef936ab080541e0
[]
no_license
CasperTheCat/LZ4-DLL
560dcc2bceded9909fef504f45f73915fbefab5e
97c0e542e14547805cb01302fcceec2216e4765f
refs/heads/master
2021-01-18T10:18:07.493526
2015-09-27T10:07:17
2015-09-27T10:07:17
43,233,275
0
0
null
null
null
null
UTF-8
C++
false
false
1,516
cpp
#include "Queue.h" PathQueue::PathQueue() { // Default Constructor back = nullptr; arbiter = new QueueItem(path("NULL"), nullptr); itemCount = 0; } PathQueue::~PathQueue() { while (itemCount != 0) { pop(); } // Last move free(arbiter); } // Push to forward void PathQueue::push(path _path) { QueueItem* temp; if (itemCount == 0) { temp = new QueueItem(_path, nullptr); } else { temp = new QueueItem(_path, arbiter->next); } arbiter->next = temp; if (back == nullptr) back = temp; itemCount++; } // Pop Element off void PathQueue::pop() { if (back != nullptr) free(back); // Relocate Back Node auto temp = arbiter; for (auto i = 0; i < itemCount - 1; ++i) // Move to 1 back from end { temp = temp->next; } // Set Back if (temp != arbiter) back = temp; else back = nullptr; --itemCount; } path PathQueue::accPop() { auto retVal = back->data; if (back != nullptr) free(back); // Relocate Back Node auto temp = arbiter; for (auto i = 0; i < itemCount - 1; ++i) // Move to 1 back from end { temp = temp->next; } // Set Back if (temp != arbiter) back = temp; else back = nullptr; --itemCount; return retVal; } // Access Last Item path PathQueue::access() const { if (back == nullptr) return path("NULLPTR_T"); return back->data; } unsigned long int PathQueue::size() const { return itemCount; } PathQueue::QueueItem::QueueItem(path _path, QueueItem *nextNode) { next = nextNode; data = _path; } PathQueue::QueueItem::~QueueItem() { // Do Nothing }
[ "zsmyna@gmail.com" ]
zsmyna@gmail.com
4abd27deb62c872daadce18dfe1cb2b52d759322
477ee5b551232fd3bc784a3fab6e77ea36c4f18c
/SoundBoard/Engine/explosion.cpp
620eca07fe21e777748dc50f8dd4f5e87f6359b2
[]
no_license
beastpuncher/GameLibrariesProject
3160d05c77cd8e532aaab67af95735fe68075202
7934af9343eed07c5e53451a398bf844bce21249
refs/heads/master
2021-06-02T10:30:48.519337
2020-01-22T05:05:12
2020-01-22T05:05:12
142,481,323
0
0
null
null
null
null
UTF-8
C++
false
false
1,104
cpp
#include "explosion.h" #include "spriteComponent.h" #include "animationComponent.h" #include "audioSystems.h" void Explosion::Create(const Vector2D & position) { m_transform.position = position; m_transform.scale = Vector2D(2.0f, 2.0f); SpriteComponent* spriteComponent = AddComponent<SpriteComponent>(); spriteComponent->Create("", Vector2D(0.5, 0.5f)); AnimationComponent* animationComponent = AddComponent<AnimationComponent>(); std::vector<std::string> textureNames = { "enemy-explosion01.png","enemy-explosion02.png","enemy-explosion03.png","enemy-explosion04.png","enemy-explosion05.png" }; animationComponent->Create(textureNames, 1.0f / 10.0f, AnimationComponent::ePlayback::ONE_TIME_DESTROY); AudioSystems::Instance()->AddSound("hit1", "enemy-hit01.wav"); AudioSystems::Instance()->AddSound("hit2", "enemy-hit02.wav"); float select = 0; select = Math::GetRandomRange(0.0f, 1.0f); if (select <= 0.5f) { AudioSystems::Instance()->PlaySound("hit1", false); } else { AudioSystems::Instance()->PlaySound("hit2", false); } } void Explosion::Update() { Entity::Update(); }
[ "beastpuncher@gmail.com" ]
beastpuncher@gmail.com
e59d7646dd27b51c687861721683fb756e1634b5
a6af28b2551fa2dad84060ae6b99fbc3a0ef9a2a
/VK cup/round 3/A/C.cpp
d848fa7d1a38dedcf8a79819d2df1bdffa7f7864
[]
no_license
blueyeq/codeforces
894f8e11ce5d44b37df62238178b68ef06d78206
9cdc04bbb3cbafbfd92a604b373d1d3e3b11b3bd
refs/heads/master
2016-09-06T04:54:00.474306
2013-07-20T15:42:39
2013-07-20T15:42:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,057
cpp
#include <stdio.h> #include <cstring> #include <string> #include <vector> #include <algorithm> #define MP make_pair #define PB push_back using namespace std; const int MAXN = 100010; vector< pair<int, int> > ans, a; int h[MAXN], typ[MAXN]; int main() { // freopen("C.in", "r", stdin); int n; while(scanf("%d", &n) != EOF) { int Min(10000000); for(int i = 1; i <= n; ++i) { scanf("%d", &h[i]); Min = min(Min, h[i]); } ans.clear(); for(int i = 1; i <= Min; ++i) ans.PB(MP(1, n)); for(int i = 1; i <= n; ++i) h[i] -= Min; for(int i = 1; i <= n; ++i) { while(h[i] == 0 && i <= n) ++i; if(i > n) break; a.clear(); a.PB(MP(h[i], i)); int Max(h[i]), lt(i); typ[i] = 1; while(h[i] <= h[i + 1] && i + 1 <= n) { // printf("---%d %d %d\n", i, h[i], h[i + 1]); a.PB(MP(h[i + 1], i + 1)); Max = h[i + 1]; typ[i + 1] = 1; ++i; } // printf("%d ** %d\n", lt, i); int rt = min(n, i); while(h[i] >= h[i + 1] && i + 1 <= n && h[i + 1] > 0) { a.PB(MP(Max - h[i + 1], i + 1)); typ[i + 1] = -1; ++i; } sort(a.begin(), a.end()); vector< pair<int, int> > ::iterator it; int hh = 0; for(it = a.begin(); it != a.end(); ++it) { for(; hh < it->first; ++hh) ans.PB(MP(lt, rt)); // printf("++%d %d\n", it->first, it->second); int id = it->second; if(typ[id] == -1) ++rt; if(typ[id] == 1) ++lt; } } printf("%d\n", ans.size()); for(int i = 0; i < ans.size(); ++i) printf("%d %d\n", ans[i].first, ans[i].second); } return 0; }
[ "hnu0314@126.com" ]
hnu0314@126.com