blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
672ce4d37efa16b69ecb8dad6809cd5473a7475a
0caf30e643f78229a7ef8742cc1d5386bc045ec1
/programming-language/cpp/concurrency-multi-thread/thread-manage/thread-manage-8.cpp
1ef29cdec70ad333531fd45a96856ecb42816ccd
[]
no_license
AlexiaChen/Adrasteia
feb1957dd694f79315784000c6f73f35bc5ca18f
1b9b29d5565a41250119e42c47aa0a4a588cef9c
refs/heads/master
2020-11-29T11:59:50.580203
2018-09-09T10:49:10
2018-09-09T10:49:10
87,497,591
3
0
null
null
null
null
UTF-8
C++
false
false
2,686
cpp
/* C++ 11的线程管理 转移线程所有权 std::thread支持移动语义,就意味着线程的所有权可以在函数外进行转移 */ #include <thread> #include <vector> #include <string> #include <iostream> static void some_function() { } static void some_other_function() { } //函数返回std::thread对象 std::thread f() { void some_function(){} return std::thread(some_function); } std::thread g() { void some_other_function(int a){ } std::thread t(some_other_function,42); return t; } //当所有权可以在函数内部传递,就允许std::thread实例可作为参数进行传递 void f(std::thread t); void g() { void some_function(); f(std::thread(some_function)); std::thread t(some_function); f(std::move(t)); } struct func { int& i; func(int& i_) : i(i_) {} void operator() () { for (unsigned j=0 ; j<1000000 ; ++j) { do_something(i); } } }; class scoped_thread { private: std::thread t; public: explicit scoped_thread(std::thread t_): // 1 t(std::move(t_)) { if(!t.joinable()) // 2 throw std::logic_error(“No thread”); } ~scoped_thread() { t.join(); // 3 } scoped_thread(scoped_thread const&)=delete; scoped_thread& operator=(scoped_thread const&)=delete; }; static void test_f() { int some_local_state; scoped_thread t(std::thread(func(some_local_state))); // 4 do_something_in_current_main_thread(); /*确保test_f函数退出之前,线程做出加入操作,不会遗忘*/ } //量产线程,并等待它们结束 static void do_work(unsigned int i) { std::cout << "thread " << i << std::endl; } static void test_f2() { std::vector<std::thread> threads; for(unsigned i=0; i < 20; ++i) { threads.push_back(std::thread(do_work,i)); // 产生线程 } std::for_each(threads.begin(),threads.end(), std::mem_fn(&std::thread::join)); // 对每个线程调用join() } int main() { std::thread t1(some_function); // t1 -> some_function std::thread t2=std::move(t1); // t2 -> some_function, t1 -> null t1=std::thread(some_other_function); // t1 -> some_other_function std::thread t3; // t3 -> null t3=std::move(t2); // t3 -> some_function , t2 -> null // 此时t1已经有关联的执行线程了,意图把t3的关联执行线程转交给t1, //所以系统直接调用std::terminate()终止程序继续运行 t1=std::move(t3); test_f(); test_f2(); return 0; }
[ "brainfvck@foxmail.com" ]
brainfvck@foxmail.com
32601aceb058a1ef3673650e82a099e794dd2d60
4da55187c399730f13c5705686f4b9af5d957a3f
/src/webots/nodes/WbLogicalDevice.cpp
99123eef134ee15917ea63f49824603eda198855
[ "Apache-2.0" ]
permissive
Ewenwan/webots
7111c5587100cf35a9993ab923b39b9e364e680a
6b7b773d20359a4bcf29ad07384c5cf4698d86d3
refs/heads/master
2020-04-17T00:23:54.404153
2019-01-16T13:58:12
2019-01-16T13:58:12
166,048,591
2
0
Apache-2.0
2019-01-16T13:53:50
2019-01-16T13:53:50
null
UTF-8
C++
false
false
1,103
cpp
// Copyright 1996-2018 Cyberbotics Ltd. // // 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 "WbLogicalDevice.hpp" void WbLogicalDevice::init() { mDeviceName = findSFString("name"); } WbLogicalDevice::WbLogicalDevice(const QString &modelName, WbTokenizer *tokenizer) : WbBaseNode(modelName, tokenizer), WbDevice() { init(); } WbLogicalDevice::WbLogicalDevice(const WbLogicalDevice &other) : WbBaseNode(other), WbDevice() { init(); } WbLogicalDevice::WbLogicalDevice(const WbNode &other) : WbBaseNode(other), WbDevice() { init(); } WbLogicalDevice::~WbLogicalDevice() { }
[ "David.Mansolino@cyberbotics.com" ]
David.Mansolino@cyberbotics.com
1ff715dbbc9a09dbc6f3a060120f7a95b704e0e8
3185241a8d61234001b1dfa32a28e29be9bfb693
/src/TReconTrackElement.cxx
e02c2d4d88abfdaa5b11181c580e20db06b96e2a
[]
no_license
captain-col/eventDisplay
5c4609eb2518191576d76f057d30901f3f0be633
109f7755f13e3fd392d93648f24b1dc28a6b0e67
refs/heads/master
2021-01-20T22:14:39.264072
2018-07-18T20:03:58
2018-07-18T20:03:58
101,806,422
0
0
null
null
null
null
UTF-8
C++
false
false
15,143
cxx
#include "TReconTrackElement.hxx" #include "TMatrixElement.hxx" #include "TEventDisplay.hxx" #include "TGUIManager.hxx" #include <TCaptLog.hxx> #include <HEPUnits.hxx> #include <THandle.hxx> #include <TUnitsTable.hxx> #include <TReconCluster.hxx> #include <TTrackState.hxx> #include <THandle.hxx> #include <TEveLine.h> #include <sstream> CP::TReconTrackElement::~TReconTrackElement() {} CP::TReconTrackElement::TReconTrackElement(CP::TReconTrack& track, bool showUncertainty, bool showDirection) : TEveElementList() { CP::THandle<CP::TTrackState> frontState = track.GetState(); if (!frontState) { CaptError("TTrackState missing!"); } TLorentzVector pos = frontState->GetPosition(); TLorentzVector var = frontState->GetPositionVariance(); TVector3 dir = frontState->GetDirection().Unit(); TVector3 dvar = frontState->GetDirectionVariance(); // This is used as the annotation, so it needs to be better. std::ostringstream title; title << "Track(" << track.GetUniqueID() << ") --" << " Nodes: " << track.GetNodes().size() << " Hits: " << track.GetHits()->size() << ", Energy Deposit: " << track.GetEDeposit() << std::endl << " Position: (" << unit::AsString(pos.X(),std::sqrt(var.X()),"length") << ", "<<unit::AsString(pos.Y(),std::sqrt(var.Y()),"length") << ", "<<unit::AsString(pos.Z(),std::sqrt(var.Z()),"length") << ")"; title << std::endl << " Direction: (" << unit::AsString(dir.X(), dvar.X(),"direction") << ", " << unit::AsString(dir.Y(), dvar.Y(),"direction") << ", " << unit::AsString(dir.Z(), dvar.Z(),"direction") << ")"; title << std::endl << " Algorithm: " << track.GetAlgorithmName() << " w/ goodness: " << track.GetQuality() << " / " << track.GetNDOF(); CP::THandle<CP::TTrackState> backState = track.GetBack(); if (backState) { TLorentzVector v = backState->GetPositionVariance(); TLorentzVector p = backState->GetPosition(); TVector3 d = backState->GetDirection().Unit(); TVector3 dv = backState->GetDirectionVariance(); title << std::endl << " Back Pos: " << unit::AsString(p.X(),std::sqrt(v.X()),"length") <<", "<<unit::AsString(p.Y(),std::sqrt(v.Y()),"length") <<", "<<unit::AsString(p.Z(),std::sqrt(v.Z()),"length"); title << std::endl << " Back Dir: (" << unit::AsString(d.X(), dv.X(),"direction") << ", " << unit::AsString(d.Y(), dv.Y(),"direction") << ", " << unit::AsString(d.Z(), dv.Z(),"direction") << ")"; } else { title << std::endl << " BACK STATE IS MISSING"; } CaptNamedLog("track",title.str()); CP::TReconNodeContainer& nodes = track.GetNodes(); CaptNamedInfo("nodes", "Track Nodes " << nodes.size()); CP::TCaptLog::IncreaseIndentation(); std::ostringstream objName; objName << track.GetName() << "(" << track.GetUniqueID() << ")"; SetMainColor(kBlue); SetName(objName.str().c_str()); SetTitle(title.str().c_str()); TEveLine* trackLine = new TEveLine(nodes.size()); trackLine->SetName(objName.str().c_str()); trackLine->SetTitle(title.str().c_str()); trackLine->SetSourceObject(&track); trackLine->SetLineColor(kBlue); trackLine->SetLineStyle(1); trackLine->SetLineWidth(2); int p=0; // Start at the front state of the track if (frontState) { TLorentzVector frontPos = frontState->GetPosition(); TLorentzVector frontVar = frontState->GetPositionVariance(); trackLine->SetPoint(p++, frontPos.X(), frontPos.Y(), frontPos.Z()); CaptNamedInfo("nodes","Front:" << unit::AsString(frontPos.X(), std::sqrt(frontVar.X()),"length") <<", "<<unit::AsString(frontPos.Y(), std::sqrt(frontVar.Y()),"length") <<", "<<unit::AsString(frontPos.Z(), std::sqrt(frontVar.Z()),"length")); CP::TCaptLog::IncreaseIndentation(); CaptNamedInfo("nodes", "Front Dir: " << unit::AsString(frontState->GetDirection())); CP::TCaptLog::DecreaseIndentation(); } for (CP::TReconNodeContainer::iterator n = nodes.begin(); n != nodes.end(); ++n) { CP::THandle<CP::TTrackState> nodeState = (*n)->GetState(); CP::THandle<CP::TReconBase> nodeObject = (*n)->GetObject(); if (!nodeState) continue; if (nodeState == frontState) { CaptError("Node is front state"); } if (nodeState == backState) { CaptError("Node is back state"); } TLorentzVector nodePos = nodeState->GetPosition(); TLorentzVector nodeVar = nodeState->GetPositionVariance(); trackLine->SetPoint(p++, nodePos.X(), nodePos.Y(), nodePos.Z()); CaptNamedInfo("nodes","Pos:" << unit::AsString(nodePos.X(), std::sqrt(nodeVar.X()),"length") <<", "<<unit::AsString(nodePos.Y(), std::sqrt(nodeVar.Y()),"length") <<", "<<unit::AsString(nodePos.Z(), std::sqrt(nodeVar.Z()),"length")); CP::TCaptLog::IncreaseIndentation(); CP::THandle<CP::TReconCluster> cluster = nodeObject; if (cluster) { double delta = (cluster->GetPosition().Vect()-nodePos.Vect()).Mag(); CaptNamedInfo("nodes","Cluster: " << unit::AsString(cluster->GetPosition().Vect(), "length") << " diff: " << unit::AsString(delta,"length")); } CaptNamedInfo("nodes", "Dir: " << unit::AsString(nodeState->GetDirection())); CP::TCaptLog::DecreaseIndentation(); } // finish at the back state of the track if (backState) { TLorentzVector backPos = backState->GetPosition(); TLorentzVector backVar = backState->GetPositionVariance(); trackLine->SetPoint(p++, backPos.X(), backPos.Y(), backPos.Z()); CaptNamedInfo("nodes","Back:" << unit::AsString(backPos.X(), std::sqrt(backVar.X()),"length") <<", "<<unit::AsString(backPos.Y(), std::sqrt(backVar.Y()),"length") <<", "<<unit::AsString(backPos.Z(), std::sqrt(backVar.Z()),"length")); CP::TCaptLog::IncreaseIndentation(); CaptNamedInfo("nodes", "Back Dir: " << unit::AsString(backState->GetDirection())); CP::TCaptLog::DecreaseIndentation(); } AddElement(trackLine); CP::TCaptLog::DecreaseIndentation(); // Add the front state position and position uncertainty. if (showUncertainty && frontState) { TLorentzVector nodePos = frontState->GetPosition(); TMatrixD nodeVar(3,3); for (int i=0; i<3; ++i) { for (int j=0; j<3; ++j) { nodeVar(i,j) = frontState->GetPositionCovariance(i,j); } } CP::TMatrixElement* uncertainty = new CP::TMatrixElement("Uncertainty", nodePos.Vect(), nodeVar, false); uncertainty->SetMainColor(kCyan-9); uncertainty->SetSourceObject(&(*frontState)); AddElement(uncertainty); } // Add the node position and position uncertainty. if (showUncertainty) { for (CP::TReconNodeContainer::iterator n = nodes.begin(); n != nodes.end(); ++n) { CP::THandle<CP::TTrackState> nodeState = (*n)->GetState(); CP::THandle<CP::TReconBase> nodeObject = (*n)->GetObject(); if (!nodeState) { CaptError("Node is missing"); continue; } TLorentzVector nodePos = nodeState->GetPosition(); TMatrixD nodeVar(3,3); for (int i=0; i<3; ++i) { for (int j=0; j<3; ++j) { nodeVar(i,j) = nodeState->GetPositionCovariance(i,j); } } CP::TMatrixElement* uncertainty = new CP::TMatrixElement("Uncertainty", nodePos.Vect(), nodeVar, false); int color = kBlue; double length = 0; if (n == nodes.begin()) { CP::THandle<CP::TTrackState> b = (*(n+1))->GetState(); length = 0.75*(frontState->GetPosition().Vect() - b->GetPosition().Vect()).Mag(); } else if ((n+1) == nodes.end()) { CP::THandle<CP::TTrackState> b = (*(n-1))->GetState(); length = 0.75*(backState->GetPosition().Vect() - b->GetPosition().Vect()).Mag(); } else { CP::THandle<CP::TTrackState> a = (*(n-1))->GetState(); CP::THandle<CP::TTrackState> b = (*(n+1))->GetState(); length = 0.5*(a->GetPosition().Vect() - b->GetPosition().Vect()).Mag(); } // EDeposit is in measured charge. CP::THandle<CP::TReconCluster> cluster = nodeObject; double energy = CP::TEventDisplay::Get().CrudeEnergy(cluster->GetEDeposit()); double dEdX = energy; if (length > 1*unit::mm) { dEdX /= length; // Get charge per length; double minEnergy = 0.18*unit::MeV/unit::mm; double maxEnergy = 3.0*unit::MeV/unit::mm; color = TEventDisplay::Get().LogColor(dEdX, minEnergy, maxEnergy,2.0); } uncertainty->SetMainColor(color); uncertainty->SetSourceObject(&(*nodeState)); AddElement(uncertainty); } } // Add the back state position and position uncertainty. if (showUncertainty && backState) { TLorentzVector nodePos = backState->GetPosition(); TMatrixD nodeVar(3,3); for (int i=0; i<3; ++i) { for (int j=0; j<3; ++j) { nodeVar(i,j) = backState->GetPositionCovariance(i,j); } } CP::TMatrixElement* uncertainty = new CP::TMatrixElement("Uncertainty", nodePos.Vect(), nodeVar, false); uncertainty->SetMainColor(kGreen+2); uncertainty->SetSourceObject(&(*backState)); AddElement(uncertainty); } #define NODE_DIRECTION #ifdef NODE_DIRECTION if (showDirection) { // Add the node direction information. for (CP::TReconNodeContainer::iterator n = nodes.begin(); n != nodes.end(); ++n) { CP::THandle<CP::TTrackState> nodeState = (*n)->GetState(); if (!nodeState) { CaptError("Node is missing"); continue; } TLorentzVector nodePos = nodeState->GetPosition(); TVector3 nodeDir = nodeState->GetDirection(); TEveLine* directionLine = new TEveLine(2); directionLine->SetLineColor(kRed); directionLine->SetLineStyle(1); directionLine->SetLineWidth(1); directionLine->SetPoint(0, nodePos.X(), nodePos.Y(), nodePos.Z()); directionLine->SetPoint(1, nodePos.X()+10.0*nodeDir.X(), nodePos.Y()+10.0*nodeDir.Y(), nodePos.Z()+10.0*nodeDir.Z()); AddElement(directionLine); } } #endif #define FRONT_DIRECTION #ifdef FRONT_DIRECTION if (showDirection && frontState) { TLorentzVector frontPos = frontState->GetPosition(); TVector3 frontDir = frontState->GetDirection(); TEveLine* directionLine = new TEveLine(2); directionLine->SetLineColor(kCyan-9); directionLine->SetLineStyle(1); directionLine->SetLineWidth(1); TVector3 tipPos = frontPos.Vect() - 140.0*frontDir; directionLine->SetPoint(0, frontPos.X(), frontPos.Y(), frontPos.Z()); directionLine->SetPoint(1, tipPos.X(), tipPos.Y(), tipPos.Z()); AddElement(directionLine); TMatrixD tipVar(3,3); for (int i=0; i<3; ++i) { for (int j=0; j<3; ++j) { tipVar(i,j) = 140.0*140.0*frontState->GetDirectionCovariance(i,j); } } CP::TMatrixElement* uncertainty = new CP::TMatrixElement("Uncertainty", tipPos, tipVar, false); uncertainty->SetMainColor(kCyan-9); uncertainty->SetSourceObject(&(*backState)); AddElement(uncertainty); } #endif #define BACK_DIRECTION #ifdef BACK_DIRECTION if (showDirection && backState) { TLorentzVector backPos = backState->GetPosition(); TVector3 backDir = backState->GetDirection(); TEveLine* directionLine = new TEveLine(2); directionLine->SetLineColor(kGreen+2); directionLine->SetLineStyle(1); directionLine->SetLineWidth(1); TVector3 tipPos = backPos.Vect() + 140.0*backDir; directionLine->SetPoint(0, backPos.X(), backPos.Y(), backPos.Z()); directionLine->SetPoint(1, tipPos.X(), tipPos.Y(), tipPos.Z()); AddElement(directionLine); TMatrixD tipVar(3,3); for (int i=0; i<3; ++i) { for (int j=0; j<3; ++j) { tipVar(i,j) = 140.0*140.0*backState->GetDirectionCovariance(i,j); } } CP::TMatrixElement* uncertainty = new CP::TMatrixElement("Uncertainty", tipPos, tipVar, false); uncertainty->SetMainColor(kGreen+2); uncertainty->SetSourceObject(&(*backState)); AddElement(uncertainty); } #endif }
[ "clark.mcgrew@stonybrook.edu" ]
clark.mcgrew@stonybrook.edu
343d2b719580e402d9e8caec90e034d73322d2f5
8a52548d886cbf4cead7c971b95977304232236a
/QtScrcpy/moc_replaythread.cpp
a89ba76d014ede38eb6fa867abe876a1dc8a00fb
[ "Apache-2.0" ]
permissive
benjamin7007/ReplayQtScrcpy
5495dfe313ab3c219ac665130607560aed1e53a5
10e826077094f90a9a69f95bea7e07524fdf7791
refs/heads/main
2023-06-19T01:39:17.823538
2021-05-20T09:44:07
2021-05-20T09:44:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,990
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'replaythread.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.8) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "device/ui/replaythread.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'replaythread.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.12.8. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE QT_WARNING_PUSH QT_WARNING_DISABLE_DEPRECATED struct qt_meta_stringdata_ReplayThread_t { QByteArrayData data[7]; char stringdata0[55]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_ReplayThread_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_ReplayThread_t qt_meta_stringdata_ReplayThread = { { QT_MOC_LITERAL(0, 0, 12), // "ReplayThread" QT_MOC_LITERAL(1, 13, 15), // "postReplayState" QT_MOC_LITERAL(2, 29, 0), // "" QT_MOC_LITERAL(3, 30, 5), // "state" QT_MOC_LITERAL(4, 36, 7), // "postLog" QT_MOC_LITERAL(5, 44, 4), // "text" QT_MOC_LITERAL(6, 49, 5) // "start" }, "ReplayThread\0postReplayState\0\0state\0" "postLog\0text\0start" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_ReplayThread[] = { // content: 8, // revision 0, // classname 0, 0, // classinfo 3, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 2, // signalCount // signals: name, argc, parameters, tag, flags 1, 1, 29, 2, 0x06 /* Public */, 4, 1, 32, 2, 0x06 /* Public */, // slots: name, argc, parameters, tag, flags 6, 0, 35, 2, 0x0a /* Public */, // signals: parameters QMetaType::Void, QMetaType::Int, 3, QMetaType::Void, QMetaType::QString, 5, // slots: parameters QMetaType::Void, 0 // eod }; void ReplayThread::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { if (_c == QMetaObject::InvokeMetaMethod) { auto *_t = static_cast<ReplayThread *>(_o); Q_UNUSED(_t) switch (_id) { case 0: _t->postReplayState((*reinterpret_cast< int(*)>(_a[1]))); break; case 1: _t->postLog((*reinterpret_cast< QString(*)>(_a[1]))); break; case 2: _t->start(); break; default: ; } } else if (_c == QMetaObject::IndexOfMethod) { int *result = reinterpret_cast<int *>(_a[0]); { using _t = void (ReplayThread::*)(int ); if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&ReplayThread::postReplayState)) { *result = 0; return; } } { using _t = void (ReplayThread::*)(QString ); if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&ReplayThread::postLog)) { *result = 1; return; } } } } QT_INIT_METAOBJECT const QMetaObject ReplayThread::staticMetaObject = { { &QObject::staticMetaObject, qt_meta_stringdata_ReplayThread.data, qt_meta_data_ReplayThread, qt_static_metacall, nullptr, nullptr } }; const QMetaObject *ReplayThread::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *ReplayThread::qt_metacast(const char *_clname) { if (!_clname) return nullptr; if (!strcmp(_clname, qt_meta_stringdata_ReplayThread.stringdata0)) return static_cast<void*>(this); return QObject::qt_metacast(_clname); } int ReplayThread::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QObject::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 3) qt_static_metacall(this, _c, _id, _a); _id -= 3; } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { if (_id < 3) *reinterpret_cast<int*>(_a[0]) = -1; _id -= 3; } return _id; } // SIGNAL 0 void ReplayThread::postReplayState(int _t1) { void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) }; QMetaObject::activate(this, &staticMetaObject, 0, _a); } // SIGNAL 1 void ReplayThread::postLog(QString _t1) { void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) }; QMetaObject::activate(this, &staticMetaObject, 1, _a); } QT_WARNING_POP QT_END_MOC_NAMESPACE
[ "zhouxian@zhipu-inc.com" ]
zhouxian@zhipu-inc.com
c6623570e13a21e191c4844dd1b5a28507a9ce30
11fa6e6506076faea2c2411143cc53ee3852a676
/program/cpp/test_.cpp
810111871925bcac6b32014793a38e49e76df4a6
[]
no_license
ZhangXinNan/LearnPractice
5f0403ebe589018b7c2dd4f349228dd83ab5c60f
992679f8697923712e42f8a5e68fbfedbeeda82d
refs/heads/master
2023-08-04T11:46:51.673750
2023-07-22T06:37:50
2023-07-22T06:37:50
60,957,100
18
7
null
2022-11-02T08:11:56
2016-06-12T08:51:41
Shell
UTF-8
C++
false
false
327
cpp
#include <iostream> using namespace std; int test(int a) { if ( a = 0xA | a > 12) if (011 & 10 == a) printf("%d\n", a); else printf("Right %d \n", a); else printf("Wrong %d\n", a); return 0; } int main() { // int a = 014; // int a = 0x14; test(014); test(0x14); return 0; }
[ "zhangxin19870504@163.com" ]
zhangxin19870504@163.com
46c4915c996979f73df630006737e141185bed9a
2695285f1acd7c5ddf54548faf9480eb18644c54
/CrazyArcade/CollisionManager.h
163178c0abc029b49b821154419309097b045513
[]
no_license
CoJang/Inha_study_API
534bf2130bb01ab4e6c00b2a5da2dafd2d02c393
b460d5557fd3658232b8eafd36109b596d745ed7
refs/heads/master
2022-12-16T19:51:01.894839
2020-09-22T08:36:41
2020-09-22T08:36:41
282,125,271
0
0
null
null
null
null
UTF-8
C++
false
false
879
h
#pragma once #include "Player.h" #include "Map.h" class CollisionManager { private: Player* MainChar; Map* map; vector<Block*> HitableBlocks; vector<Block*> ObstacleBlocks; vector<Item*> Items; vector<Bomb*> OtherBombs; vector<Player*> OtherPlayers; public: CollisionManager(); ~CollisionManager(); void ResetCollisionManager(); inline void SetPlayer(Player* instance) { MainChar = instance; }; inline void SetMap(Map* instance) { map = instance; }; inline Player* GetPlayer() { return MainChar; }; inline Map* GetMap() { return map; }; inline vector<Item*> & GetItems() { return Items; }; inline vector<Block*> & GetObstacles() { return ObstacleBlocks; }; inline vector<Block*> & GetBlocks() { return HitableBlocks; }; inline vector<Bomb*> & GetOtherBombs() { return OtherBombs; }; inline vector<Player*> & GetOtherPlayers() { return OtherPlayers; }; };
[ "bbh1039@naver.com" ]
bbh1039@naver.com
5b61ac636fabba10f3df21231aa7d8fa7ce076a9
bbcda48854d6890ad029d5973e011d4784d248d2
/trunk/win/Source/Includes/QtIncludes/src/3rdparty/webkit/WebCore/page/animation/AnimationBase.h
9fb77f9a415075ce2c6669e173eabedf391c7d5c
[ "BSD-2-Clause", "LGPL-2.0-only", "LGPL-2.1-only", "MIT", "curl", "LGPL-2.1-or-later", "BSD-3-Clause", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "Zlib", "LicenseRef-scancode-unknown", "LicenseRef-scancode-unknown-license-reference", "MS-LPL" ]
permissive
dyzmapl/BumpTop
9c396f876e6a9ace1099b3b32e45612a388943ff
1329ea41411c7368516b942d19add694af3d602f
refs/heads/master
2020-12-20T22:42:55.100473
2020-01-25T21:00:08
2020-01-25T21:00:08
236,229,087
0
0
Apache-2.0
2020-01-25T20:58:59
2020-01-25T20:58:58
null
UTF-8
C++
false
false
10,818
h
/* * Copyright (C) 2007 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Apple Computer, Inc. ("Apple") 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 APPLE AND ITS 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 APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef AnimationBase_h #define AnimationBase_h #include "AtomicString.h" #include <wtf/HashMap.h> namespace WebCore { class Animation; class AnimationBase; class AnimationController; class CompositeAnimation; class Element; class Node; class RenderObject; class RenderStyle; class TimingFunction; class AnimationBase : public RefCounted<AnimationBase> { friend class CompositeAnimation; public: AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim); virtual ~AnimationBase(); RenderObject* renderer() const { return m_object; } void clearRenderer() { m_object = 0; } double duration() const; // Animations and Transitions go through the states below. When entering the STARTED state // the animation is started. This may or may not require deferred response from the animator. // If so, we stay in this state until that response is received (and it returns the start time). // Otherwise, we use the current time as the start time and go immediately to AnimationStateLooping // or AnimationStateEnding. enum AnimState { AnimationStateNew, // animation just created, animation not running yet AnimationStateStartWaitTimer, // start timer running, waiting for fire AnimationStateStartWaitStyleAvailable, // waiting for style setup so we can start animations AnimationStateStartWaitResponse, // animation started, waiting for response AnimationStateLooping, // response received, animation running, loop timer running, waiting for fire AnimationStateEnding, // received, animation running, end timer running, waiting for fire AnimationStatePausedWaitTimer, // in pause mode when animation started AnimationStatePausedWaitResponse, // animation paused when in STARTING state AnimationStatePausedRun, // animation paused when in LOOPING or ENDING state AnimationStateDone, // end timer fired, animation finished and removed AnimationStateFillingForwards // animation has ended and is retaining its final value }; enum AnimStateInput { AnimationStateInputMakeNew, // reset back to new from any state AnimationStateInputStartAnimation, // animation requests a start AnimationStateInputRestartAnimation, // force a restart from any state AnimationStateInputStartTimerFired, // start timer fired AnimationStateInputStyleAvailable, // style is setup, ready to start animating AnimationStateInputStartTimeSet, // m_startTime was set AnimationStateInputLoopTimerFired, // loop timer fired AnimationStateInputEndTimerFired, // end timer fired AnimationStateInputPauseOverride, // pause an animation due to override AnimationStateInputResumeOverride, // resume an overridden animation AnimationStateInputPlayStateRunning, // play state paused -> running AnimationStateInputPlayStatePaused, // play state running -> paused AnimationStateInputEndAnimation // force an end from any state }; // Called when animation is in AnimationStateNew to start animation void updateStateMachine(AnimStateInput, double param); // Animation has actually started, at passed time void onAnimationStartResponse(double startTime) { updateStateMachine(AnimationBase::AnimationStateInputStartTimeSet, startTime); } // Called to change to or from paused state void updatePlayState(bool running); bool playStatePlaying() const; bool waitingToStart() const { return m_animState == AnimationStateNew || m_animState == AnimationStateStartWaitTimer; } bool preActive() const { return m_animState == AnimationStateNew || m_animState == AnimationStateStartWaitTimer || m_animState == AnimationStateStartWaitStyleAvailable || m_animState == AnimationStateStartWaitResponse; } bool postActive() const { return m_animState == AnimationStateDone; } bool active() const { return !postActive() && !preActive(); } bool running() const { return !isNew() && !postActive(); } bool paused() const { return m_pauseTime >= 0; } bool isNew() const { return m_animState == AnimationStateNew; } bool waitingForStartTime() const { return m_animState == AnimationStateStartWaitResponse; } bool waitingForStyleAvailable() const { return m_animState == AnimationStateStartWaitStyleAvailable; } // "animating" means that something is running that requires a timer to keep firing // (e.g. a software animation) void setAnimating(bool inAnimating = true) { m_isAnimating = inAnimating; } virtual double timeToNextService(); double progress(double scale, double offset, const TimingFunction*) const; virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* /*currentStyle*/, RenderStyle* /*targetStyle*/, RefPtr<RenderStyle>& /*animatedStyle*/) = 0; virtual void getAnimatedStyle(RefPtr<RenderStyle>& /*animatedStyle*/) = 0; virtual bool shouldFireEvents() const { return false; } void fireAnimationEventsIfNeeded(); bool animationsMatch(const Animation*) const; void setAnimation(const Animation* anim) { m_animation = const_cast<Animation*>(anim); } // Return true if this animation is overridden. This will only be the case for // ImplicitAnimations and is used to determine whether or not we should force // set the start time. If an animation is overridden, it will probably not get // back the AnimationStateInputStartTimeSet input. virtual bool overridden() const { return false; } // Does this animation/transition involve the given property? virtual bool affectsProperty(int /*property*/) const { return false; } bool isAnimatingProperty(int property, bool isRunningNow) const { if (m_fallbackAnimating) return false; if (isRunningNow) return (!waitingToStart() && !postActive()) && affectsProperty(property); return !postActive() && affectsProperty(property); } bool isTransformFunctionListValid() const { return m_transformFunctionListValid; } // Freeze the animation; used by DumpRenderTree. void freezeAtTime(double t); double beginAnimationUpdateTime() const; double getElapsedTime() const; AnimationBase* next() const { return m_next; } void setNext(AnimationBase* animation) { m_next = animation; } void styleAvailable() { ASSERT(waitingForStyleAvailable()); updateStateMachine(AnimationBase::AnimationStateInputStyleAvailable, -1); } #if USE(ACCELERATED_COMPOSITING) static bool animationOfPropertyIsAccelerated(int prop); #endif protected: virtual void overrideAnimations() { } virtual void resumeOverriddenAnimations() { } CompositeAnimation* compositeAnimation() { return m_compAnim; } // These are called when the corresponding timer fires so subclasses can do any extra work virtual void onAnimationStart(double /*elapsedTime*/) { } virtual void onAnimationIteration(double /*elapsedTime*/) { } virtual void onAnimationEnd(double /*elapsedTime*/) { } // timeOffset is an offset from the current time when the animation should start. Negative values are OK. // Return value indicates whether to expect an asynchronous notifyAnimationStarted() callback. virtual bool startAnimation(double /*timeOffset*/) { return false; } // timeOffset is the time at which the animation is being paused. virtual void pauseAnimation(double /*timeOffset*/) { } virtual void endAnimation() { } void goIntoEndingOrLoopingState(); bool isFallbackAnimating() const { return m_fallbackAnimating; } static bool propertiesEqual(int prop, const RenderStyle* a, const RenderStyle* b); static int getPropertyAtIndex(int, bool& isShorthand); static int getNumProperties(); // Return true if we need to start software animation timers static bool blendProperties(const AnimationBase* anim, int prop, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress); static void setNeedsStyleRecalc(Node*); void getTimeToNextEvent(double& time, bool& isLooping) const; AnimState m_animState; bool m_isAnimating; // transition/animation requires continual timer firing double m_startTime; double m_pauseTime; double m_requestedStartTime; RenderObject* m_object; RefPtr<Animation> m_animation; CompositeAnimation* m_compAnim; bool m_fallbackAnimating; // true when animating an accelerated property but have to fall back to software bool m_transformFunctionListValid; double m_totalDuration, m_nextIterationDuration; AnimationBase* m_next; }; } // namespace WebCore #endif // AnimationBase_h
[ "anandx@google.com" ]
anandx@google.com
69f239b66538e79b8bb380804c20c8bedfd67103
f9ca0e466af1ef6aa186225455382d8ee8689b07
/Biblioteca/frmReserva.h
2598f1ab1fe10ec17ccd6ecb93ec84f138239f35
[]
no_license
YugoVtr/Sibi_Biblioteca
ea56478396f0598708d6030f0cb29f08a95c100e
91401fe8fb670ef8625f5c43db054f472268b32a
refs/heads/master
2020-12-02T22:36:35.575633
2017-07-03T22:51:19
2017-07-03T22:51:19
96,155,971
0
1
null
2017-07-04T13:06:59
2017-07-03T22:49:54
C++
UTF-8
C++
false
false
627
h
#ifndef FRMRESERVA_H #define FRMRESERVA_H #include<PersistirReserva.h> #include<Reserva.h> #include<Usuario.h> #include<PersistenciaUsuario.h> #include <Exemplar.h> #include <PersistenciaExemplar.h> #include <QWidget> namespace Ui { class frmReserva; } class frmReserva : public QWidget { Q_OBJECT public: explicit frmReserva(QWidget *parent = 0); ~frmReserva(); private slots: void on_pushButtonSair_clicked(); void on_pushButtonReservar_clicked(); private: Ui::frmReserva *ui; QList<Vitor::Usuario> *listaUsuario; QList<Biblioteca::Exemplar> *listaExemplar; }; #endif // FRMRESERVA_H
[ "vtrhg69@hotmail.com" ]
vtrhg69@hotmail.com
abf6bc0bc321f3aae32aa22c23faa7238b734f94
80a14ac108418796ebc46094466e0112b606bc51
/Example7_PostProcessing/App1.cpp
106ffbacbaf4ea66a94a7e105451b7a166edbcf7
[]
no_license
dylanmcgauley/Graphics
789c906049a8db49746e907a55db2c960a67e7d6
2db35bfdd086e8607c9cd045358ee70f3532932a
refs/heads/master
2022-11-24T00:47:01.209557
2020-08-04T02:36:37
2020-08-04T02:36:37
284,858,494
0
0
null
null
null
null
UTF-8
C++
false
false
24,173
cpp
#include "App1.h" App1::App1() { } void App1::init(HINSTANCE hinstance, HWND hwnd, int screenWidth, int screenHeight, Input *in, bool VSYNC, bool FULL_SCREEN) { // Call super/parent init function (required!) BaseApplication::init(hinstance, hwnd, screenWidth, screenHeight, in, VSYNC, FULL_SCREEN); // call all inits initMeshes(screenWidth, screenHeight); loadTextures(); initShaders(hwnd); initRenderTextures(screenWidth, screenHeight); initLights(); camera->setPosition(80.0f, 6.0f, 130.0f); camera->setRotation(0.0f, 180.0f, 0.0f); shadowLight->generateOrthoMatrix((float)100, (float)100, 0.1f, 100.f); } App1::~App1() { // Run base application deconstructor BaseApplication::~BaseApplication(); // Release the Direct3D object. } bool App1::frame() { bool result; result = BaseApplication::frame(); if (!result) { return false; } // Render the graphics. result = render(); if (!result) { return false; } return true; } bool App1::render() { // Depth Pass depth(); // Render scene firstPass(); // Down Sample downSample(); // Post Processing if (edgeActive) detectEdges(); if (toonActive) applyToon(); if (spinActive) doSpinBlur(); // Up Sample upSample(); // Render final pass to frame buffer finalPass(); return true; } void App1::depth() { // Set the render target to be the render to texture and clear it shadowTexture->setRenderTarget(renderer->getDeviceContext()); shadowTexture->clearRenderTarget(renderer->getDeviceContext(), 1.0f, 1.0f, 1.0f, 1.0f); shadowLight->generateViewMatrix(); XMMATRIX lightViewMatrix = shadowLight->getViewMatrix(); XMMATRIX lightProjectionMatrix = shadowLight->getOrthoMatrix(); XMMATRIX worldMatrix = renderer->getWorldMatrix(); XMMATRIX translate; XMMATRIX rotate; XMMATRIX scale; // render heightmap with spotlights heightmapMesh->sendData(renderer->getDeviceContext()); depthShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, lightViewMatrix, lightProjectionMatrix); depthShader->render(renderer->getDeviceContext(), heightmapMesh->getIndexCount()); // render heightmap with spotlights translate = XMMatrixTranslation(99, 0, 0); worldMatrix = translate; heightmapMesh2->sendData(renderer->getDeviceContext()); depthShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, lightViewMatrix, lightProjectionMatrix); depthShader->render(renderer->getDeviceContext(), heightmapMesh2->getIndexCount()); // render plane with spotlights worldMatrix = renderer->getWorldMatrix(); translate = XMMatrixTranslation(0, 0, 99); worldMatrix = translate; lightMesh->sendData(renderer->getDeviceContext()); depthShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, lightViewMatrix, lightProjectionMatrix); depthShader->render(renderer->getDeviceContext(), lightMesh->getIndexCount()); // render plane with spotlights worldMatrix = renderer->getWorldMatrix(); translate = XMMatrixTranslation(99, 0, 99); worldMatrix = translate; lightMesh2->sendData(renderer->getDeviceContext()); depthShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, lightViewMatrix, lightProjectionMatrix); depthShader->render(renderer->getDeviceContext(), lightMesh2->getIndexCount()); // render shadow plane worldMatrix = renderer->getWorldMatrix(); translate = XMMatrixTranslation(-99, 0, 99); worldMatrix = translate; shadowMesh->sendData(renderer->getDeviceContext()); depthShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, lightViewMatrix, lightProjectionMatrix); depthShader->render(renderer->getDeviceContext(), shadowMesh->getIndexCount()); // render cubes for (int x = 0; x < 7; x++) { worldMatrix = renderer->getWorldMatrix(); translate = XMMatrixTranslation(-99 + (x * 10), 5, 110 + (x * 10)); worldMatrix = translate; cubeMesh[x]->sendData(renderer->getDeviceContext()); depthShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, lightViewMatrix, lightProjectionMatrix); depthShader->render(renderer->getDeviceContext(), cubeMesh[x]->getIndexCount()); } // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); renderer->resetViewport(); } void App1::firstPass() { // Set the render target to be the render to texture and clear it renderTexture->setRenderTarget(renderer->getDeviceContext()); renderTexture->clearRenderTarget(renderer->getDeviceContext(), 0.0f, 0.0f, 1.0f, 1.0f); // Get matrices camera->update(); for (int x = 0; x < 4; x++) { spotLight[x]->setDiffuseColour(lightColour[x].x, lightColour[x].y, lightColour[x].z, 1.0f); spotLight[x]->setPosition(lightPos[x].x, lightPos[x].y, lightPos[x].z); } XMMATRIX worldMatrix = renderer->getWorldMatrix(); XMMATRIX viewMatrix = camera->getViewMatrix(); XMMATRIX projectionMatrix = renderer->getProjectionMatrix(); XMMATRIX translate; XMMATRIX rotate; XMMATRIX scale; // render heightmap with spotlights heightmapMesh->sendData(renderer->getDeviceContext()); heightMap->setShaderParameters(renderer->getDeviceContext(), worldMatrix, viewMatrix, projectionMatrix, textureMgr->getTexture("heightmap"), textureMgr->getTexture("terrain"), manipVal, spotLight[0], spotLight[1], spotLight[2], spotLight[3]); heightMap->render(renderer->getDeviceContext(), heightmapMesh->getIndexCount()); // render heightmap with spotlights translate = XMMatrixTranslation(99, 0, 0); worldMatrix = translate; heightmapMesh2->sendData(renderer->getDeviceContext()); heightMap2->setShaderParameters(renderer->getDeviceContext(), worldMatrix, viewMatrix, projectionMatrix, textureMgr->getTexture("heightmap"), textureMgr->getTexture("terrain"), manipVal, spotLight[0], spotLight[1], spotLight[2], spotLight[3]); heightMap2->render(renderer->getDeviceContext(), heightmapMesh2->getIndexCount()); // render plane with spotlights worldMatrix = renderer->getWorldMatrix(); translate = XMMatrixTranslation(0, 0, 99); worldMatrix = translate; lightMesh->sendData(renderer->getDeviceContext()); multiLight->setShaderParameters(renderer->getDeviceContext(), worldMatrix, viewMatrix, projectionMatrix, textureMgr->getTexture("terrain"), shadowTexture->getShaderResourceView(), spotLight[0], spotLight[1], spotLight[2], spotLight[3]); multiLight->render(renderer->getDeviceContext(), lightMesh->getIndexCount()); // render plane with spotlights worldMatrix = renderer->getWorldMatrix(); translate = XMMatrixTranslation(99, 0, 99); worldMatrix = translate; lightMesh2->sendData(renderer->getDeviceContext()); multiLight2->setShaderParameters(renderer->getDeviceContext(), worldMatrix, viewMatrix, projectionMatrix, textureMgr->getTexture("terrain"), shadowTexture->getShaderResourceView(), spotLight[0], spotLight[1], spotLight[2], spotLight[3]); multiLight2->render(renderer->getDeviceContext(), lightMesh2->getIndexCount()); // render shadow plane worldMatrix = renderer->getWorldMatrix(); translate = XMMatrixTranslation(-99, 0, 99); worldMatrix = translate; shadowMesh->sendData(renderer->getDeviceContext()); shadows->setShaderParameters(renderer->getDeviceContext(), worldMatrix, viewMatrix, projectionMatrix, textureMgr->getTexture("terrain"), shadowTexture->getShaderResourceView(), shadowLight); shadows->render(renderer->getDeviceContext(), shadowMesh->getIndexCount()); // render cubes for (int x = 0; x < 7; x++) { worldMatrix = renderer->getWorldMatrix(); translate = XMMatrixTranslation(-99 + (x * 10), 5, 110 + (x * 10)); worldMatrix = translate; cubeMesh[x]->sendData(renderer->getDeviceContext()); cubes[x]->setShaderParameters(renderer->getDeviceContext(), worldMatrix, viewMatrix, projectionMatrix, textureMgr->getTexture("cube"), shadowTexture->getShaderResourceView(), shadowLight); cubes[x]->render(renderer->getDeviceContext(), cubeMesh[x]->getIndexCount()); } // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); } void App1::downSample() { XMMATRIX worldMatrix, baseViewMatrix, orthoMatrix; dsampleTexture->setRenderTarget(renderer->getDeviceContext()); dsampleTexture->clearRenderTarget(renderer->getDeviceContext(), 1.0f, 1.0f, 1.0f, 1.0f); worldMatrix = renderer->getWorldMatrix(); baseViewMatrix = camera->getOrthoViewMatrix(); orthoMatrix = dsampleTexture->getOrthoMatrix(); renderer->setZBuffer(false); orthoMesh->sendData(renderer->getDeviceContext()); textureShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, renderTexture->getShaderResourceView()); textureShader->render(renderer->getDeviceContext(), orthoMesh->getIndexCount()); renderer->setZBuffer(true); // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); } void App1::doSpinBlur() { XMMATRIX worldMatrix, baseViewMatrix, orthoMatrix; float screenSizeX = (float)spinTexture->getTextureWidth(); float screenSizeY = (float)spinTexture->getTextureHeight(); spinTexture->setRenderTarget(renderer->getDeviceContext()); spinTexture->clearRenderTarget(renderer->getDeviceContext(), 1.0f, 1.0f, 0.0f, 1.0f); worldMatrix = renderer->getWorldMatrix(); baseViewMatrix = camera->getOrthoViewMatrix(); // Get the ortho matrix from the render to texture since texture has different dimensions being that it is smaller. orthoMatrix = spinTexture->getOrthoMatrix(); // do the edge detection renderer->setZBuffer(false); orthoMesh->sendData(renderer->getDeviceContext()); // set edge paramerters spinBlur->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, dsampleTexture->getShaderResourceView()); spinBlur->render(renderer->getDeviceContext(), orthoMesh->getIndexCount()); renderer->setZBuffer(true); // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); } void App1::detectEdges() { XMMATRIX worldMatrix, baseViewMatrix, orthoMatrix; float screenSizeX = (float)edgeTexture->getTextureWidth(); float screenSizeY = (float)edgeTexture->getTextureHeight(); edgeTexture->setRenderTarget(renderer->getDeviceContext()); edgeTexture->clearRenderTarget(renderer->getDeviceContext(), 1.0f, 1.0f, 0.0f, 1.0f); worldMatrix = renderer->getWorldMatrix(); baseViewMatrix = camera->getOrthoViewMatrix(); // Get the ortho matrix from the render to texture since texture has different dimensions being that it is smaller. orthoMatrix = edgeTexture->getOrthoMatrix(); // do the edge detection renderer->setZBuffer(false); orthoMesh->sendData(renderer->getDeviceContext()); // set edge paramerters edgeShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, dsampleTexture->getShaderResourceView(), screenSizeX, screenSizeY, edgeThickness, lowerTol, upperTol); edgeShader->render(renderer->getDeviceContext(), orthoMesh->getIndexCount()); renderer->setZBuffer(true); // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); } void App1::applyToon() { XMMATRIX worldMatrix, baseViewMatrix, orthoMatrix; float screenSizeX = (float)toonTexture->getTextureWidth(); float screenSizeY = (float)toonTexture->getTextureHeight(); toonTexture->setRenderTarget(renderer->getDeviceContext()); toonTexture->clearRenderTarget(renderer->getDeviceContext(), 1.0f, 1.0f, 0.0f, 1.0f); worldMatrix = renderer->getWorldMatrix(); baseViewMatrix = camera->getOrthoViewMatrix(); // Get the ortho matrix from the render to texture since texture has different dimensions being that it is smaller. orthoMatrix = toonTexture->getOrthoMatrix(); // do the edge detection renderer->setZBuffer(false); orthoMesh->sendData(renderer->getDeviceContext()); // set edge paramerters toonShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, edgeTexture->getShaderResourceView(), cutoff1, cutoff2, cutoff3, cutoff4); toonShader->render(renderer->getDeviceContext(), orthoMesh->getIndexCount()); renderer->setZBuffer(true); // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); } void App1::horizontalBlur() { XMMATRIX worldMatrix, baseViewMatrix, orthoMatrix; float screenSizeX = (float)horizontalBlurTexture->getTextureWidth(); horizontalBlurTexture->setRenderTarget(renderer->getDeviceContext()); horizontalBlurTexture->clearRenderTarget(renderer->getDeviceContext(), 1.0f, 1.0f, 0.0f, 1.0f); worldMatrix = renderer->getWorldMatrix(); baseViewMatrix = camera->getOrthoViewMatrix(); orthoMatrix = horizontalBlurTexture->getOrthoMatrix(); // Render for Horizontal Blur renderer->setZBuffer(false); orthoMesh->sendData(renderer->getDeviceContext()); horizontalBlurShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, renderTexture->getShaderResourceView(), screenSizeX); horizontalBlurShader->render(renderer->getDeviceContext(), orthoMesh->getIndexCount()); renderer->setZBuffer(true); // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); } void App1::verticalBlur() { XMMATRIX worldMatrix, baseViewMatrix, orthoMatrix; float screenSizeY = (float)verticalBlurTexture->getTextureHeight(); verticalBlurTexture->setRenderTarget(renderer->getDeviceContext()); verticalBlurTexture->clearRenderTarget(renderer->getDeviceContext(), 0.0f, 1.0f, 1.0f, 1.0f); worldMatrix = renderer->getWorldMatrix(); baseViewMatrix = camera->getOrthoViewMatrix(); // Get the ortho matrix from the render to texture since texture has different dimensions being that it is smaller. orthoMatrix = verticalBlurTexture->getOrthoMatrix(); // Render for Vertical Blur renderer->setZBuffer(false); orthoMesh->sendData(renderer->getDeviceContext()); verticalBlurShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, horizontalBlurTexture->getShaderResourceView(), screenSizeY); verticalBlurShader->render(renderer->getDeviceContext(), orthoMesh->getIndexCount()); renderer->setZBuffer(true); // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); } void App1::upSample() { XMMATRIX worldMatrix, baseViewMatrix, orthoMatrix; usampleTexture->setRenderTarget(renderer->getDeviceContext()); usampleTexture->clearRenderTarget(renderer->getDeviceContext(), 1.0f, 1.0f, 0.0f, 1.0f); worldMatrix = renderer->getWorldMatrix(); baseViewMatrix = camera->getOrthoViewMatrix(); // Get the ortho matrix from the render to texture since texture has different dimensions being that it is smaller. orthoMatrix = usampleTexture->getOrthoMatrix(); renderer->setZBuffer(false); orthoMesh->sendData(renderer->getDeviceContext()); if (edgeActive) { if (toonActive) { textureShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, toonTexture->getShaderResourceView()); } else { textureShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, edgeTexture->getShaderResourceView()); } } else if (spinActive) { textureShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, spinTexture->getShaderResourceView()); } else { textureShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, baseViewMatrix, orthoMatrix, dsampleTexture->getShaderResourceView()); } textureShader->render(renderer->getDeviceContext(), orthoMesh->getIndexCount()); renderer->setZBuffer(true); // Reset the render target back to the original back buffer and not the render to texture anymore. renderer->setBackBufferRenderTarget(); } void App1::finalPass() { // Clear the scene. (default blue colour) renderer->beginScene(0.39f, 0.58f, 0.92f, 1.0f); // RENDER THE RENDER TEXTURE SCENE // Requires 2D rendering and an ortho mesh. renderer->setZBuffer(false); XMMATRIX worldMatrix = renderer->getWorldMatrix(); XMMATRIX orthoMatrix = renderer->getOrthoMatrix(); // ortho matrix for 2D rendering XMMATRIX orthoViewMatrix = camera->getOrthoViewMatrix(); // Default camera position for orthographic rendering orthoMesh->sendData(renderer->getDeviceContext()); textureShader->setShaderParameters(renderer->getDeviceContext(), worldMatrix, orthoViewMatrix, orthoMatrix, usampleTexture->getShaderResourceView()); textureShader->render(renderer->getDeviceContext(), orthoMesh->getIndexCount()); renderer->setZBuffer(true); // Render GUI gui(); // Present the rendered scene to the screen. renderer->endScene(); } // initialize render textures void App1::initRenderTextures(int screenWidth, int screenHeight) { renderTexture = new RenderTexture(renderer->getDevice(), screenWidth, screenHeight, SCREEN_NEAR, SCREEN_DEPTH); dsampleTexture = new RenderTexture(renderer->getDevice(), screenWidth / 2, screenHeight / 2, SCREEN_NEAR, SCREEN_DEPTH); usampleTexture = new RenderTexture(renderer->getDevice(), screenWidth, screenHeight, SCREEN_NEAR, SCREEN_DEPTH); horizontalBlurTexture = new RenderTexture(renderer->getDevice(), screenWidth, screenHeight, SCREEN_NEAR, SCREEN_DEPTH); verticalBlurTexture = new RenderTexture(renderer->getDevice(), screenWidth, screenHeight, SCREEN_NEAR, SCREEN_DEPTH); edgeTexture = new RenderTexture(renderer->getDevice(), screenWidth, screenHeight, SCREEN_NEAR, SCREEN_DEPTH); toonTexture = new RenderTexture(renderer->getDevice(), screenWidth, screenHeight, SCREEN_NEAR, SCREEN_DEPTH); spinTexture = new RenderTexture(renderer->getDevice(), screenWidth, screenHeight, SCREEN_NEAR, SCREEN_DEPTH); shadowTexture = new RenderTexture(renderer->getDevice(), 2048, 2048, 0.1, 100); } // initialize meshes void App1::initMeshes(int screenWidth, int screenHeight) { for (int x = 0; x < 7; x++) { cubeMesh[x] = new CubeMesh(renderer->getDevice(), renderer->getDeviceContext()); } orthoMesh = new OrthoMesh(renderer->getDevice(), renderer->getDeviceContext(), screenWidth, screenHeight); // Full screen size heightmapMesh = new PlaneMesh(renderer->getDevice(), renderer->getDeviceContext()); lightMesh = new PlaneMesh(renderer->getDevice(), renderer->getDeviceContext()); heightmapMesh2 = new PlaneMesh(renderer->getDevice(), renderer->getDeviceContext()); lightMesh2 = new PlaneMesh(renderer->getDevice(), renderer->getDeviceContext()); shadowMesh = new PlaneMesh(renderer->getDevice(), renderer->getDeviceContext()); } // initialize shaders void App1::initShaders(HWND hwnd) { lightShader = new LightShader(renderer->getDevice(), hwnd); textureShader = new TextureShader(renderer->getDevice(), hwnd); horizontalBlurShader = new HorizontalBlurShader(renderer->getDevice(), hwnd); verticalBlurShader = new VerticalBlurShader(renderer->getDevice(), hwnd); edgeShader = new EdgeDetector(renderer->getDevice(), hwnd); toonShader = new ToonShader(renderer->getDevice(), hwnd); spinBlur = new SpinBlur(renderer->getDevice(), hwnd); heightMap = new HeightMap(renderer->getDevice(), hwnd); multiLight = new MultiLight(renderer->getDevice(), hwnd); heightMap2 = new HeightMap(renderer->getDevice(), hwnd); multiLight2 = new MultiLight(renderer->getDevice(), hwnd); shadows = new ShadowShader(renderer->getDevice(), hwnd); for (int x = 0; x < 7; x++) { cubes[x] = new ShadowShader(renderer->getDevice(), hwnd); } depthShader = new Depth(renderer->getDevice(), hwnd); } // load in all required textures void App1::loadTextures() { textureMgr->loadTexture("cube", L"..res/test.png"); textureMgr->loadTexture("terrain", L"../res/terrain.png"); textureMgr->loadTexture("heightmap", L"../res/heightmap.png"); } // initialize lights void App1::initLights() { light = new Light; light->setAmbientColour(0.0f, 0.0f, 0.0f, 1.0f); light->setDiffuseColour(1.0f, 1.0f, 1.0f, 1.0f); light->setDirection(0.7f, 0.0f, 0.7f); // setup for the spotlights spotLight[0] = new Light; spotLight[0]->setAmbientColour(0.0f, 0.0f, 0.0f, 1.0f); lightColour[0] = XMFLOAT3(4.0f, 0.0f, 0.0f); lightPos[0] = XMFLOAT3(50.0f, 20.0f, 50.0f); spotLight[1] = new Light; spotLight[1]->setAmbientColour(0.0f, 0.0f, 0.0f, 1.0f); lightColour[1] = XMFLOAT3(0.0f, 0.0f, 4.0f); lightPos[1] = XMFLOAT3(70.0f, 20.0f, 140.0f); spotLight[2] = new Light; spotLight[2]->setAmbientColour(0.0f, 0.0f, 0.0f, 1.0f); lightColour[2] = XMFLOAT3(0.0f, 4.0f, 0.0f); lightPos[2] = XMFLOAT3(150.0f, 20.0f, 150.0f); spotLight[3] = new Light; spotLight[3]->setAmbientColour(0.0f, 0.0f, 0.0f, 1.0f); lightColour[3] = XMFLOAT3(3.0f, 3.0f, 0.0f); lightPos[3] = XMFLOAT3(140.0f, 40.0f, 50.0f); shadowLight = new Light; shadowLight->setAmbientColour(0.3f, 0.3f, 0.3f, 1.0f); shadowLight->setDiffuseColour(1.0f, 1.0f, 1.0f, 1.0f); shadowLight->setDirection(1.0f, -1.0f, 0.0f); shadowLight->setPosition(-70.0f, 6.f, 140.f); for (int x = 0; x < 4; x++) { spotLight[x]->setDiffuseColour(lightColour[x].x, lightColour[x].y, lightColour[x].z, 1.0f); spotLight[x]->setPosition(lightPos[x].x, lightPos[x].y, lightPos[x].z); } } void App1::gui() { // Force turn off unnecessary shader stages. renderer->getDeviceContext()->GSSetShader(NULL, NULL, 0); renderer->getDeviceContext()->HSSetShader(NULL, NULL, 0); renderer->getDeviceContext()->DSSetShader(NULL, NULL, 0); // Build UI ImGui::Text("FPS: %.2f", timer->getFPS()); ImGui::Checkbox("Wireframe mode", &wireframeToggle); // Edge Detection Values ImGui::Checkbox("Edge Detection", &edgeActive); if (edgeActive) { ImGui::SliderFloat("LowerTollerence", &lowerTol, -2, 2); ImGui::SliderFloat("HigherTollerence", &upperTol, -2, 2); ImGui::SliderFloat("Edge Thickness", &edgeThickness, 0.1, 7); // Toon Shader Values ImGui::Checkbox("Toon Shader", &toonActive); if (toonActive) { ImGui::SliderFloat("Cutoff 1", &cutoff1, 0, 1); ImGui::SliderFloat("Cutoff 2", &cutoff2, 0, 1); ImGui::SliderFloat("Cutoff 3", &cutoff3, 0, 1); ImGui::SliderFloat("Cutoff 4", &cutoff4, 0, 1); } } // Light Values ImGui::Checkbox("Edit Multi Lights", &editLights); if (editLights) { ImGui::DragFloat("Light1 X Position", &lightPos[0].x); ImGui::DragFloat("Light1 Y Position", &lightPos[0].y); ImGui::DragFloat("Light1 Z Position", &lightPos[0].z); ImGui::DragFloat("Light1 Red Slider", &lightColour[0].x); ImGui::DragFloat("Light1 Green Slider", &lightColour[0].y); ImGui::DragFloat("Light1 Blue Slider", &lightColour[0].z); ImGui::DragFloat("Light2 X Position", &lightPos[1].x); ImGui::DragFloat("Light2 Y Position", &lightPos[1].y); ImGui::DragFloat("Light2 Z Position", &lightPos[1].z); ImGui::DragFloat("Light2 Red Slider", &lightColour[1].x); ImGui::DragFloat("Light2 Green Slider", &lightColour[1].y); ImGui::DragFloat("Light2 Blue Slider", &lightColour[1].z); ImGui::DragFloat("Light3 X Position", &lightPos[2].x); ImGui::DragFloat("Light3 Y Position", &lightPos[2].y); ImGui::DragFloat("Light3 Z Position", &lightPos[2].z); ImGui::DragFloat("Light3 Red Slider", &lightColour[2].x); ImGui::DragFloat("Light3 Green Slider", &lightColour[2].y); ImGui::DragFloat("Light3 Blue Slider", &lightColour[2].z); ImGui::DragFloat("Light4 X Position", &lightPos[3].x); ImGui::DragFloat("Light4 Y Position", &lightPos[3].y); ImGui::DragFloat("Light4 Z Position", &lightPos[3].z); ImGui::DragFloat("Light4 Red Slider", &lightColour[3].x); ImGui::DragFloat("Light4 Green Slider", &lightColour[3].y); ImGui::DragFloat("Light4 Blue Slider", &lightColour[3].z); } // Heightmap Values ImGui::Checkbox("Edit Heightmap", &editHeight); if (editHeight) { ImGui::SliderFloat("Manipulation Value", &manipVal, 0, 50); } // Spin Values ImGui::Checkbox("Enable Spin Blur", &spinActive); // Render UI ImGui::Render(); ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData()); }
[ "dylanmcgauley@hotmail.co.uk" ]
dylanmcgauley@hotmail.co.uk
98a810a91eeecfcf97f314b4c244c737af9961ff
76171660651f1c680d5b5a380c07635de5b2367c
/SH6_43_msh4/0.12/phi
d2d729311bbc0452933a943afc66d0fe904b8952
[]
no_license
lisegaAM/SH_Paper1
3cd0cac0d95cc60d296268e65e2dd6fed4cc6127
12ceadba5c58c563ccac236b965b4b917ac47551
refs/heads/master
2021-04-27T19:44:19.527187
2018-02-21T16:16:50
2018-02-21T16:16:50
122,360,661
0
0
null
null
null
null
UTF-8
C++
false
false
531,979
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 3.0.x | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "0.12"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 0 -1 0 0 0 0]; internalField nonuniform List<scalar> 53800 ( 1.97555 0.00102707 1.97485 0.000695215 1.97416 0.000688427 1.97346 0.00068992 1.97277 0.000689848 1.97207 0.000689712 1.97137 0.000689301 1.97068 0.000688852 1.96999 0.000687864 1.9693 0.00068547 1.96862 0.000681204 1.96794 0.000673637 1.96727 0.000661357 1.96662 0.000642848 1.966 0.000616795 1.96541 0.000582407 1.96487 0.000539676 1.96438 0.000489511 1.96394 0.000433706 1.96356 0.000374709 1.96323 0.000315287 1.96297 0.000258149 1.96275 0.000205504 1.96259 0.000159082 1.96246 0.000119716 1.96236 8.75998e-05 1.96228 6.2352e-05 1.96222 4.31975e-05 1.96217 2.91584e-05 1.96212 1.92035e-05 1.96207 1.23677e-05 1.96203 7.81778e-06 1.96197 4.88084e-06 1.96191 3.0415e-06 1.96183 1.924e-06 1.96174 1.2663e-06 1.96164 8.92698e-07 1.96151 6.90026e-07 1.96137 5.87697e-07 1.9612 5.43176e-07 1.961 5.31287e-07 1.96077 5.37933e-07 1.9605 5.54704e-07 1.96021 5.77322e-07 1.95987 6.03002e-07 1.9595 6.29811e-07 1.95909 6.56983e-07 1.95864 6.82958e-07 1.95815 7.07048e-07 1.95763 7.28058e-07 1.95708 7.444e-07 1.9565 7.54106e-07 1.9559 7.68992e-07 1.95529 7.67628e-07 1.95467 7.49089e-07 1.95405 7.27989e-07 1.95344 7.00722e-07 1.95286 6.64601e-07 1.95231 6.1731e-07 1.9518 5.60245e-07 1.95134 4.94303e-07 1.95094 4.20459e-07 1.95062 3.40613e-07 1.95036 2.55764e-07 1.95018 1.67711e-07 1.95009 7.85039e-08 1.95008 4.02179e-08 1.95013 -7.74453e-08 1.95027 -1.71367e-07 1.95048 -2.43061e-07 1.95075 -3.09636e-07 1.95108 -3.56904e-07 1.95147 -3.94892e-07 1.95189 -4.19725e-07 1.95234 -4.30671e-07 1.95282 -4.29962e-07 1.95331 -4.15163e-07 1.95381 -3.89809e-07 1.95431 -3.52444e-07 1.9548 -3.03928e-07 1.95528 -2.47041e-07 1.95575 -1.84664e-07 1.95621 -1.1448e-07 1.95665 -4.19932e-08 1.95709 3.44553e-08 1.95752 1.68744e-07 1.95795 1.22054e-07 1.95837 -4.21642e-09 1.9588 4.39177e-07 1.95923 4.299e-07 1.95967 4.68262e-07 1.96012 4.87362e-07 1.96057 5.12697e-07 1.96104 5.40895e-07 1.96151 5.61911e-07 1.96198 5.74546e-07 1.96245 5.81793e-07 1.96291 5.74557e-07 1.96336 5.60689e-07 1.96379 5.39047e-07 1.96418 5.05985e-07 1.96454 4.70674e-07 1.96486 4.24894e-07 1.96512 3.73217e-07 1.96532 3.17446e-07 1.96546 2.60807e-07 1.96553 1.95319e-07 1.96553 1.35642e-07 1.96546 7.55281e-08 1.9653 -1.9576e-08 1.96507 -6.4214e-08 1.96476 -1.02806e-07 1.96438 -1.48899e-07 1.96393 -1.87767e-07 1.96341 -2.18959e-07 1.96283 -2.41933e-07 1.96219 -2.5579e-07 1.9615 -2.60308e-07 1.96077 -2.55328e-07 1.95999 -2.40991e-07 1.95917 -2.21025e-07 1.95833 -1.84264e-07 1.95745 -1.42769e-07 1.95655 -9.80835e-08 1.95562 -4.7763e-08 1.95468 7.5197e-09 1.95372 6.57419e-08 1.95276 -7.34508e-09 1.95178 5.63123e-08 1.9508 5.53759e-07 1.94983 3.0423e-07 1.94886 3.15253e-07 1.9479 3.73104e-07 1.94696 4.176e-07 1.94605 4.42851e-07 1.94517 4.54387e-07 1.94434 4.54096e-07 1.94355 4.41712e-07 1.94283 4.17171e-07 1.94218 3.80867e-07 1.9416 3.33508e-07 1.94111 2.76261e-07 1.94071 2.10584e-07 1.94041 1.38294e-07 1.9402 6.13072e-08 1.94009 -1.66983e-09 1.94007 -6.28424e-08 1.94013 -1.65066e-07 1.94028 -2.31426e-07 1.94051 -2.9918e-07 1.94082 -3.58141e-07 1.94118 -4.08076e-07 1.9416 -4.43117e-07 1.94206 -4.71751e-07 1.94255 -4.83153e-07 1.94305 -4.82756e-07 1.94356 -4.73847e-07 1.94406 -4.51408e-07 1.94454 -4.1995e-07 1.94499 -3.81959e-07 1.94541 -3.37419e-07 1.9458 -2.87884e-07 1.94615 -2.35581e-07 1.94645 -1.83863e-07 1.94671 -1.30996e-07 1.94693 -7.97809e-08 1.94711 -3.28801e-08 1.94725 1.14269e-08 1.94736 5.13901e-08 1.94744 8.62674e-08 1.94749 1.16073e-07 1.94752 1.4155e-07 1.94753 1.62734e-07 1.94753 1.75554e-07 1.94752 1.85977e-07 1.9475 1.99561e-07 1.94747 2.05804e-07 1.94744 2.09919e-07 1.94741 2.12e-07 1.94738 2.1224e-07 1.94734 2.10774e-07 1.94731 2.0874e-07 1.94728 2.0583e-07 1.94726 2.02832e-07 1.94723 1.98143e-07 1.94721 1.96964e-07 1.94719 1.90441e-07 1.94718 1.92067e-07 1.94716 1.90943e-07 1.94715 2.24445e-07 1.94714 3.969e-07 1.94713 1.23932e-06 1.94712 5.57752e-06 1.94709 2.69771e-05 1.94696 0.000133662 1.94629 0.000660883 1.9431 0.00319381 1.92812 0.014986 1.85406 0.0740645 0.257215 1.59685 2.27055 0.000991409 2.27055 0.000682632 2.27057 0.000669328 2.27058 0.000672955 2.27058 0.000673305 2.27059 0.000673425 2.2706 0.000673367 2.27061 0.000673266 2.27062 0.000672612 2.27063 0.000670547 2.27064 0.000666578 2.27065 0.000659283 2.27065 0.000647249 2.27066 0.000628968 2.27067 0.000603153 2.27067 0.000569053 2.27068 0.000526707 2.27069 0.000477076 2.27069 0.000421986 2.27069 0.000363898 2.27069 0.000305561 2.27069 0.000249635 2.27069 0.000198271 2.27069 0.000153123 2.27068 0.000114955 2.27067 8.39158e-05 2.27065 5.95885e-05 2.27063 4.11871e-05 2.27061 2.7739e-05 2.27058 1.82301e-05 2.27054 1.17183e-05 2.27049 7.39567e-06 2.27044 4.61281e-06 2.27037 2.87452e-06 2.27028 1.82122e-06 2.27018 1.20303e-06 2.27006 8.52979e-07 2.26992 6.63833e-07 2.26975 5.68965e-07 2.26955 5.28315e-07 2.26932 5.18223e-07 2.26906 5.25524e-07 2.26875 5.42295e-07 2.26841 5.6456e-07 2.26803 5.89709e-07 2.2676 6.15921e-07 2.26713 6.42427e-07 2.26661 6.67787e-07 2.26606 6.91267e-07 2.26546 7.11741e-07 2.26482 7.27596e-07 2.26416 7.37175e-07 2.26347 7.51737e-07 2.26277 7.50573e-07 2.26205 7.32412e-07 2.26134 7.11651e-07 2.26065 6.85071e-07 2.25998 6.49863e-07 2.25934 6.03741e-07 2.25876 5.48072e-07 2.25823 4.83771e-07 2.25778 4.11757e-07 2.2574 3.33908e-07 2.2571 2.51177e-07 2.2569 1.65321e-07 2.25679 7.85803e-08 2.25678 4.04179e-08 2.25684 -7.2916e-08 2.25699 -1.65284e-07 2.25723 -2.35021e-07 2.25755 -2.99857e-07 2.25793 -3.46023e-07 2.25837 -3.83039e-07 2.25885 -4.07272e-07 2.25937 -4.17964e-07 2.25992 -4.17276e-07 2.26048 -4.02895e-07 2.26105 -3.78201e-07 2.26162 -3.41817e-07 2.26219 -2.94585e-07 2.26274 -2.39179e-07 2.26328 -1.78381e-07 2.2638 -1.10016e-07 2.26431 -3.9352e-08 2.26482 3.61433e-08 2.26531 1.68297e-07 2.2658 1.22793e-07 2.26628 1.95723e-09 2.26677 4.23217e-07 2.26727 4.21813e-07 2.26777 4.58793e-07 2.26829 4.77474e-07 2.26881 5.02139e-07 2.26935 5.29599e-07 2.26989 5.50026e-07 2.27043 5.6229e-07 2.27097 5.69245e-07 2.2715 5.62195e-07 2.27202 5.48589e-07 2.27251 5.27409e-07 2.27296 4.95183e-07 2.27337 4.60648e-07 2.27373 4.16003e-07 2.27404 3.65555e-07 2.27427 3.11171e-07 2.27443 2.55877e-07 2.27451 1.92067e-07 2.27451 1.33889e-07 2.27443 7.53098e-08 2.27425 -1.77788e-08 2.27397 -6.04923e-08 2.27362 -9.84801e-08 2.27318 -1.43304e-07 2.27266 -1.81128e-07 2.27206 -2.11487e-07 2.2714 -2.33864e-07 2.27066 -2.4735e-07 2.26987 -2.51734e-07 2.26903 -2.46877e-07 2.26813 -2.3298e-07 2.26719 -2.13491e-07 2.26622 -1.77686e-07 2.26521 -1.3705e-07 2.26417 -9.34633e-08 2.26311 -4.44197e-08 2.26203 9.51695e-09 2.26093 6.52544e-08 2.25982 -5.64614e-09 2.2587 5.90771e-08 2.25757 5.38494e-07 2.25645 3.02487e-07 2.25534 3.09457e-07 2.25424 3.65773e-07 2.25316 4.09174e-07 2.25211 4.33774e-07 2.2511 4.44972e-07 2.25014 4.44641e-07 2.24924 4.32534e-07 2.24841 4.08563e-07 2.24766 3.73129e-07 2.247 3.26931e-07 2.24644 2.7108e-07 2.24598 2.0703e-07 2.24563 1.36526e-07 2.24538 6.15219e-08 2.24526 -2.29193e-10 2.24523 -5.89498e-08 2.24531 -1.59329e-07 2.24548 -2.23848e-07 2.24574 -2.89725e-07 2.24609 -3.47212e-07 2.24651 -3.95819e-07 2.24699 -4.30045e-07 2.24752 -4.57843e-07 2.24808 -4.69016e-07 2.24865 -4.6863e-07 2.24923 -4.59902e-07 2.2498 -4.38107e-07 2.25035 -4.07465e-07 2.25087 -3.70444e-07 2.25136 -3.27072e-07 2.2518 -2.78847e-07 2.2522 -2.27912e-07 2.25255 -1.77519e-07 2.25284 -1.26078e-07 2.2531 -7.6212e-08 2.2533 -3.05117e-08 2.25346 1.26238e-08 2.25359 5.15465e-08 2.25368 8.55143e-08 2.25374 1.14571e-07 2.25377 1.39367e-07 2.25379 1.5998e-07 2.25378 1.72524e-07 2.25377 1.82539e-07 2.25375 1.95902e-07 2.25372 2.01959e-07 2.25368 2.05942e-07 2.25364 2.07965e-07 2.2536 2.08234e-07 2.25357 2.06768e-07 2.25353 2.04916e-07 2.2535 2.01762e-07 2.25346 1.99627e-07 2.25344 1.93428e-07 2.25341 1.95025e-07 2.25339 1.85199e-07 2.25337 1.92613e-07 2.25335 1.93857e-07 2.25334 2.69356e-07 2.25333 6.54265e-07 2.25332 2.45759e-06 2.2533 1.18407e-05 2.25327 5.80769e-05 2.25311 0.000288567 2.25234 0.00142767 2.24863 0.00690502 2.23123 0.0323967 2.14627 0.159032 0.542209 1.86128 2.60818 0.00095044 2.60818 0.000666423 2.6082 0.00064619 2.60821 0.000651538 2.60822 0.000651997 2.60823 0.000652005 2.60825 0.000651947 2.60826 0.000651857 2.60828 0.000651228 2.60829 0.000649245 2.60831 0.000645419 2.60832 0.000638384 2.60833 0.000626772 2.60835 0.000609122 2.60836 0.000584189 2.60837 0.000551239 2.60838 0.000510305 2.60838 0.000462309 2.60839 0.000409014 2.60839 0.000352798 2.60839 0.000296319 2.60839 0.000242155 2.60838 0.000192387 2.60837 0.000148627 2.60836 0.000111617 2.60835 8.15071e-05 2.60833 5.78988e-05 2.6083 4.00337e-05 2.60827 2.69721e-05 2.60824 1.77324e-05 2.60819 1.14023e-05 2.60814 7.19841e-06 2.60807 4.49079e-06 2.60799 2.79869e-06 2.6079 1.77289e-06 2.60778 1.17051e-06 2.60764 8.29208e-07 2.60748 6.44657e-07 2.60728 5.51961e-07 2.60706 5.12126e-07 2.60679 5.02096e-07 2.60649 5.09015e-07 2.60614 5.25186e-07 2.60575 5.46697e-07 2.60531 5.71024e-07 2.60482 5.96378e-07 2.60428 6.22014e-07 2.60369 6.46567e-07 2.60304 6.69283e-07 2.60236 6.89055e-07 2.60163 7.04338e-07 2.60087 7.13677e-07 2.60007 7.27727e-07 2.59926 7.26777e-07 2.59845 7.09155e-07 2.59763 6.88844e-07 2.59683 6.63109e-07 2.59606 6.28992e-07 2.59533 5.84318e-07 2.59466 5.30388e-07 2.59406 4.68131e-07 2.59353 3.98421e-07 2.5931 3.23038e-07 2.59276 2.42948e-07 2.59253 1.59835e-07 2.5924 7.61065e-08 2.59238 3.82825e-08 2.59246 -6.99911e-08 2.59264 -1.60268e-07 2.59291 -2.27614e-07 2.59327 -2.90296e-07 2.59371 -3.35065e-07 2.59421 -3.70826e-07 2.59477 -3.94277e-07 2.59537 -4.04583e-07 2.596 -4.03874e-07 2.59664 -3.89922e-07 2.5973 -3.65966e-07 2.59795 -3.30707e-07 2.5986 -2.84963e-07 2.59923 -2.31332e-07 2.59985 -1.72437e-07 2.60045 -1.06294e-07 2.60104 -3.78568e-08 2.60162 3.59651e-08 2.60218 1.64186e-07 2.60275 1.20159e-07 2.60331 6.28279e-09 2.60387 4.02386e-07 2.60444 4.08974e-07 2.60502 4.44379e-07 2.60561 4.62533e-07 2.60621 4.86336e-07 2.60683 5.12908e-07 2.60745 5.32651e-07 2.60807 5.44525e-07 2.60869 5.51216e-07 2.6093 5.44467e-07 2.60989 5.31258e-07 2.61045 5.1071e-07 2.61098 4.79558e-07 2.61145 4.46031e-07 2.61186 4.02801e-07 2.61221 3.53903e-07 2.61248 3.01214e-07 2.61266 2.47594e-07 2.61276 1.85832e-07 2.61276 1.29483e-07 2.61266 7.27523e-08 2.61245 -1.77788e-08 2.61214 -5.83641e-08 2.61173 -9.55406e-08 2.61123 -1.38883e-07 2.61063 -1.75507e-07 2.60994 -2.04884e-07 2.60918 -2.2653e-07 2.60834 -2.3959e-07 2.60743 -2.43814e-07 2.60646 -2.39095e-07 2.60543 -2.25693e-07 2.60435 -2.06761e-07 2.60323 -1.72171e-07 2.60207 -1.32652e-07 2.60088 -9.0422e-08 2.59966 -4.299e-08 2.59842 9.18226e-09 2.59715 6.22131e-08 2.59588 -5.62432e-09 2.59459 5.89826e-08 2.5933 5.16895e-07 2.59201 2.9683e-07 2.59073 2.99664e-07 2.58947 3.54001e-07 2.58823 3.96056e-07 2.58702 4.19855e-07 2.58587 4.30671e-07 2.58476 4.30333e-07 2.58373 4.18597e-07 2.58278 3.95376e-07 2.58192 3.61051e-07 2.58116 3.16308e-07 2.58051 2.62226e-07 2.57998 2.00223e-07 2.57958 1.31986e-07 2.5793 5.94446e-08 2.57915 -6.6575e-10 2.57912 -5.6596e-08 2.57921 -1.54501e-07 2.5794 -2.16809e-07 2.57971 -2.80397e-07 2.58011 -3.36062e-07 2.58059 -3.83028e-07 2.58115 -4.16207e-07 2.58175 -4.42986e-07 2.58239 -4.53845e-07 2.58305 -4.53456e-07 2.58372 -4.44932e-07 2.58437 -4.23868e-07 2.58501 -3.94208e-07 2.58561 -3.58359e-07 2.58616 -3.16359e-07 2.58667 -2.69723e-07 2.58713 -2.20436e-07 2.58752 -1.71647e-07 2.58787 -1.21894e-07 2.58816 -7.36582e-08 2.58839 -2.94349e-08 2.58858 1.22818e-08 2.58872 4.99422e-08 2.58882 8.27968e-08 2.58889 1.10907e-07 2.58893 1.34889e-07 2.58895 1.54811e-07 2.58895 1.67009e-07 2.58893 1.76547e-07 2.5889 1.89608e-07 2.58887 1.95432e-07 2.58883 1.99278e-07 2.58878 2.01231e-07 2.58874 2.01515e-07 2.5887 2.00049e-07 2.58865 1.98419e-07 2.58862 1.94996e-07 2.58858 1.93868e-07 2.58855 1.8593e-07 2.58852 1.90717e-07 2.58849 1.77111e-07 2.58847 1.91154e-07 2.58845 1.9497e-07 2.58844 3.17861e-07 2.58842 9.43779e-07 2.58841 3.8237e-06 2.5884 1.88834e-05 2.58836 9.30517e-05 2.58818 0.000462818 2.58731 0.00229076 2.58313 0.0110905 2.56351 0.052019 2.46728 0.255275 0.86016 2.14933 2.99601 0.000904565 2.99602 0.000647033 2.99603 0.000619926 2.99605 0.0006269 2.99606 0.000627514 2.99607 0.000627399 2.99609 0.000627338 2.9961 0.000627259 2.99612 0.000626657 2.99614 0.000624765 2.99616 0.0006211 2.99617 0.00061436 2.99619 0.000603228 2.9962 0.0005863 2.99621 0.000562373 2.99623 0.000530739 2.99624 0.000491421 2.99624 0.0004453 2.99625 0.000394064 2.99625 0.000339996 2.99625 0.000285651 2.99625 0.000233511 2.99624 0.000185581 2.99623 0.000143421 2.99622 0.000107746 2.9962 7.87095e-05 2.99618 5.59331e-05 2.99615 3.86896e-05 2.99612 2.60767e-05 2.99608 1.71503e-05 2.99603 1.1032e-05 2.99597 6.96688e-06 2.99589 4.34735e-06 2.9958 2.70949e-06 2.99569 1.71606e-06 2.99555 1.13236e-06 2.9954 8.01439e-07 2.99521 6.22338e-07 2.99498 5.32265e-07 2.99472 4.9343e-07 2.99442 4.83502e-07 2.99407 4.90007e-07 2.99367 5.0549e-07 2.99322 5.26154e-07 2.99272 5.49528e-07 2.99215 5.73906e-07 2.99153 5.9856e-07 2.99085 6.22174e-07 2.99011 6.4401e-07 2.98932 6.63011e-07 2.98849 6.77657e-07 2.98761 6.86712e-07 2.9867 7.00151e-07 2.98577 6.99416e-07 2.98483 6.82448e-07 2.98389 6.62698e-07 2.98298 6.3792e-07 2.98209 6.05058e-07 2.98126 5.62068e-07 2.98048 5.10157e-07 2.97979 4.50251e-07 2.97919 3.83166e-07 2.97869 3.10614e-07 2.9783 2.33566e-07 2.97803 1.53614e-07 2.97789 7.32871e-08 2.97787 3.59723e-08 2.97795 -6.67133e-08 2.97816 -1.54483e-07 2.97847 -2.19094e-07 2.97889 -2.79309e-07 2.97939 -3.22452e-07 2.97997 -3.56817e-07 2.98061 -3.79368e-07 2.9813 -3.89242e-07 2.98202 -3.88518e-07 2.98276 -3.75054e-07 2.98351 -3.51967e-07 2.98426 -3.1801e-07 2.98501 -2.73998e-07 2.98573 -2.2239e-07 2.98644 -1.65695e-07 2.98714 -1.02085e-07 2.98781 -3.62234e-08 2.98847 3.55176e-08 2.98913 1.58838e-07 2.98977 1.16561e-07 2.99041 1.08012e-08 2.99106 3.79954e-07 2.99171 3.94208e-07 2.99238 4.27772e-07 2.99306 4.45281e-07 2.99375 4.68124e-07 2.99446 4.93677e-07 2.99517 5.12649e-07 2.99589 5.24087e-07 2.9966 5.30457e-07 2.9973 5.24047e-07 2.99798 5.11303e-07 2.99862 4.91509e-07 2.99922 4.61583e-07 2.99977 4.29227e-07 3.00024 3.87623e-07 3.00064 3.40515e-07 3.00095 2.89798e-07 3.00116 2.38106e-07 3.00127 1.78694e-07 3.00127 1.2447e-07 3.00116 6.98456e-08 3.00092 -1.76515e-08 3.00056 -5.59376e-08 3.00009 -9.21063e-08 2.99951 -1.33765e-07 2.99882 -1.6901e-07 2.99804 -1.97266e-07 2.99716 -2.18071e-07 2.99619 -2.30633e-07 2.99515 -2.34682e-07 2.99403 -2.30146e-07 2.99285 -2.17289e-07 2.99161 -1.99001e-07 2.99033 -1.65808e-07 2.989 -1.2762e-07 2.98763 -8.69659e-08 2.98623 -4.13602e-08 2.9848 8.80027e-09 2.98335 5.88843e-08 2.98188 -5.34055e-09 2.9804 5.87715e-08 2.97892 4.92502e-07 2.97744 2.8955e-07 2.97597 2.88393e-07 2.97451 3.40508e-07 2.97309 3.81006e-07 2.97171 4.03907e-07 2.97038 4.14293e-07 2.96911 4.13944e-07 2.96793 4.02644e-07 2.96683 3.80285e-07 2.96584 3.47234e-07 2.96497 3.04175e-07 2.96423 2.52134e-07 2.96362 1.92482e-07 2.96315 1.26827e-07 2.96284 5.71017e-08 2.96267 -1.05501e-09 2.96264 -5.40022e-08 2.96273 -1.48892e-07 2.96296 -2.08736e-07 2.96331 -2.69702e-07 2.96377 -3.23282e-07 2.96432 -3.68378e-07 2.96496 -4.00374e-07 2.96565 -4.25996e-07 2.96639 -4.36492e-07 2.96715 -4.36114e-07 2.96791 -4.27834e-07 2.96867 -4.07614e-07 2.96939 -3.79077e-07 2.97008 -3.4456e-07 2.97072 -3.0416e-07 2.9713 -2.59319e-07 2.97183 -2.11912e-07 2.97229 -1.64971e-07 2.97268 -1.17168e-07 2.97301 -7.0766e-08 2.97328 -2.82271e-08 2.9735 1.18562e-08 2.97366 4.80868e-08 2.97378 7.96826e-08 2.97386 1.06702e-07 2.9739 1.29756e-07 2.97392 1.48884e-07 2.97392 1.6069e-07 2.9739 1.69697e-07 2.97387 1.82394e-07 2.97383 1.87974e-07 2.97378 1.91656e-07 2.97373 1.93522e-07 2.97368 1.93835e-07 2.97363 1.92365e-07 2.97358 1.9099e-07 2.97354 1.87258e-07 2.9735 1.87265e-07 2.97346 1.77341e-07 2.97343 1.85795e-07 2.9734 1.67824e-07 2.97337 1.89473e-07 2.97335 1.96167e-07 2.97333 3.73147e-07 2.97332 1.27396e-06 2.9733 5.38277e-06 2.97329 2.69221e-05 2.97324 0.000132971 2.97304 0.000661723 2.97205 0.00327627 2.96727 0.0158746 2.94488 0.0744115 2.83568 0.364489 1.21363 2.48222 3.4415 0.000853417 3.44152 0.000623796 3.44154 0.000590121 3.44155 0.000598562 3.44157 0.000599377 3.44158 0.000599133 3.4416 0.000599068 3.44162 0.000599001 3.44164 0.000598429 3.44166 0.000596639 3.44168 0.000593156 3.4417 0.00058675 3.44172 0.000576163 3.44173 0.000560055 3.44175 0.000537275 3.44176 0.000507141 3.44177 0.000469669 3.44178 0.000425694 3.44179 0.000376816 3.44179 0.000325213 3.44179 0.00027332 3.44179 0.000223511 3.44178 0.000177698 3.44177 0.000137383 3.44175 0.000103252 3.44173 7.54582e-05 3.44171 5.36458e-05 3.44168 3.71237e-05 3.44164 2.50323e-05 3.44159 1.64706e-05 3.44153 1.05992e-05 3.44146 6.69598e-06 3.44138 4.17944e-06 3.44127 2.60506e-06 3.44114 1.64959e-06 3.44099 1.08784e-06 3.44081 7.69125e-07 3.44059 5.96468e-07 3.44033 5.09508e-07 3.44003 4.71882e-07 3.43968 4.62103e-07 3.43928 4.68142e-07 3.43883 4.82849e-07 3.43831 5.02534e-07 3.43773 5.2482e-07 3.43708 5.48091e-07 3.43636 5.71616e-07 3.43558 5.94164e-07 3.43474 6.14988e-07 3.43383 6.33096e-07 3.43287 6.47036e-07 3.43186 6.5576e-07 3.43082 6.6849e-07 3.42975 6.67962e-07 3.42867 6.51749e-07 3.42759 6.3271e-07 3.42654 6.0903e-07 3.42552 5.77633e-07 3.42456 5.36582e-07 3.42368 4.86978e-07 3.42288 4.29774e-07 3.42219 3.6571e-07 3.42161 2.96421e-07 3.42117 2.22864e-07 3.42086 1.46525e-07 3.42069 7.00675e-08 3.42067 3.34694e-08 3.42077 -6.30207e-08 3.421 -1.47797e-07 3.42137 -2.09287e-07 3.42184 -2.66697e-07 3.42242 -3.07951e-07 3.42309 -3.40722e-07 3.42382 -3.62244e-07 3.42461 -3.71645e-07 3.42544 -3.70912e-07 3.42629 -3.58032e-07 3.42716 -3.35946e-07 3.42802 -3.03504e-07 3.42887 -2.61469e-07 3.42971 -2.12181e-07 3.43052 -1.58016e-07 3.43132 -9.73159e-08 3.4321 -3.43898e-08 3.43286 3.47536e-08 3.4336 1.52217e-07 3.43434 1.11986e-07 3.43508 1.53395e-08 3.43582 3.55751e-07 3.43658 3.77177e-07 3.43734 4.08663e-07 3.43812 4.25409e-07 3.43892 4.47177e-07 3.43973 4.71553e-07 3.44055 4.89648e-07 3.44137 5.00573e-07 3.44219 5.06598e-07 3.44299 5.0055e-07 3.44377 4.88351e-07 3.44451 4.69419e-07 3.4452 4.40899e-07 3.44583 4.09907e-07 3.44637 3.70184e-07 3.44683 3.2515e-07 3.44719 2.76697e-07 3.44743 2.27259e-07 3.44755 1.70541e-07 3.44755 1.18776e-07 3.44742 6.65204e-08 3.44715 -1.73732e-08 3.44674 -5.31727e-08 3.4462 -8.81118e-08 3.44553 -1.27844e-07 3.44474 -1.61504e-07 3.44384 -1.88482e-07 3.44283 -2.08334e-07 3.44172 -2.20323e-07 3.44052 -2.24181e-07 3.43924 -2.19827e-07 3.43788 -2.07605e-07 3.43646 -1.90066e-07 3.43498 -1.58465e-07 3.43345 -1.21843e-07 3.43188 -8.30023e-08 3.43027 -3.94848e-08 3.42863 8.36008e-09 3.42697 5.52554e-08 3.42528 -4.86216e-09 3.42358 5.83095e-08 3.42188 4.65143e-07 3.42018 2.8037e-07 3.41849 2.75451e-07 3.41682 3.25046e-07 3.41519 3.63747e-07 3.4136 3.85608e-07 3.41207 3.95523e-07 3.41062 3.95166e-07 3.40925 3.84363e-07 3.408 3.62998e-07 3.40686 3.31434e-07 3.40586 2.90303e-07 3.405 2.40607e-07 3.4043 1.83649e-07 3.40377 1.20954e-07 3.4034 5.44533e-08 3.40321 -1.43154e-09 3.40318 -5.11209e-08 3.40328 -1.42376e-07 3.40354 -1.99452e-07 3.40395 -2.5744e-07 3.40448 -3.08633e-07 3.40511 -3.51603e-07 3.40584 -3.82228e-07 3.40664 -4.06548e-07 3.40749 -4.16634e-07 3.40836 -4.16278e-07 3.40924 -4.08278e-07 3.4101 -3.89027e-07 3.41094 -3.61781e-07 3.41173 -3.28793e-07 3.41246 -2.90223e-07 3.41313 -2.47446e-07 3.41373 -2.02197e-07 3.41426 -1.57355e-07 3.41471 -1.11771e-07 3.41509 -6.74936e-08 3.4154 -2.68719e-08 3.41565 1.1376e-08 3.41584 4.5944e-08 3.41597 7.6092e-08 3.41607 1.01882e-07 3.41612 1.2387e-07 3.41614 1.42103e-07 3.41614 1.53446e-07 3.41611 1.61883e-07 3.41608 1.74132e-07 3.41603 1.79432e-07 3.41598 1.82927e-07 3.41592 1.84707e-07 3.41586 1.85053e-07 3.41581 1.83563e-07 3.41575 1.82472e-07 3.4157 1.78376e-07 3.41565 1.79711e-07 3.41561 1.67498e-07 3.41557 1.8016e-07 3.41554 1.57172e-07 3.41551 1.87552e-07 3.41548 1.97373e-07 3.41546 4.35857e-07 3.41545 1.64884e-06 3.41543 7.15465e-06 3.41541 3.60607e-05 3.41536 0.000178347 3.41513 0.000887845 3.414 0.00439699 3.40856 0.0213209 3.3831 0.0998792 3.25979 0.48781 1.60526 2.86817 3.95325 0.000796544 3.95326 0.000595927 3.95329 0.000556301 3.95331 0.000565981 3.95332 0.000567037 3.95334 0.000566664 3.95336 0.000566594 3.95338 0.000566541 3.95341 0.000566004 3.95343 0.000564329 3.95345 0.000561052 3.95347 0.000555026 3.95349 0.000545058 3.95351 0.000529882 3.95353 0.000508407 3.95354 0.000479984 3.95356 0.000444621 3.95357 0.000403096 3.95357 0.000356919 3.95358 0.000308141 3.95358 0.000259064 3.95357 0.000211932 3.95356 0.000168559 3.95355 0.000130372 3.95354 9.8025e-05 3.95351 7.16693e-05 3.95348 5.09754e-05 3.95345 3.52919e-05 3.95341 2.3808e-05 3.95335 1.56721e-05 3.95328 1.00896e-05 3.9532 6.37641e-06 3.9531 3.98104e-06 3.95298 2.4816e-06 3.95283 1.57106e-06 3.95266 1.03537e-06 3.95245 7.31223e-07 3.9522 5.6629e-07 3.9519 4.83096e-07 3.95156 4.46974e-07 3.95116 4.37421e-07 3.9507 4.42963e-07 3.95018 4.56792e-07 3.94958 4.75367e-07 3.94891 4.96414e-07 3.94817 5.18414e-07 3.94735 5.40646e-07 3.94645 5.61969e-07 3.94548 5.81649e-07 3.94444 5.98749e-07 3.94333 6.11913e-07 3.94218 6.20247e-07 3.94098 6.32134e-07 3.93975 6.31785e-07 3.93851 6.16481e-07 3.93727 5.98334e-07 3.93606 5.75932e-07 3.93489 5.46216e-07 3.93379 5.07397e-07 3.93277 4.60463e-07 3.93186 4.0636e-07 3.93106 3.45774e-07 3.9304 2.80231e-07 3.92989 2.10669e-07 3.92954 1.38487e-07 3.92935 6.64104e-08 3.92932 3.07864e-08 3.92943 -5.8867e-08 3.9297 -1.40048e-07 3.93012 -1.97998e-07 3.93066 -2.52195e-07 3.93133 -2.91278e-07 3.93209 -3.22235e-07 3.93294 -3.42593e-07 3.93384 -3.51466e-07 3.9348 -3.50741e-07 3.93578 -3.3855e-07 3.93677 -3.1763e-07 3.93776 -2.86936e-07 3.93874 -2.47182e-07 3.9397 -2.00567e-07 3.94064 -1.49315e-07 3.94155 -9.19435e-08 3.94244 -3.24017e-08 3.94332 3.36204e-08 3.94417 1.43739e-07 3.94503 1.05876e-07 3.94587 1.9958e-08 3.94673 3.30098e-07 3.94759 3.57611e-07 3.94847 3.86635e-07 3.94936 4.02467e-07 3.95028 4.23038e-07 3.95121 4.46074e-07 3.95215 4.63172e-07 3.9531 4.7351e-07 3.95404 4.79155e-07 3.95496 4.73502e-07 3.95586 4.61933e-07 3.95671 4.44007e-07 3.9575 4.17086e-07 3.95822 3.87689e-07 3.95884 3.50133e-07 3.95937 3.07512e-07 3.95978 2.61676e-07 3.96006 2.14855e-07 3.9602 1.61242e-07 3.9602 1.1233e-07 3.96005 6.2767e-08 3.95974 -1.68693e-08 3.95926 -5.00149e-08 3.95864 -8.34607e-08 3.95788 -1.20982e-07 3.95697 -1.52817e-07 3.95594 -1.7833e-07 3.95477 -1.97097e-07 3.9535 -2.08434e-07 3.95212 -2.12075e-07 3.95065 -2.07949e-07 3.94909 -1.96428e-07 3.94746 -1.7975e-07 3.94576 -1.49978e-07 3.944 -1.15223e-07 3.9422 -7.84676e-08 3.94035 -3.73411e-08 3.93846 7.85803e-09 3.93655 5.13282e-08 3.93461 -3.98359e-09 3.93267 5.7621e-08 3.93071 4.34409e-07 3.92875 2.68697e-07 3.92681 2.60547e-07 3.9249 3.07334e-07 3.92302 3.43973e-07 3.92119 3.64647e-07 3.91944 3.74023e-07 3.91777 3.73678e-07 3.9162 3.63444e-07 3.91476 3.43234e-07 3.91346 3.13372e-07 3.9123 2.74463e-07 3.91132 2.27462e-07 3.91052 1.73589e-07 3.9099 1.14301e-07 3.90949 5.14829e-08 3.90926 -1.73168e-09 3.90922 -4.79249e-08 3.90935 -1.34831e-07 3.90965 -1.88788e-07 3.91011 -2.434e-07 3.91072 -2.91854e-07 3.91145 -3.32427e-07 3.91229 -3.61466e-07 3.9132 -3.84332e-07 3.91418 -3.93945e-07 3.91518 -3.93607e-07 3.91619 -3.85958e-07 3.91718 -3.67811e-07 3.91814 -3.42045e-07 3.91904 -3.10823e-07 3.91989 -2.74345e-07 3.92066 -2.33918e-07 3.92135 -1.91136e-07 3.92195 -1.48699e-07 3.92247 -1.05643e-07 3.92291 -6.37865e-08 3.92327 -2.53567e-08 3.92355 1.08266e-08 3.92377 4.34629e-08 3.92392 7.19619e-08 3.92403 9.63628e-08 3.92409 1.17133e-07 3.92411 1.34347e-07 3.92411 1.45151e-07 3.92408 1.52973e-07 3.92404 1.6468e-07 3.92399 1.69669e-07 3.92393 1.72957e-07 3.92386 1.74629e-07 3.9238 1.75e-07 3.92373 1.73493e-07 3.92367 1.7273e-07 3.92361 1.68224e-07 3.92355 1.71063e-07 3.9235 1.56226e-07 3.92346 1.73709e-07 3.92342 1.44952e-07 3.92339 1.85317e-07 3.92336 1.98484e-07 3.92334 5.06488e-07 3.92332 2.07259e-06 3.9233 9.1554e-06 3.92328 4.63888e-05 3.92322 0.000229621 3.92296 0.0011434 3.92169 0.00566401 3.91553 0.0274846 3.88674 0.128673 3.74847 0.626087 2.03707 3.31667 17.2461 0.00057013 17.2462 0.000461267 17.2462 0.000413401 17.2463 0.000423768 17.2464 0.000425748 17.2465 0.000425057 17.2466 0.000424943 17.2467 0.000424926 17.2468 0.000424529 17.2469 0.00042331 17.247 0.000420891 17.2471 0.000416447 17.2471 0.000409082 17.2472 0.000397846 17.2473 0.00038192 17.2474 0.000360803 17.2474 0.000334484 17.2475 0.000303525 17.2475 0.000269037 17.2475 0.000232541 17.2475 0.000195754 17.2475 0.000160363 17.2475 0.000127731 17.2474 9.89483e-05 17.2473 7.45207e-05 17.2472 5.45771e-05 17.2471 3.88869e-05 17.247 2.69715e-05 17.2468 1.82284e-05 17.2465 1.20212e-05 17.2462 7.75274e-06 17.2459 4.9073e-06 17.2455 3.06752e-06 17.2449 1.91312e-06 17.2443 1.21037e-06 17.2435 7.95808e-07 17.2426 5.59709e-07 17.2415 4.31165e-07 17.2402 3.65912e-07 17.2387 3.37181e-07 17.237 3.29105e-07 17.235 3.32755e-07 17.2327 3.42874e-07 17.2301 3.56661e-07 17.2272 3.72367e-07 17.2239 3.88846e-07 17.2203 4.05487e-07 17.2164 4.21483e-07 17.2122 4.36228e-07 17.2077 4.49036e-07 17.2028 4.58927e-07 17.1978 4.65403e-07 17.1926 4.73782e-07 17.1872 4.73774e-07 17.1818 4.62528e-07 17.1764 4.48721e-07 17.1711 4.31953e-07 17.166 4.09634e-07 17.1612 3.80544e-07 17.1568 3.45325e-07 17.1528 3.04752e-07 17.1493 2.59331e-07 17.1464 2.10155e-07 17.1442 1.58004e-07 17.1427 1.03905e-07 17.1418 5.03933e-08 17.1417 2.11089e-08 17.1422 -4.23383e-08 17.1434 -1.05681e-07 17.1452 -1.48601e-07 17.1476 -1.88959e-07 17.1505 -2.18493e-07 17.1538 -2.41607e-07 17.1575 -2.5692e-07 17.1614 -2.63621e-07 17.1656 -2.62979e-07 17.1699 -2.53903e-07 17.1742 -2.38183e-07 17.1785 -2.15154e-07 17.1828 -1.85371e-07 17.187 -1.50443e-07 17.1911 -1.11883e-07 17.1951 -6.89106e-08 17.199 -2.38938e-08 17.2028 2.56023e-08 17.2065 1.04405e-07 17.2102 7.72161e-08 17.2139 2.93544e-08 17.2176 2.35091e-07 17.2214 2.70678e-07 17.2252 2.90287e-07 17.2292 3.01874e-07 17.2331 3.17347e-07 17.2372 3.34615e-07 17.2413 3.47407e-07 17.2454 3.55238e-07 17.2495 3.59236e-07 17.2536 3.552e-07 17.2575 3.46454e-07 17.2612 3.32958e-07 17.2646 3.12936e-07 17.2678 2.90675e-07 17.2705 2.62588e-07 17.2728 2.30632e-07 17.2746 1.96328e-07 17.2758 1.61008e-07 17.2764 1.21026e-07 17.2764 8.45089e-08 17.2758 4.67821e-08 17.2744 -1.32131e-08 17.2723 -3.67872e-08 17.2696 -6.27488e-08 17.2663 -9.07507e-08 17.2623 -1.14645e-07 17.2578 -1.33775e-07 17.2528 -1.47822e-07 17.2472 -1.56339e-07 17.2412 -1.59069e-07 17.2347 -1.5597e-07 17.228 -1.47379e-07 17.2208 -1.34621e-07 17.2134 -1.12645e-07 17.2058 -8.64338e-08 17.1979 -5.88052e-08 17.1898 -2.8082e-08 17.1816 5.70526e-09 17.1732 3.64544e-08 17.1648 5.45697e-12 17.1563 5.02982e-08 17.1478 3.10877e-07 17.1392 2.08691e-07 17.1308 1.95545e-07 17.1224 2.30349e-07 17.1142 2.57945e-07 17.1063 2.73449e-07 17.0986 2.80503e-07 17.0913 2.8025e-07 17.0845 2.72573e-07 17.0782 2.57417e-07 17.0725 2.35025e-07 17.0675 2.05844e-07 17.0632 1.70589e-07 17.0597 1.30191e-07 17.057 8.57335e-08 17.0552 3.87799e-08 17.0542 -1.95951e-09 17.054 -3.50747e-08 17.0546 -1.01154e-07 17.0559 -1.42133e-07 17.0579 -1.82386e-07 17.0605 -2.18902e-07 17.0637 -2.49172e-07 17.0674 -2.71239e-07 17.0714 -2.88049e-07 17.0756 -2.95473e-07 17.08 -2.95283e-07 17.0844 -2.89311e-07 17.0887 -2.75869e-07 17.0929 -2.56573e-07 17.0969 -2.33089e-07 17.1006 -2.05691e-07 17.1039 -1.75449e-07 17.1069 -1.43382e-07 17.1096 -1.11437e-07 17.1118 -7.92475e-08 17.1137 -4.78799e-08 17.1153 -1.89357e-08 17.1165 7.91078e-09 17.1175 3.26031e-08 17.1182 5.39544e-08 17.1186 7.23066e-08 17.1189 8.78413e-08 17.119 1.0069e-07 17.119 1.09025e-07 17.1189 1.14438e-07 17.1187 1.23646e-07 17.1185 1.27314e-07 17.1182 1.29698e-07 17.1179 1.30921e-07 17.1176 1.31395e-07 17.1173 1.29772e-07 17.117 1.30454e-07 17.1168 1.2414e-07 17.1165 1.33463e-07 17.1163 1.07271e-07 17.1161 1.45662e-07 17.116 9.16002e-08 17.1158 1.74998e-07 17.1157 1.98598e-07 17.1156 7.91414e-07 17.1155 3.81332e-06 17.1154 1.73236e-05 17.1153 8.87178e-05 17.1151 0.000439604 17.114 0.00219016 17.1088 0.0108496 17.0837 0.0526124 16.9666 0.245852 16.4529 1.13981 3.7222 14.7678 17.246 0.000367745 17.2461 0.000313522 17.2462 0.000274278 17.2463 0.000281966 17.2464 0.000284045 17.2465 0.000283381 17.2466 0.000283267 17.2466 0.000283276 17.2468 0.00028302 17.2469 0.00028223 17.247 0.000280644 17.247 0.000277723 17.2471 0.000272872 17.2472 0.000265457 17.2473 0.000254929 17.2474 0.000240949 17.2474 0.000223499 17.2475 0.000202944 17.2475 0.000180015 17.2475 0.000155718 17.2475 0.000131196 17.2475 0.000107573 17.2475 8.57621e-05 17.2474 6.65018e-05 17.2473 5.01341e-05 17.2472 3.67537e-05 17.2471 2.62145e-05 17.247 1.82005e-05 17.2468 1.2313e-05 17.2465 8.12804e-06 17.2462 5.2467e-06 17.2459 3.3236e-06 17.2455 2.07866e-06 17.2449 1.29654e-06 17.2443 8.1982e-07 17.2435 5.38204e-07 17.2426 3.77575e-07 17.2415 2.89944e-07 17.2402 2.45318e-07 17.2387 2.25526e-07 17.237 2.19792e-07 17.235 2.22031e-07 17.2327 2.28685e-07 17.2301 2.37824e-07 17.2272 2.48262e-07 17.2239 2.59241e-07 17.2203 2.70323e-07 17.2164 2.80991e-07 17.2122 2.90815e-07 17.2077 2.99345e-07 17.2028 3.05953e-07 17.1978 3.10369e-07 17.1926 3.15716e-07 17.1872 3.15813e-07 17.1818 3.08428e-07 17.1764 2.99138e-07 17.1711 2.87973e-07 17.166 2.73081e-07 17.1612 2.53699e-07 17.1568 2.30213e-07 17.1528 2.03164e-07 17.1493 1.72894e-07 17.1464 1.40099e-07 17.1442 1.05341e-07 17.1427 6.92953e-08 17.1418 3.38509e-08 17.1417 1.31781e-08 17.1422 -2.73712e-08 17.1434 -7.07673e-08 17.1452 -9.90658e-08 17.1476 -1.25931e-07 17.1505 -1.45638e-07 17.1538 -1.61061e-07 17.1575 -1.7128e-07 17.1614 -1.75729e-07 17.1656 -1.7532e-07 17.1699 -1.69247e-07 17.1742 -1.58789e-07 17.1785 -1.4343e-07 17.1828 -1.23595e-07 17.187 -1.00281e-07 17.1911 -7.45763e-08 17.1951 -4.59886e-08 17.199 -1.6058e-08 17.2028 1.79521e-08 17.2065 6.78256e-08 17.2102 5.0406e-08 17.2139 2.60156e-08 17.2176 1.51391e-07 17.2214 1.81267e-07 17.2252 1.93708e-07 17.2292 2.01259e-07 17.2331 2.11585e-07 17.2372 2.23094e-07 17.2413 2.31631e-07 17.2454 2.36829e-07 17.2495 2.3945e-07 17.2536 2.36809e-07 17.2575 2.30962e-07 17.2612 2.21953e-07 17.2646 2.08674e-07 17.2678 1.93752e-07 17.2705 1.75062e-07 17.2728 1.53765e-07 17.2746 1.30882e-07 17.2758 1.0732e-07 17.2764 8.06631e-08 17.2764 5.65633e-08 17.2758 3.08123e-08 17.2744 -9.009e-09 17.2723 -2.42862e-08 17.2696 -4.18545e-08 17.2663 -6.04914e-08 17.2623 -7.64107e-08 17.2578 -8.91828e-08 17.2528 -9.85433e-08 17.2472 -1.04229e-07 17.2412 -1.06052e-07 17.2347 -1.03989e-07 17.228 -9.82755e-08 17.2208 -8.96607e-08 17.2134 -7.51697e-08 17.2058 -5.7641e-08 17.1979 -3.9196e-08 17.1898 -1.86824e-08 17.1816 3.72756e-09 17.1732 2.33226e-08 17.1648 1.49294e-09 17.1563 3.66954e-08 17.1478 2.00556e-07 17.1392 1.42168e-07 17.1308 1.30546e-07 17.1224 1.53475e-07 17.1142 1.7195e-07 17.1063 1.82285e-07 17.0986 1.86996e-07 17.0913 1.86832e-07 17.0845 1.81714e-07 17.0782 1.71612e-07 17.0725 1.56688e-07 17.0675 1.37233e-07 17.0632 1.1373e-07 17.0597 8.6799e-08 17.057 5.7164e-08 17.0552 2.59247e-08 17.0542 -1.56933e-09 17.054 -2.32262e-08 17.0546 -6.73322e-08 17.0559 -9.50463e-08 17.0579 -1.21513e-07 17.0605 -1.45927e-07 17.0637 -1.66067e-07 17.0674 -1.80877e-07 17.0714 -1.91948e-07 17.0756 -1.97002e-07 17.08 -1.96888e-07 17.0844 -1.92812e-07 17.0887 -1.83923e-07 17.0929 -1.71075e-07 17.0969 -1.55384e-07 17.1006 -1.37103e-07 17.1039 -1.16982e-07 17.1069 -9.56034e-08 17.1096 -7.42584e-08 17.1118 -5.28407e-08 17.1137 -3.19469e-08 17.1153 -1.26452e-08 17.1165 5.44742e-09 17.1175 2.17146e-08 17.1182 3.59773e-08 17.1186 4.82128e-08 17.1189 5.85542e-08 17.119 6.70939e-08 17.119 7.27914e-08 17.1189 7.60115e-08 17.1187 8.25885e-08 17.1185 8.494e-08 17.1182 8.64443e-08 17.1179 8.72351e-08 17.1176 8.78022e-08 17.1173 8.60359e-08 17.117 8.81773e-08 17.1168 8.01301e-08 17.1165 9.57343e-08 17.1163 5.84619e-08 17.1161 1.17327e-07 17.116 3.80574e-08 17.1158 1.62492e-07 17.1157 1.83653e-07 17.1156 1.00276e-06 17.1155 5.27207e-06 17.1154 2.3668e-05 17.1154 0.00012244 17.1151 0.000606476 17.1143 0.00302417 17.1101 0.0149923 17.0899 0.0728723 16.9942 0.341536 16.5746 1.55952 5.05909 15.2377 17.246 0.000180293 17.2461 0.000158415 17.2462 0.000136836 17.2463 0.000140787 17.2464 0.000142094 17.2465 0.000141705 17.2465 0.000141636 17.2466 0.000141646 17.2467 0.00014152 17.2468 0.000141129 17.2469 0.00014034 17.247 0.000138888 17.2471 0.000136475 17.2472 0.000132786 17.2473 0.000127546 17.2473 0.000120581 17.2474 0.000111884 17.2475 0.000101632 17.2475 9.01872e-05 17.2475 7.80518e-05 17.2475 6.57948e-05 17.2475 5.39793e-05 17.2475 4.30609e-05 17.2474 3.34127e-05 17.2473 2.52065e-05 17.2472 1.84926e-05 17.2471 1.31997e-05 17.247 9.17171e-06 17.2468 6.20983e-06 17.2465 4.10251e-06 17.2462 2.65028e-06 17.2459 1.68006e-06 17.2455 1.05135e-06 17.2449 6.5596e-07 17.2443 4.14688e-07 17.2435 2.71992e-07 17.2426 1.90489e-07 17.2415 1.45951e-07 17.2402 1.23208e-07 17.2387 1.13064e-07 17.237 1.10057e-07 17.235 1.11097e-07 17.2327 1.14388e-07 17.2301 1.18936e-07 17.2272 1.2414e-07 17.2239 1.29624e-07 17.2203 1.35161e-07 17.2164 1.40496e-07 17.2122 1.45406e-07 17.2077 1.49666e-07 17.2028 1.52976e-07 17.1978 1.55213e-07 17.1926 1.57819e-07 17.1872 1.57896e-07 17.1818 1.54238e-07 17.1764 1.49567e-07 17.1711 1.43987e-07 17.166 1.36539e-07 17.1612 1.26852e-07 17.1568 1.15105e-07 17.1528 1.01584e-07 17.1493 8.64488e-08 17.1464 7.00497e-08 17.1442 5.2672e-08 17.1427 3.46572e-08 17.1418 1.69975e-08 17.1417 6.33781e-09 17.1422 -1.34419e-08 17.1434 -3.54671e-08 17.1452 -4.95493e-08 17.1476 -6.29352e-08 17.1505 -7.28305e-08 17.1538 -8.05148e-08 17.1575 -8.56285e-08 17.1614 -8.78749e-08 17.1656 -8.7643e-08 17.1699 -8.46267e-08 17.1742 -7.93862e-08 17.1785 -7.17059e-08 17.1828 -6.17961e-08 17.187 -5.01568e-08 17.1911 -3.72747e-08 17.1951 -2.29829e-08 17.199 -7.89487e-09 17.2028 8.87485e-09 17.2065 3.3463e-08 17.2102 2.50002e-08 17.2139 1.47479e-08 17.2176 7.42289e-08 17.2214 9.08476e-08 17.2252 9.69376e-08 17.2292 1.00635e-07 17.2331 1.058e-07 17.2372 1.11556e-07 17.2413 1.15817e-07 17.2454 1.18435e-07 17.2495 1.19704e-07 17.2536 1.18419e-07 17.2575 1.15481e-07 17.2612 1.10975e-07 17.2646 1.04348e-07 17.2678 9.68612e-08 17.2705 8.75261e-08 17.2728 7.68796e-08 17.2746 6.54563e-08 17.2758 5.36397e-08 17.2764 4.03511e-08 17.2764 2.83389e-08 17.2758 1.53423e-08 17.2744 -4.49836e-09 17.2723 -1.20685e-08 17.2696 -2.09561e-08 17.2663 -3.02498e-08 17.2623 -3.82211e-08 17.2578 -4.45971e-08 17.2528 -4.92719e-08 17.2472 -5.2114e-08 17.2412 -5.30254e-08 17.2347 -5.19935e-08 17.228 -4.91436e-08 17.2208 -4.4804e-08 17.2134 -3.76026e-08 17.2058 -2.88251e-08 17.1979 -1.95869e-08 17.1898 -9.37689e-09 17.1816 1.81672e-09 17.1732 1.14246e-08 17.1648 1.16097e-09 17.1563 1.92449e-08 17.1478 9.83759e-08 17.1392 7.19288e-08 17.1308 6.53513e-08 17.1224 7.67054e-08 17.1142 8.59718e-08 17.1063 9.11386e-08 17.0986 9.34956e-08 17.0913 9.34165e-08 17.0845 9.08585e-08 17.0782 8.58086e-08 17.0725 7.8348e-08 17.0675 6.86209e-08 17.0632 5.68675e-08 17.0597 4.3402e-08 17.057 2.8585e-08 17.0552 1.29858e-08 17.0542 -8.48559e-10 17.054 -1.15401e-08 17.0546 -3.35858e-08 17.0559 -4.76239e-08 17.0579 -6.07292e-08 17.0605 -7.29642e-08 17.0637 -8.30119e-08 17.0674 -9.04615e-08 17.0714 -9.59503e-08 17.0756 -9.85028e-08 17.08 -9.84583e-08 17.0844 -9.63842e-08 17.0887 -9.19654e-08 17.0929 -8.55466e-08 17.0969 -7.76909e-08 17.1006 -6.85459e-08 17.1039 -5.84937e-08 17.1069 -4.7808e-08 17.1096 -3.71192e-08 17.1118 -2.64245e-08 17.1137 -1.5978e-08 17.1153 -6.30416e-09 17.1165 2.64845e-09 17.1175 1.08639e-08 17.1182 1.79834e-08 17.1186 2.41125e-08 17.1189 2.92785e-08 17.119 3.35422e-08 17.119 3.63948e-08 17.1189 3.79937e-08 17.1187 4.12638e-08 17.1185 4.25248e-08 17.1182 4.31978e-08 17.1179 4.35612e-08 17.1176 4.41919e-08 17.1173 4.23402e-08 17.117 4.58158e-08 17.1168 3.63293e-08 17.1165 5.76133e-08 17.1163 1.01686e-08 17.1161 8.82005e-08 17.116 -1.52777e-08 17.1158 1.461e-07 17.1157 1.48621e-07 17.1156 1.10895e-06 17.1155 6.37985e-06 17.1154 2.7457e-05 17.1154 0.000144307 17.1152 0.000713877 17.1147 0.00356505 17.112 0.0176937 17.0985 0.0863333 17.0325 0.407614 16.729 1.863 6.02563 15.7625 17.246 9.09495e-13 17.2461 3.63798e-12 17.2462 -1.36424e-12 17.2463 -5.91172e-12 17.2464 -4.54747e-13 17.2465 1.81899e-12 17.2465 -4.54747e-13 17.2466 -5.91172e-12 17.2467 -6.36646e-12 17.2468 -2.27374e-12 17.2469 4.54747e-13 17.247 4.54747e-12 17.2471 0 17.2472 -4.54747e-13 17.2473 0 17.2473 3.63798e-12 17.2474 3.18323e-12 17.2474 -9.09495e-13 17.2475 -9.09495e-13 17.2475 -3.63798e-12 17.2475 -1.81899e-12 17.2475 -9.09495e-13 17.2475 -7.7307e-12 17.2474 -5.45697e-12 17.2473 -8.18545e-12 17.2472 -4.54747e-13 17.2471 -6.36646e-12 17.247 -2.72848e-12 17.2468 -4.09273e-12 17.2465 -5.45697e-12 17.2462 1.81899e-12 17.2459 5.91172e-12 17.2455 2.72848e-12 17.2449 2.27374e-12 17.2443 -2.27374e-12 17.2435 -9.09495e-13 17.2426 -1.81899e-12 17.2415 -1.81899e-12 17.2402 2.27374e-12 17.2387 1.36424e-12 17.237 -9.09495e-13 17.235 -3.18323e-12 17.2327 2.72848e-12 17.2301 7.7307e-12 17.2272 1.36424e-12 17.2239 -3.18323e-12 17.2203 -1.81899e-12 17.2164 4.54747e-13 17.2122 4.54747e-13 17.2077 -7.27596e-12 17.2028 -1.81899e-12 17.1978 9.09495e-13 17.1926 1.36424e-12 17.1872 2.27374e-12 17.1818 -9.09495e-13 17.1764 -3.63798e-12 17.1711 0 17.166 9.09495e-13 17.1612 4.09273e-12 17.1568 3.18323e-12 17.1528 4.09273e-12 17.1493 -9.09495e-13 17.1464 4.54747e-13 17.1442 1.36424e-12 17.1427 1.36424e-12 17.1418 -2.72848e-12 17.1417 1.81899e-12 17.1422 5.00222e-12 17.1434 4.09273e-12 17.1452 9.09495e-13 17.1476 -1.36424e-12 17.1505 -4.09273e-12 17.1538 6.82121e-12 17.1575 4.09273e-12 17.1614 0 17.1656 4.54747e-12 17.1699 3.63798e-12 17.1742 1.81899e-12 17.1785 1.81899e-12 17.1828 -4.09273e-12 17.187 -4.09273e-12 17.1911 2.72848e-12 17.1951 -5.00222e-12 17.199 -6.36646e-12 17.2028 -5.00222e-12 17.2065 -2.72848e-12 17.2102 4.54747e-13 17.2139 5.00222e-12 17.2176 2.27374e-12 17.2214 -1.81899e-12 17.2252 -1.81899e-12 17.2292 -4.54747e-13 17.2331 -2.27374e-12 17.2372 4.54747e-13 17.2413 9.09495e-13 17.2454 9.09495e-13 17.2495 3.18323e-12 17.2536 -1.36424e-12 17.2575 2.72848e-12 17.2612 1.81899e-12 17.2646 -1.36424e-12 17.2678 -5.45697e-12 17.2705 -3.63798e-12 17.2728 -4.54747e-13 17.2746 2.27374e-12 17.2758 9.09495e-13 17.2764 -4.54747e-13 17.2764 -3.18323e-12 17.2758 -5.45697e-12 17.2744 -5.00222e-12 17.2723 9.09495e-13 17.2696 4.54747e-12 17.2663 3.18323e-12 17.2623 9.09495e-13 17.2578 2.27374e-12 17.2528 9.09495e-13 17.2472 2.27374e-12 17.2412 3.63798e-12 17.2347 2.72848e-12 17.228 -9.09495e-13 17.2208 1.81899e-12 17.2134 2.27374e-12 17.2058 -4.54747e-12 17.1979 1.81899e-12 17.1898 2.72848e-12 17.1816 -1.36424e-12 17.1732 1.36424e-12 17.1648 1.36424e-12 17.1563 4.54747e-13 17.1478 3.18323e-12 17.1392 1.81899e-12 17.1308 -2.27374e-12 17.1224 -2.72848e-12 17.1142 2.72848e-12 17.1063 9.09495e-13 17.0986 -2.27374e-12 17.0913 0 17.0845 3.18323e-12 17.0782 3.18323e-12 17.0725 3.63798e-12 17.0675 5.45697e-12 17.0632 5.45697e-12 17.0597 3.18323e-12 17.057 -4.54747e-13 17.0552 4.54747e-13 17.0542 2.72848e-12 17.054 -4.54747e-13 17.0546 1.36424e-12 17.0559 9.09495e-13 17.0579 2.27374e-12 17.0605 4.09273e-12 17.0637 1.81899e-12 17.0674 -3.18323e-12 17.0714 -2.27374e-12 17.0756 -4.54747e-13 17.08 -9.09495e-13 17.0844 9.09495e-13 17.0887 0 17.0929 -3.63798e-12 17.0969 -4.54747e-13 17.1006 -1.81899e-12 17.1039 -9.09495e-13 17.1069 -3.18323e-12 17.1096 -2.27374e-12 17.1118 -9.09495e-13 17.1137 2.27374e-12 17.1153 0 17.1165 -2.27374e-12 17.1175 3.63798e-12 17.1182 1.36424e-12 17.1186 -4.54747e-13 17.1189 2.72848e-12 17.119 4.09273e-12 17.119 1.81899e-12 17.1189 -1.39153e-10 17.1187 3.54703e-11 17.1185 1.04592e-10 17.1182 -4.72937e-11 17.1179 -9.95897e-11 17.1176 5.34328e-10 17.1173 -1.27966e-09 17.117 3.25554e-09 17.1168 -6.98265e-09 17.1165 1.83154e-08 17.1163 -3.61488e-08 17.1161 5.60754e-08 17.116 -6.54354e-08 17.1158 1.22404e-07 17.1157 1.31638e-07 17.1156 1.04296e-06 17.1155 7.05468e-06 17.1154 2.82467e-05 17.1154 0.000152242 17.1153 0.000751137 17.1151 0.00375975 17.1141 0.0186981 17.1087 0.0916989 17.0782 0.438152 16.9035 2.03778 6.58316 16.346 17.246 -0.000180293 17.2461 -0.000158415 17.2462 -0.000136836 17.2463 -0.000140787 17.2464 -0.000142094 17.2465 -0.000141705 17.2465 -0.000141636 17.2466 -0.000141646 17.2467 -0.00014152 17.2468 -0.000141129 17.2469 -0.00014034 17.247 -0.000138888 17.2471 -0.000136475 17.2472 -0.000132786 17.2473 -0.000127546 17.2473 -0.000120581 17.2474 -0.000111884 17.2474 -0.000101632 17.2475 -9.01872e-05 17.2475 -7.80518e-05 17.2475 -6.57948e-05 17.2475 -5.39793e-05 17.2475 -4.3061e-05 17.2474 -3.34127e-05 17.2473 -2.52065e-05 17.2472 -1.84926e-05 17.2471 -1.31997e-05 17.247 -9.17171e-06 17.2468 -6.20984e-06 17.2465 -4.10252e-06 17.2462 -2.65027e-06 17.2459 -1.68005e-06 17.2455 -1.05135e-06 17.2449 -6.55956e-07 17.2443 -4.1469e-07 17.2435 -2.71993e-07 17.2426 -1.90494e-07 17.2415 -1.45953e-07 17.2402 -1.23205e-07 17.2387 -1.1306e-07 17.237 -1.10061e-07 17.235 -1.11103e-07 17.2327 -1.14382e-07 17.2301 -1.18922e-07 17.2272 -1.24138e-07 17.2239 -1.2963e-07 17.2203 -1.35165e-07 17.2164 -1.40496e-07 17.2122 -1.45406e-07 17.2077 -1.49679e-07 17.2028 -1.52979e-07 17.1978 -1.55213e-07 17.1926 -1.57814e-07 17.1872 -1.57889e-07 17.1818 -1.54239e-07 17.1764 -1.49572e-07 17.1711 -1.43988e-07 17.166 -1.36537e-07 17.1612 -1.26844e-07 17.1568 -1.15102e-07 17.1528 -1.01575e-07 17.1493 -8.64497e-08 17.1464 -7.00488e-08 17.1442 -5.26702e-08 17.1427 -3.46531e-08 17.1418 -1.70025e-08 17.1417 -6.33509e-09 17.1422 1.34532e-08 17.1434 3.54721e-08 17.1452 4.95511e-08 17.1476 6.29325e-08 17.1505 7.28237e-08 17.1538 8.05285e-08 17.1575 8.5638e-08 17.1614 8.78754e-08 17.1656 8.76512e-08 17.1699 8.46344e-08 17.1742 7.93902e-08 17.1785 7.17091e-08 17.1828 6.17874e-08 17.187 5.01482e-08 17.1911 3.7282e-08 17.1951 2.29711e-08 17.199 7.88214e-09 17.2028 -8.8844e-09 17.2065 -3.34699e-08 17.2102 -2.50016e-08 17.2139 -1.47384e-08 17.2176 -7.42248e-08 17.2214 -9.08499e-08 17.2252 -9.69435e-08 17.2292 -1.00635e-07 17.2331 -1.05807e-07 17.2372 -1.11555e-07 17.2413 -1.15816e-07 17.2454 -1.18433e-07 17.2495 -1.19699e-07 17.2536 -1.18421e-07 17.2575 -1.15474e-07 17.2612 -1.1097e-07 17.2646 -1.04351e-07 17.2678 -9.68716e-08 17.2705 -8.75325e-08 17.2728 -7.68823e-08 17.2746 -6.54532e-08 17.2758 -5.36375e-08 17.2764 -4.03529e-08 17.2764 -2.83444e-08 17.2758 -1.53536e-08 17.2744 4.48927e-09 17.2723 1.20704e-08 17.2696 2.09657e-08 17.2663 3.02557e-08 17.2623 3.82202e-08 17.2578 4.46043e-08 17.2528 4.92741e-08 17.2472 5.21181e-08 17.2412 5.30304e-08 17.2347 5.19995e-08 17.228 4.91423e-08 17.2208 4.48076e-08 17.2134 3.76076e-08 17.2058 2.88173e-08 17.1979 1.95882e-08 17.1898 9.38189e-09 17.1816 -1.8199e-09 17.1732 -1.14219e-08 17.1648 -1.15733e-09 17.1563 -1.92445e-08 17.1478 -9.83709e-08 17.1392 -7.19265e-08 17.1308 -6.53527e-08 17.1224 -7.67109e-08 17.1142 -8.59645e-08 17.1063 -9.11382e-08 17.0986 -9.35011e-08 17.0913 -9.34156e-08 17.0845 -9.08535e-08 17.0782 -8.58022e-08 17.0725 -7.83371e-08 17.0675 -6.86096e-08 17.0632 -5.68584e-08 17.0597 -4.33952e-08 17.057 -2.85854e-08 17.0552 -1.29844e-08 17.0542 8.55835e-10 17.054 1.15388e-08 17.0546 3.35885e-08 17.0559 4.76248e-08 17.0579 6.07347e-08 17.0605 7.29715e-08 17.0637 8.30146e-08 17.0674 9.04547e-08 17.0714 9.59458e-08 17.0756 9.85028e-08 17.08 9.8456e-08 17.0844 9.63864e-08 17.0887 9.19667e-08 17.0929 8.55412e-08 17.0969 7.76904e-08 17.1006 6.854e-08 17.1039 5.84919e-08 17.1069 4.78017e-08 17.1096 3.71151e-08 17.1118 2.64231e-08 17.1137 1.59807e-08 17.1153 6.30234e-09 17.1165 -2.65345e-09 17.1175 -1.08571e-08 17.1182 -1.79821e-08 17.1186 -2.41125e-08 17.1189 -2.92725e-08 17.119 -3.35331e-08 17.119 -3.63643e-08 17.1189 -3.83893e-08 17.1187 -4.11151e-08 17.1185 -4.22988e-08 17.1182 -4.32901e-08 17.1179 -4.37462e-08 17.1176 -4.31937e-08 17.1173 -4.47253e-08 17.117 -3.97122e-08 17.1168 -4.95206e-08 17.1165 -2.3078e-08 17.1163 -7.84908e-08 17.1161 1.80567e-08 17.116 -1.08738e-07 17.1158 8.62287e-08 17.1157 6.53604e-08 17.1156 8.49341e-07 17.1155 6.83223e-06 17.1154 2.63449e-05 17.1154 0.000145607 17.1154 0.000714277 17.1156 0.00358751 17.1163 0.0179035 17.1196 0.0884502 17.1286 0.429215 17.0773 2.08905 6.65075 17.0098 17.246 -0.000367745 17.2461 -0.000313522 17.2462 -0.000274278 17.2463 -0.000281966 17.2464 -0.000284045 17.2465 -0.000283381 17.2465 -0.000283267 17.2466 -0.000283276 17.2467 -0.00028302 17.2468 -0.00028223 17.2469 -0.000280644 17.247 -0.000277723 17.2471 -0.000272872 17.2472 -0.000265457 17.2473 -0.000254929 17.2473 -0.000240949 17.2474 -0.000223499 17.2475 -0.000202944 17.2475 -0.000180015 17.2475 -0.000155718 17.2475 -0.000131196 17.2475 -0.000107573 17.2475 -8.57621e-05 17.2474 -6.65018e-05 17.2473 -5.01342e-05 17.2472 -3.67537e-05 17.2471 -2.62145e-05 17.247 -1.82006e-05 17.2468 -1.2313e-05 17.2465 -8.12805e-06 17.2462 -5.24669e-06 17.2459 -3.32359e-06 17.2455 -2.07865e-06 17.2449 -1.29654e-06 17.2443 -8.19824e-07 17.2435 -5.38208e-07 17.2426 -3.77579e-07 17.2415 -2.89946e-07 17.2402 -2.45313e-07 17.2387 -2.25521e-07 17.237 -2.19796e-07 17.235 -2.22037e-07 17.2327 -2.28679e-07 17.2301 -2.37809e-07 17.2272 -2.48261e-07 17.2239 -2.59246e-07 17.2203 -2.70324e-07 17.2164 -2.80988e-07 17.2122 -2.90813e-07 17.2077 -2.99357e-07 17.2028 -3.05956e-07 17.1978 -3.10369e-07 17.1926 -3.1571e-07 17.1872 -3.15805e-07 17.1818 -3.08428e-07 17.1764 -2.99144e-07 17.1711 -2.87974e-07 17.166 -2.73076e-07 17.1612 -2.53694e-07 17.1568 -2.30211e-07 17.1528 -2.03155e-07 17.1493 -1.72896e-07 17.1464 -1.40097e-07 17.1442 -1.05337e-07 17.1427 -6.92912e-08 17.1418 -3.38573e-08 17.1417 -1.31777e-08 17.1422 2.73817e-08 17.1434 7.07719e-08 17.1452 9.90653e-08 17.1476 1.25929e-07 17.1505 1.4563e-07 17.1538 1.61074e-07 17.1575 1.71286e-07 17.1614 1.75729e-07 17.1656 1.75329e-07 17.1699 1.69254e-07 17.1742 1.58793e-07 17.1785 1.43433e-07 17.1828 1.23587e-07 17.187 1.00274e-07 17.1911 7.45868e-08 17.1951 4.5979e-08 17.199 1.60449e-08 17.2028 -1.79621e-08 17.2065 -6.78324e-08 17.2102 -5.04092e-08 17.2139 -2.60075e-08 17.2176 -1.51388e-07 17.2214 -1.8127e-07 17.2252 -1.93714e-07 17.2292 -2.01263e-07 17.2331 -2.1159e-07 17.2372 -2.23094e-07 17.2413 -2.3163e-07 17.2454 -2.3683e-07 17.2495 -2.39445e-07 17.2536 -2.36811e-07 17.2575 -2.30955e-07 17.2612 -2.21947e-07 17.2646 -2.08676e-07 17.2678 -1.93762e-07 17.2705 -1.75069e-07 17.2728 -1.53768e-07 17.2746 -1.30878e-07 17.2758 -1.0732e-07 17.2764 -8.06631e-08 17.2764 -5.65692e-08 17.2758 -3.08255e-08 17.2744 8.9999e-09 17.2723 2.42899e-08 17.2696 4.18636e-08 17.2663 6.04955e-08 17.2623 7.64103e-08 17.2578 8.91901e-08 17.2528 9.85424e-08 17.2472 1.04236e-07 17.2412 1.06058e-07 17.2347 1.03995e-07 17.228 9.82727e-08 17.2208 8.96625e-08 17.2134 7.51752e-08 17.2058 5.76347e-08 17.1979 3.91969e-08 17.1898 1.86878e-08 17.1816 -3.73211e-09 17.1732 -2.33204e-08 17.1648 -1.49021e-09 17.1563 -3.66958e-08 17.1478 -2.00553e-07 17.1392 -1.42164e-07 17.1308 -1.30545e-07 17.1224 -1.53481e-07 17.1142 -1.7194e-07 17.1063 -1.82283e-07 17.0986 -1.87001e-07 17.0913 -1.86834e-07 17.0845 -1.81709e-07 17.0782 -1.71608e-07 17.0725 -1.56678e-07 17.0675 -1.37222e-07 17.0632 -1.1372e-07 17.0597 -8.67922e-08 17.057 -5.71636e-08 17.0552 -2.59242e-08 17.0542 1.5757e-09 17.054 2.32244e-08 17.0546 6.73363e-08 17.0559 9.50445e-08 17.0579 1.21518e-07 17.0605 1.45933e-07 17.0637 1.66069e-07 17.0674 1.80869e-07 17.0714 1.91945e-07 17.0756 1.97004e-07 17.08 1.96884e-07 17.0844 1.92813e-07 17.0887 1.83925e-07 17.0929 1.7107e-07 17.0969 1.55384e-07 17.1006 1.37098e-07 17.1039 1.16981e-07 17.1069 9.55965e-08 17.1096 7.42571e-08 17.1118 5.28403e-08 17.1137 3.19528e-08 17.1153 1.26438e-08 17.1165 -5.45424e-09 17.1175 -2.17051e-08 17.1182 -3.59778e-08 17.1186 -4.82128e-08 17.1189 -5.85469e-08 17.119 -6.7083e-08 17.119 -7.27032e-08 17.1189 -7.66499e-08 17.1187 -8.22674e-08 17.1185 -8.46981e-08 17.1182 -8.65302e-08 17.1179 -8.7377e-08 17.1176 -8.70414e-08 17.1173 -8.78695e-08 17.117 -8.33538e-08 17.1168 -9.07266e-08 17.1165 -6.73349e-08 17.1163 -1.14241e-07 17.1161 -3.0971e-08 17.116 -1.37548e-07 17.1158 2.74504e-08 17.1157 7.22548e-09 17.1156 6.53696e-07 17.1155 5.65677e-06 17.1155 2.27568e-05 17.1154 0.000123229 17.1155 0.000608142 17.116 0.00305931 17.1186 0.0153279 17.1307 0.0763642 17.1815 0.378442 17.2785 1.99205 6.14121 17.7881 17.246 -0.000570129 17.2461 -0.000461267 17.2462 -0.000413401 17.2463 -0.000423768 17.2464 -0.000425748 17.2465 -0.000425057 17.2466 -0.000424943 17.2466 -0.000424926 17.2468 -0.000424529 17.2469 -0.00042331 17.247 -0.000420891 17.247 -0.000416447 17.2471 -0.000409082 17.2472 -0.000397846 17.2473 -0.00038192 17.2474 -0.000360803 17.2474 -0.000334484 17.2475 -0.000303525 17.2475 -0.000269037 17.2475 -0.000232541 17.2475 -0.000195754 17.2475 -0.000160363 17.2475 -0.000127731 17.2474 -9.89483e-05 17.2473 -7.45207e-05 17.2472 -5.45771e-05 17.2471 -3.88869e-05 17.247 -2.69715e-05 17.2468 -1.82284e-05 17.2465 -1.20212e-05 17.2462 -7.75274e-06 17.2459 -4.90729e-06 17.2455 -3.06751e-06 17.2449 -1.91312e-06 17.2443 -1.21038e-06 17.2435 -7.95812e-07 17.2426 -5.59712e-07 17.2415 -4.31167e-07 17.2402 -3.65906e-07 17.2387 -3.37175e-07 17.237 -3.29111e-07 17.235 -3.32762e-07 17.2327 -3.42868e-07 17.2301 -3.56647e-07 17.2272 -3.72365e-07 17.2239 -3.88851e-07 17.2203 -4.05488e-07 17.2164 -4.21478e-07 17.2122 -4.36224e-07 17.2077 -4.49047e-07 17.2028 -4.58928e-07 17.1978 -4.65406e-07 17.1926 -4.73776e-07 17.1872 -4.73762e-07 17.1818 -4.62529e-07 17.1764 -4.48724e-07 17.1711 -4.3195e-07 17.166 -4.09627e-07 17.1612 -3.80542e-07 17.1568 -3.4533e-07 17.1528 -3.04742e-07 17.1493 -2.59335e-07 17.1464 -2.10151e-07 17.1442 -1.57998e-07 17.1427 -1.03898e-07 17.1418 -5.04024e-08 17.1417 -2.11107e-08 17.1422 4.23461e-08 17.1434 1.05686e-07 17.1452 1.486e-07 17.1476 1.88956e-07 17.1505 2.18484e-07 17.1538 2.41618e-07 17.1575 2.56921e-07 17.1614 2.63621e-07 17.1656 2.62989e-07 17.1699 2.53908e-07 17.1742 2.38189e-07 17.1785 2.15154e-07 17.1828 1.85362e-07 17.187 1.50435e-07 17.1911 1.11896e-07 17.1951 6.89015e-08 17.199 2.38833e-08 17.2028 -2.56109e-08 17.2065 -1.0441e-07 17.2102 -7.72211e-08 17.2139 -2.9343e-08 17.2176 -2.35086e-07 17.2214 -2.70683e-07 17.2252 -2.90296e-07 17.2292 -3.0188e-07 17.2331 -3.17357e-07 17.2372 -3.34614e-07 17.2413 -3.47405e-07 17.2454 -3.55241e-07 17.2495 -3.59232e-07 17.2536 -3.55201e-07 17.2575 -3.46446e-07 17.2612 -3.32953e-07 17.2646 -3.12936e-07 17.2678 -2.90682e-07 17.2705 -2.62595e-07 17.2728 -2.3064e-07 17.2746 -1.96323e-07 17.2758 -1.61007e-07 17.2764 -1.21026e-07 17.2764 -8.45171e-08 17.2758 -4.67967e-08 17.2744 1.3205e-08 17.2723 3.67918e-08 17.2696 6.27565e-08 17.2663 9.07507e-08 17.2623 1.14641e-07 17.2578 1.33786e-07 17.2528 1.4782e-07 17.2472 1.56345e-07 17.2412 1.59075e-07 17.2347 1.55974e-07 17.228 1.47375e-07 17.2208 1.34621e-07 17.2134 1.12651e-07 17.2058 8.6432e-08 17.1979 5.88052e-08 17.1898 2.80861e-08 17.1816 -5.71208e-09 17.1732 -3.64535e-08 17.1648 0 17.1563 -5.02987e-08 17.1478 -3.10879e-07 17.1392 -2.08684e-07 17.1308 -1.95543e-07 17.1224 -2.30358e-07 17.1142 -2.5793e-07 17.1063 -2.73448e-07 17.0986 -2.8051e-07 17.0913 -2.80254e-07 17.0845 -2.72568e-07 17.0782 -2.57415e-07 17.0725 -2.35018e-07 17.0675 -2.05833e-07 17.0632 -1.70583e-07 17.0597 -1.30184e-07 17.057 -8.57322e-08 17.0552 -3.87827e-08 17.0542 1.96269e-09 17.054 3.50688e-08 17.0546 1.01158e-07 17.0559 1.42127e-07 17.0579 1.8239e-07 17.0605 2.18906e-07 17.0637 2.49171e-07 17.0674 2.7123e-07 17.0714 2.88045e-07 17.0756 2.9548e-07 17.08 2.95279e-07 17.0844 2.89313e-07 17.0887 2.75875e-07 17.0929 2.5657e-07 17.0969 2.33092e-07 17.1006 2.05685e-07 17.1039 1.75452e-07 17.1069 1.43375e-07 17.1096 1.11434e-07 17.1118 7.92497e-08 17.1137 4.78849e-08 17.1153 1.89343e-08 17.1165 -7.92124e-09 17.1175 -3.25927e-08 17.1182 -5.39549e-08 17.1186 -7.23071e-08 17.1189 -8.78345e-08 17.119 -1.00684e-07 17.119 -1.08977e-07 17.1189 -1.14845e-07 17.1187 -1.23469e-07 17.1185 -1.27126e-07 17.1182 -1.29758e-07 17.1179 -1.31021e-07 17.1176 -1.30878e-07 17.1173 -1.31006e-07 17.117 -1.27147e-07 17.1168 -1.31535e-07 17.1165 -1.13028e-07 17.1163 -1.46665e-07 17.1161 -8.52397e-08 17.116 -1.60579e-07 17.1158 -4.17081e-08 17.1157 -5.57825e-08 17.1156 3.95835e-07 17.1155 4.00182e-06 17.1155 1.66308e-05 17.1154 8.90818e-05 17.1156 0.000441446 17.1164 0.00222445 17.1205 0.0111843 17.1407 0.0562344 17.2335 0.285601 17.5457 1.67993 4.96375 18.7232 17.2461 -0.000796544 17.2462 -0.000595927 17.2462 -0.000556301 17.2463 -0.000565981 17.2464 -0.000567037 17.2465 -0.000566664 17.2466 -0.000566594 17.2467 -0.000566541 17.2468 -0.000566004 17.2469 -0.000564329 17.247 -0.000561052 17.2471 -0.000555026 17.2471 -0.000545058 17.2472 -0.000529882 17.2473 -0.000508407 17.2474 -0.000479984 17.2474 -0.000444621 17.2475 -0.000403096 17.2475 -0.000356919 17.2475 -0.000308141 17.2475 -0.000259064 17.2475 -0.000211932 17.2475 -0.000168559 17.2474 -0.000130372 17.2473 -9.80251e-05 17.2472 -7.16693e-05 17.2471 -5.09754e-05 17.247 -3.52919e-05 17.2468 -2.3808e-05 17.2465 -1.56721e-05 17.2462 -1.00896e-05 17.2459 -6.3764e-06 17.2455 -3.98103e-06 17.2449 -2.4816e-06 17.2443 -1.57106e-06 17.2435 -1.03537e-06 17.2426 -7.31223e-07 17.2415 -5.66294e-07 17.2402 -4.83084e-07 17.2387 -4.46967e-07 17.237 -4.37427e-07 17.235 -4.4297e-07 17.2327 -4.5679e-07 17.2301 -4.75346e-07 17.2272 -4.96413e-07 17.2239 -5.18422e-07 17.2203 -5.40648e-07 17.2164 -5.61959e-07 17.2122 -5.81641e-07 17.2077 -5.98754e-07 17.2028 -6.11911e-07 17.1978 -6.20252e-07 17.1926 -6.32127e-07 17.1872 -6.31766e-07 17.1818 -6.16484e-07 17.1764 -5.98342e-07 17.1711 -5.75928e-07 17.166 -5.46204e-07 17.1612 -5.074e-07 17.1568 -4.60477e-07 17.1528 -4.06348e-07 17.1493 -3.4578e-07 17.1464 -2.80223e-07 17.1442 -2.10661e-07 17.1427 -1.38479e-07 17.1418 -6.64204e-08 17.1417 -3.07919e-08 17.1422 5.88716e-08 17.1434 1.40052e-07 17.1452 1.97996e-07 17.1476 2.52194e-07 17.1505 2.91265e-07 17.1538 3.22247e-07 17.1575 3.42588e-07 17.1614 3.51468e-07 17.1656 3.50752e-07 17.1699 3.38553e-07 17.1742 3.17636e-07 17.1785 2.86934e-07 17.1828 2.47171e-07 17.187 2.00563e-07 17.1911 1.49334e-07 17.1951 9.19399e-08 17.199 3.23962e-08 17.2028 -3.36267e-08 17.2065 -1.43744e-07 17.2102 -1.05885e-07 17.2139 -1.99452e-08 17.2176 -3.30087e-07 17.2214 -3.57619e-07 17.2252 -3.86643e-07 17.2292 -4.02476e-07 17.2331 -4.23051e-07 17.2372 -4.46073e-07 17.2413 -4.63168e-07 17.2454 -4.73518e-07 17.2495 -4.79156e-07 17.2536 -4.735e-07 17.2575 -4.61925e-07 17.2612 -4.43999e-07 17.2646 -4.17083e-07 17.2678 -3.87691e-07 17.2705 -3.50143e-07 17.2728 -3.07523e-07 17.2746 -2.61671e-07 17.2758 -2.14855e-07 17.2764 -1.61242e-07 17.2764 -1.12341e-07 17.2758 -6.27833e-08 17.2744 1.68602e-08 17.2723 5.00186e-08 17.2696 8.34634e-08 17.2663 1.20978e-07 17.2623 1.52811e-07 17.2578 1.78343e-07 17.2528 1.9709e-07 17.2472 2.08443e-07 17.2412 2.12084e-07 17.2347 2.07948e-07 17.228 1.96423e-07 17.2208 1.79746e-07 17.2134 1.49981e-07 17.2058 1.15229e-07 17.1979 7.84639e-08 17.1898 3.73393e-08 17.1816 -7.86622e-09 17.1732 -5.13255e-08 17.1648 3.99268e-09 17.1563 -5.76238e-08 17.1478 -4.34417e-07 17.1392 -2.68687e-07 17.1308 -2.60544e-07 17.1224 -3.07345e-07 17.1142 -3.4395e-07 17.1063 -3.64647e-07 17.0986 -3.74032e-07 17.0913 -3.73688e-07 17.0845 -3.6344e-07 17.0782 -3.43234e-07 17.0725 -3.13365e-07 17.0675 -2.74452e-07 17.0632 -2.27459e-07 17.0597 -1.73581e-07 17.057 -1.14298e-07 17.0552 -5.14901e-08 17.0542 1.72986e-09 17.054 4.7914e-08 17.0546 1.34832e-07 17.0559 1.88777e-07 17.0579 2.43406e-07 17.0605 2.91855e-07 17.0637 3.32424e-07 17.0674 3.61456e-07 17.0714 3.84328e-07 17.0756 3.93959e-07 17.08 3.93602e-07 17.0844 3.85961e-07 17.0887 3.67821e-07 17.0929 3.42039e-07 17.0969 3.10833e-07 17.1006 2.74338e-07 17.1039 2.33923e-07 17.1069 1.91126e-07 17.1096 1.48697e-07 17.1118 1.0565e-07 17.1137 6.37929e-08 17.1153 2.53549e-08 17.1165 -1.08421e-08 17.1175 -4.3452e-08 17.1182 -7.19619e-08 17.1186 -9.63646e-08 17.1189 -1.17126e-07 17.119 -1.34343e-07 17.119 -1.45136e-07 17.1189 -1.5313e-07 17.1187 -1.64635e-07 17.1185 -1.69566e-07 17.1182 -1.72985e-07 17.1179 -1.7468e-07 17.1176 -1.74735e-07 17.1173 -1.74122e-07 17.117 -1.71025e-07 17.1168 -1.72052e-07 17.1165 -1.6006e-07 17.1163 -1.76876e-07 17.1161 -1.42628e-07 17.116 -1.80115e-07 17.1158 -1.17098e-07 17.1157 -1.23132e-07 17.1156 7.42139e-08 17.1155 2.03e-06 17.1155 8.63951e-06 17.1154 4.63893e-05 17.1156 0.000230614 17.1167 0.0011636 17.122 0.00586467 17.1485 0.0297264 17.2804 0.15368 17.8945 1.06593 2.96116 19.8971 3.95325 -0.000853417 3.95326 -0.000623796 3.95329 -0.000590121 3.95331 -0.000598562 3.95332 -0.000599377 3.95334 -0.000599133 3.95336 -0.000599068 3.95338 -0.000599001 3.95341 -0.000598429 3.95343 -0.000596639 3.95345 -0.000593156 3.95347 -0.00058675 3.95349 -0.000576163 3.95351 -0.000560055 3.95353 -0.000537275 3.95354 -0.000507141 3.95356 -0.000469669 3.95357 -0.000425694 3.95357 -0.000376816 3.95358 -0.000325213 3.95358 -0.00027332 3.95357 -0.000223511 3.95356 -0.000177698 3.95355 -0.000137383 3.95354 -0.000103252 3.95351 -7.54581e-05 3.95348 -5.36459e-05 3.95345 -3.71237e-05 3.95341 -2.50323e-05 3.95335 -1.64707e-05 3.95328 -1.05992e-05 3.9532 -6.69597e-06 3.9531 -4.17943e-06 3.95298 -2.60506e-06 3.95283 -1.64959e-06 3.95266 -1.08784e-06 3.95245 -7.69125e-07 3.9522 -5.9647e-07 3.9519 -5.09499e-07 3.95156 -4.71879e-07 3.95116 -4.62114e-07 3.9507 -4.68144e-07 3.95018 -4.82838e-07 3.94958 -5.02519e-07 3.94891 -5.24818e-07 3.94817 -5.481e-07 3.94735 -5.71619e-07 3.94645 -5.94149e-07 3.94548 -6.1498e-07 3.94444 -6.33094e-07 3.94333 -6.47035e-07 3.94218 -6.55768e-07 3.94098 -6.68486e-07 3.93975 -6.67944e-07 3.93851 -6.51755e-07 3.93727 -6.32725e-07 3.93606 -6.09021e-07 3.93489 -5.77616e-07 3.93379 -5.36584e-07 3.93277 -4.86989e-07 3.93186 -4.29764e-07 3.93106 -3.65719e-07 3.9304 -2.96412e-07 3.92989 -2.22853e-07 3.92954 -1.4652e-07 3.92935 -7.00766e-08 3.92932 -3.34749e-08 3.92943 6.30243e-08 3.9297 1.47804e-07 3.93012 2.09287e-07 3.93066 2.66691e-07 3.93133 3.07931e-07 3.93209 3.40729e-07 3.93294 3.62246e-07 3.93384 3.71647e-07 3.9348 3.70919e-07 3.93578 3.58034e-07 3.93677 3.35946e-07 3.93776 3.03502e-07 3.93874 2.61456e-07 3.9397 2.1218e-07 3.94064 1.58037e-07 3.94155 9.73141e-08 3.94244 3.43862e-08 3.94332 -3.47627e-08 3.94417 -1.52217e-07 3.94503 -1.11995e-07 3.94587 -1.53232e-08 3.94673 -3.55732e-07 3.94759 -3.77184e-07 3.94847 -4.08669e-07 3.94936 -4.25414e-07 3.95028 -4.47191e-07 3.95121 -4.71555e-07 3.95215 -4.89641e-07 3.9531 -5.0058e-07 3.95404 -5.06603e-07 3.95496 -5.00553e-07 3.95586 -4.88346e-07 3.95671 -4.69418e-07 3.9575 -4.40894e-07 3.95822 -4.09907e-07 3.95884 -3.7019e-07 3.95937 -3.25157e-07 3.95978 -2.76694e-07 3.96006 -2.27259e-07 3.9602 -1.70541e-07 3.9602 -1.18791e-07 3.96005 -6.65314e-08 3.95974 1.73695e-08 3.95926 5.31745e-08 3.95864 8.81155e-08 3.95788 1.2784e-07 3.95697 1.61492e-07 3.95594 1.88496e-07 3.95477 2.08325e-07 3.9535 2.20332e-07 3.95212 2.2419e-07 3.95065 2.19823e-07 3.94909 2.07605e-07 3.94746 1.90064e-07 3.94576 1.58465e-07 3.944 1.21845e-07 3.9422 8.29932e-08 3.94035 3.9483e-08 3.93846 -8.36735e-09 3.93655 -5.525e-08 3.93461 4.86943e-09 3.93267 -5.83168e-08 3.93071 -4.65154e-07 3.92875 -2.80364e-07 3.92681 -2.75446e-07 3.9249 -3.25052e-07 3.92302 -3.63729e-07 3.92119 -3.85611e-07 3.91944 -3.95536e-07 3.91777 -3.95183e-07 3.9162 -3.84356e-07 3.91476 -3.63001e-07 3.91346 -3.31433e-07 3.9123 -2.90294e-07 3.91132 -2.40605e-07 3.91052 -1.83638e-07 3.9099 -1.20948e-07 3.90949 -5.44624e-08 3.90926 1.42609e-09 3.90922 5.11136e-08 3.90935 1.42376e-07 3.90965 1.99439e-07 3.91011 2.5744e-07 3.91072 3.08637e-07 3.91145 3.516e-07 3.91229 3.82215e-07 3.9132 4.06542e-07 3.91418 4.1665e-07 3.91518 4.16267e-07 3.91619 4.08283e-07 3.91718 3.89038e-07 3.91814 3.61777e-07 3.91904 3.28802e-07 3.91989 2.9022e-07 3.92066 2.47448e-07 3.92135 2.02186e-07 3.92195 1.57352e-07 3.92247 1.11779e-07 3.92291 6.74991e-08 3.92327 2.68628e-08 3.92355 -1.13941e-08 3.92377 -4.59295e-08 3.92392 -7.6092e-08 3.92403 -1.01889e-07 3.92409 -1.23864e-07 3.92411 -1.42105e-07 3.92411 -1.53443e-07 3.92408 -1.61992e-07 3.92404 -1.74106e-07 3.92399 -1.79351e-07 3.92393 -1.82947e-07 3.92386 -1.84746e-07 3.9238 -1.84846e-07 3.92373 -1.84045e-07 3.92367 -1.81148e-07 3.92361 -1.81346e-07 3.92355 -1.71136e-07 3.9235 -1.83531e-07 3.92346 -1.56078e-07 3.92342 -1.84367e-07 3.92339 -1.34763e-07 3.92336 -1.38756e-07 3.92334 4.69117e-09 3.92332 1.54461e-06 3.9233 6.67324e-06 3.9233 3.59789e-05 3.92334 0.000179066 3.9236 0.000903797 3.92491 0.00455641 3.93152 0.0231178 3.96493 0.120267 4.15467 0.876201 2.40097 4.71487 3.4415 -0.000904565 3.44152 -0.000647033 3.44154 -0.000619926 3.44155 -0.0006269 3.44157 -0.000627514 3.44158 -0.000627399 3.4416 -0.000627338 3.44162 -0.000627259 3.44164 -0.000626657 3.44166 -0.000624765 3.44168 -0.0006211 3.4417 -0.00061436 3.44172 -0.000603228 3.44173 -0.0005863 3.44175 -0.000562373 3.44176 -0.000530739 3.44177 -0.000491421 3.44178 -0.0004453 3.44179 -0.000394064 3.44179 -0.000339996 3.44179 -0.000285651 3.44179 -0.000233511 3.44178 -0.000185581 3.44177 -0.000143421 3.44175 -0.000107746 3.44173 -7.87095e-05 3.44171 -5.59331e-05 3.44168 -3.86896e-05 3.44164 -2.60767e-05 3.44159 -1.71504e-05 3.44153 -1.1032e-05 3.44146 -6.96688e-06 3.44138 -4.34735e-06 3.44127 -2.70948e-06 3.44114 -1.71606e-06 3.44099 -1.13237e-06 3.44081 -8.01432e-07 3.44059 -6.22334e-07 3.44033 -5.32258e-07 3.44003 -4.9343e-07 3.43968 -4.8352e-07 3.43928 -4.90007e-07 3.43883 -5.05479e-07 3.43831 -5.26143e-07 3.43773 -5.4952e-07 3.43708 -5.73913e-07 3.43636 -5.98571e-07 3.43558 -6.22171e-07 3.43474 -6.44002e-07 3.43383 -6.63e-07 3.43287 -6.77657e-07 3.43186 -6.86723e-07 3.43082 -7.00147e-07 3.42975 -6.99401e-07 3.42867 -6.82452e-07 3.42759 -6.62712e-07 3.42654 -6.37909e-07 3.42552 -6.05047e-07 3.42456 -5.62068e-07 3.42368 -5.10165e-07 3.42288 -4.50247e-07 3.42219 -3.8317e-07 3.42161 -3.10607e-07 3.42117 -2.33558e-07 3.42086 -1.53606e-07 3.42069 -7.32907e-08 3.42067 -3.5976e-08 3.42077 6.67133e-08 3.421 1.54494e-07 3.42137 2.19094e-07 3.42184 2.79309e-07 3.42242 3.22434e-07 3.42309 3.56828e-07 3.42382 3.79372e-07 3.42461 3.89246e-07 3.42544 3.88525e-07 3.42629 3.75054e-07 3.42716 3.51967e-07 3.42802 3.18018e-07 3.42887 2.73998e-07 3.42971 2.22386e-07 3.43052 1.65714e-07 3.43132 1.02089e-07 3.4321 3.62234e-08 3.43286 -3.55249e-08 3.4336 -1.58841e-07 3.43434 -1.16564e-07 3.43508 -1.07866e-08 3.43582 -3.79932e-07 3.43658 -3.94215e-07 3.43734 -4.27779e-07 3.43812 -4.45292e-07 3.43892 -4.68146e-07 3.43973 -4.93685e-07 3.44055 -5.12642e-07 3.44137 -5.24098e-07 3.44219 -5.30461e-07 3.44299 -5.24051e-07 3.44377 -5.113e-07 3.44451 -4.91498e-07 3.4452 -4.61576e-07 3.44583 -4.29227e-07 3.44637 -3.87627e-07 3.44683 -3.40522e-07 3.44719 -2.89794e-07 3.44743 -2.38109e-07 3.44755 -1.78701e-07 3.44755 -1.24481e-07 3.44742 -6.98528e-08 3.44715 1.76551e-08 3.44674 5.59376e-08 3.4462 9.211e-08 3.44553 1.33765e-07 3.44474 1.68995e-07 3.44384 1.97284e-07 3.44283 2.18064e-07 3.44172 2.30641e-07 3.44052 2.34697e-07 3.43924 2.30139e-07 3.43788 2.17296e-07 3.43646 1.99005e-07 3.43498 1.65812e-07 3.43345 1.27624e-07 3.43188 8.6955e-08 3.43027 4.13529e-08 3.42863 -8.80391e-09 3.42697 -5.88843e-08 3.42528 5.3551e-09 3.42358 -5.87788e-08 3.42188 -4.9252e-07 3.42018 -2.89539e-07 3.41849 -2.88386e-07 3.41682 -3.40511e-07 3.41519 -3.80995e-07 3.4136 -4.0391e-07 3.41207 -4.14315e-07 3.41062 -4.13958e-07 3.40925 -4.02637e-07 3.408 -3.80285e-07 3.40686 -3.47238e-07 3.40586 -3.04168e-07 3.405 -2.52137e-07 3.4043 -1.92475e-07 3.40377 -1.2682e-07 3.4034 -5.71054e-08 3.40321 1.05501e-09 3.40318 5.40022e-08 3.40328 1.48892e-07 3.40354 2.08722e-07 3.40395 2.69694e-07 3.40448 3.23289e-07 3.40511 3.68374e-07 3.40584 4.00352e-07 3.40664 4.25985e-07 3.40749 4.36507e-07 3.40836 4.3611e-07 3.40924 4.27841e-07 3.4101 4.07628e-07 3.41094 3.79074e-07 3.41173 3.44571e-07 3.41246 3.0416e-07 3.41313 2.59319e-07 3.41373 2.11905e-07 3.41426 1.64975e-07 3.41471 1.17183e-07 3.41509 7.07769e-08 3.4154 2.82162e-08 3.41565 -1.18707e-08 3.41584 -4.80759e-08 3.41597 -7.96863e-08 3.41607 -1.06706e-07 3.41612 -1.29752e-07 3.41614 -1.48888e-07 3.41614 -1.60693e-07 3.41611 -1.69766e-07 3.41608 -1.82379e-07 3.41603 -1.87905e-07 3.41598 -1.91667e-07 3.41592 -1.93551e-07 3.41586 -1.9369e-07 3.41581 -1.92718e-07 3.41575 -1.89997e-07 3.4157 -1.89462e-07 3.41565 -1.80873e-07 3.41561 -1.89277e-07 3.41557 -1.67893e-07 3.41554 -1.88025e-07 3.41551 -1.50238e-07 3.41548 -1.52399e-07 3.41546 -5.16775e-08 3.41545 1.11056e-06 3.41543 4.93008e-06 3.41543 2.67683e-05 3.41547 0.000133432 3.4157 0.000673704 3.41685 0.00339664 3.42274 0.0172344 3.4529 0.090113 3.64824 0.680868 1.85318 4.19604 2.99601 -0.00095044 2.99602 -0.000666423 2.99603 -0.00064619 2.99605 -0.000651538 2.99606 -0.000651997 2.99607 -0.000652005 2.99609 -0.000651947 2.9961 -0.000651857 2.99612 -0.000651228 2.99614 -0.000649245 2.99616 -0.000645419 2.99617 -0.000638384 2.99619 -0.000626772 2.9962 -0.000609122 2.99621 -0.000584189 2.99623 -0.000551239 2.99624 -0.000510305 2.99624 -0.00046231 2.99625 -0.000409014 2.99625 -0.000352798 2.99625 -0.000296319 2.99625 -0.000242155 2.99624 -0.000192387 2.99623 -0.000148627 2.99622 -0.000111617 2.9962 -8.15071e-05 2.99618 -5.78988e-05 2.99615 -4.00337e-05 2.99612 -2.69721e-05 2.99608 -1.77324e-05 2.99603 -1.14023e-05 2.99597 -7.19841e-06 2.99589 -4.49079e-06 2.9958 -2.79868e-06 2.99569 -1.77288e-06 2.99555 -1.17052e-06 2.9954 -8.29205e-07 2.99521 -6.44653e-07 2.99498 -5.51958e-07 2.99472 -5.12136e-07 2.99442 -5.02117e-07 2.99407 -5.09015e-07 2.99367 -5.25168e-07 2.99322 -5.4669e-07 2.99272 -5.71021e-07 2.99215 -5.96381e-07 2.99153 -6.22018e-07 2.99085 -6.46563e-07 2.99011 -6.69275e-07 2.98932 -6.89044e-07 2.98849 -7.04345e-07 2.98761 -7.13699e-07 2.9867 -7.2773e-07 2.98577 -7.2677e-07 2.98483 -7.09162e-07 2.98389 -6.88855e-07 2.98298 -6.63113e-07 2.98209 -6.28974e-07 2.98126 -5.84314e-07 2.98048 -5.30392e-07 2.97979 -4.68131e-07 2.97919 -3.98424e-07 2.97869 -3.23027e-07 2.9783 -2.42944e-07 2.97803 -1.59831e-07 2.97789 -7.61029e-08 2.97787 -3.8297e-08 2.97795 6.99947e-08 2.97816 1.60278e-07 2.97847 2.27621e-07 2.97889 2.90293e-07 2.97939 3.35058e-07 2.97997 3.70841e-07 2.98061 3.94288e-07 2.9813 4.0458e-07 2.98202 4.03885e-07 2.98276 3.89915e-07 2.98351 3.65959e-07 2.98426 3.3071e-07 2.98501 2.84959e-07 2.98573 2.31328e-07 2.98644 1.72455e-07 2.98714 1.06294e-07 2.98781 3.78641e-08 2.98847 -3.59723e-08 2.98913 -1.64186e-07 2.98977 -1.20159e-07 2.99041 -6.28279e-09 2.99106 -4.02371e-07 2.99171 -4.08978e-07 2.99238 -4.44379e-07 2.99306 -4.62536e-07 2.99375 -4.86347e-07 2.99446 -5.12911e-07 2.99517 -5.32644e-07 2.99589 -5.44533e-07 2.9966 -5.51216e-07 2.9973 -5.44464e-07 2.99798 -5.3125e-07 2.99862 -5.10721e-07 2.99922 -4.79555e-07 2.99977 -4.46038e-07 3.00024 -4.02804e-07 3.00064 -3.53906e-07 3.00095 -3.0121e-07 3.00116 -2.47594e-07 3.00127 -1.85828e-07 3.00127 -1.29483e-07 3.00116 -7.27523e-08 3.00092 1.77824e-08 3.00056 5.83786e-08 3.00009 9.55406e-08 2.99951 1.38887e-07 2.99882 1.755e-07 2.99804 2.04898e-07 2.99716 2.26522e-07 2.99619 2.39583e-07 2.99515 2.43828e-07 2.99403 2.39092e-07 2.99285 2.25693e-07 2.99161 2.06768e-07 2.99033 1.72178e-07 2.989 1.32652e-07 2.98763 9.04256e-08 2.98623 4.299e-08 2.9848 -9.18226e-09 2.98335 -6.22094e-08 2.98188 5.63523e-09 2.9804 -5.89862e-08 2.97892 -5.16906e-07 2.97744 -2.96826e-07 2.97597 -2.99653e-07 2.97451 -3.53997e-07 2.97309 -3.96041e-07 2.97171 -4.19855e-07 2.97038 -4.30697e-07 2.96911 -4.30347e-07 2.96793 -4.18593e-07 2.96683 -3.95379e-07 2.96584 -3.61044e-07 2.96497 -3.163e-07 2.96423 -2.62229e-07 2.96362 -2.0022e-07 2.96315 -1.31982e-07 2.96284 -5.94482e-08 2.96267 6.62112e-10 2.96264 5.65924e-08 2.96273 1.54498e-07 2.96296 2.16805e-07 2.96331 2.80379e-07 2.96377 3.36073e-07 2.96432 3.83021e-07 2.96496 4.16196e-07 2.96565 4.42971e-07 2.96639 4.53852e-07 2.96715 4.53456e-07 2.96791 4.44936e-07 2.96867 4.23879e-07 2.96939 3.942e-07 2.97008 3.58363e-07 2.97072 3.16362e-07 2.9713 2.69723e-07 2.97183 2.20421e-07 2.97229 1.71651e-07 2.97268 1.21912e-07 2.97301 7.36545e-08 2.97328 2.94276e-08 2.9735 -1.22927e-08 2.97366 -4.99385e-08 2.97378 -8.28186e-08 2.97386 -1.10907e-07 2.9739 -1.34885e-07 2.97392 -1.54811e-07 2.97392 -1.67027e-07 2.9739 -1.76558e-07 2.97387 -1.89611e-07 2.97383 -1.95389e-07 2.97378 -1.99288e-07 2.97373 -2.01246e-07 2.97368 -2.01417e-07 2.97363 -2.00289e-07 2.97358 -1.97735e-07 2.97354 -1.96538e-07 2.9735 -1.894e-07 2.97346 -1.94257e-07 2.97343 -1.78232e-07 2.9734 -1.91183e-07 2.97337 -1.63767e-07 2.97335 -1.64298e-07 2.97333 -9.70067e-08 2.97332 7.24602e-07 2.97331 3.39484e-06 2.97331 1.86665e-05 2.97334 9.32766e-05 2.97354 0.000471193 2.97456 0.00237565 2.97975 0.0120503 3.00657 0.0632868 3.1956 0.491846 1.33457 3.71423 2.60818 -0.000991409 2.60818 -0.000682632 2.6082 -0.000669328 2.60821 -0.000672955 2.60822 -0.000673305 2.60823 -0.000673425 2.60825 -0.000673367 2.60826 -0.000673266 2.60828 -0.000672612 2.60829 -0.000670547 2.60831 -0.000666578 2.60832 -0.000659283 2.60833 -0.000647249 2.60835 -0.000628968 2.60836 -0.000603153 2.60837 -0.000569053 2.60838 -0.000526707 2.60838 -0.000477076 2.60839 -0.000421986 2.60839 -0.000363898 2.60839 -0.000305561 2.60839 -0.000249635 2.60838 -0.000198271 2.60837 -0.000153123 2.60836 -0.000114955 2.60835 -8.39158e-05 2.60833 -5.95885e-05 2.6083 -4.11871e-05 2.60827 -2.7739e-05 2.60824 -1.82301e-05 2.60819 -1.17183e-05 2.60814 -7.39567e-06 2.60807 -4.61282e-06 2.60799 -2.87451e-06 2.6079 -1.82122e-06 2.60778 -1.20304e-06 2.60764 -8.52964e-07 2.60748 -6.63833e-07 2.60728 -5.68965e-07 2.60706 -5.28318e-07 2.60679 -5.18237e-07 2.60649 -5.25521e-07 2.60614 -5.42281e-07 2.60575 -5.64563e-07 2.60531 -5.89716e-07 2.60482 -6.15906e-07 2.60428 -6.42431e-07 2.60369 -6.67784e-07 2.60304 -6.91271e-07 2.60236 -7.11731e-07 2.60163 -7.27599e-07 2.60087 -7.37193e-07 2.60007 -7.51741e-07 2.59926 -7.50566e-07 2.59845 -7.3242e-07 2.59763 -7.11647e-07 2.59683 -6.85082e-07 2.59606 -6.49852e-07 2.59533 -6.03737e-07 2.59466 -5.48069e-07 2.59406 -4.83771e-07 2.59353 -4.11772e-07 2.5931 -3.33897e-07 2.59276 -2.51173e-07 2.59253 -1.65317e-07 2.5924 -7.85731e-08 2.59238 -4.04216e-08 2.59246 7.29196e-08 2.59264 1.65273e-07 2.59291 2.35024e-07 2.59327 2.9986e-07 2.59371 3.46026e-07 2.59421 3.83039e-07 2.59477 4.07272e-07 2.59537 4.17953e-07 2.596 4.17283e-07 2.59664 4.02884e-07 2.5973 3.78193e-07 2.59795 3.41817e-07 2.5986 2.94574e-07 2.59923 2.39183e-07 2.59985 1.78392e-07 2.60045 1.10016e-07 2.60104 3.93484e-08 2.60162 -3.61397e-08 2.60218 -1.68297e-07 2.60275 -1.22793e-07 2.60331 -1.96087e-09 2.60387 -4.23217e-07 2.60444 -4.21809e-07 2.60502 -4.58796e-07 2.60561 -4.77481e-07 2.60621 -5.02147e-07 2.60683 -5.29613e-07 2.60745 -5.50019e-07 2.60807 -5.62286e-07 2.60869 -5.69249e-07 2.6093 -5.62188e-07 2.60989 -5.48582e-07 2.61045 -5.27409e-07 2.61098 -4.95173e-07 2.61145 -4.60648e-07 2.61186 -4.15992e-07 2.61221 -3.65559e-07 2.61248 -3.11164e-07 2.61266 -2.55877e-07 2.61276 -1.92067e-07 2.61276 -1.33892e-07 2.61266 -7.53025e-08 2.61245 1.77752e-08 2.61214 6.05069e-08 2.61173 9.84764e-08 2.61123 1.43307e-07 2.61063 1.81131e-07 2.60994 2.1149e-07 2.60918 2.3386e-07 2.60834 2.4735e-07 2.60743 2.51748e-07 2.60646 2.46881e-07 2.60543 2.3298e-07 2.60435 2.13491e-07 2.60323 1.77697e-07 2.60207 1.3705e-07 2.60088 9.3456e-08 2.59966 4.44234e-08 2.59842 -9.49876e-09 2.59715 -6.52581e-08 2.59588 5.64978e-09 2.59459 -5.90808e-08 2.5933 -5.38505e-07 2.59201 -3.02476e-07 2.59073 -3.09446e-07 2.58947 -3.65762e-07 2.58823 -4.09171e-07 2.58702 -4.33767e-07 2.58587 -4.44979e-07 2.58476 -4.44648e-07 2.58373 -4.32527e-07 2.58278 -4.0857e-07 2.58192 -3.73126e-07 2.58116 -3.2692e-07 2.58051 -2.71073e-07 2.57998 -2.07026e-07 2.57958 -1.36533e-07 2.5793 -6.15291e-08 2.57915 2.21917e-10 2.57912 5.89498e-08 2.57921 1.59322e-07 2.5794 2.23848e-07 2.57971 2.89718e-07 2.58011 3.47227e-07 2.58059 3.95812e-07 2.58115 4.30035e-07 2.58175 4.57836e-07 2.58239 4.69019e-07 2.58305 4.68637e-07 2.58372 4.59906e-07 2.58437 4.38111e-07 2.58501 4.07461e-07 2.58561 3.70448e-07 2.58616 3.27065e-07 2.58667 2.78844e-07 2.58713 2.27901e-07 2.58752 1.77533e-07 2.58787 1.26081e-07 2.58816 7.62011e-08 2.58839 3.05117e-08 2.58858 -1.26238e-08 2.58872 -5.15538e-08 2.58882 -8.55252e-08 2.58889 -1.14564e-07 2.58893 -1.39367e-07 2.58895 -1.59987e-07 2.58895 -1.72549e-07 2.58893 -1.8251e-07 2.5889 -1.95931e-07 2.58887 -2.01922e-07 2.58883 -2.05953e-07 2.58878 -2.0798e-07 2.58874 -2.08169e-07 2.5887 -2.06906e-07 2.58865 -2.04484e-07 2.58862 -2.02715e-07 2.58858 -1.96866e-07 2.58855 -1.98583e-07 2.58852 -1.87272e-07 2.58849 -1.93919e-07 2.58847 -1.75587e-07 2.58845 -1.7467e-07 2.58844 -1.32743e-07 2.58842 3.82432e-07 2.58842 2.04885e-06 2.58841 1.1569e-05 2.58844 5.80923e-05 2.58862 0.000293728 2.58951 0.001481 2.59406 0.0075084 2.61773 0.0396111 2.79511 0.314475 0.852305 3.27738 2.27055 -0.00102707 2.27055 -0.000695215 2.27057 -0.000688427 2.27058 -0.00068992 2.27058 -0.000689848 2.27059 -0.000689712 2.2706 -0.000689301 2.27061 -0.000688852 2.27062 -0.000687864 2.27063 -0.00068547 2.27064 -0.000681204 2.27065 -0.000673637 2.27065 -0.000661357 2.27066 -0.000642848 2.27067 -0.000616795 2.27067 -0.000582407 2.27068 -0.000539676 2.27069 -0.000489511 2.27069 -0.000433706 2.27069 -0.000374709 2.27069 -0.000315287 2.27069 -0.000258149 2.27069 -0.000205504 2.27069 -0.000159082 2.27068 -0.000119716 2.27067 -8.75998e-05 2.27065 -6.2352e-05 2.27063 -4.31975e-05 2.27061 -2.91584e-05 2.27058 -1.92035e-05 2.27054 -1.23677e-05 2.27049 -7.81777e-06 2.27044 -4.88084e-06 2.27037 -3.04149e-06 2.27028 -1.924e-06 2.27018 -1.2663e-06 2.27006 -8.92695e-07 2.26992 -6.90026e-07 2.26975 -5.87697e-07 2.26955 -5.43183e-07 2.26932 -5.3129e-07 2.26906 -5.37933e-07 2.26875 -5.54701e-07 2.26841 -5.77322e-07 2.26803 -6.03006e-07 2.2676 -6.29807e-07 2.26713 -6.56983e-07 2.26661 -6.82965e-07 2.26606 -7.07056e-07 2.26546 -7.28058e-07 2.26482 -7.444e-07 2.26416 -7.54109e-07 2.26347 -7.68992e-07 2.26277 -7.67624e-07 2.26205 -7.49089e-07 2.26134 -7.27985e-07 2.26065 -7.00726e-07 2.25998 -6.64601e-07 2.25934 -6.1731e-07 2.25876 -5.60241e-07 2.25823 -4.94307e-07 2.25778 -4.20459e-07 2.2574 -3.40613e-07 2.2571 -2.55764e-07 2.2569 -1.67711e-07 2.25679 -7.85039e-08 2.25678 -4.02215e-08 2.25684 7.74453e-08 2.25699 1.71363e-07 2.25723 2.43064e-07 2.25755 3.09636e-07 2.25793 3.56911e-07 2.25837 3.94899e-07 2.25885 4.19735e-07 2.25937 4.30675e-07 2.25992 4.29976e-07 2.26048 4.15163e-07 2.26105 3.89806e-07 2.26162 3.52444e-07 2.26219 3.03928e-07 2.26274 2.47037e-07 2.26328 1.84667e-07 2.2638 1.1448e-07 2.26431 4.19932e-08 2.26482 -3.44589e-08 2.26531 -1.68744e-07 2.2658 -1.22051e-07 2.26628 4.21278e-09 2.26677 -4.3918e-07 2.26727 -4.29896e-07 2.26777 -4.68266e-07 2.26829 -4.87358e-07 2.26881 -5.12693e-07 2.26935 -5.40898e-07 2.26989 -5.61911e-07 2.27043 -5.74546e-07 2.27097 -5.81796e-07 2.2715 -5.74561e-07 2.27202 -5.60685e-07 2.27251 -5.39043e-07 2.27296 -5.05974e-07 2.27337 -4.70667e-07 2.27373 -4.24894e-07 2.27404 -3.73213e-07 2.27427 -3.17446e-07 2.27443 -2.60814e-07 2.27451 -1.95327e-07 2.27451 -1.35642e-07 2.27443 -7.55208e-08 2.27425 1.9576e-08 2.27397 6.42176e-08 2.27362 1.02809e-07 2.27318 1.48902e-07 2.27266 1.87763e-07 2.27206 2.18955e-07 2.2714 2.41937e-07 2.27066 2.55786e-07 2.26987 2.60305e-07 2.26903 2.55324e-07 2.26813 2.40987e-07 2.26719 2.21025e-07 2.26622 1.84267e-07 2.26521 1.42765e-07 2.26417 9.80835e-08 2.26311 4.7763e-08 2.26203 -7.51606e-09 2.26093 -6.57383e-08 2.25982 7.34144e-09 2.2587 -5.63159e-08 2.25757 -5.53755e-07 2.25645 -3.04222e-07 2.25534 -3.15256e-07 2.25424 -3.73097e-07 2.25316 -4.176e-07 2.25211 -4.42851e-07 2.2511 -4.54387e-07 2.25014 -4.54103e-07 2.24924 -4.41712e-07 2.24841 -4.17171e-07 2.24766 -3.80864e-07 2.247 -3.33504e-07 2.24644 -2.76254e-07 2.24598 -2.10581e-07 2.24563 -1.38294e-07 2.24538 -6.13072e-08 2.24526 1.67711e-09 2.24523 6.28424e-08 2.24531 1.6507e-07 2.24548 2.31434e-07 2.24574 2.9918e-07 2.24609 3.58137e-07 2.24651 4.08068e-07 2.24699 4.43113e-07 2.24752 4.71748e-07 2.24808 4.83149e-07 2.24865 4.8276e-07 2.24923 4.73843e-07 2.2498 4.51408e-07 2.25035 4.19946e-07 2.25087 3.81955e-07 2.25136 3.37423e-07 2.2518 2.87891e-07 2.2522 2.35581e-07 2.25255 1.83867e-07 2.25284 1.30996e-07 2.2531 7.97736e-08 2.2533 3.28764e-08 2.25346 -1.14233e-08 2.25359 -5.13901e-08 2.25368 -8.62747e-08 2.25374 -1.16073e-07 2.25377 -1.4155e-07 2.25379 -1.6273e-07 2.25378 -1.75576e-07 2.25377 -1.85883e-07 2.25375 -1.99634e-07 2.25372 -2.05797e-07 2.25368 -2.09922e-07 2.25364 -2.11996e-07 2.2536 -2.12211e-07 2.25357 -2.10843e-07 2.25353 -2.08543e-07 2.2535 -2.06273e-07 2.25346 -2.0154e-07 2.25344 -2.00544e-07 2.25341 -1.93348e-07 2.25339 -1.94508e-07 2.25337 -1.84136e-07 2.25335 -1.82063e-07 2.25334 -1.59322e-07 2.25333 8.0694e-08 2.25332 8.73228e-07 2.25332 5.36922e-06 2.25335 2.73532e-05 2.2535 0.000138674 2.25428 0.000699559 2.25824 0.00354527 2.27903 0.0188273 2.44199 0.151518 0.409147 2.88516 1.97555 1.97485 1.97416 1.97346 1.97277 1.97207 1.97137 1.97068 1.96999 1.9693 1.96862 1.96794 1.96727 1.96662 1.966 1.96541 1.96487 1.96438 1.96394 1.96356 1.96323 1.96297 1.96275 1.96259 1.96246 1.96236 1.96228 1.96222 1.96217 1.96212 1.96207 1.96203 1.96197 1.96191 1.96183 1.96174 1.96164 1.96151 1.96137 1.9612 1.961 1.96077 1.9605 1.96021 1.95987 1.9595 1.95909 1.95864 1.95815 1.95763 1.95708 1.9565 1.9559 1.95529 1.95467 1.95405 1.95344 1.95286 1.95231 1.9518 1.95134 1.95094 1.95062 1.95036 1.95018 1.95009 1.95008 1.95013 1.95027 1.95048 1.95075 1.95108 1.95147 1.95189 1.95234 1.95282 1.95331 1.95381 1.95431 1.9548 1.95528 1.95575 1.95621 1.95665 1.95709 1.95752 1.95795 1.95837 1.9588 1.95923 1.95967 1.96012 1.96057 1.96104 1.96151 1.96198 1.96245 1.96291 1.96336 1.96379 1.96418 1.96454 1.96486 1.96512 1.96532 1.96546 1.96553 1.96553 1.96546 1.9653 1.96507 1.96476 1.96438 1.96393 1.96341 1.96283 1.96219 1.9615 1.96077 1.95999 1.95917 1.95833 1.95745 1.95655 1.95562 1.95468 1.95372 1.95276 1.95178 1.9508 1.94983 1.94886 1.9479 1.94696 1.94605 1.94517 1.94434 1.94355 1.94283 1.94218 1.9416 1.94111 1.94071 1.94041 1.9402 1.94009 1.94007 1.94013 1.94028 1.94051 1.94082 1.94118 1.9416 1.94206 1.94255 1.94305 1.94356 1.94406 1.94454 1.94499 1.94541 1.9458 1.94615 1.94645 1.94671 1.94693 1.94711 1.94725 1.94736 1.94744 1.94749 1.94752 1.94753 1.94753 1.94752 1.9475 1.94747 1.94744 1.94741 1.94738 1.94734 1.94731 1.94728 1.94726 1.94723 1.94721 1.94719 1.94718 1.94716 1.94715 1.94714 1.94714 1.94714 1.94716 1.9473 1.948 1.95154 1.97037 2.12189 2.53105 1.52397 0.0728867 1.49502 0.0289478 1.4692 0.025819 1.4517 0.0175057 1.43965 0.0120516 1.43143 0.00822038 1.42622 0.00521916 1.42284 0.00338114 1.42095 0.0018832 1.42056 0.000394678 1.42166 -0.00109436 1.42433 -0.00267526 1.42891 -0.00457478 1.43637 -0.00745529 1.44771 -0.0113422 1.46494 -0.017228 1.4907 -0.0257571 1.53066 -0.0399518 1.59831 -0.067646 -0.143245 1.74155 1.78651 0.14766 1.7546 0.0608522 1.73235 0.0480701 1.71911 0.0307495 1.71252 0.0186479 1.7107 0.010041 1.71254 0.00338007 1.71655 -0.000626382 1.72221 -0.00377542 1.72934 -0.00673508 1.73777 -0.00951715 1.74746 -0.0123691 1.75864 -0.0157463 1.77219 -0.0210069 1.789 -0.028149 1.81096 -0.0391871 1.84064 -0.0554314 1.88335 -0.0826615 1.95143 -0.135723 -0.285334 2.09352 2.06253 0.234465 2.02235 0.101032 1.99173 0.0786955 1.97021 0.052271 1.95548 0.033379 1.94582 0.0197026 1.94009 0.00911596 1.93673 0.00273739 1.93546 -0.0025029 1.93631 -0.00758316 1.93919 -0.0124036 1.94424 -0.0174101 1.95187 -0.023375 1.96344 -0.0325768 1.98024 -0.0449401 2.00496 -0.0639032 2.04082 -0.0912969 2.09541 -0.137241 2.18455 -0.224861 -0.449254 2.34847 2.3928 0.323881 2.34892 0.144917 2.32064 0.106971 2.30237 0.0705474 2.29202 0.043732 2.28778 0.0239467 2.2884 0.0085019 2.29176 -0.00062362 2.29725 -0.00798801 2.30462 -0.0149525 2.31369 -0.0214693 2.32447 -0.0281907 2.33718 -0.0360824 2.35312 -0.0485183 2.37343 -0.0652447 2.40072 -0.091183 2.43903 -0.129607 2.49508 -0.193283 2.58457 -0.314357 -0.616662 2.75199 2.76947 0.422579 2.7143 0.200094 2.67714 0.14413 2.65052 0.097173 2.63239 0.0618609 2.62095 0.0353919 2.61519 0.0142695 2.61252 0.0020426 2.61281 -0.00827364 2.61593 -0.0180681 2.62169 -0.0272291 2.63021 -0.0367069 2.64209 -0.0479624 2.65921 -0.0656313 2.6829 -0.0889341 2.71604 -0.124311 2.76387 -0.177441 2.83535 -0.264756 2.9481 -0.427107 -0.803102 3.13455 3.21203 0.527217 3.15328 0.258848 3.11885 0.178566 3.09538 0.120645 3.07884 0.0783985 3.07146 0.0427793 3.07003 0.0157042 3.0717 0.00038078 3.07633 -0.0129075 3.08358 -0.025316 3.09329 -0.0369358 3.10555 -0.0489648 3.12035 -0.062761 3.14036 -0.0856314 3.16742 -0.11599 3.20474 -0.161622 3.25791 -0.230614 3.33606 -0.342901 3.45539 -0.546431 -0.991903 3.64419 14.4077 0.887301 14.1445 0.522097 13.9407 0.382414 13.7829 0.278409 13.6756 0.18572 13.6033 0.115131 13.5639 0.0550977 13.5448 0.0194833 13.5464 -0.0144275 13.5665 -0.0454169 13.6008 -0.0712544 13.6512 -0.0993271 13.724 -0.135597 13.8212 -0.182781 13.9524 -0.247167 14.1303 -0.339533 14.3768 -0.477045 14.7248 -0.690917 15.2197 -1.04134 -1.64935 15.8772 14.9926 1.13248 14.7984 0.716264 14.6898 0.491002 14.643 0.325282 14.63 0.198687 14.6344 0.110768 14.6339 0.0555914 14.6443 0.00908054 14.6551 -0.0251295 14.6644 -0.0547244 14.6889 -0.0957774 14.7254 -0.135804 14.7753 -0.185468 14.8446 -0.252104 14.9419 -0.344474 15.0785 -0.476108 15.2694 -0.667879 15.5319 -0.953437 15.8786 -1.38799 -2.05959 16.2889 15.6176 1.27736 15.4851 0.84886 15.3856 0.590502 15.297 0.413821 15.2115 0.284252 15.1401 0.182185 15.1037 0.092002 15.0985 0.0142481 15.1162 -0.0427863 15.1479 -0.0864034 15.186 -0.133859 15.2374 -0.187156 15.3035 -0.251632 15.3868 -0.33533 15.491 -0.448729 15.6218 -0.606808 15.7856 -0.831673 15.9878 -1.15563 16.224 -1.62424 -2.29632 16.4608 16.2962 1.32721 16.2362 0.908783 16.1923 0.634494 16.1759 0.430226 16.1918 0.268288 16.2251 0.148968 16.2442 0.0728448 16.242 0.0164615 16.231 -0.0317323 16.225 -0.0803452 16.2246 -0.133457 16.2294 -0.192002 16.2423 -0.264514 16.2668 -0.359767 16.3072 -0.489132 16.368 -0.667586 16.4516 -0.915325 16.5553 -1.2593 16.6645 -1.7334 -2.37459 16.7428 17.052 1.285 17.0656 0.895188 17.0698 0.630282 17.0605 0.439562 17.0247 0.304127 16.9761 0.197548 16.9522 0.0967315 16.9627 0.00604185 16.9911 -0.0601275 17.0233 -0.112598 17.0606 -0.170741 17.1043 -0.235608 17.1526 -0.312865 17.2036 -0.410683 17.2535 -0.539082 17.2973 -0.711353 17.3276 -0.945661 17.3341 -1.26573 17.301 -1.70033 -2.28055 17.207 17.9216 1.15145 18.016 0.800869 18.088 0.558225 18.1524 0.375164 18.2245 0.2321 18.2923 0.129751 18.3242 0.0648295 18.3234 0.0068188 18.3014 -0.0380793 18.2663 -0.0774759 18.2261 -0.130481 18.1762 -0.18577 18.118 -0.254614 18.0528 -0.345426 17.982 -0.468288 17.9053 -0.634603 17.818 -0.858398 17.7094 -1.15713 17.5593 -1.55017 -2.05421 17.3329 18.9439 0.93074 19.1171 0.627644 19.2368 0.438584 19.2898 0.322144 19.292 0.229893 19.2809 0.140911 19.2955 0.0502059 19.3114 -0.00901971 19.3414 -0.068138 19.3801 -0.116151 19.4146 -0.164906 19.4486 -0.219832 19.4782 -0.284163 19.4955 -0.362726 19.4858 -0.458543 19.4297 -0.578484 19.3053 -0.733998 19.0893 -0.941107 18.7607 -1.2215 -1.60367 18.3101 20.2222 0.605655 20.4931 0.356775 20.7088 0.222893 20.8972 0.133702 21.0422 0.0849347 21.1353 0.0477656 21.1743 0.0113136 21.1776 -0.0123137 21.1394 -0.0299559 21.0678 -0.0445075 20.9621 -0.0591991 20.8185 -0.0762328 20.6302 -0.0958578 20.386 -0.118516 20.0958 -0.168383 19.755 -0.237638 19.3568 -0.335839 18.8865 -0.470782 18.3283 -0.663221 -0.948147 17.6728 4.81578 0.504744 4.89094 0.281619 4.93371 0.180127 4.95475 0.112667 4.97438 0.0653009 4.9871 0.0350531 4.99275 0.00566578 4.99559 -0.015153 4.99616 -0.0305234 4.995 -0.0433446 4.9918 -0.0559996 4.98573 -0.0701568 4.97639 -0.086516 4.9656 -0.107731 4.9419 -0.144679 4.90208 -0.197813 4.83927 -0.273032 4.74515 -0.376656 4.61066 -0.528729 -0.764706 4.42722 4.29689 0.403896 4.37017 0.208344 4.4178 0.132493 4.44654 0.0839326 4.46335 0.0484955 4.47321 0.0251902 4.47368 0.00520028 4.46793 -0.00940629 4.4574 -0.0199866 4.44292 -0.0288683 4.42482 -0.0378975 4.40299 -0.0483185 4.37727 -0.0607957 4.34677 -0.0772303 4.30729 -0.1052 4.2572 -0.147717 4.19338 -0.209215 4.1088 -0.292069 3.99598 -0.415906 -0.606485 3.83776 3.81412 0.304002 3.87615 0.146323 3.91426 0.0943845 3.9406 0.0575928 3.95941 0.0296875 3.97383 0.0107658 3.98411 -0.00507153 3.99171 -0.0170105 3.99748 -0.0257492 4.00153 -0.0329161 4.00348 -0.0398445 4.00255 -0.0473942 3.99785 -0.0560954 3.988 -0.0673773 3.96901 -0.086211 3.93628 -0.11498 3.88329 -0.156224 3.80228 -0.211059 3.68294 -0.296564 -0.440115 3.51657 3.38121 0.200171 3.44172 0.085816 3.47679 0.0593115 3.49756 0.0368256 3.50693 0.0203156 3.50785 0.00985146 3.50147 0.00130577 3.48967 -0.00520679 3.47395 -0.010021 3.45514 -0.0141057 3.4336 -0.0183092 3.4094 -0.0231907 3.38244 -0.0291319 3.35225 -0.0371838 3.31653 -0.0504988 3.27239 -0.0708373 3.21614 -0.0999698 3.14412 -0.139033 3.04872 -0.201165 -0.300647 2.90925 2.97876 0.106569 3.02885 0.0357265 3.06395 0.0242157 3.09104 0.0097284 3.11212 -0.000761988 3.1296 -0.0076257 3.14401 -0.0131022 3.15612 -0.0173146 3.1665 -0.0203967 3.17524 -0.0228488 3.18204 -0.0251071 3.1863 -0.0274535 3.18726 -0.0300879 3.18358 -0.0335036 3.1723 -0.0392153 3.14955 -0.0480832 3.11047 -0.0608937 3.04984 -0.0783942 2.95485 -0.106175 -0.160572 2.81477 2.63762 2.67335 2.69756 2.70729 2.70653 2.69891 2.6858 2.66849 2.6481 2.62525 2.60014 2.57269 2.5426 2.5091 2.46989 2.4218 2.36091 2.28252 2.17634 2.01577 1.91721 -0.175646 1.97685 -0.0596352 1.99899 -0.0221356 2.0067 -0.0077018 2.00973 -0.00302645 2.01122 -0.00147578 2.01281 -0.00157027 2.01512 -0.00230283 2.01871 -0.00357762 2.02405 -0.00532643 2.03153 -0.00748144 2.04141 -0.00987091 2.05366 -0.0122631 2.06802 -0.014377 2.08382 -0.0158902 2.09982 -0.0164231 2.11325 -0.0154744 2.12002 -0.01491 2.1222 -0.012502 2.12432 -0.00853811 2.12657 -0.00485959 2.12758 -0.00139482 2.12869 0.00125701 2.13213 0.00835802 2.13303 0.00994842 2.12712 0.0126812 2.11529 0.0150175 2.09949 0.0167303 2.08145 0.0180729 2.06205 0.0181808 2.04263 0.0175957 2.02465 0.0168899 2.00864 0.0153932 1.9948 0.0135131 1.9832 0.0114383 1.97376 0.00934754 1.96633 0.00738604 1.96065 0.00565154 1.95644 0.00419442 1.95341 0.00302356 1.95128 0.00212001 1.94982 0.00144759 1.94885 0.000963668 1.94822 0.000626057 1.94782 0.000397286 1.94756 0.000246471 1.94741 0.000149613 1.94732 8.89414e-05 1.94726 5.18359e-05 1.94723 2.9665e-05 1.94721 1.67079e-05 1.9472 9.29255e-06 1.94719 5.13842e-06 1.94719 2.85769e-06 1.94719 1.63079e-06 1.94719 9.8196e-07 1.94719 6.43653e-07 1.94718 4.75549e-07 1.94718 3.88602e-07 1.94718 3.46772e-07 1.94719 3.26174e-07 1.94719 3.17345e-07 1.94719 3.10316e-07 1.94719 3.11105e-07 1.94719 3.09541e-07 1.94719 3.08453e-07 1.94719 3.09003e-07 1.94719 3.07838e-07 1.94719 3.07031e-07 1.94719 3.09381e-07 1.94719 3.08297e-07 1.94719 3.08606e-07 1.94719 3.07911e-07 1.94719 3.09141e-07 1.94718 3.09235e-07 1.94718 3.08984e-07 1.94717 3.09697e-07 1.94717 3.10341e-07 1.94716 3.11185e-07 1.94715 3.12284e-07 1.94714 3.13597e-07 1.94713 3.15311e-07 1.94711 3.1729e-07 1.94709 3.19647e-07 1.94707 3.22456e-07 1.94704 3.25748e-07 1.94701 3.29619e-07 1.94697 3.34116e-07 1.94693 3.39274e-07 1.94688 3.45179e-07 1.94682 3.51905e-07 1.94675 3.59541e-07 1.94667 3.68153e-07 1.94658 3.77753e-07 1.94648 3.88402e-07 1.94636 4.00138e-07 1.94623 4.12983e-07 1.94608 4.26902e-07 1.94591 4.41898e-07 1.94572 4.57927e-07 1.94551 4.74898e-07 1.94528 4.92684e-07 1.94503 5.1114e-07 1.94475 5.30068e-07 1.94444 5.49204e-07 1.94411 5.68278e-07 1.94376 5.87006e-07 1.94338 6.04981e-07 1.94297 6.21767e-07 1.94254 6.36806e-07 1.94209 6.49678e-07 1.94162 6.59966e-07 1.94114 6.67329e-07 1.94064 6.71327e-07 1.94013 6.71524e-07 1.93961 6.67547e-07 1.93909 6.59074e-07 1.93858 6.45774e-07 1.93808 6.27446e-07 1.93759 6.03923e-07 1.93712 5.75052e-07 1.93667 5.40887e-07 1.93626 5.0155e-07 1.93589 4.57396e-07 1.93555 4.08898e-07 1.93526 3.56544e-07 1.93503 3.01065e-07 1.93484 2.43268e-07 1.93471 1.84078e-07 1.93464 1.2435e-07 1.93463 6.97109e-08 1.93467 3.43098e-08 1.93476 -4.15421e-08 1.93491 -1.01918e-07 1.93511 -1.49848e-07 1.93537 -1.95145e-07 1.93566 -2.37411e-07 1.936 -2.72183e-07 1.93637 -3.00806e-07 1.93677 -3.23143e-07 1.93719 -3.38616e-07 1.93763 -3.47143e-07 1.93808 -3.48853e-07 1.93853 -3.43727e-07 1.93898 -3.33042e-07 1.93942 -3.16639e-07 1.93985 -2.94542e-07 1.94026 -2.68337e-07 1.94064 -2.3852e-07 1.94101 -2.0575e-07 1.94134 -1.70756e-07 1.94165 -1.34292e-07 1.94192 -9.68685e-08 1.94217 -5.99575e-08 1.94238 -2.3334e-08 1.94257 1.238e-08 1.94272 4.64461e-08 1.94285 7.8453e-08 1.94295 1.08157e-07 1.94303 1.35369e-07 1.94309 1.59998e-07 1.94312 1.81273e-07 1.94314 1.99932e-07 1.94315 2.14535e-07 1.94314 2.24842e-07 1.94312 2.37695e-07 1.9431 2.47772e-07 1.94307 2.54277e-07 1.94303 2.59544e-07 1.94299 2.62811e-07 1.94295 2.64532e-07 1.94291 2.64936e-07 1.94286 2.64201e-07 1.94282 2.62917e-07 1.94278 2.60479e-07 1.94275 2.57292e-07 1.94271 2.53767e-07 1.94268 2.49664e-07 1.94265 2.45829e-07 1.94262 2.40914e-07 1.9426 2.37258e-07 1.94258 2.32892e-07 1.94256 2.30233e-07 1.94255 2.27119e-07 1.94253 2.23499e-07 1.94253 2.19054e-07 1.94252 2.09668e-07 1.94251 1.94534e-07 1.94251 2.95295e-08 1.94251 -2.94345e-07 1.94251 -1.89482e-06 1.94252 -7.50758e-06 1.94255 -2.87454e-05 1.94266 -0.000108476 1.94308 -0.000408343 1.94462 -0.00153847 1.95049 -0.00586559 1.97412 -0.0236207 2.10961 -0.135491 -0.385172 2.49479 2.27248 -0.354597 2.33455 -0.121697 2.35811 -0.045689 2.36664 -0.0162215 2.37009 -0.00646283 2.37169 -0.00305828 2.3731 -0.00296976 2.37489 -0.00408922 2.37761 -0.00628877 2.38174 -0.00945829 2.38784 -0.0135693 2.39635 -0.018349 2.40753 -0.0233449 2.4213 -0.0280662 2.43721 -0.0317681 2.4545 -0.033707 2.47206 -0.0330607 2.48828 -0.0313941 2.50133 -0.0267767 2.50997 -0.0198742 2.51455 -0.0115502 2.51499 -0.00308825 2.5111 0.0047359 2.50308 0.0164622 2.49159 0.0226363 2.47727 0.0298413 2.45942 0.0348492 2.43846 0.038782 2.41558 0.0413906 2.39203 0.0418081 2.369 0.0406081 2.34737 0.0384173 2.32786 0.0347786 2.31093 0.0303648 2.29675 0.0255662 2.28527 0.0207945 2.27627 0.0163635 2.26943 0.0124765 2.26438 0.00923184 2.26075 0.00663794 2.25821 0.00464444 2.25648 0.00316577 2.25534 0.00210441 2.25459 0.0013655 2.25411 0.000865642 2.25382 0.000536539 2.25364 0.000325391 2.25353 0.000193226 2.25346 0.00011244 2.25343 6.41857e-05 2.2534 3.59907e-05 2.25339 1.9856e-05 2.25338 1.08169e-05 2.25338 5.85394e-06 2.25337 3.18103e-06 2.25337 1.77033e-06 2.25337 1.03539e-06 2.25337 6.65463e-07 2.25337 4.77456e-07 2.25337 3.85793e-07 2.25337 3.41166e-07 2.25337 3.20764e-07 2.25337 3.08497e-07 2.25337 3.06653e-07 2.25337 3.04015e-07 2.25337 3.02432e-07 2.25338 3.0272e-07 2.25338 3.01501e-07 2.25338 3.00686e-07 2.25338 3.02909e-07 2.25338 3.01869e-07 2.25337 3.02145e-07 2.25337 3.01552e-07 2.25337 3.02633e-07 2.25337 3.02764e-07 2.25336 3.02545e-07 2.25336 3.03189e-07 2.25335 3.03844e-07 2.25334 3.04663e-07 2.25333 3.05736e-07 2.25331 3.0702e-07 2.2533 3.0869e-07 2.25328 3.10603e-07 2.25326 3.12913e-07 2.25323 3.15657e-07 2.2532 3.18851e-07 2.25316 3.22649e-07 2.25312 3.27018e-07 2.25307 3.32046e-07 2.25301 3.37819e-07 2.25294 3.44364e-07 2.25287 3.51818e-07 2.25278 3.60222e-07 2.25267 3.69579e-07 2.25255 3.79972e-07 2.25242 3.91425e-07 2.25227 4.03954e-07 2.2521 4.17524e-07 2.2519 4.32163e-07 2.25169 4.47795e-07 2.25145 4.64344e-07 2.25118 4.81694e-07 2.25089 4.99702e-07 2.25057 5.18161e-07 2.25022 5.36831e-07 2.24984 5.55447e-07 2.24943 5.73709e-07 2.24899 5.91241e-07 2.24853 6.07608e-07 2.24804 6.22273e-07 2.24752 6.3482e-07 2.24698 6.44846e-07 2.24642 6.52039e-07 2.24585 6.55949e-07 2.24526 6.56149e-07 2.24467 6.52286e-07 2.24407 6.4405e-07 2.24349 6.31095e-07 2.24291 6.13214e-07 2.24234 5.90269e-07 2.24181 5.62108e-07 2.2413 5.28784e-07 2.24082 4.904e-07 2.24039 4.47326e-07 2.24001 4.00018e-07 2.23968 3.48962e-07 2.2394 2.94862e-07 2.23919 2.38506e-07 2.23904 1.80808e-07 2.23896 1.22611e-07 2.23894 6.93472e-08 2.23899 3.46336e-08 2.2391 -3.88209e-08 2.23927 -9.7989e-08 2.2395 -1.44631e-07 2.23979 -1.88771e-07 2.24013 -2.29946e-07 2.24051 -2.63881e-07 2.24094 -2.91755e-07 2.2414 -3.13517e-07 2.24188 -3.28608e-07 2.24239 -3.36928e-07 2.2429 -3.3859e-07 2.24342 -3.33603e-07 2.24393 -3.23216e-07 2.24444 -3.0726e-07 2.24493 -2.85745e-07 2.24539 -2.60217e-07 2.24584 -2.31186e-07 2.24625 -1.99267e-07 2.24664 -1.65193e-07 2.24699 -1.29668e-07 2.24731 -9.32159e-08 2.24759 -5.72581e-08 2.24783 -2.16023e-08 2.24804 1.31986e-08 2.24822 4.63879e-08 2.24837 7.75872e-08 2.24849 1.06538e-07 2.24857 1.33066e-07 2.24864 1.57055e-07 2.24868 1.77795e-07 2.2487 1.9596e-07 2.24871 2.10224e-07 2.2487 2.20247e-07 2.24868 2.32791e-07 2.24865 2.42653e-07 2.24862 2.49001e-07 2.24857 2.54138e-07 2.24853 2.57332e-07 2.24848 2.58988e-07 2.24843 2.59384e-07 2.24838 2.58668e-07 2.24833 2.57383e-07 2.24829 2.55004e-07 2.24824 2.51799e-07 2.2482 2.48467e-07 2.24817 2.44268e-07 2.24813 2.41085e-07 2.2481 2.35454e-07 2.24807 2.32409e-07 2.24805 2.27443e-07 2.24803 2.25606e-07 2.24801 2.22382e-07 2.248 2.17937e-07 2.24799 2.11392e-07 2.24798 1.93504e-07 2.24797 1.66045e-07 2.24797 -1.86406e-07 2.24797 -8.63878e-07 2.24797 -4.26269e-06 2.24798 -1.61618e-05 2.24802 -6.12048e-05 2.24814 -0.000230312 2.2486 -0.000866335 2.25033 -0.00326369 2.25692 -0.0124484 2.28326 -0.049956 2.42976 -0.281981 -0.801275 2.84586 2.57187 -0.577988 2.64516 -0.194978 2.67314 -0.0736616 2.68349 -0.0265644 2.68775 -0.0107034 2.68987 -0.00516581 2.69192 -0.00500442 2.69465 -0.00681235 2.69867 -0.0103033 2.70458 -0.0153527 2.7129 -0.0218771 2.72402 -0.0294257 2.73805 -0.0373374 2.75479 -0.0447736 2.77368 -0.0506133 2.79384 -0.053755 2.81422 -0.0530978 2.83339 -0.0497263 2.84976 -0.0424934 2.86186 -0.0316445 2.86911 -0.0187344 2.87113 -0.00518195 2.86739 0.00772894 2.85825 0.0237282 2.84464 0.0350037 2.82781 0.0461422 2.80795 0.0545813 2.7857 0.061026 2.76208 0.0653367 2.73799 0.0665972 2.71415 0.0649135 2.69143 0.061415 2.67065 0.055703 2.65238 0.0486962 2.63691 0.0410524 2.62428 0.033429 2.61429 0.0263347 2.60666 0.0201012 2.60098 0.0148876 2.59689 0.0107167 2.59402 0.00750624 2.59205 0.00512195 2.59073 0.00340844 2.58988 0.00221406 2.58933 0.00140508 2.58899 0.000871806 2.58878 0.000529245 2.58865 0.000314561 2.58858 0.000183173 2.58853 0.000104599 2.58851 5.86313e-05 2.58849 3.22939e-05 2.58848 1.75208e-05 2.58848 9.4001e-06 2.58847 5.01968e-06 2.58847 2.70688e-06 2.58847 1.50092e-06 2.58847 8.9073e-07 2.58847 5.82073e-07 2.58847 4.30797e-07 2.58847 3.5733e-07 2.58847 3.23043e-07 2.58847 3.04439e-07 2.58847 2.99444e-07 2.58847 2.95508e-07 2.58847 2.93325e-07 2.58847 2.93303e-07 2.58847 2.92008e-07 2.58847 2.91195e-07 2.58847 2.93267e-07 2.58847 2.92275e-07 2.58847 2.92517e-07 2.58847 2.92017e-07 2.58847 2.92965e-07 2.58846 2.93128e-07 2.58846 2.92946e-07 2.58845 2.93523e-07 2.58844 2.94182e-07 2.58843 2.94976e-07 2.58842 2.96013e-07 2.5884 2.97263e-07 2.58838 2.98882e-07 2.58836 3.00719e-07 2.58834 3.0296e-07 2.58831 3.05619e-07 2.58827 3.08712e-07 2.58823 3.12399e-07 2.58818 3.16621e-07 2.58812 3.21492e-07 2.58805 3.2708e-07 2.58798 3.3343e-07 2.58789 3.40646e-07 2.58778 3.4878e-07 2.58767 3.57837e-07 2.58753 3.67909e-07 2.58738 3.7899e-07 2.5872 3.91123e-07 2.587 4.04265e-07 2.58678 4.18442e-07 2.58653 4.33572e-07 2.58626 4.49601e-07 2.58595 4.66396e-07 2.58562 4.83831e-07 2.58525 5.01699e-07 2.58485 5.19773e-07 2.58441 5.37795e-07 2.58394 5.55474e-07 2.58344 5.72438e-07 2.5829 5.88278e-07 2.58234 6.02467e-07 2.58175 6.14602e-07 2.58113 6.24314e-07 2.58048 6.31268e-07 2.57982 6.35035e-07 2.57915 6.35224e-07 2.57847 6.31477e-07 2.57779 6.23493e-07 2.57711 6.10942e-07 2.57645 5.93625e-07 2.5758 5.71401e-07 2.57518 5.44132e-07 2.5746 5.11855e-07 2.57405 4.74694e-07 2.57356 4.32992e-07 2.57312 3.87183e-07 2.57274 3.37757e-07 2.57242 2.85381e-07 2.57218 2.30822e-07 2.57201 1.74981e-07 2.57191 1.18671e-07 2.57189 6.7108e-08 2.57195 3.3262e-08 2.57207 -3.72565e-08 2.57227 -9.49476e-08 2.57253 -1.4e-07 2.57287 -1.8271e-07 2.57326 -2.22541e-07 2.5737 -2.55421e-07 2.57419 -2.82369e-07 2.57472 -3.03427e-07 2.57527 -3.18028e-07 2.57585 -3.26065e-07 2.57644 -3.27675e-07 2.57703 -3.22842e-07 2.57762 -3.12781e-07 2.5782 -2.97337e-07 2.57877 -2.76515e-07 2.57931 -2.5179e-07 2.57982 -2.23692e-07 2.58029 -1.92809e-07 2.58074 -1.59824e-07 2.58114 -1.25441e-07 2.5815 -9.01709e-08 2.58183 -5.53555e-08 2.58211 -2.08693e-08 2.58235 1.28239e-08 2.58255 4.49363e-08 2.58272 7.51334e-08 2.58286 1.03146e-07 2.58296 1.28826e-07 2.58303 1.52024e-07 2.58308 1.72109e-07 2.58311 1.8967e-07 2.58311 2.03501e-07 2.5831 2.1316e-07 2.58308 2.25311e-07 2.58305 2.34888e-07 2.58301 2.4102e-07 2.58296 2.4598e-07 2.5829 2.4908e-07 2.58285 2.50668e-07 2.58279 2.51075e-07 2.58274 2.50388e-07 2.58268 2.49131e-07 2.58263 2.46864e-07 2.58258 2.43688e-07 2.58253 2.40621e-07 2.58249 2.36354e-07 2.58245 2.3396e-07 2.58241 2.2751e-07 2.58238 2.25184e-07 2.58236 2.19508e-07 2.58233 2.1859e-07 2.58231 2.15226e-07 2.5823 2.09808e-07 2.58228 2.00896e-07 2.58228 1.74105e-07 2.58227 1.30802e-07 2.58226 -4.32165e-07 2.58226 -1.51846e-06 2.58226 -6.9724e-06 2.58228 -2.60676e-05 2.58232 -9.83606e-05 2.58246 -0.00036977 2.58299 -0.0013906 2.58497 -0.00523902 2.59252 -0.0199915 2.62258 -0.0800147 2.78282 -0.442214 -1.25276 3.23432 2.98715 -0.813142 3.0652 -0.273017 3.09495 -0.103411 3.10587 -0.0374656 3.11019 -0.0150025 3.11203 -0.00699006 3.11361 -0.00657842 3.11563 -0.00882408 3.11881 -0.0134631 3.1237 -0.020236 3.13098 -0.0291251 3.14116 -0.0395689 3.15454 -0.0506909 3.17109 -0.0613201 3.19039 -0.0698993 3.21154 -0.0748689 3.23337 -0.0747768 3.25465 -0.0703217 3.27391 -0.0602155 3.28879 -0.0454217 3.29789 -0.027307 3.30051 -0.00768496 3.29654 0.0115605 3.28576 0.0332859 3.26875 0.0497429 3.24774 0.0657214 3.22363 0.0780127 3.19724 0.0872521 3.16947 0.0931319 3.14148 0.0950418 3.11421 0.0927261 3.08843 0.0875085 3.06499 0.079314 3.04447 0.0692882 3.02717 0.0583838 3.01307 0.0475251 3.00196 0.0374303 2.99348 0.0285668 2.98719 0.0211549 2.98266 0.015229 2.97949 0.0106677 2.97732 0.00728026 2.97587 0.00484567 2.97492 0.00314842 2.97432 0.0019986 2.97395 0.00124044 2.97372 0.000753265 2.97358 0.000447839 2.97349 0.000260841 2.97344 0.000148962 2.97342 8.34794e-05 2.9734 4.59425e-05 2.97339 2.48766e-05 2.97338 1.32907e-05 2.97338 7.03682e-06 2.97337 3.73414e-06 2.97337 2.01141e-06 2.97337 1.13753e-06 2.97337 6.96449e-07 2.97337 4.79733e-07 2.97337 3.74599e-07 2.97337 3.2507e-07 2.97337 2.99506e-07 2.97338 2.91036e-07 2.97338 2.85663e-07 2.97338 2.82833e-07 2.97338 2.8248e-07 2.97338 2.81092e-07 2.97338 2.80277e-07 2.97338 2.82185e-07 2.97338 2.81258e-07 2.97338 2.81456e-07 2.97337 2.81059e-07 2.97337 2.81869e-07 2.97337 2.82054e-07 2.97336 2.81916e-07 2.97335 2.82425e-07 2.97334 2.8308e-07 2.97333 2.83846e-07 2.97332 2.84836e-07 2.9733 2.86045e-07 2.97328 2.87611e-07 2.97325 2.89359e-07 2.97322 2.91531e-07 2.97319 2.94092e-07 2.97315 2.97061e-07 2.9731 3.00613e-07 2.97304 3.04672e-07 2.97298 3.09363e-07 2.9729 3.14742e-07 2.97281 3.20855e-07 2.97271 3.27798e-07 2.97259 3.35631e-07 2.97245 3.44347e-07 2.97229 3.54039e-07 2.97212 3.64706e-07 2.97192 3.7638e-07 2.97169 3.89033e-07 2.97143 4.02672e-07 2.97115 4.17225e-07 2.97083 4.32652e-07 2.97048 4.48816e-07 2.9701 4.65585e-07 2.96967 4.82778e-07 2.96921 5.00168e-07 2.96871 5.17501e-07 2.96817 5.34514e-07 2.9676 5.5083e-07 2.96698 5.66066e-07 2.96633 5.79712e-07 2.96565 5.91386e-07 2.96494 6.00729e-07 2.9642 6.0741e-07 2.96344 6.11024e-07 2.96267 6.11204e-07 2.96189 6.07588e-07 2.96111 5.99901e-07 2.96033 5.8781e-07 2.95957 5.71144e-07 2.95882 5.49751e-07 2.95811 5.23507e-07 2.95744 4.92442e-07 2.95681 4.56674e-07 2.95624 4.1655e-07 2.95574 3.72473e-07 2.9553 3.24917e-07 2.95494 2.74527e-07 2.95466 2.22026e-07 2.95446 1.68306e-07 2.95435 1.14167e-07 2.95433 6.45414e-08 2.9544 3.17032e-08 2.95454 -3.5463e-08 2.95476 -9.14661e-08 2.95507 -1.34685e-07 2.95545 -1.75773e-07 2.9559 -2.14051e-07 2.95641 -2.45725e-07 2.95697 -2.71622e-07 2.95758 -2.91866e-07 2.95822 -3.05907e-07 2.95888 -3.13636e-07 2.95956 -3.15178e-07 2.96024 -3.10529e-07 2.96092 -3.00843e-07 2.96158 -2.85989e-07 2.96223 -2.6596e-07 2.96285 -2.42162e-07 2.96343 -2.15128e-07 2.96398 -1.85422e-07 2.96449 -1.53692e-07 2.96495 -1.20617e-07 2.96537 -8.66967e-08 2.96574 -5.31945e-08 2.96607 -2.00343e-08 2.96635 1.23582e-08 2.96658 4.32665e-08 2.96677 7.23157e-08 2.96693 9.92459e-08 2.96704 1.2395e-07 2.96713 1.46265e-07 2.96718 1.65584e-07 2.96721 1.82454e-07 2.96722 1.95791e-07 2.96721 2.05053e-07 2.96718 2.16736e-07 2.96715 2.25975e-07 2.9671 2.31876e-07 2.96704 2.36631e-07 2.96698 2.3961e-07 2.96692 2.41138e-07 2.96685 2.41544e-07 2.96679 2.40887e-07 2.96672 2.39666e-07 2.96666 2.37524e-07 2.96661 2.3439e-07 2.96655 2.31623e-07 2.9665 2.27274e-07 2.96646 2.25788e-07 2.96642 2.18381e-07 2.96638 2.16891e-07 2.96635 2.10395e-07 2.96633 2.10528e-07 2.9663 2.07001e-07 2.96628 2.00482e-07 2.96627 1.88871e-07 2.96626 1.52879e-07 2.96625 8.83956e-08 2.96625 -7.10015e-07 2.96624 -2.26863e-06 2.96625 -1.0064e-05 2.96626 -3.73726e-05 2.96631 -0.00014077 2.96647 -0.00052893 2.96707 -0.00198893 2.96934 -0.00749353 2.97795 -0.0286002 3.01206 -0.11412 3.18386 -0.614007 -1.7368 3.66791 3.41216 -1.09075 3.50153 -0.362375 3.53601 -0.137884 3.54938 -0.0508109 3.55483 -0.0204403 3.5574 -0.00954601 3.55962 -0.00877936 3.56236 -0.0115495 3.56622 -0.0173163 3.57194 -0.0259269 3.58016 -0.0373117 3.59143 -0.050812 3.60607 -0.0653145 3.62407 -0.0793144 3.64498 -0.0908025 3.66787 -0.0977353 3.69152 -0.0982808 3.71465 -0.0927357 3.73581 -0.0795641 3.75241 -0.0606768 3.76293 -0.0371551 3.76674 -0.0113345 3.76353 0.0146674 3.75307 0.0425452 3.73575 0.0647476 3.71379 0.0861703 3.68817 0.102882 3.65979 0.115381 3.62969 0.123223 3.59912 0.125828 3.56928 0.123019 3.54113 0.115946 3.51552 0.105062 3.49313 0.0917484 3.47423 0.0772878 3.45885 0.0629001 3.44673 0.049534 3.43748 0.0378015 3.43061 0.0279948 3.42567 0.0201553 3.4222 0.014121 3.41983 0.0096392 3.41824 0.00641753 3.41721 0.00417102 3.41655 0.00264865 3.41614 0.00164449 3.41588 0.000998991 3.41573 0.000594142 3.41564 0.000346165 3.41558 0.000197735 3.41555 0.000110819 3.41553 6.09707e-05 3.41552 3.29818e-05 3.41551 1.75807e-05 3.41551 9.26251e-06 3.41551 4.86819e-06 3.4155 2.57516e-06 3.4155 1.41003e-06 3.4155 8.22592e-07 3.4155 5.33495e-07 3.4155 3.933e-07 3.41551 3.26881e-07 3.41551 2.93599e-07 3.41551 2.8129e-07 3.41551 2.74315e-07 3.41551 2.70764e-07 3.41551 2.70031e-07 3.41551 2.6855e-07 3.41551 2.67735e-07 3.41551 2.69458e-07 3.41551 2.68597e-07 3.41551 2.68756e-07 3.41551 2.68459e-07 3.4155 2.69127e-07 3.4155 2.69338e-07 3.41549 2.69232e-07 3.41548 2.69685e-07 3.41547 2.70331e-07 3.41546 2.71057e-07 3.41544 2.72001e-07 3.41542 2.73161e-07 3.41539 2.7466e-07 3.41537 2.76317e-07 3.41533 2.78398e-07 3.41529 2.80839e-07 3.41524 2.83677e-07 3.41519 2.8708e-07 3.41512 2.90942e-07 3.41505 2.95428e-07 3.41496 3.00568e-07 3.41486 3.06411e-07 3.41474 3.13035e-07 3.4146 3.2052e-07 3.41444 3.28844e-07 3.41427 3.38097e-07 3.41406 3.48289e-07 3.41383 3.5944e-07 3.41357 3.71519e-07 3.41328 3.8454e-07 3.41295 3.98441e-07 3.41259 4.13173e-07 3.41218 4.28608e-07 3.41174 4.44623e-07 3.41125 4.61041e-07 3.41072 4.77641e-07 3.41015 4.94192e-07 3.40953 5.10436e-07 3.40887 5.26006e-07 3.40816 5.40556e-07 3.40742 5.5358e-07 3.40663 5.64723e-07 3.40582 5.73647e-07 3.40497 5.80012e-07 3.4041 5.83457e-07 3.40321 5.83623e-07 3.40231 5.80163e-07 3.40141 5.72814e-07 3.40052 5.61267e-07 3.39964 5.45344e-07 3.39879 5.24902e-07 3.39797 4.99846e-07 3.3972 4.70171e-07 3.39648 4.36008e-07 3.39583 3.97695e-07 3.39525 3.55607e-07 3.39475 3.10194e-07 3.39433 2.62076e-07 3.39401 2.1195e-07 3.39378 1.60664e-07 3.39366 1.09007e-07 3.39363 6.16128e-08 3.39371 2.99569e-08 3.39387 -3.34912e-08 3.39413 -8.74606e-08 3.39448 -1.28588e-07 3.39492 -1.67813e-07 3.39543 -2.04323e-07 3.39602 -2.34608e-07 3.39666 -2.59302e-07 3.39736 -2.78618e-07 3.39809 -2.92024e-07 3.39885 -2.99398e-07 3.39963 -3.00859e-07 3.40042 -2.96423e-07 3.4012 -2.87164e-07 3.40196 -2.72996e-07 3.4027 -2.53869e-07 3.40341 -2.31143e-07 3.40409 -2.05338e-07 3.40472 -1.76973e-07 3.4053 -1.46681e-07 3.40583 -1.15098e-07 3.40631 -8.27258e-08 3.40674 -5.07316e-08 3.40711 -1.91012e-08 3.40743 1.18471e-08 3.4077 4.13384e-08 3.40792 6.90652e-08 3.4081 9.47748e-08 3.40823 1.18356e-07 3.40833 1.39649e-07 3.40839 1.58103e-07 3.40843 1.74185e-07 3.40844 1.86941e-07 3.40842 1.9576e-07 3.4084 2.06901e-07 3.40835 2.15754e-07 3.4083 2.21382e-07 3.40823 2.25909e-07 3.40816 2.28758e-07 3.40809 2.30211e-07 3.40801 2.30617e-07 3.40794 2.29997e-07 3.40787 2.28818e-07 3.4078 2.26812e-07 3.40773 2.23716e-07 3.40767 2.21296e-07 3.40761 2.16851e-07 3.40756 2.16412e-07 3.40752 2.07894e-07 3.40748 2.07379e-07 3.40744 1.99934e-07 3.40741 2.01295e-07 3.40738 1.97562e-07 3.40736 1.89782e-07 3.40735 1.75109e-07 3.40733 1.28264e-07 3.40732 3.72147e-08 3.40732 -1.02081e-06 3.40732 -3.12506e-06 3.40732 -1.35763e-05 3.40733 -5.02203e-05 3.40739 -0.000188974 3.40757 -0.000709802 3.40826 -0.00266883 3.41083 -0.0100549 3.42061 -0.0383694 3.45898 -0.152486 3.63788 -0.792903 -2.24618 4.14727 3.93804 -1.38458 4.03305 -0.457376 4.06928 -0.174105 4.08274 -0.0642477 4.08801 -0.0256884 4.08991 -0.01143 4.09136 -0.0102135 4.09306 -0.0132373 4.09591 -0.0201508 4.10049 -0.0304794 4.10757 -0.0443565 4.1178 -0.0610201 4.13166 -0.0791537 4.14926 -0.0969099 4.17023 -0.111776 4.19367 -0.121159 4.21829 -0.12278 4.2427 -0.116508 4.26543 -0.100476 4.28373 -0.0775337 4.29573 -0.0483899 4.30033 -0.0157378 4.2974 0.0175406 4.28657 0.0523196 4.26823 0.0808838 4.24467 0.108274 4.21697 0.129826 4.18622 0.14586 4.15359 0.15582 4.12043 0.159094 4.08811 0.155654 4.05772 0.14654 4.03018 0.132701 4.00615 0.115808 3.98594 0.0974988 3.96951 0.0793102 3.95659 0.0624338 3.94673 0.0476286 3.93944 0.0352686 3.93418 0.0253889 3.9305 0.0177872 3.92798 0.0121423 3.9263 0.00808484 3.9252 0.00525545 3.9245 0.00333789 3.92406 0.00207287 3.92379 0.00125952 3.92363 0.000749275 3.92353 0.000436653 3.92347 0.000249471 3.92344 0.000139828 3.92342 7.69215e-05 3.9234 4.15874e-05 3.9234 2.21371e-05 3.92339 1.1627e-05 3.92339 6.07303e-06 3.92339 3.17394e-06 3.92339 1.69908e-06 3.92339 9.55914e-07 3.92339 5.8976e-07 3.92339 4.12201e-07 3.92339 3.27794e-07 3.92339 2.86273e-07 3.92339 2.69865e-07 3.92339 2.61171e-07 3.92339 2.56843e-07 3.92339 2.55715e-07 3.92339 2.54133e-07 3.9234 2.53312e-07 3.9234 2.54844e-07 3.92339 2.54056e-07 3.92339 2.54172e-07 3.92339 2.53978e-07 3.92338 2.54503e-07 3.92338 2.54729e-07 3.92337 2.54662e-07 3.92336 2.55054e-07 3.92335 2.55683e-07 3.92333 2.56366e-07 3.92331 2.57254e-07 3.92329 2.58356e-07 3.92326 2.59779e-07 3.92323 2.61337e-07 3.92319 2.6331e-07 3.92314 2.65622e-07 3.92309 2.68303e-07 3.92302 2.71528e-07 3.92295 2.75171e-07 3.92286 2.79419e-07 3.92276 2.84283e-07 3.92264 2.8981e-07 3.92251 2.96075e-07 3.92235 3.0316e-07 3.92217 3.11029e-07 3.92196 3.19781e-07 3.92173 3.2942e-07 3.92146 3.39966e-07 3.92117 3.51395e-07 3.92083 3.63708e-07 3.92045 3.76852e-07 3.92004 3.90791e-07 3.91957 4.05386e-07 3.91906 4.20533e-07 3.9185 4.3606e-07 3.91789 4.51758e-07 3.91724 4.67413e-07 3.91652 4.82772e-07 3.91576 4.97495e-07 3.91495 5.11256e-07 3.9141 5.23568e-07 3.9132 5.34104e-07 3.91226 5.42543e-07 3.91129 5.48558e-07 3.91029 5.51809e-07 3.90927 5.51963e-07 3.90823 5.48688e-07 3.9072 5.41731e-07 3.90617 5.30807e-07 3.90517 5.15742e-07 3.90419 4.96407e-07 3.90325 4.72704e-07 3.90236 4.44631e-07 3.90154 4.12323e-07 3.90079 3.7609e-07 3.90012 3.36279e-07 3.89954 2.93333e-07 3.89906 2.47822e-07 3.89869 2.0042e-07 3.89844 1.51923e-07 3.89829 1.03105e-07 3.89826 5.82704e-08 3.89835 2.79961e-08 3.89853 -3.12284e-08 3.89883 -8.28522e-08 3.89923 -1.21607e-07 3.89974 -1.58693e-07 3.90033 -1.93193e-07 3.901 -2.21869e-07 3.90174 -2.45199e-07 3.90254 -2.63454e-07 3.90339 -2.76127e-07 3.90426 -2.831e-07 3.90515 -2.84475e-07 3.90606 -2.80283e-07 3.90695 -2.71522e-07 3.90783 -2.58131e-07 3.90868 -2.40044e-07 3.9095 -2.18544e-07 3.91027 -1.94142e-07 3.911 -1.67323e-07 3.91167 -1.38676e-07 3.91228 -1.08811e-07 3.91283 -7.82065e-08 3.91332 -4.79404e-08 3.91375 -1.80507e-08 3.91411 1.12614e-08 3.91442 3.9111e-08 3.91468 6.53281e-08 3.91488 8.9638e-08 3.91503 1.11934e-07 3.91515 1.32065e-07 3.91522 1.49522e-07 3.91526 1.64706e-07 3.91527 1.76798e-07 3.91525 1.85119e-07 3.91522 1.95635e-07 3.91517 2.04047e-07 3.91511 2.09358e-07 3.91503 2.13629e-07 3.91495 2.16326e-07 3.91487 2.1769e-07 3.91478 2.18089e-07 3.9147 2.1751e-07 3.91461 2.16372e-07 3.91453 2.14528e-07 3.91446 2.11479e-07 3.91439 2.09452e-07 3.91432 2.04896e-07 3.91426 2.05667e-07 3.91421 1.95847e-07 3.91416 1.96471e-07 3.91412 1.87913e-07 3.91409 1.90698e-07 3.91406 1.86727e-07 3.91403 1.77523e-07 3.91401 1.59387e-07 3.914 1.00117e-07 3.91399 -2.62444e-08 3.91398 -1.36383e-06 3.91398 -4.09868e-06 3.91398 -1.75418e-05 3.914 -6.47339e-05 3.91406 -0.000243439 3.91427 -0.000914096 3.91505 -0.00343656 3.91794 -0.0129441 3.92892 -0.0493403 3.97143 -0.194979 4.14706 -0.968532 -2.76443 4.66532 17.0495 -2.55683 17.4369 -0.84472 17.59 -0.327146 17.6624 -0.136607 17.6942 -0.0574167 17.7123 -0.0294593 17.7274 -0.0251785 17.744 -0.0297748 17.7621 -0.0381781 17.7864 -0.0546526 17.8198 -0.0776264 17.865 -0.106138 17.9237 -0.137849 17.9962 -0.169392 18.0807 -0.196252 18.1732 -0.213654 18.2682 -0.217475 18.3591 -0.206001 18.4402 -0.176862 18.5022 -0.135415 18.5388 -0.0826864 18.5477 -0.0240141 18.5248 0.0402985 18.4732 0.101499 18.3941 0.154369 18.2963 0.202338 18.1845 0.239671 18.0636 0.26599 17.9386 0.280727 17.8143 0.283464 17.6956 0.274953 17.5859 0.25655 17.488 0.23072 17.4036 0.200247 17.3331 0.167918 17.2761 0.136235 17.2314 0.107064 17.1972 0.0816328 17.172 0.0604582 17.1537 0.0435499 17.1409 0.0305438 17.1321 0.0208793 17.1262 0.0139243 17.1223 0.00906686 17.1198 0.00576907 17.1183 0.00358936 17.1173 0.0021851 17.1167 0.00130235 17.1164 0.00076037 17.1161 0.000435192 17.116 0.000244315 17.1159 0.000134559 17.1159 7.27805e-05 17.1159 3.87011e-05 17.1158 2.02459e-05 17.1158 1.04734e-05 17.1158 5.36302e-06 17.1158 2.75396e-06 17.1158 1.4388e-06 17.1158 7.88772e-07 17.1158 4.73043e-07 17.1158 3.21974e-07 17.1158 2.49768e-07 17.1158 2.18115e-07 17.1158 2.02936e-07 17.1158 1.95724e-07 17.1159 1.93116e-07 17.1159 1.91178e-07 17.1159 1.90314e-07 17.1159 1.91147e-07 17.1159 1.90596e-07 17.1158 1.90607e-07 17.1158 1.90625e-07 17.1158 1.908e-07 17.1158 1.91018e-07 17.1157 1.91044e-07 17.1157 1.9126e-07 17.1156 1.91772e-07 17.1156 1.92279e-07 17.1155 1.92937e-07 17.1154 1.93774e-07 17.1153 1.94843e-07 17.1151 1.95985e-07 17.115 1.97481e-07 17.1148 1.99216e-07 17.1145 2.01225e-07 17.1142 2.03659e-07 17.1139 2.0637e-07 17.1135 2.09564e-07 17.1131 2.13214e-07 17.1126 2.1736e-07 17.112 2.22052e-07 17.1113 2.27374e-07 17.1105 2.33268e-07 17.1096 2.39838e-07 17.1086 2.47064e-07 17.1074 2.54974e-07 17.1061 2.63546e-07 17.1047 2.72785e-07 17.103 2.82638e-07 17.1012 2.93094e-07 17.0992 3.0404e-07 17.097 3.15396e-07 17.0945 3.27045e-07 17.0919 3.38818e-07 17.089 3.50559e-07 17.0859 3.62077e-07 17.0826 3.73107e-07 17.079 3.83435e-07 17.0753 3.92665e-07 17.0714 4.00568e-07 17.0673 4.06898e-07 17.063 4.1141e-07 17.0587 4.13845e-07 17.0542 4.13967e-07 17.0497 4.11505e-07 17.0452 4.06284e-07 17.0407 3.98099e-07 17.0363 3.86796e-07 17.0321 3.72291e-07 17.028 3.54515e-07 17.0241 3.33458e-07 17.0205 3.09233e-07 17.0172 2.82061e-07 17.0143 2.52206e-07 17.0118 2.20002e-07 17.0097 1.85875e-07 17.0081 1.50328e-07 17.007 1.13963e-07 17.0063 7.7438e-08 17.0062 4.37826e-08 17.0066 2.01485e-08 17.0074 -2.25855e-08 17.0087 -6.25669e-08 17.0105 -9.11796e-08 17.0126 -1.19019e-07 17.0152 -1.44832e-07 17.0182 -1.66425e-07 17.0214 -1.83906e-07 17.0249 -1.97572e-07 17.0286 -2.07087e-07 17.0324 -2.12297e-07 17.0363 -2.13323e-07 17.0402 -2.1019e-07 17.0441 -2.03609e-07 17.048 -1.93584e-07 17.0517 -1.80037e-07 17.0552 -1.63895e-07 17.0586 -1.45607e-07 17.0618 -1.25484e-07 17.0647 -1.03996e-07 17.0674 -8.15903e-08 17.0698 -5.86529e-08 17.0719 -3.59223e-08 17.0738 -1.34924e-08 17.0754 8.2091e-09 17.0767 2.93712e-08 17.0778 4.89918e-08 17.0787 6.72339e-08 17.0794 8.39523e-08 17.0799 9.90299e-08 17.0802 1.12145e-07 17.0804 1.23486e-07 17.0804 1.326e-07 17.0803 1.38868e-07 17.0802 1.46648e-07 17.08 1.53082e-07 17.0797 1.57058e-07 17.0794 1.60216e-07 17.079 1.62228e-07 17.0787 1.63259e-07 17.0783 1.63563e-07 17.0779 1.63167e-07 17.0775 1.62207e-07 17.0772 1.61062e-07 17.0769 1.5819e-07 17.0766 1.57829e-07 17.0763 1.52835e-07 17.076 1.58881e-07 17.0758 1.4326e-07 17.0756 1.49005e-07 17.0754 1.35491e-07 17.0753 1.44702e-07 17.0751 1.39519e-07 17.075 1.24443e-07 17.0749 9.218e-08 17.0749 -2.03472e-08 17.0748 -3.53961e-07 17.0748 -2.67455e-06 17.0748 -8.15086e-06 17.0748 -3.37415e-05 17.0749 -0.000124127 17.0751 -0.000466399 17.076 -0.00174939 17.0791 -0.00657205 17.0909 -0.0247008 17.1351 -0.0934432 17.3019 -0.361788 17.8861 -1.55268 -4.59035 19.7121 17.221 -3.48887 17.5666 -1.19029 17.6977 -0.458236 17.7279 -0.166704 17.7326 -0.0620748 17.7293 -0.0260322 17.7228 -0.0186105 17.7167 -0.0236396 17.7174 -0.0387588 17.7243 -0.0614757 17.7391 -0.0923938 17.7638 -0.130736 17.7999 -0.173825 17.8479 -0.21737 17.9068 -0.255199 17.9736 -0.280481 18.0433 -0.287162 18.1095 -0.271846 18.1664 -0.232152 18.2067 -0.172989 18.2237 -0.0979431 18.2129 -0.0127137 18.181 0.072298 18.1271 0.154749 18.0542 0.224709 17.9688 0.28579 17.8754 0.331935 17.7784 0.362381 17.682 0.377046 17.5893 0.376076 17.5034 0.36093 17.4262 0.333783 17.359 0.297947 17.3021 0.257029 17.2554 0.214501 17.2182 0.17337 17.1893 0.135874 17.1674 0.103387 17.1513 0.0764611 17.1398 0.0550243 17.1317 0.0385691 17.1261 0.0263578 17.1224 0.0175768 17.12 0.0114465 17.1184 0.007285 17.1174 0.00453413 17.1168 0.00276146 17.1164 0.00164669 17.1162 0.000961915 17.1161 0.000550863 17.116 0.000309434 17.1159 0.000170495 17.1159 9.22366e-05 17.1159 4.90335e-05 17.1158 2.56183e-05 17.1158 1.32084e-05 17.1158 6.71457e-06 17.1158 3.39408e-06 17.1158 1.71975e-06 17.1158 8.91132e-07 17.1158 4.88238e-07 17.1158 2.95069e-07 17.1158 2.03483e-07 17.1158 1.62087e-07 17.1158 1.4275e-07 17.1158 1.33757e-07 17.1159 1.30159e-07 17.1159 1.28063e-07 17.1159 1.27174e-07 17.1159 1.27498e-07 17.1159 1.27111e-07 17.1158 1.27077e-07 17.1158 1.27139e-07 17.1158 1.27173e-07 17.1158 1.27332e-07 17.1157 1.27382e-07 17.1157 1.27498e-07 17.1156 1.27854e-07 17.1156 1.2819e-07 17.1155 1.28625e-07 17.1154 1.29188e-07 17.1153 1.29897e-07 17.1151 1.30649e-07 17.115 1.31653e-07 17.1148 1.32809e-07 17.1145 1.34149e-07 17.1142 1.35777e-07 17.1139 1.37577e-07 17.1135 1.39709e-07 17.1131 1.42142e-07 17.1126 1.44906e-07 17.112 1.48031e-07 17.1113 1.51581e-07 17.1105 1.55511e-07 17.1096 1.59892e-07 17.1086 1.64709e-07 17.1074 1.69981e-07 17.1061 1.75697e-07 17.1047 1.81858e-07 17.103 1.88424e-07 17.1012 1.95395e-07 17.0992 2.02693e-07 17.097 2.10262e-07 17.0945 2.1803e-07 17.0919 2.25879e-07 17.089 2.33705e-07 17.0859 2.41383e-07 17.0826 2.48733e-07 17.079 2.55619e-07 17.0753 2.61773e-07 17.0714 2.67042e-07 17.0673 2.71264e-07 17.063 2.74272e-07 17.0587 2.75896e-07 17.0542 2.75978e-07 17.0497 2.74335e-07 17.0452 2.70855e-07 17.0407 2.65399e-07 17.0363 2.57865e-07 17.0321 2.48191e-07 17.028 2.36339e-07 17.0241 2.22299e-07 17.0205 2.06152e-07 17.0172 1.88038e-07 17.0143 1.68135e-07 17.0118 1.46666e-07 17.0097 1.23915e-07 17.0081 1.00219e-07 17.007 7.59796e-08 17.0063 5.16679e-08 17.0062 2.92252e-08 17.0066 1.29644e-08 17.0074 -1.43627e-08 17.0087 -4.19313e-08 17.0105 -6.07934e-08 17.0126 -7.9337e-08 17.0152 -9.65256e-08 17.0182 -1.10972e-07 17.0214 -1.22595e-07 17.0249 -1.31693e-07 17.0286 -1.38036e-07 17.0324 -1.41525e-07 17.0363 -1.42206e-07 17.0402 -1.40126e-07 17.0441 -1.35733e-07 17.048 -1.2906e-07 17.0517 -1.20027e-07 17.0552 -1.09256e-07 17.0586 -9.70613e-08 17.0618 -8.36535e-08 17.0647 -6.93294e-08 17.0674 -5.43932e-08 17.0698 -3.91115e-08 17.0719 -2.39511e-08 17.0738 -9.04129e-09 17.0754 5.64614e-09 17.0767 1.95564e-08 17.0778 3.26631e-08 17.0787 4.48213e-08 17.0794 5.5968e-08 17.0799 6.60038e-08 17.0802 7.47623e-08 17.0804 8.23079e-08 17.0804 8.84093e-08 17.0803 9.26084e-08 17.0802 9.77275e-08 17.08 1.02076e-07 17.0797 1.04723e-07 17.0794 1.06807e-07 17.079 1.08148e-07 17.0787 1.08837e-07 17.0783 1.09034e-07 17.0779 1.08822e-07 17.0775 1.08068e-07 17.0772 1.07597e-07 17.0769 1.04942e-07 17.0766 1.06123e-07 17.0763 1.00803e-07 17.076 1.11732e-07 17.0758 9.07107e-08 17.0756 1.01748e-07 17.0754 8.33338e-08 17.0753 9.88662e-08 17.0751 9.22582e-08 17.075 7.26131e-08 17.0749 2.93157e-08 17.0749 -1.28493e-07 17.0748 -6.85533e-07 17.0748 -3.62839e-06 17.0748 -1.15579e-05 17.0748 -4.64408e-05 17.0749 -0.000171166 17.075 -0.000643265 17.0757 -0.00240957 17.0782 -0.0090407 17.0874 -0.0338733 17.1211 -0.127024 17.2394 -0.480068 17.5641 -1.87733 -5.62698 18.6007 17.1339 -4.16189 17.3369 -1.39327 17.4018 -0.522987 17.4522 -0.217132 17.4805 -0.0902661 17.4973 -0.0427731 17.5126 -0.0338664 17.5274 -0.0383182 17.5381 -0.0493539 17.5486 -0.0719452 17.5607 -0.104409 17.5761 -0.146055 17.5962 -0.193974 17.6222 -0.243299 17.6538 -0.286874 17.6899 -0.31656 17.7277 -0.324959 17.7635 -0.307482 17.7942 -0.261796 17.8156 -0.192632 17.8243 -0.105561 17.8193 -0.00711666 17.7944 0.0972035 17.7559 0.193036 17.7042 0.275228 17.6444 0.344471 17.5803 0.39542 17.5151 0.42712 17.4519 0.440061 17.3929 0.435036 17.3395 0.414156 17.2928 0.380371 17.2531 0.337556 17.2203 0.289808 17.1937 0.240948 17.1728 0.194192 17.1567 0.151878 17.1446 0.115401 17.1357 0.0852703 17.1293 0.0613337 17.1248 0.0429844 17.1217 0.0293772 17.1197 0.0195951 17.1183 0.0127657 17.1174 0.00812851 17.1168 0.00506191 17.1165 0.00308478 17.1162 0.00184067 17.1161 0.00107598 17.116 0.000616558 17.1159 0.000346616 17.1159 0.000191089 17.1159 0.000103426 17.1159 5.49909e-05 17.1158 2.87177e-05 17.1158 1.47809e-05 17.1158 7.48226e-06 17.1158 3.7457e-06 17.1158 1.8604e-06 17.1158 9.26408e-07 17.1158 4.71799e-07 17.1158 2.53535e-07 17.1158 1.50431e-07 17.1158 1.03085e-07 17.1158 8.12151e-08 17.1158 7.12034e-08 17.1159 6.69525e-08 17.1159 6.48383e-08 17.1159 6.39407e-08 17.1159 6.38802e-08 17.1159 6.36155e-08 17.1158 6.35591e-08 17.1158 6.3591e-08 17.1158 6.35823e-08 17.1158 6.36633e-08 17.1157 6.36965e-08 17.1157 6.37497e-08 17.1156 6.39297e-08 17.1156 6.40971e-08 17.1155 6.43136e-08 17.1154 6.45987e-08 17.1153 6.49484e-08 17.1151 6.53222e-08 17.115 6.58238e-08 17.1148 6.64027e-08 17.1145 6.70757e-08 17.1142 6.78901e-08 17.1139 6.87883e-08 17.1135 6.98542e-08 17.1131 7.10688e-08 17.1126 7.24517e-08 17.112 7.40133e-08 17.1113 7.57896e-08 17.1105 7.77554e-08 17.1096 7.9945e-08 17.1086 8.23543e-08 17.1074 8.49918e-08 17.1061 8.78499e-08 17.1047 9.09295e-08 17.103 9.42127e-08 17.1012 9.76975e-08 17.0992 1.01347e-07 17.097 1.05131e-07 17.0945 1.09016e-07 17.0919 1.12938e-07 17.089 1.16852e-07 17.0859 1.2069e-07 17.0826 1.24365e-07 17.079 1.27808e-07 17.0753 1.30884e-07 17.0714 1.33519e-07 17.0673 1.3563e-07 17.063 1.37135e-07 17.0587 1.37946e-07 17.0542 1.37988e-07 17.0497 1.37166e-07 17.0452 1.35426e-07 17.0407 1.32698e-07 17.0363 1.28932e-07 17.0321 1.24094e-07 17.028 1.18167e-07 17.0241 1.11147e-07 17.0205 1.03076e-07 17.0172 9.40195e-08 17.0143 8.40701e-08 17.0118 7.33362e-08 17.0097 6.19625e-08 17.0081 5.0115e-08 17.007 3.79964e-08 17.0063 2.58497e-08 17.0062 1.46279e-08 17.0066 6.36783e-09 17.0074 -7.09952e-09 17.0087 -2.1033e-08 17.0105 -3.03903e-08 17.0126 -3.96667e-08 17.0152 -4.82582e-08 17.0182 -5.54892e-08 17.0214 -6.12986e-08 17.0249 -6.58456e-08 17.0286 -6.90206e-08 17.0324 -7.07596e-08 17.0363 -7.11011e-08 17.0402 -7.00611e-08 17.0441 -6.7861e-08 17.048 -6.45255e-08 17.0517 -6.00139e-08 17.0552 -5.46293e-08 17.0586 -4.85338e-08 17.0618 -4.18286e-08 17.0647 -3.46645e-08 17.0674 -2.71948e-08 17.0698 -1.95541e-08 17.0719 -1.1969e-08 17.0738 -4.50245e-09 17.0754 2.74895e-09 17.0767 9.78662e-09 17.0778 1.63286e-08 17.0787 2.24109e-08 17.0794 2.79838e-08 17.0799 3.29978e-08 17.0802 3.73802e-08 17.0804 4.11478e-08 17.0804 4.41987e-08 17.0803 4.63147e-08 17.0802 4.88476e-08 17.08 5.10458e-08 17.0797 5.23687e-08 17.0794 5.3406e-08 17.079 5.40708e-08 17.0787 5.44292e-08 17.0783 5.45019e-08 17.0779 5.44615e-08 17.0775 5.3949e-08 17.0772 5.40981e-08 17.0769 5.17812e-08 17.0766 5.42718e-08 17.0763 4.89636e-08 17.076 6.34427e-08 17.0758 3.89327e-08 17.0756 5.43696e-08 17.0754 3.22757e-08 17.0753 5.28148e-08 17.0751 4.49786e-08 17.075 2.27224e-08 17.0749 -2.76477e-08 17.0749 -2.15892e-07 17.0748 -8.97939e-07 17.0748 -4.35808e-06 17.0748 -1.34128e-05 17.0748 -5.51017e-05 17.0748 -0.000200951 17.075 -0.000756607 17.0754 -0.00283041 17.077 -0.0106021 17.0828 -0.0395886 17.1031 -0.147311 17.1686 -0.545548 17.299 -2.00766 -6.0464 17.7184 17.1583 -4.57733 17.3424 -1.57731 17.4087 -0.589252 17.3998 -0.208088 17.3873 -0.0777605 17.3773 -0.0327103 17.3648 -0.0212679 17.3525 -0.0258994 17.3459 -0.0427029 17.3426 -0.0685546 17.3423 -0.104085 17.3451 -0.14882 17.3514 -0.200253 17.3615 -0.25334 17.3749 -0.300338 17.3905 -0.332198 17.406 -0.340517 17.4184 -0.319877 17.4251 -0.268181 17.4237 -0.190043 17.4114 -0.0922575 17.3891 0.0158124 17.3635 0.123026 17.3336 0.222961 17.3014 0.307246 17.2691 0.3761 17.2384 0.425567 17.2108 0.45425 17.1873 0.463346 17.168 0.454128 17.1529 0.429104 17.1415 0.391605 17.1333 0.345668 17.1276 0.295455 17.1237 0.244759 17.1211 0.1967 17.1194 0.153494 17.1183 0.116429 17.1175 0.085919 17.1171 0.0617415 17.1167 0.0432408 17.1165 0.0295387 17.1164 0.0196969 17.1162 0.0128298 17.1162 0.00816883 17.1161 0.0050871 17.116 0.00310039 17.116 0.00185023 17.116 0.0010818 17.1159 0.000619911 17.1159 0.000348653 17.1159 0.000192228 17.1159 0.000104047 17.1158 5.53118e-05 17.1158 2.88661e-05 17.1158 1.48324e-05 17.1158 7.48057e-06 17.1158 3.7142e-06 17.1158 1.81346e-06 17.1158 8.71314e-07 17.1158 4.12457e-07 17.1158 1.91993e-07 17.1158 8.81378e-08 17.1158 3.992e-08 17.1158 1.78102e-08 17.1158 7.82802e-09 17.1159 3.39151e-09 17.1159 1.45792e-09 17.1159 6.16637e-10 17.1159 2.56932e-10 17.1159 1.02773e-10 17.1158 3.9563e-11 17.1158 1.59162e-11 17.1158 5.91172e-12 17.1158 2.72848e-12 17.1157 2.72848e-12 17.1157 4.09273e-12 17.1156 2.27374e-12 17.1156 3.18323e-12 17.1155 5.45697e-12 17.1154 5.91172e-12 17.1153 9.09495e-13 17.1151 -1.36424e-12 17.115 -3.18323e-12 17.1148 -4.54747e-12 17.1145 9.09495e-13 17.1142 2.27374e-12 17.1139 0 17.1135 4.54747e-13 17.1131 -3.18323e-12 17.1126 -3.63798e-12 17.112 -5.00222e-12 17.1113 -3.18323e-12 17.1105 0 17.1096 -1.81899e-12 17.1086 0 17.1074 1.81899e-12 17.1061 2.27374e-12 17.1047 1.81899e-12 17.103 1.81899e-12 17.1012 1.81899e-12 17.0992 1.36424e-12 17.097 -4.54747e-13 17.0945 2.27374e-12 17.0919 1.36424e-12 17.089 0 17.0859 4.54747e-13 17.0826 0 17.079 -4.54747e-13 17.0753 -1.81899e-12 17.0714 -1.36424e-12 17.0673 -4.54747e-13 17.063 9.09495e-13 17.0587 -9.09495e-13 17.0542 -1.36424e-12 17.0497 0 17.0452 -9.09495e-13 17.0407 -9.09495e-13 17.0363 1.81899e-12 17.0321 -9.09495e-13 17.028 -4.09273e-12 17.0241 -2.72848e-12 17.0205 0 17.0172 0 17.0143 4.54747e-13 17.0118 1.81899e-12 17.0097 1.36424e-12 17.0081 -4.54747e-13 17.007 3.18323e-12 17.0063 -4.54747e-13 17.0062 -9.09495e-13 17.0066 -1.81899e-12 17.0074 -2.27374e-12 17.0087 -3.18323e-12 17.0105 -4.09273e-12 17.0126 -1.81899e-12 17.0152 -4.54747e-12 17.0182 -2.72848e-12 17.0214 9.09495e-13 17.0249 5.00222e-12 17.0286 4.54747e-13 17.0324 -4.54747e-13 17.0363 -1.81899e-12 17.0402 0 17.0441 2.72848e-12 17.048 2.72848e-12 17.0517 4.54747e-13 17.0552 -1.36424e-12 17.0586 -4.54747e-13 17.0618 -3.18323e-12 17.0647 -9.09495e-13 17.0674 -1.36424e-12 17.0698 1.81899e-12 17.0719 2.72848e-12 17.0738 9.09495e-13 17.0754 2.72848e-12 17.0767 -9.09495e-13 17.0778 -2.27374e-12 17.0787 -2.27374e-12 17.0794 -1.81899e-12 17.0799 -4.54747e-12 17.0802 -3.18323e-12 17.0804 -2.72848e-12 17.0804 -2.27374e-12 17.0803 1.81899e-12 17.0802 3.18323e-12 17.08 5.00222e-12 17.0797 -1.36424e-12 17.0794 1.36424e-12 17.079 -2.72848e-12 17.0787 1.77351e-11 17.0783 -2.50111e-11 17.0779 8.41283e-11 17.0775 -1.38698e-10 17.0772 4.83396e-10 17.0769 -1.05956e-09 17.0766 1.89311e-09 17.0763 -2.08456e-09 17.076 1.18025e-08 17.0758 -9.36598e-09 17.0756 4.39377e-09 17.0754 -1.441e-08 17.0753 4.27508e-09 17.0751 -1.69302e-09 17.075 -2.53294e-08 17.0749 -7.68405e-08 17.0749 -2.78148e-07 17.0748 -9.97949e-07 17.0748 -4.52681e-06 17.0748 -1.43994e-05 17.0748 -5.75849e-05 17.0748 -0.000211847 17.0749 -0.00079456 17.075 -0.00297224 17.0756 -0.0111149 17.0774 -0.0413596 17.083 -0.152879 17.0954 -0.557955 17.0743 -1.98649 -5.95549 16.9834 17.202 -4.57226 17.1884 -1.56365 17.1707 -0.571527 17.1897 -0.227016 17.2046 -0.0925665 17.218 -0.0460835 17.2307 -0.0338249 17.2409 -0.0360704 17.2434 -0.0451276 17.2402 -0.0653388 17.2317 -0.0954789 17.218 -0.135146 17.2001 -0.182331 17.1791 -0.232429 17.1566 -0.277869 17.1339 -0.309539 17.1119 -0.318553 17.0908 -0.298822 17.0708 -0.248016 17.0518 -0.170343 17.035 -0.0741374 17.0162 0.0355585 16.9964 0.143241 16.9791 0.240392 16.9657 0.320604 16.958 0.383556 16.9564 0.426526 16.961 0.449066 16.9711 0.452792 16.9854 0.43949 17.0024 0.411887 17.0205 0.373362 17.0383 0.327756 17.0548 0.278913 17.0692 0.230261 17.0812 0.184567 17.0909 0.143744 17.0984 0.108884 17.1039 0.0802766 17.108 0.0576516 17.1108 0.0403624 17.1127 0.027568 17.114 0.0183825 17.1148 0.0119748 17.1153 0.00762538 17.1156 0.00474974 17.1157 0.00289545 17.1158 0.00172845 17.1159 0.0010109 17.1159 0.000579363 17.1159 0.00032598 17.1159 0.000179761 17.1159 9.73037e-05 17.1158 5.17166e-05 17.1158 2.69693e-05 17.1158 1.38328e-05 17.1158 6.94807e-06 17.1158 3.41897e-06 17.1158 1.63757e-06 17.1158 7.54177e-07 17.1158 3.23711e-07 17.1158 1.16729e-07 17.1158 1.95428e-08 17.1158 -2.61093e-08 17.1158 -4.68781e-08 17.1158 -5.61135e-08 17.1159 -6.04159e-08 17.1159 -6.20284e-08 17.1159 -6.27524e-08 17.1159 -6.3385e-08 17.1159 -6.34168e-08 17.1158 -6.34814e-08 17.1158 -6.356e-08 17.1158 -6.357e-08 17.1158 -6.36564e-08 17.1157 -6.3691e-08 17.1157 -6.37419e-08 17.1156 -6.39243e-08 17.1156 -6.40903e-08 17.1155 -6.43031e-08 17.1154 -6.45864e-08 17.1153 -6.49466e-08 17.1151 -6.53254e-08 17.115 -6.5831e-08 17.1148 -6.64118e-08 17.1145 -6.70739e-08 17.1142 -6.7886e-08 17.1139 -6.87874e-08 17.1135 -6.98542e-08 17.1131 -7.10766e-08 17.1126 -7.24594e-08 17.112 -7.4022e-08 17.1113 -7.57968e-08 17.1105 -7.7755e-08 17.1096 -7.99491e-08 17.1086 -8.23543e-08 17.1074 -8.49877e-08 17.1061 -8.78458e-08 17.1047 -9.09254e-08 17.103 -9.42091e-08 17.1012 -9.76947e-08 17.0992 -1.01344e-07 17.097 -1.0513e-07 17.0945 -1.09011e-07 17.0919 -1.12938e-07 17.089 -1.16854e-07 17.0859 -1.20691e-07 17.0826 -1.24366e-07 17.079 -1.27809e-07 17.0753 -1.30887e-07 17.0714 -1.33523e-07 17.0673 -1.35632e-07 17.063 -1.37134e-07 17.0587 -1.37946e-07 17.0542 -1.37991e-07 17.0497 -1.37167e-07 17.0452 -1.35426e-07 17.0407 -1.32699e-07 17.0363 -1.28926e-07 17.0321 -1.24097e-07 17.028 -1.18174e-07 17.0241 -1.11152e-07 17.0205 -1.03076e-07 17.0172 -9.40204e-08 17.0143 -8.40682e-08 17.0118 -7.33326e-08 17.0097 -6.19589e-08 17.0081 -5.01159e-08 17.007 -3.7991e-08 17.0063 -2.58506e-08 17.0062 -1.46301e-08 17.0066 -6.37147e-09 17.0074 7.09451e-09 17.0087 2.10271e-08 17.0105 3.03817e-08 17.0126 3.96626e-08 17.0152 4.82501e-08 17.0182 5.54837e-08 17.0214 6.12995e-08 17.0249 6.58561e-08 17.0286 6.90216e-08 17.0324 7.07596e-08 17.0363 7.10961e-08 17.0402 7.00616e-08 17.0441 6.78674e-08 17.048 6.45309e-08 17.0517 6.00139e-08 17.0552 5.46261e-08 17.0586 4.8532e-08 17.0618 4.18227e-08 17.0647 3.46618e-08 17.0674 2.71916e-08 17.0698 1.95573e-08 17.0719 1.19744e-08 17.0738 4.50427e-09 17.0754 -2.74395e-09 17.0767 -9.78798e-09 17.0778 -1.63323e-08 17.0787 -2.24145e-08 17.0794 -2.79861e-08 17.0799 -3.30078e-08 17.0802 -3.73875e-08 17.0804 -4.11524e-08 17.0804 -4.42037e-08 17.0803 -4.6311e-08 17.0802 -4.88417e-08 17.08 -5.10354e-08 17.0797 -5.23714e-08 17.0794 -5.34051e-08 17.079 -5.40754e-08 17.0787 -5.43951e-08 17.0783 -5.45488e-08 17.0779 -5.43e-08 17.0775 -5.42132e-08 17.0772 -5.31736e-08 17.0769 -5.38366e-08 17.0766 -5.06138e-08 17.0763 -5.30081e-08 17.076 -4.0915e-08 17.0758 -5.68771e-08 17.0756 -4.58917e-08 17.0754 -5.96851e-08 17.0753 -4.46053e-08 17.0751 -4.82855e-08 17.075 -7.09479e-08 17.0749 -1.18425e-07 17.0749 -3.13971e-07 17.0748 -1.06368e-06 17.0748 -4.14396e-06 17.0748 -1.3986e-05 17.0748 -5.45409e-05 17.0748 -0.000201594 17.0748 -0.000754698 17.0746 -0.00282223 17.0741 -0.0105477 17.0719 -0.039127 17.0629 -0.143858 17.0247 -0.519709 16.8625 -1.82428 -5.44521 16.3523 17.0908 -4.3301 17.0389 -1.5117 16.9907 -0.52328 16.9381 -0.17426 16.912 -0.0664713 16.8935 -0.0275104 16.8778 -0.0180524 16.8632 -0.0214294 16.8527 -0.0344822 16.8423 -0.0549 16.8297 -0.0828691 16.813 -0.118396 16.791 -0.1603 16.7633 -0.204756 16.7304 -0.245057 16.6935 -0.272728 16.6543 -0.279339 16.6144 -0.259025 16.5765 -0.209951 16.5435 -0.136704 16.5168 -0.0457416 16.5032 0.0504561 16.5027 0.144372 16.5153 0.227932 16.5401 0.295891 16.5754 0.348029 16.6191 0.381857 16.6696 0.397849 16.7242 0.397552 16.7804 0.382893 16.8356 0.356463 16.8875 0.321308 16.9344 0.280731 16.9752 0.237962 17.0096 0.195829 17.0375 0.156563 17.0595 0.121682 17.0763 0.0920229 17.0888 0.0677574 17.0977 0.048611 17.104 0.0340054 17.1083 0.0232111 17.1112 0.0154693 17.1131 0.0100729 17.1142 0.0064122 17.1149 0.00399292 17.1154 0.00243358 17.1156 0.00145248 17.1157 0.000849353 17.1158 0.00048667 17.1158 0.000273782 17.1158 0.000150937 17.1158 8.16622e-05 17.1158 4.3371e-05 17.1158 2.25799e-05 17.1158 1.15458e-05 17.1158 5.76314e-06 17.1158 2.79819e-06 17.1158 1.30195e-06 17.1158 5.59904e-07 17.1158 1.98283e-07 17.1158 2.42881e-08 17.1158 -5.69526e-08 17.1158 -9.57571e-08 17.1158 -1.13178e-07 17.1158 -1.20768e-07 17.1159 -1.24534e-07 17.1159 -1.25646e-07 17.1159 -1.26151e-07 17.1159 -1.27072e-07 17.1159 -1.26945e-07 17.1158 -1.27012e-07 17.1158 -1.27114e-07 17.1158 -1.27161e-07 17.1158 -1.27325e-07 17.1157 -1.27376e-07 17.1157 -1.27492e-07 17.1156 -1.2785e-07 17.1156 -1.28184e-07 17.1155 -1.28613e-07 17.1154 -1.29177e-07 17.1153 -1.29894e-07 17.1151 -1.30653e-07 17.115 -1.31659e-07 17.1148 -1.32818e-07 17.1145 -1.34149e-07 17.1142 -1.35771e-07 17.1139 -1.37576e-07 17.1135 -1.3971e-07 17.1131 -1.42148e-07 17.1126 -1.44914e-07 17.112 -1.48041e-07 17.1113 -1.5159e-07 17.1105 -1.55512e-07 17.1096 -1.59897e-07 17.1086 -1.64709e-07 17.1074 -1.69978e-07 17.1061 -1.75691e-07 17.1047 -1.81852e-07 17.103 -1.8842e-07 17.1012 -1.95392e-07 17.0992 -2.02689e-07 17.097 -2.10261e-07 17.0945 -2.18026e-07 17.0919 -2.25877e-07 17.089 -2.33708e-07 17.0859 -2.41383e-07 17.0826 -2.48734e-07 17.079 -2.55621e-07 17.0753 -2.61775e-07 17.0714 -2.67048e-07 17.0673 -2.71263e-07 17.063 -2.7427e-07 17.0587 -2.75895e-07 17.0542 -2.75982e-07 17.0497 -2.74335e-07 17.0452 -2.70857e-07 17.0407 -2.65401e-07 17.0363 -2.57858e-07 17.0321 -2.48195e-07 17.028 -2.36346e-07 17.0241 -2.22304e-07 17.0205 -2.06153e-07 17.0172 -1.8804e-07 17.0143 -1.68134e-07 17.0118 -1.46662e-07 17.0097 -1.23914e-07 17.0081 -1.00225e-07 17.007 -7.59733e-08 17.0063 -5.16675e-08 17.0062 -2.92266e-08 17.0066 -1.2968e-08 17.0074 1.43568e-08 17.0087 4.19268e-08 17.0105 6.07861e-08 17.0126 7.9332e-08 17.0152 9.65174e-08 17.0182 1.10965e-07 17.0214 1.22596e-07 17.0249 1.31704e-07 17.0286 1.38036e-07 17.0324 1.41526e-07 17.0363 1.42203e-07 17.0402 1.40127e-07 17.0441 1.35738e-07 17.048 1.29067e-07 17.0517 1.20029e-07 17.0552 1.09254e-07 17.0586 9.70622e-08 17.0618 8.3649e-08 17.0647 6.93276e-08 17.0674 5.43901e-08 17.0698 3.91151e-08 17.0719 2.39575e-08 17.0738 9.04356e-09 17.0754 -5.63978e-09 17.0767 -1.95578e-08 17.0778 -3.26681e-08 17.0787 -4.48244e-08 17.0794 -5.59698e-08 17.0799 -6.60134e-08 17.0802 -7.47664e-08 17.0804 -8.2312e-08 17.0804 -8.84138e-08 17.0803 -9.26038e-08 17.0802 -9.77229e-08 17.08 -1.02067e-07 17.0797 -1.04727e-07 17.0794 -1.06806e-07 17.079 -1.08152e-07 17.0787 -1.08809e-07 17.0783 -1.09073e-07 17.0779 -1.08688e-07 17.0775 -1.08285e-07 17.0772 -1.06853e-07 17.0769 -1.06572e-07 17.0766 -1.03193e-07 17.0763 -1.03899e-07 17.076 -9.39572e-08 17.0758 -1.04343e-07 17.0756 -9.59221e-08 17.0754 -1.04675e-07 17.0753 -9.322e-08 17.0751 -9.4853e-08 17.075 -1.14017e-07 17.0749 -1.52859e-07 17.0749 -3.21755e-07 17.0748 -9.8726e-07 17.0748 -3.47722e-06 17.0748 -1.20553e-05 17.0748 -4.62759e-05 17.0747 -0.000171397 17.0747 -0.000640911 17.0743 -0.00239647 17.0727 -0.00895222 17.0667 -0.0331205 17.0443 -0.121347 16.9604 -0.435817 16.6639 -1.52774 -4.57896 15.7977 17.3471 -3.36695 17.0187 -1.18331 16.9113 -0.415782 16.8889 -0.151831 16.8863 -0.0638258 16.8937 -0.0348073 16.8987 -0.0229721 16.8988 -0.0214436 16.888 -0.0237006 16.8646 -0.0314713 16.8269 -0.0451436 16.7733 -0.0647236 16.704 -0.0910507 16.6219 -0.122663 16.5318 -0.155097 16.4403 -0.181418 16.3543 -0.193356 16.2792 -0.183913 16.2188 -0.149421 16.1757 -0.0925182 16.1525 -0.0204402 16.1438 0.0606649 16.1538 0.135103 16.1827 0.199242 16.2299 0.248733 16.2926 0.284855 16.3674 0.305781 16.4507 0.313495 16.5384 0.309122 16.6262 0.294534 16.7105 0.271829 16.7883 0.243319 16.8575 0.211418 16.9169 0.178434 16.9663 0.14635 17.0061 0.116706 17.0372 0.0905333 17.0608 0.0683699 17.0782 0.0502897 17.0907 0.0360523 17.0994 0.0252063 17.1054 0.0171982 17.1093 0.0114585 17.1119 0.00745944 17.1135 0.00474755 17.1145 0.00295579 17.1151 0.00180117 17.1155 0.00107482 17.1157 0.000628396 17.1158 0.000359955 17.1158 0.000202432 17.1158 0.000111542 17.1158 6.0294e-05 17.1158 3.19733e-05 17.1158 1.65962e-05 17.1158 8.4377e-06 17.1158 4.16296e-06 17.1158 1.97072e-06 17.1158 8.65166e-07 17.1158 3.1685e-07 17.1158 4.97248e-08 17.1158 -7.89832e-08 17.1158 -1.38363e-07 17.1158 -1.67721e-07 17.1158 -1.80487e-07 17.1158 -1.85873e-07 17.1159 -1.88852e-07 17.1159 -1.89345e-07 17.1159 -1.89536e-07 17.1159 -1.90824e-07 17.1159 -1.90473e-07 17.1158 -1.9056e-07 17.1158 -1.90606e-07 17.1158 -1.90787e-07 17.1158 -1.91013e-07 17.1157 -1.91041e-07 17.1157 -1.91253e-07 17.1156 -1.91772e-07 17.1156 -1.92276e-07 17.1155 -1.92927e-07 17.1154 -1.93764e-07 17.1153 -1.9484e-07 17.1151 -1.95987e-07 17.115 -1.97485e-07 17.1148 -1.99223e-07 17.1145 -2.01225e-07 17.1142 -2.03652e-07 17.1139 -2.06369e-07 17.1135 -2.09569e-07 17.1131 -2.1322e-07 17.1126 -2.17372e-07 17.112 -2.22061e-07 17.1113 -2.27384e-07 17.1105 -2.33274e-07 17.1096 -2.39847e-07 17.1086 -2.47064e-07 17.1074 -2.54971e-07 17.1061 -2.63539e-07 17.1047 -2.72778e-07 17.103 -2.82634e-07 17.1012 -2.93091e-07 17.0992 -3.04034e-07 17.097 -3.15394e-07 17.0945 -3.27044e-07 17.0919 -3.38819e-07 17.089 -3.50562e-07 17.0859 -3.62078e-07 17.0826 -3.73109e-07 17.079 -3.83438e-07 17.0753 -3.92668e-07 17.0714 -4.00576e-07 17.0673 -4.06894e-07 17.063 -4.11408e-07 17.0587 -4.13846e-07 17.0542 -4.13973e-07 17.0497 -4.11502e-07 17.0452 -4.06289e-07 17.0407 -3.98101e-07 17.0363 -3.86789e-07 17.0321 -3.72294e-07 17.028 -3.54521e-07 17.0241 -3.33459e-07 17.0205 -3.09235e-07 17.0172 -2.82063e-07 17.0143 -2.52207e-07 17.0118 -2.19997e-07 17.0097 -1.85874e-07 17.0081 -1.50338e-07 17.007 -1.13957e-07 17.0063 -7.74362e-08 17.0062 -4.37844e-08 17.0066 -2.01535e-08 17.0074 2.25782e-08 17.0087 6.256e-08 17.0105 9.11705e-08 17.0126 1.19016e-07 17.0152 1.44824e-07 17.0182 1.66419e-07 17.0214 1.83908e-07 17.0249 1.97585e-07 17.0286 2.07087e-07 17.0324 2.12299e-07 17.0363 2.13321e-07 17.0402 2.1019e-07 17.0441 2.03614e-07 17.048 1.93589e-07 17.0517 1.80039e-07 17.0552 1.63895e-07 17.0586 1.45612e-07 17.0618 1.2548e-07 17.0647 1.03995e-07 17.0674 8.1588e-08 17.0698 5.86574e-08 17.0719 3.5931e-08 17.0738 1.34928e-08 17.0754 -8.19864e-09 17.0767 -2.93721e-08 17.0778 -4.89968e-08 17.0787 -6.72362e-08 17.0794 -8.39541e-08 17.0799 -9.90394e-08 17.0802 -1.12149e-07 17.0804 -1.23486e-07 17.0804 -1.32603e-07 17.0803 -1.38863e-07 17.0802 -1.46644e-07 17.08 -1.53077e-07 17.0797 -1.57061e-07 17.0794 -1.60217e-07 17.079 -1.62227e-07 17.0787 -1.63239e-07 17.0783 -1.63586e-07 17.0779 -1.63072e-07 17.0775 -1.62358e-07 17.0772 -1.6055e-07 17.0769 -1.59308e-07 17.0766 -1.55815e-07 17.0763 -1.54865e-07 17.076 -1.46952e-07 17.0758 -1.52073e-07 17.0756 -1.45578e-07 17.0754 -1.49746e-07 17.0753 -1.41414e-07 17.0751 -1.41297e-07 17.075 -1.54381e-07 17.0749 -1.81715e-07 17.0749 -3.04693e-07 17.0748 -7.94932e-07 17.0748 -2.55716e-06 17.0748 -8.84962e-06 17.0748 -3.35657e-05 17.0747 -0.000124312 17.0746 -0.000464496 17.0739 -0.00173684 17.0715 -0.00648269 17.0624 -0.0239487 17.0286 -0.0875564 16.9067 -0.313869 16.4926 -1.11358 -3.3831 15.2968 16.4582 -2.15235 16.0042 -0.729198 15.8004 -0.211965 15.7204 -0.0717127 15.6804 -0.0237954 15.657 -0.0113184 15.6427 -0.00860723 15.6319 -0.0105122 15.6241 -0.0159132 15.6167 -0.0240387 15.6061 -0.0344429 15.5895 -0.048135 15.5648 -0.0663098 15.5306 -0.0884254 15.487 -0.11168 15.4369 -0.131428 15.3859 -0.142345 15.3421 -0.13999 15.3158 -0.122038 15.3162 -0.0897948 15.3463 -0.0482094 15.408 0.000202809 15.4963 0.0472532 15.6058 0.0897693 15.7313 0.12293 15.867 0.147483 16.0089 0.16222 16.1529 0.168235 16.2944 0.166749 16.4292 0.159141 16.5539 0.146823 16.6657 0.131244 16.7632 0.113826 16.8456 0.0958722 16.9134 0.0784741 16.9676 0.0624583 17.0097 0.0483657 17.0416 0.0364649 17.0651 0.0267821 17.0819 0.0191741 17.0937 0.0133896 17.1017 0.0091258 17.107 0.0060742 17.1105 0.00395078 17.1127 0.00251243 17.114 0.00156304 17.1148 0.000951784 17.1153 0.00056756 17.1156 0.000331577 17.1157 0.000189766 17.1158 0.000106599 17.1158 5.86411e-05 17.1158 3.16131e-05 17.1158 1.66841e-05 17.1158 8.58218e-06 17.1158 4.28575e-06 17.1158 2.0364e-06 17.1158 8.81617e-07 17.1158 3.00714e-07 17.1158 1.239e-08 17.1158 -1.27895e-07 17.1158 -1.95816e-07 17.1158 -2.2586e-07 17.1158 -2.4258e-07 17.1158 -2.49036e-07 17.1158 -2.51528e-07 17.1159 -2.53417e-07 17.1159 -2.53143e-07 17.1159 -2.52886e-07 17.1159 -2.54671e-07 17.1159 -2.53993e-07 17.1158 -2.54148e-07 17.1158 -2.53966e-07 17.1158 -2.5449e-07 17.1158 -2.54727e-07 17.1157 -2.54662e-07 17.1157 -2.55049e-07 17.1156 -2.55686e-07 17.1156 -2.56367e-07 17.1155 -2.57243e-07 17.1154 -2.58349e-07 17.1153 -2.59775e-07 17.1151 -2.61335e-07 17.115 -2.63311e-07 17.1148 -2.65622e-07 17.1145 -2.68306e-07 17.1142 -2.71518e-07 17.1139 -2.75172e-07 17.1135 -2.79427e-07 17.1131 -2.84288e-07 17.1126 -2.89827e-07 17.112 -2.96082e-07 17.1113 -3.03173e-07 17.1105 -3.11035e-07 17.1096 -3.19792e-07 17.1086 -3.29417e-07 17.1074 -3.39963e-07 17.1061 -3.51387e-07 17.1047 -3.63699e-07 17.103 -3.76847e-07 17.1012 -3.90791e-07 17.0992 -4.05379e-07 17.097 -4.20529e-07 17.0945 -4.36065e-07 17.0919 -4.51763e-07 17.089 -4.67422e-07 17.0859 -4.82776e-07 17.0826 -4.97494e-07 17.079 -5.11262e-07 17.0753 -5.2357e-07 17.0714 -5.34113e-07 17.0673 -5.42532e-07 17.063 -5.48555e-07 17.0587 -5.51812e-07 17.0542 -5.51971e-07 17.0497 -5.48679e-07 17.0452 -5.41737e-07 17.0407 -5.30814e-07 17.0363 -5.15734e-07 17.0321 -4.96409e-07 17.028 -4.72704e-07 17.0241 -4.44629e-07 17.0205 -4.1233e-07 17.0172 -3.76089e-07 17.0143 -3.36278e-07 17.0118 -2.93327e-07 17.0097 -2.4782e-07 17.0081 -2.00435e-07 17.007 -1.51913e-07 17.0063 -1.03103e-07 17.0062 -5.82731e-08 17.0066 -2.80033e-08 17.0074 3.12211e-08 17.0087 8.28459e-08 17.0105 1.21599e-07 17.0126 1.58692e-07 17.0152 1.93189e-07 17.0182 2.21864e-07 17.0214 2.45203e-07 17.0249 2.63472e-07 17.0286 2.76125e-07 17.0324 2.83101e-07 17.0363 2.84474e-07 17.0402 2.80283e-07 17.0441 2.71528e-07 17.048 2.58139e-07 17.0517 2.40046e-07 17.0552 2.18547e-07 17.0586 1.94153e-07 17.0618 1.67321e-07 17.0647 1.38677e-07 17.0674 1.08811e-07 17.0698 7.8212e-08 17.0719 4.79513e-08 17.0738 1.80517e-08 17.0754 -1.12495e-08 17.0767 -3.91137e-08 17.0778 -6.53363e-08 17.0787 -8.9638e-08 17.0794 -1.11933e-07 17.0799 -1.32071e-07 17.0802 -1.49523e-07 17.0804 -1.64697e-07 17.0804 -1.76801e-07 17.0803 -1.85115e-07 17.0802 -1.95634e-07 17.08 -2.04046e-07 17.0797 -2.09359e-07 17.0794 -2.1363e-07 17.079 -2.1632e-07 17.0787 -2.17682e-07 17.0783 -2.18096e-07 17.0779 -2.17464e-07 17.0775 -2.16449e-07 17.0772 -2.14269e-07 17.0769 -2.12051e-07 17.0766 -2.08433e-07 17.0763 -2.0589e-07 17.076 -1.99794e-07 17.0758 -2.00072e-07 17.0756 -1.94893e-07 17.0754 -1.9496e-07 17.0753 -1.89254e-07 17.0751 -1.87668e-07 17.075 -1.93052e-07 17.0749 -2.06184e-07 17.0749 -2.6934e-07 17.0748 -5.2396e-07 17.0748 -1.43881e-06 17.0748 -4.73322e-06 17.0748 -1.76179e-05 17.0747 -6.50025e-05 17.0745 -0.000242556 17.0737 -0.000906855 17.0706 -0.0033831 17.0592 -0.0124961 17.0174 -0.0457136 16.868 -0.164426 16.3623 -0.607809 -1.86542 14.8446 4.00998 -1.73509 3.87183 -0.591035 3.83085 -0.170965 3.81605 -0.0569027 3.81211 -0.0198444 3.81059 -0.0097817 3.80969 -0.00768387 3.80856 -0.00937083 3.80635 -0.0136825 3.80213 -0.0198074 3.79484 -0.0271574 3.78324 -0.0365311 3.76619 -0.0492602 3.74298 -0.0652313 3.71368 -0.0824225 3.67949 -0.0973009 3.64282 -0.105695 3.60697 -0.104147 3.57573 -0.0906639 3.5526 -0.0659624 3.53938 -0.0341695 3.53694 0.00311153 3.54492 0.0394544 3.56246 0.0722531 3.58746 0.0978187 3.61754 0.116887 3.65082 0.128439 3.68563 0.133051 3.72037 0.131761 3.75369 0.125647 3.78459 0.115826 3.81232 0.103449 3.83646 0.0896458 3.85687 0.0754463 3.87361 0.0617092 3.88698 0.0490806 3.89735 0.0379834 3.90518 0.0286205 3.91095 0.0210097 3.91507 0.0150343 3.91796 0.0104941 3.91992 0.00714942 3.92123 0.00475689 3.92207 0.00309285 3.92261 0.00196615 3.92294 0.00122277 3.92314 0.000744321 3.92326 0.000443684 3.92332 0.0002591 3.92336 0.000148213 3.92338 8.32013e-05 3.92338 4.57251e-05 3.92339 2.46106e-05 3.92339 1.29514e-05 3.92339 6.62573e-06 3.92339 3.27253e-06 3.92339 1.51787e-06 3.92339 6.16459e-07 3.92339 1.63758e-07 3.92339 -6.10598e-08 3.92339 -1.70334e-07 3.92339 -2.23421e-07 3.92339 -2.4626e-07 3.92339 -2.59924e-07 3.92339 -2.64814e-07 3.92339 -2.66606e-07 3.92339 -2.68234e-07 3.92339 -2.67773e-07 3.9234 -2.67399e-07 3.9234 -2.69323e-07 3.92339 -2.68552e-07 3.92339 -2.68737e-07 3.92339 -2.68452e-07 3.92338 -2.69116e-07 3.92338 -2.69334e-07 3.92337 -2.69232e-07 3.92336 -2.69687e-07 3.92335 -2.70335e-07 3.92333 -2.71059e-07 3.92331 -2.71988e-07 3.92329 -2.73154e-07 3.92326 -2.74655e-07 3.92323 -2.76317e-07 3.92319 -2.78398e-07 3.92314 -2.80841e-07 3.92309 -2.83682e-07 3.92302 -2.87067e-07 3.92295 -2.90942e-07 3.92286 -2.95437e-07 3.92276 -3.00573e-07 3.92264 -3.06429e-07 3.92251 -3.13043e-07 3.92235 -3.20535e-07 3.92217 -3.28857e-07 3.92196 -3.38106e-07 3.92173 -3.48286e-07 3.92146 -3.59436e-07 3.92117 -3.71512e-07 3.92083 -3.84529e-07 3.92045 -3.98433e-07 3.92004 -4.13174e-07 3.91957 -4.28601e-07 3.91906 -4.44616e-07 3.9185 -4.61045e-07 3.91789 -4.77647e-07 3.91724 -4.94201e-07 3.91652 -5.10438e-07 3.91576 -5.26004e-07 3.91495 -5.40562e-07 3.9141 -5.53582e-07 3.9132 -5.64733e-07 3.91226 -5.73638e-07 3.91129 -5.80012e-07 3.91029 -5.83459e-07 3.90927 -5.83628e-07 3.90823 -5.80154e-07 3.9072 -5.72818e-07 3.90617 -5.61271e-07 3.90517 -5.45333e-07 3.90419 -5.24904e-07 3.90325 -4.99846e-07 3.90236 -4.70165e-07 3.90154 -4.36019e-07 3.90079 -3.97697e-07 3.90012 -3.55605e-07 3.89954 -3.10189e-07 3.89906 -2.62071e-07 3.89869 -2.11967e-07 3.89844 -1.60655e-07 3.89829 -1.09005e-07 3.89826 -6.16164e-08 3.89835 -2.99642e-08 3.89853 3.3484e-08 3.89883 8.74516e-08 3.89923 1.28579e-07 3.89974 1.67811e-07 3.90033 2.04322e-07 3.901 2.34602e-07 3.90174 2.5931e-07 3.90254 2.78635e-07 3.90339 2.92021e-07 3.90426 2.99398e-07 3.90515 3.00857e-07 3.90606 2.96421e-07 3.90695 2.87166e-07 3.90783 2.73001e-07 3.90868 2.53869e-07 3.9095 2.31144e-07 3.91027 2.05349e-07 3.911 1.76971e-07 3.91167 1.46681e-07 3.91228 1.15098e-07 3.91283 8.27331e-08 3.91332 5.07443e-08 3.91375 1.90976e-08 3.91411 -1.18289e-08 3.91442 -4.1342e-08 3.91468 -6.90743e-08 3.91488 -9.47766e-08 3.91503 -1.18356e-07 3.91515 -1.39655e-07 3.91522 -1.58101e-07 3.91526 -1.74172e-07 3.91527 -1.86943e-07 3.91525 -1.95756e-07 3.91522 -2.06901e-07 3.91517 -2.15756e-07 3.91511 -2.21378e-07 3.91503 -2.25911e-07 3.91495 -2.28752e-07 3.91487 -2.30206e-07 3.91478 -2.30624e-07 3.9147 -2.2996e-07 3.91461 -2.28876e-07 3.91453 -2.26613e-07 3.91446 -2.24163e-07 3.91439 -2.20514e-07 3.91432 -2.17615e-07 3.91426 -2.11909e-07 3.91421 -2.11117e-07 3.91416 -2.06182e-07 3.91412 -2.05349e-07 3.91409 -2.00207e-07 3.91406 -1.98295e-07 3.91403 -2.01822e-07 3.91401 -2.11458e-07 3.914 -2.59908e-07 3.91399 -4.57199e-07 3.91398 -1.16575e-06 3.91398 -3.72522e-06 3.91397 -1.37262e-05 3.91396 -5.0518e-05 3.91391 -0.00018837 3.91371 -0.000704151 3.91297 -0.00262639 3.91018 -0.00969872 3.89993 -0.0354601 3.8631 -0.127583 3.72829 -0.472991 -1.4733 3.33618 3.48447 -1.38179 3.35976 -0.466304 3.32051 -0.131698 3.30695 -0.0433378 3.30216 -0.0150393 3.3002 -0.00780857 3.2994 -0.00687139 3.29897 -0.00892783 3.29828 -0.0129779 3.29634 -0.0178568 3.29199 -0.0227937 3.28385 -0.0284005 3.27064 -0.0360526 3.2514 -0.0459986 3.22589 -0.0569374 3.195 -0.0665107 3.16094 -0.071697 3.12694 -0.0701573 3.09676 -0.0604072 3.07409 -0.042763 3.06106 -0.0203396 3.05865 0.00599171 3.06618 0.0321062 3.08245 0.0560063 3.10558 0.0746237 3.13339 0.0886806 3.16416 0.09721 3.19634 0.100526 3.22845 0.0994104 3.25926 0.094692 3.28778 0.0872019 3.31336 0.0778095 3.33561 0.0673658 3.35439 0.0566454 3.36979 0.0462923 3.38207 0.0367876 3.3916 0.0284483 3.39879 0.021419 3.40408 0.0157116 3.40787 0.0112351 3.41052 0.00783696 3.41232 0.00533572 3.41352 0.00354796 3.4143 0.00230546 3.41479 0.00146478 3.41509 0.000910454 3.41528 0.000553906 3.41538 0.000329991 3.41545 0.000192586 3.41548 0.000110084 3.41549 6.17343e-05 3.4155 3.38774e-05 3.41551 1.81889e-05 3.41551 9.52957e-06 3.41551 4.83291e-06 3.4155 2.34473e-06 3.4155 1.04354e-06 3.4155 3.74299e-07 3.4155 3.90501e-08 3.4155 -1.27613e-07 3.4155 -2.08502e-07 3.41551 -2.48016e-07 3.41551 -2.64274e-07 3.41551 -2.75146e-07 3.41551 -2.786e-07 3.41551 -2.7975e-07 3.41551 -2.81143e-07 3.41551 -2.80517e-07 3.41551 -2.80028e-07 3.41551 -2.82085e-07 3.41551 -2.81227e-07 3.41551 -2.81439e-07 3.41551 -2.81054e-07 3.4155 -2.81858e-07 3.4155 -2.82051e-07 3.41549 -2.81912e-07 3.41548 -2.82434e-07 3.41547 -2.83086e-07 3.41546 -2.83848e-07 3.41544 -2.84826e-07 3.41542 -2.86042e-07 3.41539 -2.87606e-07 3.41537 -2.89358e-07 3.41533 -2.91529e-07 3.41529 -2.94087e-07 3.41524 -2.97068e-07 3.41519 -3.00603e-07 3.41512 -3.0467e-07 3.41505 -3.09368e-07 3.41496 -3.14745e-07 3.41486 -3.20875e-07 3.41474 -3.27806e-07 3.4146 -3.3564e-07 3.41444 -3.44358e-07 3.41427 -3.54043e-07 3.41406 -3.647e-07 3.41383 -3.76378e-07 3.41357 -3.89024e-07 3.41328 -4.02651e-07 3.41295 -4.17218e-07 3.41259 -4.32652e-07 3.41218 -4.4881e-07 3.41174 -4.65578e-07 3.41125 -4.82785e-07 3.41072 -5.00175e-07 3.41015 -5.17512e-07 3.40953 -5.34514e-07 3.40887 -5.50823e-07 3.40816 -5.66073e-07 3.40742 -5.79716e-07 3.40663 -5.91392e-07 3.40582 -6.00727e-07 3.40497 -6.0741e-07 3.4041 -6.11029e-07 3.40321 -6.11213e-07 3.40231 -6.07584e-07 3.40141 -5.99901e-07 3.40052 -5.87817e-07 3.39964 -5.71135e-07 3.39879 -5.49744e-07 3.39797 -5.23512e-07 3.3972 -4.92439e-07 3.39648 -4.56675e-07 3.39583 -4.16552e-07 3.39525 -3.72471e-07 3.39475 -3.24908e-07 3.39433 -2.74513e-07 3.39401 -2.22039e-07 3.39378 -1.683e-07 3.39366 -1.14167e-07 3.39363 -6.4545e-08 3.39371 -3.17104e-08 3.39387 3.54485e-08 3.39413 9.1457e-08 3.39448 1.3468e-07 3.39492 1.75774e-07 3.39543 2.14053e-07 3.39602 2.45716e-07 3.39666 2.71628e-07 3.39736 2.91875e-07 3.39809 3.05905e-07 3.39885 3.13636e-07 3.39963 3.1518e-07 3.40042 3.10532e-07 3.4012 3.00841e-07 3.40196 2.86e-07 3.4027 2.65958e-07 3.40341 2.42169e-07 3.40409 2.15139e-07 3.40472 1.85419e-07 3.4053 1.5369e-07 3.40583 1.20614e-07 3.40631 8.67058e-08 3.40674 5.32018e-08 3.40711 2.00325e-08 3.40743 -1.23473e-08 3.4077 -4.32774e-08 3.40792 -7.23248e-08 3.4081 -9.92513e-08 3.40823 -1.23951e-07 3.40833 -1.46272e-07 3.40839 -1.6559e-07 3.40843 -1.82441e-07 3.40844 -1.95787e-07 3.40842 -2.05051e-07 3.4084 -2.16738e-07 3.40835 -2.25975e-07 3.4083 -2.31865e-07 3.40823 -2.36636e-07 3.40816 -2.39605e-07 3.40809 -2.41136e-07 3.40801 -2.41551e-07 3.40794 -2.4086e-07 3.40787 -2.39714e-07 3.4078 -2.37373e-07 3.40773 -2.34724e-07 3.40767 -2.31046e-07 3.40761 -2.27836e-07 3.40756 -2.22466e-07 3.40752 -2.20745e-07 3.40748 -2.16016e-07 3.40744 -2.14408e-07 3.40741 -2.09746e-07 3.40738 -2.07552e-07 3.40736 -2.0944e-07 3.40735 -2.15972e-07 3.40733 -2.51386e-07 3.40732 -3.98069e-07 3.40732 -9.23927e-07 3.40731 -2.83267e-06 3.40731 -1.02826e-05 3.4073 -3.7699e-05 3.40725 -0.00014042 3.40708 -0.000524762 3.40642 -0.00195692 3.40395 -0.00722477 3.3949 -0.0263996 3.36233 -0.0950025 3.24231 -0.352969 -1.11633 2.88536 3.12643 -0.991638 2.99748 -0.337331 2.96073 -0.0949344 2.94856 -0.0311546 2.94474 -0.0112165 2.9429 -0.0059594 2.94133 -0.00528481 2.9392 -0.0067935 2.93575 -0.00950925 2.93022 -0.0123157 2.92167 -0.0142382 2.90899 -0.0157416 2.89124 -0.0183104 2.86791 -0.0226806 2.83928 -0.0283268 2.80659 -0.0339132 2.77212 -0.0374239 2.7388 -0.0369249 2.70955 -0.0311647 2.68694 -0.0199728 2.67255 -0.005251 2.66717 0.0119143 2.67059 0.0289549 2.68223 0.0444314 2.70067 0.0561697 2.72399 0.0651618 2.75047 0.07034 2.77857 0.0721303 2.80689 0.0708919 2.8342 0.0672448 2.85958 0.0617376 2.88238 0.0549606 2.90222 0.0474964 2.91897 0.0398774 2.9327 0.0325467 2.94365 0.0258336 2.95213 0.0199578 2.95853 0.0150114 2.96323 0.0110014 2.9666 0.00786005 2.96895 0.00547809 2.97055 0.00372667 2.97161 0.00247606 2.9723 0.00160769 2.97274 0.00102065 2.97301 0.000633906 2.97317 0.000385348 2.97327 0.000229374 2.97332 0.000133734 2.97335 7.63525e-05 2.97336 4.27461e-05 2.97337 2.33988e-05 2.97337 1.25098e-05 2.97337 6.50369e-06 2.97337 3.24767e-06 2.97337 1.52451e-06 2.97337 6.2429e-07 2.97337 1.60344e-07 2.97337 -7.10406e-08 2.97337 -1.86292e-07 2.97337 -2.42073e-07 2.97337 -2.696e-07 2.97337 -2.80023e-07 2.97338 -2.88435e-07 2.97338 -2.90613e-07 2.97338 -2.91197e-07 2.97338 -2.92383e-07 2.97338 -2.91611e-07 2.97338 -2.91022e-07 2.97338 -2.9319e-07 2.97338 -2.92262e-07 2.97338 -2.92503e-07 2.97337 -2.92011e-07 2.97337 -2.92959e-07 2.97337 -2.93125e-07 2.97336 -2.92946e-07 2.97335 -2.93536e-07 2.97334 -2.94185e-07 2.97333 -2.94982e-07 2.97332 -2.96001e-07 2.9733 -2.97259e-07 2.97328 -2.9888e-07 2.97325 -3.00712e-07 2.97322 -3.02962e-07 2.97319 -3.0561e-07 2.97315 -3.08721e-07 2.9731 -3.12379e-07 2.97304 -3.16622e-07 2.97298 -3.2149e-07 2.9729 -3.27083e-07 2.97281 -3.33441e-07 2.97271 -3.40653e-07 2.97259 -3.48788e-07 2.97245 -3.5785e-07 2.97229 -3.67911e-07 2.97212 -3.78992e-07 2.97192 -3.91115e-07 2.97169 -4.04263e-07 2.97143 -4.18428e-07 2.97115 -4.33569e-07 2.97083 -4.49605e-07 2.97048 -4.66396e-07 2.9701 -4.83824e-07 2.96967 -5.01705e-07 2.96921 -5.19782e-07 2.96871 -5.37799e-07 2.96817 -5.55472e-07 2.9676 -5.72429e-07 2.96698 -5.88276e-07 2.96633 -6.02469e-07 2.96565 -6.14606e-07 2.96494 -6.2431e-07 2.9642 -6.31266e-07 2.96344 -6.35038e-07 2.96267 -6.35238e-07 2.96189 -6.31479e-07 2.96111 -6.23497e-07 2.96033 -6.10944e-07 2.95957 -5.93618e-07 2.95882 -5.71396e-07 2.95811 -5.44136e-07 2.95744 -5.11855e-07 2.95681 -4.74687e-07 2.95624 -4.3299e-07 2.95574 -3.87181e-07 2.9553 -3.3775e-07 2.95494 -2.85372e-07 2.95466 -2.30837e-07 2.95446 -1.7497e-07 2.95435 -1.18675e-07 2.95433 -6.71098e-08 2.9544 -3.32711e-08 2.95454 3.72474e-08 2.95476 9.49476e-08 2.95507 1.39989e-07 2.95545 1.82717e-07 2.9559 2.22537e-07 2.95641 2.55412e-07 2.95697 2.82376e-07 2.95758 3.03435e-07 2.95822 3.18021e-07 2.95888 3.26068e-07 2.95956 3.2768e-07 2.96024 3.22851e-07 2.96092 3.12781e-07 2.96158 2.97343e-07 2.96223 2.76519e-07 2.96285 2.51799e-07 2.96343 2.23701e-07 2.96398 1.928e-07 2.96449 1.59822e-07 2.96495 1.25439e-07 2.96537 9.01764e-08 2.96574 5.53628e-08 2.96607 2.08693e-08 2.96635 -1.28202e-08 2.96658 -4.49509e-08 2.96677 -7.51479e-08 2.96693 -1.03148e-07 2.96704 -1.28823e-07 2.96713 -1.52033e-07 2.96718 -1.72113e-07 2.96721 -1.89657e-07 2.96722 -2.03503e-07 2.96721 -2.1316e-07 2.96718 -2.25315e-07 2.96715 -2.34877e-07 2.9671 -2.41016e-07 2.96704 -2.45984e-07 2.96698 -2.49069e-07 2.96692 -2.50669e-07 2.96685 -2.51079e-07 2.96679 -2.50366e-07 2.96672 -2.49162e-07 2.96666 -2.46755e-07 2.96661 -2.43919e-07 2.96655 -2.40221e-07 2.9665 -2.36743e-07 2.96646 -2.31657e-07 2.96642 -2.29142e-07 2.96638 -2.24574e-07 2.96635 -2.22301e-07 2.96633 -2.1805e-07 2.9663 -2.15612e-07 2.96628 -2.16067e-07 2.96627 -2.19854e-07 2.96626 -2.4379e-07 2.96625 -3.46128e-07 2.96625 -7.10832e-07 2.96624 -2.04738e-06 2.96624 -7.25329e-06 2.96623 -2.6421e-05 2.96619 -9.82374e-05 2.96604 -0.000366946 2.96545 -0.00136808 2.96329 -0.00504961 2.95533 -0.0184403 2.92671 -0.0663675 2.82062 -0.246878 -0.792929 2.49722 2.61098 -0.693358 2.50392 -0.230256 2.47318 -0.0641794 2.46329 -0.0212512 2.46025 -0.00817707 2.45954 -0.00523666 2.45993 -0.00566402 2.46077 -0.00762538 2.4613 -0.0100228 2.46042 -0.0114237 2.45697 -0.0107848 2.44982 -0.00860086 2.43812 -0.00661557 2.42144 -0.00600524 2.39999 -0.00690245 2.37485 -0.00884071 2.34795 -0.0108426 2.32223 -0.0116304 2.30094 -0.0100605 2.28671 -0.00578327 2.28106 0.000546302 2.28427 0.00933113 2.29489 0.0187994 2.31151 0.0280436 2.33273 0.0350055 2.35715 0.0407264 2.38345 0.0439592 2.41039 0.0450255 2.43693 0.0442268 2.46219 0.0419018 2.48545 0.0384189 2.50623 0.0341527 2.52424 0.02947 2.5394 0.0247039 2.55181 0.0201294 2.56168 0.0159517 2.56933 0.0123028 2.5751 0.00923764 2.57934 0.00675845 2.58237 0.00482053 2.58448 0.00335414 2.58593 0.00227809 2.58688 0.00151122 2.5875 0.000979725 2.5879 0.000621053 2.58814 0.000385148 2.58829 0.000233773 2.58837 0.000138925 2.58842 8.08471e-05 2.58845 4.60508e-05 2.58846 2.56967e-05 2.58847 1.39937e-05 2.58847 7.41474e-06 2.58847 3.79032e-06 2.58847 1.82685e-06 2.58847 7.8986e-07 2.58847 2.49096e-07 2.58847 -3.09228e-08 2.58847 -1.69272e-07 2.58847 -2.38513e-07 2.58847 -2.71815e-07 2.58847 -2.88626e-07 2.58847 -2.93825e-07 2.58847 -3.0006e-07 2.58847 -3.01086e-07 2.58847 -3.01159e-07 2.58847 -3.02174e-07 2.58847 -3.01261e-07 2.58847 -3.00581e-07 2.58847 -3.02862e-07 2.58847 -3.0185e-07 2.58847 -3.02141e-07 2.58847 -3.01541e-07 2.58847 -3.02629e-07 2.58846 -3.02764e-07 2.58846 -3.02549e-07 2.58845 -3.032e-07 2.58844 -3.03844e-07 2.58843 -3.04663e-07 2.58842 -3.05725e-07 2.5884 -3.0702e-07 2.58838 -3.08693e-07 2.58836 -3.10592e-07 2.58834 -3.1291e-07 2.58831 -3.15646e-07 2.58827 -3.18858e-07 2.58823 -3.22631e-07 2.58818 -3.27022e-07 2.58812 -3.32046e-07 2.58805 -3.37815e-07 2.58798 -3.44375e-07 2.58789 -3.51833e-07 2.58778 -3.60225e-07 2.58767 -3.69586e-07 2.58753 -3.79972e-07 2.58738 -3.91421e-07 2.5872 -4.03947e-07 2.587 -4.1752e-07 2.58678 -4.32152e-07 2.58653 -4.47795e-07 2.58626 -4.64348e-07 2.58595 -4.81697e-07 2.58562 -4.99702e-07 2.58525 -5.18168e-07 2.58485 -5.36842e-07 2.58441 -5.55454e-07 2.58394 -5.73713e-07 2.58344 -5.91237e-07 2.5829 -6.07612e-07 2.58234 -6.22276e-07 2.58175 -6.34816e-07 2.58113 -6.4485e-07 2.58048 -6.52042e-07 2.57982 -6.55942e-07 2.57915 -6.5616e-07 2.57847 -6.52297e-07 2.57779 -6.4405e-07 2.57711 -6.31095e-07 2.57645 -6.1321e-07 2.5758 -5.90266e-07 2.57518 -5.62115e-07 2.5746 -5.28784e-07 2.57405 -4.90392e-07 2.57356 -4.47322e-07 2.57312 -4.00018e-07 2.57274 -3.48948e-07 2.57242 -2.94847e-07 2.57218 -2.38506e-07 2.57201 -1.80797e-07 2.57191 -1.22604e-07 2.57189 -6.93472e-08 2.57195 -3.46408e-08 2.57207 3.88172e-08 2.57227 9.79926e-08 2.57253 1.44628e-07 2.57287 1.88782e-07 2.57326 2.29942e-07 2.5737 2.63874e-07 2.57419 2.91759e-07 2.57472 3.13532e-07 2.57527 3.28608e-07 2.57585 3.3692e-07 2.57644 3.38598e-07 2.57703 3.33617e-07 2.57762 3.23216e-07 2.5782 3.0726e-07 2.57877 2.85749e-07 2.57931 2.60221e-07 2.57982 2.31186e-07 2.58029 1.99263e-07 2.58074 1.65186e-07 2.58114 1.29676e-07 2.5815 9.32268e-08 2.58183 5.72654e-08 2.58211 2.1606e-08 2.58235 -1.31949e-08 2.58255 -4.63951e-08 2.58272 -7.75944e-08 2.58286 -1.06538e-07 2.58296 -1.33066e-07 2.58303 -1.57059e-07 2.58308 -1.77803e-07 2.58311 -1.95952e-07 2.58311 -2.10224e-07 2.5831 -2.20243e-07 2.58308 -2.32798e-07 2.58305 -2.42653e-07 2.58301 -2.49001e-07 2.58296 -2.54142e-07 2.5829 -2.57332e-07 2.58285 -2.58984e-07 2.58279 -2.59392e-07 2.58274 -2.58653e-07 2.58268 -2.57402e-07 2.58263 -2.54939e-07 2.58258 -2.51945e-07 2.58253 -2.48216e-07 2.58249 -2.44509e-07 2.58245 -2.39674e-07 2.58241 -2.36458e-07 2.58238 -2.3203e-07 2.58236 -2.29171e-07 2.58233 -2.25275e-07 2.58231 -2.2263e-07 2.5823 -2.21826e-07 2.58228 -2.23205e-07 2.58228 -2.37083e-07 2.58227 -3.00628e-07 2.58226 -5.23931e-07 2.58226 -1.35944e-06 2.58226 -4.59923e-06 2.58225 -1.65397e-05 2.58222 -6.12809e-05 2.58208 -0.00022868 2.58157 -0.000852277 2.57967 -0.00314483 2.57271 -0.0114757 2.54764 -0.0412925 2.45436 -0.153583 -0.500934 2.16237 2.46616 -0.344738 2.34737 -0.111453 2.31455 -0.031347 2.3039 -0.0105962 2.29998 -0.0042458 2.29748 -0.00273245 2.29467 -0.00284623 2.29079 -0.00374292 2.28567 -0.00489204 2.27968 -0.0054286 2.27298 -0.00407003 2.26444 -6.07539e-05 2.25268 0.00511721 2.23694 0.0097127 2.21672 0.0133067 2.19205 0.0158248 2.1637 0.0174829 2.13326 0.0187166 2.10277 0.0198457 2.07513 0.020431 2.05342 0.0213476 2.03989 0.0224836 2.035 0.0235684 2.03842 0.0246745 2.04907 0.02499 2.06502 0.0255367 2.08426 0.0252753 2.1052 0.024461 2.12656 0.0231237 2.1473 0.0213337 2.16662 0.0191939 2.18401 0.0168271 2.19915 0.0143672 2.21193 0.0119431 2.22241 0.00966418 2.23075 0.00761248 2.23721 0.00583925 2.24208 0.00436207 2.24566 0.00317569 2.24822 0.00225413 2.25001 0.00156088 2.25122 0.001055 2.25203 0.000696447 2.25256 0.000449275 2.25289 0.000283364 2.25309 0.000174818 2.25322 0.000105532 2.25329 6.23441e-05 2.25333 3.60349e-05 2.25335 2.03556e-05 2.25336 1.12268e-05 2.25337 6.00621e-06 2.25337 3.08549e-06 2.25337 1.48466e-06 2.25337 6.20708e-07 2.25337 1.681e-07 2.25337 -6.64586e-08 2.25337 -1.90277e-07 2.25337 -2.50009e-07 2.25337 -2.80535e-07 2.25337 -2.95004e-07 2.25337 -3.02876e-07 2.25337 -3.03724e-07 2.25337 -3.08137e-07 2.25337 -3.0822e-07 2.25337 -3.07882e-07 2.25338 -3.08755e-07 2.25338 -3.07737e-07 2.25338 -3.0698e-07 2.25338 -3.09356e-07 2.25338 -3.0829e-07 2.25337 -3.0861e-07 2.25337 -3.07911e-07 2.25337 -3.09137e-07 2.25337 -3.09235e-07 2.25336 -3.08977e-07 2.25336 -3.09697e-07 2.25335 -3.10341e-07 2.25334 -3.11189e-07 2.25333 -3.1228e-07 2.25331 -3.13597e-07 2.2533 -3.15311e-07 2.25328 -3.17286e-07 2.25326 -3.19651e-07 2.25323 -3.2246e-07 2.2532 -3.25752e-07 2.25316 -3.29615e-07 2.25312 -3.34119e-07 2.25307 -3.39274e-07 2.25301 -3.45175e-07 2.25294 -3.51909e-07 2.25287 -3.59545e-07 2.25278 -3.68156e-07 2.25267 -3.7775e-07 2.25255 -3.88398e-07 2.25242 -4.00141e-07 2.25227 -4.12983e-07 2.2521 -4.26899e-07 2.2519 -4.41894e-07 2.25169 -4.57931e-07 2.25145 -4.74902e-07 2.25118 -4.92688e-07 2.25089 -5.1114e-07 2.25057 -5.30064e-07 2.25022 -5.49211e-07 2.24984 -5.68285e-07 2.24943 -5.8701e-07 2.24899 -6.04985e-07 2.24853 -6.21763e-07 2.24804 -6.3681e-07 2.24752 -6.49678e-07 2.24698 -6.59966e-07 2.24642 -6.67329e-07 2.24585 -6.71324e-07 2.24526 -6.71535e-07 2.24467 -6.67551e-07 2.24407 -6.59071e-07 2.24349 -6.45781e-07 2.24291 -6.27442e-07 2.24234 -6.03915e-07 2.24181 -5.75052e-07 2.2413 -5.40891e-07 2.24082 -5.0155e-07 2.24039 -4.57396e-07 2.24001 -4.08898e-07 2.23968 -3.56544e-07 2.2394 -3.01057e-07 2.23919 -2.43272e-07 2.23904 -1.84082e-07 2.23896 -1.24346e-07 2.23894 -6.97146e-08 2.23899 -3.43134e-08 2.2391 4.15348e-08 2.23927 1.01925e-07 2.2395 1.49852e-07 2.23979 1.95145e-07 2.24013 2.37411e-07 2.24051 2.72186e-07 2.24094 3.00814e-07 2.2414 3.23151e-07 2.24188 3.38616e-07 2.24239 3.47143e-07 2.2429 3.48857e-07 2.24342 3.43727e-07 2.24393 3.33039e-07 2.24444 3.16646e-07 2.24493 2.94545e-07 2.24539 2.68334e-07 2.24584 2.3852e-07 2.24625 2.05753e-07 2.24664 1.70767e-07 2.24699 1.34292e-07 2.24731 9.68685e-08 2.24759 5.99575e-08 2.24783 2.33304e-08 2.24804 -1.238e-08 2.24822 -4.64497e-08 2.24837 -7.84603e-08 2.24849 -1.08157e-07 2.24857 -1.35369e-07 2.24864 -1.59998e-07 2.24868 -1.81277e-07 2.2487 -1.99932e-07 2.24871 -2.14532e-07 2.2487 -2.24842e-07 2.24868 -2.37695e-07 2.24865 -2.47783e-07 2.24862 -2.5428e-07 2.24857 -2.59548e-07 2.24853 -2.62811e-07 2.24848 -2.64536e-07 2.24843 -2.64939e-07 2.24838 -2.64201e-07 2.24833 -2.62924e-07 2.24829 -2.6045e-07 2.24824 -2.57358e-07 2.2482 -2.53654e-07 2.24817 -2.49776e-07 2.24813 -2.45174e-07 2.2481 -2.41384e-07 2.24807 -2.3708e-07 2.24805 -2.33693e-07 2.24803 -2.30095e-07 2.24801 -2.27228e-07 2.248 -2.25307e-07 2.24799 -2.24547e-07 2.24798 -2.29527e-07 2.24797 -2.58427e-07 2.24797 -3.57744e-07 2.24797 -7.47743e-07 2.24796 -2.2469e-06 2.24796 -7.783e-06 2.24793 -2.85337e-05 2.24781 -0.00010617 2.24736 -0.000395358 2.24567 -0.00145836 2.23952 -0.00531814 2.21737 -0.01913 2.13516 -0.0713746 -0.238289 1.87252 1.67105 1.5596 1.52826 1.51767 1.51343 1.51071 1.50787 1.50414 1.49925 1.49382 1.48976 1.48974 1.49506 1.50503 1.51842 1.53425 1.55143 1.56859 1.58581 1.60443 1.62478 1.64689 1.67039 1.69539 1.72203 1.74926 1.77587 1.80131 1.82511 1.84689 1.86637 1.88337 1.89783 1.90983 1.91952 1.92714 1.93299 1.93735 1.94052 1.94277 1.94432 1.94537 1.94606 1.94651 1.94679 1.94696 1.94706 1.94712 1.94715 1.94717 1.94718 1.94718 1.94719 1.94719 1.94719 1.94718 1.94718 1.94718 1.94718 1.94718 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94719 1.94718 1.94718 1.94717 1.94717 1.94716 1.94715 1.94714 1.94713 1.94711 1.94709 1.94707 1.94704 1.94701 1.94697 1.94693 1.94688 1.94682 1.94675 1.94667 1.94658 1.94648 1.94636 1.94623 1.94608 1.94591 1.94572 1.94551 1.94528 1.94503 1.94475 1.94444 1.94411 1.94376 1.94338 1.94297 1.94254 1.94209 1.94162 1.94114 1.94064 1.94013 1.93961 1.93909 1.93858 1.93808 1.93759 1.93712 1.93667 1.93626 1.93589 1.93555 1.93526 1.93503 1.93484 1.93471 1.93464 1.93463 1.93467 1.93476 1.93491 1.93511 1.93537 1.93566 1.936 1.93637 1.93677 1.93719 1.93763 1.93808 1.93853 1.93898 1.93942 1.93985 1.94026 1.94064 1.94101 1.94134 1.94165 1.94192 1.94217 1.94238 1.94257 1.94272 1.94285 1.94295 1.94303 1.94309 1.94312 1.94314 1.94315 1.94314 1.94312 1.9431 1.94307 1.94303 1.94299 1.94295 1.94291 1.94286 1.94282 1.94278 1.94275 1.94271 1.94268 1.94265 1.94262 1.9426 1.94258 1.94256 1.94255 1.94253 1.94253 1.94252 1.94251 1.94251 1.94251 1.94251 1.9425 1.94247 1.94237 1.94198 1.94053 1.93521 1.91609 1.84472 1.60644 2.61009 -0.1153 2.65097 -0.0408768 2.67981 -0.0288469 2.69231 -0.0124996 2.69356 -0.00124261 2.68745 0.00610569 2.67554 0.0119143 2.65909 0.0164462 2.63931 0.0197846 2.61689 0.0224174 2.59211 0.0247868 2.56487 0.0272341 2.53493 0.0299413 2.50148 0.0334503 2.46223 0.039256 2.41395 0.0482773 2.35272 0.0612301 2.27372 0.0789984 2.16648 0.10724 0.162759 2.00372 2.94862 -0.218057 3.00445 -0.0967077 3.04447 -0.0688665 3.07429 -0.0423117 3.09722 -0.0241711 3.116 -0.0126806 3.1314 -0.00347784 3.14416 0.00368182 3.15496 0.00899091 3.16396 0.0134136 3.17091 0.017838 3.17527 0.0228779 3.17627 0.0289417 3.17257 0.0371493 3.16118 0.0506448 3.13819 0.0712697 3.09874 0.100683 3.03747 0.14026 2.94129 0.203423 0.304712 2.79934 3.34754 -0.331284 3.41547 -0.164637 3.45582 -0.109216 3.47983 -0.066317 3.49162 -0.0359597 3.49433 -0.0153906 3.48942 0.00143091 3.47861 0.0144948 3.46357 0.0240349 3.44524 0.0317429 3.42403 0.0390463 3.40006 0.0468527 3.37322 0.0557816 3.34307 0.0672943 3.3073 0.0864164 3.26292 0.115654 3.20633 0.157275 3.13365 0.212939 3.03734 0.299732 0.445765 2.89629 3.77872 -0.442099 3.84892 -0.23483 3.8921 -0.152399 3.92222 -0.0964346 3.9434 -0.0571379 3.95945 -0.0314417 3.97106 -0.0101814 3.9795 0.00605608 3.98582 0.0177211 3.9902 0.0273566 3.99235 0.0369007 3.99153 0.047671 3.98688 0.0604394 3.97698 0.0771943 3.95787 0.105526 3.92482 0.148702 3.8713 0.210794 3.78953 0.294717 3.66896 0.420297 0.613987 3.50074 4.25966 -0.554492 4.34102 -0.316192 4.3946 -0.205974 4.42815 -0.129981 4.4473 -0.0762904 4.45928 -0.0434193 4.46147 -0.01237 4.45685 0.0106764 4.44711 0.0274614 4.43316 0.0413101 4.41542 0.0546463 4.39381 0.0692782 4.36823 0.0860244 4.33773 0.107695 4.29811 0.145143 4.24778 0.199031 4.1835 0.275082 4.09817 0.380042 3.98423 0.534242 0.773794 3.82442 4.77805 -0.667223 4.86195 -0.400082 4.91205 -0.256075 4.93748 -0.155413 4.95771 -0.0965213 4.97375 -0.0594512 4.98069 -0.0193073 4.98452 0.00684131 4.98578 0.0262044 4.985 0.0420911 4.98202 0.0576279 4.97606 0.0752365 4.96676 0.0953285 4.95594 0.118517 4.93204 0.169047 4.89186 0.239213 4.82847 0.338469 4.73352 0.474994 4.59785 0.669914 0.958774 4.41287 20.0796 -1.03476 20.3808 -0.701303 20.6147 -0.489954 20.8162 -0.35686 20.9771 -0.257486 21.0822 -0.164534 21.1295 -0.0665503 21.1387 -0.00242666 21.1057 0.059233 21.0368 0.110976 20.9337 0.160805 20.792 0.216878 20.6051 0.282295 20.3617 0.361902 20.0719 0.458828 19.7311 0.580065 19.3323 0.737239 18.8608 0.946588 18.3006 1.23013 1.61681 17.6425 18.8516 -1.28565 19.0475 -0.897175 19.1851 -0.627547 19.2539 -0.425619 19.2644 -0.268025 19.2532 -0.153331 19.2656 -0.0789165 19.2829 -0.0196977 19.3118 0.0302541 19.3533 0.0695219 19.3879 0.126267 19.4215 0.183238 19.4504 0.253389 19.4669 0.345408 19.4563 0.469481 19.3992 0.637164 19.2738 0.862613 19.057 1.16348 18.7278 1.55925 2.06684 18.2778 17.8683 -1.43553 17.9734 -1.00225 18.0511 -0.705234 18.1161 -0.490643 18.1876 -0.339486 18.2592 -0.22492 18.3015 -0.121246 18.3026 -0.0207672 18.2818 0.0510553 18.2456 0.105729 18.2059 0.165949 18.1566 0.232608 18.0987 0.31122 18.0339 0.410252 17.9635 0.53993 17.887 0.713666 17.7999 0.949708 17.6915 1.27184 17.5419 1.7089 2.29187 17.3169 17.0286 -1.48067 17.0435 -1.01714 17.0481 -0.709829 17.0413 -0.483827 17.0091 -0.307303 16.9592 -0.174974 16.9261 -0.0882074 16.9348 -0.0294363 16.9622 0.0236559 16.9956 0.0723821 17.0325 0.129063 17.0757 0.18937 17.1237 0.26326 17.1742 0.359705 17.224 0.490182 17.2678 0.669807 17.2987 0.918867 17.3062 1.26436 17.2749 1.74014 2.383 17.1838 16.2948 -1.4232 16.227 -0.949315 16.1754 -0.6582 16.1504 -0.458775 16.1589 -0.315851 16.1902 -0.2062 16.215 -0.112999 16.2117 -0.0262166 16.2016 0.0338486 16.1926 0.0813901 16.1915 0.130167 16.196 0.184848 16.2089 0.250399 16.2336 0.334987 16.2745 0.449263 16.336 0.60832 16.4206 0.834281 16.5255 1.15945 16.6364 1.62925 2.3022 16.7172 15.6332 -1.25875 15.485 -0.801073 15.375 -0.548178 15.2812 -0.364941 15.1914 -0.226064 15.1143 -0.129109 15.068 -0.0667067 15.0605 -0.0186944 15.0749 0.0194577 15.1068 0.0495088 15.1444 0.0926085 15.1952 0.13402 15.261 0.184583 15.3441 0.251959 15.4483 0.345005 15.5793 0.477277 15.7439 0.669721 15.9474 0.955976 16.1855 1.39113 2.06283 16.4249 15.0194 -0.981373 14.8008 -0.582504 14.6728 -0.420108 14.6128 -0.30494 14.5919 -0.205165 14.5921 -0.129258 14.593 -0.0676371 14.5998 -0.0255212 14.6096 0.00968827 14.6169 0.0422347 14.6398 0.0697456 14.6755 0.0982625 14.7251 0.134971 14.7946 0.182528 14.8923 0.247269 15.0295 0.340036 15.2213 0.478004 15.4849 0.692374 15.8328 1.04323 1.65135 16.2443 14.4422 -0.578938 14.1528 -0.293084 13.9323 -0.199597 13.7607 -0.133363 13.6425 -0.086965 13.564 -0.0507523 13.5173 -0.0208696 13.495 -0.00324608 13.4938 0.0108895 13.5122 0.0238536 13.5459 0.0360789 13.5957 0.0484219 13.6683 0.0623964 13.7653 0.0855351 13.8964 0.116164 14.0745 0.161932 14.3214 0.231117 14.6702 0.343627 15.1661 0.547331 0.99297 15.8245 3.21999 -0.46275 3.15331 -0.226397 3.11426 -0.160551 3.08789 -0.106988 3.06974 -0.0688106 3.06021 -0.0412179 3.05771 -0.0183643 3.05874 -0.00427257 3.06291 0.00672024 3.06982 0.0169387 3.07934 0.0265592 3.09147 0.0362915 3.10618 0.0476849 3.12619 0.0655269 3.15332 0.0890331 3.19075 0.124508 3.24411 0.177763 3.3225 0.265237 3.44211 0.427722 0.803951 3.63113 2.7765 -0.353887 2.7147 -0.164602 2.67348 -0.119325 2.64433 -0.0778369 2.62434 -0.0488218 2.61136 -0.0282349 2.60454 -0.0115391 2.6013 -0.00102652 2.60114 0.00687723 2.60394 0.0141384 2.60952 0.0209794 2.61792 0.0278852 2.62974 0.0358722 2.64684 0.0484299 2.67054 0.0653343 2.70373 0.0913183 2.75166 0.12983 2.82328 0.193624 2.93622 0.314784 0.617298 3.12287 2.39854 -0.255197 2.34876 -0.114829 2.31681 -0.0873671 2.29627 -0.0572942 2.28445 -0.0370037 2.27887 -0.0226534 2.27855 -0.0112152 2.28142 -0.00389097 2.28657 0.00173059 2.29369 0.0070148 2.3026 0.0120685 2.31328 0.0172047 2.32591 0.0232461 2.3418 0.0325379 2.36213 0.0450065 2.38943 0.0640195 2.42782 0.0914453 2.48396 0.137478 2.57361 0.225143 0.449738 2.74117 2.06769 -0.160518 2.02224 -0.0693823 1.98842 -0.0535465 1.96503 -0.033895 1.94888 -0.020853 1.93811 -0.0118819 1.93159 -0.00468921 1.92778 -8.7035e-05 1.9262 0.00330966 1.92683 0.00638928 1.92959 0.00930886 1.93455 0.0122428 1.94214 0.0156566 1.95371 0.020971 1.97053 0.0281854 1.99531 0.039245 2.03124 0.0555128 2.08591 0.0828143 2.17515 0.1359 0.285665 2.33923 1.79078 -0.0787745 1.75435 -0.032951 1.7292 -0.0284005 1.71428 -0.0189721 1.70652 -0.0130913 1.70371 -0.00906715 1.70484 -0.00581928 1.70846 -0.0037042 1.71385 -0.00208112 1.72078 -0.000543014 1.72908 0.00101763 1.73869 0.00263278 1.74979 0.00455691 1.76329 0.00746545 1.7801 0.011382 1.80206 0.0172817 1.83175 0.0258226 1.87453 0.0400375 1.94269 0.067747 0.143444 2.08491 1.52766 1.49471 1.46631 1.44734 1.43425 1.42519 1.41937 1.41567 1.41359 1.41304 1.41406 1.41669 1.42125 1.42872 1.4401 1.45738 1.48321 1.52325 1.59099 1.73444 1.66366 0.340069 1.55146 0.112206 1.5196 0.0318609 1.5087 0.0108979 1.50435 0.00434151 1.50188 0.00247067 1.49969 0.0021869 1.49701 0.0026846 1.49345 0.00355055 1.48914 0.00430241 1.4853 0.00383275 1.48424 0.00107451 1.48772 -0.00337491 1.49571 -0.00770981 1.5073 -0.0114377 1.52152 -0.0141995 1.53752 -0.0160995 1.55404 -0.0173145 1.5703 -0.0187335 1.58729 -0.0191138 1.6059 -0.0199635 1.62609 -0.0208307 1.64786 -0.021953 1.67101 -0.0231139 1.69589 -0.024045 1.7222 -0.0244341 1.74864 -0.0249387 1.77446 -0.0246892 1.79917 -0.0238966 1.82232 -0.0226006 1.84355 -0.020865 1.86258 -0.0187924 1.87921 -0.0164971 1.89341 -0.01411 1.90521 -0.0117553 1.91477 -0.00953797 1.92233 -0.00753806 1.92814 -0.00580376 1.9325 -0.00435463 1.93568 -0.00318574 1.93796 -0.0022735 1.93954 -0.00158358 1.94061 -0.00107717 1.94133 -0.000715941 1.94179 -0.000465205 1.94209 -0.000295667 1.94227 -0.000183878 1.94238 -0.000111936 1.94244 -6.67039e-05 1.94248 -3.89013e-05 1.9425 -2.21794e-05 1.94251 -1.23441e-05 1.94252 -6.66286e-06 1.94252 -3.45051e-06 1.94253 -1.67271e-06 1.94253 -7.04516e-07 1.94253 -1.8689e-07 1.94253 8.70241e-08 1.94253 2.2665e-07 1.94253 3.03018e-07 1.94253 3.38376e-07 1.94253 3.54568e-07 1.94253 3.62961e-07 1.94254 3.63398e-07 1.94254 3.64835e-07 1.94254 3.65031e-07 1.94254 3.61135e-07 1.94254 3.69029e-07 1.94255 3.67705e-07 1.94255 3.68665e-07 1.94255 3.68807e-07 1.94255 3.70132e-07 1.94256 3.68902e-07 1.94256 3.68073e-07 1.94256 3.67789e-07 1.94256 3.65384e-07 1.94256 3.68003e-07 1.94256 3.67228e-07 1.94256 3.6514e-07 1.94257 3.64907e-07 1.94257 3.65148e-07 1.94257 3.64595e-07 1.94257 3.62812e-07 1.94257 3.64009e-07 1.94257 3.59356e-07 1.94257 3.59469e-07 1.94257 3.42858e-07 1.94257 3.1363e-07 1.94257 1.62559e-07 1.94257 -3.79325e-07 1.94257 -2.34904e-06 1.94259 -9.49612e-06 1.94262 -3.54635e-05 1.94276 -0.000129665 1.94323 -0.000468061 1.94493 -0.00169438 1.95119 -0.00625328 1.97553 -0.0243417 2.10938 -0.133844 -0.382242 2.49163 2.45521 0.6842 2.33585 0.231568 2.30251 0.0652045 2.29154 0.0218734 2.2876 0.00828303 2.28552 0.00454218 2.28355 0.00414842 2.28087 0.00536106 2.27717 0.00724719 2.27253 0.00893656 2.26733 0.00902808 2.26091 0.00749021 2.25204 0.00547159 2.23989 0.00441385 2.22378 0.00465434 2.20333 0.00624519 2.17867 0.00854251 2.1507 0.0106288 2.12096 0.0108187 2.09158 0.00933356 2.06553 0.00482636 2.04565 -0.00159714 2.03375 -0.0102764 2.0302 -0.0196117 2.03465 -0.0282154 2.04586 -0.0348527 2.06185 -0.0403115 2.0809 -0.0433007 2.10154 -0.0442395 2.12254 -0.0434035 2.14291 -0.0411052 2.1619 -0.0377029 2.179 -0.0335449 2.1939 -0.0289861 2.20651 -0.0243461 2.21688 -0.0198878 2.22515 -0.0158102 2.23159 -0.0122374 2.23647 -0.00922759 2.24006 -0.00678302 2.24265 -0.00486344 2.24447 -0.00340339 2.24572 -0.00232589 2.24655 -0.00155319 2.2471 -0.00101407 2.24745 -0.000647654 2.24767 -0.00040482 2.2478 -0.000247752 2.24788 -0.000148504 2.24793 -8.71978e-05 2.24795 -5.01353e-05 2.24797 -2.82412e-05 2.24797 -1.55262e-05 2.24798 -8.30476e-06 2.24798 -4.2853e-06 2.24798 -2.08968e-06 2.24798 -9.08331e-07 2.24798 -2.8381e-07 2.24799 3.72966e-08 2.24799 2.05466e-07 2.24799 2.86927e-07 2.24799 3.25763e-07 2.24799 3.45044e-07 2.24799 3.50872e-07 2.248 3.54768e-07 2.248 3.56151e-07 2.248 3.5308e-07 2.248 3.60862e-07 2.248 3.59807e-07 2.24801 3.60735e-07 2.24801 3.60866e-07 2.24801 3.62092e-07 2.24802 3.60869e-07 2.24802 3.60003e-07 2.24802 3.59687e-07 2.24802 3.57319e-07 2.24802 3.59782e-07 2.24802 3.58985e-07 2.24803 3.56969e-07 2.24803 3.56707e-07 2.24803 3.56937e-07 2.24803 3.56355e-07 2.24803 3.54594e-07 2.24803 3.55525e-07 2.24803 3.50014e-07 2.24803 3.46125e-07 2.24803 3.1657e-07 2.24803 2.41373e-07 2.24803 -7.88568e-08 2.24803 -1.23191e-06 2.24804 -5.40764e-06 2.24805 -2.05683e-05 2.24809 -7.56464e-05 2.24824 -0.000275482 2.24877 -0.000993423 2.25067 -0.00359521 2.2577 -0.0132741 2.28487 -0.0515076 2.42969 -0.278652 -0.794899 2.84235 2.60161 0.978884 2.49398 0.339201 2.46268 0.0965067 2.45238 0.0321755 2.44897 0.0116931 2.44791 0.00559913 2.44796 0.00408638 2.44864 0.0046772 2.44947 0.00642115 2.44961 0.00879368 2.44813 0.0104993 2.44397 0.011642 2.43619 0.0132334 2.42409 0.0164915 2.4074 0.0213362 2.38645 0.0271702 2.36235 0.0325516 2.33701 0.0355948 2.31324 0.0340844 2.29413 0.0282081 2.28197 0.0169274 2.27792 0.00253949 2.28219 -0.0140003 2.29343 -0.0304014 2.31026 -0.0447823 2.33136 -0.0558601 2.35542 -0.0643657 2.38125 -0.0691444 2.40764 -0.0707013 2.43358 -0.0694081 2.45824 -0.0658018 2.48094 -0.060428 2.50122 -0.0538338 2.51881 -0.0465816 2.53364 -0.0391821 2.54581 -0.0320527 2.55552 -0.0255194 2.56307 -0.0197836 2.56878 -0.0149411 2.573 -0.0110001 2.57603 -0.00789946 2.57816 -0.00553655 2.57962 -0.00378946 2.5806 -0.00253435 2.58124 -0.00165711 2.58165 -0.0010599 2.58191 -0.000663478 2.58206 -0.000406674 2.58216 -0.000244169 2.58221 -0.000143648 2.58224 -8.27909e-05 2.58226 -4.68009e-05 2.58227 -2.58689e-05 2.58227 -1.39677e-05 2.58228 -7.33366e-06 2.58228 -3.7078e-06 2.58228 -1.75383e-06 2.58228 -7.21162e-07 2.58228 -1.88045e-07 2.58228 8.79263e-08 2.58228 2.23807e-07 2.58229 2.89538e-07 2.58229 3.21814e-07 2.58229 3.34063e-07 2.58229 3.40862e-07 2.5823 3.43618e-07 2.5823 3.41426e-07 2.5823 3.49059e-07 2.5823 3.483e-07 2.58231 3.49208e-07 2.58231 3.49373e-07 2.58231 3.50559e-07 2.58232 3.49388e-07 2.58232 3.48549e-07 2.58232 3.48242e-07 2.58232 3.45997e-07 2.58232 3.4832e-07 2.58233 3.47542e-07 2.58233 3.4563e-07 2.58233 3.45361e-07 2.58233 3.45588e-07 2.58233 3.44973e-07 2.58233 3.43238e-07 2.58233 3.43871e-07 2.58233 3.37322e-07 2.58233 3.28828e-07 2.58233 2.84608e-07 2.58233 1.57381e-07 2.58233 -3.5523e-07 2.58233 -2.20719e-06 2.58234 -8.90819e-06 2.58235 -3.32417e-05 2.5824 -0.000121641 2.58257 -0.000442382 2.58318 -0.00159485 2.58536 -0.00577162 2.59341 -0.0213188 2.62443 -0.0825194 2.78294 -0.437152 -1.24238 3.23043 3.11551 1.36412 2.98598 0.468736 2.94867 0.13382 2.93607 0.0447755 2.93207 0.0156932 2.93034 0.00733077 2.92912 0.0052972 2.92766 0.00613028 2.92543 0.00864267 2.92168 0.0125345 2.91578 0.0163918 2.90672 0.0206947 2.89347 0.0264591 2.87523 0.0347103 2.85169 0.0448564 2.82332 0.0555053 2.79149 0.0642738 2.75847 0.0683845 2.72709 0.0653675 2.70006 0.0552238 2.6796 0.0375204 2.66705 0.0156319 2.66318 -0.0096956 2.66774 -0.0347428 2.68 -0.0569964 2.69862 -0.0744874 2.7218 -0.0876856 2.74792 -0.0955367 2.77549 -0.0984658 2.80316 -0.0972152 2.8298 -0.092525 2.85453 -0.0852111 2.87675 -0.0760768 2.8961 -0.065941 2.91245 -0.055544 2.92589 -0.045494 2.93663 -0.036258 2.94498 -0.0281352 2.95131 -0.0212678 2.95598 -0.0156712 2.95934 -0.0112629 2.9617 -0.00790007 2.96332 -0.00541128 2.96441 -0.00362172 2.96512 -0.00236986 2.96557 -0.00151691 2.96585 -0.000950286 2.96603 -0.000582936 2.96613 -0.000350301 2.96619 -0.000206293 2.96622 -0.000119044 2.96624 -6.74118e-05 2.96625 -3.73594e-05 2.96626 -2.02618e-05 2.96626 -1.07234e-05 2.96626 -5.50804e-06 2.96626 -2.69514e-06 2.96627 -1.20848e-06 2.96627 -4.39451e-07 2.96627 -4.34466e-08 2.96627 1.53041e-07 2.96627 2.4874e-07 2.96627 2.95508e-07 2.96628 3.14923e-07 2.96628 3.2497e-07 2.96628 3.29255e-07 2.96629 3.28038e-07 2.96629 3.35516e-07 2.96629 3.35076e-07 2.9663 3.3596e-07 2.9663 3.36173e-07 2.9663 3.3731e-07 2.96631 3.362e-07 2.96631 3.35382e-07 2.96631 3.35096e-07 2.96631 3.32979e-07 2.96632 3.35154e-07 2.96632 3.34398e-07 2.96632 3.32599e-07 2.96632 3.3232e-07 2.96632 3.32551e-07 2.96632 3.319e-07 2.96632 3.3019e-07 2.96632 3.30481e-07 2.96632 3.22745e-07 2.96632 3.09014e-07 2.96632 2.48045e-07 2.96632 6.14255e-08 2.96632 -6.70794e-07 2.96633 -3.32042e-06 2.96633 -1.29037e-05 2.96635 -4.77066e-05 2.96641 -0.000174133 2.9666 -0.000632845 2.96729 -0.00228133 2.96978 -0.00825566 2.97897 -0.0304995 3.01417 -0.11771 3.18426 -0.607234 -1.72181 3.6637 3.47499 1.71355 3.34976 0.59397 3.30981 0.173774 3.29579 0.0588026 3.29063 0.0208462 3.28846 0.00950046 3.28751 0.00623198 3.28711 0.00652588 3.28678 0.00896958 3.28588 0.0134344 3.2835 0.0187669 3.27849 0.0256843 3.26963 0.0353056 3.25575 0.0485667 3.2361 0.0644925 3.21065 0.0809151 3.18048 0.0943296 3.14789 0.100919 3.116 0.0972397 3.08839 0.0829193 3.06825 0.0581558 3.05734 0.0271397 3.05652 -0.00853882 3.06505 -0.0431529 3.08171 -0.0736396 3.10471 -0.0975699 3.13209 -0.115408 3.16223 -0.126004 3.19362 -0.130098 3.22486 -0.128614 3.25477 -0.122538 3.28245 -0.112959 3.30728 -0.100939 3.32889 -0.087564 3.34715 -0.0738162 3.36216 -0.0605072 3.37416 -0.0482585 3.3835 -0.0374725 3.39058 -0.0283458 3.39581 -0.0209003 3.39957 -0.0150306 3.40222 -0.0105492 3.40404 -0.00723011 3.40525 -0.0048418 3.40605 -0.00316997 3.40656 -0.00203016 3.40688 -0.0012725 3.40707 -0.000781024 3.40719 -0.000469608 3.40725 -0.000276734 3.40729 -0.000159818 3.40731 -9.05972e-05 3.40733 -5.02879e-05 3.40733 -2.73448e-05 3.40734 -1.45387e-05 3.40734 -7.53473e-06 3.40734 -3.75516e-06 3.40734 -1.75746e-06 3.40734 -7.22854e-07 3.40734 -1.91689e-07 3.40734 7.30379e-08 3.40735 2.02484e-07 3.40735 2.65583e-07 3.40735 2.93057e-07 3.40736 3.06773e-07 3.40736 3.12786e-07 3.40736 3.12657e-07 3.40737 3.19988e-07 3.40737 3.19886e-07 3.40738 3.2075e-07 3.40738 3.21015e-07 3.40738 3.2209e-07 3.40739 3.21048e-07 3.40739 3.20264e-07 3.40739 3.19998e-07 3.4074 3.18021e-07 3.4074 3.20033e-07 3.4074 3.19305e-07 3.4074 3.17628e-07 3.4074 3.17345e-07 3.4074 3.17577e-07 3.4074 3.1689e-07 3.4074 3.15202e-07 3.4074 3.15114e-07 3.4074 3.06001e-07 3.4074 2.86351e-07 3.4074 2.06288e-07 3.40741 -4.77758e-08 3.40741 -1.02965e-06 3.40741 -4.5859e-06 3.40742 -1.7445e-05 3.40744 -6.41468e-05 3.4075 -0.000233789 3.40772 -0.000849253 3.40851 -0.00306157 3.41134 -0.0110778 3.42176 -0.0409175 3.46136 -0.1573 3.63869 -0.784556 -2.22598 4.14287 4.00047 2.12595 3.86166 0.732794 3.82007 0.215367 3.8047 0.0741705 3.80045 0.0251 3.79886 0.0110739 3.79807 0.00701954 3.79731 0.0072835 3.79607 0.0102036 3.79341 0.016081 3.78865 0.0235159 3.78064 0.0336802 3.76824 0.0476874 3.7505 0.0662838 3.72692 0.0880508 3.69779 0.109986 3.66449 0.127575 3.62946 0.135925 3.5959 0.1308 3.56738 0.111608 3.54684 0.0793712 3.53572 0.0388268 3.53483 -0.00732911 3.54387 -0.052086 3.56177 -0.0915356 3.58659 -0.122505 3.61613 -0.145387 3.64867 -0.158921 3.68256 -0.164256 3.71628 -0.162517 3.74859 -0.154961 3.77853 -0.142961 3.8054 -0.12785 3.82881 -0.110993 3.84862 -0.0936341 3.86491 -0.0768038 3.87795 -0.0612934 3.8881 -0.0476194 3.89579 -0.0360399 3.90147 -0.0265856 3.90557 -0.0191272 3.90844 -0.0134296 3.91042 -0.00920762 3.91174 -0.00616824 3.91261 -0.00403977 3.91316 -0.00258808 3.9135 -0.00162276 3.91372 -0.000996348 3.91384 -0.000599304 3.91392 -0.000353312 3.91396 -0.000204154 3.91398 -0.000115811 3.91399 -6.43508e-05 3.914 -3.50516e-05 3.914 -1.86917e-05 3.91401 -9.74186e-06 3.91401 -4.91042e-06 3.91401 -2.35642e-06 3.91401 -1.03262e-06 3.91401 -3.54199e-07 3.91401 -1.51149e-08 3.91402 1.51127e-07 3.91402 2.32058e-07 3.91402 2.68322e-07 3.91403 2.86049e-07 3.91403 2.93957e-07 3.91404 2.95001e-07 3.91404 3.02182e-07 3.91404 3.02428e-07 3.91405 3.03279e-07 3.91405 3.03595e-07 3.91406 3.04609e-07 3.91406 3.03645e-07 3.91407 3.02896e-07 3.91407 3.02653e-07 3.91407 3.00828e-07 3.91408 3.02662e-07 3.91408 3.01972e-07 3.91408 3.00421e-07 3.91408 3.00142e-07 3.91408 3.00369e-07 3.91408 2.99649e-07 3.91408 2.9798e-07 3.91408 2.97473e-07 3.91408 2.86789e-07 3.91408 2.60502e-07 3.91408 1.58673e-07 3.91408 -1.7133e-07 3.91409 -1.43543e-06 3.91409 -6.01599e-06 3.9141 -2.25763e-05 3.91412 -8.27213e-05 3.91419 -0.000301175 3.91444 -0.00109362 3.91533 -0.00394286 3.91852 -0.0142613 3.93023 -0.0526159 3.97408 -0.201146 4.14847 -0.958935 -2.73845 4.66095 16.4419 3.3266 15.9908 1.18392 15.7844 0.421776 15.7023 0.156259 15.6607 0.0666641 15.6364 0.0353672 15.6218 0.021553 15.6118 0.0173301 15.6035 0.0184202 15.5976 0.0219739 15.5902 0.0309031 15.5789 0.0448702 15.5617 0.0649146 15.5366 0.0913088 15.5028 0.121801 15.4609 0.151758 15.4139 0.174451 15.3675 0.182374 15.3296 0.168972 15.3099 0.13289 15.3157 0.0761634 15.3488 0.00731035 15.4121 -0.069804 15.4996 -0.139376 15.6069 -0.198849 15.7289 -0.245089 15.8607 -0.278758 15.9987 -0.298122 16.1384 -0.304908 16.2755 -0.300282 16.4061 -0.28592 16.5268 -0.263892 16.6351 -0.23631 16.7296 -0.205511 16.8096 -0.173692 16.8755 -0.142737 16.9283 -0.114102 16.9695 -0.0887897 17.0007 -0.0672947 17.0238 -0.0497054 17.0405 -0.0358025 17.0522 -0.0251642 17.0603 -0.0172696 17.0657 -0.0115791 17.0692 -0.00758967 17.0714 -0.00486602 17.0729 -0.00305326 17.0737 -0.001876 17.0742 -0.00112924 17.0745 -0.000666252 17.0747 -0.000385365 17.0748 -0.000218863 17.0748 -0.000121833 17.0749 -6.65556e-05 17.0749 -3.567e-05 17.0749 -1.87672e-05 17.0749 -9.6366e-06 17.0749 -4.80886e-06 17.0749 -2.30339e-06 17.0749 -1.02296e-06 17.0749 -3.80188e-07 17.0749 -6.35782e-08 17.075 9.02987e-08 17.075 1.62363e-07 17.075 1.96605e-07 17.075 2.12299e-07 17.075 2.17916e-07 17.075 2.248e-07 17.0751 2.26214e-07 17.0751 2.27124e-07 17.0751 2.27587e-07 17.0751 2.2837e-07 17.0751 2.27713e-07 17.0752 2.2715e-07 17.0752 2.26981e-07 17.0752 2.2574e-07 17.0752 2.26925e-07 17.0752 2.26408e-07 17.0752 2.25308e-07 17.0752 2.25129e-07 17.0752 2.25283e-07 17.0752 2.24509e-07 17.0752 2.22859e-07 17.0752 2.20809e-07 17.0752 2.03429e-07 17.0752 1.50622e-07 17.0752 -4.24825e-08 17.0752 -6.8081e-07 17.0752 -3.102e-06 17.0753 -1.18755e-05 17.0753 -4.35851e-05 17.0754 -0.000158744 17.0757 -0.000576799 17.0767 -0.00209177 17.0803 -0.00754657 17.0933 -0.0272192 17.1404 -0.0996489 17.3125 -0.373215 17.8952 -1.54153 -4.53911 19.6959 17.3266 4.27783 16.9966 1.51396 16.8858 0.532491 16.8606 0.181524 16.858 0.0691991 16.8658 0.0276339 16.8723 0.0150284 16.8745 0.0151009 16.8712 0.02165 16.8561 0.0370135 16.8294 0.0575637 16.7884 0.085839 16.732 0.121231 16.661 0.162112 16.5787 0.204046 16.49 0.240318 16.4013 0.263085 16.3186 0.264996 16.2471 0.240517 16.1903 0.190094 16.1499 0.118167 16.1283 0.0305048 16.1202 -0.0607792 16.1311 -0.149814 16.1603 -0.227982 16.2072 -0.292059 16.269 -0.341218 16.3425 -0.372731 16.4242 -0.387374 16.5099 -0.386525 16.5955 -0.371942 16.6777 -0.346233 16.7534 -0.312161 16.8207 -0.272941 16.8787 -0.231656 16.9269 -0.190988 16.9658 -0.153051 16.9963 -0.119313 17.0196 -0.0905505 17.0368 -0.0669473 17.0492 -0.048255 17.058 -0.0339334 17.064 -0.0232959 17.068 -0.0156239 17.0707 -0.010243 17.0723 -0.00656827 17.0734 -0.004122 17.074 -0.00253305 17.0744 -0.001525 17.0746 -0.000899896 17.0748 -0.0005207 17.0748 -0.000295793 17.0749 -0.000164755 17.0749 -9.0087e-05 17.0749 -4.83606e-05 17.0749 -2.55225e-05 17.0749 -1.31836e-05 17.0749 -6.6587e-06 17.0749 -3.27142e-06 17.0749 -1.5415e-06 17.0749 -6.7219e-07 17.0749 -2.43251e-07 17.075 -3.47986e-08 17.075 6.40352e-08 17.075 1.10742e-07 17.075 1.32309e-07 17.075 1.41297e-07 17.075 1.47954e-07 17.0751 1.50056e-07 17.0751 1.51066e-07 17.0751 1.51589e-07 17.0751 1.5217e-07 17.0751 1.51781e-07 17.0752 1.51412e-07 17.0752 1.51305e-07 17.0752 1.5054e-07 17.0752 1.51239e-07 17.0752 1.5089e-07 17.0752 1.50154e-07 17.0752 1.50117e-07 17.0752 1.50163e-07 17.0752 1.49409e-07 17.0752 1.47715e-07 17.0752 1.44983e-07 17.0752 1.21509e-07 17.0752 4.88485e-08 17.0752 -2.22107e-07 17.0752 -1.0971e-06 17.0752 -4.4406e-06 17.0753 -1.65433e-05 17.0753 -6.02632e-05 17.0754 -0.000218991 17.0756 -0.000794718 17.0764 -0.00287896 17.0793 -0.01039 17.0894 -0.0373482 17.1253 -0.135443 17.2475 -0.495361 17.5752 -1.86922 -5.5554 18.5915 17.0747 4.52003 17.0219 1.56668 16.9754 0.579022 16.9236 0.233356 16.8961 0.0966743 16.8777 0.0459987 16.8626 0.0301117 16.8497 0.0279862 16.8382 0.0331615 16.8291 0.0460431 16.8185 0.0681562 16.8048 0.0994713 16.7865 0.139518 16.7627 0.185842 16.7334 0.233275 16.6992 0.274398 16.6614 0.300783 16.6215 0.304798 16.5817 0.280349 16.5445 0.22763 16.5127 0.151369 16.4866 0.0578882 16.4739 -0.0473502 16.4739 -0.149455 16.4866 -0.240676 16.5111 -0.316584 16.5457 -0.376294 16.5887 -0.416537 16.6382 -0.437452 16.6917 -0.440428 16.7465 -0.427062 16.8003 -0.400176 16.8508 -0.362789 16.8965 -0.318675 16.9363 -0.271503 16.9698 -0.224532 16.9971 -0.180382 17.0187 -0.140893 17.0352 -0.107096 17.0475 -0.0792767 17.0564 -0.0571969 17.0627 -0.0402517 17.067 -0.0276501 17.0699 -0.0185528 17.0719 -0.0121678 17.0731 -0.00780496 17.0738 -0.00489932 17.0743 -0.00301136 17.0746 -0.0018133 17.0747 -0.00107017 17.0748 -0.000619391 17.0749 -0.000351885 17.0749 -0.000196063 17.0749 -0.000107259 17.0749 -5.76286e-05 17.0749 -3.04652e-05 17.0749 -1.5787e-05 17.0749 -8.02578e-06 17.0749 -3.99642e-06 17.0749 -1.93931e-06 17.0749 -9.05296e-07 17.0749 -3.94643e-07 17.075 -1.46438e-07 17.075 -2.80902e-08 17.075 2.77719e-08 17.075 5.36543e-08 17.075 6.51053e-08 17.075 7.14872e-08 17.0751 7.39651e-08 17.0751 7.50701e-08 17.0751 7.56013e-08 17.0751 7.60001e-08 17.0751 7.58591e-08 17.0752 7.56918e-08 17.0752 7.56495e-08 17.0752 7.52866e-08 17.0752 7.56067e-08 17.0752 7.54158e-08 17.0752 7.49747e-08 17.0752 7.51202e-08 17.0752 7.50383e-08 17.0752 7.43748e-08 17.0752 7.26568e-08 17.0752 7.01407e-08 17.0752 4.20214e-08 17.0752 -4.13957e-08 17.0752 -3.74806e-07 17.0752 -1.38247e-06 17.0752 -5.32877e-06 17.0753 -1.95645e-05 17.0753 -7.0988e-05 17.0753 -0.000257567 17.0755 -0.000933743 17.076 -0.00337862 17.0778 -0.0121874 17.0842 -0.0436997 17.1059 -0.157051 17.1736 -0.563086 17.3087 -2.00421 -5.96195 17.7153 17.1809 4.52297 17.1672 1.58035 17.1467 0.599554 17.1627 0.217375 17.1787 0.0806601 17.1919 0.0327623 17.2045 0.017511 17.2143 0.0181956 17.2204 0.0269594 17.2195 0.0469296 17.2139 0.0737141 17.2031 0.11021 17.1876 0.155008 17.1681 0.205256 17.1458 0.255425 17.1222 0.297874 17.0986 0.324365 17.0755 0.327839 17.0536 0.302308 17.0331 0.2487 17.0135 0.172254 16.9956 0.0766845 16.9749 -0.0261697 16.955 -0.129352 16.9374 -0.223148 16.9243 -0.303576 16.9168 -0.369447 16.9156 -0.415919 16.9207 -0.442919 16.9311 -0.451108 16.9454 -0.441637 16.9624 -0.417228 16.9802 -0.380764 16.9978 -0.336278 17.014 -0.287742 17.0282 -0.238762 17.0401 -0.192306 17.0496 -0.150492 17.057 -0.114543 17.0626 -0.0848662 17.0666 -0.0612649 17.0695 -0.0431283 17.0715 -0.0296301 17.0728 -0.0198813 17.0736 -0.0130377 17.0741 -0.00836145 17.0745 -0.00524758 17.0747 -0.00322453 17.0748 -0.0019411 17.0748 -0.00114525 17.0749 -0.00066272 17.0749 -0.000376327 17.0749 -0.000209659 17.0749 -0.000114692 17.0749 -6.16346e-05 17.0749 -3.26094e-05 17.0749 -1.69295e-05 17.0749 -8.64327e-06 17.0749 -4.3432e-06 17.0749 -2.14889e-06 17.0749 -1.04624e-06 17.0749 -5.01621e-07 17.075 -2.36963e-07 17.075 -1.10353e-07 17.075 -5.06411e-08 17.075 -2.29129e-08 17.075 -1.02264e-08 17.075 -4.51382e-09 17.0751 -1.96223e-09 17.0751 -8.40828e-10 17.0751 -3.56522e-10 17.0751 -1.48702e-10 17.0751 -6.09361e-11 17.0752 -2.68301e-11 17.0752 -1.09139e-11 17.0752 -5.00222e-12 17.0752 -9.54969e-12 17.0752 -4.3201e-11 17.0752 -2.21007e-10 17.0752 1.3506e-10 17.0752 -8.04903e-11 17.0752 -5.91626e-10 17.0752 -2.05546e-09 17.0752 -6.07906e-09 17.0752 -3.34953e-08 17.0752 -1.24448e-07 17.0752 -4.47172e-07 17.0752 -1.55381e-06 17.0752 -5.68205e-06 17.0752 -2.06451e-05 17.0753 -7.47237e-05 17.0753 -0.000270767 17.0754 -0.000980715 17.0755 -0.00354398 17.0761 -0.012763 17.0782 -0.0457059 17.0842 -0.16306 17.0971 -0.575941 17.0793 -1.98629 -5.86791 16.9853 17.1273 4.11289 17.3105 1.3972 17.38 0.529992 17.3744 0.222965 17.3609 0.0941764 17.3516 0.0420747 17.3398 0.0293182 17.3283 0.0296252 17.3191 0.0362116 17.3143 0.051628 17.3116 0.0764095 17.3114 0.110393 17.3138 0.15249 17.3195 0.199538 17.3286 0.246286 17.3407 0.285755 17.3543 0.310625 17.3672 0.314905 17.3772 0.29254 17.3818 0.245121 17.3782 0.177261 17.3636 0.0922262 17.341 -0.00313496 17.3148 -0.10317 17.2848 -0.193257 17.2528 -0.272458 17.2212 -0.338581 17.1915 -0.38681 17.1651 -0.416836 17.1426 -0.428801 17.1242 -0.423362 17.1098 -0.402984 17.099 -0.370051 17.0912 -0.328539 17.0858 -0.282342 17.0821 -0.235105 17.0796 -0.189887 17.078 -0.148921 17.077 -0.113534 17.0763 -0.0842221 17.0759 -0.0608545 17.0756 -0.0428665 17.0754 -0.0294627 17.0752 -0.0197742 17.0751 -0.0129692 17.0751 -0.00831784 17.075 -0.00521997 17.075 -0.00320724 17.075 -0.0019304 17.0749 -0.00113872 17.0749 -0.000658834 17.0749 -0.000374001 17.0749 -0.000208339 17.0749 -0.000113965 17.0749 -6.12546e-05 17.0749 -3.24334e-05 17.0749 -1.68662e-05 17.0749 -8.64425e-06 17.0749 -4.38002e-06 17.0749 -2.20503e-06 17.0749 -1.11233e-06 17.0749 -5.72663e-07 17.075 -3.10483e-07 17.075 -1.84684e-07 17.075 -1.25404e-07 17.075 -9.78248e-08 17.075 -8.48163e-08 17.075 -8.01856e-08 17.0751 -7.77468e-08 17.0751 -7.66909e-08 17.0751 -7.62893e-08 17.0751 -7.62866e-08 17.0751 -7.59755e-08 17.0752 -7.57427e-08 17.0752 -7.56686e-08 17.0752 -7.52966e-08 17.0752 -7.56258e-08 17.0752 -7.55008e-08 17.0752 -7.53084e-08 17.0752 -7.49405e-08 17.0752 -7.51961e-08 17.0752 -7.54981e-08 17.0752 -7.66468e-08 17.0752 -8.13889e-08 17.0752 -1.05794e-07 17.0752 -1.92898e-07 17.0752 -4.89063e-07 17.0752 -1.56132e-06 17.0752 -5.47756e-06 17.0752 -1.96984e-05 17.0753 -7.10977e-05 17.0753 -0.000257387 17.0752 -0.000931757 17.0751 -0.00336407 17.0744 -0.0121017 17.072 -0.043251 17.0624 -0.153421 17.023 -0.536495 16.8618 -1.82506 -5.36384 16.3578 17.0918 3.44597 17.297 1.19203 17.3607 0.466299 17.4098 0.17386 17.4395 0.0645124 17.4559 0.0255955 17.4703 0.0149215 17.4833 0.016618 17.4945 0.0250297 17.5032 0.0428624 17.5128 0.0668373 17.5243 0.098843 17.5394 0.137353 17.5593 0.179544 17.5848 0.220755 17.6155 0.254959 17.65 0.276086 17.6853 0.279636 17.7191 0.259458 17.7478 0.218741 17.7665 0.160408 17.7725 0.0871979 17.7646 0.00503779 17.7386 -0.0772246 17.6986 -0.154201 17.6468 -0.222552 17.5879 -0.280944 17.5252 -0.324865 17.4619 -0.353915 17.4007 -0.367715 17.3435 -0.366246 17.292 -0.351526 17.2469 -0.324982 17.2085 -0.290197 17.1767 -0.25057 17.151 -0.20942 17.1306 -0.169615 17.115 -0.133291 17.1031 -0.101758 17.0944 -0.0755506 17.0881 -0.054614 17.0837 -0.038476 17.0807 -0.0264425 17.0786 -0.0177424 17.0773 -0.0116319 17.0764 -0.00745644 17.0758 -0.00467669 17.0755 -0.00287163 17.0752 -0.00172724 17.0751 -0.00101819 17.075 -0.000588669 17.075 -0.000333932 17.0749 -0.000185909 17.0749 -0.000101648 17.0749 -5.46248e-05 17.0749 -2.89398e-05 17.0749 -1.50753e-05 17.0749 -7.76053e-06 17.0749 -3.97053e-06 17.0749 -2.03984e-06 17.0749 -1.07037e-06 17.0749 -5.91743e-07 17.075 -3.59418e-07 17.075 -2.47506e-07 17.075 -1.94887e-07 17.075 -1.70359e-07 17.075 -1.58269e-07 17.075 -1.5544e-07 17.0751 -1.5331e-07 17.0751 -1.52459e-07 17.0751 -1.52182e-07 17.0751 -1.52418e-07 17.0751 -1.51882e-07 17.0752 -1.51455e-07 17.0752 -1.51324e-07 17.0752 -1.50548e-07 17.0752 -1.51256e-07 17.0752 -1.50961e-07 17.0752 -1.50408e-07 17.0752 -1.49993e-07 17.0752 -1.50299e-07 17.0752 -1.50357e-07 17.0752 -1.51039e-07 17.0752 -1.55597e-07 17.0752 -1.75225e-07 17.0752 -2.49382e-07 17.0752 -4.97164e-07 17.0752 -1.41682e-06 17.0752 -4.74244e-06 17.0752 -1.68219e-05 17.0752 -6.04896e-05 17.0752 -0.000218775 17.0751 -0.000791541 17.0746 -0.00285597 17.0728 -0.010269 17.0662 -0.0366109 17.0422 -0.129382 16.9557 -0.449921 16.6591 -1.52845 -4.51125 15.8066 17.1653 2.52494 17.5118 0.845593 17.6466 0.331511 17.6802 0.140208 17.6853 0.059457 17.6824 0.0284843 17.676 0.0213101 17.6695 0.0230361 17.6658 0.0287528 17.6683 0.0403272 17.6766 0.058539 17.6928 0.082662 17.7187 0.111467 17.7556 0.142516 17.8041 0.172273 17.8626 0.196381 17.9279 0.210715 17.9948 0.212953 18.0588 0.196789 18.1134 0.167955 18.1504 0.126444 18.1638 0.0753858 18.1509 0.0183211 18.118 -0.0444235 18.0626 -0.100911 17.99 -0.153598 17.9059 -0.199215 17.8146 -0.234875 17.7203 -0.260103 17.6265 -0.2741 17.5365 -0.276232 17.4531 -0.268086 17.3782 -0.249961 17.3129 -0.22486 17.2576 -0.195313 17.2121 -0.164007 17.1758 -0.133327 17.1475 -0.105053 17.126 -0.0803596 17.1102 -0.0597444 17.0987 -0.043227 17.0907 -0.0304698 17.0852 -0.0209452 17.0815 -0.014054 17.079 -0.00921239 17.0774 -0.00590374 17.0764 -0.00370139 17.0758 -0.0022717 17.0754 -0.00136567 17.0752 -0.000804603 17.0751 -0.000464902 17.075 -0.000263571 17.075 -0.000146674 17.0749 -8.01799e-05 17.0749 -4.30997e-05 17.0749 -2.28674e-05 17.0749 -1.19516e-05 17.0749 -6.19979e-06 17.0749 -3.22204e-06 17.0749 -1.70785e-06 17.0749 -9.47536e-07 17.0749 -5.72194e-07 17.075 -3.90236e-07 17.075 -3.01848e-07 17.075 -2.60524e-07 17.075 -2.41181e-07 17.075 -2.30791e-07 17.075 -2.30473e-07 17.0751 -2.2868e-07 17.0751 -2.2818e-07 17.0751 -2.28039e-07 17.0751 -2.28563e-07 17.0751 -2.27791e-07 17.0752 -2.27183e-07 17.0752 -2.26996e-07 17.0752 -2.25746e-07 17.0752 -2.26937e-07 17.0752 -2.26458e-07 17.0752 -2.25506e-07 17.0752 -2.25028e-07 17.0752 -2.25382e-07 17.0752 -2.25194e-07 17.0752 -2.25236e-07 17.0752 -2.28993e-07 17.0752 -2.42101e-07 17.0752 -2.96359e-07 17.0752 -4.74097e-07 17.0752 -1.1454e-06 17.0752 -3.55545e-06 17.0752 -1.23092e-05 17.0752 -4.39596e-05 17.0752 -0.000158701 17.075 -0.000573741 17.0742 -0.00206924 17.0714 -0.00743677 17.0613 -0.0264676 17.0253 -0.09334 16.8995 -0.32404 16.4847 -1.11366 -3.335 15.3085 16.9831 1.3663 17.371 0.457733 17.5252 0.17733 17.5994 0.0660316 17.6322 0.026659 17.65 0.0106978 17.6633 0.00791462 17.6768 0.00950079 17.692 0.0135195 17.7106 0.0217769 17.7363 0.0328028 17.7718 0.0471811 17.8194 0.0639145 17.8802 0.0816508 17.954 0.0983881 18.0388 0.111627 18.1304 0.119227 18.2233 0.121073 18.3141 0.110829 18.3935 0.0955782 18.452 0.0725387 18.4846 0.0448353 18.49 0.0132756 18.4644 -0.0198452 18.4086 -0.051204 18.3283 -0.0800077 18.2308 -0.105976 18.1204 -0.126669 18.0017 -0.142196 17.8793 -0.151831 17.7578 -0.154637 17.6421 -0.15174 17.5352 -0.142696 17.4398 -0.129322 17.3575 -0.112973 17.2888 -0.0952627 17.2331 -0.0776579 17.1892 -0.061301 17.1557 -0.0469203 17.1308 -0.0348801 17.1128 -0.025222 17.1 -0.0177596 17.0912 -0.0121914 17.0853 -0.0081674 17.0814 -0.00534449 17.0789 -0.00341875 17.0773 -0.00213937 17.0763 -0.00131051 17.0757 -0.000786332 17.0754 -0.000462413 17.0752 -0.000266706 17.0751 -0.000150967 17.075 -8.3915e-05 17.0749 -4.58557e-05 17.0749 -2.46765e-05 17.0749 -1.3149e-05 17.0749 -6.9404e-06 17.0749 -3.67788e-06 17.0749 -1.9916e-06 17.0749 -1.1383e-06 17.0749 -7.0941e-07 17.0749 -4.97543e-07 17.075 -3.9524e-07 17.075 -3.4409e-07 17.075 -3.20706e-07 17.075 -3.09597e-07 17.075 -3.01969e-07 17.075 -3.05242e-07 17.0751 -3.03763e-07 17.0751 -3.03848e-07 17.0751 -3.03844e-07 17.0751 -3.04721e-07 17.0751 -3.03691e-07 17.0752 -3.02915e-07 17.0752 -3.02662e-07 17.0752 -3.00829e-07 17.0752 -3.02667e-07 17.0752 -3.02e-07 17.0752 -3.00541e-07 17.0752 -3.00075e-07 17.0752 -3.00419e-07 17.0752 -3.00004e-07 17.0752 -2.99219e-07 17.0752 -3.01794e-07 17.0752 -3.06976e-07 17.0752 -3.36765e-07 17.0752 -4.2723e-07 17.0752 -7.82818e-07 17.0752 -2.0401e-06 17.0752 -6.61012e-06 17.0752 -2.31319e-05 17.0752 -8.30348e-05 17.0749 -0.00029967 17.0739 -0.00108022 17.0704 -0.00388128 17.0578 -0.0138084 17.0132 -0.0487286 16.859 -0.169769 16.3526 -0.607216 -1.84096 14.8586 3.92147 1.07597 4.01669 0.362515 4.05362 0.140402 4.06745 0.0522105 4.073 0.0210984 4.07488 0.00881543 4.07608 0.00670582 4.07738 0.00820022 4.07918 0.0117132 4.08241 0.0185399 4.08754 0.0276924 4.09528 0.0394404 4.10623 0.0529599 4.12076 0.0671087 4.13887 0.0802642 4.1601 0.0903996 4.18357 0.0958528 4.20812 0.0970706 4.23311 0.0880897 4.25572 0.0753977 4.27317 0.0566313 4.28411 0.0345308 4.28777 0.00971516 4.28393 -0.016502 4.27168 -0.0415529 4.2528 -0.0636499 4.22924 -0.0840493 4.20185 -0.100111 4.17161 -0.112251 4.13962 -0.11988 4.10716 -0.122057 4.0756 -0.11985 4.04591 -0.1128 4.01901 -0.10232 3.99553 -0.0894546 3.97576 -0.0754828 3.95966 -0.0615683 3.94697 -0.0486215 3.93727 -0.0372305 3.93005 -0.027681 3.92484 -0.0200194 3.92117 -0.0140969 3.91864 -0.00967686 3.91695 -0.00648224 3.91584 -0.00424119 3.91513 -0.00271251 3.91468 -0.00169706 3.91441 -0.00103933 3.91424 -0.000623464 3.91414 -0.000366553 3.91408 -0.000211378 3.91405 -0.00011964 3.91403 -6.65124e-05 3.91402 -3.63683e-05 3.91401 -1.95996e-05 3.91401 -1.04776e-05 3.91401 -5.56604e-06 3.91401 -2.98683e-06 3.91401 -1.65385e-06 3.91401 -9.80754e-07 3.91401 -6.4194e-07 3.91402 -4.74369e-07 3.91402 -3.93604e-07 3.91402 -3.52469e-07 3.91403 -3.3393e-07 3.91403 -3.25039e-07 3.91404 -3.18114e-07 3.91404 -3.22383e-07 3.91404 -3.2093e-07 3.91405 -3.21192e-07 3.91405 -3.21214e-07 3.91406 -3.22181e-07 3.91406 -3.21088e-07 3.91407 -3.20279e-07 3.91407 -3.20006e-07 3.91407 -3.18019e-07 3.91408 -3.20037e-07 3.91408 -3.19331e-07 3.91408 -3.17723e-07 3.91408 -3.1729e-07 3.91408 -3.17619e-07 3.91408 -3.17164e-07 3.91408 -3.16166e-07 3.91408 -3.18463e-07 3.91408 -3.21679e-07 3.91408 -3.45566e-07 3.91408 -4.14762e-07 3.91408 -6.93077e-07 3.91408 -1.66885e-06 3.91408 -5.21758e-06 3.91408 -1.8045e-05 3.91407 -6.45558e-05 3.914 -0.000232751 3.91377 -0.000838759 3.91291 -0.00301318 3.90982 -0.0107169 3.8989 -0.0377988 3.86087 -0.131725 3.72613 -0.472463 -1.45444 3.33963 3.39689 0.801954 3.48639 0.273016 3.52146 0.10534 3.5352 0.0384762 3.54084 0.0154487 3.5433 0.00635463 3.54512 0.0048849 3.54719 0.00611729 3.54999 0.008914 3.55422 0.0143106 3.56047 0.0214553 3.56933 0.0305799 3.58127 0.041011 3.59653 0.0518432 3.61498 0.0618083 3.6361 0.069298 3.65901 0.0730607 3.68274 0.0740377 3.70653 0.0667652 3.72757 0.0566702 3.74338 0.0422452 3.75294 0.0255187 3.75589 0.00682319 3.75175 -0.0129585 3.73986 -0.0325144 3.72199 -0.0484152 3.70002 -0.063779 3.67468 -0.0756079 3.64678 -0.0846216 3.61728 -0.0903896 3.58735 -0.091903 3.55821 -0.0902478 3.5307 -0.0850081 3.5057 -0.0771636 3.48381 -0.0674971 3.46533 -0.0569804 3.45025 -0.0464926 3.43835 -0.0367241 3.42923 -0.0281248 3.42245 -0.0209114 3.41754 -0.0151225 3.41408 -0.0106473 3.41171 -0.00730737 3.41011 -0.00489376 3.40907 -0.00320094 3.4084 -0.00204654 3.40797 -0.00127996 3.40771 -0.000783604 3.40756 -0.000469902 3.40746 -0.000276186 3.40741 -0.000159233 3.40738 -9.01244e-05 3.40736 -5.01212e-05 3.40735 -2.74353e-05 3.40735 -1.48211e-05 3.40734 -7.96373e-06 3.40734 -4.27292e-06 3.40734 -2.33641e-06 3.40734 -1.33554e-06 3.40734 -8.3174e-07 3.40734 -5.77496e-07 3.40735 -4.5149e-07 3.40735 -3.90924e-07 3.40735 -3.59185e-07 3.40736 -3.45186e-07 3.40736 -3.38372e-07 3.40736 -3.32095e-07 3.40737 -3.37301e-07 3.40737 -3.3586e-07 3.40738 -3.36293e-07 3.40738 -3.36328e-07 3.40738 -3.37383e-07 3.40739 -3.36229e-07 3.40739 -3.35398e-07 3.40739 -3.35103e-07 3.4074 -3.32979e-07 3.4074 -3.35158e-07 3.4074 -3.34418e-07 3.4074 -3.32671e-07 3.4074 -3.3228e-07 3.4074 -3.32591e-07 3.4074 -3.32104e-07 3.4074 -3.30912e-07 3.4074 -3.32971e-07 3.4074 -3.34427e-07 3.4074 -3.53128e-07 3.4074 -4.03485e-07 3.40741 -6.13409e-07 3.40741 -1.34002e-06 3.40741 -3.98499e-06 3.4074 -1.35429e-05 3.40739 -4.82016e-05 3.40734 -0.000173531 3.40713 -0.000625085 3.40636 -0.00224513 3.40364 -0.00798306 3.39399 -0.0281407 3.36035 -0.0980822 3.24042 -0.352524 -1.1024 2.88839 2.97327 0.569852 3.05136 0.194926 3.08169 0.0750185 3.0929 0.0272646 3.0974 0.010952 3.09914 0.00460911 3.10039 0.00363204 3.10186 0.00463721 3.10397 0.00680257 3.10747 0.0108031 3.11286 0.0160862 3.12071 0.0227286 3.13149 0.0302277 3.14543 0.0379052 3.16239 0.0448427 3.18187 0.0498388 3.20304 0.0520249 3.22499 0.0528068 3.24693 0.0471907 3.26615 0.0395795 3.28041 0.0292978 3.2887 0.0177295 3.29058 0.00500256 3.2858 -0.00876815 3.27372 -0.0232866 3.25617 -0.033567 3.23515 -0.0444759 3.21135 -0.0526149 3.18546 -0.0589528 3.1583 -0.0632169 3.13093 -0.0641313 3.10433 -0.0631098 3.07918 -0.0595466 3.05631 -0.0541238 3.03628 -0.0473864 3.01936 -0.040031 3.00556 -0.0326799 2.99465 -0.025823 2.9863 -0.0197807 2.98009 -0.0147102 2.97559 -0.010638 2.97243 -0.00748958 2.97025 -0.00513963 2.96879 -0.00344142 2.96784 -0.00225048 2.96723 -0.00143848 2.96684 -0.000899402 2.96661 -0.000550461 2.96646 -0.000330004 2.96638 -0.000193922 2.96633 -0.0001118 2.9663 -6.32962e-05 2.96628 -3.52335e-05 2.96627 -1.93277e-05 2.96627 -1.04872e-05 2.96627 -5.6851e-06 2.96627 -3.10151e-06 2.96627 -1.74738e-06 2.96627 -1.04722e-06 2.96627 -6.96613e-07 2.96627 -5.18821e-07 2.96627 -4.30367e-07 2.96627 -3.8805e-07 2.96628 -3.64767e-07 2.96628 -3.54874e-07 2.96628 -3.49934e-07 2.96629 -3.44238e-07 2.96629 -3.50292e-07 2.96629 -3.48844e-07 2.9663 -3.49433e-07 2.9663 -3.49482e-07 2.9663 -3.50612e-07 2.96631 -3.4941e-07 2.96631 -3.48553e-07 2.96631 -3.48246e-07 2.96631 -3.45995e-07 2.96632 -3.48327e-07 2.96632 -3.4756e-07 2.96632 -3.45683e-07 2.96632 -3.45333e-07 2.96632 -3.45621e-07 2.96632 -3.45117e-07 2.96632 -3.43749e-07 2.96632 -3.45606e-07 2.96632 -3.45501e-07 2.96632 -3.59652e-07 2.96632 -3.93382e-07 2.96632 -5.43221e-07 2.96632 -1.05057e-06 2.96632 -2.90045e-06 2.96632 -9.58204e-06 2.96631 -3.38134e-05 2.96626 -0.000121433 2.96608 -0.000437117 2.96541 -0.00156958 2.96301 -0.00557943 2.95453 -0.0196563 2.92497 -0.0685148 2.81898 -0.246529 -0.783277 2.49987 2.55952 0.349558 2.63282 0.121627 2.6613 0.0465453 2.67192 0.0166438 2.67627 0.00660464 2.67819 0.0026866 2.67974 0.00207044 2.68171 0.00266364 2.68454 0.00397162 2.68889 0.00645221 2.69525 0.00973753 2.70408 0.0139024 2.71568 0.0186341 2.73008 0.0235039 2.74703 0.0279157 2.76595 0.0310017 2.78626 0.0321588 2.80731 0.0335412 2.82758 0.0296614 2.84431 0.024711 2.85621 0.0183039 2.86291 0.0112523 2.86411 0.00360671 2.85904 -0.00561591 2.84815 -0.0160841 2.83371 -0.0214705 2.81658 -0.0285257 2.79692 -0.0333915 2.77514 -0.0372587 2.75204 -0.0399811 2.7285 -0.0400006 2.70533 -0.0394865 2.68321 -0.0371671 2.66298 -0.0337503 2.64517 -0.0295145 2.63007 -0.0249068 2.61771 -0.0203128 2.60791 -0.016035 2.6004 -0.0122707 2.59479 -0.0091174 2.59073 -0.00658635 2.58787 -0.00463231 2.5859 -0.00317555 2.58458 -0.00212406 2.58371 -0.00138754 2.58315 -0.000885962 2.5828 -0.000553374 2.58259 -0.000338353 2.58246 -0.00020267 2.58238 -0.000119019 2.58234 -6.85998e-05 2.58231 -3.88566e-05 2.5823 -2.16695e-05 2.58229 -1.19401e-05 2.58228 -6.53802e-06 2.58228 -3.60847e-06 2.58228 -2.03384e-06 2.58228 -1.21034e-06 2.58228 -7.84126e-07 2.58228 -5.73047e-07 2.58228 -4.64883e-07 2.58229 -4.10622e-07 2.58229 -3.84913e-07 2.58229 -3.69328e-07 2.58229 -3.63179e-07 2.5823 -3.59942e-07 2.5823 -3.54761e-07 2.5823 -3.61601e-07 2.5823 -3.60131e-07 2.58231 -3.60873e-07 2.58231 -3.60931e-07 2.58231 -3.62124e-07 2.58232 -3.60877e-07 2.58232 -3.60011e-07 2.58232 -3.59687e-07 2.58232 -3.57319e-07 2.58232 -3.59789e-07 2.58233 -3.58988e-07 2.58233 -3.56995e-07 2.58233 -3.56693e-07 2.58233 -3.56958e-07 2.58233 -3.56438e-07 2.58233 -3.54918e-07 2.58233 -3.56606e-07 2.58233 -3.55114e-07 2.58233 -3.65308e-07 2.58233 -3.84422e-07 2.58233 -4.81679e-07 2.58233 -7.96888e-07 2.58233 -1.95014e-06 2.58233 -6.11176e-06 2.58232 -2.12072e-05 2.58228 -7.57886e-05 2.58212 -0.000272441 2.58153 -0.000977802 2.57943 -0.00347461 2.57201 -0.012232 2.54613 -0.0426247 2.45295 -0.153342 -0.494993 2.16467 2.26141 0.173054 2.32342 0.059619 2.34741 0.0225548 2.35617 0.00788804 2.35973 0.00304472 2.36121 0.00120719 2.36228 0.000998897 2.36351 0.00142481 2.36523 0.00224395 2.36803 0.00365002 2.37234 0.00544415 2.37864 0.00760648 2.38732 0.00995635 2.39859 0.012259 2.41238 0.0142039 2.42834 0.0153336 2.44559 0.0153193 2.46267 0.0166854 2.47856 0.0137741 2.49167 0.0113106 2.50022 0.00818249 2.50384 0.00481145 2.5034 0.00228741 2.49934 -0.00218823 2.49133 -0.00805504 2.48006 -0.009347 2.46597 -0.0120547 2.44859 -0.014327 2.42824 -0.0160417 2.40607 -0.0175191 2.38327 -0.0171736 2.36095 -0.0172364 2.33993 -0.0163724 2.32097 -0.014945 2.30451 -0.0131463 2.2907 -0.0111528 2.27949 -0.00913829 2.27068 -0.00724316 2.26395 -0.00556217 2.25897 -0.00414509 2.25538 -0.00300186 2.25286 -0.00211567 2.25113 -0.00145285 2.24997 -0.000973177 2.24922 -0.000636486 2.24874 -0.000406823 2.24843 -0.000254341 2.24825 -0.000155663 2.24814 -9.335e-05 2.24807 -5.4913e-05 2.24803 -3.17378e-05 2.24801 -1.80639e-05 2.248 -1.01619e-05 2.24799 -5.68952e-06 2.24799 -3.20496e-06 2.24799 -1.85986e-06 2.24799 -1.13632e-06 2.24799 -7.5921e-07 2.24799 -5.62828e-07 2.24799 -4.68539e-07 2.24799 -4.1852e-07 2.24799 -3.92774e-07 2.24799 -3.80911e-07 2.24799 -3.71703e-07 2.248 -3.68622e-07 2.248 -3.66726e-07 2.248 -3.61888e-07 2.248 -3.69357e-07 2.248 -3.67847e-07 2.24801 -3.68731e-07 2.24801 -3.68833e-07 2.24801 -3.7015e-07 2.24802 -3.68909e-07 2.24802 -3.6808e-07 2.24802 -3.67785e-07 2.24802 -3.65377e-07 2.24802 -3.68007e-07 2.24802 -3.67236e-07 2.24803 -3.65151e-07 2.24803 -3.64904e-07 2.24803 -3.65155e-07 2.24803 -3.64642e-07 2.24803 -3.62968e-07 2.24803 -3.64496e-07 2.24803 -3.61724e-07 2.24803 -3.68327e-07 2.24803 -3.74457e-07 2.24803 -4.25014e-07 2.24803 -5.70049e-07 2.24803 -1.10628e-06 2.24803 -3.03561e-06 2.24802 -1.00382e-05 2.24798 -3.53543e-05 2.24784 -0.000126574 2.24732 -0.00045375 2.24546 -0.00161168 2.2389 -0.00566991 2.21603 -0.0197507 2.13394 -0.071245 -0.235559 1.87452 1.90749 1.96712 1.98968 1.99756 2.0006 2.0018 2.0028 2.00423 2.00649 2.01015 2.01559 2.02318 2.0331 2.04524 2.05909 2.07322 2.08401 2.0895 2.09337 2.09808 2.10318 2.10729 2.1107 2.11723 2.12408 2.12478 2.11842 2.10652 2.09106 2.07343 2.05446 2.03564 2.01827 2.00276 1.98932 1.97801 1.9688 1.96152 1.95594 1.95178 1.94877 1.94665 1.94519 1.94422 1.94358 1.94317 1.94291 1.94275 1.94266 1.9426 1.94257 1.94255 1.94254 1.94253 1.94253 1.94253 1.94253 1.94253 1.94253 1.94253 1.94253 1.94253 1.94253 1.94254 1.94254 1.94254 1.94254 1.94254 1.94255 1.94255 1.94255 1.94255 1.94256 1.94256 1.94256 1.94256 1.94256 1.94256 1.94256 1.94257 1.94257 1.94257 1.94257 1.94257 1.94257 1.94257 1.94257 1.94257 1.94257 1.94257 1.94257 1.94256 1.94253 1.9424 1.94195 1.94035 1.93468 1.91494 1.8437 1.60814 2.60763 -0.115996 2.64913 -0.0414963 2.6785 -0.0293703 2.69132 -0.0128251 2.69281 -0.00148353 2.68689 0.00591575 2.67514 0.0117547 2.65882 0.0163258 2.63912 0.0197004 2.61677 0.0223529 2.59204 0.0247308 2.56486 0.0271813 2.53497 0.0298877 2.5016 0.0333748 2.46244 0.0391564 2.41433 0.0481112 2.35334 0.0609955 2.27474 0.0786021 2.16826 0.106478 0.160926 2.00734 2.94597 -0.219615 3.00247 -0.0979961 3.04307 -0.0699681 3.07322 -0.0429701 3.09638 -0.0246427 3.11534 -0.0130462 3.13089 -0.00378781 3.14376 0.00345203 3.15463 0.00883049 3.1637 0.0132899 3.1707 0.0177279 3.17511 0.0227705 3.17618 0.0288274 3.17257 0.0369848 3.1613 0.0504254 3.13851 0.0709066 3.09934 0.100167 3.03855 0.139395 2.9433 0.201725 0.301267 2.80296 3.34463 -0.333823 3.41338 -0.166742 3.45436 -0.110942 3.47876 -0.0673655 3.49084 -0.036726 3.49378 -0.0159833 3.48908 0.000915995 3.47841 0.0141249 3.46346 0.0237767 3.44521 0.0315464 3.42406 0.0388748 3.40014 0.0466896 3.37336 0.0556158 3.34329 0.0670533 3.30761 0.0861045 3.2634 0.115121 3.20701 0.156556 3.13472 0.211689 3.03899 0.297455 0.441132 2.89913 3.77573 -0.445846 3.84684 -0.23785 3.89064 -0.154743 3.92122 -0.0979444 3.9427 -0.0581998 3.95896 -0.0322478 3.97078 -0.0108959 3.97935 0.00555289 3.98576 0.0173702 3.99022 0.0270904 3.99243 0.0366663 3.99168 0.0474456 3.98708 0.0602095 3.97729 0.0768478 3.95831 0.10509 3.92549 0.147944 3.87233 0.209716 3.7911 0.292919 3.67147 0.417092 0.607848 3.50475 4.25662 -0.559591 4.33891 -0.320137 4.39319 -0.209022 4.42731 -0.132066 4.44676 -0.0776465 4.459 -0.0444886 4.46145 -0.013334 4.45699 0.0100104 4.44737 0.0269959 4.4335 0.0409606 4.41583 0.0543405 4.39429 0.0689878 4.36876 0.0857395 4.33837 0.107237 4.29889 0.144582 4.24871 0.198123 4.18469 0.273741 4.09976 0.377843 3.98647 0.530385 0.766609 3.82772 4.77511 -0.673753 4.86 -0.405025 4.91096 -0.259976 4.93696 -0.158058 4.95729 -0.0979782 4.97373 -0.0609214 4.98088 -0.0204891 4.98487 0.00602977 4.98623 0.0256332 4.98552 0.041672 4.98261 0.0572585 4.97671 0.0748865 4.96744 0.0950177 4.95672 0.117962 4.93297 0.168333 4.89302 0.238075 4.83 0.336759 4.7356 0.47225 4.60075 0.665238 0.95048 4.41688 20.069 -1.04683 20.374 -0.710014 20.6102 -0.496186 20.8132 -0.361078 20.976 -0.260752 21.0823 -0.167218 21.1312 -0.0693779 21.1411 -0.00381721 21.1088 0.0579228 21.0404 0.110107 20.9377 0.159928 20.7966 0.215988 20.6103 0.281335 20.3675 0.360811 20.0783 0.457512 19.7381 0.578343 19.34 0.734809 18.8694 0.942938 18.3102 1.22438 1.60743 17.6533 18.8465 -1.30176 19.0453 -0.908782 19.185 -0.635955 19.2558 -0.431796 19.2676 -0.272528 19.2568 -0.156406 19.2683 -0.080858 19.286 -0.0215183 19.3149 0.0289749 19.3565 0.0685503 19.3913 0.125135 19.425 0.182297 19.454 0.252418 19.4705 0.344259 19.46 0.468003 19.4033 0.635143 19.2783 0.859743 19.062 1.15932 18.7332 1.55318 2.05804 18.2826 17.8674 -1.45387 17.974 -1.01532 18.0524 -0.71441 18.1176 -0.49697 18.189 -0.343896 18.261 -0.228389 18.3047 -0.124501 18.306 -0.0228702 18.2857 0.0493091 18.2497 0.10459 18.2099 0.164895 18.1606 0.231639 18.1028 0.310255 18.0379 0.409179 17.9673 0.538615 17.8905 0.711923 17.803 0.947274 17.694 1.26836 17.5433 1.70389 2.28475 17.3166 17.0309 -1.49951 17.0461 -1.03049 17.0508 -0.719104 17.0443 -0.490465 17.0127 -0.31225 16.9627 -0.178407 16.9286 -0.0903383 16.937 -0.0312961 16.964 0.0224066 16.9975 0.0710782 17.0342 0.12817 17.0773 0.188578 17.1251 0.262494 17.1754 0.358858 17.225 0.489106 17.2686 0.668329 17.2991 0.916776 17.3061 1.26141 17.2739 1.73607 2.37763 17.181 16.2996 -1.44129 16.2309 -0.96181 16.1785 -0.6666 16.1524 -0.464402 16.16 -0.319868 16.191 -0.209351 16.2166 -0.115864 16.2133 -0.0280254 16.2034 0.032359 16.194 0.0804876 16.1928 0.129396 16.1971 0.184221 16.2098 0.249835 16.2343 0.334383 16.2749 0.448501 16.336 0.60725 16.4201 0.832728 16.5243 1.15722 16.6342 1.62619 2.29824 16.7136 15.6399 -1.27457 15.4898 -0.811707 15.3785 -0.55529 15.284 -0.369928 15.1938 -0.2296 15.116 -0.13158 15.0685 -0.0682864 15.0606 -0.0201119 15.0744 0.0185449 15.1061 0.0488713 15.1435 0.0920167 15.194 0.133663 15.2596 0.184279 15.3424 0.251609 15.4464 0.3445 15.5772 0.476497 15.7414 0.668537 15.9444 0.954257 16.1819 1.38876 2.05986 16.4203 15.0273 -0.993321 14.8058 -0.590164 14.6753 -0.424816 14.6137 -0.308284 14.5918 -0.207702 14.5915 -0.131202 14.5926 -0.0694583 14.599 -0.0264924 14.6087 0.00888546 14.6159 0.041686 14.6385 0.0694887 14.6741 0.0980829 14.7235 0.134833 14.7928 0.182359 14.8904 0.246987 15.0273 0.33955 15.2187 0.477219 15.4818 0.69118 15.8291 1.04147 1.64865 16.2403 14.4509 -0.585603 14.1582 -0.297436 13.9357 -0.202261 13.7624 -0.134993 13.6428 -0.0880902 13.5634 -0.0518161 13.5156 -0.0215884 13.4928 -0.00365315 13.4911 0.0106027 13.5091 0.0236631 13.5427 0.0359819 13.5924 0.0483695 13.6649 0.0623538 13.7618 0.0854859 13.8928 0.11605 14.0706 0.161712 14.3172 0.230731 14.6654 0.342992 15.1606 0.54628 0.990785 15.8185 3.22198 -0.467951 3.15429 -0.229748 3.11467 -0.162631 3.08793 -0.108247 3.06957 -0.0697286 3.05976 -0.0420045 3.05712 -0.0189393 3.05807 -0.00459674 3.06218 0.00649639 3.06906 0.0167902 3.07856 0.0264856 3.09068 0.0362542 3.10539 0.0476543 3.12539 0.0654888 3.1525 0.0889454 3.18989 0.124337 3.24316 0.177466 3.32141 0.264745 3.44082 0.426875 0.802027 3.62958 2.77823 -0.357785 2.7156 -0.167113 2.67386 -0.120891 2.64438 -0.0787622 2.62416 -0.0495064 2.61097 -0.0288137 2.604 -0.0119606 2.60067 -0.00126014 2.60044 0.00672429 2.6032 0.0140391 2.60876 0.0209331 2.61715 0.0278643 2.62896 0.0358555 2.64605 0.0484075 2.66972 0.0652739 2.70287 0.091196 2.75073 0.129613 2.82221 0.193258 2.93496 0.314134 0.615718 3.12127 2.39999 -0.257902 2.34947 -0.11659 2.31705 -0.0884679 2.29622 -0.057928 2.28422 -0.0374992 2.27847 -0.0230581 2.27802 -0.011512 2.28083 -0.00406118 2.28594 0.0016165 2.29304 0.00693945 2.30195 0.0120313 2.31263 0.0171864 2.32526 0.0232312 2.34116 0.0325188 2.36147 0.0449617 2.38874 0.0639312 2.42706 0.0912947 2.4831 0.137223 2.57256 0.224679 0.448511 2.73977 2.06897 -0.162199 2.02286 -0.0704723 1.98863 -0.0542433 1.965 -0.0342939 1.94866 -0.0211527 1.93774 -0.0121323 1.9311 -0.00487107 1.92723 -0.000187687 1.9256 0.00324802 1.92619 0.00635011 1.92894 0.00929259 1.93389 0.0122373 1.94147 0.0156523 1.95303 0.0209633 1.96984 0.028161 1.99458 0.0391934 2.03046 0.0554217 2.08503 0.0826554 2.1741 0.135608 0.284835 2.33778 1.79187 -0.0795466 1.75486 -0.0334643 1.72935 -0.0287313 1.71421 -0.0191541 1.70631 -0.0132424 1.70337 -0.00918771 1.70441 -0.00590865 1.70798 -0.00375679 1.71335 -0.00211713 1.72027 -0.000570157 1.72856 0.00100132 1.73818 0.00262249 1.74929 0.004549 1.7628 0.00745828 1.77959 0.0113696 1.80153 0.0172591 1.83117 0.0257834 1.87386 0.0399682 1.94186 0.0676094 0.142995 2.08371 1.5286 1.49514 1.46641 1.44726 1.43402 1.42483 1.41893 1.41517 1.41306 1.41249 1.4135 1.41612 1.42067 1.42814 1.43951 1.45677 1.48256 1.52253 1.59014 1.73314 1.66178 0.345569 1.55019 0.111599 1.51938 0.0308163 1.50943 0.00996299 1.50578 0.00365667 1.50351 0.00228427 1.50109 0.002438 1.49786 0.00323466 1.49371 0.00415757 1.48915 0.00456308 1.48598 0.00317564 1.48658 -0.000555018 1.49208 -0.00527135 1.50188 -0.00954484 1.51495 -0.0129727 1.53039 -0.015434 1.5472 -0.0170952 1.56418 -0.0184302 1.5815 -0.0194319 1.60022 -0.0201271 1.62053 -0.0210405 1.64246 -0.0221897 1.66574 -0.0233121 1.69059 -0.0244444 1.71694 -0.0248904 1.74378 -0.0254987 1.77014 -0.0253336 1.79548 -0.0246021 1.81931 -0.0233221 1.84122 -0.0215664 1.86087 -0.019438 1.87807 -0.0170636 1.89273 -0.0145828 1.90491 -0.0121302 1.91476 -0.00981937 1.92251 -0.00773718 1.92846 -0.00593449 1.9329 -0.00443313 1.93613 -0.00322659 1.93842 -0.00228937 1.94001 -0.00158441 1.94108 -0.00107015 1.94179 -0.000705817 1.94224 -0.000454823 1.94253 -0.000286484 1.9427 -0.000176451 1.94281 -0.000106291 1.94287 -6.26138e-05 1.94291 -3.60441e-05 1.94293 -2.02357e-05 1.94294 -1.10311e-05 1.94294 -5.7853e-06 1.94295 -2.85442e-06 1.94295 -1.24997e-06 1.94295 -3.89755e-07 1.94295 6.67278e-08 1.94295 3.032e-07 1.94295 4.25829e-07 1.94295 4.8388e-07 1.94295 5.17572e-07 1.94295 5.31702e-07 1.94295 5.38301e-07 1.94295 5.43107e-07 1.94295 5.4577e-07 1.94295 5.41047e-07 1.94296 5.48436e-07 1.94296 5.46643e-07 1.94297 5.47476e-07 1.94298 5.48396e-07 1.94298 5.49328e-07 1.94299 5.50226e-07 1.943 5.50903e-07 1.94301 5.51336e-07 1.94302 5.51387e-07 1.94304 5.5111e-07 1.94305 5.50244e-07 1.94306 5.488e-07 1.94307 5.46657e-07 1.94308 5.44911e-07 1.94308 5.42495e-07 1.94309 5.36314e-07 1.94309 5.31923e-07 1.94308 5.28868e-07 1.94306 5.23978e-07 1.94304 5.17266e-07 1.94301 5.09197e-07 1.94297 4.99636e-07 1.94291 4.88795e-07 1.94284 4.76732e-07 1.94275 4.63471e-07 1.94265 4.49279e-07 1.94252 4.3432e-07 1.94238 4.18753e-07 1.94221 4.02713e-07 1.94202 3.86073e-07 1.94181 3.69848e-07 1.94157 3.53222e-07 1.94131 3.36935e-07 1.94102 3.21288e-07 1.94071 3.06645e-07 1.94038 2.9317e-07 1.94003 2.81765e-07 1.93967 2.72186e-07 1.93928 2.64685e-07 1.93889 2.60014e-07 1.93848 2.58398e-07 1.93807 2.59985e-07 1.93766 2.64852e-07 1.93725 2.73812e-07 1.93685 2.85683e-07 1.93647 3.01516e-07 1.9361 3.21026e-07 1.93575 3.44007e-07 1.93543 3.70295e-07 1.93513 3.99745e-07 1.93488 4.32072e-07 1.93466 4.66887e-07 1.93448 5.03718e-07 1.93434 5.43074e-07 1.93425 5.8271e-07 1.9342 6.23309e-07 1.9342 6.634e-07 1.93426 7.28738e-07 1.93436 7.55554e-07 1.93451 7.90078e-07 1.93471 8.26545e-07 1.93494 8.60236e-07 1.93522 8.9125e-07 1.93554 9.19496e-07 1.93589 9.44729e-07 1.93627 9.6664e-07 1.93667 9.85016e-07 1.9371 9.99709e-07 1.93755 1.01063e-06 1.93801 1.0177e-06 1.93849 1.02085e-06 1.93896 1.02033e-06 1.93944 1.01632e-06 1.93992 1.00916e-06 1.9404 9.99127e-07 1.94087 9.86496e-07 1.94133 9.71599e-07 1.94177 9.54722e-07 1.9422 9.36179e-07 1.94262 9.1628e-07 1.94301 8.95307e-07 1.94339 8.73562e-07 1.94375 8.51287e-07 1.94408 8.2871e-07 1.9444 8.06067e-07 1.94469 7.83552e-07 1.94497 7.61374e-07 1.94522 7.39725e-07 1.94545 7.18752e-07 1.94566 6.98572e-07 1.94586 6.79302e-07 1.94604 6.61024e-07 1.9462 6.43799e-07 1.94634 6.27697e-07 1.94648 6.12727e-07 1.94659 5.98902e-07 1.9467 5.86188e-07 1.94679 5.74575e-07 1.94687 5.64021e-07 1.94695 5.54493e-07 1.94701 5.45922e-07 1.94707 5.3825e-07 1.94712 5.31385e-07 1.94716 5.2527e-07 1.9472 5.1982e-07 1.94724 5.14989e-07 1.94727 5.10692e-07 1.94729 5.06909e-07 1.94732 5.03594e-07 1.94734 5.00713e-07 1.94735 4.98185e-07 1.94737 4.95969e-07 1.94739 4.94052e-07 1.9474 4.92386e-07 1.94741 4.90985e-07 1.94742 4.89712e-07 1.94743 4.88726e-07 1.94744 4.87875e-07 1.94745 4.87726e-07 1.94746 4.87733e-07 1.94746 4.89188e-07 1.94747 4.96202e-07 1.94748 5.24116e-07 1.94748 6.30567e-07 1.94749 1.03114e-06 1.94749 2.53431e-06 1.94749 8.16915e-06 1.94746 2.92809e-05 1.94736 0.000108119 1.94696 0.000399801 1.9455 0.00146613 1.94017 0.00532978 1.92101 0.0191708 1.84947 0.0715382 0.238945 1.61053 2.45372 0.694818 2.33473 0.230601 2.30248 0.0630773 2.29221 0.0202524 2.28845 0.00742875 2.28604 0.00470484 2.28346 0.00501956 2.28013 0.00657912 2.27593 0.00836934 2.27109 0.0094168 2.26562 0.00865627 2.25842 0.00664245 2.24826 0.00487554 2.23432 0.00438199 2.21601 0.00534657 2.19314 0.00743365 2.16628 0.00976571 2.13678 0.0110092 2.10664 0.010273 2.07862 0.00669636 2.05583 0.000968425 2.04076 -0.00742713 2.0342 -0.0168236 2.03611 -0.0262397 2.04546 -0.0335997 2.06038 -0.0398137 2.07894 -0.043435 2.0995 -0.0448531 2.1207 -0.0443076 2.14142 -0.0421479 2.16083 -0.0387538 2.17834 -0.0345163 2.19362 -0.0298209 2.20653 -0.0250175 2.21712 -0.0203931 2.22556 -0.0161647 2.2321 -0.0124646 2.23703 -0.0093572 2.24065 -0.00684274 2.24324 -0.00487762 2.24504 -0.00339119 2.24628 -0.00230108 2.2471 -0.00152478 2.24763 -0.000987257 2.24797 -0.000624931 2.24818 -0.000386918 2.2483 -0.000234399 2.24838 -0.000138982 2.24842 -8.06541e-05 2.24845 -4.57827e-05 2.24846 -2.53751e-05 2.24847 -1.3693e-05 2.24847 -7.13394e-06 2.24847 -3.52624e-06 2.24847 -1.57975e-06 2.24847 -5.47549e-07 2.24847 -1.06375e-08 2.24847 2.64707e-07 2.24847 3.99501e-07 2.24847 4.70682e-07 2.24847 5.03172e-07 2.24847 5.18477e-07 2.24847 5.27318e-07 2.24848 5.31818e-07 2.24848 5.28173e-07 2.24849 5.35718e-07 2.24849 5.34208e-07 2.2485 5.35099e-07 2.24851 5.36023e-07 2.24852 5.36933e-07 2.24853 5.3781e-07 2.24854 5.38446e-07 2.24855 5.38847e-07 2.24856 5.38857e-07 2.24858 5.38566e-07 2.24859 5.3769e-07 2.2486 5.36274e-07 2.24861 5.34168e-07 2.24862 5.32458e-07 2.24863 5.30166e-07 2.24864 5.24215e-07 2.24863 5.19776e-07 2.24863 5.17004e-07 2.24861 5.12198e-07 2.24858 5.0565e-07 2.24855 4.97763e-07 2.2485 4.88431e-07 2.24843 4.77849e-07 2.24835 4.66094e-07 2.24825 4.53168e-07 2.24813 4.39333e-07 2.24799 4.24763e-07 2.24782 4.09585e-07 2.24763 3.93946e-07 2.24741 3.77724e-07 2.24716 3.61877e-07 2.24689 3.45681e-07 2.24659 3.29786e-07 2.24626 3.14518e-07 2.24591 3.00221e-07 2.24553 2.87084e-07 2.24513 2.75941e-07 2.2447 2.66595e-07 2.24426 2.59268e-07 2.24381 2.54706e-07 2.24334 2.53127e-07 2.24287 2.54659e-07 2.2424 2.59373e-07 2.24193 2.68079e-07 2.24147 2.79651e-07 2.24103 2.95069e-07 2.2406 3.14078e-07 2.2402 3.36466e-07 2.23983 3.62077e-07 2.2395 3.9077e-07 2.2392 4.22293e-07 2.23895 4.56235e-07 2.23874 4.92109e-07 2.23858 5.30454e-07 2.23848 5.69093e-07 2.23843 6.08565e-07 2.23843 6.48e-07 2.23849 7.11167e-07 2.23861 7.37422e-07 2.23878 7.71073e-07 2.23901 8.06562e-07 2.23928 8.39384e-07 2.2396 8.69608e-07 2.23997 8.97147e-07 2.24037 9.21762e-07 2.2408 9.43131e-07 2.24127 9.61085e-07 2.24177 9.75404e-07 2.24228 9.86056e-07 2.24281 9.92954e-07 2.24335 9.96009e-07 2.2439 9.95507e-07 2.24446 9.91604e-07 2.24501 9.84641e-07 2.24556 9.74869e-07 2.2461 9.62569e-07 2.24662 9.48061e-07 2.24714 9.31625e-07 2.24763 9.13566e-07 2.24811 8.9419e-07 2.24856 8.73759e-07 2.249 8.52568e-07 2.24941 8.30863e-07 2.24979 8.08865e-07 2.25015 7.86808e-07 2.25049 7.6487e-07 2.25081 7.43265e-07 2.2511 7.22172e-07 2.25137 7.0173e-07 2.25161 6.82077e-07 2.25184 6.63313e-07 2.25204 6.45494e-07 2.25223 6.28723e-07 2.25239 6.13029e-07 2.25254 5.98455e-07 2.25268 5.84991e-07 2.2528 5.726e-07 2.25291 5.61286e-07 2.253 5.51008e-07 2.25309 5.41724e-07 2.25316 5.33375e-07 2.25323 5.25903e-07 2.25329 5.19205e-07 2.25334 5.1325e-07 2.25338 5.07942e-07 2.25342 5.03234e-07 2.25345 4.99047e-07 2.25348 4.95365e-07 2.25351 4.92131e-07 2.25353 4.89319e-07 2.25356 4.86856e-07 2.25357 4.84699e-07 2.25359 4.82829e-07 2.25361 4.81195e-07 2.25362 4.79853e-07 2.25363 4.78598e-07 2.25364 4.77674e-07 2.25365 4.76779e-07 2.25366 4.76986e-07 2.25367 4.77514e-07 2.25368 4.81294e-07 2.25369 4.97144e-07 2.2537 5.5795e-07 2.2537 7.87946e-07 2.25371 1.65198e-06 2.25371 4.89342e-06 2.25371 1.70435e-05 2.25368 6.25651e-05 2.25356 0.000232556 2.2531 0.000861523 2.25141 0.00316124 2.24524 0.0115004 2.22304 0.0413801 2.14064 0.15394 0.502308 1.87728 2.60002 0.993945 2.49231 0.338322 2.46161 0.093791 2.45187 0.0300059 2.44906 0.0102477 2.44849 0.00529009 2.44888 0.00464202 2.44964 0.00583251 2.45021 0.00782106 2.44967 0.00996948 2.44702 0.0113105 2.44123 0.0124281 2.43144 0.0146687 2.41708 0.0187462 2.39813 0.024288 2.37535 0.0301868 2.35028 0.0346569 2.32542 0.0352975 2.304 0.0312996 2.28886 0.0217021 2.2817 0.0081304 2.28323 -0.00869081 2.29244 -0.0254569 2.30797 -0.041396 2.32832 -0.0537548 2.35209 -0.0635035 2.37796 -0.0693015 2.4047 -0.0715867 2.43114 -0.0707785 2.45636 -0.0673879 2.47964 -0.0620324 2.50044 -0.0553189 2.51848 -0.0478578 2.53368 -0.0402044 2.54611 -0.0328177 2.55601 -0.0260521 2.56367 -0.0201186 2.56944 -0.0151258 2.57368 -0.011078 2.57671 -0.00790848 2.57883 -0.00550665 2.58027 -0.00374206 2.58123 -0.00248327 2.58185 -0.00161021 2.58225 -0.00102076 2.58249 -0.000632955 2.58264 -0.00038408 2.58273 -0.00022816 2.58278 -0.000132715 2.58281 -7.55796e-05 2.58283 -4.20965e-05 2.58283 -2.29086e-05 2.58284 -1.21213e-05 2.58284 -6.18117e-06 2.58284 -2.97122e-06 2.58284 -1.26966e-06 2.58284 -3.82468e-07 2.58284 7.18446e-08 2.58284 2.9697e-07 2.58284 4.12512e-07 2.58284 4.66827e-07 2.58284 4.92528e-07 2.58284 5.0619e-07 2.58285 5.12911e-07 2.58285 5.10545e-07 2.58286 5.1827e-07 2.58286 5.17077e-07 2.58287 5.1801e-07 2.58288 5.1895e-07 2.58289 5.19844e-07 2.5829 5.20722e-07 2.58292 5.21326e-07 2.58293 5.21715e-07 2.58295 5.21732e-07 2.58296 5.2145e-07 2.58298 5.20609e-07 2.58299 5.1924e-07 2.583 5.17202e-07 2.58302 5.15527e-07 2.58302 5.13361e-07 2.58303 5.07627e-07 2.58303 5.03129e-07 2.58302 5.00626e-07 2.583 4.95935e-07 2.58297 4.89586e-07 2.58293 4.81949e-07 2.58287 4.72912e-07 2.58279 4.62656e-07 2.5827 4.51279e-07 2.58259 4.38762e-07 2.58245 4.25354e-07 2.58228 4.11244e-07 2.58209 3.9654e-07 2.58187 3.81393e-07 2.58162 3.65686e-07 2.58134 3.50319e-07 2.58102 3.34645e-07 2.58068 3.19244e-07 2.5803 3.04453e-07 2.5799 2.90604e-07 2.57946 2.77894e-07 2.579 2.67088e-07 2.57851 2.58044e-07 2.57801 2.50939e-07 2.57748 2.46524e-07 2.57695 2.44998e-07 2.57641 2.46491e-07 2.57587 2.51053e-07 2.57533 2.5947e-07 2.5748 2.70697e-07 2.57429 2.8563e-07 2.5738 3.04042e-07 2.57334 3.25726e-07 2.57292 3.50532e-07 2.57253 3.78326e-07 2.57219 4.08862e-07 2.5719 4.4174e-07 2.57166 4.76479e-07 2.57148 5.13597e-07 2.57136 5.51037e-07 2.5713 5.89149e-07 2.5713 6.27779e-07 2.57138 6.88402e-07 2.57151 7.1399e-07 2.57171 7.46622e-07 2.57197 7.80961e-07 2.57228 8.12746e-07 2.57265 8.42008e-07 2.57307 8.68677e-07 2.57353 8.92498e-07 2.57403 9.13191e-07 2.57457 9.30568e-07 2.57514 9.44432e-07 2.57573 9.54744e-07 2.57634 9.61416e-07 2.57696 9.64375e-07 2.57759 9.63875e-07 2.57823 9.6009e-07 2.57886 9.53356e-07 2.57949 9.43894e-07 2.58011 9.31981e-07 2.58072 9.17928e-07 2.58131 9.02011e-07 2.58187 8.84527e-07 2.58242 8.65753e-07 2.58294 8.45974e-07 2.58344 8.25452e-07 2.58391 8.04437e-07 2.58436 7.83133e-07 2.58477 7.61776e-07 2.58516 7.40531e-07 2.58552 7.19609e-07 2.58586 6.99187e-07 2.58616 6.79394e-07 2.58645 6.60368e-07 2.5867 6.422e-07 2.58694 6.2495e-07 2.58715 6.08712e-07 2.58734 5.93509e-07 2.58752 5.79405e-07 2.58767 5.66368e-07 2.58781 5.54372e-07 2.58794 5.43421e-07 2.58805 5.33475e-07 2.58814 5.24486e-07 2.58823 5.16402e-07 2.5883 5.09164e-07 2.58837 5.02687e-07 2.58843 4.96928e-07 2.58848 4.91782e-07 2.58853 4.87216e-07 2.58856 4.8318e-07 2.5886 4.79604e-07 2.58863 4.76473e-07 2.58866 4.73754e-07 2.58868 4.71367e-07 2.5887 4.69281e-07 2.58872 4.67469e-07 2.58874 4.65881e-07 2.58875 4.64606e-07 2.58877 4.63378e-07 2.58878 4.62529e-07 2.58879 4.61578e-07 2.58881 4.62209e-07 2.58882 4.63328e-07 2.58882 4.69723e-07 2.58883 4.95545e-07 2.58884 5.93485e-07 2.58885 9.62862e-07 2.58885 2.34985e-06 2.58886 7.55273e-06 2.58885 2.70547e-05 2.58882 0.000100121 2.58869 0.000372988 2.58817 0.00138274 2.58626 0.00507579 2.57929 0.0184796 2.55416 0.0665085 2.46065 0.247457 0.795096 2.16786 3.11406 1.38465 2.98457 0.46782 2.94812 0.13026 2.93621 0.0419389 2.93262 0.0138459 2.93099 0.00694054 2.92967 0.00597854 2.92792 0.00759733 2.92515 0.0105996 2.92057 0.0145632 2.91339 0.0185068 2.90249 0.0233221 2.88688 0.0302666 2.86594 0.0396915 2.8397 0.0505235 2.80912 0.0607269 2.77611 0.0674621 2.74345 0.0677811 2.71411 0.0605901 2.6906 0.0452344 2.67474 0.024271 2.66775 -0.00117604 2.66954 -0.0269517 2.67967 -0.0514048 2.69681 -0.070883 2.71924 -0.085962 2.74513 -0.0953692 2.77283 -0.0994398 2.80088 -0.0989337 2.82803 -0.094603 2.85332 -0.0873525 2.87606 -0.0780774 2.89587 -0.067667 2.91259 -0.0569279 2.92631 -0.0465263 2.93723 -0.0369704 2.9457 -0.0285779 2.95209 -0.0215043 2.95677 -0.015762 2.96013 -0.011261 2.96247 -0.00784685 2.96407 -0.00533623 2.96513 -0.00354374 2.96582 -0.00229951 2.96625 -0.00145881 2.96653 -0.000905284 2.96669 -0.000549792 2.96679 -0.000326914 2.96684 -0.000190385 2.96688 -0.000108597 2.96689 -6.06324e-05 2.9669 -3.31277e-05 2.9669 -1.76544e-05 2.96691 -9.12809e-06 2.96691 -4.51676e-06 2.96691 -2.07232e-06 2.96691 -7.96319e-07 2.96691 -1.43193e-07 2.96691 1.8231e-07 2.96691 3.47178e-07 2.96691 4.25762e-07 2.96691 4.63029e-07 2.96691 4.82059e-07 2.96692 4.91262e-07 2.96692 4.90318e-07 2.96693 4.98236e-07 2.96693 4.97403e-07 2.96694 4.98389e-07 2.96695 4.99334e-07 2.96697 5.00215e-07 2.96698 5.01081e-07 2.967 5.01655e-07 2.96701 5.02036e-07 2.96703 5.02048e-07 2.96705 5.01779e-07 2.96706 5.00982e-07 2.96708 4.99665e-07 2.9671 4.97705e-07 2.96711 4.96069e-07 2.96712 4.94032e-07 2.96712 4.88551e-07 2.96712 4.84028e-07 2.96711 4.81801e-07 2.96709 4.77236e-07 2.96706 4.7112e-07 2.96701 4.63773e-07 2.96694 4.55067e-07 2.96686 4.45198e-07 2.96675 4.34251e-07 2.96662 4.22193e-07 2.96646 4.09291e-07 2.96627 3.95714e-07 2.96605 3.81562e-07 2.96579 3.66976e-07 2.96551 3.51856e-07 2.96518 3.37046e-07 2.96482 3.21983e-07 2.96443 3.07145e-07 2.96399 2.92908e-07 2.96353 2.7958e-07 2.96303 2.67357e-07 2.96249 2.56945e-07 2.96194 2.48237e-07 2.96136 2.414e-07 2.96076 2.37153e-07 2.96014 2.35686e-07 2.95952 2.37127e-07 2.9589 2.41514e-07 2.95828 2.49596e-07 2.95767 2.60425e-07 2.95709 2.74797e-07 2.95653 2.92523e-07 2.956 3.13399e-07 2.95551 3.37272e-07 2.95507 3.64029e-07 2.95467 3.93429e-07 2.95434 4.25085e-07 2.95407 4.58516e-07 2.95386 4.94229e-07 2.95372 5.30279e-07 2.95365 5.66837e-07 2.95366 6.04492e-07 2.95374 6.62239e-07 2.9539 6.87072e-07 2.95412 7.18519e-07 2.95442 7.51535e-07 2.95478 7.82122e-07 2.9552 8.10283e-07 2.95568 8.35946e-07 2.95621 8.58867e-07 2.95679 8.78777e-07 2.95741 8.95488e-07 2.95806 9.08836e-07 2.95874 9.18752e-07 2.95944 9.25169e-07 2.96016 9.28016e-07 2.96088 9.27525e-07 2.96161 9.23887e-07 2.96234 9.174e-07 2.96306 9.08289e-07 2.96377 8.96831e-07 2.96447 8.83301e-07 2.96515 8.6798e-07 2.9658 8.51149e-07 2.96643 8.33079e-07 2.96703 8.1404e-07 2.9676 7.94294e-07 2.96814 7.74073e-07 2.96865 7.53573e-07 2.96913 7.3302e-07 2.96958 7.12573e-07 2.96999 6.9244e-07 2.97037 6.72781e-07 2.97073 6.53745e-07 2.97105 6.35433e-07 2.97135 6.17947e-07 2.97162 6.01349e-07 2.97186 5.85724e-07 2.97208 5.71095e-07 2.97228 5.57528e-07 2.97246 5.44978e-07 2.97262 5.33444e-07 2.97276 5.22901e-07 2.97289 5.13328e-07 2.973 5.04682e-07 2.9731 4.96902e-07 2.97318 4.89939e-07 2.97326 4.83711e-07 2.97333 4.78163e-07 2.97339 4.73217e-07 2.97344 4.68828e-07 2.97348 4.64939e-07 2.97352 4.61494e-07 2.97356 4.58487e-07 2.97359 4.5587e-07 2.97362 4.53576e-07 2.97364 4.51568e-07 2.97366 4.49822e-07 2.97368 4.48283e-07 2.9737 4.47097e-07 2.97372 4.45894e-07 2.97373 4.45134e-07 2.97375 4.44106e-07 2.97376 4.45223e-07 2.97377 4.47017e-07 2.97378 4.56406e-07 2.97379 4.93603e-07 2.9738 6.33921e-07 2.97381 1.1624e-06 2.97382 3.14626e-06 2.97382 1.05879e-05 2.97382 3.84812e-05 2.97378 0.000142987 2.97363 0.000533282 2.97304 0.00197775 2.97086 0.00726211 2.96288 0.0264557 2.93419 0.0952048 2.82785 0.353805 1.11937 2.50357 3.47344 1.73894 3.34801 0.593274 3.30884 0.169446 3.29548 0.0553189 3.29092 0.0184184 3.28915 0.00873343 3.28846 0.00668929 3.28809 0.00797869 3.28755 0.0111566 3.28606 0.0160786 3.28256 0.0220164 3.27583 0.0300477 3.26462 0.0414812 3.24787 0.0564482 3.22511 0.0732724 3.19688 0.0889033 3.16497 0.0992904 3.1323 0.100429 3.10245 0.0904567 3.07897 0.0689327 3.06441 0.0394199 3.06015 0.00348635 3.06582 -0.032436 3.08037 -0.0659125 3.10207 -0.0925835 3.12885 -0.112927 3.15889 -0.125697 3.19054 -0.13129 3.22226 -0.130794 3.25278 -0.125206 3.28111 -0.11572 3.30654 -0.103524 3.32866 -0.0897949 3.34734 -0.0756035 3.36265 -0.0618376 3.37486 -0.0491703 3.38432 -0.0380351 3.39147 -0.0286398 3.39671 -0.0210057 3.40047 -0.0150166 3.4031 -0.0104701 3.40489 -0.00712429 3.40608 -0.00473386 3.40685 -0.00307348 3.40734 -0.0019509 3.40765 -0.00121133 3.40783 -0.000736091 3.40794 -0.000437973 3.40801 -0.000255258 3.40804 -0.000145749 3.40806 -8.14945e-05 3.40807 -4.46314e-05 3.40807 -2.38845e-05 3.40808 -1.2447e-05 3.40808 -6.25792e-06 3.40808 -2.97686e-06 3.40808 -1.263e-06 3.40808 -3.8591e-07 3.40808 5.26561e-08 3.40808 2.73125e-07 3.40808 3.79046e-07 3.40808 4.29358e-07 3.40808 4.54451e-07 3.40809 4.66443e-07 3.40809 4.67098e-07 3.4081 4.75227e-07 3.40811 4.748e-07 3.40812 4.75846e-07 3.40813 4.76808e-07 3.40815 4.77661e-07 3.40816 4.78512e-07 3.40818 4.79051e-07 3.4082 4.7942e-07 3.40822 4.79435e-07 3.40824 4.79178e-07 3.40826 4.78429e-07 3.40828 4.77179e-07 3.40829 4.75298e-07 3.40831 4.73712e-07 3.40832 4.71813e-07 3.40833 4.6662e-07 3.40832 4.62118e-07 3.40831 4.60153e-07 3.40829 4.55751e-07 3.40825 4.49902e-07 3.40819 4.42889e-07 3.40812 4.34569e-07 3.40802 4.25141e-07 3.40789 4.14684e-07 3.40774 4.03174e-07 3.40756 3.90844e-07 3.40734 3.77873e-07 3.40709 3.6436e-07 3.4068 3.50421e-07 3.40647 3.35986e-07 3.4061 3.21819e-07 3.40568 3.07442e-07 3.40523 2.9327e-07 3.40473 2.79666e-07 3.40419 2.66931e-07 3.40362 2.55266e-07 3.40301 2.45309e-07 3.40237 2.36991e-07 3.4017 2.3047e-07 3.40101 2.26404e-07 3.40031 2.25016e-07 3.39959 2.26393e-07 3.39888 2.30573e-07 3.39817 2.38279e-07 3.39747 2.48649e-07 3.3968 2.62373e-07 3.39615 2.79306e-07 3.39555 2.99251e-07 3.39498 3.22059e-07 3.39448 3.47616e-07 3.39403 3.75701e-07 3.39364 4.05948e-07 3.39333 4.37871e-07 3.39309 4.7197e-07 3.39293 5.06416e-07 3.39285 5.412e-07 3.39286 5.77678e-07 3.39295 6.32203e-07 3.39313 6.5614e-07 3.39339 6.86216e-07 3.39373 7.17717e-07 3.39415 7.4693e-07 3.39463 7.73825e-07 3.39519 7.98327e-07 3.3958 8.20222e-07 3.39646 8.39231e-07 3.39717 8.55189e-07 3.39791 8.67931e-07 3.39869 8.77393e-07 3.3995 8.83521e-07 3.40032 8.86237e-07 3.40116 8.85761e-07 3.402 8.82283e-07 3.40283 8.76085e-07 3.40366 8.67385e-07 3.40448 8.5644e-07 3.40528 8.43516e-07 3.40605 8.28883e-07 3.4068 8.12808e-07 3.40753 7.95548e-07 3.40822 7.77363e-07 3.40887 7.58509e-07 3.40949 7.39192e-07 3.41008 7.19609e-07 3.41063 6.99985e-07 3.41114 6.8046e-07 3.41162 6.61228e-07 3.41206 6.42454e-07 3.41247 6.24275e-07 3.41284 6.06789e-07 3.41318 5.90093e-07 3.41349 5.74242e-07 3.41377 5.59325e-07 3.41402 5.45357e-07 3.41425 5.32396e-07 3.41446 5.2042e-07 3.41464 5.09397e-07 3.4148 4.99331e-07 3.41495 4.90189e-07 3.41508 4.81939e-07 3.41519 4.74512e-07 3.41529 4.67859e-07 3.41538 4.61912e-07 3.41545 4.56614e-07 3.41552 4.5189e-07 3.41558 4.47701e-07 3.41563 4.43986e-07 3.41568 4.40703e-07 3.41572 4.37833e-07 3.41575 4.3533e-07 3.41578 4.33136e-07 3.41581 4.31221e-07 3.41584 4.29553e-07 3.41586 4.2807e-07 3.41588 4.26979e-07 3.4159 4.25804e-07 3.41592 4.25145e-07 3.41593 4.24034e-07 3.41595 4.25713e-07 3.41596 4.28254e-07 3.41598 4.41059e-07 3.41599 4.9118e-07 3.416 6.79673e-07 3.41601 1.38899e-06 3.41601 4.0513e-06 3.41602 1.40376e-05 3.41601 5.14694e-05 3.41597 0.000191712 3.4158 0.000715491 3.41513 0.00265424 3.41265 0.00974879 3.40357 0.0355352 3.37093 0.127855 3.25062 0.474121 1.4773 2.8927 3.9991 2.15675 3.86026 0.732137 3.81951 0.210214 3.80499 0.0698572 3.80134 0.0220876 3.80004 0.0100581 3.7993 0.00744765 3.79838 0.00892638 3.79662 0.0129278 3.79308 0.0196401 3.78692 0.0281887 3.7769 0.040066 3.76192 0.0564635 3.74118 0.0771999 3.7145 0.0999318 3.68278 0.120582 3.64806 0.134002 3.61335 0.135142 3.58227 0.121609 3.55822 0.0933661 3.54337 0.0548871 3.539 0.00822415 3.54489 -0.0381627 3.5605 -0.0814794 3.58389 -0.116009 3.6128 -0.142112 3.64523 -0.158456 3.6794 -0.165691 3.71365 -0.165195 3.74662 -0.158259 3.77723 -0.14638 3.80473 -0.131051 3.82869 -0.113754 3.84893 -0.0958425 3.86554 -0.0784432 3.87878 -0.0624095 3.88906 -0.0483021 3.89682 -0.0363884 3.90252 -0.0267006 3.9066 -0.0190956 3.90945 -0.0133191 3.91139 -0.00906617 3.91269 -0.00602627 3.91353 -0.00391391 3.91406 -0.00248521 3.91439 -0.00154363 3.91459 -0.000938373 3.91471 -0.000558566 3.91478 -0.000325709 3.91482 -0.0001861 3.91484 -0.000104158 3.91485 -5.71316e-05 3.91485 -3.06568e-05 3.91485 -1.60564e-05 3.91485 -8.15279e-06 3.91485 -3.96211e-06 3.91485 -1.77228e-06 3.91485 -6.51498e-07 3.91485 -8.98981e-08 3.91485 1.91116e-07 3.91485 3.26804e-07 3.91486 3.91341e-07 3.91486 4.23032e-07 3.91487 4.38073e-07 3.91487 4.40471e-07 3.91488 4.48827e-07 3.91489 4.48837e-07 3.9149 4.4995e-07 3.91492 4.50925e-07 3.91493 4.51759e-07 3.91495 4.52583e-07 3.91497 4.53087e-07 3.91499 4.53438e-07 3.91502 4.53451e-07 3.91504 4.53211e-07 3.91506 4.52507e-07 3.91508 4.51333e-07 3.9151 4.4955e-07 3.91512 4.48026e-07 3.91513 4.46277e-07 3.91514 4.414e-07 3.91514 4.36965e-07 3.91512 4.3527e-07 3.9151 4.3106e-07 3.91505 4.25523e-07 3.91499 4.18895e-07 3.9149 4.11022e-07 3.91479 4.02101e-07 3.91464 3.92207e-07 3.91447 3.81324e-07 3.91426 3.69658e-07 3.91401 3.57385e-07 3.91372 3.44602e-07 3.91339 3.31418e-07 3.91301 3.17766e-07 3.91258 3.04345e-07 3.9121 2.90758e-07 3.91158 2.7735e-07 3.91101 2.64481e-07 3.91039 2.52431e-07 3.90973 2.41403e-07 3.90903 2.31974e-07 3.9083 2.24103e-07 3.90753 2.17942e-07 3.90674 2.14093e-07 3.90593 2.12786e-07 3.90511 2.14092e-07 3.90429 2.1804e-07 3.90347 2.25314e-07 3.90267 2.35144e-07 3.9019 2.48127e-07 3.90116 2.64151e-07 3.90046 2.83017e-07 3.89982 3.04591e-07 3.89923 3.28763e-07 3.89871 3.5534e-07 3.89827 3.83963e-07 3.89791 4.1415e-07 3.89764 4.46393e-07 3.89746 4.78987e-07 3.89737 5.11755e-07 3.89737 5.46792e-07 3.89748 5.97709e-07 3.89769 6.20592e-07 3.89799 6.4908e-07 3.89838 6.78845e-07 3.89886 7.06474e-07 3.89941 7.31918e-07 3.90005 7.55091e-07 3.90075 7.75804e-07 3.90151 7.93776e-07 3.90232 8.08865e-07 3.90318 8.20919e-07 3.90408 8.29866e-07 3.905 8.35658e-07 3.90595 8.38229e-07 3.90691 8.37771e-07 3.90787 8.3448e-07 3.90883 8.28618e-07 3.90978 8.20381e-07 3.91072 8.10034e-07 3.91164 7.97804e-07 3.91253 7.83963e-07 3.91339 7.68761e-07 3.91422 7.5243e-07 3.91501 7.3523e-07 3.91577 7.17397e-07 3.91648 6.99127e-07 3.91716 6.80602e-07 3.91779 6.62038e-07 3.91838 6.43573e-07 3.91892 6.25384e-07 3.91943 6.07627e-07 3.9199 5.9043e-07 3.92032 5.73896e-07 3.92071 5.58109e-07 3.92107 5.43113e-07 3.92139 5.28998e-07 3.92168 5.15791e-07 3.92195 5.03533e-07 3.92218 4.92206e-07 3.92239 4.81781e-07 3.92258 4.72264e-07 3.92275 4.63617e-07 3.92289 4.5581e-07 3.92302 4.4879e-07 3.92314 4.42499e-07 3.92324 4.36872e-07 3.92333 4.31855e-07 3.9234 4.27395e-07 3.92347 4.23433e-07 3.92353 4.19916e-07 3.92358 4.16814e-07 3.92363 4.14099e-07 3.92367 4.11736e-07 3.92371 4.09655e-07 3.92374 4.07849e-07 3.92377 4.06271e-07 3.9238 4.04851e-07 3.92382 4.03871e-07 3.92384 4.02726e-07 3.92386 4.02189e-07 3.92388 4.00965e-07 3.9239 4.03298e-07 3.92391 4.06683e-07 3.92393 4.23346e-07 3.92394 4.88076e-07 3.92395 7.30994e-07 3.92396 1.64464e-06 3.92397 5.07357e-06 3.92398 1.79353e-05 3.92397 6.61457e-05 3.92393 0.000246771 3.92373 0.000921393 3.92297 0.00341886 3.92017 0.0125607 3.9099 0.0458103 3.87298 0.164778 3.73784 0.609272 1.87047 3.34467 16.4387 3.37146 15.9837 1.18719 15.7804 0.413584 15.7015 0.148804 15.6627 0.0610208 15.6402 0.0326748 15.6267 0.0210553 15.6166 0.0190639 15.6086 0.0209681 15.6018 0.0265764 15.5923 0.0377698 15.5779 0.0545357 15.5565 0.0778642 15.5268 0.106986 15.4885 0.13823 15.4436 0.165496 15.3966 0.180987 15.3549 0.176978 15.3281 0.149309 15.3248 0.0990097 15.3495 0.0320192 15.4046 -0.0458149 15.487 -0.120196 15.5912 -0.185546 15.712 -0.23707 15.8442 -0.275444 15.9835 -0.298793 16.1254 -0.308362 16.2652 -0.305505 16.3986 -0.292002 16.5221 -0.270046 16.6329 -0.242004 16.7296 -0.210381 16.8113 -0.177559 16.8784 -0.145578 16.9321 -0.116006 16.9737 -0.0899219 17.0052 -0.0678357 17.0284 -0.0498378 17.045 -0.0356831 17.0566 -0.0249145 17.0645 -0.0169751 17.0698 -0.0112932 17.0732 -0.00734065 17.0754 -0.00466473 17.0767 -0.00289961 17.0775 -0.00176405 17.078 -0.00105091 17.0783 -0.000613395 17.0784 -0.000350899 17.0785 -0.000196731 17.0786 -0.000108198 17.0786 -5.83275e-05 17.0786 -3.08077e-05 17.0786 -1.59008e-05 17.0786 -7.99372e-06 17.0786 -3.85989e-06 17.0786 -1.74352e-06 17.0786 -6.79436e-07 17.0786 -1.50952e-07 17.0786 1.06236e-07 17.0786 2.28872e-07 17.0786 2.87566e-07 17.0786 3.15067e-07 17.0787 3.24522e-07 17.0787 3.33856e-07 17.0788 3.35559e-07 17.0788 3.36985e-07 17.0789 3.37992e-07 17.0789 3.38733e-07 17.079 3.39417e-07 17.0791 3.39796e-07 17.0792 3.40071e-07 17.0793 3.40081e-07 17.0794 3.39901e-07 17.0795 3.39389e-07 17.0796 3.38535e-07 17.0797 3.37185e-07 17.0798 3.35968e-07 17.0798 3.3477e-07 17.0798 3.31147e-07 17.0798 3.27543e-07 17.0798 3.26547e-07 17.0796 3.233e-07 17.0795 3.19127e-07 17.0792 3.1416e-07 17.0788 3.08255e-07 17.0783 3.01558e-07 17.0777 2.94138e-07 17.0769 2.85987e-07 17.076 2.77242e-07 17.0749 2.68038e-07 17.0737 2.58453e-07 17.0722 2.48562e-07 17.0705 2.38343e-07 17.0687 2.28227e-07 17.0666 2.18074e-07 17.0643 2.08013e-07 17.0618 1.98355e-07 17.0591 1.89318e-07 17.0563 1.81068e-07 17.0532 1.73965e-07 17.05 1.68051e-07 17.0466 1.63452e-07 17.0432 1.60565e-07 17.0397 1.59593e-07 17.0361 1.60579e-07 17.0325 1.63531e-07 17.0289 1.68937e-07 17.0255 1.76356e-07 17.0221 1.86097e-07 17.0188 1.98117e-07 17.0158 2.12263e-07 17.013 2.28432e-07 17.0104 2.46565e-07 17.0082 2.66517e-07 17.0063 2.87996e-07 17.0047 3.1062e-07 17.0035 3.34764e-07 17.0027 3.59227e-07 17.0023 3.83437e-07 17.0023 4.11188e-07 17.0028 4.47558e-07 17.0037 4.65447e-07 17.005 4.869e-07 17.0067 5.0915e-07 17.0088 5.29871e-07 17.0112 5.48966e-07 17.014 5.66344e-07 17.0171 5.81873e-07 17.0204 5.95348e-07 17.0239 6.06658e-07 17.0277 6.15697e-07 17.0316 6.22398e-07 17.0356 6.26735e-07 17.0397 6.28668e-07 17.0439 6.2832e-07 17.0481 6.25859e-07 17.0523 6.2146e-07 17.0565 6.15281e-07 17.0606 6.07523e-07 17.0646 5.98353e-07 17.0685 5.87973e-07 17.0722 5.76572e-07 17.0758 5.64321e-07 17.0793 5.5142e-07 17.0826 5.38045e-07 17.0857 5.24345e-07 17.0886 5.10449e-07 17.0914 4.96523e-07 17.094 4.82675e-07 17.0963 4.69036e-07 17.0986 4.55716e-07 17.1006 4.4282e-07 17.1025 4.30418e-07 17.1042 4.18577e-07 17.1057 4.07333e-07 17.1071 3.96746e-07 17.1084 3.86842e-07 17.1095 3.77647e-07 17.1106 3.69151e-07 17.1115 3.61334e-07 17.1123 3.54197e-07 17.113 3.47712e-07 17.1137 3.41854e-07 17.1142 3.36591e-07 17.1147 3.31871e-07 17.1152 3.27652e-07 17.1156 3.23887e-07 17.1159 3.20545e-07 17.1162 3.17572e-07 17.1165 3.14937e-07 17.1167 3.12604e-07 17.1169 3.10576e-07 17.1171 3.08805e-07 17.1172 3.07239e-07 17.1174 3.05889e-07 17.1175 3.04701e-07 17.1176 3.03556e-07 17.1177 3.03069e-07 17.1178 3.02037e-07 17.1179 3.02055e-07 17.118 3.00254e-07 17.118 3.05465e-07 17.1181 3.12133e-07 17.1182 3.44676e-07 17.1182 4.69211e-07 17.1183 9.35024e-07 17.1183 2.6854e-06 17.1184 9.2537e-06 17.1184 3.38914e-05 17.1184 0.000126251 17.1182 0.000472262 17.1174 0.00176463 17.1143 0.00655098 17.1028 0.0240748 17.0609 0.0877466 16.9112 0.314539 16.4042 1.11625 3.39222 14.8825 17.3233 4.33081 16.994 1.51665 16.8874 0.520243 16.8667 0.16961 16.8645 0.0633331 16.8723 0.024923 16.8778 0.0156853 16.8786 0.0183497 16.8709 0.028668 16.8512 0.0463778 16.8184 0.0705941 16.7704 0.102654 16.7067 0.141512 16.6294 0.18427 16.5427 0.22488 16.4527 0.255462 16.366 0.267706 16.2885 0.254519 16.2248 0.213323 16.1774 0.147556 16.1485 0.0624785 16.1352 -0.0314871 16.1403 -0.124688 16.1647 -0.209773 16.2078 -0.280096 16.2672 -0.335188 16.3395 -0.371995 16.4209 -0.390478 16.5072 -0.392196 16.5939 -0.379002 16.6773 -0.353607 16.7543 -0.319109 16.8229 -0.278939 16.8818 -0.236429 16.9307 -0.194478 16.97 -0.155354 17.0008 -0.120636 17.0241 -0.0911261 17.0413 -0.067011 17.0536 -0.0480101 17.0622 -0.0335368 17.0681 -0.0228571 17.0721 -0.01521 17.0746 -0.00988841 17.0762 -0.00628473 17.0772 -0.00390719 17.0778 -0.00237737 17.0782 -0.00141657 17.0784 -0.000827019 17.0785 -0.000473259 17.0786 -0.000265467 17.0786 -0.000146122 17.0786 -7.88893e-05 17.0786 -4.17822e-05 17.0786 -2.16792e-05 17.0786 -1.10133e-05 17.0786 -5.43776e-06 17.0786 -2.58272e-06 17.0786 -1.14582e-06 17.0786 -4.33629e-07 17.0786 -8.63947e-08 17.0786 7.93975e-08 17.0786 1.58113e-07 17.0786 1.94823e-07 17.0787 2.0966e-07 17.0787 2.19523e-07 17.0788 2.22446e-07 17.0788 2.24111e-07 17.0789 2.25098e-07 17.0789 2.25727e-07 17.079 2.26243e-07 17.0791 2.26514e-07 17.0792 2.26705e-07 17.0793 2.26713e-07 17.0794 2.26593e-07 17.0795 2.26255e-07 17.0796 2.25693e-07 17.0797 2.24785e-07 17.0798 2.23934e-07 17.0798 2.2319e-07 17.0798 2.20777e-07 17.0798 2.18319e-07 17.0798 2.17736e-07 17.0796 2.15543e-07 17.0795 2.12753e-07 17.0792 2.09446e-07 17.0788 2.0551e-07 17.0783 2.01041e-07 17.0777 1.96091e-07 17.0769 1.90662e-07 17.076 1.84831e-07 17.0749 1.78693e-07 17.0737 1.72303e-07 17.0722 1.65706e-07 17.0705 1.58903e-07 17.0687 1.52138e-07 17.0666 1.45382e-07 17.0643 1.38675e-07 17.0618 1.32235e-07 17.0591 1.26209e-07 17.0563 1.20718e-07 17.0532 1.1597e-07 17.05 1.12023e-07 17.0466 1.08967e-07 17.0432 1.07044e-07 17.0397 1.06398e-07 17.0361 1.07055e-07 17.0325 1.09022e-07 17.0289 1.12604e-07 17.0255 1.1757e-07 17.0221 1.24068e-07 17.0188 1.32082e-07 17.0158 1.41512e-07 17.013 1.52288e-07 17.0104 1.64378e-07 17.0082 1.77688e-07 17.0063 1.9201e-07 17.0047 2.07087e-07 17.0035 2.23169e-07 17.0027 2.3947e-07 17.0023 2.55448e-07 17.0023 2.74641e-07 17.0028 2.98022e-07 17.0037 3.103e-07 17.005 3.24633e-07 17.0067 3.39432e-07 17.0088 3.53244e-07 17.0112 3.65979e-07 17.014 3.77565e-07 17.0171 3.87917e-07 17.0204 3.96899e-07 17.0239 4.0444e-07 17.0277 4.10468e-07 17.0316 4.14934e-07 17.0356 4.17826e-07 17.0397 4.19119e-07 17.0439 4.18886e-07 17.0481 4.17246e-07 17.0523 4.1431e-07 17.0565 4.10189e-07 17.0606 4.05016e-07 17.0646 3.98902e-07 17.0685 3.91982e-07 17.0722 3.84381e-07 17.0758 3.76211e-07 17.0793 3.67609e-07 17.0826 3.58693e-07 17.0857 3.49562e-07 17.0886 3.40298e-07 17.0914 3.31012e-07 17.094 3.2178e-07 17.0963 3.12689e-07 17.0986 3.03809e-07 17.1006 2.95212e-07 17.1025 2.86944e-07 17.1042 2.79049e-07 17.1057 2.71553e-07 17.1071 2.64495e-07 17.1084 2.57894e-07 17.1095 2.51765e-07 17.1106 2.46098e-07 17.1115 2.40888e-07 17.1123 2.3613e-07 17.113 2.31807e-07 17.1137 2.27901e-07 17.1142 2.24393e-07 17.1147 2.21245e-07 17.1152 2.18432e-07 17.1156 2.1592e-07 17.1159 2.13696e-07 17.1162 2.11714e-07 17.1165 2.0996e-07 17.1167 2.08395e-07 17.1169 2.07057e-07 17.1171 2.05875e-07 17.1172 2.04819e-07 17.1174 2.03933e-07 17.1175 2.03132e-07 17.1176 2.0226e-07 17.1177 2.02273e-07 17.1178 2.01295e-07 17.1179 2.01983e-07 17.118 1.99335e-07 17.118 2.07472e-07 17.1181 2.16238e-07 17.1182 2.6166e-07 17.1182 4.33626e-07 17.1183 1.07647e-06 17.1183 3.49109e-06 17.1184 1.25526e-05 17.1184 4.65445e-05 17.1184 0.000173998 17.1183 0.000651487 17.1176 0.00243516 17.1152 0.00904693 17.106 0.0332981 17.0721 0.121624 16.9499 0.436756 16.5348 1.5314 4.59123 15.3358 17.0743 4.57323 17.0224 1.56864 16.974 0.568726 16.9207 0.222977 16.8951 0.0890053 16.8769 0.0432519 16.862 0.0307 16.8485 0.0318712 16.838 0.0392141 16.8283 0.0561628 16.8164 0.0826159 16.8005 0.118569 16.7794 0.162728 16.7525 0.211209 16.7201 0.257251 16.6833 0.292235 16.6436 0.307403 16.6031 0.295142 16.5642 0.252416 16.5299 0.182886 16.5014 0.0922937 16.4839 -0.0130488 16.4807 -0.121 16.4906 -0.219528 16.5129 -0.302328 16.5461 -0.36869 16.5884 -0.414942 16.6377 -0.440298 16.6915 -0.446312 16.747 -0.434673 16.8015 -0.40826 16.8528 -0.370495 16.8992 -0.325366 16.9397 -0.276837 16.9736 -0.228423 17.0012 -0.182927 17.0229 -0.142322 17.0395 -0.107675 17.0517 -0.0792765 17.0606 -0.056852 17.0668 -0.039743 17.071 -0.027103 17.0739 -0.0180439 17.0757 -0.0117354 17.0769 -0.00746093 17.0776 -0.00463965 17.0781 -0.00282371 17.0783 -0.00168285 17.0785 -0.000982698 17.0785 -0.000562472 17.0786 -0.000315604 17.0786 -0.000173802 17.0786 -9.39097e-05 17.0786 -4.98132e-05 17.0786 -2.59191e-05 17.0786 -1.32441e-05 17.0786 -6.61722e-06 17.0786 -3.22401e-06 17.0786 -1.51553e-06 17.0786 -6.69738e-07 17.0786 -2.57025e-07 17.0786 -5.9817e-08 17.0786 3.34062e-08 17.0786 7.67559e-08 17.0787 9.56629e-08 17.0787 1.05692e-07 17.0788 1.09477e-07 17.0788 1.11309e-07 17.0789 1.12233e-07 17.0789 1.12732e-07 17.079 1.13069e-07 17.0791 1.13238e-07 17.0792 1.13344e-07 17.0793 1.13353e-07 17.0794 1.13296e-07 17.0795 1.13129e-07 17.0796 1.12853e-07 17.0797 1.12397e-07 17.0798 1.1196e-07 17.0798 1.11604e-07 17.0798 1.10394e-07 17.0798 1.09158e-07 17.0798 1.08877e-07 17.0796 1.07772e-07 17.0795 1.06373e-07 17.0792 1.04721e-07 17.0788 1.02752e-07 17.0783 1.00516e-07 17.0777 9.80435e-08 17.0769 9.53287e-08 17.076 9.24138e-08 17.0749 8.93451e-08 17.0737 8.61514e-08 17.0722 8.28531e-08 17.0705 7.94539e-08 17.0687 7.60647e-08 17.0666 7.26909e-08 17.0643 6.93403e-08 17.0618 6.61198e-08 17.0591 6.31062e-08 17.0563 6.03604e-08 17.0532 5.79821e-08 17.05 5.6008e-08 17.0466 5.44833e-08 17.0432 5.35219e-08 17.0397 5.32009e-08 17.0361 5.35279e-08 17.0325 5.45097e-08 17.0289 5.62964e-08 17.0255 5.87856e-08 17.0221 6.20344e-08 17.0188 6.60411e-08 17.0158 7.07569e-08 17.013 7.61429e-08 17.0104 8.21883e-08 17.0082 8.88454e-08 17.0063 9.60067e-08 17.0047 1.03544e-07 17.0035 1.11581e-07 17.0027 1.19725e-07 17.0023 1.27673e-07 17.0023 1.37474e-07 17.0028 1.48909e-07 17.0037 1.55154e-07 17.005 1.62329e-07 17.0067 1.6972e-07 17.0088 1.76625e-07 17.0112 1.82997e-07 17.014 1.88791e-07 17.0171 1.93963e-07 17.0204 1.98454e-07 17.0239 2.02222e-07 17.0277 2.05234e-07 17.0316 2.07465e-07 17.0356 2.0891e-07 17.0397 2.09558e-07 17.0439 2.09443e-07 17.0481 2.08623e-07 17.0523 2.07152e-07 17.0565 2.05092e-07 17.0606 2.02506e-07 17.0646 1.9945e-07 17.0685 1.95991e-07 17.0722 1.92191e-07 17.0758 1.88104e-07 17.0793 1.83802e-07 17.0826 1.79345e-07 17.0857 1.74784e-07 17.0886 1.70151e-07 17.0914 1.65505e-07 17.094 1.6089e-07 17.0963 1.56345e-07 17.0986 1.51904e-07 17.1006 1.47606e-07 17.1025 1.43472e-07 17.1042 1.39525e-07 17.1057 1.35776e-07 17.1071 1.32246e-07 17.1084 1.28948e-07 17.1095 1.25883e-07 17.1106 1.23047e-07 17.1115 1.20443e-07 17.1123 1.18065e-07 17.113 1.15902e-07 17.1137 1.1395e-07 17.1142 1.12196e-07 17.1147 1.10621e-07 17.1152 1.09215e-07 17.1156 1.07955e-07 17.1159 1.06847e-07 17.1162 1.05855e-07 17.1165 1.04984e-07 17.1167 1.04184e-07 17.1169 1.03537e-07 17.1171 1.02942e-07 17.1172 1.02403e-07 17.1174 1.01979e-07 17.1175 1.01564e-07 17.1176 1.00967e-07 17.1177 1.01472e-07 17.1178 1.00506e-07 17.1179 1.01987e-07 17.118 9.82122e-08 17.118 1.09184e-07 17.1181 1.18492e-07 17.1182 1.72701e-07 17.1182 3.74961e-07 17.1183 1.13176e-06 17.1183 3.97291e-06 17.1184 1.46373e-05 17.1184 5.46455e-05 17.1184 0.000204717 17.1183 0.000767125 17.1179 0.00286802 17.1164 0.0106612 17.1104 0.0393345 17.0878 0.144216 17.0037 0.520856 16.7065 1.8286 5.45977 15.838 17.1785 4.57585 17.1662 1.58107 17.1484 0.58663 17.168 0.203381 17.1825 0.0746837 17.1958 0.0300394 17.208 0.0185308 17.2178 0.0221653 17.2213 0.0358345 17.2187 0.0587745 17.211 0.090416 17.198 0.131637 17.1804 0.180396 17.1591 0.232443 17.1357 0.280666 17.1116 0.316405 17.0876 0.331339 17.0647 0.318159 17.0433 0.274247 17.023 0.204397 17.0036 0.112694 16.985 0.00617937 16.9638 -0.0995061 16.9457 -0.201413 16.9314 -0.288093 16.9229 -0.360662 16.9208 -0.413298 16.9252 -0.444976 16.9351 -0.456462 16.9492 -0.448967 16.9661 -0.425192 16.984 -0.388472 17.0017 -0.343024 17.018 -0.293134 17.0322 -0.242685 17.0441 -0.194846 17.0537 -0.151878 17.0611 -0.115053 17.0666 -0.0847839 17.0706 -0.0608349 17.0734 -0.0425399 17.0753 -0.0290138 17.0766 -0.0193157 17.0774 -0.0125611 17.0779 -0.00798445 17.0782 -0.0049641 17.0784 -0.00302038 17.0785 -0.00179954 17.0786 -0.00105059 17.0786 -0.000601172 17.0786 -0.000337248 17.0786 -0.000185708 17.0786 -0.000100361 17.0786 -5.32695e-05 17.0786 -2.7764e-05 17.0786 -1.42393e-05 17.0786 -7.17121e-06 17.0786 -3.55372e-06 17.0786 -1.7326e-06 17.0786 -8.32117e-07 17.0786 -3.92692e-07 17.0786 -1.82673e-07 17.0786 -8.37617e-08 17.0786 -3.787e-08 17.0787 -1.68484e-08 17.0787 -7.41875e-09 17.0788 -3.21143e-09 17.0788 -1.37152e-09 17.0789 -5.77529e-10 17.0789 -2.41016e-10 17.079 -9.68612e-11 17.0791 -3.54703e-11 17.0792 -1.31877e-11 17.0793 -4.54747e-12 17.0794 4.54747e-13 17.0795 4.54747e-13 17.0796 0 17.0797 -1.36424e-12 17.0798 0 17.0798 4.09273e-12 17.0798 5.45697e-12 17.0798 2.72848e-12 17.0798 -4.54747e-13 17.0796 -1.81899e-12 17.0795 4.54747e-13 17.0792 3.18323e-12 17.0788 9.09495e-13 17.0783 -4.54747e-13 17.0777 2.72848e-12 17.0769 -1.36424e-12 17.076 -3.18323e-12 17.0749 -3.18323e-12 17.0737 -4.54747e-13 17.0722 0 17.0705 0 17.0687 -9.09495e-13 17.0666 0 17.0643 2.27374e-12 17.0618 5.45697e-12 17.0591 4.09273e-12 17.0563 -1.81899e-12 17.0532 -2.72848e-12 17.05 -4.54747e-13 17.0466 0 17.0432 9.09495e-13 17.0397 2.27374e-12 17.0361 -2.72848e-12 17.0325 -1.81899e-12 17.0289 -1.36424e-12 17.0255 4.54747e-13 17.0221 -4.54747e-13 17.0188 -1.36424e-12 17.0158 4.54747e-13 17.013 1.81899e-12 17.0104 9.09495e-13 17.0082 1.36424e-12 17.0063 4.54747e-13 17.0047 -4.54747e-13 17.0035 -1.81899e-12 17.0027 -4.09273e-12 17.0023 -1.81899e-12 17.0023 4.54747e-13 17.0028 -1.81899e-12 17.0037 4.54747e-13 17.005 -9.09495e-13 17.0067 9.09495e-13 17.0088 -3.18323e-12 17.0112 4.09273e-12 17.014 6.36646e-12 17.0171 4.54747e-13 17.0204 -4.54747e-13 17.0239 -4.54747e-13 17.0277 1.81899e-12 17.0316 -9.09495e-13 17.0356 9.09495e-13 17.0397 2.72848e-12 17.0439 6.82121e-12 17.0481 5.00222e-12 17.0523 -4.54747e-13 17.0565 -2.27374e-12 17.0606 -2.27374e-12 17.0646 -4.54747e-13 17.0685 1.36424e-12 17.0722 1.36424e-12 17.0758 -4.09273e-12 17.0793 -3.63798e-12 17.0826 -2.27374e-12 17.0857 5.45697e-12 17.0886 2.27374e-12 17.0914 4.54747e-13 17.094 -9.09495e-13 17.0963 1.36424e-12 17.0986 -4.54747e-13 17.1006 4.54747e-13 17.1025 4.54747e-13 17.1042 2.27374e-12 17.1057 -9.09495e-13 17.1071 -4.54747e-13 17.1084 9.09495e-13 17.1095 4.54747e-13 17.1106 -2.72848e-12 17.1115 -1.36424e-12 17.1123 -4.54747e-13 17.113 -1.36424e-12 17.1137 -9.09495e-13 17.1142 -4.54747e-13 17.1147 -1.36424e-12 17.1152 -2.27374e-12 17.1156 -7.7307e-12 17.1159 -9.09495e-13 17.1162 -1.36424e-12 17.1165 6.82121e-12 17.1167 -2.41016e-11 17.1169 1.86446e-11 17.1171 8.18545e-12 17.1172 -1.54614e-11 17.1174 2.22826e-11 17.1175 -4.54747e-13 17.1176 -3.08773e-10 17.1177 6.43922e-10 17.1178 -3.4288e-10 17.1179 1.97315e-09 17.118 -3.06363e-09 17.118 1.04706e-08 17.1181 1.86706e-08 17.1182 7.67868e-08 17.1182 2.89091e-07 17.1183 1.08562e-06 17.1183 4.07354e-06 17.1184 1.52924e-05 17.1184 5.73849e-05 17.1184 0.000215365 17.1184 0.000807892 17.1183 0.00302209 17.1178 0.011238 17.1156 0.0415687 17.1065 0.153272 17.0682 0.55925 16.9057 1.99113 5.97138 16.3941 17.1297 4.15981 17.3152 1.39573 17.3812 0.520698 17.3708 0.213855 17.3585 0.0871108 17.3483 0.0402369 17.3364 0.0305505 17.3246 0.0340207 17.3175 0.0430323 17.3136 0.0627544 17.312 0.0921005 17.313 0.130721 17.3169 0.176612 17.3241 0.225319 17.3345 0.270256 17.3473 0.303643 17.3604 0.318252 17.3715 0.307237 17.3783 0.268175 17.3777 0.206471 17.3672 0.124282 17.3454 0.0284405 17.3211 -0.0749899 17.292 -0.172409 17.2604 -0.257081 17.2287 -0.329751 17.1987 -0.383778 17.1718 -0.418305 17.1486 -0.433508 17.1297 -0.430087 17.1148 -0.410387 17.1036 -0.377307 17.0955 -0.334929 17.0898 -0.287465 17.086 -0.238828 17.0834 -0.192283 17.0817 -0.150203 17.0806 -0.113971 17.0799 -0.0840887 17.0795 -0.0603898 17.0792 -0.0422552 17.079 -0.0288318 17.0789 -0.0191996 17.0788 -0.0124873 17.0788 -0.00793796 17.0787 -0.00493503 17.0787 -0.00300251 17.0787 -0.00178856 17.0787 -0.00104402 17.0787 -0.000597328 17.0786 -0.000335041 17.0786 -0.000184488 17.0786 -9.97184e-05 17.0786 -5.29621e-05 17.0786 -2.76461e-05 17.0786 -1.42272e-05 17.0786 -7.21756e-06 17.0786 -3.63167e-06 17.0786 -1.82672e-06 17.0786 -9.35435e-07 17.0786 -5.00424e-07 17.0786 -2.9252e-07 17.0786 -1.94951e-07 17.0786 -1.49788e-07 17.0787 -1.28151e-07 17.0787 -1.19996e-07 17.0788 -1.1567e-07 17.0788 -1.13953e-07 17.0789 -1.13348e-07 17.0789 -1.13199e-07 17.079 -1.13256e-07 17.0791 -1.13304e-07 17.0792 -1.1337e-07 17.0793 -1.13363e-07 17.0794 -1.13296e-07 17.0795 -1.13129e-07 17.0796 -1.12852e-07 17.0797 -1.124e-07 17.0798 -1.11959e-07 17.0798 -1.11595e-07 17.0798 -1.10384e-07 17.0798 -1.09153e-07 17.0798 -1.08879e-07 17.0796 -1.07774e-07 17.0795 -1.06372e-07 17.0792 -1.04714e-07 17.0788 -1.02749e-07 17.0783 -1.00516e-07 17.0777 -9.80367e-08 17.0769 -9.53301e-08 17.076 -9.24197e-08 17.0749 -8.93515e-08 17.0737 -8.61537e-08 17.0722 -8.28531e-08 17.0705 -7.9453e-08 17.0687 -7.60665e-08 17.0666 -7.26923e-08 17.0643 -6.93358e-08 17.0618 -6.61094e-08 17.0591 -6.30989e-08 17.0563 -6.03636e-08 17.0532 -5.79894e-08 17.05 -5.60099e-08 17.0466 -5.44824e-08 17.0432 -5.35201e-08 17.0397 -5.31954e-08 17.0361 -5.35333e-08 17.0325 -5.45142e-08 17.0289 -5.62986e-08 17.0255 -5.87852e-08 17.0221 -6.20353e-08 17.0188 -6.60425e-08 17.0158 -7.0755e-08 17.013 -7.61397e-08 17.0104 -8.21856e-08 17.0082 -8.88417e-08 17.0063 -9.60049e-08 17.0047 -1.03544e-07 17.0035 -1.11585e-07 17.0027 -1.19734e-07 17.0023 -1.27676e-07 17.0023 -1.37472e-07 17.0028 -1.48911e-07 17.0037 -1.55153e-07 17.005 -1.62331e-07 17.0067 -1.69719e-07 17.0088 -1.76631e-07 17.0112 -1.82989e-07 17.014 -1.88779e-07 17.0171 -1.93961e-07 17.0204 -1.98454e-07 17.0239 -2.02223e-07 17.0277 -2.05232e-07 17.0316 -2.07466e-07 17.0356 -2.08909e-07 17.0397 -2.09552e-07 17.0439 -2.0943e-07 17.0481 -2.08614e-07 17.0523 -2.07155e-07 17.0565 -2.05097e-07 17.0606 -2.0251e-07 17.0646 -1.99452e-07 17.0685 -1.95988e-07 17.0722 -1.92188e-07 17.0758 -1.88112e-07 17.0793 -1.83811e-07 17.0826 -1.7935e-07 17.0857 -1.74774e-07 17.0886 -1.70146e-07 17.0914 -1.65506e-07 17.094 -1.60891e-07 17.0963 -1.56342e-07 17.0986 -1.51905e-07 17.1006 -1.47605e-07 17.1025 -1.43471e-07 17.1042 -1.39521e-07 17.1057 -1.35778e-07 17.1071 -1.32248e-07 17.1084 -1.28945e-07 17.1095 -1.25881e-07 17.1106 -1.23052e-07 17.1115 -1.20448e-07 17.1123 -1.18064e-07 17.113 -1.15906e-07 17.1137 -1.13952e-07 17.1142 -1.12197e-07 17.1147 -1.10625e-07 17.1152 -1.09218e-07 17.1156 -1.0797e-07 17.1159 -1.0685e-07 17.1162 -1.05858e-07 17.1165 -1.0497e-07 17.1167 -1.04228e-07 17.1169 -1.03504e-07 17.1171 -1.02925e-07 17.1172 -1.02433e-07 17.1174 -1.01933e-07 17.1175 -1.01592e-07 17.1176 -1.01497e-07 17.1177 -1.00354e-07 17.1178 -1.01045e-07 17.1179 -9.80504e-08 17.118 -1.04346e-07 17.118 -8.90632e-08 17.1181 -8.32206e-08 17.1182 -2.65195e-08 17.1182 1.74638e-07 17.1183 9.32671e-07 17.1183 3.77339e-06 17.1184 1.44429e-05 17.1184 5.44795e-05 17.1185 0.000204848 17.1185 0.000769754 17.1187 0.00288296 17.1193 0.010724 17.1211 0.0397307 17.1268 0.147643 17.1392 0.546909 17.118 2.0123 6.06257 17.0269 17.0948 3.48537 17.2991 1.19154 17.3634 0.456404 17.4138 0.16354 17.4413 0.0597414 17.4576 0.024016 17.4721 0.0161646 17.4859 0.020266 17.4962 0.032829 17.5057 0.0533627 17.5163 0.0815613 17.5296 0.117516 17.5472 0.159145 17.57 0.202531 17.5984 0.241878 17.6315 0.270595 17.6668 0.283015 17.7016 0.272904 17.733 0.238744 17.7557 0.185844 17.7662 0.115133 17.7633 0.0317211 17.7417 -0.0533277 17.7057 -0.136927 17.6559 -0.209114 17.598 -0.273178 17.5355 -0.322024 17.4718 -0.354922 17.4097 -0.371543 17.3515 -0.371909 17.2989 -0.357784 17.2528 -0.331192 17.2135 -0.295693 17.181 -0.254983 17.1548 -0.212619 17.1342 -0.171654 17.1183 -0.134354 17.1064 -0.102083 17.0977 -0.0753791 17.0914 -0.0541582 17.0871 -0.0378995 17.0841 -0.0258569 17.0821 -0.0172137 17.0808 -0.0111912 17.08 -0.00711048 17.0794 -0.00441809 17.0791 -0.00268632 17.0789 -0.00159923 17.0788 -0.0009328 17.0787 -0.000533379 17.0787 -0.000298987 17.0787 -0.000164561 17.0786 -8.89303e-05 17.0786 -4.72509e-05 17.0786 -2.47028e-05 17.0786 -1.27607e-05 17.0786 -6.52932e-06 17.0786 -3.34452e-06 17.0786 -1.7423e-06 17.0786 -9.52765e-07 17.0786 -5.67449e-07 17.0786 -3.8338e-07 17.0786 -2.97421e-07 17.0786 -2.57769e-07 17.0787 -2.37645e-07 17.0787 -2.3184e-07 17.0788 -2.27775e-07 17.0788 -2.26385e-07 17.0789 -2.26056e-07 17.0789 -2.26129e-07 17.079 -2.26402e-07 17.0791 -2.26569e-07 17.0792 -2.26728e-07 17.0793 -2.26723e-07 17.0794 -2.26592e-07 17.0795 -2.26254e-07 17.0796 -2.25693e-07 17.0797 -2.24788e-07 17.0798 -2.23934e-07 17.0798 -2.23182e-07 17.0798 -2.20768e-07 17.0798 -2.18314e-07 17.0798 -2.17736e-07 17.0796 -2.15545e-07 17.0795 -2.12751e-07 17.0792 -2.09439e-07 17.0788 -2.05507e-07 17.0783 -2.01041e-07 17.0777 -1.96082e-07 17.0769 -1.90663e-07 17.076 -1.84838e-07 17.0749 -1.78699e-07 17.0737 -1.72306e-07 17.0722 -1.65706e-07 17.0705 -1.58902e-07 17.0687 -1.52139e-07 17.0666 -1.45383e-07 17.0643 -1.38672e-07 17.0618 -1.32226e-07 17.0591 -1.26203e-07 17.0563 -1.20722e-07 17.0532 -1.15977e-07 17.05 -1.12025e-07 17.0466 -1.08965e-07 17.0432 -1.07043e-07 17.0397 -1.0639e-07 17.0361 -1.0706e-07 17.0325 -1.09024e-07 17.0289 -1.12609e-07 17.0255 -1.1757e-07 17.0221 -1.24068e-07 17.0188 -1.32084e-07 17.0158 -1.41512e-07 17.013 -1.52284e-07 17.0104 -1.64375e-07 17.0082 -1.77686e-07 17.0063 -1.92007e-07 17.0047 -2.07086e-07 17.0035 -2.23171e-07 17.0027 -2.39478e-07 17.0023 -2.5545e-07 17.0023 -2.74639e-07 17.0028 -2.98024e-07 17.0037 -3.10299e-07 17.005 -3.24638e-07 17.0067 -3.39432e-07 17.0088 -3.5325e-07 17.0112 -3.65973e-07 17.014 -3.77551e-07 17.0171 -3.87914e-07 17.0204 -3.96903e-07 17.0239 -4.04443e-07 17.0277 -4.10467e-07 17.0316 -4.14935e-07 17.0356 -4.17824e-07 17.0397 -4.19114e-07 17.0439 -4.18873e-07 17.0481 -4.1724e-07 17.0523 -4.14313e-07 17.0565 -4.10195e-07 17.0606 -4.05018e-07 17.0646 -3.98904e-07 17.0685 -3.91979e-07 17.0722 -3.84378e-07 17.0758 -3.7622e-07 17.0793 -3.67618e-07 17.0826 -3.58697e-07 17.0857 -3.49553e-07 17.0886 -3.40296e-07 17.0914 -3.31013e-07 17.094 -3.21783e-07 17.0963 -3.12687e-07 17.0986 -3.03809e-07 17.1006 -2.95213e-07 17.1025 -2.86944e-07 17.1042 -2.79044e-07 17.1057 -2.71556e-07 17.1071 -2.64498e-07 17.1084 -2.57894e-07 17.1095 -2.51762e-07 17.1106 -2.46102e-07 17.1115 -2.40891e-07 17.1123 -2.36129e-07 17.113 -2.3181e-07 17.1137 -2.27904e-07 17.1142 -2.24391e-07 17.1147 -2.21248e-07 17.1152 -2.18434e-07 17.1156 -2.15932e-07 17.1159 -2.137e-07 17.1162 -2.11715e-07 17.1165 -2.09951e-07 17.1167 -2.0843e-07 17.1169 -2.07027e-07 17.1171 -2.05861e-07 17.1172 -2.04844e-07 17.1174 -2.03902e-07 17.1175 -2.03139e-07 17.1176 -2.0272e-07 17.1177 -2.01328e-07 17.1178 -2.0163e-07 17.1179 -1.99136e-07 17.118 -2.03783e-07 17.118 -1.91153e-07 17.1181 -1.85619e-07 17.1182 -1.37661e-07 17.1182 3.35308e-08 17.1183 6.77834e-07 17.1183 3.0924e-06 17.1184 1.21614e-05 17.1184 4.62002e-05 17.1185 0.000174125 17.1187 0.000655591 17.1191 0.00245869 17.1207 0.00913009 17.1265 0.0339631 17.1469 0.127336 17.2125 0.481271 17.3433 1.88156 5.64211 17.7638 17.1718 2.55401 17.5181 0.845248 17.6488 0.325828 17.6776 0.134836 17.6818 0.0555867 17.6783 0.0276273 17.672 0.0225764 17.6658 0.0265049 17.6651 0.0336792 17.6701 0.0484537 17.682 0.0697796 17.7027 0.0968586 17.7341 0.127888 17.7771 0.159609 17.8312 0.187768 17.8941 0.207743 17.961 0.216196 18.027 0.207802 18.0864 0.18257 18.1306 0.145019 18.1525 0.0952228 18.1471 0.0378075 18.1202 -0.0263493 18.0705 -0.0884384 18.0009 -0.143112 17.9185 -0.193209 17.8276 -0.232513 17.7327 -0.260616 17.6378 -0.276772 17.5463 -0.280403 17.4613 -0.272704 17.3849 -0.25461 17.3182 -0.229013 17.2619 -0.198661 17.2157 -0.166433 17.1789 -0.134864 17.1504 -0.105838 17.1288 -0.0805745 17.113 -0.0595775 17.1017 -0.0428437 17.0938 -0.0299974 17.0884 -0.0204706 17.0848 -0.0136283 17.0824 -0.00885894 17.081 -0.00562713 17.08 -0.00349512 17.0795 -0.00212422 17.0791 -0.001264 17.0789 -0.000736827 17.0788 -0.000421137 17.0787 -0.000235963 17.0787 -0.000129851 17.0786 -7.01894e-05 17.0786 -3.73377e-05 17.0786 -1.95798e-05 17.0786 -1.01808e-05 17.0786 -5.28309e-06 17.0786 -2.78216e-06 17.0786 -1.52417e-06 17.0786 -9.06265e-07 17.0786 -6.04441e-07 17.0786 -4.60319e-07 17.0786 -3.93557e-07 17.0786 -3.62919e-07 17.0787 -3.45777e-07 17.0787 -3.43204e-07 17.0788 -3.396e-07 17.0788 -3.38708e-07 17.0789 -3.38719e-07 17.0789 -3.39043e-07 17.079 -3.39536e-07 17.0791 -3.39832e-07 17.0792 -3.40091e-07 17.0793 -3.40091e-07 17.0794 -3.39898e-07 17.0795 -3.39389e-07 17.0796 -3.38538e-07 17.0797 -3.3719e-07 17.0798 -3.35967e-07 17.0798 -3.34765e-07 17.0798 -3.31141e-07 17.0798 -3.27536e-07 17.0798 -3.26545e-07 17.0796 -3.233e-07 17.0795 -3.19126e-07 17.0792 -3.14153e-07 17.0788 -3.08252e-07 17.0783 -3.01558e-07 17.0777 -2.94125e-07 17.0769 -2.85988e-07 17.076 -2.77249e-07 17.0749 -2.68042e-07 17.0737 -2.58456e-07 17.0722 -2.4856e-07 17.0705 -2.38342e-07 17.0687 -2.28229e-07 17.0666 -2.18077e-07 17.0643 -2.08009e-07 17.0618 -1.98344e-07 17.0591 -1.89313e-07 17.0563 -1.81073e-07 17.0532 -1.73971e-07 17.05 -1.68053e-07 17.0466 -1.63451e-07 17.0432 -1.60565e-07 17.0397 -1.59582e-07 17.0361 -1.60581e-07 17.0325 -1.6353e-07 17.0289 -1.68945e-07 17.0255 -1.76353e-07 17.0221 -1.86099e-07 17.0188 -1.98119e-07 17.0158 -2.12264e-07 17.013 -2.28428e-07 17.0104 -2.4656e-07 17.0082 -2.66516e-07 17.0063 -2.87992e-07 17.0047 -3.10617e-07 17.0035 -3.34767e-07 17.0027 -3.59237e-07 17.0023 -3.83436e-07 17.0023 -4.11183e-07 17.0028 -4.47557e-07 17.0037 -4.65444e-07 17.005 -4.86908e-07 17.0067 -5.09149e-07 17.0088 -5.29877e-07 17.0112 -5.48962e-07 17.014 -5.66331e-07 17.0171 -5.81873e-07 17.0204 -5.95356e-07 17.0239 -6.06663e-07 17.0277 -6.15697e-07 17.0316 -6.22399e-07 17.0356 -6.26731e-07 17.0397 -6.28664e-07 17.0439 -6.28308e-07 17.0481 -6.25854e-07 17.0523 -6.21461e-07 17.0565 -6.15287e-07 17.0606 -6.07524e-07 17.0646 -5.98356e-07 17.0685 -5.87971e-07 17.0722 -5.7657e-07 17.0758 -5.64328e-07 17.0793 -5.51426e-07 17.0826 -5.38047e-07 17.0857 -5.24336e-07 17.0886 -5.10448e-07 17.0914 -4.96524e-07 17.094 -4.82679e-07 17.0963 -4.69033e-07 17.0986 -4.55716e-07 17.1006 -4.42823e-07 17.1025 -4.3042e-07 17.1042 -4.1857e-07 17.1057 -4.07336e-07 17.1071 -3.96748e-07 17.1084 -3.86844e-07 17.1095 -3.77644e-07 17.1106 -3.69155e-07 17.1115 -3.61339e-07 17.1123 -3.54195e-07 17.113 -3.47717e-07 17.1137 -3.41858e-07 17.1142 -3.36587e-07 17.1147 -3.31873e-07 17.1152 -3.27652e-07 17.1156 -3.23894e-07 17.1159 -3.20552e-07 17.1162 -3.17571e-07 17.1165 -3.14933e-07 17.1167 -3.1263e-07 17.1169 -3.10554e-07 17.1171 -3.08799e-07 17.1172 -3.07255e-07 17.1174 -3.05875e-07 17.1175 -3.04693e-07 17.1176 -3.03911e-07 17.1177 -3.02357e-07 17.1178 -3.02253e-07 17.1179 -3.00163e-07 17.118 -3.03049e-07 17.118 -2.94147e-07 17.1181 -2.89583e-07 17.1182 -2.54988e-07 17.1182 -1.30407e-07 17.1183 3.36642e-07 17.1183 2.08748e-06 17.1184 8.66293e-06 17.1184 3.33478e-05 17.1185 0.000126169 17.1187 0.000475994 17.1194 0.00178663 17.122 0.00662795 17.1312 0.0247534 17.1649 0.0936921 17.2835 0.362684 17.609 1.55611 4.60276 18.6484 16.99 1.38256 17.3778 0.457526 17.5303 0.173357 17.602 0.0632231 17.633 0.0246716 17.6504 0.0103527 17.6643 0.00873727 17.6796 0.0113279 17.6963 0.017094 17.7182 0.026625 17.7486 0.0395307 17.7901 0.055511 17.8446 0.0734235 17.9128 0.0914486 17.9935 0.107132 18.0834 0.117959 18.1772 0.122999 18.2706 0.117515 18.3566 0.103791 18.424 0.0829814 18.4661 0.0558495 18.4806 0.0240295 18.4637 -0.00979287 18.4159 -0.0447702 18.3397 -0.0742436 18.2446 -0.102743 18.1351 -0.125446 18.0161 -0.142552 17.8925 -0.153366 17.7694 -0.157158 17.6516 -0.154341 17.5428 -0.145364 17.4457 -0.131699 17.362 -0.114877 17.2922 -0.0966274 17.2358 -0.0785047 17.1916 -0.0617117 17.158 -0.0470042 17.1332 -0.0347484 17.1153 -0.0249718 17.1027 -0.0174648 17.0942 -0.0119015 17.0884 -0.0079107 17.0847 -0.00513337 17.0823 -0.00325476 17.0808 -0.00201784 17.0799 -0.00122407 17.0794 -0.000727064 17.0791 -0.000423063 17.0789 -0.000241433 17.0788 -0.000135106 17.0787 -7.43151e-05 17.0787 -4.02048e-05 17.0786 -2.14636e-05 17.0786 -1.13542e-05 17.0786 -6.01479e-06 17.0786 -3.23942e-06 17.0786 -1.82569e-06 17.0786 -1.11441e-06 17.0786 -7.68064e-07 17.0786 -5.98292e-07 17.0786 -5.17259e-07 17.0786 -4.80607e-07 17.0786 -4.64026e-07 17.0787 -4.51978e-07 17.0787 -4.53878e-07 17.0788 -4.51018e-07 17.0788 -4.50876e-07 17.0789 -4.51318e-07 17.0789 -4.51933e-07 17.079 -4.52644e-07 17.0791 -4.53096e-07 17.0792 -4.53453e-07 17.0793 -4.5346e-07 17.0794 -4.53205e-07 17.0795 -4.52506e-07 17.0796 -4.51338e-07 17.0797 -4.49557e-07 17.0798 -4.48025e-07 17.0798 -4.46273e-07 17.0798 -4.41399e-07 17.0798 -4.36956e-07 17.0798 -4.35265e-07 17.0796 -4.3106e-07 17.0795 -4.25524e-07 17.0792 -4.1889e-07 17.0788 -4.11022e-07 17.0783 -4.02099e-07 17.0777 -3.92188e-07 17.0769 -3.81321e-07 17.076 -3.69666e-07 17.0749 -3.57385e-07 17.0737 -3.44606e-07 17.0722 -3.31414e-07 17.0705 -3.17765e-07 17.0687 -3.04349e-07 17.0666 -2.90768e-07 17.0643 -2.77348e-07 17.0618 -2.6447e-07 17.0591 -2.52428e-07 17.0563 -2.41406e-07 17.0532 -2.31979e-07 17.05 -2.24103e-07 17.0466 -2.17944e-07 17.0432 -2.14094e-07 17.0397 -2.12771e-07 17.0361 -2.14093e-07 17.0325 -2.18036e-07 17.0289 -2.25325e-07 17.0255 -2.35139e-07 17.0221 -2.48129e-07 17.0188 -2.64153e-07 17.0158 -2.83016e-07 17.013 -3.04587e-07 17.0104 -3.2876e-07 17.0082 -3.5534e-07 17.0063 -3.83953e-07 17.0047 -4.14145e-07 17.0035 -4.46396e-07 17.0027 -4.78999e-07 17.0023 -5.11754e-07 17.0023 -5.46784e-07 17.0028 -5.97706e-07 17.0037 -6.20586e-07 17.005 -6.49089e-07 17.0067 -6.78843e-07 17.0088 -7.06479e-07 17.0112 -7.31918e-07 17.014 -7.55077e-07 17.0171 -7.75806e-07 17.0204 -7.93786e-07 17.0239 -8.08871e-07 17.0277 -8.20921e-07 17.0316 -8.29868e-07 17.0356 -8.35652e-07 17.0397 -8.38225e-07 17.0439 -8.37763e-07 17.0481 -8.34481e-07 17.0523 -8.28619e-07 17.0565 -8.20387e-07 17.0606 -8.10034e-07 17.0646 -7.9781e-07 17.0685 -7.8396e-07 17.0722 -7.68762e-07 17.0758 -7.52438e-07 17.0793 -7.35233e-07 17.0826 -7.17398e-07 17.0857 -6.99118e-07 17.0886 -6.80603e-07 17.0914 -6.62039e-07 17.094 -6.43579e-07 17.0963 -6.25385e-07 17.0986 -6.07626e-07 17.1006 -5.90439e-07 17.1025 -5.73901e-07 17.1042 -5.58101e-07 17.1057 -5.4312e-07 17.1071 -5.29e-07 17.1084 -5.15796e-07 17.1095 -5.03526e-07 17.1106 -4.92208e-07 17.1115 -4.81787e-07 17.1123 -4.72263e-07 17.113 -4.63626e-07 17.1137 -4.55816e-07 17.1142 -4.48784e-07 17.1147 -4.42502e-07 17.1152 -4.36869e-07 17.1156 -4.31856e-07 17.1159 -4.27406e-07 17.1162 -4.23427e-07 17.1165 -4.19916e-07 17.1167 -4.16826e-07 17.1169 -4.14087e-07 17.1171 -4.11737e-07 17.1172 -4.09667e-07 17.1174 -4.07847e-07 17.1175 -4.06261e-07 17.1176 -4.0504e-07 17.1177 -4.0348e-07 17.1178 -4.0284e-07 17.1179 -4.01245e-07 17.118 -4.02307e-07 17.118 -3.97536e-07 17.1181 -3.94793e-07 17.1182 -3.76561e-07 17.1182 -3.11131e-07 17.1183 -6.71562e-08 17.1183 8.47297e-07 17.1184 4.28064e-06 17.1184 1.71712e-05 17.1185 6.56624e-05 17.1188 0.000248497 17.1197 0.000933595 17.1229 0.0034635 17.1347 0.0129689 17.179 0.0494749 17.3462 0.195456 17.9317 0.97065 2.77191 19.7626 3.92313 1.08903 4.01827 0.36241 4.05437 0.137273 4.06762 0.049995 4.07271 0.0196035 4.07447 0.00860917 4.07577 0.00745622 4.07731 0.0098057 4.07978 0.0146526 4.08385 0.0225846 4.0902 0.0332127 4.09951 0.0462178 4.11233 0.0606204 4.12888 0.0749188 4.14891 0.0871117 4.17172 0.0952095 4.19614 0.0988761 4.22144 0.0936445 4.24558 0.0823498 4.26525 0.0651411 4.27863 0.0433419 4.28469 0.0181691 4.2831 -0.00839878 4.27305 -0.0365257 4.25529 -0.0593428 4.23237 -0.0816351 4.20526 -0.0992771 4.17501 -0.112642 4.14277 -0.121169 4.10989 -0.124182 4.07782 -0.121927 4.04763 -0.114948 4.02028 -0.104227 3.99644 -0.0909792 3.97641 -0.076574 3.96015 -0.062245 3.94739 -0.0489494 3.93767 -0.0372977 3.93049 -0.0275763 3.92533 -0.0198203 3.92173 -0.0138623 3.91927 -0.00944623 3.91763 -0.00627815 3.91657 -0.00407341 3.9159 -0.00258224 3.91548 -0.00160058 3.91522 -0.000970742 3.91507 -0.000576473 3.91498 -0.000335377 3.91493 -0.000191379 3.9149 -0.000107108 3.91488 -5.89463e-05 3.91487 -3.19321e-05 3.91486 -1.70957e-05 3.91486 -9.0957e-06 3.91486 -4.87229e-06 3.91485 -2.67827e-06 3.91485 -1.5614e-06 3.91485 -9.98927e-07 3.91485 -7.26252e-07 3.91485 -5.92185e-07 3.91486 -5.28165e-07 3.91486 -4.99604e-07 3.91487 -4.86789e-07 3.91487 -4.7611e-07 3.91488 -4.79176e-07 3.91489 -4.76506e-07 3.9149 -4.76568e-07 3.91492 -4.77119e-07 3.91493 -4.77807e-07 3.91495 -4.7856e-07 3.91497 -4.79051e-07 3.91499 -4.79431e-07 3.91502 -4.7944e-07 3.91504 -4.79171e-07 3.91506 -4.78425e-07 3.91508 -4.77183e-07 3.9151 -4.75306e-07 3.91512 -4.7371e-07 3.91513 -4.71813e-07 3.91514 -4.66624e-07 3.91514 -4.62109e-07 3.91512 -4.60148e-07 3.9151 -4.55748e-07 3.91505 -4.49903e-07 3.91499 -4.42888e-07 3.9149 -4.34571e-07 3.91479 -4.2514e-07 3.91464 -4.14664e-07 3.91447 -4.03172e-07 3.91426 -3.90854e-07 3.91401 -3.7787e-07 3.91372 -3.64358e-07 3.91339 -3.50419e-07 3.91301 -3.35987e-07 3.91258 -3.21825e-07 3.9121 -3.07451e-07 3.91158 -2.93268e-07 3.91101 -2.79655e-07 3.91039 -2.66931e-07 3.90973 -2.55264e-07 3.90903 -2.45314e-07 3.9083 -2.36989e-07 3.90753 -2.30471e-07 3.90674 -2.26402e-07 3.90593 -2.25e-07 3.90511 -2.26391e-07 3.90429 -2.30566e-07 3.90347 -2.38289e-07 3.90267 -2.48643e-07 3.9019 -2.62376e-07 3.90116 -2.79311e-07 3.90046 -2.99249e-07 3.89982 -3.22059e-07 3.89923 -3.47609e-07 3.89871 -3.75698e-07 3.89827 -4.0594e-07 3.89791 -4.37865e-07 3.89764 -4.71975e-07 3.89746 -5.06428e-07 3.89737 -5.41198e-07 3.89737 -5.77671e-07 3.89748 -6.32199e-07 3.89769 -6.56135e-07 3.89799 -6.86226e-07 3.89838 -7.17715e-07 3.89886 -7.46935e-07 3.89941 -7.73827e-07 3.90005 -7.98313e-07 3.90075 -8.20231e-07 3.90151 -8.39242e-07 3.90232 -8.55192e-07 3.90318 -8.67934e-07 3.90408 -8.77395e-07 3.905 -8.83514e-07 3.90595 -8.86237e-07 3.90691 -8.85757e-07 3.90787 -8.82284e-07 3.90883 -8.76087e-07 3.90978 -8.67383e-07 3.91072 -8.56438e-07 3.91164 -8.43518e-07 3.91253 -8.28877e-07 3.91339 -8.1281e-07 3.91422 -7.95553e-07 3.91501 -7.77365e-07 3.91577 -7.58511e-07 3.91648 -7.39183e-07 3.91716 -7.19612e-07 3.91779 -6.99984e-07 3.91838 -6.80466e-07 3.91892 -6.61232e-07 3.91943 -6.42454e-07 3.9199 -6.24281e-07 3.92032 -6.068e-07 3.92071 -5.90091e-07 3.92107 -5.74253e-07 3.92139 -5.59323e-07 3.92168 -5.45364e-07 3.92195 -5.32391e-07 3.92218 -5.20424e-07 3.92239 -5.09404e-07 3.92258 -4.99331e-07 3.92275 -4.90199e-07 3.92289 -4.81941e-07 3.92302 -4.74503e-07 3.92314 -4.67868e-07 3.92324 -4.61911e-07 3.92333 -4.56605e-07 3.9234 -4.51902e-07 3.92347 -4.47697e-07 3.92353 -4.43983e-07 3.92358 -4.40714e-07 3.92363 -4.37818e-07 3.92367 -4.35333e-07 3.92371 -4.33143e-07 3.92374 -4.31222e-07 3.92377 -4.29545e-07 3.9238 -4.28212e-07 3.92382 -4.26671e-07 3.92384 -4.25893e-07 3.92386 -4.24418e-07 3.92388 -4.25061e-07 3.9239 -4.21252e-07 3.92391 -4.19011e-07 3.92393 -4.0474e-07 3.92394 -3.53795e-07 3.92395 -1.64235e-07 3.92396 5.45891e-07 3.92397 3.21184e-06 3.92399 1.32212e-05 3.92401 5.08765e-05 3.92408 0.000192862 3.92429 0.000724896 3.92507 0.00268945 3.92798 0.0100739 3.93898 0.0384746 3.98159 0.152859 4.15762 0.794623 2.25227 4.67727 3.39851 0.8118 3.48793 0.27301 3.52228 0.10294 3.53545 0.0368409 3.54073 0.0143463 3.54313 0.00622822 3.54511 0.00548815 3.54757 0.00736691 3.551 0.0112404 3.55615 0.0174716 3.56363 0.0257549 3.57404 0.0358339 3.58776 0.0469165 3.60487 0.0578224 3.62504 0.0669625 3.64752 0.0728042 3.67125 0.0755284 3.69556 0.0710392 3.7183 0.062274 3.73634 0.0488147 3.74824 0.0322176 3.7534 0.0131665 3.75136 -0.00665623 3.74145 -0.0287278 3.72452 -0.045412 3.70309 -0.0620722 3.67795 -0.0750873 3.64999 -0.0850047 3.62022 -0.0914143 3.58988 -0.0936445 3.56025 -0.0918133 3.53227 -0.0866595 3.50684 -0.078625 3.48461 -0.068663 3.46588 -0.0578141 3.45065 -0.0470096 3.43868 -0.0369752 3.42955 -0.0281772 3.4228 -0.0208331 3.41795 -0.0149724 3.41455 -0.0104701 3.41223 -0.00713317 3.41069 -0.00473962 3.40969 -0.00307427 3.40906 -0.00194823 3.40866 -0.00120719 3.40842 -0.000731912 3.40828 -0.000434517 3.40819 -0.000252736 3.40814 -0.000144214 3.40812 -8.07348e-05 3.4081 -4.44729e-05 3.40809 -2.41436e-05 3.40808 -1.29844e-05 3.40808 -6.97009e-06 3.40808 -3.79673e-06 3.40808 -2.14941e-06 3.40808 -1.31154e-06 3.40808 -8.8886e-07 3.40808 -6.85328e-07 3.40808 -5.84765e-07 3.40808 -5.36696e-07 3.40808 -5.15704e-07 3.40809 -5.06418e-07 3.40809 -4.97032e-07 3.4081 -5.01172e-07 3.40811 -4.9867e-07 3.40812 -4.98925e-07 3.40813 -4.99571e-07 3.40815 -5.00322e-07 3.40816 -5.01112e-07 3.40818 -5.01646e-07 3.4082 -5.02041e-07 3.40822 -5.0205e-07 3.40824 -5.01772e-07 3.40826 -5.00981e-07 3.40828 -4.99671e-07 3.40829 -4.97712e-07 3.40831 -4.96069e-07 3.40832 -4.9403e-07 3.40833 -4.88561e-07 3.40832 -4.84024e-07 3.40831 -4.81792e-07 3.40829 -4.77234e-07 3.40825 -4.71116e-07 3.40819 -4.6377e-07 3.40812 -4.55066e-07 3.40802 -4.45196e-07 3.40789 -4.34233e-07 3.40774 -4.22198e-07 3.40756 -4.09296e-07 3.40734 -3.95707e-07 3.40709 -3.8156e-07 3.4068 -3.66979e-07 3.40647 -3.51858e-07 3.4061 -3.37059e-07 3.40568 -3.21988e-07 3.40523 -3.07147e-07 3.40473 -2.92903e-07 3.40419 -2.79577e-07 3.40362 -2.67351e-07 3.40301 -2.56952e-07 3.40237 -2.48236e-07 3.4017 -2.41411e-07 3.40101 -2.37153e-07 3.40031 -2.35676e-07 3.39959 -2.37127e-07 3.39888 -2.41507e-07 3.39817 -2.49604e-07 3.39747 -2.60421e-07 3.3968 -2.74802e-07 3.39615 -2.92528e-07 3.39555 -3.13396e-07 3.39498 -3.37281e-07 3.39448 -3.64027e-07 3.39403 -3.93426e-07 3.39364 -4.25076e-07 3.39333 -4.58507e-07 3.39309 -4.94236e-07 3.39293 -5.30285e-07 3.39285 -5.66826e-07 3.39286 -6.04481e-07 3.39295 -6.62236e-07 3.39313 -6.87067e-07 3.39339 -7.18524e-07 3.39373 -7.51535e-07 3.39415 -7.82127e-07 3.39463 -8.10285e-07 3.39519 -8.35933e-07 3.3958 -8.58876e-07 3.39646 -8.78788e-07 3.39717 -8.95498e-07 3.39791 -9.08844e-07 3.39869 -9.1875e-07 3.3995 -9.25165e-07 3.40032 -9.28021e-07 3.40116 -9.27517e-07 3.402 -9.23888e-07 3.40283 -9.17398e-07 3.40366 -9.08287e-07 3.40448 -8.96827e-07 3.40528 -8.83299e-07 3.40605 -8.67976e-07 3.4068 -8.51147e-07 3.40753 -8.33083e-07 3.40822 -8.14045e-07 3.40887 -7.94298e-07 3.40949 -7.74064e-07 3.41008 -7.53571e-07 3.41063 -7.33015e-07 3.41114 -7.12582e-07 3.41162 -6.92437e-07 3.41206 -6.72773e-07 3.41247 -6.53747e-07 3.41284 -6.3544e-07 3.41318 -6.17951e-07 3.41349 -6.0136e-07 3.41377 -5.85729e-07 3.41402 -5.71104e-07 3.41425 -5.57522e-07 3.41446 -5.44993e-07 3.41464 -5.3345e-07 3.4148 -5.22903e-07 3.41495 -5.13335e-07 3.41508 -5.04686e-07 3.41519 -4.96902e-07 3.41529 -4.89948e-07 3.41538 -4.83713e-07 3.41545 -4.78158e-07 3.41552 -4.7323e-07 3.41558 -4.68825e-07 3.41563 -4.64928e-07 3.41568 -4.6151e-07 3.41572 -4.58482e-07 3.41575 -4.55873e-07 3.41578 -4.53583e-07 3.41581 -4.51571e-07 3.41584 -4.49818e-07 3.41586 -4.48383e-07 3.41588 -4.46869e-07 3.4159 -4.4596e-07 3.41592 -4.44588e-07 3.41593 -4.44865e-07 3.41595 -4.41907e-07 3.41596 -4.40114e-07 3.41598 -4.29343e-07 3.41599 -3.91216e-07 3.416 -2.49824e-07 3.41601 2.79473e-07 3.41602 2.26624e-06 3.41603 9.72554e-06 3.41605 3.77888e-05 3.41611 0.000143607 3.4163 0.000540111 3.41699 0.0020041 3.41956 0.00750756 3.42936 0.0286789 3.46783 0.114399 3.64713 0.615326 1.74152 4.15788 2.97459 0.576993 3.05267 0.194946 3.0823 0.0733244 3.09304 0.0261134 3.0972 0.0102055 3.09889 0.00455314 3.10029 0.00410812 3.10207 0.00559968 3.10481 0.00852026 3.10915 0.0131503 3.1157 0.0192352 3.12501 0.0265413 3.13747 0.034468 3.15317 0.0421477 3.17176 0.0483968 3.19254 0.0521182 3.21453 0.0539716 3.23701 0.0503319 3.25781 0.0437946 3.27409 0.0340101 3.28455 0.022398 3.28852 0.00931565 3.28567 -0.00413791 3.27539 -0.0206004 3.25872 -0.0317151 3.23816 -0.0433461 3.21451 -0.0523048 3.18852 -0.0592574 3.16107 -0.0639429 3.13329 -0.0654752 3.10623 -0.0641662 3.08063 -0.0607185 3.05735 -0.05516 3.03699 -0.0482128 3.01984 -0.0406222 3.00589 -0.0330471 2.99492 -0.0260021 2.98656 -0.0198193 2.98037 -0.0146563 2.97593 -0.0105332 2.97282 -0.00736549 2.9707 -0.00501745 2.96929 -0.00333327 2.96838 -0.00216159 2.9678 -0.00136951 2.96744 -0.000848375 2.96722 -0.000514237 2.96709 -0.000305232 2.96701 -0.000177529 2.96697 -0.000101324 2.96694 -5.67702e-05 2.96693 -3.13308e-05 2.96692 -1.70766e-05 2.96691 -9.25631e-06 2.96691 -5.04371e-06 2.96691 -2.82234e-06 2.96691 -1.67026e-06 2.96691 -1.08494e-06 2.96691 -7.88717e-07 2.96691 -6.47671e-07 2.96691 -5.77362e-07 2.96691 -5.43696e-07 2.96691 -5.29537e-07 2.96692 -5.23418e-07 2.96692 -5.15203e-07 2.96693 -5.20306e-07 2.96693 -5.17952e-07 2.96694 -5.18379e-07 2.96695 -5.19114e-07 2.96697 -5.19922e-07 2.96698 -5.20738e-07 2.967 -5.21315e-07 2.96701 -5.21719e-07 2.96703 -5.21732e-07 2.96705 -5.21442e-07 2.96706 -5.20611e-07 2.96708 -5.19241e-07 2.9671 -5.1721e-07 2.96711 -5.15527e-07 2.96712 -5.13359e-07 2.96712 -5.07633e-07 2.96712 -5.03125e-07 2.96711 -5.00626e-07 2.96709 -4.95929e-07 2.96706 -4.89574e-07 2.96701 -4.81947e-07 2.96694 -4.72905e-07 2.96686 -4.62658e-07 2.96675 -4.51259e-07 2.96662 -4.38758e-07 2.96646 -4.25356e-07 2.96627 -4.11235e-07 2.96605 -3.96543e-07 2.96579 -3.81398e-07 2.96551 -3.65688e-07 2.96518 -3.50328e-07 2.96482 -3.34659e-07 2.96443 -3.19238e-07 2.96399 -3.04442e-07 2.96353 -2.90602e-07 2.96303 -2.77891e-07 2.96249 -2.671e-07 2.96194 -2.5804e-07 2.96136 -2.5095e-07 2.96076 -2.46531e-07 2.96014 -2.44989e-07 2.95952 -2.46493e-07 2.9589 -2.51048e-07 2.95828 -2.59477e-07 2.95767 -2.70697e-07 2.95709 -2.8563e-07 2.95653 -3.04042e-07 2.956 -3.25721e-07 2.95551 -3.50537e-07 2.95507 -3.78326e-07 2.95467 -4.08858e-07 2.95434 -4.41731e-07 2.95407 -4.76475e-07 2.95386 -5.13601e-07 2.95372 -5.51046e-07 2.95365 -5.89138e-07 2.95366 -6.27771e-07 2.95374 -6.88393e-07 2.9539 -7.13982e-07 2.95412 -7.4663e-07 2.95442 -7.80967e-07 2.95478 -8.12755e-07 2.9552 -8.42014e-07 2.95568 -8.68664e-07 2.95621 -8.92509e-07 2.95679 -9.132e-07 2.95741 -9.30566e-07 2.95806 -9.44443e-07 2.95874 -9.54738e-07 2.95944 -9.61416e-07 2.96016 -9.64379e-07 2.96088 -9.63866e-07 2.96161 -9.60097e-07 2.96234 -9.53352e-07 2.96306 -9.43888e-07 2.96377 -9.31981e-07 2.96447 -9.17924e-07 2.96515 -9.02013e-07 2.9658 -8.84518e-07 2.96643 -8.65753e-07 2.96703 -8.45968e-07 2.9676 -8.25454e-07 2.96814 -8.0443e-07 2.96865 -7.83133e-07 2.96913 -7.61776e-07 2.96958 -7.40536e-07 2.96999 -7.19609e-07 2.97037 -6.99176e-07 2.97073 -6.79405e-07 2.97105 -6.60382e-07 2.97135 -6.42198e-07 2.97162 -6.24961e-07 2.97186 -6.08718e-07 2.97208 -5.93518e-07 2.97228 -5.79401e-07 2.97246 -5.66379e-07 2.97262 -5.54384e-07 2.97276 -5.43427e-07 2.97289 -5.3348e-07 2.973 -5.24491e-07 2.9731 -5.16398e-07 2.97318 -5.09172e-07 2.97326 -5.02692e-07 2.97333 -4.96915e-07 2.97339 -4.91793e-07 2.97344 -4.87224e-07 2.97348 -4.83178e-07 2.97352 -4.79611e-07 2.97356 -4.76468e-07 2.97359 -4.73758e-07 2.97362 -4.71377e-07 2.97364 -4.69283e-07 2.97366 -4.67466e-07 2.97368 -4.65947e-07 2.9737 -4.64448e-07 2.97372 -4.63428e-07 2.97373 -4.62152e-07 2.97375 -4.62107e-07 2.97376 -4.59888e-07 2.97377 -4.58504e-07 2.97378 -4.50804e-07 2.97379 -4.23963e-07 2.9738 -3.24933e-07 2.97381 4.5271e-08 2.97382 1.43449e-06 2.97383 6.65018e-06 2.97385 2.6273e-05 2.9739 0.000100264 2.97407 0.0003775 2.97467 0.00140106 2.97694 0.00524875 2.98558 0.0200466 3.01977 0.0802108 3.19195 0.443153 1.25618 3.67729 2.56079 0.353999 2.63408 0.12167 2.66194 0.0454726 2.67214 0.0159301 2.67622 0.00613354 2.67815 0.00264317 2.67991 0.00235698 2.68228 0.0032478 2.68577 0.00504755 2.69102 0.00792023 2.69855 0.0117208 2.70879 0.0163174 2.72194 0.0213336 2.7379 0.0262139 2.75623 0.0301304 2.77628 0.0323145 2.79733 0.0339779 2.81796 0.031736 2.83586 0.0273314 2.84935 0.0212417 2.85783 0.0140948 2.86089 0.00616446 2.85774 -0.00228928 2.84873 -0.0145786 2.83536 -0.0203127 2.81893 -0.0278556 2.79954 -0.0332359 2.77774 -0.0374928 2.75444 -0.0404259 2.7306 -0.0409566 2.70702 -0.0400948 2.68449 -0.0379077 2.66389 -0.034404 2.64579 -0.0300355 2.63048 -0.0252799 2.61798 -0.0205453 2.60813 -0.0161496 2.60061 -0.0122972 2.59503 -0.00908591 2.59102 -0.00652286 2.5882 -0.00455656 2.58628 -0.00310077 2.58501 -0.00205781 2.58418 -0.00133308 2.58365 -0.000843735 2.58332 -0.000522164 2.58312 -0.000316231 2.583 -0.000187575 2.58293 -0.000109062 2.58289 -6.22671e-05 2.58287 -3.49415e-05 2.58286 -1.93584e-05 2.58285 -1.06378e-05 2.58284 -5.85917e-06 2.58284 -3.28803e-06 2.58284 -1.93399e-06 2.58284 -1.23309e-06 2.58284 -8.77822e-07 2.58284 -6.96768e-07 2.58284 -6.12628e-07 2.58284 -5.69864e-07 2.58284 -5.49302e-07 2.58284 -5.4136e-07 2.58285 -5.38133e-07 2.58285 -5.30974e-07 2.58286 -5.36944e-07 2.58286 -5.34728e-07 2.58287 -5.35318e-07 2.58288 -5.36118e-07 2.58289 -5.3698e-07 2.5829 -5.37821e-07 2.58292 -5.38432e-07 2.58293 -5.38843e-07 2.58295 -5.38857e-07 2.58296 -5.38559e-07 2.58298 -5.37697e-07 2.58299 -5.36267e-07 2.583 -5.34172e-07 2.58302 -5.32455e-07 2.58302 -5.30166e-07 2.58303 -5.24218e-07 2.58303 -5.19776e-07 2.58302 -5.16997e-07 2.583 -5.12202e-07 2.58297 -5.05639e-07 2.58293 -4.97763e-07 2.58287 -4.88424e-07 2.58279 -4.77845e-07 2.5827 -4.6608e-07 2.58259 -4.53172e-07 2.58245 -4.39337e-07 2.58228 -4.24756e-07 2.58209 -4.09582e-07 2.58187 -3.93949e-07 2.58162 -3.77724e-07 2.58134 -3.61884e-07 2.58102 -3.45692e-07 2.58068 -3.29779e-07 2.5803 -3.14503e-07 2.5799 -3.00217e-07 2.57946 -2.8708e-07 2.579 -2.75955e-07 2.57851 -2.66598e-07 2.57801 -2.59268e-07 2.57748 -2.54709e-07 2.57695 -2.5312e-07 2.57641 -2.54662e-07 2.57587 -2.59373e-07 2.57533 -2.68083e-07 2.5748 -2.79655e-07 2.57429 -2.95076e-07 2.5738 -3.14074e-07 2.57334 -3.36458e-07 2.57292 -3.62081e-07 2.57253 -3.90773e-07 2.57219 -4.22286e-07 2.5719 -4.56221e-07 2.57166 -4.92109e-07 2.57148 -5.30457e-07 2.57136 -5.69104e-07 2.5713 -6.08557e-07 2.5713 -6.48004e-07 2.57138 -7.11163e-07 2.57151 -7.37407e-07 2.57171 -7.71081e-07 2.57197 -8.06569e-07 2.57228 -8.39387e-07 2.57265 -8.69615e-07 2.57307 -8.9714e-07 2.57353 -9.21766e-07 2.57403 -9.43139e-07 2.57457 -9.61078e-07 2.57514 -9.75415e-07 2.57573 -9.86056e-07 2.57634 -9.92954e-07 2.57696 -9.96013e-07 2.57759 -9.955e-07 2.57823 -9.91604e-07 2.57886 -9.84634e-07 2.57949 -9.74876e-07 2.58011 -9.62573e-07 2.58072 -9.48061e-07 2.58131 -9.31625e-07 2.58187 -9.13566e-07 2.58242 -8.94182e-07 2.58294 -8.73752e-07 2.58344 -8.52579e-07 2.58391 -8.3086e-07 2.58436 -8.08868e-07 2.58477 -7.86808e-07 2.58516 -7.64881e-07 2.58552 -7.43265e-07 2.58586 -7.22164e-07 2.58616 -7.01733e-07 2.58645 -6.82096e-07 2.5867 -6.63309e-07 2.58694 -6.45501e-07 2.58715 -6.28734e-07 2.58734 -6.13029e-07 2.58752 -5.98448e-07 2.58767 -5.84991e-07 2.58781 -5.72618e-07 2.58794 -5.61289e-07 2.58805 -5.51012e-07 2.58814 -5.41724e-07 2.58823 -5.33364e-07 2.5883 -5.25903e-07 2.58837 -5.19212e-07 2.58843 -5.13246e-07 2.58848 -5.07949e-07 2.58853 -5.03231e-07 2.58856 -4.99051e-07 2.5886 -4.95369e-07 2.58863 -4.92124e-07 2.58866 -4.89319e-07 2.58868 -4.8686e-07 2.5887 -4.84702e-07 2.58872 -4.82822e-07 2.58874 -4.81235e-07 2.58875 -4.79755e-07 2.58877 -4.78631e-07 2.58878 -4.77434e-07 2.58879 -4.77114e-07 2.58881 -4.75538e-07 2.58882 -4.74509e-07 2.58882 -4.69507e-07 2.58883 -4.52546e-07 2.58884 -3.90635e-07 2.58885 -1.59835e-07 2.58886 7.05877e-07 2.58887 3.95584e-06 2.58888 1.61831e-05 2.58892 6.22863e-05 2.58907 0.000235016 2.58961 0.000872727 2.59159 0.00326969 2.59916 0.0124828 2.62929 0.0500785 2.78988 0.282571 0.803463 3.2426 2.26236 0.17536 2.32442 0.0596218 2.34786 0.0220341 2.35625 0.00755332 2.35956 0.00283764 2.36101 0.00121426 2.3622 0.00117755 2.36369 0.00176495 2.36592 0.00283685 2.3694 0.00444356 2.37466 0.00647522 2.38217 0.00882091 2.39227 0.0112608 2.40509 0.0135046 2.42037 0.0151589 2.43732 0.015644 2.45469 0.0167505 2.47135 0.0150836 2.48578 0.0126347 2.49593 0.00960625 2.50127 0.00604483 2.50242 0.00325178 2.49959 -0.000188053 2.49267 -0.00767471 2.48198 -0.0088962 2.46835 -0.0117893 2.45124 -0.0142876 2.43089 -0.0161593 2.4085 -0.0176757 2.38534 -0.017757 2.3626 -0.0174043 2.34118 -0.0166986 2.32185 -0.0152331 2.3051 -0.0133765 2.29108 -0.011318 2.27975 -0.00924143 2.27088 -0.00729391 2.26414 -0.00557354 2.25918 -0.00413039 2.25563 -0.00297274 2.25315 -0.00208102 2.25147 -0.00141865 2.25035 -0.000942878 2.24963 -0.000611588 2.24917 -0.000387527 2.24889 -0.000240098 2.24871 -0.000145592 2.24861 -8.65066e-05 2.24855 -5.04312e-05 2.24852 -2.89215e-05 2.2485 -1.63593e-05 2.24849 -9.19494e-06 2.24848 -5.18634e-06 2.24848 -2.98998e-06 2.24847 -1.80825e-06 2.24847 -1.18629e-06 2.24847 -8.65133e-07 2.24847 -7.02996e-07 2.24847 -6.18325e-07 2.24847 -5.81727e-07 2.24847 -5.61908e-07 2.24847 -5.52249e-07 2.24847 -5.49462e-07 2.24848 -5.48622e-07 2.24848 -5.4231e-07 2.24849 -5.48993e-07 2.24849 -5.46879e-07 2.2485 -5.47585e-07 2.24851 -5.48436e-07 2.24852 -5.49349e-07 2.24853 -5.5023e-07 2.24854 -5.50903e-07 2.24855 -5.51336e-07 2.24856 -5.51383e-07 2.24858 -5.51106e-07 2.24859 -5.50244e-07 2.2486 -5.488e-07 2.24861 -5.46661e-07 2.24862 -5.44911e-07 2.24863 -5.42495e-07 2.24864 -5.36311e-07 2.24863 -5.31923e-07 2.24863 -5.28864e-07 2.24861 -5.23978e-07 2.24858 -5.17266e-07 2.24855 -5.09193e-07 2.2485 -4.99633e-07 2.24843 -4.88795e-07 2.24835 -4.76728e-07 2.24825 -4.63475e-07 2.24813 -4.49279e-07 2.24799 -4.3432e-07 2.24782 -4.18746e-07 2.24763 -4.02717e-07 2.24741 -3.8607e-07 2.24716 -3.69848e-07 2.24689 -3.53226e-07 2.24659 -3.36939e-07 2.24626 -3.21281e-07 2.24591 -3.06642e-07 2.24553 -2.93167e-07 2.24513 -2.81772e-07 2.2447 -2.7219e-07 2.24426 -2.64681e-07 2.24381 -2.60014e-07 2.24334 -2.58395e-07 2.24287 -2.59988e-07 2.2424 -2.64852e-07 2.24193 -2.73809e-07 2.24147 -2.85687e-07 2.24103 -3.01516e-07 2.2406 -3.21023e-07 2.2402 -3.44e-07 2.23983 -3.70292e-07 2.2395 -3.99734e-07 2.2392 -4.32068e-07 2.23895 -4.66887e-07 2.23874 -5.03711e-07 2.23858 -5.4307e-07 2.23848 -5.82706e-07 2.23843 -6.23313e-07 2.23843 -6.63393e-07 2.23849 -7.28734e-07 2.23861 -7.5555e-07 2.23878 -7.90074e-07 2.23901 -8.26542e-07 2.23928 -8.6024e-07 2.2396 -8.91258e-07 2.23997 -9.19496e-07 2.24037 -9.44725e-07 2.2408 -9.66636e-07 2.24127 -9.85016e-07 2.24177 -9.99709e-07 2.24228 -1.01063e-06 2.24281 -1.01771e-06 2.24335 -1.02084e-06 2.2439 -1.02032e-06 2.24446 -1.01632e-06 2.24501 -1.00916e-06 2.24556 -9.99134e-07 2.2461 -9.865e-07 2.24662 -9.71591e-07 2.24714 -9.54722e-07 2.24763 -9.36179e-07 2.24811 -9.16276e-07 2.24856 -8.95307e-07 2.249 -8.73562e-07 2.24941 -8.5128e-07 2.24979 -8.2871e-07 2.25015 -8.06071e-07 2.25049 -7.83555e-07 2.25081 -7.61374e-07 2.2511 -7.39718e-07 2.25137 -7.18748e-07 2.25161 -6.98579e-07 2.25184 -6.79298e-07 2.25204 -6.61021e-07 2.25223 -6.43806e-07 2.25239 -6.27693e-07 2.25254 -6.12727e-07 2.25268 -5.98899e-07 2.2528 -5.86195e-07 2.25291 -5.74575e-07 2.253 -5.64025e-07 2.25309 -5.54493e-07 2.25316 -5.45922e-07 2.25323 -5.3825e-07 2.25329 -5.31385e-07 2.25334 -5.25266e-07 2.25338 -5.19824e-07 2.25342 -5.14989e-07 2.25345 -5.10696e-07 2.25348 -5.06912e-07 2.25351 -5.03594e-07 2.25353 -5.0071e-07 2.25356 -4.98181e-07 2.25357 -4.95969e-07 2.25359 -4.94048e-07 2.25361 -4.92408e-07 2.25362 -4.90938e-07 2.25363 -4.8973e-07 2.25364 -4.88602e-07 2.25365 -4.88049e-07 2.25366 -4.87045e-07 2.25367 -4.8634e-07 2.25368 -4.8372e-07 2.25369 -4.75524e-07 2.2537 -4.46518e-07 2.2537 -3.39034e-07 2.25371 6.82412e-08 2.25372 1.60105e-06 2.25373 7.36737e-06 2.25377 2.91058e-05 2.2539 0.000110535 2.25436 0.000411196 2.2561 0.00154121 2.2627 0.00588165 2.2891 0.0236784 2.43591 0.135768 0.386224 2.85315 1.90851 1.96814 1.99019 1.99775 2.00059 2.00181 2.00301 2.0048 2.00765 2.01211 2.01859 2.0274 2.03861 2.05193 2.06645 2.07962 2.08767 2.09227 2.09726 2.10274 2.10757 2.11096 2.11609 2.12291 2.12496 2.11965 2.10831 2.09296 2.07529 2.05617 2.03702 2.0193 2.00348 1.9898 1.97834 1.96902 1.9617 1.9561 1.95197 1.94899 1.94691 1.94549 1.94454 1.94393 1.94354 1.9433 1.94315 1.94307 1.94302 1.94299 1.94297 1.94296 1.94295 1.94295 1.94295 1.94295 1.94295 1.94295 1.94295 1.94295 1.94295 1.94295 1.94295 1.94295 1.94295 1.94296 1.94296 1.94297 1.94298 1.94298 1.94299 1.943 1.94301 1.94302 1.94304 1.94305 1.94306 1.94307 1.94308 1.94308 1.94309 1.94309 1.94308 1.94306 1.94304 1.94301 1.94297 1.94291 1.94284 1.94275 1.94265 1.94252 1.94238 1.94221 1.94202 1.94181 1.94157 1.94131 1.94102 1.94071 1.94038 1.94003 1.93967 1.93928 1.93889 1.93848 1.93807 1.93766 1.93725 1.93685 1.93647 1.9361 1.93575 1.93543 1.93513 1.93488 1.93466 1.93448 1.93434 1.93425 1.9342 1.9342 1.93426 1.93436 1.93451 1.93471 1.93494 1.93522 1.93554 1.93589 1.93627 1.93667 1.9371 1.93755 1.93801 1.93849 1.93896 1.93944 1.93992 1.9404 1.94087 1.94133 1.94177 1.9422 1.94262 1.94301 1.94339 1.94375 1.94408 1.9444 1.94469 1.94497 1.94522 1.94545 1.94566 1.94586 1.94604 1.9462 1.94634 1.94648 1.94659 1.9467 1.94679 1.94687 1.94695 1.94701 1.94707 1.94712 1.94716 1.9472 1.94724 1.94727 1.94729 1.94732 1.94734 1.94735 1.94737 1.94739 1.9474 1.94741 1.94742 1.94743 1.94744 1.94745 1.94746 1.94746 1.94747 1.94748 1.94748 1.94749 1.94749 1.94751 1.94754 1.94766 1.94807 1.94962 1.9555 1.97918 2.11495 2.50118 1.53157 0.0789641 1.49853 0.0330405 1.47004 0.0284865 1.451 0.0190393 1.43786 0.0131484 1.42873 0.00913088 1.42284 0.00588672 1.41907 0.00376888 1.41691 0.00216347 1.41627 0.000638727 1.41717 -0.000898641 1.41967 -0.0025007 1.424 -0.00432453 1.43116 -0.00716208 1.44208 -0.0109139 1.45872 -0.0166499 1.48368 -0.0249514 1.52238 -0.0387067 1.58788 -0.0654943 -0.137515 1.72539 1.79533 0.160911 1.75881 0.0695656 1.73359 0.0537063 1.71862 0.0340136 1.71082 0.0209464 1.70797 0.011979 1.70907 0.00479443 1.71265 0.000184753 1.71801 -0.00319112 1.72489 -0.00624276 1.73312 -0.00913192 1.74265 -0.0120305 1.75359 -0.0152572 1.76685 -0.020428 1.78323 -0.0272884 1.80461 -0.038026 1.83345 -0.0537943 1.87486 -0.0801169 1.94076 -0.131394 -0.274432 2.07767 2.07295 0.255822 2.02739 0.115135 1.99347 0.0876239 1.97 0.0574882 1.95378 0.0371622 1.94294 0.0228236 1.93633 0.0114013 1.93245 0.00407103 1.93076 -0.00150476 1.93125 -0.00673655 1.93387 -0.0117486 1.93867 -0.0168247 1.94595 -0.0225411 1.95712 -0.0315947 1.97334 -0.0435008 1.99727 -0.0619595 2.03205 -0.0885752 2.08502 -0.133084 2.17146 -0.217837 -0.432728 2.32975 2.40463 0.354764 2.35472 0.165048 2.32267 0.11968 2.30206 0.0780977 2.29019 0.049037 2.28455 0.0284568 2.28417 0.011786 2.28698 0.0012579 2.29208 -0.00659577 2.29912 -0.0137769 2.30793 -0.0205617 2.3185 -0.0273888 2.33088 -0.0349259 2.34646 -0.0471719 2.36616 -0.0631978 2.39268 -0.0884798 2.42984 -0.125729 2.48415 -0.187404 2.57084 -0.304528 -0.594755 2.73287 2.78356 0.463899 2.72161 0.227003 2.68027 0.161024 2.65103 0.107338 2.63096 0.069108 2.61789 0.0415277 2.61096 0.0187166 2.60761 0.00460654 2.60733 -0.00631216 2.60996 -0.0164104 2.61537 -0.0259649 2.62355 -0.0355749 2.63495 -0.0463221 2.65154 -0.0637526 2.67452 -0.0861787 2.70663 -0.120586 2.75303 -0.172132 2.8224 -0.256773 2.93191 -0.414046 -0.775637 3.11279 3.22819 0.580384 3.1613 0.29389 3.12214 0.200193 3.09567 0.133807 3.07745 0.0873283 3.06783 0.0511515 3.06524 0.0213024 3.0662 0.00365184 3.07026 -0.0103741 3.07704 -0.0231866 3.08639 -0.0353144 3.09837 -0.0475483 3.1127 -0.0606521 3.13212 -0.0831766 3.15836 -0.112413 3.19461 -0.156836 3.24622 -0.223738 3.32209 -0.332642 3.43812 -0.530082 -0.959559 3.62204 14.479 0.983851 14.1889 0.583978 13.968 0.421156 13.796 0.30583 13.6773 0.205976 13.5984 0.130127 13.5508 0.0688888 13.5278 0.0266681 13.5256 -0.0081926 13.5428 -0.0403594 13.5755 -0.0680277 13.6236 -0.0956777 13.6943 -0.131362 13.7887 -0.177491 13.9164 -0.240107 14.0893 -0.329742 14.3288 -0.46324 14.6673 -0.671106 15.1492 -1.01207 -1.60354 15.7932 15.0577 1.26198 14.8385 0.803193 14.7099 0.549781 14.6495 0.366242 14.6283 0.227172 14.6283 0.130093 14.6296 0.0675989 14.6364 0.0198419 14.6464 -0.0181638 14.6539 -0.0478494 14.6753 -0.0894444 14.7098 -0.130116 14.7574 -0.179046 14.824 -0.244092 14.9178 -0.333848 15.0497 -0.461589 15.2342 -0.647773 15.4886 -0.925466 15.8256 -1.34913 -2.00645 16.2285 15.6731 1.4269 15.5245 0.951845 15.4142 0.660071 15.3203 0.460178 15.2304 0.317065 15.1529 0.207547 15.1056 0.114881 15.0973 0.0281987 15.1103 -0.0311629 15.1413 -0.0788025 15.1783 -0.126447 15.2279 -0.179753 15.2922 -0.24333 15.3732 -0.325066 15.4746 -0.435275 15.6016 -0.588586 15.7604 -0.806587 15.956 -1.12101 16.1837 -1.57691 -2.23293 16.4102 16.3364 1.48456 16.2684 1.01988 16.2166 0.711901 16.1912 0.48552 16.1995 0.308825 16.2307 0.176323 16.2562 0.0893971 16.2535 0.0309445 16.2443 -0.0219652 16.2344 -0.0688856 16.2326 -0.124691 16.236 -0.183171 16.2472 -0.254536 16.2696 -0.34744 16.3073 -0.472944 16.3644 -0.645688 16.4432 -0.885352 16.5404 -1.21825 16.6412 -1.67772 -2.30064 16.7089 17.0721 1.43931 17.087 1.00496 17.0917 0.707269 17.085 0.492176 17.0531 0.340774 17.003 0.226377 16.9691 0.123376 16.9769 0.023071 17.0029 -0.047881 17.0365 -0.102486 17.073 -0.161227 17.1159 -0.226073 17.1635 -0.302164 17.2137 -0.397574 17.2629 -0.522123 17.3057 -0.688574 17.3347 -0.914303 17.3385 -1.222 17.3 -1.6393 -2.19586 17.1953 17.914 1.28906 18.0194 0.899625 18.0972 0.62942 18.1622 0.427172 18.2336 0.26939 18.3055 0.154552 18.3488 0.080035 18.3506 0.021261 18.3311 -0.0283663 18.2957 -0.0671076 18.2558 -0.121309 18.2066 -0.176842 18.1488 -0.244356 18.0836 -0.332422 18.0124 -0.450943 17.9347 -0.610784 17.8456 -0.825196 17.734 -1.11042 17.5789 -1.48423 -1.96162 17.3447 18.8999 1.03752 19.0964 0.703184 19.2345 0.491283 19.3039 0.357804 19.3149 0.2584 19.3038 0.165613 19.3154 0.0684206 19.3326 0.00412532 19.3609 -0.0566777 19.4023 -0.108485 19.438 -0.157047 19.4727 -0.211527 19.5031 -0.274729 19.5221 -0.351432 19.5156 -0.444498 19.4649 -0.560009 19.3481 -0.708407 19.1415 -0.90387 18.8224 -1.16511 -1.51543 18.3762 20.1311 0.669022 20.433 0.401209 20.6674 0.256935 20.8691 0.156069 21.0306 0.0969637 21.1362 0.0600161 21.1846 0.0199978 21.1948 -0.006057 21.1633 -0.025236 21.0958 -0.040941 20.9948 -0.0560332 20.8564 -0.0731198 20.6746 -0.0929079 20.4367 -0.113597 20.1534 -0.161171 19.8197 -0.226286 19.4304 -0.319116 18.9714 -0.44486 18.4271 -0.62087 -0.876175 17.7879 4.7903 0.555992 4.87443 0.317079 4.92473 0.206636 4.95031 0.130488 4.97059 0.0766854 4.98677 0.0438367 4.99385 0.0129131 4.99785 -0.0100489 4.99932 -0.0267111 4.99878 -0.0403953 4.99615 -0.0534044 4.99065 -0.0676177 4.98164 -0.0839052 4.97163 -0.103585 4.94962 -0.139162 4.91222 -0.188878 4.85319 -0.260089 4.7645 -0.356166 4.63792 -0.494295 -0.703453 4.4652 4.27058 0.443295 4.35216 0.2355 4.4059 0.152899 4.43957 0.0968121 4.45883 0.0574312 4.47091 0.0317536 4.47324 0.010583 4.46878 -0.00558787 4.45922 -0.0171497 4.44548 -0.0266564 4.42802 -0.0359383 4.40678 -0.046383 4.38161 -0.0587362 4.35215 -0.0741225 4.31401 -0.101015 4.26543 -0.140302 4.20425 -0.19891 4.12354 -0.275452 4.01681 -0.387565 -0.554872 3.86823 3.78841 0.332178 3.85882 0.165092 3.90214 0.109575 3.93238 0.0665729 3.95365 0.0361658 3.96981 0.0155946 3.98156 -0.00116481 3.99017 -0.0142 3.99669 -0.0236667 4.00133 -0.0312939 4.00381 -0.0384217 4.00344 -0.0460142 3.99935 -0.0546404 3.99046 -0.0652392 3.97271 -0.0832569 3.94223 -0.109829 3.89276 -0.149441 3.81692 -0.199612 3.706 -0.276642 -0.401662 3.55279 3.35612 0.218653 3.42424 0.0969769 3.46473 0.0690839 3.48883 0.0424749 3.5007 0.0242972 3.50348 0.0128125 3.49866 0.00364944 3.48794 -0.00347386 3.47301 -0.00874109 3.45481 -0.0130922 3.4338 -0.01741 3.41008 -0.0222885 3.38357 -0.0281348 3.35406 -0.0357263 3.31924 -0.0484346 3.27675 -0.0673393 3.22242 -0.0951122 3.15396 -0.131156 3.06369 -0.186374 -0.272377 2.93441 2.95619 0.115612 3.01218 0.0409927 3.05233 0.0289357 3.08225 0.0125492 3.10528 0.00127061 3.12417 -0.0060801 3.13971 -0.0118866 3.15264 -0.0164008 3.16362 -0.0197248 3.17286 -0.0223252 3.1801 -0.024655 3.18483 -0.0270211 3.18634 -0.0296441 3.18347 -0.0328547 3.17335 -0.038309 3.15252 -0.0465165 3.11614 -0.0587237 3.05981 -0.0748284 2.973 -0.0995653 -0.14579 2.84641 2.61679 2.65779 2.68672 2.69927 2.70054 2.69446 2.68258 2.66618 2.64645 2.62413 2.59947 2.57245 2.54281 2.50995 2.47165 2.42513 2.36641 2.29158 2.19201 2.04622 1.92319 -0.197791 1.98335 -0.0601623 2.00215 -0.018803 2.00819 -0.00603411 2.01119 -0.00299646 2.01468 -0.00348016 2.01995 -0.00526689 2.02784 -0.00788653 2.03882 -0.0109825 2.05289 -0.0140817 2.06937 -0.0165848 2.08637 -0.0177247 2.09961 -0.0171045 2.10751 -0.0172583 2.11381 -0.012525 2.11952 -0.00814639 2.12285 -0.0035979 2.12504 0.000880334 2.12621 0.00962767 2.12158 0.0123811 2.10936 0.0160859 2.09193 0.0186929 2.0718 0.0202807 2.05064 0.0203809 2.03006 0.0192132 2.0116 0.0177092 1.99584 0.0153805 1.98289 0.0127607 1.97267 0.0101375 1.96491 0.00773013 1.95922 0.00567058 1.95521 0.00401058 1.95247 0.00273986 1.95066 0.00181126 1.9495 0.00116046 1.94878 0.000721588 1.94834 0.000436048 1.94809 0.000256411 1.94794 0.000146934 1.94786 8.22043e-05 1.94782 4.50221e-05 1.9478 2.42485e-05 1.94779 1.29476e-05 1.94778 6.95664e-06 1.94778 3.85721e-06 1.94778 2.29389e-06 1.94778 1.52416e-06 1.94778 1.15125e-06 1.94779 9.76597e-07 1.94779 8.95801e-07 1.9478 8.60193e-07 1.9478 8.44397e-07 1.94781 8.37903e-07 1.94782 8.35749e-07 1.94783 8.3468e-07 1.94784 8.34541e-07 1.94784 8.34247e-07 1.94785 8.33323e-07 1.94786 8.32639e-07 1.94786 8.30601e-07 1.94787 8.27557e-07 1.94786 8.2398e-07 1.94785 8.11597e-07 1.94783 8.09589e-07 1.9478 7.99595e-07 1.94775 7.88186e-07 1.94768 7.7502e-07 1.94759 7.58213e-07 1.94748 7.41042e-07 1.94734 7.19974e-07 1.94718 6.97328e-07 1.94698 6.73812e-07 1.94674 6.46873e-07 1.94647 6.2148e-07 1.94616 5.93962e-07 1.94581 5.67088e-07 1.94542 5.43158e-07 1.945 5.18383e-07 1.94455 4.99687e-07 1.94407 4.83033e-07 1.94357 4.70875e-07 1.94306 4.67277e-07 1.94253 4.6584e-07 1.94201 4.75196e-07 1.9415 4.90189e-07 1.941 5.11423e-07 1.94054 5.44966e-07 1.94011 5.79876e-07 1.93972 6.26402e-07 1.93939 6.77876e-07 1.93913 7.31539e-07 1.93893 7.96921e-07 1.9388 8.56853e-07 1.93875 9.24123e-07 1.93877 9.9689e-07 1.93889 1.11092e-06 1.93908 1.14541e-06 1.93935 1.20122e-06 1.93969 1.25754e-06 1.9401 1.30736e-06 1.94055 1.35055e-06 1.94106 1.38646e-06 1.94161 1.41466e-06 1.94219 1.435e-06 1.9428 1.44747e-06 1.94342 1.45206e-06 1.94405 1.44947e-06 1.94468 1.43984e-06 1.9453 1.42409e-06 1.94591 1.4028e-06 1.9465 1.37657e-06 1.94707 1.34665e-06 1.94761 1.31337e-06 1.94811 1.27797e-06 1.94859 1.24098e-06 1.94903 1.20315e-06 1.94943 1.1653e-06 1.9498 1.12792e-06 1.95014 1.09133e-06 1.95044 1.05651e-06 1.95071 1.02294e-06 1.95095 9.91931e-07 1.95117 9.62704e-07 1.95135 9.35976e-07 1.95152 9.1167e-07 1.95166 8.89628e-07 1.95178 8.69968e-07 1.95189 8.52728e-07 1.95198 8.37026e-07 1.95206 8.2425e-07 1.95213 8.12306e-07 1.95219 8.02753e-07 1.95224 7.94204e-07 1.95228 7.86709e-07 1.95232 7.80761e-07 1.95235 7.7505e-07 1.95238 7.69873e-07 1.9524 7.65405e-07 1.95242 7.59774e-07 1.95243 7.5527e-07 1.95244 7.48856e-07 1.95243 7.41366e-07 1.95242 7.26141e-07 1.95239 7.19465e-07 1.95234 7.08969e-07 1.95228 6.9453e-07 1.9522 6.78105e-07 1.95209 6.60559e-07 1.95196 6.39131e-07 1.95179 6.17369e-07 1.95159 5.92838e-07 1.95136 5.66411e-07 1.95109 5.40931e-07 1.95079 5.12493e-07 1.95044 4.86394e-07 1.95006 4.60681e-07 1.94964 4.35612e-07 1.94919 4.16636e-07 1.94871 3.97631e-07 1.94821 3.85757e-07 1.94769 3.79317e-07 1.94716 3.7628e-07 1.94663 3.85324e-07 1.94611 3.96536e-07 1.9456 4.17982e-07 1.94512 4.47923e-07 1.94468 4.81075e-07 1.94427 5.27729e-07 1.94392 5.7499e-07 1.94363 6.30156e-07 1.9434 6.92326e-07 1.94325 7.51646e-07 1.94317 8.21041e-07 1.94316 8.8392e-07 1.94324 9.91877e-07 1.94341 1.05542e-06 1.94365 1.09772e-06 1.94397 1.15598e-06 1.94434 1.20768e-06 1.94478 1.25287e-06 1.94527 1.29098e-06 1.9458 1.32155e-06 1.94636 1.34432e-06 1.94695 1.35924e-06 1.94756 1.36645e-06 1.94818 1.36625e-06 1.94881 1.35908e-06 1.94942 1.34555e-06 1.95003 1.32632e-06 1.95062 1.30215e-06 1.95119 1.27382e-06 1.95173 1.24218e-06 1.95224 1.208e-06 1.95273 1.17208e-06 1.95317 1.13514e-06 1.95359 1.09786e-06 1.95397 1.06084e-06 1.95431 1.02459e-06 1.95463 9.89538e-07 1.95491 9.56061e-07 1.95516 9.24432e-07 1.95538 8.94855e-07 1.95558 8.67472e-07 1.95575 8.42327e-07 1.9559 8.19455e-07 1.95603 7.98831e-07 1.95614 7.80386e-07 1.95624 7.64005e-07 1.95632 7.49562e-07 1.95639 7.36916e-07 1.95645 7.2594e-07 1.9565 7.16464e-07 1.95654 7.08344e-07 1.95657 7.01442e-07 1.9566 6.95614e-07 1.95663 6.90739e-07 1.95665 6.86676e-07 1.95666 6.83329e-07 1.95668 6.80579e-07 1.95669 6.78356e-07 1.9567 6.76551e-07 1.95671 6.75107e-07 1.95672 6.73965e-07 1.95673 6.73081e-07 1.95673 6.72393e-07 1.95674 6.71884e-07 1.95675 6.71509e-07 1.95675 6.71236e-07 1.95676 6.71065e-07 1.95677 6.70938e-07 1.95677 6.70894e-07 1.95678 6.70869e-07 1.95678 6.70891e-07 1.95679 6.70923e-07 1.9568 6.70952e-07 1.95681 6.70982e-07 1.95681 6.71047e-07 1.95682 6.71065e-07 1.95683 6.71091e-07 1.95684 6.71076e-07 1.95685 6.71072e-07 1.95685 6.71065e-07 1.95686 6.70996e-07 1.95687 6.70952e-07 1.95688 6.70825e-07 1.95689 6.7072e-07 1.9569 6.70552e-07 1.9569 6.70356e-07 1.95691 6.70141e-07 1.95692 6.69908e-07 1.95693 6.69603e-07 1.95694 6.69326e-07 1.95694 6.68937e-07 1.95695 6.68606e-07 1.95696 6.68257e-07 1.95697 6.67787e-07 1.95697 6.67413e-07 1.95698 6.66878e-07 1.95698 6.66463e-07 1.95699 6.65972e-07 1.95699 6.65474e-07 1.957 6.64953e-07 1.957 6.64488e-07 1.957 6.63909e-07 1.95701 6.63498e-07 1.95701 6.6288e-07 1.95701 6.62527e-07 1.95701 6.62032e-07 1.95701 6.61577e-07 1.95701 6.61297e-07 1.95701 6.60759e-07 1.95701 6.60209e-07 1.95701 6.6045e-07 1.95701 6.60057e-07 1.957 6.5998e-07 1.957 6.59962e-07 1.957 6.59937e-07 1.957 6.60326e-07 1.95699 6.60195e-07 1.95699 6.60428e-07 1.95699 6.61908e-07 1.95699 6.62931e-07 1.95698 6.63305e-07 1.95698 6.64284e-07 1.95698 6.65968e-07 1.95698 6.67551e-07 1.95697 6.69508e-07 1.95697 6.71862e-07 1.95697 6.74387e-07 1.95697 6.77352e-07 1.95696 6.80735e-07 1.95696 6.84031e-07 1.95696 6.88346e-07 1.95695 6.92187e-07 1.95694 6.96869e-07 1.95693 7.01646e-07 1.95691 7.05681e-07 1.95689 7.10657e-07 1.95686 7.14532e-07 1.95682 7.19054e-07 1.95677 7.22008e-07 1.9567 7.23834e-07 1.95662 7.26206e-07 1.95651 7.249e-07 1.95638 7.22132e-07 1.95621 7.18639e-07 1.95601 7.11603e-07 1.95577 7.05084e-07 1.95549 6.93704e-07 1.95515 6.82456e-07 1.95477 6.69257e-07 1.95433 6.55124e-07 1.95383 6.40568e-07 1.95327 6.23088e-07 1.95264 6.10358e-07 1.95196 5.92689e-07 1.95121 5.83579e-07 1.95041 5.75001e-07 1.94955 5.7021e-07 1.94863 5.68281e-07 1.94768 5.71392e-07 1.94669 5.78224e-07 1.94566 5.53802e-07 1.94462 6.20461e-07 1.94356 7.985e-07 1.9425 7.08904e-07 1.94145 7.46939e-07 1.94041 8.1211e-07 1.93939 8.75218e-07 1.93841 9.41443e-07 1.93746 1.01242e-06 1.93656 1.08706e-06 1.9357 1.16381e-06 1.9349 1.24094e-06 1.93414 1.31673e-06 1.93343 1.38954e-06 1.93277 1.4579e-06 1.93215 1.52061e-06 1.93157 1.57673e-06 1.93101 1.62539e-06 1.93048 1.66603e-06 1.92995 1.69822e-06 1.92944 1.7218e-06 1.92891 1.73676e-06 1.92838 1.74325e-06 1.92782 1.7416e-06 1.92724 1.73227e-06 1.92662 1.71585e-06 1.92596 1.69302e-06 1.92526 1.66452e-06 1.9245 1.63113e-06 1.92368 1.59366e-06 1.92281 1.55288e-06 1.92187 1.50955e-06 1.92087 1.46438e-06 1.91981 1.41804e-06 1.91868 1.37109e-06 1.91748 1.32403e-06 1.91623 1.27731e-06 1.91491 1.23125e-06 1.91353 1.18614e-06 1.91209 1.14215e-06 1.91059 1.09943e-06 1.90904 1.05803e-06 1.90743 1.01798e-06 1.90577 9.79227e-07 1.90407 9.41716e-07 1.90231 9.05355e-07 1.90051 8.70008e-07 1.89867 8.35556e-07 1.89678 8.01843e-07 1.89485 7.68734e-07 1.89288 7.36069e-07 1.89088 7.03705e-07 1.88883 6.71509e-07 1.88675 6.39342e-07 1.88464 6.07095e-07 1.88248 5.74651e-07 1.8803 5.41899e-07 1.87807 5.08757e-07 1.87582 4.75142e-07 1.87353 4.40981e-07 1.87121 4.06217e-07 1.86885 3.7079e-07 1.86646 3.34658e-07 1.86404 2.97772e-07 1.86159 2.60115e-07 1.8591 2.21647e-07 1.85658 1.82343e-07 1.85403 1.4219e-07 1.85145 1.01154e-07 1.84883 5.92481e-08 1.84618 1.64364e-08 1.8435 -2.72885e-08 1.84079 -7.19265e-08 1.83805 -1.17514e-07 1.83527 -1.64015e-07 1.83246 -2.11443e-07 1.82962 -2.59817e-07 1.82675 -3.09126e-07 1.82384 -3.5937e-07 1.82091 -4.10575e-07 1.81794 -4.62725e-07 1.81494 -5.15814e-07 1.81191 -5.69864e-07 1.80885 -6.2487e-07 1.80575 -6.8083e-07 1.80262 -7.37749e-07 1.79947 -7.95626e-07 1.79628 -8.54463e-07 1.79305 -9.1426e-07 1.7898 -9.75026e-07 1.78652 -1.03675e-06 1.7832 -1.09944e-06 1.77985 -1.1631e-06 1.77647 -1.22773e-06 1.77306 -1.29332e-06 1.76962 -1.35988e-06 1.76615 -1.42742e-06 1.76265 -1.49592e-06 1.75911 -1.5654e-06 1.75555 -1.63584e-06 1.75195 -1.70726e-06 1.74832 -1.77966e-06 1.74467 -1.85302e-06 1.74098 -1.92735e-06 1.73726 -2.00266e-06 1.73351 -2.07895e-06 1.72973 -2.15621e-06 1.72592 -2.23445e-06 1.72208 -2.31366e-06 1.71821 -2.39384e-06 1.71431 -2.475e-06 1.71038 -2.55714e-06 1.70642 -2.64024e-06 1.70243 -2.72432e-06 1.69841 -2.80937e-06 1.69436 -2.89539e-06 1.69028 -2.9824e-06 1.68617 -3.07036e-06 1.68203 -3.15931e-06 1.67787 -3.24921e-06 1.67367 -3.3401e-06 1.66945 -3.43195e-06 1.6652 -3.52476e-06 1.66091 -3.61854e-06 1.6566 -3.71329e-06 1.65227 -3.80901e-06 1.6479 -3.90568e-06 1.6435 -4.00332e-06 1.63908 -4.10192e-06 1.63463 -4.20147e-06 1.63015 -4.30199e-06 1.62565 -4.40346e-06 1.62111 -4.50589e-06 1.61655 -4.60927e-06 1.61196 -4.71361e-06 1.60735 -4.81888e-06 1.60271 -4.92511e-06 1.59804 -5.03228e-06 1.59334 -5.14039e-06 1.58862 -5.24945e-06 1.58388 -5.35944e-06 1.5791 -5.47037e-06 1.5743 -5.58224e-06 1.56948 -5.69504e-06 1.56462 -5.80876e-06 1.55975 -5.92341e-06 1.55485 -6.03899e-06 1.54992 -6.15548e-06 1.54497 -6.27289e-06 1.53999 -6.39122e-06 1.53499 -6.51046e-06 1.52996 -6.63061e-06 1.52491 -6.75166e-06 1.51984 -6.87362e-06 1.51474 -6.99648e-06 1.50962 -7.12023e-06 1.50447 -7.24487e-06 1.49931 -7.3704e-06 1.49411 -7.49682e-06 1.4889 -7.62412e-06 1.48366 -7.7523e-06 1.4784 -7.88135e-06 1.47312 -8.01127e-06 1.46782 -8.14205e-06 1.46249 -8.2737e-06 1.45714 -8.4062e-06 1.45177 -8.53957e-06 1.44638 -8.67377e-06 1.44097 -8.80883e-06 1.43554 -8.94472e-06 1.43009 -9.08145e-06 1.42461 -9.21901e-06 1.41912 -9.35739e-06 1.4136 -9.4966e-06 1.40807 -9.63662e-06 1.40252 -9.77746e-06 1.39694 -9.91911e-06 1.39135 -1.00616e-05 1.38574 -1.02048e-05 1.38011 -1.03488e-05 1.37446 -1.04936e-05 1.36879 -1.06392e-05 1.36311 -1.07856e-05 1.35741 -1.09328e-05 1.35169 -1.10807e-05 1.34595 -1.12293e-05 1.3402 -1.13788e-05 1.33442 -1.15289e-05 1.32864 -1.16798e-05 1.32283 -1.18315e-05 1.31701 -1.19839e-05 1.31117 -1.2137e-05 1.30532 -1.22908e-05 1.29945 -1.24453e-05 1.29357 -1.26005e-05 1.28767 -1.27565e-05 1.28176 -1.29131e-05 1.27583 -1.30704e-05 1.26989 -1.32284e-05 1.26394 -1.33871e-05 1.25797 -1.35464e-05 1.25199 -1.37064e-05 1.24599 -1.3867e-05 1.23998 -1.40283e-05 1.23396 -1.41902e-05 1.22793 -1.43528e-05 1.22188 -1.4516e-05 1.21583 -1.46798e-05 1.20976 -1.48442e-05 1.20368 -1.50092e-05 1.19759 -1.51748e-05 1.19148 -1.5341e-05 1.18537 -1.55078e-05 1.17925 -1.56752e-05 1.17311 -1.58431e-05 1.16697 -1.60116e-05 1.16082 -1.61806e-05 1.15465 -1.63502e-05 1.14848 -1.65203e-05 1.1423 -1.66909e-05 1.13612 -1.68621e-05 1.12992 -1.70338e-05 1.12371 -1.7206e-05 1.1175 -1.73787e-05 1.11128 -1.75518e-05 1.10506 -1.77255e-05 1.09882 -1.78996e-05 1.09258 -1.80742e-05 1.08634 -1.82492e-05 1.08008 -1.84247e-05 1.07383 -1.86007e-05 1.06756 -1.8777e-05 1.06129 -1.89538e-05 1.05502 -1.9131e-05 1.04874 -1.93086e-05 1.04246 -1.94866e-05 1.03617 -1.9665e-05 1.02988 -1.98438e-05 1.02359 -2.00229e-05 1.01729 -2.02024e-05 1.01099 -2.03823e-05 1.00469 -2.05625e-05 0.998381 -2.07431e-05 0.992073 -2.0924e-05 0.985763 -2.11052e-05 0.979452 -2.12867e-05 0.97314 -2.14685e-05 0.966826 -2.16506e-05 0.960512 -2.1833e-05 0.954197 -2.20156e-05 0.947883 -2.21986e-05 0.941568 -2.23817e-05 0.935254 -2.25652e-05 0.92894 -2.27488e-05 0.922627 -2.29327e-05 0.916315 -2.31168e-05 0.910005 -2.33013e-05 0.903697 -2.34855e-05 0.897391 -2.36708e-05 0.891087 -2.38546e-05 0.884786 -2.40418e-05 0.878487 -2.42233e-05 0.872192 -2.44147e-05 0.8659 -2.45913e-05 0.859612 -2.47893e-05 0.853328 -2.49594e-05 0.847049 -2.51635e-05 0.840774 -2.53303e-05 0.834503 -2.55355e-05 0.828238 -2.57034e-05 0.821978 -2.59074e-05 0.815725 -2.60762e-05 0.809477 -2.628e-05 0.803235 -2.64499e-05 0.797 -2.66489e-05 0.790771 -2.67582e-05 0.784544 -2.07324e-05 1.724e-05 2.27732 -0.397439 2.34062 -0.123458 2.36075 -0.0389293 2.3673 -0.0125753 2.37017 -0.00587399 2.37303 -0.00633897 2.37721 -0.0094498 2.38369 -0.0143643 2.39325 -0.0205073 2.40622 -0.0269979 2.42234 -0.0326771 2.44069 -0.0360627 2.45966 -0.0361395 2.47687 -0.0349663 2.48981 -0.027597 2.49761 -0.018015 2.50006 -0.00718105 2.49646 0.00419372 2.48702 0.019337 2.47271 0.0287704 2.45375 0.0371864 2.43057 0.0430165 2.40499 0.0462991 2.37896 0.046499 2.35412 0.0440474 2.33166 0.040064 2.31234 0.0346169 2.2965 0.0285685 2.28403 0.0225866 2.2746 0.0171495 2.26773 0.0125336 2.2629 0.0088361 2.25962 0.00602 2.25746 0.00397049 2.25609 0.00253884 2.25523 0.00157597 2.25472 0.000950823 2.25442 0.000558191 2.25425 0.000319221 2.25416 0.000178066 2.2541 9.7043e-05 2.25408 5.1799e-05 2.25406 2.71944e-05 2.25406 1.41522e-05 2.25406 7.40485e-06 2.25406 4.00195e-06 2.25406 2.32433e-06 2.25406 1.51203e-06 2.25407 1.13024e-06 2.25407 9.53769e-07 2.25408 8.74799e-07 2.25409 8.39769e-07 2.25409 8.2489e-07 2.2541 8.19138e-07 2.25411 8.16577e-07 2.25412 8.15806e-07 2.25413 8.15264e-07 2.25414 8.14274e-07 2.25415 8.13565e-07 2.25416 8.11557e-07 2.25416 8.08614e-07 2.25416 8.04983e-07 2.25414 7.93076e-07 2.25412 7.9106e-07 2.25408 7.81325e-07 2.25403 7.70175e-07 2.25395 7.57322e-07 2.25385 7.40944e-07 2.25372 7.24169e-07 2.25356 7.03643e-07 2.25337 6.81535e-07 2.25314 6.58572e-07 2.25287 6.32339e-07 2.25256 6.07528e-07 2.2522 5.80712e-07 2.2518 5.54504e-07 2.25136 5.31123e-07 2.25087 5.06985e-07 2.25036 4.88715e-07 2.24981 4.72479e-07 2.24923 4.60634e-07 2.24864 4.57079e-07 2.24804 4.55722e-07 2.24744 4.64777e-07 2.24685 4.79409e-07 2.24628 5.00127e-07 2.24574 5.32757e-07 2.24525 5.66841e-07 2.24481 6.12163e-07 2.24443 6.62334e-07 2.24412 7.14714e-07 2.24389 7.78349e-07 2.24375 8.36848e-07 2.24369 9.02215e-07 2.24372 9.73669e-07 2.24385 1.08417e-06 2.24408 1.11793e-06 2.24439 1.17235e-06 2.24478 1.22721e-06 2.24524 1.27576e-06 2.24577 1.31785e-06 2.24636 1.35284e-06 2.24699 1.38031e-06 2.24766 1.40014e-06 2.24836 1.41229e-06 2.24907 1.41677e-06 2.2498 1.41424e-06 2.25052 1.40488e-06 2.25124 1.38953e-06 2.25194 1.36878e-06 2.25261 1.34322e-06 2.25326 1.31406e-06 2.25388 1.28165e-06 2.25447 1.24717e-06 2.25501 1.21113e-06 2.25552 1.17429e-06 2.25598 1.1374e-06 2.25641 1.10099e-06 2.2568 1.06534e-06 2.25714 1.03142e-06 2.25746 9.98734e-07 2.25773 9.68514e-07 2.25798 9.40043e-07 2.25819 9.1402e-07 2.25838 8.90333e-07 2.25855 8.68884e-07 2.25869 8.49726e-07 2.25881 8.32926e-07 2.25892 8.17647e-07 2.25901 8.05194e-07 2.25909 7.93585e-07 2.25916 7.84261e-07 2.25921 7.75948e-07 2.25926 7.68658e-07 2.25931 7.62848e-07 2.25935 7.57293e-07 2.25938 7.52254e-07 2.2594 7.47896e-07 2.25942 7.42417e-07 2.25944 7.38008e-07 2.25944 7.3179e-07 2.25944 7.24405e-07 2.25942 7.09635e-07 2.25939 7.03159e-07 2.25934 6.92868e-07 2.25927 6.78796e-07 2.25917 6.62767e-07 2.25905 6.45654e-07 2.25889 6.24768e-07 2.2587 6.03515e-07 2.25848 5.79592e-07 2.25821 5.53835e-07 2.2579 5.28948e-07 2.25755 5.0123e-07 2.25715 4.7576e-07 2.25671 4.50676e-07 2.25623 4.26258e-07 2.25572 4.07694e-07 2.25517 3.89195e-07 2.25459 3.77586e-07 2.25399 3.71292e-07 2.25339 3.68356e-07 2.25278 3.77095e-07 2.25218 3.88089e-07 2.25159 4.08978e-07 2.25104 4.38118e-07 2.25053 4.70489e-07 2.25006 5.15891e-07 2.24966 5.62024e-07 2.24932 6.15779e-07 2.24906 6.76351e-07 2.24889 7.3425e-07 2.24879 8.01796e-07 2.24879 8.63052e-07 2.24888 9.68776e-07 2.24908 1.0298e-06 2.24936 1.07148e-06 2.24971 1.12817e-06 2.25015 1.17854e-06 2.25065 1.22259e-06 2.25121 1.25972e-06 2.25182 1.28951e-06 2.25247 1.31171e-06 2.25315 1.32625e-06 2.25385 1.33328e-06 2.25457 1.33308e-06 2.25528 1.32611e-06 2.25599 1.31292e-06 2.25669 1.29418e-06 2.25737 1.27063e-06 2.25802 1.24305e-06 2.25865 1.2122e-06 2.25924 1.17891e-06 2.25979 1.14392e-06 2.26031 1.10793e-06 2.26078 1.07162e-06 2.26122 1.03555e-06 2.26162 1.00024e-06 2.26198 9.66105e-07 2.2623 9.33484e-07 2.26259 9.02673e-07 2.26284 8.73875e-07 2.26307 8.47205e-07 2.26327 8.22711e-07 2.26344 8.00421e-07 2.26359 7.80336e-07 2.26372 7.62378e-07 2.26383 7.46422e-07 2.26392 7.32351e-07 2.264 7.20036e-07 2.26407 7.09344e-07 2.26413 7.00111e-07 2.26418 6.92209e-07 2.26422 6.8549e-07 2.26425 6.79811e-07 2.26428 6.75063e-07 2.2643 6.71105e-07 2.26432 6.67835e-07 2.26434 6.65161e-07 2.26435 6.62996e-07 2.26436 6.61239e-07 2.26438 6.59835e-07 2.26438 6.58714e-07 2.26439 6.57845e-07 2.2644 6.57186e-07 2.26441 6.56692e-07 2.26442 6.56324e-07 2.26442 6.56055e-07 2.26443 6.55891e-07 2.26444 6.5576e-07 2.26445 6.55717e-07 2.26445 6.55695e-07 2.26446 6.55713e-07 2.26447 6.55735e-07 2.26448 6.55764e-07 2.26449 6.55793e-07 2.2645 6.55855e-07 2.2645 6.55877e-07 2.26451 6.55898e-07 2.26452 6.55888e-07 2.26453 6.55884e-07 2.26454 6.55869e-07 2.26455 6.55804e-07 2.26456 6.55757e-07 2.26457 6.55637e-07 2.26458 6.55524e-07 2.26459 6.55375e-07 2.2646 6.55182e-07 2.26461 6.54978e-07 2.26462 6.54745e-07 2.26463 6.54451e-07 2.26464 6.54167e-07 2.26465 6.53799e-07 2.26466 6.53479e-07 2.26466 6.53134e-07 2.26467 6.52672e-07 2.26468 6.52308e-07 2.26469 6.51791e-07 2.26469 6.51387e-07 2.2647 6.50911e-07 2.2647 6.50423e-07 2.26471 6.49907e-07 2.26471 6.49459e-07 2.26472 6.48888e-07 2.26472 6.48488e-07 2.26472 6.47891e-07 2.26472 6.47535e-07 2.26473 6.47065e-07 2.26473 6.46614e-07 2.26473 6.46338e-07 2.26473 6.4581e-07 2.26472 6.45283e-07 2.26472 6.45508e-07 2.26472 6.4513e-07 2.26472 6.45054e-07 2.26472 6.45028e-07 2.26471 6.45003e-07 2.26471 6.4537e-07 2.26471 6.45246e-07 2.2647 6.45476e-07 2.2647 6.46927e-07 2.2647 6.47902e-07 2.26469 6.48288e-07 2.26469 6.49248e-07 2.26469 6.50867e-07 2.26469 6.52421e-07 2.26468 6.54338e-07 2.26468 6.56622e-07 2.26468 6.591e-07 2.26468 6.61981e-07 2.26467 6.65284e-07 2.26467 6.68504e-07 2.26467 6.7271e-07 2.26466 6.76471e-07 2.26465 6.81033e-07 2.26464 6.8569e-07 2.26462 6.89644e-07 2.26459 6.9449e-07 2.26456 6.98288e-07 2.26451 7.02694e-07 2.26445 7.05579e-07 2.26438 7.0738e-07 2.26428 7.09686e-07 2.26416 7.08438e-07 2.264 7.05735e-07 2.26381 7.02297e-07 2.26358 6.95461e-07 2.26331 6.89106e-07 2.26298 6.7805e-07 2.2626 6.67031e-07 2.26215 6.54181e-07 2.26165 6.40397e-07 2.26107 6.26238e-07 2.26043 6.09009e-07 2.25971 5.9665e-07 2.25893 5.79585e-07 2.25807 5.70559e-07 2.25714 5.62231e-07 2.25616 5.57535e-07 2.25511 5.55669e-07 2.25401 5.5871e-07 2.25287 5.65225e-07 2.2517 5.42317e-07 2.2505 6.07706e-07 2.24929 7.79411e-07 2.24807 6.93959e-07 2.24686 7.30033e-07 2.24566 7.93523e-07 2.2445 8.55081e-07 2.24336 9.1967e-07 2.24228 9.88879e-07 2.24124 1.06166e-06 2.24026 1.13649e-06 2.23933 1.21169e-06 2.23846 1.28559e-06 2.23765 1.35658e-06 2.2369 1.42325e-06 2.23619 1.48438e-06 2.23551 1.5391e-06 2.23488 1.58657e-06 2.23426 1.6262e-06 2.23366 1.65761e-06 2.23307 1.68063e-06 2.23247 1.69524e-06 2.23186 1.7016e-06 2.23122 1.70003e-06 2.23056 1.69098e-06 2.22985 1.67502e-06 2.22909 1.65282e-06 2.22828 1.62511e-06 2.22741 1.59262e-06 2.22647 1.55615e-06 2.22547 1.51648e-06 2.22439 1.47429e-06 2.22325 1.43033e-06 2.22202 1.38523e-06 2.22073 1.33953e-06 2.21936 1.29373e-06 2.21791 1.24826e-06 2.2164 1.20343e-06 2.21481 1.15953e-06 2.21316 1.11671e-06 2.21144 1.07513e-06 2.20966 1.03484e-06 2.20781 9.9586e-07 2.20591 9.58153e-07 2.20395 9.21653e-07 2.20194 8.86277e-07 2.19987 8.5188e-07 2.19775 8.18363e-07 2.19558 7.85571e-07 2.19337 7.53345e-07 2.19111 7.21568e-07 2.1888 6.90081e-07 2.18646 6.58754e-07 2.18407 6.27457e-07 2.18163 5.96076e-07 2.17916 5.64516e-07 2.17665 5.3264e-07 2.1741 5.00386e-07 2.17151 4.67677e-07 2.16888 4.3444e-07 2.16621 4.00596e-07 2.1635 3.66119e-07 2.16076 3.30958e-07 2.15798 2.95069e-07 2.15516 2.58409e-07 2.1523 2.20967e-07 2.14941 1.8271e-07 2.14647 1.43627e-07 2.14351 1.03686e-07 2.1405 6.28752e-08 2.13746 2.12385e-08 2.13438 -2.13076e-08 2.13126 -6.47306e-08 2.12811 -1.09103e-07 2.12492 -1.54341e-07 2.12169 -2.005e-07 2.11843 -2.47568e-07 2.11513 -2.95542e-07 2.11179 -3.44433e-07 2.10842 -3.9427e-07 2.10501 -4.45005e-07 2.10156 -4.96671e-07 2.09808 -5.49269e-07 2.09456 -6.02795e-07 2.091 -6.57259e-07 2.08741 -7.12647e-07 2.08378 -7.68974e-07 2.08011 -8.26225e-07 2.07641 -8.84433e-07 2.07267 -9.43564e-07 2.0689 -1.00365e-06 2.06508 -1.06466e-06 2.06124 -1.12663e-06 2.05735 -1.18953e-06 2.05343 -1.25337e-06 2.04948 -1.31816e-06 2.04549 -1.38389e-06 2.04146 -1.45059e-06 2.0374 -1.51822e-06 2.0333 -1.58678e-06 2.02917 -1.65631e-06 2.025 -1.72679e-06 2.02079 -1.7982e-06 2.01655 -1.87057e-06 2.01228 -1.94388e-06 2.00797 -2.01815e-06 2.00363 -2.09335e-06 1.99925 -2.16953e-06 1.99483 -2.24664e-06 1.99038 -2.32472e-06 1.9859 -2.40373e-06 1.98138 -2.48369e-06 1.97683 -2.56459e-06 1.97224 -2.64646e-06 1.96762 -2.72927e-06 1.96296 -2.81302e-06 1.95827 -2.89773e-06 1.95355 -2.98338e-06 1.94879 -3.06999e-06 1.944 -3.15753e-06 1.93918 -3.24602e-06 1.93432 -3.33545e-06 1.92943 -3.42583e-06 1.92451 -3.51714e-06 1.91956 -3.60941e-06 1.91457 -3.70262e-06 1.90955 -3.79675e-06 1.90449 -3.89184e-06 1.89941 -3.98785e-06 1.89429 -4.0848e-06 1.88914 -4.18268e-06 1.88396 -4.2815e-06 1.87874 -4.38124e-06 1.8735 -4.48192e-06 1.86822 -4.58351e-06 1.86292 -4.68605e-06 1.85758 -4.7895e-06 1.85221 -4.89387e-06 1.84681 -4.99916e-06 1.84138 -5.10538e-06 1.83592 -5.21249e-06 1.83043 -5.32053e-06 1.82491 -5.42948e-06 1.81936 -5.53934e-06 1.81378 -5.6501e-06 1.80817 -5.76176e-06 1.80253 -5.87433e-06 1.79686 -5.9878e-06 1.79116 -6.10216e-06 1.78544 -6.2174e-06 1.77969 -6.33354e-06 1.77391 -6.45057e-06 1.7681 -6.56848e-06 1.76226 -6.68728e-06 1.75639 -6.80695e-06 1.7505 -6.92748e-06 1.74458 -7.04889e-06 1.73864 -7.17118e-06 1.73266 -7.29431e-06 1.72667 -7.41831e-06 1.72064 -7.54318e-06 1.71459 -7.66888e-06 1.70851 -7.79544e-06 1.70241 -7.92285e-06 1.69628 -8.05109e-06 1.69013 -8.18016e-06 1.68395 -8.31009e-06 1.67775 -8.44082e-06 1.67152 -8.57239e-06 1.66527 -8.70476e-06 1.65899 -8.83797e-06 1.65269 -8.97198e-06 1.64637 -9.10681e-06 1.64002 -9.24241e-06 1.63366 -9.37883e-06 1.62726 -9.51604e-06 1.62085 -9.65403e-06 1.61441 -9.79281e-06 1.60796 -9.93236e-06 1.60148 -1.00727e-05 1.59498 -1.02138e-05 1.58845 -1.03556e-05 1.58191 -1.04983e-05 1.57535 -1.06416e-05 1.56876 -1.07857e-05 1.56216 -1.09306e-05 1.55553 -1.10762e-05 1.54889 -1.12225e-05 1.54223 -1.13695e-05 1.53555 -1.15173e-05 1.52885 -1.16658e-05 1.52213 -1.18149e-05 1.51539 -1.19648e-05 1.50863 -1.21154e-05 1.50186 -1.22667e-05 1.49507 -1.24186e-05 1.48827 -1.25712e-05 1.48144 -1.27245e-05 1.4746 -1.28785e-05 1.46774 -1.30331e-05 1.46087 -1.31883e-05 1.45398 -1.33442e-05 1.44708 -1.35008e-05 1.44016 -1.36579e-05 1.43323 -1.38157e-05 1.42628 -1.39741e-05 1.41932 -1.41332e-05 1.41234 -1.42928e-05 1.40535 -1.4453e-05 1.39835 -1.46138e-05 1.39134 -1.47752e-05 1.38431 -1.49372e-05 1.37727 -1.50997e-05 1.37021 -1.52628e-05 1.36315 -1.54265e-05 1.35607 -1.55907e-05 1.34899 -1.57554e-05 1.34189 -1.59207e-05 1.33478 -1.60865e-05 1.32766 -1.62528e-05 1.32053 -1.64197e-05 1.3134 -1.6587e-05 1.30625 -1.67548e-05 1.29909 -1.69231e-05 1.29193 -1.70919e-05 1.28475 -1.72611e-05 1.27757 -1.74309e-05 1.27038 -1.7601e-05 1.26318 -1.77717e-05 1.25598 -1.79427e-05 1.24877 -1.81142e-05 1.24155 -1.82861e-05 1.23433 -1.84584e-05 1.2271 -1.86312e-05 1.21986 -1.88043e-05 1.21262 -1.89778e-05 1.20538 -1.91517e-05 1.19813 -1.9326e-05 1.19088 -1.95006e-05 1.18362 -1.96756e-05 1.17636 -1.98509e-05 1.16909 -2.00266e-05 1.16182 -2.02026e-05 1.15455 -2.0379e-05 1.14728 -2.05556e-05 1.14001 -2.07326e-05 1.13273 -2.09098e-05 1.12545 -2.10873e-05 1.11817 -2.12652e-05 1.11089 -2.14432e-05 1.10361 -2.16216e-05 1.09633 -2.18002e-05 1.08905 -2.1979e-05 1.08177 -2.21581e-05 1.0745 -2.23374e-05 1.06722 -2.25168e-05 1.05994 -2.26967e-05 1.05267 -2.28763e-05 1.0454 -2.3057e-05 1.03813 -2.32362e-05 1.03086 -2.34187e-05 1.0236 -2.35957e-05 1.01634 -2.37822e-05 1.00908 -2.39546e-05 1.00183 -2.41474e-05 0.994579 -2.43137e-05 0.987336 -2.45122e-05 0.980098 -2.46754e-05 0.972865 -2.48749e-05 0.965638 -2.50392e-05 0.958417 -2.52376e-05 0.951203 -2.54027e-05 0.943994 -2.56009e-05 0.936794 -2.57669e-05 0.929599 -2.59583e-05 0.922413 -2.60316e-05 0.915234 -1.92673e-05 1.60248e-05 2.57886 -0.646539 2.65304 -0.197646 2.67703 -0.062913 2.68508 -0.0206211 2.68896 -0.00974735 2.69307 -0.0104437 2.69896 -0.0153396 2.70771 -0.0231154 2.72003 -0.0328215 2.7361 -0.04307 2.7555 -0.0520454 2.77721 -0.0575957 2.79967 -0.0578807 2.82041 -0.0550889 2.83709 -0.0440058 2.84813 -0.0290125 2.85227 -0.0115754 2.84871 0.00632362 2.83825 0.0284752 2.82215 0.0443011 2.80129 0.0579402 2.77684 0.0675055 2.75049 0.0731324 2.72373 0.0738998 2.69784 0.0703204 2.67411 0.0640065 2.65345 0.0553876 2.63629 0.0457761 2.62266 0.0362378 2.61227 0.0275477 2.60465 0.020157 2.59926 0.0142247 2.59558 0.00970279 2.59314 0.00640653 2.59158 0.00410097 2.59061 0.00254836 2.59002 0.00153905 2.58968 0.000904336 2.58948 0.000517547 2.58937 0.000288795 2.58932 0.000157329 2.58929 8.38266e-05 2.58927 4.38055e-05 2.58926 2.25651e-05 2.58926 1.15629e-05 2.58926 6.00776e-06 2.58926 3.26488e-06 2.58927 1.93543e-06 2.58927 1.30921e-06 2.58928 1.01951e-06 2.58929 8.891e-07 2.58929 8.31205e-07 2.5893 8.06325e-07 2.58931 7.9627e-07 2.58933 7.91915e-07 2.58934 7.90384e-07 2.58935 7.89569e-07 2.58936 7.88492e-07 2.58937 7.87739e-07 2.58938 7.85796e-07 2.58938 7.8298e-07 2.58938 7.79288e-07 2.58936 7.67941e-07 2.58933 7.65926e-07 2.58929 7.5651e-07 2.58923 7.45687e-07 2.58914 7.33224e-07 2.58902 7.17377e-07 2.58888 7.01086e-07 2.5887 6.81233e-07 2.58847 6.59791e-07 2.58821 6.37545e-07 2.5879 6.12148e-07 2.58754 5.88068e-07 2.58713 5.62115e-07 2.58667 5.36729e-07 2.58616 5.1405e-07 2.5856 4.90716e-07 2.58501 4.72985e-07 2.58438 4.57294e-07 2.58372 4.45842e-07 2.58304 4.4236e-07 2.58235 4.41116e-07 2.58166 4.49832e-07 2.58098 4.64031e-07 2.58033 4.84168e-07 2.57971 5.15705e-07 2.57914 5.48804e-07 2.57864 5.92674e-07 2.5782 6.41281e-07 2.57785 6.92093e-07 2.57759 7.53644e-07 2.57742 8.10418e-07 2.57735 8.73515e-07 2.57738 9.4331e-07 2.57754 1.04962e-06 2.5778 1.08251e-06 2.57815 1.13524e-06 2.5786 1.18832e-06 2.57914 1.23533e-06 2.57974 1.27607e-06 2.58041 1.30995e-06 2.58114 1.33654e-06 2.58191 1.35573e-06 2.58271 1.36748e-06 2.58353 1.3718e-06 2.58437 1.36933e-06 2.5852 1.36026e-06 2.58602 1.34539e-06 2.58682 1.32529e-06 2.5876 1.30052e-06 2.58835 1.27227e-06 2.58906 1.24089e-06 2.58973 1.20749e-06 2.59036 1.17259e-06 2.59094 1.13692e-06 2.59147 1.10119e-06 2.59196 1.06595e-06 2.59241 1.03143e-06 2.59281 9.98574e-07 2.59316 9.66938e-07 2.59348 9.37656e-07 2.59377 9.10117e-07 2.59401 8.84917e-07 2.59423 8.61983e-07 2.59442 8.41232e-07 2.59458 8.22667e-07 2.59472 8.06416e-07 2.59484 7.91635e-07 2.59495 7.79557e-07 2.59504 7.68348e-07 2.59512 7.59319e-07 2.59518 7.51264e-07 2.59524 7.4421e-07 2.59529 7.38572e-07 2.59534 7.33231e-07 2.59537 7.28349e-07 2.5954 7.24129e-07 2.59543 7.18843e-07 2.59544 7.14546e-07 2.59545 7.08573e-07 2.59544 7.01308e-07 2.59542 6.87094e-07 2.59538 6.80859e-07 2.59533 6.70825e-07 2.59524 6.57215e-07 2.59513 6.41685e-07 2.59499 6.25081e-07 2.59481 6.04869e-07 2.5946 5.84252e-07 2.59434 5.61085e-07 2.59403 5.36147e-07 2.59368 5.12005e-07 2.59327 4.85186e-07 2.59282 4.60484e-07 2.59231 4.3619e-07 2.59176 4.12569e-07 2.59117 3.94528e-07 2.59054 3.76669e-07 2.58987 3.65402e-07 2.58919 3.59309e-07 2.58849 3.56515e-07 2.58779 3.64911e-07 2.5871 3.75661e-07 2.58643 3.95874e-07 2.58579 4.24101e-07 2.5852 4.55504e-07 2.58467 4.99433e-07 2.58421 5.44198e-07 2.58382 5.96276e-07 2.58353 6.54909e-07 2.58332 7.11076e-07 2.58321 7.76399e-07 2.58321 8.35716e-07 2.58332 9.3862e-07 2.58354 9.96784e-07 2.58386 1.03765e-06 2.58427 1.09243e-06 2.58477 1.1412e-06 2.58535 1.18385e-06 2.58599 1.2198e-06 2.58669 1.24862e-06 2.58744 1.27011e-06 2.58822 1.28417e-06 2.58903 1.29097e-06 2.58985 1.29076e-06 2.59067 1.284e-06 2.59149 1.27122e-06 2.59229 1.25307e-06 2.59307 1.23026e-06 2.59382 1.20353e-06 2.59453 1.17366e-06 2.59521 1.14141e-06 2.59585 1.10753e-06 2.59644 1.07268e-06 2.59699 1.03752e-06 2.59749 1.00258e-06 2.59794 9.6839e-07 2.59836 9.35339e-07 2.59873 9.03754e-07 2.59906 8.73926e-07 2.59936 8.46045e-07 2.59961 8.2023e-07 2.59984 7.9651e-07 2.60004 7.74933e-07 2.60021 7.55488e-07 2.60036 7.38099e-07 2.60049 7.22652e-07 2.60059 7.09038e-07 2.60069 6.9712e-07 2.60076 6.86763e-07 2.60083 6.77832e-07 2.60088 6.70185e-07 2.60093 6.63673e-07 2.60097 6.58187e-07 2.601 6.53588e-07 2.60103 6.49747e-07 2.60105 6.46589e-07 2.60107 6.43999e-07 2.60109 6.41907e-07 2.6011 6.40204e-07 2.60111 6.38847e-07 2.60112 6.37763e-07 2.60113 6.36923e-07 2.60114 6.36286e-07 2.60115 6.35799e-07 2.60116 6.35457e-07 2.60117 6.35195e-07 2.60118 6.3502e-07 2.60119 6.34896e-07 2.6012 6.3486e-07 2.6012 6.34838e-07 2.60121 6.34845e-07 2.60122 6.34875e-07 2.60123 6.349e-07 2.60124 6.34929e-07 2.60125 6.34991e-07 2.60126 6.35009e-07 2.60127 6.35035e-07 2.60128 6.35027e-07 2.60129 6.35016e-07 2.6013 6.35002e-07 2.60132 6.34944e-07 2.60133 6.34889e-07 2.60134 6.3478e-07 2.60135 6.34671e-07 2.60136 6.3454e-07 2.60137 6.34347e-07 2.60138 6.34147e-07 2.60139 6.33929e-07 2.60141 6.33645e-07 2.60142 6.3335e-07 2.60143 6.33008e-07 2.60144 6.32688e-07 2.60145 6.32353e-07 2.60145 6.31913e-07 2.60146 6.31557e-07 2.60147 6.31058e-07 2.60148 6.30662e-07 2.60149 6.30203e-07 2.60149 6.2973e-07 2.6015 6.29221e-07 2.6015 6.28792e-07 2.60151 6.2825e-07 2.60151 6.27857e-07 2.60151 6.27293e-07 2.60151 6.26933e-07 2.60152 6.26482e-07 2.60152 6.26045e-07 2.60152 6.25783e-07 2.60152 6.2527e-07 2.60151 6.24765e-07 2.60151 6.24965e-07 2.60151 6.24615e-07 2.60151 6.24532e-07 2.6015 6.24517e-07 2.6015 6.24488e-07 2.6015 6.24823e-07 2.60149 6.24721e-07 2.60149 6.24943e-07 2.60149 6.26354e-07 2.60148 6.27275e-07 2.60148 6.27675e-07 2.60148 6.28592e-07 2.60147 6.3016e-07 2.60147 6.3168e-07 2.60147 6.33525e-07 2.60147 6.35737e-07 2.60146 6.38145e-07 2.60146 6.40935e-07 2.60146 6.44148e-07 2.60145 6.47262e-07 2.60145 6.51326e-07 2.60144 6.54985e-07 2.60143 6.59398e-07 2.60141 6.63917e-07 2.60139 6.67755e-07 2.60136 6.72426e-07 2.60132 6.76129e-07 2.60127 6.80378e-07 2.6012 6.83176e-07 2.60112 6.84933e-07 2.601 6.87138e-07 2.60086 6.85955e-07 2.60068 6.83332e-07 2.60047 6.79956e-07 2.6002 6.73328e-07 2.59988 6.67162e-07 2.59951 6.5651e-07 2.59907 6.45756e-07 2.59856 6.33328e-07 2.59798 6.19959e-07 2.59732 6.06236e-07 2.59658 5.89363e-07 2.59576 5.77442e-07 2.59485 5.61067e-07 2.59387 5.52169e-07 2.59281 5.44111e-07 2.59167 5.39545e-07 2.59047 5.37748e-07 2.58921 5.4068e-07 2.5879 5.46836e-07 2.58655 5.25521e-07 2.58517 5.89098e-07 2.58378 7.53509e-07 2.58238 6.72961e-07 2.58099 7.06779e-07 2.57962 7.68185e-07 2.57828 8.27848e-07 2.57698 8.9041e-07 2.57573 9.57458e-07 2.57454 1.02794e-06 2.57341 1.10042e-06 2.57234 1.17327e-06 2.57135 1.24482e-06 2.57042 1.31356e-06 2.56955 1.37811e-06 2.56873 1.43731e-06 2.56796 1.49028e-06 2.56723 1.53623e-06 2.56652 1.57461e-06 2.56584 1.605e-06 2.56515 1.62729e-06 2.56447 1.64142e-06 2.56376 1.64756e-06 2.56303 1.64603e-06 2.56226 1.63725e-06 2.56145 1.62178e-06 2.56058 1.60029e-06 2.55965 1.57343e-06 2.55865 1.54197e-06 2.55757 1.50664e-06 2.55642 1.46823e-06 2.55519 1.42738e-06 2.55387 1.38482e-06 2.55246 1.34114e-06 2.55098 1.29688e-06 2.5494 1.25254e-06 2.54774 1.20851e-06 2.546 1.16511e-06 2.54418 1.1226e-06 2.54228 1.08114e-06 2.54031 1.04088e-06 2.53826 1.00188e-06 2.53614 9.64141e-07 2.53396 9.27641e-07 2.5317 8.92302e-07 2.52939 8.58046e-07 2.52702 8.24755e-07 2.52458 7.92297e-07 2.52209 7.60556e-07 2.51955 7.29367e-07 2.51695 6.9859e-07 2.51431 6.68108e-07 2.51161 6.37785e-07 2.50886 6.07481e-07 2.50607 5.77103e-07 2.50323 5.46548e-07 2.50034 5.15691e-07 2.49741 4.84459e-07 2.49443 4.52805e-07 2.49141 4.20616e-07 2.48835 3.87856e-07 2.48524 3.5447e-07 2.48209 3.20419e-07 2.47889 2.85672e-07 2.47565 2.50191e-07 2.47237 2.13942e-07 2.46905 1.769e-07 2.46568 1.39069e-07 2.46227 1.00379e-07 2.45882 6.08743e-08 2.45532 2.05582e-08 2.45179 -2.06164e-08 2.44821 -6.26533e-08 2.44459 -1.05621e-07 2.44092 -1.4943e-07 2.43722 -1.94108e-07 2.43347 -2.39688e-07 2.42968 -2.86127e-07 2.42584 -3.33472e-07 2.42197 -3.81715e-07 2.41805 -4.30839e-07 2.41409 -4.80861e-07 2.41009 -5.31792e-07 2.40604 -5.83608e-07 2.40196 -6.36344e-07 2.39783 -6.89965e-07 2.39366 -7.44494e-07 2.38945 -7.99933e-07 2.3852 -8.56289e-07 2.3809 -9.13536e-07 2.37657 -9.71711e-07 2.37219 -1.03078e-06 2.36777 -1.09078e-06 2.36331 -1.15167e-06 2.35881 -1.21348e-06 2.35426 -1.27621e-06 2.34968 -1.33986e-06 2.34505 -1.40443e-06 2.34039 -1.4699e-06 2.33568 -1.53628e-06 2.33093 -1.60361e-06 2.32614 -1.67184e-06 2.32131 -1.74098e-06 2.31644 -1.81104e-06 2.31153 -1.88202e-06 2.30658 -1.95393e-06 2.30159 -2.02674e-06 2.29656 -2.1005e-06 2.29149 -2.17516e-06 2.28638 -2.25074e-06 2.28123 -2.32723e-06 2.27604 -2.40465e-06 2.27081 -2.48299e-06 2.26554 -2.56225e-06 2.26023 -2.64243e-06 2.25488 -2.72351e-06 2.2495 -2.80553e-06 2.24407 -2.88845e-06 2.23861 -2.97231e-06 2.2331 -3.05707e-06 2.22756 -3.14273e-06 2.22198 -3.22933e-06 2.21637 -3.31683e-06 2.21071 -3.40524e-06 2.20502 -3.49455e-06 2.19929 -3.58481e-06 2.19352 -3.67594e-06 2.18772 -3.768e-06 2.18187 -3.86095e-06 2.176 -3.95482e-06 2.17008 -4.0496e-06 2.16413 -4.14526e-06 2.15814 -4.24184e-06 2.15211 -4.3393e-06 2.14605 -4.43768e-06 2.13996 -4.53694e-06 2.13382 -4.6371e-06 2.12766 -4.73816e-06 2.12145 -4.8401e-06 2.11522 -4.94294e-06 2.10894 -5.04664e-06 2.10264 -5.15125e-06 2.0963 -5.25673e-06 2.08992 -5.36308e-06 2.08351 -5.47032e-06 2.07707 -5.57844e-06 2.07059 -5.68742e-06 2.06408 -5.79728e-06 2.05754 -5.90799e-06 2.05096 -6.01958e-06 2.04435 -6.13202e-06 2.03771 -6.24533e-06 2.03104 -6.35948e-06 2.02433 -6.4745e-06 2.0176 -6.59037e-06 2.01083 -6.70706e-06 2.00403 -6.82461e-06 1.9972 -6.94301e-06 1.99034 -7.06222e-06 1.98345 -7.18229e-06 1.97653 -7.30317e-06 1.96957 -7.42488e-06 1.96259 -7.54741e-06 1.95558 -7.67076e-06 1.94854 -7.79493e-06 1.94148 -7.91989e-06 1.93438 -8.04569e-06 1.92725 -8.17226e-06 1.9201 -8.29963e-06 1.91292 -8.4278e-06 1.90571 -8.55676e-06 1.89847 -8.68651e-06 1.89121 -8.81706e-06 1.88392 -8.94835e-06 1.87661 -9.08041e-06 1.86926 -9.21326e-06 1.8619 -9.34687e-06 1.8545 -9.48122e-06 1.84709 -9.61633e-06 1.83964 -9.75221e-06 1.83218 -9.88881e-06 1.82468 -1.00261e-05 1.81717 -1.01642e-05 1.80963 -1.0303e-05 1.80206 -1.04426e-05 1.79448 -1.05828e-05 1.78687 -1.07238e-05 1.77924 -1.08654e-05 1.77158 -1.10078e-05 1.76391 -1.11508e-05 1.75621 -1.12946e-05 1.74849 -1.1439e-05 1.74076 -1.15841e-05 1.733 -1.17299e-05 1.72522 -1.18764e-05 1.71742 -1.20235e-05 1.7096 -1.21712e-05 1.70176 -1.23197e-05 1.6939 -1.24687e-05 1.68602 -1.26184e-05 1.67813 -1.27687e-05 1.67022 -1.29196e-05 1.66229 -1.30712e-05 1.65434 -1.32234e-05 1.64638 -1.33762e-05 1.6384 -1.35295e-05 1.6304 -1.36835e-05 1.62239 -1.3838e-05 1.61436 -1.39932e-05 1.60631 -1.41489e-05 1.59825 -1.43051e-05 1.59018 -1.4462e-05 1.58209 -1.46193e-05 1.57399 -1.47772e-05 1.56588 -1.49357e-05 1.55775 -1.50947e-05 1.54961 -1.52542e-05 1.54145 -1.54142e-05 1.53329 -1.55747e-05 1.52511 -1.57357e-05 1.51692 -1.58972e-05 1.50872 -1.60592e-05 1.50051 -1.62217e-05 1.49229 -1.63847e-05 1.48406 -1.65481e-05 1.47582 -1.67119e-05 1.46757 -1.68763e-05 1.45931 -1.7041e-05 1.45105 -1.72062e-05 1.44277 -1.73718e-05 1.43449 -1.75379e-05 1.4262 -1.77043e-05 1.4179 -1.78711e-05 1.4096 -1.80384e-05 1.40129 -1.8206e-05 1.39297 -1.8374e-05 1.38465 -1.85424e-05 1.37632 -1.87111e-05 1.36799 -1.88802e-05 1.35965 -1.90496e-05 1.35131 -1.92193e-05 1.34296 -1.93894e-05 1.33461 -1.95598e-05 1.32626 -1.97306e-05 1.31791 -1.99016e-05 1.30955 -2.00729e-05 1.30119 -2.02445e-05 1.29283 -2.04164e-05 1.28447 -2.05886e-05 1.27611 -2.0761e-05 1.26775 -2.09336e-05 1.25938 -2.11065e-05 1.25102 -2.12797e-05 1.24266 -2.1453e-05 1.2343 -2.16267e-05 1.22594 -2.18004e-05 1.21758 -2.19745e-05 1.20923 -2.21485e-05 1.20087 -2.23234e-05 1.19252 -2.24969e-05 1.18417 -2.26735e-05 1.17583 -2.2845e-05 1.16749 -2.30254e-05 1.15916 -2.31925e-05 1.15082 -2.33789e-05 1.1425 -2.35404e-05 1.13418 -2.3732e-05 1.12586 -2.38906e-05 1.11756 -2.40831e-05 1.10925 -2.42428e-05 1.10096 -2.44343e-05 1.09267 -2.45947e-05 1.08439 -2.47861e-05 1.07612 -2.49471e-05 1.06786 -2.51293e-05 1.0596 -2.5159e-05 1.05136 -1.79044e-05 1.47105e-05 2.99363 -0.907295 3.07293 -0.276948 3.09827 -0.0882501 3.10656 -0.0289126 3.10997 -0.0131536 3.11323 -0.013692 3.11808 -0.0201807 3.12568 -0.0307086 3.13696 -0.0441036 3.1524 -0.0585114 3.17178 -0.0714122 3.1941 -0.079856 3.21792 -0.0812962 3.241 -0.0769223 3.26027 -0.062382 3.27314 -0.0415068 3.27804 -0.0164227 3.27403 0.00992041 3.26115 0.0395832 3.24111 0.062995 3.21592 0.0825058 3.18706 0.0962536 3.15627 0.104006 3.12539 0.105308 3.09593 0.100197 3.06909 0.0910763 3.04584 0.0787616 3.0266 0.0650666 3.01137 0.0514931 2.99979 0.0391371 2.99131 0.0286342 2.98533 0.020205 2.98125 0.0137829 2.97856 0.00910133 2.97684 0.00582676 2.97577 0.00362138 2.97512 0.0021875 2.97474 0.0012856 2.97452 0.000735835 2.9744 0.000410594 2.97434 0.000223607 2.97431 0.000119022 2.97429 6.20528e-05 2.97428 3.18036e-05 2.97428 1.61275e-05 2.97428 8.20878e-06 2.97428 4.29607e-06 2.97429 2.39896e-06 2.97429 1.50437e-06 2.9743 1.09038e-06 2.97431 9.03488e-07 2.97432 8.20481e-07 2.97433 7.84632e-07 2.97434 7.69847e-07 2.97435 7.63521e-07 2.97437 7.61142e-07 2.97438 7.60028e-07 2.9744 7.58857e-07 2.97441 7.58049e-07 2.97441 7.56172e-07 2.97442 7.53502e-07 2.97441 7.49773e-07 2.97439 7.39048e-07 2.97436 7.3704e-07 2.97431 7.27989e-07 2.97424 7.17551e-07 2.97414 7.05546e-07 2.97401 6.90299e-07 2.97384 6.74583e-07 2.97363 6.55495e-07 2.97337 6.34838e-07 2.97307 6.134e-07 2.97271 5.88981e-07 2.9723 5.65749e-07 2.97183 5.40793e-07 2.9713 5.16367e-07 2.97072 4.94492e-07 2.97008 4.72079e-07 2.9694 4.54962e-07 2.96867 4.39893e-07 2.96791 4.28878e-07 2.96713 4.25491e-07 2.96634 4.24363e-07 2.96554 4.32712e-07 2.96477 4.46402e-07 2.96402 4.6585e-07 2.96331 4.96148e-07 2.96266 5.28093e-07 2.96208 5.7029e-07 2.96158 6.17107e-07 2.96117 6.66092e-07 2.96087 7.25238e-07 2.96068 7.79994e-07 2.9606 8.40504e-07 2.96064 9.08323e-07 2.96081 1.0099e-06 2.96111 1.04176e-06 2.96152 1.09255e-06 2.96204 1.1436e-06 2.96265 1.18883e-06 2.96335 1.22803e-06 2.96412 1.26063e-06 2.96495 1.28622e-06 2.96584 1.30467e-06 2.96676 1.31597e-06 2.9677 1.3201e-06 2.96866 1.31771e-06 2.96961 1.30898e-06 2.97056 1.29464e-06 2.97148 1.27531e-06 2.97237 1.25146e-06 2.97323 1.22426e-06 2.97405 1.19406e-06 2.97482 1.1619e-06 2.97554 1.12831e-06 2.97621 1.09397e-06 2.97682 1.0596e-06 2.97738 1.02568e-06 2.97789 9.92477e-07 2.97835 9.60848e-07 2.97876 9.30402e-07 2.97913 9.02233e-07 2.97945 8.75745e-07 2.97974 8.51494e-07 2.97999 8.29419e-07 2.9802 8.0945e-07 2.98039 7.91599e-07 2.98055 7.75959e-07 2.98069 7.61764e-07 2.98081 7.50118e-07 2.98092 7.39357e-07 2.98101 7.30655e-07 2.98108 7.22917e-07 2.98115 7.16143e-07 2.98121 7.10701e-07 2.98126 7.0559e-07 2.9813 7.00875e-07 2.98134 6.96804e-07 2.98136 6.91747e-07 2.98138 6.87582e-07 2.98139 6.81885e-07 2.98138 6.7478e-07 2.98136 6.61184e-07 2.98131 6.55218e-07 2.98125 6.45497e-07 2.98115 6.32412e-07 2.98103 6.1746e-07 2.98086 6.01442e-07 2.98066 5.82011e-07 2.98041 5.62133e-07 2.98011 5.39843e-07 2.97976 5.15847e-07 2.97935 4.92568e-07 2.97889 4.66793e-07 2.97836 4.42975e-07 2.97779 4.19586e-07 2.97715 3.96889e-07 2.97647 3.79456e-07 2.97574 3.62328e-07 2.97498 3.51465e-07 2.9742 3.45593e-07 2.9734 3.42956e-07 2.97259 3.50967e-07 2.9718 3.61408e-07 2.97103 3.80842e-07 2.9703 4.08021e-07 2.96962 4.38311e-07 2.96901 4.80533e-07 2.96848 5.23705e-07 2.96803 5.7384e-07 2.96769 6.30243e-07 2.96746 6.84406e-07 2.96733 7.47168e-07 2.96733 8.04284e-07 2.96745 9.0383e-07 2.96771 9.58877e-07 2.96808 9.9872e-07 2.96855 1.05133e-06 2.96912 1.09827e-06 2.96978 1.13929e-06 2.97052 1.17387e-06 2.97133 1.20162e-06 2.97218 1.22228e-06 2.97308 1.23581e-06 2.97401 1.24233e-06 2.97495 1.24212e-06 2.9759 1.2356e-06 2.97683 1.2233e-06 2.97776 1.2058e-06 2.97865 1.18384e-06 2.97951 1.15812e-06 2.98034 1.12937e-06 2.98111 1.09833e-06 2.98184 1.06572e-06 2.98252 1.03217e-06 2.98315 9.98331e-07 2.98373 9.64719e-07 2.98425 9.31817e-07 2.98473 9.00007e-07 2.98516 8.69615e-07 2.98554 8.40912e-07 2.98588 8.14089e-07 2.98617 7.89238e-07 2.98643 7.66413e-07 2.98666 7.45662e-07 2.98686 7.26952e-07 2.98703 7.10217e-07 2.98717 6.9536e-07 2.9873 6.8227e-07 2.9874 6.70796e-07 2.98749 6.60824e-07 2.98757 6.52235e-07 2.98763 6.44879e-07 2.98768 6.38607e-07 2.98773 6.33336e-07 2.98776 6.28908e-07 2.9878 6.25219e-07 2.98782 6.22178e-07 2.98784 6.1969e-07 2.98786 6.17678e-07 2.98788 6.16044e-07 2.98789 6.14735e-07 2.98791 6.13687e-07 2.98792 6.12883e-07 2.98793 6.12272e-07 2.98794 6.11803e-07 2.98795 6.11464e-07 2.98796 6.11228e-07 2.98797 6.11057e-07 2.98798 6.10922e-07 2.98799 6.10889e-07 2.988 6.10864e-07 2.98801 6.10875e-07 2.98802 6.109e-07 2.98803 6.10933e-07 2.98804 6.10959e-07 2.98805 6.11017e-07 2.98806 6.11039e-07 2.98808 6.11057e-07 2.98809 6.11053e-07 2.9881 6.11035e-07 2.98811 6.11035e-07 2.98813 6.10973e-07 2.98814 6.10922e-07 2.98815 6.1082e-07 2.98817 6.10711e-07 2.98818 6.10584e-07 2.98819 6.10402e-07 2.98821 6.1022e-07 2.98822 6.10009e-07 2.98823 6.09729e-07 2.98824 6.09449e-07 2.98825 6.09114e-07 2.98827 6.08805e-07 2.98828 6.08485e-07 2.98829 6.08063e-07 2.9883 6.07717e-07 2.98831 6.07233e-07 2.98831 6.06859e-07 2.98832 6.06415e-07 2.98833 6.05971e-07 2.98834 6.05465e-07 2.98834 6.05058e-07 2.98835 6.04534e-07 2.98835 6.04152e-07 2.98835 6.03617e-07 2.98835 6.03271e-07 2.98836 6.02846e-07 2.98836 6.0242e-07 2.98836 6.02158e-07 2.98836 6.01667e-07 2.98836 6.01198e-07 2.98835 6.01365e-07 2.98835 6.01041e-07 2.98835 6.00961e-07 2.98834 6.0094e-07 2.98834 6.00907e-07 2.98834 6.01227e-07 2.98833 6.01151e-07 2.98833 6.01354e-07 2.98832 6.02711e-07 2.98832 6.03584e-07 2.98832 6.03992e-07 2.98831 6.04872e-07 2.98831 6.06364e-07 2.9883 6.07841e-07 2.9883 6.0962e-07 2.9883 6.11755e-07 2.9883 6.14084e-07 2.98829 6.16757e-07 2.98829 6.19842e-07 2.98828 6.22858e-07 2.98828 6.26751e-07 2.98827 6.30291e-07 2.98826 6.34533e-07 2.98824 6.3888e-07 2.98821 6.42591e-07 2.98818 6.47065e-07 2.98814 6.50653e-07 2.98808 6.54723e-07 2.988 6.5743e-07 2.9879 6.59133e-07 2.98777 6.61228e-07 2.98761 6.60108e-07 2.9874 6.57579e-07 2.98715 6.54283e-07 2.98685 6.47906e-07 2.98648 6.41958e-07 2.98605 6.31764e-07 2.98555 6.21338e-07 2.98496 6.09376e-07 2.98429 5.96501e-07 2.98354 5.83288e-07 2.98269 5.66863e-07 2.98174 5.55428e-07 2.9807 5.39843e-07 2.97957 5.31116e-07 2.97835 5.23378e-07 2.97705 5.1895e-07 2.97567 5.17226e-07 2.97422 5.20045e-07 2.97271 5.25823e-07 2.97116 5.06177e-07 2.96958 5.67557e-07 2.96798 7.23812e-07 2.96638 6.48663e-07 2.96478 6.80087e-07 2.9632 7.39099e-07 2.96166 7.96557e-07 2.96017 8.56802e-07 2.95873 9.21347e-07 2.95736 9.89192e-07 2.95607 1.05895e-06 2.95485 1.12906e-06 2.9537 1.19794e-06 2.95264 1.26409e-06 2.95164 1.32622e-06 2.9507 1.38318e-06 2.94981 1.43416e-06 2.94897 1.47837e-06 2.94816 1.51529e-06 2.94737 1.54453e-06 2.94659 1.56598e-06 2.9458 1.57956e-06 2.94499 1.58545e-06 2.94415 1.58396e-06 2.94327 1.5755e-06 2.94233 1.56061e-06 2.94134 1.53991e-06 2.94027 1.51406e-06 2.93912 1.48377e-06 2.93788 1.44977e-06 2.93656 1.4128e-06 2.93514 1.37349e-06 2.93362 1.33253e-06 2.93201 1.29049e-06 2.9303 1.24791e-06 2.92849 1.20523e-06 2.92659 1.16287e-06 2.92459 1.1211e-06 2.9225 1.0802e-06 2.92032 1.04028e-06 2.91805 1.00155e-06 2.9157 9.64028e-07 2.91326 9.2771e-07 2.91075 8.92596e-07 2.90816 8.58592e-07 2.90551 8.25628e-07 2.90278 7.936e-07 2.89998 7.62371e-07 2.89712 7.31827e-07 2.8942 7.01813e-07 2.89122 6.722e-07 2.88818 6.42875e-07 2.88508 6.13694e-07 2.88193 5.8454e-07 2.87872 5.55316e-07 2.87545 5.25906e-07 2.87214 4.9622e-07 2.86877 4.66171e-07 2.86535 4.35706e-07 2.86188 4.04729e-07 2.85836 3.73209e-07 2.85479 3.41082e-07 2.85117 3.08319e-07 2.8475 2.74886e-07 2.84378 2.40736e-07 2.84001 2.05862e-07 2.83619 1.70214e-07 2.83232 1.33812e-07 2.82841 9.65847e-08 2.82444 5.85533e-08 2.82043 1.97761e-08 2.81636 -1.98306e-08 2.81225 -6.02886e-08 2.80809 -1.01631e-07 2.80388 -1.43787e-07 2.79963 -1.86781e-07 2.79532 -2.30637e-07 2.79096 -2.75333e-07 2.78656 -3.20888e-07 2.78211 -3.67298e-07 2.77761 -4.1457e-07 2.77306 -4.62711e-07 2.76846 -5.11714e-07 2.76382 -5.61588e-07 2.75913 -6.12315e-07 2.75438 -6.63924e-07 2.74959 -7.16394e-07 2.74476 -7.69738e-07 2.73987 -8.23969e-07 2.73494 -8.79052e-07 2.72996 -9.35033e-07 2.72493 -9.91877e-07 2.71985 -1.0496e-06 2.71473 -1.10819e-06 2.70956 -1.16767e-06 2.70434 -1.22803e-06 2.69907 -1.28928e-06 2.69376 -1.35141e-06 2.6884 -1.41442e-06 2.68299 -1.4783e-06 2.67754 -1.54308e-06 2.67204 -1.60874e-06 2.66649 -1.67526e-06 2.66089 -1.74269e-06 2.65525 -1.81098e-06 2.64957 -1.88018e-06 2.64383 -1.95024e-06 2.63805 -2.02121e-06 2.63223 -2.09305e-06 2.62636 -2.16577e-06 2.62044 -2.23939e-06 2.61448 -2.31388e-06 2.60847 -2.38926e-06 2.60242 -2.46553e-06 2.59632 -2.54269e-06 2.59018 -2.62071e-06 2.58399 -2.69964e-06 2.57776 -2.77942e-06 2.57148 -2.86011e-06 2.56516 -2.94166e-06 2.5588 -3.0241e-06 2.55239 -3.10742e-06 2.54594 -3.19162e-06 2.53944 -3.2767e-06 2.5329 -3.36265e-06 2.52632 -3.44949e-06 2.51969 -3.53717e-06 2.51303 -3.62576e-06 2.50632 -3.71522e-06 2.49956 -3.80553e-06 2.49277 -3.89673e-06 2.48593 -3.98878e-06 2.47905 -4.08173e-06 2.47213 -4.17551e-06 2.46517 -4.27016e-06 2.45817 -4.36568e-06 2.45112 -4.46206e-06 2.44404 -4.5593e-06 2.43691 -4.65739e-06 2.42975 -4.75636e-06 2.42254 -4.85614e-06 2.4153 -4.9568e-06 2.40801 -5.0583e-06 2.40069 -5.16064e-06 2.39333 -5.26384e-06 2.38592 -5.36786e-06 2.37848 -5.47274e-06 2.37101 -5.57844e-06 2.36349 -5.68498e-06 2.35594 -5.79235e-06 2.34834 -5.90055e-06 2.34072 -6.00958e-06 2.33305 -6.11943e-06 2.32535 -6.2301e-06 2.31761 -6.3416e-06 2.30984 -6.45388e-06 2.30203 -6.567e-06 2.29418 -6.68093e-06 2.2863 -6.79564e-06 2.27838 -6.91116e-06 2.27043 -7.02749e-06 2.26245 -7.14461e-06 2.25443 -7.2625e-06 2.24637 -7.3812e-06 2.23829 -7.50069e-06 2.23017 -7.62093e-06 2.22202 -7.74198e-06 2.21383 -7.86378e-06 2.20562 -7.98632e-06 2.19737 -8.10967e-06 2.18909 -8.23375e-06 2.18077 -8.35861e-06 2.17243 -8.48423e-06 2.16406 -8.61056e-06 2.15566 -8.73765e-06 2.14722 -8.86548e-06 2.13876 -8.99404e-06 2.13027 -9.12333e-06 2.12174 -9.25335e-06 2.1132 -9.38409e-06 2.10462 -9.51553e-06 2.09601 -9.64768e-06 2.08738 -9.78055e-06 2.07872 -9.91411e-06 2.07003 -1.00484e-05 2.06131 -1.01833e-05 2.05257 -1.0319e-05 2.04381 -1.04553e-05 2.03502 -1.05923e-05 2.0262 -1.07299e-05 2.01736 -1.08682e-05 2.00849 -1.10072e-05 1.9996 -1.11468e-05 1.99069 -1.12871e-05 1.98175 -1.1428e-05 1.97279 -1.15696e-05 1.96381 -1.17118e-05 1.95481 -1.18546e-05 1.94578 -1.1998e-05 1.93673 -1.21421e-05 1.92767 -1.22867e-05 1.91858 -1.2432e-05 1.90947 -1.25778e-05 1.90034 -1.27242e-05 1.89119 -1.28712e-05 1.88202 -1.30188e-05 1.87284 -1.3167e-05 1.86363 -1.33157e-05 1.85441 -1.3465e-05 1.84517 -1.36148e-05 1.83591 -1.37651e-05 1.82664 -1.3916e-05 1.81735 -1.40675e-05 1.80804 -1.42194e-05 1.79872 -1.43719e-05 1.78938 -1.45249e-05 1.78003 -1.46783e-05 1.77067 -1.48323e-05 1.76129 -1.49868e-05 1.75189 -1.51417e-05 1.74249 -1.52971e-05 1.73307 -1.5453e-05 1.72364 -1.56094e-05 1.71419 -1.57662e-05 1.70474 -1.59234e-05 1.69527 -1.60811e-05 1.6858 -1.62392e-05 1.67631 -1.63978e-05 1.66681 -1.65567e-05 1.65731 -1.67161e-05 1.64779 -1.68758e-05 1.63827 -1.7036e-05 1.62874 -1.71965e-05 1.6192 -1.73575e-05 1.60965 -1.75187e-05 1.6001 -1.76804e-05 1.59054 -1.78424e-05 1.58097 -1.80048e-05 1.5714 -1.81675e-05 1.56183 -1.83305e-05 1.55225 -1.84938e-05 1.54266 -1.86575e-05 1.53307 -1.88215e-05 1.52348 -1.89858e-05 1.51388 -1.91503e-05 1.50428 -1.93152e-05 1.49468 -1.94803e-05 1.48508 -1.96457e-05 1.47547 -1.98114e-05 1.46587 -1.99773e-05 1.45626 -2.01434e-05 1.44665 -2.03098e-05 1.43705 -2.04764e-05 1.42744 -2.06432e-05 1.41784 -2.08103e-05 1.40823 -2.09775e-05 1.39863 -2.1145e-05 1.38904 -2.13124e-05 1.37944 -2.14807e-05 1.36985 -2.16476e-05 1.36026 -2.18176e-05 1.35068 -2.19827e-05 1.3411 -2.21562e-05 1.33152 -2.23172e-05 1.32195 -2.24962e-05 1.31239 -2.2652e-05 1.30283 -2.28358e-05 1.29328 -2.29891e-05 1.28373 -2.31737e-05 1.2742 -2.33279e-05 1.26467 -2.35117e-05 1.25515 -2.36666e-05 1.24564 -2.38502e-05 1.23614 -2.40054e-05 1.22665 -2.41772e-05 1.21716 -2.41576e-05 1.20769 -1.65621e-05 1.34273e-05 3.42025 -1.21474 3.51064 -0.36734 3.5404 -0.118009 3.55052 -0.0390413 3.55498 -0.0176077 3.55925 -0.0179425 3.56503 -0.0259538 3.57369 -0.0393569 3.5862 -0.0566184 3.60308 -0.0753939 3.62411 -0.0924359 3.64826 -0.103955 3.674 -0.106672 3.69913 -0.100666 3.72044 -0.0825518 3.73502 -0.0555673 3.74135 -0.0226521 3.73832 0.0126552 3.72576 0.0504613 3.70515 0.082197 3.67863 0.108317 3.64782 0.126865 3.61462 0.137226 3.5811 0.139102 3.54906 0.132611 3.51987 0.120465 3.49456 0.104171 3.47362 0.0860558 3.45702 0.0681038 3.4444 0.0517653 3.43516 0.0378754 3.42863 0.0267311 3.42418 0.0182384 3.42123 0.0120465 3.41935 0.00771448 3.41818 0.00479611 3.41747 0.00289803 3.41706 0.00170372 3.41682 0.000975424 3.41669 0.000544388 3.41662 0.000296471 3.41658 0.000157745 3.41656 8.21439e-05 3.41655 4.19828e-05 3.41655 2.116e-05 3.41655 1.06366e-05 3.41655 5.43354e-06 3.41656 2.90996e-06 3.41656 1.71896e-06 3.41657 1.16757e-06 3.41658 9.182e-07 3.41659 8.07389e-07 3.41661 7.59383e-07 3.41662 7.39359e-07 3.41664 7.30848e-07 3.41665 7.27543e-07 3.41667 7.26068e-07 3.41668 7.24805e-07 3.4167 7.23943e-07 3.4167 7.22144e-07 3.41671 7.19618e-07 3.4167 7.15889e-07 3.41668 7.05841e-07 3.41664 7.0384e-07 3.41659 6.95214e-07 3.4165 6.85231e-07 3.41639 6.73746e-07 3.41624 6.592e-07 3.41604 6.44141e-07 3.4158 6.25942e-07 3.41551 6.06191e-07 3.41516 5.85689e-07 3.41475 5.62384e-07 3.41427 5.40149e-07 3.41373 5.16337e-07 3.41313 4.9301e-07 3.41246 4.72073e-07 3.41173 4.50707e-07 3.41094 4.34307e-07 3.41011 4.19945e-07 3.40924 4.09453e-07 3.40834 4.06171e-07 3.40743 4.05154e-07 3.40652 4.13083e-07 3.40562 4.26195e-07 3.40476 4.4483e-07 3.40395 4.73705e-07 3.4032 5.04298e-07 3.40253 5.44582e-07 3.40196 5.89318e-07 3.40149 6.36199e-07 3.40115 6.92587e-07 3.40092 7.45007e-07 3.40083 8.02553e-07 3.40088 8.68027e-07 3.40108 9.64244e-07 3.40142 9.9494e-07 3.4019 1.04347e-06 3.40249 1.09219e-06 3.40319 1.13538e-06 3.40399 1.17282e-06 3.40488 1.20394e-06 3.40584 1.22837e-06 3.40685 1.24598e-06 3.40791 1.25675e-06 3.40899 1.2607e-06 3.41009 1.2584e-06 3.41119 1.25006e-06 3.41227 1.23635e-06 3.41333 1.21788e-06 3.41436 1.1951e-06 3.41535 1.16911e-06 3.41629 1.14027e-06 3.41717 1.10954e-06 3.418 1.07746e-06 3.41876 1.04466e-06 3.41947 1.01185e-06 3.42012 9.79435e-07 3.4207 9.47728e-07 3.42123 9.17518e-07 3.4217 8.88458e-07 3.42212 8.61552e-07 3.42249 8.36266e-07 3.42282 8.13108e-07 3.42311 7.92026e-07 3.42336 7.72969e-07 3.42357 7.55917e-07 3.42376 7.40978e-07 3.42392 7.27443e-07 3.42406 7.16311e-07 3.42418 7.06055e-07 3.42428 6.97735e-07 3.42437 6.90352e-07 3.42444 6.83889e-07 3.42451 6.78678e-07 3.42457 6.73817e-07 3.42462 6.69308e-07 3.42465 6.65428e-07 3.42469 6.60606e-07 3.42471 6.56601e-07 3.42471 6.51222e-07 3.42471 6.44306e-07 3.42468 6.31419e-07 3.42463 6.25749e-07 3.42455 6.16397e-07 3.42444 6.03923e-07 3.4243 5.89631e-07 3.42411 5.74306e-07 3.42388 5.55774e-07 3.42359 5.36751e-07 3.42325 5.15469e-07 3.42284 4.92551e-07 3.42238 4.70269e-07 3.42184 4.45687e-07 3.42124 4.22897e-07 3.42058 4.00561e-07 3.41985 3.78905e-07 3.41907 3.62199e-07 3.41823 3.45897e-07 3.41736 3.35496e-07 3.41645 3.29886e-07 3.41553 3.27422e-07 3.41461 3.35e-07 3.4137 3.45062e-07 3.41282 3.6362e-07 3.41198 3.89569e-07 3.4112 4.18568e-07 3.4105 4.58838e-07 3.40988 5.00162e-07 3.40938 5.48054e-07 3.40898 6.01887e-07 3.40871 6.53716e-07 3.40857 7.13551e-07 3.40857 7.68139e-07 3.40871 8.63723e-07 3.409 9.15355e-07 3.40942 9.53931e-07 3.40997 1.00408e-06 3.41063 1.04891e-06 3.41139 1.08808e-06 3.41223 1.12109e-06 3.41316 1.14758e-06 3.41414 1.1673e-06 3.41518 1.18022e-06 3.41624 1.18643e-06 3.41732 1.18623e-06 3.41841 1.17999e-06 3.41949 1.16824e-06 3.42054 1.15151e-06 3.42157 1.13053e-06 3.42256 1.10596e-06 3.42351 1.0785e-06 3.4244 1.04884e-06 3.42524 1.01769e-06 3.42602 9.85645e-07 3.42674 9.53334e-07 3.42741 9.21224e-07 3.42801 8.89804e-07 3.42855 8.59423e-07 3.42904 8.30401e-07 3.42948 8.02998e-07 3.42987 7.77376e-07 3.43021 7.53653e-07 3.43051 7.31858e-07 3.43077 7.12043e-07 3.431 6.94177e-07 3.43119 6.78199e-07 3.43136 6.64008e-07 3.4315 6.51509e-07 3.43162 6.40555e-07 3.43173 6.31031e-07 3.43181 6.22838e-07 3.43189 6.1581e-07 3.43195 6.09834e-07 3.432 6.04798e-07 3.43204 6.00572e-07 3.43208 5.97047e-07 3.43211 5.94147e-07 3.43213 5.91766e-07 3.43215 5.89847e-07 3.43217 5.88294e-07 3.43219 5.87041e-07 3.4322 5.86037e-07 3.43222 5.85271e-07 3.43223 5.84685e-07 3.43224 5.84239e-07 3.43225 5.83914e-07 3.43226 5.83686e-07 3.43228 5.83521e-07 3.43229 5.83392e-07 3.4323 5.83352e-07 3.43231 5.83335e-07 3.43232 5.8335e-07 3.43233 5.83374e-07 3.43235 5.83403e-07 3.43236 5.83426e-07 3.43237 5.83475e-07 3.43239 5.83501e-07 3.4324 5.83521e-07 3.43241 5.83514e-07 3.43243 5.83499e-07 3.43244 5.83494e-07 3.43246 5.83444e-07 3.43247 5.8339e-07 3.43249 5.83288e-07 3.4325 5.83186e-07 3.43252 5.83072e-07 3.43253 5.82899e-07 3.43255 5.82728e-07 3.43256 5.82526e-07 3.43258 5.82257e-07 3.43259 5.81989e-07 3.4326 5.81675e-07 3.43262 5.81371e-07 3.43263 5.81067e-07 3.43264 5.80671e-07 3.43265 5.80327e-07 3.43266 5.79879e-07 3.43267 5.79515e-07 3.43268 5.7909e-07 3.43269 5.78662e-07 3.4327 5.78186e-07 3.4327 5.77789e-07 3.43271 5.77291e-07 3.43271 5.76922e-07 3.43272 5.76423e-07 3.43272 5.76087e-07 3.43272 5.75679e-07 3.43272 5.75275e-07 3.43272 5.75021e-07 3.43272 5.74557e-07 3.43272 5.74119e-07 3.43272 5.74259e-07 3.43271 5.73957e-07 3.43271 5.73878e-07 3.43271 5.73862e-07 3.4327 5.73826e-07 3.4327 5.74129e-07 3.43269 5.74064e-07 3.43269 5.74255e-07 3.43268 5.75561e-07 3.43268 5.76372e-07 3.43267 5.76778e-07 3.43267 5.77626e-07 3.43266 5.79041e-07 3.43266 5.8046e-07 3.43266 5.82153e-07 3.43265 5.8419e-07 3.43265 5.86433e-07 3.43265 5.88972e-07 3.43264 5.91926e-07 3.43264 5.94815e-07 3.43263 5.98522e-07 3.43262 6.0192e-07 3.43261 6.0596e-07 3.43258 6.10115e-07 3.43256 6.13674e-07 3.43252 6.1792e-07 3.43247 6.2138e-07 3.4324 6.25243e-07 3.43231 6.27842e-07 3.43219 6.29479e-07 3.43204 6.31444e-07 3.43186 6.30404e-07 3.43162 6.27981e-07 3.43134 6.24792e-07 3.43099 6.18689e-07 3.43057 6.1301e-07 3.43007 6.0333e-07 3.42949 5.93309e-07 3.42882 5.81887e-07 3.42805 5.69578e-07 3.42718 5.5694e-07 3.42621 5.41078e-07 3.42512 5.30212e-07 3.42393 5.15493e-07 3.42263 5.07e-07 3.42123 4.99613e-07 3.41973 4.95365e-07 3.41814 4.93734e-07 3.41648 4.96404e-07 3.41475 5.01761e-07 3.41297 4.83898e-07 3.41116 5.42655e-07 3.40932 6.89832e-07 3.40747 6.20539e-07 3.40564 6.49439e-07 3.40383 7.05722e-07 3.40206 7.60632e-07 3.40034 8.18192e-07 3.39869 8.79852e-07 3.39712 9.44661e-07 3.39563 1.0113e-06 3.39423 1.07827e-06 3.39292 1.14405e-06 3.39169 1.20723e-06 3.39054 1.26656e-06 3.38946 1.32097e-06 3.38844 1.36964e-06 3.38748 1.41187e-06 3.38655 1.44712e-06 3.38564 1.47503e-06 3.38474 1.4955e-06 3.38383 1.50847e-06 3.38291 1.51408e-06 3.38194 1.51265e-06 3.38093 1.50455e-06 3.37985 1.49032e-06 3.37871 1.47055e-06 3.37748 1.44585e-06 3.37616 1.41692e-06 3.37474 1.38444e-06 3.37322 1.34913e-06 3.37159 1.31158e-06 3.36985 1.27246e-06 3.368 1.23232e-06 3.36603 1.19166e-06 3.36396 1.1509e-06 3.36177 1.11044e-06 3.35947 1.07056e-06 3.35707 1.03149e-06 3.35456 9.93366e-07 3.35196 9.56388e-07 3.34926 9.20558e-07 3.34646 8.85875e-07 3.34358 8.52344e-07 3.3406 8.19888e-07 3.33755 7.88405e-07 3.33442 7.5782e-07 3.33121 7.27996e-07 3.32792 6.98838e-07 3.32457 6.7017e-07 3.32114 6.41892e-07 3.31765 6.13891e-07 3.31409 5.86027e-07 3.31046 5.58186e-07 3.30678 5.30283e-07 3.30303 5.02198e-07 3.29922 4.73856e-07 3.29535 4.45163e-07 3.29143 4.1607e-07 3.28744 3.86492e-07 3.2834 3.56385e-07 3.27929 3.25705e-07 3.27513 2.94418e-07 3.27092 2.62493e-07 3.26664 2.29891e-07 3.26231 1.9658e-07 3.25793 1.62543e-07 3.25349 1.27784e-07 3.24899 9.22319e-08 3.24443 5.59194e-08 3.23982 1.88866e-08 3.23515 -1.89393e-08 3.23043 -5.75692e-08 3.22565 -9.70558e-08 3.22082 -1.37314e-07 3.21592 -1.78366e-07 3.21098 -2.20252e-07 3.20598 -2.62924e-07 3.20092 -3.06427e-07 3.1958 -3.50754e-07 3.19063 -3.95892e-07 3.18541 -4.41862e-07 3.18013 -4.88657e-07 3.17479 -5.36284e-07 3.1694 -5.84731e-07 3.16396 -6.34007e-07 3.15845 -6.84113e-07 3.1529 -7.35057e-07 3.14729 -7.8684e-07 3.14162 -8.39445e-07 3.1359 -8.92893e-07 3.13012 -9.47179e-07 3.12429 -1.00231e-06 3.1184 -1.05826e-06 3.11246 -1.11507e-06 3.10647 -1.1727e-06 3.10042 -1.23118e-06 3.09432 -1.29051e-06 3.08816 -1.35068e-06 3.08195 -1.41169e-06 3.07568 -1.47355e-06 3.06936 -1.53625e-06 3.06299 -1.59977e-06 3.05656 -1.66416e-06 3.05008 -1.72938e-06 3.04355 -1.79545e-06 3.03697 -1.86235e-06 3.03033 -1.93013e-06 3.02364 -1.99874e-06 3.01689 -2.06819e-06 3.0101 -2.13848e-06 3.00325 -2.20961e-06 2.99635 -2.28159e-06 2.98939 -2.35443e-06 2.98239 -2.42811e-06 2.97533 -2.50262e-06 2.96823 -2.57799e-06 2.96107 -2.65418e-06 2.95386 -2.73123e-06 2.9466 -2.80911e-06 2.93929 -2.88783e-06 2.93193 -2.9674e-06 2.92451 -3.04781e-06 2.91705 -3.12905e-06 2.90954 -3.21113e-06 2.90198 -3.29405e-06 2.89437 -3.37778e-06 2.88671 -3.46239e-06 2.879 -3.54782e-06 2.87124 -3.63405e-06 2.86344 -3.72115e-06 2.85558 -3.80905e-06 2.84768 -3.8978e-06 2.83973 -3.98736e-06 2.83173 -4.07775e-06 2.82369 -4.16896e-06 2.8156 -4.261e-06 2.80746 -4.35386e-06 2.79928 -4.44752e-06 2.79105 -4.54203e-06 2.78277 -4.63732e-06 2.77445 -4.73345e-06 2.76608 -4.83038e-06 2.75767 -4.92809e-06 2.74921 -5.02664e-06 2.74071 -5.12598e-06 2.73216 -5.22613e-06 2.72357 -5.32707e-06 2.71494 -5.42881e-06 2.70626 -5.53134e-06 2.69754 -5.63467e-06 2.68878 -5.73879e-06 2.67997 -5.84369e-06 2.67112 -5.94937e-06 2.66223 -6.05584e-06 2.6533 -6.16306e-06 2.64433 -6.27108e-06 2.63532 -6.37988e-06 2.62627 -6.48942e-06 2.61717 -6.59974e-06 2.60804 -6.71083e-06 2.59887 -6.82266e-06 2.58966 -6.93525e-06 2.58041 -7.0486e-06 2.57112 -7.1627e-06 2.56179 -7.27753e-06 2.55243 -7.39312e-06 2.54303 -7.50943e-06 2.53359 -7.62646e-06 2.52411 -7.74424e-06 2.5146 -7.86274e-06 2.50505 -7.98197e-06 2.49547 -8.10192e-06 2.48585 -8.22257e-06 2.4762 -8.34391e-06 2.46651 -8.46599e-06 2.45679 -8.58876e-06 2.44703 -8.71222e-06 2.43724 -8.83638e-06 2.42742 -8.96122e-06 2.41757 -9.08675e-06 2.40768 -9.21295e-06 2.39777 -9.33983e-06 2.38782 -9.46737e-06 2.37784 -9.59559e-06 2.36783 -9.72445e-06 2.35779 -9.85398e-06 2.34772 -9.98413e-06 2.33762 -1.0115e-05 2.32749 -1.02464e-05 2.31734 -1.03785e-05 2.30715 -1.05112e-05 2.29694 -1.06446e-05 2.2867 -1.07785e-05 2.27644 -1.09131e-05 2.26614 -1.10483e-05 2.25583 -1.1184e-05 2.24548 -1.13204e-05 2.23512 -1.14574e-05 2.22472 -1.15949e-05 2.21431 -1.17331e-05 2.20387 -1.18718e-05 2.1934 -1.2011e-05 2.18292 -1.21509e-05 2.17241 -1.22912e-05 2.16188 -1.24322e-05 2.15132 -1.25737e-05 2.14075 -1.27157e-05 2.13016 -1.28582e-05 2.11954 -1.30013e-05 2.10891 -1.31449e-05 2.09826 -1.3289e-05 2.08758 -1.34336e-05 2.07689 -1.35787e-05 2.06619 -1.37243e-05 2.05546 -1.38704e-05 2.04472 -1.40169e-05 2.03396 -1.4164e-05 2.02319 -1.43115e-05 2.0124 -1.44594e-05 2.00159 -1.46078e-05 1.99077 -1.47567e-05 1.97994 -1.4906e-05 1.96909 -1.50557e-05 1.95823 -1.52059e-05 1.94736 -1.53565e-05 1.93647 -1.55075e-05 1.92558 -1.56588e-05 1.91467 -1.58106e-05 1.90375 -1.59628e-05 1.89282 -1.61154e-05 1.88188 -1.62683e-05 1.87093 -1.64216e-05 1.85997 -1.65753e-05 1.84901 -1.67293e-05 1.83803 -1.68837e-05 1.82705 -1.70384e-05 1.81606 -1.71935e-05 1.80507 -1.73488e-05 1.79407 -1.75045e-05 1.78306 -1.76605e-05 1.77205 -1.78168e-05 1.76103 -1.79734e-05 1.75001 -1.81302e-05 1.73899 -1.82874e-05 1.72796 -1.84448e-05 1.71694 -1.86025e-05 1.7059 -1.87604e-05 1.69487 -1.89186e-05 1.68384 -1.90771e-05 1.6728 -1.92357e-05 1.66177 -1.93946e-05 1.65073 -1.95537e-05 1.6397 -1.9713e-05 1.62867 -1.98725e-05 1.61764 -2.00322e-05 1.60661 -2.01922e-05 1.59558 -2.0352e-05 1.58456 -2.05127e-05 1.57354 -2.06722e-05 1.56253 -2.08344e-05 1.55152 -2.09922e-05 1.54051 -2.11577e-05 1.52952 -2.13117e-05 1.51852 -2.14822e-05 1.50754 -2.16315e-05 1.49656 -2.18065e-05 1.48559 -2.19535e-05 1.47462 -2.21291e-05 1.46367 -2.2277e-05 1.45272 -2.24519e-05 1.44179 -2.26004e-05 1.43086 -2.27752e-05 1.41995 -2.29236e-05 1.40905 -2.30838e-05 1.39815 -2.30114e-05 1.38727 -1.52134e-05 1.21521e-05 3.94528 -1.53798 4.04167 -0.463729 4.0725 -0.14884 4.08257 -0.0491226 4.08625 -0.0212772 4.08925 -0.02093 4.09377 -0.0304624 4.10109 -0.0466719 4.11238 -0.067904 4.12834 -0.0913629 4.14894 -0.113036 4.17324 -0.128214 4.19967 -0.132783 4.226 -0.125613 4.24886 -0.104166 4.26492 -0.0710078 4.2721 -0.029678 4.26933 0.0152254 4.25621 0.0620976 4.23426 0.102736 4.20577 0.136067 4.17259 0.159799 4.13682 0.172987 4.10069 0.175372 4.06619 0.16738 4.03486 0.151948 4.00775 0.131352 3.98536 0.108477 3.96765 0.0858256 3.9542 0.0652233 3.94436 0.0477122 3.93742 0.0336737 3.93268 0.0229745 3.92956 0.0151754 3.92755 0.00971911 3.92631 0.00604318 3.92556 0.00365214 3.92512 0.00214741 3.92487 0.00122965 3.92473 0.000686358 3.92465 0.000373793 3.92461 0.000198841 3.9246 0.000103469 3.92459 5.27887e-05 3.92458 2.65025e-05 3.92459 1.32134e-05 3.92459 6.6396e-06 3.92459 3.4505e-06 3.9246 1.94438e-06 3.92461 1.24686e-06 3.92462 9.31012e-07 3.92464 7.90597e-07 3.92465 7.29638e-07 3.92467 7.04023e-07 3.92468 6.93193e-07 3.9247 6.88891e-07 3.92472 6.8703e-07 3.92474 6.85664e-07 3.92475 6.84755e-07 3.92476 6.83037e-07 3.92477 6.80679e-07 3.92476 6.76978e-07 3.92474 6.67674e-07 3.92469 6.65691e-07 3.92463 6.57556e-07 3.92453 6.48093e-07 3.9244 6.37217e-07 3.92423 6.23481e-07 3.924 6.09191e-07 3.92373 5.92006e-07 3.92339 5.7331e-07 3.92299 5.53891e-07 3.92252 5.31876e-07 3.92197 5.10795e-07 3.92135 4.88302e-07 3.92065 4.66229e-07 3.91988 4.4639e-07 3.91904 4.26228e-07 3.91814 4.10661e-07 3.91718 3.97105e-07 3.91618 3.872e-07 3.91515 3.84051e-07 3.91411 3.83155e-07 3.91306 3.90608e-07 3.91203 4.03036e-07 3.91104 4.20718e-07 3.91011 4.47959e-07 3.90925 4.76982e-07 3.90848 5.15053e-07 3.90783 5.57379e-07 3.90729 6.01813e-07 3.90689 6.55045e-07 3.90663 7.0474e-07 3.90653 7.58909e-07 3.90658 8.21577e-07 3.90682 9.11758e-07 3.90721 9.41083e-07 3.90775 9.87018e-07 3.90843 1.03307e-06 3.90924 1.07392e-06 3.91016 1.10933e-06 3.91118 1.13876e-06 3.91228 1.16185e-06 3.91344 1.17851e-06 3.91466 1.1887e-06 3.9159 1.19243e-06 3.91717 1.19023e-06 3.91843 1.18234e-06 3.91967 1.16937e-06 3.92089 1.15189e-06 3.92207 1.13034e-06 3.9232 1.10574e-06 3.92428 1.07847e-06 3.9253 1.0494e-06 3.92625 1.01905e-06 3.92713 9.88031e-07 3.92794 9.56986e-07 3.92868 9.26338e-07 3.92935 8.96347e-07 3.92996 8.67764e-07 3.9305 8.40293e-07 3.93099 8.14832e-07 3.93141 7.90928e-07 3.93179 7.69021e-07 3.93212 7.4908e-07 3.9324 7.31069e-07 3.93265 7.14936e-07 3.93286 7.00812e-07 3.93305 6.8802e-07 3.93321 6.77473e-07 3.93334 6.67793e-07 3.93346 6.59913e-07 3.93356 6.52934e-07 3.93365 6.46834e-07 3.93373 6.41884e-07 3.93379 6.37312e-07 3.93385 6.33037e-07 3.9339 6.29363e-07 3.93393 6.24819e-07 3.93395 6.20999e-07 3.93396 6.15976e-07 3.93396 6.09311e-07 3.93392 5.97221e-07 3.93387 5.91879e-07 3.93378 5.82975e-07 3.93365 5.712e-07 3.93349 5.57673e-07 3.93327 5.43151e-07 3.933 5.2565e-07 3.93267 5.07613e-07 3.93228 4.875e-07 3.93182 4.65828e-07 3.93128 4.44707e-07 3.93066 4.21494e-07 3.92998 3.99896e-07 3.92921 3.78777e-07 3.92838 3.58315e-07 3.92748 3.42458e-07 3.92652 3.27093e-07 3.92551 3.17222e-07 3.92448 3.11922e-07 3.92342 3.09638e-07 3.92236 3.16729e-07 3.92131 3.26336e-07 3.9203 3.43862e-07 3.91933 3.68397e-07 3.91844 3.95899e-07 3.91763 4.33923e-07 3.91693 4.73092e-07 3.91634 5.18397e-07 3.91589 5.69277e-07 3.91558 6.18397e-07 3.91542 6.74866e-07 3.91541 7.26553e-07 3.91558 8.17455e-07 3.91592 8.65394e-07 3.9164 9.02403e-07 3.91702 9.49734e-07 3.91778 9.92131e-07 3.91865 1.02918e-06 3.91963 1.06041e-06 3.92069 1.08545e-06 3.92182 1.10409e-06 3.92301 1.11631e-06 3.92423 1.12217e-06 3.92547 1.12198e-06 3.92672 1.11607e-06 3.92796 1.10495e-06 3.92917 1.08913e-06 3.93035 1.06927e-06 3.93149 1.04603e-06 3.93258 1.02004e-06 3.9336 9.9199e-07 3.93457 9.62528e-07 3.93546 9.32211e-07 3.93629 9.01648e-07 3.93705 8.71277e-07 3.93775 8.41561e-07 3.93837 8.12825e-07 3.93894 7.85375e-07 3.93944 7.59459e-07 3.93989 7.35218e-07 3.94028 7.12784e-07 3.94062 6.92172e-07 3.94092 6.73434e-07 3.94118 6.5654e-07 3.94141 6.41425e-07 3.9416 6.28006e-07 3.94176 6.16185e-07 3.9419 6.05828e-07 3.94202 5.96824e-07 3.94212 5.89072e-07 3.9422 5.82425e-07 3.94227 5.76776e-07 3.94233 5.72014e-07 3.94238 5.6802e-07 3.94242 5.64683e-07 3.94245 5.61943e-07 3.94248 5.59689e-07 3.94251 5.57878e-07 3.94253 5.56409e-07 3.94255 5.55224e-07 3.94257 5.54273e-07 3.94258 5.5355e-07 3.9426 5.52997e-07 3.94261 5.52574e-07 3.94262 5.52269e-07 3.94264 5.52049e-07 3.94265 5.51899e-07 3.94266 5.51768e-07 3.94268 5.5173e-07 3.94269 5.5172e-07 3.9427 5.51728e-07 3.94272 5.5175e-07 3.94273 5.51779e-07 3.94274 5.51801e-07 3.94276 5.51845e-07 3.94278 5.5187e-07 3.94279 5.51892e-07 3.94281 5.51888e-07 3.94282 5.51874e-07 3.94284 5.51869e-07 3.94286 5.5182e-07 3.94287 5.51768e-07 3.94289 5.51677e-07 3.94291 5.51579e-07 3.94293 5.51467e-07 3.94294 5.51307e-07 3.94296 5.51145e-07 3.94298 5.50953e-07 3.94299 5.50694e-07 3.94301 5.50441e-07 3.94303 5.50147e-07 3.94304 5.4986e-07 3.94305 5.49575e-07 3.94307 5.49197e-07 3.94308 5.48869e-07 3.94309 5.48451e-07 3.9431 5.48101e-07 3.94311 5.47703e-07 3.94312 5.47298e-07 3.94313 5.46846e-07 3.94314 5.46471e-07 3.94315 5.46004e-07 3.94315 5.45647e-07 3.94315 5.45181e-07 3.94316 5.44857e-07 3.94316 5.44474e-07 3.94316 5.44093e-07 3.94316 5.43851e-07 3.94316 5.43416e-07 3.94316 5.43007e-07 3.94316 5.4313e-07 3.94315 5.42844e-07 3.94315 5.42775e-07 3.94314 5.42758e-07 3.94314 5.42721e-07 3.94313 5.43004e-07 3.94313 5.42955e-07 3.94312 5.4313e-07 3.94312 5.44367e-07 3.94311 5.45119e-07 3.94311 5.45519e-07 3.9431 5.4633e-07 3.9431 5.4765e-07 3.94309 5.49003e-07 3.94309 5.50609e-07 3.94308 5.52529e-07 3.94308 5.54662e-07 3.94308 5.57056e-07 3.94307 5.5985e-07 3.94306 5.62593e-07 3.94306 5.66081e-07 3.94304 5.6932e-07 3.94303 5.73129e-07 3.943 5.77062e-07 3.94297 5.80445e-07 3.94293 5.84432e-07 3.94287 5.87735e-07 3.94279 5.9137e-07 3.94269 5.93831e-07 3.94255 5.95394e-07 3.94238 5.97213e-07 3.94217 5.96264e-07 3.9419 5.93965e-07 3.94157 5.90915e-07 3.94117 5.85119e-07 3.94069 5.79776e-07 3.94012 5.70667e-07 3.93945 5.61125e-07 3.93868 5.50338e-07 3.9378 5.38696e-07 3.9368 5.26707e-07 3.93568 5.11557e-07 3.93443 5.01327e-07 3.93306 4.87587e-07 3.93157 4.79391e-07 3.92996 4.72424e-07 3.92824 4.68378e-07 3.92642 4.66856e-07 3.92451 4.69369e-07 3.92252 4.74264e-07 3.92047 4.58236e-07 3.91839 5.1382e-07 3.91628 6.50911e-07 3.91416 5.87968e-07 3.91205 6.14257e-07 3.90997 6.67414e-07 3.90794 7.19388e-07 3.90597 7.73843e-07 3.90407 8.32176e-07 3.90227 8.93489e-07 3.90056 9.56526e-07 3.89895 1.01987e-06 3.89744 1.0821e-06 3.89603 1.14186e-06 3.89471 1.19798e-06 3.89347 1.24945e-06 3.8923 1.29547e-06 3.89119 1.33541e-06 3.89012 1.36875e-06 3.88908 1.39514e-06 3.88805 1.4145e-06 3.887 1.42676e-06 3.88594 1.43207e-06 3.88483 1.4307e-06 3.88367 1.42304e-06 3.88243 1.40957e-06 3.88112 1.39086e-06 3.8797 1.36749e-06 3.87819 1.34012e-06 3.87656 1.30939e-06 3.87481 1.276e-06 3.87294 1.24048e-06 3.87094 1.20348e-06 3.86881 1.16551e-06 3.86656 1.12704e-06 3.86417 1.08849e-06 3.86166 1.05022e-06 3.85902 1.01251e-06 3.85626 9.75558e-07 3.85338 9.39505e-07 3.85039 9.04531e-07 3.84728 8.70637e-07 3.84407 8.37837e-07 3.84076 8.06122e-07 3.83735 7.75428e-07 3.83384 7.45655e-07 3.83024 7.16729e-07 3.82655 6.88527e-07 3.82278 6.60947e-07 3.81892 6.33834e-07 3.81499 6.0709e-07 3.81097 5.80605e-07 3.80689 5.54252e-07 3.80272 5.27919e-07 3.79849 5.01532e-07 3.79419 4.74969e-07 3.78981 4.48166e-07 3.78537 4.21027e-07 3.78086 3.93516e-07 3.77628 3.65536e-07 3.77163 3.37066e-07 3.76692 3.08046e-07 3.76214 2.78456e-07 3.7573 2.48256e-07 3.75239 2.17428e-07 3.74742 1.85918e-07 3.74238 1.53728e-07 3.73727 1.20845e-07 3.73211 8.7216e-08 3.72687 5.28526e-08 3.72158 1.78607e-08 3.71621 -1.79052e-08 3.71079 -5.44396e-08 3.7053 -9.17898e-08 3.69975 -1.29874e-07 3.69413 -1.68696e-07 3.68845 -2.08314e-07 3.6827 -2.48675e-07 3.67689 -2.89822e-07 3.67101 -3.31737e-07 3.66508 -3.74438e-07 3.65907 -4.17916e-07 3.65301 -4.62173e-07 3.64688 -5.07216e-07 3.64069 -5.53034e-07 3.63443 -5.99645e-07 3.62811 -6.47035e-07 3.62173 -6.95219e-07 3.61528 -7.44192e-07 3.60877 -7.93949e-07 3.6022 -8.44497e-07 3.59556 -8.9584e-07 3.58887 -9.47983e-07 3.58211 -1.0009e-06 3.57528 -1.05463e-06 3.5684 -1.10914e-06 3.56145 -1.16446e-06 3.55444 -1.22057e-06 3.54736 -1.27747e-06 3.54023 -1.33517e-06 3.53303 -1.39369e-06 3.52577 -1.45298e-06 3.51845 -1.51306e-06 3.51107 -1.57396e-06 3.50363 -1.63565e-06 3.49612 -1.69814e-06 3.48856 -1.76141e-06 3.48093 -1.82551e-06 3.47325 -1.89041e-06 3.4655 -1.95609e-06 3.45769 -2.02257e-06 3.44983 -2.08985e-06 3.4419 -2.15793e-06 3.43391 -2.22682e-06 3.42587 -2.29651e-06 3.41776 -2.36697e-06 3.4096 -2.43827e-06 3.40137 -2.51032e-06 3.39309 -2.58319e-06 3.38475 -2.65685e-06 3.37635 -2.73131e-06 3.3679 -2.80657e-06 3.35938 -2.88262e-06 3.35081 -2.95945e-06 3.34218 -3.03708e-06 3.3335 -3.1155e-06 3.32476 -3.1947e-06 3.31596 -3.27472e-06 3.3071 -3.35552e-06 3.29819 -3.43708e-06 3.28923 -3.51945e-06 3.2802 -3.6026e-06 3.27113 -3.68653e-06 3.262 -3.77124e-06 3.25281 -3.85673e-06 3.24357 -3.943e-06 3.23427 -4.03005e-06 3.22493 -4.11787e-06 3.21552 -4.20646e-06 3.20607 -4.29584e-06 3.19656 -4.38597e-06 3.187 -4.47689e-06 3.17739 -4.56856e-06 3.16773 -4.66098e-06 3.15801 -4.75419e-06 3.14825 -4.84815e-06 3.13843 -4.94286e-06 3.12856 -5.03834e-06 3.11864 -5.13456e-06 3.10868 -5.23154e-06 3.09866 -5.32926e-06 3.08859 -5.42774e-06 3.07848 -5.52695e-06 3.06832 -5.6269e-06 3.0581 -5.7276e-06 3.04785 -5.82901e-06 3.03754 -5.93117e-06 3.02719 -6.03408e-06 3.01679 -6.13768e-06 3.00634 -6.24203e-06 2.99585 -6.3471e-06 2.98532 -6.45286e-06 2.97474 -6.55935e-06 2.96411 -6.66655e-06 2.95344 -6.77447e-06 2.94273 -6.88307e-06 2.93197 -6.99239e-06 2.92117 -7.10241e-06 2.91033 -7.21309e-06 2.89944 -7.32449e-06 2.88852 -7.43656e-06 2.87755 -7.54933e-06 2.86654 -7.66278e-06 2.85549 -7.77689e-06 2.8444 -7.89165e-06 2.83328 -8.00712e-06 2.82211 -8.12323e-06 2.8109 -8.24e-06 2.79966 -8.35743e-06 2.78838 -8.47551e-06 2.77706 -8.59423e-06 2.7657 -8.71359e-06 2.75431 -8.8336e-06 2.74288 -8.95422e-06 2.73142 -9.07549e-06 2.71992 -9.19737e-06 2.70839 -9.31987e-06 2.69682 -9.44298e-06 2.68522 -9.56671e-06 2.67359 -9.69104e-06 2.66192 -9.81597e-06 2.65022 -9.94149e-06 2.63849 -1.00676e-05 2.62673 -1.01943e-05 2.61494 -1.03216e-05 2.60312 -1.04494e-05 2.59126 -1.05778e-05 2.57938 -1.07068e-05 2.56747 -1.08364e-05 2.55554 -1.09665e-05 2.54357 -1.10971e-05 2.53158 -1.12283e-05 2.51956 -1.136e-05 2.50751 -1.14923e-05 2.49544 -1.1625e-05 2.48334 -1.17583e-05 2.47122 -1.18921e-05 2.45908 -1.20264e-05 2.44691 -1.21613e-05 2.43471 -1.22966e-05 2.4225 -1.24324e-05 2.41026 -1.25687e-05 2.398 -1.27054e-05 2.38573 -1.28427e-05 2.37343 -1.29804e-05 2.36111 -1.31186e-05 2.34877 -1.32572e-05 2.33641 -1.33962e-05 2.32403 -1.35357e-05 2.31164 -1.36757e-05 2.29923 -1.38161e-05 2.2868 -1.39568e-05 2.27435 -1.40981e-05 2.26189 -1.42397e-05 2.24942 -1.43817e-05 2.23693 -1.45241e-05 2.22442 -1.46669e-05 2.21191 -1.48101e-05 2.19938 -1.49537e-05 2.18683 -1.50976e-05 2.17428 -1.52419e-05 2.16171 -1.53866e-05 2.14913 -1.55316e-05 2.13655 -1.56769e-05 2.12395 -1.58225e-05 2.11135 -1.59686e-05 2.09873 -1.61149e-05 2.08611 -1.62615e-05 2.07348 -1.64085e-05 2.06084 -1.65557e-05 2.0482 -1.67032e-05 2.03555 -1.68511e-05 2.0229 -1.69992e-05 2.01024 -1.71475e-05 1.99758 -1.72962e-05 1.98491 -1.74451e-05 1.97224 -1.75942e-05 1.95957 -1.77436e-05 1.9469 -1.78932e-05 1.93422 -1.8043e-05 1.92155 -1.81931e-05 1.90887 -1.83434e-05 1.89619 -1.84939e-05 1.88352 -1.86445e-05 1.87085 -1.87954e-05 1.85818 -1.89464e-05 1.84551 -1.90977e-05 1.83284 -1.92489e-05 1.82018 -1.94009e-05 1.80753 -1.95517e-05 1.79487 -1.97051e-05 1.78223 -1.98544e-05 1.76959 -2.00108e-05 1.75695 -2.01567e-05 1.74432 -2.03177e-05 1.73171 -2.04593e-05 1.71909 -2.06242e-05 1.70649 -2.07639e-05 1.6939 -2.09293e-05 1.68132 -2.10699e-05 1.66874 -2.12346e-05 1.65618 -2.13756e-05 1.64363 -2.15404e-05 1.63109 -2.16811e-05 1.61857 -2.18282e-05 1.60606 -2.16989e-05 1.59356 -1.39709e-05 1.10013e-05 17.0818 -2.82653 17.4788 -0.86078 17.6202 -0.290165 17.6757 -0.104708 17.7016 -0.0471726 17.7267 -0.0459351 17.7533 -0.0569801 17.7891 -0.0824777 17.839 -0.117783 17.9057 -0.158097 17.989 -0.196288 18.0846 -0.223771 18.1855 -0.232994 18.2824 -0.219267 18.3633 -0.181086 18.4161 -0.121805 18.4351 -0.0480227 18.4134 0.0365433 18.3537 0.118443 18.2618 0.190845 18.1471 0.248739 18.0178 0.288363 17.8822 0.308512 17.7482 0.309542 17.6226 0.293561 17.5102 0.264696 17.4139 0.227749 17.335 0.187505 17.2727 0.148093 17.2255 0.112443 17.1909 0.0822699 17.1665 0.0581058 17.1498 0.0396864 17.1388 0.0262505 17.1316 0.0168385 17.1272 0.0104872 17.1245 0.00634859 17.123 0.00373922 17.1221 0.00214469 17.1216 0.00119895 17.1213 0.00065381 17.1211 0.000348103 17.1211 0.000181137 17.1211 9.2243e-05 17.121 4.60505e-05 17.121 2.2654e-05 17.1211 1.10556e-05 17.1211 5.42106e-06 17.1211 2.75344e-06 17.1212 1.51584e-06 17.1212 9.53633e-07 17.1213 7.03192e-07 17.1213 5.93959e-07 17.1214 5.47455e-07 17.1215 5.27872e-07 17.1216 5.19855e-07 17.1216 5.16528e-07 17.1217 5.14774e-07 17.1218 5.13731e-07 17.1218 5.12347e-07 17.1218 5.10649e-07 17.1218 5.07439e-07 17.1217 5.00963e-07 17.1215 4.99222e-07 17.1212 4.93209e-07 17.1208 4.8607e-07 17.1202 4.77889e-07 17.1195 4.67652e-07 17.1185 4.56831e-07 17.1173 4.44033e-07 17.1158 4.29991e-07 17.1141 4.15375e-07 17.112 3.98951e-07 17.1096 3.83025e-07 17.1069 3.66248e-07 17.1039 3.49691e-07 17.1005 3.34726e-07 17.0969 3.19722e-07 17.0929 3.0792e-07 17.0888 2.97835e-07 17.0844 2.90448e-07 17.0799 2.87954e-07 17.0753 2.87421e-07 17.0708 2.92886e-07 17.0663 3.02269e-07 17.062 3.15629e-07 17.0579 3.35865e-07 17.0542 3.57802e-07 17.0508 3.86251e-07 17.0479 4.18002e-07 17.0456 4.51512e-07 17.0439 4.91151e-07 17.0427 5.28706e-07 17.0423 5.68486e-07 17.0425 6.17647e-07 17.0435 6.82911e-07 17.0453 7.05886e-07 17.0476 7.4036e-07 17.0506 7.74808e-07 17.0541 8.05457e-07 17.0581 8.32011e-07 17.0626 8.54076e-07 17.0674 8.71401e-07 17.0724 8.83891e-07 17.0777 8.91527e-07 17.0832 8.94336e-07 17.0887 8.9267e-07 17.0942 8.86769e-07 17.0996 8.77028e-07 17.1049 8.63908e-07 17.1101 8.4776e-07 17.115 8.29292e-07 17.1197 8.08856e-07 17.1242 7.87038e-07 17.1283 7.64273e-07 17.1321 7.41023e-07 17.1357 7.17727e-07 17.1389 6.94752e-07 17.1419 6.72263e-07 17.1445 6.50804e-07 17.1469 6.30229e-07 17.149 6.11104e-07 17.1508 5.93197e-07 17.1525 5.76765e-07 17.1539 5.61794e-07 17.1552 5.48305e-07 17.1562 5.36195e-07 17.1572 5.25605e-07 17.158 5.16036e-07 17.1587 5.08075e-07 17.1593 5.00865e-07 17.1598 4.94921e-07 17.1602 4.89697e-07 17.1606 4.85146e-07 17.1609 4.81382e-07 17.1612 4.78007e-07 17.1615 4.74774e-07 17.1617 4.72007e-07 17.1618 4.68643e-07 17.1619 4.65706e-07 17.162 4.62095e-07 17.1619 4.56771e-07 17.1618 4.47988e-07 17.1615 4.43984e-07 17.1612 4.37181e-07 17.1606 4.28417e-07 17.1599 4.18275e-07 17.1589 4.07317e-07 17.1578 3.94275e-07 17.1563 3.80665e-07 17.1546 3.65629e-07 17.1526 3.49406e-07 17.1502 3.33464e-07 17.1476 3.1616e-07 17.1446 2.99874e-07 17.1412 2.84064e-07 17.1376 2.68801e-07 17.1337 2.56752e-07 17.1295 2.45363e-07 17.1251 2.37883e-07 17.1206 2.33907e-07 17.116 2.32303e-07 17.1113 2.37412e-07 17.1068 2.44834e-07 17.1023 2.57894e-07 17.0981 2.76249e-07 17.0942 2.97013e-07 17.0907 3.25319e-07 17.0876 3.54889e-07 17.0851 3.88846e-07 17.0831 4.26883e-07 17.0818 4.63951e-07 17.0811 5.05834e-07 17.081 5.4501e-07 17.0818 6.14006e-07 17.0832 6.4812e-07 17.0853 6.7705e-07 17.0881 7.12327e-07 17.0914 7.44111e-07 17.0952 7.71895e-07 17.0994 7.95318e-07 17.1041 8.14096e-07 17.109 8.28078e-07 17.1142 8.37235e-07 17.1195 8.41635e-07 17.1249 8.41486e-07 17.1304 8.37055e-07 17.1358 8.28711e-07 17.1411 8.1685e-07 17.1462 8.01955e-07 17.1512 7.84519e-07 17.1559 7.65026e-07 17.1604 7.43988e-07 17.1646 7.21892e-07 17.1685 6.99152e-07 17.1721 6.76232e-07 17.1754 6.53453e-07 17.1785 6.31165e-07 17.1812 6.09614e-07 17.1837 5.89027e-07 17.1859 5.69588e-07 17.1878 5.51406e-07 17.1895 5.34581e-07 17.191 5.19125e-07 17.1923 5.05071e-07 17.1935 4.92402e-07 17.1944 4.81064e-07 17.1953 4.71e-07 17.196 4.62135e-07 17.1966 4.5437e-07 17.1971 4.47617e-07 17.1975 4.41802e-07 17.1979 4.36817e-07 17.1982 4.3258e-07 17.1985 4.2901e-07 17.1987 4.26014e-07 17.1989 4.23513e-07 17.199 4.21453e-07 17.1991 4.19769e-07 17.1992 4.18408e-07 17.1993 4.17307e-07 17.1994 4.16417e-07 17.1995 4.15705e-07 17.1996 4.15163e-07 17.1996 4.14748e-07 17.1997 4.14432e-07 17.1997 4.14201e-07 17.1998 4.14037e-07 17.1999 4.13922e-07 17.1999 4.13829e-07 17.2 4.13795e-07 17.2 4.13792e-07 17.2001 4.13796e-07 17.2001 4.13812e-07 17.2002 4.13834e-07 17.2003 4.13852e-07 17.2003 4.13885e-07 17.2004 4.13906e-07 17.2005 4.13916e-07 17.2005 4.1392e-07 17.2006 4.13908e-07 17.2007 4.139e-07 17.2008 4.13866e-07 17.2008 4.13822e-07 17.2009 4.13761e-07 17.201 4.1369e-07 17.2011 4.136e-07 17.2011 4.13482e-07 17.2012 4.1336e-07 17.2013 4.13212e-07 17.2014 4.13026e-07 17.2014 4.12829e-07 17.2015 4.12616e-07 17.2016 4.12396e-07 17.2016 4.12182e-07 17.2017 4.119e-07 17.2017 4.11646e-07 17.2018 4.11344e-07 17.2018 4.1107e-07 17.2019 4.10776e-07 17.2019 4.10474e-07 17.202 4.10137e-07 17.202 4.09852e-07 17.202 4.09508e-07 17.202 4.09227e-07 17.2021 4.08895e-07 17.2021 4.08636e-07 17.2021 4.08354e-07 17.2021 4.08071e-07 17.2021 4.0789e-07 17.2021 4.07554e-07 17.2021 4.07273e-07 17.2021 4.07331e-07 17.202 4.07132e-07 17.202 4.07078e-07 17.202 4.07066e-07 17.202 4.07041e-07 17.202 4.07241e-07 17.2019 4.07234e-07 17.2019 4.07353e-07 17.2019 4.08275e-07 17.2019 4.08816e-07 17.2018 4.09148e-07 17.2018 4.09759e-07 17.2018 4.10724e-07 17.2018 4.11763e-07 17.2018 4.12961e-07 17.2017 4.14384e-07 17.2017 4.16009e-07 17.2017 4.1778e-07 17.2017 4.19889e-07 17.2017 4.21961e-07 17.2016 4.24538e-07 17.2016 4.27014e-07 17.2015 4.29833e-07 17.2014 4.32789e-07 17.2013 4.35362e-07 17.2011 4.38289e-07 17.2008 4.40833e-07 17.2005 4.4351e-07 17.2 4.45372e-07 17.1994 4.46581e-07 17.1987 4.47848e-07 17.1978 4.47225e-07 17.1966 4.45491e-07 17.1951 4.43122e-07 17.1934 4.38673e-07 17.1913 4.34875e-07 17.1888 4.28128e-07 17.1859 4.20866e-07 17.1826 4.12817e-07 17.1787 4.04115e-07 17.1743 3.94929e-07 17.1694 3.8343e-07 17.164 3.75831e-07 17.158 3.65969e-07 17.1515 3.59483e-07 17.1445 3.54315e-07 17.137 3.51222e-07 17.129 3.50125e-07 17.1207 3.51962e-07 17.112 3.55201e-07 17.1031 3.45221e-07 17.094 3.86422e-07 17.0848 4.83702e-07 17.0756 4.43407e-07 17.0664 4.60882e-07 17.0573 5.00479e-07 17.0484 5.39522e-07 17.0398 5.80378e-07 17.0316 6.24131e-07 17.0237 6.70117e-07 17.0162 7.17399e-07 17.0092 7.6491e-07 17.0026 8.11574e-07 16.9965 8.56402e-07 16.9907 8.9849e-07 16.9853 9.3709e-07 16.9802 9.71604e-07 16.9754 1.00156e-06 16.9707 1.02656e-06 16.9662 1.04636e-06 16.9616 1.06087e-06 16.9571 1.07007e-06 16.9524 1.07405e-06 16.9476 1.07302e-06 16.9425 1.06728e-06 16.9372 1.05717e-06 16.9314 1.04313e-06 16.9253 1.02561e-06 16.9186 1.00508e-06 16.9115 9.82032e-07 16.9039 9.56984e-07 16.8957 9.30348e-07 16.887 9.02593e-07 16.8777 8.74114e-07 16.8679 8.45264e-07 16.8575 8.16355e-07 16.8465 7.87651e-07 16.835 7.59366e-07 16.823 7.31653e-07 16.8104 7.04616e-07 16.7974 6.78382e-07 16.7838 6.52961e-07 16.7698 6.28363e-07 16.7554 6.04575e-07 16.7405 5.81554e-07 16.7252 5.5923e-07 16.7095 5.37533e-07 16.6934 5.16384e-07 16.6769 4.95697e-07 16.6601 4.75367e-07 16.6429 4.55301e-07 16.6254 4.35439e-07 16.6076 4.15676e-07 16.5894 3.95929e-07 16.571 3.76133e-07 16.5522 3.56217e-07 16.5331 3.36111e-07 16.5137 3.15757e-07 16.494 2.95124e-07 16.474 2.7414e-07 16.4538 2.52788e-07 16.4332 2.31024e-07 16.4124 2.08832e-07 16.3913 1.86181e-07 16.3698 1.63063e-07 16.3481 1.39436e-07 16.3262 1.15301e-07 16.3039 9.0653e-08 16.2814 6.54759e-08 16.2585 3.98627e-08 16.2354 1.32204e-08 16.212 -1.35351e-08 16.1884 -4.08227e-08 16.1644 -6.8897e-08 16.1402 -9.74392e-08 16.1157 -1.26554e-07 16.0909 -1.56258e-07 16.0658 -1.86531e-07 16.0405 -2.17387e-07 16.0148 -2.48826e-07 15.9889 -2.80847e-07 15.9628 -3.13458e-07 15.9363 -3.46648e-07 15.9096 -3.80428e-07 15.8825 -4.14796e-07 15.8552 -4.49746e-07 15.8277 -4.85294e-07 15.7998 -5.21428e-07 15.7717 -5.58159e-07 15.7433 -5.9548e-07 15.7146 -6.33388e-07 15.6857 -6.71899e-07 15.6565 -7.11002e-07 15.627 -7.50691e-07 15.5972 -7.90993e-07 15.5672 -8.31867e-07 15.5369 -8.73359e-07 15.5063 -9.15441e-07 15.4754 -9.58119e-07 15.4443 -1.0014e-06 15.4129 -1.04528e-06 15.3812 -1.08975e-06 15.3493 -1.13481e-06 15.3171 -1.18048e-06 15.2846 -1.22676e-06 15.2519 -1.27362e-06 15.2189 -1.32108e-06 15.1856 -1.36915e-06 15.1521 -1.41782e-06 15.1183 -1.46708e-06 15.0842 -1.51694e-06 15.0499 -1.5674e-06 15.0153 -1.61846e-06 14.9805 -1.67013e-06 14.9454 -1.7224e-06 14.91 -1.77525e-06 14.8744 -1.82871e-06 14.8385 -1.88276e-06 14.8024 -1.93741e-06 14.766 -1.99266e-06 14.7294 -2.0485e-06 14.6925 -2.10494e-06 14.6554 -2.16198e-06 14.618 -2.2196e-06 14.5803 -2.27782e-06 14.5424 -2.33664e-06 14.5043 -2.39604e-06 14.4659 -2.45605e-06 14.4273 -2.51666e-06 14.3884 -2.57783e-06 14.3493 -2.63961e-06 14.3099 -2.70196e-06 14.2703 -2.76491e-06 14.2305 -2.82845e-06 14.1904 -2.89256e-06 14.1501 -2.95726e-06 14.1096 -3.02255e-06 14.0688 -3.08842e-06 14.0278 -3.15486e-06 13.9865 -3.2219e-06 13.945 -3.2895e-06 13.9033 -3.35768e-06 13.8614 -3.42644e-06 13.8192 -3.49576e-06 13.7769 -3.56565e-06 13.7343 -3.63613e-06 13.6914 -3.70716e-06 13.6484 -3.77877e-06 13.6051 -3.85094e-06 13.5616 -3.92367e-06 13.5179 -3.99696e-06 13.474 -4.07082e-06 13.4299 -4.14522e-06 13.3856 -4.22019e-06 13.341 -4.29571e-06 13.2963 -4.37177e-06 13.2513 -4.4484e-06 13.2061 -4.52557e-06 13.1608 -4.60328e-06 13.1152 -4.68154e-06 13.0694 -4.76034e-06 13.0235 -4.83966e-06 12.9773 -4.91953e-06 12.931 -4.99993e-06 12.8844 -5.08087e-06 12.8377 -5.16232e-06 12.7908 -5.24431e-06 12.7436 -5.32682e-06 12.6963 -5.40984e-06 12.6489 -5.49339e-06 12.6012 -5.57744e-06 12.5533 -5.66202e-06 12.5053 -5.7471e-06 12.4571 -5.83268e-06 12.4087 -5.91876e-06 12.3602 -6.00535e-06 12.3115 -6.09244e-06 12.2626 -6.18001e-06 12.2135 -6.26809e-06 12.1643 -6.35665e-06 12.115 -6.44569e-06 12.0654 -6.53521e-06 12.0157 -6.62521e-06 11.9659 -6.71568e-06 11.9158 -6.80663e-06 11.8657 -6.89804e-06 11.8154 -6.98992e-06 11.7649 -7.08225e-06 11.7143 -7.17505e-06 11.6636 -7.26829e-06 11.6127 -7.36199e-06 11.5616 -7.45613e-06 11.5105 -7.55072e-06 11.4591 -7.64574e-06 11.4077 -7.7412e-06 11.3561 -7.83708e-06 11.3044 -7.9334e-06 11.2526 -8.03014e-06 11.2006 -8.12728e-06 11.1486 -8.22485e-06 11.0964 -8.32284e-06 11.044 -8.42123e-06 10.9916 -8.52001e-06 10.939 -8.61921e-06 10.8864 -8.71878e-06 10.8336 -8.81875e-06 10.7807 -8.91912e-06 10.7277 -9.01985e-06 10.6747 -9.12096e-06 10.6215 -9.22244e-06 10.5682 -9.3243e-06 10.5148 -9.42653e-06 10.4613 -9.52909e-06 10.4078 -9.63203e-06 10.3541 -9.7353e-06 10.3004 -9.83893e-06 10.2465 -9.94289e-06 10.1926 -1.00472e-05 10.1386 -1.01518e-05 10.0845 -1.02568e-05 10.0304 -1.03621e-05 9.97618 -1.04676e-05 9.92189 -1.05736e-05 9.86753 -1.06798e-05 9.81311 -1.07863e-05 9.75862 -1.08931e-05 9.70407 -1.10002e-05 9.64946 -1.11076e-05 9.5948 -1.12153e-05 9.54008 -1.13232e-05 9.48531 -1.14314e-05 9.43049 -1.15399e-05 9.37563 -1.16487e-05 9.32072 -1.17577e-05 9.26576 -1.18669e-05 9.21077 -1.19764e-05 9.15574 -1.20862e-05 9.10068 -1.21961e-05 9.04558 -1.23064e-05 8.99045 -1.24168e-05 8.9353 -1.25274e-05 8.88012 -1.26383e-05 8.82491 -1.27494e-05 8.76969 -1.28607e-05 8.71445 -1.29721e-05 8.65919 -1.30838e-05 8.60392 -1.31957e-05 8.54864 -1.33077e-05 8.49336 -1.34199e-05 8.43806 -1.35323e-05 8.38276 -1.36448e-05 8.32747 -1.37575e-05 8.27217 -1.38704e-05 8.21688 -1.39834e-05 8.16159 -1.40965e-05 8.10632 -1.42098e-05 8.05105 -1.43233e-05 7.9958 -1.44367e-05 7.94057 -1.45506e-05 7.88535 -1.46639e-05 7.83015 -1.47787e-05 7.77498 -1.48911e-05 7.71984 -1.50077e-05 7.66472 -1.5118e-05 7.60964 -1.52377e-05 7.55459 -1.53452e-05 7.49957 -1.54674e-05 7.44459 -1.55736e-05 7.38965 -1.56963e-05 7.33476 -1.58031e-05 7.27991 -1.59253e-05 7.22511 -1.60324e-05 7.17036 -1.61546e-05 7.11567 -1.62604e-05 7.06102 -1.63562e-05 7.00644 -1.60786e-05 6.95192 -1.01609e-05 7.71654e-06 17.2456 -3.84362 17.5977 -1.21286 17.6963 -0.38876 17.7067 -0.115112 17.7091 -0.0495898 17.7038 -0.0406331 17.7063 -0.0594125 17.7187 -0.0948572 17.7439 -0.142921 17.7836 -0.197767 17.8375 -0.25022 17.9026 -0.288861 17.9725 -0.302756 18.0387 -0.284479 18.0913 -0.231333 18.1197 -0.148738 18.1158 -0.0435247 18.0846 0.0678417 18.0255 0.176693 17.9448 0.269694 17.8497 0.342768 17.7472 0.390353 17.644 0.411674 17.5454 0.408203 17.4556 0.383447 17.3773 0.343047 17.3118 0.293296 17.2591 0.240272 17.2181 0.18904 17.1875 0.143132 17.1652 0.104507 17.1496 0.0737041 17.1391 0.0502894 17.1321 0.0332427 17.1276 0.0213158 17.1249 0.0132736 17.1232 0.0080354 17.1222 0.00473327 17.1216 0.00271538 17.1213 0.00151836 17.1212 0.000828191 17.1211 0.000441015 17.1211 0.000229459 17.121 0.00011677 17.121 5.81798e-05 17.121 2.84785e-05 17.1211 1.37522e-05 17.1211 6.59003e-06 17.1211 3.19648e-06 17.1212 1.62093e-06 17.1212 9.04318e-07 17.1213 5.84784e-07 17.1213 4.45164e-07 17.1214 3.85452e-07 17.1215 3.60309e-07 17.1216 3.4994e-07 17.1216 3.45681e-07 17.1217 3.43717e-07 17.1218 3.42676e-07 17.1218 3.41635e-07 17.1218 3.40509e-07 17.1218 3.38171e-07 17.1217 3.34076e-07 17.1215 3.32786e-07 17.1212 3.28823e-07 17.1208 3.24047e-07 17.1202 3.18581e-07 17.1195 3.11787e-07 17.1185 3.04528e-07 17.1173 2.96036e-07 17.1158 2.86667e-07 17.1141 2.769e-07 17.112 2.65988e-07 17.1096 2.55318e-07 17.1069 2.44177e-07 17.1039 2.33139e-07 17.1005 2.23124e-07 17.0969 2.13173e-07 17.0929 2.05248e-07 17.0888 1.98564e-07 17.0844 1.93657e-07 17.0799 1.91936e-07 17.0753 1.91641e-07 17.0708 1.95229e-07 17.0663 2.01514e-07 17.062 2.10462e-07 17.0579 2.23866e-07 17.0542 2.38564e-07 17.0508 2.57483e-07 17.0479 2.78655e-07 17.0456 3.01074e-07 17.0439 3.27374e-07 17.0427 3.52547e-07 17.0423 3.7862e-07 17.0425 4.12495e-07 17.0435 4.54811e-07 17.0453 4.70643e-07 17.0476 4.93615e-07 17.0506 5.16541e-07 17.0541 5.36975e-07 17.0581 5.5468e-07 17.0626 5.6939e-07 17.0674 5.80937e-07 17.0724 5.89263e-07 17.0777 5.94352e-07 17.0832 5.9623e-07 17.0887 5.95111e-07 17.0942 5.91182e-07 17.0996 5.84683e-07 17.1049 5.75933e-07 17.1101 5.65175e-07 17.115 5.52854e-07 17.1197 5.39238e-07 17.1242 5.24687e-07 17.1283 5.0951e-07 17.1321 4.94014e-07 17.1357 4.78481e-07 17.1389 4.63169e-07 17.1419 4.48177e-07 17.1445 4.33864e-07 17.1469 4.20159e-07 17.149 4.07396e-07 17.1508 3.95465e-07 17.1525 3.84511e-07 17.1539 3.74522e-07 17.1552 3.65538e-07 17.1562 3.57463e-07 17.1572 3.50403e-07 17.158 3.44035e-07 17.1587 3.38704e-07 17.1593 3.33918e-07 17.1598 3.29942e-07 17.1602 3.26461e-07 17.1606 3.2344e-07 17.1609 3.20907e-07 17.1612 3.18679e-07 17.1615 3.16514e-07 17.1617 3.14664e-07 17.1618 3.12443e-07 17.1619 3.10447e-07 17.162 3.08116e-07 17.1619 3.04416e-07 17.1618 2.98703e-07 17.1615 2.96014e-07 17.1612 2.91431e-07 17.1606 2.85617e-07 17.1599 2.78858e-07 17.1589 2.71525e-07 17.1578 2.62865e-07 17.1563 2.53757e-07 17.1546 2.43754e-07 17.1526 2.32955e-07 17.1502 2.22284e-07 17.1476 2.10793e-07 17.1446 1.99897e-07 17.1412 1.89371e-07 17.1376 1.79232e-07 17.1337 1.71131e-07 17.1295 1.63596e-07 17.1251 1.58577e-07 17.1206 1.55926e-07 17.116 1.54906e-07 17.1113 1.58217e-07 17.1068 1.6326e-07 17.1023 1.7193e-07 17.0981 1.84144e-07 17.0942 1.9805e-07 17.0907 2.16824e-07 17.0876 2.36627e-07 17.0851 2.59251e-07 17.0831 2.84554e-07 17.0818 3.09378e-07 17.0811 3.37033e-07 17.081 3.63468e-07 17.0818 4.09646e-07 17.0832 4.3172e-07 17.0853 4.5147e-07 17.0881 4.74897e-07 17.0914 4.96077e-07 17.0952 5.14598e-07 17.0994 5.30212e-07 17.1041 5.42731e-07 17.109 5.52052e-07 17.1142 5.58155e-07 17.1195 5.6109e-07 17.1249 5.60989e-07 17.1304 5.58037e-07 17.1358 5.52475e-07 17.1411 5.44567e-07 17.1462 5.34637e-07 17.1512 5.23011e-07 17.1559 5.10014e-07 17.1604 4.95991e-07 17.1646 4.81261e-07 17.1685 4.66101e-07 17.1721 4.5082e-07 17.1754 4.35633e-07 17.1785 4.20774e-07 17.1812 4.06407e-07 17.1837 3.92683e-07 17.1859 3.79721e-07 17.1878 3.676e-07 17.1895 3.56385e-07 17.191 3.46083e-07 17.1923 3.36712e-07 17.1935 3.28267e-07 17.1944 3.20709e-07 17.1953 3.13995e-07 17.196 3.08088e-07 17.1966 3.02913e-07 17.1971 2.9841e-07 17.1975 2.94533e-07 17.1979 2.91208e-07 17.1982 2.88386e-07 17.1985 2.86007e-07 17.1987 2.84009e-07 17.1989 2.82342e-07 17.199 2.80968e-07 17.1991 2.79848e-07 17.1992 2.7894e-07 17.1993 2.78205e-07 17.1994 2.77612e-07 17.1995 2.77137e-07 17.1996 2.76773e-07 17.1996 2.76497e-07 17.1997 2.76289e-07 17.1997 2.76134e-07 17.1998 2.76025e-07 17.1999 2.75947e-07 17.1999 2.75888e-07 17.2 2.75862e-07 17.2 2.75863e-07 17.2001 2.75864e-07 17.2001 2.75873e-07 17.2002 2.75888e-07 17.2003 2.75903e-07 17.2003 2.75924e-07 17.2004 2.75938e-07 17.2005 2.75945e-07 17.2005 2.75949e-07 17.2006 2.7594e-07 17.2007 2.75933e-07 17.2008 2.75911e-07 17.2008 2.75878e-07 17.2009 2.75842e-07 17.201 2.75797e-07 17.2011 2.75734e-07 17.2011 2.75654e-07 17.2012 2.75574e-07 17.2013 2.75474e-07 17.2014 2.75353e-07 17.2014 2.7522e-07 17.2015 2.75079e-07 17.2016 2.74932e-07 17.2016 2.74787e-07 17.2017 2.74601e-07 17.2017 2.74427e-07 17.2018 2.7423e-07 17.2018 2.74044e-07 17.2019 2.73851e-07 17.2019 2.73649e-07 17.202 2.73426e-07 17.202 2.73233e-07 17.202 2.73006e-07 17.202 2.72814e-07 17.2021 2.72601e-07 17.2021 2.72421e-07 17.2021 2.72235e-07 17.2021 2.72046e-07 17.2021 2.71929e-07 17.2021 2.71699e-07 17.2021 2.71522e-07 17.2021 2.71545e-07 17.202 2.71422e-07 17.202 2.71382e-07 17.202 2.71375e-07 17.202 2.71359e-07 17.202 2.71488e-07 17.2019 2.71498e-07 17.2019 2.71573e-07 17.2019 2.7218e-07 17.2019 2.72536e-07 17.2018 2.72767e-07 17.2018 2.73178e-07 17.2018 2.7381e-07 17.2018 2.74514e-07 17.2018 2.7531e-07 17.2017 2.76251e-07 17.2017 2.77344e-07 17.2017 2.78514e-07 17.2017 2.79925e-07 17.2017 2.81316e-07 17.2016 2.83015e-07 17.2016 2.84685e-07 17.2015 2.86548e-07 17.2014 2.88521e-07 17.2013 2.90254e-07 17.2011 2.92177e-07 17.2008 2.939e-07 17.2005 2.95664e-07 17.2 2.96913e-07 17.1994 2.97734e-07 17.1987 2.98536e-07 17.1978 2.98162e-07 17.1966 2.97002e-07 17.1951 2.95383e-07 17.1934 2.92346e-07 17.1913 2.89959e-07 17.1888 2.85479e-07 17.1859 2.80604e-07 17.1826 2.75241e-07 17.1787 2.69452e-07 17.1743 2.63201e-07 17.1694 2.55546e-07 17.164 2.50489e-07 17.158 2.44096e-07 17.1515 2.39634e-07 17.1445 2.36211e-07 17.137 2.34125e-07 17.129 2.33412e-07 17.1207 2.34616e-07 17.112 2.36587e-07 17.1031 2.30863e-07 17.094 2.5809e-07 17.0848 3.20418e-07 17.0756 2.96676e-07 17.0664 3.07368e-07 17.0573 3.33612e-07 17.0484 3.59671e-07 17.0398 3.86915e-07 17.0316 4.16086e-07 17.0237 4.46744e-07 17.0162 4.78268e-07 17.0092 5.09942e-07 17.0026 5.41048e-07 16.9965 5.70934e-07 16.9907 5.98995e-07 16.9853 6.24726e-07 16.9802 6.47733e-07 16.9754 6.67707e-07 16.9707 6.84375e-07 16.9662 6.97574e-07 16.9616 7.07247e-07 16.9571 7.13376e-07 16.9524 7.16028e-07 16.9476 7.15345e-07 16.9425 7.11516e-07 16.9372 7.0478e-07 16.9314 6.95417e-07 16.9253 6.83733e-07 16.9186 6.70051e-07 16.9115 6.54683e-07 16.9039 6.37985e-07 16.8957 6.20227e-07 16.887 6.01721e-07 16.8777 5.82734e-07 16.8679 5.63502e-07 16.8575 5.44231e-07 16.8465 5.25093e-07 16.835 5.06239e-07 16.823 4.87766e-07 16.8104 4.69739e-07 16.7974 4.52249e-07 16.7838 4.353e-07 16.7698 4.18904e-07 16.7554 4.03043e-07 16.7405 3.87696e-07 16.7252 3.72814e-07 16.7095 3.5835e-07 16.6934 3.44252e-07 16.6769 3.3046e-07 16.6601 3.16909e-07 16.6429 3.03527e-07 16.6254 2.90285e-07 16.6076 2.77111e-07 16.5894 2.63949e-07 16.571 2.50749e-07 16.5522 2.37474e-07 16.5331 2.24069e-07 16.5137 2.10499e-07 16.494 1.96746e-07 16.474 1.82756e-07 16.4538 1.68521e-07 16.4332 1.54009e-07 16.4124 1.39212e-07 16.3913 1.24112e-07 16.3698 1.08701e-07 16.3481 9.29481e-08 16.3262 7.68564e-08 16.3039 6.0415e-08 16.2814 4.36062e-08 16.2585 2.64054e-08 16.2354 9.00491e-09 16.212 -8.97035e-09 16.1884 -2.72385e-08 16.1644 -4.59117e-08 16.1402 -6.4952e-08 16.1157 -8.43652e-08 16.0909 -1.04171e-07 16.0658 -1.24352e-07 16.0405 -1.44928e-07 16.0148 -1.65888e-07 15.9889 -1.87238e-07 15.9628 -2.08976e-07 15.9363 -2.31106e-07 15.9096 -2.53624e-07 15.8825 -2.76535e-07 15.8552 -2.99838e-07 15.8277 -3.23533e-07 15.7998 -3.47624e-07 15.7717 -3.72111e-07 15.7433 -3.96992e-07 15.7146 -4.22265e-07 15.6857 -4.47938e-07 15.6565 -4.74007e-07 15.627 -5.00469e-07 15.5972 -5.27334e-07 15.5672 -5.54585e-07 15.5369 -5.82244e-07 15.5063 -6.10301e-07 15.4754 -6.38754e-07 15.4443 -6.67605e-07 15.4129 -6.96865e-07 15.3812 -7.2651e-07 15.3493 -7.56548e-07 15.3171 -7.86993e-07 15.2846 -8.17846e-07 15.2519 -8.49088e-07 15.2189 -8.80729e-07 15.1856 -9.12773e-07 15.1521 -9.45221e-07 15.1183 -9.78061e-07 15.0842 -1.0113e-06 15.0499 -1.04494e-06 15.0153 -1.07898e-06 14.9805 -1.11343e-06 14.9454 -1.14827e-06 14.91 -1.18351e-06 14.8744 -1.21915e-06 14.8385 -1.25518e-06 14.8024 -1.29161e-06 14.766 -1.32845e-06 14.7294 -1.36567e-06 14.6925 -1.40331e-06 14.6554 -1.44133e-06 14.618 -1.47974e-06 14.5803 -1.51855e-06 14.5424 -1.55776e-06 14.5043 -1.59737e-06 14.4659 -1.63737e-06 14.4273 -1.67778e-06 14.3884 -1.71856e-06 14.3493 -1.75975e-06 14.3099 -1.80132e-06 14.2703 -1.84328e-06 14.2305 -1.88564e-06 14.1904 -1.92838e-06 14.1501 -1.97152e-06 14.1096 -2.01504e-06 14.0688 -2.05896e-06 14.0278 -2.10325e-06 13.9865 -2.14794e-06 13.945 -2.19301e-06 13.9033 -2.23846e-06 13.8614 -2.2843e-06 13.8192 -2.33051e-06 13.7769 -2.37711e-06 13.7343 -2.42409e-06 13.6914 -2.47145e-06 13.6484 -2.51918e-06 13.6051 -2.5673e-06 13.5616 -2.61579e-06 13.5179 -2.66465e-06 13.474 -2.71389e-06 13.4299 -2.76349e-06 13.3856 -2.81347e-06 13.341 -2.86382e-06 13.2963 -2.91452e-06 13.2513 -2.96561e-06 13.2061 -3.01706e-06 13.1608 -3.06886e-06 13.1152 -3.12104e-06 13.0694 -3.17357e-06 13.0235 -3.22645e-06 12.9773 -3.27969e-06 12.931 -3.3333e-06 12.8844 -3.38725e-06 12.8377 -3.44156e-06 12.7908 -3.49622e-06 12.7436 -3.55122e-06 12.6963 -3.60657e-06 12.6489 -3.66227e-06 12.6012 -3.7183e-06 12.5533 -3.77468e-06 12.5053 -3.83141e-06 12.4571 -3.88846e-06 12.4087 -3.94584e-06 12.3602 -4.00357e-06 12.3115 -4.06163e-06 12.2626 -4.12002e-06 12.2135 -4.17873e-06 12.1643 -4.23777e-06 12.115 -4.29713e-06 12.0654 -4.35681e-06 12.0157 -4.41681e-06 11.9659 -4.47713e-06 11.9158 -4.53776e-06 11.8657 -4.5987e-06 11.8154 -4.65995e-06 11.7649 -4.72151e-06 11.7143 -4.78337e-06 11.6636 -4.84554e-06 11.6127 -4.908e-06 11.5616 -4.97076e-06 11.5105 -5.03382e-06 11.4591 -5.09717e-06 11.4077 -5.16081e-06 11.3561 -5.22473e-06 11.3044 -5.28894e-06 11.2526 -5.35343e-06 11.2006 -5.41819e-06 11.1486 -5.48324e-06 11.0964 -5.54857e-06 11.044 -5.61416e-06 10.9916 -5.68001e-06 10.939 -5.74615e-06 10.8864 -5.81252e-06 10.8336 -5.87917e-06 10.7807 -5.94608e-06 10.7277 -6.01324e-06 10.6747 -6.08064e-06 10.6215 -6.1483e-06 10.5682 -6.21621e-06 10.5148 -6.28436e-06 10.4613 -6.35274e-06 10.4078 -6.42136e-06 10.3541 -6.4902e-06 10.3004 -6.55929e-06 10.2465 -6.6286e-06 10.1926 -6.69813e-06 10.1386 -6.76789e-06 10.0845 -6.83786e-06 10.0304 -6.90804e-06 9.97618 -6.97843e-06 9.92189 -7.04904e-06 9.86753 -7.11985e-06 9.81311 -7.19086e-06 9.75862 -7.26207e-06 9.70407 -7.33347e-06 9.64946 -7.40506e-06 9.5948 -7.47684e-06 9.54008 -7.54881e-06 9.48531 -7.62096e-06 9.43049 -7.69329e-06 9.37563 -7.76579e-06 9.32072 -7.83846e-06 9.26576 -7.91128e-06 9.21077 -7.9843e-06 9.15574 -8.05745e-06 9.10068 -8.13077e-06 9.04558 -8.20425e-06 8.99045 -8.27787e-06 8.9353 -8.35163e-06 8.88012 -8.42554e-06 8.82491 -8.49959e-06 8.76969 -8.57377e-06 8.71445 -8.64809e-06 8.65919 -8.72254e-06 8.60392 -8.79711e-06 8.54864 -8.8718e-06 8.49336 -8.94661e-06 8.43806 -9.02153e-06 8.38276 -9.09656e-06 8.32747 -9.17169e-06 8.27217 -9.24693e-06 8.21688 -9.32227e-06 8.16159 -9.3977e-06 8.10632 -9.47321e-06 8.05105 -9.54885e-06 7.9958 -9.6245e-06 7.94057 -9.70036e-06 7.88535 -9.77601e-06 7.83015 -9.85232e-06 7.77498 -9.92758e-06 7.71984 -1.00049e-05 7.66472 -1.0079e-05 7.60964 -1.01581e-05 7.55459 -1.02304e-05 7.49957 -1.03113e-05 7.44459 -1.03827e-05 7.38965 -1.04639e-05 7.33476 -1.05358e-05 7.27991 -1.06165e-05 7.22511 -1.06886e-05 7.17036 -1.07694e-05 7.11567 -1.08399e-05 7.06102 -1.08957e-05 7.00644 -1.06269e-05 6.95192 -6.64097e-06 4.90821e-06 17.1399 -4.57331 17.3484 -1.42131 17.4238 -0.464188 17.4716 -0.16293 17.4906 -0.0685972 17.5109 -0.0608826 17.5257 -0.0741795 17.5396 -0.108742 17.556 -0.159289 17.5774 -0.219216 17.6053 -0.278119 17.6388 -0.322387 17.6751 -0.338959 17.7096 -0.318442 17.7371 -0.257306 17.7516 -0.16232 17.7508 -0.0422307 17.7268 0.0918964 17.6857 0.217562 17.63 0.32462 17.5656 0.406542 17.498 0.457728 17.4317 0.477994 17.3699 0.469961 17.315 0.438326 17.2683 0.389833 17.2299 0.33172 17.1994 0.270764 17.176 0.212463 17.1586 0.160569 17.146 0.117097 17.1372 0.082526 17.1312 0.0562899 17.1273 0.037207 17.1247 0.0238611 17.1232 0.0148626 17.1222 0.00900059 17.1217 0.00530409 17.1214 0.00304428 17.1212 0.00170309 17.1211 0.00092939 17.1211 0.000495104 17.121 0.000257664 17.121 0.000131106 17.121 6.52616e-05 17.121 3.18532e-05 17.1211 1.52857e-05 17.1211 7.21819e-06 17.1211 3.39309e-06 17.1212 1.61587e-06 17.1212 8.0671e-07 17.1213 4.45585e-07 17.1213 2.87576e-07 17.1214 2.19809e-07 17.1215 1.91248e-07 17.1216 1.79431e-07 17.1216 1.74606e-07 17.1217 1.7255e-07 17.1218 1.716e-07 17.1218 1.70915e-07 17.1218 1.70307e-07 17.1218 1.69061e-07 17.1217 1.67072e-07 17.1215 1.66385e-07 17.1212 1.64418e-07 17.1208 1.62024e-07 17.1202 1.59289e-07 17.1195 1.559e-07 17.1185 1.52257e-07 17.1173 1.48021e-07 17.1158 1.43335e-07 17.1141 1.38448e-07 17.112 1.33e-07 17.1096 1.27649e-07 17.1069 1.22092e-07 17.1039 1.16575e-07 17.1005 1.11555e-07 17.0969 1.06592e-07 17.0929 1.02615e-07 17.0888 9.9285e-08 17.0844 9.68362e-08 17.0799 9.59594e-08 17.0753 9.58266e-08 17.0708 9.76047e-08 17.0663 1.00758e-07 17.062 1.05244e-07 17.0579 1.11922e-07 17.0542 1.19293e-07 17.0508 1.28738e-07 17.0479 1.39325e-07 17.0456 1.50557e-07 17.0439 1.6367e-07 17.0427 1.76296e-07 17.0423 1.89192e-07 17.0425 2.06472e-07 17.0435 2.27261e-07 17.0453 2.35339e-07 17.0476 2.4682e-07 17.0506 2.58272e-07 17.0541 2.68486e-07 17.0581 2.77344e-07 17.0626 2.84698e-07 17.0674 2.90469e-07 17.0724 2.94632e-07 17.0777 2.97176e-07 17.0832 2.98119e-07 17.0887 2.97558e-07 17.0942 2.95593e-07 17.0996 2.92341e-07 17.1049 2.87966e-07 17.1101 2.82587e-07 17.115 2.76425e-07 17.1197 2.69617e-07 17.1242 2.62341e-07 17.1283 2.5475e-07 17.1321 2.47006e-07 17.1357 2.39241e-07 17.1389 2.31586e-07 17.1419 2.24089e-07 17.1445 2.16931e-07 17.1469 2.1008e-07 17.149 2.03696e-07 17.1508 1.97731e-07 17.1525 1.92256e-07 17.1539 1.87256e-07 17.1552 1.82769e-07 17.1562 1.78734e-07 17.1572 1.75206e-07 17.158 1.72022e-07 17.1587 1.69347e-07 17.1593 1.66961e-07 17.1598 1.64971e-07 17.1602 1.63229e-07 17.1606 1.61721e-07 17.1609 1.60449e-07 17.1612 1.59341e-07 17.1615 1.58257e-07 17.1617 1.5733e-07 17.1618 1.56226e-07 17.1619 1.55215e-07 17.162 1.54074e-07 17.1619 1.52183e-07 17.1618 1.49369e-07 17.1615 1.48013e-07 17.1612 1.45709e-07 17.1606 1.4281e-07 17.1599 1.3943e-07 17.1589 1.35756e-07 17.1578 1.31437e-07 17.1563 1.26873e-07 17.1546 1.21876e-07 17.1526 1.16482e-07 17.1502 1.11134e-07 17.1476 1.05404e-07 17.1446 9.99426e-08 17.1412 9.46848e-08 17.1376 8.96239e-08 17.1337 8.55539e-08 17.1295 8.18045e-08 17.1251 7.92857e-08 17.1206 7.79605e-08 17.116 7.7463e-08 17.1113 7.90942e-08 17.1068 8.1639e-08 17.1023 8.59636e-08 17.0981 9.20677e-08 17.0942 9.90372e-08 17.0907 1.08397e-07 17.0876 1.18324e-07 17.0851 1.29633e-07 17.0831 1.4227e-07 17.0818 1.54716e-07 17.0811 1.68453e-07 17.081 1.81789e-07 17.0818 2.04893e-07 17.0832 2.15766e-07 17.0853 2.25764e-07 17.0881 2.37454e-07 17.0914 2.48039e-07 17.0952 2.57298e-07 17.0994 2.65103e-07 17.1041 2.71364e-07 17.109 2.76024e-07 17.1142 2.79076e-07 17.1195 2.80544e-07 17.1249 2.80494e-07 17.1304 2.79018e-07 17.1358 2.7624e-07 17.1411 2.72285e-07 17.1462 2.67318e-07 17.1512 2.61507e-07 17.1559 2.55005e-07 17.1604 2.47993e-07 17.1646 2.40632e-07 17.1685 2.3305e-07 17.1721 2.2541e-07 17.1754 2.17817e-07 17.1785 2.10387e-07 17.1812 2.03204e-07 17.1837 1.9634e-07 17.1859 1.89858e-07 17.1878 1.83797e-07 17.1895 1.78193e-07 17.191 1.73042e-07 17.1923 1.68356e-07 17.1935 1.64133e-07 17.1944 1.60353e-07 17.1953 1.56995e-07 17.196 1.54045e-07 17.1966 1.51458e-07 17.1971 1.49204e-07 17.1975 1.47265e-07 17.1979 1.45604e-07 17.1982 1.44193e-07 17.1985 1.43003e-07 17.1987 1.42005e-07 17.1989 1.4117e-07 17.199 1.40483e-07 17.1991 1.39926e-07 17.1992 1.39471e-07 17.1993 1.39104e-07 17.1994 1.38807e-07 17.1995 1.38569e-07 17.1996 1.38386e-07 17.1996 1.38248e-07 17.1997 1.38145e-07 17.1997 1.38067e-07 17.1998 1.38012e-07 17.1999 1.37972e-07 17.1999 1.37944e-07 17.2 1.37929e-07 17.2 1.37933e-07 17.2001 1.3793e-07 17.2001 1.37934e-07 17.2002 1.37944e-07 17.2003 1.37952e-07 17.2003 1.37961e-07 17.2004 1.37969e-07 17.2005 1.37975e-07 17.2005 1.37979e-07 17.2006 1.37974e-07 17.2007 1.37967e-07 17.2008 1.37955e-07 17.2008 1.37937e-07 17.2009 1.37922e-07 17.201 1.37899e-07 17.2011 1.37867e-07 17.2011 1.37827e-07 17.2012 1.37789e-07 17.2013 1.37738e-07 17.2014 1.37678e-07 17.2014 1.37612e-07 17.2015 1.37542e-07 17.2016 1.37468e-07 17.2016 1.37391e-07 17.2017 1.373e-07 17.2017 1.37212e-07 17.2018 1.37113e-07 17.2018 1.37021e-07 17.2019 1.36923e-07 17.2019 1.36825e-07 17.202 1.36714e-07 17.202 1.36615e-07 17.202 1.36501e-07 17.202 1.36405e-07 17.2021 1.363e-07 17.2021 1.36212e-07 17.2021 1.36119e-07 17.2021 1.36022e-07 17.2021 1.35967e-07 17.2021 1.35849e-07 17.2021 1.35763e-07 17.2021 1.3577e-07 17.202 1.35712e-07 17.202 1.35689e-07 17.202 1.35686e-07 17.202 1.35676e-07 17.202 1.35741e-07 17.2019 1.35753e-07 17.2019 1.35788e-07 17.2019 1.36089e-07 17.2019 1.36267e-07 17.2018 1.36385e-07 17.2018 1.36592e-07 17.2018 1.36903e-07 17.2018 1.37259e-07 17.2018 1.37655e-07 17.2017 1.38123e-07 17.2017 1.38675e-07 17.2017 1.39255e-07 17.2017 1.3996e-07 17.2017 1.40659e-07 17.2016 1.41503e-07 17.2016 1.42343e-07 17.2015 1.43272e-07 17.2014 1.4426e-07 17.2013 1.45131e-07 17.2011 1.46085e-07 17.2008 1.46948e-07 17.2005 1.47829e-07 17.2 1.48455e-07 17.1994 1.48872e-07 17.1987 1.49261e-07 17.1978 1.49084e-07 17.1966 1.48504e-07 17.1951 1.47681e-07 17.1934 1.46137e-07 17.1913 1.44998e-07 17.1888 1.42761e-07 17.1859 1.40312e-07 17.1826 1.3763e-07 17.1787 1.34736e-07 17.1743 1.3157e-07 17.1694 1.27759e-07 17.164 1.25228e-07 17.158 1.22079e-07 17.1515 1.19811e-07 17.1445 1.18105e-07 17.137 1.17055e-07 17.129 1.16705e-07 17.1207 1.17303e-07 17.112 1.18235e-07 17.1031 1.15642e-07 17.094 1.29186e-07 17.0848 1.59616e-07 17.0756 1.48644e-07 17.0664 1.53721e-07 17.0573 1.66793e-07 17.0484 1.79832e-07 17.0398 1.93455e-07 17.0316 2.08042e-07 17.0237 2.23371e-07 17.0162 2.39136e-07 17.0092 2.54973e-07 17.0026 2.70522e-07 16.9965 2.85466e-07 16.9907 2.995e-07 16.9853 3.12362e-07 16.9802 3.23862e-07 16.9754 3.33852e-07 16.9707 3.42188e-07 16.9662 3.48788e-07 16.9616 3.53621e-07 16.9571 3.56686e-07 16.9524 3.58013e-07 16.9476 3.57673e-07 16.9425 3.5576e-07 16.9372 3.52391e-07 16.9314 3.47708e-07 16.9253 3.41865e-07 16.9186 3.35028e-07 16.9115 3.27341e-07 16.9039 3.18993e-07 16.8957 3.1011e-07 16.887 3.00856e-07 16.8777 2.91364e-07 16.8679 2.81748e-07 16.8575 2.72114e-07 16.8465 2.62545e-07 16.835 2.5312e-07 16.823 2.43884e-07 16.8104 2.34868e-07 16.7974 2.26121e-07 16.7838 2.17647e-07 16.7698 2.09451e-07 16.7554 2.01519e-07 16.7405 1.93847e-07 16.7252 1.86406e-07 16.7095 1.79173e-07 16.6934 1.72126e-07 16.6769 1.65232e-07 16.6601 1.58458e-07 16.6429 1.51761e-07 16.6254 1.45139e-07 16.6076 1.38552e-07 16.5894 1.31974e-07 16.571 1.25372e-07 16.5522 1.18737e-07 16.5331 1.12032e-07 16.5137 1.05249e-07 16.494 9.8375e-08 16.474 9.13765e-08 16.4538 8.42601e-08 16.4332 7.70015e-08 16.4124 6.95995e-08 16.3913 6.20503e-08 16.3698 5.43478e-08 16.3481 4.6472e-08 16.3262 3.84293e-08 16.3039 3.02098e-08 16.2814 2.18115e-08 16.2585 1.32618e-08 16.2354 4.48654e-09 16.212 -4.52519e-09 16.1884 -1.36456e-08 16.1644 -2.29697e-08 16.1402 -3.24862e-08 16.1157 -4.2191e-08 16.0909 -5.20904e-08 16.0658 -6.21794e-08 16.0405 -7.24685e-08 16.0148 -8.29491e-08 15.9889 -9.36225e-08 15.9628 -1.04494e-07 15.9363 -1.15558e-07 15.9096 -1.26815e-07 15.8825 -1.38271e-07 15.8552 -1.49922e-07 15.8277 -1.6177e-07 15.7998 -1.73812e-07 15.7717 -1.86057e-07 15.7433 -1.98498e-07 15.7146 -2.11133e-07 15.6857 -2.23972e-07 15.6565 -2.37006e-07 15.627 -2.50236e-07 15.5972 -2.63669e-07 15.5672 -2.77292e-07 15.5369 -2.91123e-07 15.5063 -3.05152e-07 15.4754 -3.19379e-07 15.4443 -3.33806e-07 15.4129 -3.48438e-07 15.3812 -3.6326e-07 15.3493 -3.78274e-07 15.3171 -3.93497e-07 15.2846 -4.08928e-07 15.2519 -4.24548e-07 15.2189 -4.40368e-07 15.1856 -4.5639e-07 15.1521 -4.72614e-07 15.1183 -4.89032e-07 15.0842 -5.0565e-07 15.0499 -5.22471e-07 15.0153 -5.3949e-07 14.9805 -5.56717e-07 14.9454 -5.74142e-07 14.91 -5.91755e-07 14.8744 -6.09575e-07 14.8385 -6.27592e-07 14.8024 -6.4581e-07 14.766 -6.64228e-07 14.7294 -6.82835e-07 14.6925 -7.01658e-07 14.6554 -7.2067e-07 14.618 -7.39873e-07 14.5803 -7.59276e-07 14.5424 -7.78879e-07 14.5043 -7.98681e-07 14.4659 -8.18688e-07 14.4273 -8.38892e-07 14.3884 -8.59281e-07 14.3493 -8.79875e-07 14.3099 -9.00661e-07 14.2703 -9.21646e-07 14.2305 -9.42822e-07 14.1904 -9.64194e-07 14.1501 -9.85759e-07 14.1096 -1.00752e-06 14.0688 -1.02949e-06 14.0278 -1.05163e-06 13.9865 -1.07398e-06 13.945 -1.09651e-06 13.9033 -1.11924e-06 13.8614 -1.14216e-06 13.8192 -1.16526e-06 13.7769 -1.18855e-06 13.7343 -1.21205e-06 13.6914 -1.23573e-06 13.6484 -1.25959e-06 13.6051 -1.28365e-06 13.5616 -1.30789e-06 13.5179 -1.33232e-06 13.474 -1.35694e-06 13.4299 -1.38174e-06 13.3856 -1.40674e-06 13.341 -1.43191e-06 13.2963 -1.45726e-06 13.2513 -1.48281e-06 13.2061 -1.50853e-06 13.1608 -1.53444e-06 13.1152 -1.56052e-06 13.0694 -1.58679e-06 13.0235 -1.61323e-06 12.9773 -1.63985e-06 12.931 -1.66665e-06 12.8844 -1.69363e-06 12.8377 -1.72078e-06 12.7908 -1.74811e-06 12.7436 -1.77561e-06 12.6963 -1.80329e-06 12.6489 -1.83114e-06 12.6012 -1.85915e-06 12.5533 -1.88734e-06 12.5053 -1.91571e-06 12.4571 -1.94423e-06 12.4087 -1.97292e-06 12.3602 -2.00179e-06 12.3115 -2.03082e-06 12.2626 -2.06001e-06 12.2135 -2.08937e-06 12.1643 -2.11889e-06 12.115 -2.14857e-06 12.0654 -2.17841e-06 12.0157 -2.20841e-06 11.9659 -2.23857e-06 11.9158 -2.26888e-06 11.8657 -2.29935e-06 11.8154 -2.32998e-06 11.7649 -2.36076e-06 11.7143 -2.39169e-06 11.6636 -2.42277e-06 11.6127 -2.454e-06 11.5616 -2.48538e-06 11.5105 -2.51691e-06 11.4591 -2.54859e-06 11.4077 -2.58041e-06 11.3561 -2.61237e-06 11.3044 -2.64447e-06 11.2526 -2.67672e-06 11.2006 -2.7091e-06 11.1486 -2.74162e-06 11.0964 -2.77428e-06 11.044 -2.80708e-06 10.9916 -2.84001e-06 10.939 -2.87307e-06 10.8864 -2.90626e-06 10.8336 -2.93959e-06 10.7807 -2.97304e-06 10.7277 -3.00662e-06 10.6747 -3.04032e-06 10.6215 -3.07415e-06 10.5682 -3.10811e-06 10.5148 -3.14219e-06 10.4613 -3.17637e-06 10.4078 -3.21068e-06 10.3541 -3.2451e-06 10.3004 -3.27965e-06 10.2465 -3.3143e-06 10.1926 -3.34907e-06 10.1386 -3.38394e-06 10.0845 -3.41893e-06 10.0304 -3.45402e-06 9.97618 -3.48922e-06 9.92189 -3.52452e-06 9.86753 -3.55992e-06 9.81311 -3.59543e-06 9.75862 -3.63104e-06 9.70407 -3.66674e-06 9.64946 -3.70253e-06 9.5948 -3.73842e-06 9.54008 -3.77441e-06 9.48531 -3.81048e-06 9.43049 -3.84665e-06 9.37563 -3.8829e-06 9.32072 -3.91923e-06 9.26576 -3.95564e-06 9.21077 -3.99215e-06 9.15574 -4.02873e-06 9.10068 -4.06539e-06 9.04558 -4.10212e-06 8.99045 -4.13894e-06 8.9353 -4.17582e-06 8.88012 -4.21277e-06 8.82491 -4.2498e-06 8.76969 -4.28689e-06 8.71445 -4.32404e-06 8.65919 -4.36127e-06 8.60392 -4.39855e-06 8.54864 -4.4359e-06 8.49336 -4.47331e-06 8.43806 -4.51076e-06 8.38276 -4.54828e-06 8.32747 -4.58584e-06 8.27217 -4.62347e-06 8.21688 -4.66113e-06 8.16159 -4.69885e-06 8.10632 -4.73661e-06 8.05105 -4.77443e-06 7.9958 -4.81225e-06 7.94057 -4.85019e-06 7.88535 -4.88801e-06 7.83015 -4.92616e-06 7.77498 -4.96379e-06 7.71984 -5.00244e-06 7.66472 -5.03951e-06 7.60964 -5.07901e-06 7.55459 -5.11528e-06 7.49957 -5.15558e-06 7.44459 -5.19144e-06 7.38965 -5.23184e-06 7.33476 -5.26797e-06 7.27991 -5.30816e-06 7.22511 -5.34439e-06 7.17036 -5.38461e-06 7.11567 -5.41983e-06 7.06102 -5.44504e-06 7.00644 -5.28603e-06 6.95192 -3.281e-06 2.38353e-06 17.1668 -5.03121 17.3627 -1.61719 17.3956 -0.497044 17.372 -0.139334 17.3652 -0.0618493 17.3499 -0.0455971 17.3404 -0.064604 17.3361 -0.104392 17.3362 -0.159377 17.3407 -0.223742 17.349 -0.286412 17.36 -0.333435 17.3712 -0.350161 17.3791 -0.326156 17.3805 -0.257913 17.3721 -0.152843 17.3512 -0.0207517 17.3273 0.116041 17.2983 0.246696 17.2676 0.355114 17.2374 0.436295 17.2098 0.48503 17.1863 0.501348 17.1674 0.488827 17.1529 0.452802 17.1423 0.400429 17.1349 0.339168 17.1299 0.275827 17.1265 0.215815 17.1244 0.16274 17.123 0.118482 17.1222 0.0833986 17.1217 0.0568329 17.1214 0.0375413 17.1212 0.0240644 17.1211 0.0149846 17.121 0.00907274 17.121 0.00534607 17.121 0.00306826 17.121 0.00171653 17.121 0.000936745 17.121 0.00049902 17.121 0.000259673 17.121 0.000132078 17.121 6.56762e-05 17.121 3.19762e-05 17.1211 1.52608e-05 17.1211 7.11806e-06 17.1211 3.25576e-06 17.1212 1.46062e-06 17.1212 6.42855e-07 17.1213 2.77698e-07 17.1213 1.17794e-07 17.1214 4.90772e-08 17.1215 2.0093e-08 17.1216 8.08359e-09 17.1216 3.1996e-09 17.1217 1.24555e-09 17.1218 4.78849e-10 17.1218 1.78716e-10 17.1218 6.86668e-11 17.1218 2.18279e-11 17.1217 1.04592e-11 17.1215 9.09495e-13 17.1212 9.09495e-13 17.1208 1.81899e-12 17.1202 4.09273e-12 17.1195 9.09495e-13 17.1185 1.36424e-12 17.1173 9.09495e-13 17.1158 9.09495e-13 17.1141 7.7307e-12 17.112 -9.09495e-13 17.1096 -5.00222e-12 17.1069 -4.54747e-13 17.1039 5.00222e-12 17.1005 -4.54747e-13 17.0969 -4.54747e-13 17.0929 -1.81899e-12 17.0888 9.09495e-13 17.0844 1.36424e-12 17.0799 1.81899e-12 17.0753 0 17.0708 -2.27374e-12 17.0663 2.27374e-12 17.062 1.36424e-12 17.0579 1.81899e-12 17.0542 4.54747e-12 17.0508 5.00222e-12 17.0479 3.63798e-12 17.0456 3.18323e-12 17.0439 0 17.0427 -3.18323e-12 17.0423 0 17.0425 -1.36424e-12 17.0435 -9.09495e-13 17.0453 -2.72848e-12 17.0476 1.36424e-12 17.0506 9.09495e-13 17.0541 -3.63798e-12 17.0581 5.00222e-12 17.0626 5.00222e-12 17.0674 -2.72848e-12 17.0724 -4.54747e-13 17.0777 2.27374e-12 17.0832 4.09273e-12 17.0887 4.09273e-12 17.0942 2.72848e-12 17.0996 4.54747e-13 17.1049 2.27374e-12 17.1101 -1.36424e-12 17.115 4.54747e-13 17.1197 -3.63798e-12 17.1242 -4.54747e-12 17.1283 -8.18545e-12 17.1321 -3.63798e-12 17.1357 4.54747e-12 17.1389 5.45697e-12 17.1419 4.54747e-13 17.1445 4.54747e-12 17.1469 -1.36424e-12 17.149 9.09495e-13 17.1508 -1.81899e-12 17.1525 -4.54747e-13 17.1539 -5.91172e-12 17.1552 4.54747e-13 17.1562 8.6402e-12 17.1572 9.54969e-12 17.158 5.00222e-12 17.1587 -3.18323e-12 17.1593 4.54747e-13 17.1598 3.63798e-12 17.1602 -1.36424e-12 17.1606 -1.81899e-12 17.1609 0 17.1612 -2.27374e-12 17.1615 -1.36424e-12 17.1617 1.36424e-12 17.1618 1.36424e-12 17.1619 -3.63798e-12 17.162 0 17.1619 7.7307e-12 17.1618 6.36646e-12 17.1615 5.00222e-12 17.1612 -9.09495e-13 17.1606 -2.72848e-12 17.1599 -1.81899e-12 17.1589 -1.36424e-12 17.1578 -9.09495e-13 17.1563 4.54747e-13 17.1546 -1.36424e-12 17.1526 -1.36424e-12 17.1502 1.81899e-12 17.1476 5.45697e-12 17.1446 0 17.1412 2.72848e-12 17.1376 -4.54747e-13 17.1337 -2.72848e-12 17.1295 2.27374e-12 17.1251 2.27374e-12 17.1206 9.09495e-13 17.116 0 17.1113 5.91172e-12 17.1068 -3.63798e-12 17.1023 -2.27374e-12 17.0981 3.63798e-12 17.0942 1.81899e-12 17.0907 3.18323e-12 17.0876 3.18323e-12 17.0851 4.54747e-12 17.0831 8.18545e-12 17.0818 7.7307e-12 17.0811 4.54747e-12 17.081 9.09495e-13 17.0818 -4.54747e-13 17.0832 -2.72848e-12 17.0853 9.09495e-13 17.0881 5.45697e-12 17.0914 -9.09495e-13 17.0952 -5.00222e-12 17.0994 -7.27596e-12 17.1041 -5.00222e-12 17.109 -5.00222e-12 17.1142 -2.72848e-12 17.1195 -4.54747e-12 17.1249 -1.36424e-12 17.1304 -1.36424e-12 17.1358 5.00222e-12 17.1411 2.72848e-12 17.1462 9.09495e-13 17.1512 3.63798e-12 17.1559 -1.81899e-12 17.1604 -3.63798e-12 17.1646 3.18323e-12 17.1685 0 17.1721 2.72848e-12 17.1754 -4.54747e-13 17.1785 0 17.1812 4.54747e-13 17.1837 -4.54747e-13 17.1859 -3.63798e-12 17.1878 -4.54747e-12 17.1895 2.27374e-12 17.191 9.09495e-13 17.1923 -1.36424e-12 17.1935 9.09495e-13 17.1944 -9.09495e-13 17.1953 -4.54747e-12 17.196 4.54747e-13 17.1966 3.18323e-12 17.1971 -9.09495e-13 17.1975 -1.81899e-12 17.1979 -1.36424e-12 17.1982 -4.54747e-13 17.1985 2.72848e-12 17.1987 1.36424e-12 17.1989 -1.36424e-12 17.199 0 17.1991 4.09273e-12 17.1992 3.63798e-12 17.1993 4.54747e-12 17.1994 3.18323e-12 17.1995 2.27374e-12 17.1996 -1.36424e-12 17.1996 -4.54747e-13 17.1997 1.36424e-12 17.1997 -4.54747e-13 17.1998 -9.09495e-13 17.1999 -3.18323e-12 17.1999 9.09495e-13 17.2 -1.81899e-12 17.2 9.09495e-13 17.2001 -1.81899e-12 17.2001 -3.63798e-12 17.2002 -4.54747e-13 17.2003 -9.09495e-13 17.2003 -9.09495e-13 17.2004 0 17.2005 4.09273e-12 17.2005 5.91172e-12 17.2006 4.09273e-12 17.2007 0 17.2008 -9.09495e-13 17.2008 -3.18323e-12 17.2009 1.36424e-12 17.201 2.27374e-12 17.2011 1.36424e-12 17.2011 -9.09495e-13 17.2012 2.72848e-12 17.2013 2.72848e-12 17.2014 9.09495e-13 17.2014 2.27374e-12 17.2015 1.81899e-12 17.2016 2.27374e-12 17.2016 -3.63798e-12 17.2017 -9.09495e-13 17.2017 -1.36424e-12 17.2018 -4.09273e-12 17.2018 -9.09495e-13 17.2019 -1.36424e-12 17.2019 -9.09495e-13 17.202 1.81899e-12 17.202 -3.18323e-12 17.202 -6.36646e-12 17.202 -1.36424e-12 17.2021 -9.09495e-13 17.2021 3.18323e-12 17.2021 2.72848e-12 17.2021 -2.72848e-12 17.2021 2.27374e-12 17.2021 1.36424e-12 17.2021 -9.09495e-13 17.2021 0 17.202 1.36424e-12 17.202 -5.00222e-12 17.202 -3.18323e-12 17.202 -7.7307e-12 17.202 -2.27374e-12 17.2019 3.63798e-12 17.2019 -2.72848e-12 17.2019 -2.72848e-12 17.2019 2.72848e-12 17.2018 9.09495e-13 17.2018 9.09495e-13 17.2018 -1.36424e-12 17.2018 1.81899e-12 17.2018 -1.36424e-12 17.2017 -1.36424e-12 17.2017 4.09273e-12 17.2017 -3.18323e-12 17.2017 -4.09273e-12 17.2017 -9.09495e-13 17.2016 -1.81899e-12 17.2016 -2.27374e-12 17.2015 4.54747e-13 17.2014 1.81899e-12 17.2013 -1.36424e-12 17.2011 1.36424e-12 17.2008 -9.09495e-12 17.2005 -2.27374e-12 17.2 -3.63798e-12 17.1994 0 17.1987 2.27374e-12 17.1978 9.09495e-13 17.1966 4.54747e-13 17.1951 -1.81899e-12 17.1934 -2.27374e-12 17.1913 5.45697e-12 17.1888 5.91172e-12 17.1859 -4.54747e-13 17.1826 -2.27374e-12 17.1787 -4.09273e-12 17.1743 1.36424e-12 17.1694 -1.81899e-12 17.164 9.09495e-13 17.158 -4.54747e-13 17.1515 1.36424e-12 17.1445 -9.09495e-13 17.137 -1.81899e-12 17.129 1.36424e-12 17.1207 5.00222e-12 17.112 3.18323e-12 17.1031 4.09273e-12 17.094 8.18545e-12 17.0848 1.00044e-11 17.0756 3.18323e-12 17.0664 -2.27374e-12 17.0573 -1.81899e-12 17.0484 -1.81899e-12 17.0398 -2.72848e-12 17.0316 -2.72848e-12 17.0237 -3.63798e-12 17.0162 3.63798e-12 17.0092 3.63798e-12 17.0026 -3.63798e-12 16.9965 -9.09495e-13 16.9907 5.45697e-12 16.9853 0 16.9802 -5.45697e-12 16.9754 -4.09273e-12 16.9707 1.36424e-12 16.9662 4.54747e-13 16.9616 -4.54747e-13 16.9571 2.27374e-12 16.9524 -1.36424e-12 16.9476 2.72848e-12 16.9425 2.72848e-12 16.9372 1.81899e-12 16.9314 9.09495e-13 16.9253 -9.09495e-13 16.9186 6.36646e-12 16.9115 2.27374e-12 16.9039 3.63798e-12 16.8957 4.54747e-13 16.887 -3.63798e-12 16.8777 -1.81899e-12 16.8679 -9.09495e-13 16.8575 1.36424e-12 16.8465 4.54747e-13 16.835 2.72848e-12 16.823 6.36646e-12 16.8104 1.36424e-12 16.7974 -1.81899e-12 16.7838 -4.09273e-12 16.7698 9.09495e-13 16.7554 -2.72848e-12 16.7405 1.36424e-12 16.7252 9.09495e-13 16.7095 1.81899e-12 16.6934 4.09273e-12 16.6769 5.45697e-12 16.6601 9.09495e-12 16.6429 -2.72848e-12 16.6254 -4.09273e-12 16.6076 -2.72848e-12 16.5894 1.36424e-12 16.571 -2.27374e-12 16.5522 1.81899e-12 16.5331 4.54747e-13 16.5137 -9.09495e-13 16.494 5.00222e-12 16.474 9.09495e-13 16.4538 1.36424e-12 16.4332 -4.09273e-12 16.4124 -7.7307e-12 16.3913 -7.7307e-12 16.3698 -3.18323e-12 16.3481 -9.09495e-13 16.3262 1.36424e-12 16.3039 1.36424e-12 16.2814 -3.18323e-12 16.2585 -5.45697e-12 16.2354 9.09495e-13 16.212 9.09495e-13 16.1884 9.09495e-13 16.1644 9.09495e-13 16.1402 -1.36424e-12 16.1157 -3.18323e-12 16.0909 -4.54747e-13 16.0658 4.09273e-12 16.0405 -1.36424e-12 16.0148 -1.81899e-12 15.9889 -2.72848e-12 15.9628 -2.72848e-12 15.9363 -4.54747e-12 15.9096 -4.54747e-13 15.8825 -4.54747e-13 15.8552 -4.54747e-13 15.8277 9.09495e-13 15.7998 3.63798e-12 15.7717 4.54747e-13 15.7433 1.81899e-12 15.7146 9.09495e-13 15.6857 2.27374e-12 15.6565 -4.54747e-13 15.627 -4.54747e-13 15.5972 -4.54747e-13 15.5672 3.63798e-12 15.5369 2.72848e-12 15.5063 -4.54747e-13 15.4754 -9.09495e-13 15.4443 -1.36424e-12 15.4129 -6.82121e-12 15.3812 -6.82121e-12 15.3493 1.81899e-12 15.3171 2.27374e-12 15.2846 -4.54747e-12 15.2519 -3.18323e-12 15.2189 -2.27374e-12 15.1856 0 15.1521 -1.36424e-12 15.1183 4.54747e-13 15.0842 3.63798e-12 15.0499 3.63798e-12 15.0153 5.45697e-12 14.9805 -1.81899e-12 14.9454 -7.27596e-12 14.91 0 14.8744 -4.54747e-13 14.8385 4.54747e-13 14.8024 0 14.766 -4.54747e-12 14.7294 3.18323e-12 14.6925 -5.00222e-12 14.6554 -5.00222e-12 14.618 2.27374e-12 14.5803 7.27596e-12 14.5424 9.54969e-12 14.5043 6.82121e-12 14.4659 1.81899e-12 14.4273 -2.72848e-12 14.3884 1.36424e-12 14.3493 -9.09495e-13 14.3099 -4.54747e-13 14.2703 -9.09495e-13 14.2305 -1.36424e-12 14.1904 -4.54747e-13 14.1501 4.54747e-12 14.1096 2.27374e-12 14.0688 -7.27596e-12 14.0278 -4.54747e-13 13.9865 -6.36646e-12 13.945 -6.82121e-12 13.9033 -4.54747e-12 13.8614 -5.91172e-12 13.8192 -1.36424e-12 13.7769 4.09273e-12 13.7343 2.72848e-12 13.6914 4.09273e-12 13.6484 3.63798e-12 13.6051 2.72848e-12 13.5616 2.72848e-12 13.5179 4.09273e-12 13.474 3.63798e-12 13.4299 6.82121e-12 13.3856 4.54747e-13 13.341 -3.18323e-12 13.2963 3.63798e-12 13.2513 -3.63798e-12 13.2061 -5.00222e-12 13.1608 -6.36646e-12 13.1152 -4.54747e-12 13.0694 -7.27596e-12 13.0235 -4.54747e-12 12.9773 4.54747e-13 12.931 -1.36424e-12 12.8844 -6.82121e-12 12.8377 -4.54747e-12 12.7908 -4.09273e-12 12.7436 -2.27374e-12 12.6963 -9.09495e-13 12.6489 -3.18323e-12 12.6012 6.82121e-12 12.5533 4.54747e-13 12.5053 -1.36424e-12 12.4571 -3.63798e-12 12.4087 4.54747e-12 12.3602 4.54747e-12 12.3115 3.63798e-12 12.2626 2.27374e-12 12.2135 -1.36424e-12 12.1643 -3.18323e-12 12.115 0 12.0654 2.27374e-12 12.0157 -1.36424e-12 11.9659 0 11.9158 -9.09495e-13 11.8657 -9.09495e-13 11.8154 1.36424e-12 11.7649 -4.09273e-12 11.7143 -1.36424e-12 11.6636 1.36424e-12 11.6127 2.27374e-12 11.5616 -1.36424e-12 11.5105 -2.72848e-12 11.4591 -5.00222e-12 11.4077 -3.63798e-12 11.3561 -9.09495e-13 11.3044 -1.81899e-12 11.2526 -4.54747e-12 11.2006 9.09495e-13 11.1486 2.27374e-12 11.0964 0 11.044 -4.09273e-12 10.9916 -1.81899e-12 10.939 9.09495e-13 10.8864 5.00222e-12 10.8336 3.63798e-12 10.7807 2.27374e-12 10.7277 5.00222e-12 10.6747 4.54747e-13 10.6215 4.54747e-12 10.5682 -3.18323e-12 10.5148 -8.6402e-12 10.4613 1.36424e-12 10.4078 -9.09495e-13 10.3541 0 10.3004 -2.27374e-12 10.2465 -5.91172e-12 10.1926 -5.91172e-12 10.1386 0 10.0845 5.45697e-12 10.0304 1.36424e-12 9.97618 5.00222e-12 9.92189 2.72848e-12 9.86753 2.72848e-12 9.81311 3.18323e-12 9.75862 0 9.70407 -9.09495e-13 9.64946 -9.09495e-13 9.5948 2.72848e-12 9.54008 2.72848e-12 9.48531 2.72848e-12 9.43049 -1.81899e-12 9.37563 -5.45697e-12 9.32072 4.54747e-13 9.26576 5.91172e-12 9.21077 -5.91172e-12 9.15574 1.81899e-12 9.10068 1.81899e-12 9.04558 -9.09495e-13 8.99045 -2.72848e-12 8.9353 -2.72848e-12 8.88012 2.27374e-12 8.82491 -4.54747e-13 8.76969 -4.54747e-13 8.71445 2.27374e-12 8.65919 4.54747e-12 8.60392 2.72848e-12 8.54864 2.72848e-12 8.49336 -4.54747e-13 8.43806 -4.54747e-13 8.38276 -1.36424e-12 8.32747 5.45697e-12 8.27217 -3.18323e-12 8.21688 4.09273e-12 8.16159 1.36424e-12 8.10632 3.18323e-12 8.05105 -2.72848e-12 7.9958 2.72848e-12 7.94057 -7.7307e-12 7.88535 3.63798e-12 7.83015 -1.13687e-11 7.77498 1.81899e-11 7.71984 -2.77396e-11 7.66472 3.5925e-11 7.60964 -2.68301e-11 7.55459 2.00089e-11 7.49957 5.45697e-12 7.44459 -1.18234e-11 7.38965 1.86446e-11 7.33476 -6.82121e-12 7.27991 -1.36424e-12 7.22511 1.18234e-11 7.17036 -5.00222e-12 7.11567 -6.82121e-12 7.06102 4.09273e-12 7.00644 -1.36424e-12 6.95192 -7.27596e-12 3.63798e-12 17.1868 -5.02275 17.1841 -1.61446 17.1904 -0.5033 17.2166 -0.165603 17.224 -0.0692637 17.2366 -0.0581412 17.2395 -0.0674731 17.2325 -0.097439 17.2176 -0.144446 17.1961 -0.202247 17.1702 -0.260666 17.1425 -0.305691 17.1147 -0.322411 17.0882 -0.299539 17.0638 -0.233042 17.0419 -0.129809 17.0234 -0.00132884 17.0024 0.13751 16.9867 0.262603 16.977 0.364886 16.9747 0.43827 16.9799 0.479439 16.9915 0.489459 17.0076 0.472553 17.026 0.434323 17.0447 0.381734 17.0621 0.321803 17.0772 0.260773 17.0895 0.203508 17.0991 0.153175 17.1062 0.111382 17.1113 0.078339 17.1148 0.0533598 17.1172 0.0352386 17.1187 0.0225864 17.1196 0.0140646 17.1202 0.00851641 17.1205 0.00501889 17.1207 0.00288092 17.1209 0.00161196 17.1209 0.00087979 17.121 0.00046871 17.121 0.000243879 17.121 0.000123996 17.121 6.15872e-05 17.121 2.99051e-05 17.1211 1.41878e-05 17.1211 6.52847e-06 17.1211 2.89429e-06 17.1212 1.20467e-06 17.1212 4.34607e-07 17.1213 9.05993e-08 17.1213 -6.01558e-08 17.1214 -1.25066e-07 17.1215 -1.52462e-07 17.1216 -1.63831e-07 17.1216 -1.68431e-07 17.1217 -1.70146e-07 17.1218 -1.70675e-07 17.1218 -1.70571e-07 17.1218 -1.70173e-07 17.1218 -1.69018e-07 17.1217 -1.67052e-07 17.1215 -1.66382e-07 17.1212 -1.64415e-07 17.1208 -1.62021e-07 17.1202 -1.59282e-07 17.1195 -1.55898e-07 17.1185 -1.52254e-07 17.1173 -1.48019e-07 17.1158 -1.43335e-07 17.1141 -1.38433e-07 17.112 -1.33001e-07 17.1096 -1.27658e-07 17.1069 -1.22092e-07 17.1039 -1.16566e-07 17.1005 -1.11555e-07 17.0969 -1.06594e-07 17.0929 -1.02618e-07 17.0888 -9.92836e-08 17.0844 -9.68339e-08 17.0799 -9.59567e-08 17.0753 -9.58266e-08 17.0708 -9.76106e-08 17.0663 -1.00754e-07 17.062 -1.05241e-07 17.0579 -1.11919e-07 17.0542 -1.19286e-07 17.0508 -1.28727e-07 17.0479 -1.3932e-07 17.0456 -1.5055e-07 17.0439 -1.63671e-07 17.0427 -1.76303e-07 17.0423 -1.89196e-07 17.0425 -2.06474e-07 17.0435 -2.27265e-07 17.0453 -2.35344e-07 17.0476 -2.46817e-07 17.0506 -2.58269e-07 17.0541 -2.68494e-07 17.0581 -2.77337e-07 17.0626 -2.84689e-07 17.0674 -2.90474e-07 17.0724 -2.9463e-07 17.0777 -2.97171e-07 17.0832 -2.98111e-07 17.0887 -2.97547e-07 17.0942 -2.95588e-07 17.0996 -2.9234e-07 17.1049 -2.87964e-07 17.1101 -2.8259e-07 17.115 -2.76426e-07 17.1197 -2.69623e-07 17.1242 -2.62349e-07 17.1283 -2.54764e-07 17.1321 -2.47013e-07 17.1357 -2.39233e-07 17.1389 -2.31576e-07 17.1419 -2.24088e-07 17.1445 -2.16924e-07 17.1469 -2.10082e-07 17.149 -2.03694e-07 17.1508 -1.97734e-07 17.1525 -1.92256e-07 17.1539 -1.87269e-07 17.1552 -1.82768e-07 17.1562 -1.78718e-07 17.1572 -1.75188e-07 17.158 -1.72011e-07 17.1587 -1.69352e-07 17.1593 -1.66962e-07 17.1598 -1.64965e-07 17.1602 -1.63231e-07 17.1606 -1.61724e-07 17.1609 -1.6045e-07 17.1612 -1.59348e-07 17.1615 -1.58257e-07 17.1617 -1.57328e-07 17.1618 -1.56222e-07 17.1619 -1.55222e-07 17.162 -1.54073e-07 17.1619 -1.52166e-07 17.1618 -1.49355e-07 17.1615 -1.48004e-07 17.1612 -1.45712e-07 17.1606 -1.42817e-07 17.1599 -1.39438e-07 17.1589 -1.35761e-07 17.1578 -1.3144e-07 17.1563 -1.26873e-07 17.1546 -1.21878e-07 17.1526 -1.16484e-07 17.1502 -1.11131e-07 17.1476 -1.05395e-07 17.1446 -9.99421e-08 17.1412 -9.46793e-08 17.1376 -8.96243e-08 17.1337 -8.55589e-08 17.1295 -8.17986e-08 17.1251 -7.92802e-08 17.1206 -7.79578e-08 17.116 -7.7463e-08 17.1113 -7.90847e-08 17.1068 -8.16453e-08 17.1023 -8.59673e-08 17.0981 -9.20609e-08 17.0942 -9.90344e-08 17.0907 -1.08392e-07 17.0876 -1.18319e-07 17.0851 -1.29624e-07 17.0831 -1.42255e-07 17.0818 -1.54701e-07 17.0811 -1.68447e-07 17.081 -1.81787e-07 17.0818 -2.04893e-07 17.0832 -2.15771e-07 17.0853 -2.25763e-07 17.0881 -2.37445e-07 17.0914 -2.48042e-07 17.0952 -2.57309e-07 17.0994 -2.6512e-07 17.1041 -2.71372e-07 17.109 -2.76034e-07 17.1142 -2.79081e-07 17.1195 -2.80551e-07 17.1249 -2.80495e-07 17.1304 -2.7902e-07 17.1358 -2.76229e-07 17.1411 -2.7228e-07 17.1462 -2.67316e-07 17.1512 -2.61501e-07 17.1559 -2.55011e-07 17.1604 -2.47999e-07 17.1646 -2.40626e-07 17.1685 -2.3305e-07 17.1721 -2.25406e-07 17.1754 -2.17817e-07 17.1785 -2.10384e-07 17.1812 -2.03202e-07 17.1837 -1.9634e-07 17.1859 -1.89865e-07 17.1878 -1.83804e-07 17.1895 -1.78189e-07 17.191 -1.73041e-07 17.1923 -1.68357e-07 17.1935 -1.64131e-07 17.1944 -1.60354e-07 17.1953 -1.57003e-07 17.196 -1.54041e-07 17.1966 -1.51451e-07 17.1971 -1.49206e-07 17.1975 -1.47269e-07 17.1979 -1.45606e-07 17.1982 -1.44192e-07 17.1985 -1.42998e-07 17.1987 -1.42002e-07 17.1989 -1.41171e-07 17.199 -1.40485e-07 17.1991 -1.39918e-07 17.1992 -1.39462e-07 17.1993 -1.39097e-07 17.1994 -1.38802e-07 17.1995 -1.38566e-07 17.1996 -1.38387e-07 17.1996 -1.3825e-07 17.1997 -1.38141e-07 17.1997 -1.38068e-07 17.1998 -1.38014e-07 17.1999 -1.37977e-07 17.1999 -1.37944e-07 17.2 -1.37934e-07 17.2 -1.37928e-07 17.2001 -1.37935e-07 17.2001 -1.37939e-07 17.2002 -1.37944e-07 17.2003 -1.37954e-07 17.2003 -1.37964e-07 17.2004 -1.3797e-07 17.2005 -1.37967e-07 17.2005 -1.37966e-07 17.2006 -1.37966e-07 17.2007 -1.37965e-07 17.2008 -1.37956e-07 17.2008 -1.37943e-07 17.2009 -1.37919e-07 17.201 -1.37897e-07 17.2011 -1.37867e-07 17.2011 -1.37828e-07 17.2012 -1.37782e-07 17.2013 -1.37734e-07 17.2014 -1.37675e-07 17.2014 -1.37607e-07 17.2015 -1.37538e-07 17.2016 -1.37461e-07 17.2016 -1.37399e-07 17.2017 -1.37303e-07 17.2017 -1.37215e-07 17.2018 -1.37121e-07 17.2018 -1.37025e-07 17.2019 -1.36928e-07 17.2019 -1.36824e-07 17.202 -1.36711e-07 17.202 -1.3662e-07 17.202 -1.36512e-07 17.202 -1.36408e-07 17.2021 -1.36302e-07 17.2021 -1.36205e-07 17.2021 -1.36113e-07 17.2021 -1.36025e-07 17.2021 -1.35962e-07 17.2021 -1.35847e-07 17.2021 -1.35764e-07 17.2021 -1.3577e-07 17.202 -1.35708e-07 17.202 -1.35698e-07 17.202 -1.35691e-07 17.202 -1.35692e-07 17.202 -1.35747e-07 17.2019 -1.35746e-07 17.2019 -1.35792e-07 17.2019 -1.36094e-07 17.2019 -1.36264e-07 17.2018 -1.36382e-07 17.2018 -1.3659e-07 17.2018 -1.36906e-07 17.2018 -1.37255e-07 17.2018 -1.37656e-07 17.2017 -1.38125e-07 17.2017 -1.38668e-07 17.2017 -1.39259e-07 17.2017 -1.39968e-07 17.2017 -1.40658e-07 17.2016 -1.41506e-07 17.2016 -1.4235e-07 17.2015 -1.43272e-07 17.2014 -1.44255e-07 17.2013 -1.45131e-07 17.2011 -1.46082e-07 17.2008 -1.46967e-07 17.2005 -1.47833e-07 17.2 -1.48462e-07 17.1994 -1.4887e-07 17.1987 -1.49256e-07 17.1978 -1.49082e-07 17.1966 -1.48504e-07 17.1951 -1.47686e-07 17.1934 -1.46141e-07 17.1913 -1.44989e-07 17.1888 -1.42749e-07 17.1859 -1.40314e-07 17.1826 -1.37634e-07 17.1787 -1.34743e-07 17.1743 -1.31569e-07 17.1694 -1.27761e-07 17.164 -1.25224e-07 17.158 -1.2208e-07 17.1515 -1.19809e-07 17.1445 -1.18108e-07 17.137 -1.17059e-07 17.129 -1.16703e-07 17.1207 -1.17292e-07 17.112 -1.18229e-07 17.1031 -1.15636e-07 17.094 -1.29169e-07 17.0848 -1.59597e-07 17.0756 -1.48641e-07 17.0664 -1.53726e-07 17.0573 -1.66797e-07 17.0484 -1.79837e-07 17.0398 -1.93462e-07 17.0316 -2.08046e-07 17.0237 -2.23378e-07 17.0162 -2.39132e-07 17.0092 -2.54967e-07 17.0026 -2.7053e-07 16.9965 -2.85469e-07 16.9907 -2.99488e-07 16.9853 -3.12365e-07 16.9802 -3.23875e-07 16.9754 -3.3386e-07 16.9707 -3.42184e-07 16.9662 -3.48788e-07 16.9616 -3.53623e-07 16.9571 -3.56684e-07 16.9524 -3.58015e-07 16.9476 -3.57668e-07 16.9425 -3.55754e-07 16.9372 -3.52386e-07 16.9314 -3.47704e-07 16.9253 -3.41867e-07 16.9186 -3.35016e-07 16.9115 -3.27336e-07 16.9039 -3.18984e-07 16.8957 -3.10112e-07 16.887 -3.00862e-07 16.8777 -2.91367e-07 16.8679 -2.81752e-07 16.8575 -2.72113e-07 16.8465 -2.62545e-07 16.835 -2.53114e-07 16.823 -2.43872e-07 16.8104 -2.34866e-07 16.7974 -2.26124e-07 16.7838 -2.17654e-07 16.7698 -2.09451e-07 16.7554 -2.01523e-07 16.7405 -1.93844e-07 16.7252 -1.86404e-07 16.7095 -1.79171e-07 16.6934 -1.72119e-07 16.6769 -1.65221e-07 16.6601 -1.5844e-07 16.6429 -1.51767e-07 16.6254 -1.45147e-07 16.6076 -1.38559e-07 16.5894 -1.31972e-07 16.571 -1.25376e-07 16.5522 -1.18731e-07 16.5331 -1.1203e-07 16.5137 -1.05249e-07 16.494 -9.83646e-08 16.474 -9.13737e-08 16.4538 -8.4256e-08 16.4332 -7.70096e-08 16.4124 -6.96155e-08 16.3913 -6.20653e-08 16.3698 -5.43523e-08 16.3481 -4.64747e-08 16.3262 -3.84275e-08 16.3039 -3.02057e-08 16.2814 -2.18179e-08 16.2585 -1.32691e-08 16.2354 -4.48426e-09 16.212 4.52837e-09 16.1884 1.36456e-08 16.1644 2.29697e-08 16.1402 3.24849e-08 16.1157 4.21855e-08 16.0909 5.20895e-08 16.0658 6.21872e-08 16.0405 7.24658e-08 16.0148 8.29441e-08 15.9889 9.36166e-08 15.9628 1.04487e-07 15.9363 1.1555e-07 15.9096 1.26814e-07 15.8825 1.3827e-07 15.8552 1.4992e-07 15.8277 1.61773e-07 15.7998 1.73819e-07 15.7717 1.8606e-07 15.7433 1.98501e-07 15.7146 2.11135e-07 15.6857 2.23975e-07 15.6565 2.37004e-07 15.627 2.50237e-07 15.5972 2.63669e-07 15.5672 2.773e-07 15.5369 2.91127e-07 15.5063 3.05152e-07 15.4754 3.19378e-07 15.4443 3.33803e-07 15.4129 3.48424e-07 15.3812 3.63247e-07 15.3493 3.78278e-07 15.3171 3.93502e-07 15.2846 4.08918e-07 15.2519 4.24542e-07 15.2189 4.40365e-07 15.1856 4.5639e-07 15.1521 4.7261e-07 15.1183 4.89034e-07 15.0842 5.05657e-07 15.0499 5.22479e-07 15.0153 5.39501e-07 14.9805 5.56712e-07 14.9454 5.74128e-07 14.91 5.91755e-07 14.8744 6.09573e-07 14.8385 6.27594e-07 14.8024 6.45808e-07 14.766 6.64221e-07 14.7294 6.82843e-07 14.6925 7.01647e-07 14.6554 7.2066e-07 14.618 7.39876e-07 14.5803 7.59288e-07 14.5424 7.78897e-07 14.5043 7.98699e-07 14.4659 8.18692e-07 14.4273 8.38889e-07 14.3884 8.59287e-07 14.3493 8.79874e-07 14.3099 9.00662e-07 14.2703 9.21644e-07 14.2305 9.42819e-07 14.1904 9.64195e-07 14.1501 9.85764e-07 14.1096 1.00753e-06 14.0688 1.02947e-06 14.0278 1.05162e-06 13.9865 1.07396e-06 13.945 1.0965e-06 13.9033 1.11923e-06 13.8614 1.14214e-06 13.8192 1.16526e-06 13.7769 1.18856e-06 13.7343 1.21205e-06 13.6914 1.23573e-06 13.6484 1.2596e-06 13.6051 1.28365e-06 13.5616 1.3079e-06 13.5179 1.33233e-06 13.474 1.35695e-06 13.4299 1.38176e-06 13.3856 1.40674e-06 13.341 1.43191e-06 13.2963 1.45727e-06 13.2513 1.4828e-06 13.2061 1.50852e-06 13.1608 1.53442e-06 13.1152 1.56051e-06 13.0694 1.58677e-06 13.0235 1.61322e-06 12.9773 1.63985e-06 12.931 1.66665e-06 12.8844 1.69362e-06 12.8377 1.72077e-06 12.7908 1.7481e-06 12.7436 1.77561e-06 12.6963 1.80329e-06 12.6489 1.83113e-06 12.6012 1.85916e-06 12.5533 1.88734e-06 12.5053 1.9157e-06 12.4571 1.94423e-06 12.4087 1.97293e-06 12.3602 2.0018e-06 12.3115 2.03082e-06 12.2626 2.06001e-06 12.2135 2.08937e-06 12.1643 2.11888e-06 12.115 2.14857e-06 12.0654 2.17841e-06 12.0157 2.20841e-06 11.9659 2.23857e-06 11.9158 2.26888e-06 11.8657 2.29935e-06 11.8154 2.32998e-06 11.7649 2.36075e-06 11.7143 2.39169e-06 11.6636 2.42277e-06 11.6127 2.454e-06 11.5616 2.48538e-06 11.5105 2.51691e-06 11.4591 2.54858e-06 11.4077 2.5804e-06 11.3561 2.61236e-06 11.3044 2.64447e-06 11.2526 2.67671e-06 11.2006 2.7091e-06 11.1486 2.74163e-06 11.0964 2.77428e-06 11.044 2.80708e-06 10.9916 2.84001e-06 10.939 2.87307e-06 10.8864 2.90627e-06 10.8336 2.93959e-06 10.7807 2.97305e-06 10.7277 3.00663e-06 10.6747 3.04033e-06 10.6215 3.07416e-06 10.5682 3.1081e-06 10.5148 3.14217e-06 10.4613 3.17637e-06 10.4078 3.21068e-06 10.3541 3.2451e-06 10.3004 3.27964e-06 10.2465 3.31429e-06 10.1926 3.34906e-06 10.1386 3.38394e-06 10.0845 3.41894e-06 10.0304 3.45402e-06 9.97618 3.48922e-06 9.92189 3.52452e-06 9.86753 3.55993e-06 9.81311 3.59543e-06 9.75862 3.63103e-06 9.70407 3.66674e-06 9.64946 3.70253e-06 9.5948 3.73843e-06 9.54008 3.77441e-06 9.48531 3.81049e-06 9.43049 3.84664e-06 9.37563 3.88289e-06 9.32072 3.91923e-06 9.26576 3.95565e-06 9.21077 3.99214e-06 9.15574 4.02873e-06 9.10068 4.06539e-06 9.04558 4.10212e-06 8.99045 4.13893e-06 8.9353 4.17582e-06 8.88012 4.21277e-06 8.82491 4.2498e-06 8.76969 4.28689e-06 8.71445 4.32405e-06 8.65919 4.36128e-06 8.60392 4.39856e-06 8.54864 4.4359e-06 8.49336 4.47331e-06 8.43806 4.51077e-06 8.38276 4.54828e-06 8.32747 4.58585e-06 8.27217 4.62347e-06 8.21688 4.66114e-06 8.16159 4.69885e-06 8.10632 4.73662e-06 8.05105 4.77441e-06 7.9958 4.81226e-06 7.94057 4.85016e-06 7.88535 4.88804e-06 7.83015 4.92611e-06 7.77498 4.96386e-06 7.71984 5.00236e-06 7.66472 5.0396e-06 7.60964 5.07895e-06 7.55459 5.11531e-06 7.49957 5.1556e-06 7.44459 5.19141e-06 7.38965 5.23188e-06 7.33476 5.26797e-06 7.27991 5.30815e-06 7.22511 5.34441e-06 7.17036 5.3846e-06 7.11567 5.41981e-06 7.06102 5.44504e-06 7.00644 5.28603e-06 6.95192 3.28098e-06 -2.38352e-06 17.1035 -4.78159 17.0324 -1.54327 16.9648 -0.435721 16.918 -0.118799 16.8982 -0.0494811 16.8768 -0.0367889 16.8599 -0.0504978 16.8436 -0.0811407 16.8232 -0.124047 16.7965 -0.175585 16.7625 -0.22673 16.7224 -0.265609 16.6785 -0.278485 16.6341 -0.255139 16.5942 -0.192679 16.5631 -0.0972949 16.5445 0.0183704 16.5462 0.136382 16.5643 0.244753 16.598 0.331264 16.644 0.391981 16.6988 0.423952 16.7589 0.429011 16.8201 0.411128 16.8787 0.375549 16.932 0.328407 16.9781 0.275708 17.0163 0.222684 17.0465 0.173329 17.0695 0.13019 17.0864 0.0945174 17.0984 0.0663934 17.1066 0.0451782 17.1121 0.029812 17.1156 0.0190962 17.1178 0.0118851 17.1192 0.00719368 17.12 0.00423788 17.1204 0.00243187 17.1207 0.00136031 17.1208 0.000742234 17.1209 0.000395251 17.121 0.000205552 17.121 0.000104409 17.121 5.17536e-05 17.121 2.50266e-05 17.1211 1.17698e-05 17.1211 5.30919e-06 17.1211 2.24374e-06 17.1212 8.18548e-07 17.1212 1.68849e-07 17.1213 -1.21433e-07 17.1213 -2.48718e-07 17.1214 -3.03649e-07 17.1215 -3.26836e-07 17.1216 -3.36482e-07 17.1216 -3.40355e-07 17.1217 -3.41645e-07 17.1218 -3.4188e-07 17.1218 -3.4134e-07 17.1218 -3.40395e-07 17.1218 -3.38136e-07 17.1217 -3.34056e-07 17.1215 -3.32783e-07 17.1212 -3.28821e-07 17.1208 -3.24045e-07 17.1202 -3.18573e-07 17.1195 -3.11788e-07 17.1185 -3.04526e-07 17.1173 -2.96033e-07 17.1158 -2.86669e-07 17.1141 -2.76884e-07 17.112 -2.65988e-07 17.1096 -2.5533e-07 17.1069 -2.44179e-07 17.1039 -2.33128e-07 17.1005 -2.23124e-07 17.0969 -2.13176e-07 17.0929 -2.05252e-07 17.0888 -1.98566e-07 17.0844 -1.93658e-07 17.0799 -1.91933e-07 17.0753 -1.91639e-07 17.0708 -1.95234e-07 17.0663 -2.01512e-07 17.062 -2.10461e-07 17.0579 -2.23867e-07 17.0542 -2.3856e-07 17.0508 -2.57473e-07 17.0479 -2.78648e-07 17.0456 -3.01066e-07 17.0439 -3.27375e-07 17.0427 -3.52553e-07 17.0423 -3.78623e-07 17.0425 -4.12496e-07 17.0435 -4.54815e-07 17.0453 -4.70649e-07 17.0476 -4.93613e-07 17.0506 -5.16537e-07 17.0541 -5.36982e-07 17.0581 -5.54678e-07 17.0626 -5.69381e-07 17.0674 -5.80945e-07 17.0724 -5.89259e-07 17.0777 -5.94345e-07 17.0832 -5.96225e-07 17.0887 -5.951e-07 17.0942 -5.91177e-07 17.0996 -5.8468e-07 17.1049 -5.75929e-07 17.1101 -5.65179e-07 17.115 -5.52856e-07 17.1197 -5.39243e-07 17.1242 -5.24696e-07 17.1283 -5.09525e-07 17.1321 -4.94024e-07 17.1357 -4.78472e-07 17.1389 -4.63158e-07 17.1419 -4.48175e-07 17.1445 -4.33856e-07 17.1469 -4.20161e-07 17.149 -4.07393e-07 17.1508 -3.95466e-07 17.1525 -3.84512e-07 17.1539 -3.74535e-07 17.1552 -3.65535e-07 17.1562 -3.57447e-07 17.1572 -3.50389e-07 17.158 -3.44023e-07 17.1587 -3.38707e-07 17.1593 -3.33918e-07 17.1598 -3.29937e-07 17.1602 -3.26463e-07 17.1606 -3.23441e-07 17.1609 -3.20908e-07 17.1612 -3.18688e-07 17.1615 -3.16515e-07 17.1617 -3.1466e-07 17.1618 -3.12437e-07 17.1619 -3.10453e-07 17.162 -3.08115e-07 17.1619 -3.04398e-07 17.1618 -2.98687e-07 17.1615 -2.96003e-07 17.1612 -2.91435e-07 17.1606 -2.85628e-07 17.1599 -2.78868e-07 17.1589 -2.71528e-07 17.1578 -2.62869e-07 17.1563 -2.53756e-07 17.1546 -2.43755e-07 17.1526 -2.32956e-07 17.1502 -2.22277e-07 17.1476 -2.10783e-07 17.1446 -1.99894e-07 17.1412 -1.89366e-07 17.1376 -1.7923e-07 17.1337 -1.71137e-07 17.1295 -1.6359e-07 17.1251 -1.58569e-07 17.1206 -1.55925e-07 17.116 -1.54905e-07 17.1113 -1.58208e-07 17.1068 -1.63265e-07 17.1023 -1.71933e-07 17.0981 -1.84135e-07 17.0942 -1.98047e-07 17.0907 -2.16821e-07 17.0876 -2.36621e-07 17.0851 -2.59244e-07 17.0831 -2.8454e-07 17.0818 -3.09363e-07 17.0811 -3.37027e-07 17.081 -3.63466e-07 17.0818 -4.09643e-07 17.0832 -4.31725e-07 17.0853 -4.51468e-07 17.0881 -4.74889e-07 17.0914 -4.96079e-07 17.0952 -5.14609e-07 17.0994 -5.30229e-07 17.1041 -5.42739e-07 17.109 -5.52065e-07 17.1142 -5.5816e-07 17.1195 -5.61098e-07 17.1249 -5.60988e-07 17.1304 -5.58038e-07 17.1358 -5.52463e-07 17.1411 -5.44564e-07 17.1462 -5.34635e-07 17.1512 -5.23005e-07 17.1559 -5.1002e-07 17.1604 -4.95995e-07 17.1646 -4.81257e-07 17.1685 -4.66104e-07 17.1721 -4.50814e-07 17.1754 -4.35636e-07 17.1785 -4.20772e-07 17.1812 -4.0641e-07 17.1837 -3.92683e-07 17.1859 -3.79727e-07 17.1878 -3.67605e-07 17.1895 -3.5638e-07 17.191 -3.46085e-07 17.1923 -3.36715e-07 17.1935 -3.28263e-07 17.1944 -3.20708e-07 17.1953 -3.14001e-07 17.196 -3.08085e-07 17.1966 -3.02907e-07 17.1971 -2.98412e-07 17.1975 -2.94538e-07 17.1979 -2.91209e-07 17.1982 -2.88382e-07 17.1985 -2.85999e-07 17.1987 -2.84006e-07 17.1989 -2.82341e-07 17.199 -2.8097e-07 17.1991 -2.79841e-07 17.1992 -2.7893e-07 17.1993 -2.78196e-07 17.1994 -2.77606e-07 17.1995 -2.77133e-07 17.1996 -2.76775e-07 17.1996 -2.76499e-07 17.1997 -2.76284e-07 17.1997 -2.76137e-07 17.1998 -2.76026e-07 17.1999 -2.7595e-07 17.1999 -2.75888e-07 17.2 -2.75866e-07 17.2 -2.75857e-07 17.2001 -2.75868e-07 17.2001 -2.75876e-07 17.2002 -2.75887e-07 17.2003 -2.75906e-07 17.2003 -2.75927e-07 17.2004 -2.75938e-07 17.2005 -2.75938e-07 17.2005 -2.75937e-07 17.2006 -2.75936e-07 17.2007 -2.75931e-07 17.2008 -2.7591e-07 17.2008 -2.75882e-07 17.2009 -2.75839e-07 17.201 -2.75795e-07 17.2011 -2.75733e-07 17.2011 -2.75656e-07 17.2012 -2.75567e-07 17.2013 -2.7547e-07 17.2014 -2.7535e-07 17.2014 -2.75218e-07 17.2015 -2.75077e-07 17.2016 -2.74926e-07 17.2016 -2.74794e-07 17.2017 -2.74602e-07 17.2017 -2.74429e-07 17.2018 -2.74237e-07 17.2018 -2.74049e-07 17.2019 -2.73854e-07 17.2019 -2.73647e-07 17.202 -2.73423e-07 17.202 -2.73238e-07 17.202 -2.73017e-07 17.202 -2.72817e-07 17.2021 -2.72601e-07 17.2021 -2.72415e-07 17.2021 -2.72227e-07 17.2021 -2.72049e-07 17.2021 -2.71923e-07 17.2021 -2.71699e-07 17.2021 -2.71522e-07 17.2021 -2.71544e-07 17.202 -2.71415e-07 17.202 -2.71391e-07 17.202 -2.7138e-07 17.202 -2.71373e-07 17.202 -2.71493e-07 17.2019 -2.71493e-07 17.2019 -2.71581e-07 17.2019 -2.72185e-07 17.2019 -2.72534e-07 17.2018 -2.72762e-07 17.2018 -2.73176e-07 17.2018 -2.73815e-07 17.2018 -2.74509e-07 17.2018 -2.7531e-07 17.2017 -2.76251e-07 17.2017 -2.77337e-07 17.2017 -2.78516e-07 17.2017 -2.79931e-07 17.2017 -2.81313e-07 17.2016 -2.83017e-07 17.2016 -2.84693e-07 17.2015 -2.86548e-07 17.2014 -2.88516e-07 17.2013 -2.90256e-07 17.2011 -2.92174e-07 17.2008 -2.93916e-07 17.2005 -2.9567e-07 17.2 -2.96918e-07 17.1994 -2.97732e-07 17.1987 -2.98531e-07 17.1978 -2.98158e-07 17.1966 -2.97002e-07 17.1951 -2.95391e-07 17.1934 -2.92349e-07 17.1913 -2.89952e-07 17.1888 -2.85469e-07 17.1859 -2.80606e-07 17.1826 -2.75247e-07 17.1787 -2.69462e-07 17.1743 -2.63202e-07 17.1694 -2.55549e-07 17.164 -2.50486e-07 17.158 -2.44095e-07 17.1515 -2.39629e-07 17.1445 -2.36212e-07 17.137 -2.3413e-07 17.129 -2.33412e-07 17.1207 -2.34606e-07 17.112 -2.36583e-07 17.1031 -2.30856e-07 17.094 -2.58072e-07 17.0848 -3.20397e-07 17.0756 -2.96674e-07 17.0664 -3.07373e-07 17.0573 -3.33615e-07 17.0484 -3.59679e-07 17.0398 -3.86923e-07 17.0316 -4.16087e-07 17.0237 -4.46753e-07 17.0162 -4.78267e-07 17.0092 -5.09935e-07 17.0026 -5.41053e-07 16.9965 -5.70936e-07 16.9907 -5.98982e-07 16.9853 -6.24728e-07 16.9802 -6.47744e-07 16.9754 -6.67713e-07 16.9707 -6.8437e-07 16.9662 -6.97577e-07 16.9616 -7.07247e-07 16.9571 -7.13372e-07 16.9524 -7.16029e-07 16.9476 -7.1534e-07 16.9425 -7.11513e-07 16.9372 -7.04776e-07 16.9314 -6.95415e-07 16.9253 -6.83736e-07 16.9186 -6.7004e-07 16.9115 -6.5468e-07 16.9039 -6.37976e-07 16.8957 -6.20227e-07 16.887 -6.01724e-07 16.8777 -5.82736e-07 16.8679 -5.63506e-07 16.8575 -5.4423e-07 16.8465 -5.25093e-07 16.835 -5.06234e-07 16.823 -4.87754e-07 16.8104 -4.69737e-07 16.7974 -4.52251e-07 16.7838 -4.35311e-07 16.7698 -4.18904e-07 16.7554 -4.03049e-07 16.7405 -3.87692e-07 16.7252 -3.72812e-07 16.7095 -3.58348e-07 16.6934 -3.44245e-07 16.6769 -3.3045e-07 16.6601 -3.16894e-07 16.6429 -3.03535e-07 16.6254 -2.90295e-07 16.6076 -2.77117e-07 16.5894 -2.63949e-07 16.571 -2.50752e-07 16.5522 -2.37468e-07 16.5331 -2.24066e-07 16.5137 -2.105e-07 16.494 -1.96736e-07 16.474 -1.82755e-07 16.4538 -1.68518e-07 16.4332 -1.5402e-07 16.4124 -1.39225e-07 16.3913 -1.24126e-07 16.3698 -1.08702e-07 16.3481 -9.29499e-08 16.3262 -7.68573e-08 16.3039 -6.04105e-08 16.2814 -4.36121e-08 16.2585 -2.64131e-08 16.2354 -8.99718e-09 16.212 8.97353e-09 16.1884 2.72385e-08 16.1644 4.59117e-08 16.1402 6.49493e-08 16.1157 8.43625e-08 16.0909 1.0417e-07 16.0658 1.24362e-07 16.0405 1.44926e-07 16.0148 1.65884e-07 15.9889 1.87234e-07 15.9628 2.08971e-07 15.9363 2.31101e-07 15.9096 2.53622e-07 15.8825 2.76534e-07 15.8552 2.99836e-07 15.8277 3.23537e-07 15.7998 3.4763e-07 15.7717 3.72113e-07 15.7433 3.96996e-07 15.7146 4.22267e-07 15.6857 4.47944e-07 15.6565 4.74004e-07 15.627 5.00468e-07 15.5972 5.27332e-07 15.5672 5.54593e-07 15.5369 5.82247e-07 15.5063 6.10302e-07 15.4754 6.38753e-07 15.4443 6.67604e-07 15.4129 6.96852e-07 15.3812 7.26496e-07 15.3493 7.5655e-07 15.3171 7.86997e-07 15.2846 8.17837e-07 15.2519 8.49084e-07 15.2189 8.80728e-07 15.1856 9.12775e-07 15.1521 9.45217e-07 15.1183 9.78064e-07 15.0842 1.01131e-06 15.0499 1.04495e-06 15.0153 1.07899e-06 14.9805 1.11342e-06 14.9454 1.14826e-06 14.91 1.18351e-06 14.8744 1.21914e-06 14.8385 1.25518e-06 14.8024 1.29161e-06 14.766 1.32844e-06 14.7294 1.36568e-06 14.6925 1.40329e-06 14.6554 1.44132e-06 14.618 1.47975e-06 14.5803 1.51857e-06 14.5424 1.55778e-06 14.5043 1.59739e-06 14.4659 1.63738e-06 14.4273 1.67778e-06 14.3884 1.71856e-06 14.3493 1.75974e-06 14.3099 1.80132e-06 14.2703 1.84329e-06 14.2305 1.88564e-06 14.1904 1.92838e-06 14.1501 1.97152e-06 14.1096 2.01504e-06 14.0688 2.05894e-06 14.0278 2.10325e-06 13.9865 2.14793e-06 13.945 2.193e-06 13.9033 2.23846e-06 13.8614 2.28429e-06 13.8192 2.33052e-06 13.7769 2.37712e-06 13.7343 2.4241e-06 13.6914 2.47146e-06 13.6484 2.51919e-06 13.6051 2.5673e-06 13.5616 2.61579e-06 13.5179 2.66466e-06 13.474 2.71389e-06 13.4299 2.7635e-06 13.3856 2.81347e-06 13.341 2.86381e-06 13.2963 2.91453e-06 13.2513 2.9656e-06 13.2061 3.01705e-06 13.1608 3.06885e-06 13.1152 3.12103e-06 13.0694 3.17355e-06 13.0235 3.22644e-06 12.9773 3.2797e-06 12.931 3.33329e-06 12.8844 3.38724e-06 12.8377 3.44155e-06 12.7908 3.49621e-06 12.7436 3.55121e-06 12.6963 3.60657e-06 12.6489 3.66226e-06 12.6012 3.71831e-06 12.5533 3.77468e-06 12.5053 3.8314e-06 12.4571 3.88846e-06 12.4087 3.94585e-06 12.3602 4.00358e-06 12.3115 4.06164e-06 12.2626 4.12002e-06 12.2135 4.17873e-06 12.1643 4.23777e-06 12.115 4.29713e-06 12.0654 4.35682e-06 12.0157 4.41682e-06 11.9659 4.47713e-06 11.9158 4.53776e-06 11.8657 4.5987e-06 11.8154 4.65995e-06 11.7649 4.72151e-06 11.7143 4.78337e-06 11.6636 4.84554e-06 11.6127 4.908e-06 11.5616 4.97075e-06 11.5105 5.03381e-06 11.4591 5.09716e-06 11.4077 5.1608e-06 11.3561 5.22472e-06 11.3044 5.28894e-06 11.2526 5.35342e-06 11.2006 5.4182e-06 11.1486 5.48325e-06 11.0964 5.54857e-06 11.044 5.61415e-06 10.9916 5.68001e-06 10.939 5.74615e-06 10.8864 5.81254e-06 10.8336 5.87918e-06 10.7807 5.94608e-06 10.7277 6.01325e-06 10.6747 6.08065e-06 10.6215 6.14831e-06 10.5682 6.2162e-06 10.5148 6.28434e-06 10.4613 6.35274e-06 10.4078 6.42135e-06 10.3541 6.4902e-06 10.3004 6.55928e-06 10.2465 6.62859e-06 10.1926 6.69812e-06 10.1386 6.76788e-06 10.0845 6.83787e-06 10.0304 6.90804e-06 9.97618 6.97844e-06 9.92189 7.04904e-06 9.86753 7.11985e-06 9.81311 7.19086e-06 9.75862 7.26207e-06 9.70407 7.33347e-06 9.64946 7.40506e-06 9.5948 7.47685e-06 9.54008 7.54882e-06 9.48531 7.62097e-06 9.43049 7.69329e-06 9.37563 7.76578e-06 9.32072 7.83845e-06 9.26576 7.91129e-06 9.21077 7.98429e-06 9.15574 8.05745e-06 9.10068 8.13077e-06 9.04558 8.20424e-06 8.99045 8.27786e-06 8.9353 8.35163e-06 8.88012 8.42554e-06 8.82491 8.49959e-06 8.76969 8.57378e-06 8.71445 8.64809e-06 8.65919 8.72254e-06 8.60392 8.79711e-06 8.54864 8.8718e-06 8.49336 8.94661e-06 8.43806 9.02153e-06 8.38276 9.09656e-06 8.32747 9.1717e-06 8.27217 9.24693e-06 8.21688 9.32227e-06 8.16159 9.39771e-06 8.10632 9.47322e-06 8.05105 9.54886e-06 7.9958 9.62448e-06 7.94057 9.7004e-06 7.88535 9.77594e-06 7.83015 9.85243e-06 7.77498 9.92743e-06 7.71984 1.00051e-05 7.66472 1.00788e-05 7.60964 1.01582e-05 7.55459 1.02304e-05 7.49957 1.03113e-05 7.44459 1.03828e-05 7.38965 1.04638e-05 7.33476 1.05358e-05 7.27991 1.06165e-05 7.22511 1.06886e-05 7.17036 1.07694e-05 7.11567 1.08399e-05 7.06102 1.08957e-05 7.00644 1.06269e-05 6.95192 6.64095e-06 -4.90821e-06 17.3461 -3.75145 17.0101 -1.20719 16.9303 -0.355938 16.9195 -0.107982 16.9171 -0.0471327 16.9157 -0.035395 16.9008 -0.0355457 16.8659 -0.0462351 16.8108 -0.0690647 16.7361 -0.100929 16.6466 -0.137294 16.5503 -0.16937 16.4567 -0.184933 16.3745 -0.172837 16.3103 -0.127863 16.2688 -0.054005 16.2501 0.0383211 16.2547 0.132515 16.2854 0.214262 16.3399 0.276827 16.4133 0.318018 16.4997 0.336698 16.5926 0.335502 16.6857 0.317725 16.7734 0.287626 16.852 0.249813 16.919 0.208662 16.9738 0.167904 17.0169 0.130338 17.0494 0.0977152 17.0731 0.0708472 17.0899 0.0497216 17.1013 0.0338126 17.1088 0.0223023 17.1136 0.0142811 17.1167 0.00888596 17.1185 0.00537707 17.1196 0.00316692 17.1202 0.00181682 17.1206 0.00101594 17.1208 0.000554103 17.1209 0.000294872 17.121 0.000153185 17.121 7.76787e-05 17.121 3.8361e-05 17.121 1.84119e-05 17.1211 8.52085e-06 17.1211 3.70122e-06 17.1211 1.41488e-06 17.1212 3.52194e-07 17.1212 -1.32349e-07 17.1213 -3.48823e-07 17.1213 -4.43817e-07 17.1214 -4.84977e-07 17.1215 -5.02326e-07 17.1216 -5.09595e-07 17.1216 -5.12465e-07 17.1217 -5.13199e-07 17.1218 -5.13126e-07 17.1218 -5.12123e-07 17.1218 -5.1056e-07 17.1218 -5.07416e-07 17.1217 -5.00945e-07 17.1215 -4.99219e-07 17.1212 -4.93205e-07 17.1208 -4.86069e-07 17.1202 -4.77877e-07 17.1195 -4.67656e-07 17.1185 -4.56831e-07 17.1173 -4.4403e-07 17.1158 -4.29997e-07 17.1141 -4.15356e-07 17.112 -3.98949e-07 17.1096 -3.83036e-07 17.1069 -3.66254e-07 17.1039 -3.49678e-07 17.1005 -3.34727e-07 17.0969 -3.19728e-07 17.0929 -3.07924e-07 17.0888 -2.9784e-07 17.0844 -2.90453e-07 17.0799 -2.87951e-07 17.0753 -2.87417e-07 17.0708 -2.92895e-07 17.0663 -3.0227e-07 17.062 -3.15629e-07 17.0579 -3.35871e-07 17.0542 -3.57799e-07 17.0508 -3.86243e-07 17.0479 -4.17993e-07 17.0456 -4.51502e-07 17.0439 -4.91155e-07 17.0427 -5.28713e-07 17.0423 -5.6849e-07 17.0425 -6.17648e-07 17.0435 -6.82915e-07 17.0453 -7.05892e-07 17.0476 -7.40359e-07 17.0506 -7.74802e-07 17.0541 -8.05468e-07 17.0581 -8.32015e-07 17.0626 -8.54069e-07 17.0674 -8.71411e-07 17.0724 -8.83885e-07 17.0777 -8.91518e-07 17.0832 -8.94333e-07 17.0887 -8.92655e-07 17.0942 -8.86764e-07 17.0996 -8.77023e-07 17.1049 -8.63896e-07 17.1101 -8.47765e-07 17.115 -8.2929e-07 17.1197 -8.08859e-07 17.1242 -7.87047e-07 17.1283 -7.6429e-07 17.1321 -7.41035e-07 17.1357 -7.17717e-07 17.1389 -6.94741e-07 17.1419 -6.72261e-07 17.1445 -6.50797e-07 17.1469 -6.30233e-07 17.149 -6.11102e-07 17.1508 -5.93194e-07 17.1525 -5.76764e-07 17.1539 -5.61807e-07 17.1552 -5.48298e-07 17.1562 -5.36181e-07 17.1572 -5.25598e-07 17.158 -5.16024e-07 17.1587 -5.08077e-07 17.1593 -5.00868e-07 17.1598 -4.94915e-07 17.1602 -4.897e-07 17.1606 -4.85149e-07 17.1609 -4.81383e-07 17.1612 -4.78016e-07 17.1615 -4.74774e-07 17.1617 -4.72001e-07 17.1618 -4.68636e-07 17.1619 -4.65713e-07 17.162 -4.62092e-07 17.1619 -4.56748e-07 17.1618 -4.4797e-07 17.1615 -4.43975e-07 17.1612 -4.37185e-07 17.1606 -4.28431e-07 17.1599 -4.18288e-07 17.1589 -4.07317e-07 17.1578 -3.94274e-07 17.1563 -3.80663e-07 17.1546 -3.65626e-07 17.1526 -3.49406e-07 17.1502 -3.33457e-07 17.1476 -3.16151e-07 17.1446 -2.99867e-07 17.1412 -2.84059e-07 17.1376 -2.688e-07 17.1337 -2.56761e-07 17.1295 -2.45355e-07 17.1251 -2.37871e-07 17.1206 -2.33907e-07 17.116 -2.32305e-07 17.1113 -2.37404e-07 17.1068 -2.44841e-07 17.1023 -2.57893e-07 17.0981 -2.76235e-07 17.0942 -2.9701e-07 17.0907 -3.25322e-07 17.0876 -3.54884e-07 17.0851 -3.88839e-07 17.0831 -4.26869e-07 17.0818 -4.63936e-07 17.0811 -5.05827e-07 17.081 -5.45006e-07 17.0818 -6.13999e-07 17.0832 -6.48125e-07 17.0853 -6.77049e-07 17.0881 -7.12323e-07 17.0914 -7.44114e-07 17.0952 -7.71908e-07 17.0994 -7.95334e-07 17.1041 -8.14102e-07 17.109 -8.28093e-07 17.1142 -8.37237e-07 17.1195 -8.41642e-07 17.1249 -8.4148e-07 17.1304 -8.37055e-07 17.1358 -8.28696e-07 17.1411 -8.16849e-07 17.1462 -8.01952e-07 17.1512 -7.84511e-07 17.1559 -7.65029e-07 17.1604 -7.43994e-07 17.1646 -7.21888e-07 17.1685 -6.9916e-07 17.1721 -6.76227e-07 17.1754 -6.53459e-07 17.1785 -6.31163e-07 17.1812 -6.09619e-07 17.1837 -5.89028e-07 17.1859 -5.69591e-07 17.1878 -5.51407e-07 17.1895 -5.34575e-07 17.191 -5.19132e-07 17.1923 -5.05077e-07 17.1935 -4.924e-07 17.1944 -4.81064e-07 17.1953 -4.71e-07 17.196 -4.62128e-07 17.1966 -4.54362e-07 17.1971 -4.47619e-07 17.1975 -4.41807e-07 17.1979 -4.36815e-07 17.1982 -4.32573e-07 17.1985 -4.29e-07 17.1987 -4.26011e-07 17.1989 -4.23511e-07 17.199 -4.21457e-07 17.1991 -4.19765e-07 17.1992 -4.18398e-07 17.1993 -4.17296e-07 17.1994 -4.1641e-07 17.1995 -4.15699e-07 17.1996 -4.15161e-07 17.1996 -4.14747e-07 17.1997 -4.14428e-07 17.1997 -4.14206e-07 17.1998 -4.14035e-07 17.1999 -4.13923e-07 17.1999 -4.13832e-07 17.2 -4.13797e-07 17.2 -4.13788e-07 17.2001 -4.13801e-07 17.2001 -4.13812e-07 17.2002 -4.13829e-07 17.2003 -4.13856e-07 17.2003 -4.1389e-07 17.2004 -4.13907e-07 17.2005 -4.13912e-07 17.2005 -4.13906e-07 17.2006 -4.13904e-07 17.2007 -4.13896e-07 17.2008 -4.13862e-07 17.2008 -4.13824e-07 17.2009 -4.13758e-07 17.201 -4.13693e-07 17.2011 -4.13601e-07 17.2011 -4.13484e-07 17.2012 -4.13354e-07 17.2013 -4.13208e-07 17.2014 -4.13026e-07 17.2014 -4.12831e-07 17.2015 -4.12616e-07 17.2016 -4.1239e-07 17.2016 -4.12192e-07 17.2017 -4.11899e-07 17.2017 -4.11645e-07 17.2018 -4.11349e-07 17.2018 -4.11076e-07 17.2019 -4.10779e-07 17.2019 -4.1047e-07 17.202 -4.10136e-07 17.202 -4.09858e-07 17.202 -4.0952e-07 17.202 -4.0923e-07 17.2021 -4.08897e-07 17.2021 -4.08627e-07 17.2021 -4.0834e-07 17.2021 -4.08067e-07 17.2021 -4.07881e-07 17.2021 -4.07555e-07 17.2021 -4.07269e-07 17.2021 -4.07327e-07 17.202 -4.07123e-07 17.202 -4.07084e-07 17.202 -4.07065e-07 17.202 -4.07054e-07 17.202 -4.07247e-07 17.2019 -4.07232e-07 17.2019 -4.07362e-07 17.2019 -4.0828e-07 17.2019 -4.08817e-07 17.2018 -4.09142e-07 17.2018 -4.09753e-07 17.2018 -4.1073e-07 17.2018 -4.11762e-07 17.2018 -4.12961e-07 17.2017 -4.14383e-07 17.2017 -4.15998e-07 17.2017 -4.17778e-07 17.2017 -4.19893e-07 17.2017 -4.21959e-07 17.2016 -4.24538e-07 17.2016 -4.27025e-07 17.2015 -4.29829e-07 17.2014 -4.32781e-07 17.2013 -4.35362e-07 17.2011 -4.38285e-07 17.2008 -4.4085e-07 17.2005 -4.43518e-07 17.2 -4.45376e-07 17.1994 -4.46574e-07 17.1987 -4.47841e-07 17.1978 -4.47218e-07 17.1966 -4.45489e-07 17.1951 -4.43135e-07 17.1934 -4.38676e-07 17.1913 -4.34868e-07 17.1888 -4.28117e-07 17.1859 -4.20871e-07 17.1826 -4.12821e-07 17.1787 -4.0413e-07 17.1743 -3.9493e-07 17.1694 -3.83428e-07 17.164 -3.75828e-07 17.158 -3.65965e-07 17.1515 -3.59476e-07 17.1445 -3.54315e-07 17.137 -3.5123e-07 17.129 -3.50129e-07 17.1207 -3.51956e-07 17.112 -3.55197e-07 17.1031 -3.45211e-07 17.094 -3.86407e-07 17.0848 -4.83682e-07 17.0756 -4.43405e-07 17.0664 -4.60886e-07 17.0573 -5.00479e-07 17.0484 -5.39531e-07 17.0398 -5.80385e-07 17.0316 -6.24128e-07 17.0237 -6.70128e-07 17.0162 -7.17398e-07 17.0092 -7.64903e-07 17.0026 -8.11577e-07 16.9965 -8.56402e-07 16.9907 -8.98476e-07 16.9853 -9.37088e-07 16.9802 -9.71617e-07 16.9754 -1.00157e-06 16.9707 -1.02656e-06 16.9662 -1.04637e-06 16.9616 -1.06087e-06 16.9571 -1.07006e-06 16.9524 -1.07405e-06 16.9476 -1.07302e-06 16.9425 -1.06728e-06 16.9372 -1.05717e-06 16.9314 -1.04313e-06 16.9253 -1.02561e-06 16.9186 -1.00507e-06 16.9115 -9.82028e-07 16.9039 -9.56977e-07 16.8957 -9.3035e-07 16.887 -9.02597e-07 16.8777 -8.74113e-07 16.8679 -8.45269e-07 16.8575 -8.16355e-07 16.8465 -7.8765e-07 16.835 -7.59361e-07 16.823 -7.31643e-07 16.8104 -7.04619e-07 16.7974 -6.78384e-07 16.7838 -6.52974e-07 16.7698 -6.28367e-07 16.7554 -6.04581e-07 16.7405 -5.81545e-07 16.7252 -5.59226e-07 16.7095 -5.37532e-07 16.6934 -5.16377e-07 16.6769 -4.95686e-07 16.6601 -4.75356e-07 16.6429 -4.5531e-07 16.6254 -4.35448e-07 16.6076 -4.15682e-07 16.5894 -3.95933e-07 16.571 -3.76137e-07 16.5522 -3.56212e-07 16.5331 -3.36106e-07 16.5137 -3.15758e-07 16.494 -2.95115e-07 16.474 -2.74143e-07 16.4538 -2.52785e-07 16.4332 -2.31037e-07 16.4124 -2.08841e-07 16.3913 -1.86195e-07 16.3698 -1.63061e-07 16.3481 -1.39436e-07 16.3262 -1.15306e-07 16.3039 -9.06457e-08 16.2814 -6.54845e-08 16.2585 -3.98695e-08 16.2354 -1.3214e-08 16.212 1.35392e-08 16.1884 4.08227e-08 16.1644 6.88965e-08 16.1402 9.74378e-08 16.1157 1.26555e-07 16.0909 1.56256e-07 16.0658 1.86545e-07 16.0405 2.17385e-07 16.0148 2.48825e-07 15.9889 2.80845e-07 15.9628 3.13456e-07 15.9363 3.46647e-07 15.9096 3.80426e-07 15.8825 4.14797e-07 15.8552 4.49745e-07 15.8277 4.85297e-07 15.7998 5.21432e-07 15.7717 5.58159e-07 15.7433 5.95487e-07 15.7146 6.33387e-07 15.6857 6.71908e-07 15.6565 7.10998e-07 15.627 7.50691e-07 15.5972 7.90989e-07 15.5672 8.31879e-07 15.5369 8.73363e-07 15.5063 9.15443e-07 15.4754 9.58118e-07 15.4443 1.0014e-06 15.4129 1.04527e-06 15.3812 1.08974e-06 15.3493 1.13481e-06 15.3171 1.18048e-06 15.2846 1.22675e-06 15.2519 1.27362e-06 15.2189 1.32108e-06 15.1856 1.36915e-06 15.1521 1.41781e-06 15.1183 1.46709e-06 15.0842 1.51695e-06 15.0499 1.56741e-06 15.0153 1.61847e-06 14.9805 1.67012e-06 14.9454 1.72238e-06 14.91 1.77525e-06 14.8744 1.8287e-06 14.8385 1.88276e-06 14.8024 1.93741e-06 14.766 1.99265e-06 14.7294 2.0485e-06 14.6925 2.10493e-06 14.6554 2.16197e-06 14.618 2.2196e-06 14.5803 2.27783e-06 14.5424 2.33665e-06 14.5043 2.39606e-06 14.4659 2.45606e-06 14.4273 2.51665e-06 14.3884 2.57783e-06 14.3493 2.6396e-06 14.3099 2.70197e-06 14.2703 2.76492e-06 14.2305 2.82845e-06 14.1904 2.89256e-06 14.1501 2.95727e-06 14.1096 3.02255e-06 14.0688 3.08841e-06 14.0278 3.15486e-06 13.9865 3.22188e-06 13.945 3.28949e-06 13.9033 3.35767e-06 13.8614 3.42642e-06 13.8192 3.49576e-06 13.7769 3.56566e-06 13.7343 3.63613e-06 13.6914 3.70717e-06 13.6484 3.77877e-06 13.6051 3.85094e-06 13.5616 3.92367e-06 13.5179 3.99697e-06 13.474 4.07083e-06 13.4299 4.14523e-06 13.3856 4.22019e-06 13.341 4.29571e-06 13.2963 4.37178e-06 13.2513 4.4484e-06 13.2061 4.52556e-06 13.1608 4.60327e-06 13.1152 4.68153e-06 13.0694 4.76032e-06 13.0235 4.83966e-06 12.9773 4.91953e-06 12.931 4.99993e-06 12.8844 5.08085e-06 12.8377 5.16232e-06 12.7908 5.2443e-06 12.7436 5.32681e-06 12.6963 5.40984e-06 12.6489 5.49339e-06 12.6012 5.57745e-06 12.5533 5.66202e-06 12.5053 5.74709e-06 12.4571 5.83268e-06 12.4087 5.91877e-06 12.3602 6.00536e-06 12.3115 6.09245e-06 12.2626 6.18002e-06 12.2135 6.26808e-06 12.1643 6.35664e-06 12.115 6.44568e-06 12.0654 6.53521e-06 12.0157 6.62521e-06 11.9659 6.71569e-06 11.9158 6.80663e-06 11.8657 6.89804e-06 11.8154 6.98992e-06 11.7649 7.08225e-06 11.7143 7.17505e-06 11.6636 7.26829e-06 11.6127 7.36199e-06 11.5616 7.45612e-06 11.5105 7.55071e-06 11.4591 7.64573e-06 11.4077 7.74119e-06 11.3561 7.83708e-06 11.3044 7.93339e-06 11.2526 8.03013e-06 11.2006 8.12728e-06 11.1486 8.22487e-06 11.0964 8.32284e-06 11.044 8.42122e-06 10.9916 8.52001e-06 10.939 8.61921e-06 10.8864 8.71879e-06 10.8336 8.81876e-06 10.7807 8.91912e-06 10.7277 9.01985e-06 10.6747 9.12096e-06 10.6215 9.22245e-06 10.5682 9.3243e-06 10.5148 9.42652e-06 10.4613 9.5291e-06 10.4078 9.63202e-06 10.3541 9.7353e-06 10.3004 9.83892e-06 10.2465 9.94287e-06 10.1926 1.00472e-05 10.1386 1.01518e-05 10.0845 1.02568e-05 10.0304 1.03621e-05 9.97618 1.04676e-05 9.92189 1.05736e-05 9.86753 1.06798e-05 9.81311 1.07863e-05 9.75862 1.08931e-05 9.70407 1.10002e-05 9.64946 1.11076e-05 9.5948 1.12153e-05 9.54008 1.13232e-05 9.48531 1.14314e-05 9.43049 1.15399e-05 9.37563 1.16487e-05 9.32072 1.17577e-05 9.26576 1.18669e-05 9.21077 1.19764e-05 9.15574 1.20862e-05 9.10068 1.21962e-05 9.04558 1.23064e-05 8.99045 1.24168e-05 8.9353 1.25274e-05 8.88012 1.26383e-05 8.82491 1.27494e-05 8.76969 1.28607e-05 8.71445 1.29721e-05 8.65919 1.30838e-05 8.60392 1.31957e-05 8.54864 1.33077e-05 8.49336 1.34199e-05 8.43806 1.35323e-05 8.38276 1.36448e-05 8.32747 1.37575e-05 8.27217 1.38704e-05 8.21688 1.39834e-05 8.16159 1.40966e-05 8.10632 1.42098e-05 8.05105 1.43233e-05 7.9958 1.44367e-05 7.94057 1.45506e-05 7.88535 1.46638e-05 7.83015 1.47788e-05 7.77498 1.48909e-05 7.71984 1.50079e-05 7.66472 1.51179e-05 7.60964 1.52378e-05 7.55459 1.53451e-05 7.49957 1.54674e-05 7.44459 1.55737e-05 7.38965 1.56962e-05 7.33476 1.58031e-05 7.27991 1.59253e-05 7.22511 1.60324e-05 7.17036 1.61546e-05 7.11567 1.62604e-05 7.06102 1.63562e-05 7.00644 1.60786e-05 6.95192 1.01609e-05 -7.71654e-06 16.4414 -2.40499 15.9549 -0.720659 15.7762 -0.177229 15.7179 -0.0496411 15.6883 -0.0175409 15.6688 -0.0158813 15.654 -0.020732 15.6398 -0.0320481 15.6194 -0.0486739 15.59 -0.0714744 15.5506 -0.0980085 15.5043 -0.123108 15.4583 -0.138937 15.424 -0.138088 15.4147 -0.116715 15.44 -0.0769411 15.5031 -0.0234349 15.6018 0.0342468 15.7276 0.0886004 15.8728 0.131395 16.0289 0.160743 16.1886 0.175824 16.3454 0.178013 16.4928 0.169918 16.6258 0.154367 16.7414 0.134228 16.8379 0.112102 16.9157 0.0901352 16.9762 0.0698915 17.0217 0.0523394 17.0547 0.0379017 17.0779 0.0265697 17.0937 0.0180493 17.1042 0.0118935 17.1109 0.00760911 17.115 0.00473066 17.1176 0.00286045 17.1191 0.00168349 17.1199 0.000965074 17.1204 0.000539204 17.1207 0.000293763 17.1208 0.000156075 17.1209 8.08456e-05 17.121 4.07823e-05 17.121 1.99245e-05 17.121 9.34599e-06 17.1211 4.10289e-06 17.1211 1.54886e-06 17.1211 3.37343e-07 17.1212 -2.25562e-07 17.1212 -4.82541e-07 17.1213 -5.97332e-07 17.1213 -6.47857e-07 17.1214 -6.70037e-07 17.1215 -6.7932e-07 17.1216 -6.83329e-07 17.1216 -6.84825e-07 17.1217 -6.84819e-07 17.1218 -6.84432e-07 17.1218 -6.8292e-07 17.1218 -6.8063e-07 17.1218 -6.76973e-07 17.1217 -6.6766e-07 17.1215 -6.65688e-07 17.1212 -6.57552e-07 17.1208 -6.48097e-07 17.1202 -6.37202e-07 17.1195 -6.2349e-07 17.1185 -6.09191e-07 17.1173 -5.92002e-07 17.1158 -5.7332e-07 17.1141 -5.53869e-07 17.112 -5.31872e-07 17.1096 -5.10808e-07 17.1069 -4.88311e-07 17.1039 -4.66213e-07 17.1005 -4.46392e-07 17.0969 -4.26237e-07 17.0929 -4.10664e-07 17.0888 -3.97113e-07 17.0844 -3.87213e-07 17.0799 -3.84049e-07 17.0753 -3.83143e-07 17.0708 -3.90619e-07 17.0663 -4.03042e-07 17.062 -4.2072e-07 17.0579 -4.47969e-07 17.0542 -4.76981e-07 17.0508 -5.15048e-07 17.0479 -5.57365e-07 17.0456 -6.01798e-07 17.0439 -6.55052e-07 17.0427 -7.04746e-07 17.0423 -7.58917e-07 17.0425 -8.21577e-07 17.0435 -9.11761e-07 17.0453 -9.41089e-07 17.0476 -9.87015e-07 17.0506 -1.03306e-06 17.0541 -1.07393e-06 17.0581 -1.10934e-06 17.0626 -1.13874e-06 17.0674 -1.16187e-06 17.0724 -1.1785e-06 17.0777 -1.18868e-06 17.0832 -1.19243e-06 17.0887 -1.19021e-06 17.0942 -1.18234e-06 17.0996 -1.16937e-06 17.1049 -1.15187e-06 17.1101 -1.13034e-06 17.115 -1.10574e-06 17.1197 -1.07847e-06 17.1242 -1.0494e-06 17.1283 -1.01906e-06 17.1321 -9.88047e-07 17.1357 -9.56976e-07 17.1389 -9.26329e-07 17.1419 -8.96345e-07 17.1445 -8.67757e-07 17.1469 -8.40296e-07 17.149 -8.1483e-07 17.1508 -7.9092e-07 17.1525 -7.69021e-07 17.1539 -7.4909e-07 17.1552 -7.31056e-07 17.1562 -7.14923e-07 17.1572 -7.00818e-07 17.158 -6.88006e-07 17.1587 -6.77473e-07 17.1593 -6.67802e-07 17.1598 -6.59904e-07 17.1602 -6.5294e-07 17.1606 -6.46841e-07 17.1609 -6.41888e-07 17.1612 -6.37323e-07 17.1615 -6.33035e-07 17.1617 -6.29356e-07 17.1618 -6.24812e-07 17.1619 -6.21012e-07 17.162 -6.1597e-07 17.1619 -6.09285e-07 17.1618 -5.97201e-07 17.1615 -5.91872e-07 17.1612 -5.82978e-07 17.1606 -5.71218e-07 17.1599 -5.5769e-07 17.1589 -5.43141e-07 17.1578 -5.25649e-07 17.1563 -5.07614e-07 17.1546 -4.87496e-07 17.1526 -4.65824e-07 17.1502 -4.44697e-07 17.1476 -4.21481e-07 17.1446 -3.99884e-07 17.1412 -3.78774e-07 17.1376 -3.58315e-07 17.1337 -3.42473e-07 17.1295 -3.27086e-07 17.1251 -3.17202e-07 17.1206 -3.11924e-07 17.116 -3.09645e-07 17.1113 -3.16724e-07 17.1068 -3.26345e-07 17.1023 -3.43855e-07 17.0981 -3.68383e-07 17.0942 -3.95896e-07 17.0907 -4.33935e-07 17.0876 -4.73082e-07 17.0851 -5.18394e-07 17.0831 -5.69265e-07 17.0818 -6.18385e-07 17.0811 -6.74856e-07 17.081 -7.26543e-07 17.0818 -8.17443e-07 17.0832 -8.65396e-07 17.0853 -9.02398e-07 17.0881 -9.49733e-07 17.0914 -9.92133e-07 17.0952 -1.02919e-06 17.0994 -1.06043e-06 17.1041 -1.08546e-06 17.109 -1.10411e-06 17.1142 -1.1163e-06 17.1195 -1.12218e-06 17.1249 -1.12197e-06 17.1304 -1.11607e-06 17.1358 -1.10493e-06 17.1411 -1.08914e-06 17.1462 -1.06927e-06 17.1512 -1.04602e-06 17.1559 -1.02004e-06 17.1604 -9.91998e-07 17.1646 -9.62523e-07 17.1685 -9.32218e-07 17.1721 -9.01642e-07 17.1754 -8.7129e-07 17.1785 -8.41562e-07 17.1812 -8.12835e-07 17.1837 -7.8538e-07 17.1859 -7.59459e-07 17.1878 -7.3521e-07 17.1895 -7.12776e-07 17.191 -6.92184e-07 17.1923 -6.73443e-07 17.1935 -6.56541e-07 17.1944 -6.41425e-07 17.1953 -6.28001e-07 17.196 -6.16175e-07 17.1966 -6.05823e-07 17.1971 -5.96826e-07 17.1975 -5.89076e-07 17.1979 -5.82424e-07 17.1982 -5.76762e-07 17.1985 -5.72e-07 17.1987 -5.68017e-07 17.1989 -5.64683e-07 17.199 -5.61947e-07 17.1991 -5.59687e-07 17.1992 -5.57869e-07 17.1993 -5.56396e-07 17.1994 -5.55215e-07 17.1995 -5.54264e-07 17.1996 -5.53548e-07 17.1996 -5.52996e-07 17.1997 -5.52572e-07 17.1997 -5.52277e-07 17.1998 -5.52042e-07 17.1999 -5.51896e-07 17.1999 -5.51774e-07 17.2 -5.51729e-07 17.2 -5.51716e-07 17.2001 -5.51733e-07 17.2001 -5.5175e-07 17.2002 -5.5177e-07 17.2003 -5.51807e-07 17.2003 -5.51855e-07 17.2004 -5.51873e-07 17.2005 -5.51889e-07 17.2005 -5.51874e-07 17.2006 -5.51874e-07 17.2007 -5.51861e-07 17.2008 -5.51811e-07 17.2008 -5.51767e-07 17.2009 -5.51677e-07 17.201 -5.51592e-07 17.2011 -5.5147e-07 17.2011 -5.51314e-07 17.2012 -5.51138e-07 17.2013 -5.50948e-07 17.2014 -5.50699e-07 17.2014 -5.50446e-07 17.2015 -5.50153e-07 17.2016 -5.4986e-07 17.2016 -5.49591e-07 17.2017 -5.49191e-07 17.2017 -5.48866e-07 17.2018 -5.48458e-07 17.2018 -5.48107e-07 17.2019 -5.47704e-07 17.2019 -5.4729e-07 17.202 -5.46853e-07 17.202 -5.46482e-07 17.202 -5.4602e-07 17.202 -5.4565e-07 17.2021 -5.45183e-07 17.2021 -5.44847e-07 17.2021 -5.4445e-07 17.2021 -5.44083e-07 17.2021 -5.43838e-07 17.2021 -5.43419e-07 17.2021 -5.42995e-07 17.2021 -5.43126e-07 17.202 -5.4283e-07 17.202 -5.42783e-07 17.202 -5.42749e-07 17.202 -5.42734e-07 17.202 -5.43013e-07 17.2019 -5.42957e-07 17.2019 -5.43141e-07 17.2019 -5.44369e-07 17.2019 -5.45125e-07 17.2018 -5.45511e-07 17.2018 -5.46316e-07 17.2018 -5.4766e-07 17.2018 -5.49006e-07 17.2018 -5.50611e-07 17.2017 -5.52523e-07 17.2017 -5.54647e-07 17.2017 -5.57047e-07 17.2017 -5.59857e-07 17.2017 -5.62587e-07 17.2016 -5.6608e-07 17.2016 -5.69334e-07 17.2015 -5.73124e-07 17.2014 -5.77053e-07 17.2013 -5.8044e-07 17.2011 -5.84428e-07 17.2008 -5.87755e-07 17.2005 -5.91383e-07 17.2 -5.93833e-07 17.1994 -5.95383e-07 17.1987 -5.97204e-07 17.1978 -5.96255e-07 17.1966 -5.93959e-07 17.1951 -5.90934e-07 17.1934 -5.85123e-07 17.1913 -5.7977e-07 17.1888 -5.70655e-07 17.1859 -5.61127e-07 17.1826 -5.50343e-07 17.1787 -5.38716e-07 17.1743 -5.26707e-07 17.1694 -5.11557e-07 17.164 -5.01324e-07 17.158 -4.8758e-07 17.1515 -4.79381e-07 17.1445 -4.72422e-07 17.137 -4.68392e-07 17.129 -4.66865e-07 17.1207 -4.69362e-07 17.112 -4.74258e-07 17.1031 -4.58223e-07 17.094 -5.13805e-07 17.0848 -6.50894e-07 17.0756 -5.87968e-07 17.0664 -6.14258e-07 17.0573 -6.67412e-07 17.0484 -7.19401e-07 17.0398 -7.73852e-07 17.0316 -8.32166e-07 17.0237 -8.93501e-07 17.0162 -9.56525e-07 17.0092 -1.01987e-06 17.0026 -1.08209e-06 16.9965 -1.14186e-06 16.9907 -1.19796e-06 16.9853 -1.24944e-06 16.9802 -1.29549e-06 16.9754 -1.33541e-06 16.9707 -1.36874e-06 16.9662 -1.39516e-06 16.9616 -1.4145e-06 16.9571 -1.42675e-06 16.9524 -1.43207e-06 16.9476 -1.43069e-06 16.9425 -1.42305e-06 16.9372 -1.40957e-06 16.9314 -1.39085e-06 16.9253 -1.3675e-06 16.9186 -1.34011e-06 16.9115 -1.30939e-06 16.9039 -1.27599e-06 16.8957 -1.24049e-06 16.887 -1.20348e-06 16.8777 -1.16551e-06 16.8679 -1.12705e-06 16.8575 -1.0885e-06 16.8465 -1.05022e-06 16.835 -1.0125e-06 16.823 -9.75544e-07 16.8104 -9.39513e-07 16.7974 -9.04532e-07 16.7838 -8.70651e-07 16.7698 -8.37843e-07 16.7554 -8.06126e-07 16.7405 -7.75413e-07 16.7252 -7.45654e-07 16.7095 -7.16727e-07 16.6934 -6.88523e-07 16.6769 -6.60935e-07 16.6601 -6.33831e-07 16.6429 -6.07095e-07 16.6254 -5.80607e-07 16.6076 -5.54255e-07 16.5894 -5.27933e-07 16.571 -5.01533e-07 16.5522 -4.7497e-07 16.5331 -4.48157e-07 16.5137 -4.2103e-07 16.494 -3.93505e-07 16.474 -3.6554e-07 16.4538 -3.37062e-07 16.4332 -3.08063e-07 16.4124 -2.78461e-07 16.3913 -2.48268e-07 16.3698 -2.17417e-07 16.3481 -1.85914e-07 16.3262 -1.53737e-07 16.3039 -1.20835e-07 16.2814 -8.72242e-08 16.2585 -5.28617e-08 16.2354 -1.78543e-08 16.212 1.79134e-08 16.1884 5.44369e-08 16.1644 9.17853e-08 16.1402 1.29872e-07 16.1157 1.68702e-07 16.0909 2.08308e-07 16.0658 2.48692e-07 16.0405 2.89821e-07 16.0148 3.31741e-07 15.9889 3.74444e-07 15.9628 4.17919e-07 15.9363 4.62177e-07 15.9096 5.07213e-07 15.8825 5.53037e-07 15.8552 5.99644e-07 15.8277 6.47035e-07 15.7998 6.95219e-07 15.7717 7.44188e-07 15.7433 7.93959e-07 15.7146 8.44496e-07 15.6857 8.95855e-07 15.6565 9.47979e-07 15.627 1.0009e-06 15.5972 1.05462e-06 15.5672 1.10915e-06 15.5369 1.16446e-06 15.5063 1.22057e-06 15.4754 1.27747e-06 15.4443 1.33517e-06 15.4129 1.39368e-06 15.3812 1.45296e-06 15.3493 1.51306e-06 15.3171 1.57395e-06 15.2846 1.63565e-06 15.2519 1.69814e-06 15.2189 1.76143e-06 15.1856 1.82552e-06 15.1521 1.8904e-06 15.1183 1.95609e-06 15.0842 2.02258e-06 15.0499 2.08986e-06 15.0153 2.15794e-06 14.9805 2.22681e-06 14.9454 2.29649e-06 14.91 2.36698e-06 14.8744 2.43825e-06 14.8385 2.51033e-06 14.8024 2.58319e-06 14.766 2.65685e-06 14.7294 2.73131e-06 14.6925 2.80656e-06 14.6554 2.8826e-06 14.618 2.95945e-06 14.5803 3.03708e-06 14.5424 3.11551e-06 14.5043 3.19472e-06 14.4659 3.27472e-06 14.4273 3.35552e-06 14.3884 3.43709e-06 14.3493 3.51945e-06 14.3099 3.60261e-06 14.2703 3.68653e-06 14.2305 3.77124e-06 14.1904 3.85673e-06 14.1501 3.943e-06 14.1096 4.03005e-06 14.0688 4.11785e-06 14.0278 4.20646e-06 13.9865 4.29583e-06 13.945 4.38597e-06 13.9033 4.47687e-06 13.8614 4.56855e-06 13.8192 4.661e-06 13.7769 4.75419e-06 13.7343 4.84815e-06 13.6914 4.94287e-06 13.6484 5.03834e-06 13.6051 5.13457e-06 13.5616 5.23154e-06 13.5179 5.32927e-06 13.474 5.42775e-06 13.4299 5.52695e-06 13.3856 5.6269e-06 13.341 5.7276e-06 13.2963 5.82902e-06 13.2513 5.93118e-06 13.2061 6.03406e-06 13.1608 6.13767e-06 13.1152 6.24202e-06 13.0694 6.34708e-06 13.0235 6.45285e-06 12.9773 6.55935e-06 12.931 6.66656e-06 12.8844 6.77444e-06 12.8377 6.88307e-06 12.7908 6.99239e-06 12.7436 7.10239e-06 12.6963 7.2131e-06 12.6489 7.3245e-06 12.6012 7.43658e-06 12.5533 7.54934e-06 12.5053 7.66276e-06 12.4571 7.77689e-06 12.4087 7.89167e-06 12.3602 8.00712e-06 12.3115 8.12324e-06 12.2626 8.24002e-06 12.2135 8.35743e-06 12.1643 8.4755e-06 12.115 8.59422e-06 12.0654 8.7136e-06 12.0157 8.8336e-06 11.9659 8.95423e-06 11.9158 9.07549e-06 11.8657 9.19737e-06 11.8154 9.31987e-06 11.7649 9.44298e-06 11.7143 9.56671e-06 11.6636 9.69104e-06 11.6127 9.81596e-06 11.5616 9.94147e-06 11.5105 1.00676e-05 11.4591 1.01943e-05 11.4077 1.03216e-05 11.3561 1.04494e-05 11.3044 1.05778e-05 11.2526 1.07068e-05 11.2006 1.08364e-05 11.1486 1.09665e-05 11.0964 1.10971e-05 11.044 1.12283e-05 10.9916 1.136e-05 10.939 1.14923e-05 10.8864 1.1625e-05 10.8336 1.17583e-05 10.7807 1.18921e-05 10.7277 1.20265e-05 10.6747 1.21613e-05 10.6215 1.22966e-05 10.5682 1.24324e-05 10.5148 1.25687e-05 10.4613 1.27055e-05 10.4078 1.28427e-05 10.3541 1.29804e-05 10.3004 1.31185e-05 10.2465 1.32571e-05 10.1926 1.33962e-05 10.1386 1.35357e-05 10.0845 1.36757e-05 10.0304 1.3816e-05 9.97618 1.39568e-05 9.92189 1.40981e-05 9.86753 1.42397e-05 9.81311 1.43817e-05 9.75862 1.45241e-05 9.70407 1.46669e-05 9.64946 1.48101e-05 9.5948 1.49537e-05 9.54008 1.50976e-05 9.48531 1.52419e-05 9.43049 1.53866e-05 9.37563 1.55315e-05 9.32072 1.56769e-05 9.26576 1.58226e-05 9.21077 1.59686e-05 9.15574 1.61149e-05 9.10068 1.62615e-05 9.04558 1.64085e-05 8.99045 1.65557e-05 8.9353 1.67032e-05 8.88012 1.68511e-05 8.82491 1.69992e-05 8.76969 1.71475e-05 8.71445 1.72962e-05 8.65919 1.74451e-05 8.60392 1.75942e-05 8.54864 1.77436e-05 8.49336 1.78932e-05 8.43806 1.8043e-05 8.38276 1.81931e-05 8.32747 1.83434e-05 8.27217 1.84939e-05 8.21688 1.86445e-05 8.16159 1.87954e-05 8.10632 1.89464e-05 8.05105 1.90977e-05 7.9958 1.92489e-05 7.94057 1.94009e-05 7.88535 1.95518e-05 7.83015 1.97051e-05 7.77498 1.98545e-05 7.71984 2.00107e-05 7.66472 2.01568e-05 7.60964 2.03176e-05 7.55459 2.04593e-05 7.49957 2.06242e-05 7.44459 2.07638e-05 7.38965 2.09293e-05 7.33476 2.10699e-05 7.27991 2.12346e-05 7.22511 2.13756e-05 7.17036 2.15404e-05 7.11567 2.16811e-05 7.06102 2.18283e-05 7.00644 2.16989e-05 6.95192 1.39709e-05 -1.10013e-05 4.00223 -1.94202 3.86376 -0.582188 3.82882 -0.142282 3.8189 -0.0397197 3.81632 -0.0149567 3.81388 -0.0134443 3.81004 -0.0169019 3.80266 -0.024668 3.79015 -0.0361646 3.77092 -0.0522452 3.74437 -0.0714798 3.71139 -0.0901648 3.67471 -0.10227 3.6386 -0.101945 3.60813 -0.0859953 3.58747 -0.0555876 3.57913 -0.014635 3.58377 0.0298173 3.60078 0.0716309 3.62757 0.104551 3.66073 0.127201 3.69725 0.138971 3.73447 0.140561 3.77018 0.134083 3.80274 0.121744 3.83114 0.105801 3.85492 0.0883123 3.8741 0.0709684 3.889 0.0549999 3.90019 0.0411687 3.9083 0.0297987 3.91401 0.0208808 3.91789 0.0141793 3.92045 0.00933995 3.92209 0.00597339 3.92312 0.00371246 3.92374 0.00224402 3.9241 0.00132023 3.92432 0.000756533 3.92444 0.000422485 3.9245 0.000230023 3.92454 0.000122088 3.92456 6.31321e-05 3.92457 3.17457e-05 3.92458 1.54093e-05 3.92458 7.12653e-06 3.92459 3.02234e-06 3.92459 1.02365e-06 3.9246 7.57027e-08 3.92461 -3.64576e-07 3.92462 -5.65731e-07 3.92464 -6.55551e-07 3.92465 -6.9516e-07 3.92467 -7.12675e-07 3.92468 -7.19969e-07 3.9247 -7.23181e-07 3.92472 -7.24336e-07 3.92474 -7.24147e-07 3.92475 -7.23689e-07 3.92476 -7.22051e-07 3.92477 -7.19579e-07 3.92476 -7.15892e-07 3.92474 -7.05828e-07 3.92469 -7.03838e-07 3.92463 -6.9521e-07 3.92453 -6.85231e-07 3.9244 -6.73728e-07 3.92423 -6.59216e-07 3.924 -6.44141e-07 3.92373 -6.25936e-07 3.92339 -6.06202e-07 3.92299 -5.85662e-07 3.92252 -5.62379e-07 3.92197 -5.4016e-07 3.92135 -5.16349e-07 3.92065 -4.9299e-07 3.91988 -4.72075e-07 3.91904 -4.50718e-07 3.91814 -4.34313e-07 3.91718 -4.19948e-07 3.91618 -4.09467e-07 3.91515 -4.06169e-07 3.91411 -4.05147e-07 3.91306 -4.13094e-07 3.91203 -4.262e-07 3.91104 -4.44837e-07 3.91011 -4.7371e-07 3.90925 -5.043e-07 3.90848 -5.44578e-07 3.90783 -5.89303e-07 3.90729 -6.36186e-07 3.90689 -6.92591e-07 3.90663 -7.45009e-07 3.90653 -8.02562e-07 3.90658 -8.6802e-07 3.90682 -9.64244e-07 3.90721 -9.94944e-07 3.90775 -1.04347e-06 3.90843 -1.09218e-06 3.90924 -1.1354e-06 3.91016 -1.17283e-06 3.91118 -1.20393e-06 3.91228 -1.22838e-06 3.91344 -1.24597e-06 3.91466 -1.25675e-06 3.9159 -1.26071e-06 3.91717 -1.25838e-06 3.91843 -1.25006e-06 3.91967 -1.23635e-06 3.92089 -1.21786e-06 3.92207 -1.1951e-06 3.9232 -1.16911e-06 3.92428 -1.14027e-06 3.9253 -1.10955e-06 3.92625 -1.07747e-06 3.92713 -1.04468e-06 3.92794 -1.01184e-06 3.92868 -9.79435e-07 3.92935 -9.47728e-07 3.92996 -9.17509e-07 3.9305 -8.88464e-07 3.93099 -8.61552e-07 3.93141 -8.36255e-07 3.93179 -8.13108e-07 3.93212 -7.92035e-07 3.9324 -7.7296e-07 3.93265 -7.55907e-07 3.93286 -7.40989e-07 3.93305 -7.27428e-07 3.93321 -7.16313e-07 3.93334 -7.06066e-07 3.93346 -6.97724e-07 3.93356 -6.90356e-07 3.93365 -6.83893e-07 3.93373 -6.78679e-07 3.93379 -6.73821e-07 3.93385 -6.69301e-07 3.9339 -6.65417e-07 3.93393 -6.60595e-07 3.93395 -6.56608e-07 3.93396 -6.51215e-07 3.93396 -6.44284e-07 3.93392 -6.31402e-07 3.93387 -6.25741e-07 3.93378 -6.16401e-07 3.93365 -6.03946e-07 3.93349 -5.89651e-07 3.93327 -5.74297e-07 3.933 -5.55772e-07 3.93267 -5.36751e-07 3.93228 -5.15467e-07 3.93182 -4.92546e-07 3.93128 -4.7026e-07 3.93066 -4.45678e-07 3.92998 -4.22888e-07 3.92921 -4.00565e-07 3.92838 -3.78905e-07 3.92748 -3.62214e-07 3.92652 -3.45892e-07 3.92551 -3.35474e-07 3.92448 -3.29892e-07 3.92342 -3.27431e-07 3.92236 -3.34998e-07 3.92131 -3.45064e-07 3.9203 -3.63603e-07 3.91933 -3.89549e-07 3.91844 -4.18562e-07 3.91763 -4.58855e-07 3.91693 -5.00149e-07 3.91634 -5.48052e-07 3.91589 -6.01874e-07 3.91558 -6.53701e-07 3.91542 -7.13546e-07 3.91541 -7.68121e-07 3.91558 -8.63705e-07 3.91592 -9.15359e-07 3.9164 -9.53929e-07 3.91702 -1.00408e-06 3.91778 -1.04891e-06 3.91865 -1.0881e-06 3.91963 -1.12112e-06 3.92069 -1.14759e-06 3.92182 -1.16732e-06 3.92301 -1.18021e-06 3.92423 -1.18643e-06 3.92547 -1.18622e-06 3.92672 -1.17999e-06 3.92796 -1.16822e-06 3.92917 -1.15153e-06 3.93035 -1.13053e-06 3.93149 -1.10595e-06 3.93258 -1.07849e-06 3.9336 -1.04885e-06 3.93457 -1.01768e-06 3.93546 -9.85654e-07 3.93629 -9.53327e-07 3.93705 -9.21236e-07 3.93775 -8.89802e-07 3.93837 -8.59436e-07 3.93894 -8.30405e-07 3.93944 -8.03e-07 3.93989 -7.7736e-07 3.94028 -7.53642e-07 3.94062 -7.31867e-07 3.94092 -7.12052e-07 3.94118 -6.94181e-07 3.94141 -6.78196e-07 3.9416 -6.64002e-07 3.94176 -6.51495e-07 3.9419 -6.40553e-07 3.94202 -6.31038e-07 3.94212 -6.2284e-07 3.9422 -6.15808e-07 3.94227 -6.09818e-07 3.94233 -6.04783e-07 3.94238 -6.0057e-07 3.94242 -5.97051e-07 3.94245 -5.94153e-07 3.94248 -5.91761e-07 3.94251 -5.89842e-07 3.94253 -5.88279e-07 3.94255 -5.87028e-07 3.94257 -5.86027e-07 3.94258 -5.85271e-07 3.9426 -5.84687e-07 3.94261 -5.84234e-07 3.94262 -5.83925e-07 3.94264 -5.83674e-07 3.94265 -5.83525e-07 3.94266 -5.83397e-07 3.94268 -5.83348e-07 3.94269 -5.83335e-07 3.9427 -5.83355e-07 3.94272 -5.8337e-07 3.94273 -5.83392e-07 3.94274 -5.83428e-07 3.94276 -5.83483e-07 3.94278 -5.83501e-07 3.94279 -5.83517e-07 3.94281 -5.83501e-07 3.94282 -5.83501e-07 3.94284 -5.83486e-07 3.94286 -5.83435e-07 3.94287 -5.8339e-07 3.94289 -5.83294e-07 3.94291 -5.83199e-07 3.94293 -5.83073e-07 3.94294 -5.8291e-07 3.94296 -5.82721e-07 3.94298 -5.82519e-07 3.94299 -5.82262e-07 3.94301 -5.81993e-07 3.94303 -5.81678e-07 3.94304 -5.81373e-07 3.94305 -5.81089e-07 3.94307 -5.8066e-07 3.94308 -5.80321e-07 3.94309 -5.79887e-07 3.9431 -5.79514e-07 3.94311 -5.79093e-07 3.94312 -5.78657e-07 3.94313 -5.78191e-07 3.94314 -5.77798e-07 3.94315 -5.77307e-07 3.94315 -5.76927e-07 3.94315 -5.7642e-07 3.94316 -5.76076e-07 3.94316 -5.75656e-07 3.94316 -5.75257e-07 3.94316 -5.75008e-07 3.94316 -5.74564e-07 3.94316 -5.74106e-07 3.94316 -5.74257e-07 3.94315 -5.7394e-07 3.94315 -5.73891e-07 3.94314 -5.73853e-07 3.94314 -5.73833e-07 3.94313 -5.7414e-07 3.94313 -5.74068e-07 3.94312 -5.74268e-07 3.94312 -5.75561e-07 3.94311 -5.76381e-07 3.94311 -5.76772e-07 3.9431 -5.77615e-07 3.9431 -5.79053e-07 3.94309 -5.8046e-07 3.94309 -5.82162e-07 3.94308 -5.84183e-07 3.94308 -5.8642e-07 3.94308 -5.88965e-07 3.94307 -5.9193e-07 3.94306 -5.94813e-07 3.94306 -5.98518e-07 3.94304 -6.01935e-07 3.94303 -6.05958e-07 3.943 -6.10109e-07 3.94297 -6.13672e-07 3.94293 -6.17914e-07 3.94287 -6.21398e-07 3.94279 -6.25259e-07 3.94269 -6.27839e-07 3.94255 -6.29463e-07 3.94238 -6.31433e-07 3.94217 -6.30396e-07 3.9419 -6.27977e-07 3.94157 -6.24816e-07 3.94117 -6.18691e-07 3.94069 -6.13009e-07 3.94012 -6.03321e-07 3.93945 -5.93309e-07 3.93868 -5.81898e-07 3.9378 -5.69602e-07 3.9368 -5.56944e-07 3.93568 -5.41071e-07 3.93443 -5.30206e-07 3.93306 -5.15493e-07 3.93157 -5.06991e-07 3.92996 -4.99609e-07 3.92824 -4.95376e-07 3.92642 -4.93746e-07 3.92451 -4.96399e-07 3.92252 -5.01757e-07 3.92047 -4.83888e-07 3.91839 -5.42648e-07 3.91628 -6.89821e-07 3.91416 -6.20541e-07 3.91205 -6.49434e-07 3.90997 -7.05721e-07 3.90794 -7.60652e-07 3.90597 -8.18201e-07 3.90407 -8.79842e-07 3.90227 -9.44674e-07 3.90056 -1.0113e-06 3.89895 -1.07826e-06 3.89744 -1.14405e-06 3.89603 -1.20722e-06 3.89471 -1.26655e-06 3.89347 -1.32097e-06 3.8923 -1.36966e-06 3.89119 -1.41187e-06 3.89012 -1.44711e-06 3.88908 -1.47504e-06 3.88805 -1.4955e-06 3.887 -1.50847e-06 3.88594 -1.51409e-06 3.88483 -1.51264e-06 3.88367 -1.50457e-06 3.88243 -1.49033e-06 3.88112 -1.47054e-06 3.8797 -1.44585e-06 3.87819 -1.41691e-06 3.87656 -1.38443e-06 3.87481 -1.34913e-06 3.87294 -1.31159e-06 3.87094 -1.27247e-06 3.86881 -1.23231e-06 3.86656 -1.19167e-06 3.86417 -1.1509e-06 3.86166 -1.11043e-06 3.85902 -1.07055e-06 3.85626 -1.03147e-06 3.85338 -9.93383e-07 3.85039 -9.56394e-07 3.84728 -9.20567e-07 3.84407 -8.85881e-07 3.84076 -8.52346e-07 3.83735 -8.19868e-07 3.83384 -7.88403e-07 3.83024 -7.57815e-07 3.82655 -7.27996e-07 3.82278 -6.9883e-07 3.81892 -6.70167e-07 3.81499 -6.41894e-07 3.81097 -6.13889e-07 3.80689 -5.86027e-07 3.80272 -5.58197e-07 3.79849 -5.30281e-07 3.79419 -5.02201e-07 3.78981 -4.73845e-07 3.78537 -4.45163e-07 3.78086 -4.16063e-07 3.77628 -3.86495e-07 3.77163 -3.56382e-07 3.76692 -3.25721e-07 3.76214 -2.94422e-07 3.7573 -2.62498e-07 3.75239 -2.2988e-07 3.74742 -1.96571e-07 3.74238 -1.62556e-07 3.73727 -1.27773e-07 3.73211 -9.2241e-08 3.72687 -5.59303e-08 3.72158 -1.88793e-08 3.71621 1.89539e-08 3.71079 5.75728e-08 3.7053 9.70504e-08 3.69975 1.37312e-07 3.69413 1.7837e-07 3.68845 2.20245e-07 3.6827 2.62942e-07 3.67689 3.06429e-07 3.67101 3.50754e-07 3.66508 3.95899e-07 3.65907 4.41869e-07 3.65301 4.88659e-07 3.64688 5.36282e-07 3.64069 5.84732e-07 3.63443 6.34009e-07 3.62811 6.84113e-07 3.62173 7.35059e-07 3.61528 7.86831e-07 3.60877 8.39453e-07 3.6022 8.92891e-07 3.59556 9.47201e-07 3.58887 1.0023e-06 3.58211 1.05826e-06 3.57528 1.11506e-06 3.5684 1.17271e-06 3.56145 1.23118e-06 3.55444 1.29052e-06 3.54736 1.35068e-06 3.54023 1.41168e-06 3.53303 1.47354e-06 3.52577 1.53623e-06 3.51845 1.59978e-06 3.51107 1.66415e-06 3.50363 1.72938e-06 3.49612 1.79546e-06 3.48856 1.86237e-06 3.48093 1.93013e-06 3.47325 1.99873e-06 3.4655 2.06819e-06 3.45769 2.13849e-06 3.44983 2.20962e-06 3.4419 2.2816e-06 3.43391 2.35442e-06 3.42587 2.4281e-06 3.41776 2.50263e-06 3.4096 2.57797e-06 3.40137 2.65419e-06 3.39309 2.73123e-06 3.38475 2.80911e-06 3.37635 2.88784e-06 3.3679 2.96739e-06 3.35938 3.04779e-06 3.35081 3.12905e-06 3.34218 3.21113e-06 3.3335 3.29406e-06 3.32476 3.3778e-06 3.31596 3.46239e-06 3.3071 3.54782e-06 3.29819 3.63406e-06 3.28923 3.72114e-06 3.2802 3.80906e-06 3.27113 3.8978e-06 3.262 3.98737e-06 3.25281 4.07775e-06 3.24357 4.16897e-06 3.23427 4.261e-06 3.22493 4.35384e-06 3.21552 4.44752e-06 3.20607 4.54201e-06 3.19656 4.63732e-06 3.187 4.73343e-06 3.17739 4.83036e-06 3.16773 4.92811e-06 3.15801 5.02665e-06 3.14825 5.12598e-06 3.13843 5.22613e-06 3.12856 5.32708e-06 3.11864 5.42882e-06 3.10868 5.53135e-06 3.09866 5.63468e-06 3.08859 5.7388e-06 3.07848 5.84369e-06 3.06832 5.94937e-06 3.0581 6.05583e-06 3.04785 6.16307e-06 3.03754 6.27108e-06 3.02719 6.37985e-06 3.01679 6.48941e-06 3.00634 6.59974e-06 2.99585 6.71082e-06 2.98532 6.82265e-06 2.97474 6.93526e-06 2.96411 7.04861e-06 2.95344 7.16268e-06 2.94273 7.27753e-06 2.93197 7.39311e-06 2.92117 7.50942e-06 2.91033 7.62647e-06 2.89944 7.74426e-06 2.88852 7.86275e-06 2.87755 7.98198e-06 2.86654 8.1019e-06 2.85549 8.22257e-06 2.8444 8.34392e-06 2.83328 8.46599e-06 2.82211 8.58877e-06 2.8109 8.71223e-06 2.79966 8.83637e-06 2.78838 8.96122e-06 2.77706 9.08674e-06 2.7657 9.21296e-06 2.75431 9.33984e-06 2.74288 9.46738e-06 2.73142 9.59558e-06 2.71992 9.72446e-06 2.70839 9.85397e-06 2.69682 9.98415e-06 2.68522 1.0115e-05 2.67359 1.02464e-05 2.66192 1.03785e-05 2.65022 1.05112e-05 2.63849 1.06446e-05 2.62673 1.07785e-05 2.61494 1.09131e-05 2.60312 1.10483e-05 2.59126 1.1184e-05 2.57938 1.13204e-05 2.56747 1.14574e-05 2.55554 1.15949e-05 2.54357 1.17331e-05 2.53158 1.18718e-05 2.51956 1.2011e-05 2.50751 1.21509e-05 2.49544 1.22912e-05 2.48334 1.24322e-05 2.47122 1.25736e-05 2.45908 1.27157e-05 2.44691 1.28582e-05 2.43471 1.30013e-05 2.4225 1.31449e-05 2.41026 1.3289e-05 2.398 1.34336e-05 2.38573 1.35787e-05 2.37343 1.37243e-05 2.36111 1.38703e-05 2.34877 1.40169e-05 2.33641 1.41639e-05 2.32403 1.43114e-05 2.31164 1.44594e-05 2.29923 1.46078e-05 2.2868 1.47567e-05 2.27435 1.4906e-05 2.26189 1.50557e-05 2.24942 1.52059e-05 2.23693 1.53565e-05 2.22442 1.55075e-05 2.21191 1.56588e-05 2.19938 1.58106e-05 2.18683 1.59628e-05 2.17428 1.61154e-05 2.16171 1.62683e-05 2.14913 1.64216e-05 2.13655 1.65753e-05 2.12395 1.67293e-05 2.11135 1.68837e-05 2.09873 1.70384e-05 2.08611 1.71935e-05 2.07348 1.73488e-05 2.06084 1.75045e-05 2.0482 1.76605e-05 2.03555 1.78168e-05 2.0229 1.79734e-05 2.01024 1.81302e-05 1.99758 1.82874e-05 1.98491 1.84448e-05 1.97224 1.86025e-05 1.95957 1.87604e-05 1.9469 1.89186e-05 1.93422 1.90771e-05 1.92155 1.92357e-05 1.90887 1.93946e-05 1.89619 1.95537e-05 1.88352 1.9713e-05 1.87085 1.98725e-05 1.85818 2.00322e-05 1.84551 2.01922e-05 1.83284 2.0352e-05 1.82018 2.05127e-05 1.80753 2.06723e-05 1.79487 2.08344e-05 1.78223 2.09923e-05 1.76959 2.11576e-05 1.75695 2.13118e-05 1.74432 2.14822e-05 1.73171 2.16315e-05 1.71909 2.18065e-05 1.70649 2.19534e-05 1.6939 2.21291e-05 1.68132 2.22771e-05 1.66874 2.24519e-05 1.65618 2.26004e-05 1.64363 2.27752e-05 1.63109 2.29236e-05 1.61857 2.30838e-05 1.60606 2.30114e-05 1.59356 1.52134e-05 -1.21521e-05 3.47402 -1.54781 3.34854 -0.456713 3.31551 -0.109249 3.30628 -0.0304806 3.30346 -0.0121377 3.30176 -0.0117409 3.29962 -0.014769 3.29522 -0.0202717 3.28656 -0.0275047 3.27182 -0.0375082 3.24994 -0.0496148 3.22126 -0.0615405 3.18806 -0.0691026 3.15438 -0.0682628 3.12532 -0.0567921 3.10546 -0.0351356 3.09763 -0.00634848 3.10234 0.0253256 3.11829 0.0557363 3.14304 0.0797666 3.17358 0.0963792 3.20716 0.10508 3.24142 0.1061 3.2743 0.101085 3.30429 0.0916911 3.33046 0.0796126 3.35237 0.066396 3.37003 0.0533127 3.38376 0.0412827 3.39406 0.0308784 3.40154 0.0223332 3.4068 0.0156381 3.41037 0.0106117 3.41273 0.00698531 3.41425 0.00446459 3.41519 0.00277302 3.41577 0.00167515 3.41611 0.00098493 3.4163 0.000564022 3.41641 0.000314732 3.41647 0.000171181 3.41651 9.0716e-05 3.41652 4.67848e-05 3.41653 2.34077e-05 3.41654 1.12452e-05 3.41655 5.08126e-06 3.41655 2.0279e-06 3.41656 5.41506e-07 3.41656 -1.63414e-07 3.41657 -4.90658e-07 3.41658 -6.40364e-07 3.41659 -7.07183e-07 3.41661 -7.36734e-07 3.41662 -7.49955e-07 3.41664 -7.55415e-07 3.41665 -7.579e-07 3.41667 -7.5873e-07 3.41668 -7.58373e-07 3.4167 -7.57867e-07 3.4167 -7.56107e-07 3.41671 -7.53465e-07 3.4167 -7.49784e-07 3.41668 -7.39037e-07 3.41664 -7.37036e-07 3.41659 -7.27985e-07 3.4165 -7.17555e-07 3.41639 -7.05531e-07 3.41624 -6.90314e-07 3.41604 -6.74583e-07 3.4158 -6.55487e-07 3.41551 -6.34849e-07 3.41516 -6.13374e-07 3.41475 -5.88978e-07 3.41427 -5.65753e-07 3.41373 -5.408e-07 3.41313 -5.16357e-07 3.41246 -4.945e-07 3.41173 -4.72093e-07 3.41094 -4.54966e-07 3.41011 -4.3989e-07 3.40924 -4.28892e-07 3.40834 -4.25498e-07 3.40743 -4.24356e-07 3.40652 -4.32716e-07 3.40562 -4.46402e-07 3.40476 -4.65861e-07 3.40395 -4.96158e-07 3.4032 -5.28085e-07 3.40253 -5.70286e-07 3.40196 -6.17096e-07 3.40149 -6.66085e-07 3.40115 -7.25242e-07 3.40092 -7.79997e-07 3.40083 -8.40519e-07 3.40088 -9.08316e-07 3.40108 -1.0099e-06 3.40142 -1.04178e-06 3.4019 -1.09255e-06 3.40249 -1.14359e-06 3.40319 -1.18884e-06 3.40399 -1.22805e-06 3.40488 -1.26063e-06 3.40584 -1.28623e-06 3.40685 -1.30466e-06 3.40791 -1.31596e-06 3.40899 -1.32011e-06 3.41009 -1.31769e-06 3.41119 -1.30898e-06 3.41227 -1.29465e-06 3.41333 -1.27529e-06 3.41436 -1.25146e-06 3.41535 -1.22426e-06 3.41629 -1.19406e-06 3.41717 -1.16191e-06 3.418 -1.12832e-06 3.41876 -1.09399e-06 3.41947 -1.0596e-06 3.42012 -1.02567e-06 3.4207 -9.92466e-07 3.42123 -9.60837e-07 3.4217 -9.30413e-07 3.42212 -9.02233e-07 3.42249 -8.75742e-07 3.42282 -8.51502e-07 3.42311 -8.29437e-07 3.42336 -8.09443e-07 3.42357 -7.91591e-07 3.42376 -7.75966e-07 3.42392 -7.61749e-07 3.42406 -7.50126e-07 3.42418 -7.39372e-07 3.42428 -7.30652e-07 3.42437 -7.22917e-07 3.42444 -7.16143e-07 3.42451 -7.10701e-07 3.42457 -7.05586e-07 3.42462 -7.00868e-07 3.42465 -6.96808e-07 3.42469 -6.91733e-07 3.42471 -6.87589e-07 3.42471 -6.81885e-07 3.42471 -6.74754e-07 3.42468 -6.6117e-07 3.42463 -6.55215e-07 3.42455 -6.45501e-07 3.42444 -6.3243e-07 3.4243 -6.17474e-07 3.42411 -6.01434e-07 3.42388 -5.82018e-07 3.42359 -5.62137e-07 3.42325 -5.39851e-07 3.42284 -5.1584e-07 3.42238 -4.92557e-07 3.42184 -4.66782e-07 3.42124 -4.42964e-07 3.42058 -4.1959e-07 3.41985 -3.96885e-07 3.41907 -3.79467e-07 3.41823 -3.62324e-07 3.41736 -3.51443e-07 3.41645 -3.45597e-07 3.41553 -3.42967e-07 3.41461 -3.5097e-07 3.4137 -3.61411e-07 3.41282 -3.80835e-07 3.41198 -4.08007e-07 3.4112 -4.38315e-07 3.4105 -4.80555e-07 3.40988 -5.23694e-07 3.40938 -5.73844e-07 3.40898 -6.30225e-07 3.40871 -6.84384e-07 3.40857 -7.47168e-07 3.40857 -8.04263e-07 3.40871 -9.03812e-07 3.409 -9.5888e-07 3.40942 -9.98712e-07 3.40997 -1.05133e-06 3.41063 -1.09827e-06 3.41139 -1.13931e-06 3.41223 -1.1739e-06 3.41316 -1.20162e-06 3.41414 -1.22229e-06 3.41518 -1.23581e-06 3.41624 -1.24233e-06 3.41732 -1.24212e-06 3.41841 -1.23561e-06 3.41949 -1.22328e-06 3.42054 -1.20582e-06 3.42157 -1.18385e-06 3.42256 -1.15811e-06 3.42351 -1.12936e-06 3.4244 -1.09834e-06 3.42524 -1.06571e-06 3.42602 -1.03217e-06 3.42674 -9.98327e-07 3.42741 -9.64726e-07 3.42801 -9.31814e-07 3.42855 -9.00007e-07 3.42904 -8.69622e-07 3.42948 -8.40915e-07 3.42987 -8.14067e-07 3.43021 -7.89234e-07 3.43051 -7.6642e-07 3.43077 -7.45673e-07 3.431 -7.26952e-07 3.43119 -7.10217e-07 3.43136 -6.95352e-07 3.4315 -6.82259e-07 3.43162 -6.70789e-07 3.43173 -6.60828e-07 3.43181 -6.52235e-07 3.43189 -6.44868e-07 3.43195 -6.38604e-07 3.432 -6.33325e-07 3.43204 -6.28916e-07 3.43208 -6.25227e-07 3.43211 -6.22193e-07 3.43213 -6.19686e-07 3.43215 -6.17674e-07 3.43217 -6.16037e-07 3.43219 -6.14727e-07 3.4322 -6.13676e-07 3.43222 -6.12887e-07 3.43223 -6.12268e-07 3.43224 -6.11803e-07 3.43225 -6.11479e-07 3.43226 -6.1122e-07 3.43228 -6.11053e-07 3.43229 -6.10929e-07 3.4323 -6.10882e-07 3.43231 -6.10864e-07 3.43232 -6.10882e-07 3.43233 -6.10893e-07 3.43235 -6.10929e-07 3.43236 -6.10962e-07 3.43237 -6.11028e-07 3.43239 -6.11039e-07 3.4324 -6.11053e-07 3.43241 -6.11042e-07 3.43243 -6.11039e-07 3.43244 -6.11024e-07 3.43246 -6.10966e-07 3.43247 -6.10922e-07 3.43249 -6.10817e-07 3.4325 -6.10722e-07 3.43252 -6.10584e-07 3.43253 -6.10416e-07 3.43255 -6.10213e-07 3.43256 -6.10005e-07 3.43258 -6.09736e-07 3.43259 -6.0946e-07 3.4326 -6.09125e-07 3.43262 -6.08801e-07 3.43263 -6.08503e-07 3.43264 -6.08055e-07 3.43265 -6.0771e-07 3.43266 -6.07244e-07 3.43267 -6.06862e-07 3.43268 -6.06418e-07 3.43269 -6.05964e-07 3.4327 -6.05469e-07 3.4327 -6.05061e-07 3.43271 -6.04545e-07 3.43271 -6.04152e-07 3.43272 -6.0361e-07 3.43272 -6.03253e-07 3.43272 -6.0282e-07 3.43272 -6.02402e-07 3.43272 -6.0214e-07 3.43272 -6.01678e-07 3.43272 -6.01187e-07 3.43272 -6.01365e-07 3.43271 -6.01027e-07 3.43271 -6.00965e-07 3.43271 -6.00932e-07 3.4327 -6.00914e-07 3.4327 -6.01241e-07 3.43269 -6.01154e-07 3.43269 -6.01362e-07 3.43268 -6.02719e-07 3.43268 -6.03592e-07 3.43267 -6.03981e-07 3.43267 -6.04865e-07 3.43266 -6.06382e-07 3.43266 -6.07837e-07 3.43266 -6.09627e-07 3.43265 -6.11748e-07 3.43265 -6.1408e-07 3.43265 -6.1675e-07 3.43264 -6.19846e-07 3.43264 -6.22851e-07 3.43263 -6.26758e-07 3.43262 -6.30302e-07 3.43261 -6.34529e-07 3.43258 -6.38865e-07 3.43256 -6.42587e-07 3.43252 -6.47055e-07 3.43247 -6.50674e-07 3.4324 -6.54731e-07 3.43231 -6.5743e-07 3.43219 -6.59118e-07 3.43204 -6.61206e-07 3.43186 -6.60097e-07 3.43162 -6.57576e-07 3.43134 -6.54305e-07 3.43099 -6.47909e-07 3.43057 -6.4195e-07 3.43007 -6.31753e-07 3.42949 -6.21341e-07 3.42882 -6.0938e-07 3.42805 -5.96519e-07 3.42718 -5.83288e-07 3.42621 -5.66852e-07 3.42512 -5.55432e-07 3.42393 -5.39847e-07 3.42263 -5.31112e-07 3.42123 -5.23367e-07 3.41973 -5.18969e-07 3.41814 -5.17237e-07 3.41648 -5.20035e-07 3.41475 -5.25815e-07 3.41297 -5.0617e-07 3.41116 -5.6755e-07 3.40932 -7.23809e-07 3.40747 -6.48659e-07 3.40564 -6.8008e-07 3.40383 -7.39103e-07 3.40206 -7.96572e-07 3.40034 -8.56806e-07 3.39869 -9.21336e-07 3.39712 -9.89199e-07 3.39563 -1.05895e-06 3.39423 -1.12905e-06 3.39292 -1.19794e-06 3.39169 -1.26408e-06 3.39054 -1.3262e-06 3.38946 -1.38318e-06 3.38844 -1.43417e-06 3.38748 -1.47838e-06 3.38655 -1.51528e-06 3.38564 -1.54454e-06 3.38474 -1.56597e-06 3.38383 -1.57956e-06 3.38291 -1.58546e-06 3.38194 -1.58395e-06 3.38093 -1.57552e-06 3.37985 -1.56061e-06 3.37871 -1.5399e-06 3.37748 -1.51406e-06 3.37616 -1.48377e-06 3.37474 -1.44977e-06 3.37322 -1.41279e-06 3.37159 -1.37349e-06 3.36985 -1.33253e-06 3.368 -1.29049e-06 3.36603 -1.24792e-06 3.36396 -1.20523e-06 3.36177 -1.16286e-06 3.35947 -1.1211e-06 3.35707 -1.08018e-06 3.35456 -1.0403e-06 3.35196 -1.00156e-06 3.34926 -9.64039e-07 3.34646 -9.27714e-07 3.34358 -8.926e-07 3.3406 -8.58581e-07 3.33755 -8.25636e-07 3.33442 -7.936e-07 3.33121 -7.62368e-07 3.32792 -7.3183e-07 3.32457 -7.0181e-07 3.32114 -6.722e-07 3.31765 -6.42871e-07 3.31409 -6.13691e-07 3.31046 -5.84547e-07 3.30678 -5.55312e-07 3.30303 -5.25903e-07 3.29922 -4.96209e-07 3.29535 -4.66171e-07 3.29143 -4.35703e-07 3.28744 -4.04736e-07 3.2834 -3.73209e-07 3.27929 -3.41097e-07 3.27513 -3.08322e-07 3.27092 -2.74886e-07 3.26664 -2.40725e-07 3.26231 -2.05851e-07 3.25793 -1.70228e-07 3.25349 -1.33808e-07 3.24899 -9.65993e-08 3.24443 -5.85678e-08 3.23982 -1.97724e-08 3.23515 1.98415e-08 3.23043 6.02995e-08 3.22565 1.01631e-07 3.22082 1.43787e-07 3.21592 1.86785e-07 3.21098 2.30637e-07 3.20598 2.7534e-07 3.20092 3.20881e-07 3.1958 3.67298e-07 3.19063 4.14577e-07 3.18541 4.62718e-07 3.18013 5.11714e-07 3.17479 5.61584e-07 3.1694 6.12323e-07 3.16396 6.6392e-07 3.15845 7.16387e-07 3.1529 7.69734e-07 3.14729 8.23959e-07 3.14162 8.79063e-07 3.1359 9.35026e-07 3.13012 9.91899e-07 3.12429 1.0496e-06 3.1184 1.10819e-06 3.11246 1.16767e-06 3.10647 1.22805e-06 3.10042 1.28928e-06 3.09432 1.35141e-06 3.08816 1.41441e-06 3.08195 1.47829e-06 3.07568 1.54306e-06 3.06936 1.60873e-06 3.06299 1.67526e-06 3.05656 1.74268e-06 3.05008 1.81099e-06 3.04355 1.88018e-06 3.03697 1.95026e-06 3.03033 2.02121e-06 3.02364 2.09305e-06 3.01689 2.16578e-06 3.0101 2.2394e-06 3.00325 2.31389e-06 2.99635 2.38927e-06 2.98939 2.46551e-06 2.98239 2.54267e-06 2.97533 2.62072e-06 2.96823 2.69962e-06 2.96107 2.77943e-06 2.95386 2.86011e-06 2.9466 2.94167e-06 2.93929 3.02411e-06 2.93193 3.10741e-06 2.92451 3.19161e-06 2.91705 3.27669e-06 2.90954 3.36266e-06 2.90198 3.44949e-06 2.89437 3.53719e-06 2.88671 3.62577e-06 2.879 3.71522e-06 2.87124 3.80554e-06 2.86344 3.89673e-06 2.85558 3.9888e-06 2.84768 4.08172e-06 2.83973 4.17552e-06 2.83173 4.27017e-06 2.82369 4.36568e-06 2.8156 4.46206e-06 2.80746 4.55929e-06 2.79928 4.65739e-06 2.79105 4.75634e-06 2.78277 4.85614e-06 2.77445 4.95679e-06 2.76608 5.05829e-06 2.75767 5.16065e-06 2.74921 5.26384e-06 2.74071 5.36786e-06 2.73216 5.47274e-06 2.72357 5.57845e-06 2.71494 5.68499e-06 2.70626 5.79235e-06 2.69754 5.90056e-06 2.68878 6.00958e-06 2.67997 6.11944e-06 2.67112 6.2301e-06 2.66223 6.34159e-06 2.6533 6.45389e-06 2.64433 6.567e-06 2.63532 6.6809e-06 2.62627 6.79563e-06 2.61717 6.91116e-06 2.60804 7.02748e-06 2.59887 7.1446e-06 2.58966 7.26251e-06 2.58041 7.38122e-06 2.57112 7.50066e-06 2.56179 7.62094e-06 2.55243 7.74197e-06 2.54303 7.86377e-06 2.53359 7.98633e-06 2.52411 8.10968e-06 2.5146 8.23378e-06 2.50505 8.35863e-06 2.49547 8.48421e-06 2.48585 8.61056e-06 2.4762 8.73766e-06 2.46651 8.86549e-06 2.45679 8.99405e-06 2.44703 9.12334e-06 2.43724 9.25334e-06 2.42742 9.38408e-06 2.41757 9.51552e-06 2.40768 9.6477e-06 2.39777 9.78056e-06 2.38782 9.91411e-06 2.37784 1.00484e-05 2.36783 1.01833e-05 2.35779 1.0319e-05 2.34772 1.04553e-05 2.33762 1.05923e-05 2.32749 1.07299e-05 2.31734 1.08682e-05 2.30715 1.10072e-05 2.29694 1.11468e-05 2.2867 1.12871e-05 2.27644 1.1428e-05 2.26614 1.15696e-05 2.25583 1.17118e-05 2.24548 1.18546e-05 2.23512 1.1998e-05 2.22472 1.21421e-05 2.21431 1.22867e-05 2.20387 1.2432e-05 2.1934 1.25778e-05 2.18292 1.27242e-05 2.17241 1.28712e-05 2.16188 1.30188e-05 2.15132 1.3167e-05 2.14075 1.33157e-05 2.13016 1.3465e-05 2.11954 1.36148e-05 2.10891 1.37651e-05 2.09826 1.3916e-05 2.08758 1.40675e-05 2.07689 1.42194e-05 2.06619 1.43719e-05 2.05546 1.45248e-05 2.04472 1.46783e-05 2.03396 1.48323e-05 2.02319 1.49868e-05 2.0124 1.51417e-05 2.00159 1.52971e-05 1.99077 1.5453e-05 1.97994 1.56094e-05 1.96909 1.57662e-05 1.95823 1.59234e-05 1.94736 1.60811e-05 1.93647 1.62392e-05 1.92558 1.63978e-05 1.91467 1.65567e-05 1.90375 1.67161e-05 1.89282 1.68759e-05 1.88188 1.7036e-05 1.87093 1.71965e-05 1.85997 1.73575e-05 1.84901 1.75187e-05 1.83803 1.76804e-05 1.82705 1.78424e-05 1.81606 1.80048e-05 1.80507 1.81675e-05 1.79407 1.83305e-05 1.78306 1.84938e-05 1.77205 1.86575e-05 1.76103 1.88215e-05 1.75001 1.89858e-05 1.73899 1.91503e-05 1.72796 1.93152e-05 1.71694 1.94803e-05 1.7059 1.96457e-05 1.69487 1.98114e-05 1.68384 1.99773e-05 1.6728 2.01434e-05 1.66177 2.03098e-05 1.65073 2.04764e-05 1.6397 2.06432e-05 1.62867 2.08103e-05 1.61764 2.09775e-05 1.60661 2.1145e-05 1.59558 2.13124e-05 1.58456 2.14807e-05 1.57354 2.16477e-05 1.56253 2.18176e-05 1.55152 2.19828e-05 1.54051 2.21561e-05 1.52952 2.23172e-05 1.51852 2.24962e-05 1.50754 2.2652e-05 1.49656 2.28358e-05 1.48559 2.29891e-05 1.47462 2.31737e-05 1.46367 2.3328e-05 1.45272 2.35117e-05 1.44179 2.36665e-05 1.43086 2.38502e-05 1.41995 2.40054e-05 1.40905 2.41772e-05 1.39815 2.41576e-05 1.38727 1.65621e-05 -1.34273e-05 3.11715 -1.11216 2.9888 -0.328372 2.95795 -0.0783921 2.94947 -0.0219973 2.94637 -0.00903906 2.94315 -0.00851368 2.93832 -0.0099476 2.93011 -0.0120775 2.91703 -0.0144318 2.89775 -0.0182324 2.87186 -0.0237354 2.84028 -0.0300135 2.80553 -0.0345218 2.77131 -0.0341146 2.74162 -0.0270996 2.71984 -0.0131382 2.70827 0.00574984 2.7077 0.0262026 2.71773 0.0458152 2.73658 0.0609316 2.76159 0.0712713 2.79009 0.0763428 2.8197 0.0763186 2.84846 0.0722282 2.87487 0.0652288 2.898 0.0564625 2.91742 0.0469833 2.93307 0.0376601 2.94525 0.0291198 2.95438 0.0217573 2.96101 0.0157192 2.96566 0.0109965 2.96882 0.00745542 2.97091 0.00490344 2.97225 0.00313136 2.97308 0.0019433 2.97359 0.00117291 2.97389 0.000689004 2.97406 0.000394154 2.97416 0.000219667 2.97421 0.000119271 2.97424 6.30403e-05 2.97426 3.23639e-05 2.97427 1.60518e-05 2.97427 7.57149e-06 2.97428 3.27681e-06 2.97428 1.15064e-06 2.97429 1.16313e-07 2.97429 -3.74097e-07 2.9743 -6.01551e-07 2.97431 -7.0583e-07 2.97432 -7.52352e-07 2.97433 -7.73012e-07 2.97434 -7.82453e-07 2.97435 -7.86287e-07 2.97437 -7.88132e-07 2.97438 -7.88667e-07 2.9744 -7.88161e-07 2.97441 -7.87608e-07 2.97441 -7.85742e-07 2.97442 -7.82955e-07 2.97441 -7.79291e-07 2.97439 -7.67937e-07 2.97436 -7.65936e-07 2.97431 -7.565e-07 2.97424 -7.45695e-07 2.97414 -7.33231e-07 2.97401 -7.17388e-07 2.97384 -7.01089e-07 2.97363 -6.8123e-07 2.97337 -6.59798e-07 2.97307 -6.37523e-07 2.97271 -6.12145e-07 2.9723 -5.88076e-07 2.97183 -5.62119e-07 2.9713 -5.36726e-07 2.97072 -5.14065e-07 2.97008 -4.90738e-07 2.9694 -4.72992e-07 2.96867 -4.5729e-07 2.96791 -4.45845e-07 2.96713 -4.42353e-07 2.96634 -4.41105e-07 2.96554 -4.49832e-07 2.96477 -4.64028e-07 2.96402 -4.84175e-07 2.96331 -5.15716e-07 2.96266 -5.48811e-07 2.96208 -5.92678e-07 2.96158 -6.41288e-07 2.96117 -6.92093e-07 2.96087 -7.53647e-07 2.96068 -8.10414e-07 2.9606 -8.73533e-07 2.96064 -9.43302e-07 2.96081 -1.04963e-06 2.96111 -1.08251e-06 2.96152 -1.13524e-06 2.96204 -1.18832e-06 2.96265 -1.23533e-06 2.96335 -1.27608e-06 2.96412 -1.30996e-06 2.96495 -1.33655e-06 2.96584 -1.35571e-06 2.96676 -1.36748e-06 2.9677 -1.3718e-06 2.96866 -1.36931e-06 2.96961 -1.36026e-06 2.97056 -1.34538e-06 2.97148 -1.32528e-06 2.97237 -1.30052e-06 2.97323 -1.27228e-06 2.97405 -1.2409e-06 2.97482 -1.20749e-06 2.97554 -1.1726e-06 2.97621 -1.13691e-06 2.97682 -1.10119e-06 2.97738 -1.06593e-06 2.97789 -1.03143e-06 2.97835 -9.98571e-07 2.97876 -9.66935e-07 2.97913 -9.37667e-07 2.97945 -9.1012e-07 2.97974 -8.84927e-07 2.97999 -8.61997e-07 2.9802 -8.41213e-07 2.98039 -8.2266e-07 2.98055 -8.0642e-07 2.98069 -7.91631e-07 2.98081 -7.79561e-07 2.98092 -7.68352e-07 2.98101 -7.59315e-07 2.98108 -7.51272e-07 2.98115 -7.44229e-07 2.98121 -7.38586e-07 2.98126 -7.33235e-07 2.9813 -7.28338e-07 2.98134 -7.24125e-07 2.98136 -7.18836e-07 2.98138 -7.1455e-07 2.98139 -7.08576e-07 2.98138 -7.01297e-07 2.98136 -6.87083e-07 2.98131 -6.80855e-07 2.98125 -6.70821e-07 2.98115 -6.57223e-07 2.98103 -6.41692e-07 2.98086 -6.2507e-07 2.98066 -6.04869e-07 2.98041 -5.84259e-07 2.98011 -5.61093e-07 2.97976 -5.36143e-07 2.97935 -5.12002e-07 2.97889 -4.8519e-07 2.97836 -4.60477e-07 2.97779 -4.36194e-07 2.97715 -4.12572e-07 2.97647 -3.94528e-07 2.97574 -3.76669e-07 2.97498 -3.65395e-07 2.9742 -3.59309e-07 2.9734 -3.56526e-07 2.97259 -3.64915e-07 2.9718 -3.75661e-07 2.97103 -3.95859e-07 2.9703 -4.24101e-07 2.96962 -4.55511e-07 2.96901 -4.99458e-07 2.96848 -5.44191e-07 2.96803 -5.96283e-07 2.96769 -6.54898e-07 2.96746 -7.11072e-07 2.96733 -7.76403e-07 2.96733 -8.35709e-07 2.96745 -9.38613e-07 2.96771 -9.96784e-07 2.96808 -1.03766e-06 2.96855 -1.09243e-06 2.96912 -1.14122e-06 2.96978 -1.18385e-06 2.97052 -1.21981e-06 2.97133 -1.24863e-06 2.97218 -1.27011e-06 2.97308 -1.28417e-06 2.97401 -1.29097e-06 2.97495 -1.29077e-06 2.9759 -1.284e-06 2.97683 -1.27121e-06 2.97776 -1.25307e-06 2.97865 -1.23025e-06 2.97951 -1.20352e-06 2.98034 -1.17365e-06 2.98111 -1.14142e-06 2.98184 -1.10753e-06 2.98252 -1.07268e-06 2.98315 -1.03752e-06 2.98373 -1.00259e-06 2.98425 -9.68394e-07 2.98473 -9.35343e-07 2.98516 -9.03769e-07 2.98554 -8.7393e-07 2.98588 -8.46034e-07 2.98617 -8.20219e-07 2.98643 -7.96514e-07 2.98666 -7.74944e-07 2.98686 -7.55495e-07 2.98703 -7.38102e-07 2.98717 -7.22641e-07 2.9873 -7.09035e-07 2.9874 -6.9712e-07 2.98749 -6.86767e-07 2.98757 -6.77832e-07 2.98763 -6.70178e-07 2.98768 -6.63669e-07 2.98773 -6.58183e-07 2.98776 -6.53592e-07 2.9878 -6.49754e-07 2.98782 -6.466e-07 2.98784 -6.43999e-07 2.98786 -6.419e-07 2.98788 -6.40208e-07 2.98789 -6.3884e-07 2.98791 -6.3776e-07 2.98792 -6.36926e-07 2.98793 -6.36282e-07 2.98794 -6.35802e-07 2.98795 -6.35449e-07 2.98796 -6.35195e-07 2.98797 -6.35027e-07 2.98798 -6.34893e-07 2.98799 -6.34845e-07 2.988 -6.34835e-07 2.98801 -6.34849e-07 2.98802 -6.34875e-07 2.98803 -6.349e-07 2.98804 -6.34933e-07 2.98805 -6.34998e-07 2.98806 -6.35002e-07 2.98808 -6.3502e-07 2.98809 -6.35016e-07 2.9881 -6.35009e-07 2.98811 -6.34995e-07 2.98813 -6.34936e-07 2.98814 -6.34896e-07 2.98815 -6.34776e-07 2.98817 -6.34682e-07 2.98818 -6.34536e-07 2.98819 -6.34358e-07 2.98821 -6.34147e-07 2.98822 -6.33929e-07 2.98823 -6.33649e-07 2.98824 -6.33372e-07 2.98825 -6.33016e-07 2.98827 -6.32688e-07 2.98828 -6.32368e-07 2.98829 -6.31913e-07 2.9883 -6.31549e-07 2.98831 -6.31058e-07 2.98831 -6.30665e-07 2.98832 -6.30207e-07 2.98833 -6.29734e-07 2.98834 -6.29225e-07 2.98834 -6.28788e-07 2.98835 -6.28253e-07 2.98835 -6.27853e-07 2.98835 -6.27286e-07 2.98835 -6.26926e-07 2.98836 -6.26471e-07 2.98836 -6.26034e-07 2.98836 -6.25758e-07 2.98836 -6.25285e-07 2.98836 -6.24754e-07 2.98835 -6.24965e-07 2.98835 -6.24601e-07 2.98835 -6.24535e-07 2.98834 -6.2451e-07 2.98834 -6.24488e-07 2.98834 -6.2483e-07 2.98833 -6.24736e-07 2.98833 -6.24954e-07 2.98832 -6.26362e-07 2.98832 -6.27278e-07 2.98832 -6.27657e-07 2.98831 -6.28588e-07 2.98831 -6.30167e-07 2.9883 -6.31677e-07 2.9883 -6.33529e-07 2.9883 -6.35748e-07 2.9883 -6.38152e-07 2.98829 -6.40932e-07 2.98829 -6.44148e-07 2.98828 -6.47258e-07 2.98828 -6.51333e-07 2.98827 -6.54985e-07 2.98826 -6.59402e-07 2.98824 -6.63909e-07 2.98821 -6.67744e-07 2.98818 -6.72411e-07 2.98814 -6.76144e-07 2.98808 -6.80375e-07 2.988 -6.83183e-07 2.9879 -6.84915e-07 2.98777 -6.87123e-07 2.98761 -6.85941e-07 2.9874 -6.8334e-07 2.98715 -6.7996e-07 2.98685 -6.73335e-07 2.98648 -6.67154e-07 2.98605 -6.56506e-07 2.98555 -6.45767e-07 2.98496 -6.33325e-07 2.98429 -6.19973e-07 2.98354 -6.06236e-07 2.98269 -5.8936e-07 2.98174 -5.77442e-07 2.9807 -5.61064e-07 2.97957 -5.52165e-07 2.97835 -5.44111e-07 2.97705 -5.3956e-07 2.97567 -5.37751e-07 2.97422 -5.40669e-07 2.97271 -5.46846e-07 2.97116 -5.25513e-07 2.96958 -5.89098e-07 2.96798 -7.53495e-07 2.96638 -6.72961e-07 2.96478 -7.06783e-07 2.9632 -7.68185e-07 2.96166 -8.27855e-07 2.96017 -8.90414e-07 2.95873 -9.57454e-07 2.95736 -1.02795e-06 2.95607 -1.10041e-06 2.95485 -1.17324e-06 2.9537 -1.24481e-06 2.95264 -1.31356e-06 2.95164 -1.37809e-06 2.9507 -1.43729e-06 2.94981 -1.49029e-06 2.94897 -1.53626e-06 2.94816 -1.5746e-06 2.94737 -1.60501e-06 2.94659 -1.6273e-06 2.9458 -1.64143e-06 2.94499 -1.64757e-06 2.94415 -1.64602e-06 2.94327 -1.63725e-06 2.94233 -1.62179e-06 2.94134 -1.60028e-06 2.94027 -1.57343e-06 2.93912 -1.54196e-06 2.93788 -1.50664e-06 2.93656 -1.46822e-06 2.93514 -1.42738e-06 2.93362 -1.38483e-06 2.93201 -1.34113e-06 2.9303 -1.2969e-06 2.92849 -1.25255e-06 2.92659 -1.20851e-06 2.92459 -1.16511e-06 2.9225 -1.12259e-06 2.92032 -1.08115e-06 2.91805 -1.04089e-06 2.9157 -1.00189e-06 2.91326 -9.64155e-07 2.91075 -9.27645e-07 2.90816 -8.92305e-07 2.90551 -8.58057e-07 2.90278 -8.24759e-07 2.89998 -7.92297e-07 2.89712 -7.60552e-07 2.8942 -7.2936e-07 2.89122 -6.9859e-07 2.88818 -6.68108e-07 2.88508 -6.37785e-07 2.88193 -6.07488e-07 2.87872 -5.77107e-07 2.87545 -5.46541e-07 2.87214 -5.15687e-07 2.86877 -4.84462e-07 2.86535 -4.52794e-07 2.86188 -4.20619e-07 2.85836 -3.87845e-07 2.85479 -3.54477e-07 2.85117 -3.2043e-07 2.8475 -2.8568e-07 2.84378 -2.50173e-07 2.84001 -2.13942e-07 2.83619 -1.76911e-07 2.83232 -1.39065e-07 2.82841 -1.00397e-07 2.82444 -6.08852e-08 2.82043 -2.05473e-08 2.81636 2.06201e-08 2.81225 6.26569e-08 2.80809 1.05618e-07 2.80388 1.49426e-07 2.79963 1.94115e-07 2.79532 2.39692e-07 2.79096 2.86138e-07 2.78656 3.33468e-07 2.78211 3.817e-07 2.77761 4.30842e-07 2.77306 4.80868e-07 2.76846 5.31792e-07 2.76382 5.83615e-07 2.75913 6.36344e-07 2.75438 6.89965e-07 2.74959 7.44491e-07 2.74476 7.99926e-07 2.73987 8.56286e-07 2.73494 9.13551e-07 2.72996 9.71704e-07 2.72493 1.03081e-06 2.71985 1.09078e-06 2.71473 1.15167e-06 2.70956 1.21349e-06 2.70434 1.27622e-06 2.69907 1.33986e-06 2.69376 1.40442e-06 2.6884 1.4699e-06 2.68299 1.53629e-06 2.67754 1.6036e-06 2.67204 1.67183e-06 2.66649 1.74098e-06 2.66089 1.81104e-06 2.65525 1.88202e-06 2.64957 1.95393e-06 2.64383 2.02676e-06 2.63805 2.1005e-06 2.63223 2.17515e-06 2.62636 2.25074e-06 2.62044 2.32724e-06 2.61448 2.40465e-06 2.60847 2.483e-06 2.60242 2.56224e-06 2.59632 2.64241e-06 2.59018 2.72353e-06 2.58399 2.80553e-06 2.57776 2.88846e-06 2.57148 2.9723e-06 2.56516 3.05706e-06 2.5588 3.14274e-06 2.55239 3.22932e-06 2.54594 3.31681e-06 2.53944 3.40524e-06 2.5329 3.49457e-06 2.52632 3.58481e-06 2.51969 3.67595e-06 2.51303 3.76801e-06 2.50632 3.86096e-06 2.49956 3.95482e-06 2.49277 4.04959e-06 2.48593 4.14527e-06 2.47905 4.24184e-06 2.47213 4.33932e-06 2.46517 4.43768e-06 2.45817 4.53695e-06 2.45112 4.6371e-06 2.44404 4.73815e-06 2.43691 4.8401e-06 2.42975 4.94292e-06 2.42254 5.04665e-06 2.4153 5.15124e-06 2.40801 5.25673e-06 2.40069 5.3631e-06 2.39333 5.47033e-06 2.38592 5.57844e-06 2.37848 5.68741e-06 2.37101 5.79729e-06 2.36349 5.908e-06 2.35594 6.01959e-06 2.34834 6.13203e-06 2.34072 6.24533e-06 2.33305 6.35949e-06 2.32535 6.4745e-06 2.31761 6.59037e-06 2.30984 6.70707e-06 2.30203 6.82461e-06 2.29418 6.94299e-06 2.2863 7.06221e-06 2.27838 7.18228e-06 2.27043 7.30316e-06 2.26245 7.42487e-06 2.25443 7.5474e-06 2.24637 7.67077e-06 2.23829 7.79491e-06 2.23017 7.91991e-06 2.22202 8.04568e-06 2.21383 8.17225e-06 2.20562 8.29963e-06 2.19737 8.42782e-06 2.18909 8.55677e-06 2.18077 8.68652e-06 2.17243 8.81703e-06 2.16406 8.94834e-06 2.15566 9.08042e-06 2.14722 9.21326e-06 2.13876 9.34687e-06 2.13027 9.48123e-06 2.12174 9.61634e-06 2.1132 9.7522e-06 2.10462 9.88881e-06 2.09601 1.00262e-05 2.08738 1.01642e-05 2.07872 1.0303e-05 2.07003 1.04426e-05 2.06131 1.05828e-05 2.05257 1.07238e-05 2.04381 1.08654e-05 2.03502 1.10078e-05 2.0262 1.11508e-05 2.01736 1.12946e-05 2.00849 1.1439e-05 1.9996 1.15841e-05 1.99069 1.17299e-05 1.98175 1.18763e-05 1.97279 1.20235e-05 1.96381 1.21712e-05 1.95481 1.23196e-05 1.94578 1.24687e-05 1.93673 1.26184e-05 1.92767 1.27687e-05 1.91858 1.29197e-05 1.90947 1.30712e-05 1.90034 1.32234e-05 1.89119 1.33762e-05 1.88202 1.35295e-05 1.87284 1.36835e-05 1.86363 1.3838e-05 1.85441 1.39932e-05 1.84517 1.41489e-05 1.83591 1.43051e-05 1.82664 1.4462e-05 1.81735 1.46193e-05 1.80804 1.47772e-05 1.79872 1.49357e-05 1.78938 1.50947e-05 1.78003 1.52541e-05 1.77067 1.54142e-05 1.76129 1.55747e-05 1.75189 1.57357e-05 1.74249 1.58972e-05 1.73307 1.60592e-05 1.72364 1.62217e-05 1.71419 1.63847e-05 1.70474 1.65481e-05 1.69527 1.67119e-05 1.6858 1.68763e-05 1.67631 1.7041e-05 1.66681 1.72062e-05 1.65731 1.73718e-05 1.64779 1.75379e-05 1.63827 1.77043e-05 1.62874 1.78711e-05 1.6192 1.80384e-05 1.60965 1.8206e-05 1.6001 1.8374e-05 1.59054 1.85423e-05 1.58097 1.87111e-05 1.5714 1.88802e-05 1.56183 1.90496e-05 1.55225 1.92194e-05 1.54266 1.93894e-05 1.53307 1.95598e-05 1.52348 1.97306e-05 1.51388 1.99016e-05 1.50428 2.00729e-05 1.49468 2.02445e-05 1.48508 2.04164e-05 1.47547 2.05886e-05 1.46587 2.0761e-05 1.45626 2.09336e-05 1.44665 2.11065e-05 1.43705 2.12797e-05 1.42744 2.14531e-05 1.41784 2.16267e-05 1.40823 2.18004e-05 1.39863 2.19745e-05 1.38904 2.21485e-05 1.37944 2.23234e-05 1.36985 2.24969e-05 1.36026 2.26735e-05 1.35068 2.2845e-05 1.3411 2.30254e-05 1.33152 2.31926e-05 1.32195 2.33789e-05 1.31239 2.35404e-05 1.30283 2.3732e-05 1.29328 2.38906e-05 1.28373 2.40831e-05 1.2742 2.42428e-05 1.26467 2.44343e-05 1.25515 2.45947e-05 1.24564 2.47861e-05 1.23614 2.49471e-05 1.22665 2.51293e-05 1.21716 2.5159e-05 1.20769 1.79044e-05 -1.47105e-05 2.59939 -0.777141 2.49332 -0.222303 2.46782 -0.052888 2.46151 -0.0156837 2.46036 -0.00788534 2.46005 -0.0082038 2.45912 -0.00901948 2.45584 -0.0088064 2.44859 -0.00718807 2.43613 -0.00577573 2.41803 -0.0056376 2.39501 -0.00703428 2.36923 -0.00897978 2.34433 -0.00967428 2.32467 -0.00763619 2.31366 -0.00215464 2.31298 0.0066048 2.32208 0.01762 2.33921 0.0290128 2.36226 0.0380222 2.38911 0.0444482 2.41778 0.0476721 2.44644 0.0476211 2.4736 0.0450349 2.49819 0.0406215 2.51955 0.0351124 2.53737 0.0291717 2.55169 0.0233437 2.56281 0.0180203 2.57114 0.0134396 2.57717 0.00969243 2.58141 0.00676829 2.58429 0.0045807 2.5862 0.00300754 2.58741 0.00191739 2.58817 0.00118794 2.58863 0.000715804 2.58891 0.000419752 2.58906 0.000239658 2.58915 0.000133245 2.5892 7.21053e-05 2.58923 3.79077e-05 2.58924 1.92768e-05 2.58925 9.38044e-06 2.58925 4.24235e-06 2.58926 1.64326e-06 2.58926 3.57486e-07 2.58927 -2.67322e-07 2.58927 -5.63567e-07 2.58928 -7.00773e-07 2.58928 -7.63976e-07 2.58929 -7.92148e-07 2.5893 -8.0479e-07 2.58931 -8.10815e-07 2.58933 -8.13176e-07 2.58934 -8.14442e-07 2.58935 -8.14718e-07 2.58936 -8.14081e-07 2.58937 -8.13485e-07 2.58938 -8.11528e-07 2.58938 -8.08606e-07 2.58938 -8.04983e-07 2.58936 -7.93068e-07 2.58933 -7.91068e-07 2.58929 -7.81321e-07 2.58923 -7.70186e-07 2.58914 -7.57329e-07 2.58902 -7.40947e-07 2.58888 -7.24169e-07 2.5887 -7.03643e-07 2.58847 -6.81539e-07 2.58821 -6.58569e-07 2.5879 -6.32332e-07 2.58754 -6.07524e-07 2.58713 -5.80709e-07 2.58667 -5.54493e-07 2.58616 -5.31127e-07 2.5856 -5.07e-07 2.58501 -4.88722e-07 2.58438 -4.72482e-07 2.58372 -4.60641e-07 2.58304 -4.57076e-07 2.58235 -4.55719e-07 2.58166 -4.64763e-07 2.58098 -4.79395e-07 2.58033 -5.00138e-07 2.57971 -5.32764e-07 2.57914 -5.66844e-07 2.57864 -6.12163e-07 2.5782 -6.62334e-07 2.57785 -7.14703e-07 2.57759 -7.78349e-07 2.57742 -8.36848e-07 2.57735 -9.02237e-07 2.57738 -9.73672e-07 2.57754 -1.08418e-06 2.5778 -1.11793e-06 2.57815 -1.17236e-06 2.5786 -1.2272e-06 2.57914 -1.27576e-06 2.57974 -1.31786e-06 2.58041 -1.35284e-06 2.58114 -1.38033e-06 2.58191 -1.40014e-06 2.58271 -1.4123e-06 2.58353 -1.41677e-06 2.58437 -1.41423e-06 2.5852 -1.40487e-06 2.58602 -1.38952e-06 2.58682 -1.36878e-06 2.5876 -1.34321e-06 2.58835 -1.31406e-06 2.58906 -1.28165e-06 2.58973 -1.24716e-06 2.59036 -1.21114e-06 2.59094 -1.17427e-06 2.59147 -1.1374e-06 2.59196 -1.10099e-06 2.59241 -1.06535e-06 2.59281 -1.03141e-06 2.59316 -9.98731e-07 2.59348 -9.68506e-07 2.59377 -9.4005e-07 2.59401 -9.1402e-07 2.59423 -8.90352e-07 2.59442 -8.68869e-07 2.59458 -8.49715e-07 2.59472 -8.32926e-07 2.59484 -8.1765e-07 2.59495 -8.05187e-07 2.59504 -7.93581e-07 2.59512 -7.84265e-07 2.59518 -7.75944e-07 2.59524 -7.68654e-07 2.59529 -7.62841e-07 2.59534 -7.57289e-07 2.59537 -7.52247e-07 2.5954 -7.47885e-07 2.59543 -7.42424e-07 2.59544 -7.38019e-07 2.59545 -7.31801e-07 2.59544 -7.24394e-07 2.59542 -7.09624e-07 2.59538 -7.03159e-07 2.59533 -6.92864e-07 2.59524 -6.78803e-07 2.59513 -6.62771e-07 2.59499 -6.45647e-07 2.59481 -6.24772e-07 2.5946 -6.03522e-07 2.59434 -5.79599e-07 2.59403 -5.53831e-07 2.59368 -5.28951e-07 2.59327 -5.01241e-07 2.59282 -4.75753e-07 2.59231 -4.50676e-07 2.59176 -4.26262e-07 2.59117 -4.0769e-07 2.59054 -3.89198e-07 2.58987 -3.77579e-07 2.58919 -3.71292e-07 2.58849 -3.68353e-07 2.58779 -3.77091e-07 2.5871 -3.88085e-07 2.58643 -4.08963e-07 2.58579 -4.38125e-07 2.5852 -4.70489e-07 2.58467 -5.15909e-07 2.58421 -5.6202e-07 2.58382 -6.15793e-07 2.58353 -6.76348e-07 2.58332 -7.34257e-07 2.58321 -8.01803e-07 2.58321 -8.63052e-07 2.58332 -9.68786e-07 2.58354 -1.0298e-06 2.58386 -1.07149e-06 2.58427 -1.12816e-06 2.58477 -1.17855e-06 2.58535 -1.22259e-06 2.58599 -1.25973e-06 2.58669 -1.28951e-06 2.58744 -1.31171e-06 2.58822 -1.32625e-06 2.58903 -1.33328e-06 2.58985 -1.33308e-06 2.59067 -1.3261e-06 2.59149 -1.3129e-06 2.59229 -1.29419e-06 2.59307 -1.27063e-06 2.59382 -1.24304e-06 2.59453 -1.2122e-06 2.59521 -1.17891e-06 2.59585 -1.14392e-06 2.59644 -1.10794e-06 2.59699 -1.07163e-06 2.59749 -1.03556e-06 2.59794 -1.00024e-06 2.59836 -9.66105e-07 2.59873 -9.33494e-07 2.59906 -9.02677e-07 2.59936 -8.73868e-07 2.59961 -8.47191e-07 2.59984 -8.22703e-07 2.60004 -8.00435e-07 2.60021 -7.80346e-07 2.60036 -7.62371e-07 2.60049 -7.46415e-07 2.60059 -7.32351e-07 2.60069 -7.2004e-07 2.60076 -7.09348e-07 2.60083 -7.00118e-07 2.60088 -6.92202e-07 2.60093 -6.85493e-07 2.60097 -6.79807e-07 2.601 -6.75067e-07 2.60103 -6.71109e-07 2.60105 -6.67849e-07 2.60107 -6.65157e-07 2.60109 -6.62996e-07 2.6011 -6.61239e-07 2.60111 -6.59831e-07 2.60112 -6.58714e-07 2.60113 -6.57848e-07 2.60114 -6.57186e-07 2.60115 -6.56692e-07 2.60116 -6.5632e-07 2.60117 -6.56062e-07 2.60118 -6.55895e-07 2.60119 -6.55753e-07 2.6012 -6.55698e-07 2.6012 -6.55691e-07 2.60121 -6.55709e-07 2.60122 -6.55738e-07 2.60123 -6.55768e-07 2.60124 -6.55793e-07 2.60125 -6.55862e-07 2.60126 -6.55869e-07 2.60127 -6.55891e-07 2.60128 -6.55877e-07 2.60129 -6.55869e-07 2.6013 -6.55869e-07 2.60132 -6.55808e-07 2.60133 -6.5576e-07 2.60134 -6.55637e-07 2.60135 -6.55535e-07 2.60136 -6.55382e-07 2.60137 -6.55196e-07 2.60138 -6.54974e-07 2.60139 -6.54745e-07 2.60141 -6.54458e-07 2.60142 -6.54185e-07 2.60143 -6.53799e-07 2.60144 -6.53476e-07 2.60145 -6.53137e-07 2.60145 -6.52668e-07 2.60146 -6.52308e-07 2.60147 -6.51788e-07 2.60148 -6.51395e-07 2.60149 -6.50904e-07 2.60149 -6.5042e-07 2.6015 -6.49899e-07 2.6015 -6.49445e-07 2.60151 -6.48899e-07 2.60151 -6.48488e-07 2.60151 -6.47888e-07 2.60151 -6.47531e-07 2.60152 -6.47058e-07 2.60152 -6.46607e-07 2.60152 -6.46327e-07 2.60152 -6.45821e-07 2.60151 -6.45279e-07 2.60151 -6.45501e-07 2.60151 -6.45126e-07 2.60151 -6.45057e-07 2.6015 -6.45043e-07 2.6015 -6.4501e-07 2.6015 -6.4537e-07 2.60149 -6.45261e-07 2.60149 -6.45483e-07 2.60149 -6.46924e-07 2.60148 -6.47899e-07 2.60148 -6.48281e-07 2.60148 -6.49234e-07 2.60147 -6.50871e-07 2.60147 -6.52421e-07 2.60147 -6.54341e-07 2.60147 -6.56626e-07 2.60146 -6.59093e-07 2.60146 -6.61985e-07 2.60146 -6.65295e-07 2.60145 -6.68504e-07 2.60145 -6.72713e-07 2.60144 -6.76464e-07 2.60143 -6.81041e-07 2.60141 -6.85686e-07 2.60139 -6.89637e-07 2.60136 -6.94479e-07 2.60132 -6.98303e-07 2.60127 -7.02687e-07 2.6012 -7.0559e-07 2.60112 -7.07361e-07 2.601 -7.09668e-07 2.60086 -7.08427e-07 2.60068 -7.05735e-07 2.60047 -7.02297e-07 2.6002 -6.95465e-07 2.59988 -6.89095e-07 2.59951 -6.78046e-07 2.59907 -6.67034e-07 2.59856 -6.54178e-07 2.59798 -6.40404e-07 2.59732 -6.26227e-07 2.59658 -6.09012e-07 2.59576 -5.96654e-07 2.59485 -5.79585e-07 2.59387 -5.70559e-07 2.59281 -5.62213e-07 2.59167 -5.57553e-07 2.59047 -5.55669e-07 2.58921 -5.58699e-07 2.5879 -5.65233e-07 2.58655 -5.4231e-07 2.58517 -6.0771e-07 2.58378 -7.79408e-07 2.58238 -6.93959e-07 2.58099 -7.30033e-07 2.57962 -7.9352e-07 2.57828 -8.55085e-07 2.57698 -9.19666e-07 2.57573 -9.88868e-07 2.57454 -1.06166e-06 2.57341 -1.13649e-06 2.57234 -1.21169e-06 2.57135 -1.28559e-06 2.57042 -1.35658e-06 2.56955 -1.42323e-06 2.56873 -1.48437e-06 2.56796 -1.53911e-06 2.56723 -1.58658e-06 2.56652 -1.6262e-06 2.56584 -1.65761e-06 2.56515 -1.68064e-06 2.56447 -1.69524e-06 2.56376 -1.70161e-06 2.56303 -1.70002e-06 2.56226 -1.69099e-06 2.56145 -1.67502e-06 2.56058 -1.65283e-06 2.55965 -1.6251e-06 2.55865 -1.59261e-06 2.55757 -1.55614e-06 2.55642 -1.51646e-06 2.55519 -1.47429e-06 2.55387 -1.43034e-06 2.55246 -1.38522e-06 2.55098 -1.33954e-06 2.5494 -1.29374e-06 2.54774 -1.24825e-06 2.546 -1.20344e-06 2.54418 -1.15952e-06 2.54228 -1.11671e-06 2.54031 -1.07513e-06 2.53826 -1.03485e-06 2.53614 -9.95868e-07 2.53396 -9.58156e-07 2.5317 -9.21664e-07 2.52939 -8.86281e-07 2.52702 -8.51884e-07 2.52458 -8.18352e-07 2.52209 -7.85563e-07 2.51955 -7.53342e-07 2.51695 -7.21553e-07 2.51431 -6.90066e-07 2.51161 -6.58751e-07 2.50886 -6.2746e-07 2.50607 -5.96079e-07 2.50323 -5.64505e-07 2.50034 -5.32636e-07 2.49741 -5.00382e-07 2.49443 -4.67677e-07 2.49141 -4.34447e-07 2.48835 -4.00592e-07 2.48524 -3.66126e-07 2.48209 -3.30965e-07 2.47889 -2.95073e-07 2.47565 -2.58395e-07 2.47237 -2.2096e-07 2.46905 -1.82714e-07 2.46568 -1.43627e-07 2.46227 -1.03693e-07 2.45882 -6.28825e-08 2.45532 -2.1224e-08 2.45179 2.13076e-08 2.44821 6.47342e-08 2.44459 1.09092e-07 2.44092 1.54345e-07 2.43722 2.00493e-07 2.43347 2.47564e-07 2.42968 2.95546e-07 2.42584 3.4444e-07 2.42197 3.94255e-07 2.41805 4.45001e-07 2.41409 4.96675e-07 2.41009 5.49277e-07 2.40604 6.02802e-07 2.40196 6.57263e-07 2.39783 7.12647e-07 2.39366 7.68963e-07 2.38945 8.26229e-07 2.3852 8.84425e-07 2.3809 9.43568e-07 2.37657 1.00364e-06 2.37219 1.06468e-06 2.36777 1.12663e-06 2.36331 1.18952e-06 2.35881 1.25337e-06 2.35426 1.31816e-06 2.34968 1.3839e-06 2.34505 1.45058e-06 2.34039 1.51821e-06 2.33568 1.58679e-06 2.33093 1.65631e-06 2.32614 1.72678e-06 2.32131 1.79819e-06 2.31644 1.87057e-06 2.31153 1.94388e-06 2.30658 2.01815e-06 2.30159 2.09337e-06 2.29656 2.16952e-06 2.29149 2.24665e-06 2.28638 2.32472e-06 2.28123 2.40374e-06 2.27604 2.48368e-06 2.27081 2.5646e-06 2.26554 2.64645e-06 2.26023 2.72927e-06 2.25488 2.81303e-06 2.2495 2.89773e-06 2.24407 2.98339e-06 2.23861 3.06998e-06 2.2331 3.15753e-06 2.22756 3.24602e-06 2.22198 3.33545e-06 2.21637 3.42582e-06 2.21071 3.51714e-06 2.20502 3.60942e-06 2.19929 3.70261e-06 2.19352 3.79676e-06 2.18772 3.89184e-06 2.18187 3.98784e-06 2.176 4.08479e-06 2.17008 4.18268e-06 2.16413 4.28149e-06 2.15814 4.38123e-06 2.15211 4.48191e-06 2.14605 4.58351e-06 2.13996 4.68605e-06 2.13382 4.78949e-06 2.12766 4.89387e-06 2.12145 4.99916e-06 2.11522 5.10537e-06 2.10894 5.21251e-06 2.10264 5.32053e-06 2.0963 5.42947e-06 2.08992 5.53934e-06 2.08351 5.6501e-06 2.07707 5.76177e-06 2.07059 5.87432e-06 2.06408 5.9878e-06 2.05754 6.10215e-06 2.05096 6.21741e-06 2.04435 6.33355e-06 2.03771 6.45057e-06 2.03104 6.56848e-06 2.02433 6.68727e-06 2.0176 6.80694e-06 2.01083 6.92748e-06 2.00403 7.04889e-06 1.9972 7.17117e-06 1.99034 7.2943e-06 1.98345 7.41832e-06 1.97653 7.54317e-06 1.96957 7.66888e-06 1.96259 7.79543e-06 1.95558 7.92284e-06 1.94854 8.05108e-06 1.94148 8.18017e-06 1.93438 8.31008e-06 1.92725 8.44082e-06 1.9201 8.57238e-06 1.91292 8.70477e-06 1.90571 8.83798e-06 1.89847 8.97198e-06 1.89121 9.10679e-06 1.88392 9.24242e-06 1.87661 9.37883e-06 1.86926 9.51604e-06 1.8619 9.65404e-06 1.8545 9.79281e-06 1.84709 9.93236e-06 1.83964 1.00727e-05 1.83218 1.02138e-05 1.82468 1.03556e-05 1.81717 1.04983e-05 1.80963 1.06416e-05 1.80206 1.07857e-05 1.79448 1.09306e-05 1.78687 1.10762e-05 1.77924 1.12225e-05 1.77158 1.13695e-05 1.76391 1.15173e-05 1.75621 1.16658e-05 1.74849 1.18149e-05 1.74076 1.19648e-05 1.733 1.21154e-05 1.72522 1.22666e-05 1.71742 1.24186e-05 1.7096 1.25712e-05 1.70176 1.27245e-05 1.6939 1.28784e-05 1.68602 1.30331e-05 1.67813 1.31883e-05 1.67022 1.33442e-05 1.66229 1.35008e-05 1.65434 1.36579e-05 1.64638 1.38157e-05 1.6384 1.39741e-05 1.6304 1.41332e-05 1.62239 1.42928e-05 1.61436 1.4453e-05 1.60631 1.46138e-05 1.59825 1.47752e-05 1.59018 1.49372e-05 1.58209 1.50998e-05 1.57399 1.52629e-05 1.56588 1.54265e-05 1.55775 1.55907e-05 1.54961 1.57554e-05 1.54145 1.59207e-05 1.53329 1.60865e-05 1.52511 1.62528e-05 1.51692 1.64196e-05 1.50872 1.6587e-05 1.50051 1.67548e-05 1.49229 1.69231e-05 1.48406 1.70919e-05 1.47582 1.72612e-05 1.46757 1.74309e-05 1.45931 1.7601e-05 1.45105 1.77717e-05 1.44277 1.79427e-05 1.43449 1.81142e-05 1.4262 1.82861e-05 1.4179 1.84584e-05 1.4096 1.86312e-05 1.40129 1.88043e-05 1.39297 1.89778e-05 1.38465 1.91517e-05 1.37632 1.9326e-05 1.36799 1.95006e-05 1.35965 1.96756e-05 1.35131 1.98509e-05 1.34296 2.00266e-05 1.33461 2.02026e-05 1.32626 2.0379e-05 1.31791 2.05556e-05 1.30955 2.07326e-05 1.30119 2.09098e-05 1.29283 2.10873e-05 1.28447 2.12651e-05 1.27611 2.14432e-05 1.26775 2.16216e-05 1.25938 2.18001e-05 1.25102 2.1979e-05 1.24266 2.21581e-05 1.2343 2.23374e-05 1.22594 2.25168e-05 1.21758 2.26967e-05 1.20923 2.28763e-05 1.20087 2.3057e-05 1.19252 2.32362e-05 1.18417 2.34186e-05 1.17583 2.35957e-05 1.16749 2.37822e-05 1.15916 2.39546e-05 1.15082 2.41474e-05 1.1425 2.43137e-05 1.13418 2.45122e-05 1.12586 2.46754e-05 1.11756 2.48748e-05 1.10925 2.50392e-05 1.10096 2.52376e-05 1.09267 2.54027e-05 1.08439 2.56009e-05 1.07612 2.57669e-05 1.06786 2.59583e-05 1.0596 2.60316e-05 1.05136 1.92673e-05 -1.60248e-05 2.45635 -0.387074 2.33948 -0.105435 2.31224 -0.0256431 2.30425 -0.00770053 2.30022 -0.00384751 2.29605 -0.00403461 2.29138 -0.00434454 2.28561 -0.00304654 2.27729 0.001109 2.26479 0.00671796 2.24705 0.0121056 2.22359 0.0164328 2.195 0.0196092 2.16305 0.022114 2.13071 0.0237583 2.10219 0.0251263 2.08164 0.0265835 2.07122 0.0278749 2.07123 0.0290204 2.08048 0.0293392 2.09648 0.0292179 2.11639 0.0283026 2.1379 0.0264796 2.15919 0.0239846 2.17895 0.0210137 2.19635 0.0178005 2.21101 0.0145755 2.22285 0.0115372 2.23206 0.00883016 2.23898 0.00653873 2.244 0.00468625 2.24752 0.00325366 2.24992 0.00218997 2.2515 0.00143013 2.25252 0.000906826 2.25315 0.000558742 2.25353 0.000334746 2.25376 0.000195089 2.25389 0.000110613 2.25396 6.09773e-05 2.25401 3.26178e-05 2.25403 1.68428e-05 2.25404 8.29648e-06 2.25405 3.78005e-06 2.25405 1.44861e-06 2.25405 2.75915e-07 2.25406 -3.02749e-07 2.25406 -5.84208e-07 2.25407 -7.18355e-07 2.25407 -7.80496e-07 2.25408 -8.09687e-07 2.25409 -8.22696e-07 2.25409 -8.28739e-07 2.2541 -8.31958e-07 2.25411 -8.33134e-07 2.25412 -8.33927e-07 2.25413 -8.33996e-07 2.25414 -8.33228e-07 2.25415 -8.32606e-07 2.25416 -8.30583e-07 2.25416 -8.27549e-07 2.25416 -8.2398e-07 2.25414 -8.11597e-07 2.25412 -8.09592e-07 2.25408 -7.99595e-07 2.25403 -7.88194e-07 2.25395 -7.75028e-07 2.25385 -7.58213e-07 2.25372 -7.41038e-07 2.25356 -7.19974e-07 2.25337 -6.97331e-07 2.25314 -6.73805e-07 2.25287 -6.46873e-07 2.25256 -6.21476e-07 2.2522 -5.93966e-07 2.2518 -5.67088e-07 2.25136 -5.43161e-07 2.25087 -5.18383e-07 2.25036 -4.99687e-07 2.24981 -4.83033e-07 2.24923 -4.70875e-07 2.24864 -4.67269e-07 2.24804 -4.6584e-07 2.24744 -4.75186e-07 2.24685 -4.90185e-07 2.24628 -5.11423e-07 2.24574 -5.44969e-07 2.24525 -5.79872e-07 2.24481 -6.26391e-07 2.24443 -6.77876e-07 2.24412 -7.31539e-07 2.24389 -7.96917e-07 2.24375 -8.5685e-07 2.24369 -9.24127e-07 2.24372 -9.96894e-07 2.24385 -1.11092e-06 2.24408 -1.14541e-06 2.24439 -1.20122e-06 2.24478 -1.25754e-06 2.24524 -1.30736e-06 2.24577 -1.35055e-06 2.24636 -1.38646e-06 2.24699 -1.41466e-06 2.24766 -1.435e-06 2.24836 -1.44748e-06 2.24907 -1.45207e-06 2.2498 -1.44947e-06 2.25052 -1.43984e-06 2.25124 -1.42408e-06 2.25194 -1.4028e-06 2.25261 -1.37656e-06 2.25326 -1.34665e-06 2.25388 -1.31336e-06 2.25447 -1.27797e-06 2.25501 -1.24099e-06 2.25552 -1.20315e-06 2.25598 -1.1653e-06 2.25641 -1.12792e-06 2.2568 -1.09133e-06 2.25714 -1.05651e-06 2.25746 -1.02294e-06 2.25773 -9.91931e-07 2.25798 -9.627e-07 2.25819 -9.35976e-07 2.25838 -9.11677e-07 2.25855 -8.89628e-07 2.25869 -8.69961e-07 2.25881 -8.52724e-07 2.25892 -8.37023e-07 2.25901 -8.24242e-07 2.25909 -8.12306e-07 2.25916 -8.02753e-07 2.25921 -7.94204e-07 2.25926 -7.86709e-07 2.25931 -7.8075e-07 2.25935 -7.75042e-07 2.25938 -7.69869e-07 2.2594 -7.65405e-07 2.25942 -7.59774e-07 2.25944 -7.55277e-07 2.25944 -7.4886e-07 2.25944 -7.41362e-07 2.25942 -7.26126e-07 2.25939 -7.19465e-07 2.25934 -7.08969e-07 2.25927 -6.94537e-07 2.25917 -6.78101e-07 2.25905 -6.60555e-07 2.25889 -6.39127e-07 2.2587 -6.17372e-07 2.25848 -5.92838e-07 2.25821 -5.66415e-07 2.2579 -5.40931e-07 2.25755 -5.12489e-07 2.25715 -4.86401e-07 2.25671 -4.60677e-07 2.25623 -4.35619e-07 2.25572 -4.16629e-07 2.25517 -3.97635e-07 2.25459 -3.85757e-07 2.25399 -3.79317e-07 2.25339 -3.7628e-07 2.25278 -3.85317e-07 2.25218 -3.96536e-07 2.25159 -4.17989e-07 2.25104 -4.47923e-07 2.25053 -4.81083e-07 2.25006 -5.27732e-07 2.24966 -5.7499e-07 2.24932 -6.30156e-07 2.24906 -6.92322e-07 2.24889 -7.51654e-07 2.24879 -8.21045e-07 2.24879 -8.8392e-07 2.24888 -9.9188e-07 2.24908 -1.05542e-06 2.24936 -1.09773e-06 2.24971 -1.15598e-06 2.25015 -1.20768e-06 2.25065 -1.25287e-06 2.25121 -1.29098e-06 2.25182 -1.32154e-06 2.25247 -1.34431e-06 2.25315 -1.35924e-06 2.25385 -1.36645e-06 2.25457 -1.36625e-06 2.25528 -1.35908e-06 2.25599 -1.34555e-06 2.25669 -1.32632e-06 2.25737 -1.30215e-06 2.25802 -1.27383e-06 2.25865 -1.24217e-06 2.25924 -1.208e-06 2.25979 -1.17208e-06 2.26031 -1.13514e-06 2.26078 -1.09787e-06 2.26122 -1.06084e-06 2.26162 -1.02459e-06 2.26198 -9.89541e-07 2.2623 -9.56057e-07 2.26259 -9.24425e-07 2.26284 -8.94855e-07 2.26307 -8.67469e-07 2.26327 -8.42319e-07 2.26344 -8.19462e-07 2.26359 -7.98835e-07 2.26372 -7.80383e-07 2.26383 -7.63997e-07 2.26392 -7.49562e-07 2.264 -7.3692e-07 2.26407 -7.25948e-07 2.26413 -7.16464e-07 2.26418 -7.0834e-07 2.26422 -7.01442e-07 2.26425 -6.95618e-07 2.26428 -6.90739e-07 2.2643 -6.86672e-07 2.26432 -6.83329e-07 2.26434 -6.80579e-07 2.26435 -6.78352e-07 2.26436 -6.76548e-07 2.26438 -6.75103e-07 2.26438 -6.73957e-07 2.26439 -6.73077e-07 2.2644 -6.72393e-07 2.26441 -6.71887e-07 2.26442 -6.71502e-07 2.26442 -6.7124e-07 2.26443 -6.71076e-07 2.26444 -6.70931e-07 2.26445 -6.70883e-07 2.26445 -6.70869e-07 2.26446 -6.70894e-07 2.26447 -6.70916e-07 2.26448 -6.70956e-07 2.26449 -6.70982e-07 2.2645 -6.71043e-07 2.2645 -6.71069e-07 2.26451 -6.71091e-07 2.26452 -6.71069e-07 2.26453 -6.71069e-07 2.26454 -6.71069e-07 2.26455 -6.70996e-07 2.26456 -6.70956e-07 2.26457 -6.70829e-07 2.26458 -6.70723e-07 2.26459 -6.70552e-07 2.2646 -6.70359e-07 2.26461 -6.70141e-07 2.26462 -6.69908e-07 2.26463 -6.69606e-07 2.26464 -6.69323e-07 2.26465 -6.68941e-07 2.26466 -6.68606e-07 2.26466 -6.6826e-07 2.26467 -6.67787e-07 2.26468 -6.67413e-07 2.26469 -6.66878e-07 2.26469 -6.66467e-07 2.2647 -6.65968e-07 2.2647 -6.65477e-07 2.26471 -6.6495e-07 2.26471 -6.64484e-07 2.26472 -6.63917e-07 2.26472 -6.63502e-07 2.26472 -6.62887e-07 2.26472 -6.62523e-07 2.26473 -6.62036e-07 2.26473 -6.61585e-07 2.26473 -6.6129e-07 2.26473 -6.60759e-07 2.26472 -6.60209e-07 2.26472 -6.60446e-07 2.26472 -6.6006e-07 2.26472 -6.59984e-07 2.26472 -6.59973e-07 2.26471 -6.59944e-07 2.26471 -6.60322e-07 2.26471 -6.60195e-07 2.2647 -6.60428e-07 2.2647 -6.61912e-07 2.2647 -6.62927e-07 2.26469 -6.63302e-07 2.26469 -6.64277e-07 2.26469 -6.65968e-07 2.26469 -6.67547e-07 2.26468 -6.69508e-07 2.26468 -6.71866e-07 2.26468 -6.7439e-07 2.26468 -6.77348e-07 2.26467 -6.80735e-07 2.26467 -6.84031e-07 2.26467 -6.88349e-07 2.26466 -6.92187e-07 2.26465 -6.96877e-07 2.26464 -7.01635e-07 2.26462 -7.0567e-07 2.26459 -7.10661e-07 2.26456 -7.14532e-07 2.26451 -7.19054e-07 2.26445 -7.22015e-07 2.26438 -7.2383e-07 2.26428 -7.2621e-07 2.26416 -7.249e-07 2.264 -7.22139e-07 2.26381 -7.18639e-07 2.26358 -7.11603e-07 2.26331 -7.05088e-07 2.26298 -6.93704e-07 2.2626 -6.82459e-07 2.26215 -6.69261e-07 2.26165 -6.55124e-07 2.26107 -6.40561e-07 2.26043 -6.23088e-07 2.25971 -6.10358e-07 2.25893 -5.92692e-07 2.25807 -5.83579e-07 2.25714 -5.74997e-07 2.25616 -5.70217e-07 2.25511 -5.68281e-07 2.25401 -5.71392e-07 2.25287 -5.78224e-07 2.2517 -5.53802e-07 2.2505 -6.20461e-07 2.24929 -7.985e-07 2.24807 -7.08893e-07 2.24686 -7.46935e-07 2.24566 -8.12106e-07 2.2445 -8.75214e-07 2.24336 -9.41447e-07 2.24228 -1.01242e-06 2.24124 -1.08706e-06 2.24026 -1.1638e-06 2.23933 -1.24094e-06 2.23846 -1.31673e-06 2.23765 -1.38954e-06 2.2369 -1.4579e-06 2.23619 -1.52061e-06 2.23551 -1.57673e-06 2.23488 -1.6254e-06 2.23426 -1.66602e-06 2.23366 -1.69823e-06 2.23307 -1.72181e-06 2.23247 -1.73676e-06 2.23186 -1.74325e-06 2.23122 -1.7416e-06 2.23056 -1.73227e-06 2.22985 -1.71585e-06 2.22909 -1.69302e-06 2.22828 -1.66452e-06 2.22741 -1.63113e-06 2.22647 -1.59366e-06 2.22547 -1.55288e-06 2.22439 -1.50955e-06 2.22325 -1.46438e-06 2.22202 -1.41803e-06 2.22073 -1.37108e-06 2.21936 -1.32403e-06 2.21791 -1.27731e-06 2.2164 -1.23126e-06 2.21481 -1.18614e-06 2.21316 -1.14215e-06 2.21144 -1.09943e-06 2.20966 -1.05803e-06 2.20781 -1.01798e-06 2.20591 -9.79224e-07 2.20395 -9.41713e-07 2.20194 -9.05355e-07 2.19987 -8.70008e-07 2.19775 -8.35549e-07 2.19558 -8.0184e-07 2.19337 -7.68723e-07 2.19111 -7.36065e-07 2.1888 -7.03705e-07 2.18646 -6.71513e-07 2.18407 -6.39353e-07 2.18163 -6.07102e-07 2.17916 -5.74648e-07 2.17665 -5.41899e-07 2.1741 -5.08757e-07 2.17151 -4.75142e-07 2.16888 -4.40989e-07 2.16621 -4.06213e-07 2.1635 -3.7079e-07 2.16076 -3.34661e-07 2.15798 -2.97783e-07 2.15516 -2.60112e-07 2.1523 -2.21644e-07 2.14941 -1.82339e-07 2.14647 -1.42187e-07 2.14351 -1.01161e-07 2.1405 -5.92481e-08 2.13746 -1.64364e-08 2.13438 2.72885e-08 2.13126 7.19265e-08 2.12811 1.1751e-07 2.12492 1.64015e-07 2.12169 2.11439e-07 2.11843 2.59817e-07 2.11513 3.09123e-07 2.11179 3.59378e-07 2.10842 4.10579e-07 2.10501 4.62722e-07 2.10156 5.15814e-07 2.09808 5.69871e-07 2.09456 6.24874e-07 2.091 6.8083e-07 2.08741 7.37749e-07 2.08378 7.95619e-07 2.08011 8.54459e-07 2.07641 9.1426e-07 2.07267 9.75015e-07 2.0689 1.03675e-06 2.06508 1.09944e-06 2.06124 1.1631e-06 2.05735 1.22772e-06 2.05343 1.29332e-06 2.04948 1.35988e-06 2.04549 1.42742e-06 2.04146 1.49592e-06 2.0374 1.5654e-06 2.0333 1.63584e-06 2.02917 1.70726e-06 2.025 1.77965e-06 2.02079 1.85301e-06 2.01655 1.92735e-06 2.01228 2.00267e-06 2.00797 2.07895e-06 2.00363 2.15621e-06 1.99925 2.23445e-06 1.99483 2.31366e-06 1.99038 2.39384e-06 1.9859 2.475e-06 1.98138 2.55714e-06 1.97683 2.64024e-06 1.97224 2.72431e-06 1.96762 2.80937e-06 1.96296 2.8954e-06 1.95827 2.9824e-06 1.95355 3.07036e-06 1.94879 3.1593e-06 1.944 3.24921e-06 1.93918 3.3401e-06 1.93432 3.43195e-06 1.92943 3.52475e-06 1.92451 3.61854e-06 1.91956 3.7133e-06 1.91457 3.80901e-06 1.90955 3.90568e-06 1.90449 4.00332e-06 1.89941 4.10192e-06 1.89429 4.20148e-06 1.88914 4.30199e-06 1.88396 4.40346e-06 1.87874 4.50589e-06 1.8735 4.60927e-06 1.86822 4.7136e-06 1.86292 4.81888e-06 1.85758 4.9251e-06 1.85221 5.03228e-06 1.84681 5.14039e-06 1.84138 5.24945e-06 1.83592 5.35945e-06 1.83043 5.47037e-06 1.82491 5.58223e-06 1.81936 5.69504e-06 1.81378 5.80876e-06 1.80817 5.92341e-06 1.80253 6.03898e-06 1.79686 6.15548e-06 1.79116 6.27289e-06 1.78544 6.39122e-06 1.77969 6.51046e-06 1.77391 6.63061e-06 1.7681 6.75166e-06 1.76226 6.87362e-06 1.75639 6.99647e-06 1.7505 7.12023e-06 1.74458 7.24486e-06 1.73864 7.37041e-06 1.73266 7.49682e-06 1.72667 7.62412e-06 1.72064 7.7523e-06 1.71459 7.88135e-06 1.70851 8.01127e-06 1.70241 8.14205e-06 1.69628 8.27371e-06 1.69013 8.40621e-06 1.68395 8.53957e-06 1.67775 8.67378e-06 1.67152 8.80883e-06 1.66527 8.94472e-06 1.65899 9.08145e-06 1.65269 9.21901e-06 1.64637 9.35739e-06 1.64002 9.4966e-06 1.63366 9.63663e-06 1.62726 9.77747e-06 1.62085 9.91911e-06 1.61441 1.00615e-05 1.60796 1.02048e-05 1.60148 1.03488e-05 1.59498 1.04936e-05 1.58845 1.06392e-05 1.58191 1.07856e-05 1.57535 1.09328e-05 1.56876 1.10807e-05 1.56216 1.12293e-05 1.55553 1.13788e-05 1.54889 1.15289e-05 1.54223 1.16798e-05 1.53555 1.18315e-05 1.52885 1.19839e-05 1.52213 1.2137e-05 1.51539 1.22908e-05 1.50863 1.24453e-05 1.50186 1.26005e-05 1.49507 1.27565e-05 1.48827 1.29131e-05 1.48144 1.30704e-05 1.4746 1.32284e-05 1.46774 1.33871e-05 1.46087 1.35464e-05 1.45398 1.37064e-05 1.44708 1.3867e-05 1.44016 1.40283e-05 1.43323 1.41902e-05 1.42628 1.43528e-05 1.41932 1.4516e-05 1.41234 1.46798e-05 1.40535 1.48442e-05 1.39835 1.50092e-05 1.39134 1.51748e-05 1.38431 1.5341e-05 1.37727 1.55078e-05 1.37021 1.56752e-05 1.36315 1.58431e-05 1.35607 1.60116e-05 1.34899 1.61806e-05 1.34189 1.63502e-05 1.33478 1.65203e-05 1.32766 1.66909e-05 1.32053 1.68621e-05 1.3134 1.70338e-05 1.30625 1.7206e-05 1.29909 1.73786e-05 1.29193 1.75518e-05 1.28475 1.77255e-05 1.27757 1.78996e-05 1.27038 1.80742e-05 1.26318 1.82492e-05 1.25598 1.84247e-05 1.24877 1.86007e-05 1.24155 1.8777e-05 1.23433 1.89538e-05 1.2271 1.9131e-05 1.21986 1.93086e-05 1.21262 1.94866e-05 1.20538 1.9665e-05 1.19813 1.98438e-05 1.19088 2.00229e-05 1.18362 2.02024e-05 1.17636 2.03823e-05 1.16909 2.05625e-05 1.16182 2.07431e-05 1.15455 2.0924e-05 1.14728 2.11052e-05 1.14001 2.12867e-05 1.13273 2.14685e-05 1.12545 2.16506e-05 1.11817 2.1833e-05 1.11089 2.20156e-05 1.10361 2.21986e-05 1.09633 2.23817e-05 1.08905 2.25652e-05 1.08177 2.27488e-05 1.0745 2.29328e-05 1.06722 2.31168e-05 1.05994 2.33013e-05 1.05267 2.34855e-05 1.0454 2.36708e-05 1.03813 2.38546e-05 1.03086 2.40418e-05 1.0236 2.42233e-05 1.01634 2.44147e-05 1.00908 2.45913e-05 1.00183 2.47893e-05 0.994579 2.49594e-05 0.987336 2.51635e-05 0.980098 2.53303e-05 0.972865 2.55355e-05 0.965638 2.57034e-05 0.958417 2.59074e-05 0.951203 2.60762e-05 0.943994 2.628e-05 0.936794 2.64499e-05 0.929599 2.66489e-05 0.922413 2.67582e-05 0.915234 2.07324e-05 -1.724e-05 1.65915 1.55372 1.52808 1.52038 1.51653 1.51249 1.50814 1.5051 1.50628 1.51315 1.52531 1.54173 1.561 1.58144 1.60313 1.62701 1.65306 1.68081 1.71001 1.74063 1.77148 1.80098 1.8283 1.85284 1.87419 1.8922 1.90689 1.91849 1.92736 1.93392 1.93862 1.94189 1.94408 1.94552 1.94643 1.94699 1.94733 1.94753 1.94764 1.9477 1.94774 1.94776 1.94777 1.94777 1.94777 1.94778 1.94778 1.94778 1.94779 1.94779 1.9478 1.9478 1.94781 1.94782 1.94783 1.94784 1.94784 1.94785 1.94786 1.94786 1.94787 1.94786 1.94785 1.94783 1.9478 1.94775 1.94768 1.94759 1.94748 1.94734 1.94718 1.94698 1.94674 1.94647 1.94616 1.94581 1.94542 1.945 1.94455 1.94407 1.94357 1.94306 1.94253 1.94201 1.9415 1.941 1.94054 1.94011 1.93972 1.93939 1.93913 1.93893 1.9388 1.93875 1.93877 1.93889 1.93908 1.93935 1.93969 1.9401 1.94055 1.94106 1.94161 1.94219 1.9428 1.94342 1.94405 1.94468 1.9453 1.94591 1.9465 1.94707 1.94761 1.94811 1.94859 1.94903 1.94943 1.9498 1.95014 1.95044 1.95071 1.95095 1.95117 1.95135 1.95152 1.95166 1.95178 1.95189 1.95198 1.95206 1.95213 1.95219 1.95224 1.95228 1.95232 1.95235 1.95238 1.9524 1.95242 1.95243 1.95244 1.95243 1.95242 1.95239 1.95234 1.95228 1.9522 1.95209 1.95196 1.95179 1.95159 1.95136 1.95109 1.95079 1.95044 1.95006 1.94964 1.94919 1.94871 1.94821 1.94769 1.94716 1.94663 1.94611 1.9456 1.94512 1.94468 1.94427 1.94392 1.94363 1.9434 1.94325 1.94317 1.94316 1.94324 1.94341 1.94365 1.94397 1.94434 1.94478 1.94527 1.9458 1.94636 1.94695 1.94756 1.94818 1.94881 1.94942 1.95003 1.95062 1.95119 1.95173 1.95224 1.95273 1.95317 1.95359 1.95397 1.95431 1.95463 1.95491 1.95516 1.95538 1.95558 1.95575 1.9559 1.95603 1.95614 1.95624 1.95632 1.95639 1.95645 1.9565 1.95654 1.95657 1.9566 1.95663 1.95665 1.95666 1.95668 1.95669 1.9567 1.95671 1.95672 1.95673 1.95673 1.95674 1.95675 1.95675 1.95676 1.95677 1.95677 1.95678 1.95678 1.95679 1.9568 1.95681 1.95681 1.95682 1.95683 1.95684 1.95685 1.95685 1.95686 1.95687 1.95688 1.95689 1.9569 1.9569 1.95691 1.95692 1.95693 1.95694 1.95694 1.95695 1.95696 1.95697 1.95697 1.95698 1.95698 1.95699 1.95699 1.957 1.957 1.957 1.95701 1.95701 1.95701 1.95701 1.95701 1.95701 1.95701 1.95701 1.95701 1.95701 1.957 1.957 1.957 1.957 1.95699 1.95699 1.95699 1.95699 1.95698 1.95698 1.95698 1.95698 1.95697 1.95697 1.95697 1.95697 1.95696 1.95696 1.95696 1.95695 1.95694 1.95693 1.95691 1.95689 1.95686 1.95682 1.95677 1.9567 1.95662 1.95651 1.95638 1.95621 1.95601 1.95577 1.95549 1.95515 1.95477 1.95433 1.95383 1.95327 1.95264 1.95196 1.95121 1.95041 1.94955 1.94863 1.94768 1.94669 1.94566 1.94462 1.94356 1.9425 1.94145 1.94041 1.93939 1.93841 1.93746 1.93656 1.9357 1.9349 1.93414 1.93343 1.93277 1.93215 1.93157 1.93101 1.93048 1.92995 1.92944 1.92891 1.92838 1.92782 1.92724 1.92662 1.92596 1.92526 1.9245 1.92368 1.92281 1.92187 1.92087 1.91981 1.91868 1.91748 1.91623 1.91491 1.91353 1.91209 1.91059 1.90904 1.90743 1.90577 1.90407 1.90231 1.90051 1.89867 1.89678 1.89485 1.89288 1.89088 1.88883 1.88675 1.88464 1.88248 1.8803 1.87807 1.87582 1.87353 1.87121 1.86885 1.86646 1.86404 1.86159 1.8591 1.85658 1.85403 1.85145 1.84883 1.84618 1.8435 1.84079 1.83805 1.83527 1.83246 1.82962 1.82675 1.82384 1.82091 1.81794 1.81494 1.81191 1.80885 1.80575 1.80262 1.79947 1.79628 1.79305 1.7898 1.78652 1.7832 1.77985 1.77647 1.77306 1.76962 1.76615 1.76265 1.75911 1.75555 1.75195 1.74832 1.74467 1.74098 1.73726 1.73351 1.72973 1.72592 1.72208 1.71821 1.71431 1.71038 1.70642 1.70243 1.69841 1.69436 1.69028 1.68617 1.68203 1.67787 1.67367 1.66945 1.6652 1.66091 1.6566 1.65227 1.6479 1.6435 1.63908 1.63463 1.63015 1.62565 1.62111 1.61655 1.61196 1.60735 1.60271 1.59804 1.59334 1.58862 1.58388 1.5791 1.5743 1.56948 1.56462 1.55975 1.55485 1.54992 1.54497 1.53999 1.53499 1.52996 1.52491 1.51984 1.51474 1.50962 1.50447 1.49931 1.49411 1.4889 1.48366 1.4784 1.47312 1.46782 1.46249 1.45714 1.45177 1.44638 1.44097 1.43554 1.43009 1.42461 1.41912 1.4136 1.40807 1.40252 1.39694 1.39135 1.38574 1.38011 1.37446 1.36879 1.36311 1.35741 1.35169 1.34595 1.3402 1.33442 1.32864 1.32283 1.31701 1.31117 1.30532 1.29945 1.29357 1.28767 1.28176 1.27583 1.26989 1.26394 1.25797 1.25199 1.24599 1.23998 1.23396 1.22793 1.22188 1.21583 1.20976 1.20368 1.19759 1.19148 1.18537 1.17925 1.17311 1.16697 1.16082 1.15465 1.14848 1.1423 1.13612 1.12992 1.12371 1.1175 1.11128 1.10506 1.09882 1.09258 1.08634 1.08008 1.07383 1.06756 1.06129 1.05502 1.04874 1.04246 1.03617 1.02988 1.02359 1.01729 1.01099 1.00469 0.998381 0.992073 0.985763 0.979452 0.97314 0.966826 0.960512 0.954197 0.947883 0.941568 0.935254 0.92894 0.922627 0.916315 0.910005 0.903697 0.897391 0.891087 0.884786 0.878487 0.872192 0.8659 0.859612 0.853328 0.847049 0.840774 0.834503 0.828238 0.821978 0.815725 0.809477 0.803235 0.797 0.790771 0.784544 ) ; boundaryField { inlet { type calculated; value nonuniform List<scalar> 20 ( -1.97658 -2.27052 -2.60814 -2.99597 -3.44146 -3.9532 -17.2459 -17.2459 -17.2459 -17.2459 -17.2459 -17.2459 -17.2459 -17.2459 -3.9532 -3.44146 -2.99597 -2.60814 -2.27052 -1.97658 ) ; } outlet { type calculated; value nonuniform List<scalar> 20 ( 0.778283 0.908064 1.04312 1.19823 1.3764 1.58107 6.89745 6.89745 6.89745 6.89745 6.89745 6.89745 6.89745 6.89745 1.58107 1.3764 1.19823 1.04312 0.908064 0.778283 ) ; } sides { type empty; value nonuniform 0(); } walls { type calculated; value uniform 0; } } // ************************************************************************* //
[ "alexmayes@gmail.com" ]
alexmayes@gmail.com
b11a07662d83d8aa8cf00f5f42a2a9b7e22969cd
5ca12adee11309588588cd2c031bb5c6690b6e2a
/067_add_binary.cpp
1f9ad65e0a05aa128a2439e894a0cf30c4686727
[]
no_license
zixuan-zhang/leetcode
7b701efa4ec92e7923357a9ed274d601840b3625
f7704a17606471202aad811db913da8ca09bd3aa
refs/heads/master
2020-04-03T20:54:32.250272
2016-09-30T07:29:28
2016-09-30T07:29:28
40,873,801
1
0
null
null
null
null
UTF-8
C++
false
false
1,548
cpp
/******************************************************************************* * @File : 067_add_binary.cpp * @Author: Zhang Zixuan * @Email : zixuan.zhang.victor@gmail.com * @Blog : www.noathinker.com * @Date : 2015年12月29日 星期二 20时52分11秒 ******************************************************************************/ class Solution { public: string addBinary(string a, string b) { if ("" == a) return b; if ("" == b) return a; int aSize = a.length(); int bSize = b.length(); string bigger = aSize > bSize ? a : b; string smaller = aSize > bSize ? b : a; int carry = 0; int index = 0; for (; index < smaller.length(); ++index) { int number = (bigger[bigger.length()-1-index]-'0' + smaller[smaller.length()-1-index]-'0' + carry) % 2; carry = (bigger[bigger.length()-1-index]-'0' + smaller[smaller.length()-1-index]-'0' + carry) / 2; bigger[bigger.length()-1-index] = number + '0'; } if (carry) { for (; index < bigger.length(); ++index) { int number = (bigger[bigger.length()-1-index] - '0' + carry) % 2; carry = (bigger[bigger.length()-1-index] - '0' + carry) / 2; bigger[bigger.length()-1-index] = number + '0'; } if (carry) { bigger.insert(bigger.begin(), '1'); } } return bigger; } };
[ "zixuan.zhang.victor@gmail.com" ]
zixuan.zhang.victor@gmail.com
1e0e355418866055d9b5067b1d7749b4acda7022
781a4dbd7b047337d819a3968a699b3b8b280c44
/Yama-core/src/scene/GameObject.h
9a43f251c5179ff5f2aade1abfc894e6574ffd5f
[]
no_license
Makamitsu/YamaNG
81fe8ef42bd4560f13e670abb6a0a0a3285fe4d8
14f7a34ad5af86b5f051c87d80a6f85122fa5b85
refs/heads/master
2020-03-11T11:27:24.745451
2018-05-17T20:35:59
2018-05-17T20:35:59
129,970,094
0
0
null
null
null
null
UTF-8
C++
false
false
355
h
#pragma once #include <string> #include <vector> #include <unordered_map> #include "Componant.h" class Model; class Transform; class GameObject{ private: public: std::unordered_map<std::string, Componant> componants; GameObject* parent; std::vector<GameObject*> childs; Model* model; Transform* transform; GameObject(); ~GameObject(); };
[ "augustin.ambiehl@FRTLSDT86" ]
augustin.ambiehl@FRTLSDT86
24968f8cb789e46f4255e2d7265e8b63926cf8ae
39acc2eb86d2eed8d9e8c9c778fc1235bfb07ba4
/test/include/test-stable.hpp
52389f42d841b762be99a1ac0b6060737b2ade26
[ "MIT" ]
permissive
Kartonagnick/tools-features
773f8c4cb8f0c81dd8e7b86e8ab7dc0d0b75423a
a3662f165f796751cabe1f0703f0f0316cace647
refs/heads/master
2023-06-12T01:50:43.438534
2021-06-01T17:00:00
2021-06-01T17:00:00
368,644,407
0
0
MIT
2021-05-20T20:59:13
2021-05-18T19:26:07
C++
UTF-8
C++
false
false
1,671
hpp
// [2020y-06m-01d][20:00:00] Idrisov Denis R. 003 // [2020y-05m-21d][02:00:00] Idrisov Denis R. 002 // [2020y-05m-19d][23:00:00] Idrisov Denis R. 001 #pragma once #ifndef dTEST_DEVELOP_USED_ #define dTEST_DEVELOP_USED_ 002 //======================================||==================||================== //===== modern/classic =================||==================||================== #define TEST_MODERN 001 // ready! #define TEST_CLASSIC 001 // ready! //======================================||==================||================== //===== tools/features =================||==================||================== #define TEST_ATOMIC 001 // ready! #define TEST_CSTDINT 001 // ready! #define TEST_DECLTYPE 001 // ready! #define TEST_HASH 001 // ready! #define TEST_LAMBDA 001 // ready! #define TEST_NOCOPYABLE 002 // ready! #define TEST_NOEXCEPT 001 // ready! #define TEST_NULLPTR 001 // ready! #define TEST_STATIC_ASSERT 001 // ready! #define TEST_STATIC_CHECK 002 // ready! #define TEST_TYPE_TRAITS 001 // ready! //============================================================================== //============================================================================== // in progress... #endif // !dTEST_DEVELOP_USED_
[ "CastleOfDreams@yandex.ru" ]
CastleOfDreams@yandex.ru
3b459005fc6d1da64c6d3e436c00fdd04c8964d1
22631e8a445eb97e88c716009afb00f702223e58
/Sources/Game/AudioDriver/AudioDriver_Adx2le.cpp
c1186cf19e2b3723574cd809a9df52a4083601c3
[]
no_license
OrangeCocoa/Prizm_with_SoLoud
38c00f8377b8ad0a6fff645268faaa02bef855ed
320c33b37c3e91e8a31c15db95485df209e6c7ba
refs/heads/master
2020-04-21T11:34:55.670260
2019-02-19T11:03:33
2019-02-19T11:03:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
179
cpp
#include"AudioDriver_Adx2le.h" #include"..\Resource.h" namespace Prizm { const std::string path = RESOURCE_DIR + "Sounds/"; const std::string acf_file_name = "Prizm.acf"; }
[ "shoheyhey1111@yahoo.co.jp" ]
shoheyhey1111@yahoo.co.jp
69f0983accd0710ae7e76b97a7f35e1c1050b34c
618c5219012b89415e749a5027b77eb8c0d71c5a
/OpencvTest_static/camera_save_to_avi/camera_save.cpp
482f04e34e12a8896dde2d26b3b503c04e3f78e9
[]
no_license
heroinlin/OpencvTest
b9ea6b075c0a9da4a869cb08e6c2e1ee595d1b1d
9c73782f371998707f0e19a3ef1f3986e1fd304c
refs/heads/master
2021-01-19T04:27:49.643545
2017-03-31T03:03:00
2017-03-31T03:03:00
61,783,487
0
0
null
null
null
null
GB18030
C++
false
false
2,086
cpp
#include "cv.h" #include "highgui.h" #include <stdio.h> #include <ctype.h> #include <time.h> /* 视频录像,截取视频片段,截图 无参数则打开外部摄像头,附加视频路径则打开本地视频 按下'r'键进行录像,重新按下退出录像功能 鼠标在视频窗口点击保存当前帧图像 */ IplImage *frame = 0; int button_down_count = 0; void mouseHandler(int event, int x, int y, int flags, void *param); int main(int argc, char **argv) { CvCapture *capture = 0; int flag = 1; int frame_num = 0; int iscolor = 1; int fps = 25; int press = 0; CvVideoWriter *writer = NULL; if (argc == 1 || (argc == 2 && strlen(argv[1]) == 1 && isdigit(argv[1][0]))) { capture = cvCaptureFromCAM(0); } else if (argc == 2) { capture = cvCaptureFromAVI(argv[1]); } if (!capture) { fprintf(stderr, "Could not initialize capturing.../n"); return -1; } cvNamedWindow("video", 0); cvSetMouseCallback("video", mouseHandler, NULL); for (;;) { frame = cvQueryFrame(capture); if (!frame & frame_num > 0) { break; } if (frame_num > 0) { if (flag == 0) { cvWriteFrame(writer, frame); } cvShowImage("video", frame); press = cvWaitKey(33); if (press == 'r') { if (flag == 1) { writer = cvCreateVideoWriter("./out.avi", CV_FOURCC('X', 'V', 'I', 'D'), fps, cvSize(frame->width, frame->height),1); printf("Starting Record the Video!\n"); flag = 0; } else { cvReleaseVideoWriter(&writer); printf("Stop the recording!\n"); flag = 1; } } else if (press == 27) { break; } } frame_num++; } cvReleaseCapture(&capture); cvDestroyWindow("video"); return 0; } void mouseHandler(int event, int x, int y, int flags, void *param) { time_t curtime = time(NULL); char *date = ctime(&curtime); switch (event) { case CV_EVENT_LBUTTONDOWN: printf("Get a picture named %07d.jpg at %s\n", button_down_count, date + 11); sprintf(date, "./%07d.jpg", button_down_count++); cvSaveImage(date, frame,0); break; default: break; } }
[ "linjian@shichazhe.com" ]
linjian@shichazhe.com
b32b292493d8152ba8a7ed4bd11492c91317a0ae
994a028690528ac4af66b926c31c16be250b479b
/uclibc++/zk_full/jni/activity/networkSetting3Activity.cpp
5a437c698551b1d0550c54c453fe43265e0a3c76
[]
no_license
aaron201912/UuidSSDPlayer
da9e3f6e377c7333d963c5bc9bc289a1e79d2e59
9373fe274127712621d26abadfa26240d200d508
refs/heads/master
2022-01-29T23:07:47.021829
2022-01-05T04:06:42
2022-01-05T04:06:42
246,770,538
7
15
null
null
null
null
UTF-8
C++
false
false
13,542
cpp
/*********************************************** /gen auto by zuitools ***********************************************/ #include "networkSetting3Activity.h" /*TAG:GlobalVariable全局变量*/ static ZKButton* mButton_show_passwdPtr; static ZKButton* mButton_connect_connPtr; static ZKTextView* mTextview_connect_password_titlePtr; static ZKEditText* mEdittextAllInfoPtr; static ZKTextView* mTextview_connect_ssid_titlePtr; static ZKTextView* mTextview_connect_ssidPtr; static ZKButton* msys_backPtr; static networkSetting3Activity* mActivityPtr; /*register activity*/ REGISTER_ACTIVITY(networkSetting3Activity); typedef struct { int id; // 定时器ID , 不能重复 int time; // 定时器 时间间隔 单位 毫秒 }S_ACTIVITY_TIMEER; #include "logic/networkSetting3Logic.cc" /***********/ typedef struct { int id; const char *pApp; } SAppInfo; /** *点击跳转window */ static SAppInfo sAppInfoTab[] = { // { ID_MAIN_TEXT, "TextViewActivity" }, }; /***************/ typedef bool (*ButtonCallback)(ZKButton *pButton); /** * button onclick表 */ typedef struct { int id; ButtonCallback callback; }S_ButtonCallback; /*TAG:ButtonCallbackTab按键映射表*/ static S_ButtonCallback sButtonCallbackTab[] = { ID_NETWORKSETTING3_Button_show_passwd, onButtonClick_Button_show_passwd, ID_NETWORKSETTING3_Button_connect_conn, onButtonClick_Button_connect_conn, ID_NETWORKSETTING3_sys_back, onButtonClick_sys_back, }; /***************/ typedef void (*SeekBarCallback)(ZKSeekBar *pSeekBar, int progress); typedef struct { int id; SeekBarCallback callback; }S_ZKSeekBarCallback; /*TAG:SeekBarCallbackTab*/ static S_ZKSeekBarCallback SZKSeekBarCallbackTab[] = { }; typedef int (*ListViewGetItemCountCallback)(const ZKListView *pListView); typedef void (*ListViewobtainListItemDataCallback)(ZKListView *pListView,ZKListView::ZKListItem *pListItem, int index); typedef void (*ListViewonItemClickCallback)(ZKListView *pListView, int index, int id); typedef struct { int id; ListViewGetItemCountCallback getListItemCountCallback; ListViewobtainListItemDataCallback obtainListItemDataCallback; ListViewonItemClickCallback onItemClickCallback; }S_ListViewFunctionsCallback; /*TAG:ListViewFunctionsCallback*/ static S_ListViewFunctionsCallback SListViewFunctionsCallbackTab[] = { }; typedef void (*SlideWindowItemClickCallback)(ZKSlideWindow *pSlideWindow, int index); typedef struct { int id; SlideWindowItemClickCallback onSlideItemClickCallback; }S_SlideWindowItemClickCallback; /*TAG:SlideWindowFunctionsCallbackTab*/ static S_SlideWindowItemClickCallback SSlideWindowItemClickCallbackTab[] = { }; typedef void (*EditTextInputCallback)(const std::string &text); typedef struct { int id; EditTextInputCallback onEditTextChangedCallback; }S_EditTextInputCallback; /*TAG:EditTextInputCallback*/ static S_EditTextInputCallback SEditTextInputCallbackTab[] = { ID_NETWORKSETTING3_EdittextAllInfo, onEditTextChanged_EdittextAllInfo, }; typedef void (*VideoViewCallback)(ZKVideoView *pVideoView, int msg); typedef struct { int id; //VideoView ID bool loop; // 是否是轮播类型 int defaultvolume;//轮播类型时,默认视频音量 VideoViewCallback onVideoViewCallback; }S_VideoViewCallback; /*TAG:VideoViewCallback*/ static S_VideoViewCallback SVideoViewCallbackTab[] = { }; networkSetting3Activity::networkSetting3Activity() { //todo add init code here mVideoLoopIndex = 0; mVideoLoopErrorCount = 0; } networkSetting3Activity::~networkSetting3Activity() { //todo add init file here // 退出应用时需要反注册 EASYUICONTEXT->unregisterGlobalTouchListener(this); onUI_quit(); unregisterProtocolDataUpdateListener(onProtocolDataUpdate); } const char* networkSetting3Activity::getAppName() const{ return "networkSetting3.ftu"; } //TAG:onCreate void networkSetting3Activity::onCreate() { Activity::onCreate(); mButton_show_passwdPtr = (ZKButton*)findControlByID(ID_NETWORKSETTING3_Button_show_passwd); mButton_connect_connPtr = (ZKButton*)findControlByID(ID_NETWORKSETTING3_Button_connect_conn); mTextview_connect_password_titlePtr = (ZKTextView*)findControlByID(ID_NETWORKSETTING3_Textview_connect_password_title); mEdittextAllInfoPtr = (ZKEditText*)findControlByID(ID_NETWORKSETTING3_EdittextAllInfo);if(mEdittextAllInfoPtr!= NULL){mEdittextAllInfoPtr->setTextChangeListener(this);} mTextview_connect_ssid_titlePtr = (ZKTextView*)findControlByID(ID_NETWORKSETTING3_Textview_connect_ssid_title); mTextview_connect_ssidPtr = (ZKTextView*)findControlByID(ID_NETWORKSETTING3_Textview_connect_ssid); msys_backPtr = (ZKButton*)findControlByID(ID_NETWORKSETTING3_sys_back); mActivityPtr = this; onUI_init(); registerProtocolDataUpdateListener(onProtocolDataUpdate); rigesterActivityTimer(); } void networkSetting3Activity::onClick(ZKBase *pBase) { //TODO: add widget onClik code int buttonTablen = sizeof(sButtonCallbackTab) / sizeof(S_ButtonCallback); for (int i = 0; i < buttonTablen; ++i) { if (sButtonCallbackTab[i].id == pBase->getID()) { if (sButtonCallbackTab[i].callback((ZKButton*)pBase)) { return; } break; } } int len = sizeof(sAppInfoTab) / sizeof(sAppInfoTab[0]); for (int i = 0; i < len; ++i) { if (sAppInfoTab[i].id == pBase->getID()) { EASYUICONTEXT->openActivity(sAppInfoTab[i].pApp); return; } } Activity::onClick(pBase); } void networkSetting3Activity::onResume() { Activity::onResume(); EASYUICONTEXT->registerGlobalTouchListener(this); startVideoLoopPlayback(); onUI_show(); } void networkSetting3Activity::onPause() { Activity::onPause(); EASYUICONTEXT->unregisterGlobalTouchListener(this); stopVideoLoopPlayback(); onUI_hide(); } void networkSetting3Activity::onIntent(const Intent *intentPtr) { Activity::onIntent(intentPtr); onUI_intent(intentPtr); } bool networkSetting3Activity::onTimer(int id) { return onUI_Timer(id); } void networkSetting3Activity::onProgressChanged(ZKSeekBar *pSeekBar, int progress){ int seekBarTablen = sizeof(SZKSeekBarCallbackTab) / sizeof(S_ZKSeekBarCallback); for (int i = 0; i < seekBarTablen; ++i) { if (SZKSeekBarCallbackTab[i].id == pSeekBar->getID()) { SZKSeekBarCallbackTab[i].callback(pSeekBar, progress); break; } } } int networkSetting3Activity::getListItemCount(const ZKListView *pListView) const{ int tablen = sizeof(SListViewFunctionsCallbackTab) / sizeof(S_ListViewFunctionsCallback); for (int i = 0; i < tablen; ++i) { if (SListViewFunctionsCallbackTab[i].id == pListView->getID()) { return SListViewFunctionsCallbackTab[i].getListItemCountCallback(pListView); break; } } return 0; } void networkSetting3Activity::obtainListItemData(ZKListView *pListView,ZKListView::ZKListItem *pListItem, int index){ int tablen = sizeof(SListViewFunctionsCallbackTab) / sizeof(S_ListViewFunctionsCallback); for (int i = 0; i < tablen; ++i) { if (SListViewFunctionsCallbackTab[i].id == pListView->getID()) { SListViewFunctionsCallbackTab[i].obtainListItemDataCallback(pListView, pListItem, index); break; } } } void networkSetting3Activity::onItemClick(ZKListView *pListView, int index, int id){ int tablen = sizeof(SListViewFunctionsCallbackTab) / sizeof(S_ListViewFunctionsCallback); for (int i = 0; i < tablen; ++i) { if (SListViewFunctionsCallbackTab[i].id == pListView->getID()) { SListViewFunctionsCallbackTab[i].onItemClickCallback(pListView, index, id); break; } } } void networkSetting3Activity::onSlideItemClick(ZKSlideWindow *pSlideWindow, int index) { int tablen = sizeof(SSlideWindowItemClickCallbackTab) / sizeof(S_SlideWindowItemClickCallback); for (int i = 0; i < tablen; ++i) { if (SSlideWindowItemClickCallbackTab[i].id == pSlideWindow->getID()) { SSlideWindowItemClickCallbackTab[i].onSlideItemClickCallback(pSlideWindow, index); break; } } } bool networkSetting3Activity::onTouchEvent(const MotionEvent &ev) { return onnetworkSetting3ActivityTouchEvent(ev); } void networkSetting3Activity::onTextChanged(ZKTextView *pTextView, const std::string &text) { int tablen = sizeof(SEditTextInputCallbackTab) / sizeof(S_EditTextInputCallback); for (int i = 0; i < tablen; ++i) { if (SEditTextInputCallbackTab[i].id == pTextView->getID()) { SEditTextInputCallbackTab[i].onEditTextChangedCallback(text); break; } } } void networkSetting3Activity::rigesterActivityTimer() { int tablen = sizeof(REGISTER_ACTIVITY_TIMER_TAB) / sizeof(S_ACTIVITY_TIMEER); for (int i = 0; i < tablen; ++i) { S_ACTIVITY_TIMEER temp = REGISTER_ACTIVITY_TIMER_TAB[i]; registerTimer(temp.id, temp.time); } } void networkSetting3Activity::onVideoPlayerMessage(ZKVideoView *pVideoView, int msg) { int tablen = sizeof(SVideoViewCallbackTab) / sizeof(S_VideoViewCallback); for (int i = 0; i < tablen; ++i) { if (SVideoViewCallbackTab[i].id == pVideoView->getID()) { if (SVideoViewCallbackTab[i].loop) { //循环播放 videoLoopPlayback(pVideoView, msg, i); } else if (SVideoViewCallbackTab[i].onVideoViewCallback != NULL){ SVideoViewCallbackTab[i].onVideoViewCallback(pVideoView, msg); } break; } } } void networkSetting3Activity::videoLoopPlayback(ZKVideoView *pVideoView, int msg, size_t callbackTabIndex) { switch (msg) { case ZKVideoView::E_MSGTYPE_VIDEO_PLAY_STARTED: LOGD("ZKVideoView::E_MSGTYPE_VIDEO_PLAY_STARTED\n"); if (callbackTabIndex >= (sizeof(SVideoViewCallbackTab)/sizeof(S_VideoViewCallback))) { break; } pVideoView->setVolume(SVideoViewCallbackTab[callbackTabIndex].defaultvolume / 10.0); mVideoLoopErrorCount = 0; break; case ZKVideoView::E_MSGTYPE_VIDEO_PLAY_ERROR: /**错误处理 */ ++mVideoLoopErrorCount; if (mVideoLoopErrorCount > 100) { LOGD("video loop error counts > 100, quit loop playback !"); break; } //不用break, 继续尝试播放下一个 case ZKVideoView::E_MSGTYPE_VIDEO_PLAY_COMPLETED: LOGD("ZKVideoView::E_MSGTYPE_VIDEO_PLAY_COMPLETED\n"); std::vector<std::string> videolist; std::string fileName(getAppName()); if (fileName.size() < 4) { LOGD("getAppName size < 4, ignore!"); break; } fileName = fileName.substr(0, fileName.length() - 4) + "_video_list.txt"; fileName = "/mnt/extsd/" + fileName; if (!parseVideoFileList(fileName.c_str(), videolist)) { LOGD("parseVideoFileList failed !"); break; } if (pVideoView && !videolist.empty()) { mVideoLoopIndex = (mVideoLoopIndex + 1) % videolist.size(); pVideoView->play(videolist[mVideoLoopIndex].c_str()); } break; } } void networkSetting3Activity::startVideoLoopPlayback() { int tablen = sizeof(SVideoViewCallbackTab) / sizeof(S_VideoViewCallback); for (int i = 0; i < tablen; ++i) { if (SVideoViewCallbackTab[i].loop) { ZKVideoView* videoView = (ZKVideoView*)findControlByID(SVideoViewCallbackTab[i].id); if (!videoView) { return; } //循环播放 videoLoopPlayback(videoView, ZKVideoView::E_MSGTYPE_VIDEO_PLAY_COMPLETED, i); return; } } } void networkSetting3Activity::stopVideoLoopPlayback() { int tablen = sizeof(SVideoViewCallbackTab) / sizeof(S_VideoViewCallback); for (int i = 0; i < tablen; ++i) { if (SVideoViewCallbackTab[i].loop) { ZKVideoView* videoView = (ZKVideoView*)findControlByID(SVideoViewCallbackTab[i].id); if (!videoView) { return; } if (videoView->isPlaying()) { videoView->stop(); } return; } } } bool networkSetting3Activity::parseVideoFileList(const char *pFileListPath, std::vector<string>& mediaFileList) { mediaFileList.clear(); if (NULL == pFileListPath || 0 == strlen(pFileListPath)) { LOGD("video file list is null!"); return false; } ifstream is(pFileListPath, ios_base::in); if (!is.is_open()) { LOGD("cann't open file %s \n", pFileListPath); return false; } char tmp[1024] = {0}; while (is.getline(tmp, sizeof(tmp))) { string str = tmp; removeCharFromString(str, '\"'); removeCharFromString(str, '\r'); removeCharFromString(str, '\n'); if (str.size() > 1) { mediaFileList.push_back(str.c_str()); } } LOGD("(f:%s, l:%d) parse fileList[%s], get [%d]files\n", __FUNCTION__, __LINE__, pFileListPath, mediaFileList.size()); for (size_t i = 0; i < mediaFileList.size(); i++) { LOGD("file[%d]:[%s]\n", i, mediaFileList[i].c_str()); } is.close(); return true; } int networkSetting3Activity::removeCharFromString(string& nString, char c) { string::size_type pos; while(1) { pos = nString.find(c); if(pos != string::npos) { nString.erase(pos, 1); } else { break; } } return (int)nString.size(); } void networkSetting3Activity::registerUserTimer(int id, int time) { registerTimer(id, time); } void networkSetting3Activity::unregisterUserTimer(int id) { unregisterTimer(id); } void networkSetting3Activity::resetUserTimer(int id, int time) { resetTimer(id, time); }
[ "koda.xu@mstarsemi.com" ]
koda.xu@mstarsemi.com
281a38144a22cebaeab33bac39f7353680c9469a
d1570b029c9264449fd09f60ba0988a8cbd81977
/jumping_on_couds.cpp
5b3a8052d6f4384cd615a28503e108c897abe99e
[]
no_license
shikhar888/hackerrank
d87bb64a7d967e0457818c9848db6243aca11a58
e3d7adf23f211c29dd52cff18896c729177a48a0
refs/heads/master
2020-07-09T10:49:13.079869
2019-11-08T09:03:47
2019-11-08T09:03:47
203,951,754
0
0
null
null
null
null
UTF-8
C++
false
false
402
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n,k,i,e=100; cin>>n>>k; int c[n]; for(i=0;i<n;i++) { cin>>c[i]; } i=0; while((i+k)%n!=0) { i=(i+k)%n; e--; if(c[i]==1) { e=e-2; } } e--; i=(i+k)%n; if(c[i]==1) { e=e-2; } cout<<e<<endl; return 0; }
[ "noreply@github.com" ]
noreply@github.com
b2b87aa00196679ec05961d793856a2765b705e4
7d8c3df0b4709930fb2b719d1f1de93cf2c92296
/src/Window.cpp
8d212f32b4bf7e76c3a9126dbe75a77da0655dda
[ "Apache-2.0" ]
permissive
elct9620/seeker
fdeca3039140d20ff9cc7284a173f033254892aa
b64a58c24b6a48469c25d94bf8f5720eaff4aa0e
refs/heads/develop
2020-12-25T14:58:59.313704
2016-11-08T02:14:01
2016-11-08T02:14:01
67,684,638
0
0
null
2016-11-08T02:14:01
2016-09-08T08:36:18
C++
UTF-8
C++
false
false
1,904
cpp
// Copyright 2016 Zheng Xian Qiu #include "Seeker.h" namespace Seeker { Window::Window() : currentWindow(NULL), renderer(NULL) { } Window::~Window() { SDL_DestroyWindow(currentWindow); delete renderer; } // Display Information int Window::DISPLAY_INDEX = 0; bool Window::displayModeLoaded = false; SDL_DisplayMode Window::displayMode; int Window::DisplayWidth() { LoadDisplayMode(); return displayMode.w; } int Window::DisplayHeight() { LoadDisplayMode(); return displayMode.h; } float Window::DPI() { float ddpi; SDL_GetDisplayDPI(DISPLAY_INDEX, &ddpi, NULL, NULL); return ddpi; } void Window::LoadDisplayMode(bool reload) { if(!displayModeLoaded || reload) { if(SDL_GetCurrentDisplayMode(DISPLAY_INDEX, &displayMode) != 0) { displayModeLoaded = false; } displayModeLoaded = true; } } // Window Manager bool Window::Create(string title, bool hide) { return Create(title, DisplayWidth(), DisplayHeight(), hide); } bool Window::Create(string title, int _width, int _height, bool hide) { uint flags = hide ? 0 : SDL_WINDOW_SHOWN; flags = flags | SDL_WINDOW_INPUT_GRABBED; // Ensure get correct window resolution LoadDisplayMode(true); _width = _width > 0 ? _width : DisplayWidth(); _height = _height > 0 ? _height : DisplayHeight(); currentWindow = SDL_CreateWindow(title.c_str(), 0, 0, _width, _height, flags); if(currentWindow == NULL) { SDL_DestroyWindow(currentWindow); return false; } Logger::Info("Initialize window with %dx%dpx resolution.", DisplayWidth(), DisplayHeight()); return true; } void Window::Destroy() { SDL_DestroyWindow(currentWindow); } Renderer* Window::Renderer() { if(renderer == NULL) { renderer = new class Renderer(currentWindow); } return renderer; } }
[ "elct9620@frost.tw" ]
elct9620@frost.tw
3ed7f0eb080374f894414db392264b4bb4fe4f94
d9aec18a21a72689c955b3aff18685b0066c29e7
/src/offlineCalibration/batchCalibration.cpp
352eecd12ee54dfbedc69e7326bab97f7115fe52
[ "MIT" ]
permissive
dkoguciuk/easydepthcalib
85c5872cd8d2d09d156fb3fc199efa1977e304a5
01fc125868eca3310e8142de7ad060f66825fe19
refs/heads/master
2021-08-14T17:55:44.467538
2017-11-16T10:39:32
2017-11-16T10:39:32
106,438,296
0
0
null
null
null
null
UTF-8
C++
false
false
4,772
cpp
#include <opencv2/opencv.hpp> #include <opencv2/highgui/highgui.hpp> #include <dirent.h> #include <getopt.h> #include "calibrationMatrix.h" //============================================================================= int pgmfilter(const struct dirent *dir) // post: returns 1/true if name of dir ends in .mp3 { const char *s = dir->d_name; int len = strlen(s) - 4; // index of start of . in .mp3 if(len >= 0) { if (strncmp(s + len, ".pgm", 4) == 0) { return 1; } } return 0; } static int one (const struct dirent *unused) { return 1; } //============================================================================= string inputdir=""; string outputdir="out"; string calibfilename="calibration.mal"; int main(int argc, char **argv) { int c; if(argc<=1){ printf("This node is intended to use to calibrate dumped data offline\n"); printf("You need:\n- an input directory with the distorted depth images\n- an output directory where the undistorted images will be saved\n- the calibration file for the sensor used\n"); printf("Usage:\n"); printf("--input -i string inputdirectory\n"); printf("--output -o string outputdirectory\n"); printf("--calib -c string calibration file\n"); printf("Example:\n"); printf("./batchCalibration -i distortedDirectory -o undistortedDirectory -c depthcamera_calibration_file.mal"); exit(1); } while (1) { static struct option long_options[] = { /* These options set a flag. */ {"input", required_argument, 0, 'i'}, {"output", required_argument, 0, 'o'}, {"calib", required_argument, 0, 'c'}, {0, 0, 0, 0} }; /* getopt_long stores the option index here. */ int option_index = 0; c = getopt_long (argc, argv, "i:o:c:",long_options, &option_index); /* Detect the end of the options. */ if (c == -1) break; switch (c) { case 0: /* If this option set a flag, do nothing else now. */ if (long_options[option_index].flag != 0) break; printf ("option %s", long_options[option_index].name); if (optarg) printf (" with arg %s", optarg); printf ("\n"); break; case 'i': printf ("-\tinput dir `%s'\n", optarg); inputdir=optarg; break; case 'o': printf ("-\toutput dir `%s'\n", optarg); outputdir=optarg; break; case 'c': printf ("-\tcalibration file `%s'\n", optarg); calibfilename=optarg; break; default: abort (); } } std::cout<< calibfilename<<std::endl; calibrationMatrix multiplier((char*)calibfilename.c_str()); struct dirent **eps; int n; string fullPath="./"; fullPath.append(inputdir); fullPath.append("/"); n = scandir (fullPath.c_str(), &eps, pgmfilter, alphasort); if (n >= 0) { int cnt; for (cnt = 0; cnt < n; ++cnt){ std::cout<< "opening "<<eps[cnt]->d_name<<std::endl; cv::Mat image; std::string filename="./"; filename.append(inputdir); filename.append("/"); filename.append(eps[cnt]->d_name); std::cout<<"OPENING:\t "<<filename<<std::endl; image = cv::imread(filename,CV_LOAD_IMAGE_UNCHANGED); int cols=image.cols; int rows=image.rows; cv::Point p; ushort v; for (int i=0;i<cols;i++){ for(int j=0;j<rows;j++){ p.x=i; p.y=j; v=image.at<ushort>(p); if(v!=0){ v=multiplier.cell(p.y,p.x,v)*v; } else{ // std::cout<<"[v: "<<v<<std::endl; // std::cout<<"m: "<<multiplier.cell(p.y,p.x,v)<<std::endl; } // if(multiplier.cell(p.y,p.x,v/10)!=1.0f) // std::cout << " is "<<v<<std::endl; image.at<ushort>(p)=(ushort)v; } } std::string outDir=("./"); outDir.append(outputdir); outDir.append("/"); outDir.append(eps[cnt]->d_name); cv::imwrite(outDir,image); std::cout<< "saved "<<outDir<<std::endl; } } else perror ("Couldn't open the directory"); return 0; }
[ "maurilio.dicicco@gmail.com" ]
maurilio.dicicco@gmail.com
bd6f050fc9edae9255ef143825ce660e755f9bfa
9510efcbfa0e24aa6d04456597663d71be4b2273
/tjs2/tjsOctPack.cpp
da7ca429ad6a995ae030485bf60ce78231465c01
[ "Libpng", "Zlib", "LicenseRef-scancode-warranty-disclaimer", "BSD-3-Clause", "BSD-2-Clause-Views", "FTL", "Apache-2.0", "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
weimingtom/krkrz_android_research
de908ee2041e885e860a17d1f1c6308ef16e59e5
3a79694f2095354059187e9719b5eb190752bd70
refs/heads/master
2021-01-19T19:03:10.450469
2016-01-22T09:58:31
2016-01-22T09:58:31
null
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
30,398
cpp
#include "tjsCommHead.h" #include <map> #include <vector> #include <string> #include "tjsArray.h" #include "tjsError.h" namespace TJS { enum OctPackType { OctPack_ascii, // a : ASCII string(ヌル文字が補完される) OctPack_ASCII, // A : ASCII string(スペースが補完される) OctPack_bitstring, // b : bit string(下位ビットから上位ビットの順) OctPack_BITSTRING, // B : bit string(上位ビットから下位ビットの順) OctPack_char, // c : 符号付き1バイト数値(-128 〜 127) OctPack_CHAR, // C : 符号無し1バイト数値(0〜255) OctPack_double, // d : 倍精度浮動小数点 OctPack_float, // f : 単精度浮動小数点 OctPack_hex, // h : hex string(low nybble first) OctPack_HEX, // H : hex string(high nybble first) OctPack_int, // i : 符号付きint数値(通常4バイト) OctPack_INT, // I : 符号無しint数値(通常4バイト) OctPack_long, // l : 符号付きlong数値(通常4バイト) OctPack_LONG, // L : 符号無しlong数値(通常4バイト) OctPack_noshort, // n : short数値(ネットワークバイトオーダ) network byte order short OctPack_NOLONG, // N : long数値(ネットワークバイトオーダ) network byte order long OctPack_pointer, // p : 文字列へのポインタ null terminate char OctPack_POINTER, // P : 構造体(固定長文字列)へのポインタ fix length char OctPack_short, // s : 符号付きshort数値(通常2バイト) sign OctPack_SHORT, // S : 符号無しshort数値(通常2バイト) unsign OctPack_leshort, // v : リトルエンディアンによるshort値 little endian short OctPack_LELONG, // V : リトルエンディアンによるlong値 little endian long OctPack_uuencode, // u : uuencodeされた文字列 OctPack_BRE, // w : BER圧縮された整数値 OctPack_null, // x : ヌル文字 OctPack_NULL, // X : back up a byte OctPack_fill, // @ : 絶対位置までヌル文字を埋める OctPack_base64, // m : Base64 encode / decode OctPack_EOT }; static const tjs_char OctPackChar[OctPack_EOT] = { L'a', L'A', L'b', L'B', L'c', L'C', L'd', L'f', L'h', L'H', L'i', L'I', L'l', L'L', L'n', L'N', L'p', L'P', L's', L'S', L'v', L'V', L'u', L'w', L'x', L'X', L'@', L'm', }; static bool OctPackMapInit = false; static std::map<tjs_char,tjs_int> OctPackMap; static void OctPackMapInitialize() { if( OctPackMapInit ) return; for( tjs_int i = 0; i < OctPack_EOT; i++ ) { OctPackMap.insert( std::map<tjs_char,tjs_int>::value_type( OctPackChar[i], i ) ); } OctPackMapInit = true; } struct OctPackTemplate { OctPackType Type; tjs_int Length; }; static const tjs_char* ParseTemplateLength( OctPackTemplate& result, const tjs_char* c ) { if( *c ) { if( *c == L'*' ) { c++; result.Length = -1; // tail list } else if( *c >= L'0' && *c <= L'9' ) { tjs_int num = 0; while( *c && ( *c >= L'0' && *c <= L'9' ) ) { num *= 10; num += *c - L'0'; c++; } result.Length = num; } else { result.Length = 1; } } else { result.Length = 1; } return c; } static void ParsePackTemplate( std::vector<OctPackTemplate>& result, const tjs_char* templ ) { OctPackMapInitialize(); const tjs_char* c = templ; while( *c ) { std::map<tjs_char,tjs_int>::iterator f = OctPackMap.find( *c ); if( f == OctPackMap.end() ) { TJS_eTJSError( TJSUnknownPackUnpackTemplateCharcter ); } else { c++; OctPackTemplate t; t.Type = static_cast<OctPackType>(f->second); c = ParseTemplateLength( t, c ); result.push_back( t ); } } } static void AsciiToBin( std::vector<tjs_uint8>& bin, const ttstr& arg, tjs_nchar fillchar, tjs_int len ) { const tjs_char* str = arg.c_str(); if( len < 0 ) len = arg.length(); tjs_int i = 0; for( ; i < len && *str != L'\0'; str++, i++ ) { bin.push_back( (tjs_uint8)*str ); } for( ; i < len; i++ ) { bin.push_back( fillchar ); } } // mtol : true : 上位ビットから下位ビット, false : 下位ビットから上位ビット // 指定した数値の方が大きくても、その分は無視 static void BitStringToBin( std::vector<tjs_uint8>& bin, const ttstr& arg, bool mtol, tjs_int len ) { const tjs_char* str = arg.c_str(); if( len < 0 ) len = arg.length(); tjs_uint8 val = 0; tjs_int pos = 0; if( mtol ) { pos = 7; for( tjs_int i = 0; i < len && *str != L'\0'; str++, i++ ) { if( *str == L'0' ) { // val |= 0; } else if( *str == L'1' ) { val |= 1 << pos; } else { TJS_eTJSError( TJSUnknownBitStringCharacter ); } if( pos == 0 ) { bin.push_back( val ); pos = 7; val = 0; } else { pos--; } } if( pos < 7 ) { bin.push_back( val ); } } else { for( tjs_int i = 0; i < len && *str != L'\0'; str++, i++ ) { if( *str == L'0' ) { // val |= 0; } else if( *str == L'1' ) { val |= 1 << pos; } else { TJS_eTJSError( TJSUnknownBitStringCharacter ); } if( pos == 7 ) { bin.push_back( val ); pos = val = 0; } else { pos++; } } if( pos ) { bin.push_back( val ); } } } // mtol static void HexToBin( std::vector<tjs_uint8>& bin, const ttstr& arg, bool mtol, tjs_int len ) { const tjs_char* str = arg.c_str(); if( len < 0 ) len = arg.length(); tjs_uint8 val = 0; tjs_int pos = 0; if( mtol ) { // 上位ニブルが先 pos = 1; for( tjs_int i = 0; i < len && *str != L'\0'; str++, i++ ) { if( *str >= L'0' && *str <= L'9' ) { val |= (*str - L'0') << (pos*4); } else if( *str >= L'a' && *str <= L'f' ) { val |= (*str - L'a' + 10) << (pos*4); } else if( *str >= L'A' && *str <= L'E' ) { val |= (*str - L'A' + 10) << (pos*4); } else { TJS_eTJSError( TJSUnknownHexStringCharacter ); } if( pos == 0 ) { bin.push_back( val ); pos = 1; val = 0; } else { pos--; } } if( pos < 1 ) { bin.push_back( val ); } } else { // 下位ニブルが先 for( tjs_int i = 0; i < len && *str != L'\0'; str++, i++ ) { if( *str >= L'0' && *str <= L'9' ) { val |= (*str - L'0') << (pos*4); } else if( *str >= L'a' && *str <= L'f' ) { val |= (*str - L'a' + 10) << (pos*4); } else if( *str >= L'A' && *str <= L'E' ) { val |= (*str - L'A' + 10) << (pos*4); } else { TJS_eTJSError( TJSUnknownHexStringCharacter ); } if( pos ) { bin.push_back( val ); pos = val = 0; } else { pos++; } } if( pos ) { bin.push_back( val ); } } } // TRet : 最終的に出力する型 // TTmp : 一時的に出力する型 variant は一時的に tjs_int にしないといけないなど template<typename TRet, typename TTmp, int NBYTE, typename TRetTmp> static void ReadNumberLE( std::vector<tjs_uint8>& result, const std::vector<tTJSVariant>& args, tjs_int numargs, tjs_int& argindex, tjs_int len ) { if( len < 0 ) len = numargs - argindex; if( (len+argindex) > numargs ) len = numargs - argindex; for( tjs_int a = 0; a < len; a++ ) { TRet c = (TRet)(TTmp)args[argindex+a]; TRetTmp val = *(TRetTmp*)&c; for( int i = 0; i < NBYTE; i++ ) { TRetTmp tmp = ( val >> (i*8) ) & 0xFF; result.push_back( (tjs_uint8)tmp ); // little endian } } argindex += len-1; } template<typename TRet, typename TTmp, int NBYTE, typename TRetTmp> static void ReadNumberBE( std::vector<tjs_uint8>& result, const std::vector<tTJSVariant>& args, tjs_int numargs, tjs_int& argindex, tjs_int len ) { if( len < 0 ) len = numargs - argindex; if( (len+argindex) > numargs ) len = numargs - argindex; for( tjs_int a = 0; a < len; a++ ) { TRet c = (TRet)(TTmp)args[argindex+a]; for( int i = 0; i < NBYTE; i++ ) { result.push_back( ((*(TRetTmp*)&c)&(0xFF<<((NBYTE-1-i)*8)))>>((NBYTE-1-i)*8) ); // big endian } } argindex += len-1; } #if TJS_HOST_IS_BIG_ENDIAN # define ReadNumber ReadNumberBE #else # define ReadNumber ReadNumberLE #endif // from base64 plug-in (C) 2009 Kiyobee // 扱いやすいように一部書き換えている // inbuf の内容を base64 エンコードして、outbuf に文字列として出力 // outbuf のサイズは、insize / 4 * 3 必要 // outbuf のサイズは、(insize+2)/3 * 4 必要 static void encodeBase64( const tjs_uint8* inbuf, tjs_uint insize, std::wstring& outbuf) { outbuf.reserve( outbuf.size() + ((insize+2)/3) * 4 ); static const char* base64str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; tjs_int insize_3 = insize - 3; tjs_int outptr = 0; tjs_int i; for(i=0; i<=insize_3; i+=3) { outbuf.push_back( base64str[ (inbuf[i ] >> 2) & 0x3F ] ); outbuf.push_back( base64str[((inbuf[i ] << 4) & 0x30) | ((inbuf[i+1] >> 4) & 0x0F)] ); outbuf.push_back( base64str[((inbuf[i+1] << 2) & 0x3C) | ((inbuf[i+2] >> 6) & 0x03)] ); outbuf.push_back( base64str[ (inbuf[i+2] ) & 0x3F ] ); } switch(insize % 3) { case 2: outbuf.push_back( base64str[ (inbuf[i ] >> 2) & 0x3F ] ); outbuf.push_back( base64str[((inbuf[i ] << 4) & 0x30) | ((inbuf[i+1] >> 4) & 0x0F)] ); outbuf.push_back( base64str[ (inbuf[i+1] << 2) & 0x3C ] ); outbuf.push_back( '=' ); break; case 1: outbuf.push_back( base64str[ (inbuf[i ] >> 2) & 0x3F ] ); outbuf.push_back( base64str[ (inbuf[i ] << 4) & 0x30 ] ); outbuf.push_back( '=' ); outbuf.push_back( '=' ); break; } } static void decodeBase64( const std::wstring& inbuf, std::vector<tjs_uint8>& outbuf ) { tjs_int len = inbuf.length(); const tjs_char* data = inbuf.c_str(); if( len < 4 ) { // too short return; } outbuf.reserve( len / 4 * 3 ); static const tjs_int base64tonum[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, 0, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; tjs_int dptr = 0; tjs_int len_4 = len - 4; while( dptr < len_4 ) { outbuf.push_back( static_cast<tjs_uint8>( (base64tonum[data[dptr]] << 2) | (base64tonum[data[dptr+1]] >> 4) ) ); dptr++; outbuf.push_back( static_cast<tjs_uint8>( (base64tonum[data[dptr]] << 4) | (base64tonum[data[dptr+1]] >> 2) ) ); dptr++; outbuf.push_back( static_cast<tjs_uint8>( (base64tonum[data[dptr]] << 6) | (base64tonum[data[dptr+1]]) ) ); dptr+=2; } outbuf.push_back( static_cast<tjs_uint8>( (base64tonum[data[dptr]] << 2) | (base64tonum[data[dptr+1]] >> 4) )) ; dptr++; tjs_uint8 tmp = static_cast<tjs_uint8>( base64tonum[data[dptr++]] << 4 ); if( data[dptr] != L'=' ) { tmp |= base64tonum[data[dptr]] >> 2; outbuf.push_back( tmp ); tmp = base64tonum[data[dptr++]] << 6; if( data[dptr] != L'=' ) { tmp |= base64tonum[data[dptr]]; outbuf.push_back( tmp ); } } } static tTJSVariantOctet* Pack( const std::vector<OctPackTemplate>& templ, const std::vector<tTJSVariant>& args ) { tjs_int numargs = static_cast<tjs_int>(args.size()); std::vector<tjs_uint8> result; tjs_int count = templ.size(); tjs_int argindex = 0; for( tjs_int i = 0; i < count && argindex < numargs; argindex++ ) { OctPackType t = templ[i].Type; tjs_int len = templ[i].Length; switch( t ) { case OctPack_ascii: // a : ASCII string(ヌル文字が補完される) AsciiToBin( result, args[argindex], '\0', len ); break; case OctPack_ASCII: // A : ASCII string(スペースが補完される) AsciiToBin( result, args[argindex], ' ', len ); break; case OctPack_bitstring: // b : bit string(下位ビットから上位ビットの順) BitStringToBin( result, args[argindex], false, len ); break; case OctPack_BITSTRING: // B : bit string(上位ビットから下位ビットの順) BitStringToBin( result, args[argindex], true, len ); break; case OctPack_char: // c : 符号付き1バイト数値(-128 〜 127) ReadNumber<tjs_int8,tjs_int,1,tjs_int8>( result, args, numargs, argindex, len ); break; case OctPack_CHAR: // C : 符号無し1バイト数値(0〜255) ReadNumber<tjs_uint8,tjs_int,1,tjs_uint8>( result, args, numargs, argindex, len ); break; case OctPack_double: // d : 倍精度浮動小数点 ReadNumber<tjs_real,tjs_real,8,tjs_uint64>( result, args, numargs, argindex, len ); break; case OctPack_float: // f : 単精度浮動小数点 ReadNumber<float,tjs_real,4,tjs_uint32>( result, args, numargs, argindex, len ); break; case OctPack_hex: // h : hex string(low nybble first) HexToBin( result, args[argindex], false, len ); break; case OctPack_HEX: // H : hex string(high nybble first) HexToBin( result, args[argindex], true, len ); break; case OctPack_int: // i : 符号付きint数値(通常4バイト) case OctPack_long: // l : 符号付きlong数値(通常4バイト) ReadNumber<tjs_int,tjs_int,4,tjs_int32>( result, args, numargs, argindex, len ); break; case OctPack_INT: // I : 符号無しint数値(通常4バイト) case OctPack_LONG: // L : 符号無しlong数値(通常4バイト) ReadNumber<tjs_uint,tjs_int64,4,tjs_uint32>( result, args, numargs, argindex, len ); break; case OctPack_noshort: // n : unsigned short数値(ネットワークバイトオーダ) network byte order short ReadNumberBE<tjs_uint16,tjs_int,2,tjs_uint16>( result, args, numargs, argindex, len ); break; case OctPack_NOLONG: // N : unsigned long数値(ネットワークバイトオーダ) network byte order long ReadNumberBE<tjs_uint,tjs_int64,4,tjs_uint32>( result, args, numargs, argindex, len ); break; case OctPack_pointer: // p : 文字列へのポインタ null terminate char case OctPack_POINTER: // P : 構造体(固定長文字列)へのポインタ fix length char // TODO break; case OctPack_short: // s : 符号付きshort数値(通常2バイト) sign ReadNumber<tjs_int16,tjs_int,2,tjs_int16>( result, args, numargs, argindex, len ); break; case OctPack_SHORT: // S : 符号無しshort数値(通常2バイト) unsign ReadNumber<tjs_uint16,tjs_int,2,tjs_uint16>( result, args, numargs, argindex, len ); break; case OctPack_leshort: // v : リトルエンディアンによるunsigned short値 little endian short ReadNumberLE<tjs_uint16,tjs_int,2,tjs_uint16>( result, args, numargs, argindex, len ); break; case OctPack_LELONG: // V : リトルエンディアンによるunsigned long値 little endian long ReadNumberLE<tjs_uint,tjs_int64,4,tjs_uint32>( result, args, numargs, argindex, len ); break; case OctPack_uuencode: // u : uuencodeされた文字列 TJS_eTJSError( TJSNotSupportedUuencode ); break; case OctPack_BRE: // w : BER圧縮された整数値 TJS_eTJSError( TJSNotSupportedBER ); break; case OctPack_null: // x : ヌル文字 for( tjs_int a = 0; a < len; a++ ) { result.push_back( 0 ); } argindex--; break; case OctPack_NULL: // X : back up a byte for( tjs_int a = 0; a < len; a++ ) { result.pop_back(); } argindex--; break; case OctPack_fill: { // @ : 絶対位置までヌル文字を埋める tjs_int count = result.size(); for( tjs_int i = count; i < len; i++ ) { result.push_back( 0 ); } argindex--; break; } case OctPack_base64: { // m : Base64 encode / decode ttstr tmp = args[argindex]; decodeBase64( tmp.AsStdString(), result ); break; } } if( len >= 0 ) { // '*' の時は-1が入り、リストの末尾まで読む i++; } } if( result.size() > 0 ) return TJSAllocVariantOctet( &(result[0]), result.size() ); else return NULL; } static void BinToAscii( const tjs_uint8 *data, const tjs_uint8 *tail, tjs_uint len, ttstr& result ) { //std::vector<tjs_nchar> tmp(len+1); std::vector<tjs_nchar> tmp; tmp.reserve(len+1); for( tjs_int i = 0; i < static_cast<tjs_int>(len) && data != tail; data++, i++ ) { if( (*data) != '\0' ) { tmp.push_back( (tjs_nchar)*data ); } } tmp.push_back( (tjs_nchar)'\0' ); result = tTJSString( &(tmp[0]) ); } // mtol : true : 上位ビットから下位ビット, false : 下位ビットから上位ビット // 指定した数値の方が大きくても、その分は無視 static void BinToBitString( const tjs_uint8 *data, const tjs_uint8 *tail, tjs_uint len, ttstr& result, bool mtol ) { //std::vector<tjs_char> tmp(len+1); std::vector<tjs_char> tmp; tmp.reserve(len+1); tjs_int pos = 0; if( mtol ) { for( ; data < tail; data++ ) { for( tjs_int i = 0; i < 8 && pos < static_cast<tjs_int>(len); i++, pos++ ) { if( (*data)&(0x01<<(7-i)) ) { tmp.push_back( L'1' ); } else { tmp.push_back( L'0' ); } } if( pos >= static_cast<tjs_int>(len) ) break; } } else { for( ; data < tail; data++ ) { for( tjs_int i = 0; i < 8 && pos < static_cast<tjs_int>(len); i++, pos++ ) { if( (*data)&(0x01<<i) ) { tmp.push_back( L'1' ); } else { tmp.push_back( L'0' ); } } if( pos >= static_cast<tjs_int>(len) ) break; } } tmp.push_back( L'\0' ); result = tTJSString( &(tmp[0]) ); } // TRet : 最終的に出力する型 template<typename TRet, int NBYTE> static void BinToNumberLE( std::vector<TRet>& result, const tjs_uint8 *data, const tjs_uint8 *tail, tjs_uint len ) { if( len < 0 ) len = ((tail - data)+NBYTE-1)/NBYTE; if( (data+len*NBYTE) < tail ) tail = data+len*NBYTE; TRet val = 0; tjs_uint bytes = 0; for( ; data < tail; data++ ) { val |= (*data) << (bytes*8); if( bytes >= (NBYTE-1) ) { // little endian bytes = 0; result.push_back( val ); val = 0; } else { bytes++; } } if( bytes ) { result.push_back( val ); } } template<typename TRet, typename TTmp, int NBYTE> static void BinToNumberLEReal( std::vector<TRet>& result, const tjs_uint8 *data, const tjs_uint8 *tail, tjs_uint len ) { if( len < 0 ) len = ((tail - data)+NBYTE-1)/NBYTE; if( (data+len*NBYTE) < tail ) tail = data+len*NBYTE; TTmp val = 0; tjs_uint bytes = 0; for( ; data < tail; data++ ) { val |= (TTmp)(*data) << (bytes*8); if( bytes >= (NBYTE-1) ) { // little endian bytes = 0; result.push_back( *(TRet*)&val ); val = 0; } else { bytes++; } } if( bytes ) { result.push_back( *(TRet*)&val ); } } template<typename TRet, int NBYTE> static void BinToNumberBE( std::vector<TRet>& result, const tjs_uint8 *data, const tjs_uint8 *tail, tjs_uint len ) { if( len < 0 ) len = ((tail - data)+NBYTE-1)/NBYTE; if( (data+len*NBYTE) < tail ) tail = data+len*NBYTE; TRet val = 0; tjs_uint bytes = NBYTE-1; for( ; data < tail; data++ ) { val |= (*data) << (bytes*8); if( bytes == 0 ) { // big endian bytes = NBYTE-1; result.push_back( val ); val = 0; } else { bytes--; } } if( bytes < (NBYTE-1) ) { result.push_back( val ); } } #if TJS_HOST_IS_BIG_ENDIAN # define BinToNumber BinToNumberBE #else # define BinToNumber BinToNumberLE # define BinToReal BinToNumberLEReal #endif // mtol static void BinToHex( const tjs_uint8 *data, const tjs_uint8 *tail, tjs_uint len, ttstr& result, bool mtol ) { if( (data+len) < tail ) tail = data+(len+1)/2; //std::vector<tjs_char> tmp(len+1); std::vector<tjs_char> tmp; tmp.reserve(len+1); tjs_int pos = 0; if( mtol ) { // 上位ニブルが先 pos = 1; for( tjs_int i = 0; i < static_cast<tjs_int>(len) && data < tail; i++ ) { tjs_char ch = ((*data)&(0xF<<(pos*4)))>>(pos*4); if( ch > 9 ) { ch = L'A' + (ch-10); } else { ch = L'0' + ch; } tmp.push_back( ch ); if( pos == 0 ) { pos = 1; data++; } else { pos--; } } } else { // 下位ニブルが先 for( tjs_int i = 0; i < static_cast<tjs_int>(len) && data < tail; i++ ) { tjs_char ch = ((*data)&(0xF<<(pos*4)))>>(pos*4); if( ch > 9 ) { ch = L'A' + (ch-10); } else { ch = L'0' + ch; } tmp.push_back( ch ); if( pos ) { pos = 0; data++; } else { pos++; } } } tmp.push_back( L'\0' ); result = tTJSString( &(tmp[0]) ); } static iTJSDispatch2* Unpack( const std::vector<OctPackTemplate>& templ, const tjs_uint8 *data, tjs_uint length ) { tTJSArrayObject* result = reinterpret_cast<tTJSArrayObject*>( TJSCreateArrayObject() ); tTJSArrayNI *ni; if(TJS_FAILED(result->NativeInstanceSupport(TJS_NIS_GETINSTANCE, TJSGetArrayClassID(), (iTJSNativeInstance**)&ni))) TJS_eTJSError(TJSSpecifyArray); const tjs_uint8 *current = data; const tjs_uint8 *tail = data + length; tjs_uint len = length; tjs_int count = templ.size(); tjs_int argindex = 0; for( tjs_int i = 0; i < count && current < tail; argindex++ ) { OctPackType t = templ[i].Type; tjs_int len = templ[i].Length; switch( t ) { case OctPack_ascii:{ // a : ASCII string(ヌル文字が補完される) if( len < 0 ) len = (tail - current); ttstr ret; BinToAscii( current, tail, len, ret ); result->Add( ni, tTJSVariant( ret ) ); current += len; break; } case OctPack_ASCII: { // A : ASCII string(スペースが補完される) if( len < 0 ) len = (tail - current); ttstr ret; BinToAscii( current, tail, len, ret ); result->Add( ni, tTJSVariant( ret ) ); current += len; break; } case OctPack_bitstring: { // b : bit string(下位ビットから上位ビットの順) if( len < 0 ) len = (tail - current)*8; ttstr ret; BinToBitString( current, tail, len, ret, false ); result->Add( ni, tTJSVariant( ret ) ); current += (len+7)/8; break; } case OctPack_BITSTRING: { // B : bit string(上位ビットから下位ビットの順) if( len < 0 ) len = (tail - current)*8; ttstr ret; BinToBitString( current, tail, len, ret, true ); result->Add( ni, tTJSVariant( ret ) ); current += (len+7)/8; break; } case OctPack_char: { // c : 符号付き1バイト数値(-128 〜 127) if( len < 0 ) len = tail - current; std::vector<tjs_int8> ret; BinToNumber<tjs_int8,1>( ret, current, tail, len ); for( std::vector<tjs_int8>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int)*iter ) ); } current += len; break; } case OctPack_CHAR: { // C : 符号無し1バイト数値(0〜255) if( len < 0 ) len = tail - current; std::vector<tjs_uint8> ret; BinToNumber<tjs_uint8,1>( ret, current, tail, len ); for( std::vector<tjs_uint8>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int)*iter ) ); } current += len; break; } case OctPack_double: { // d : 倍精度浮動小数点 if( len < 0 ) len = (tail - current)/8; std::vector<tjs_real> ret; BinToReal<tjs_real,tjs_uint64,8>( ret, current, tail, len ); for( std::vector<tjs_real>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_real)*iter ) ); } current += len*8; break; } case OctPack_float: { // f : 単精度浮動小数点 if( len < 0 ) len = (tail - current)/4; std::vector<float> ret; BinToReal<float,tjs_uint32,4>( ret, current, tail, len ); for( std::vector<float>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_real)*iter ) ); } current += len*4; break; } case OctPack_hex: { // h : hex string(low nybble first) if( len < 0 ) len = (tail - current)*2; ttstr ret; BinToHex( current, tail, len, ret, false ); result->Add( ni, tTJSVariant( ret ) ); current += (len+1)/2; break; } case OctPack_HEX: { // H : hex string(high nybble first) if( len < 0 ) len = (tail - current)*2; ttstr ret; BinToHex( current, tail, len, ret, true ); result->Add( ni, tTJSVariant( ret ) ); current += (len+1)/2; break; } case OctPack_int: // i : 符号付きint数値(通常4バイト) case OctPack_long: { // l : 符号付きlong数値(通常4バイト) if( len < 0 ) len = (tail - current)/4; std::vector<tjs_int> ret; BinToNumber<tjs_int,4>( ret, current, tail, len ); for( std::vector<tjs_int>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int)*iter ) ); } current += len*4; break; } case OctPack_INT: // I : 符号無しint数値(通常4バイト) case OctPack_LONG: { // L : 符号無しlong数値(通常4バイト) if( len < 0 ) len = (tail - current)/4; std::vector<tjs_uint> ret; BinToNumber<tjs_uint,4>( ret, current, tail, len ); for( std::vector<tjs_uint>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int64)*iter ) ); } current += len*4; break; } case OctPack_noshort: { // n : unsigned short数値(ネットワークバイトオーダ) network byte order short if( len < 0 ) len = (tail - current)/2; std::vector<tjs_uint16> ret; BinToNumberBE<tjs_uint16,2>( ret, current, tail, len ); for( std::vector<tjs_uint16>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int)*iter ) ); } current += len*2; break; } case OctPack_NOLONG: { // N : unsigned long数値(ネットワークバイトオーダ) network byte order long if( len < 0 ) len = (tail - current)/4; std::vector<tjs_uint> ret; BinToNumberBE<tjs_uint,4>( ret, current, tail, len ); for( std::vector<tjs_uint>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int64)*iter ) ); } current += len*4; break; } case OctPack_pointer: // p : 文字列へのポインタ null terminate char TJS_eTJSError( TJSNotSupportedUnpackLP ); break; case OctPack_POINTER: // P : 構造体(固定長文字列)へのポインタ fix length char TJS_eTJSError( TJSNotSupportedUnpackP ); break; case OctPack_short: { // s : 符号付きshort数値(通常2バイト) sign if( len < 0 ) len = (tail - current)/2; std::vector<tjs_int16> ret; BinToNumber<tjs_int16,2>( ret, current, tail, len ); for( std::vector<tjs_int16>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int)*iter ) ); } current += len*2; break; } case OctPack_SHORT: { // S : 符号無しshort数値(通常2バイト) unsign if( len < 0 ) len = (tail - current)/2; std::vector<tjs_uint16> ret; BinToNumber<tjs_uint16,2>( ret, current, tail, len ); for( std::vector<tjs_uint16>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int)*iter ) ); } current += len*2; break; } case OctPack_leshort: { // v : リトルエンディアンによるunsigned short値 little endian short if( len < 0 ) len = (tail - current)/2; std::vector<tjs_uint16> ret; BinToNumberLE<tjs_uint16,2>( ret, current, tail, len ); for( std::vector<tjs_uint16>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int)*iter ) ); } current += len*2; break; } case OctPack_LELONG: { // V : リトルエンディアンによるunsigned long値 little endian long if( len < 0 ) len = (tail - current)/4; std::vector<tjs_uint> ret; BinToNumberLE<tjs_uint,4>( ret, current, tail, len ); for( std::vector<tjs_uint>::const_iterator iter = ret.begin(); iter != ret.end(); iter++ ) { result->Add( ni, tTJSVariant( (tjs_int64)*iter ) ); } current += len*4; break; } case OctPack_uuencode: // u : uuencodeされた文字列 TJS_eTJSError( TJSNotSupportedUuencode ); break; case OctPack_BRE: // w : BER圧縮された整数値 TJS_eTJSError( TJSNotSupportedBER ); break; case OctPack_null: // x : ヌル文字 if( len < 0 ) len = tail - current; for( tjs_int x = 0; x < len; x++ ) { current++; } break; case OctPack_NULL: // X : back up a byte if( len < 0 ) len = current - data; for( tjs_int x = 0; x < len; x++ ) { if( data != current ) current--; else break; } break; case OctPack_fill: { // @ : 絶対位置までヌル文字を埋める if( len < 0 ) len = tail - current; current = &(data[len]); break; } case OctPack_base64: { // m : Base64 encode / decode std::wstring ret; encodeBase64( current, tail-current, ret ); result->Add( ni, tTJSVariant( ret.c_str() ) ); current = tail; break; } } i++; } return result; } tjs_error TJSOctetPack( tTJSVariant **args, tjs_int numargs, const std::vector<tTJSVariant>& items, tTJSVariant *result ) { if( numargs < 1 ) return TJS_E_BADPARAMCOUNT; if( args[0]->Type() != tvtString ) return TJS_E_INVALIDPARAM; if( result ) { std::vector<OctPackTemplate> templ; ParsePackTemplate( templ, ((ttstr)*args[0]).c_str() ); tTJSVariantOctet* oct = Pack( templ, items ); *result = oct; if( oct ) oct->Release(); else *result = tTJSVariant((iTJSDispatch2*)NULL,(iTJSDispatch2*)NULL); } return TJS_S_OK; } tjs_error TJSOctetUnpack( const tTJSVariantOctet * target, tTJSVariant **args, tjs_int numargs, tTJSVariant *result ) { if( numargs < 1 ) return TJS_E_BADPARAMCOUNT; if( args[0]->Type() != tvtString ) return TJS_E_INVALIDPARAM; if( !target ) return TJS_E_INVALIDPARAM; if( result ) { std::vector<OctPackTemplate> templ; ParsePackTemplate( templ, ((ttstr)*args[0]).c_str() ); iTJSDispatch2* disp = Unpack( templ, target->GetData(), target->GetLength() ); *result = tTJSVariant(disp,disp); if( disp ) disp->Release(); } return TJS_S_OK; } } // namespace TJS
[ "info@kaede-software.com" ]
info@kaede-software.com
85dd11a5d1f426eff7e3dcacac1017fc3758f2c9
2581ea2f47bc827b5340313c77bc90e458eccaf9
/script.cpp
8e774157fba3357d5f8ef6d220afeb2ab54b29eb
[]
no_license
congtrung6391/test-myers-diff
3df6d80eb4b9a33df3a6cfb357a7b8d87fca8fc9
5f02fe836f4609f306a9bfbf8c4dbb258dc744fb
refs/heads/main
2023-07-17T19:11:31.687801
2021-09-03T16:24:54
2021-09-03T16:24:54
402,826,553
0
0
null
null
null
null
UTF-8
C++
false
false
768
cpp
#include <algorithm> #include <iostream> #include <vector> using namespace std; int LIS(vector<int> a, int i, vector<int> &dp) { if (i == 0) return 1; if (dp[i] != -1) return dp[i]; int length = 1; for (int j = i - 1; j >= 0; j--) { if (a[i] > a[j]) { length = max(length, LIS(a, j, dp) + 1); } } dp[i] = length; return length; } int main() { vector<int> dp; vector<int> a = { 2, 5, 12, 3, 10, 6, 8, 14, 4, 11, 7, 15 }; int n = a.size(); cout << "Length of Longest Increasing Subsequence is: "; dp = vector<int>(n + 1, -1); int length = 1; for (int i = 0; i < n; i++) { length = max(length, LIS(a, i, dp)); } cout<< length <<endl; }
[ "congtrung6391@gmail.com" ]
congtrung6391@gmail.com
14ef73626682816160cb2d85c73a6b4f4c5449a6
5d8e12e1eca74e5ec10d66cd7214a49b16829ed2
/imagelistcontroller.h
6ee7d23fd62ea9eebee14b80961756e6f7104ecc
[]
no_license
SeanMatthew/BookMaker
40e2f254ec4966d04bc02d29fd48d463714fa87b
e7c26367a1a1ba7495c1bef8f986eff76d1cbab7
refs/heads/master
2021-08-08T18:19:49.022617
2017-11-10T21:49:31
2017-11-10T21:49:31
109,318,913
1
1
null
null
null
null
UTF-8
C++
false
false
452
h
#ifndef IMAGELISTCONTROLLER_H #define IMAGELISTCONTROLLER_H #include "imagelist.h" #include <QObject> class ImageListController : public QObject { Q_OBJECT public: explicit ImageListController( ImageList *image_list, QObject *parent = 0); ImageModel *addImage(); bool deleteImage(ImageModel *image); signals: public slots: private: ImageList *m_images; }; #endif // IMAGELISTCONTROLLER_H
[ "noreply@github.com" ]
noreply@github.com
c5f20455ecd16a1da1ae94c691e497a439d3b703
5dc4ea36514927efd678638e2095a4e8e32c0386
/squid_wrap/squid_wrap_linux_codelite/wrap/pLanConn.h
149469e425012cf7186ce504450c5414ece04815
[ "Unlicense" ]
permissive
NPaolini/NPS_OpenSource
732173afe958f9549af13bc39b15de79e5d6470c
0c7da066b02b57ce282a1903a3901a563d04a28f
refs/heads/main
2023-03-15T09:34:19.674662
2021-03-13T13:22:00
2021-03-13T13:22:00
342,852,203
0
0
null
null
null
null
UTF-8
C++
false
false
1,211
h
//------------------ PLanConn.h ---------------------------- #ifndef PLANCONN_H_ #define PLANCONN_H_ //----------------------------------------------------------- #include "SocketUtil.h" //----------------------------------------------------------- class PLanConn { public: PLanConn(LPCSTR type_helper, DWORD addr, DWORD port); PLanConn(LPCSTR type_helper, LPCSTR server_name, DWORD port); virtual ~PLanConn(); void setServerName(LPCSTR name); bool open(); bool startOpened(SOCKET sock); void close(); virtual long write(const void *buff, long len); virtual long read(void *buff, long len, bool lock = true); const SOCKET getSocket() const { return Sock; } bool isConnected(); protected: void setSocket(SOCKET newSock) { Sock = newSock; } virtual int lanSend(SOCKET socket, LPCSTR buff, int len); virtual int lanRecv(SOCKET socket, LPSTR buff, int len); private: LPCSTR typeHelper; DWORD Addr; DWORD Port; long maxSend; SOCKET Sock; LPCSTR serverName; long performWrite(const void *buff, long len); long performRead(void *buff, long len); }; //----------------------------------------------------------- #endif
[ "npaolini@ennepisoft.it" ]
npaolini@ennepisoft.it
966299621f8bb5f1ce533013d42fbeb1ed89c58c
768c9eb675cc3334dde0307763967f8bbc025cd0
/lab2/lab(2_1)_zelenko/lab(2_1)_zelenko/lab(2_1)_zelenko.cpp
fd17945b12a79771ebc1bb63cb645c2f83ddcf6d
[]
no_license
paxom4ik4/labs-and-works
13d2afd5441196fa81e00d6f284c062e2964397a
9a4f3679f43b9579581b98f38667e4ee187cc72a
refs/heads/master
2022-11-09T21:40:36.954585
2020-07-01T17:24:49
2020-07-01T17:24:49
276,439,144
0
0
null
null
null
null
UTF-8
C++
false
false
597
cpp
#include <iostream> using namespace std; int main() { setlocale(LC_ALL, "Russian"); cout << "Программа определит существует ли треугольник с заданными стронами" << endl; int a, b, c; cout << "Введите три стороны" << endl; cout << "a: "; cin >> a; cout << "b: "; cin >> b; cout << "c: "; cin >> c; if (a + b > c && a + c > b && b + c > a) { cout << "Существует" << endl; } else { cout << "Не существует" << endl; } return 0; }
[ "pasha.zelenko001@gmail.com" ]
pasha.zelenko001@gmail.com
aac8d4f1e304fb398a645f32af617d31144109bb
d9e96244515264268d6078650fa707f34d94ee7a
/Math/PoissonSolverDetail.h
4ffff1303f41248dbe7508056a2ea9728e6d7574
[ "MIT" ]
permissive
xlgames-inc/XLE
45c89537c10561e216367a2e3bcd7d1c92b1b039
69cc4f2aa4faf12ed15bb4291c6992c83597899c
refs/heads/master
2022-06-29T17:16:11.491925
2022-05-04T00:29:28
2022-05-04T00:29:28
29,281,799
396
102
null
2016-01-04T13:35:59
2015-01-15T05:07:55
C++
UTF-8
C++
false
false
9,135
h
// Copyright 2015 XLGAMES Inc. // // Distributed under the MIT License (See // accompanying file "LICENSE" or the website // http://www.opensource.org/licenses/mit-license.php) #pragma once #include "PoissonSolver.h" #include "Vector.h" #include <functional> namespace XLEMath { namespace PoissonSolverInternal { /////////////////////////////////////////////////////////////////////////////////////////////////// template<typename Mat> class SparseBandedMatrix { public: const int *_bands; unsigned _bandCount; Mat _underlying; SparseBandedMatrix() { _bandCount = 0; _bands = nullptr; } SparseBandedMatrix(Mat&& underlying, const int bands[], unsigned bandCount) : _underlying(std::move(underlying)) { _bands = bands; _bandCount = bandCount; } ~SparseBandedMatrix() {} }; class AMat { public: UInt3 _dims; unsigned _dimensionality; unsigned _marginFlags; float _a0, _a1; float _a0c; float _a0ex, _a0ey; float _a1e, _a1rx, _a1ry; }; inline unsigned GetN(const AMat& A) { return A._dims[0] * A._dims[1] * A._dims[2]; } inline unsigned GetWidth(const AMat& A) { return A._dims[0]; } inline unsigned GetHeight(const AMat& A) { return A._dims[1]; } inline unsigned GetDepth(const AMat& A) { return A._dims[2]; } inline unsigned GetMarginFlags(const AMat& a) { return a._marginFlags; } /////////////////////////////////////////////////////////////////////////////////////////////////// template<typename Vec, typename Mat> static void SolveLowerTriangular(Vec& x, const Mat& M, const Vec& b, unsigned N) { // solve: M * dst = b // for a lower triangular matrix, using forward substitution for (unsigned i=0; i<N; ++i) { auto d = b(i); for (unsigned j=0; j<i; ++j) { d -= M(i, j) * x(j); } x(i) = d / M(i, i); } } template<typename Vec, typename Mat> static void SolveLowerTriangular(Vec& x, const SparseBandedMatrix<Mat>& M, const Vec& b, unsigned N) { // assuming the last "band" in the matrix is the diagonal aprt assert(M._bandCount > 0 && M._bands[M._bandCount-1] == 0); // solve: M * dst = b // for a lower triangular matrix, using forward substitution // this is for a sparse banded matrix, with the bands described by "bands" // -- note that we can improve this further by writing implementations for // common cases (eg, 2D, 3D, etc) const bool reflectEdges = true; if (constant_expression<!reflectEdges>::result()) { for (unsigned i=0; i<N; ++i) { auto d = b(i); for (unsigned j=0; j<M._bandCount-1; ++j) { int j2 = int(i) + M._bands[j]; if (j2 >= 0 && j2 < int(i)) // with agressive unrolling, we should avoid this condition d -= M._underlying(i, j) * x[j2]; } x[i] = d / M._underlying(i, M._bandCount-1); } } else { for (unsigned i=0; i<N; ++i) { auto d = b(i); for (unsigned j=0; j<M._bandCount-1; ++j) { int j2 = (int(i) + M._bands[j] + int(N))%int(N); d -= M._underlying(i, j) * x[j2]; } x[i] = d / M._underlying(i, M._bandCount-1); } } } /////////////////////////////////////////////////////////////////////////////////////////////////// template<typename Vec, typename Mat> static void Multiply(Vec& dst, const SparseBandedMatrix<Mat>& A, const Vec& b, unsigned N) { for (unsigned i=0; i<N; ++i) { decltype(dst[0]) d = 0; for (unsigned j=0; j<A._bandCount; ++j) { int j2 = int(i) + A._bands[j]; if (j2 >= 0 && j2 < int(N)) // with agressive unrolling, we should avoid this condition d += A._underlying(i, j) * b[j2]; } dst[i] = d; } } template<typename Vec> static void Multiply(Vec& dst, const std::function<float(unsigned, unsigned)>& A, const Vec& b, unsigned N) { for (unsigned i=0; i<N; ++i) { decltype(dst[0]) d = 0.f; for (unsigned j=0; j<N; ++j) { d += A(i, j) * b[j]; } dst[i] = d; } } template <typename Vec> static void Multiply(Vec& dst, const AMat& A, const Vec& b, unsigned N) { const auto width = GetWidth(A), height = GetHeight(A); if (A._dimensionality==2) { const UInt2 bor(1,1); for (unsigned y=bor[1]; y<height-bor[1]; ++y) { for (unsigned x=bor[0]; x<width-bor[0]; ++x) { const unsigned i = y*width + x; auto v = A._a0 * b[i]; v += A._a1 * b[i-1]; v += A._a1 * b[i+1]; v += A._a1 * b[i-width]; v += A._a1 * b[i+width]; dst[i] = v; } } // do the borders, as well -- // 4 edges & 4 corners const auto w = width, h = height; #define XY(x,y) XY_WH(x,y,w) for (unsigned i=1; i<w-1; ++i) { dst[XY(i, 0)] = A._a0ey * b[XY( i, 0)] + A._a1e * (b[XY( i, 1)] + b[XY(i-1, 0)] + b[XY(i+1, 0)]) + A._a1ry * (b[XY( i, h-1)]); dst[XY(i, h-1)] = A._a0ey * b[XY( i, h-1)] + A._a1e * (b[XY( i, h-2)] + b[XY(i-1, h-1)] + b[XY(i+1, h-1)]) + A._a1ry * (b[XY( i, 0)]); } for (unsigned i=1; i<h-1; ++i) { dst[XY(0, i)] = A._a0ex * b[XY( 0, i)] + A._a1e * (b[XY( 1, i)] + b[XY(0, i-1)] + b[XY(0, i+1)]) + A._a1rx * (b[XY(w-1, i)]); dst[XY(w-1, i)] = A._a0ex * b[XY(w-1, i)] + A._a1e * (b[XY(w-2, i)] + b[XY(w-1, i-1)] + b[XY(w-1, i+1)]) + A._a1rx * (b[XY( 0, i)]); } dst[XY(0, 0)] = A._a0c * b[XY( 0, 0)] + A._a1e * (b[XY( 0, 1)] + b[XY( 1, 0)]) + A._a1rx * b[XY(w-1, 0)] + A._a1ry * b[XY( 0, h-1)]; dst[XY(0, h-1)] = A._a0c * b[XY( 0, h-1)] + A._a1e * (b[XY( 0, h-2)] + b[XY( 1, h-1)]) + A._a1rx * b[XY(w-1, h-1)] + A._a1ry * b[XY( 0, 0)]; dst[XY(w-1, 0)] = A._a0c * b[XY(w-1, 0)] + A._a1e * (b[XY(w-1, 1)] + b[XY(w-2, 0)]) + A._a1rx * b[XY( 0, 0)] + A._a1ry * b[XY(w-1, h-1)]; dst[XY(w-1, h-1)] = A._a0c * b[XY(w-1, h-1)] + A._a1e * (b[XY(w-1, h-2)] + b[XY(w-2, h-1)]) + A._a1rx * b[XY( 0, h-1)] + A._a1ry * b[XY(w-1, 0)]; #undef XY } else { const UInt3 bor(1,1,1); for (unsigned z=bor[2]; z<GetDepth(A)-bor[2]; ++z) { for (unsigned y=bor[1]; y<height-bor[1]; ++y) { for (unsigned x=bor[0]; x<width-bor[0]; ++x) { const unsigned i = (z*height+y)*width + x; auto v = A._a0 * b[i]; v += A._a1 * b[i-width*height]; v += A._a1 * b[i-width]; v += A._a1 * b[i-1]; v += A._a1 * b[i+1]; v += A._a1 * b[i+width]; v += A._a1 * b[i+width*height]; dst[i] = v; } } } // todo -- borders, edges, faces! } } } }
[ "djewsbury@xlgames.com" ]
djewsbury@xlgames.com
9480f4831ff8293f33df727677230ebceeb1ef0c
cb80a8562d90eb969272a7ff2cf52c1fa7aeb084
/inletTest3/0.136/Co
6b12d94ed05f13be25bac335b25a51225c7b0580
[]
no_license
mahoep/inletCFD
eb516145fad17408f018f51e32aa0604871eaa95
0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2
refs/heads/main
2023-08-30T22:07:41.314690
2021-10-14T19:23:51
2021-10-14T19:23:51
314,657,843
0
0
null
null
null
null
UTF-8
C++
false
false
169,752
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.136"; object Co; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField nonuniform List<scalar> 16277 ( 0.00667572 0.0063634 0.00690652 0.00717077 0.00720896 0.00705781 0.00705409 0.00693518 0.00688346 0.0068695 0.00683153 0.00681714 0.0068032 0.00679328 0.0067823 0.00677121 0.00675954 0.00674721 0.00673451 0.00672123 0.00670738 0.00669296 0.00667799 0.00666248 0.00664643 0.00662985 0.00661275 0.00659513 0.00657702 0.00655841 0.00653932 0.00651976 0.00649976 0.00647931 0.00645845 0.00643718 0.00641553 0.00639351 0.00637115 0.00634846 0.00632548 0.00630221 0.00627869 0.00625493 0.00623096 0.00620681 0.0061825 0.00615805 0.0061335 0.00610887 0.00608419 0.00605948 0.00603478 0.00601011 0.00598551 0.00596098 0.00593658 0.00591234 0.00588827 0.00586441 0.0058408 0.00581745 0.0057944 0.00577169 0.00574933 0.00572737 0.00570582 0.00568471 0.00566407 0.00564393 0.00562431 0.00560522 0.00558671 0.0055688 0.00555151 0.00553487 0.00551884 0.00550335 0.00548686 0.00547196 0.00545871 0.00544926 0.00544711 0.00548011 0.005544 0.0057177 0.00603166 0.00674958 0.00842148 0.0120082 0.0180068 0.0141665 0.0127272 0.0121918 0.0119235 0.011659 0.0111346 0.0100972 0.0110787 0.0117183 0.0109172 0.0108007 0.0101611 0.00838922 0.00903206 0.00923854 0.00918792 0.00918549 0.00861719 0.00783961 0.00854722 0.00872018 0.00898933 0.00883189 0.0080457 0.00782641 0.00863118 0.00881693 0.00902074 0.00879893 0.00789169 0.00779239 0.00867097 0.00886421 0.00903365 0.00877091 0.00779533 0.00769459 0.00864184 0.00886494 0.00899172 0.00871306 0.00767624 0.00758036 0.00858052 0.00883341 0.00895193 0.00864772 0.00756405 0.00747383 0.0085157 0.00879375 0.00890892 0.00858257 0.0074619 0.00737624 0.00845172 0.008752 0.00886429 0.00851854 0.00736761 0.00728554 0.0083896 0.0087092 0.00881865 0.00845568 0.00727947 0.00720003 0.0083293 0.00866584 0.00877215 0.00839353 0.00719599 0.00711873 0.00826911 0.00862073 0.00872478 0.00833185 0.00711613 0.00704064 0.00820889 0.00857413 0.00867647 0.0082704 0.00703906 0.006965 0.00814849 0.00852601 0.00862722 0.00820901 0.00696414 0.00689124 0.00808771 0.00847636 0.00857695 0.00814745 0.00689084 0.00681885 0.00802637 0.00842513 0.00852553 0.00808549 0.00681869 0.0067475 0.00796438 0.00837233 0.00847287 0.00802295 0.00674737 0.00667668 0.00790145 0.0083179 0.00841889 0.00795969 0.00667654 0.00660626 0.00783756 0.00826177 0.00836348 0.00789554 0.00660596 0.006536 0.00777257 0.00820384 0.00830655 0.00783036 0.00653542 0.00646565 0.00770634 0.00814406 0.00824795 0.00776401 0.0064647 0.00639506 0.00763996 0.00808501 0.00818758 0.00769634 0.00639358 0.00632399 0.00757237 0.00802476 0.00812537 0.00762725 0.0063219 0.00625228 0.00750331 0.00796264 0.00806122 0.0075566 0.00624947 0.00617974 0.00743263 0.00789856 0.00799501 0.00748425 0.00617613 0.0061062 0.0073602 0.00783239 0.00792664 0.00741006 0.0061017 0.0060315 0.00728589 0.00776403 0.00785597 0.0073339 0.00602602 0.00595549 0.00720956 0.00769336 0.00778289 0.00725563 0.00594895 0.00587803 0.00713109 0.00762027 0.00770729 0.00717514 0.00587035 0.00579899 0.00705037 0.00754466 0.00762907 0.00709231 0.0057901 0.00571826 0.00696729 0.00746641 0.00754813 0.00700705 0.00570812 0.00563577 0.00688178 0.00738546 0.0074644 0.0069193 0.00562435 0.00555151 0.00679379 0.00730173 0.00737782 0.00682903 0.00553879 0.0054655 0.00670331 0.00721518 0.0072884 0.00673628 0.00545154 0.00537786 0.00661043 0.00712586 0.0071962 0.00664116 0.00536274 0.00528879 0.00651529 0.00703385 0.00710136 0.00654387 0.00527261 0.00519856 0.00641813 0.00693934 0.00700411 0.00644471 0.00518152 0.0051076 0.00631929 0.00684256 0.00690475 0.00634407 0.00508995 0.00501645 0.00621926 0.00674391 0.00680375 0.00624254 0.00499855 0.00492588 0.00611867 0.00664389 0.00670171 0.00614088 0.00490818 0.00483683 0.0060184 0.00654319 0.00659948 0.00604009 0.00481993 0.00475054 0.00591954 0.00644274 0.0064981 0.00594139 0.00473516 0.00466849 0.00582345 0.00634368 0.00639888 0.00584634 0.00465552 0.00459249 0.0057318 0.00624745 0.0063035 0.00575681 0.00458299 0.00452465 0.00564665 0.00615587 0.00621396 0.00567495 0.00451986 0.00446909 0.00557147 0.00607094 0.00613235 0.00560295 0.00446892 0.00443383 0.00552253 0.00600773 0.00606148 0.00554424 0.00443368 0.00441615 0.00549549 0.00597904 0.00600488 0.00550191 0.00441604 0.00441785 0.00548857 0.00597004 0.00596569 0.00547866 0.00441778 0.00443956 0.00550243 0.00598119 0.00594283 0.00547323 0.00443952 0.00448053 0.00553594 0.006011 0.00594594 0.00549627 0.00448376 0.00454188 0.00559117 0.00606276 0.00599495 0.00555905 0.00455487 0.00462331 0.00566719 0.0061348 0.00607029 0.00563952 0.00464214 0.00471632 0.00575512 0.00621747 0.00615562 0.00573099 0.00473857 0.00481577 0.00585127 0.00630769 0.00624694 0.00582869 0.00483907 0.00491756 0.00595235 0.00640306 0.00634212 0.00592981 0.00494037 0.00501866 0.00605527 0.00650083 0.0064383 0.00603129 0.0050396 0.00511627 0.00615701 0.00659812 0.00653285 0.00613035 0.00513411 0.00520798 0.006255 0.00669246 0.00662353 0.00622466 0.00522175 0.00529191 0.00634716 0.00678184 0.00670852 0.00631236 0.00530091 0.00536666 0.00643182 0.00686459 0.00678639 0.00639203 0.00537044 0.00543146 0.00650776 0.0069395 0.00685613 0.00646407 0.00543166 0.0054862 0.0065742 0.00700578 0.00692068 0.00653364 0.0054864 0.0055308 0.00663068 0.00706301 0.00699019 0.00659836 0.00553098 0.00556561 0.0066776 0.00711141 0.00705301 0.00665311 0.00556579 0.00559138 0.00671554 0.00715146 0.00710635 0.00669804 0.00559152 0.00560923 0.00674542 0.00718383 0.00715041 0.00673352 0.00560908 0.0056204 0.00676828 0.0072096 0.00718607 0.00676104 0.00562006 0.0056259 0.00678464 0.00722964 0.00721442 0.00678215 0.00562607 0.00562728 0.00679601 0.00724488 0.0072362 0.00679644 0.00562739 0.00562608 0.00680441 0.0072565 0.00725252 0.00680549 0.00562531 0.00562226 0.00680907 0.00726503 0.00726509 0.00681253 0.00562195 0.00561592 0.00680936 0.00727036 0.00727423 0.00681646 0.00561704 0.0056093 0.00680935 0.00727402 0.0072802 0.00681743 0.00561051 0.0056021 0.00680802 0.00727638 0.00728404 0.00681649 0.0056033 0.00559457 0.00680576 0.0072777 0.00728624 0.00681434 0.00559573 0.00558696 0.00680274 0.00727806 0.00728725 0.0068114 0.00558814 0.00557925 0.00679913 0.00727783 0.00728748 0.00680781 0.00558045 0.00557174 0.00679527 0.00727709 0.00728695 0.0068039 0.00557294 0.00556412 0.00679081 0.00727558 0.00728555 0.00679957 0.00556544 0.00555707 0.00678723 0.00727388 0.00728305 0.00679294 0.00555682 0.00555064 0.00678395 0.00727295 0.00728103 0.00678769 0.00554932 0.00554337 0.00677925 0.00727099 0.00727835 0.00678266 0.00553949 0.00552905 0.00676229 0.00725546 0.00722983 0.00672834 0.00548678 0.00547393 0.00669943 0.007201 0.00705928 0.0065291 0.00531292 0.00541514 0.00662409 0.0071139 0.00680941 0.00626017 0.00506568 0.00559693 0.00684448 0.00731029 0.00731171 0.00661168 0.00526121 0.00651042 0.00810983 0.00881145 0.0095677 0.00848034 0.00655623 0.00821818 0.0119331 0.0149527 0.0140248 0.0182199 0.0155666 0.0146092 0.0139332 0.013746 0.0136307 0.0136585 0.0136658 0.0136892 0.0137013 0.0137571 0.0138609 0.0140273 0.014394 0.0152801 0.019553 0.0279037 0.0299305 0.027289 0.0258292 0.0235902 0.0210675 0.0179926 0.0124011 0.0109801 0.0164505 0.0198651 0.0177398 0.0153313 0.010488 0.00872879 0.0128732 0.0150884 0.0141148 0.0123497 0.00848296 0.00785618 0.011575 0.0133602 0.013121 0.0114522 0.00775203 0.00761739 0.0112326 0.0129482 0.0129665 0.0112334 0.00761166 0.00760947 0.0112284 0.0129477 0.0129563 0.0112375 0.00762522 0.00763233 0.0112439 0.0129606 0.0129675 0.0112502 0.00763964 0.0076408 0.011236 0.0129606 0.0129949 0.0112918 0.00766628 0.00766789 0.0112775 0.0129876 0.0129959 0.0112858 0.00767664 0.00767663 0.0112692 0.0129761 0.0130374 0.011314 0.00769513 0.00771446 0.0113261 0.0130185 0.0130271 0.011312 0.00770812 0.00772421 0.0113183 0.0130077 0.0130695 0.0113516 0.00773491 0.00775287 0.0113605 0.0130492 0.0130585 0.0113485 0.00774846 0.00776632 0.0113574 0.0130393 0.0131017 0.0113938 0.00777918 0.00779759 0.0114031 0.0130827 0.0130911 0.0113887 0.00779186 0.0078124 0.0114014 0.0130728 0.0131358 0.0114369 0.0078249 0.00784362 0.0114461 0.0131162 0.0131256 0.0114339 0.00783951 0.00785866 0.011444 0.0131069 0.0131696 0.0114783 0.00787061 0.00788965 0.0114878 0.0131505 0.01316 0.0114876 0.00789365 0.00789651 0.0114741 0.0131419 0.0132046 0.0115181 0.00791512 0.00793499 0.0115288 0.013186 0.0131961 0.0115298 0.0079396 0.00794131 0.0115137 0.0131776 0.013242 0.0115627 0.00796353 0.00798394 0.0115744 0.0132243 0.0132342 0.0115718 0.0079865 0.00799314 0.0115641 0.0132178 0.0132828 0.0116131 0.00801461 0.00803282 0.0116214 0.013265 0.0132753 0.0116195 0.00803552 0.00804165 0.011612 0.0132594 0.0133244 0.0116563 0.00805984 0.00807806 0.0116651 0.013307 0.0133189 0.0116662 0.00808208 0.00808606 0.0116556 0.0133034 0.0133704 0.0117064 0.00810772 0.00812881 0.0117215 0.0133558 0.0133687 0.0117197 0.00813008 0.00813548 0.0117131 0.0133554 0.0134246 0.0117658 0.00815705 0.00817663 0.0117801 0.0134111 0.0134268 0.011783 0.00817946 0.00818207 0.0117743 0.0134148 0.0134858 0.0118262 0.00820153 0.00822012 0.011842 0.0134744 0.0134925 0.011835 0.00821358 0.00823118 0.0118517 0.0134831 0.0135576 0.0118946 0.00824115 0.00825831 0.0119127 0.0135494 0.013572 0.0119091 0.00825102 0.00826565 0.0119255 0.0135662 0.013645 0.0119712 0.00827507 0.00829599 0.0119997 0.0136433 0.0136714 0.0120115 0.00829641 0.00829566 0.0120094 0.0136714 0.0137582 0.0120772 0.00831662 0.00833876 0.0121117 0.0137633 0.0137986 0.0121287 0.00834076 0.00834539 0.0121367 0.0138068 0.0139039 0.0122157 0.0083732 0.00839669 0.0122487 0.0139161 0.0139619 0.0122691 0.00840413 0.00844699 0.0123281 0.0139842 0.0140956 0.0124125 0.00848396 0.00853095 0.0124677 0.0141228 0.0141878 0.0125368 0.00858064 0.00865087 0.0126162 0.0142407 0.0143411 0.0126988 0.00871198 0.008794 0.01279 0.0144031 0.0144877 0.0128931 0.00889112 0.00900239 0.0130046 0.0145793 0.0146792 0.0131187 0.00912643 0.00927339 0.0132454 0.0147853 0.0149319 0.0134475 0.00948084 0.0097038 0.0136333 0.0150659 0.0152131 0.0138137 0.00994865 0.0101196 0.0139256 0.0152721 0.015424 0.0139843 0.0102744 0.0106043 0.0142601 0.015509 0.0156022 0.0143182 0.0106794 0.0109191 0.0144252 0.0156527 0.0157853 0.0146129 0.0111519 0.0113965 0.0147133 0.0158881 0.0161394 0.0150804 0.0117873 0.0119742 0.0151506 0.0162345 0.0165947 0.0155551 0.0124937 0.0126767 0.0156593 0.0166665 0.0167769 0.016266 0.0135738 0.0131795 0.0150405 0.0146467 0.043624 0.0321281 0.0188174 0.0132564 0.0211554 0.0287133 0.0192246 0.0171613 0.011996 0.0110214 0.0149802 0.0163566 0.0157577 0.0147106 0.0110963 0.0111498 0.014878 0.0162582 0.0160114 0.0147413 0.0113029 0.0117579 0.0151728 0.0164873 0.0162161 0.015044 0.0119711 0.01275 0.0159287 0.0169693 0.0168477 0.0157543 0.0128822 0.0136623 0.0163108 0.0171492 0.0149985 0.0154211 0.0136916 0.0191195 0.0314373 0.0422866 0.0294204 0.0221904 0.0149527 0.0134912 0.0179657 0.0200111 0.0179104 0.0165517 0.0131326 0.01324 0.0164038 0.0174589 0.0172873 0.0164055 0.0135116 0.0135986 0.0163224 0.0171888 0.0171007 0.0164888 0.0141294 0.0137784 0.0150547 0.0144311 0.042105 0.0315027 0.0194102 0.0145988 0.0222582 0.0298893 0.0199951 0.0182238 0.0141477 0.0137781 0.0167801 0.0174858 0.0168221 0.0162934 0.0138304 0.0142294 0.0165589 0.0170996 0.0147348 0.015488 0.0141962 0.019397 0.0309567 0.0410249 0.029935 0.0228656 0.0159657 0.0148627 0.0186386 0.0205264 0.0183116 0.0170397 0.014337 0.0149576 0.0171931 0.0175375 0.0142333 0.0150913 0.0142363 0.0198582 0.0309688 0.0408389 0.0295416 0.0231718 0.016608 0.0148403 0.0181758 0.0196526 0.0172384 0.0167427 0.0145934 0.0144721 0.0153501 0.0144578 0.0390744 0.0298509 0.0194 0.0168736 0.0230716 0.029393 0.0200011 0.018395 0.0152013 0.0150143 0.0170184 0.0174662 0.0135445 0.0146781 0.0144712 0.0193836 0.0289079 0.0366227 0.0275019 0.0220705 0.0163866 0.014668 0.015602 0.0149804 0.0341563 0.0270843 0.0183463 0.0149271 0.0206797 0.0260544 0.0131706 0.0140214 0.0133744 0.0156121 0.0218031 0.0260514 0.0138625 0.0128668 0.0109746 0.0110479 0.0160986 0.0195633 0.00483185 0.0045936 0.0042804 0.0056231 0.00910819 0.011169 0.013893 0.0120644 0.0086951 0.0142773 0.0170892 0.0185998 0.0224139 0.0213129 0.0188464 0.0206896 0.0219262 0.0215772 0.0370774 0.0321966 0.0244773 0.0252086 0.0330922 0.0383086 0.037393 0.0329529 0.0256025 0.0269241 0.0364433 0.0428379 0.0266761 0.0267973 0.0234859 0.026713 0.036414 0.0451545 0.0487596 0.0386789 0.0268312 0.0240059 0.0315436 0.036664 0.0453019 0.0370939 0.0262653 0.022158 0.0254647 0.025777 0.0429693 0.0338658 0.024123 0.0258961 0.0383014 0.0488825 0.025131 0.0250021 0.0215413 0.0232903 0.0330068 0.0419899 0.0488021 0.0384287 0.0256152 0.020672 0.0238794 0.0244987 0.0415765 0.0324696 0.0227636 0.0252252 0.0379974 0.0485503 0.0244346 0.0235926 0.0203112 0.0225892 0.0320327 0.0411889 0.0483875 0.0378504 0.0252731 0.0203758 0.0235442 0.0242226 0.040981 0.03208 0.022412 0.0247261 0.0374141 0.0480225 0.0243475 0.0237787 0.0203932 0.022211 0.0315907 0.0406272 0.0480523 0.0373059 0.024648 0.0199751 0.0232022 0.0238289 0.0394769 0.0305995 0.0215866 0.0241651 0.0366913 0.0474943 0.0212112 0.0218019 0.0193948 0.0200413 0.0253066 0.0279391 0.040089 0.0309692 0.0219605 0.0234226 0.036336 0.0477641 0.022897 0.0230997 0.0196454 0.0204991 0.0308283 0.0405305 0.0473124 0.0366018 0.0237042 0.0193727 0.0229899 0.0236712 0.0403979 0.0316468 0.0220583 0.0238017 0.0368561 0.0476225 0.023562 0.0232569 0.0196782 0.0207535 0.0310963 0.0409673 0.0477567 0.036587 0.0236402 0.0196098 0.0233148 0.0239694 0.0410135 0.0310128 0.020639 0.024006 0.0370538 0.0478108 0.0236707 0.0228499 0.0192049 0.0224305 0.0319337 0.0404689 0.0478521 0.0368514 0.024045 0.0198044 0.0237803 0.0242674 0.0411472 0.0324114 0.0228296 0.0247401 0.0377599 0.0483037 0.0243103 0.023216 0.0195673 0.0230324 0.0326234 0.0421757 0.047661 0.0369676 0.0243309 0.0216723 0.0295999 0.0350205 0.0444156 0.0358565 0.0243862 0.020939 0.0248783 0.0254299 0.0418706 0.0328656 0.0228366 0.0248919 0.0376353 0.0482549 0.0249662 0.0239795 0.0202615 0.0222221 0.0320338 0.0413721 0.0485779 0.0378238 0.0248364 0.0207273 0.0244436 0.0248866 0.0422221 0.0327695 0.0227369 0.0248531 0.0377826 0.0488491 0.025371 0.0251852 0.0210808 0.0229975 0.0331807 0.0425018 0.0492524 0.0382354 0.0253323 0.0212085 0.0251623 0.0257043 0.0443273 0.0350575 0.0248075 0.0254405 0.0382703 0.0491635 0.0370151 0.0311429 0.0228125 0.0250319 0.0366446 0.0452091 0.0263715 0.0255205 0.0213859 0.0237064 0.0342867 0.043847 0.0499727 0.039119 0.0258505 0.021702 0.0258226 0.0263663 0.0454969 0.0360255 0.0252427 0.0257261 0.0386065 0.0499414 0.0376889 0.0319319 0.0235404 0.0257777 0.0374033 0.0462071 0.0274096 0.0266651 0.0224019 0.024562 0.0351641 0.0449558 0.0509759 0.0396627 0.0264963 0.0225867 0.0268201 0.027161 0.046536 0.0368191 0.0259705 0.0263923 0.0393305 0.0506042 0.0386437 0.0327254 0.0240666 0.0263746 0.0381896 0.0468999 0.0277239 0.0269846 0.0228953 0.0250189 0.036031 0.0462417 0.0519867 0.041066 0.0273373 0.0231928 0.0271885 0.0277193 0.0486433 0.036703 0.0242418 0.0265567 0.0403611 0.0518818 0.0397384 0.0336811 0.0247219 0.0272315 0.0393142 0.0478275 0.028888 0.0277644 0.0234382 0.0265969 0.0378701 0.0488345 0.0524795 0.0410708 0.0276389 0.0255749 0.0345728 0.0407165 0.0487716 0.040011 0.0279169 0.0240301 0.028475 0.0293121 0.0498628 0.0385604 0.02628 0.0277297 0.0412973 0.052798 0.0412404 0.0349019 0.0258838 0.0284787 0.0405781 0.0494096 0.0301171 0.0292779 0.024675 0.0267281 0.0392109 0.0510475 0.0540156 0.0423225 0.0285084 0.0265498 0.03572 0.0421523 0.0501748 0.0413009 0.0289371 0.0249108 0.0294042 0.0303636 0.0510736 0.0400668 0.0278903 0.0290679 0.0430296 0.0546045 0.0430041 0.0363834 0.0269187 0.0291657 0.0416208 0.0509063 0.0311816 0.0304486 0.0257601 0.0269183 0.0405856 0.053373 0.0554144 0.0434273 0.0287227 0.0278665 0.0381523 0.0452608 0.0507958 0.0416174 0.0293667 0.0274533 0.0371257 0.0435635 0.0508973 0.0421555 0.0297082 0.0261804 0.0310975 0.0321801 0.0537144 0.0416665 0.0290961 0.0304457 0.0447854 0.0565765 0.0450516 0.0381187 0.0282919 0.0304934 0.0434946 0.0525021 0.0322695 0.0315036 0.0268494 0.0280278 0.0420718 0.0555136 0.0573742 0.0448634 0.0296846 0.0287073 0.0393556 0.0470397 0.0526219 0.0429105 0.0301797 0.0286937 0.0385521 0.0454777 0.0530248 0.0439607 0.0313422 0.027201 0.0322966 0.0334967 0.0562017 0.0443531 0.0313408 0.0318197 0.046372 0.0586592 0.0485424 0.0406739 0.0297084 0.0312848 0.0442535 0.0538345 0.0471061 0.0399796 0.0297727 0.0317528 0.0447324 0.0537597 0.0342354 0.033087 0.0279912 0.0302624 0.0442588 0.057731 0.0594265 0.0469623 0.0318123 0.0305228 0.0416103 0.0495899 0.0551062 0.0454543 0.0321767 0.0305861 0.0408814 0.0479197 0.0552487 0.0461183 0.0328956 0.0289022 0.0341569 0.0352268 0.0585911 0.0459743 0.0323758 0.0333219 0.0483062 0.0607841 0.0505795 0.0423482 0.0309296 0.0327214 0.046059 0.0558681 0.0491686 0.0415761 0.0309886 0.0337593 0.0469559 0.056293 0.0358908 0.0346599 0.0294475 0.0339742 0.0478244 0.0602173 0.0620264 0.0492968 0.0343282 0.0319284 0.0437925 0.0519909 0.0575164 0.047513 0.0335303 0.0321005 0.0430064 0.0503685 0.0577225 0.0480823 0.0345184 0.0300646 0.0354732 0.0366446 0.0613591 0.0484997 0.034661 0.0351962 0.0503256 0.063216 0.0533203 0.0448104 0.0329733 0.0347256 0.0485713 0.0585518 0.0537711 0.0453671 0.0332651 0.0350111 0.0486185 0.0585883 0.0523529 0.0444852 0.0330868 0.0357847 0.0497611 0.0591505 0.0385591 0.0373844 0.0316294 0.0339 0.0495649 0.0643854 0.065211 0.051416 0.0349094 0.03394 0.0461558 0.054978 0.0594833 0.0493578 0.0353746 0.0340447 0.0460982 0.0550043 0.0598925 0.0498189 0.0360939 0.0341247 0.0457173 0.0535376 0.0608452 0.0509945 0.0368464 0.0322106 0.0379717 0.0392788 0.0654956 0.0521344 0.0371666 0.0375403 0.0535872 0.0667143 0.056644 0.0477332 0.0351708 0.0367741 0.0511406 0.0617412 0.0568304 0.0481301 0.035315 0.0370546 0.0513445 0.0614692 0.0552337 0.0470447 0.0352191 0.0378004 0.0520744 0.0624001 0.0406451 0.039214 0.0331459 0.0383841 0.053686 0.0673427 0.0686032 0.0548758 0.0387673 0.0361732 0.049005 0.0583535 0.0631329 0.0523786 0.03782 0.0366382 0.0495932 0.0588215 0.0633938 0.0528936 0.038347 0.0362421 0.0481453 0.0567828 0.0642443 0.0538159 0.0391687 0.0345899 0.0404259 0.0413535 0.0702936 0.0539931 0.0366174 0.0379856 0.0562897 0.071022 0.0601486 0.0503079 0.037091 0.0389448 0.0542736 0.0651743 0.060864 0.0513247 0.0379403 0.03948 0.0541588 0.0646803 0.0612738 0.0513257 0.0378334 0.0400069 0.054741 0.0655053 0.059791 0.0507588 0.0379548 0.0405091 0.0556211 0.0663782 0.0431847 0.0417979 0.0356791 0.0416268 0.0573094 0.072089 0.072841 0.0586579 0.0422305 0.038713 0.0524855 0.0621038 0.0671339 0.0561183 0.0403701 0.0391466 0.0527195 0.0624046 0.0667249 0.0560123 0.0409201 0.03927 0.0529806 0.0627663 0.0677368 0.0565543 0.0413983 0.0392829 0.0519524 0.0613333 0.0689736 0.0578115 0.0423983 0.0369495 0.0431768 0.0447836 0.0748021 0.0592747 0.042322 0.0431043 0.0609764 0.0757772 0.0647716 0.0550377 0.0408331 0.04237 0.0583709 0.069884 0.0649566 0.0551542 0.0409518 0.0426209 0.0580817 0.0692591 0.0656328 0.05542 0.0411356 0.0431208 0.0587808 0.0700172 0.0640776 0.0541628 0.0407469 0.0437613 0.0596255 0.0709959 0.0464396 0.0451656 0.0385373 0.0444365 0.0616635 0.0770135 0.0783009 0.0628395 0.0449261 0.0419078 0.0564805 0.0668597 0.0723138 0.059808 0.0435171 0.0421927 0.0567989 0.0672547 0.0714667 0.0602669 0.0441284 0.0423552 0.0569988 0.0679769 0.0728432 0.0611295 0.0446363 0.0423748 0.0561748 0.0657336 0.0738797 0.0624322 0.0455502 0.0399978 0.0465455 0.0478983 0.0805583 0.0636629 0.0457663 0.0461751 0.0649137 0.0816301 0.0695343 0.0589431 0.0437718 0.0455079 0.062665 0.0750626 0.0699452 0.0588814 0.0439222 0.0458819 0.0621822 0.0743221 0.0706333 0.0594809 0.0441931 0.0464068 0.0630096 0.0750144 0.0688202 0.0585129 0.0441904 0.0473238 0.0644778 0.0763708 0.0497034 0.0482846 0.0415294 0.0481546 0.0663605 0.0832111 0.0843775 0.0678874 0.0490823 0.0454363 0.0610145 0.071973 0.0775742 0.0649899 0.0472915 0.0456294 0.0613623 0.0724716 0.0772192 0.0648925 0.0475676 0.0458986 0.0617735 0.0732848 0.0777973 0.0655162 0.0482535 0.0462954 0.0620181 0.0734055 0.0787091 0.0662419 0.048888 0.0461395 0.0606167 0.0711987 0.0800271 0.0674423 0.0498476 0.0437272 0.0505787 0.0520261 0.0874976 0.0682935 0.0482892 0.0497379 0.0709362 0.0883587 0.0753675 0.0637246 0.047711 0.0496409 0.0680916 0.0814675 0.0758297 0.0642821 0.0480989 0.0502778 0.0682004 0.0808088 0.0763737 0.0646083 0.0485297 0.0508136 0.0685402 0.081936 0.0741538 0.063247 0.0480967 0.0514087 0.0697344 0.0827807 0.0544597 0.0528271 0.0455017 0.0515311 0.0718484 0.0906992 0.0916394 0.0738787 0.0523617 0.0495034 0.0661176 0.0780709 0.0839692 0.0699892 0.0514139 0.0497625 0.0665366 0.078578 0.083675 0.0705338 0.0519684 0.0502324 0.0669823 0.0789952 0.0846753 0.0713213 0.0526367 0.0500186 0.0656137 0.0767768 0.0862134 0.0730188 0.0537061 0.0471471 0.0544291 0.055863 0.0944888 0.0739262 0.0525182 0.0539651 0.0765802 0.0952504 0.0811142 0.0685059 0.0514789 0.0536215 0.0732693 0.0877011 0.0815734 0.0691215 0.051914 0.0543404 0.0733414 0.0873041 0.0821634 0.0694857 0.0521766 0.0548673 0.0740676 0.0882602 0.0798736 0.0682085 0.0520689 0.0558604 0.0755258 0.0892333 0.0586949 0.0570376 0.0493112 0.0555761 0.0773438 0.0980927 0.0991195 0.0795108 0.0568965 0.0540666 0.0717308 0.0845162 0.090728 0.076208 0.056149 0.0542159 0.0719407 0.0847748 0.0907107 0.0762744 0.0566499 0.0543795 0.0722544 0.0851487 0.0916948 0.0773058 0.0572247 0.0539204 0.0705763 0.0825496 0.0932408 0.0789924 0.0581871 0.0511514 0.0588529 0.0604024 0.101434 0.0798964 0.0572545 0.0587219 0.0825835 0.103003 0.0874267 0.0741608 0.0560783 0.0585038 0.0793829 0.0950928 0.0881155 0.074905 0.0566031 0.0592666 0.0796219 0.094792 0.0862658 0.0738272 0.0564032 0.0598396 0.0812287 0.0963668 0.0622571 0.0608092 0.052872 0.0604405 0.0835721 0.104781 0.106254 0.0856402 0.0611964 0.057657 0.0764878 0.090151 0.0980812 0.0816257 0.0599629 0.0580416 0.0767665 0.0901904 0.0980996 0.0824138 0.0609764 0.0577333 0.0753985 0.087999 0.0996233 0.0842622 0.0622002 0.0546522 0.0626373 0.0639163 0.109273 0.085032 0.060117 0.0622924 0.088809 0.110602 0.093677 0.079209 0.0598898 0.0627365 0.085382 0.101879 0.0940651 0.0800654 0.0604403 0.0628945 0.0850555 0.101437 0.0918767 0.0785305 0.0600996 0.0643225 0.0869819 0.103234 0.066032 0.0646131 0.0562457 0.06506 0.0894601 0.111977 0.114114 0.0915454 0.0658899 0.0614998 0.0816701 0.0961959 0.10493 0.0880657 0.0645536 0.0623032 0.0822546 0.0964796 0.105104 0.0881839 0.0652505 0.0618606 0.0806654 0.0940595 0.107022 0.0905164 0.0667451 0.0585988 0.0670339 0.0684971 0.116895 0.0926449 0.0667001 0.0680445 0.0960524 0.119466 0.10005 0.0850574 0.0643136 0.0672422 0.0913609 0.109639 0.10032 0.0853313 0.0644989 0.0675066 0.0914301 0.108895 0.0978771 0.0838139 0.0642052 0.068857 0.093142 0.110473 0.0705993 0.0690312 0.0603372 0.0680428 0.0944596 0.119485 0.12291 0.0982734 0.0698921 0.0663228 0.0871628 0.10239 0.113528 0.0946341 0.0696017 0.0660912 0.0856738 0.0993327 0.11463 0.0967608 0.0710947 0.0628161 0.0714819 0.0726372 0.12424 0.0991049 0.0718094 0.0729506 0.102741 0.127854 0.106176 0.0901538 0.068437 0.0717234 0.0972207 0.116742 0.106218 0.0904662 0.0686315 0.0724053 0.0979892 0.11664 0.103426 0.0887722 0.0684009 0.0738982 0.099808 0.118597 0.0760263 0.0741778 0.0645508 0.0725159 0.100605 0.127576 0.130861 0.105172 0.0747199 0.0709665 0.0930574 0.109288 0.121612 0.101493 0.0744628 0.0710314 0.0914692 0.105985 0.122757 0.103549 0.0771091 0.0674673 0.0764889 0.0775004 0.13111 0.10346 0.0744243 0.0773305 0.109044 0.135602 0.11189 0.0951592 0.0726037 0.0771803 0.104675 0.125527 0.108259 0.0931131 0.0720179 0.0780927 0.105902 0.125769 0.0797132 0.0778586 0.0679308 0.0765756 0.105689 0.133673 0.140148 0.112193 0.0798223 0.0738452 0.09509 0.110472 0.130408 0.109281 0.0801358 0.069789 0.0789776 0.0799459 0.13896 0.109491 0.078995 0.0824726 0.115974 0.143904 0.118997 0.101831 0.077927 0.0811661 0.11064 0.132701 0.114855 0.0989585 0.0765786 0.0818092 0.111291 0.132561 0.0826863 0.0813413 0.0716618 0.0799268 0.110564 0.140001 0.147524 0.117821 0.0835289 0.0770701 0.0994423 0.115467 0.137437 0.115096 0.0837847 0.0724937 0.0820092 0.0830986 0.144047 0.113598 0.0818697 0.0859696 0.121859 0.152157 0.120579 0.103783 0.0804383 0.0870792 0.118783 0.142189 0.0851484 0.084799 0.0756189 0.0832174 0.115929 0.147591 0.156766 0.125212 0.0879995 0.0811033 0.10449 0.121116 0.14483 0.121019 0.0880179 0.0759979 0.08566 0.0865446 0.150499 0.118782 0.0856982 0.0897763 0.127391 0.160199 0.125087 0.107773 0.0833045 0.0900732 0.124191 0.148551 0.088531 0.088088 0.0782275 0.0881763 0.122249 0.155313 0.166831 0.134205 0.0951008 0.0877737 0.112289 0.128584 0.153943 0.128374 0.0933513 0.080256 0.0900804 0.0907484 0.158124 0.124063 0.0891975 0.0940757 0.133908 0.168353 0.130456 0.11222 0.0870655 0.0943111 0.129882 0.156638 0.0926149 0.092005 0.0818374 0.0919181 0.126734 0.16032 0.173118 0.13884 0.0978818 0.08959 0.114491 0.132199 0.163204 0.136144 0.0993755 0.085793 0.0951006 0.0951098 0.161073 0.128955 0.0947605 0.100859 0.144182 0.180039 0.0949257 0.0943529 0.084646 0.0941128 0.13066 0.166414 0.180165 0.143272 0.100085 0.0917798 0.117553 0.136074 0.167077 0.138888 0.100699 0.0865225 0.0970369 0.0978139 0.164121 0.130764 0.0961608 0.10495 0.150283 0.187629 0.0964506 0.0971147 0.0883434 0.0993779 0.135061 0.170087 0.194255 0.154275 0.108047 0.0888882 0.0983855 0.0982997 0.176084 0.138483 0.099715 0.107318 0.153922 0.194202 0.143698 0.124457 0.0973969 0.107675 0.149146 0.179319 0.103174 0.102524 0.09167 0.101993 0.137543 0.17181 0.20035 0.160218 0.112309 0.0937052 0.102625 0.102238 0.177672 0.142021 0.105383 0.114394 0.163565 0.205505 0.1032 0.103085 0.0933344 0.103645 0.140311 0.175623 0.20764 0.164731 0.11456 0.0937978 0.10345 0.103484 0.177429 0.141608 0.104702 0.116068 0.167355 0.210414 0.105948 0.106025 0.09603 0.107854 0.144833 0.181028 0.218056 0.173874 0.121236 0.0939422 0.0975171 0.0926873 0.123336 0.115147 0.0980263 0.105899 0.145094 0.184902 0.22498 0.175155 0.119221 0.0960468 0.104775 0.103629 0.182829 0.144979 0.107239 0.123336 0.17959 0.227933 0.0927271 0.0978115 0.0958039 0.105568 0.122877 0.130184 0.191627 0.15037 0.109545 0.123555 0.183344 0.236812 0.0933769 0.0977673 0.0939597 0.100427 0.11862 0.127755 0.190294 0.150123 0.110381 0.129522 0.190963 0.243105 0.092082 0.0989496 0.0977555 0.106399 0.123677 0.13002 0.190079 0.148618 0.108571 0.127847 0.190503 0.24672 0.0911315 0.0965723 0.0942929 0.0986435 0.110585 0.114217 0.130188 0.121151 0.104289 0.112246 0.15513 0.198669 0.248897 0.19046 0.125358 0.0907017 0.0936715 0.0890826 0.103872 0.102375 0.0926482 0.091734 0.100408 0.10256 0.107765 0.105762 0.0938268 0.093012 0.112149 0.120043 0.17777 0.134983 0.0944942 0.123505 0.190335 0.249819 0.0842273 0.089667 0.0876082 0.0868118 0.0961371 0.0967547 0.0918559 0.0881405 0.0776282 0.0764505 0.08756 0.0900375 0.0868067 0.0833592 0.0707552 0.0662504 0.079604 0.0836986 0.0806696 0.0760603 0.0619248 0.0590484 0.0737581 0.0788231 0.07688 0.0715888 0.0563958 0.0542093 0.0698072 0.0755549 0.0741757 0.0681544 0.0522593 0.0506029 0.0667571 0.0731409 0.0720962 0.0654541 0.0491007 0.0477288 0.064231 0.0711993 0.0703303 0.0631992 0.0465677 0.0453322 0.0619857 0.069521 0.0685942 0.0609503 0.0442873 0.0433385 0.0599778 0.0678561 0.0670648 0.0590589 0.0424763 0.0416949 0.0581976 0.0663901 0.0656573 0.0573831 0.0409846 0.0403417 0.0566203 0.0650359 0.0643526 0.0558976 0.0397583 0.0392329 0.0552219 0.0637759 0.0631354 0.0545817 0.0387576 0.038332 0.0539849 0.062599 0.0619976 0.0534194 0.037949 0.0376095 0.0528948 0.0614992 0.0609367 0.0523985 0.0373057 0.0370385 0.0519398 0.0604753 0.0599479 0.0515045 0.0368 0.0365924 0.0511039 0.0595204 0.0590275 0.0507237 0.0364078 0.036249 0.0503751 0.058634 0.0581751 0.0500424 0.0361082 0.0359891 0.049738 0.0578145 0.0573883 0.0494458 0.0358837 0.0357964 0.0491797 0.0570595 0.0566643 0.0489227 0.0357192 0.0356574 0.0486901 0.0563655 0.0560003 0.0484644 0.0356027 0.0355608 0.0482616 0.0557312 0.0553954 0.0480632 0.0355234 0.0354965 0.0478856 0.0551543 0.0548453 0.0477101 0.035472 0.0354566 0.0475541 0.0546305 0.0543474 0.0474018 0.0354475 0.0354408 0.0472638 0.0541572 0.053897 0.0471297 0.0354416 0.0354407 0.047007 0.0537298 0.0534924 0.0468879 0.0354453 0.0354467 0.046779 0.0533464 0.0531283 0.0466727 0.0354535 0.0354564 0.0465763 0.0530013 0.0528029 0.0464822 0.0354635 0.035466 0.0463967 0.0526932 0.0525102 0.0463127 0.0354733 0.0354758 0.0462373 0.052416 0.0522494 0.046163 0.0354823 0.0354834 0.0460965 0.0521695 0.0520146 0.0460301 0.0354898 0.0354912 0.0459719 0.051947 0.0518067 0.0459141 0.0354968 0.0354966 0.0458632 0.0517513 0.0516205 0.0458114 0.0355011 0.0355007 0.0457666 0.0515737 0.0514544 0.0457213 0.0355042 0.0355024 0.045682 0.0514169 0.0513049 0.0456415 0.0355051 0.0355034 0.045607 0.0512743 0.0511717 0.0455715 0.0355054 0.0355025 0.045541 0.0511485 0.051051 0.0455084 0.0355041 0.0355014 0.045481 0.0510328 0.0509428 0.045452 0.0355023 0.0354984 0.0454273 0.0509302 0.0508437 0.0454005 0.0354988 0.0354952 0.0453783 0.0508348 0.0507546 0.0453545 0.0354951 0.0354908 0.0453348 0.0507502 0.0506725 0.0453123 0.03549 0.035486 0.0452945 0.0506708 0.0505987 0.0452748 0.0354851 0.0354814 0.0452597 0.0506007 0.0505302 0.0452402 0.0354791 0.0354756 0.0452264 0.0505342 0.0504695 0.0452096 0.0354736 0.0354703 0.0451981 0.0504757 0.050416 0.0451814 0.0354675 0.0354643 0.0451712 0.050421 0.0503682 0.0451566 0.0354624 0.0354594 0.0451481 0.0503725 0.0503245 0.0451349 0.0354572 0.0354544 0.0451274 0.0503281 0.0502852 0.0451154 0.0354529 0.0354502 0.0451092 0.0502877 0.0502496 0.0450989 0.0354494 0.0354468 0.0450934 0.0502512 0.0502182 0.0450852 0.035447 0.0354445 0.04508 0.0502183 0.0501901 0.0450743 0.0354455 0.0354435 0.0450689 0.0501885 0.0501656 0.0450659 0.0354454 0.0354442 0.0450601 0.0501618 0.0501435 0.0450592 0.0354467 0.0354463 0.0450532 0.0501376 0.0501247 0.0450551 0.0354497 0.0354502 0.0450499 0.0501176 0.0501081 0.0450526 0.0354542 0.0354555 0.0450487 0.0501 0.0500944 0.0450525 0.0354604 0.0354626 0.0450494 0.0500851 0.0500826 0.0450538 0.0354681 0.0354711 0.0450518 0.0500724 0.0500735 0.0450573 0.0354775 0.0354812 0.045056 0.0500622 0.050066 0.0450619 0.0354882 0.0354926 0.0450617 0.0500541 0.0500611 0.0450686 0.0355005 0.0355056 0.045069 0.0500483 0.0500575 0.0450763 0.0355139 0.0355196 0.0450776 0.0500442 0.0500563 0.0450857 0.0355286 0.0355349 0.0450876 0.0500421 0.0500563 0.045096 0.0355443 0.0355512 0.0450988 0.0500416 0.0500587 0.045108 0.0355612 0.0355685 0.0451112 0.0500429 0.0500619 0.0451207 0.0355788 0.0355866 0.0451246 0.0500455 0.0500673 0.0451349 0.0355974 0.0356056 0.0451392 0.05005 0.0500734 0.0451497 0.0356167 0.0356253 0.0451547 0.0500558 0.0500812 0.0451657 0.0356366 0.0356455 0.045171 0.050063 0.05009 0.0451823 0.0356571 0.0356665 0.0451883 0.0500714 0.0501003 0.0452001 0.0356784 0.0356881 0.0452066 0.0500811 0.0501115 0.0452185 0.0357002 0.0357103 0.0452257 0.050092 0.0501242 0.045238 0.0357228 0.0357332 0.0452456 0.0501043 0.0501376 0.0452581 0.0357458 0.0357564 0.0452663 0.0501175 0.0501523 0.0452791 0.0357693 0.0357802 0.0452876 0.0501318 0.0501676 0.0453005 0.0357931 0.0358042 0.0453095 0.050147 0.0501841 0.0453227 0.0358173 0.0358286 0.0453319 0.0501631 0.0502011 0.0453451 0.0358416 0.0358531 0.0453548 0.0501801 0.0502194 0.0453683 0.0358662 0.0358776 0.0453779 0.0501981 0.0502381 0.0453918 0.0358908 0.0359023 0.0454017 0.0502166 0.0502576 0.0454159 0.0359157 0.0359272 0.0454258 0.0502359 0.0502771 0.0454401 0.0359405 0.0359519 0.0454501 0.0502554 0.0502974 0.0454645 0.0359652 0.0359766 0.0454746 0.0502758 0.0503179 0.0454889 0.0359898 0.0360013 0.0454993 0.0502963 0.0503392 0.0455137 0.0360145 0.036026 0.0455243 0.0503176 0.0503605 0.0455389 0.0360394 0.0360509 0.0455497 0.0503389 0.0503827 0.0455646 0.0360645 0.036076 0.0455754 0.0503609 0.0504052 0.0455905 0.0360896 0.0361013 0.0456016 0.0503832 0.0504285 0.0456171 0.0361151 0.0361268 0.0456282 0.0504063 0.0504523 0.0456441 0.0361408 0.0361527 0.0456555 0.05043 0.0504771 0.0456718 0.036167 0.036179 0.0456832 0.0504549 0.0505023 0.0456999 0.0361935 0.0362056 0.0457116 0.0504808 0.0505285 0.0457288 0.0362203 0.0362324 0.0457403 0.0505069 0.0505548 0.0457577 0.0362471 0.0362591 0.0457693 0.0505334 0.0505815 0.0457867 0.0362738 0.0362855 0.0457979 0.0505597 0.0506077 0.0458152 0.0362998 0.0363113 0.0458266 0.0505862 0.0506341 0.0458437 0.0363255 0.0363364 0.0458543 0.0506117 0.0506599 0.0458712 0.03635 0.0363607 0.0458822 0.0505876 0.050636 0.0458078 0.036338 0.0363854 0.0459105 0.0506647 0.0507129 0.0459274 0.0363627 0.0364088 0.0459367 0.0506911 0.0507555 0.0459537 0.0364219 0.0363616 0.0458737 0.0506182 0.0506938 0.0459233 0.0363982 0.0362128 0.045768 0.0505596 0.0508135 0.046202 0.0367445 0.0363963 0.0460489 0.0510806 0.0537243 0.04931 0.0394549 0.0390805 0.0497453 0.0555288 0.0628323 0.0575477 0.0460707 0.0465001 0.060618 0.069613 0.0727904 0.0651894 0.0513778 0.0854108 0.0956717 0.101084 0.11637 0.143777 0.0870988 0.0692022 0.0616317 0.0732332 0.0506092 0.0344741 0.0276116 0.0243887 0.0230858 0.0223415 0.0221051 0.0219591 0.0219462 0.0219486 0.0219591 0.021967 0.0219721 0.0219786 0.0219954 0.0220028 0.0220917 0.0221193 0.0222744 0.0226531 0.0226639 0.0231462 0.0230231 0.0221755 0.0204369 0.0202227 0.0176671 0.0182845 0.017254 0.0179359 0.0177898 0.0181279 0.0181624 0.0182558 0.0182588 0.0182668 0.0182702 0.0182732 0.0182615 0.0182673 0.0182587 0.0182497 0.0182494 0.0182487 0.0182338 0.0182322 0.0182296 0.0182129 0.0182135 0.018195 0.0181935 0.0181726 0.0181685 0.0181445 0.0181368 0.0181134 0.0180877 0.0180729 0.0180371 0.0180161 0.0179734 0.0179446 0.017898 0.0178464 0.0178028 0.0177356 0.0176797 0.0175993 0.0175248 0.0174423 0.0173389 0.017244 0.0171276 0.0170022 0.0168805 0.0167331 0.0165935 0.0164289 0.0162725 0.0160922 0.0159208 0.0157272 0.0155434 0.0153391 0.0151456 0.0149336 0.0147335 0.0145168 0.0143094 0.0141012 0.0138824 0.0136743 0.0134672 0.0132515 0.0130507 0.0128425 0.0126369 0.0124434 0.0122439 0.0120476 0.0118637 0.0116717 0.011495 0.0113108 0.0111415 0.0109652 0.0108037 0.0106355 0.0104817 0.0103241 0.0101704 0.0100281 0.00987972 0.00974485 0.00960409 0.00947645 0.00934304 0.00922007 0.00910055 0.00897766 0.00886694 0.0087507 0.00864626 0.00853849 0.00843374 0.00833821 0.00823927 0.00814322 0.00805389 0.00796722 0.00787723 0.00779756 0.00771457 0.00763397 0.00756138 0.00748357 0.0074154 0.00734387 0.00727445 0.00721071 0.0071489 0.00708378 0.00702756 0.00696622 0.00691359 0.00685586 0.00680664 0.00675402 0.00670302 0.00665696 0.00661238 0.00656607 0.00652301 0.00648106 0.00644051 0.00640164 0.00636394 0.00632755 0.00629242 0.00625852 0.00622584 0.00619434 0.006164 0.00613479 0.00610668 0.00607981 0.00605369 0.0060286 0.00600484 0.00598191 0.00595997 0.00593898 0.00591892 0.0058998 0.00588157 0.00586424 0.00584779 0.0058322 0.00581747 0.00580358 0.00579052 0.00577815 0.00576687 0.00575641 0.00574647 0.0057375 0.00572927 0.00572191 0.00571506 0.00570575 0.00569893 0.00566446 0.00565215 0.0055421 0.0055869 0.00537391 0.00569296 0.00550283 0.00629679 0.00603802 0.0059628 0.00592633 0.00591631 0.00591816 0.00590763 0.00589088 0.00587359 0.00585972 0.00584904 0.0058401 0.00583174 0.00582342 0.00581504 0.00580634 0.00579711 0.00578719 0.00577642 0.00576538 0.00575395 0.005742 0.00572938 0.00571611 0.00570248 0.00568836 0.00567376 0.00565869 0.00564316 0.00562719 0.00561079 0.00559397 0.00557662 0.00555901 0.00554117 0.00552284 0.00550403 0.00548504 0.00546588 0.00544631 0.00542647 0.00540651 0.0053862 0.00536555 0.00534485 0.00532386 0.00530272 0.0052816 0.00526039 0.00523923 0.00521803 0.00519667 0.00517531 0.00515398 0.0051327 0.00511149 0.00509038 0.0050694 0.00504856 0.0050279 0.00500744 0.00498721 0.00496722 0.00494751 0.00492808 0.00490897 0.00489018 0.00487175 0.00485367 0.00483597 0.00481868 0.0048018 0.00478536 0.00476936 0.00475377 0.00473846 0.00472441 0.00471021 0.00469693 0.00468865 0.00468912 0.00470841 0.0047557 0.00483854 0.00495236 0.00503781 0.00494423 0.00486715 0.0103729 0.00884833 0.00907877 0.009012 0.00918212 0.00912318 0.00922795 0.00914756 0.00921621 0.0091371 0.00920078 0.00911719 0.00917978 0.00909389 0.00915503 0.00906769 0.00912732 0.00903947 0.00909793 0.00900842 0.0090669 0.00897467 0.00903339 0.00893922 0.00899795 0.00890165 0.00896061 0.00886195 0.00892134 0.00882017 0.00888014 0.00877628 0.00883698 0.00873023 0.00879181 0.00868197 0.00874456 0.00863144 0.00869514 0.00857922 0.0086435 0.00852482 0.00858958 0.00846799 0.00853329 0.00840865 0.00847454 0.00834669 0.00841324 0.00828204 0.00834929 0.00821461 0.00828261 0.00814431 0.00821268 0.00807148 0.00814068 0.00799481 0.00806526 0.00791551 0.00798679 0.00783316 0.00790523 0.00774779 0.0078206 0.00765954 0.00773297 0.00756859 0.00764248 0.00747521 0.00754936 0.00737979 0.00745393 0.00728288 0.00735662 0.00718517 0.00725805 0.00708757 0.00715864 0.00699161 0.00706015 0.00689798 0.00696347 0.00680881 0.0068702 0.00672612 0.00678227 0.00665224 0.00670182 0.00659142 0.00663118 0.00655071 0.00657322 0.00652706 0.00653076 0.00652159 0.0065028 0.0065342 0.00649953 0.00656732 0.00651841 0.0066194 0.00656033 0.006686 0.00661998 0.00676274 0.00669222 0.00684721 0.00677387 0.0069367 0.00686207 0.00702831 0.00695383 0.0071194 0.00704633 0.00720766 0.00713707 0.00729115 0.00722386 0.00736828 0.0073049 0.00743792 0.00737886 0.00749944 0.00744852 0.00755251 0.00751056 0.00759742 0.0075639 0.00763467 0.00760876 0.00766528 0.00764591 0.00769024 0.00767625 0.00771043 0.00770086 0.00772659 0.00772064 0.00773964 0.00773642 0.00775028 0.00774919 0.00775873 0.00775929 0.00776555 0.00776729 0.00777102 0.00777359 0.0077754 0.00777857 0.00777893 0.00778255 0.00778184 0.00778582 0.00778422 0.00778842 0.00778619 0.00779044 0.00778798 0.00779221 0.00778932 0.00779328 0.00777589 0.00776 0.00772684 0.00762706 0.00761054 0.00741724 0.00767536 0.00759041 0.00894928 0.00967281 0.018089 0.0141668 0.0113699 0.0110519 0.00431782 0.00901607 0.00928386 0.00416898 0.00901189 0.00922957 0.00414021 0.00922035 0.00933581 0.00416398 0.0093591 0.00937272 0.0041755 0.00938707 0.00938441 0.00417806 0.0093841 0.00938141 0.00417781 0.00938084 0.00937843 0.00417654 0.00937698 0.00937499 0.00417512 0.00937269 0.00937125 0.00417353 0.00936761 0.00936721 0.00417175 0.00936167 0.00936249 0.00416971 0.0093545 0.00935693 0.00416735 0.00934586 0.00935033 0.00416454 0.00933536 0.00934247 0.00416118 0.00932252 0.00933311 0.00415715 0.00930669 0.00932177 0.00415227 0.00928727 0.00930799 0.00414633 0.00926336 0.00929113 0.00413901 0.00923393 0.00927041 0.00412999 0.00919784 0.00924488 0.00411885 0.00915397 0.00921345 0.00410512 0.00910123 0.00917496 0.00408826 0.00903894 0.00912833 0.00406774 0.00896663 0.00907246 0.00404311 0.00888443 0.00900676 0.0040141 0.00879317 0.00893124 0.0039807 0.00869425 0.00884643 0.00394315 0.00858966 0.00875348 0.00390195 0.00848194 0.00865413 0.00385793 0.0083741 0.00855066 0.00381216 0.00826942 0.00844559 0.00376502 0.00817158 0.008342 0.00372046 0.00808427 0.00824338 0.00367922 0.00801056 0.00815262 0.00363922 0.00795432 0.00807098 0.00360658 0.00792328 0.00800561 0.00358072 0.00792113 0.00796585 0.00356362 0.00793714 0.00794988 0.00357133 0.00797983 0.00795363 0.00359381 0.00803885 0.00797892 0.00362409 0.00811453 0.00802431 0.00366057 0.00820323 0.00808724 0.00370176 0.00830182 0.00816504 0.00374642 0.00840733 0.00825452 0.00379342 0.00851727 0.00835267 0.00384176 0.00862966 0.00845704 0.0038907 0.00874289 0.00856501 0.00393964 0.00885607 0.00867548 0.00398814 0.00896757 0.00878663 0.00403584 0.00907697 0.00889728 0.00408245 0.00918371 0.0090065 0.00412778 0.00928739 0.00911357 0.00417168 0.00938773 0.00921796 0.00421406 0.00948454 0.00931929 0.00425486 0.00957771 0.00941727 0.00429404 0.00966717 0.00951172 0.00433158 0.00975293 0.00960252 0.00436749 0.00983504 0.00969001 0.0044018 0.0099132 0.00977304 0.00443456 0.00998865 0.00985284 0.00446578 0.0100603 0.0099291 0.00449553 0.0101288 0.0100019 0.00452383 0.010194 0.0100713 0.00455073 0.0102562 0.0101374 0.00457625 0.0103154 0.0102004 0.00460045 0.0103717 0.0102602 0.00462335 0.0104252 0.010317 0.00464498 0.010476 0.0103709 0.00466536 0.0105241 0.010422 0.00468452 0.0105695 0.0104702 0.00470245 0.0106124 0.0105156 0.00471917 0.0106528 0.0105584 0.00473469 0.0106906 0.0105985 0.00474902 0.0107259 0.0106358 0.00476215 0.0107587 0.0106705 0.00477404 0.0107889 0.0107027 0.00478466 0.0108159 0.0107317 0.00479394 0.0108406 0.0107573 0.00480251 0.010863 0.0107798 0.00480709 0.0108821 0.0108006 0.00480888 0.0108947 0.010816 0.00480597 0.0109034 0.0108191 0.00478982 0.0108967 0.0107749 0.00476802 0.0108436 0.0106067 0.00476067 0.0107066 0.00455753 0.00445726 0.0044696 0.00450142 0.004516 0.00452066 0.00452055 0.00451598 0.00451076 0.00450433 0.00449676 0.00448807 0.00447829 0.00446743 0.0044555 0.00444248 0.00442835 0.00441311 0.00439677 0.00437928 0.00436064 0.00434081 0.00431975 0.00429744 0.00427382 0.00424887 0.00422253 0.00419475 0.00416549 0.00413467 0.00410221 0.00406808 0.00403225 0.00399468 0.00395533 0.0039142 0.00387128 0.00382663 0.00378034 0.00373256 0.00368347 0.00363353 0.00358346 0.00353423 0.00348718 0.00344416 0.00340725 0.00339526 0.00343022 0.00347452 0.00352392 0.00357826 0.0036308 0.0036811 0.00373154 0.00377733 0.0038181 0.00385397 0.00388117 0.00390529 0.00392297 0.00393582 0.00394468 0.00395051 0.00395424 0.0039566 0.00395811 0.00395911 0.00395983 0.0039604 0.00396094 0.00396148 0.00396203 0.00396262 0.00396323 0.00396389 0.0039656 0.00396438 0.00396616 0.00396501 0.00395991 0.00395038 0.00394596 0.00402626 0.00419636 0.0111761 0.0111951 0.0127443 0.0137885 0.0130412 0.0127814 0.012674 0.0110013 0.0110659 0.0126808 0.0126703 0.0110161 0.00408346 0.00400121 0.00395537 0.003966 0.00397846 0.0039858 0.00398721 0.00398468 0.00398721 0.00398688 0.00398472 0.00398673 0.00398597 0.00398647 0.00398633 0.0039982 0.00399745 0.00399528 0.00399755 0.00399317 0.00399704 0.00399513 0.0039934 0.00399576 0.00399419 0.00398665 0.00397022 0.00395275 0.00397364 0.0040267 0.01104 0.0126846 0.0127122 0.0110662 0.0110936 0.0127675 0.0128995 0.0112435 0.00403882 0.00398168 0.00395485 0.00395848 0.00400969 0.00414204 0.0112436 0.0130475 0.0134089 0.0116331 0.0114848 0.0138843 0.0126913 0.0118342 0.00421805 0.00421812 0.00418457 0.00418806 0.00396241 0.00396939 0.00398661 0.00399237 0.00399409 0.00398081 0.00398075 0.0039747 0.00419374 0.00419732 0.00419836 0.00971501 0.00973445 0.00970931 0.00973031 0.00971292 0.00972369 0.00971247 0.00971464 0.00970749 0.00969075 0.00973827 0.00957435 0.010104 0.008835 0.0226128 0.0318146 0.0275218 0.0247487 0.021792 0.0253933 0.0239723 0.021058 0.0183854 0.0222598 0.0183473 0.0160054 0.0159076 0.0192325 0.0182259 0.0153898 0.0154564 0.0184654 0.0186203 0.015464 0.0144632 0.0144737 0.0145357 0.0148417 0.0154406 0.0167545 0.0192231 0.0219166 0.0144657 0.0154917 0.0186655 0.0183511 0.0154301 0.0154132 0.0183019 0.0186429 0.0154913 0.0154725 0.0186221 0.0183257 0.0154193 0.0153813 0.0182848 0.0186628 0.0155159 0.0144977 0.0144617 0.0144698 0.0144754 0.0144822 0.01447 0.0144769 0.0144754 0.015477 0.0186006 0.0183524 0.0154274 0.0153871 0.0182866 0.0186674 0.0155237 0.0154839 0.0186034 0.0183424 0.015436 0.0153949 0.0183052 0.0186729 0.0155328 0.0145341 0.0144958 0.0145198 0.0144927 0.0145152 0.0144778 0.0145011 0.0145107 0.0154923 0.0186073 0.018348 0.0154454 0.0154034 0.0183095 0.018679 0.0155429 0.0155011 0.0186122 0.0183547 0.0154561 0.0154126 0.0183144 0.0097372 0.0186861 0.015554 0.0145734 0.0145334 0.014558 0.0145293 0.0145533 0.0145144 0.0145382 0.014549 0.0155107 0.0186176 0.00971736 0.00420036 0.00398295 0.0039939 0.00399482 0.00399592 0.00399427 0.00398436 0.00398366 0.00398321 0.00420153 0.00420288 0.00420452 0.00420658 0.00398539 0.00399691 0.00399596 0.00399855 0.00400089 0.00399175 0.00398881 0.00398679 0.00420904 0.00421193 0.0042155 0.00974637 0.00977338 0.00973975 0.00976481 0.00973456 0.00975805 0.00973034 0.00975273 0.00972643 0.00974804 0.00972301 0.00974391 0.00971999 0.00974037 0.0183201 0.0183623 0.0154677 0.0154227 0.0155661 0.0186942 0.0186235 0.0183707 0.0154801 0.0155213 0.0145704 0.0145947 0.014554 0.0145788 0.0146013 0.0145762 0.0154336 0.0183264 0.0187032 0.0155792 0.0146181 0.0145937 0.015533 0.0186307 0.0183805 0.015494 0.0154462 0.0183341 0.0187138 0.015594 0.0155461 0.0186387 0.0183916 0.0155096 0.0154598 0.0183426 0.0187258 0.0156104 0.0146711 0.0146259 0.0146515 0.0146183 0.0146438 0.0146 0.0146255 0.0146453 0.0155605 0.0186478 0.0184043 0.015527 0.0154751 0.0183522 0.0187399 0.0156295 0.0155768 0.018658 0.0184201 0.0155477 0.0154924 0.0183632 0.0187577 0.0156522 0.0147379 0.0146871 0.0147142 0.0146763 0.0147023 0.014655 0.014681 0.0147108 0.0155956 0.0186702 0.0184399 0.0155725 0.0155127 0.0183766 0.0187798 0.0156796 0.0156177 0.0186852 0.0184642 0.0156024 0.0155366 0.018393 0.00978395 0.0188068 0.0157123 0.0148281 0.0147681 0.0147974 0.0147508 0.0147792 0.0147242 0.0147523 0.0147983 0.0156436 0.0187031 0.00975456 0.00422023 0.00399584 0.00400418 0.00400267 0.00398957 0.00398932 0.00399254 0.00399626 0.00399742 0.00400179 0.00400592 0.00400697 0.00400565 0.00400254 0.00399342 0.00397723 0.00395683 0.00392587 0.0038884 0.00384168 0.00394781 0.00399099 0.00402163 0.00404312 0.0040561 0.00406446 0.00406345 0.00405832 0.00404991 0.00404119 0.00403067 0.00402022 0.00401716 0.00400951 0.00400407 0.00400872 0.00401478 0.00402369 0.0040185 0.00400865 0.00400129 0.00422642 0.00423456 0.00424539 0.00425958 0.00403138 0.00403191 0.00404586 0.00406143 0.00407989 0.00409765 0.00407028 0.00404821 0.00427758 0.00430072 0.00432783 0.00990804 0.0100338 0.00987427 0.00996191 0.009837 0.0099054 0.00981171 0.00986541 0.00979229 0.00983613 0.00977687 0.009814 0.00976449 0.00979714 0.018412 0.0184938 0.015638 0.0155643 0.0157517 0.0188399 0.0187241 0.0185305 0.0156813 0.0156734 0.0148547 0.0148864 0.0148195 0.0148507 0.0149154 0.0148811 0.0155967 0.0184343 0.0188821 0.0158004 0.0149577 0.0149225 0.0157095 0.0187492 0.018578 0.0157361 0.01564 0.0184612 0.0189371 0.0158626 0.0157518 0.0187792 0.0186412 0.0158062 0.0156982 0.0184949 0.0190109 0.0159424 0.0151564 0.0150644 0.0150923 0.0150043 0.0150454 0.0149597 0.0149941 0.0151044 0.0158019 0.0188165 0.0187273 0.0158974 0.015772 0.018536 0.0191128 0.0160487 0.0158729 0.0188621 0.0188478 0.0160217 0.0158693 0.0185862 0.0192581 0.0161972 0.0154797 0.0153659 0.0153756 0.0152385 0.0152954 0.0151958 0.0152162 0.0154534 0.015986 0.0189165 0.0190417 0.0162028 0.0160398 0.0186802 0.0195109 0.0164336 0.0161497 0.0190233 0.019286 0.0164943 0.0161795 0.0186878 0.01012 0.0197619 0.0167248 0.0160975 0.0159054 0.0159344 0.0157479 0.0157517 0.0156082 0.0155794 0.0160769 0.0162985 0.0189724 0.00991167 0.00434979 0.00412289 0.00409713 0.00411128 0.00412201 0.00412009 0.00417075 0.00417384 0.00415131 0.00437426 0.00438848 0.00432954 0.00432443 0.00416372 0.00411437 0.00410303 0.00408289 0.0040525 0.00414951 0.00415853 0.00416628 0.00431543 0.00427441 0.00428634 0.0088813 0.0100339 0.00889124 0.010102 0.00905378 0.00989746 0.00897069 0.00953947 0.00959789 0.0103558 0.00977349 0.0102607 0.00987117 0.0101801 0.0185791 0.0195705 0.0167451 0.0162618 0.0169173 0.019949 0.0187383 0.0197465 0.0170048 0.0163368 0.0163261 0.016283 0.0161682 0.0161566 0.0164951 0.0165806 0.0165779 0.0185953 0.0202521 0.0173325 0.0168866 0.0168517 0.0167966 0.0187728 0.0201534 0.0172258 0.0167328 0.0183421 0.0210843 0.0183604 0.0182264 0.0193995 0.0239083 0.00783578 0.0195563 0.0167758 0.0181242 0.0190483 0.0149439 0.0166435 0.0215132 0.0180998 0.016482 0.0164688 0.0186168 0.0200506 0.016837 0.016159 0.0188301 0.0085757 0.00897343 0.0088213 0.0088573 0.0171583 0.0204127 0.0186248 0.0205592 0.0186509 0.0202275 0.0169811 0.0161853 0.0172611 0.0166368 0.0170568 0.0146652 0.0193631 0.0209307 0.0176457 0.00854797 0.00882027 0.00865968 0.0089125 0.0102501 0.00909912 0.00421663 0.00412716 0.00400637 0.00389346 0.0037886 0.00372877 0.0036626 0.00359624 0.00352878 0.00346642 0.00341392 0.00342472 0.00347414 0.00352841 0.00358526 0.00364267 0.00369889 0.00375333 0.00380541 0.0038549 0.00391834 0.00386695 0.00381181 0.00375281 0.00368994 0.00362379 0.00355599 0.00348904 0.00342527 0.00342276 0.0034968 0.00357933 0.00366574 0.00374765 0.00382474 0.0039307 0.00383982 0.00373671 0.00380758 0.00392822 0.00404758 0.00410801 0.00397806 0.00386541 0.00372346 0.00368195 0.00363102 0.00352592 0.00342809 0.00341339 0.00337299 0.00341897 0.00354743 0.00355866 0.00338573 0.00329087 0.00315712 0.00327914 0.00349832 0.00370561 0.00385593 0.00396401 0.00378771 0.0115929 0.00933814 0.00882538 0.0181526 0.0207961 0.0174914 0.0202592 0.0178372 0.0203395 0.0178148 0.0206253 0.0179052 0.0178013 0.0182617 0.0214481 0.0173969 0.0170937 0.016996 0.0175542 0.0170448 0.0168823 0.0169085 0.0172397 0.0166591 0.0180909 0.0186761 0.0146415 0.0165656 0.021197 0.0181133 0.0179 0.0180366 0.0188841 0.0237785 0.00773878 0.0172359 0.0165544 0.0166398 0.0159771 0.0166213 0.0196059 0.0163121 0.00832627 0.00944453 0.0164595 0.0201649 0.0188245 0.0141643 0.0176756 0.0176772 0.020332 0.0164615 0.00813983 0.00933617 0.0166754 0.0198066 0.0167689 0.0165787 0.0164276 0.0172415 0.0181813 0.0210594 0.0142707 0.0179024 0.0172421 0.0181829 0.0226023 0.00702606 0.00773556 0.00918522 0.0077231 0.0150851 0.018244 0.0152671 0.0165302 0.0171411 0.0206002 0.015515 0.013964 0.0172739 0.0171969 0.0191722 0.0147141 0.00750953 0.00763643 0.00895785 0.00745351 0.00743389 0.00747995 0.00903923 0.00285959 0.00728692 0.00592628 0.00615536 0.0201624 0.0147726 0.0185519 0.0157625 0.0158432 0.0157198 0.017281 0.0199859 0.0133945 0.0159248 0.0158148 0.016019 0.0141608 0.0129308 0.017981 0.0145268 0.0124583 0.0158485 0.0135211 0.0124739 0.0114622 0.0141284 0.0119938 0.0109394 0.0118634 0.0115587 0.0166232 0.0107579 0.00956509 0.0073542 0.00619083 0.00845002 0.00983839 0.0109935 0.0116681 0.00604901 0.00643562 0.0048029 0.0141281 0.0112336 0.00883443 0.00799918 0.00983348 0.0111765 0.0120469 0.00539157 0.0122593 0.0113756 0.00966279 0.0076649 0.00838986 0.00570809 0.0099784 0.0110285 0.0138659 0.0138932 0.0167707 0.0161525 0.0175383 0.0161977 0.0197216 0.020387 0.0217515 0.0215816 0.0219948 0.0203485 0.0275499 0.0238651 0.0226469 0.0227182 0.0206355 0.0265894 0.0237035 0.0204363 0.0263046 0.0230849 0.0202238 0.0261367 0.0234451 0.0202191 0.0260071 0.0229311 0.0201271 0.0259322 0.0233241 0.0201169 0.0257309 0.022795 0.0199627 0.0254964 0.0230684 0.0192377 0.0232694 0.0264013 0.0228312 0.019139 0.0257129 0.023058 0.0199597 0.0259384 0.0229135 0.019612 0.0259593 0.0232591 0.0200843 0.0260054 0.0230553 0.0197604 0.0261075 0.0233987 0.0203678 0.0264326 0.023338 0.0201201 0.0270867 0.0239518 0.0224109 0.0228485 0.0206832 0.0264069 0.0240111 0.0207519 0.0264085 0.0235096 0.0206733 0.0267193 0.0241198 0.0208445 0.0268907 0.023831 0.0210511 0.028046 0.02509 0.0231714 0.0235083 0.0211397 0.0274643 0.0244621 0.0215768 0.0284961 0.0253098 0.0235889 0.024356 0.0219697 0.0280101 0.0248589 0.0220615 0.02914 0.0259936 0.024031 0.0244485 0.0221132 0.028671 0.0254675 0.0226007 0.0297635 0.0263803 0.0245883 0.0253198 0.0229739 0.0301969 0.0265498 0.0250079 0.0253416 0.0232391 0.0305731 0.0272121 0.0254567 0.0261696 0.0237594 0.0311258 0.0272862 0.0257535 0.0260701 0.0240468 0.0315083 0.0280057 0.0262562 0.0269193 0.0244506 0.0320827 0.0282108 0.027055 0.0272732 0.0264094 0.027139 0.0252082 0.0328168 0.0293645 0.0273197 0.0275718 0.0250938 0.0332318 0.0293507 0.0280687 0.0282634 0.0274768 0.0281951 0.0261039 0.0340807 0.0302412 0.0289171 0.0294278 0.0282039 0.0288049 0.0264521 0.0346112 0.0306204 0.0294884 0.0296019 0.0287192 0.029404 0.0273573 0.0355262 0.0314643 0.0300459 0.0306597 0.0294203 0.029992 0.0276881 0.0363009 0.0320118 0.0307576 0.0308496 0.0299729 0.0306239 0.0284599 0.0370659 0.0327411 0.0313695 0.0316738 0.0313973 0.031923 0.0310279 0.032042 0.0295303 0.0381737 0.033473 0.0322139 0.0323631 0.0321669 0.0325596 0.0318305 0.0324939 0.030282 0.0393332 0.0346502 0.0332202 0.0334614 0.0331877 0.0337012 0.0327684 0.033805 0.0312263 0.0404 0.0352853 0.0340417 0.0342342 0.0340723 0.0343851 0.0335939 0.0342818 0.031942 0.0415651 0.0365549 0.0350509 0.0353157 0.0350028 0.0356831 0.0354742 0.0362633 0.0349862 0.0356038 0.0328663 0.0430383 0.0377994 0.0362436 0.0363948 0.0361711 0.0367119 0.0366154 0.0370619 0.0361072 0.0367644 0.034366 0.0445472 0.0391589 0.0376089 0.0378769 0.0375798 0.038223 0.0379645 0.0387981 0.0374984 0.0382059 0.0353054 0.0460874 0.0404281 0.0389206 0.0390112 0.0387698 0.0393631 0.0392993 0.0396494 0.0387101 0.0393844 0.0367908 0.0477832 0.0419491 0.0403595 0.0405972 0.0402604 0.0409355 0.0407582 0.0416217 0.0402204 0.0408894 0.037803 0.0495513 0.0434183 0.0417863 0.0419268 0.0416967 0.0422668 0.0421898 0.0426736 0.0425855 0.0429358 0.0419542 0.0426303 0.0398587 0.0516546 0.0454174 0.0436847 0.0438758 0.0436245 0.044238 0.0441318 0.0446414 0.0435588 0.0447925 0.0414652 0.053576 0.0467175 0.0452025 0.0452645 0.0451609 0.0457235 0.0457207 0.0460941 0.045146 0.0458191 0.0428062 0.0557539 0.0488634 0.0469995 0.0471956 0.0469095 0.0475858 0.0475681 0.0480891 0.0468739 0.0482232 0.0447587 0.0579189 0.0505014 0.048867 0.0488633 0.0487711 0.0492846 0.0493414 0.049767 0.0487111 0.0494808 0.0462242 0.0601112 0.0528158 0.0508346 0.0512366 0.050971 0.0520233 0.0503623 0.0511237 0.0472701 0.062176 0.0543207 0.0524172 0.0524631 0.0523342 0.0528332 0.0517954 0.0525986 0.0491151 0.0643708 0.0564862 0.0543403 0.0547285 0.0543664 0.0554378 0.0537213 0.0544998 0.0502958 0.066531 0.0581243 0.0559987 0.0561674 0.0560572 0.056564 0.0555086 0.0563091 0.052643 0.0693133 0.0606122 0.0581951 0.0585273 0.0581365 0.0593732 0.0574632 0.0582835 0.0538658 0.0710204 0.0621632 0.0601901 0.060089 0.0587927 0.0596927 0.0558907 0.0737539 0.0643585 0.0619282 0.0622034 0.061912 0.0625674 0.0611729 0.0629518 0.0581914 0.0757984 0.0661278 0.0641801 0.0640556 0.0629453 0.0638684 0.0595635 0.0781154 0.0685984 0.0661588 0.0663283 0.0645819 0.0665224 0.06132 0.0800796 0.0696188 0.0663997 0.0667501 0.0622223 0.0827225 0.0727601 0.0700355 0.0705743 0.0681175 0.0690981 0.063571 0.0842845 0.073668 0.0699375 0.0704409 0.0652129 0.0867257 0.0769548 0.0722481 0.0723145 0.0658824 0.088855 0.0773943 0.0733244 0.0736866 0.0679625 0.0909422 0.0804792 0.0752678 0.0755576 0.0690449 0.0938325 0.0818759 0.0775463 0.0776092 0.0714426 0.0954742 0.0843859 0.0789148 0.0789958 0.0722262 0.0973998 0.0852382 0.0812736 0.0818891 0.0753101 0.0979098 0.0867743 0.0760353 0.101271 0.0879403 0.0836372 0.0849692 0.0781811 0.101055 0.0889631 0.0779715 0.104084 0.0905831 0.0798867 0.107842 0.0943252 0.0891984 0.0908029 0.0822303 0.106459 0.0936143 0.0835795 0.109689 0.0971954 0.0843133 0.1097 0.0959395 0.0851175 0.111378 0.100023 0.0875187 0.114315 0.102926 0.0824358 0.100523 0.118754 0.103127 0.0882145 0.116891 0.101809 0.0848831 0.106257 0.124088 0.10766 0.0868074 0.10669 0.125205 0.106141 0.0854355 0.107755 0.126929 0.11067 0.0876629 0.102586 0.111534 0.130091 0.114103 0.0852089 0.0994339 0.0955224 0.0994738 0.106426 0.1241 0.107481 0.0831498 0.0920949 0.0914243 0.089594 0.0865708 0.0843734 0.0819882 0.0807045 0.0789266 0.0781027 0.0768854 0.0763391 0.0753742 0.0750157 0.0740079 0.0738827 0.0729343 0.0726674 0.0719403 0.0717117 0.0710472 0.070864 0.0702435 0.0700965 0.0695121 0.0693942 0.0688387 0.0687454 0.0682165 0.0681443 0.0676362 0.0675807 0.0670907 0.0670494 0.0665747 0.0665452 0.0660839 0.0660649 0.0656156 0.0656053 0.0651664 0.0651644 0.0647357 0.0647408 0.0643205 0.0643322 0.0639208 0.0639382 0.0635337 0.0635573 0.0630983 0.0632527 0.0628004 0.0628349 0.0623912 0.0625551 0.0620555 0.0622243 0.0617335 0.0619065 0.0614821 0.0615375 0.0611243 0.0613047 0.0609074 0.0609598 0.060641 0.0606894 0.0603852 0.0604291 0.0601413 0.0601825 0.0599083 0.059946 0.0596871 0.0597231 0.0594765 0.0595097 0.0592775 0.0593095 0.0590887 0.0591183 0.0588522 0.0589985 0.058743 0.0587695 0.0585857 0.058611 0.0584382 0.0584599 0.0583005 0.0583191 0.05817 0.0581864 0.0580489 0.0580625 0.0579349 0.0579464 0.0578291 0.0578384 0.0577298 0.0577373 0.0576379 0.0576434 0.0575519 0.0575554 0.0574728 0.0574741 0.057399 0.0573984 0.0573313 0.0573287 0.0572682 0.0572639 0.0572106 0.0572045 0.0571572 0.0571495 0.0571086 0.0570993 0.0570637 0.0570529 0.0570231 0.0570109 0.0569856 0.0569721 0.0569519 0.0569372 0.0569209 0.0569051 0.0568934 0.0568764 0.0568681 0.0568503 0.0568462 0.0568275 0.0568265 0.0568068 0.0568095 0.0567891 0.0567944 0.0567731 0.0567818 0.0567598 0.0567707 0.0567479 0.0567619 0.0567385 0.0567543 0.0567303 0.0567487 0.0567243 0.0567442 0.0567193 0.0567415 0.0567162 0.0567396 0.0567139 0.0567394 0.0567134 0.0567398 0.0567135 0.0567416 0.0567153 0.0567441 0.0567176 0.0567481 0.0567215 0.0567526 0.0567258 0.0567588 0.0567317 0.0567656 0.0567381 0.0567739 0.0567461 0.0567829 0.0567547 0.0567934 0.056765 0.0568045 0.056776 0.0568169 0.0567882 0.0568292 0.0568005 0.0568424 0.0568137 0.0568557 0.0568272 0.056813 0.0568413 0.0568923 0.0568071 0.056899 0.0568641 0.0569134 0.0568788 0.0569425 0.0567684 0.0568658 0.0566654 0.0567791 0.0571274 0.0587393 0.061865 0.0697641 0.079477 0.0911038 0.0957551 0.101081 0.0802229 0.0681463 0.0821217 0.041625 0.108208 0.119229 0.0504517 0.0564934 0.0197941 0.0656228 0.0483315 0.0391286 0.0802961 0.0653136 0.063922 0.0781979 0.0781638 0.0637434 0.0637004 0.0778645 0.0363483 0.0382712 0.0416561 0.0364465 0.0786003 0.064143 0.0639536 0.0782151 0.0785082 0.0641813 0.0641559 0.0785923 0.035606 0.0390466 0.0191374 0.0184592 0.0406054 0.0362008 0.0785804 0.0642245 0.0641684 0.0785611 0.0785708 0.0642294 0.0642111 0.0786282 0.0360621 0.0401433 0.0404684 0.0362269 0.0786436 0.0642517 0.0642133 0.0786486 0.0784848 0.0641255 0.0642305 0.0787244 0.0361997 0.0404586 0.0183156 0.0174906 0.0179709 0.0197067 0.0234623 0.023856 0.0201178 0.0181346 0.0175636 0.0176103 0.0174994 0.0183478 0.0405292 0.0362472 0.0787572 0.0643361 0.0641841 0.0786018 0.0786223 0.0642892 0.0642681 0.0787072 0.0362497 0.0405546 0.0405657 0.036278 0.0788722 0.0643807 0.0642309 0.078598 0.0787283 0.0643275 0.0643096 0.0787538 0.0362913 0.0405983 0.0184062 0.018432 0.0405552 0.0362769 0.078915 0.0644208 0.0642752 0.078646 0.0787716 0.0643695 0.0643569 0.0788048 0.0363112 0.040597 0.0405518 0.0363097 0.0789606 0.0644654 0.0643254 0.0786988 0.0788186 0.0644169 0.0644102 0.0788592 0.0363313 0.0406107 0.0184457 0.0176851 0.0176537 0.0175969 0.0177526 0.0178361 0.0178747 0.0179977 0.0179484 0.01785 0.017668 0.0175676 0.0180909 0.0198448 0.0226236 0.0216795 0.0194467 0.0179564 0.0175465 0.0175225 0.0178369 0.0191451 0.0211042 0.0208025 0.0189692 0.0177619 0.0175058 0.0177299 0.0177175 0.0177001 0.0179095 0.0180284 0.0180791 0.0181335 0.0180837 0.0179475 0.0179768 0.0181213 0.0181695 0.0181931 0.0181466 0.0180011 0.0177416 0.0175022 0.0177298 0.0188755 0.0206579 0.0206046 0.0188357 0.0177237 0.0175055 0.0175181 0.0177189 0.0188297 0.0205819 0.0205821 0.0188307 0.0177202 0.0175314 0.0177791 0.0177693 0.0177556 0.0180201 0.0181641 0.0182095 0.0182214 0.0181766 0.018033 0.0180424 0.0181855 0.0182302 0.0182387 0.01823 0.0182184 0.0182022 0.0181784 0.0181437 0.0180913 0.0180059 0.0178781 0.0176833 0.0184494 0.040571 0.0363284 0.0790092 0.0645159 0.0643817 0.0787541 0.0788683 0.0644705 0.0644695 0.0789156 0.0363525 0.0406187 0.0405752 0.0363484 0.0790602 0.0645725 0.0644434 0.0788115 0.0789207 0.0645296 0.0645337 0.0789738 0.0363746 0.0406274 0.0184559 0.0184585 0.040583 0.0363694 0.0791137 0.0646341 0.0645099 0.0788703 0.0789748 0.0645935 0.0646028 0.0790331 0.0363974 0.0406385 0.040589 0.0363911 0.0791683 0.0647004 0.0645818 0.0789299 0.0790295 0.064662 0.0646775 0.0790934 0.0364206 0.0406473 0.0184611 0.0176953 0.0176941 0.017693 0.0178875 0.0178891 0.0178905 0.0178922 0.0176967 0.0184639 0.0405953 0.0364132 0.0792236 0.0647712 0.0646589 0.0789903 0.0790848 0.0647348 0.0647572 0.0791545 0.0364439 0.0406562 0.0406015 0.0364353 0.0792793 0.0648462 0.0647412 0.0790519 0.0791404 0.0648118 0.064842 0.079217 0.0364675 0.0406651 0.0184672 0.0184708 0.0406075 0.0364575 0.0793356 0.0649261 0.0648283 0.0791145 0.0791964 0.0648946 0.064932 0.0792803 0.0364913 0.0406747 0.0406137 0.0364797 0.079392 0.0650116 0.064921 0.079178 0.0792527 0.0649824 0.0650276 0.0793448 0.0365153 0.0406847 0.0184747 0.0177026 0.0177003 0.0176984 0.017894 0.0178963 0.0178989 0.017902 0.0177053 0.0184786 0.0406178 0.0365021 0.079449 0.065102 0.0650193 0.0792428 0.0793096 0.065075 0.0651288 0.0794105 0.0365396 0.0406931 0.0406245 0.0365246 0.0795065 0.0651973 0.0651233 0.0793087 0.0793667 0.0651727 0.0652358 0.0794773 0.0365642 0.0407046 0.0184832 0.0184886 0.040634 0.0365472 0.0795644 0.0652976 0.0652329 0.0793756 0.0794245 0.0652751 0.0653478 0.0795447 0.0365893 0.0407194 0.0406415 0.0365702 0.0796227 0.0654022 0.0653472 0.0794431 0.0794824 0.0653816 0.0654647 0.0796129 0.0366152 0.0407329 0.0184941 0.0177166 0.0177122 0.0177085 0.0179057 0.01791 0.0179153 0.017925 0.0177216 0.0185001 0.0406499 0.036594 0.0796809 0.0655109 0.0654667 0.079512 0.0795406 0.0654922 0.0655869 0.0796824 0.0366416 0.0407481 0.0406572 0.036618 0.0797394 0.0656236 0.0655913 0.079582 0.0795988 0.0656067 0.0657143 0.0797537 0.0366686 0.0407632 0.0185063 0.0185135 0.0406682 0.0366423 0.0797984 0.0657402 0.0657214 0.079654 0.0796577 0.0657249 0.0658471 0.0798271 0.0366964 0.0407826 0.0406829 0.0366671 0.0798583 0.0658605 0.0658567 0.0797282 0.0797174 0.0658471 0.0659853 0.0799026 0.036725 0.0408064 0.018522 0.0177416 0.017734 0.0177273 0.0179271 0.01793 0.017943 0.0180664 0.0180574 0.0180586 0.0180471 0.018046 0.0180313 0.0180357 0.0180227 0.0180237 0.0180253 0.0180183 0.0180161 0.0180143 0.0180127 0.0180065 0.0180833 0.018098 0.0180905 0.018138 0.018155 0.0181359 0.0181748 0.0181799 0.0181808 0.0181864 0.0181577 0.0181014 0.0180945 0.0181106 0.0180999 0.0181464 0.0181619 0.0181415 0.0181743 0.0181944 0.0181785 0.0181992 0.0182156 0.018196 0.0182039 0.0182123 0.0181935 0.0182023 0.0182183 0.0182092 0.0182277 0.0182388 0.0182205 0.0182297 0.0182383 0.0182335 0.018238 0.0182428 0.0182301 0.0182191 0.0182109 0.0182302 0.0182135 0.0182239 0.0182408 0.0182216 0.0182297 0.0182487 0.0182316 0.0182468 0.0182346 0.0182245 0.0182152 0.0181993 0.0181677 0.0181079 0.0181165 0.0181075 0.018131 0.0181807 0.0181575 0.0181623 0.0181934 0.0181881 0.0182107 0.0181977 0.0181683 0.018119 0.0181395 0.0181475 0.018143 0.0181912 0.0182006 0.018184 0.0182128 0.0182288 0.0182186 0.0182347 0.0182456 0.0182304 0.018216 0.0182296 0.0182076 0.018218 0.018236 0.0182207 0.0182423 0.0182469 0.0182302 0.0182458 0.0182488 0.0182375 0.0182494 0.018262 0.018246 0.0182281 0.0182465 0.0182521 0.018245 0.018257 0.018251 0.0182549 0.018257 0.0182572 0.0182674 0.0182724 0.018267 0.0182624 0.018263 0.0182552 0.0182433 0.0182501 0.0182574 0.0182377 0.0182503 0.018245 0.0182446 0.0182445 0.01824 0.0182449 0.0182454 0.0182369 0.0181923 0.0180492 0.0177862 0.0175384 0.0177269 0.0188357 0.0205888 0.0205966 0.0188426 0.0177341 0.0175444 0.0175508 0.0177417 0.0188525 0.0206059 0.0206191 0.0188722 0.0177515 0.017558 0.0178023 0.0177965 0.0177915 0.0180545 0.0181976 0.0182423 0.0182465 0.0182019 0.0180589 0.0180637 0.0182064 0.0182501 0.0182543 0.0182065 0.0180737 0.0178094 0.0175637 0.0177714 0.0189014 0.0206516 0.0207147 0.0189348 0.0178033 0.0175762 0.0175924 0.0178368 0.0189764 0.0207532 0.0207751 0.01901 0.0178597 0.0175997 0.017815 0.0178228 0.0178155 0.0180804 0.0182061 0.0182586 0.0182573 0.018211 0.0180758 0.0180626 0.0182067 0.018251 0.0182388 0.0181855 0.0180257 0.0177726 0.0175794 0.0178641 0.0190036 0.0209333 0.0212207 0.019035 0.0178548 0.0175335 0.0175292 0.0178796 0.0191527 0.0215271 0.0214406 0.0193927 0.0179383 0.0176909 0.0175537 0.0176294 0.0177024 0.0179585 0.0181442 0.0182218 0.0181929 0.0180812 0.0179008 0.0178697 0.0179881 0.0181438 0.0182082 0.0182344 0.0182557 0.0182682 0.018271 0.0182683 0.0182649 0.0182615 0.0182584 0.0182549 0.0182507 0.0182501 0.0182406 0.0182587 0.0182628 0.0182448 0.0182543 0.0182578 0.0182482 0.0182663 0.0182481 0.0182446 0.0182405 0.0182592 0.0182507 0.0182427 0.0182468 0.0182549 0.0182633 0.0182668 0.0182584 0.0182504 0.0182535 0.018266 0.0182606 0.0182556 0.0182692 0.0182512 0.0182608 0.0182588 0.0182629 0.0182627 0.0182558 0.0182698 0.0182615 0.0182689 0.0182673 0.0182579 0.0182763 0.0182743 0.0182674 0.0182542 0.0182733 0.0182563 0.0182588 0.0182758 0.0182565 0.0182586 0.0182778 0.0182606 0.0182704 0.0182693 0.0182671 0.0182688 0.0182701 0.0182665 0.0182623 0.018255 0.0182482 0.0182645 0.0182687 0.0182523 0.0182592 0.0182629 0.018256 0.0182678 0.0182753 0.0182673 0.0182632 0.0182669 0.0182714 0.0182766 0.0182797 0.0182751 0.0182755 0.0182786 0.0182773 0.0182801 0.0182715 0.0182761 0.0182751 0.0182823 0.0182708 0.0182592 0.0182707 0.0182735 0.0182662 0.0182768 0.0182799 0.0182712 0.0182706 0.0182702 0.018269 0.0182712 0.0182588 0.0182646 0.0182774 0.0182724 0.0182709 0.0182641 0.0182602 0.0182635 0.0182712 0.0182688 0.0182557 0.0182516 0.0182436 0.0182484 0.0182575 0.0182573 0.0182659 0.018265 0.0182678 0.0182696 0.0182657 0.0182701 0.0182694 0.0182689 0.0182642 0.0182691 0.018271 0.0182677 0.0182706 0.0182656 0.018262 0.0182717 0.0182594 0.018251 0.0182677 0.0182624 0.0182709 0.0182709 0.0182657 0.0182796 0.0182613 0.0182741 0.0182771 0.0182607 0.0182799 0.0182792 0.0182592 0.0182747 0.018262 0.0182604 0.018263 0.0182691 0.0182562 0.0182657 0.0182616 0.0182525 0.0182613 0.0182488 0.0182534 0.0182577 0.0182342 0.0182385 0.0182475 0.0182473 0.0182467 0.018232 0.0182212 0.0182457 0.0182424 0.0182376 0.0182402 0.0182151 0.0182255 0.0182324 0.0182349 0.0182384 0.0182474 0.0182568 0.0182708 0.0182798 0.0182819 0.0182842 0.018287 0.0182833 0.0182786 0.0182777 0.0182708 0.0182612 0.018246 0.0182192 0.0181714 0.0180856 0.0179528 0.0177505 0.0185312 0.0406965 0.0366924 0.0799189 0.0659849 0.0659977 0.0798048 0.0797781 0.0659736 0.0661291 0.0799804 0.0367547 0.0408302 0.0407116 0.0367186 0.0799806 0.0661137 0.0661442 0.0798839 0.0798401 0.0661042 0.0662786 0.0800616 0.0367857 0.0408569 0.0185415 0.0185532 0.0407284 0.0367457 0.0800438 0.066247 0.0662971 0.0799664 0.0799029 0.0662403 0.0664359 0.0801462 0.0368184 0.0408869 0.040745 0.036774 0.0801086 0.0663867 0.0664581 0.0800524 0.0799684 0.0663823 0.0665999 0.0802353 0.0368533 0.0409185 0.0185662 0.0177861 0.0177725 0.0177607 0.0179636 0.0179769 0.0179917 0.0180088 0.0178019 0.0185814 0.0407665 0.0368041 0.0801775 0.0665309 0.0666252 0.0801449 0.0800384 0.0665286 0.0667695 0.0803313 0.0368909 0.0409569 0.0407934 0.036836 0.0802521 0.0666794 0.0667983 0.0802478 0.0801163 0.0666791 0.066946 0.0804351 0.0369317 0.0410029 0.0185993 0.0186195 0.0408218 0.0368709 0.0803326 0.0668331 0.0670458 0.0803589 0.0802018 0.0667668 0.0671292 0.0805507 0.0369766 0.0410531 0.0408522 0.0369097 0.0804222 0.0669915 0.0671646 0.0804814 0.0802966 0.0669957 0.0673206 0.0806798 0.0370273 0.0411088 0.0186425 0.0178663 0.0178415 0.0178202 0.0180334 0.0180512 0.018073 0.0181079 0.0178952 0.0186697 0.0408899 0.0369534 0.0805223 0.0671557 0.0673603 0.0806178 0.0804028 0.0671632 0.0675215 0.0808244 0.0370845 0.0411747 0.0409353 0.0370031 0.0806347 0.067327 0.0675666 0.080771 0.0805223 0.0673384 0.0677341 0.0809875 0.0371496 0.0412527 0.0187018 0.0187388 0.0409849 0.0370601 0.0807619 0.067507 0.067786 0.0809447 0.0806578 0.0675234 0.0679616 0.081173 0.0372248 0.0413408 0.0410666 0.0371257 0.0809065 0.0676981 0.0680913 0.081143 0.080813 0.0676527 0.0682075 0.081386 0.0373122 0.0414192 0.0187821 0.0180142 0.0179682 0.0179288 0.0181432 0.0181842 0.0182313 0.018287 0.018068 0.0188325 0.0411332 0.0372021 0.0810728 0.0679109 0.068348 0.0813716 0.0809925 0.067885 0.0685463 0.0816343 0.0374143 0.0415391 0.0412104 0.0372923 0.0812658 0.0680885 0.0686304 0.0816358 0.0812006 0.0681439 0.0687757 0.0819227 0.0375351 0.0416795 0.0188916 0.0189611 0.0412998 0.0373986 0.0814908 0.0684314 0.0689474 0.0819471 0.0814442 0.0684334 0.0691131 0.0822615 0.0376787 0.0418445 0.041403 0.0375244 0.0817544 0.0687394 0.0692378 0.0823163 0.0817305 0.0688306 0.0695003 0.0826648 0.0378498 0.0420385 0.0190432 0.0182932 0.0182055 0.0181312 0.0183514 0.0184265 0.0185143 0.018639 0.0185575 0.0184834 0.0184195 0.0183639 0.0183167 0.0182755 0.0182445 0.0182001 0.0181824 0.0181687 0.018139 0.0181215 0.0181017 0.0180924 0.018174 0.0181784 0.0182072 0.0182582 0.0182298 0.0182169 0.0182383 0.0182595 0.0182826 0.0182896 0.0182615 0.0182157 0.0182494 0.0182589 0.0182854 0.0183383 0.0182989 0.0182901 0.0183082 0.0183206 0.0183635 0.0183672 0.0183346 0.0183188 0.0183011 0.018295 0.018273 0.0182527 0.0182615 0.0182811 0.0183023 0.018298 0.0182912 0.0182678 0.0182728 0.0183001 0.0182924 0.0183224 0.0183158 0.0183075 0.0183242 0.0183432 0.0183649 0.0183584 0.0183483 0.0183219 0.0183174 0.0183501 0.0183475 0.0183779 0.0183795 0.0183806 0.0183807 0.0183784 0.0183634 0.018325 0.0183557 0.0183963 0.018443 0.0184815 0.0184365 0.0183975 0.0184157 0.018453 0.0184958 0.0185488 0.0185331 0.0184968 0.0185587 0.01863 0.0187074 0.0187364 0.0186549 0.018592 0.0185989 0.0186516 0.0187302 0.0187007 0.0186318 0.018587 0.0185429 0.0184945 0.0184552 0.0184251 0.0184265 0.0184436 0.018482 0.0184603 0.0184278 0.0184162 0.0183963 0.0184076 0.0184349 0.0184648 0.0184913 0.0185192 0.0185649 0.0186014 0.0186523 0.0185984 0.0185646 0.0185305 0.0184841 0.0185249 0.0185464 0.0186035 0.0186643 0.0187221 0.0187764 0.018817 0.018833 0.0188155 0.018753 0.0186219 0.018397 0.01914 0.0415212 0.0376735 0.0820653 0.0690909 0.0696542 0.0827572 0.0820695 0.0692082 0.0699509 0.0831479 0.0380547 0.0422679 0.0416574 0.0378516 0.0824345 0.0694988 0.070143 0.0832873 0.0824732 0.0696499 0.0704839 0.0837306 0.0383018 0.0425406 0.0192548 0.0193911 0.0418123 0.0380654 0.0828755 0.0699794 0.0707248 0.0839289 0.0829559 0.0701736 0.0711227 0.0844388 0.0386018 0.0428649 0.0419689 0.0383238 0.0834044 0.0705531 0.0714277 0.0847118 0.0835363 0.0708034 0.0719014 0.085308 0.03897 0.0432875 0.0195549 0.0188409 0.0186663 0.0185201 0.0187327 0.0188788 0.0190453 0.0192418 0.0190515 0.0197532 0.0421781 0.0386383 0.0840424 0.071249 0.0722933 0.0856797 0.0842398 0.0715749 0.0728708 0.0863913 0.0394293 0.0437832 0.0424262 0.0390277 0.0848217 0.0721112 0.0733817 0.086895 0.0851071 0.0725419 0.074101 0.087761 0.0400132 0.0444265 0.0199976 0.0203075 0.042755 0.0395214 0.0857929 0.0732048 0.0747816 0.088444 0.086189 0.0737862 0.0757213 0.0895378 0.0407661 0.0452391 0.0432233 0.0402666 0.0870048 0.0746217 0.0768016 0.0906564 0.0873613 0.0752898 0.0779901 0.0919829 0.0417569 0.0463744 0.020702 0.0199525 0.0196166 0.0193076 0.0194713 0.0197317 0.0200086 0.0204047 0.0203196 0.0211074 0.0440825 0.0414123 0.0886973 0.0765926 0.0792603 0.093293 0.0893974 0.0777152 0.0809463 0.0952719 0.0431339 0.0478689 0.0451251 0.0429126 0.090593 0.0794151 0.0834421 0.0976693 0.0925754 0.0821068 0.0867564 0.101104 0.0450342 0.0497081 0.0216038 0.0222696 0.0460892 0.0450872 0.0954054 0.0860884 0.0913842 0.105359 0.097081 0.0904265 0.094241 0.10938 0.0474598 0.0527057 0.047497 0.0475176 0.0974088 0.0924914 0.102108 0.115763 0.10192 0.103045 0.103943 0.097418 0.109182 0.0455 0.136156 0.0493524 0.0566528 0.0229674 0.0222988 0.0216127 0.0208836 0.0209003 0.0214124 0.021842 0.0221812 0.0228349 0.0230404 0.049141 0.0494951 0.0526383 0.047517 0.0946238 0.117018 0.1001 0.121316 0.0956747 0.106821 0.105589 0.120244 0.0446812 0.0214273 0.0553271 0.0920575 0.100076 0.107916 0.12293 0.0965763 0.107144 0.106076 0.0965689 0.0879001 0.0427622 0.118949 0.106729 0.0993894 0.105781 0.120092 0.0467749 0.0905807 0.0488833 0.096781 0.105228 0.104031 0.0951093 0.105799 0.0428354 0.136557 0.0877212 0.11611 0.101184 0.101041 0.102634 0.0964395 0.0831136 0.0407047 0.112278 0.09008 0.0974958 0.100678 0.114205 0.0464093 0.0554526 0.0204599 0.0424841 0.0447941 0.0927839 0.131516 0.051125 0.051085 0.0470569 0.0226689 0.0657996 0.0225324 0.0438404 0.05684 0.0226138 0.0428071 0.139024 0.109195 0.0234146 0.0235262 0.0230097 0.0223331 0.0223394 0.0229418 0.022831 0.0234045 0.0233159 0.0229683 0.0234587 0.0228322 0.0218341 0.0455066 0.0462839 0.0931284 0.0988454 0.0947598 0.0916032 0.0844874 0.0920579 0.0968992 0.108976 0.0400343 0.0983016 0.129298 0.0397883 0.0892791 0.0956551 0.0924438 0.0898043 0.0834577 0.0899225 0.0940635 0.106461 0.0398777 0.0958985 0.125188 0.0528305 0.0198245 0.0495693 0.0638534 0.0227151 0.0220156 0.0208401 0.0430373 0.0433706 0.0882857 0.0937304 0.0915165 0.088239 0.0884627 0.0888626 0.0901229 0.0843855 0.0794351 0.0372126 0.101428 0.0888251 0.0881716 0.0879894 0.0834895 0.0779592 0.0835991 0.0872493 0.098379 0.0368634 0.116335 0.0418308 0.0842278 0.0501958 0.0187142 0.0391045 0.037813 0.0832089 0.117717 0.0933473 0.123174 0.0464946 0.060526 0.0198913 0.0416498 0.0441653 0.0437969 0.0388362 0.0813686 0.0865878 0.0835207 0.0817346 0.0792644 0.0834336 0.0833914 0.0783203 0.0735207 0.0346549 0.0935652 0.0838103 0.0824886 0.0798358 0.077874 0.075645 0.0797702 0.0797649 0.0751918 0.0707612 0.033526 0.105896 0.0347415 0.0825781 0.109267 0.035203 0.0777159 0.0173334 0.0419824 0.0363561 0.11087 0.0866011 0.113793 0.0399083 0.0181063 0.0554302 0.0575884 0.0208179 0.0206149 0.0210579 0.0216955 0.021515 0.0209395 0.0204059 0.0201842 0.0207024 0.0212225 0.0217744 0.0223845 0.0219331 0.022431 0.021931 0.0223319 0.0226421 0.0220351 0.0222318 0.0216492 0.0217443 0.0217448 0.0216353 0.0214133 0.0211251 0.0207769 0.0203853 0.0200139 0.0197542 0.0195439 0.0193268 0.0191552 0.0189942 0.0188501 0.0189057 0.0190399 0.0191924 0.0191703 0.0190352 0.0189138 0.0188859 0.0189911 0.0190978 0.019186 0.0192768 0.0193359 0.0195182 0.0196934 0.0199536 0.0198464 0.019623 0.0194333 0.019355 0.0195206 0.0196807 0.0194886 0.0193733 0.0192565 0.0191091 0.0190126 0.0189156 0.0188302 0.0187654 0.0188504 0.01893 0.0188251 0.0187775 0.0186995 0.0186285 0.0186939 0.0187267 0.0187938 0.0189093 0.0190158 0.0191188 0.0192161 0.0192978 0.0191126 0.0190605 0.0189734 0.0188386 0.018904 0.0189337 0.0189827 0.0191849 0.019397 0.0196237 0.0198527 0.0200787 0.0202683 0.0205509 0.0207929 0.0209997 0.0206013 0.0204545 0.0202751 0.0199925 0.0201287 0.0202309 0.0202917 0.0206982 0.0211464 0.0212154 0.0212016 0.021111 0.0206203 0.0207093 0.0207366 0.0203053 0.0202663 0.0201763 0.0197769 0.0198657 0.0199154 0.0199226 0.0198849 0.0198272 0.0197257 0.0194802 0.0195421 0.0195676 0.0192786 0.0192727 0.0192458 0.0190202 0.0190247 0.0190105 0.0189915 0.0192767 0.0195857 0.0195614 0.0195015 0.0194142 0.019073 0.0191682 0.0192376 0.0189391 0.0188609 0.0187563 0.0186262 0.01894 0.0192756 0.019639 0.0200381 0.0204736 0.0209509 0.0214713 0.0212243 0.0217578 0.0214209 0.021029 0.0214814 0.0210227 0.0214204 0.0209112 0.0204102 0.0199278 0.0196521 0.0201006 0.02057 0.0202098 0.020621 0.0202266 0.0205888 0.0209295 0.0204673 0.0207317 0.0202766 0.0198573 0.0196402 0.0200389 0.0197687 0.0201671 0.0198421 0.0195002 0.0198503 0.0194647 0.019785 0.0193661 0.018949 0.0192025 0.0194441 0.0196689 0.0198673 0.0200222 0.0201091 0.020032 0.0195101 0.0182648 0.0380275 0.0399359 0.0397676 0.0355059 0.0745983 0.0788169 0.0760093 0.0740652 0.0783413 0.0331337 0.104063 0.0723733 0.0757486 0.0758141 0.0715871 0.0675169 0.0316528 0.0854993 0.0766667 0.0755419 0.0728513 0.0710094 0.06932 0.0723047 0.0722659 0.0685492 0.0654391 0.0308741 0.0963614 0.0318022 0.0750067 0.0999557 0.0324557 0.0716516 0.0159288 0.0423857 0.0351395 0.036669 0.0363859 0.0327289 0.0687287 0.0724231 0.0709313 0.0688016 0.0686851 0.0687229 0.0686377 0.066048 0.062906 0.0669347 0.0695259 0.078273 0.0291163 0.0928968 0.0303754 0.0667793 0.0717405 0.0956318 0.0349591 0.0146808 0.0468954 0.0153335 0.0339378 0.048555 0.0168232 0.0177478 0.0172275 0.0170531 0.0166682 0.0155426 0.0325787 0.0339389 0.0285412 0.0668115 0.0641037 0.0653372 0.0667194 0.0667033 0.0661892 0.0671985 0.0694192 0.0690932 0.0294606 0.0645008 0.0892614 0.0923687 0.0301055 0.0662755 0.039129 0.0631679 0.0651356 0.0650239 0.062868 0.0600038 0.0634866 0.0658463 0.0742057 0.0278097 0.0872304 0.0319264 0.0336374 0.0141493 0.0449535 0.031055 0.0302698 0.0629979 0.0655889 0.0635484 0.062393 0.0625614 0.0631504 0.0623527 0.0611678 0.0614077 0.0616787 0.0617601 0.0593939 0.0584724 0.0610073 0.0606523 0.0580091 0.0555774 0.0258835 0.0813551 0.0261245 0.0834509 0.0270786 0.0598623 0.0633474 0.0850999 0.0273668 0.060999 0.0648083 0.0873436 0.0302272 0.0136897 0.0418645 0.0310382 0.0130715 0.0279499 0.0349381 0.0292624 0.058982 0.0612491 0.0593452 0.0582386 0.0587752 0.0589412 0.0577931 0.0566668 0.0561624 0.0577693 0.0578771 0.0558223 0.0551293 0.0570668 0.0564468 0.0541607 0.0519258 0.0241874 0.0646717 0.0575106 0.0571964 0.0554679 0.0543547 0.054842 0.0551124 0.0539518 0.0529666 0.0527178 0.0539862 0.053846 0.0520766 0.0513191 0.0533362 0.0528991 0.050815 0.0488733 0.0227007 0.0605713 0.0539512 0.0537291 0.0520061 0.0510689 0.051447 0.0516583 0.0505392 0.0497055 0.0495742 0.0508146 0.0507987 0.049195 0.0488266 0.0498039 0.049343 0.0480311 0.0461839 0.0488072 0.0505895 0.0569488 0.0212331 0.0669941 0.0219849 0.0683053 0.0222277 0.051471 0.0692646 0.0226217 0.0528022 0.0712097 0.0257184 0.051954 0.0306825 0.0114913 0.0246445 0.0228837 0.0713834 0.0731426 0.0238077 0.0550819 0.074355 0.0238009 0.0532549 0.0561771 0.0762335 0.0264476 0.0551908 0.0284551 0.0120092 0.0379857 0.0123374 0.0272241 0.0278006 0.0248303 0.0778513 0.0252528 0.0588872 0.078956 0.0257257 0.0603738 0.0812307 0.057128 0.0289655 0.030346 0.0309688 0.0297176 0.0140245 0.0407487 0.0127808 0.0282273 0.0291724 0.0290336 0.0390594 0.0143394 0.0140497 0.013914 0.0136444 0.0134499 0.0132434 0.01235 0.0262281 0.0272425 0.0266335 0.0254899 0.0249616 0.0257249 0.0255302 0.0244949 0.0240876 0.0232954 0.04885 0.0505015 0.0488284 0.0480479 0.0481054 0.0486032 0.0476031 0.0470483 0.0474699 0.0478382 0.0468807 0.0460505 0.045785 0.047069 0.0472796 0.0456748 0.0454001 0.0461877 0.0456846 0.0445023 0.0426972 0.0451817 0.0468966 0.0527582 0.0195253 0.0626985 0.0205795 0.0637083 0.0204529 0.0476155 0.0646707 0.02099 0.046577 0.0485769 0.0658219 0.0212029 0.0474058 0.0495798 0.0672948 0.0236468 0.0106503 0.0326493 0.0242099 0.0103429 0.0229949 0.0316671 0.023306 0.00999481 0.0206589 0.0452451 0.0469281 0.0454066 0.0448592 0.0447415 0.0452543 0.0442963 0.0437379 0.0441341 0.0444751 0.0436114 0.0429103 0.0428605 0.0438202 0.043891 0.0425876 0.0424208 0.0432705 0.0430914 0.0417452 0.0414021 0.0426882 0.0422378 0.0406698 0.0391614 0.0182341 0.0573393 0.0185404 0.0583102 0.0190831 0.0590685 0.0192136 0.0443686 0.0596859 0.0193969 0.0450903 0.060976 0.0201727 0.0443212 0.0465167 0.0628609 0.0267015 0.022505 0.023214 0.0228846 0.0219952 0.0216345 0.0222827 0.0221378 0.021346 0.0209939 0.0215048 0.0213839 0.0195598 0.0415096 0.0430904 0.0417301 0.0410798 0.0410155 0.0414799 0.0408649 0.0401262 0.0402565 0.0406997 0.0409769 0.0395456 0.0395687 0.0403149 0.0400528 0.0388064 0.0383765 0.0397861 0.0394518 0.0378782 0.0366012 0.0170333 0.0452676 0.0403547 0.0402462 0.0389114 0.0383365 0.0382656 0.0387331 0.0381468 0.0375526 0.0376389 0.0380463 0.0381833 0.0368905 0.0369008 0.037648 0.0375672 0.0363254 0.0360935 0.0371563 0.036801 0.0353993 0.034122 0.0159213 0.0499107 0.0162008 0.0508283 0.0166453 0.0514151 0.0166349 0.037147 0.0386191 0.0522693 0.0170845 0.0396419 0.0535279 0.0193208 0.0390345 0.0230695 0.00864011 0.0185511 0.0170886 0.0532927 0.0546837 0.0179233 0.0551935 0.0176544 0.0395596 0.0412681 0.0563437 0.0183816 0.0407005 0.0424634 0.0574864 0.021045 0.00899394 0.0285113 0.00924351 0.0207307 0.0289688 0.00946101 0.0298943 0.00976153 0.0309278 0.0106618 0.0113427 0.0111151 0.0110016 0.0108245 0.010712 0.0105519 0.0104393 0.0102766 0.0101159 0.00999727 0.00931421 0.0198029 0.0205472 0.0200609 0.019202 0.0188919 0.0194423 0.0193368 0.0186456 0.0183148 0.0187713 0.0187103 0.0170898 0.0361752 0.0375283 0.0364112 0.0358728 0.0356788 0.0361646 0.0356233 0.0349905 0.0350823 0.0354864 0.0357445 0.034388 0.034411 0.0349924 0.0346635 0.0336657 0.0323187 0.0341733 0.0355044 0.0399803 0.0148658 0.0476458 0.0156233 0.0483482 0.0154318 0.0344714 0.036066 0.0492215 0.0160565 0.0354679 0.0371271 0.0501786 0.0184221 0.00787172 0.0249386 0.00808529 0.0181005 0.0253398 0.00826534 0.0261154 0.00853087 0.0271143 0.0096129 0.00946883 0.00936981 0.00923987 0.00913871 0.00900534 0.00887392 0.00762346 0.0156945 0.0343181 0.0356637 0.0343961 0.0339862 0.0338286 0.0343517 0.0337833 0.0332444 0.033253 0.0335971 0.0338479 0.0325508 0.032458 0.033102 0.032964 0.0319451 0.0306768 0.0323463 0.0336602 0.0379344 0.0142439 0.0448218 0.0146852 0.0454393 0.0147814 0.0343028 0.0463601 0.0153322 0.0335827 0.0354225 0.0478948 0.0203699 0.0171502 0.0177057 0.0175281 0.0167942 0.0164637 0.0168822 0.0168337 0.0153112 0.0323763 0.0337204 0.0325676 0.0321971 0.0320571 0.0325452 0.0319345 0.0313409 0.031361 0.0317378 0.0321376 0.0307919 0.0306314 0.0315746 0.0313647 0.0299372 0.0286427 0.0134173 0.0358222 0.0318248 0.0318707 0.0309766 0.0303822 0.0301881 0.0305367 0.0307758 0.0295147 0.0292838 0.0302441 0.0301804 0.0286801 0.0275375 0.0130177 0.0345261 0.0305733 0.0305125 0.0297372 0.0290944 0.0288929 0.0292521 0.0296755 0.0282919 0.0281045 0.0290054 0.0289074 0.0273694 0.0260544 0.0123065 0.0331078 0.0294749 0.0292995 0.0281281 0.0276557 0.027263 0.027941 0.0281978 0.0270021 0.0257136 0.0271553 0.0283088 0.0322385 0.0121262 0.038024 0.0126234 0.0292536 0.0392269 0.0128311 0.0280431 0.00632872 0.0168503 0.0140862 0.0145843 0.0145416 0.0130443 0.027214 0.0284381 0.0275642 0.0270973 0.0267879 0.0270252 0.0273655 0.0260708 0.0248055 0.0263407 0.0275283 0.0313365 0.0116768 0.0371506 0.0121897 0.0263912 0.0284873 0.0381304 0.0141244 0.00599495 0.0120971 0.0264638 0.0276983 0.026799 0.0263712 0.02599 0.0262689 0.0266788 0.0253614 0.0241689 0.0255663 0.0266833 0.0305198 0.0114958 0.0359163 0.0118863 0.0255694 0.0278437 0.0373169 0.0159667 0.0132838 0.0138034 0.0138425 0.0123464 0.0256313 0.0268684 0.0259567 0.0255152 0.0252696 0.0255933 0.0259459 0.0241528 0.0230116 0.0110489 0.0295144 0.0261175 0.0258968 0.0247968 0.0242654 0.022982 0.0243334 0.0256766 0.029381 0.0111145 0.025943 0.0348792 0.0113276 0.0246952 0.0056765 0.0134417 0.0114763 0.0246907 0.0349883 0.0270062 0.0360999 0.0128413 0.00589464 0.0180159 0.018552 0.00642411 0.00685879 0.00689281 0.00691941 0.00699561 0.00621917 0.0195698 0.00677667 0.00729981 0.00737894 0.00654499 0.0143646 0.0128951 0.0392434 0.0398002 0.0128554 0.0284068 0.0302455 0.0408279 0.0142646 0.0294501 0.0154692 0.0206319 0.00672713 0.0147006 0.0150306 0.0133268 0.0413585 0.0136664 0.0298186 0.0317463 0.0426871 0.014049 0.0305675 0.0068652 0.0160435 0.0139778 0.042676 0.0432702 0.0138642 0.0308311 0.0324766 0.0442741 0.0144648 0.0335073 0.045106 0.0317955 0.0166146 0.00708017 0.0156129 0.0216554 0.0224379 0.00726816 0.0227895 0.00746756 0.0236314 0.00814914 0.0086844 0.00871871 0.00876963 0.00888839 0.00878471 0.00867673 0.0086045 0.00852912 0.00843897 0.00831938 0.00822554 0.00811088 0.00798618 0.00789682 0.00733766 0.0153484 0.0159006 0.0157916 0.0212488 0.0182591 0.00782876 0.00769177 0.00760254 0.0074933 0.00740518 0.00748666 0.00758193 0.00766025 0.00776132 0.00785905 0.00792094 0.00800756 0.00809876 0.00820626 0.00828956 0.00840407 0.00848199 0.00856156 0.00844358 0.008367 0.00825807 0.00817966 0.0080779 0.00799892 0.00789855 0.00782885 0.00773526 0.00763699 0.00756255 0.00747519 0.00740058 0.00732697 0.00726708 0.00723486 0.00710645 0.00717982 0.00709356 0.00701645 0.00694838 0.00701571 0.00694241 0.00687842 0.00681247 0.0067431 0.00663447 0.00656531 0.00609077 0.0124852 0.0122874 0.0248172 0.0258535 0.024944 0.0244067 0.0241463 0.0244607 0.0250436 0.0231897 0.0220787 0.0106328 0.0285107 0.0251883 0.0249256 0.0237804 0.0231888 0.0249156 0.0105596 0.0333773 0.0120921 0.0238368 0.014678 0.00551524 0.0132397 0.0107586 0.0233258 0.0331535 0.0258756 0.0347292 0.0113557 0.0176491 0.00595517 0.0122755 0.0128443 0.0127963 0.0112894 0.023329 0.0245393 0.0233106 0.0228896 0.0246246 0.0103615 0.0327405 0.0215787 0.0229682 0.0244644 0.02794 0.0234236 0.0245681 0.0233366 0.023115 0.0248566 0.0105411 0.032826 0.0118226 0.0143905 0.00538245 0.0111002 0.0171806 0.00582862 0.0120287 0.012712 0.0127931 0.0118384 0.0101275 0.0208051 0.0222 0.0240859 0.0236201 0.0224638 0.0319109 0.0273493 0.0236037 0.0236923 0.0240135 0.0218855 0.0204169 0.00997418 0.0269918 0.0233163 0.0234921 0.0240059 0.0218141 0.0203953 0.0100833 0.0269487 0.0232051 0.0233128 0.0235914 0.0214073 0.0198788 0.00969149 0.0263747 0.0235062 0.0222561 0.0235616 0.0270579 0.0098364 0.0207636 0.00504453 0.0127321 0.0226734 0.0236528 0.0224081 0.0220668 0.0206701 0.0221918 0.02352 0.0268216 0.00993263 0.023864 0.031585 0.0112972 0.0223008 0.023548 0.0225139 0.0220929 0.0237217 0.00999165 0.0313368 0.0206368 0.0222155 0.0235669 0.0268071 0.0220411 0.02349 0.0225752 0.0221507 0.0237037 0.0098371 0.0311084 0.0106428 0.0103914 0.00500356 0.0135199 0.0112169 0.0225035 0.0237888 0.0229325 0.0225624 0.0239195 0.0100468 0.0314528 0.0219513 0.0232473 0.0233727 0.0219939 0.0208371 0.00978541 0.0257887 0.0229086 0.0222596 0.0211163 0.0198024 0.018996 0.0184834 0.0170396 0.0155976 0.0138078 0.0118528 0.0102527 0.0119775 0.0137732 0.0148272 0.0131327 0.00765948 0.0158368 0.0150579 0.0142086 0.0129026 0.0142583 0.0155337 0.0164709 0.0157957 0.0161887 0.0153812 0.017694 0.00757962 0.00370592 0.00911354 0.0171333 0.0232086 0.00779381 0.0182058 0.0253485 0.00858751 0.0184947 0.0211631 0.0286105 0.0103086 0.0213414 0.0108302 0.00436386 0.00901483 0.0126821 0.00944375 0.00418008 0.00437169 0.00402923 0.00375863 0.00362055 0.00358915 0.00358672 0.00358913 0.00358889 0.00357679 0.00349368 0.00348153 0.00344442 0.00338438 0.00334074 0.00309013 0.00706697 0.00746612 0.0031301 0.00724505 0.00623745 0.00715498 0.00331058 0.00365653 0.00373205 0.00377453 0.00368714 0.00371479 0.00381847 0.00390698 0.0038525 0.00380201 0.00386634 0.0039249 0.00397822 0.00403736 0.00398308 0.00392287 0.00398133 0.0040438 0.0040983 0.00416225 0.00410865 0.00404443 0.00396793 0.00386873 0.00374541 0.0037891 0.00393274 0.00401956 0.00386276 0.00399195 0.00413685 0.00423206 0.0041261 0.00403896 0.00411695 0.00417987 0.00423091 0.00430503 0.00425904 0.00420089 0.0042975 0.00434657 0.00438464 0.00441521 0.00434231 0.00427308 0.00420762 0.00414552 0.00408547 0.00402655 0.00396621 0.00390189 0.0039464 0.00398847 0.00402819 0.00406568 0.00410106 0.00413446 0.00416598 0.00419574 0.0042238 0.0042503 0.00427534 0.00429898 0.00432127 0.00434225 0.00436198 0.00439683 0.00437933 0.00436061 0.00434062 0.00431931 0.00429663 0.00427252 0.00424691 0.00421966 0.00419056 0.00415945 0.00412612 0.00409038 0.00405199 0.00401069 0.00407046 0.00411053 0.00414726 0.00420172 0.0041669 0.00412838 0.00418683 0.00422333 0.00425586 0.0042851 0.00423338 0.00418103 0.00421221 0.0042411 0.00426794 0.00431347 0.00428892 0.00426232 0.00431157 0.00433567 0.00435773 0.00440106 0.00438167 0.0043603 0.00433661 0.00431017 0.0042804 0.00424656 0.00430862 0.00433905 0.00436547 0.0044219 0.00439943 0.00437327 0.00444038 0.00446149 0.00447946 0.00449498 0.00444144 0.00438867 0.00440925 0.00442766 0.00444422 0.00448745 0.00447385 0.00445862 0.00450852 0.00452043 0.00453096 0.00454032 0.00449963 0.00445918 0.00441872 0.00437798 0.00433621 0.00429299 0.0043164 0.00433827 0.00435869 0.00439494 0.00437683 0.00435729 0.00439661 0.00441376 0.00442956 0.00444411 0.00441172 0.00437774 0.00439551 0.00441205 0.00442742 0.00445494 0.00444166 0.00442728 0.0044575 0.0044698 0.00448106 0.00450623 0.00449694 0.00448669 0.00447542 0.00446308 0.00444959 0.00443484 0.00447274 0.00448505 0.00449622 0.00452928 0.00452043 0.00451058 0.00454865 0.00455604 0.0045626 0.00456836 0.0045372 0.00450634 0.00451549 0.00452372 0.00453107 0.00455594 0.00455049 0.00454425 0.0045734 0.00457773 0.0045814 0.00460836 0.00460624 0.00460361 0.00460044 0.00459669 0.00459234 0.00458732 0.00458157 0.00457503 0.00456757 0.00455907 0.00454932 0.00453808 0.00452498 0.00450956 0.00449114 0.0044688 0.0044411 0.0044055 0.00435682 0.00428847 0.00418354 0.0044158 0.00446116 0.00463055 0.00463819 0.00467987 0.0048292 0.00502924 0.00522924 0.00478392 0.0118866 0.0111419 0.0104188 0.0142464 0.0119959 0.0112331 0.00535274 0.0154908 0.00570118 0.00582732 0.00554181 0.0114055 0.0120295 0.0120522 0.0159992 0.0137595 0.00544344 0.010554 0.00586601 0.00592586 0.00556227 0.0112683 0.0111567 0.0221146 0.0316568 0.0122015 0.0161077 0.0136761 0.0051585 0.0100939 0.0221049 0.0318211 0.0123952 0.0111643 0.0224899 0.0321488 0.0113118 0.00532587 0.0169254 0.0163056 0.00602967 0.00612044 0.00620909 0.00623648 0.00624994 0.00631748 0.0063775 0.00640268 0.00648117 0.00654276 0.00648096 0.00642839 0.0063749 0.00631793 0.00627371 0.00622486 0.00617465 0.00612758 0.00607166 0.00599285 0.0059894 0.00594526 0.0059058 0.00588002 0.00583792 0.00572733 0.00574356 0.00584026 0.00586063 0.00593592 0.00598809 0.00603326 0.00607939 0.00602538 0.00596567 0.00599951 0.00606439 0.00612327 0.00617308 0.00622045 0.00627366 0.00632336 0.00637945 0.00643166 0.00648752 0.00654571 0.00660352 0.00666375 0.00673689 0.00667227 0.00660841 0.00667194 0.00673905 0.00680449 0.00687231 0.00680327 0.00673667 0.00667255 0.00661144 0.00655098 0.00649003 0.00643453 0.00637686 0.00632274 0.00626908 0.00621022 0.00616571 0.0061046 0.00603706 0.00596425 0.0059237 0.00588774 0.00580357 0.00576906 0.00567526 0.00563671 0.00560189 0.00558277 0.00557276 0.00533875 0.0054136 0.00547161 0.00552636 0.00542881 0.00535684 0.00527409 0.00516888 0.00505163 0.0048989 0.00482244 0.00478213 0.00475842 0.00463064 0.00449383 0.00452033 0.00453973 0.00455573 0.00464334 0.00463901 0.00463528 0.00474538 0.00473602 0.00473003 0.0048149 0.00482925 0.00484878 0.00487389 0.00491334 0.00496767 0.00508533 0.00516701 0.00526094 0.00534413 0.00527135 0.00518464 0.00512282 0.00502486 0.00497905 0.00494503 0.00491843 0.00489768 0.00497835 0.00500378 0.0050351 0.00507439 0.00516157 0.00521173 0.00529318 0.00535092 0.00541775 0.00549457 0.00558024 0.00563519 0.00571818 0.00576645 0.0058444 0.00588994 0.00581818 0.00574787 0.00569104 0.00562035 0.00555824 0.00548783 0.00542503 0.00536956 0.0054422 0.00549573 0.00555533 0.00562092 0.00568223 0.0057437 0.00580578 0.00587223 0.00593943 0.00600968 0.00607991 0.00614739 0.00619362 0.00625767 0.00631851 0.00637007 0.00643086 0.00649063 0.00655034 0.00660983 0.00654783 0.00648584 0.00654175 0.00660559 0.00666959 0.0067343 0.00680028 0.00686803 0.00693854 0.00700935 0.00708685 0.00716544 0.00724687 0.00731448 0.00723347 0.0071555 0.007224 0.00730445 0.00738603 0.00745824 0.00754611 0.00761711 0.00771097 0.00780455 0.00787671 0.00797343 0.00804845 0.00815176 0.00822511 0.00833274 0.00840629 0.00852057 0.0086342 0.00874794 0.00886818 0.00898709 0.00910908 0.00920073 0.00933557 0.00942069 0.00956213 0.00971696 0.00990627 0.00993351 0.0097935 0.00964589 0.00972672 0.00987061 0.0100059 0.0101335 0.0102412 0.0103933 0.0104929 0.0106579 0.0107501 0.010926 0.0110155 0.011199 0.0113749 0.0114634 0.0116316 0.0118005 0.0120028 0.0121291 0.0123322 0.0109013 0.0335731 0.0251158 0.0344547 0.0112783 0.0358981 0.0126762 0.0124495 0.0122365 0.012029 0.0119262 0.011731 0.0116157 0.0114519 0.011543 0.0116321 0.0118273 0.0119121 0.0121198 0.0123335 0.0125589 0.0128017 0.0130928 0.013116 0.0128854 0.0126486 0.012729 0.012963 0.0131886 0.0134044 0.0135209 0.0137782 0.0138767 0.0141599 0.014466 0.0148299 0.0148395 0.0150216 0.0152898 0.015496 0.0158634 0.0159859 0.0164278 0.0164278 0.016054 0.0160934 0.016455 0.0168113 0.0168697 0.0172879 0.0177272 0.0180273 0.0184765 0.0166384 0.0367526 0.0509301 0.0382329 0.0527196 0.0192232 0.018622 0.0181387 0.0177219 0.0173023 0.0168901 0.0165002 0.0164884 0.0161127 0.0161198 0.0157621 0.0157574 0.0157357 0.0156897 0.0156165 0.0152792 0.0151806 0.0148958 0.014606 0.0145428 0.0142435 0.0139566 0.014021 0.0143113 0.0143627 0.0146581 0.0149641 0.0150216 0.0153453 0.0153876 0.0154096 0.0154146 0.0150816 0.0150766 0.0150577 0.0147381 0.0147038 0.0144038 0.0141094 0.0140717 0.0137904 0.0137438 0.0136847 0.0136113 0.0133561 0.0132751 0.013034 0.0127989 0.0125655 0.012497 0.0124196 0.012201 0.0119887 0.0117813 0.0117102 0.0115127 0.0114365 0.0113576 0.0112798 0.0110993 0.0109182 0.0108369 0.0106661 0.0105826 0.0104197 0.0103347 0.0101807 0.0100931 0.00994721 0.00980342 0.00987984 0.0100263 0.0101051 0.0102608 0.0103364 0.0104995 0.0105742 0.0107439 0.0108173 0.0109946 0.0111765 0.011251 0.0110659 0.0108866 0.0107123 0.0106452 0.0104783 0.0104093 0.0102486 0.0101787 0.0100247 0.0099536 0.00980572 0.00973327 0.00965934 0.00958261 0.00950286 0.00936632 0.00928507 0.009155 0.00907338 0.00895145 0.00902877 0.00910357 0.00923331 0.00930839 0.00944358 0.00951849 0.00938196 0.00924943 0.00917756 0.00905022 0.00897789 0.00890291 0.0088261 0.00870886 0.0085926 0.00847966 0.00855121 0.00866539 0.00878279 0.00885553 0.00873665 0.00862122 0.00868728 0.00880682 0.00892644 0.00899534 0.00912056 0.00918935 0.00931907 0.00945322 0.00959128 0.00966169 0.00952265 0.00938392 0.00925744 0.00912348 0.00905981 0.00893979 0.00887596 0.00875505 0.00881742 0.00887822 0.00900497 0.009063 0.00918587 0.00932062 0.00944785 0.00959117 0.00972941 0.00987494 0.00994132 0.0100929 0.0101578 0.0103155 0.0103787 0.0105431 0.0106042 0.0107753 0.0109517 0.0111337 0.0113208 0.0113857 0.0115809 0.0116434 0.011847 0.0120571 0.0122736 0.0123385 0.0121189 0.0119063 0.0119594 0.0121743 0.0123963 0.0126259 0.012863 0.0131032 0.0131658 0.0134213 0.0134753 0.0135196 0.0132585 0.0132167 0.0129666 0.0129185 0.0126793 0.0124472 0.0122241 0.0120034 0.0120435 0.0122695 0.0124911 0.0127248 0.012763 0.0130064 0.0130382 0.0132916 0.0135542 0.0138268 0.013853 0.0141373 0.0144323 0.0144493 0.0147564 0.0147621 0.0144553 0.0141601 0.0141538 0.0138707 0.0135924 0.0135796 0.0133161 0.0130622 0.0130783 0.0133323 0.0133401 0.0135986 0.0138811 0.0138774 0.0141529 0.0144516 0.0147559 0.0150738 0.0154057 0.0157502 0.016111 0.0164877 0.0168811 0.0172843 0.0177137 0.0181524 0.0186351 0.0191475 0.019069 0.0195489 0.019476 0.0193498 0.0188638 0.0189831 0.0185008 0.0185882 0.0181188 0.0176769 0.0172472 0.0168445 0.0167884 0.0171898 0.0176097 0.0180491 0.0179476 0.0183905 0.0182586 0.018711 0.0191844 0.0189862 0.0185355 0.0181033 0.0179319 0.0183441 0.0187672 0.0185403 0.0181394 0.0177489 0.0173678 0.0175337 0.0176867 0.0178251 0.017411 0.0175193 0.0171089 0.0167165 0.0166309 0.0170115 0.0168972 0.017288 0.017152 0.0170006 0.0166411 0.016779 0.0164087 0.0165278 0.0161677 0.0162571 0.0163403 0.0164053 0.0164549 0.0160822 0.0157247 0.0153839 0.0153521 0.0156851 0.0160375 0.015979 0.0156341 0.0153007 0.0149738 0.0150205 0.0150514 0.0147345 0.0144398 0.0141383 0.0141189 0.0144129 0.0147083 0.0146707 0.0143756 0.0140846 0.0140419 0.0143309 0.0146236 0.0149203 0.0152406 0.0155733 0.0159077 0.0158245 0.0154976 0.0151715 0.0150925 0.0154117 0.0157306 0.0160666 0.0159536 0.0162851 0.0161525 0.0164944 0.0168465 0.0171886 0.0175551 0.0179253 0.0183086 0.0186894 0.0190773 0.0187885 0.0191472 0.0188361 0.0191612 0.0194739 0.0191231 0.0193934 0.0190406 0.0192692 0.0194659 0.0191088 0.0189185 0.0187086 0.018399 0.0185916 0.0187864 0.0184766 0.0182924 0.0181078 0.0178794 0.0181686 0.0184737 0.01879 0.018522 0.0188349 0.0185336 0.0182307 0.018506 0.0181617 0.0184274 0.0180722 0.0177126 0.0173609 0.0171591 0.0174864 0.0178307 0.0175959 0.0179003 0.0176453 0.0179572 0.0182407 0.0179577 0.0182222 0.017935 0.0176598 0.0174208 0.0176845 0.0174315 0.0176907 0.0173949 0.0171202 0.0173582 0.0170412 0.0172627 0.0169584 0.0166298 0.0168221 0.0170102 0.0166798 0.0163398 0.0160181 0.0158743 0.0161764 0.016508 0.0163316 0.0160114 0.0157195 0.015565 0.0158431 0.0161513 0.016437 0.0167518 0.0165447 0.0168247 0.0166068 0.0168826 0.0171524 0.0169166 0.0171796 0.0169275 0.0171693 0.0173958 0.0176068 0.0178276 0.0180096 0.018182 0.0183348 0.0184664 0.0185758 0.0186623 0.0187264 0.0187603 0.018792 0.0188066 0.0187894 0.018761 0.0187512 0.0187044 0.0186772 0.0186266 0.0186079 0.0185594 0.0185312 0.0184965 0.0184783 0.018449 0.0184312 0.0184019 0.0183887 0.0183683 0.0183678 0.0183414 0.0183388 0.0183188 0.0183177 0.0182989 0.018299 0.0182769 0.0182797 0.0182999 0.0183018 0.0182954 0.0182966 0.0182793 0.018274 0.0182885 0.0182803 0.0182908 0.018299 0.0183084 0.0183153 0.0183227 0.0183265 0.0183085 0.0183077 0.0183031 0.0182836 0.018295 0.0182931 0.0182676 0.0182812 0.0182631 0.0182814 0.0182635 0.0182824 0.0182651 0.0182549 0.0182709 0.0182551 0.0182464 0.0182546 0.0182489 0.0182384 0.0182426 0.0182327 0.0182177 0.0182333 0.0182576 0.0182509 0.018262 0.0182456 0.0182273 0.0182421 0.018238 0.0182201 0.0182217 0.0182041 0.0181854 0.0182118 0.0182469 0.0182771 0.0183012 0.0183283 0.0183494 0.0183416 0.0183715 0.0183666 0.018338 0.0183339 0.0183215 0.0182997 0.0182944 0.0183074 0.0183113 0.018352 0.0183905 0.0184159 0.0184204 0.018449 0.0183943 0.0183645 0.0183715 0.0183207 0.0183161 0.0183338 0.0182678 0.0182663 0.0182685 0.0182695 0.0182755 0.0182625 0.0182719 0.0182477 0.0182296 0.0182381 0.0181998 0.018196 0.0182225 0.0181926 0.0181622 0.0181617 0.0181412 0.0181841 0.0182275 0.0182204 0.0182163 0.0182016 0.0181398 0.0181612 0.0181714 0.0181275 0.0181023 0.0180788 0.0180174 0.0180513 0.0180864 0.0180961 0.0181255 0.0181301 0.0181642 0.0181603 0.0181819 0.0182021 0.0181983 0.0182116 0.0182148 0.0182355 0.0182236 0.0182145 0.0182251 0.0181985 0.0181883 0.0182161 0.0182066 0.0181988 0.0182074 0.0181786 0.0181848 0.0181958 0.0182073 0.0181786 0.0181849 0.0181625 0.0181459 0.0181702 0.0181656 0.0181532 0.0181562 0.0181301 0.0181019 0.0181197 0.0181384 0.0181395 0.0181023 0.0180987 0.0180721 0.0180786 0.0181184 0.0180985 0.0180563 0.018047 0.0179985 0.0180266 0.0180564 0.018047 0.0180072 0.0179637 0.0179222 0.01797 0.0180137 0.0179822 0.0179348 0.0178831 0.0178531 0.0178966 0.0179381 0.017984 0.0180431 0.0181112 0.0181806 0.0182501 0.0183196 0.0183886 0.0184564 0.0184878 0.0185201 0.0185256 0.0184287 0.0184312 0.0184101 0.0183316 0.0183422 0.0183329 0.0183294 0.0184466 0.018566 0.0185683 0.0186022 0.0185944 0.0184385 0.0184487 0.0184433 0.0183217 0.018304 0.0182838 0.0181311 0.018173 0.0181988 0.0182187 0.0182337 0.0182538 0.0182531 0.0181749 0.0181663 0.0181361 0.0180401 0.0180798 0.0180973 0.0180214 0.0179954 0.0179468 0.0179015 0.0180042 0.0181103 0.0180792 0.0180417 0.017988 0.0178494 0.0179141 0.0179625 0.0178499 0.0177871 0.0177208 0.0176502 0.0177936 0.0179432 0.0180982 0.0182596 0.0184283 0.0186048 0.0186042 0.0185728 0.018526 0.0183056 0.0183659 0.018412 0.0182294 0.0181701 0.0180977 0.0180366 0.0182507 0.0184789 0.0184042 0.0183099 0.0181955 0.0179413 0.0180607 0.0181579 0.0179266 0.0178261 0.0177015 0.01747 0.0176079 0.0177114 0.0178298 0.0179008 0.0179841 0.0180553 0.0178887 0.0178065 0.017713 0.0175327 0.0176358 0.0177283 0.0175748 0.0174726 0.0173604 0.0172627 0.0174435 0.0176327 0.0175064 0.0174006 0.0172492 0.01704 0.0171968 0.0173095 0.0171211 0.0170017 0.0168393 0.0166551 0.016823 0.0169487 0.0170973 0.0172028 0.0173277 0.0174302 0.0175188 0.0176029 0.0176698 0.0177462 0.0178111 0.0178606 0.0179128 0.0179508 0.01789 0.0178412 0.0177821 0.0177157 0.0177848 0.017839 0.0177864 0.0177359 0.017657 0.017593 0.0176619 0.0177344 0.0176577 0.0175737 0.017499 0.0174159 0.0174929 0.0175877 0.0175214 0.0174161 0.0173371 0.0172235 0.0173174 0.0174114 0.0173021 0.017205 0.0170689 0.0169558 0.0170981 0.0171975 0.0171012 0.0169953 0.0168467 0.0167225 0.0168377 0.0169567 0.0168019 0.0166706 0.0164979 0.0163639 0.0165412 0.0166775 0.0165565 0.0164147 0.0162325 0.0160747 0.0162107 0.0163487 0.0165101 0.016699 0.0169044 0.017118 0.017339 0.0175654 0.0178046 0.0180616 0.0179091 0.0177392 0.0175614 0.0173034 0.0174819 0.017655 0.0174071 0.0172431 0.0170541 0.0168651 0.0170969 0.0173463 0.0171421 0.0169276 0.0166824 0.0164509 0.0166894 0.016898 0.0166582 0.0164586 0.0162254 0.016005 0.016234 0.0164268 0.0166417 0.0168172 0.0170131 0.0171664 0.0169428 0.0167882 0.0165921 0.0163724 0.0165694 0.0167261 0.0165171 0.0163578 0.0161591 0.015976 0.0161942 0.0164175 0.0162044 0.016014 0.0157882 0.015573 0.0157927 0.0159929 0.0157863 0.015576 0.0153611 0.0151568 0.0153707 0.0155864 0.0157996 0.0160154 0.0162351 0.0164596 0.0166861 0.0164238 0.0166527 0.0163952 0.0161218 0.0163335 0.0160507 0.016245 0.0159644 0.0156736 0.0153987 0.0152321 0.0155038 0.0157783 0.0155894 0.0158575 0.0156652 0.0159125 0.0161831 0.0159707 0.0162029 0.0159857 0.0157721 0.0155535 0.0157609 0.015506 0.0157085 0.0154683 0.0152145 0.0154045 0.0151503 0.0153242 0.0150586 0.0148046 0.0149641 0.0151162 0.0152668 0.0154175 0.0155624 0.0156976 0.0158316 0.0155144 0.0156269 0.0153143 0.0150061 0.0147112 0.0147856 0.0148568 0.0145689 0.0142755 0.0139919 0.0139335 0.0142164 0.0144961 0.0144148 0.0141471 0.0138671 0.0136111 0.0136734 0.0137279 0.0137743 0.0138123 0.0138417 0.0138623 0.0135918 0.0136006 0.0133397 0.0130869 0.0130865 0.0128419 0.0128334 0.0128174 0.0127939 0.0125592 0.0125281 0.0123054 0.0120782 0.0121066 0.0123316 0.0123531 0.0125854 0.0126014 0.0126089 0.012381 0.0123689 0.0121442 0.0121287 0.0119239 0.0119022 0.0118744 0.0118405 0.0118007 0.0117551 0.011701 0.0114984 0.0114457 0.0112549 0.0111962 0.0110124 0.0110665 0.0111227 0.0113071 0.0113514 0.01155 0.0115942 0.0113942 0.0112118 0.0111701 0.0109838 0.0109385 0.0108866 0.0108341 0.0106613 0.0104937 0.0104381 0.0102779 0.0102192 0.0100652 0.0100046 0.00985587 0.00979418 0.00965373 0.00951194 0.00956894 0.00971227 0.00977165 0.00991178 0.00996589 0.0101216 0.0101726 0.0103345 0.0103811 0.0105459 0.0107115 0.0107592 0.0105958 0.0104235 0.0102701 0.0102221 0.0100676 0.0100204 0.00987254 0.00982514 0.00967565 0.00962364 0.00949154 0.00943592 0.0093802 0.00924855 0.00912202 0.00899298 0.00893701 0.00882394 0.00876648 0.00870637 0.00864378 0.00857889 0.00851192 0.00844102 0.00837007 0.00829841 0.00819325 0.00812158 0.0080207 0.00794912 0.00785245 0.00778109 0.00768858 0.00759908 0.00752918 0.00744364 0.00737427 0.00729268 0.00736147 0.00742905 0.00751302 0.0075829 0.00766825 0.00775887 0.00782887 0.00792296 0.00799242 0.00809128 0.00816065 0.00826377 0.00833082 0.00839769 0.00829537 0.00822854 0.00812986 0.0080612 0.00796341 0.00789913 0.0078009 0.00773453 0.00764987 0.00755822 0.00749454 0.00741348 0.00734512 0.00727886 0.00721374 0.0071463 0.00707854 0.00700467 0.00693321 0.00686383 0.00692723 0.0069982 0.00707111 0.00713782 0.00706169 0.0069892 0.00691997 0.00685846 0.00679609 0.00672957 0.00666445 0.00659678 0.0066533 0.00672465 0.00678794 0.00684725 0.00678323 0.00671063 0.00676782 0.00684158 0.00690685 0.00698217 0.00705404 0.00712812 0.00720458 0.00726644 0.00718917 0.00711367 0.00717758 0.00725209 0.00733337 0.0073949 0.00747707 0.00754179 0.00762435 0.00771491 0.00777519 0.00786904 0.00793354 0.00802671 0.00809415 0.00819198 0.00825208 0.00836169 0.00846323 0.00852665 0.00842378 0.00831269 0.00837098 0.00848355 0.00858774 0.00864635 0.00854085 0.00842684 0.00832713 0.00827252 0.00821552 0.00815625 0.00805216 0.00799419 0.00789951 0.00783697 0.00774873 0.0076877 0.00760312 0.00751295 0.00745495 0.00737404 0.00731153 0.00723814 0.00715898 0.00710043 0.00704151 0.00696658 0.00689773 0.00682531 0.00688312 0.00695417 0.0070266 0.0070839 0.00701035 0.00693831 0.0069924 0.00706542 0.00714005 0.00721632 0.00729497 0.0073515 0.00743511 0.00749209 0.00757118 0.00766279 0.00771991 0.00780792 0.00786516 0.00795879 0.0080153 0.00810999 0.00816556 0.0082196 0.00811959 0.0080696 0.0079762 0.00792114 0.00782588 0.00777391 0.00768572 0.00762956 0.00754736 0.00746123 0.00740719 0.00732681 0.00727231 0.00719489 0.00711921 0.00704524 0.00709586 0.00717159 0.00724829 0.00730013 0.00737971 0.00743091 0.00751351 0.00759893 0.0076489 0.00774037 0.00779108 0.00787692 0.00792656 0.00802705 0.00807561 0.00817049 0.00827167 0.00837925 0.00848016 0.00859557 0.00870234 0.00875561 0.00887863 0.00893044 0.00904603 0.00917494 0.00930126 0.00935702 0.00922699 0.0090983 0.0091437 0.00927215 0.00940337 0.00954074 0.00959038 0.00972411 0.00976889 0.00992028 0.00996336 0.0101076 0.0101468 0.0103105 0.010465 0.0106385 0.0108031 0.0108432 0.0110242 0.0110613 0.0112472 0.0114316 0.0116327 0.0116656 0.0114646 0.0112738 0.011087 0.0109097 0.010882 0.0107056 0.0106731 0.0105057 0.0105407 0.010566 0.0107352 0.010759 0.0109341 0.0111138 0.011303 0.0114927 0.0116927 0.0117139 0.0115105 0.0113226 0.0113389 0.0115254 0.011729 0.0119393 0.0119484 0.0121532 0.0121555 0.0123842 0.0126074 0.0128429 0.0128365 0.0130794 0.013331 0.0133142 0.0135732 0.0135462 0.0132893 0.0130411 0.0130641 0.0128225 0.0125905 0.0126018 0.0123794 0.0121513 0.0121405 0.0123647 0.0123449 0.0125738 0.0128012 0.0127726 0.0130106 0.0132565 0.013511 0.0134677 0.0132161 0.0129726 0.0129275 0.0131681 0.0134166 0.0133581 0.013113 0.0128754 0.012645 0.0126944 0.012737 0.0125135 0.0125471 0.0123197 0.0120994 0.0121232 0.0119217 0.0119378 0.0119477 0.0119512 0.0117411 0.0117381 0.0115344 0.0113463 0.011155 0.0111478 0.0111317 0.0109534 0.0107778 0.0106075 0.0105891 0.0104244 0.0104019 0.0103737 0.010343 0.0101854 0.0100333 0.0100016 0.00984703 0.0098099 0.00967408 0.00963407 0.00949011 0.00945 0.00931987 0.00918878 0.00922768 0.00936074 0.00939868 0.00952995 0.00956659 0.00971032 0.00974274 0.00988021 0.00991185 0.0100638 0.0102187 0.0102437 0.0100866 0.0099366 0.00979095 0.00977019 0.00962826 0.00959676 0.00946155 0.0094335 0.00929954 0.00926372 0.0091431 0.009107 0.00906762 0.00902501 0.00897926 0.00885358 0.00880605 0.0086969 0.00864762 0.00853087 0.00857888 0.00862412 0.00874334 0.00878687 0.00889811 0.00893958 0.00882741 0.00870603 0.00866652 0.00856148 0.00851999 0.00847575 0.00842881 0.00831793 0.00821852 0.00812181 0.00816559 0.00826327 0.00836369 0.00840683 0.00830546 0.00820688 0.00824564 0.00834505 0.00844729 0.00848501 0.00860015 0.00863596 0.00874259 0.00886492 0.00897793 0.00901309 0.00889933 0.00877614 0.00866782 0.00855419 0.00851996 0.0084172 0.00838197 0.00828084 0.00831122 0.00834213 0.0084508 0.00847738 0.00858332 0.00869659 0.00880665 0.0089306 0.00904501 0.00917587 0.00920295 0.00932924 0.00935834 0.00949135 0.00951215 0.00964953 0.00967228 0.00981423 0.00995793 0.0101096 0.0102683 0.0102848 0.0104424 0.010457 0.0106211 0.0107916 0.0109675 0.0109764 0.0108004 0.0106299 0.010467 0.0103053 0.010294 0.0101408 0.0101294 0.00997345 0.0099886 0.00999706 0.0101508 0.0101561 0.010308 0.0104684 0.0106338 0.0108042 0.0109773 0.0111587 0.0113526 0.0115375 0.0115362 0.011738 0.0117274 0.0117093 0.0115162 0.011532 0.0113371 0.0113462 0.011161 0.0109772 0.010803 0.0106328 0.010627 0.0107967 0.0109717 0.0111522 0.0111395 0.0113249 0.0113059 0.0114962 0.0116881 0.0118994 0.0118709 0.0120694 0.012288 0.0122498 0.0124733 0.0124265 0.0122053 0.0119907 0.0120331 0.0118365 0.0116281 0.011661 0.0114705 0.0112815 0.0112516 0.0114391 0.0113994 0.0115912 0.0117961 0.01175 0.0119423 0.0121546 0.0123734 0.0125891 0.0128165 0.0130508 0.0132924 0.0135414 0.0137931 0.0140684 0.0143306 0.0146192 0.0149094 0.0152063 0.015094 0.0153938 0.0152661 0.0151319 0.0148489 0.0149747 0.014691 0.0148065 0.0145232 0.0142388 0.0139822 0.0137118 0.0136256 0.013889 0.01414 0.0144201 0.0143064 0.0145726 0.0144482 0.0147172 0.0149922 0.0148439 0.0145803 0.0143184 0.0141837 0.0144351 0.0146986 0.0145456 0.0142905 0.0140443 0.0138038 0.0139359 0.014062 0.0141852 0.0139285 0.014038 0.0137872 0.0135378 0.013437 0.0136779 0.0135685 0.0138113 0.0136876 0.0135647 0.0133271 0.0134514 0.0132097 0.0133238 0.0130937 0.0131935 0.0132862 0.0133779 0.0134647 0.0132198 0.0129819 0.012751 0.0126793 0.0129066 0.0131406 0.0130551 0.0128251 0.0126015 0.012384 0.0124584 0.0125268 0.012314 0.0120979 0.011888 0.011828 0.0120354 0.0122487 0.0121774 0.011967 0.0117624 0.0116913 0.0118931 0.0121005 0.0123037 0.0125177 0.0127376 0.0129635 0.0128683 0.0126412 0.0124283 0.0123334 0.0125405 0.0127686 0.0129864 0.0128761 0.0130925 0.0129704 0.0132002 0.0134348 0.0136593 0.0139032 0.0141431 0.0143832 0.0146449 0.0148851 0.0147121 0.0149689 0.0147886 0.0150245 0.0152769 0.0150821 0.0153049 0.0151048 0.015348 0.0155614 0.0153522 0.0151432 0.0149047 0.0147028 0.0149338 0.0151501 0.0149461 0.0147296 0.0145012 0.0142894 0.0144912 0.0146922 0.0148876 0.0146432 0.0148323 0.014609 0.014361 0.0145373 0.0143106 0.0144789 0.0142236 0.0139898 0.0137594 0.0136059 0.0138333 0.0140612 0.0138963 0.01414 0.0139672 0.0141828 0.0144254 0.0142397 0.0144526 0.0142656 0.0140775 0.0138466 0.0140439 0.0138234 0.0140019 0.0137911 0.0135602 0.0137286 0.0135112 0.0136739 0.0134509 0.0132288 0.0133788 0.0135177 0.0132926 0.013072 0.0128436 0.0127125 0.0129386 0.0131464 0.0130021 0.0127989 0.0125772 0.0124377 0.0126551 0.0128538 0.0130734 0.0132966 0.0131347 0.0133413 0.0131698 0.0133876 0.0136073 0.0134215 0.0136428 0.0134611 0.013668 0.0138857 0.0141009 0.0143171 0.0145324 0.0147502 0.0149596 0.0151664 0.0153771 0.0155834 0.0157772 0.0159616 0.0161623 0.0163245 0.0161597 0.0159946 0.0157917 0.0156452 0.0158503 0.0160183 0.0158783 0.0157067 0.0154987 0.0153162 0.0154652 0.0156096 0.0154034 0.0152078 0.0149938 0.0148399 0.0150614 0.0152504 0.0150995 0.014909 0.0146866 0.014484 0.0146377 0.0147881 0.0145835 0.0143567 0.0141567 0.0140056 0.0142077 0.0144337 0.0142799 0.0140542 0.0138493 0.0136448 0.0137934 0.0139362 0.0137164 0.0135108 0.0133033 0.0131627 0.0133713 0.0135718 0.0134214 0.0132258 0.0130126 0.0128019 0.012947 0.0130883 0.0132467 0.0130374 0.0132087 0.0129955 0.012788 0.0129615 0.0127535 0.012916 0.0127008 0.0125039 0.0122963 0.0121483 0.0123462 0.0125452 0.0123852 0.0125863 0.0124256 0.0126264 0.0128274 0.0126783 0.0128882 0.0127554 0.0126124 0.0124074 0.0125449 0.0123466 0.0124806 0.0122859 0.0120858 0.0122282 0.0120344 0.0121876 0.0119937 0.0118037 0.0119573 0.0121033 0.0122442 0.012382 0.0125129 0.0126396 0.0127619 0.0125366 0.0126551 0.0124395 0.0122332 0.01203 0.0121265 0.0122179 0.012018 0.0118137 0.0116148 0.011533 0.0117289 0.0119301 0.0118369 0.011639 0.0114461 0.0113543 0.0115441 0.0117388 0.0119283 0.0121279 0.0123324 0.0122154 0.0124209 0.0123015 0.0121746 0.0119741 0.0120947 0.011903 0.0120178 0.0118219 0.0116358 0.0114444 0.0112578 0.0111567 0.0113401 0.0115282 0.0117108 0.0115952 0.0117809 0.011655 0.0118526 0.0120439 0.0119038 0.0117224 0.0115262 0.0113941 0.0115812 0.0117619 0.0116175 0.0114354 0.0112572 0.0110832 0.0112187 0.01135 0.0114752 0.0112996 0.0114162 0.0112315 0.0110512 0.0109413 0.0111183 0.011 0.011178 0.0110479 0.0109132 0.0107473 0.0108762 0.0107109 0.0108286 0.010669 0.0107834 0.0108901 0.0109924 0.0110904 0.0111839 0.0112727 0.0113566 0.0114355 0.0115092 0.0115776 0.0116406 0.0116981 0.0114955 0.0115482 0.0113584 0.0111773 0.0112163 0.0110358 0.0110696 0.0110982 0.0111215 0.0109426 0.0109598 0.0107854 0.0106163 0.0106022 0.0107691 0.0107478 0.0109204 0.010893 0.0108606 0.0106932 0.0107232 0.0105568 0.0105846 0.010414 0.0104374 0.0104562 0.0104662 0.010469 0.0103063 0.0101534 0.0100013 0.0100013 0.00985089 0.00984663 0.00984071 0.0098281 0.00968591 0.00954781 0.0095344 0.00939814 0.00937759 0.00925365 0.00923017 0.0091023 0.00907469 0.00895644 0.00883405 0.00885941 0.00898025 0.00900067 0.00912426 0.00914283 0.0092726 0.00928801 0.0094125 0.00942566 0.00956237 0.00970071 0.00970778 0.00957066 0.00943269 0.00930809 0.00929984 0.00916613 0.00915678 0.00903493 0.00901663 0.008904 0.00888497 0.00876373 0.00874406 0.00872459 0.00861188 0.00850433 0.00839345 0.00836813 0.00827211 0.00824351 0.00821015 0.00817741 0.00814204 0.00810308 0.00806181 0.00801906 0.00797396 0.00788611 0.00783968 0.00774402 0.00769653 0.0076152 0.00756585 0.00748031 0.00739787 0.00735031 0.00727166 0.00722244 0.00714399 0.00719229 0.00724072 0.00732014 0.00736302 0.00744347 0.00752785 0.00757255 0.00766175 0.00770626 0.0077894 0.0078335 0.00793031 0.00797129 0.00800777 0.00791609 0.00787843 0.007786 0.0077467 0.0076557 0.00761421 0.00753554 0.00749191 0.00740601 0.00733135 0.00728735 0.00720914 0.0071677 0.00712272 0.00707519 0.00702527 0.00697294 0.00692098 0.00686776 0.00681343 0.00675888 0.0067046 0.0066482 0.00659171 0.00653548 0.00647831 0.00642318 0.00635945 0.0063075 0.00624358 0.00617548 0.00612683 0.00605963 0.00599039 0.00592793 0.00586438 0.00592317 0.00598472 0.00604418 0.0061133 0.00616741 0.00622743 0.00629696 0.00635063 0.00641152 0.00646575 0.00640549 0.00633683 0.00628166 0.00622196 0.00615842 0.00609987 0.00604199 0.00598177 0.00592487 0.00586521 0.00580475 0.00574814 0.00568516 0.00563036 0.00556406 0.00551204 0.00546465 0.00539421 0.00532055 0.00524326 0.00520069 0.00512008 0.00508567 0.00505689 0.00513313 0.00516434 0.00523989 0.00527754 0.00535101 0.00542138 0.00538203 0.00531242 0.00527791 0.00520685 0.00517772 0.00510617 0.00503259 0.00495743 0.00488113 0.00480396 0.00472607 0.0046476 0.00456899 0.00458015 0.00458959 0.00459762 0.0046581 0.00465504 0.00465153 0.00472331 0.00472128 0.00471969 0.00471837 0.00466075 0.00460452 0.00461046 0.00461559 0.00462003 0.00466654 0.00466493 0.00466301 0.00471722 0.00471617 0.00471519 0.00476635 0.00476971 0.00477347 0.00477773 0.00478264 0.00478842 0.00479537 0.00486765 0.00485647 0.00484701 0.00491246 0.00492517 0.00493997 0.00501185 0.00499394 0.0049783 0.00496447 0.00490138 0.00483887 0.00483177 0.00482548 0.00481985 0.00487498 0.00488287 0.0048916 0.00495212 0.00494096 0.00493078 0.00492139 0.00486778 0.00481475 0.00476329 0.00471423 0.00466787 0.00462387 0.00462717 0.00462997 0.00463233 0.00467036 0.00466975 0.00466893 0.00471329 0.00471235 0.0047114 0.00471044 0.00467076 0.00463427 0.00463583 0.00463704 0.00463793 0.00467096 0.00467104 0.00467098 0.00470947 0.00470848 0.00470746 0.00474656 0.0047487 0.00475087 0.0047531 0.00475543 0.00475788 0.00476048 0.00481007 0.00480574 0.00480167 0.00484907 0.00485492 0.00486113 0.00491266 0.00490446 0.00489669 0.00488927 0.00484349 0.00479782 0.00479412 0.00479053 0.004787 0.0048278 0.00483291 0.00483812 0.00488213 0.0048752 0.00486844 0.00490882 0.00491719 0.00492581 0.00493473 0.004944 0.00495371 0.00496394 0.00497479 0.00498639 0.00499887 0.00501243 0.00502728 0.0050437 0.00506203 0.00508268 0.00515187 0.00512877 0.00510797 0.00517067 0.00519372 0.00521901 0.00524693 0.00531369 0.00534626 0.00541201 0.00544889 0.00548896 0.00553228 0.00557933 0.00564447 0.00569468 0.00575727 0.00580986 0.00587031 0.00581819 0.00576859 0.00570749 0.00566057 0.00559756 0.00555388 0.00551322 0.00547533 0.0055364 0.00557519 0.00561653 0.00567701 0.00572153 0.00578056 0.00582787 0.0058775 0.00592943 0.00598357 0.00603985 0.00609775 0.00615393 0.00621706 0.00627617 0.00633198 0.00639237 0.00646098 0.00652135 0.00657794 0.00651498 0.00644782 0.00638821 0.00632469 0.00627239 0.00621174 0.00615358 0.00609718 0.00604119 0.00598719 0.00593525 0.00588544 0.00594135 0.00599146 0.00604357 0.00609763 0.00615282 0.00620891 0.00626792 0.00632233 0.00638013 0.00644388 0.00650447 0.00657049 0.00663458 0.00668893 0.00662345 0.00655789 0.00661052 0.0066783 0.00674514 0.00679872 0.00673122 0.00666282 0.00660176 0.00654917 0.00649623 0.00643451 0.00637562 0.00631599 0.00626307 0.00620671 0.00615213 0.00609855 0.00604616 0.00599567 0.00594712 0.00589327 0.00583778 0.00579227 0.00573557 0.00569285 0.00563503 0.0055954 0.00555799 0.00550003 0.0054401 0.00537804 0.00534668 0.00528395 0.00525669 0.0052316 0.00520841 0.00514954 0.00508911 0.00507187 0.00505599 0.00504126 0.00509516 0.005112 0.00513006 0.00518688 0.0051668 0.00514799 0.00519975 0.00522036 0.00524229 0.00526569 0.00529075 0.00531767 0.00537673 0.0054073 0.00546595 0.00552272 0.00548946 0.00543396 0.00540392 0.00534816 0.00532142 0.00529633 0.00527271 0.00525043 0.00530002 0.00532384 0.00534901 0.00537565 0.00542841 0.00545807 0.00551067 0.0055433 0.00557774 0.00561411 0.00565242 0.0057076 0.0057489 0.00580319 0.00584722 0.00590049 0.00585579 0.00581298 0.00576113 0.00572099 0.00566835 0.0056311 0.00559557 0.00556175 0.00561144 0.0056462 0.00568267 0.00573282 0.00577201 0.00582147 0.00586324 0.00590678 0.00595214 0.00599935 0.00604842 0.00609935 0.00615106 0.00620427 0.00625926 0.00631043 0.00636761 0.00642607 0.00648782 0.00653908 0.006476 0.00641786 0.00636019 0.00630424 0.00625498 0.00620128 0.00614934 0.00609964 0.00605003 0.00600222 0.00595619 0.00591193 0.00595911 0.00600407 0.00605074 0.00609916 0.00614678 0.00619753 0.00625002 0.00629727 0.00635203 0.00640852 0.00646671 0.00652537 0.0065882 0.00665394 0.00671389 0.00678465 0.00685036 0.00689979 0.00683591 0.00676363 0.00681195 0.00688499 0.00694954 0.00699781 0.00693257 0.00685879 0.0067945 0.00674828 0.00670225 0.0066384 0.00657333 0.00651412 0.00656005 0.00661982 0.00668637 0.00673108 0.00666647 0.00660447 0.00664734 0.00671081 0.00677175 0.00684007 0.00690408 0.0069786 0.0070445 0.00709133 0.00702301 0.00694776 0.00698977 0.00706396 0.00713471 0.00717903 0.00725329 0.00729104 0.00737166 0.00744793 0.00748787 0.00757629 0.00761498 0.00769506 0.00773419 0.007823 0.00785965 0.00795058 0.008048 0.00808264 0.00798556 0.00789296 0.00792099 0.00801812 0.00811181 0.00814146 0.00804826 0.00795062 0.00786251 0.00783438 0.00780386 0.00776919 0.00768404 0.00765155 0.00756265 0.0075258 0.00744916 0.0074128 0.00732871 0.00725779 0.00721979 0.00714323 0.00710404 0.00703008 0.00696608 0.00692632 0.00688487 0.0068133 0.00675269 0.00668864 0.00672835 0.00679296 0.0068541 0.00689323 0.00683158 0.00676642 0.00670438 0.00666683 0.00662766 0.00658691 0.00654459 0.00650074 0.00645538 0.00639834 0.00634302 0.00628941 0.00624422 0.00619289 0.00614325 0.00609775 0.00605043 0.00600479 0.006049 0.0060953 0.00613869 0.00618726 0.0062375 0.00628061 0.0063331 0.00638728 0.00644315 0.00648645 0.00643001 0.00637528 0.00632222 0.00627083 0.00622979 0.00618061 0.00613305 0.00609175 0.00604641 0.00600432 0.0059608 0.00591583 0.00586939 0.00582854 0.00578142 0.00574304 0.00569534 0.00565949 0.00562528 0.00557815 0.00552963 0.00547973 0.00545035 0.00540034 0.00537375 0.0053485 0.00532449 0.00527743 0.00522935 0.0051803 0.0051303 0.00507937 0.00502752 0.0050146 0.0050024 0.0049908 0.00503703 0.00505042 0.00506449 0.0051136 0.00509776 0.0050827 0.00506831 0.00502426 0.00497973 0.0049691 0.00495886 0.00494895 0.00498884 0.00500023 0.00501201 0.00505453 0.00504127 0.00502849 0.00506782 0.00508195 0.00509661 0.00511186 0.00512777 0.00514442 0.00516189 0.00520936 0.00519033 0.00517219 0.00521591 0.00523547 0.00525594 0.00530161 0.00527976 0.00525887 0.00523884 0.00519718 0.00515484 0.00513819 0.00512219 0.00510676 0.00514524 0.00516192 0.00517921 0.0052196 0.00520108 0.00518322 0.00522064 0.00523964 0.00525933 0.00527977 0.00530104 0.00532319 0.00534632 0.00537051 0.00539584 0.00542242 0.00546987 0.00549903 0.00554638 0.00559253 0.0055611 0.00551608 0.00548711 0.00544205 0.00541548 0.00539006 0.00536572 0.00534237 0.00538286 0.00540733 0.00543281 0.00545938 0.0055022 0.00553101 0.00557385 0.00560488 0.00563723 0.00567102 0.00570627 0.00575164 0.0057893 0.00583415 0.00587419 0.00591842 0.0058776 0.00583831 0.00579565 0.00575863 0.00571548 0.00568076 0.00564742 0.00561537 0.00565585 0.00568879 0.00572303 0.00576404 0.00580047 0.00584102 0.00587963 0.00591968 0.00596123 0.00600264 0.00596039 0.00591962 0.00595829 0.00599974 0.00604265 0.00608708 0.00612633 0.00617291 0.00622107 0.00626006 0.00631039 0.00636234 0.00641594 0.00647123 0.00652821 0.00656842 0.0065109 0.00645508 0.00649269 0.00654902 0.00660706 0.00664411 0.00658557 0.00652874 0.00647359 0.00643803 0.00640094 0.00634845 0.00629758 0.00624831 0.00621133 0.00616417 0.00611853 0.00608128 0.00603774 0.00599565 0.00595497 0.00591827 0.00588029 0.00584234 0.00580381 0.00576794 0.00572897 0.00569518 0.00566263 0.00562416 0.00558459 0.00554397 0.00551527 0.00547455 0.005448 0.00542247 0.00539789 0.00535932 0.00531994 0.00529836 0.00527756 0.00525748 0.00529369 0.00531481 0.00533666 0.00537421 0.00535135 0.00532925 0.00536414 0.00538716 0.00541097 0.00543562 0.00546118 0.00548771 0.0055265 0.00555502 0.00559362 0.00563126 0.005601 0.00556421 0.00553588 0.00549899 0.00547249 0.00544693 0.00542222 0.00539832 0.00543177 0.00545651 0.00548209 0.00550854 0.0055436 0.00557181 0.0056068 0.00563678 0.00566784 0.00570001 0.00573336 0.00577039 0.00580572 0.0058423 0.00587962 0.00591567 0.00587769 0.00584098 0.00580626 0.00577145 0.00573629 0.00570336 0.00567156 0.00564082 0.00567388 0.00570531 0.00573782 0.00577121 0.0058055 0.00583844 0.00587454 0.00591187 0.00595047 0.0059904 0.00603168 0.00607438 0.00610967 0.00615439 0.00620059 0.00623559 0.00628384 0.00633364 0.00638503 0.0064201 0.00636822 0.00631792 0.00626918 0.00622195 0.00618886 0.00614361 0.00609981 0.0060664 0.00602454 0.00598403 0.00594485 0.00590693 0.00593816 0.00597661 0.00601635 0.0060574 0.00608897 0.00613189 0.0061762 0.00620743 0.00625365 0.00630134 0.00635055 0.00640131 0.00645366 0.00650762 0.00656323 0.00662054 0.00667955 0.00674031 0.00680285 0.00686853 0.00693067 0.00700412 0.00706864 0.00710541 0.00718061 0.00721793 0.00729108 0.00736818 0.00740469 0.00748071 0.00751295 0.00759833 0.00762996 0.00771719 0.0077462 0.00777285 0.00768556 0.00765941 0.007573 0.00754404 0.00746802 0.00743655 0.0073566 0.00732425 0.00725254 0.00717346 0.00714037 0.0070749 0.00704041 0.00696638 0.00690378 0.0068376 0.00687064 0.00693729 0.00700033 0.00703249 0.00710757 0.00713838 0.00720466 0.00728243 0.00731116 0.00738945 0.00741755 0.00749469 0.00752112 0.00760168 0.00762733 0.00770859 0.0077982 0.00788722 0.00797876 0.0080759 0.00816648 0.00819092 0.00829704 0.00831925 0.00841597 0.00852835 0.00863413 0.00865452 0.00854843 0.00843567 0.00845251 0.00856557 0.00867188 0.00878133 0.00879579 0.00891648 0.00892558 0.00904987 0.00905806 0.00917428 0.00918019 0.00931272 0.009436 0.00957752 0.00971214 0.00971141 0.00985235 0.00985087 0.00999699 0.01015 0.0103012 0.0102905 0.0101398 0.00998846 0.00984281 0.00970139 0.00970898 0.00957122 0.00957574 0.00943675 0.00943508 0.00943071 0.00956407 0.00955304 0.0096898 0.00983064 0.00997568 0.0101276 0.0102801 0.0102603 0.0101112 0.00995865 0.00993737 0.0100865 0.0102387 0.0103899 0.0103611 0.0105281 0.0104924 0.0106535 0.0108248 0.010994 0.0109511 0.0111326 0.0113122 0.0112608 0.0114402 0.0113796 0.0112053 0.011018 0.0110759 0.0109035 0.010735 0.0107834 0.0106147 0.0104541 0.010409 0.010567 0.0105184 0.0106836 0.0108493 0.0107901 0.0109567 0.0111418 0.0113136 0.0112425 0.0110731 0.0108903 0.0108191 0.0109995 0.0111662 0.011085 0.010919 0.0107457 0.0105833 0.010657 0.0107259 0.0105644 0.0106256 0.0104595 0.0103068 0.0103595 0.0102025 0.0102472 0.0102898 0.0103278 0.0101775 0.0102121 0.0100611 0.00991184 0.00976935 0.00979392 0.00981434 0.00967421 0.00953812 0.00940595 0.00942022 0.00929121 0.00930117 0.00930876 0.00931372 0.00918363 0.00906072 0.00906059 0.00893629 0.00893148 0.00881983 0.00880929 0.00869743 0.00868619 0.00857975 0.00846648 0.00847876 0.00859095 0.00859574 0.00870463 0.00871065 0.008827 0.00882875 0.0089378 0.00893598 0.00905865 0.00918127 0.00917536 0.00905314 0.00893082 0.00882255 0.00882727 0.00871003 0.00871258 0.00860089 0.00859752 0.00849637 0.00849118 0.00838198 0.00837497 0.00836811 0.00835541 0.00833871 0.00823185 0.00821272 0.00812152 0.00809999 0.00800244 0.00802363 0.00804229 0.00814044 0.00815675 0.00824828 0.00826405 0.00817041 0.00807193 0.0080584 0.00796269 0.00794875 0.00793146 0.00791056 0.0078212 0.00773124 0.00764972 0.00766985 0.00775159 0.00784182 0.00786202 0.0077696 0.00768771 0.00770327 0.00778525 0.00787897 0.00789116 0.00797611 0.00799022 0.00808166 0.0081814 0.0082762 0.00828443 0.0081897 0.00808794 0.0080018 0.00790537 0.00789813 0.00781256 0.00780048 0.00771772 0.0077306 0.0077392 0.00782106 0.00782714 0.0079113 0.00800764 0.00809361 0.00819531 0.00828989 0.0083894 0.0083931 0.00849442 0.00849248 0.00860424 0.00860152 0.00870345 0.00869726 0.00881457 0.00892232 0.00904418 0.0091659 0.00915288 0.00927757 0.00926024 0.00938789 0.0095193 0.0096546 0.00963096 0.00949655 0.009366 0.00933873 0.00946984 0.00960326 0.00974061 0.00988203 0.0100316 0.00999634 0.0101409 0.0100997 0.0100558 0.0099084 0.00995664 0.00980956 0.00984794 0.00970771 0.00957149 0.00943917 0.00930675 0.00927318 0.00940448 0.00953562 0.0096706 0.00963171 0.00976766 0.00971987 0.00985583 0.0100083 0.0101499 0.0100919 0.0102513 0.0104004 0.0103375 0.010495 0.0104236 0.0102683 0.0101198 0.0101887 0.0100312 0.00989075 0.00995208 0.00980546 0.00966868 0.00961269 0.00975184 0.00969307 0.00982764 0.00996866 0.00990118 0.0100459 0.0101948 0.0103478 0.0105051 0.0106668 0.010833 0.010999 0.0109084 0.0107452 0.0105816 0.0104921 0.0106529 0.0108133 0.010714 0.0105586 0.0103959 0.0102447 0.0103356 0.0104225 0.0102676 0.010117 0.0099704 0.0098909 0.0100351 0.0101833 0.010095 0.00994932 0.00980756 0.00972236 0.00985955 0.0100026 0.0101496 0.010296 0.0104605 0.0106103 0.0105017 0.010355 0.0101935 0.0100854 0.0102439 0.01039 0.0105497 0.0104273 0.0105878 0.0104663 0.0106223 0.0107848 0.0109514 0.011122 0.0112966 0.0114752 0.0116578 0.0118442 0.0117081 0.0119008 0.0117808 0.0119574 0.0121606 0.0120249 0.0122055 0.0118242 0.0116503 0.0114574 0.0115852 0.0114157 0.0115304 0.0113455 0.0111754 0.0109985 0.0108866 0.0110661 0.0112281 0.0111058 0.0112907 0.0109465 0.0107698 0.0106182 0.0107322 0.0108362 0.0106699 0.0105079 0.0103572 0.0102609 0.010404 0.0105661 0.0104548 0.0102954 0.010155 0.00999856 0.0101018 0.0102005 0.0103094 0.0101585 0.0102712 0.0101287 0.0099733 0.00983583 0.00994488 0.0100499 0.00990571 0.00976534 0.00963323 0.00953457 0.00966601 0.00980355 0.00969965 0.00956046 0.00943186 0.00930444 0.00940001 0.00949157 0.00958252 0.00966968 0.00975064 0.00982786 0.00969113 0.00976042 0.00962599 0.00949063 0.00955219 0.0094252 0.00948219 0.00953823 0.00958783 0.00944754 0.009494 0.00936812 0.00923569 0.00919429 0.00932701 0.00927636 0.00940111 0.00935137 0.0092954 0.0091675 0.00922186 0.00910388 0.00915131 0.00903691 0.00908078 0.00912086 0.00915712 0.00918954 0.00921667 0.00923919 0.00911601 0.00913626 0.00901437 0.00903175 0.00891044 0.00889738 0.00887783 0.00899411 0.00897554 0.00909058 0.00906066 0.00895033 0.00882842 0.00885419 0.00874941 0.00877077 0.00878653 0.00880189 0.00868946 0.00858293 0.0085923 0.00848213 0.0084888 0.0083894 0.0083927 0.00829375 0.00829256 0.0081982 0.00809665 0.00809704 0.00819631 0.00819245 0.0082929 0.00828714 0.00838319 0.00837404 0.00847244 0.00845968 0.00857096 0.0086725 0.00865386 0.00855443 0.00844381 0.00834816 0.0083619 0.008267 0.00827853 0.00817759 0.00818711 0.00808981 0.00809477 0.00800974 0.00801163 0.00801092 0.00791473 0.00783208 0.00774609 0.00774544 0.00765977 0.00765341 0.00764475 0.00763307 0.00762247 0.00760628 0.00758931 0.00756863 0.0075454 0.00746759 0.00744285 0.00736567 0.00734073 0.00726128 0.00723394 0.00716625 0.0070931 0.00706283 0.00699902 0.00696905 0.00690196 0.00693153 0.00695933 0.00702719 0.00705177 0.00712189 0.00719146 0.00721653 0.00728664 0.00731 0.00739012 0.00741282 0.0074857 0.00750616 0.00752411 0.00744792 0.00743236 0.00735064 0.00733134 0.00726079 0.00723965 0.00717134 0.00714846 0.00707518 0.00700956 0.00698535 0.00692045 0.00689475 0.00686729 0.0068381 0.00680719 0.00677459 0.00671337 0.0066539 0.00659615 0.00662748 0.00668564 0.00674554 0.00677604 0.00671575 0.00665721 0.00660036 0.00657101 0.0065401 0.00648569 0.00643291 0.00638172 0.00641142 0.00646302 0.0065162 0.00654517 0.00649162 0.00643965 0.00646639 0.0065187 0.00657259 0.00662812 0.00668532 0.00674422 0.00680486 0.00683199 0.00677102 0.0067118 0.00673664 0.00679614 0.0068574 0.00688109 0.0069444 0.00696656 0.00703194 0.00709779 0.00711851 0.00719231 0.00720836 0.00728111 0.0073001 0.00736789 0.00738307 0.00746393 0.00754091 0.00755146 0.00747825 0.00739737 0.007409 0.00748925 0.00756123 0.00757119 0.00749622 0.00741729 0.00734354 0.00733702 0.00732471 0.00731406 0.00723931 0.00722245 0.00715721 0.00713913 0.00707119 0.00705249 0.00698693 0.00692322 0.00690303 0.00684131 0.00681958 0.00675983 0.00670181 0.00667886 0.00665429 0.00659846 0.00654426 0.00649165 0.00651541 0.00656828 0.00662275 0.00664547 0.00659077 0.00653766 0.00655841 0.0066117 0.0066666 0.00672314 0.00678136 0.00680122 0.00686133 0.00687963 0.00694165 0.00700549 0.00702223 0.00708802 0.00710298 0.00717223 0.00718532 0.00725175 0.00726345 0.00727374 0.00720565 0.00719646 0.00712723 0.00711606 0.00705021 0.00703714 0.00697317 0.0069583 0.0068962 0.00683588 0.00681939 0.00676089 0.00674283 0.00668614 0.00663109 0.00657764 0.00659535 0.00664891 0.00670407 0.0067204 0.0067773 0.00679205 0.00685067 0.00691103 0.00692411 0.00698624 0.00699752 0.00706144 0.00707081 0.00713651 0.00714387 0.00721288 0.00728081 0.00734924 0.00742593 0.00750165 0.00757958 0.00758255 0.00766573 0.00766875 0.00774437 0.00783527 0.00791566 0.00791406 0.00783405 0.00774344 0.00774204 0.00782706 0.00791326 0.00800389 0.00799273 0.00808555 0.00807852 0.00816456 0.00815066 0.00825044 0.00823004 0.00833197 0.00842475 0.00853465 0.00863325 0.00860926 0.00872458 0.00869625 0.00879907 0.00892001 0.00902927 0.00899412 0.00888603 0.00876613 0.0086644 0.00855098 0.00858184 0.0084851 0.00851155 0.00840245 0.00837686 0.00834797 0.00845527 0.00842208 0.00851669 0.00862905 0.00872961 0.00884838 0.00895524 0.00891265 0.00880711 0.00869117 0.00865034 0.00876061 0.00886643 0.00898932 0.00893811 0.00905112 0.00899477 0.00910947 0.00923797 0.00936127 0.0092938 0.00942528 0.00955394 0.00948213 0.00961663 0.00953753 0.00940283 0.0092803 0.00935317 0.0092278 0.00910778 0.00917407 0.00904792 0.008935 0.00887193 0.008983 0.00891485 0.00903945 0.00915284 0.00907538 0.00920482 0.00932089 0.00945754 0.00937104 0.00923877 0.00911885 0.00902838 0.00915233 0.00927975 0.0091849 0.0090601 0.0089387 0.00883325 0.00892041 0.00900013 0.00888462 0.00896598 0.00884342 0.00873631 0.00880571 0.00869975 0.00876408 0.00882535 0.0088834 0.00876571 0.00881839 0.00870965 0.00860242 0.00850038 0.00854641 0.00858807 0.00847901 0.00838557 0.00828244 0.00831736 0.00822272 0.00825642 0.00828586 0.00831053 0.0082073 0.00811882 0.00813583 0.00804917 0.0080653 0.0079689 0.00798153 0.00790061 0.00790989 0.00781757 0.00773761 0.00772884 0.00781019 0.00779933 0.00788863 0.00787191 0.00795487 0.00793703 0.00802806 0.00800449 0.00809789 0.00818346 0.00815848 0.00807029 0.00797977 0.00789329 0.00791518 0.00783034 0.00785339 0.00777023 0.0077847 0.00770465 0.00771914 0.00763936 0.0076485 0.00765864 0.00766528 0.00766818 0.00758235 0.00758263 0.00751151 0.00750798 0.00742929 0.00742993 0.00743028 0.00751158 0.00750944 0.0075798 0.00757684 0.00750507 0.00742451 0.00742848 0.00736103 0.00736377 0.00736307 0.00735719 0.00728403 0.00721813 0.00714931 0.00715282 0.00722141 0.00728578 0.00728675 0.0072227 0.0071544 0.00715406 0.00722021 0.00728884 0.00728752 0.00735566 0.00734997 0.00741831 0.00749653 0.00757046 0.00756187 0.0074866 0.00741165 0.00734203 0.00727631 0.00728187 0.0072128 0.00721801 0.00715177 0.00714751 0.00714119 0.0072046 0.00719551 0.00726664 0.00732991 0.00740352 0.0074727 0.00754872 0.00762554 0.00761248 0.00768946 0.00766804 0.00775141 0.0077307 0.00780736 0.00778046 0.00786503 0.00795055 0.00803863 0.00812933 0.00809704 0.0081894 0.00815147 0.00824178 0.00834583 0.00843802 0.00839382 0.00830294 0.00820013 0.00811105 0.00802464 0.00806184 0.00797125 0.00800734 0.00792025 0.00788526 0.00785074 0.00793205 0.00789287 0.00797901 0.00806941 0.00815554 0.00825704 0.00834861 0.00845049 0.00855324 0.00865902 0.00860331 0.00870885 0.00865148 0.00858897 0.00848128 0.00854416 0.00844374 0.00849913 0.00839792 0.00829793 0.00820826 0.00810815 0.00805811 0.00815676 0.00824324 0.00834585 0.00829021 0.00838431 0.00832244 0.00841759 0.00852344 0.00863231 0.00856145 0.00866121 0.00877247 0.00869729 0.00879901 0.00871625 0.00861279 0.00850639 0.00858428 0.00848451 0.00838186 0.00845457 0.00835066 0.00825742 0.00818878 0.00828001 0.00820656 0.00830627 0.00840488 0.00832897 0.00842828 0.0085305 0.00863789 0.00874615 0.00885119 0.00897234 0.00908798 0.00921139 0.00933167 0.00945994 0.00959866 0.00972708 0.00986876 0.0100116 0.00990639 0.01006 0.00996616 0.00986558 0.00971699 0.00981498 0.00968656 0.00977558 0.00962969 0.00950378 0.0093745 0.00924188 0.00916202 0.00929454 0.00941705 0.00954303 0.00945009 0.00959112 0.00932657 0.00920647 0.00907632 0.00896735 0.00905072 0.00912841 0.00900071 0.0088937 0.00877275 0.00870339 0.00882022 0.00892515 0.00884404 0.00874134 0.00862885 0.00851952 0.00859612 0.00866771 0.00856571 0.00845845 0.00835627 0.00829038 0.00839279 0.00849819 0.00842571 0.00832228 0.00822188 0.00813233 0.00819889 0.00826102 0.00816842 0.00823251 0.00813489 0.00804968 0.00811743 0.00802911 0.00810026 0.00816694 0.0082301 0.00812912 0.00818752 0.00810265 0.00800554 0.00795044 0.00804594 0.00798634 0.00806775 0.00800297 0.00793762 0.00785623 0.00792342 0.00783143 0.00789254 0.00781608 0.0078723 0.00792581 0.00797685 0.00802543 0.00793075 0.00785306 0.00776515 0.00780916 0.00772798 0.00776286 0.0078002 0.00783568 0.00775317 0.00767343 0.0077052 0.00762161 0.00764477 0.00757465 0.00759566 0.00751693 0.00753443 0.0074572 0.00739195 0.00737592 0.00744043 0.00742096 0.0074967 0.00747562 0.00754748 0.00751762 0.00759801 0.00756789 0.00763896 0.00772456 0.00768985 0.00760529 0.00753337 0.00746024 0.00749037 0.00742329 0.00745147 0.00737405 0.00739881 0.00733594 0.00735725 0.00728248 0.00730042 0.00731576 0.00725455 0.00718406 0.00712189 0.00713269 0.00707016 0.00707807 0.00708387 0.00708768 0.00708957 0.00708957 0.0070877 0.00708394 0.00707831 0.00701463 0.00700698 0.00694499 0.00693543 0.00687512 0.00686375 0.00680514 0.00674821 0.00673512 0.00667984 0.00666516 0.00661153 0.00662617 0.00663928 0.00669294 0.00670446 0.00675968 0.00681656 0.0068263 0.00688478 0.00689271 0.00695278 0.00695879 0.00702045 0.00702445 0.00702661 0.00696546 0.00696302 0.00690336 0.0068989 0.00684075 0.00683437 0.00677773 0.00676952 0.00671439 0.00666086 0.00665084 0.00659879 0.00658718 0.00657407 0.00655946 0.00654335 0.00652576 0.00650668 0.00648613 0.0064641 0.0064406 0.00641564 0.00638923 0.00636137 0.00633208 0.00628394 0.00623729 0.00619207 0.00616264 0.00611926 0.00607723 0.00604741 0.00600717 0.00596821 0.00593047 0.00590093 0.00587025 0.00583474 0.00580352 0.00576973 0.00573804 0.00570595 0.0056749 0.00564348 0.00561111 0.00557781 0.00554979 0.00551635 0.00549001 0.0054645 0.00549641 0.00552268 0.00555454 0.00558236 0.00561405 0.00564483 0.0056157 0.00558555 0.00555793 0.00552757 0.00550142 0.00547095 0.00543977 0.00540781 0.00537517 0.00534185 0.00530787 0.00527326 0.00523805 0.00520226 0.00516594 0.00512912 0.00509183 0.00505415 0.00501611 0.00497781 0.00493931 0.00490065 0.00486181 0.00482274 0.00478349 0.00474442 0.00470642 0.00467076 0.00463854 0.00461001 0.00458444 0.00456064 0.00453757 0.0045146 0.00449132 0.00446715 0.00444165 0.00441314 0.00438048 0.00439779 0.00441394 0.00442898 0.00444291 0.00445577 0.00446756 0.00447826 0.0044879 0.00449651 0.00450409 0.00451062 0.00451609 0.00452046 0.00452368 0.00452529 0.00452941 0.00452937 0.00452779 0.00452512 0.0045214 0.00451667 0.00451093 0.0045042 0.0044965 0.00448778 0.004478 0.00446718 0.0044553 0.00444235 0.00442831 0.00445478 0.00446684 0.00447785 0.00449765 0.00448848 0.00447832 0.00450061 0.00450897 0.0045164 0.00452294 0.00450586 0.00448781 0.00449675 0.00450467 0.00451163 0.00452494 0.00451947 0.00451312 0.00452859 0.00453338 0.00453729 0.0045489 0.00454655 0.00454335 0.0045393 0.00453441 0.00452867 0.00452207 0.00454325 0.00454812 0.00455219 0.00457035 0.00456782 0.00456459 0.00458686 0.00458869 0.00458998 0.00459075 0.0045722 0.00455547 0.00455797 0.00455969 0.00456065 0.00457395 0.00457394 0.00457338 0.00459107 0.004591 0.00459062 0.00458999 0.00457345 0.00456089 0.00455038 0.00454028 0.00452948 0.00451766 0.00452277 0.00452691 0.00453008 0.00453735 0.0045357 0.00453307 0.00454232 0.00454343 0.00454362 0.00454294 0.00453802 0.00453225 0.00453342 0.00453356 0.00453226 0.00453411 0.00453656 0.00453774 0.00454147 0.0045393 0.00453606 0.00454009 0.00454348 0.00454607 0.00454824 0.00454985 0.0045508 0.004551 0.00456045 0.00455941 0.00455789 0.00456993 0.00457135 0.00457256 0.0045892 0.00458831 0.00458736 0.00458638 0.0045684 0.00455599 0.00455384 0.00455155 0.00454875 0.00456328 0.00456529 0.00456684 0.00458535 0.00458423 0.00458248 0.00457821 0.00455897 0.00454371 0.00453424 0.00453004 0.00452868 0.0045278 0.00452739 0.00452502 0.0045161 0.00449339 0.00445081 0.00443431 0.00456989 0.00453323 0.00441003 0.00443766 0.00448876 0.0045162 0.00451635 0.00448405 0.0044264 0.00441797 0.00448004 0.00451521 0.00451525 0.00447999 0.00441425 0.00435346 0.00436487 0.00438565 0.0044808 0.00443805 0.00441307 0.00440535 0.00435396 0.00441755 0.00448431 0.00452004 0.00453043 0.00449444 0.00442748 0.00444244 0.00451051 0.00454625 0.00456526 0.00452899 0.00446013 0.00439272 0.00437705 0.00436347 0.00441116 0.00442452 0.00443944 0.00445413 0.00440942 0.00447799 0.00454799 0.00458523 0.004599 0.00460392 0.00460615 0.00460756 0.00460867 0.00460957 0.00461031 0.00461094 0.0046115 0.00461198 0.00461236 0.00461261 0.00461268 0.00461251 0.00461204 0.00461122 0.00463891 0.00463906 0.00463905 0.00466957 0.00467006 0.00467045 0.00470533 0.00470418 0.00470294 0.00470158 0.004669 0.00463889 0.00463863 0.00463827 0.00463782 0.00466655 0.00466752 0.00466833 0.00470007 0.00469837 0.00469644 0.00472645 0.00472958 0.00473246 0.00473514 0.00473764 0.00474 0.00474224 0.00477995 0.00477634 0.00477264 0.00480752 0.00481263 0.00481769 0.00485525 0.00484875 0.00484226 0.00483577 0.00480233 0.00476881 0.00476483 0.00476067 0.00475631 0.00478612 0.00479165 0.00479705 0.00482925 0.00482268 0.00481603 0.00480929 0.00478044 0.00475175 0.00472307 0.00469425 0.00466538 0.00463725 0.00463653 0.00463562 0.00463446 0.00466016 0.00466223 0.00466395 0.00469176 0.00468894 0.00468577 0.00468224 0.00465772 0.004633 0.00463117 0.00462893 0.00462578 0.00464741 0.00465159 0.00465487 0.00467833 0.00467403 0.00466887 0.00469042 0.00469648 0.00470173 0.00470663 0.0047112 0.00471546 0.00471941 0.00474696 0.00474193 0.00473666 0.00476232 0.00476856 0.00477459 0.00480243 0.00479543 0.00478826 0.0047809 0.00475586 0.00473111 0.00472529 0.00471916 0.00471225 0.00473441 0.00474216 0.00474915 0.00477332 0.00476549 0.00475691 0.00477968 0.00478908 0.00479776 0.00480621 0.00481446 0.00482254 0.00483049 0.00483834 0.0048461 0.00485382 0.00486152 0.00486922 0.00487696 0.00488475 0.00489264 0.00492991 0.00492071 0.00491166 0.00494634 0.0049566 0.00496708 0.00500409 0.00499238 0.00498093 0.0049697 0.00493624 0.00490273 0.00489388 0.00488509 0.00487632 0.00490662 0.00491642 0.00492628 0.00495865 0.00494773 0.00493692 0.00496716 0.00497897 0.00499091 0.00500303 0.00501537 0.00502797 0.00504088 0.00507736 0.00506329 0.00504958 0.0050835 0.0050983 0.00511349 0.0051492 0.00513293 0.00511709 0.00510163 0.00506904 0.00503616 0.005023 0.00501006 0.00499729 0.00502726 0.00504096 0.00505488 0.0050865 0.00507165 0.00505704 0.00504263 0.00501372 0.00498465 0.00495545 0.00492617 0.00489685 0.00486755 0.00485873 0.00484984 0.00484085 0.00486736 0.00487725 0.00488707 0.00491545 0.00490471 0.00489393 0.00488307 0.00485735 0.00483171 0.00482241 0.00481289 0.00480266 0.00482582 0.00483685 0.0048472 0.00487208 0.00486093 0.00484911 0.0048725 0.0048851 0.00489704 0.00490884 0.00492054 0.00493218 0.00494381 0.0049721 0.00495961 0.00494712 0.00497366 0.00498696 0.0050003 0.00502837 0.00501421 0.00500013 0.00498606 0.00496036 0.00493461 0.00492202 0.00490932 0.00489598 0.0049195 0.00493356 0.00494701 0.00497197 0.00495781 0.00494306 0.00492575 0.00490287 0.00488006 0.00485732 0.00483468 0.00481217 0.00478981 0.00476764 0.00474569 0.00472402 0.00470268 0.00468169 0.00466102 0.0046405 0.00461988 0.0046051 0.00456677 0.00449559 0.00451304 0.00458534 0.00462472 0.0046443 0.00460395 0.00453061 0.00445871 0.0044422 0.00442585 0.00446969 0.00448524 0.00450099 0.00451707 0.00447553 0.00454846 0.00462282 0.0046641 0.00468424 0.00464205 0.00456667 0.00458524 0.00466163 0.00470474 0.00472557 0.00468155 0.00460413 0.0045281 0.00451024 0.00449271 0.00453354 0.00455038 0.00456757 0.00458509 0.00454626 0.00462331 0.00470175 0.00474668 0.00476802 0.00472219 0.00464275 0.00466241 0.00474285 0.00478956 0.00481128 0.0047637 0.00468228 0.00460228 0.00458336 0.00456468 0.00460292 0.00462105 0.00463945 0.00465812 0.00462141 0.00470235 0.00478472 0.00483314 0.00485514 0.00480589 0.00472259 0.00474299 0.00482719 0.00487723 0.00489941 0.0048486 0.00476352 0.00467998 0.00466028 0.00464075 0.00467703 0.00469618 0.00471554 0.0047351 0.00469982 0.00478418 0.00487011 0.00492166 0.00494866 0.00496662 0.00498204 0.00499688 0.00501168 0.00502648 0.00504133 0.00505626 0.00507134 0.00508659 0.00510207 0.00511782 0.00513389 0.00515031 0.00516715 0.00518445 0.00521922 0.00520093 0.00518313 0.00521551 0.00523422 0.00525346 0.00528714 0.005267 0.00524742 0.00522833 0.00519727 0.00516578 0.00514882 0.0051322 0.00511588 0.00514488 0.005162 0.00517945 0.00520969 0.00519145 0.00517356 0.00520188 0.0052205 0.0052395 0.00525893 0.00527882 0.00529924 0.00532024 0.00535272 0.00533091 0.0053097 0.00534002 0.00536198 0.00538457 0.00541576 0.00539243 0.00536975 0.00534766 0.00531862 0.00528903 0.00526886 0.00524914 0.00522981 0.00525735 0.00527733 0.00529774 0.00532612 0.00530506 0.00528445 0.00526424 0.00523774 0.00521085 0.00518358 0.00515597 0.00512804 0.00509982 0.00508396 0.00506827 0.00505269 0.00507874 0.00509502 0.00511144 0.00513865 0.00512154 0.00510459 0.00508777 0.00506256 0.00503719 0.00502171 0.00500621 0.00499015 0.00501364 0.0050303 0.00504643 0.00507102 0.0050543 0.00503706 0.00506039 0.00507816 0.00509545 0.00511279 0.00513023 0.00514781 0.00516558 0.00519219 0.00517379 0.00515561 0.00518072 0.00519948 0.00521847 0.00524438 0.00522483 0.00520554 0.00518647 0.00516217 0.0051376 0.0051197 0.00510189 0.00508361 0.00510668 0.00512544 0.00514375 0.00516757 0.00514879 0.0051296 0.00515233 0.00517193 0.00519114 0.0052105 0.00523005 0.00524984 0.00526991 0.00529031 0.00531109 0.0053323 0.00535397 0.00537616 0.0053989 0.00542225 0.00544624 0.00547604 0.00545139 0.0054274 0.00545527 0.00547986 0.00550513 0.00553113 0.00556007 0.00558747 0.00561617 0.00564499 0.00567471 0.00570537 0.00573703 0.00576711 0.00580038 0.00582998 0.00586488 0.00589392 0.00585852 0.00582423 0.00579618 0.00576343 0.00573489 0.00570366 0.0056734 0.00564404 0.00567106 0.00570091 0.00573168 0.00575877 0.00579099 0.00581756 0.00585125 0.005886 0.00592186 0.00595887 0.00599708 0.00603652 0.00606464 0.00610578 0.00614825 0.00617594 0.00622016 0.00626578 0.00631284 0.00634033 0.00629291 0.00624692 0.00620234 0.00615911 0.00613308 0.00609153 0.00605127 0.00602477 0.00598613 0.00594869 0.00591241 0.00587724 0.00590219 0.00593774 0.00597441 0.00601224 0.00603719 0.00607658 0.0061172 0.00614164 0.00618387 0.00622742 0.00627234 0.00631865 0.00636641 0.00639107 0.00634302 0.00629641 0.00631912 0.00636599 0.0064143 0.00643611 0.00638757 0.00634048 0.0062948 0.00627366 0.0062512 0.00620735 0.00616483 0.00612359 0.00610069 0.00606098 0.00602248 0.00599901 0.00596199 0.00592609 0.00589127 0.00586771 0.00584314 0.00581007 0.0057849 0.00575321 0.00572752 0.0056972 0.00566778 0.00564208 0.00561556 0.00558821 0.00556107 0.00553347 0.00550763 0.00548249 0.00545801 0.00543133 0.00540404 0.00538126 0.00535902 0.00533726 0.00536294 0.00538521 0.00540799 0.00543414 0.00541086 0.00538809 0.00541272 0.00543593 0.00545969 0.00548404 0.00550902 0.00553468 0.00556101 0.00558789 0.00561394 0.0056392 0.00561143 0.0055866 0.00556 0.00553487 0.00550941 0.00548461 0.00546042 0.0054368 0.0054603 0.00548431 0.0055089 0.00553412 0.00555814 0.00558442 0.00560811 0.00563549 0.00566365 0.00569263 0.00572247 0.00574686 0.00577799 0.00580183 0.00583427 0.0058575 0.00582474 0.00579294 0.00577035 0.00573979 0.00571664 0.00568729 0.00565877 0.00563105 0.00565323 0.00568127 0.00571011 0.00573209 0.00576207 0.00578347 0.00581462 0.0058467 0.00587975 0.00591382 0.00594894 0.00598515 0.00600721 0.00604482 0.0060836 0.00610506 0.00614529 0.00618678 0.00622956 0.00625048 0.00620748 0.00616578 0.00612533 0.00608609 0.00606603 0.00602817 0.00599146 0.00597073 0.00593534 0.00590101 0.0058677 0.00583537 0.0058552 0.00588775 0.00592128 0.00595584 0.0059753 0.00601111 0.00604804 0.00606679 0.00610502 0.00614443 0.00618505 0.00622694 0.00627011 0.00631461 0.00636048 0.00640776 0.00645648 0.0064754 0.00642653 0.00637911 0.00639637 0.00644391 0.00649289 0.00650892 0.00645986 0.00641226 0.00636606 0.00635025 0.00633309 0.00628845 0.00624513 0.00620311 0.00621993 0.00626206 0.00630549 0.00632123 0.00627774 0.00623554 0.0062499 0.00629214 0.00633567 0.00638053 0.00642676 0.00647441 0.00652349 0.00653661 0.00648753 0.00643989 0.00645163 0.00649923 0.00654827 0.00655846 0.0066089 0.00661749 0.00666933 0.00672273 0.00672946 0.00678429 0.0067892 0.00684544 0.00684843 0.00690608 0.00690707 0.00696612 0.00702694 0.00702544 0.00696501 0.00690633 0.00690384 0.00696209 0.00702208 0.0070168 0.0069573 0.00689955 0.00684348 0.00684729 0.00684936 0.00684973 0.00679407 0.00679246 0.00673812 0.00673459 0.00668159 0.00667624 0.00662458 0.00657443 0.00656718 0.00651834 0.0065095 0.00646199 0.00641588 0.00640544 0.00639366 0.0063488 0.00630527 0.00626304 0.00627494 0.00631713 0.00636062 0.00637113 0.00632772 0.0062856 0.00624474 0.00623401 0.00622207 0.00620893 0.00619459 0.00617906 0.00616234 0.00612279 0.00608442 0.0060472 0.0060297 0.00599372 0.00595881 0.00594055 0.00590683 0.0058741 0.00589206 0.00592494 0.00594207 0.00597606 0.00601109 0.00602742 0.00606362 0.00610094 0.00613941 0.00615487 0.00611634 0.00607896 0.00604269 0.00600751 0.00599229 0.00595822 0.00592515 0.00590908 0.00587707 0.00586016 0.00584234 0.00582361 0.00580399 0.00577351 0.00575323 0.00572385 0.00570296 0.00567465 0.00564712 0.00562596 0.00560407 0.00558146 0.00555551 0.00553254 0.00550758 0.00548323 0.00545943 0.00543684 0.00541369 0.00539001 0.00536582 0.00534112 0.00531595 0.00529504 0.00527448 0.00525422 0.00527802 0.00529871 0.00531973 0.00534398 0.00532254 0.00530145 0.00528067 0.00525762 0.00523422 0.00521444 0.00519484 0.00517486 0.00519718 0.00521749 0.00523746 0.00526016 0.00523986 0.00521924 0.00524104 0.00526194 0.00528253 0.00530336 0.00532448 0.00534594 0.00536777 0.00539107 0.00536889 0.0053471 0.00536928 0.00539137 0.00541387 0.00543616 0.00541337 0.00539102 0.00536906 0.00534757 0.00532567 0.00530455 0.00528369 0.00526256 0.00528378 0.00530512 0.0053262 0.00534746 0.00532618 0.00530467 0.00528083 0.00526011 0.00523908 0.00521779 0.00519625 0.00517447 0.00515249 0.00513031 0.00510797 0.00508548 0.00506286 0.00504014 0.00501733 0.00499447 0.00497157 0.00494394 0.00489169 0.00480494 0.00482577 0.00491331 0.00496624 0.00498854 0.00493496 0.00484667 0.00476007 0.00473989 0.0047198 0.00475482 0.00477469 0.00479469 0.0048148 0.00478032 0.0048676 0.00495662 0.0050108 0.00503302 0.00497826 0.00488855 0.00490949 0.00499987 0.00505517 0.00507723 0.00502141 0.00493041 0.00484127 0.00482095 0.00480062 0.00483499 0.00485524 0.00487552 0.00489582 0.00486158 0.00495127 0.00504287 0.00509917 0.00512097 0.00506422 0.00497206 0.00499276 0.00508546 0.00514262 0.00516409 0.00510654 0.00501334 0.00492217 0.00490205 0.00488184 0.0049161 0.00493636 0.00495668 0.00497694 0.00494218 0.00503379 0.00512746 0.00518536 0.00520641 0.00514819 0.00505408 0.00507419 0.00516871 0.00522723 0.00524778 0.005189 0.0050941 0.00500137 0.0049818 0.00496207 0.00499697 0.00501688 0.00503652 0.005056 0.00502075 0.00511379 0.00520905 0.00526805 0.00530125 0.00532522 0.00534688 0.00536833 0.00539011 0.00541228 0.00543487 0.00545792 0.00548147 0.00550556 0.00553023 0.00555222 0.00557781 0.00559942 0.00562033 0.00559424 0.00557357 0.00554837 0.00552727 0.00550292 0.00547913 0.00545585 0.00543306 0.00545334 0.00547631 0.00549977 0.00552378 0.00554404 0.00556882 0.00558863 0.00561423 0.00564052 0.00566753 0.00569529 0.00571515 0.00574391 0.00576315 0.00579294 0.0058115 0.00578156 0.00575247 0.00573421 0.00570608 0.00568719 0.00565999 0.00563353 0.00560777 0.00562625 0.00565213 0.00567873 0.00569673 0.0057242 0.00574155 0.00576992 0.00579912 0.00582919 0.005846 0.00581583 0.00578655 0.00580236 0.0058317 0.00586192 0.00589306 0.00590813 0.00594026 0.00597338 0.00598755 0.0060217 0.00605691 0.0060932 0.00613061 0.00616918 0.00618232 0.00614376 0.00610635 0.00611841 0.00615577 0.0061943 0.00620511 0.00616666 0.00612937 0.0060932 0.00608216 0.00607007 0.00603487 0.00600073 0.00596761 0.00595442 0.00592228 0.00589109 0.00587695 0.0058467 0.00581734 0.00578884 0.00577387 0.00575811 0.00573048 0.00571399 0.0056872 0.00567002 0.00564404 0.00561876 0.00560104 0.00558268 0.00556367 0.00553933 0.00551985 0.00549622 0.00547311 0.00545049 0.00543084 0.00541071 0.00538877 0.00536718 0.00534541 0.00536522 0.00538708 0.00540877 0.00542832 0.00540655 0.00538464 0.00540364 0.00542558 0.00544739 0.00546964 0.00549235 0.00551557 0.00553435 0.00555822 0.00557649 0.00559414 0.00557015 0.00555255 0.00552919 0.00551105 0.00548827 0.00546598 0.00544415 0.00542221 0.00544034 0.00546225 0.00548407 0.00550637 0.00552394 0.00554676 0.00556375 0.00558714 0.00561115 0.00563581 0.00566115 0.00567755 0.00570364 0.00571935 0.00574621 0.00576117 0.00573431 0.00570823 0.00569325 0.00566789 0.00565219 0.00562752 0.00560352 0.00558016 0.00559596 0.00561927 0.00564324 0.0056583 0.0056829 0.00569722 0.00572249 0.00574853 0.00577536 0.005803 0.00583148 0.00586084 0.00587411 0.00590433 0.00593549 0.00594777 0.00597985 0.00601291 0.00604701 0.00605812 0.0060241 0.00599111 0.0060014 0.00603428 0.00606819 0.00610316 0.00613922 0.00617641 0.00621475 0.00625428 0.00629503 0.00633703 0.00638033 0.00642496 0.00647095 0.00647852 0.00652576 0.00653173 0.0065802 0.00663014 0.00663417 0.00668537 0.00668759 0.00674004 0.00674036 0.00679405 0.00679239 0.00678905 0.00673623 0.00673911 0.00668739 0.00668826 0.00663769 0.00663668 0.00658728 0.00658448 0.00653626 0.00648947 0.0064847 0.00643906 0.00643269 0.00638822 0.00634507 0.00630321 0.00631015 0.00635183 0.00639478 0.00640002 0.00644407 0.0064477 0.00649283 0.00653934 0.006541 0.00658861 0.00658849 0.0066372 0.0066352 0.00668496 0.00668089 0.00673164 0.00678394 0.00683782 0.00689334 0.00695054 0.00700946 0.00699994 0.00706 0.00704746 0.00710867 0.00717014 0.00723995 0.00722277 0.00715368 0.00709295 0.00707474 0.00713471 0.00720304 0.00726195 0.00723888 0.00731205 0.00728236 0.00734829 0.00732046 0.00739267 0.00735973 0.00742626 0.00749832 0.00756915 0.00765069 0.00760948 0.00768869 0.0076423 0.00772262 0.00780725 0.00788356 0.00783398 0.00775912 0.00767588 0.00759502 0.00752702 0.00756947 0.00748999 0.00753066 0.00746099 0.00742153 0.00738006 0.00744724 0.00740244 0.00748087 0.00754745 0.00762689 0.00770867 0.00778201 0.0077274 0.00765566 0.00757543 0.00752112 0.00759973 0.00766978 0.00775675 0.00769331 0.00776986 0.00770965 0.00779045 0.00787371 0.00795748 0.0078969 0.00798928 0.00807063 0.0080121 0.00811005 0.00804538 0.00794927 0.0078714 0.00793243 0.00784365 0.00775744 0.00781287 0.00773512 0.00765221 0.00759985 0.00768497 0.00762909 0.00769988 0.00778438 0.0075456 0.00747925 0.00753191 0.00757912 0.00763122 0.00755512 0.0076118 0.00754161 0.00746471 0.00739174 0.00744478 0.00749749 0.00743071 0.00735721 0.00729093 0.00733659 0.0072728 0.00731315 0.00735177 0.00739005 0.00732463 0.00725451 0.00728854 0.00721941 0.00725034 0.00718886 0.00721518 0.0071562 0.00718082 0.00711328 0.00705411 0.00703116 0.00708949 0.00706349 0.00712932 0.00710033 0.00715891 0.00712694 0.00718641 0.0071515 0.00721851 0.00728751 0.00724668 0.00718066 0.0071148 0.00705753 0.00709311 0.00703327 0.00706783 0.00700718 0.00703542 0.00697888 0.00700604 0.00694877 0.00697304 0.00699517 0.00701502 0.00703247 0.0069738 0.00698808 0.00693046 0.00694164 0.00688506 0.00687455 0.0068617 0.00691689 0.00690093 0.0069571 0.00693802 0.00688261 0.00682891 0.00684646 0.00679366 0.00680816 0.00682032 0.00683016 0.00677688 0.00672518 0.00667502 0.00666715 0.00671666 0.0067677 0.00675625 0.00670591 0.0066571 0.00664477 0.00669285 0.00674247 0.0067264 0.00677685 0.00675786 0.00680915 0.00686208 0.00691669 0.00689325 0.00683946 0.00678734 0.00673684 0.00668793 0.00670817 0.00666004 0.00667753 0.00663017 0.00661344 0.00659472 0.00664057 0.0066193 0.00666586 0.00671396 0.00676364 0.00681492 0.00686786 0.0069225 0.00689439 0.00694984 0.00691907 0.00697692 0.0069435 0.00699879 0.00696421 0.00702023 0.00707632 0.00714098 0.0072042 0.00716123 0.00722851 0.00718015 0.00724277 0.0073092 0.00737769 0.00732444 0.00725584 0.00719277 0.007144 0.00720571 0.00727106 0.00734018 0.00741153 0.00748315 0.00743048 0.00750091 0.00745331 0.00740406 0.00733106 0.00738241 0.00731729 0.00736394 0.00729234 0.00722282 0.00716407 0.00709855 0.00705714 0.0071249 0.00718058 0.00725059 0.00720561 0.00726737 0.0071353 0.00708099 0.00701457 0.00696387 0.00700514 0.0070419 0.00708256 0.00712985 0.00706886 0.00711606 0.0070555 0.00709931 0.00703591 0.00699506 0.00695243 0.00700973 0.00696527 0.007023 0.00698019 0.00692714 0.00686904 0.00690934 0.00685515 0.00689691 0.00693977 0.00698106 0.00692799 0.00686841 0.00690674 0.00685276 0.0068867 0.00683325 0.0068646 0.00681183 0.00684067 0.00678862 0.00673821 0.00671122 0.00676072 0.00673134 0.00678148 0.00674964 0.00680037 0.00676586 0.00681712 0.00677956 0.00682964 0.00688798 0.00684646 0.00678941 0.0067406 0.00669176 0.00672948 0.006681 0.00671622 0.00666816 0.00670052 0.00665296 0.00668279 0.00663579 0.0066633 0.0066894 0.00664213 0.00659639 0.00655212 0.00657423 0.00653061 0.00655034 0.00656831 0.00658431 0.00659816 0.00660977 0.00661912 0.00662634 0.00663163 0.00658384 0.00658692 0.00654008 0.00654124 0.00649539 0.0064948 0.00644998 0.00640651 0.00640393 0.00636147 0.00635729 0.00631585 0.00632028 0.00632346 0.00636435 0.00636595 0.00640779 0.00645092 0.00645054 0.00649463 0.00649248 0.00653747 0.0065333 0.00657912 0.00657254 0.00656388 0.00651939 0.00652735 0.00648353 0.00648885 0.00644573 0.00644884 0.00640651 0.00640778 0.00636632 0.00632611 0.00632539 0.00628606 0.00628381 0.00628034 0.00627565 0.00626973 0.00626261 0.00622323 0.00618503 0.00614799 0.00615565 0.00619251 0.00623053 0.00623666 0.00619886 0.0061622 0.00612667 0.0061199 0.00611206 0.00607723 0.00604347 0.00601073 0.00601908 0.00605165 0.00608524 0.00609222 0.00605883 0.00602647 0.00603288 0.006065 0.00609815 0.00613235 0.00616765 0.00620406 0.00624161 0.00624536 0.0062081 0.00617197 0.00617517 0.00621098 0.00624794 0.00624936 0.00628714 0.00628707 0.00632566 0.00636546 0.00636334 0.0064039 0.00639978 0.00644101 0.00643444 0.00647626 0.00646684 0.00650924 0.006553 0.00653988 0.00649686 0.0064552 0.00644141 0.00648233 0.00652462 0.0065074 0.00646585 0.00642566 0.00638679 0.00640182 0.00641487 0.00642576 0.00638595 0.00639389 0.00635457 0.00635979 0.00632101 0.006324 0.00628586 0.00624888 0.00624967 0.00621342 0.00621274 0.00617727 0.0061429 0.00614047 0.00613696 0.00610303 0.00607015 0.0060383 0.00604273 0.00607427 0.00610684 0.00610961 0.00607737 0.00604615 0.0060486 0.00607947 0.00611135 0.00614429 0.00617831 0.00617833 0.00621305 0.00621159 0.00624694 0.0062834 0.00627948 0.00631644 0.00630999 0.00634737 0.00633801 0.00637581 0.00636351 0.00634922 0.0063129 0.00632646 0.00629063 0.0063014 0.00626596 0.00627376 0.00623864 0.00624363 0.00620888 0.00617519 0.00617734 0.00614415 0.0061447 0.00611214 0.00608062 0.00605012 0.00605079 0.0060809 0.00611201 0.00611091 0.00614254 0.00613962 0.0061716 0.0062046 0.00619839 0.00623163 0.00622245 0.00625597 0.0062439 0.00627781 0.0062632 0.00629757 0.00633317 0.00637002 0.00640816 0.00644761 0.00648842 0.00646788 0.0065093 0.00648658 0.00652858 0.00657201 0.00661691 0.00659031 0.00654631 0.00650375 0.00647767 0.00651933 0.0065624 0.00660694 0.00657664 0.00662165 0.00658867 0.00663407 0.00659873 0.00664448 0.00660891 0.00665501 0.00670264 0.00675021 0.006806 0.00676978 0.00681777 0.00678211 0.006834 0.00689268 0.00694119 0.00690119 0.00685392 0.00679817 0.00674412 0.00669835 0.00673523 0.00668525 0.0067153 0.00666851 0.00663751 0.00660469 0.00665258 0.00656067 0.00659259 0.00662228 0.00657708 0.00653335 0.00656431 0.00652117 0.00655447 0.00651166 0.00654474 0.00650225 0.00653311 0.006491 0.0064503 0.00642148 0.00646118 0.00643027 0.00647027 0.00643914 0.00647946 0.00645067 0.00649139 0.0064647 0.00650509 0.00654817 0.0065173 0.00647523 0.00643585 0.00639634 0.00642422 0.00638638 0.00641131 0.00637329 0.00640019 0.00636255 0.00639161 0.00635428 0.00638312 0.00641096 0.0064374 0.00646259 0.00642281 0.00644596 0.0064067 0.00642784 0.00638913 0.00636877 0.00634723 0.00638436 0.00636089 0.00639848 0.00637295 0.00633624 0.0063008 0.00632458 0.00628953 0.00631137 0.00633213 0.00635173 0.00631561 0.00628073 0.00624707 0.00622966 0.0062626 0.00629675 0.00627675 0.00624336 0.00621115 0.00619165 0.0062231 0.00625571 0.00623362 0.0062666 0.00624247 0.00627577 0.0063103 0.00634607 0.00631822 0.00628343 0.00624986 0.0062175 0.0061863 0.00621036 0.00617942 0.00620181 0.00617117 0.00614962 0.00612732 0.00615625 0.00613374 0.00616291 0.00619321 0.00622467 0.0062573 0.00629114 0.00632621 0.00630113 0.00633658 0.00631319 0.00634859 0.00632259 0.00635945 0.00628809 0.00625403 0.00627824 0.00624532 0.00626694 0.00623395 0.00620216 0.00618211 0.00621251 0.00619002 0.00622198 0.00616045 0.00613076 0.0061516 0.00617153 0.00614218 0.00611363 0.00608618 0.00610566 0.00607867 0.00609949 0.00612092 0.00614165 0.00616136 0.00618011 0.00619789 0.00621459 0.00623001 0.00619799 0.00621115 0.00617952 0.00619002 0.00615866 0.00616619 0.00613499 0.00610477 0.00610862 0.00607858 0.00608027 0.00605061 0.00604949 0.00604709 0.00607547 0.00607051 0.00609894 0.00612831 0.00611945 0.00614896 0.0061373 0.00616709 0.00615308 0.00618327 0.00616727 0.0061502 0.0061214 0.00613777 0.00610937 0.00612399 0.00609598 0.00610856 0.00608086 0.00609094 0.00606339 0.00603677 0.00604297 0.00601631 0.00601959 0.00602131 0.00602192 0.00602166 0.00602062 0.00601873 0.00601593 0.00601218 0.00600745 0.00600176 0.00599511 0.00598753 0.005979 0.00596953 0.00595912 0.0059281 0.00591667 0.00588651 0.00585725 0.00584479 0.00581635 0.00578876 0.00576199 0.00573603 0.00574883 0.0057747 0.00580138 0.00582888 0.0058406 0.00586887 0.00589803 0.00590867 0.00593863 0.00594824 0.00591843 0.00588955 0.00587964 0.0058515 0.00582423 0.0058132 0.00578664 0.00576089 0.00573594 0.00572374 0.00571084 0.00568639 0.00567268 0.00564886 0.00563439 0.00561115 0.00558855 0.00557326 0.0055574 0.00554095 0.0055187 0.00550165 0.00547986 0.00545801 0.0054752 0.00549697 0.00551357 0.00553521 0.00555117 0.00556656 0.00554516 0.00552963 0.00550809 0.0054919 0.00546804 0.00545122 0.00543393 0.0054162 0.00539803 0.00537944 0.00536045 0.00534108 0.00532134 0.00528802 0.00522882 0.00513325 0.00515245 0.00524831 0.00530768 0.00532699 0.00526749 0.00517137 0.00507756 0.00505886 0.00503992 0.00507543 0.00509465 0.00511365 0.00513241 0.00509599 0.00518999 0.00528634 0.00534595 0.00536454 0.00530485 0.00520831 0.00522629 0.005323 0.00538274 0.00540053 0.00534077 0.00524392 0.00514951 0.00513198 0.00511414 0.00515091 0.00516913 0.00518706 0.00520467 0.0051667 0.00526119 0.00535814 0.00541789 0.00543482 0.0053751 0.00527807 0.00529456 0.00539163 0.00545129 0.00548438 0.00550022 0.00552377 0.00553892 0.00556014 0.00558138 0.00560323 0.00562571 0.00563966 0.00566267 0.00567583 0.00569942 0.00571176 0.00568833 0.00566562 0.00565296 0.00563078 0.00561731 0.00559562 0.00557455 0.00555353 0.00556759 0.00558839 0.00560926 0.00562231 0.00564362 0.00565584 0.00567763 0.00570015 0.0057234 0.00574742 0.00577221 0.00579781 0.00580821 0.00583446 0.00586157 0.00587081 0.00589861 0.00592731 0.00595694 0.00596474 0.00593531 0.00590682 0.00587923 0.00585252 0.00584389 0.00581783 0.00579261 0.00578278 0.00575817 0.00573435 0.00571129 0.00568899 0.00569969 0.00572176 0.00574459 0.0057682 0.0057775 0.00580168 0.00582668 0.00583475 0.00586036 0.00588682 0.00591417 0.00594243 0.00597162 0.00597758 0.00594866 0.00592067 0.00592629 0.00595398 0.00598261 0.00598669 0.0059584 0.00593103 0.00590456 0.0058995 0.00589358 0.00586738 0.00584205 0.00581757 0.00581 0.00578607 0.00576296 0.00575413 0.00573154 0.00570973 0.00568867 0.00567837 0.00566742 0.00564657 0.00563474 0.00561433 0.00560165 0.00558109 0.00555842 0.00554467 0.00553038 0.00551556 0.00548281 0.00546729 0.00540772 0.00531063 0.00521609 0.00520001 0.00518354 0.00522196 0.0052389 0.00525548 0.00527168 0.00523178 0.00532626 0.00542335 0.0054385 0.00549783 0.00551233 0.00552632 0.00546734 0.00545317 0.00535619 0.00534145 0.00524705 0.00528749 0.00530289 0.00526189 0.00527628 0.00537045 0.00538423 0.005481 0.00553978 0.00557162 0.00559402 0.00560637 0.00562641 0.00563788 0.00565777 0.00566835 0.00564876 0.00562932 0.00561814 0.00559633 0.00558425 0.00555269 0.00549414 0.00539751 0.00541029 0.00550675 0.00556506 0.00557687 0.00560783 0.00561875 0.00563991 0.00565902 0.0056783 0.00569832 0.0057191 0.00574064 0.00574905 0.00577108 0.00579392 0.00580103 0.00582438 0.00584856 0.0058736 0.00587899 0.00585428 0.00583042 0.0058074 0.0057852 0.0057785 0.00575678 0.00573585 0.00572781 0.00570733 0.00568763 0.00566867 0.0056499 0.0056593 0.00567771 0.00569632 0.0057157 0.00572341 0.00574321 0.00576381 0.00577013 0.00579117 0.00581301 0.00583568 0.00585919 0.00588354 0.00590877 0.00593488 0.00596189 0.00598984 0.00599209 0.00596451 0.00593786 0.00594002 0.0059663 0.00599351 0.00599417 0.00596735 0.00594146 0.00591647 0.00591466 0.00591211 0.00588726 0.00586328 0.00584015 0.00584384 0.00586658 0.00589018 0.00589238 0.00586917 0.00584681 0.00584916 0.00587112 0.00589395 0.00591765 0.00594223 0.00596769 0.00599405 0.00599296 0.00596718 0.00594226 0.00594124 0.00596546 0.00599048 0.00598611 0.00601102 0.00600355 0.00602839 0.00605414 0.00604305 0.00606901 0.00605577 0.00608205 0.00606705 0.0060937 0.00607711 0.00610411 0.00613219 0.00611325 0.00608592 0.00605966 0.0060413 0.00606679 0.00609332 0.00607273 0.00604702 0.00602234 0.00599866 0.00601684 0.00603443 0.00605116 0.00602624 0.00604145 0.00601686 0.00603051 0.00600625 0.00601808 0.00599406 0.00597095 0.00597958 0.00595644 0.00596201 0.00593868 0.00591609 0.00591781 0.00591817 0.00589493 0.00587253 0.00585097 0.00585224 0.0058733 0.00589516 0.00589424 0.00587312 0.00585272 0.00583305 0.00583197 0.00583025 0.00582804 0.00582531 0.00582194 0.00581786 0.00579639 0.00577574 0.00575589 0.0057499 0.00573046 0.0057118 0.00570438 0.00568613 0.00566809 0.00567628 0.00569393 0.0057011 0.00571857 0.00573683 0.00574252 0.00576117 0.00578062 0.00580087 0.00580464 0.00578479 0.00576576 0.00574754 0.00573011 0.00572467 0.00570762 0.00569079 0.00568385 0.00566459 0.0056566 0.00564802 0.00563885 0.00562909 0.0055988 0.00558812 0.00553034 0.00551881 0.00542255 0.00532919 0.00531669 0.0053037 0.00529023 0.00533243 0.00531788 0.00534653 0.00536017 0.00537321 0.00538589 0.0053412 0.00543428 0.00544548 0.00554131 0.00555173 0.00560891 0.00561845 0.00556159 0.00546627 0.00545615 0.00536366 0.00535269 0.00539822 0.00540991 0.0054211 0.00537412 0.00538405 0.00547585 0.00557089 0.00562742 0.00563581 0.00557963 0.00548489 0.00549336 0.00558778 0.0056436 0.00567196 0.00567872 0.0056971 0.00571349 0.00571873 0.00573491 0.0057519 0.00576971 0.00578833 0.00580777 0.00581037 0.00579132 0.0057731 0.00577606 0.00579388 0.00581252 0.00581414 0.005796 0.00577863 0.00576207 0.00575907 0.00575571 0.00573914 0.00572339 0.00570791 0.00570279 0.00568486 0.00565738 0.00565079 0.00559536 0.00550127 0.00541061 0.0054023 0.00539345 0.00544205 0.00543177 0.00545167 0.00546061 0.00546913 0.00541837 0.00550861 0.00560235 0.00560878 0.0056634 0.00569043 0.0056955 0.00571253 0.00572758 0.00574291 0.00574633 0.00573141 0.00571678 0.00570017 0.00567402 0.00566891 0.0056147 0.0055217 0.00551541 0.00542558 0.00547712 0.00548461 0.0054323 0.00543859 0.00552756 0.0056202 0.00562541 0.00567883 0.00570456 0.00572074 0.00573493 0.00574939 0.00576464 0.00578067 0.00579743 0.0058149 0.00583307 0.00585191 0.00587143 0.00589161 0.0059125 0.00593409 0.00592733 0.00594872 0.00593918 0.00596061 0.00598296 0.00597066 0.00599327 0.00597941 0.00600233 0.00598701 0.00601022 0.00599337 0.00597598 0.00595426 0.00597089 0.00594938 0.00596478 0.0059435 0.00595746 0.00593647 0.005949 0.00592828 0.00590845 0.00591862 0.00589891 0.00590672 0.00588686 0.00586772 0.00584924 0.00584442 0.00586185 0.00588 0.00587141 0.00588951 0.00587899 0.00589725 0.0059164 0.00590377 0.00592317 0.00590918 0.00592881 0.00591366 0.00593349 0.0059181 0.00593813 0.0059591 0.00598103 0.00600393 0.00602782 0.00605273 0.00603489 0.00606009 0.00604347 0.00606842 0.00609546 0.0061236 0.00610354 0.00607618 0.00604991 0.0060257 0.00600163 0.00601866 0.00599542 0.00601071 0.00598752 0.00597259 0.00595698 0.00597911 0.0059364 0.00595132 0.00596532 0.00594407 0.00592377 0.00590439 0.0058918 0.00591116 0.00593041 0.00591617 0.00589759 0.00587889 0.00586225 0.00587451 0.00588593 0.00589898 0.00588078 0.00589475 0.00587674 0.00589046 0.00587264 0.00588527 0.00586768 0.00585095 0.00586161 0.00584507 0.00585413 0.00583762 0.00582935 0.00582007 0.00583509 0.00582446 0.00583966 0.00585571 0.00584338 0.00585962 0.00584703 0.00586346 0.00585167 0.00586836 0.00585694 0.00584532 0.00583028 0.00584127 0.00582573 0.00583585 0.00582088 0.00583146 0.00581675 0.00582801 0.00581349 0.00579981 0.00581011 0.0057966 0.00580587 0.00581441 0.00582185 0.00582766 0.00583141 0.00581422 0.00579765 0.00578172 0.00578117 0.00579606 0.00581155 0.00580677 0.00579236 0.00577857 0.0057654 0.00576688 0.00576645 0.00575186 0.005738 0.00572435 0.00572728 0.00574019 0.00575321 0.00575282 0.00574085 0.00572893 0.00572874 0.00573954 0.0057504 0.00576188 0.00577399 0.00578677 0.00580023 0.00579246 0.00577981 0.0057679 0.00576083 0.00577198 0.00578389 0.00577495 0.00578697 0.00577765 0.00578985 0.00580288 0.00579349 0.00580677 0.00579776 0.0058116 0.00580183 0.00581535 0.00578846 0.00577663 0.00578518 0.00577339 0.00578104 0.00576941 0.00575859 0.00576627 0.0057557 0.00576373 0.0057533 0.00574364 0.00575043 0.0057567 0.00574619 0.00573636 0.00572648 0.00572258 0.00573167 0.00574076 0.00573472 0.00572612 0.0057176 0.00571154 0.00572038 0.00572857 0.00573681 0.00574593 0.00573925 0.00574874 0.00574265 0.005752 0.00576201 0.00575463 0.00576558 0.00574523 0.00573628 0.00572794 0.00573342 0.00572526 0.00573057 0.00572279 0.00571443 0.00570403 0.00569428 0.00570791 0.0057173 0.00571172 0.00572022 0.00570149 0.00568172 0.00565636 0.00567261 0.00568775 0.00569879 0.00570644 0.00571152 0.00571473 0.00571588 0.00571483 0.00571227 0.00570867 0.00568339 0.00563038 0.00553843 0.00553311 0.00544455 0.00549836 0.00549165 0.00550512 0.00545044 0.00545644 0.00554367 0.00563506 0.00568758 0.0056911 0.00563927 0.00554869 0.00546254 0.00552037 0.00551232 0.00553008 0.00546892 0.00555313 0.00564247 0.00569306 0.00569302 0.00564383 0.00555649 0.00555754 0.00564246 0.00569056 0.00568479 0.00563632 0.00555328 0.00548377 0.00548195 0.00547579 0.00554182 0.00555431 0.00556385 0.00556491 0.00547623 0.00553917 0.00562253 0.00567433 0.00565736 0.00560006 0.00551498 0.00549034 0.0055779 0.00563528 0.00560451 0.00556536 0.00546687 0.00551023 0.00546094 0.00546209 0.00556025 0.00556786 0.00558646 0.0307028 0.0237691 0.0224447 0.020804 0.0268859 0.0245279 0.0232588 0.0218082 0.0281016 0.0150134 0.0162216 0.0405991 0.0148355 0.0200074 0.0136536 0.0190405 0.0328122 0.0177755 0.0241171 0.0174491 0.0376193 0.0422521 0.0199821 0.0275565 0.0202499 0.0379462 0.0431593 0.0484645 0.0432655 0.0762251 0.0266159 0.0367176 0.0270997 0.0502917 0.0615357 0.0690349 0.0327096 0.0434192 0.0727804 0.0816642 0.10166 0.0800941 0.0895576 0.0461949 0.0583201 0.0661122 0.00913101 0.0106956 0.0105042 0.00914274 0.0107438 0.0127469 0.00502509 0.00577393 0.00590311 0.00560044 0.00537278 0.00523195 0.0051591 0.00512708 0.00512 0.00512568 0.0051384 0.0051537 0.00516898 0.00518449 0.00520041 0.00521683 0.00523379 0.00525129 0.00526931 0.00528782 0.0053068 0.00532622 0.00534607 0.00536633 0.00538697 0.00540797 0.00542931 0.00545095 0.00547288 0.00549506 0.00551747 0.00554008 0.00556286 0.00558578 0.00560882 0.00563194 0.00565513 0.00567834 0.00570156 0.00572476 0.00574791 0.00577099 0.00579397 0.00581683 0.00583954 0.00586193 0.00588427 0.00590654 0.00592843 0.00595005 0.00597153 0.00599257 0.00601313 0.00603349 0.00605365 0.00607327 0.00609235 0.00611117 0.00612956 0.0061475 0.00616499 0.006182 0.00619869 0.00621473 0.00623011 0.00624497 0.00625947 0.0062736 0.00628703 0.0062999 0.00631205 0.00632379 0.00633511 0.00634572 0.00635584 0.00636557 0.00637535 0.00638584 0.00639945 0.00641714 0.00644071 0.00645863 0.0064693 0.00651976 0.00660929 0.00670368 0.0133582 0.0118712 0.0117397 0.0164049 ) ; boundaryField { bottomEmptyFaces { type empty; } topEmptyFaces { type empty; } inlet { type zeroGradient; } outlet { type zeroGradient; } walls { type zeroGradient; } rightWall { type zeroGradient; } symmetryLine { type symmetryPlane; } } // ************************************************************************* //
[ "mhoeper3234@gmail.com" ]
mhoeper3234@gmail.com
cb1c54c6a8b8241b86a78b77c47a7da585c7632d
ea065794fe1b35dbc7923d539b4f85bd41277c2b
/is_array_dominated.cc
656174769e94d73787a8bc982c83f1a84055075c
[]
no_license
sergiovasquez122/EPI_SOLUTIONS
6e93e98ad8b0c3b8e0e162f5e8c04b7a6b24f47f
6e39cf2a981d34516fd1037d0ce3c65d0ebb4133
refs/heads/master
2022-12-09T17:55:48.066759
2020-08-15T01:33:50
2020-08-15T01:33:50
268,199,261
0
0
null
null
null
null
UTF-8
C++
false
false
1,931
cc
#include <algorithm> #include <iterator> #include <vector> #include "test_framework/generic_test.h" #include "test_framework/test_failure.h" #include "test_framework/timed_executor.h" using std::vector; using std::sort; class Team { public: explicit Team(const vector<int>& height) { transform(begin(height), end(height), back_inserter(players_), [](int h) { return Player{h}; }); } // Checks if team0 can be placed in front of team1. static bool ValidPlacementExists(const Team& team0, const Team& team1) { auto p1 = team0.players_, p2 = team1.players_; sort(p1.begin(), p1.end()); sort(p2.begin(), p2.end()); for(int i = 0;i < p1.size();++i){ if(p2[i].height <= p1[i].height){ return false; } } return true; } private: struct Player { bool operator<(const Player& that) const { return height < that.height; } int height; }; vector<Player> players_; }; void ValidPlacementExistsWrapper(TimedExecutor& executor, const vector<int>& team0, const vector<int>& team1, bool expected_01, bool expected_10) { Team t0(team0), t1(team1); bool result_01 = executor.Run([&] { return Team::ValidPlacementExists(t0, t1); }); bool result_10 = executor.Run([&] { return Team::ValidPlacementExists(t1, t0); }); if (result_01 != expected_01 || result_10 != expected_10) { throw TestFailure(""); } } int main(int argc, char* argv[]) { std::vector<std::string> args{argv + 1, argv + argc}; std::vector<std::string> param_names{"executor", "team0", "team1", "expected_01", "expected_10"}; return GenericTestMain(args, "is_array_dominated.cc", "is_array_dominated.tsv", &ValidPlacementExistsWrapper, DefaultComparator{}, param_names); }
[ "sergiovasquez122@gmail.com" ]
sergiovasquez122@gmail.com
290b8e2cdf09f2a85a6b4fe6032f164f46b8e577
9fe2d608e47449b54fb1e35a9b671ba646fbe57c
/Mines Courses/CSCI_262/markov/markov/brute_model.h
19676508be93aa18c0423a0bac339eab860729a0
[]
no_license
CarsonStevens/Mines-Courses
4ab0e4ef2fe54bdf799eef8a089a1cd980ef5772
1328e882e52d9eecfebc23e98cee41f49b8615dd
refs/heads/master
2021-06-07T10:39:59.126121
2021-05-30T17:37:31
2021-05-30T17:37:31
164,183,386
5
1
null
null
null
null
UTF-8
C++
false
false
840
h
/* CSCI 262 Data Structures, Fall 2017, Project 4 - Markov brute_model.h Class declaration for brute_model, the brute-force Markov text generation model. Author: C. Painter-Wakefield Modified: 11/2/2017 */ #ifndef _BRUTE_MODEL_H #define _BRUTE_MODEL_H #include "model.h" #include <iostream> using namespace std; class brute_model : public markov_model { public: // give the model the example text and the model order; the model // should do any preprocessing in this call virtual void initialize(std::string text, int order) { // copy first order characters to back to simulate wrap-around _data = text + text.substr(0, order); _order = order; } // produce a text in the style of the example virtual std::string generate(int size); protected: std::string _data; int _order; }; #endif
[ "carsonstevens@mines.edu" ]
carsonstevens@mines.edu
fe9f2572e2574365e0042749eda675ff9c54c2e4
f6a1797248747340827bf8bd234c5a9fbf287a43
/0710/vector.cpp
949e7b8b8c822cae0155d15e5446b3166a627c1f
[]
no_license
Andrew-liu/learn_cplusplus
b58e90ee3723610b9d59762f9300b5598d89e00d
d5f0f4a40a6d7155a0a2746ec6acf1dcde1012eb
refs/heads/master
2016-09-05T22:38:42.123786
2014-08-07T06:53:51
2014-08-07T06:53:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
992
cpp
#include <iostream> #include <string> #include <vector> using namespace std; int main(int argc, const char *argv[]) { //这里声明了一个int类型的空数组 //vector不是一个完整的类型,必须加上类型信息 //vector<int>才是合法的类型 vector<int> vec; vector<string> str; //push_back在数组后面追加元素 vec.push_back(13); vec.push_back(13); vec.push_back(13); vec.push_back(13); vec.push_back(13); vec.push_back(13); str.push_back("string"); str.push_back("string"); str.push_back("string"); str.push_back("string"); str.push_back("string"); cout<< "size:"<<vec.size()<<endl; for(vector<int>::size_type ix=0;ix!=vec.size();++ix) cout<<vec[ix]<<" "; cout<<endl; for(vector<string>::size_type i=0;i!=str.size();++i) cout<< str[i] <<" "; cout<<endl; for(vector<int>::iterator it=vec.begin();it!=vec.end();it++) cout<<*it<<endl; return 0; }
[ "xujie@ubuntu.(none)" ]
xujie@ubuntu.(none)
448c965b640f585a6075e639ea9ea0abb0e484dc
054b466fdd3b41a68910bc0b043e2914da431834
/utils.cc
3adab266537af318ce85cde07569a1eadac857cf
[]
no_license
j2meee/chess-1
afb5030393f0598f4da5efbaceeef2d669acdaa1
eeff7c3e2e1eed337923e90085b2934adeb9e1b5
refs/heads/master
2020-04-08T22:58:58.016572
2014-12-11T03:45:37
2014-12-11T03:45:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,219
cc
#include "utils.h" std::string utils::getTimestamp() { time_t now = time(0); struct tm tstruct; tstruct = *localtime(&now); char buf[80]; strftime(buf, sizeof(buf), "%X", &tstruct); return buf; } long long utils::getTime() { return std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count(); } bool utils::inputWaiting() { #ifdef WIN32 static int init = 0, pipe; static HANDLE inh; DWORD dw; if(!init) { init = 1; inh = GetStdHandle(STD_INPUT_HANDLE); pipe = !GetConsoleMode(inh, &dw); if(!pipe) { SetConsoleMode(inh, dw & ~(ENABLE_MOUSE_INPUT|ENABLE_WINDOW_INPUT)); FlushConsoleInputBuffer(inh); } } if(pipe) { if(!PeekNamedPipe(inh, NULL, 0, NULL, &dw, NULL)) { return 1; } return dw > 0; } else { GetNumberOfConsoleInputEvents(inh, &dw); return dw <= 1 ? false : dw > 0; } #else fd_set fds; struct timeval tv; tv.tv_sec = 0; tv.tv_usec = 1; FD_ZERO(&fds); FD_SET(fileno(stdin), &fds); return select(sizeof(fds) * 8, &fds, NULL, NULL, &tv); #endif }
[ "stuartlneivandt@gmail.com" ]
stuartlneivandt@gmail.com
77e75e9ef1c088f42f7156654370583aa9a5deba
cc3ebcf07edbedb27bd8c845777995f0abaf2b61
/test/WProgram.h
c7b49345f06b0e53c56aad4bbe3025e3bdc2e663
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
Reggi3/Adafruit_ADS1X15
0dc83035c5e36955c14b9e89ab35894e3064c4ea
27398a823af912ab24a7344c1e09d64ae34e3b76
refs/heads/master
2020-12-14T18:42:21.221667
2014-03-28T20:28:48
2014-03-28T20:28:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
384
h
#ifndef WPROGRAM_FAKE #define WPROGRAM_FAKE inline void delay(int) {} static class { public: inline static void send(int) {} inline static void beginTransmission(int) {} inline static int receive() {return 0;} inline static void endTransmission() {} inline static void begin() {} inline static int requestFrom(uint8_t&, uint8_t) { return 0; } } Wire; #endif
[ "alevy@redhat.com" ]
alevy@redhat.com
d33da2de2ec5766068c6f49332c2bbfdbd905396
9b88e08029d3c2ae5ac338f5333922c67547e0bf
/cpp_std_test_and_practice/idoms/AttorneyClientTS.h
79cb81c8e7ce77d32564f07688463cd49280140c
[]
no_license
boyanglin/practice_and_test
a64f3288395cd51927b521375e7a747ed4d5e52f
5ce3561e19550fb921bdd355940b664e1bb14196
refs/heads/master
2021-01-21T04:42:06.071924
2018-01-08T17:14:22
2018-01-08T17:14:22
50,656,543
0
0
null
null
null
null
UTF-8
C++
false
false
304
h
#ifndef ATTORNEY_CLIENT_TS_H_ #define ATTORNEY_CLIENT_TS_H_ #include <boost/test/unit_test.hpp> namespace Idioms_TS { class AttorneyClientTS { public: static void testAttorney(); static boost::unit_test_framework::test_suite* suite(); }; } //namespace Idioms_TS #endif
[ "poyang.lin@uk.bp.com" ]
poyang.lin@uk.bp.com
2e836c817cf2dee5b88bc7532f7648c05ab68802
3778827bdda4e57afb3fcf09f9bb2db6dd23146a
/src/mlpack/methods/ann/convolution_rules/fft_convolution.hpp
3003bbe44b899287ef259ecf60e83579d9fad5c6
[ "BSD-3-Clause" ]
permissive
ersanliqiao/mlpack
f98533bb538a4784fe38a07dd325dc40bf6ac769
ad557ad90d1f1ed995560aefec202efe8200c945
refs/heads/master
2021-01-17T21:36:45.591321
2015-09-19T02:47:26
2015-09-19T02:47:26
42,104,266
1
0
null
2015-09-19T02:47:27
2015-09-08T09:55:33
C++
UTF-8
C++
false
false
8,059
hpp
/** * @file fft_convolution.hpp * @author Shangtong Zhang * @author Marcus Edel * * Implementation of the convolution through fft. */ #ifndef __MLPACK_METHODS_ANN_CONVOLUTION_RULES_FFT_CONVOLUTION_HPP #define __MLPACK_METHODS_ANN_CONVOLUTION_RULES_FFT_CONVOLUTION_HPP #include <mlpack/core.hpp> #include "border_modes.hpp" namespace mlpack { namespace ann /** Artificial Neural Network. */ { /** * Computes the two-dimensional convolution through fft. This class allows * specification of the type of the border type. The convolution can be compute * with the valid border type of the full border type (default). * * FullConvolution: returns the full two-dimensional convolution. * ValidConvolution: returns only those parts of the convolution that are * computed without the zero-padded edges. * * @tparam BorderMode Type of the border mode (FullConvolution or * ValidConvolution). * @tparam padLastDim Pad the last dimension of the input to to turn it from * odd to even. */ template<typename BorderMode = FullConvolution, const bool padLastDim = false> class FFTConvolution { public: /* * Perform a convolution through fft (valid mode). This method only supports * input which is even on the last dimension. In case of an odd input width, a * user can manually pad the imput or specify the padLastDim parameter which * takes care of the padding. The filter instead can have any size. When using * the valid mode the filters has to be smaller than the input. * * @param input Input used to perform the convolution. * @param filter Filter used to perform the conolution. * @param output Output data that contains the results of the convolution. */ template<typename eT, typename Border = BorderMode> static typename std::enable_if< std::is_same<Border, ValidConvolution>::value, void>::type Convolution(const arma::Mat<eT>& input, const arma::Mat<eT>& filter, arma::Mat<eT>& output) { arma::Mat<eT> inputPadded = input; arma::Mat<eT> filterPadded = filter; if (padLastDim) inputPadded.resize(inputPadded.n_rows, inputPadded.n_cols + 1); // Pad filter and input to the output shape. filterPadded.resize(inputPadded.n_rows, inputPadded.n_cols); output = arma::real(ifft2(arma::fft2(inputPadded) % arma::fft2( filterPadded))); // Extract the region of interest. We don't need to handle the padLastDim in // a special way we just cut it out from the output matrix. output = output.submat(filter.n_rows - 1, filter.n_cols - 1, input.n_rows - 1, input.n_cols - 1); } /* * Perform a convolution through fft (full mode). This method only supports * input which is even on the last dimension. In case of an odd input width, a * user can manually pad the imput or specify the padLastDim parameter which * takes care of the padding. The filter instead can have any size. * * @param input Input used to perform the convolution. * @param filter Filter used to perform the conolution. * @param output Output data that contains the results of the convolution. */ template<typename eT, typename Border = BorderMode> static typename std::enable_if< std::is_same<Border, FullConvolution>::value, void>::type Convolution(const arma::Mat<eT>& input, const arma::Mat<eT>& filter, arma::Mat<eT>& output) { // In case of the full convolution outputRows and outputCols doesn't // represent the true output size when the padLastDim parameter is set, // instead it's the working size. const size_t outputRows = input.n_rows + 2 * (filter.n_rows - 1); size_t outputCols = input.n_cols + 2 * (filter.n_cols - 1); if (padLastDim) outputCols++; // Pad filter and input to the working output shape. arma::Mat<eT> inputPadded = arma::zeros<arma::Mat<eT> >(outputRows, outputCols); inputPadded.submat(filter.n_rows - 1, filter.n_cols - 1, filter.n_rows - 1 + input.n_rows - 1, filter.n_cols - 1 + input.n_cols - 1) = input; arma::Mat<eT> filterPadded = filter; filterPadded.resize(outputRows, outputCols); // Perform FFT and IFFT output = arma::real(ifft2(arma::fft2(inputPadded) % arma::fft2( filterPadded))); // Extract the region of interest. We don't need to handle the padLastDim // parameter in a special way we just cut it out from the output matrix. output = output.submat(filter.n_rows - 1, filter.n_cols - 1, 2 * (filter.n_rows - 1) + input.n_rows - 1, 2 * (filter.n_cols - 1) + input.n_cols - 1); } /* * Perform a convolution through fft using 3rd order tensors. This method only * supports input which is even on the last dimension. In case of an odd input * width, a user can manually pad the imput or specify the padLastDim * parameter which takes care of the padding. The filter instead can have any * size. * * @param input Input used to perform the convolution. * @param filter Filter used to perform the conolution. * @param output Output data that contains the results of the convolution. */ template<typename eT> static void Convolution(const arma::Cube<eT>& input, const arma::Cube<eT>& filter, arma::Cube<eT>& output) { arma::Mat<eT> convOutput; FFTConvolution<BorderMode>::Convolution(input.slice(0), filter.slice(0), convOutput); output = arma::Cube<eT>(convOutput.n_rows, convOutput.n_cols, input.n_slices); output.slice(0) = convOutput; for (size_t i = 1; i < input.n_slices; i++) { FFTConvolution<BorderMode>::Convolution(input.slice(i), filter.slice(i), convOutput); output.slice(i) = convOutput; } } /* * Perform a convolution through fft using dense matrix as input and a 3rd * order tensors as filter and output. This method only supports input which * is even on the last dimension. In case of an odd input width, a user can * manually pad the imput or specify the padLastDim parameter which takes care * of the padding. The filter instead can have any size. * * @param input Input used to perform the convolution. * @param filter Filter used to perform the conolution. * @param output Output data that contains the results of the convolution. */ template<typename eT> static void Convolution(const arma::Mat<eT>& input, const arma::Cube<eT>& filter, arma::Cube<eT>& output) { arma::Mat<eT> convOutput; FFTConvolution<BorderMode>::Convolution(input, filter.slice(0), convOutput); output = arma::Cube<eT>(convOutput.n_rows, convOutput.n_cols, filter.n_slices); output.slice(0) = convOutput; for (size_t i = 1; i < filter.n_slices; i++) { FFTConvolution<BorderMode>::Convolution(input, filter.slice(i), convOutput); output.slice(i) = convOutput; } } /* * Perform a convolution using a 3rd order tensors as input and output and a * dense matrix as filter. * * @param input Input used to perform the convolution. * @param filter Filter used to perform the conolution. * @param output Output data that contains the results of the convolution. */ template<typename eT> static void Convolution(const arma::Cube<eT>& input, const arma::Mat<eT>& filter, arma::Cube<eT>& output) { arma::Mat<eT> convOutput; FFTConvolution<BorderMode>::Convolution(input.slice(0), filter, convOutput); output = arma::Cube<eT>(convOutput.n_rows, convOutput.n_cols, input.n_slices); output.slice(0) = convOutput; for (size_t i = 1; i < input.n_slices; i++) { FFTConvolution<BorderMode>::Convolution(input.slice(i), filter, convOutput); output.slice(i) = convOutput; } } }; // class FFTConvolution }; // namespace ann }; // namespace mlpack #endif
[ "marcus.edel@fu-berlin.de" ]
marcus.edel@fu-berlin.de
a6cf22228e38037c027477ff0a9e81acbeea8c5c
0f80c089749acf4fcb5fc77440b1973d9e2b1749
/Development/Core/ydbase/base/exception/windows_exception.cpp
a43f2ad9eb97ba9fc4d6e66b4e10bc3d7b09f0ff
[ "Apache-2.0" ]
permissive
Whimsyduke/YDWE
12582e5865fed973c5b3edd0aa7608ac46aec725
f74d79a8de5fa683012944b13b5f444bcbbc7b77
refs/heads/master
2020-03-22T11:33:53.460497
2018-07-12T14:07:04
2018-07-12T14:07:04
139,979,771
0
0
Apache-2.0
2018-07-06T12:06:09
2018-07-06T12:06:09
null
UTF-8
C++
false
false
266
cpp
#include <base/exception/windows_exception.h> #include <base/win/windows_category.h> namespace base { windows_exception::windows_exception(const char* reason, int error_code) : system_exception(std::error_code(error_code, win::windows_category()), reason) { } }
[ "actboy168@gmail.com" ]
actboy168@gmail.com
d413beb25692b4e4e70608f25b7af2c48db4c530
884c8fc1f560512dde5753a340fb61dab0998164
/src/raytracer/scene_objects/cameras/projective_camera.h
05571d8b5b0ca59a592ee564bd1e4e634e4acd5a
[]
no_license
dbs4261/RayTracingByTheBook
d79d8fae67403d5e192efc36f654f6f85f8f7256
e0b8e7a2402c5e6518933a7e78b581a985bbf638
refs/heads/master
2020-03-24T08:48:10.312733
2019-05-05T23:49:19
2019-05-05T23:49:19
142,608,093
1
0
null
null
null
null
UTF-8
C++
false
false
2,032
h
#ifndef RAYTRACER_ORTHOGRAPHIC_CAMERA_H #define RAYTRACER_ORTHOGRAPHIC_CAMERA_H #include "abstract_camera.h" #include "raytracer/math/transformations/transform.h" namespace raytracer { template <typename T> class ProjectiveCamera : public AbstractCamera<T> { public: ProjectiveCamera(size_t height, size_t width) : AbstractCamera<T>(height, width), direction_(this->tform_.TransformDirection(Direction<T>()) {} ProjectiveCamera(size_t height, size_t width, T pitch_pitch) : AbstractCamera<T>(height, width, pixel_pitch_), direction_(this->tform_.TransformDirection(Direction<T>()) {} ProjectiveCamera(typename Transform<T>::SPtr tform, size_t height, size_t width) : AbstractCamera<T>(std::move(tform), height, width), direction_(this->tform_.TransformDirection(Direction<T>()) {} ProjectiveCamera(size_t height, size_t width, T pixel_pitch, typename Transform<T>::SPtr tform) : AbstractCamera<T>(std::move(tform), height, width, pixel_pitch), direction_(this->tform_.TransformDirection(Direction<T>()) {} void MakeRays(typename std::vector<Ray<T>>& container) const { T shift_w = static_cast<T>(width_) / T{2}; T shift_h = static_cast<T>(height_) / T{2}; Point<T> center = this->tform_->TransformPoint(); for (size_t h = 0; h < this->height_; h++) { for (size_t w = 0; w < this->width_; w++) { container.push_back(this->MakeRay(h, w)); } } } Ray<T> MakeRay_(size_t y, size_t x, const Point<T>& center) const { return Ray<T>(this->tform_.TransformPoint(Point<T>(static_cast<T>(w) - shift_w, static_cast<T>(h) - shift_h, T{0})), direction_); } Ray<T> MakeRay(size_t y, size_t x) const { DCHECK(y < this->height_) << "Height out of range"; DCHECK(x < this->width_) << "Width out of range"; Point<T> center = this->tform_->TransformPoint(); return this->MakeRay_(y, x, center); } T focal_length; T skew; T aspect_ratio; T principal_point_x; T principal_point_y; }; } #endif //RAYTRACER_ORTHOGRAPHIC_CAMERA_H
[ "Dan.Simon@ogsystems.com" ]
Dan.Simon@ogsystems.com
e0e405d354a87d1341d23c99b3d9598f6b9d3694
3dc2c3db971e9eda7041284a11d18efb794109e9
/OpenGL2/VertexArray.h
02d3d767d500ad01e741b5a860270825f268d68b
[]
no_license
BrorNydal/MinOpenGL
5f66c679bd084256cebf7f452c1c3ecb61fceba9
8cd323dda7d4b62130cc5d69191dca1e9da7fe39
refs/heads/master
2022-11-07T11:15:25.924798
2020-06-11T11:01:48
2020-06-11T11:01:48
270,994,062
0
0
null
null
null
null
UTF-8
C++
false
false
185
h
#pragma once #include "GL/glew.h" class VertexArray { unsigned int ID; public: VertexArray(); ~VertexArray(); void updateData(GLsizei stride); void bind(); void unbind(); };
[ "brornydal@outlook.com" ]
brornydal@outlook.com
8ee981ac658a3539e41cf93e511fec1de2e6953f
85381529f7a09d11b2e2491671c2d5e965467ac6
/比赛源码/2014-2015 ACM-ICPC, NEERC, Eastern Subregional Contest/H - Pair normal and paranormal.cpp
6871f9e7231a1f0f1808a0f873019af01a7d7e40
[]
no_license
Mr-Phoebe/ACM-ICPC
862a06666d9db622a8eded7607be5eec1b1a4055
baf6b1b7ce3ad1592208377a13f8153a8b942e91
refs/heads/master
2023-04-07T03:46:03.631407
2023-03-19T03:41:05
2023-03-19T03:41:05
46,262,661
19
3
null
null
null
null
UTF-8
C++
false
false
3,225
cpp
// whn6325689 // Mr.Phoebe // http://blog.csdn.net/u013007900 #include <algorithm> #include <iostream> #include <iomanip> #include <cstring> #include <climits> #include <complex> #include <fstream> #include <cassert> #include <cstdio> #include <bitset> #include <vector> #include <deque> #include <queue> #include <stack> #include <ctime> #include <set> #include <map> #include <cmath> #include <functional> #include <numeric> #pragma comment(linker, "/STACK:1024000000,1024000000") using namespace std; #define eps 1e-9 #define PI acos(-1.0) #define INF 0x3f3f3f3f #define LLINF 1LL<<50 #define speed std::ios::sync_with_stdio(false); typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<ll, ll> pll; typedef complex<ld> point; typedef pair<int, int> pii; typedef pair<pii, int> piii; typedef vector<int> vi; #define CLR(x,y) memset(x,y,sizeof(x)) #define CPY(x,y) memcpy(x,y,sizeof(x)) #define clr(a,x,size) memset(a,x,sizeof(a[0])*(size)) #define cpy(a,x,size) memcpy(a,x,sizeof(a[0])*(size)) #define debug(a) cout << #a" = " << (a) << endl; #define debugarry(a, n) for (int i = 0; i < (n); i++) { cout << #a"[" << i << "] = " << (a)[i] << endl; } #define mp(x,y) make_pair(x,y) #define pb(x) push_back(x) #define lowbit(x) (x&(-x)) #define MID(x,y) (x+((y-x)>>1)) #define getidx(l,r) (l+r | l!=r) #define ls getidx(l,mid) #define rs getidx(mid+1,r) #define lson l,mid #define rson mid+1,r template<class T> inline bool read(T &n) { T x = 0, tmp = 1; char c = getchar(); while((c < '0' || c > '9') && c != '-' && c != EOF) c = getchar(); if(c == EOF) return false; if(c == '-') c = getchar(), tmp = -1; while(c >= '0' && c <= '9') x *= 10, x += (c - '0'),c = getchar(); n = x*tmp; return true; } template <class T> inline void write(T n) { if(n < 0) { putchar('-'); n = -n; } int len = 0,data[20]; while(n) { data[len++] = n%10; n /= 10; } if(!len) data[len++] = 0; while(len--) putchar(data[len]+48); } //----------------------------------- int n; int lab[10005], ans[10005]; char s[10005]; int main() { scanf("%d", &n); getchar(); int top = 0, cntl = 0, cntu = 0; for (int i = 1; i <= 2*n; i++) { char c; scanf("%c", &c); if (top == 0 || abs(s[top]-c) != 'a'-'A') { top++; s[top] = c; if (c >= 'a' && c <= 'z') { cntl++; lab[top] = cntl; } if (c >= 'A' && c <= 'Z') { cntu++; lab[top] = cntu; } continue; } if (abs(s[top]-c) == 'a'-'A') { if (s[top] >= 'A' && s[top] <= 'Z') { cntl++; ans[lab[top]] = cntl; top--; } else { cntu++; ans[cntu] = lab[top]; top--; } } } if (top != 0) printf("Impossible\n"); else { for (int i = 1; i <= cntl; i++) printf("%d ", ans[i]); printf("\n"); } return 0; }
[ "whn289467822@outlook.com" ]
whn289467822@outlook.com
3e49c689475ed2f4e837e3da23111d023ad4e644
62c9c20463eca981ec966dea931d83f09d296c56
/src/Quaternions.cpp
33575df3975d45def6ba6f5a8e6a553406893ee3
[]
no_license
rel-alam/OpenGlProject
908ac668b379812f97c9dcfb79441e7df177359b
e3249562acedc2b4a0da9a2a21af103e726a4137
refs/heads/master
2021-03-12T23:34:14.845741
2015-07-28T23:19:17
2015-07-28T23:19:17
30,327,180
0
0
null
null
null
null
UTF-8
C++
false
false
3,327
cpp
#include "Quaternions.h" #include "glm_header.h" #include "Vertex.h" #include "gl_core_4_4.h" #include <GLFW\glfw3.h> #include "Utility.h" #include "Vertex.h" #include "stb_image.h" bool Quaternions::startup() { if (Application::startup() == false) { return false; } glClearColor(0.3f, 0.3f, 0.3f, 1); glEnable(GL_DEPTH_TEST); Gizmos::create(); glm::quat boring_quaternion(1, 0, 0, 0); glm::quat euler_quat(vec3(3, 5, 7)); glm::quat mixed_quat = glm::slerp(boring_quaternion, euler_quat, 0.8f); m_camera = new FlyCamera(); m_camera->setLookAt(vec3(10, 10, 10), vec3(0, 0, 0), vec3(0, 1, 0)); m_camera->setSpeed(1); m_camera->setPrespective(60, 1280 / 720, 0.1f, 1000.f); m_hip_frames[0].position = vec3(0, 5, 0); m_hip_frames[0].rotation = glm::quat(vec3(-1, 0, 0)); m_knee_frames[0].position = vec3(0, -2.5, 0); m_knee_frames[0].rotation = glm::quat(vec3(-1, 0, 0)); m_ankle_frames[0].position = vec3(0, -2.5, 0); m_ankle_frames[0].rotation = glm::quat(vec3(-1, 0, 0)); m_hip_frames[1].position = vec3(0, 5, 0); m_hip_frames[1].rotation = glm::quat(vec3(1, 0, 0)); m_knee_frames[1].position = vec3(0, -2.5, 0); m_knee_frames[1].rotation = glm::quat(vec3(0, 0, 0)); m_ankle_frames[1].position = vec3(0, -2.5, 0); m_ankle_frames[1].rotation = glm::quat(vec3(0, 0, 0)); return true; } mat4 EvaluateKeyFrames(KeyFrame start, KeyFrame end, float t) { vec3 pos = glm::mix(start.position, end.position, t); glm::quat rot = glm::slerp(start.rotation, end.rotation, t); mat4 result = glm::translate(pos) * glm::toMat4(rot); return result; } void Quaternions::shutdown() { Application::shutdown(); } bool Quaternions::update() { if (Application::update() == false) { return false; } Gizmos::clear(); float dt = (float)glfwGetTime(); glfwSetTime(0.0f); m_timer += dt * 2; float sin_wave = sinf(m_timer) * 0.5f + 0.5f; m_hip_bone = EvaluateKeyFrames(m_hip_frames[0], m_hip_frames[1], sin_wave); m_knee_bone = EvaluateKeyFrames(m_knee_frames[0], m_knee_frames[1], sin_wave); m_ankle_bone = EvaluateKeyFrames(m_ankle_frames[0], m_ankle_frames[1], sin_wave); mat4 global_hip = m_hip_bone; mat4 global_knee = m_hip_bone * m_knee_bone; mat4 global_ankle = global_knee * m_ankle_bone; vec3 hip_pos = global_hip[3].xyz; vec3 knee_pos = global_knee[3].xyz; vec3 ankle_pos = global_ankle[3].xyz; Gizmos::addAABBFilled(hip_pos, vec3(0.5f), vec4(1, 1, 0, 1), &global_hip); Gizmos::addAABBFilled(knee_pos, vec3(0.5f), vec4(1, 0, 1, 1), &global_knee); Gizmos::addAABBFilled(ankle_pos, vec3(0.5f), vec4(0, 1, 1, 1), &global_ankle); Gizmos::addLine(hip_pos, knee_pos, vec4(0, 1, 0, 1), vec4(1, 0, 0, 1)); Gizmos::addLine(knee_pos, ankle_pos, vec4(0, 1, 0, 1), vec4(1, 0, 0, 1)); vec4 white(1); vec4 black(0, 0, 0, 1); vec4 green(0, 1, 0, 1); vec4 red(1, 0, 0, 1); vec4 blue(0, 0, 1, 1); vec4 yellow(1, 1, 0, 1); for (int i = 0; i <= 20; ++i) { Gizmos::addLine(vec3(-10 + i, 0, -10), vec3(-10 + i, 0, 10), i == 10 ? white : black); Gizmos::addLine(vec3(-10, 0, -10 + i), vec3(10, 0, -10 + i), i == 10 ? white : black); } m_camera->update(dt); return true; } void Quaternions::draw() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); Gizmos::draw(m_camera->getProjectionView()); glfwSwapBuffers(m_window); glfwPollEvents(); }
[ "rel-alam@hotmail.com" ]
rel-alam@hotmail.com
db159cd17f4b5cc0a0dd8fce52a6fb352f8c9bb5
2884dbb9f7b93e79af850585b8ad2e24976462fc
/media/libstagefright/codecs/aacdec/esc_iquant_scaling.cpp
778c88cb350790c81f4acaa7a534037dd91e74d3
[ "Apache-2.0", "LicenseRef-scancode-unicode" ]
permissive
voku/sm_android_frameworks_base
1decb81d00889e2d4b79497ba36760f42ee3c9d3
69e349b179788b03af292eac718dd50d40ccd1d0
refs/heads/gingerbread
2021-06-13T09:27:24.720179
2012-01-26T15:34:38
2012-01-26T15:34:38
1,923,179
1
3
NOASSERTION
2020-12-16T16:44:43
2011-06-20T11:28:19
Java
UTF-8
C++
false
false
26,859
cpp
/* ------------------------------------------------------------------ * Copyright (C) 1998-2009 PacketVideo * * 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. * ------------------------------------------------------------------- */ /* Pathname: ./src/esc_iquant_scaling.c Funtions: esc_iquant_scaling ------------------------------------------------------------------------------ REVISION HISTORY Description: Modified from esc_iquant_fxp.c code Description: Eliminated unused variables to avoid warnings, changed header Who: Date: Description: ------------------------------------------------------------------------------ INPUT AND OUTPUT DEFINITIONS Inputs: quantSpec[] = array of quantized compressed spectral coefficients, of data type Int and length sfbWidth. sfbWidth = number of array elements in quantSpec and the output array coef, data type Int. coef[] = output array of uncompressed coefficients, stored in a variable Q format, depending on the maximum value found for the group, array of Int32, length sfbWdith to be overwritten. QFormat = the output Q format for the array coef[]. scale = scaling factor after separating power of 2 factor out from 0.25*(sfb_scale - 100), i.e., 0.25*sfb_scale. maxInput = maximum absolute value of quantSpec. Local Stores/Buffers/Pointers Needed: None. Global Stores/Buffers/Pointers Needed: inverseQuantTable = lookup table of const integer values to the one third power stored in Q27 format, in file iquant_table.c, const array of UInt32, of size 1025. Outputs: None Pointers and Buffers Modified: coef[] contents are overwritten with the uncompressed values from quantSpec[] Local Stores Modified: None. Global Stores Modified: None. ------------------------------------------------------------------------------ FUNCTION DESCRIPTION This function performs the inverse quantization of the spectral coeficients read from huffman decoding. It takes each input array value to the four thirds power, then scales it according to the scaling factor input argument ,and stores the result in the output array in a variable Q format depending upon the maximum input value found. ------------------------------------------------------------------------------ REQUIREMENTS This function shall not have static or global variables. ------------------------------------------------------------------------------ REFERENCES (1) ISO/IEC 13818-7:1997 Titled "Information technology - Generic coding of moving pictures and associated audio information - Part 7: Advanced Audio Coding (AAC)", Section 10.3, "Decoding process", page 43. (2) MPEG-2 NBC Audio Decoder "This software module was originally developed by AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this software module or modifications thereof for use in hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4 Audio standards. Those intending to use this software module in hardware or software products are advised that this use may infringe existing patents. The original developer of this software module and his/her company, the subsequent editors and their companies, and ISO/IEC have no liability for use of this software module or modifications thereof in an implementation. Copyright is not released for non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer retains full right to use the code for his/her own purpose, assign or donate the code to a third party and to inhibit third party from using the code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must be included in all copies or derivative works." Copyright(c)1996. ------------------------------------------------------------------------------ PSEUDO-CODE maxInput = 0; FOR (i = sfbWidth - 1; i >= 0; i--) x = quantSpec[i]; IF ( x >= 0) absX = x; ELSE absX = -x; ENDIF coef[i] = absX; IF (absX > maxInput) maxInput = absX; ENDIF ENDFOR IF (maxInput == 0) *pQFormat = QTABLE; ELSE temp = inverseQuantTable[(maxInput >> ORDER) + 1]; temp += ((1 << (QTABLE))-1); temp >>= (QTABLE-1); temp *= maxInput; binaryDigits = 0; WHILE( temp != 0) temp >>= 1; binaryDigits++; WEND IF (binaryDigits < (SIGNED32BITS - QTABLE)) binaryDigits = SIGNED32BITS - QTABLE; ENDIF *pQFormat = SIGNED32BITS - binaryDigits; shift = QTABLE - *pQFormat; IF (maxInput < TABLESIZE) FOR (i = sfbWidth - 1; i >= 0; i--) x = quantSpec[i]; absX = coef[i]; tmp_coef = x * (inverseQuantTable[absX] >> shift); b_low = (tmp_coef & 0xFFFF); b_high = (tmp_coef >> 16); mult_low = ( (UInt32) b_low * scale ); mult_high = ( (Int32) b_high * scale ); mult_low >>= 16; coef[i] = (Int32) (mult_high + mult_low); ENDFOR ELSE FOR (i = sfbWidth; i >= 0 ; i--) x = quantSpec[i]; absX = coef[i]; IF (absX < TABLESIZE) tmp_coef = x * (inverseQuantTable[absX] >> shift); ELSE index = absX >> ORDER; w1 = inverseQuantTable[index]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index * SPACING; w2 = inverseQuantTable[index+1]; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + ORDER - 1); tmp_coef = x * (approxOneThird + deltaOneThird); ENDIF b_low = (mult_high & 0xFFFF); b_high = (mult_high >> 16); mult_low = ( (UInt32) b_low * scale ); mult_high = ( (Int32) b_high * scale ); mult_low >>= 16; coef[i] = (Int32) (mult_high + mult_low); ENDFOR ENDIF ENDIF RETURN ------------------------------------------------------------------------------ RESOURCES USED When the code is written for a specific target processor the the resources used should be documented below. STACK USAGE: [stack count for this module] + [variable to represent stack usage for each subroutine called] where: [stack usage variable] = stack usage for [subroutine name] (see [filename].ext) DATA MEMORY USED: x words PROGRAM MEMORY USED: x words CLOCK CYCLES: [cycle count equation for this module] + [variable used to represent cycle count for each subroutine called] where: [cycle count variable] = cycle count for [subroutine name] (see [filename].ext) ------------------------------------------------------------------------------ */ /*---------------------------------------------------------------------------- ; INCLUDES ----------------------------------------------------------------------------*/ #include "pv_audio_type_defs.h" #include "iquant_table.h" #include "esc_iquant_scaling.h" #include "aac_mem_funcs.h" /* For pv_memset */ #include "fxp_mul32.h" /*---------------------------------------------------------------------------- ; MACROS ; Define module specific macros here ----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------- ; DEFINES ; Include all pre-processor statements here. Include conditional ; compile variables also. ----------------------------------------------------------------------------*/ /* * Read further on what order is. * Note: If ORDER is not a multiple of 3, FACTOR is not an integer. * Note: Portions of this function assume ORDER is 3, and so does the table * in iquant_table.c */ #define ORDER (3) /* * For input values > TABLESIZE, multiply by FACTOR to get x ^ (1/3) * FACTOR = 2 ^ (ORDER/3) */ #define FACTOR (2) /* * This is one more than the range of expected inputs. */ #define INPUTRANGE (8192) /* * SPACING is 2 ^ ORDER, and is the spacing between points when in the * interpolation range. */ #define SPACING (1<<ORDER) /* * The actual table size is one more than TABLESIZE, to allow for * interpolation for numbers near 8191 */ #define TABLESIZE (INPUTRANGE/SPACING) /* * Format the table is stored in. */ #define QTABLE (27) /* * Number of bits for data in a signed 32 bit integer. */ #define SIGNED32BITS (31) /* * Round up value for intermediate values obtained from the table */ #define ROUND_UP (( ((UInt32) 1) << (QTABLE) )-1) #define MASK_LOW16 0xffff #define UPPER16 16 /*---------------------------------------------------------------------------- ; LOCAL FUNCTION DEFINITIONS ; Function Prototype declaration ----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------- ; LOCAL VARIABLE DEFINITIONS ; Variable declaration - defined here and used outside this module ----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------- ; EXTERNAL FUNCTION REFERENCES ; Declare functions defined elsewhere and referenced in this module ----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------- ; EXTERNAL VARIABLES REFERENCES ; Declare variables used in this module but defined elsewhere ----------------------------------------------------------------------------*/ /* * Processing in this function is performed in these steps: * * 1) Find the overall Q format for the entire group of inputs. This consists * of: * a) Finding the maximum input * b) estimate the maximum output * c) Using the table, get max ^ (4/3), taking into account the table is * in q format. * 2) For each array element, see if the value is directly inside the table. * a) If yes, just multiply by table value by itself, then shift as * appropriate. * b) If no, get an approximation (described below) for x ^ (1/3) by linearly * interpolating using lower values in the table, then multiply by a * correction factor, then multiply by x (see below). * * It more accurate to interpolate x ^ (1/3) then x ^ (4/3), so that is stored * in the lookup table. For values not in the table, interpolation is used: * * We want y = x ^ (4/3) = x * (x ^ (1/3)) * * Let x = w * (2 ^ m) where m is a constant, = ORDER * * then x ^ (1/3) = w ^ (1/3) * (2 ^ (m/3)) * * w is most likely not an integer, so an interpolation with floor(w) and * ceil(w) can be performed to approximate w ^ (1/3) by getting values out of * the table. Then to get x ^ (1/3), multiply by FACTOR. If m = 0, 3, 6, * then FACTOR is a simple power of 2, so a shift can do the job. * * The actual code employs some more tricks to speed things up, and because * the table is stored in Q format. * * Rather than saving the sign of each input, the unsigned value of * abs(x) ^ (1/3) is multiplied by the signed input value. */ #if ( defined(_ARM) || defined(_ARM_V4)) /* * Absolute value for 16 bit-numbers */ __inline Int32 abs2(Int32 x) { Int32 z; /* z = x - (x<0); x = z ^ sign(z) */ __asm { sub z, x, x, lsr #31 eor x, z, z, asr #31 } return (x); } #define pv_abs(x) abs2(x) #elif (defined(PV_ARM_GCC_V5)||defined(PV_ARM_GCC_V4)) /* * Absolute value for 16 bit-numbers */ __inline Int32 abs2(Int32 x) { register Int32 z; register Int32 y; register Int32 ra = x; asm volatile( "sub %0, %2, %2, lsr #31\n\t" "eor %1, %0, %0, asr #31" : "=&r*i"(z), "=&r*i"(y) : "r"(ra)); return (y); } #define pv_abs(x) abs2(x) #else #define pv_abs(x) ((x) > 0)? (x) : (-x) #endif void esc_iquant_scaling( const Int16 quantSpec[], Int32 coef[], const Int sfbWidth, Int const QFormat, UInt16 scale, Int maxInput) { Int i; Int x; Int y; Int index; Int shift; UInt absX; UInt32 w1, w2; UInt32 deltaOneThird; UInt32 x1; UInt32 approxOneThird; Int32 mult_high; #if ( defined(_ARM) || defined(_ARM_V4)) { Int32 *temp; Int32 R12, R11, R10, R9; deltaOneThird = sizeof(Int32) * sfbWidth; temp = coef; // from standard library call for __rt_memset __asm { MOV R12, #0x0 MOV R11, #0x0 MOV R10, #0x0 MOV R9, #0x0 SUBS deltaOneThird, deltaOneThird, #0x20 loop: STMCSIA temp!, {R12, R11, R10, R9} STMCSIA temp!, {R12, R11, R10, R9} SUBCSS deltaOneThird, deltaOneThird, #0x20 BCS loop MOVS deltaOneThird, deltaOneThird, LSL #28 STMCSIA temp!, {R12, R11, R10, R9} STMMIIA temp!, {R12, R11} } } #else pv_memset(coef, 0, sizeof(Int32) * sfbWidth); #endif if (maxInput > 0) { shift = QTABLE - QFormat; if (scale != 0) { if (maxInput < TABLESIZE) { for (i = sfbWidth - 1; i >= 0; i -= 4) { x = quantSpec[i]; y = quantSpec[i-1]; if (x) { absX = pv_abs(x); mult_high = (x * (inverseQuantTable[absX] >> shift)); coef[i] = fxp_mul32_by_16(mult_high, scale) << 1; } if (y) { absX = pv_abs(y); mult_high = y * (inverseQuantTable[absX] >> shift); coef[i-1] = fxp_mul32_by_16(mult_high, scale) << 1; } x = quantSpec[i-2]; y = quantSpec[i-3]; if (x) { absX = pv_abs(x); mult_high = x * (inverseQuantTable[absX] >> shift); coef[i-2] = fxp_mul32_by_16(mult_high, scale) << 1; } if (y) { absX = pv_abs(y); mult_high = y * (inverseQuantTable[absX] >> shift); coef[i-3] = fxp_mul32_by_16(mult_high, scale) << 1; } } /* end for (i = sfbWidth - 1; i >= 0; i--) */ } /* end if (maxInput < TABLESIZE)*/ else /* maxInput >= TABLESIZE) */ { for (i = sfbWidth - 1; i >= 0; i -= 4) { x = quantSpec[i]; if (x) { absX = pv_abs(x); if (absX < TABLESIZE) { mult_high = x * (inverseQuantTable[absX] >> shift); coef[i] = fxp_mul32_by_16(mult_high, scale) << 1; } else { index = absX >> ORDER; w1 = inverseQuantTable[index]; w2 = inverseQuantTable[index+1]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index << ORDER; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + 2); mult_high = x * (approxOneThird + deltaOneThird); coef[i] = fxp_mul32_by_16(mult_high, scale) << 1; } } /* if(x) */ x = quantSpec[i-1]; if (x) { absX = pv_abs(x); if (absX < TABLESIZE) { mult_high = (x * (inverseQuantTable[absX] >> shift)); coef[i-1] = fxp_mul32_by_16(mult_high, scale) << 1; } else { index = absX >> ORDER; w1 = inverseQuantTable[index]; w2 = inverseQuantTable[index+1]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index << ORDER; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + 2); mult_high = x * (approxOneThird + deltaOneThird); coef[i-1] = fxp_mul32_by_16(mult_high, scale) << 1; } } /* if(x) */ x = quantSpec[i-2]; if (x) { absX = pv_abs(x); if (absX < TABLESIZE) { mult_high = x * (inverseQuantTable[absX] >> shift); coef[i-2] = fxp_mul32_by_16(mult_high, scale) << 1; } else { index = absX >> ORDER; w1 = inverseQuantTable[index]; w2 = inverseQuantTable[index+1]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index << ORDER; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + 2); mult_high = x * (approxOneThird + deltaOneThird); coef[i-2] = fxp_mul32_by_16(mult_high, scale) << 1; } } /* if(x) */ x = quantSpec[i-3]; if (x) { absX = pv_abs(x); if (absX < TABLESIZE) { mult_high = x * (inverseQuantTable[absX] >> shift); coef[i-3] = fxp_mul32_by_16(mult_high, scale) << 1; } else { index = absX >> ORDER; w1 = inverseQuantTable[index]; w2 = inverseQuantTable[index+1]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index << ORDER; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + 2); mult_high = x * (approxOneThird + deltaOneThird); coef[i-3] = fxp_mul32_by_16(mult_high, scale) << 1; } } /* if(x) */ } /* end for (i = sfbWidth - 1; i >= 0; i--) */ } /* end else for if (maxInput < TABLESIZE)*/ } else /* scale == 0 */ { if (maxInput < TABLESIZE) { for (i = sfbWidth - 1; i >= 0; i -= 4) { x = quantSpec[i]; y = quantSpec[i-1]; if (x) { absX = pv_abs(x); mult_high = x * (inverseQuantTable[absX] >> shift); coef[i] = mult_high >> 1; } if (y) { absX = pv_abs(y); mult_high = y * (inverseQuantTable[absX] >> shift); coef[i-1] = mult_high >> 1; } x = quantSpec[i-2]; y = quantSpec[i-3]; if (x) { absX = pv_abs(x); mult_high = x * (inverseQuantTable[absX] >> shift); coef[i-2] = mult_high >> 1; } if (y) { absX = pv_abs(y); mult_high = y * (inverseQuantTable[absX] >> shift); coef[i-3] = mult_high >> 1; } } } /* end if (maxInput < TABLESIZE)*/ else /* maxInput >= TABLESIZE) */ { for (i = sfbWidth - 1; i >= 0; i -= 4) { x = quantSpec[i]; if (x) { absX = pv_abs(x); if (absX < TABLESIZE) { mult_high = x * (inverseQuantTable[absX] >> shift); coef[i] = (mult_high >> 1); } /* end if (absX < TABLESIZE) */ else { index = absX >> ORDER; w1 = inverseQuantTable[index]; w2 = inverseQuantTable[index+1]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index << ORDER; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + 2); mult_high = x * (approxOneThird + deltaOneThird); coef[i] = (mult_high >> 1); } } /* if(x) */ x = quantSpec[i-1]; if (x) { absX = pv_abs(x); if (absX < TABLESIZE) { mult_high = x * (inverseQuantTable[absX] >> shift); coef[i-1] = (mult_high >> 1); } /* end if (absX < TABLESIZE) */ else { index = absX >> ORDER; w1 = inverseQuantTable[index]; w2 = inverseQuantTable[index+1]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index << ORDER; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + 2); mult_high = x * (approxOneThird + deltaOneThird); coef[i-1] = (mult_high >> 1); } } /* if(x) */ x = quantSpec[i-2]; if (x) { absX = pv_abs(x); if (absX < TABLESIZE) { mult_high = x * (inverseQuantTable[absX] >> shift); coef[i-2] = (mult_high >> 1); } /* end if (absX < TABLESIZE) */ else { index = absX >> ORDER; w1 = inverseQuantTable[index]; w2 = inverseQuantTable[index+1]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index << ORDER; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + 2); mult_high = x * (approxOneThird + deltaOneThird); coef[i-2] = (mult_high >> 1); } } /* if(x) */ x = quantSpec[i-3]; if (x) { absX = pv_abs(x); if (absX < TABLESIZE) { mult_high = x * (inverseQuantTable[absX] >> shift); coef[i-3] = (mult_high >> 1); } /* end if (absX < TABLESIZE) */ else { index = absX >> ORDER; w1 = inverseQuantTable[index]; w2 = inverseQuantTable[index+1]; approxOneThird = (w1 * FACTOR) >> shift; x1 = index << ORDER; deltaOneThird = (w2 - w1) * (absX - x1); deltaOneThird >>= (shift + 2); mult_high = x * (approxOneThird + deltaOneThird); coef[i-3] = (mult_high >> 1); } } /* if(x) */ } /* end for (i = sfbWidth - 1; i >= 0; i--) */ } /* end else for if (maxInput < TABLESIZE)*/ } /* end else for if(scale!=0) */ } /* end else for if(maxInput == 0) */ } /* end esc_iquant_fxp */
[ "andih@google.com" ]
andih@google.com
8a1c1d180f57d8219405098b4d9437e5328cc814
a7d268b5604acc600ab19f3c6c078e5ad3b70d39
/cpp_learning/cpp_learning/Counter5.h
0e150102bd87d399d9345dc37f9cf488344c8f33
[]
no_license
08zhangyi/cpp_learning
2a0165303fae04fe6f53e6f56e7a25e353406ba1
e0e4847d285841c7bba5ba78d8ba68a5bbc9f3f8
refs/heads/master
2020-04-09T16:24:56.373818
2019-01-13T01:21:14
2019-01-13T01:21:14
160,452,775
0
0
null
null
null
null
UTF-8
C++
false
false
356
h
#pragma once #include <iostream> class Counter { public: Counter(); ~Counter() {} int getValue() const { return value; } void setValue(int newValue) { value = newValue; } private: int value; }; Counter::Counter() : value(0) {} int mf() { int beta = 5; Counter alpha = beta; std::cout << "alpjha: " << alpha.getValue() << std::endl; return 0; }
[ "395871987@qq.com" ]
395871987@qq.com
b0dfff6d2f0cab7e408651c1493e1a3491470f8d
4f63cf74d091209ce336c61553b400f562c4f169
/firmware/hw_layer/backup_ram.cpp
717dca1bb06478cc69235ba7e83a33b4a0a74ff0
[]
no_license
abelom/firmware_ME7
0f274843d01c2f318f28c746005f15a47dae4c64
fddae062cad8d4827c43e6e431226b0988f1d669
refs/heads/master
2022-04-27T00:22:40.564306
2020-04-28T22:22:09
2020-04-28T22:22:09
259,839,218
6
1
null
2020-04-29T06:06:25
2020-04-29T06:06:24
null
UTF-8
C++
false
false
1,521
cpp
/** * @file backup_ram.cpp * * @date Dec 19, 2017 */ #include "backup_ram.h" uint32_t backupRamLoad(backup_ram_e idx) { #if HAL_USE_RTC switch (idx) { case BACKUP_STEPPER_POS: return RTCD1.rtc->BKP0R & 0xffff; case BACKUP_IGNITION_SWITCH_COUNTER: return (RTCD1.rtc->BKP0R >> 16) & 0xff; case BACKUP_CJ125_CALIBRATION_LAMBDA: return RTCD1.rtc->BKP1R & 0xffff; case BACKUP_CJ125_CALIBRATION_HEATER: return (RTCD1.rtc->BKP1R >> 16) & 0xffff; // it is assembly code which reads this value // case DFU_JUMP_REQUESTED: // return RTCD1.rtc->BKP4R; default: firmwareError(OBD_PCM_Processor_Fault, "Invalid backup ram idx %d", idx); return 0; } #else return 0; #endif /* HAL_USE_RTC */ } void backupRamSave(backup_ram_e idx, uint32_t value) { #if HAL_USE_RTC switch (idx) { case BACKUP_STEPPER_POS: RTCD1.rtc->BKP0R = (RTCD1.rtc->BKP0R & ~0x0000ffff) | (value & 0xffff); break; case BACKUP_IGNITION_SWITCH_COUNTER: RTCD1.rtc->BKP0R = (RTCD1.rtc->BKP0R & ~0x00ff0000) | ((value & 0xff) << 16); break; case BACKUP_CJ125_CALIBRATION_LAMBDA: RTCD1.rtc->BKP1R = (RTCD1.rtc->BKP1R & ~0x0000ffff) | (value & 0xffff); break; case BACKUP_CJ125_CALIBRATION_HEATER: RTCD1.rtc->BKP1R = (RTCD1.rtc->BKP1R & ~0xffff0000) | ((value & 0xffff) << 16); break; // todo: start using this code case DFU_JUMP_REQUESTED: RTCD1.rtc->BKP4R = value; break; default: firmwareError(OBD_PCM_Processor_Fault, "Invalid backup ram idx %d, value 0x08x", idx, value); break; } #endif /* HAL_USE_RTC */ }
[ "olaruud@hotmail.com" ]
olaruud@hotmail.com
5a4bc6330ac6c2252cca75f6aa54f6fa1ac36313
2e72a74d760a8c14ca242df077413a9ff9699774
/src/d2_ee_spds_BD.cpp
aeea023d615f6a1ae977d786cfcad6a9af57f8d5
[]
no_license
chemiczny/automateusz_gto_d2
ba3f1bec939a135a3591d512663ee01c4aa10b0c
b4c7e0978424bf53fd4b1f67de8e65ab3373fc10
refs/heads/master
2020-03-21T15:30:46.767378
2019-05-08T14:33:56
2019-05-08T14:33:56
138,716,717
0
0
null
null
null
null
UTF-8
C++
false
false
1,132
cpp
#include "gto_d2_kit/d2_ee_spds_BD.hpp" #include "gto_d2_kit/d2_ee_pssd_AC.hpp" void second_derivative_ee_0120_24( const double ae, const double xA, const double yA, const double zA, const double be, const double xB, const double yB, const double zB, const double ce, const double xC, const double yC, const double zC, const double de, const double xD, const double yD, const double zD, const double* const bs, double* const d2eexx, double* const d2eexy, double* const d2eexz, double* const d2eeyx, double* const d2eeyy, double* const d2eeyz, double* const d2eezx, double* const d2eezy, double* const d2eezz) { second_derivative_ee_1002_13( be, xB, yB, zB, ae, xA, yA, zA, de, xD, yD, zD, ce, xC, yC, zC, bs, d2eexx, d2eexy, d2eexz, d2eeyx, d2eeyy, d2eeyz, d2eezx, d2eezy, d2eezz ); }
[ "mglanows@kierkur.ch.uj.edu.pl" ]
mglanows@kierkur.ch.uj.edu.pl
3371faa86565baabf89b748aa291c1d801aa9174
9dfefe23cdb19d9bc46b7a1a5a397724243a449f
/networkit/cpp/io/DibapGraphReader.h
098b120b84dbd4379fc6fd30936c76a07ab45db6
[ "MIT" ]
permissive
gstoszek/networkit
7f17349d2740cf4411226185f949db3cdeaf676e
5f4e7b9a0f8a431465911209d41e0c73f9bf0df0
refs/heads/Dev
2021-04-09T13:38:38.927978
2018-12-17T12:26:11
2018-12-17T12:26:11
125,489,119
0
0
NOASSERTION
2018-10-26T09:11:54
2018-03-16T08:48:17
C++
UTF-8
C++
false
false
1,071
h
/* * DibapGraphReader.h * * Created on: Jun 12, 2013 * Author: Henning */ #ifndef DIBAPGRAPHREADER_H_ #define DIBAPGRAPHREADER_H_ #if !defined _WIN32 && !defined _WIN64 && !defined WIN32 && !defined WIN64 #include "GraphReader.h" #include "../graph/Graph.h" #include <cstdio> #include <netinet/in.h> // codes in file headers to distinguish type #define IO_TYPE_XX (('X' << 8) | 'X') #define IO_TYPE_GI (('G' << 8) | 'I') #define IO_TYPE_GF (('G' << 8) | 'F') #define IO_TYPE_HI (('H' << 8) | 'I') #define IO_TYPE_HF (('H' << 8) | 'F') #define IO_TYPE_P2 (('P' << 8) | '2') #define IO_TYPE_P4 (('P' << 8) | '4') #define IO_TYPE_AA (('A' << 8) | 'A') #define IO_TYPE_T2 (('T' << 8) | '2') #define IO_TYPE_TE (('T' << 8) | 'E') namespace NetworKit { /** * @ingroup io * TODO: class documentation */ class DibapGraphReader: public NetworKit::GraphReader { public: DibapGraphReader() = default; virtual Graph read(const std::string& path) override; }; } /* namespace NetworKit */ #endif /* check for non-Windows */ #endif /* DIBAPGRAPHREADER_H_ */
[ "kolev.yani@gmail.com" ]
kolev.yani@gmail.com
1b9a1092c33164429be24a5e5ce846d4db5a80a8
9e6a0e6f36bd5b65e3df102c8cb193efca6bc8ae
/UVa/167/167.cpp
7c957d68329c9c456d585272a2c7ea5620bd0d1a
[]
no_license
Lee-W/ACM
cc620abe1034b413d9dc8747f91ab280af058d91
d6da2e25916d03e54c38c04e7a4daaf22b741e1f
refs/heads/master
2021-01-13T01:54:29.914307
2017-03-27T14:45:08
2017-03-27T14:45:08
23,750,945
0
0
null
null
null
null
UTF-8
C++
false
false
1,477
cpp
#include <cstdio> #include <utility> #include <vector> using namespace std; typedef pair<int,int> point; void backtrack(); bool isValidPos(point); vector<point> choosed; int chessBoard[8][8]; int maxSum = 0; main() { int caseNum; scanf("%d", &caseNum); while(caseNum--) { choosed.reserve(8); maxSum = 0; for (int i = 0; i < 8; i++) for (int j = 0; j < 8; j++) scanf("%d", &chessBoard[i][j]); backtrack(); printf("%5d\n", maxSum); choosed.clear(); } } void backtrack() { if (choosed.size() < 8) { point p; p.first = choosed.size(); for (int col = 0; col < 8; col++) { p.second = col; if (isValidPos(p)) { choosed.push_back(p); backtrack(); choosed.pop_back(); } } } else if (choosed.size() == 8) { int sum = 0; for (int i = 0; i < choosed.size(); i++) sum += chessBoard[choosed[i].first][choosed[i].second]; if (sum > maxSum) maxSum = sum; } } bool isValidPos(point p) { for (int i = 0; i < choosed.size(); i++) { if (p.first == choosed[i].first || p.second == choosed[i].second) return false; double slope = (double)(p.first-choosed[i].first)/(double)(p.second-choosed[i].second); if (slope == 1 || slope == -1) return false; } return true; }
[ "cl87654321@gmail.com" ]
cl87654321@gmail.com
41365391c8d5a71a6f4423a4eeabec8b441c7b49
b958286bb016a56f5ddff5514f38fbd29f3e9072
/include/ublox/message/MonSmgrCommon.h
77cecb4acf808ded2c997453b1a853b5683be33e
[]
no_license
yxw027/cc.ublox.generated
abdda838945777a498f433b0d9624a567ab1ea80
a8bf468281d2d06e32d3e029c40bc6d38e4a34de
refs/heads/master
2021-01-14T23:03:20.722801
2020-02-20T06:24:46
2020-02-20T06:24:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,273
h
// Generated by commsdsl2comms v3.3.2 /// @file /// @brief Contains common template parameters independent functionality of /// @ref ublox::message::MonSmgr message and its fields. #pragma once #include <cstdint> #include <type_traits> #include "ublox/field/ItowCommon.h" #include "ublox/field/Res3Common.h" namespace ublox { namespace message { /// @brief Common types and functions for fields of /// @ref ublox::message::MonSmgr message. /// @see ublox::message::MonSmgrFields struct MonSmgrFieldsCommon { /// @brief Common types and functions for /// @ref ublox::message::MonSmgrFields::Version field. struct VersionCommon { /// @brief Re-definition of the value type used by /// ublox::message::MonSmgrFields::Version field. using ValueType = std::uint8_t; /// @brief Name of the @ref ublox::message::MonSmgrFields::Version field. static const char* name() { return "version"; } }; /// @brief Common types and functions for /// @ref ublox::message::MonSmgrFields::Reserved1 field. struct Reserved1Common : public ublox::field::Res3Common { /// @brief Name of the @ref ublox::message::MonSmgrFields::Reserved1 field. static const char* name() { return "reserved1"; } }; /// @brief Common types and functions for /// @ref ublox::message::MonSmgrFields::Itow field. using ItowCommon = ublox::field::ItowCommon; /// @brief Scope for all the common definitions of the member fields of /// @ref ublox::message::MonSmgrFields::IntOsc field. struct IntOscMembersCommon { /// @brief Common types and functions for /// @ref ublox::message::MonSmgrFields::IntOscMembers::IntOscState field. struct IntOscStateCommon { /// @brief Values enumerator for /// @ref ublox::message::MonSmgrFields::IntOscMembers::IntOscState field. enum class ValueType : std::uint8_t { Autonomous = 0, ///< value @b Autonomous Ongoing = 1, ///< value @b Ongoing Steered = 2, ///< value @b Steered Idle = 4, ///< value @b Idle // --- Extra values generated for convenience --- FirstValue = 0, ///< First defined value. LastValue = 4, ///< Last defined value. ValuesLimit = 5, ///< Upper limit for defined values. }; /// @brief Name of the @ref ublox::message::MonSmgrFields::IntOscMembers::IntOscState field. static const char* name() { return "intOscState"; } /// @brief Retrieve name of the enum value static const char* valueName(ValueType val) { static const char* Map[] = { "Autonomous", "Ongoing", "Steered", nullptr, "Idle" }; static const std::size_t MapSize = std::extent<decltype(Map)>::value; if (MapSize <= static_cast<std::size_t>(val)) { return nullptr; } return Map[static_cast<std::size_t>(val)]; } }; /// @brief Values enumerator for /// @ref ublox::message::MonSmgrFields::IntOscMembers::IntOscState field. using IntOscStateVal = IntOscStateCommon::ValueType; /// @brief Common functions for /// @ref ublox::message::MonSmgrFields::IntOscMembers::Bits field. struct BitsCommon { /// @brief Name of the @ref ublox::message::MonSmgrFields::IntOscMembers::Bits field. static const char* name() { return ""; } /// @brief Retrieve name of the bit of /// @ref ublox::message::MonSmgrFields::IntOscMembers::Bits field. static const char* bitName(std::size_t idx) { static const char* Map[] = { "intOscCalib", "intOscDisc" }; static const std::size_t MapSize = std::extent<decltype(Map)>::value; if (MapSize <= idx) { return nullptr; } return Map[idx]; } }; }; /// @brief Scope for all the common definitions of the /// @ref ublox::message::MonSmgrFields::IntOsc field. struct IntOscCommon { /// @brief Name of the @ref ublox::message::MonSmgrFields::IntOsc field. static const char* name() { return "intOsc"; } }; /// @brief Scope for all the common definitions of the member fields of /// @ref ublox::message::MonSmgrFields::ExtOsc field. struct ExtOscMembersCommon { /// @brief Common types and functions for /// @ref ublox::message::MonSmgrFields::ExtOscMembers::ExtOscState field. struct ExtOscStateCommon { /// @brief Values enumerator for /// @ref ublox::message::MonSmgrFields::ExtOscMembers::ExtOscState field. enum class ValueType : std::uint8_t { Autonomous = 0, ///< value @b Autonomous Ongoing = 1, ///< value @b Ongoing Steered = 2, ///< value @b Steered Idle = 4, ///< value @b Idle // --- Extra values generated for convenience --- FirstValue = 0, ///< First defined value. LastValue = 4, ///< Last defined value. ValuesLimit = 5, ///< Upper limit for defined values. }; /// @brief Name of the @ref ublox::message::MonSmgrFields::ExtOscMembers::ExtOscState field. static const char* name() { return "extOscState"; } /// @brief Retrieve name of the enum value static const char* valueName(ValueType val) { static const char* Map[] = { "Autonomous", "Ongoing", "Steered", nullptr, "Idle" }; static const std::size_t MapSize = std::extent<decltype(Map)>::value; if (MapSize <= static_cast<std::size_t>(val)) { return nullptr; } return Map[static_cast<std::size_t>(val)]; } }; /// @brief Values enumerator for /// @ref ublox::message::MonSmgrFields::ExtOscMembers::ExtOscState field. using ExtOscStateVal = ExtOscStateCommon::ValueType; /// @brief Common functions for /// @ref ublox::message::MonSmgrFields::ExtOscMembers::Bits field. struct BitsCommon { /// @brief Name of the @ref ublox::message::MonSmgrFields::ExtOscMembers::Bits field. static const char* name() { return ""; } /// @brief Retrieve name of the bit of /// @ref ublox::message::MonSmgrFields::ExtOscMembers::Bits field. static const char* bitName(std::size_t idx) { static const char* Map[] = { "extOscCalib", "extOscDisc" }; static const std::size_t MapSize = std::extent<decltype(Map)>::value; if (MapSize <= idx) { return nullptr; } return Map[idx]; } }; }; /// @brief Scope for all the common definitions of the /// @ref ublox::message::MonSmgrFields::ExtOsc field. struct ExtOscCommon { /// @brief Name of the @ref ublox::message::MonSmgrFields::ExtOsc field. static const char* name() { return "extOsc"; } }; /// @brief Common types and functions for /// @ref ublox::message::MonSmgrFields::DiscSrc field. struct DiscSrcCommon { /// @brief Values enumerator for /// @ref ublox::message::MonSmgrFields::DiscSrc field. enum class ValueType : std::uint8_t { Internal = 0, ///< value @b Internal GNSS = 1, ///< value @b GNSS EXTINT0 = 2, ///< value @b EXTINT0 EXTINT1 = 3, ///< value @b EXTINT1 HostInternal = 4, ///< value @b HostInternal HostExternal = 5, ///< value @b HostExternal // --- Extra values generated for convenience --- FirstValue = 0, ///< First defined value. LastValue = 5, ///< Last defined value. ValuesLimit = 6, ///< Upper limit for defined values. }; /// @brief Name of the @ref ublox::message::MonSmgrFields::DiscSrc field. static const char* name() { return "discSrc"; } /// @brief Retrieve name of the enum value static const char* valueName(ValueType val) { static const char* Map[] = { "Internal", "GNSS", "EXTINT0", "EXTINT1", "HostInternal", "HostExternal" }; static const std::size_t MapSize = std::extent<decltype(Map)>::value; if (MapSize <= static_cast<std::size_t>(val)) { return nullptr; } return Map[static_cast<std::size_t>(val)]; } }; /// @brief Values enumerator for /// @ref ublox::message::MonSmgrFields::DiscSrc field. using DiscSrcVal = DiscSrcCommon::ValueType; /// @brief Common functions for /// @ref ublox::message::MonSmgrFields::Gnss field. struct GnssCommon { /// @brief Name of the @ref ublox::message::MonSmgrFields::Gnss field. static const char* name() { return "gnss"; } /// @brief Retrieve name of the bit of /// @ref ublox::message::MonSmgrFields::Gnss field. static const char* bitName(std::size_t idx) { static const char* Map[] = { "gnssAvail" }; static const std::size_t MapSize = std::extent<decltype(Map)>::value; if (MapSize <= idx) { return nullptr; } return Map[idx]; } }; /// @brief Common functions for /// @ref ublox::message::MonSmgrFields::ExtInt0 field. struct ExtInt0Common { /// @brief Name of the @ref ublox::message::MonSmgrFields::ExtInt0 field. static const char* name() { return "extInt0"; } /// @brief Retrieve name of the bit of /// @ref ublox::message::MonSmgrFields::ExtInt0 field. static const char* bitName(std::size_t idx) { static const char* Map[] = { "extInt0Avail", "extInt0Type", "extInt0FeedBack" }; static const std::size_t MapSize = std::extent<decltype(Map)>::value; if (MapSize <= idx) { return nullptr; } return Map[idx]; } }; /// @brief Common functions for /// @ref ublox::message::MonSmgrFields::ExtInt1 field. struct ExtInt1Common { /// @brief Name of the @ref ublox::message::MonSmgrFields::ExtInt1 field. static const char* name() { return "extInt1"; } /// @brief Retrieve name of the bit of /// @ref ublox::message::MonSmgrFields::ExtInt1 field. static const char* bitName(std::size_t idx) { static const char* Map[] = { "extInt1Avail", "extInt1Type", "extInt1FeedBack" }; static const std::size_t MapSize = std::extent<decltype(Map)>::value; if (MapSize <= idx) { return nullptr; } return Map[idx]; } }; }; /// @brief Common types and functions of /// @ref ublox::message::MonSmgr message. /// @see ublox::message::MonSmgr struct MonSmgrCommon { /// @brief Name of the @ref ublox::message::MonSmgr message. static const char* name() { return "MON-SMGR"; } }; } // namespace message } // namespace ublox
[ "arobenko@gmail.com" ]
arobenko@gmail.com
8124bf6bc06e551eb0b98d5b7823d982ae7f399a
1ea487e63a8ce31521e0f74422772c8b64e1255f
/programmers/행렬의곱셈/main.cpp
9a5902ef5571ec436078d832f8b2a6f9362a1a35
[]
no_license
Hong9595/Algorithm
50fa36ffb8c7a7d98d7231f2c36f246356f4c68f
c2f830b6af9330d2dbeacf089366e63654fa717c
refs/heads/master
2021-03-06T18:22:21.608375
2020-04-09T03:15:27
2020-04-09T03:15:27
246,215,521
0
0
null
null
null
null
UTF-8
C++
false
false
771
cpp
#include <iostream> #include <string> #include <vector> using namespace std; vector<vector<int>> solution(vector<vector<int>> arr1, vector<vector<int>> arr2) { vector<vector<int>> answer; int rowSize = (int)arr1.size(); int colSize = (int)arr2[0].size(); answer.assign(rowSize, vector<int>(colSize,0)); int arr1ColSize = (int)arr1[0].size(); for(int i=0; i<rowSize; i++) { for(int j=0; j<colSize; j++) { for(int k=0; k<arr1ColSize; k++) { // arr1ColSize == arr2RowSize answer[i][j] += (arr1[i][k] * arr2[k][j]); } } } return answer; } int main(int argc, const char * argv[]) { // insert code here... std::cout << "Hello, World!\n"; return 0; }
[ "ahk959595@gmail.com" ]
ahk959595@gmail.com
4b1f0fcda6fbffd3a1c9d2159454fbe1accd3940
36ffa02d163ea7ffdc281a5d95db4b298f8b6b22
/modules/source/src/ffmpeg_parser.cpp
00dbe983b0841c411277825fa1426f3d2c95e7bf
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "JSON", "MIT", "BSD-3-Clause" ]
permissive
polarbear8/CNStream
d39346403aa53fb7de8b4a9e0575b8b11ad81e37
53d818220905dcdf061b329aad9b890e0b952674
refs/heads/master
2023-01-01T06:32:38.822589
2020-09-29T09:27:29
2020-09-29T09:27:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,180
cpp
/************************************************************************* * Copyright (C) [2020] by Cambricon, Inc. 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 * * 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. *************************************************************************/ extern "C" { #include <libavcodec/avcodec.h> #ifdef HAVE_FFMPEG_AVDEVICE #include <libavdevice/avdevice.h> #endif // HAVE_FFMPEG_AVDEVICE #include <libavformat/avformat.h> #include <libavutil/avutil.h> #include <libavutil/log.h> }; #include <string> #include <algorithm> #include <vector> #include "ffmpeg_parser.hpp" #include "cnstream_logging.hpp" #define DEFAULT_MODULE_CATEGORY SOURCE RingBuffer::RingBuffer(const size_t capacity) : front_(0) , rear_(0) , size_(0) , capacity_(capacity) { data_ = new(std::nothrow) uint8_t[capacity]; } size_t RingBuffer::Write(const void *data, const size_t bytes) { if (bytes == 0) return 0; std::unique_lock<std::mutex> lk(mutex_); const auto capacity = capacity_; if (capacity < bytes) { return -1; } while ((capacity - size_) < bytes) { if (cond_w_.wait_for(lk, std::chrono::seconds(2)) == std::cv_status::timeout) { return -1; } } const auto bytes_to_write = bytes; if (bytes_to_write <= capacity - rear_) { memcpy(data_ + rear_, data, bytes_to_write); rear_ += bytes_to_write; if (rear_ == capacity) rear_ = 0; } else { const auto size_1 = capacity - rear_; memcpy(data_ + rear_, data, size_1); const auto size_2 = bytes_to_write - size_1; memcpy(data_, static_cast<const uint8_t*>(data) + size_1, size_2); rear_ = size_2; } size_ += bytes_to_write; cond_r_.notify_one(); return bytes_to_write; } size_t RingBuffer::Read(void *data, const size_t bytes) { if (bytes == 0) return 0; std::unique_lock<std::mutex> lk(mutex_); while (!size_) { if (cond_r_.wait_for(lk, std::chrono::seconds(2)) == std::cv_status::timeout) { return -1; } } const auto bytes_to_read = std::min(bytes, size_); const auto capacity = capacity_; if (bytes_to_read <= capacity - front_) { memcpy(data, data_ + front_, bytes_to_read); front_ += bytes_to_read; if (front_ == capacity) front_ = 0; } else { const auto size_1 = capacity - front_; memcpy(data, data_ + front_, size_1); const auto size_2 = bytes_to_read - size_1; memcpy(static_cast<uint8_t*>(data) + size_1, data_, size_2); front_ = size_2; } size_ -= bytes_to_read; cond_w_.notify_one(); return bytes_to_read; } #ifdef __GNUC__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #endif /** * FFMPEG use FF_AV_INPUT_BUFFER_PADDING_SIZE instead of * FF_INPUT_BUFFER_PADDING_SIZE since from version 2.8 * (avcodec.h/version:56.56.100) * */ #define FFMPEG_VERSION_2_8 AV_VERSION_INT(56, 56, 100) /** * FFMPEG use AVCodecParameters instead of AVCodecContext * since from version 3.1(libavformat/version:57.40.100) **/ #define FFMPEG_VERSION_3_1 AV_VERSION_INT(57, 40, 100) struct local_ffmpeg_init { local_ffmpeg_init() { avcodec_register_all(); av_register_all(); avformat_network_init(); #ifdef HAVE_FFMPEG_AVDEVICE avdevice_register_all(); #endif } }; static local_ffmpeg_init init_ffmpeg; namespace cnstream { class StreamParserImpl { public: StreamParserImpl() {} ~StreamParserImpl() {} int Open(std::string fmt) { queue_ = new (std::nothrow) RingBuffer(4 * 1024 * 1024); if (!queue_) return -1; fmt_ = fmt; thread_ = std::thread(&StreamParserImpl::FindInfo, this); return 0; } void Close() { if (thread_.joinable()) { thread_.join(); } if (queue_) { delete queue_, queue_ = nullptr; } } int Parse(unsigned char *bitstream, int size); int GetInfo(VideoStreamInfo &info); // NOLINT private: void FindInfo(); static constexpr int io_buffer_size_ = 32768; std::string fmt_; RingBuffer *queue_ = nullptr; std::promise<VideoStreamInfo> promise_; std::atomic<int> info_got_{0}; std::atomic<int> info_ready_{0}; VideoStreamInfo info_; std::thread thread_; }; // class StreamParserImpl StreamParser::StreamParser() { impl_ = new (std::nothrow) StreamParserImpl(); } StreamParser::~StreamParser() { if (impl_) delete impl_; } int StreamParser::Open(std::string fmt) { if (impl_) { return impl_->Open(fmt); } return -1; } void StreamParser::Close() { if (impl_) { impl_->Close(); } } int StreamParser::Parse(unsigned char *bitstream, int size) { if (impl_) { return impl_->Parse(bitstream, size); } return -1; } int StreamParser::GetInfo(VideoStreamInfo &info) { if (impl_) { return impl_->GetInfo(info); } return -1; } static int read_packet(void *opaque, uint8_t *buf, int buf_size) { RingBuffer *queue_ = reinterpret_cast<RingBuffer*>(opaque); if (queue_) { int size = queue_->Read(buf, buf_size); if (size < 0) { return AVERROR_EOF; } return size; } return AVERROR_EOF; } bool GetVideoStreamInfo(const AVFormatContext *ic, int &video_index, VideoStreamInfo &info) { // NOLINT video_index = -1; AVStream* st = nullptr; for (uint32_t loop_i = 0; loop_i < ic->nb_streams; loop_i++) { st = ic->streams[loop_i]; #if LIBAVFORMAT_VERSION_INT >= FFMPEG_VERSION_3_1 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) { #else if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { #endif video_index = loop_i; break; } } if (video_index == -1) { MLOG(ERROR) << "Didn't find a video stream."; return false; } #if LIBAVFORMAT_VERSION_INT >= FFMPEG_VERSION_3_1 info.codec_id = st->codecpar->codec_id; info.codec_width = st->codecpar->width; info.codec_height = st->codecpar->height; int field_order = st->codecpar->field_order; info.color_space = st->codecpar->color_space; info.bitrate = st->codecpar->bit_rate / 1000; #else info.codec_id = st->codec->codec_id; info.codec_width = st->codec->width; info.codec_height = st->codec->height; int field_order = st->codec->field_order; info.color_space = st->codec->colorspace; info.bitrate = st->codec->bit_rate / 1000; #endif if (!info.codec_width || !info.codec_height) { MLOG(ERROR) << "Parse video stream info failed."; return false; } /*At this moment, if the demuxer does not set this value (avctx->field_order == UNKNOWN), * the input stream will be assumed as progressive one. */ switch (field_order) { case AV_FIELD_TT: case AV_FIELD_BB: case AV_FIELD_TB: case AV_FIELD_BT: info.progressive = 0; break; case AV_FIELD_PROGRESSIVE: // fall through default: info.progressive = 1; break; } info.framerate.den = st->avg_frame_rate.den; info.framerate.num = st->avg_frame_rate.num; info.time_base = st->time_base; #if LIBAVFORMAT_VERSION_INT >= FFMPEG_VERSION_3_1 uint8_t* extradata = st->codecpar->extradata; int extradata_size = st->codecpar->extradata_size; #else unsigned char* extradata = st->codec->extradata; int extradata_size = st->codec->extradata_size; #endif if (extradata && extradata_size) { info.extra_data.resize(extradata_size); memcpy(info.extra_data.data(), extradata, extradata_size); } return true; } #if LIBAVCODEC_VERSION_INT >= FFMPEG_VERSION_2_8 #define CN_INPUT_BUFFER_PADDING_SIZE AV_INPUT_BUFFER_PADDING_SIZE #else #define CN_INPUT_BUFFER_PADDING_SIZE FF_INPUT_BUFFER_PADDING_SIZE #endif void StreamParserImpl::FindInfo() { AVFormatContext *ic = nullptr; AVIOContext *avio = nullptr; unsigned char *io_buffer = nullptr; #if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(56, 56, 100) io_buffer = (unsigned char*)av_malloc(io_buffer_size_ + AV_INPUT_BUFFER_PADDING_SIZE); #else io_buffer = (unsigned char*)av_malloc(io_buffer_size_ + FF_INPUT_BUFFER_PADDING_SIZE); #endif avio = avio_alloc_context(io_buffer, io_buffer_size_, 0, this->queue_, &read_packet, nullptr, nullptr); if (!avio) { av_free(io_buffer); info_got_.store(-1); return; } ic = avformat_alloc_context(); if (!ic) { av_freep(&avio->buffer); av_free(avio); info_got_.store(-1); return; } ic->pb = avio; // open input ic->flags |= AVFMT_FLAG_NOBUFFER; ic->probesize = 100 * 1024; // FIXME AVInputFormat *ifmt = nullptr; if (!fmt_.empty()) { ifmt = av_find_input_format(fmt_.c_str()); } int ret_code = avformat_open_input(&ic, "mem", ifmt, NULL); if (0 != ret_code) { av_freep(&avio->buffer); av_free(avio); ic->pb = nullptr; avformat_close_input(&ic); info_got_.store(-1); return; } if (avformat_find_stream_info(ic, NULL) < 0) { av_freep(&avio->buffer); av_free(avio); ic->pb = nullptr; avformat_close_input(&ic); info_got_.store(-1); return; } VideoStreamInfo info; int video_index; if (!GetVideoStreamInfo(ic, video_index, info)) { av_freep(&avio->buffer); av_free(avio); ic->pb = nullptr; avformat_close_input(&ic); info_got_.store(-1); return; } promise_.set_value(info); info_got_.store(1); MLOG(INFO) << this << " codec_id = " << info.codec_id; MLOG(INFO) << this << " framerate = " << info.framerate.num << "/" << info.framerate.den; // free avio explicitly av_freep(&avio->buffer); av_free(avio); ic->pb = nullptr; avformat_close_input(&ic); return; } int StreamParserImpl::Parse(unsigned char *buf, int size) { if (info_got_.load() == -1) { MLOG(ERROR) << this << " Parse info failed."; return -1; } if (info_got_.load() == 1) { return 1; } if (!buf || !size || !queue_) { return 0; } // feed frame-bitstream int offset = 0; while (1) { int bytes = queue_->Write(buf + offset, size - offset); if (bytes < 0) { MLOG(ERROR) << this << " Write failed"; return -1; } offset += bytes; if (offset >= size) { break; } } return 0; } int StreamParserImpl::GetInfo(VideoStreamInfo &info) { if (info_got_.load() == -1) { return -1; } if (info_ready_.load()) { info = info_; return 1; } if (info_got_.load() == 1) { std::future<VideoStreamInfo> future_ = promise_.get_future(); info_ = future_.get(); info = info_; info_ready_.store(1); return 1; } return 0; } static int FindStartCode(unsigned char *buf) { if (buf[0] == 0 && buf[1] == 0 && buf[2] == 0 && buf[3] == 1) { return 4; } if (buf[0] == 0 && buf[1] == 0 && buf[2] == 1) { return 3; } return 0; } static int GetNaluH2645(unsigned char *buf, int len, bool isH264, std::vector<NalDesc> &vec_desc) { // NOLINT std::vector<int> vec_pos; for (int i = 0; i < len - 4; i++) { int size = FindStartCode(buf + i); if (!size) { continue; } vec_pos.push_back(i); i += size - 1; } if (vec_pos.empty()) { return 0; } int num = vec_pos.size(); for (int i = 0; i < num - 1; i++) { NalDesc desc; desc.nal = buf + vec_pos[i]; desc.len = vec_pos[i + 1] - vec_pos[i]; int type_idx = (desc.nal[2] == 1) ? 3 : 4; if (desc.len < type_idx) { MLOG(ERROR) << "INVALID nal size"; return -1; } if (isH264) { desc.type = desc.nal[type_idx] & 0x1F; } else { desc.type = (desc.nal[type_idx] >> 1) & 0x3F; } vec_desc.push_back(desc); } // handle the last nal if (vec_pos[num - 1]) { NalDesc desc; desc.nal = buf + vec_pos[num - 1]; desc.len = len - vec_pos[num - 1]; int type_idx = (desc.nal[2] == 1) ? 3 : 4; if (desc.len >= type_idx) { if (isH264) { desc.type = desc.nal[type_idx] & 0x1F; } else { desc.type = (desc.nal[type_idx] >> 1) & 0x3F; } } vec_desc.push_back(desc); } return 0; } H2645NalSplitter::~H2645NalSplitter() { if (es_buffer_) { delete[] es_buffer_, es_buffer_ = nullptr; } } int H2645NalSplitter::SplitterWriteFrame(unsigned char *buf, int len) { if (buf && len) { std::vector<NalDesc> vec_desc; if (GetNaluH2645(buf, len, isH264_, vec_desc) < 0) { return -1; } for (auto &it : vec_desc) { int ret = this->SplitterOnNal(it, false); if (ret < 0) { MLOG(ERROR) << "Write h264/5 nalu failed."; return ret; } } } else { NalDesc desc; int ret = this->SplitterOnNal(desc, true); if (ret < 0) { MLOG(ERROR) << "Write h264/5 eos failed."; return ret; } } return 0; } int H2645NalSplitter::SplitterWriteChunk(unsigned char *buf, int len) { static const int max_es_buffer_size = 1024 * 1024; if (buf && len) { if (!es_buffer_) { es_buffer_ = new(std::nothrow) unsigned char[max_es_buffer_size]; if (!es_buffer_) { MLOG(ERROR) << "Failed to alloc es_buffer"; return -1; } es_len_ = 0; } if (es_len_ + len > max_es_buffer_size) { MLOG(ERROR) << "Buffer overflow...FIXME"; return -1; } memcpy(es_buffer_ + es_len_, buf, len); es_len_ += len; std::vector<NalDesc> vec_desc; int ret = GetNaluH2645(es_buffer_, es_len_, isH264_, vec_desc); if (ret < 0) { MLOG(ERROR) << "Get h264/5 nalu failed."; return ret; } // remove the last one if (vec_desc.size()) { NalDesc desc = vec_desc[vec_desc.size() - 1]; vec_desc.pop_back(); for (auto &it : vec_desc) { int ret = this->SplitterOnNal(it, false); if (ret < 0) { MLOG(ERROR) << "Write h264/5 nalu failed."; return ret; } } if (desc.len != es_len_) { memmove(es_buffer_, desc.nal, desc.len); es_len_ = desc.len; } } return 0; } // flush data... if (es_buffer_ && es_len_) { NalDesc desc; desc.nal = es_buffer_; desc.len = es_len_; if (es_len_ > 4) { int type_idx = (desc.nal[2] == 1) ? 3 : 4; if (isH264_) { desc.type = desc.nal[type_idx] & 0x1F; } else { desc.type = (desc.nal[type_idx] >> 1)& 0x3F; } } int ret = this->SplitterOnNal(desc, false); if (ret < 0) { MLOG(ERROR) << "Write h264/5 nalu failed."; return ret; } } // send eos NalDesc desc; int ret = this->SplitterOnNal(desc, true); if (ret < 0) { LOG(ERROR) << "Write eos failed. nalu mode."; return ret; } return 0; } } // namespace cnstream
[ "noreply@github.com" ]
noreply@github.com
25bda793f9d9fe63cf69b3610a80d78a5dbdb9ec
83d3a0a5756d9361103db76d6b0f6187ec84d063
/Data_Recovery/Source.cpp
e65a5095fb188491ff40306c7ecf62758df2cf80
[]
no_license
rmonfort/Data_Recovery
0a76854716b28d2440010cfe7271b8dc604a2aca
7bfdff79f49d2f45d0c7c8b1f2fa7ed2ef12a1e7
refs/heads/master
2021-01-21T12:39:41.734824
2014-09-11T20:30:42
2014-09-11T20:30:42
23,932,126
1
0
null
null
null
null
UTF-8
C++
false
false
1,915
cpp
#include <iostream> #include <string> #include <fstream> #include <sstream> #include <vector> #include <map> using std::cin; using std::cout; using std::endl; using std::string; using std::ifstream; using std::istringstream; using std::getline; using std::vector; using std::map; using std::stoi; int main(int argc, char *argv[]) { string input_file; // Check first argument if it exists for input file, otherwise ask user if (argc > 1) { input_file = argv[1]; } else { cout << "Please enter the path to your input file: " << endl; cin >> input_file; } // Open input file and check if successfully opened ifstream ifs(input_file); if (!ifs) { cout << "Failed to open input file." << endl; return 1; } // Cycle through each line in file string line; while (getline(ifs, line)) { // Break line into two strings based on semicolon istringstream iss(line); string scrambled_sentence, pattern; getline(iss, scrambled_sentence, ';'); getline(iss, pattern, ';'); // Convert pattern string into ints vector<int> number_pattern; iss.str(""); iss.clear(); iss.str(pattern); string temp; while (getline(iss, temp, ' ')) { int number = stoi(temp); number_pattern.push_back(number); } // Find missing number in pattern int number_of_elements = number_pattern.size(); int missing_number = (number_of_elements + 1)*(number_of_elements + 2) / 2; for (auto &number : number_pattern) { missing_number -= number; } number_pattern.push_back(missing_number); // Unscramble sentence and print to output iss.str(""); iss.clear(); iss.str(scrambled_sentence); map<int, string> my_sentence; for (auto &n : number_pattern) { string temp; getline(iss, temp, ' '); my_sentence[n] = temp; } for (auto beg = my_sentence.begin(); beg != my_sentence.end(); beg++) { cout << beg->second << " "; } cout << endl; } return 0; }
[ "richard.s.monfort@gmail.com" ]
richard.s.monfort@gmail.com
63f509d98dba84bca4582ad0dac259f1bc085345
76fe0a0404ca1d71779fc6c1122b87e0d7a7aa1b
/Treinos equipe/xv de piracikobus/2018/06-29 Albaath /c.cpp
f7022ab07c94f955cfdbebd7712a3a831dafe358
[]
no_license
vitorguidi/Competitive-Programming
905dd835671275284418c5885a4a1fae2160f451
823a9299dce7b7f662ea741f31b4687f854bb963
refs/heads/master
2021-06-25T06:58:53.670233
2020-12-19T16:53:15
2020-12-19T16:53:15
133,260,248
3
0
null
2018-05-13T17:46:43
2018-05-13T17:40:24
null
UTF-8
C++
false
false
1,208
cpp
#include <bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define fst first #define snd second #define fr(i,n) for(int i=0;i<n;i++) #define frr(i,n) for(int i=1;i<=n;i++) #define ms(x,i) memset(x,i,sizeof(x)) #define dbg(x) cout << #x << " = " << x << endl #define pq priority_queue #define grtp greater< pair<int,int> > #define gnl cout << endl #define pira cout << "XV de piracikobus" << endl typedef pair<int,int> pii; typedef pair<long long int,long long int> pll; typedef vector<int> vi; typedef vector< pair<int,int> > vii; typedef long long int ll; const int INF = 0x3f3f3f3f; const ll llINF = 0x3f3f3f3f3f3f3f; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int T,mod = pow(10,9) + 7; cin >> T; while (T--){ int n; cin >> n; string s,t,aux; getline(cin,aux); getline (cin,s); getline(cin,t); //cout << s << endl; //cout<< t << endl; int tot=1; fr (i,n){ if(s[i]=='1' && t[i]=='1'){ tot*=2; tot = tot%mod; } if (s[i]=='0') continue; if (s[i] == '1' && t[i] =='0'){ tot = -1; break; } } if (tot == -1) cout << "IMPOSSIBLE" << endl; else cout << tot << endl; } return (0); }
[ "vitorguidi@gmail.com" ]
vitorguidi@gmail.com
673fb26361bcfe12787215790ffcac7a9c186d3b
cf579692f2e289563160b6a218fa5f1b6335d813
/XBtool/hyperlink.h
58949f3768808d0a55031e68c9f5c49066e1009e
[]
no_license
opcow/XBtool
a7451971de3296e1ce5632b0c9d95430f6d3b223
718a7fbf87e08c12c0c829dd2e2c0d6cee967cbe
refs/heads/master
2021-01-16T21:02:17.759102
2011-03-09T23:36:54
2011-03-09T23:36:54
1,461,420
8
2
null
null
null
null
UTF-8
C++
false
false
4,207
h
// HyperLink.h : header file // // // HyperLink static control. // // Copyright Giancarlo Iovino, 1997 (giancarlo@saria.com) // This code is based on CHyperlink by Chris Maunder. // Feel free to use and distribute. May not be sold for profit. #if !defined(AFX_HYPERLINK_H_04ET323B01_023500_0204251998_ENG_INCLUDED_) #define AFX_HYPERLINK_H_04ET323B01_023500_0204251998_ENG_INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 // Structure used to get/set hyperlink colors typedef struct tagHYPERLINKCOLORS { COLORREF crLink; COLORREF crActive; COLORREF crVisited; COLORREF crHover; } HYPERLINKCOLORS; ///////////////////////////////////////////////////////////////////////////// // CHyperLink window class CHyperLink : public CStatic { DECLARE_DYNAMIC(CHyperLink) public: // Link styles static const DWORD StyleUnderline; static const DWORD StyleUseHover; static const DWORD StyleAutoSize; static const DWORD StyleDownClick; static const DWORD StyleGetFocusOnClick; static const DWORD StyleNoHandCursor; static const DWORD StyleNoActiveColor; // Construction/destruction CHyperLink(); virtual ~CHyperLink(); // Attributes public: // Operations public: static void GetColors(HYPERLINKCOLORS& linkColors); static HCURSOR GetLinkCursor(); static void SetLinkCursor(HCURSOR hCursor); static void SetColors(COLORREF crLinkColor, COLORREF crActiveColor, COLORREF crVisitedColor, COLORREF crHoverColor = -1); static void SetColors(HYPERLINKCOLORS& colors); void SetURL(CString strURL); CString GetURL() const; DWORD GetLinkStyle() const; BOOL ModifyLinkStyle(DWORD dwRemove, DWORD dwAdd, BOOL bApply=TRUE); void SetWindowText(LPCTSTR lpszText); void SetFont(CFont *pFont); BOOL IsVisited() const; void SetVisited(BOOL bVisited = TRUE); // Use this if you want to subclass and also set different URL BOOL SubclassDlgItem(UINT nID, CWnd* pParent, LPCTSTR lpszURL=NULL) { m_strURL = lpszURL; return CStatic::SubclassDlgItem(nID, pParent); } // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CHyperLink) public: virtual BOOL PreTranslateMessage(MSG* pMsg); protected: virtual void PreSubclassWindow(); //}}AFX_VIRTUAL // Implementation protected: static void SetDefaultCursor(); static LONG GetRegKey(HKEY key, LPCTSTR subkey, LPTSTR retdata); static void ReportError(int nError); static HINSTANCE GotoURL(LPCTSTR url, int showcmd); void AdjustWindow(); void FollowLink(); inline void SwitchUnderline(); // Protected attributes protected: static COLORREF g_crLinkColor; // Link normal color static COLORREF g_crActiveColor; // Link active color static COLORREF g_crVisitedColor; // Link visited color static COLORREF g_crHoverColor; // Hover color static HCURSOR g_hLinkCursor; // Hyperlink mouse cursor BOOL m_bLinkActive; // Is the link active? BOOL m_bOverControl; // Is cursor over control? BOOL m_bVisited; // Has link been visited? DWORD m_dwStyle; // Link styles CString m_strURL; // Hyperlink URL string CFont m_Font; // Underlined font (if required) CToolTipCtrl m_ToolTip; // The link tooltip // Generated message map functions protected: //{{AFX_MSG(CHyperLink) afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor); afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message); afx_msg void OnMouseMove(UINT nFlags, CPoint point); afx_msg void OnLButtonUp(UINT nFlags, CPoint point); afx_msg void OnSetFocus(CWnd* pOldWnd); afx_msg void OnKillFocus(CWnd* pNewWnd); afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags); afx_msg UINT OnNcHitTest(CPoint point); afx_msg void OnLButtonDown(UINT nFlags, CPoint point); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Developer Studio will insert additional declarations immediately before the previous line #endif // !defined(AFX_HYPERLINK_H_04ET323B01_023500_0204251998_ENG_INCLUDED_)
[ "mitch.crane@gmail.com" ]
mitch.crane@gmail.com
fdacc2a0df46e375a20c0a9eb68108477db2d9d5
e758b9c3368afe63f3624ca5408986c17ff85c2f
/CefDemo/CefDemo/MainWnd.cpp
d0c2d166f710346355316d13f057225984cda330
[]
no_license
chensenn8631/CEFDemo
33aa6e55a91829a320c977eda9a7d1e9807bf987
548a4c95e8a442db267d77be558a033c90c3f42c
refs/heads/master
2020-04-23T05:58:09.389885
2019-02-22T02:30:20
2019-02-22T02:30:20
170,958,092
1
0
null
null
null
null
UTF-8
C++
false
false
975
cpp
#include "StdAfx.h" #include "MainWnd.h" MainWnd::MainWnd(LPCTSTR szXmlFile, LPCTSTR szXmlFolder) : m_szXmlFile(szXmlFile), m_szXmlFolder(szXmlFolder) { } MainWnd::~MainWnd(void) { } void MainWnd::InitWindow() { } void MainWnd::Notify(DuiLib::TNotifyUI& msg) { return __super::Notify(msg); } DuiLib::CDuiString MainWnd::GetSkinFolder() { return m_szXmlFolder; } DuiLib::CDuiString MainWnd::GetSkinFile() { return m_szXmlFile; } LPCTSTR MainWnd::GetWindowClassName(void) const { return _T("MainWnd"); } LRESULT MainWnd::HandleCustomMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { return __super::HandleCustomMessage( uMsg, wParam, lParam, bHandled); } void MainWnd::OnClick(DuiLib::TNotifyUI& msg) { DuiLib::CDuiString szName = msg.pSender->GetName(); if(msg.sType == _T("click")) { if(szName == _T("close_btn")) { ::PostQuitMessage(0); } } return __super::OnClick(msg); }
[ "47681968+chensenn8631@users.noreply.github.com" ]
47681968+chensenn8631@users.noreply.github.com
68f13263e26f841e71c02253d0ede35a12295829
a1809f8abdb7d0d5bbf847b076df207400e7b08a
/Simpsons Hit&Run/game/libs/pure3d/toollib/inc/tlCompositeDrawable.hpp
388e5cdcd8bbfbdb96f8c7cd0d757e2b82652461
[]
no_license
RolphWoggom/shr.tar
556cca3ff89fff3ff46a77b32a16bebca85acabf
147796d55e69f490fb001f8cbdb9bf7de9e556ad
refs/heads/master
2023-07-03T19:15:13.649803
2021-08-27T22:24:13
2021-08-27T22:24:13
400,380,551
8
0
null
null
null
null
UTF-8
C++
false
false
7,726
hpp
/*=========================================================================== tlCompositeDrawable.hpp created Nov 29, 2000 Liberty Walker Copyright (c)2000 Radical Entertainment, Inc. All rights reserved. ===========================================================================*/ #ifndef _TLCOMPOSITEDRAWABLE_HPP #define _TLCOMPOSITEDRAWABLE_HPP #include "tlEntity.hpp" #include "tlTable.hpp" #include "tlLoadManager.hpp" class tlSkeleton; class tlSkin; class tlDataChunk; class tlInventory; class tlFrameController; class tlAnimatedObjectFactory; //***************************************************************************** // tlCompositeDrawableItem //***************************************************************************** class tlCompositeDrawableItem : public tlEntity { public: tlCompositeDrawableItem(); ~tlCompositeDrawableItem(); void SetTranslucency(bool isTrans){isTranslucent = isTrans;} bool GetTranslucency(void){return(isTranslucent);} void SetSortOrder(float s) { sortOrder = s; } float GetSortOrder(float s) { return sortOrder; } protected: bool isTranslucent; float sortOrder; }; //***************************************************************************** // tlCompositeDrawableSkin //***************************************************************************** class tlCompositeDrawableSkin : public tlCompositeDrawableItem { public: tlCompositeDrawableSkin(); tlCompositeDrawableSkin(tlDataChunk* ch); ~tlCompositeDrawableSkin(); void LoadFromChunk16(tlDataChunk* ch); tlDataChunk* Chunk16(); void ResolveReferences(tlInventory* inv); void MarkReferences(int m); bool FindReferenceMark(int m); tlSkin* GetSkinPtr() { return skinPtr; } protected: tlSkin* skinPtr; }; //***************************************************************************** // tlCompositeDrawableProp //***************************************************************************** class tlCompositeDrawableProp : public tlCompositeDrawableItem { public: tlCompositeDrawableProp(); tlCompositeDrawableProp(tlDataChunk* ch); ~tlCompositeDrawableProp(); void LoadFromChunk16(tlDataChunk* ch); virtual tlDataChunk* Chunk16(); void SetSkeletonJointID(int id){ skeletonJointID = id; } int GetSkeletonJointID(void){ return(skeletonJointID); } void ResolveReferences(tlInventory* inv); void MarkReferences(int m); bool FindReferenceMark(int m); // // These are for sorting // static int CompareSort( const void *prop1, const void *prop2 ); int SortPriority(){return((endOffsetPriority)?(baseSortPriority+endOffsetPriority):arrayIndex);} void SetIndex(int index){arrayIndex = index;} void SetEndBasePriority(int priority){baseSortPriority = priority;} void SetEndSortPriority(int endPriority){endOffsetPriority = endPriority;} tlEntity* GetPropPtr() { return propPtr; } protected: int skeletonJointID; int arrayIndex; int baseSortPriority; int endOffsetPriority; tlEntity* propPtr; }; //***************************************************************************** // tlCompositeDrawableEffect //***************************************************************************** class tlCompositeDrawableEffect : public tlCompositeDrawableProp { public: tlCompositeDrawableEffect(); ~tlCompositeDrawableEffect(); virtual tlDataChunk* Chunk16(); void LoadFromChunk16(tlDataChunk* ch); }; //***************************************************************************** // tlCompositeDrawable //***************************************************************************** class tlCompositeDrawable : public tlEntity { public: tlCompositeDrawable(); tlCompositeDrawable(tlDataChunk* ch); tlCompositeDrawable(tlCompositeDrawable* sourceCompDrawable); virtual ~tlCompositeDrawable(); //NOTE: this automatically stores the factory in the inventory as well //as creating animated object instances for scenegraphs that need it /* **** AnimRange DISABLED for removal **** tlAnimatedObjectFactory* ConvertToAnimatedObjectFactory(tlInventory* inv, bool createInstances = true, unsigned int numSubAnimations = 0, tlTable<tlFrameController*>** subAnimations = NULL); */ tlAnimatedObjectFactory* ConvertToAnimatedObjectFactory(tlInventory* inv, bool createInstances = true ); void LoadFromChunk16(tlDataChunk* ch); tlDataChunk* Chunk16(); void SetSkeletonName(const char*); const char* GetSkeletonName() const { return skeletonName; } tlCompositeDrawableSkin* AddSkinReference(const char* skinName, bool isTranslucent = false); tlCompositeDrawableProp* AddPropReference(const char* propName, int skeletonID, int priorityOffset = 0, bool isTranslucent = false); tlCompositeDrawableEffect* AddEffectReference(const char* propName, int skeletonID, int priorityOffset = 0, bool isTranslucent = false); void ResolveReferences(tlInventory* inv); void MarkReferences(int m); bool FindReferenceMark(int m); // // Uses the skeleton to sort // void ReMapJointIndex(const tlSkeleton* skel); // // Sort Prop Draw Order // void SortProps(void); void SortEffects(void); tlCompositeDrawableSkin* FindSkin( const char *name ); tlCompositeDrawableProp* FindProp(const char* name); tlCompositeDrawableEffect* FindEffect( const char *name ); void RemoveSkin( const char *name ); void RemoveProp(const char* name); void RemoveEffect( const char *name ); tlTable<tlCompositeDrawableSkin*> GetSubSkins(void){return(subSkins);} tlTable<tlCompositeDrawableProp*> GetSubProps(void){return(props);} tlTable<tlCompositeDrawableEffect*> GetSubEffects(void){return(effects);} class Iterator { public: Iterator(tlCompositeDrawable* compDraw): currentTableIndex(0), isDone(false), currentTable(IT_PROPS_TABLE), mCompDrawable(compDraw) {} void First(); void Next(); bool IsDone() const{return(isDone);} tlCompositeDrawableItem* CurrentItem(); private: Iterator(); int currentTableIndex; bool isDone; enum { IT_PROPS_TABLE, IT_SKIN_TABLE, IT_EFFECT_TABLE } currentTable; tlCompositeDrawable* mCompDrawable; }; private: tlTable<tlCompositeDrawableSkin*> subSkins; tlTable<tlCompositeDrawableProp*> props; tlTable<tlCompositeDrawableEffect*> effects; char* skeletonName; tlSkeleton* skeletonPtr; friend Iterator; }; //***************************************************************************** // tlCompositeDrawableLoader //***************************************************************************** class tlCompositeDrawableLoader : public tlEntityLoader { public: tlCompositeDrawableLoader(); virtual tlEntity* Load(tlDataChunk* chunk); }; #endif // _TLCOMPOSITEDRAWABLE
[ "81568815+RolphWoggom@users.noreply.github.com" ]
81568815+RolphWoggom@users.noreply.github.com
36b189f86bdd63b32de4abc5246612f6e1816398
2bc835b044f306fca1affd1c61b8650b06751756
/outlookexpress/mailnews/shell/frntpage.cpp
64ed6cbe2b9d0585cd465d6fa1e8cfc54b424143
[]
no_license
KernelPanic-OpenSource/Win2K3_NT_inetcore
bbb2354d95a51a75ce2dfd67b18cfb6b21c94939
75f614d008bfce1ea71e4a727205f46b0de8e1c3
refs/heads/master
2023-04-04T02:55:25.139618
2021-04-14T05:25:01
2021-04-14T05:25:01
357,780,123
1
0
null
null
null
null
UTF-8
C++
false
false
17,413
cpp
/* * frntpage.cpp * * Purpose: * Implements the Front Page IAthenaView object * * Owner: * EricAn * * Copyright (C) Microsoft Corp. 1997 */ #include "pch.hxx" #include "frntpage.h" #include "resource.h" #include "ourguid.h" #include "thormsgs.h" #include "goptions.h" #include "strconst.h" #include "frntbody.h" #include "acctutil.h" #include "newfldr.h" #include <wininet.h> #include <options.h> #include <layout.h> #include "finder.h" #include <inetcfg.h> #include "instance.h" #include "storutil.h" #include "menuutil.h" #include "menures.h" #include "statbar.h" ASSERTDATA ///////////////////////////////////////////////////////////////////////////// // // Macros // #define FPDOUT(x) DOUTL(DOUT_LEVEL4, x) ///////////////////////////////////////////////////////////////////////////// // // Global Data // static const TCHAR s_szFrontPageWndClass[] = TEXT("ThorFrontPageWndClass"); ///////////////////////////////////////////////////////////////////////////// // // Prototypes // ///////////////////////////////////////////////////////////////////////// // // Constructors, Destructors, and Initialization // CFrontPage::CFrontPage() { m_cRef = 1; m_idFolder = FOLDERID_INVALID; m_pShellBrowser = NULL; m_fFirstActive = FALSE; m_uActivation = SVUIA_DEACTIVATE; m_hwndOwner = NULL; m_hwnd = NULL; m_hwndCtlFocus = NULL; m_pBodyObj = NULL; m_pBodyObjCT = NULL; #ifndef WIN16 // No RAS support in Win16 m_hMenuConnect = 0; #endif m_pStatusBar = NULL; } CFrontPage::~CFrontPage() { SafeRelease(m_pShellBrowser); SafeRelease(m_pBodyObj); SafeRelease(m_pBodyObjCT); SafeRelease(m_pStatusBar); #ifndef WIN16 // No RAS support in Win16 if (m_hMenuConnect) g_pConMan->FreeConnectMenu(m_hMenuConnect); #endif } HRESULT CFrontPage::HrInit(FOLDERID idFolder) { WNDCLASS wc; if (!GetClassInfo(g_hInst, s_szFrontPageWndClass, &wc)) { wc.style = 0; wc.lpfnWndProc = CFrontPage::FrontPageWndProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = g_hInst; wc.hIcon = NULL; wc.hCursor = NULL; wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); wc.lpszMenuName = NULL; wc.lpszClassName = s_szFrontPageWndClass; if (RegisterClass(&wc) == 0 && GetLastError() != ERROR_CLASS_ALREADY_EXISTS) return E_FAIL; } // Make copies of our pidls m_idFolder = idFolder; m_ftType = GetFolderType(m_idFolder); return NOERROR; } ///////////////////////////////////////////////////////////////////////// // // OLE Interfaces // //////////////////////////////////////////////////////////////////////// // // IUnknown // //////////////////////////////////////////////////////////////////////// HRESULT STDMETHODCALLTYPE CFrontPage::QueryInterface(REFIID riid, void **ppvObj) { if (IsEqualIID(riid, IID_IUnknown)) *ppvObj = (void*) (IUnknown *)(IViewWindow *) this; else if (IsEqualIID(riid, IID_IViewWindow)) *ppvObj = (void*) (IViewWindow *) this; else if (IsEqualIID(riid, IID_IOleCommandTarget)) *ppvObj = (void*) (IOleCommandTarget *) this; else { *ppvObj = NULL; return E_NOINTERFACE; } AddRef(); return NOERROR; } ULONG STDMETHODCALLTYPE CFrontPage::AddRef() { DOUT(TEXT("CFrontPage::AddRef() - m_cRef = %d"), m_cRef + 1); return ++m_cRef; } ULONG STDMETHODCALLTYPE CFrontPage::Release() { DOUT(TEXT("CFrontPage::Release() - m_cRef = %d"), m_cRef - 1); if (--m_cRef == 0) { delete this; return 0; } return m_cRef; } //////////////////////////////////////////////////////////////////////// // // IOleWindow // //////////////////////////////////////////////////////////////////////// HRESULT STDMETHODCALLTYPE CFrontPage::GetWindow(HWND * lphwnd) { *lphwnd = m_hwnd; return (m_hwnd ? S_OK : E_FAIL); } HRESULT STDMETHODCALLTYPE CFrontPage::ContextSensitiveHelp(BOOL fEnterMode) { return E_NOTIMPL; } //////////////////////////////////////////////////////////////////////// // // IAthenaView // //////////////////////////////////////////////////////////////////////// HRESULT STDMETHODCALLTYPE CFrontPage::TranslateAccelerator(LPMSG lpmsg) { // see if the body obj wants to snag it. if (m_pBodyObj && m_pBodyObj->HrTranslateAccelerator(lpmsg) == S_OK) return S_OK; return E_NOTIMPL; } HRESULT STDMETHODCALLTYPE CFrontPage::UIActivate(UINT uActivation) { if (uActivation != SVUIA_DEACTIVATE) OnActivate(uActivation); else OnDeactivate(); return NOERROR; } HRESULT STDMETHODCALLTYPE CFrontPage::CreateViewWindow(IViewWindow *lpPrevView, IAthenaBrowser *psb, RECT *prcView, HWND *phWnd) { m_pShellBrowser = psb; Assert(m_pShellBrowser); m_pShellBrowser->AddRef(); m_pShellBrowser->GetWindow(&m_hwndOwner); Assert(IsWindow(m_hwndOwner)); // Load our registry settings LoadBaseSettings(); m_hwnd = CreateWindowEx(WS_EX_CONTROLPARENT|WS_EX_CLIENTEDGE, s_szFrontPageWndClass, NULL, WS_VISIBLE|WS_CHILD|WS_CLIPCHILDREN|WS_CLIPSIBLINGS, prcView->left, prcView->top, prcView->right - prcView->left, prcView->bottom - prcView->top, m_hwndOwner, NULL, g_hInst, (LPVOID)this); if (!m_hwnd) return E_FAIL; *phWnd = m_hwnd; return NOERROR; } HRESULT STDMETHODCALLTYPE CFrontPage::DestroyViewWindow() { if (m_hwnd) { HWND hwndDest = m_hwnd; m_hwnd = NULL; DestroyWindow(hwndDest); } return NOERROR; } HRESULT STDMETHODCALLTYPE CFrontPage::SaveViewState() { // Save our registry settings SaveBaseSettings(); return NOERROR; } // // FUNCTION: CFrontPage::OnInitMenuPopup // // PURPOSE: Called when the user is about to display a menu. We use this // to update the enabled or disabled status of many of the // commands on each menu. // // PARAMETERS: // hmenu - Handle of the main menu. // hmenuPopup - Handle of the popup menu being displayed. // uID - Specifies the id of the menu item that // invoked the popup. // // RETURN VALUE: // Returns S_OK if we process the message. // // #define MF_ENABLEFLAGS(b) (MF_BYCOMMAND|(b ? MF_ENABLED : MF_GRAYED|MF_DISABLED)) #define MF_CHECKFLAGS(b) (MF_BYCOMMAND|(b ? MF_CHECKED : MF_UNCHECKED)) HRESULT CFrontPage::OnPopupMenu(HMENU hmenu, HMENU hmenuPopup, UINT uID) { MENUITEMINFO mii; // give the docobj a chance to update its menu if (m_pBodyObj) m_pBodyObj->HrOnInitMenuPopup(hmenuPopup, uID); return S_OK; } HRESULT CFrontPage::QueryStatus(const GUID *pguidCmdGroup, ULONG cCmds, OLECMD prgCmds[], OLECMDTEXT *pCmdText) { // Let MimeEdit have a crack at them if (m_pBodyObjCT) { m_pBodyObjCT->QueryStatus(pguidCmdGroup, cCmds, prgCmds, pCmdText); } // handled return S_OK; } HRESULT CFrontPage::Exec(const GUID *pguidCmdGroup, DWORD nCmdID, DWORD nCmdExecOpt, VARIANTARG *pvaIn, VARIANTARG *pvaOut) { // make sure that the 'go to inbox' check is consistent with what is in the options dlg // but we'll still let the browser actually handle the command /* if (nCmdID == ID_OPTIONS) { if (m_ftType == FOLDER_ROOTNODE) { VARIANT_BOOL b; if (SUCCEEDED(m_pBodyObj->GetSetCheck(FALSE, &b))) SetDwOption(OPT_LAUNCH_INBOX, b ? TRUE : FALSE, m_hwnd, 0); } } */ // check if the body wants to handle it if (m_pBodyObjCT && m_pBodyObjCT->Exec(pguidCmdGroup, nCmdID, nCmdExecOpt, pvaIn, pvaOut) == NOERROR) return S_OK; return E_FAIL; } HRESULT STDMETHODCALLTYPE CFrontPage::OnFrameWindowActivate(BOOL fActivate) { return m_pBodyObj ? m_pBodyObj->HrFrameActivate(fActivate) : S_OK; } HRESULT STDMETHODCALLTYPE CFrontPage::GetCurCharSet(UINT *cp) { *cp = GetACP(); return (E_NOTIMPL); } HRESULT STDMETHODCALLTYPE CFrontPage::UpdateLayout(THIS_ BOOL fPreviewVisible, BOOL fPreviewHeader, BOOL fPreviewVert, BOOL fReload) { return (E_NOTIMPL); } //////////////////////////////////////////////////////////////////////// // // Message Handling // //////////////////////////////////////////////////////////////////////// LRESULT CALLBACK CFrontPage::FrontPageWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { LRESULT lRet; CFrontPage *pThis; if (msg == WM_NCCREATE) { pThis = (CFrontPage*)((LPCREATESTRUCT)lParam)->lpCreateParams; SetWindowLongPtr(hwnd, GWLP_USERDATA, (LPARAM)pThis); } else pThis = (CFrontPage*)GetWindowLongPtr(hwnd, GWLP_USERDATA); Assert(pThis); return pThis->WndProc(hwnd, msg, wParam, lParam); } LRESULT CFrontPage::WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { BOOL fTip; switch (msg) { HANDLE_MSG(hwnd, WM_CREATE, OnCreate); HANDLE_MSG(hwnd, WM_SIZE, OnSize); HANDLE_MSG(hwnd, WM_NOTIFY, OnNotify); HANDLE_MSG(hwnd, WM_SETFOCUS, OnSetFocus); case WM_COMMAND: return SendMessage(m_hwndOwner, msg, wParam, lParam); case WM_MENUSELECT: HandleMenuSelect(m_pStatusBar, wParam, lParam); return 0; case NVM_INITHEADERS: PostCreate(); return 0; /* case CM_OPTIONADVISE: if ((wParam == OPT_LAUNCH_INBOX || wParam == 0xffffffff) && m_ftType == FOLDER_ROOTNODE) { VARIANT_BOOL b = DwGetOption(OPT_LAUNCH_INBOX) ? VARIANT_TRUE : VARIANT_FALSE; m_pBodyObj->GetSetCheck(TRUE, &b); } case WM_UPDATELAYOUT: m_pShellBrowser->GetViewLayout(DISPID_MSGVIEW_TIPOFTHEDAY, 0, &fTip, 0, 0); m_pBodyObj->ShowTip(fTip); return 0; */ case WM_ACTIVATE: { HWND hwndFocus; DOUT("CFrontPage - WM_ACTIVATE(%#x)", LOWORD(wParam)); m_pShellBrowser->UpdateToolbar(); if (LOWORD(wParam) != WA_INACTIVE) { // DefWindowProc will set the focus to our view window, which // is not what we want. Instead, we will let the explorer set // the focus to our view window if we should get it, at which // point we will set it to the proper control. return 0; } hwndFocus = GetFocus(); if (IsChild(hwnd, hwndFocus)) m_hwndCtlFocus = hwndFocus; else m_pBodyObj->HrGetWindow(&m_hwndCtlFocus); } break; case WM_CLOSE: // ignore CTRL-F4's return 0; case WM_DESTROY: OptionUnadvise(hwnd); SafeRelease(m_pStatusBar); if (m_pBodyObj) { m_pBodyObj->HrUnloadAll(NULL, 0); m_pBodyObj->HrClose(); } return 0; #ifndef WIN16 case WM_DISPLAYCHANGE: #endif case WM_WININICHANGE: case WM_SYSCOLORCHANGE: case WM_QUERYNEWPALETTE: case WM_PALETTECHANGED: if (m_pBodyObj) { HWND hwndBody; m_pBodyObj->HrGetWindow(&hwndBody); SendMessage(hwndBody, msg, wParam, lParam); } /* * * FALL THROUGH * * */ case FTN_PRECHANGE: case FTN_POSTCHANGE: break; default: if (g_msgMSWheel && (msg == g_msgMSWheel)) { HWND hwndFocus = GetFocus(); if (IsChild(hwnd, hwndFocus)) return SendMessage(hwndFocus, msg, wParam, lParam); } break; } return DefWindowProc(hwnd, msg, wParam, lParam); } // // FUNCTION: CFrontPage::OnCreate // // PURPOSE: Creates the child windows necessary for the view and // initializes the data in those child windows. // // PARAMETERS: // hwnd - Handle of the view being created. // lpCreateStruct - Pointer to the creation params passed to // CreateWindow(). // // RETURN VALUE: // Returns TRUE if the initialization is successful. // BOOL CFrontPage::OnCreate(HWND hwnd, LPCREATESTRUCT lpCreateStruct) { // register for option update notification SideAssert(SUCCEEDED(OptionAdvise(hwnd))); m_pBodyObj = new CFrontBody(m_ftType, m_pShellBrowser); if (!m_pBodyObj) goto error; if (FAILED(m_pBodyObj->HrInit(hwnd))) goto error; if (FAILED(m_pBodyObj->HrShow(FALSE))) goto error; return TRUE; error: return FALSE; } // // FUNCTION: CFrontPage::OnSize // // PURPOSE: Notification that the view window has been resized. In // response we update the positions of our child windows and // controls. // // PARAMETERS: // hwnd - Handle of the view window being resized. // state - Type of resizing requested. // cxClient - New width of the client area. // cyClient - New height of the client area. // void CFrontPage::OnSize(HWND hwnd, UINT state, int cxClient, int cyClient) { RECT rcBody, rcFldr; GetClientRect(hwnd, &rcBody); m_pBodyObj->HrSetSize(&rcBody); } // // FUNCTION: CFrontPage::OnSetFocus // // PURPOSE: If the focus ever is set to the view window, we want to // make sure it goes to one of our child windows. Preferably // the focus will go to the last child to have the focus. // // PARAMETERS: // hwnd - Handle of the view window. // hwndOldFocus - Handle of the window losing focus. // void CFrontPage::OnSetFocus(HWND hwnd, HWND hwndOldFocus) { FPDOUT("CFrontPage - WM_SETFOCUS"); // Check to see that we have a window stored to have focus. If not // default to the message list. if (!m_hwndCtlFocus || !IsWindow(m_hwndCtlFocus) || m_hwndCtlFocus == m_hwndOwner) { m_pBodyObj->HrGetWindow(&m_hwndCtlFocus); } if (m_hwndCtlFocus && IsWindow(m_hwndCtlFocus)) SetFocus(m_hwndCtlFocus); } // // FUNCTION: CFrontPage::OnNotify // // PURPOSE: Processes the various notifications we receive from our child // controls. // // PARAMETERS: // hwnd - Handle of the view window. // idCtl - identifies the control sending the notification // pnmh - points to a NMHDR struct with more information regarding the // notification // // RETURN VALUE: // Dependant on the specific notification. // LRESULT CFrontPage::OnNotify(HWND hwnd, int idFrom, LPNMHDR pnmhdr) { if (pnmhdr->code == NM_SETFOCUS) { // if we get a setfocus from a kid, and it's not the // body, be sure to UIDeactivate the body HWND hwndBody = 0; m_pBodyObj->HrGetWindow(&hwndBody); if (pnmhdr->hwndFrom != hwndBody) m_pBodyObj->HrUIActivate(FALSE); m_pShellBrowser->OnViewWindowActive(this); } return 0; } BOOL CFrontPage::OnActivate(UINT uActivation) { // if focus stays within the frame, but goes outside our view. // ie.. TreeView gets focus then we get an activate nofocus. Be sure // to UIDeactivate the docobj in this case if (uActivation == SVUIA_ACTIVATE_NOFOCUS) m_pBodyObj->HrUIActivate(FALSE); if (m_uActivation != uActivation) { OnDeactivate(); m_uActivation = uActivation; SafeRelease(m_pStatusBar); m_pShellBrowser->GetStatusBar(&m_pStatusBar); if (m_pBodyObj) m_pBodyObj->HrSetStatusBar(m_pStatusBar); if (!m_fFirstActive) { PostMessage(m_hwnd, NVM_INITHEADERS, 0, 0L); m_fFirstActive = TRUE; } } return TRUE; } BOOL CFrontPage::OnDeactivate() { if (m_uActivation != SVUIA_DEACTIVATE) { m_uActivation = SVUIA_DEACTIVATE; if (m_pBodyObj) m_pBodyObj->HrSetStatusBar(NULL); } return TRUE; } BOOL CFrontPage::LoadBaseSettings() { return TRUE; } BOOL CFrontPage::SaveBaseSettings() { return TRUE; } void CFrontPage::PostCreate() { Assert(m_pShellBrowser); m_pBodyObj->HrLoadPage(); ProcessICW(m_hwndOwner, m_ftType); }
[ "polarisdp@gmail.com" ]
polarisdp@gmail.com
5a0011079066f29facccf882dfc7d14a9256099e
1c205ca00380969bf3655db6c44b50264b39dfaf
/src/States/QuestionMarkState.h
d54d93b30f8c137608bfb11185e6e51544523fc5
[]
no_license
sshklifov/svcs
a4598155a25d18deb3262c4c618dc343ca1f5fed
f56b517715c31d7021744dd0c3c3534e29a4716a
refs/heads/master
2020-03-17T07:02:53.494192
2018-05-15T10:18:05
2018-05-15T10:18:05
133,380,599
0
1
null
null
null
null
UTF-8
C++
false
false
582
h
#ifndef QUESTION_MARK_STATE_INCLUDED #define QUESTION_MARK_STATE_INCLUDED #include "StateBase.h" class QuestionMarkState : public StateBase { public: QuestionMarkState () = default; QuestionMarkState (const QuestionMarkState&) = delete; void operator= (const QuestionMarkState&) = delete; virtual ~QuestionMarkState () = default; virtual void DeltaFunction (char c, Automata::StatePowerSet& res) const; virtual void EpsilonArrows (Automata::StatePowerSet& res) const; virtual StateBase* Clone () const; }; #endif /* QUESTION_MARK_STATE_INCLUDED */
[ "s.shklifov@gmail.com" ]
s.shklifov@gmail.com
6691a0a0fcfc0b5563593a37f213ee611a10a89f
d761e11c779aea4677ecf8b7cbf28e0a401f6525
/src/bin/anonymize_neoflow/anonymize_neoflow.cpp
515b5ec5b9c1e816bd4726a3eaa4193776383272
[]
no_license
derrick0714/infer
e5d717a878ff51fef6c9b55c444c2448d85f5477
7fabf5bfc34302eab2a6d2867cb4c22a6401ca73
refs/heads/master
2016-09-06T10:37:16.794445
2014-02-12T00:09:34
2014-02-12T00:09:34
7,787,601
5
1
null
null
null
null
UTF-8
C++
false
false
6,312
cpp
#include <iostream> #include <time.h> #include <boost/program_options.hpp> #include <boost/asio/ip/address_v4.hpp> #include "fixed_time_functor.hpp" #include "configuration.hpp" #include "FlatFileReader.hpp" #include "FlatFileWriter.hpp" #include "InferFileWriter.hpp" #include "StrftimeReadEnumerator.hpp" #include "StrftimeWriteEnumerator.hpp" #include "IPv4Network.hpp" #include "FlowStats.hpp" using namespace std; using namespace boost::program_options; std::istream & operator>> (std::istream& s, IPv4Network &net) { using namespace boost::asio::ip; std::string str; s >> str; string::size_type pos(str.find('/')); address_v4 ip; try { ip = address_v4::from_string(str.substr(0,pos)); } catch (const boost::system::system_error &e) { //throw validation_error("invalid CIDR block: bad IP address"); s.setstate(ios_base::failbit); return s; } uint16_t mask(32); if (pos != string::npos) { // get mask try { mask = boost::lexical_cast<uint16_t>(str.substr(pos+1)); } catch (const boost::bad_lexical_cast &e) { //throw validation_error("invalid CIDR block: bad netmask"); s.setstate(ios_base::failbit); return s; } if (mask == 0 || mask > 32) { //throw validation_error("invalid CIDR block: netmask out of range"); s.setstate(ios_base::failbit); return s; } } if (!net.set(ip.to_ulong(), 0xffffffff << (32 - mask))) { //throw validation_error("invalid CIDR block: network/netmask mismatch"); s.setstate(ios_base::failbit); return s; } return s; } int main(int argc, char **argv) { options_description desc_gen("Arguments"); desc_gen.add_options() ("help", "display help message") ("config-file", value<string>()->default_value ("/usr/local/etc/infer.conf"), "specify configuration file") ("date", value<string>(), "the date (YYYY-mm-dd)") ("hour", value<string>(), "the hour (HH)") ; positional_options_description p; p.add("date", 1).add("hour", 1); variables_map vm; try { store(command_line_parser(argc, argv). options(desc_gen).positional(p).run(), vm); } catch (const boost::program_options::error &e) { cerr << e.what() << endl; return 1; } notify(vm); if (vm.count("help")) { cout << desc_gen << endl; return 0; } if (!vm.count("date")) { cerr << "Error: date is requred." << endl; cerr << desc_gen << endl; return 1; } string date(vm["date"].as<string>()); if (!vm.count("hour")) { cerr << "Error: hour is required." << endl; cerr << desc_gen << endl; return 1; } date += " " + vm["hour"].as<string>(); struct tm _tm; memset(&_tm, 0, sizeof(_tm)); if (strptime(date.c_str(), "%Y-%m-%d %H", &_tm) == NULL) { cerr << "Error: invalid date: " << vm["date"].as<string>() << endl; return 1; } time_t tmp_time(timegm(&_tm)); TimeStamp start_time(tmp_time, 0); configuration conf; if (!conf.load(vm["config-file"].as<string>())) { cerr << argv[0] << ": unable to load configuration" << endl; return 1; } string data_directory; if (conf.get(data_directory, "data-directory", "anonymize_neoflow", true) != configuration::OK) { cerr << argv[0] << ": missing or invalid data_directory" << endl; return 1; } string output_directory; if (conf.get(output_directory, "output-directory", "anonymize_neoflow") != configuration::OK) { cerr << argv[0] << ": output-directory required" << endl; return 1; } IPv4Network ip_xor; if (conf.get(ip_xor, "ip-xor", "anonymize_neoflow") != configuration::OK) { cerr << argv[0] << ": ip-xor required" << endl; return 1; } vector<IPv4Network> internal_networks; if (conf.get(internal_networks, "internal-network", "anonymize_neoflow") != configuration::OK) { cerr << argv[0] << ": invalid internal-network" << endl; return 1; } cerr << "conf: data-directory: " << data_directory << endl; cerr << " date: " << date << endl; cerr << " start_time: " << start_time.seconds() << '.' << start_time.microseconds() << endl; cerr << " tmp_time: " << tmp_time << endl; StrftimeReadEnumerator test_enum(output_directory, "%Y/%m/%d/neoflow_%H", start_time, start_time + TimeStamp(1, 0)); if (test_enum.begin() != test_enum.end()) { cerr << "output file '" << test_enum.begin()->string() << "' already exists!" << endl; return 1; } StrftimeReadEnumerator read_enum(data_directory, "%Y/%m/%d/neoflow_%H", start_time, start_time + TimeStamp(1, 0)); if (read_enum.begin() == read_enum.end()) { cerr << "No files matching " << date << endl; return 1; } string infile_name(read_enum.begin()->string()); fixed_time_functor start_time_functor(start_time); boost::shared_ptr<StrftimeWriteEnumerator<FlowStats, fixed_time_functor> > output_enumerator(new StrftimeWriteEnumerator<FlowStats, fixed_time_functor>( output_directory, "%Y/%m/%d/neoflow_%H", start_time_functor)); InferFileWriter<FlatFileWriter<FlowStats>, StrftimeWriteEnumerator<FlowStats, fixed_time_functor> > output_writer(output_enumerator); FlatFileReader<FlowStats> reader; FlowStats flow_stats; ErrorStatus error_status; if (reader.open(infile_name) != E_SUCCESS) { cerr << argv[0] << ": unable to open '" << infile_name << "'" << endl; return 1; } bool src_xor(false), dst_xor(false); while ((error_status = reader.read(flow_stats)) == E_SUCCESS) { // xor the internal IPs src_xor = dst_xor = false; for (vector<IPv4Network>::const_iterator net(internal_networks.begin()); net != internal_networks.end(); ++net) { if (!src_xor && net->rawIsInNetwork(flow_stats.rawSourceIP())) { flow_stats.rawSourceIP(flow_stats.rawSourceIP() ^ ip_xor.rawNetwork()); src_xor = true; } if (!dst_xor && net->rawIsInNetwork(flow_stats.rawDestinationIP())) { flow_stats.rawDestinationIP( flow_stats.rawDestinationIP() ^ ip_xor.rawNetwork()); dst_xor = true; } } // write the anonymized record output_writer.write(&flow_stats); } if (error_status != E_EOF) { cerr << argv[0] << ": error reading from '" << infile_name << "'" << endl; return 1; } if (reader.close() != E_SUCCESS) { cerr << argv[0] << ": error closing '" << infile_name << "'" << endl; return 1; } return 0; }
[ "derrick0714@gmail.com" ]
derrick0714@gmail.com
67386c8ec9bdbfa611edad65f8e3ed770e76c01a
23b35f3eab2baf9c7d359dc5db7d9b44378d1ce9
/CPHSet/SortingAndSearching/kadane.cpp
3cc765ed2123837e2ccf9780c4e2d4f69ae61046
[]
no_license
vraman23/CompetitiveProgramming
c44ff9b90f92cb1681ce401191ac45b0381d7563
cb002fdbdf8c0f870dcbda15471b83e21cfb2c5a
refs/heads/master
2022-12-26T13:24:24.784788
2020-10-07T16:20:32
2020-10-07T16:20:32
285,131,134
0
0
null
null
null
null
UTF-8
C++
false
false
519
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pi; typedef vector<int> vi; #define FOR(i, a, b) for (ll i = a; i < b; i++) #define F0R(i, a) for(ll i = 0; i < a; i++) const int MOD = 1e9+7; // 998244353; const int MX = 2e5+5; // const ll INF = 1e18; // int main() { ios:: sync_with_stdio(0); cin.tie(0); ll curr = -1 * 1e9; ll total = curr; int n; cin >> n; int x [n]; F0R(i, n) cin >> x; F0R(i, n){ curr = max(curr, 0) + } return 0; }
[ "vraman@berkeley.edu" ]
vraman@berkeley.edu
db59437bdbd151e9bea2cf499696c4029eb7bb1b
91d363906125a5748cef618a0e03dfe007ae207d
/libraries/ForceTorqueBalanceYarp/Jr3Fake/Jr3Fake.hpp
afb72c31a1f00cac26cdbba0162bda81f19a3e2c
[]
no_license
roboticslab-uc3m/force-torque-balance
8e2af0cfea982617be6de674a0b348ffeef20567
0f16983e7e516f35cc44e13c5e76b226a31d7b3b
refs/heads/master
2021-07-10T16:21:41.576608
2021-03-31T14:29:14
2021-03-31T14:29:14
54,210,488
0
0
null
null
null
null
UTF-8
C++
false
false
2,379
hpp
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*- #ifndef __JR3_FAKE__ #define __JR3_FAKE__ #include <yarp/os/all.h> #include <yarp/dev/all.h> #include <yarp/dev/IAnalogSensor.h> #include <sstream> namespace teo { /** * @ingroup ForceTorqueBalanceYarp * \defgroup Jr3Fake * @brief Contains teo::Jr3Fake. */ /** * @ingroup Jr3Fake * @brief Implementation for the JR3_FAKE sensor. * */ class Jr3Fake : public yarp::dev::DeviceDriver, public yarp::dev::IAnalogSensor { public: Jr3Fake() { } // --------- DeviceDriver Declarations. Implementation in DeviceDriverImpl.cpp --------- virtual bool open(yarp::os::Searchable& config); virtual bool close(); // --------- IAnalogSensor Declarations. Implementation in IGenericSensorImpl.cpp --------- /** * Read a vector from the sensor. * @param out a vector containing the sensor's last readings. * @return AS_OK or return code. AS_TIMEOUT if the sensor timed-out. */ virtual int read(yarp::sig::Vector &out); /** * Check the state value of a given channel. * @param ch channel number. * @return status. */ virtual int getState(int ch); /** * Get the number of channels of the sensor. * @return number of channels (0 in case of errors). */ virtual int getChannels(); /** * Calibrates the whole sensor. * @return status. */ virtual int calibrateSensor(); /** * Calibrates the whole sensor, using an vector of calibration values. * @param value a vector of calibration values. * @return status. */ virtual int calibrateSensor(const yarp::sig::Vector& value); /** * Calibrates one single channel. * @param ch channel number. * @return status. */ virtual int calibrateChannel(int ch); /** * Calibrates one single channel, using a calibration value. * @param ch channel number. * @param value calibration value. * @return status. */ virtual int calibrateChannel(int ch, double value); protected: int ret, fd; int i; }; } // namespace teo #endif // __JR3_FAKE__
[ "lolipv92@hotmail.com" ]
lolipv92@hotmail.com
eda84ae18a4f3b57ffd7afec601206ff5005aa7c
44ab57520bb1a9b48045cb1ee9baee8816b44a5b
/Engine/Code/CoreTools/TextParsing/SimpleCSV/CommandQuery/CommandAddWorksheet.h
f0d1fcd3ee8e083e9e8544294987fa64c881b2aa
[ "BSD-3-Clause" ]
permissive
WuyangPeng/Engine
d5d81fd4ec18795679ce99552ab9809f3b205409
738fde5660449e87ccd4f4878f7bf2a443ae9f1f
refs/heads/master
2023-08-17T17:01:41.765963
2023-08-16T07:27:05
2023-08-16T07:27:05
246,266,843
10
0
null
null
null
null
GB18030
C++
false
false
1,291
h
/// Copyright (c) 2010-2023 /// Threading Core Render Engine /// /// 作者:彭武阳,彭晔恩,彭晔泽 /// 联系作者:94458936@qq.com /// /// 标准:std:c++20 /// 引擎版本:0.9.0.5 (2023/04/03 20:14) #ifndef CORE_TOOLS_TEXT_PARSING_COMMAND_ADD_WORKSHEET_H #define CORE_TOOLS_TEXT_PARSING_COMMAND_ADD_WORKSHEET_H #include "CoreTools/CoreToolsDll.h" #include "CoreTools/Helper/Export/PerformanceUnsharedExportMacro.h" #include "CoreTools/TextParsing/SimpleCSV/SimpleCSVInternalFwd.h" #include <string> template class CORE_TOOLS_DEFAULT_DECLARE std::shared_ptr<const CoreTools::SimpleCSV::CommandAddWorksheetImpl>; template class CORE_TOOLS_DEFAULT_DECLARE CoreTools::PerformanceUnsharedImpl<CoreTools::SimpleCSV::CommandAddWorksheetImpl>; namespace CoreTools::SimpleCSV { class CORE_TOOLS_DEFAULT_DECLARE CommandAddWorksheet final { public: PERFORMANCE_UNSHARED_TYPE_DECLARE(CommandAddWorksheet); public: CommandAddWorksheet(const std::string& sheetName, const std::string& sheetPath); CLASS_INVARIANT_DECLARE; NODISCARD std::string GetSheetName() const; NODISCARD std::string GetSheetPath() const; private: PackageType impl; }; } #endif // CORE_TOOLS_TEXT_PARSING_COMMAND_ADD_WORKSHEET_H
[ "94458936@qq.com" ]
94458936@qq.com
21ca9de5e99f816a6d6c32169d5aa3ea31dadedb
3e79056f6c3ab04fd84806737c324a16562870c2
/codeforces/div2/487/c.cpp
718693a7e1e2d243c59795ff9cc28184001079f1
[]
no_license
seunghyukcho/algorithm-problems-solved
ce52f11a12b532c51547fd215e53e1f60915f52a
04e78a4b41a8b13c1d00e231dd79114fb8360c9a
refs/heads/master
2023-07-14T11:37:33.763943
2021-08-20T15:09:50
2021-08-20T15:09:50
125,701,552
6
0
null
null
null
null
UTF-8
C++
false
false
762
cpp
#include<iostream> #include<vector> #include<algorithm> using namespace std; pair<int, int> num[4]; int n = 0, m = 0; int ans[52][52]; int main(){ for(int i = 0; i < 4; i++){ int input; cin >> input; num[i] = {-input, i}; } sort(num, num + 4); while(num[1].first < 0){ for(int i = 0; i < 4 && num[i].first < 0; i++){ if(n > 0 && ans[n - 1][m] == i) continue; ans[n][m++] = i; num[i].first++; if(m == 50){ n++; m = 0; } } } while(num[0].first < 0){ } if(n > 0 && m != 0){ for(int i = m; i < 50; i++) ans[n][i] = ans[n - 1][i]; } return 0; }
[ "choseunghyek@gmail.com" ]
choseunghyek@gmail.com
59143d95b84fbb700f9cb70495461ab00db3ac1b
62a27478e11a09b03fe0fc4f85fe8c6f72c7248c
/src/main/Path.cpp
d902c9858d8e50b6be45733f03bf5a1699b52f0a
[]
no_license
mahmoudmheisen91/cuGraph_1.0.0
e20e9e404acb06c5d0c7561459ae1f78ccc93d8b
61031d9fb8175f51e95ecdb77c171a1dbc4e8464
refs/heads/master
2021-03-12T21:46:57.907744
2015-08-11T16:16:22
2015-08-11T16:16:22
39,698,488
1
1
null
null
null
null
UTF-8
C++
false
false
999
cpp
/* * Path.cpp * * Created: 2015-05-24, Modified: 2015-08-11 * */ // Headers includes: #include <main/Path.h> #include <algorithm> namespace cuGraph { // Find paths in G from s: Path::Path(Graph *G, int s) { fromHere = s; size = G->numberOfVertices; visited = new bool[size]; edgeTo = new int[size]; std::fill(visited, visited+size, false); std::fill(edgeTo, edgeTo+size, -1); // find vertices connected to s: dfs(G, s); } Path::~Path() { delete visited; delete edgeTo; } // depth first search to find a path between two nodes: void Path::dfs(Graph *G, int u) { visited[u] = true; bool *content = G->content; for(int v = 0; v < size; v++) { if(!visited[v] && content[u * size + v]) { dfs(G, v); edgeTo[v] = u; } } } bool Path::hasPathTo(int v) { return visited[v]; } }
[ "mahmoudmheisen91@gmail.com" ]
mahmoudmheisen91@gmail.com
650063ea11e9116d9449184004333217a7558d70
5ddd0ec20099a9c3ffe865c835dcceb5b7fd0332
/of_v0.8.0_vs_release-gesture-recognizer/apps/myApps/kinect2GRT/src/GRT/PreProcessingModules/DeadZone.h
445a9ed46ed70168c7a9388f9fe0416799126027
[ "MIT" ]
permissive
MarkusKonk/Geographic-Interaction
af81f9f4c7c201dd55843d4dd0d369f2f407d480
b74f6f04656611df8dc4ebdea43f263cea67b366
refs/heads/master
2020-12-30T10:36:34.414880
2014-02-03T12:37:45
2014-02-03T12:37:45
13,868,029
2
1
null
null
null
null
UTF-8
C++
false
false
8,569
h
/** @file @author Nicholas Gillian <ngillian@media.mit.edu> @version 1.0 @section LICENSE GRT MIT License Copyright (c) <2012> <Nicholas Gillian, Media Lab, MIT> 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. @section DESCRIPTION The DeadZone class sets any values in the input signal that fall within the dead-zone region to zero. Any values outside of the dead-zone region will be offset by the dead zone's lower limit and upper limit. */ #ifndef GRT_DEADZONE_HEADER #define GRT_DEADZONE_HEADER #include "../GestureRecognitionPipeline/PreProcessing.h" namespace GRT{ class DeadZone : public PreProcessing{ public: /** Constructor, sets the lower and upper limits of the dead-zone region and the dimensionality of the input data. @param double lowerLimit: sets the lower limit of the dead-zone region. Default lowerLimit = -0.1 @param UINT upperLimit: sets the upper limit of the dead-zone region. Default upperLimit = 0.1 @param UINT numDimensions: the dimensionality of the input data. Default numDimensions = 1 */ DeadZone(double lowerLimit = -0.1,double upperLimit = 0.1,UINT numDimensions = 1); /** Copy Constructor, copies the DeadZone from the rhs instance to this instance @param const DeadZone &rhs: another instance of the DeadZone class from which the data will be copied to this instance */ DeadZone(const DeadZone &rhs); /** Default Destructor */ virtual ~DeadZone(); /** Sets the equals operator, copies the data from the rhs instance to this instance @param const DeadZone &rhs: another instance of the DeadZone class from which the data will be copied to this instance @return a reference to this instance of DeadZone */ DeadZone& operator=(const DeadZone &rhs); /** Sets the PreProcessing clone function, overwriting the base PreProcessing function. This function is used to clone the values from the input pointer to this instance of the PreProcessing module. This function is called by the GestureRecognitionPipeline when the user adds a new PreProcessing module to the pipeline. @param const PreProcessing *preProcessing: a pointer to another instance of a MovingAverageFilter, the values of that instance will be cloned to this instance @return true if the clone was successful, false otherwise */ virtual bool clone(const PreProcessing *preProcessing); /** Sets the PreProcessing process function, overwriting the base PreProcessing function. This function is called by the GestureRecognitionPipeline when any new input data needs to be processed (during the prediction phase for example). This function calls the DeadZone's filter function. @param const vector< double > &inputVector: the inputVector that should be processed. Must have the same dimensionality as the PreProcessing module @return true if the data was processed, false otherwise */ virtual bool process(const vector< double > &inputVector); /** Sets the PreProcessing reset function, overwriting the base PreProcessing function. This function is called by the GestureRecognitionPipeline when the pipelines main reset() function is called. This function resets the deadZone by re-initiliazing the instance. @return true if the filter was reset, false otherwise */ virtual bool reset(); /** This saves the current settings of the DeadZone to a file. This overrides the saveSettingsToFile function in the PreProcessing base class. @param string filename: the name of the file to save the settings to @return returns true if the model was saved successfully, false otherwise */ virtual bool saveSettingsToFile(string filename); /** This saves the current settings of the DeadZone to a file. This overrides the saveSettingsToFile function in the PreProcessing base class. @param fstream &file: a reference to the file the settings will be saved to @return returns true if the settings were saved successfully, false otherwise */ virtual bool saveSettingsToFile(fstream &file); /** This loads the DeadZone settings from a file. This overrides the loadSettingsFromFile function in the PreProcessing base class. @param string filename: the name of the file to load the settings from @return returns true if the settings were loaded successfully, false otherwise */ virtual bool loadSettingsFromFile(string filename); /** This loads the DeadZone settings from a file. This overrides the loadSettingsFromFile function in the PreProcessing base class. @param fstream &file: a reference to the file to load the settings from @return returns true if the model was loaded successfully, false otherwise */ virtual bool loadSettingsFromFile(fstream &file); /** Initializes the instance, sets the lower and upper limits of the dead-zone region and the dimensionality of the input data. @param double lowerLimit: sets the lower limit of the dead-zone region @param UINT upperLimit: sets the upper limit of the dead-zone region @param UINT numDimensions: the dimensionality of the input data @return true if the instance was initiliazed, false otherwise */ bool init(double lowerLimit,double upperLimit,UINT numDimensions); /** Filters the value x using the dead-zone values, this should only be called if the dimensionality of the instance was set to 1. @param double x: the value to be filtered, this should only be called if the dimensionality of the filter was set to 1 @return the filtered input value. Zero will be returned if the value was not computed */ double filter(double x); /** Filters x using the dead-zone values, the dimensionality of the input should match the number of inputs for the dead zone @param const vector< double > &x: the values to be filtered, the dimensionality of the input should match the number of inputs for the derivative @return the filtered input values. An empty vector will be returned if the values were not filtered */ vector< double > filter(const vector< double > &x); /** Sets the lower limit of the dead-zone region. @param double lowerLimit: the new lower limit for the dead zone @return returns true if the lowerLimit value was set, false otherwise */ bool setLowerLimit(double lowerLimit); /** Sets the upper limit of the dead-zone region. @param double upperLimit: the new upper limit for the dead zone @return returns true if the upperLimit value was set, false otherwise */ bool setUpperLimit(double upperLimit); /** Gets the lower limit of the dead-zone region. @return returns the lower limit if the DeadZone has been initialized, zero otherwise */ double getLowerLimit(){ if( initialized ){ return lowerLimit; } return 0; } /** Gets the upper limit of the dead-zone region. @return returns the upper limit if the DeadZone has been initialized, zero otherwise */ double getUpperLimit(){ if( initialized ){ return upperLimit; } return 0; } protected: double lowerLimit; ///< The lower limit of the dead-zone region double upperLimit; ///< The upper limit of the dead-zone region static RegisterPreProcessingModule< DeadZone > registerModule; }; }//End of namespace GRT #endif //GRT_DEADZONE_HEADER
[ "matthias.m.hinz@googlemail.com" ]
matthias.m.hinz@googlemail.com
85a037757aea42fb814ec86e4751ae74a27ab21d
7e679211643a13288a0799c4e33f1edd10156898
/app/PxView/PxRecordView.h
9e68acb23d27936d6db7cb809471ea6bac6fffcf
[ "BSD-3-Clause" ]
permissive
CoolmanCZ/pxview
9a1a269ccc955bc5e63cb2384c0e0cdb38adb122
d6ef822717fdba76a557dcdfa58a2ec4b79f89a0
refs/heads/master
2023-05-26T05:23:52.327158
2023-05-15T07:04:17
2023-05-15T07:04:17
174,730,732
1
1
null
null
null
null
UTF-8
C++
false
false
2,500
h
#ifndef PxRecordView_h_ #define PxRecordView_h_ #include <CtrlLib/CtrlLib.h> #include <GridCtrl/GridCtrl.h> #include "PxSession.h" enum filetype { csv = 1, json }; class PxRecordView : public Upp::GridCtrl { public: PxRecordView(); ~PxRecordView() override{}; private: Upp::ParadoxSession px; bool modified = false; const int EditSizeHorz = 640; const int EditSizeVert = 72; const int InfoSizeHorz = 500; const int InfoSizeVert = 400; const int IndicatorSize = 12; Upp::Progress httpPI; Upp::HttpRequest httpClient; Upp::int64 httpLoaded = 0; Upp::FileOut httpOut; Upp::String httpPath; Upp::String httpFileName = "https_received_data.txt"; Upp::FileAppend httpErrorLog; Upp::String httpErrorLogPath; Upp::String httpPIText = Upp::t_("HTTPS data transfer"); void StatusMenuBar(Upp::Bar &bar); void ReadRecords(byte charset = 0); void EditData(); void SaveAs(int fileType); void HttpStart(); void HttpContent(const void *ptr, int size); void HttpShowProgress(); void GetUrl(bool &upload, Upp::String &url, Upp::String &auth, bool &checkError); int SendData(const Upp::Json &data, const Upp::String &url, const Upp::String &auth, bool &checkError); public: Upp::Event<> WhenRemoveTab; void DoRemoveTab() const { WhenRemoveTab(); }; bool IsModified() const override { return modified; } bool OpenDB(const Upp::String &filePath); bool IsDBOpen() { return px.IsOpen(); } void ShowInfo(); void ChangeCharset(); void DeleteRow(); void ExportJson(); void ExportAllJson(); Upp::String GetFilePath() const { return px.GetFilePath(); } Upp::String GetFileName() const { return px.GetFileName(); } Upp::String AsText(Upp::String (*format)(const Upp::Value &), const char *tab = "\t", const char *row = "\r\n", const char *hdrtab = "\t", const char *hdrrow = "\r\n") const; Upp::String AsCsv(int sep = ';', bool hdr = true) const; Upp::String AsJson(); Upp::Json GetJson(int row); Upp::Json GetJson() { return GetJson(GetCurrentRow()); } int GetCountRows() { return GetVisibleCount(); } void SaveAsCsv(const Upp::String &dirPath); void SaveAsJson(const Upp::String &dirPath); }; #endif // vim: ts=4 sw=4 expandtab
[ "coolman@centrum.cz" ]
coolman@centrum.cz
e9e0eafa9b289fc8aa35391ebbb8b8359fdcd63a
2d0972e5021a67f242f6c6b4522de136ecc52e33
/ch7_an_exotic_engine_and_the_template_pattern/PathDependentAsian.cpp
946a94cd3ead01017a4a2defca7255a4202b3d33
[ "MIT" ]
permissive
WongYatChun/Design_Patterns_and_Derivatives_Pricing
c4031e538636d2ba3f2af1034e7092c982dcf3f1
4aa8fa6794f70b086e66c1a8752a596b448cd8d8
refs/heads/master
2020-04-12T08:32:20.084071
2018-12-27T12:19:47
2018-12-27T12:19:47
162,387,875
0
0
null
null
null
null
UTF-8
C++
false
false
982
cpp
#include "PathDependentAsian.h" PathDependentAsian::PathDependentAsian(const MJArray& LookAtTimes_, double DeliveryTime_, const PayOffBridge& ThePayOff_) :PathDependent(LookAtTimes_), DeliveryTime(DeliveryTime_), ThePayOff(ThePayOff_), NumberOfTimes(LookAtTimes_.size()){} PathDependent* PathDependentAsian::clone() const{ return new PathDependentAsian(*this); } unsigned long PathDependentAsian::MaxNumberOfCashFlows() const{ return 1UL; //Arithmetic Asian options } MJArray PathDependentAsian::PossibleCashFlowTimes() const{ MJArray tmp(1UL); tmp[0] = DeliveryTime; return tmp; } unsigned long PathDependentAsian::CashFlows(const MJArray& SpotValues, std::vector<CashFlow>& GeneratedFlows) const{ double sum = SpotValues.sum(); double mean = sum / NumberOfTimes; GeneratedFlows[0].TimeIndex = 0UL; GeneratedFlows[0].Amount = ThePayOff(mean); return 1UL; }
[ "wongyatchun0413@gmail.com" ]
wongyatchun0413@gmail.com
5a4393661277a2620a6133a568bf21bc191d0fbb
a7c1d71890b463ef57d3c56b6b6086d489aa798e
/LeetCode/EC/Array/rotate_array.cpp
7a96b2a246feaf733015823b88eef166c0fe920b
[]
no_license
anilchoudhary/DSA
7016eb5172a6e4762384ab4e3906401085bd9f7a
19b2816afe38ec95a736daeea99165259cb98a1c
refs/heads/master
2020-12-26T10:05:24.678772
2020-10-26T06:25:01
2020-10-26T06:25:01
237,475,644
0
0
null
null
null
null
UTF-8
C++
false
false
236
cpp
class Solution { public: void rotate(vector<int>& nums, int k) { int n = nums.size(); k = k % n; reverse(nums.begin(), nums.begin() + n - k); reverse(nums.begin() + n - k, nums.end()); reverse(nums.begin(), nums.end()); } };
[ "masteranilchoudhary@gmail.com" ]
masteranilchoudhary@gmail.com
33de3f72d7c645cc369e1aab84cae0f9782de2b2
4472e9f0bcc21ada68bc97fcd270bf64884a17fa
/src/accepted_UVA/146.cpp
e04bb13cc601f83657aeb4f3896620c72fe4e3bf
[]
no_license
lnman/Programming_contest_Template
080a36b5a6e3282385a12f576556b52ed667c6f6
5d9ac0fd6fec710073a8f4287d3252359cffbe16
refs/heads/master
2016-09-02T03:38:44.642615
2013-05-15T11:36:11
2013-05-15T11:36:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
341
cpp
#include<iostream> #include<algorithm> #include<string> #include<stdio.h> using namespace std; int main(){ string cur; while (cin >> cur) { if (cur == "#") break; if (next_permutation(cur.begin(), cur.end())) { printf("%s\n", cur.c_str()); } else { printf("No Successor\n"); } } return 0; }
[ "momen_bhuiyan@yahoo.com" ]
momen_bhuiyan@yahoo.com
8ae47809e430bd08fbd2f2377673bb1dd92da1b8
74450d2e5c5d737ab8eb3f3f2e8b7d2e8b40bb5e
/github_code/quick-sort/cpp/90.c
67d757e721f5ff0848b29d97ba4e9373673f4b98
[]
no_license
ulinka/tbcnn-attention
10466b0925987263f722fbc53de4868812c50da7
55990524ce3724d5bfbcbc7fd2757abd3a3fd2de
refs/heads/master
2020-08-28T13:59:25.013068
2019-05-10T08:05:37
2019-05-10T08:05:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,806
c
#include <vector> #include <algorithm> #include "Student.h" #include <fstream> #include <string> #include <iostream> #include <fstream> #include <stdlib.h> #include "Tokenizer.h" #include <time.h> #define NO_FUNC 3 template<typename T> void print_element(T st){ // ���ø��� �̿��� ��� cout << st.get_name() << "\t" << st.get_telno()<< endl; } #define TRIM_SPACE " \t\n\v" // Ʈ�� �̿�� ���־��� white space using namespace std; namespace ospace { inline std::string trim(std::string& s,const std::string& drop = TRIM_SPACE) { std::string r=s.erase(s.find_last_not_of(drop)+1); return r.erase(0,r.find_first_not_of(drop)); } inline std::string rtrim(std::string s,const std::string& drop = TRIM_SPACE) { return s.erase(s.find_last_not_of(drop)+1); } inline std::string ltrim(std::string s,const std::string& drop = TRIM_SPACE) { return s.erase(0,s.find_first_not_of(drop)); } } using ospace::trim; using ospace::ltrim; using ospace::rtrim; vector<Student> readinput(char * fName){ //���� ������ vector<Student> words; ifstream in(fName); string word; Tokenizer str; Student stu; string name; string telno; if (in.is_open()) { // ���� ���� while (!in.eof()) { // ���� ���̱� ������ ���� getline(in, word); // 1�� �б� trim(word); // 1�� �յڷ� white space ���� str.set(word); // #��ũ�������� ������. => tokenizer.h ���Ͽ��� const std::string DEFAULT_DELIMITER = "#"; �̺κ��� �ٲ���ϴ�. stu.set_name(trim(name = str.next())); // �̸� �κ� trim �ϰ� ���� stu.set_telno(trim(telno = str.next())); // ����ȣ �κ� trim�ϰ� ���� words.push_back(stu); // Student ���� ���� } } return words; } #define CLOCKS_PER_SEC 100 int time_print(string method, vector<Student>& A, int (*sorter)(vector<Student>&)) { clock_t start = clock(); for(int i = 0; i<CLOCKS_PER_SEC; i++){ sorter(A); } clock_t end = clock(); vector<Student>::iterator it; for (it = A.begin(); it != A.end(); it++) it -> print(); double diff = (double)(end - start) / CLOCKS_PER_SEC; printf("%-20s ", method.c_str()) ; printf("time = %13.9lf sec\n", diff); return 1; } void exchange(vector<Student>&A, int i, int j){ Student temp = A[i]; A[i] = A[j]; A[j] = temp; } int exchangeSort (vector<Student>& A) { int size = A.size()-1 ; for(int i = 0; i<=size; i++){ for(int j=i+1; j<=size; j++){ if(A[j] < A[i]) exchange(A,i,j); } } return 0; } void merge2(vector<Student>& A, int low, int mid, int high){ int i = low; int j = mid+1; vector<Student> B; while( i<= mid && j<= high){ if (A[i] < A[j]){ B.push_back(A[i]); i++; } else{ B.push_back(A[j]); j++; } } if( i>mid){ for(;j<=high;j++) B.push_back(A[j]); } else{ for(; i<high;i++) B.push_back(A[i]); } for(i = low, j = 0; i<=high; i++,j++) A[i] = B[j]; } int mergesort2(vector<Student>& A, int low, int high){ int mid; if(low<high){ mid = (low+high)/2; mergesort2(A,low,mid); mergesort2(A,mid+1,high); merge2(A,low,mid,high); } return 0; } int mergeSort (vector<Student>& A) { return mergesort2(A,0,A.size()-1); } void partition(int low, int high, int& pivotpoint, vector<Student>& A){ // quicksort partition �κ� int i; int j; Student pivotitem = A[low]; j = low; for( i = low +1; i<=high; i++){ if(A[i] < pivotitem){ j++; Student temp = A[i]; A[i] = A[j]; A[j] = temp; } } pivotpoint = j; Student temp = A[low]; A[low] = A[pivotpoint]; A[pivotpoint] = temp; } int quicksort(int low, int high, vector<Student> &A){ // quicksort int pivotpoint; if( high > low){ partition(low, high, pivotpoint, A); quicksort(low, pivotpoint-1, A); quicksort(pivotpoint+1, high, A); } return 0; } int quickSort( vector<Student> &A){ return quicksort(0,A.size()-1,A); } struct Sorter { char *name; int (*function)(vector <Student>& A); }; struct Sorter sorter[NO_FUNC] = { {"exchange sort", exchangeSort}, {"merge sort", mergeSort}, {"quick sort", quickSort} }; int main(int argc , char * argv[]){ char* fName = argv[1]; if (fName == NULL) { // ���� ������ ������ ���� ���� cout << "������ �����ϴ�. \n"; system("pause"); exit(0); } vector<Student> A = readinput(fName); for (int i = 0; i < NO_FUNC ; i++) { vector<Student> B = A; time_print(sorter[i].name, B, sorter[i].function); //for_each(B.begin(), B.end(), print_element<Student>); } system("pause"); return 0; }
[ "bdqnghi@gmail.com" ]
bdqnghi@gmail.com
37b592d53d8643c6be76b2b3f49705c271651003
89cb7aaeb03aef8af4a7018cebd79de210b2a9cd
/Strategy/duck.cpp
6514376edace39134305bd827b14f5fdce98612c
[]
no_license
Itanq/design_pattern
8211d38f00dcd727aa0d7fd130c79f27a36fc463
b4494fd06d12e179bdc4e1477c26d5eaef88bfce
refs/heads/master
2021-09-07T17:48:43.979787
2018-02-27T03:35:20
2018-02-27T03:35:20
119,391,062
0
0
null
null
null
null
UTF-8
C++
false
false
4,095
cpp
#include <mutex> #include <thread> #include <iostream> using namespace std; // 飞行相关的行为 class FlyBehavior { public: virtual void fly() = 0; }; class FlyWithWings : public FlyBehavior { public: void fly() override { std::cout << " I Can Fly With Wings " << std::endl; } }; class FlyWithRocket : public FlyBehavior { public: void fly() override { std::cout <<" I Can Fly With Rocket " << std::endl; } }; class FlyNoWings : public FlyBehavior { public: void fly() override { std::cout << " I Can't Fly " << std::endl; } }; // 叫相关的行为 class QuackBehavior { public: virtual void quack() = 0; }; class Quack : public QuackBehavior { public: void quack() override { std::cout << " quack quack " << std::endl; } }; class Squeak : public QuackBehavior { public: void quack() override { std::cout << " squeak squeak " << std::endl; } }; class MuteQuack : public QuackBehavior { public: void quack() override { std::cout << " can't make noise " << std::endl; } }; // 鸭子基类 class Duck { public: Duck(std::string type):m_name(type){} void swim() { std::cout << " I Can Swim ... " << std::endl; } virtual void display() { std::cout << " \n------------------------- \n"; std::cout << " I'm a " << m_name << " Duck:" << std::endl; } // 鸭子会飞,怎么飞由飞行行为接口决定 void performFly() { m_pFlyBehavior->fly(); } // 鸭子会叫,怎么叫由叫的行为接口决定 void performQuack() { m_pQuackBehavior->quack(); } // 动态设定飞行行为 void setFlyBehavior(FlyBehavior* flyBehavior) { m_pFlyBehavior = flyBehavior; } // 动态设定呱呱叫行为 void setQuackBehavior(QuackBehavior* quackBehavior) { m_pQuackBehavior = quackBehavior; } protected: FlyBehavior* m_pFlyBehavior; QuackBehavior* m_pQuackBehavior; std::string m_name; }; // 美拉诺鸭 class MarlarDuck : public Duck { public: MarlarDuck(std::string type):Duck(type) { // 美拉诺鸭会飞,会嘎嘎叫 m_pFlyBehavior = new FlyWithWings(); m_pQuackBehavior = new Quack(); } void display() override { Duck::display(); } }; // 红头鸭 class RedHeadDuck : public Duck { public: RedHeadDuck(std::string type):Duck(type) { // 红头鸭会飞,会吱吱叫 m_pFlyBehavior = new FlyWithWings(); m_pQuackBehavior = new Squeak(); } void display() override { Duck::display(); } }; // 橡皮鸭 class RubberDuck : public Duck { public: RubberDuck(std::string type):Duck(type) { // 橡皮鸭不会飞,不会叫 m_pFlyBehavior = new FlyNoWings(); m_pQuackBehavior = new MuteQuack(); } void display() override { Duck::display(); } }; // 模型鸭 class ModelDuck : public Duck { public: ModelDuck(std::string type):Duck(type) { // 初始时,模型鸭不会飞,也不会叫 m_pFlyBehavior = new FlyNoWings(); m_pQuackBehavior = new MuteQuack(); } }; void TestDuck() { Duck* pduck_1 = new MarlarDuck("Marlar"); pduck_1->display(); pduck_1->swim(); pduck_1->performFly(); pduck_1->performQuack(); Duck* pduck_2 = new RedHeadDuck("Red Head"); pduck_2->display(); pduck_2->swim(); pduck_2->performFly(); pduck_2->performQuack(); Duck* pduck_3 = new RubberDuck("Rubber"); pduck_3->display(); pduck_3->swim(); pduck_3->performFly(); pduck_3->performQuack(); Duck* pduck_4 = new ModelDuck("Model"); pduck_4->display(); pduck_4->swim(); pduck_4->performFly(); pduck_4->performQuack(); pduck_4->setFlyBehavior(new FlyWithRocket); pduck_4->setQuackBehavior(new Quack); std::cout << "\n After a period of improvement .... \n" << std::endl; pduck_4->performFly(); pduck_4->performQuack(); } int main() { TestDuck(); return 0; }
[ "zmant724@topplus.com" ]
zmant724@topplus.com
1662792d294a4b683471f43e297ca9b8a098efae
0b793bce2da8c3d09b7956c0672ddbffd46feaed
/aoj/5/AOJ0544.cpp
d4cfdde630eb4263b60ca82792a3e7c419105e10
[ "MIT" ]
permissive
knuu/competitive-programming
c6c4e08fb231937d988bdc5a60a8ad6b31b97616
16bc68fdaedd6f96ae24310d697585ca8836ab6e
refs/heads/master
2021-01-17T09:39:02.647688
2020-11-07T03:17:22
2020-11-07T03:17:22
27,886,732
1
0
null
null
null
null
UTF-8
C++
false
false
413
cpp
// // AOJ0544.cpp // // // Created by knuu on 2014/06/11. // // #include <iostream> using namespace std; int main() { int N,M; int sugoroku[1000],saikoro[1000]; while (cin>>N>>M,(N!=0&&M!=0)) { int pos=0,ans=0; for (int i=0; i<N; i++) cin>>sugoroku[i]; for (int i=0; i<M; i++) cin>>saikoro[i]; while (pos<N-1) { pos+=saikoro[ans]; pos+=sugoroku[pos]; ans++; } cout<<ans<<endl; } }
[ "premier3next@yahoo.co.jp" ]
premier3next@yahoo.co.jp
1e7aa51fc5b1de6af3ea2dcdc8422246644323f0
910ef43f00403a1b322bdac1348ae145224f6436
/qt/third day/qt1/moc_qt2.cpp
2437a129bc9839904892448def3935eb4348c173
[]
no_license
zengxiangfeng1215/linux_app
afd6a450865a6106c6d82a38b5272e3b58007bdc
5e23d3b5b536ae6de35734a3ecd4bcff32056c26
refs/heads/master
2020-04-24T00:44:44.481419
2015-07-05T10:13:32
2015-07-05T10:13:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,999
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'qt2.h' ** ** Created: Wed Jan 4 19:53:27 2012 ** by: The Qt Meta Object Compiler version 59 (Qt 4.3.4) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "qt2.h" #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'qt2.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 59 #error "This file was generated using the moc from 4.3.4. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif static const uint qt_meta_data_Qt2[] = { // content: 1, // revision 0, // classname 0, 0, // classinfo 1, 10, // methods 0, 0, // properties 0, 0, // enums/sets // slots: signature, parameters, type, tag, flags 5, 4, 4, 4, 0x0a, 0 // eod }; static const char qt_meta_stringdata_Qt2[] = { "Qt2\0\0sendmessage(QString)\0" }; const QMetaObject Qt2::staticMetaObject = { { &QDialog::staticMetaObject, qt_meta_stringdata_Qt2, qt_meta_data_Qt2, 0 } }; const QMetaObject *Qt2::metaObject() const { return &staticMetaObject; } void *Qt2::qt_metacast(const char *_clname) { if (!_clname) return 0; if (!strcmp(_clname, qt_meta_stringdata_Qt2)) return static_cast<void*>(const_cast< Qt2*>(this)); if (!strcmp(_clname, "Ui_Qt2")) return static_cast< Ui_Qt2*>(const_cast< Qt2*>(this)); return QDialog::qt_metacast(_clname); } int Qt2::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QDialog::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { switch (_id) { case 0: sendmessage((*reinterpret_cast< QString(*)>(_a[1]))); break; } _id -= 1; } return _id; }
[ "89481109@qq.com" ]
89481109@qq.com
3d3386609087c86b4e05ccab766c8a4f38faf4cc
194b7d18745210196436c2fac6ed90abe039dfe2
/C_Fibonacci_Words.cpp
165258e5c54226ab8e61aeeaf040d4d13fea4912
[]
no_license
atharvasaraf123/CP
938d14dbb6dbb686efea347d19f988b024d0d15f
8c5eb75e53ad8fc1999d53f3951f9d98167aaf1e
refs/heads/master
2023-06-12T07:47:25.741903
2021-07-05T17:26:50
2021-07-05T17:26:50
381,798,867
1
0
null
null
null
null
UTF-8
C++
false
false
400
cpp
#include <bits/stdc++.h> using namespace std; #define bolt \ ios::sync_with_stdio(0); \ cin.tie(0); \ cout.tie(0) #define test \ int tt; \ cin >> tt; \ while (tt--) #define ll long long #define ld long double #define vi vector<ll> #define pb push_back #define F first #define S second #define mod 1000000007 #define all(v) v.begin(), v.end()
[ "sarafatharva123@gmail.com" ]
sarafatharva123@gmail.com
af6755fb4c8f62404cafa2af3866db69b909b8e6
2b93f887bdc61bbc5f7da771681659f72d2acc4f
/vgac_readerapp/.svn/pristine/af/af6755fb4c8f62404cafa2af3866db69b909b8e6.svn-base
23ea906bdf3a7852f2e461e4e9f3481d40aea278
[]
no_license
PengWEI9/Vix
a0796ff0d5e8ce962efa60b4bd22eaba03ac6017
c6dd23d2ffc36d82221a8d920862c435683f1c24
refs/heads/master
2021-01-10T16:01:18.530308
2016-01-25T03:42:00
2016-01-25T03:42:00
49,394,563
3
0
null
null
null
null
UTF-8
C++
false
false
1,069
#include "easywsclient.hpp" //#include "easywsclient.cpp" // <-- include only if you don't want compile separately #include <assert.h> #include <stdio.h> #include <string> using easywsclient::WebSocket; static WebSocket::pointer ws = NULL; void handle_message(const std::string & message) { printf("<<< %s\n", message.c_str()); if (message == "world") { ws->close(); } } int main() { ws = WebSocket::from_url("ws://10.242.5.212:8080"); assert(ws); std::string data = "{ \"data\": { \"cardnumber\": \"042F1919721D80\", \"expiry\": \"\", \"pin\": \"1234\", \"roles\": [ { \"profile\": \"1\", \"type\": \"11\" } ], \"serviceprovider\": \"1001\", \"staffid\": \"5070\", \"type\": \"operator\", \"valid\": true }, \"event\": \"cardpresented\", \"name\": \"cardevent\", \"terminalid\": \"3\", \"type\": \"PUT\", \"userid\": null }"; printf(">>> %s\n", data.c_str()); ws->send(data.c_str()); while (ws->getReadyState() != WebSocket::CLOSED) { ws->poll(); ws->dispatch(handle_message); } delete ws; return 0; }
[ "peng.wei8899@gmail.com" ]
peng.wei8899@gmail.com
530a525ce212d835923f810134e3180238567870
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/httpd/gumtree/httpd_new_log_4159.cpp
70b3cfb603381c55ebdde7aa59ce72ce418913fc
[]
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
129
cpp
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01008) "ajp_handle_cping_cpong: ajp_marshal_into_msgb failed");
[ "993273596@qq.com" ]
993273596@qq.com
7d4aff679d630246bd46916c2cdc7cf92ae2f2f0
38a8613ea8c020f71f0c1c40b9cd671de6415a04
/Heap/HeapSort.cpp
4a4d16ad6f212890765f4c4eee21186d40a7634c
[]
no_license
saksham02112000/DataSt
70295743d3dd7ce86633101e74588457c4be5316
2f96f1a9f74103cab99ebf6d89d4c449d1b84074
refs/heads/main
2023-06-18T10:21:50.488751
2021-07-16T09:54:38
2021-07-16T09:54:38
364,265,722
0
0
null
null
null
null
UTF-8
C++
false
false
906
cpp
#include <bits/stdc++.h> using namespace std; void heapify(vector<int> &vec, int n, int i) { int maxInd = i; int l = 2 * i + 1; int r = 2 * i + 2; if (l < n && vec[l] > vec[maxInd]) maxInd = l; if (r < n && vec[r] > vec[maxInd]) maxInd = r; if (maxInd != i) { swap(vec[i], vec[maxInd]); heapify(vec, n, maxInd); } } void heapsort(vector<int> &vec) { int n = vec.size(); for (int i = n / 2 - 1; i >= 0; i--) { heapify(vec, n, i); } for (int i = n - 1; i > 0; i--) { swap(vec[0], vec[i]); heapify(vec, i, 0); } } int main() { int n; cin >> n; vector<int> vec; for (int i = 0; i < n; i++) { int m; cin >> m; vec.push_back(m); } heapsort(vec); for (int i = 0; i < n; i++) { cout << vec[i] << " "; } return 0; }
[ "sakshamsrini@gmail.com" ]
sakshamsrini@gmail.com
eda3c5275cb48314ec9ee59e32418fed4e14a36a
9ba121e1d29a0b80f8fbee168978831b9cf59942
/src/Maison.cpp
cd73e4019b6211760b258931f5c9baeaca9ec352
[ "MIT" ]
permissive
turgu1/maison
2b804498cb9fbcd043c50c088d67db6434036a21
57d33aeb735e1e2dfb55b4e40daffcf23bc7a1ec
refs/heads/master
2020-04-14T20:54:47.870554
2020-02-20T21:25:16
2020-02-20T21:25:16
164,110,990
1
0
null
null
null
null
UTF-8
C++
false
false
39,004
cpp
#include <Maison.h> // Used by the maison_callback friend function static Maison * maison; Maison::Maison() : wifi_client(NULL), last_reconnect_attempt(0), connect_retry_count(0), first_connect_trial(true), user_callback(NULL), user_sub_topic(NULL), user_qos(0), feature_mask(NONE), user_mem(NULL), user_mem_length(0), last_time_count(0), counting_lost_connection(true), wait_for_ota_completion(false), reboot_now(false), restart_now(false) { maison = this; } Maison::Maison(uint8_t _feature_mask) : wifi_client(NULL), last_reconnect_attempt(0), connect_retry_count(0), first_connect_trial(true), user_callback(NULL), user_sub_topic(NULL), user_qos(0), feature_mask(_feature_mask), user_mem(NULL), user_mem_length(0), last_time_count(0), counting_lost_connection(true), wait_for_ota_completion(false), reboot_now(false), restart_now(false) { maison = this; } Maison::Maison(uint8_t _feature_mask, void * _user_mem, uint16_t _user_mem_length) : wifi_client(NULL), last_reconnect_attempt(0), connect_retry_count(0), first_connect_trial(true), user_callback(NULL), user_sub_topic(NULL), user_qos(0), feature_mask(_feature_mask), user_mem(_user_mem), user_mem_length(_user_mem_length), last_time_count(0), counting_lost_connection(true), wait_for_ota_completion(false), reboot_now(false), restart_now(false) { maison = this; } bool Maison::setup() { SHOW("\nMaison::setup()\n"); DO { if (! load_mems()) ERROR("Unable to load states"); if (! load_config()) ERROR("Unable to load config"); if (is_hard_reset()) init_mem(); if (network_is_available()) { if (!wifi_connect()) ERROR("WiFi"); update_device_name(); } DEBUG(F("MQTT_MAX_PACKET_SIZE = ")); DEBUGLN(MQTT_MAX_PACKET_SIZE); OK_DO; } SHOW_RESULT("Maison::setup()"); return result; } void maison_callback(const char * _topic, byte * _payload, unsigned int _length) { SHOW("---------- maison_callback() ---------------"); if (maison != NULL) maison->process_callback(_topic, _payload, _length); DEBUGLN(F(" End of maison_callback()")); } char * Maison::build_topic(const char * _topic_suffix, char * _buffer, uint16_t _length) { if (_length > (strlen(MAISON_PREFIX_TOPIC) + 12 + strlen(_topic_suffix) + 3)) { strlcpy(_buffer, MAISON_PREFIX_TOPIC, _length); strlcat(_buffer, "/", _length); uint8_t mac[6]; WiFi.macAddress(mac); mac_to_str(mac, &_buffer[strlen(_buffer)]); strlcat(_buffer, "/", _length); strlcat(_buffer, _topic_suffix, _length); DEBUG(F("build_topic() result: ")); DEBUGLN(_buffer); } else { DEBUGLN(F("ERROR: build_topic(): Buffer too small!")); _buffer[0] = 0; } return _buffer; } void Maison::send_config_msg() { File file = SPIFFS.open("/config.json", "r"); if (!file) { DEBUGLN(" ERROR: Unable to open current config file"); } else { char buff[50]; mqtt_client.beginPublish(build_topic(MAISON_CONFIG_TOPIC, buff, sizeof(buff)), file.size() + strlen(config.device_name) + 44, false); mqtt_client.write((uint8_t *) "{\"device\":\"", 11); mqtt_client.write((uint8_t *) config.device_name, strlen(config.device_name)); mqtt_client.write((uint8_t *) "\",\"msg_type\":\"CONFIG\",\"content\":", 32); file.read((uint8_t *) buffer, file.size()); mqtt_client.write((uint8_t *) buffer, file.size()); mqtt_client.write((uint8_t *) "}", 1); mqtt_client.endPublish(); file.close(); } } void Maison::send_state_msg(const char * _msg_type) { static char vbat[15]; static char ip[20]; static char mac[20]; byte ma[6]; ip2str(WiFi.localIP(), ip, sizeof(ip)); WiFi.macAddress(ma); mac2str(ma, mac, sizeof(mac)); if (show_voltage()) { snprintf(vbat, 14, ",\"VBAT\":%4.2f", battery_voltage()); } else { vbat[0] = 0; } send_msg( MAISON_STATE_TOPIC, F("{" "\"device\":\"%s\"" ",\"msg_type\":\"%s\"" ",\"ip\":\"%s\"" ",\"mac\":\"%s\"" ",\"reason\":%d" ",\"state\":%u" ",\"return_state\":%u" ",\"hours\":%u" ",\"millis\":%u" ",\"lost\":%u" ",\"rssi\":%ld" ",\"heap\":%u" ",\"app_name\":\"" APP_NAME "\"" ",\"app_version\":\"" APP_VERSION "\"" "%s" "}"), config.device_name, _msg_type, ip, mac, reset_reason(), mem.state, mem.return_state, mem.hours_24_count, mem.one_hour_step_count, mem.lost_count, wifi_connected() ? WiFi.RSSI() : 0, ESP.getFreeHeap(), vbat); } void Maison::get_new_config() { DynamicJsonDocument doc(2048); DeserializationError error = deserializeJson(doc, &buffer[7]); if (error) { JSON_DEBUGLN(F(" ERROR: Unable to parse JSON content")); } else { Config cfg; if (!retrieve_config(doc.as<JsonObject>(), cfg)) { JSON_DEBUGLN(F(" ERROR: Unable to retrieve config from received message")); } else { if (cfg.version > config.version) { mqtt_client.unsubscribe(topic); if (user_sub_topic) mqtt_client.unsubscribe(user_topic); config = cfg; #if JSON_TESTING show_config(config); #endif save_config(); init_callbacks(); } else { JSON_DEBUGLN(F(" ERROR: New config with a wrong version number. Not saved.")); log(F("Error: Received New Config with wrong version number.")); } send_config_msg(); } } } #if MQTT_OTA #include <StreamString.h> class OTAConsumer : public Stream { private: size_t length; int count; bool running; bool completed; StreamString error; public: bool begin(size_t _size, const char * _md5 = NULL) { length = _size; completed = false; count = 0; running = Update.begin(_size); if (!running) showError(F("cons.begin()")); else if (_md5) Update.setMD5(_md5); return running; } size_t write(uint8_t b) { if (running) { if (--length < 0) running = false; else { return Update.write(&b, 1); } } if (++count > 10000) { count = 0; yield(); } return 0; } bool end() { running = false; completed = Update.end(); if (!completed) showError(F("cons.end()")); return completed; } OTAConsumer() { running = false; } int available() { return 0; } // not used int read() { return 0; } // not used int peek() { return 0; } // not used bool isCompleted() { return completed; } bool isRunning() { return running; } int getError() { return Update.getError(); } StreamString & getErrorStr() { error.flush(); Update.printError(error); error.trim(); return error; } void showError(const __FlashStringHelper * prefix) { OTA_DEBUG(prefix); OTA_DEBUG(F(" : ")); OTA_DEBUGLN(getErrorStr()); } } cons; #endif void Maison::process_callback(const char * _topic, byte * _payload, unsigned int _length) { NET_SHOW("process_callback()"); some_message_received = true; if (strcmp(_topic, build_topic(MAISON_CTRL_TOPIC, buffer, sizeof(buffer))) == 0) { int len; memcpy(buffer, _payload, len = (_length >= sizeof(buffer)) ? (sizeof(buffer) - 1) : _length); buffer[len] = 0; if (!cons.isRunning()) { NET_DEBUG(F(" Received MQTT Message: ")); NET_DEBUGLN(buffer); } #if MQTT_OTA if (strncmp(buffer, "NEW_CODE:{", 10) == 0) { DynamicJsonDocument doc(2048); DeserializationError error = deserializeJson(doc, &buffer[9]); if (error) { OTA_DEBUGLN(F("Error: JSON content is in a wrong format")); log(F("Error: JSON content is in a wrong format")); } else { long size = doc["SIZE"].as<long>(); const char * name = doc["APP_NAME"].as<const char *>(); const char * md5 = doc["MD5"].as<const char *>(); if (size && name && md5) { OTA_DEBUG(F(" Receive size: ")); OTA_DEBUGLN(size); char tmp[33]; if (strcmp(APP_NAME, name) == 0) { if (cons.begin(size, md5)) { mqtt_client.setStream(cons); // log uses buffer too... memcpy(tmp, md5, 32); tmp[32] = 0; OTA_DEBUG(F("Code update started with size ")); OTA_DEBUG(size); OTA_DEBUG(F(" and ")); OTA_DEBUGLN(tmp); log(F("Code update started with size %d and md5: %s."), size, tmp); wait_for_ota_completion = true; } else { OTA_DEBUG(F("Error: Code upload not started: ")); OTA_DEBUGLN(cons.getErrorStr().c_str()); log(F("Error: Code upload not started: %s"), cons.getErrorStr().c_str()); } } else { // log uses buffer too... strlcpy(tmp, name, sizeof(tmp)); OTA_DEBUG(F("Error: Code upload aborted. App name differ (")); OTA_DEBUG(APP_NAME); OTA_DEBUG(F(" vs ")); OTA_DEBUG(tmp); OTA_DEBUGLN(F(")")); log(F("Error: Code upload aborted. App name differ (%s vs %s)"), APP_NAME, tmp); } } else { OTA_DEBUGLN(F("Error: SIZE, MD5 or APP_NAME not present")); log(F("Error: SIZE, MD5 or APP_NAME not present")); } } } else if (cons.isRunning()) { // The transmission is expected to be complete. Check if the // Updater is satisfied and if so, restart the device yield(); if (cons.end()) { OTA_DEBUGLN(F(" Upload Completed. Rebooting...")); log(F("Code upload completed. Rebooting")); reboot_now = true; } else { OTA_DEBUG(F("Error: Code upload not completed: ")); OTA_DEBUGLN(cons.getErrorStr().c_str()); log(F("Error: Code upload not completed: %s"), cons.getErrorStr().c_str()); } wait_for_ota_completion = false; } else #endif if (strncmp(buffer, "CONFIG:", 7) == 0) { NET_DEBUGLN(F(" New config received")); get_new_config(); } else if (strncmp(buffer, "CONFIG?", 7) == 0) { NET_DEBUGLN(F(" Config content requested")); send_config_msg(); } else if (strncmp(buffer, "STATE?", 6) == 0) { NET_DEBUGLN(F(" Config content requested")); send_state_msg("STATE"); } else if (strncmp(buffer, "RESTART!!", 9) == 0) { NET_DEBUGLN("Device is restarting"); restart_now = true; } else if (strncmp(buffer, "REBOOT!", 7) == 0) { NET_DEBUGLN("Device is rebooting"); reboot_now = true; } #if NET_TESTING else if (strncmp(buffer, "TEST!", 5) == 0) { log(F("This is a test...")); bool res = wifi_client->flush(10); NET_DEBUG(F("Result: ")); NET_DEBUGLN(res); } #endif else { NET_DEBUGLN(F(" Warning: Unknown message received.")); log(F("Warning: Unknown message received.")); } } else if (user_callback != NULL) { DEBUGLN(F(" Calling user callback")); (*user_callback)(_topic, _payload, _length); } } void Maison::set_msg_callback(Callback * _cb, const char * _sub_topic, uint8_t _qos) { user_callback = _cb; user_sub_topic = _sub_topic; user_qos = _qos; } void Maison::loop(Process * _process) { State new_state, new_return_state; DEBUG(F("Maison::loop(): Current state: ")); DEBUGLN(mem.state); yield(); if (network_is_available()) { if (first_connect_trial) { first_connect_trial = false; NET_DEBUGLN(F("First Connection Trial")); mqtt_connect(); last_reconnect_attempt = millis(); } if (!mqtt_connected()) { // We have not been able to connect to the MQTT server. // Wait for an hour before trying again. In a deep sleep enabled // situation, this will minimize battery drain. if (counting_lost_connection) { // This will count lost connection only once between successfull connexion. mem.lost_count += 1; counting_lost_connection = false; NET_DEBUG(F(" Connection Lost Count: ")); NET_DEBUGLN(mem.lost_count); } if (use_deep_sleep()) { NET_DEBUGLN(F("Unable to connect to MQTT Server. Deep Sleep for 1 hour.")); deep_sleep(true, ONE_HOUR); } else { long now = millis(); if ((now - last_reconnect_attempt) > (1000L * ONE_HOUR)) { NET_DEBUG(F("\r\nBeen waiting for ")); NET_DEBUG(ONE_HOUR); NET_DEBUGLN(F(" Seconds. Trying again...")); if (!mqtt_connect()) { last_reconnect_attempt = millis(); return; } } else { NET_DEBUG("-"); return; } } #if NET_TESTING if (mqtt_connected()) NET_DEBUGLN(F("MQTT Connected.")); #endif } counting_lost_connection = true; // Consume all pending messages. For OTA updates, as the request // is composed of 2 messages, // it may require many calls to mqtt_loop to get it completed. The // wait_for_ota_completion flag is set by the callback to signify the need // to wait until the new code has been received. The algorithm // below insure that if the code has not been received inside 2 minutes // of wait time, it will be aborted. This is to control battery drain. uint32_t start = millis(); NET_DEBUGLN(F("Check for new coming messages...")); do { some_message_received = false; // As with deep_sleep is enable, we must wait if there is // messages to be retrieved. int count = use_deep_sleep() ? 2000 : 1; for (int i = 0; i < count; i++) { yield(); mqtt_loop(); if (some_message_received) { NET_DEBUG(F("Message received after ")); NET_DEBUG(i); NET_DEBUGLN(F(" loops.")); break; } } } while (some_message_received || (wait_for_ota_completion && ((millis() - start) < 120000))); if (wait_for_ota_completion) { wait_for_ota_completion = false; OTA_DEBUGLN(F("Error: Wait for completion too long. Aborted.")); log(F("Error: Wait for completion too long. Aborted.")); } if (restart_now) restart(); if (reboot_now) reboot(); } new_state = mem.state; new_return_state = mem.return_state; set_deep_sleep_wait_time( is_short_reboot_time_needed() ? DEFAULT_SHORT_REBOOT_TIME : ONE_HOUR); if (use_deep_sleep()) { mem.elapse_time += micros(); } else { mem.elapse_time = micros() - loop_time_marker; } loop_time_marker = micros(); UserResult res = call_user_process(_process); DEBUG(F("User process result: ")); DEBUGLN(res); switch (mem.state) { case STARTUP: send_state_msg("STARTUP"); if (res != NOT_COMPLETED) { new_state = WAIT_FOR_EVENT; new_return_state = WAIT_FOR_EVENT; } break; case WAIT_FOR_EVENT: if (res == NEW_EVENT) { new_state = PROCESS_EVENT; new_return_state = PROCESS_EVENT; } else { new_return_state = WAIT_FOR_EVENT; new_state = check_if_24_hours_time(WAIT_FOR_EVENT); } break; case PROCESS_EVENT: if (res == ABORTED) { new_state = new_return_state = WAIT_FOR_EVENT; } else if (res != NOT_COMPLETED) { new_state = new_return_state = WAIT_END_EVENT; } else { new_return_state = PROCESS_EVENT; new_state = check_if_24_hours_time(PROCESS_EVENT); } break; case WAIT_END_EVENT: if (res == RETRY) { new_state = new_return_state = PROCESS_EVENT; } else if (res != NOT_COMPLETED) { new_state = new_return_state = END_EVENT; } else { new_return_state = WAIT_END_EVENT; new_state = check_if_24_hours_time(WAIT_END_EVENT); } break; case END_EVENT: if (res != NOT_COMPLETED) { new_state = new_return_state = WAIT_FOR_EVENT; } break; case HOURS_24: delay(100); if (mqtt_connected()) mqtt_loop(); // Second chance to process received msgs if (watchdog_enabled()) { send_state_msg("WATCHDOG"); } new_state = new_return_state; break; } mem.state = new_state; mem.return_state = new_return_state; DEBUG(" Next state: "); DEBUGLN(mem.state); if (use_deep_sleep()) { deep_sleep(network_is_available(), deep_sleep_wait_time); } else { mem.one_hour_step_count += millis() - last_time_count; last_time_count = millis(); } DEBUG(F(" One hour step count (")); DEBUG(mem.hours_24_count); DEBUG("): "); DEBUGLN(mem.one_hour_step_count); DEBUGLN("End of Maison::loop()"); } #define GETS(dst, src, size) \ if ((tmp = src)) { \ strlcpy(dst, tmp, size); \ } \ else { \ JSON_DEBUG(F(" ERROR: Unable to get ")); \ JSON_DEBUGLN(STRINGIZE(src)); \ break; \ } #define GETI(dst, src) \ if (src.as<int>()) { \ dst = src.as<int>(); \ } \ else { \ JSON_DEBUG(F(" ERROR: Unable to get ")); \ JSON_DEBUGLN(STRINGIZE(src)); \ break; \ } #define GETA(dst, src, size) copyArray(src, dst) #define GETIP(dst, src) \ if (!str2ip(src, &dst)) \ JSON_ERROR(" Bad IP Address or Mask format for " STRINGIZE(dst)) bool Maison::retrieve_config(JsonObject _doc, Config & _config) { JSON_SHOW("retrieve_config()"); DO { const char * tmp; GETI (_config.version, _doc["version" ]); GETS (_config.device_name, _doc["device_name" ], sizeof(_config.device_name )); GETS (_config.wifi_ssid, _doc["ssid" ], sizeof(_config.wifi_ssid )); GETS (_config.wifi_password, _doc["wifi_password" ], sizeof(_config.wifi_password )); GETS (_config.mqtt_server, _doc["mqtt_server_name"], sizeof(_config.mqtt_server )); GETS (_config.mqtt_username, _doc["mqtt_user_name" ], sizeof(_config.mqtt_username )); GETS (_config.mqtt_password, _doc["mqtt_password" ], sizeof(_config.mqtt_password )); GETI (_config.mqtt_port, _doc["mqtt_port" ]); GETA (_config.mqtt_fingerprint, _doc["mqtt_fingerprint"], 20); GETIP(_config.ip, _doc["ip" ]); GETIP(_config.subnet_mask, _doc["subnet_mask" ]); GETIP(_config.gateway, _doc["gateway" ]); GETIP(_config.dns, _doc["dns" ]); OK_DO; } JSON_SHOW_RESULT("retrieve_config()"); return result; } bool Maison::load_config(int _file_version) { File file; char the_filename[32]; char str[20]; JSON_SHOW("load_config()"); if (_file_version == 0) { strlcpy(the_filename, "/config.json", sizeof(the_filename)); } else { strlcpy(the_filename, "/config_", sizeof(the_filename)); strlcat(the_filename, itoa(_file_version, str, 10), sizeof(the_filename)); strlcat(the_filename, ".json", sizeof(the_filename)); } JSON_DEBUG(F(" Config filename: ")); JSON_DEBUGLN(the_filename); DO { if (!SPIFFS.begin()) JSON_ERROR("SPIFFS.begin() not working"); if (!SPIFFS.exists(the_filename)) JSON_ERROR("Config file does not esists"); file = SPIFFS.open(the_filename, "r"); if (!file) JSON_ERROR("Unable to open file"); DynamicJsonDocument doc(2048); DeserializationError error = deserializeJson(doc, file); if (error) JSON_ERROR("Unable to parse JSON content"); if (!retrieve_config(doc.as<JsonObject>(), config)) { JSON_ERROR("Unable to read config elements"); } OK_DO; } file.close(); #if JSON_TESTING if (result) show_config(config); #endif JSON_SHOW_RESULT("load_config()"); return result; } #define PUT(src, dst) dst = src #define PUTA(src, dst, len) copyArray(src, dst) #define PUTIP(src, dst) ip2str(src, buffer, 50); dst = buffer; bool Maison::save_config() { File file; JSON_SHOW("save_config()"); DO { if (!SPIFFS.begin()) ERROR(" SPIFFS.begin() not working"); if (SPIFFS.exists("/config_5.json")) SPIFFS.remove("/config_5.json"); if (SPIFFS.exists("/config_4.json")) SPIFFS.rename("/config_4.json", "/config_5.json"); if (SPIFFS.exists("/config_3.json")) SPIFFS.rename("/config_3.json", "/config_4.json"); if (SPIFFS.exists("/config_2.json")) SPIFFS.rename("/config_2.json", "/config_3.json"); if (SPIFFS.exists("/config_1.json")) SPIFFS.rename("/config_1.json", "/config_2.json"); if (SPIFFS.exists("/config.json" )) SPIFFS.rename("/config.json", "/config_1.json"); file = SPIFFS.open("/config.json", "w"); if (!file) JSON_ERROR("Unable to open file /config.json"); DynamicJsonDocument doc(2048); JsonArray arr = doc.createNestedArray("mqtt_fingerprint"); //if (!arr.success()) ERROR("Unable to create JSON array object"); PUT (config.version, doc["version" ]); PUT (config.device_name, doc["device_name" ]); PUT (config.wifi_ssid, doc["ssid" ]); PUT (config.wifi_password, doc["wifi_password" ]); PUTIP(config.ip, doc["ip" ]); PUTIP(config.subnet_mask, doc["subnet_mask" ]); PUTIP(config.gateway, doc["gateway" ]); PUTIP(config.dns, doc["dns" ]); PUT (config.mqtt_server, doc["mqtt_server_name"]); PUT (config.mqtt_username, doc["mqtt_user_name" ]); PUT (config.mqtt_password, doc["mqtt_password" ]); PUT (config.mqtt_port, doc["mqtt_port" ]); PUTA (config.mqtt_fingerprint, arr, 20); serializeJson(doc, file); OK_DO; } file.close(); JSON_SHOW_RESULT("save_config()"); return result; } char * Maison::mac_to_str(uint8_t * _mac, char * _buff) { const char * hex = "0123456789ABCDEF"; char * ptr = _buff; for (int i = 0; i < 6; i++) { *ptr++ = hex[_mac[i] >> 4]; *ptr++ = hex[_mac[i] & 0x0F]; } *ptr = 0; return _buff; } bool Maison::update_device_name() { if (config.device_name[0] == 0) { uint8_t mac[6]; char str[20]; WiFi.macAddress(mac); strlcpy(config.device_name, mac_to_str(mac, str), sizeof(config.device_name)); return true; } return false; } int Maison::reset_reason() { rst_info * reset_info = ESP.getResetInfoPtr(); DEBUG(F("Reset reason: ")); DEBUGLN(reset_info->reason); return reset_info->reason; } bool Maison::wifi_connect() { NET_SHOW("wifi_connect()"); DO { if (!wifi_connected()) { delay(200); WiFi.mode(WIFI_STA); if (config.ip != 0) { WiFi.config(config.ip, config.dns, config.gateway, config.subnet_mask); } WiFi.begin(config.wifi_ssid, config.wifi_password); delay(100); int attempt = 0; while (!wifi_connected()) { delay(200); NET_DEBUG(F(".")); if (++attempt >= 50) { // 10 seconds NET_ERROR("Unable to connect to WiFi"); } } } break; } result = wifi_connected(); NET_SHOW_RESULT("wifi_connect()"); return result; } bool Maison::init_callbacks() { NET_SHOW("init_callbacks()"); DO { if (!mqtt_client.subscribe( build_topic(MAISON_CTRL_TOPIC, topic, sizeof(topic)), 1)) { NET_DEBUG(F(" Hum... unable to subscribe to topic (State:")); NET_DEBUG(mqtt_client.state()); NET_DEBUG(F("): ")); NET_DEBUGLN(topic); break; } else { NET_DEBUG(F(" Subscription completed to topic ")); NET_DEBUGLN(topic); } if (user_sub_topic != NULL) { if (!mqtt_client.subscribe(user_topic, user_qos)) { NET_DEBUG(F(" Hum... unable to subscribe to user topic (State:")); NET_DEBUG(mqtt_client.state()); NET_DEBUG(F("): ")); NET_DEBUGLN(user_topic); break; } else { NET_DEBUG(F(" Subscription completed to user topic ")); NET_DEBUGLN(user_topic); } } OK_DO; } NET_SHOW_RESULT("init_callbacks()"); return result; } static char tmp_buff[50]; // Shared by mqtt_connect(), send_msg() and log() bool Maison::mqtt_connect() { NET_SHOW("mqtt_connect()"); DO { if (!wifi_connect()) NET_ERROR("WiFi"); if (!mqtt_connected()) { if (wifi_client != NULL) { delete wifi_client; wifi_client = NULL; } #if MAISON_SECURE wifi_client = new BearSSL::WiFiClientSecure; if (config.mqtt_fingerprint[0]) { wifi_client->setFingerprint(config.mqtt_fingerprint); } else { wifi_client->setInsecure(); } #else wifi_client = new WiFiClient; #endif mqtt_client.setClient(*wifi_client); mqtt_client.setServer(config.mqtt_server, config.mqtt_port); mqtt_client.setCallback(maison_callback); if (user_sub_topic != NULL) { build_topic(user_sub_topic, user_topic, sizeof(user_topic)); } strlcpy(tmp_buff, "client-", sizeof(tmp_buff)); strlcat(tmp_buff, config.device_name, sizeof(tmp_buff)); NET_DEBUG(F(" Client name: ")); NET_DEBUGLN(tmp_buff ); NET_DEBUG(F(" Username: " )); NET_DEBUGLN(config.mqtt_username); NET_DEBUG(F(" Clean session: ")); NET_DEBUGLN(use_deep_sleep() ? F("No") : F("Yes")); mqtt_client.connect(tmp_buff, config.mqtt_username, config.mqtt_password, NULL, 0, 0, NULL, // Will message not used !use_deep_sleep()); // Permanent session if deep sleep if (mqtt_connected()) { if (!init_callbacks()) break; } else { NET_DEBUG(F(" Unable to connect to mqtt. State: ")); NET_DEBUGLN(mqtt_client.state()); #if MAISON_SECURE NET_DEBUG(F(" Last SSL Error: ")); NET_DEBUGLN(wifi_client->getLastSSLError()); #endif if (++connect_retry_count >= 5) { NET_DEBUGLN(F(" Too many trials, reconnecting WiFi...")); mqtt_client.disconnect(); wifi_client->stop(); WiFi.disconnect(); connect_retry_count = 0; } break; } } connect_retry_count = 0; OK_DO; } NET_SHOW_RESULT("mqtt_connect()"); return result; } bool Maison::send_msg(const char * _topic_suffix, const __FlashStringHelper * _format, ...) { NET_SHOW("send_msg()"); va_list args; va_start (args, _format); vsnprintf_P(buffer, MQTT_MAX_PACKET_SIZE, (const char *) _format, args); DO { NET_DEBUG(F(" Sending msg to ")); NET_DEBUG(build_topic(_topic_suffix, tmp_buff, sizeof(tmp_buff))); NET_DEBUG(F(": ")); NET_DEBUGLN(buffer); if (!mqtt_connected()) { NET_ERROR("Unable to connect to mqtt server"); } else if (!mqtt_client.publish(build_topic(_topic_suffix, tmp_buff, sizeof(tmp_buff)), buffer)) { NET_ERROR("Unable to publish message"); } OK_DO; } NET_SHOW_RESULT("send_msg()"); return result; } bool Maison::log(const __FlashStringHelper * _format, ...) { NET_SHOW("log()"); va_list args; va_start (args, _format); strlcpy(buffer, config.device_name, 50); strlcat(buffer, ": ", 50); int len = strlen(buffer); vsnprintf_P(&buffer[len], MQTT_MAX_PACKET_SIZE-len, (const char *) _format, args); DO { NET_DEBUG(F(" Log msg : ")); NET_DEBUGLN(buffer); if (!mqtt_connected()) { NET_ERROR("Unable to connect to mqtt server"); } else if (!mqtt_client.publish(build_topic(MAISON_LOG_TOPIC, tmp_buff, sizeof(tmp_buff)), buffer)) { NET_ERROR("Unable to log message"); } OK_DO; } NET_SHOW_RESULT("log()"); return result; } void Maison::deep_sleep(bool _back_with_wifi, uint16_t _sleep_time_in_sec) { SHOW("deep_sleep()"); DEBUG(" Sleep Duration: "); DEBUGLN(_sleep_time_in_sec); DEBUG(" Network enabled on return: "); DEBUGLN(_back_with_wifi ? F("YES") : F("NO")); wifi_flush(); uint32_t sleep_time = 1000000U * _sleep_time_in_sec; // When _sleep_time_in_sec is 0, will sleep only for 100ms if (sleep_time == 0) { sleep_time = 100000U; mem.one_hour_step_count += millis() + 100; } else { mem.one_hour_step_count += millis() + (1000U * _sleep_time_in_sec); } mem.elapse_time = micros() - loop_time_marker + sleep_time; save_mems(); ESP.deepSleep( sleep_time, _back_with_wifi ? WAKE_RF_DEFAULT : WAKE_RF_DISABLED); delay(1000); DEBUGLN(" HUM... Not suppose to come here after deep_sleep call..."); } Maison::State Maison::check_if_24_hours_time(Maison::State _default_state) { DEBUG("24 hours wait time check: "); DEBUG(mem.hours_24_count); DEBUG(", "); DEBUGLN(mem.one_hour_step_count); if (mem.one_hour_step_count >= (1000U * ONE_HOUR)) { mem.one_hour_step_count = 0; if (++mem.hours_24_count >= 24) { mem.hours_24_count = 0; DEBUGLN(F("HOURS_24 reached...")); return HOURS_24; } } return _default_state; } // ---- RTC Memory Data Management ---- #define RTC_MAGIC 0x55aaaa55 #define RTC_BASE_ADDR 66 bool Maison::load_mems() { SHOW("load_mems()"); DO { if ((!read_mem((uint32_t *) &mem, sizeof(mem), 0)) || (mem.magic != RTC_MAGIC)) { DEBUGLN(F(" Maison state initialization")); if (!init_mem()) ERROR("Unable to initialize Maison state in rtc memory"); } if (user_mem != NULL) { if (!read_mem((uint32_t *) user_mem, user_mem_length, sizeof(mem))) { DEBUGLN(F(" User state initialization")); if (!init_user_mem()) ERROR("Unable to initialize user state in rtc memory"); } } OK_DO; } SHOW_RESULT("load_mems()"); return result; } bool Maison::save_mems() { SHOW("save_mems()"); DO { if (!write_mem((uint32_t *) &mem, sizeof(mem), 0)) { ERROR("Unable to update Maison state in rtc memory"); } if (user_mem != NULL) { if (!write_mem((uint32_t *) user_mem, user_mem_length, sizeof(mem))) { ERROR("Unable to update user state in rtc memory"); } } OK_DO; } SHOW_RESULT("save_mems()"); return result; } bool Maison::init_mem() { SHOW("init_mem()"); mem.magic = RTC_MAGIC; mem.state = mem.return_state = STARTUP; mem.hours_24_count = 0; mem.one_hour_step_count = 0; mem.lost_count = 0; DEBUG("Sizeof mem_struct: "); DEBUGLN(sizeof(mem_struct)); bool result = write_mem((uint32_t *) &mem, sizeof(mem), 0); SHOW_RESULT("init_mem()"); return result; } bool Maison::init_user_mem() { if (!user_mem) return true; SHOW("init_user_mem()"); memset(user_mem, 0, user_mem_length); bool result = write_mem((uint32_t *) user_mem, user_mem_length, sizeof(mem)); SHOW_RESULT("init_user_mem()"); return result; } bool Maison::read_mem(uint32_t * _data, uint16_t _length, uint16_t _addr) { SHOW("read_mem()"); DEBUG(F(" data addr: ")); DEBUGLN((int)_data); DEBUG(F(" length: ")); DEBUGLN(_length); DEBUG(F(" pos in rtc: ")); DEBUGLN(_addr); DO { if (!ESP.rtcUserMemoryRead((_addr + 3) >> 2, (uint32_t *) _data, _length)) { ERROR("Unable to read from rtc memory"); } uint32_t csum = CRC32((uint8_t *)(&_data[1]), _length - 4); if (_data[0] != csum) ERROR("Data in RTC memory with bad checksum!"); OK_DO; } SHOW_RESULT("read_mem()"); return result; } bool Maison::write_mem(uint32_t * _data, uint16_t _length, uint16_t _addr) { SHOW("write_mem()"); DEBUG(F(" data addr: ")); DEBUGLN((int)_data); DEBUG(F(" length: ")); DEBUGLN(_length); DEBUG(F(" pos in rtc: ")); DEBUGLN(_addr); _data[0] = CRC32((uint8_t *)(&_data[1]), _length - 4); DO { if (!ESP.rtcUserMemoryWrite((_addr + 3) >> 2, (uint32_t *) _data, _length)) { ERROR("Unable to write to rtc memory"); } OK_DO; } SHOW_RESULT("write_mem()"); return result; } uint32_t Maison::CRC32(const uint8_t * _data, size_t _length) { uint32_t crc = 0xffffffff; DEBUG(F("Computing CRC: data addr: ")); DEBUG((int)_data); DEBUG(F(", length: ")); DEBUGLN(_length); while (_length--) { uint8_t c = *_data++; for (uint32_t i = 0x80; i > 0; i >>= 1) { bool bit = crc & 0x80000000; if (c & i) { bit = !bit; } crc <<= 1; if (bit) { crc ^= 0x04c11db7; } } } DEBUG(F(" Computed CRC: ")); DEBUGLN(crc); return crc; } void Maison::wifi_flush() { if (mqtt_connected()) { mqtt_client.disconnect(); } if (wifi_client != NULL) { while (!wifi_client->flush(100)) delay(10); while (!wifi_client->stop(100)) delay(10); while (wifi_client->connected()) delay(10); delay(10); } } void Maison::reboot() { if (mqtt_connected()) { log(F("Info: Restart requested.")); } wifi_flush(); ESP.restart(); delay(5000); } void Maison::restart() { save_mems(); reboot(); } char * Maison::ip2str(uint32_t _ip, char *_str, int _length) { union { uint32_t ip; byte bip[4]; } ip; ip.ip = _ip; snprintf(_str, _length, "%d.%d.%d.%d", ip.bip[0], ip.bip[1], ip.bip[2], ip.bip[3]); return _str; } char * Maison::mac2str(byte _mac[], char *_str, int _length) { char * str = _str; static char hex[17] = "0123456789ABCDEF"; for (int idx = 0; idx < 6; idx++) { if (--_length < 0) { *str = 0; return _str; } *str++ = hex[(_mac[idx] >> 4) & 0x0F]; if (--_length < 0) { *str = 0; return _str; } *str++ = hex[_mac[idx] & 0x0F]; if (idx != 5) { if (--_length < 0) { *str = 0; return _str; } *str++ = ':'; } } return _str; } bool Maison::str2ip(const char * _str, uint32_t * _ip) { int idx = 0; union { uint32_t ip; byte bip[4]; } ip; ip.ip = 0; *_ip = 0; if (*_str == 0 ) return true; if (*_str == '.') return false; while (*_str) { if (*_str == '.') { if (*++_str == 0) return false; if (++ idx > 3) return false; } else if ((*_str >= '0') && (*_str <= '9')) { ip.bip[idx] = (ip.bip[idx] * 10) + (*_str++ - '0'); } else { return false; } } *_ip = ip.ip; return (*_str == 0) && (idx == 3); } #if JSON_TESTING void Maison::show_config(Config & _config) { JSON_DEBUGLN(F("\nConfiguration:\n-------------")); JSON_DEBUG(F("Version : ")); JSON_DEBUGLN(_config.version ); JSON_DEBUG(F("Device Name : ")); JSON_DEBUGLN(_config.device_name ); JSON_DEBUG(F("WiFi SSID : ")); JSON_DEBUGLN(_config.wifi_ssid ); JSON_DEBUG(F("WiFi Password : ")); JSON_DEBUGLN(F("<Hidden>") ); JSON_DEBUG(F("IP : ")); JSON_DEBUGLN(ip2str(config.ip, buffer, 50)); JSON_DEBUG(F("DNS : ")); JSON_DEBUGLN(ip2str(config.dns, buffer, 50)); JSON_DEBUG(F("Gateway : ")); JSON_DEBUGLN(ip2str(config.gateway, buffer, 50)); JSON_DEBUG(F("Subnet Mask : ")); JSON_DEBUGLN(ip2str(config.subnet_mask, buffer, 50)); JSON_DEBUG(F("MQTT Server : ")); JSON_DEBUGLN(_config.mqtt_server ); JSON_DEBUG(F("MQTT Username : ")); JSON_DEBUGLN(_config.mqtt_username ); JSON_DEBUG(F("MQTT Password : ")); JSON_DEBUGLN(F("<Hidden>") ); JSON_DEBUG(F("MQTT Port : ")); JSON_DEBUGLN(_config.mqtt_port ); JSON_DEBUG(F("MQTT Fingerprint : [")); for (int i = 0; i < 20; i++) { JSON_DEBUG(_config.mqtt_fingerprint[i]); if (i < 19) JSON_DEBUG(F(",")); } JSON_DEBUGLN(F("]")); JSON_DEBUGLN(F("---- The End ----")); } #endif #if 0 // Load Certificates void load_certs() { if (!SPIFFS.begin()) { Serial.println("Failed to mount file system"); return; } // Load client certificate file from SPIFFS File cert = SPIFFS.open("/esp.der", "r"); //replace esp.der with your uploaded file name if (!cert) { Serial.println("Failed to open cert file"); } else { Serial.println("Success to open cert file"); } delay(1000); // Set client certificate if (wifi_client.loadCertificate(cert)) { Serial.println("Cert loaded"); } else { Serial.println("Cert not loaded"); } // Load client private key file from SPIFFS File private_key = SPIFFS.open("/espkey.der", "r"); //replace espkey.der with your uploaded file name if (!private_key) { Serial.println("Failed to open private cert file"); } else { Serial.println("Success to open private cert file"); } delay(1000); // Set client private key if (wifi_client.loadPrivateKey(private_key)) { Serial.println("private key loaded"); } else { Serial.println("private key not loaded"); } // Load CA file from SPIFFS File ca = SPIFFS.open("/ca.der", "r"); //replace ca.der with your uploaded file name if (!ca) { Serial.println("Failed to open CA"); } else { Serial.println("Success to open CA"); } delay(1000); // Set server CA file if (wifi_client.loadCACert(ca)) { Serial.println("CA loaded"); } else { Serial.println("CA failed"); } } #endif
[ "turgu666@gmail.com" ]
turgu666@gmail.com
a2986a812ca0380f1a332ef67d41877a8adbc074
0b90d18bf8e2000d3c47a17f3403be51b4a8ecd8
/src/Applications/Utils/VTKtoTriSurfField.cc
3433ce16a141ce62edb9f0343af4951aae55d357
[ "MIT" ]
permissive
merced317/scirun4plus
c3d8d65dd68f9d119b43cf084ea8b9d94921ce33
f29630e03d3cf13c0ce8b327676ad202e3981af0
refs/heads/master
2020-12-10T19:20:18.401161
2018-06-27T09:21:54
2018-06-27T09:21:54
233,683,375
0
0
null
2020-01-13T20:09:14
2020-01-13T20:09:13
null
UTF-8
C++
false
false
10,859
cc
/* For more information, please see: http://software.sci.utah.edu The MIT License Copyright (c) 2009 Scientific Computing and Imaging Institute, University of Utah. 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. */ // File : VTKtoTriSurfField.cc // Author : Martin Cole // Date : Fri May 7 10:23:05 2004 // Warning!: this converter is only partially implemented. It supports only // a subset of the vtk format. Please extend it as you need more #include <Core/Datatypes/FieldInformation.h> #include <Core/Datatypes/Field.h> #include <Core/Persistent/Pstreams.h> #include <Core/Init/init.h> #include <Core/Util/FileUtils.h> #include <sci_deprecated.h> #include <iostream> #include <fstream> #include <stdlib.h> #include <string.h> #include <stdio.h> using namespace SCIRun; #define check_error(str) \ if (str.fail()) { \ std::cerr << "fail state at line: " << __LINE__ << " " << std::endl; \ return 66; } bool bin_out; bool swap_endian; void setDefaults() { bin_out=false; swap_endian=false; } int parseArgs(int argc, char *argv[]) { int currArg = 3; while (currArg < argc) { if (!strcmp(argv[currArg], "-bin_out")) { bin_out=true; currArg++; } else if (!strcmp(argv[currArg], "-swap_endian")) { swap_endian=true; currArg++; } else { std::cerr << "Error - unrecognized argument: "<<argv[currArg]<<"\n"; return 0; } } return 1; } void printUsageInfo(char *progName) { std::cerr << std::endl << "Usage: " << progName << " VTKFile TriSurfField [-bin_out] [-swap_endian]" << std::endl << std::endl << "\t This program will read in a .vtk file and output a TriSurfField" << std::endl << "\t -bin_out specifies binare vs. ASCII output. ASCII by default." << std::endl << "\t -swap_endian swaps the data from big to little endian or" << std::endl << "\t vice versa. false by default." << std::endl << std::endl; std::cerr << "Warning!: this converter is only partially implemented. It supports " << "only a subset of the vtk format. Please extend it as you need more." << std::endl; } void swap_endianess_4(unsigned *dw) { if (!swap_endian) return; register unsigned tmp; tmp = (*dw & 0x000000FF); tmp = ((*dw & 0x0000FF00) >> 0x08) | (tmp << 0x08); tmp = ((*dw & 0x00FF0000) >> 0x10) | (tmp << 0x08); tmp = ((*dw & 0xFF000000) >> 0x18) | (tmp << 0x08); *dw = tmp; } int read_n_points(VMesh *tsm, int n, std::ifstream &str) { float arr[3]; check_error(str); for(int i = 0; i < n; i++) { str.read((char*)arr, sizeof(float) * 3); check_error(str); swap_endianess_4((unsigned*)&arr[0]); swap_endianess_4((unsigned*)&arr[1]); swap_endianess_4((unsigned*)&arr[2]); tsm->add_point(Point(arr[0], arr[1], arr[2])); //std::cout << arr[0] << ", " << arr[1] << ", " << arr[2] << std::endl; } return 0; } int read_n_polys(VMesh *tsm, int n, std::ifstream &str) { unsigned int arr[3]; check_error(str); VMesh::Node::array_type nodes(3); for(int i = 0; i < n; i++) { unsigned int val; str.read((char*)&val, sizeof(float)); check_error(str); swap_endianess_4(&val); if (val != 3) { std::cout << "ERROR: can only handle triangle polys atm..." << std::endl; exit(1); } str.read((char*)arr, sizeof(unsigned int) * 3); check_error(str); swap_endianess_4((unsigned int*)&arr[0]); swap_endianess_4((unsigned int*)&arr[1]); swap_endianess_4((unsigned int*)&arr[2]); nodes[0] = static_cast<VMesh::Node::index_type>(arr[0]); nodes[1] = static_cast<VMesh::Node::index_type>(arr[1]); nodes[2] = static_cast<VMesh::Node::index_type>(arr[2]); tsm->add_elem(nodes); } return 0; } int read_n_strips(VMesh *tsm, int n, std::ifstream &str) { unsigned int arr[3]; check_error(str); std::cerr << "reading " << n << " strips." << std::endl; for(int i = 0; i < n; i++) { unsigned int val; str.read((char*)&val, sizeof(unsigned int)); check_error(str); swap_endianess_4(&val); std::cout << val << " points in strip." << std::endl; std::vector<int> strip; strip.resize(val); // read in all the indicies str.read((char*)&strip[0], sizeof(unsigned int) * val); check_error(str); bool ccw = true; VMesh::Node::array_type nodes(3); for (int j = 2; j < static_cast<int>(val); ++j) { arr[0] = strip[j-2]; arr[1] = strip[j-1]; arr[2] = strip[j]; swap_endianess_4((unsigned*)&arr[0]); swap_endianess_4((unsigned*)&arr[1]); swap_endianess_4((unsigned*)&arr[2]); if (ccw) { nodes[0] = static_cast<VMesh::Node::index_type>(arr[0]); nodes[1] = static_cast<VMesh::Node::index_type>(arr[1]); nodes[2] = static_cast<VMesh::Node::index_type>(arr[2]); } else { nodes[0] = static_cast<VMesh::Node::index_type>(arr[0]); nodes[1] = static_cast<VMesh::Node::index_type>(arr[2]); nodes[2] = static_cast<VMesh::Node::index_type>(arr[1]); } tsm->add_elem(nodes); ccw = !ccw; } } return 0; } int read_scalar_lookup(VField *fld, VField::size_type n, std::ifstream &str) { fld->resize_values(); //val_t last = 0; int vset = 0; check_error(str); for(VField::index_type i = 0; i < n; i++) { float val; str.read((char*)&val, sizeof(float)); check_error(str); swap_endianess_4((unsigned int*)&val); vset++; fld->set_value(val, i); } return 0; } int main(int argc, char **argv) { int status = 0; if (argc < 3 || argc > 5) { printUsageInfo(argv[0]); return 2; } SCIRunInit(); setDefaults(); MeshHandle tsm = CreateMesh(TRISURFMESH_E); //exit(5); char *in = argv[1]; char *out = argv[2]; if (!parseArgs(argc, argv)) { printUsageInfo(argv[0]); status = 1; return 1; } std::ifstream vtk(in, std::ios::binary); check_error(vtk); char id[256], header[256], format[256]; vtk.getline(id, 256); vtk.getline(header, 256); vtk >> format; std::cout << format << std::endl; std::string dataset; vtk >> dataset; if (dataset != "DATASET") { std::cerr << "ERROR: expected DATASET keyword." << std::endl; status = 5; return 5; } else { vtk >> dataset; if (dataset != "POLYDATA") { std::cerr << "ERROR: can only handle POLYDATA type vtk files at this time. " << "got: " << dataset << std::endl; return 5; } } check_error(vtk); std::string attrib; vtk >> attrib; int n; vtk >> n; std::string type; vtk >> type; //std::cout << "attrib is : " << attrib << " " << n << " type is " << type << std::endl; check_error(vtk); vtk.get(); // eat a newline read_n_points(tsm->vmesh(), n, vtk); check_error(vtk); std::string poly; vtk >> poly; if (poly == "POLYGONS") { vtk >> n; int sz; vtk >> sz; std::cout << poly << " " << n << " " << sz << std::endl; vtk.get(); // eat a newline read_n_polys(tsm->vmesh(), n, vtk); check_error(vtk); } else if (poly == "TRIANGLE_STRIPS") { vtk >> n; int sz; vtk >> sz; std::cout << poly << " " << n << " " << sz << std::endl; vtk.get(); // eat a newline read_n_strips(tsm->vmesh(), n, vtk); check_error(vtk); } else { std::cerr << "ERROR: can only handle POLYGONS or TRIANGLE_STRIPS type polygonal data " << " files at this time. got: " << poly << std::endl; return 1; } std::string dat; std::string d_attrib; vtk >> dat; vtk >> n; check_error(vtk) std::cout << dat << " " << n << std::endl; if (dat == "CELL_DATA") { vtk >> d_attrib; check_error(vtk); if (d_attrib == "POINT_DATA") { dat = d_attrib; vtk >> n; } std::cout << dat << " " << n << std::endl; } FieldHandle ts_handle; std::string data, name; vtk >> data; check_error(vtk); std::cout << data << std::endl; vtk >> name; check_error(vtk); std::cout << name << std::endl; vtk >> type; check_error(vtk); std::cout << type << std::endl; if (dat == "CELL_DATA") { if (type != "float") { std::cerr << "supporting float only atm..." << std::endl; return 1; } FieldInformation fi(TRISURFMESH_E,CONSTANTDATA_E,FLOAT_E); ts_handle = CreateField(fi,tsm); ts_handle->vfield()->resize_values(); std::string table, tname; vtk >> table >> tname; vtk.get(); // eat a newline read_scalar_lookup(ts_handle->vfield(), n, vtk); } else { // node centered data ... if (type != "float") { std::cerr << "supporting float only atm..." << std::endl; std::cerr << "got " << type << std::endl; return 1; } if (data == "SCALARS") { FieldInformation fi(TRISURFMESH_E,LINEARDATA_E,FLOAT_E); ts_handle = CreateField(fi,tsm); ts_handle->vfield()->resize_values(); std::string table, tname; vtk >> table >> tname; //std::cout << table << " " << tname << std::endl; vtk.get(); // eat a newline read_scalar_lookup(ts_handle->vfield(), n, vtk); } else { FieldInformation fi(TRISURFMESH_E,NODATA_E,FLOAT_E); ts_handle = CreateField(fi,tsm); ts_handle->vfield()->resize_values(); } } while (!vtk.eof()) { vtk.get(); } if (bin_out) { BinaryPiostream out_stream(out, Piostream::Write); Pio(out_stream, ts_handle); } else { TextPiostream out_stream(out, Piostream::Write); Pio(out_stream, ts_handle); } return status; }
[ "ppetrov@joker.umcutrecht.nl" ]
ppetrov@joker.umcutrecht.nl
5c266f8cf45eeebab8677cfa90431a2c093ce261
95ae6fa9cc64bc2f537753475c1b84ae526391b1
/source/tm/team_predictor/estimate.hpp
a4ff8b8eab66c95b02c37454e49196a765997524
[ "BSL-1.0" ]
permissive
OctalMicrobe/technical-machine
7deeb30cf1ff2eb730bc0ad9efc4794b30c6cf5c
bffa259bd4d069ce104efa21fef34a5342ee0755
refs/heads/master
2023-02-04T00:43:19.534781
2020-12-20T17:21:50
2020-12-20T17:21:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
758
hpp
// Copyright David Stone 2020. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #pragma once #include <tm/team_predictor/lead_stats.hpp> #include <tm/pokemon/species_forward.hpp> #include <containers/array/array.hpp> #include <random> namespace technicalmachine { struct UsageStats; struct Estimate { Estimate(UsageStats const & usage_stats, LeadStats lead_stats); void update(UsageStats const & usage_stats, Species seen); Species most_likely() const; Species random(std::mt19937 & random_engine) const; private: using value_type = float; containers::array<value_type, number_of_species> m_estimate; }; } // namespace technicalmachine
[ "david@doublewise.net" ]
david@doublewise.net
705de1b4234e19a8320b26f2834e4b3b056155f9
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/enduser/netmeeting/t120/h/random.h
eefab539264fc06b975f776f138324a2a212fa7d
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
8,258
h
/* * random.h * * Copyright (c) 1993-1995 by DataBeam Corporation, Lexington, KY * * Abstract: * This is the interface file for the RandomNumberGenerator class. * Instances of this class can generate random numbers within a specifed * range on demand. Many of these objects can exist at once, and they * will not interfere with each other. * * Caveats: * None. * * Author: * James J. Johnstone IV */ #ifndef _RANDOM_ #define _RANDOM_ /* * The data type of the return value of the RandomNumberGenerator class. */ typedef ULong RandomValue; #ifdef USE_RANDOM_CLASS /* * This typedef is an enumeration of all possible random number generation * algorithms and is used when constructing a new random number generator. * See "Numerical Recipes in 'C'" for details as to the difference between * the various algorithms. */ typedef enum { ALGORITHM_RAN1, ALGORITHM_RANQD2, ALGORITHM_RAN4 } Algorithm; typedef Algorithm * PAlgorithm; /* * The default algorithm for the random number generator object. */ #define DEFAULT_ALGORITHM ALGORITHM_RAN1 /* * If specified as the seed value, a random seed will be generated by the * random number generator. */ #define RANDOM_SEED 0 /* * Defines for ran1() algorithm from "Numerical Recipes in 'C'" */ #define IA 16807 #define IM 2147483647L #define AM (1.0/IM) #define IQ 127773L #define IR 2836 #define NTAB 32 #define NDIV (1+(IM-1)/NTAB) #define EPS 1.2e-7 #define RNMX (1.0-EPS) /* * Defines for ranqd2() algorithm from "Numerical Recipes in 'C'" */ #define RANQD2_A 1664525L #define RANQD2_C 1013904223L /* * Defines for ranqd2() and ran4() algorithms from "Numerical Recipes in 'C'" */ #define JFLONE 0x3f800000L #define JFLMSK 0x007fffffL /* * Defines for the ran4() algorithm from "Numerical Recipes in 'C'" */ #define NITER 4 /* * The definition of the RandomNumberGenerator class. */ class RandomNumberGenerator { public: RandomNumberGenerator (); RandomNumberGenerator ( ULong seed); RandomNumberGenerator ( Algorithm algorithm); RandomNumberGenerator ( Algorithm algorithm, ULong seed); virtual ~RandomNumberGenerator (); RandomValue GetRandomNumber ( RandomValue lo_extent, RandomValue hi_extent); Void Reseed (); Void Reseed ( ULong seed); private: Void GenerateSeed ( ULong seed); Float RAN1UniformDeviate (); Float RAN4UniformDeviate (); Void PseudoDESHashing ( ULong *lword, ULong *irword); Algorithm Algorithm_In_Use; Long Running_Random_Number; }; typedef RandomNumberGenerator * PRandomNumberGenerator; /* * RandomNumberGenerator () * * Functional Description: * This version of the constructor is used to create a random number * generator object that has been automatically seeded with the current * time. The default algorithm will be used. * * Formal Parameters: * None. * * Return Value: * None. * * Side Effects: * None. * * Caveats: * None. */ /* * RandomNumberGenerator ( * ULong seed) * * Functional Description: * This version of the constructor is used to create a random number * generator object which is seeded with the supplied value. The default * algorithm will be used. * * Formal Parameters: * seed (i) * A value used to seed the random number generator. If the seed value * is zero, the random number generator object will use a random seed * value based on the time. * * Return Value: * None. * * Side Effects: * None. * * Caveats: * None. */ /* * RandomNumberGenerator ( * Algorithm algorithm) * * Functional Description: * This version of the constructor is used to create a random number * generator object that has been automatically seeded with the current * time. The algorithm specifies the algorithm to be used. * * Formal Parameters: * algorithm (i) * The random number generation algorithm to be used. The parameter * algorithm must be one of the following: * * ALGORITHM_RAN1 * A good general purpose algorithm with a rather long period. * This algorithm was benchmarked on a Gateway 2000 486/33C at * 29+ Kops (thousand operations per second). * ALGORITHM_RANQD2 * A quick and dirty algorithm. Use this algorithm if speed is an * issue and the period of the random sequence is unimportant. * This algorithm was benchmarked on a Gateway 2000 486/33C at * 49+ Kops (thousand operations per second). * ALGORITHM_RAN4 * A slow algorithm with an exceptionally long period. * This algorithm was benchmarked on a Gateway 2000 486/33C at * 18+ Kops (thousand operations per second). * * Return Value: * None. * * Side Effects: * None. * * Caveats: * None. */ /* * RandomNumberGenerator ( * Algorithm algorithm, * ULong seed) * * Functional Description: * This version of the constructor is used to create a random number * generator object which is seeded with the supplied value. The algorithm * specified the algorithm to be used. * * Formal Parameters: * algorithm (i) * The random number generation algorithm to be used. The parameter * algorithm must be one of the following: * * ALGORITHM_RAN1 * A good general purpose algorithm with a rather long period. * This algorithm was benchmarked on a Gateway 2000 486/33C at * 29+ Kops (thousand operations per second). * ALGORITHM_RANQD2 * A quick and dirty algorithm. Use this algorithm if speed is an * issue and the period of the random sequence is unimportant. * This algorithm was benchmarked on a Gateway 2000 486/33C at * 49+ Kops (thousand operations per second). * ALGORITHM_RAN4 * A slow algorithm with an exceptionally long period. * This algorithm was benchmarked on a Gateway 2000 486/33C at * 18+ Kops (thousand operations per second). * seed (i) * A value used to seed the random number generator. If the seed value * is zero, the random number generator object will use a random seed * value based on the time. * * Return Value: * None. * * Side Effects: * None. * * Caveats: * None. */ /* * ~RandomNumberGenerator () * * Public * * Functional Description: * This is the destructor for the RandomNumberGenerator class. * * Formal Parameters: * None. * * Return Value: * None. * * Side Effects: * None. * * Caveats: * None. */ /* * RandomValue GetRandomNumber ( * RandomValue lo_extent, * RandomValue hi_extent) * * Public * * Functional Description: * This method is used to generate a random number between the * specified values. * * Formal Parameters: * lo_extent (i) * The lowest number you wish to receive. * hi_extent (i) * The highest number you wish to receive. * * Return Value: * A RandomValue in the range specified. * * Side Effects: * None. * * Caveats: * None. */ /* * Void Reseed () * * Public * * Functional Description: * This method is used to reseed the random number generator object using * the system time as the seed value. * * Formal Parameters: * None. * * Return Value: * None. * * Side Effects: * None. * * Caveats: * None. */ /* * Void Reseed ( * ULong seed) * * Public * * Functional Description: * This method is used to reseed the random number generator object using * the specified seed value. * * Formal Parameters: * seed (i) * A value used to seed the random number generator. If the seed value * is zero, the random number generator object will use a random seed * value based on the time. * * Return Value: * None. * * Side Effects: * None. * * Caveats: * None. */ #endif // USE_RANDOM_CLASS #endif // _RANDOM_
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
1d48eb39735d4d1efc8179921fec92516e265c6c
d237790126328f571198160a280c1865e459d380
/src/NOvADetectorConstruction.cc
cdc0a702b504df69aa9322c08e943bc3168be4e7
[]
no_license
plasorak/NOvAG4Standalone
06c9038efe7c295e488d43f15bfa784a7ba0cd1f
1bb3f8147bbe2e7bef23a9c592e3e87d0c05c0b6
refs/heads/master
2022-12-02T10:58:13.762385
2020-08-25T12:26:12
2020-08-25T12:26:12
288,245,297
0
0
null
null
null
null
UTF-8
C++
false
false
4,328
cc
// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // /// \file NOvADetectorConstruction.cc /// \brief Implementation of the NOvADetectorConstruction class #include "NOvADetectorConstruction.hh" #include "NOvADetectorMessenger.hh" #include "G4RunManager.hh" #include "G4NistManager.hh" #include "G4Box.hh" #include "G4PhysicalVolumeStore.hh" #include "G4LogicalVolume.hh" #include "G4PVPlacement.hh" #include "G4SystemOfUnits.hh" #include "G4GDMLParser.hh" #include "G4UniformMagField.hh" #include "G4VisAttributes.hh" #include "G4GeometryManager.hh" #include "G4PhysicalVolumeStore.hh" #include "G4LogicalVolumeStore.hh" #include "G4SolidStore.hh" #include "G4FieldManager.hh" #include "G4TransportationManager.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... NOvADetectorConstruction::NOvADetectorConstruction(): G4VUserDetectorConstruction(), detectorMessenger(nullptr), magField(nullptr) { // create commands for interactive definition of the calorimeter detectorMessenger = new NOvADetectorMessenger(this); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... NOvADetectorConstruction::~NOvADetectorConstruction() { if (detectorMessenger) { delete detectorMessenger; detectorMessenger = nullptr; } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... G4VPhysicalVolume* NOvADetectorConstruction::Construct() { G4GeometryManager::GetInstance()->OpenGeometry(); G4PhysicalVolumeStore::GetInstance()->Clean(); G4LogicalVolumeStore::GetInstance()->Clean(); G4SolidStore::GetInstance()->Clean(); G4GDMLParser parser; parser.Read("fardet-12x12-28block-xtru-vacuum-stagger-pivoter.gdml", false); G4VPhysicalVolume* worldVol = parser.GetWorldVolume(); G4LogicalVolume* logicWorld = worldVol->GetLogicalVolume(); logicWorld->SetVisAttributes (G4VisAttributes::Invisible); return worldVol; } void NOvADetectorConstruction::SetMagField(G4double fieldValue) { //apply a global uniform magnetic field along Z axis G4FieldManager* fieldMgr = G4TransportationManager::GetTransportationManager()->GetFieldManager(); if(magField) delete magField; //delete the existing magn field if(fieldValue!=0.) { // create a new one if non nul magField = new G4UniformMagField(G4ThreeVector(0.,0.,fieldValue)); fieldMgr->SetDetectorField(magField); fieldMgr->CreateChordFinder(magField); std::cout << "\033[32mfieldValue!=0\033[0m\n"; } else { magField = 0; fieldMgr->SetDetectorField(magField); std::cout << "\033[32mfieldValue==0\033[0m\n"; } exit(1); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
[ "pierre.lasorak@gmail.com" ]
pierre.lasorak@gmail.com
ea9ce8f44ec172b0811a1dff1fe3a23a4d680eb5
f3c374f4cd2ae2bf08d3be43cc35ef0a7ec9215f
/1337/1337-A-Ichihime_and_Triangle.cpp
271938f1dbec3b4da47c11850e22afd7d4069c39
[]
no_license
dvyn01/Codeforces_Submissions_dvyn01
7d6a13e6b5a388d70e3e6e0de4c432a52c0344cd
76648305f3842f1f23060f5ad2ae23a7cba084a4
refs/heads/master
2022-11-27T23:21:28.869683
2020-08-09T17:46:16
2020-08-09T17:46:16
286,286,979
0
0
null
null
null
null
UTF-8
C++
false
false
1,807
cpp
#include <bits/stdc++.h> /* #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; */ using namespace std; #define ll long long #define ull unsigned long long #define f(a, b) for (ll i = a; i < b; i++) #define mod 1000000007 #define pb push_back #define vll vector<ll> #define pll vector<pair<ll, ll>> #define ld long double #define fr(a, b) for (ll j = a; j >= b; j--) #define fi(a, b) for (ll j = a; j < b; j++) #define fii(a, b) for (ll k = a; k < b; k++) // typedef tree<ll ,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update> ordered_set; template <class T> ostream &operator<<(ostream &os, vector<T> V) { os << "[ "; for (auto v : V) os << v << " "; os << "]"; return os; } template <class T> ostream &operator<<(ostream &os, set<T> S) { os << "{ "; for (auto s : S) os << s << " "; return os << "}"; } template <class L, class R> ostream &operator<<(ostream &os, pair<L, R> P) { return os << "(" << P.first << "," << P.second << ")"; } template <class L, class R> ostream &operator<<(ostream &os, map<L, R> M) { os << "{ "; for (auto m : M) os << "(" << m.first << ":" << m.second << ") "; return os << "}"; } const ll N = 100005; int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "rt", stdin); freopen("output.txt", "wt", stdout); #endif ios_base::sync_with_stdio(false); cin.tie(NULL); ll t; cin >> t; while (t--) { ll a, b, c, d; cin >> a >> b >> c >> d; ll x, y, z; x = b, y = c, z = c; cout << x << ' ' << y << ' ' << z << '\n'; } #ifndef ONLINE_JUDGE cout << "\nTime Elapsed : " << 1000 * (ld)clock() / (ld)CLOCKS_PER_SEC << " ms\n"; #endif return 0; }
[ "dvynshu.pndey@gmail.com" ]
dvynshu.pndey@gmail.com
4ca233781f22789bb65eb7664f155b47e0657d55
fd7b256a42018e54b9d0abf501ce8218f82545e0
/thrift/lib/cpp2/transport/rsocket/test/StreamingTest.cpp
c22f38a01a747b7f7a06b90924fd690312c3c425
[ "Apache-2.0" ]
permissive
Bustel/fbthrift
bf3d7fe53b4ff22beddff6662d723f5f651f06ad
8eb90399fb1b0235e1414ad451ba50f6391ba30f
refs/heads/master
2020-06-20T01:52:36.946055
2019-07-13T08:05:06
2019-07-13T08:10:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
25,589
cpp
/* * Copyright 2017-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <atomic> #include <chrono> #include <functional> #include <memory> #include <thread> #include <gtest/gtest.h> #include <folly/futures/Future.h> #include <folly/io/async/EventBase.h> #include <folly/io/async/ScopedEventBaseThread.h> #include <thrift/lib/cpp2/async/RSocketClientChannel.h> #include <thrift/lib/cpp2/async/RocketClientChannel.h> #include <thrift/lib/cpp2/transport/core/testutil/TAsyncSocketIntercepted.h> #include <thrift/lib/cpp2/transport/rsocket/test/util/TestServiceMock.h> #include <thrift/lib/cpp2/transport/rsocket/test/util/TestUtil.h> namespace apache { namespace thrift { namespace { void waitNoLeak(StreamServiceAsyncClient* client) { auto deadline = std::chrono::steady_clock::now() + std::chrono::milliseconds{100}; do { std::this_thread::yield(); if (client->sync_instanceCount() == 0) { // There is a race between decrementing the instance count vs // sending the error/complete message, so sleep a bit before returning /* sleep override */ std::this_thread::sleep_for(std::chrono::milliseconds(10)); return; } } while (std::chrono::steady_clock::now() < deadline); CHECK(false); } } // namespace struct StreamingTestParameters { StreamingTestParameters(bool rocketClient, bool rocketServer) : useRocketClient(rocketClient), useRocketServer(rocketServer) {} bool useRocketClient; bool useRocketServer; }; // Testing transport layers for their support to Streaming class StreamingTest : public TestSetup, public testing::WithParamInterface<StreamingTestParameters> { protected: void SetUp() override { handler_ = std::make_shared<StrictMock<TestServiceMock>>(); server_ = createServer( std::make_shared<ThriftServerAsyncProcessorFactory<TestServiceMock>>( handler_), port_); server_->enableRocketServer(GetParam().useRocketServer); } void TearDown() override { if (server_) { server_->cleanUp(); server_.reset(); handler_.reset(); } } void connectToServer( folly::Function<void(std::unique_ptr<StreamServiceAsyncClient>)> callMe, folly::Function<void()> onDetachable = nullptr, folly::Function<void(TAsyncSocketIntercepted&)> socketSetup = nullptr) { auto channel = connectToServer( port_, std::move(onDetachable), GetParam().useRocketClient, std::move(socketSetup)); callMe(std::make_unique<StreamServiceAsyncClient>(std::move(channel))); } void callSleep( StreamServiceAsyncClient* client, int32_t timeoutMs, int32_t sleepMs, bool withResponse) { auto cb = std::make_unique<MockCallback>(false, timeoutMs < sleepMs); RpcOptions opts; opts.setTimeout(std::chrono::milliseconds(timeoutMs)); opts.setQueueTimeout(std::chrono::milliseconds(5000)); if (withResponse) { client->sleepWithResponse(opts, std::move(cb), sleepMs); } else { client->sleepWithoutResponse(opts, std::move(cb), sleepMs); } } private: using TestSetup::connectToServer; protected: std::unique_ptr<ThriftServer> server_; std::shared_ptr<testing::StrictMock<TestServiceMock>> handler_; uint16_t port_; }; class BlockStreamingTest : public StreamingTest { protected: void SetUp() override { handler_ = std::make_shared<StrictMock<TestServiceMock>>(); server_ = createServer( std::make_shared<ThriftServerAsyncProcessorFactory<TestServiceMock>>( handler_), port_, 100); } }; TEST_P(StreamingTest, SimpleStream) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { auto result = client->sync_range(0, 10).via(&executor_); int j = 0; auto subscription = std::move(result).subscribe( [&j](auto i) mutable { EXPECT_EQ(j++, i); }, [](auto ex) { FAIL() << "Should not call onError: " << ex.what(); }); std::move(subscription).join(); EXPECT_EQ(10, j); }); } TEST_P(StreamingTest, FutureSimpleStream) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { auto futureRange = client->future_range(0, 10); auto stream = std::move(futureRange).get(); auto result = std::move(stream).via(&executor_); int j = 0; auto subscription = std::move(result).subscribe( [&j](auto i) mutable { EXPECT_EQ(j++, i); }, [](auto ex) { FAIL() << "Should not call onError: " << ex.what(); }); std::move(subscription).join(); EXPECT_EQ(10, j); }); } TEST_P(StreamingTest, CallbackSimpleStream) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { folly::Baton<> done; int j = 0; auto callback = [&done, &j, this](::apache::thrift::ClientReceiveState&& receiveState) { ASSERT_FALSE(receiveState.isException()); auto stream = receiveState.extractStream(); auto result = std::move(stream).via(&executor_); std::move(result) .subscribe( [&j](const std::unique_ptr<folly::IOBuf>) mutable { ++j; }, [](auto ex) { FAIL() << "Should not call onError: " << ex.what(); }, [&done]() { done.post(); }) .detach(); }; client->range(std::move(callback), 0, 10); EXPECT_TRUE(done.try_wait_for(std::chrono::milliseconds(100))); EXPECT_EQ(10, j); }); } TEST_P(StreamingTest, ChecksummingRequest) { auto corruptionParams = std::make_shared<TAsyncSocketIntercepted::Params>(); connectToServer( [this, corruptionParams](std::unique_ptr<StreamServiceAsyncClient> client) { enum class CorruptionType : int { NONE = 0, REQUESTS = 1, RESPONSES = 2, }; auto setCorruption = [&](CorruptionType corruptionType) { evbThread_.getEventBase()->runInEventBaseThreadAndWait([&]() { corruptionParams->corruptLastWriteByte_ = corruptionType == CorruptionType::REQUESTS; corruptionParams->corruptLastReadByteMinSize_ = 30; corruptionParams->corruptLastReadByte_ = corruptionType == CorruptionType::RESPONSES; }); }; static const int kSize = 32 << 10; std::string asString(kSize, 'a'); std::unique_ptr<folly::IOBuf> payload = folly::IOBuf::copyBuffer(asString); for (CorruptionType testType : {CorruptionType::NONE, CorruptionType::REQUESTS, CorruptionType::RESPONSES}) { setCorruption(testType); bool didThrow = false; try { auto futureRet = client->future_requestWithBlob( RpcOptions().setEnableChecksum(true), *payload); auto stream = std::move(futureRet).get(); auto result = std::move(stream).via(&executor_); auto subscription = std::move(result).subscribe( [](auto) { FAIL() << "Should be empty "; }, [](auto ex) { FAIL() << "Should not call onError: " << ex.what(); }); std::move(subscription).join(); } catch (TApplicationException& ex) { EXPECT_EQ(TApplicationException::CHECKSUM_MISMATCH, ex.getType()); didThrow = true; } EXPECT_EQ(testType != CorruptionType::NONE, didThrow); } setCorruption(CorruptionType::NONE); }, nullptr, [=](TAsyncSocketIntercepted& sock) { sock.setParams(corruptionParams); }); } TEST_P(StreamingTest, DefaultStreamImplementation) { connectToServer([&](std::unique_ptr<StreamServiceAsyncClient> client) { EXPECT_THROW( toFlowable(client->sync_nonImplementedStream("test").via(&executor_)), apache::thrift::TApplicationException); }); } TEST_P(StreamingTest, ReturnsNullptr) { // User function should return a Stream, but it returns a nullptr. connectToServer([&](std::unique_ptr<StreamServiceAsyncClient> client) { bool success = false; client->sync_returnNullptr() .via(&executor_) .subscribe( [](auto) { FAIL() << "No value was expected"; }, [](auto ex) { FAIL() << "No error was expected: " << ex.what(); }, [&success]() { success = true; }) .join(); EXPECT_TRUE(success); }); } TEST_P(StreamingTest, ThrowsWithResponse) { connectToServer([&](std::unique_ptr<StreamServiceAsyncClient> client) { EXPECT_THROW(client->sync_throwError(), Error); }); } TEST_P(StreamingTest, LifeTimeTesting) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { CHECK_EQ(0, client->sync_instanceCount()); { // Never subscribe auto result = client->sync_leakCheck(0, 100); EXPECT_EQ(1, client->sync_instanceCount()); } waitNoLeak(client.get()); { // Never subscribe to the flowable auto result = toFlowable((client->sync_leakCheck(0, 100).stream).via(&executor_)); EXPECT_EQ(1, client->sync_instanceCount()); } waitNoLeak(client.get()); { // Drop the result stream client->sync_leakCheck(0, 100); waitNoLeak(client.get()); } { // Regular usage auto subscriber = std::make_shared<TestSubscriber<int32_t>>(0); { auto result = toFlowable( std::move(client->sync_leakCheck(0, 100).stream).via(&executor_)); result->subscribe(subscriber); EXPECT_EQ(1, client->sync_instanceCount()); } subscriber->request(100); subscriber->awaitTerminalEvent(); EXPECT_EQ(0, client->sync_instanceCount()); // no leak! } { // Early cancel auto subscriber = std::make_shared<TestSubscriber<int32_t>>(0); { auto result = toFlowable( std::move(client->sync_leakCheck(0, 100).stream).via(&executor_)); result->subscribe(subscriber); EXPECT_EQ(1, client->sync_instanceCount()); } EXPECT_EQ(1, client->sync_instanceCount()); subscriber->cancel(); waitNoLeak(client.get()); } { // Early cancel - no Yarpl auto result = client->sync_leakCheck(0, 100); EXPECT_EQ(1, client->sync_instanceCount()); auto subscription = std::move(result.stream).via(&executor_).subscribe([](auto) {}, 0); subscription.cancel(); std::move(subscription).join(); // Check that the cancellation has reached to the server safely waitNoLeak(client.get()); } { // Always alive { auto subscriber = std::make_shared<TestSubscriber<int32_t>>(0); { auto result = toFlowable( std::move(client->sync_leakCheck(0, 100).stream).via(&executor_)); result->subscribe(subscriber); EXPECT_EQ(1, client->sync_instanceCount()); } EXPECT_EQ(1, client->sync_instanceCount()); } // Subscriber is still alive! EXPECT_EQ(1, client->sync_instanceCount()); } }); } TEST_P(StreamingTest, RequestTimeout) { bool withResponse = false; auto test = [this, &withResponse](std::unique_ptr<StreamServiceAsyncClient> client) { // This test focuses on timeout for the initial response. We will have // another test for timeout of each onNext calls. callSleep(client.get(), 1, 100, withResponse); callSleep(client.get(), 100, 0, withResponse); callSleep(client.get(), 1, 100, withResponse); callSleep(client.get(), 100, 0, withResponse); callSleep(client.get(), 2000, 500, withResponse); /* sleep override */ std::this_thread::sleep_for(std::chrono::milliseconds(1000)); callSleep(client.get(), 100, 1000, withResponse); callSleep(client.get(), 200, 0, withResponse); /* Sleep to give time for all callbacks to be completed */ /* sleep override */ std::this_thread::sleep_for(std::chrono::milliseconds(2000)); }; connectToServer(test); EXPECT_EQ(3, observer_->taskTimeout_); EXPECT_EQ(0, observer_->queueTimeout_); withResponse = true; connectToServer(test); EXPECT_EQ(6, observer_->taskTimeout_); EXPECT_EQ(0, observer_->queueTimeout_); } TEST_P(StreamingTest, OnDetachable) { folly::Promise<folly::Unit> detachablePromise; auto detachableFuture = detachablePromise.getSemiFuture(); connectToServer( [&](std::unique_ptr<StreamServiceAsyncClient> client) { const auto timeout = std::chrono::milliseconds{100}; auto stream = client->sync_range(0, 10); std::this_thread::sleep_for(timeout); EXPECT_FALSE(detachableFuture.isReady()); folly::Baton<> done; toFlowable(std::move(stream).via(&executor_)) ->subscribe( [](int) {}, [](auto ex) { FAIL() << "Should not call onError: " << ex; }, [&done]() { done.post(); }); EXPECT_TRUE(done.try_wait_for(timeout)); EXPECT_TRUE(std::move(detachableFuture).wait(timeout)); }, [promise = std::move(detachablePromise)]() mutable { promise.setValue(folly::unit); }); } TEST_P(StreamingTest, ChunkTimeout) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { RpcOptions options; options.setChunkTimeout(std::chrono::milliseconds{10}); auto result = client->sync_streamNever(options); bool failed{false}; auto subscription = std::move(result.stream) .via(&executor_) .subscribe( [](auto) { FAIL() << "Should have failed."; }, [&failed](auto ew) { ew.with_exception([&](TTransportException& tae) { CHECK_EQ( TTransportException::TTransportExceptionType::TIMED_OUT, tae.getType()); failed = true; }); }, []() { FAIL() << "onError should be called"; }); std::move(subscription).join(); EXPECT_TRUE(failed); }); } TEST_P(StreamingTest, UserCantBlockIOThread) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { RpcOptions options; options.setChunkTimeout(std::chrono::milliseconds{10}); auto stream = client->sync_range(options, 0, 10); bool failed{true}; int count = 0; auto subscription = std::move(stream) .via(&executor_) .subscribe( [&count](auto) { // sleep, so that client will be late! /* sleep override */ std::this_thread::sleep_for(std::chrono::milliseconds(20)); ++count; }, [](auto) { FAIL() << "no error was expected"; }, [&failed]() { failed = false; }); std::move(subscription).join(); EXPECT_FALSE(failed); // As there is no flow control, all of the messages will be sent from server // to client without waiting the user thread. EXPECT_EQ(10, count); }); } TEST_P(StreamingTest, TwoRequestsOneTimesOut) { folly::Promise<folly::Unit> detachablePromise; auto detachableFuture = detachablePromise.getSemiFuture(); connectToServer( [&, this](std::unique_ptr<StreamServiceAsyncClient> client) { const auto waitForMs = std::chrono::milliseconds{100}; auto stream = client->sync_registerToMessages(); int32_t last = 0; folly::Baton<> baton; auto subscription = std::move(stream) .via(&executor_) .subscribe([&last, &baton](int32_t next) { last = next; baton.post(); }); client->sync_sendMessage(1, false, false); ASSERT_TRUE(baton.try_wait_for(std::chrono::milliseconds(100))); baton.reset(); CHECK_EQ(last, 1); // timeout a single request callSleep(client.get(), 1, 100, true); // Still there is one stream in the client side std::this_thread::sleep_for(waitForMs); EXPECT_FALSE(detachableFuture.isReady()); client->sync_sendMessage(2, true, false); ASSERT_TRUE(baton.try_wait_for(waitForMs)); baton.reset(); CHECK_EQ(last, 2); std::move(subscription).join(); // All streams are cleaned up in the client side EXPECT_TRUE(std::move(detachableFuture).wait(waitForMs)); }, [promise = std::move(detachablePromise)]() mutable { promise.setValue(folly::unit); }); } TEST_P(StreamingTest, StreamStarvationNoRequest) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { server_->setStreamExpireTime(std::chrono::milliseconds(10)); auto result = client->sync_leakCheck(0, 10); EXPECT_EQ(1, client->sync_instanceCount()); bool failed{false}; int count = 0; auto subscription = std::move(result.stream) .via(&executor_) .subscribe( [&count](auto) { ++count; }, [&failed](auto) mutable { failed = true; }, // request no item - starvation 0); std::move(subscription).detach(); waitNoLeak(client.get()); EXPECT_TRUE(failed); EXPECT_EQ(0, count); }); } TEST_P(StreamingTest, StreamStarvationNoSubscribe) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { server_->setStreamExpireTime(std::chrono::milliseconds(10)); auto result = client->sync_leakCheck(0, 10); EXPECT_EQ(1, client->sync_instanceCount()); // Did not subscribe at all waitNoLeak(client.get()); }); } TEST_P(StreamingTest, StreamThrowsKnownException) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { bool thrown = false; auto stream = client->sync_streamThrows(1); auto subscription = std::move(stream) .via(&executor_) .subscribe( [](auto) {}, [&thrown](folly::exception_wrapper ew) { thrown = true; EXPECT_TRUE(ew.is_compatible_with<FirstEx>()); EXPECT_TRUE(ew.with_exception([](FirstEx& ex) { EXPECT_EQ(1, ex.get_errCode()); EXPECT_STREQ("FirstEx", ex.get_errMsg().c_str()); })); }); std::move(subscription).join(); EXPECT_TRUE(thrown); }); } TEST_P(StreamingTest, StreamThrowsNonspecifiedException) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { bool thrown = false; auto stream = client->sync_streamThrows(2); auto subscription = std::move(stream) .via(&executor_) .subscribe( [](auto) {}, [&thrown](folly::exception_wrapper ew) { thrown = true; EXPECT_TRUE(ew.is_compatible_with<TApplicationException>()); EXPECT_TRUE(ew.with_exception([](TApplicationException& ex) { EXPECT_STREQ( "testutil::testservice::SecondEx: ::testutil::testservice::SecondEx", ex.what()); })); }); std::move(subscription).join(); EXPECT_TRUE(thrown); }); } TEST_P(StreamingTest, StreamThrowsRuntimeError) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { bool thrown = false; auto stream = client->sync_streamThrows(3); auto subscription = std::move(stream) .via(&executor_) .subscribe( [](auto) {}, [&thrown](folly::exception_wrapper ew) { thrown = true; EXPECT_TRUE(ew.is_compatible_with<TApplicationException>()); EXPECT_TRUE(ew.with_exception([](TApplicationException& ex) { EXPECT_STREQ("std::runtime_error: random error", ex.what()); })); }); std::move(subscription).join(); EXPECT_TRUE(thrown); }); } TEST_P(StreamingTest, StreamFunctionThrowsImmediately) { connectToServer([](std::unique_ptr<StreamServiceAsyncClient> client) { bool thrown = false; try { client->sync_streamThrows(0); } catch (const SecondEx& ex) { thrown = true; } EXPECT_TRUE(thrown); }); } TEST_P(StreamingTest, ResponseAndStreamThrowsKnownException) { connectToServer([this](std::unique_ptr<StreamServiceAsyncClient> client) { bool thrown = false; auto responseAndStream = client->sync_responseAndStreamThrows(1); auto stream = std::move(responseAndStream.stream); auto subscription = std::move(stream) .via(&executor_) .subscribe( [](auto) {}, [&thrown](folly::exception_wrapper ew) { thrown = true; EXPECT_TRUE(ew.is_compatible_with<FirstEx>()); EXPECT_TRUE(ew.with_exception([](FirstEx& ex) { EXPECT_EQ(1, ex.get_errCode()); EXPECT_STREQ("FirstEx", ex.get_errMsg().c_str()); })); }); std::move(subscription).join(); EXPECT_TRUE(thrown); }); } TEST_P(StreamingTest, ResponseAndStreamFunctionThrowsImmediately) { connectToServer([](std::unique_ptr<StreamServiceAsyncClient> client) { bool thrown = false; try { client->sync_responseAndStreamThrows(0); } catch (const SecondEx& ex) { thrown = true; } EXPECT_TRUE(thrown); }); } TEST_P(StreamingTest, DetachAndAttachEventBase) { folly::EventBase mainEventBase; auto socket = TAsyncSocket::UniquePtr(new TAsyncSocket(&mainEventBase, "::1", port_)); auto channel = [&]() -> std::shared_ptr<ClientChannel> { if (GetParam().useRocketClient) { return RocketClientChannel::newChannel(std::move(socket)); } return RSocketClientChannel::newChannel(std::move(socket)); }(); folly::Promise<folly::Unit> detachablePromise; auto detachableFuture = detachablePromise.getSemiFuture(); channel->setOnDetachable([promise = std::move(detachablePromise), channelPtr = channel.get()]() mutable { // Only set the promise on the first onDetachable() call if (auto* c = std::exchange(channelPtr, nullptr)) { ASSERT_TRUE(c->isDetachable()); c->detachEventBase(); promise.setValue(folly::unit); } }); { // Establish a stream via mainEventBase and consume it until completion StreamServiceAsyncClient client{channel}; auto stream = client.sync_range(0, 10); EXPECT_FALSE(detachableFuture.isReady()); std::move(stream) .via(&executor_) .subscribe( [](auto) {}, [](auto ex) { FAIL() << "Unexpected call to onError: " << ex; }, [] {}) .futureJoin() .waitVia(&mainEventBase); } folly::ScopedEventBaseThread anotherEventBase; auto* const evb = anotherEventBase.getEventBase(); auto keepAlive = channel; std::move(detachableFuture) .via(evb) .thenValue([evb, channel = std::move(channel)](auto&&) mutable { // Attach channel to a different EventBase and establish a stream EXPECT_TRUE(channel->isDetachable()); channel->attachEventBase(evb); StreamServiceAsyncClient client{std::move(channel)}; return client.semifuture_range(0, 10); }) .via(evb) .thenValue([ex = &executor_](auto&& stream) { return std::move(stream) .via(ex) .subscribe( [](auto) {}, [](auto ex) { FAIL() << "Unexpected call to onError: " << ex; }, [] {}) .futureJoin(); }) .via(evb) .ensure([keepAlive = std::move(keepAlive)] {}) .via(&mainEventBase) .waitVia(&mainEventBase); } TEST_P(BlockStreamingTest, StreamBlockTaskQueue) { connectToServer([](std::unique_ptr<StreamServiceAsyncClient> client) { std::vector<apache::thrift::SemiStream<int32_t>> streams; for (int ind = 0; ind < 1000; ind++) { streams.push_back(client->sync_slowCancellation()); } }); } INSTANTIATE_TEST_CASE_P( StreamingTests, StreamingTest, testing::Values( StreamingTestParameters{false, false}, StreamingTestParameters{false, true}, StreamingTestParameters{true, true})); INSTANTIATE_TEST_CASE_P( BlockingStreamingTests, BlockStreamingTest, testing::Values( StreamingTestParameters{false, false}, StreamingTestParameters{false, true}, StreamingTestParameters{true, true})); } // namespace thrift } // namespace apache
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
eeb9c3cc98e9faa3315f1932e709e10dd519e454
75952c75cf062910c9ced72ff22d7a3d5ea1513d
/c++/glfw/window/example.cpp
6f7d516acadb2c92345622c678ce9a57987ab66c
[]
no_license
GabrieleMaurina/workspace
f01a412f001f63c8e41dc8e6d21941be83bf404e
37d98a99c83d36c07c51990c5b6ec2a8acaac33e
refs/heads/master
2022-09-26T16:48:49.169262
2022-08-30T20:09:18
2022-08-30T20:09:18
155,683,393
1
0
null
2021-02-26T14:42:44
2018-11-01T08:16:45
Python
UTF-8
C++
false
false
469
cpp
#include <GLFW/glfw3.h> int main(void) { GLFWwindow* window; if (!glfwInit()) return -1; window = glfwCreateWindow(640, 480, "Hello World", NULL, NULL); if (!window){ glfwTerminate(); return -1; } glfwMakeContextCurrent(window); while (!glfwWindowShouldClose(window)){ glClear(GL_COLOR_BUFFER_BIT); glfwSwapBuffers(window); glfwPollEvents(); } glfwTerminate(); return 0; }
[ "gabrielemaurina95@gmail.com" ]
gabrielemaurina95@gmail.com
6038fb4b10415595592d058c2049361dae8c0435
7ea6c776b6bd8054bae6ec2dbba96717c3bec471
/smc/src/core/global_game.h
0d7d8f67a0845d9580eb0c5865c7b8da8c872b68
[]
no_license
sKabYY/SMC
e8017bde855166432a22ab91d9483d2d16e36d97
6af20fea76e499858f35c1d9ffb6b981c82b59fc
refs/heads/master
2021-01-18T08:42:29.977070
2010-06-05T07:51:57
2010-06-05T07:51:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,344
h
/*************************************************************************** * global_game.h - global header * * Copyright (C) 2003 - 2010 Florian Richter ***************************************************************************/ /* 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. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef SMC_GLOBAL_GAME_H #define SMC_GLOBAL_GAME_H namespace SMC { // For non-Windows platforms #ifdef HAVE_CONFIG_H #include "config.h" #endif /* *** *** *** *** *** *** *** Secret Maryo ! *** *** *** *** *** *** *** *** *** *** */ // Caption #define CAPTION "Secret Maryo Chronicles" // Version static const float smc_version = 2.0f; /* *** *** *** *** *** *** *** Object Direction *** *** *** *** *** *** *** *** *** *** */ enum ObjectDirection { // undefined DIR_UNDEFINED = -1, // default DIR_LEFT = 0, DIR_RIGHT = 1, DIR_UP = 2, DIR_DOWN = 3, DIR_TOP = 2, DIR_BOTTOM = 3, // multi DIR_TOP_LEFT = 4, DIR_TOP_RIGHT = 5, DIR_BOTTOM_LEFT = 6, DIR_BOTTOM_RIGHT = 7, DIR_LEFT_TOP = 21, DIR_LEFT_BOTTOM = 22, DIR_RIGHT_TOP = 23, DIR_RIGHT_BOTTOM = 24, DIR_UP_LEFT = 4, DIR_UP_RIGHT = 5, DIR_DOWN_LEFT = 6, DIR_DOWN_RIGHT = 7, DIR_LEFT_UP = 21, DIR_LEFT_DOWN = 22, DIR_RIGHT_UP = 23, DIR_RIGHT_DOWN = 24, // extra DIR_HORIZONTAL = 10, // left or right DIR_VERTICAL = 11, // up or down DIR_ALL = 20, // all directions // special DIR_FIRST = 100, // Overworld first waypoint DIR_LAST = 101 // Overworld last waypoint }; /* *** *** *** *** *** *** *** Default Color *** *** *** *** *** *** *** *** *** *** */ enum DefaultColor { COL_DEFAULT = -1, COL_WHITE = 0, COL_BLACK = 1, COL_RED = 2, COL_ORANGE = 3, COL_YELLOW = 4, COL_GREEN = 5, COL_BLUE = 6, COL_BROWN = 7, COL_GREY = 8 }; /* *** *** *** *** *** *** *** Game Mode *** *** *** *** *** *** *** *** *** *** */ enum GameMode { MODE_NOTHING = 0, MODE_LEVEL = 1, MODE_OVERWORLD = 2, MODE_MENU = 3, MODE_LEVEL_SETTINGS = 4 }; enum GameModeType { MODE_TYPE_DEFAULT = 0, MODE_TYPE_LEVEL_CUSTOM = 1, MODE_TYPE_LEVEL_CUSTOM_EDITOR = 2 }; /* *** *** *** *** *** *** *** Game Action *** *** *** *** *** *** *** *** *** *** */ enum GameAction { GA_NONE = 0, GA_DOWNGRADE_PLAYER = 1, GA_ENTER_MENU = 2, GA_ENTER_MENU_CREDITS = 3, GA_ENTER_WORLD = 4, GA_ENTER_LEVEL = 5, GA_ACTIVATE_LEVEL_EXIT = 6, GA_ENTER_LEVEL_SETTINGS = 7 }; /* *** *** *** *** *** Level draw type *** *** *** *** *** *** *** *** *** *** *** *** */ enum LevelDrawType { LVL_DRAW = 0, // only draw LVL_DRAW_NO_BG = 1, // only draws and without background gradient and image LVL_DRAW_BG = 2 // only draws the background gradient and image }; /* *** *** *** *** *** Level land type *** *** *** *** *** *** *** *** *** *** *** *** */ enum LevelLandType { LLT_UNDEFINED = 0, LLT_GREEN = 1, LLT_JUNGLE = 2, LLT_ICE = 3, LLT_SNOW = 4, LLT_WATER = 5, LLT_CANDY = 6, LLT_DESERT = 7, LLT_SAND = 8, LLT_CASTLE = 9, LLT_UNDERGROUND = 10, LLT_CRYSTAL = 11, LLT_GHOST = 12, LLT_MUSHROOM = 13, LLT_SKY = 14, LLT_PLASTIC = 15, LLT_LAST = 16 }; /* *** *** *** *** *** *** *** Paths *** *** *** *** *** *** *** *** *** *** */ #ifdef __APPLE__ // always undefine data path to allow dynamic datapath detection #ifdef DATA_DIR #undef DATA_DIR #endif #define DATA_DIR "." #else #ifndef DATA_DIR #define DATA_DIR "data" #endif #endif // Core #define GAME_OVERWORLD_DIR "world" #define GAME_LEVEL_DIR "levels" #define GAME_PIXMAPS_DIR "pixmaps" #define GAME_SOUNDS_DIR "sounds" #define GAME_MUSIC_DIR "music" #define GAME_EDITOR_DIR "editor" #define GAME_ICON_DIR "icon" #define GAME_SCHEMA_DIR "schema" #define GAME_TRANSLATION_DIR "translations" // GUI #define GUI_SCHEME_DIR "gui/schemes" #define GUI_IMAGESET_DIR "gui/imagesets" #define GUI_FONT_DIR "gui/font" #define GUI_LAYOUT_DIR "gui/layout" #define GUI_LOOKNFEEL_DIR "gui/looknfeel" // User #define USER_SAVEGAME_DIR "savegames" #define USER_SCREENSHOT_DIR "screenshots" #define USER_LEVEL_DIR "levels" #define USER_WORLD_DIR "worlds" #define USER_IMGCACHE_DIR "cache" /* *** *** *** *** *** *** *** Pre-declare *** *** *** *** *** *** *** *** *** *** */ // Allows use of pointers in header files without including individual headers // which decreases dependencies between files /* *** speedfactor framerate *** */ static const int speedfactor_fps = 32; /* *** level engine version *** */ static const int level_engine_version = 39; /* *** world engine version *** */ static const int world_engine_version = 3; /* *** Sprite Types *** */ enum SpriteType { TYPE_UNDEFINED = 0, // global TYPE_SPRITE = 1, TYPE_PASSIVE = 44, TYPE_FRONT_PASSIVE = 45, TYPE_MASSIVE = 46, TYPE_HALFMASSIVE = 5, TYPE_CLIMBABLE = 47, TYPE_ENEMY = 2, TYPE_PLAYER = 3, TYPE_ACTIVE_SPRITE = 4, // game TYPE_MOUSECURSOR = 100, // overworld TYPE_OW_WAYPOINT = 55, TYPE_OW_LINE_START = 57, TYPE_OW_LINE_END = 58, // level TYPE_LEVEL_EXIT = 18, TYPE_LEVEL_ENTRY = 54, TYPE_ENEMY_STOPPER = 20, TYPE_BONUS_BOX = 26, TYPE_SPIN_BOX = 27, TYPE_TEXT_BOX = 59, TYPE_MOVING_PLATFORM = 38, // enemy TYPE_FURBALL = 10, TYPE_FURBALL_BOSS = 62, TYPE_TURTLE = 19, TYPE_TURTLE_BOSS = 56, TYPE_FLYON = 29, TYPE_ROKKO = 30, TYPE_KRUSH = 36, TYPE_THROMP = 41, TYPE_EATO = 42, TYPE_GEE = 43, TYPE_SPIKA = 31, TYPE_STATIC_ENEMY = 50, TYPE_SPIKEBALL = 64, // items TYPE_POWERUP = 23, TYPE_MUSHROOM_DEFAULT = 25, TYPE_MUSHROOM_LIVE_1 = 35, TYPE_MUSHROOM_POISON = 49, TYPE_MUSHROOM_BLUE = 51, TYPE_MUSHROOM_GHOST = 52, TYPE_FIREPLANT = 24, TYPE_JUMPING_GOLDPIECE = 22, TYPE_FALLING_GOLDPIECE = 48, TYPE_GOLDPIECE = 8, TYPE_MOON = 37, TYPE_STAR = 39, // special TYPE_BALL = 28, TYPE_SOUND = 60, TYPE_ANIMATION = 61, TYPE_PARTICLE_EMITTER = 65, TYPE_PATH = 63, // HUD TYPE_HUD_POINTS = 12, TYPE_HUD_TIME = 13, TYPE_HUD_DEBUG = 14, TYPE_HUD_LIFE = 15, TYPE_HUD_GOLD = 16, TYPE_HUD_BACKGROUND = 17, TYPE_HUD_ITEMBOX = 32 }; /* *** Massive Types *** */ enum MassiveType { MASS_PASSIVE = 0, MASS_MASSIVE = 1, MASS_HALFMASSIVE = 2, MASS_CLIMBABLE = 3 }; /* *** Ground Types *** */ enum GroundType { GROUND_NORMAL = 0, GROUND_EARTH = 1, GROUND_ICE = 2, GROUND_SAND = 3, GROUND_STONE = 4, GROUND_PLASTIC = 5 }; /* *** Array Types *** */ enum ArrayType { ARRAY_UNDEFINED = 0, // normal blocking object (level default) ARRAY_MASSIVE = 1, // normal passive object ARRAY_PASSIVE = 2, // enemy ARRAY_ENEMY = 3, // special object ARRAY_ACTIVE = 4, // hud ARRAY_HUD = 5, // animation ARRAY_ANIM = 6, // player ARRAY_PLAYER = 7 }; /* *** *** *** *** *** *** *** collision validation types *** *** *** *** *** *** *** *** *** *** */ enum Col_Valid_Type { // not valid COL_VTYPE_NOT_VALID = 0, // internal COL_VTYPE_INTERNAL = 1, // blocking COL_VTYPE_BLOCKING = 2, // no validation possible for a sub-function COL_VTYPE_NOT_POSSIBLE = 3 }; /* *** Input identifier *** */ enum input_identifier { INP_UNKNOWN = 0, INP_UP = 1, INP_DOWN = 2, INP_LEFT = 3, INP_RIGHT = 4, INP_JUMP = 5, INP_SHOOT = 6, INP_ACTION = 7, // Request Item INP_ITEM = 8, // General Exit/Leave/Cancel INP_EXIT = 9 }; /* *** Ball Effect types *** */ enum ball_effect { FIREBALL_DEFAULT = 1, FIREBALL_EXPLOSION = 2, ICEBALL_DEFAULT = 3, ICEBALL_EXPLOSION = 4 }; /* *** Performance timer types *** */ enum performance_timer_type { // update PERF_UPDATE_PROCESS_INPUT = 0, PERF_UPDATE_LEVEL = 1, PERF_UPDATE_LEVEL_EDITOR = 2, PERF_UPDATE_HUD = 3, PERF_UPDATE_PLAYER = 4, PERF_UPDATE_PLAYER_COLLISIONS = 23, PERF_UPDATE_LATE_LEVEL = 22, PERF_UPDATE_LEVEL_COLLISIONS = 5, PERF_UPDATE_CAMERA = 6, // update overworld PERF_UPDATE_OVERWORLD = 17, // update menu PERF_UPDATE_MENU = 18, // update level settings PERF_UPDATE_LEVEL_SETTINGS = 19, // draw level PERF_DRAW_LEVEL_LAYER1 = 7, PERF_DRAW_LEVEL_PLAYER = 8, PERF_DRAW_LEVEL_LAYER2 = 9, PERF_DRAW_LEVEL_HUD = 10, PERF_DRAW_LEVEL_EDITOR = 11, // draw overworld PERF_DRAW_OVERWORLD = 16, // draw menu PERF_DRAW_MENU = 14, // draw level settings PERF_DRAW_LEVEL_SETTINGS = 15, // draw PERF_DRAW_MOUSE = 12, // rendering PERF_RENDER_GAME = 13, PERF_RENDER_GUI = 20, PERF_RENDER_BUFFER = 21 }; /* *** Classes *** */ class cCamera; class cCircle_Request; class cEditor_Object_Settings_Item; class cGL_Surface; class cGradient_Request; class cImage_settings_data; class cLayer_Line_Point_Start; class cLevel; class cLine_collision; class cLine_Request; class cLevel_Settings; class cMenu_Base; class cObjectCollisionType; class cObjectCollision; class cOverworld; class cOverworld_Player; class cParticle_Emitter; class cPath; class cPath_State; class cRect_Request; class cSave_Level_Object; class cSaved_Texture; class cSize_Float; class cSize_Int; class cSprite_Manager; class cSurface_Request; class cSprite; class cWorld_Sprite_Manager; class Color; class GL_rect; class GL_line; class GL_point; /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */ } // namespace SMC #endif
[ "fluxey@gmail.com" ]
fluxey@gmail.com
b4f6d4846bcd3e966a3c2331f81c5d0604a691df
0435915721a0b68591a5ddac4b409d78ba190977
/DesignPatterns/Behavior/Behavior/Iterator.cpp
c36d298fb2d7d73ecf1a253e939602e51e6c6a43
[]
no_license
PugnaHAN/C-Primer
7e381b36c046fc1d178d28633b1cc19df68c06d8
39058fa5b01b6808e60c2a648ed7ff00b2f3a94f
refs/heads/master
2021-06-11T00:58:41.233001
2016-12-14T01:56:31
2016-12-14T01:56:31
72,555,451
1
0
null
null
null
null
UTF-8
C++
false
false
554
cpp
#include "Iterator.h" using namespace std; bool operator==(const Stack &l, const Stack &r) { StackIter itl(l), itr(r); for (; itl(); ++itl, ++itr) if (*itl != *itr) break; return !itl() && !itr(); } void testIterator() { Stack s1; for (int i = 0; i < 5; ++i) s1.push(i); Stack s2(s1), s3(s1), s4(s1), s5(s1); s3.pop(); s5.pop(); s4.push(2); s5.push(9); cout << "1 == 2 is " << (s1 == s2) << endl; cout << "1 == 3 is " << (s1 == s3) << endl; cout << "1 == 4 is " << (s1 == s4) << endl; cout << "1 == 5 is " << (s1 == s5) << endl; }
[ "justin_victory@hotmail.com" ]
justin_victory@hotmail.com
5d5b5bc374a0088087c0b6813db6769bdb936e82
d5d189fff2e027f7aa38ecde58952bcb4b636d47
/include/ocr/test_ocr_detect_front.hpp
9c15d5e18d3d55578792b293bec8561dd88847f1
[]
no_license
wyc2015fq/cstd
5979a3c26d5c7f00aadda440b04176dcf043e7dc
664bcb4680a32811767f5541a8aae1551d621598
refs/heads/master
2020-05-15T20:22:19.209717
2019-04-20T16:08:03
2019-04-20T16:08:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,282
hpp
#include "utime.h" #include "ocr/ocr_detect_front.hpp" #define CAS_PATH "E:/OCR_Line/bin/model/" int test_ocr_detect_front() { char* fn = NULL; vstr_t sv[1] = { 0 }; int i, n; //buf_t bf[1] = {0}; sys_chdir("D:/pub/bin/adaboost/lobo"); sys_chdir("D:/pub/faceplusplus/gender/out"); sys_chdir("E:/OCR_Line/adaboost"); sys_chdir(""); //vstr_load("../backend_2.txt", sv); char* txtlist = "E:/data/ew_id/backend_2.txt"; txtlist = "E:/OCR_Line/bin/front/list.txt"; txtlist = "E:/data/ew_id/listjpgf.txt"; vstr_load(txtlist, sv); IdCardFrontDetecter idcard_front_detecter; if (1) { fn = "haar_LUT_nesting_cas.dat"; fn = "cas.dat"; fn = "haar_gen_cas.dat"; fn = "gender_cas.dat"; fn = "idcard_cas.dat"; fn = "idcard_cas.dat"; fn = CAS_PATH"idcard_front_cas_20180830.txt"; fn = CAS_PATH"idcard_front_cas_20190330.txt"; //ca->w = 100, ca->h = 100; //ca->w = 30, ca->h = 20; // idcard_back_20190326 idcard_front_detecter.init(fn); } i = 0; //i = 88; for (; i<sv->n; ++i) { if (SHOW) { if (!strstr((char*)sv->v[i].s, "1276400_1152736.jpg")) { continue; } } const char* fnext = GetFileNameExt((char*)sv->v[i].s); Mat im = imread((char*)sv->v[i].s, cv::IMREAD_COLOR); if (im.rows < 400) { continue; } //imshow2("im1", im); if (im.rows>800) { im = resize(im, 800. / im.rows); } n = 0; std::vector<RotatedRect> rr; utime_start(_start_time); for (int i = 0; i < 4; ++i) { Mat im1; rotate90(im, im1, i); n += idcard_front_detecter.run(im1, rr, i); //n = cvFaceDetect(ca, gry, NULL, 0.5, NULL, out, countof(out)); } double time1 = utime_elapsed(_start_time); //printf("utime %lf\n", }; //imshow("im1", im); //drawRotatedRects(im, idcard_front_detecter.lines_ok, 1); drawRotatedRects(im, rr, 2); printf("%d, %d %lf %s\n", i, n, time1, fnext); int j; for (j = 0; j<n; ++j) { //imdraw_xrects(im, out, n); //imdraw_rect(im, 0, NULL, rc, 0, _RGB(255, 0, 0), 1); //Rect rc = idcard_front_detecter.rect[j]; //rectangle(im, rc, CV_RGB(255, 0, 0), 1, 8, 0); } if (SHOW) { imshow("im", im); waitKey(-1); } if (1) { char buf[256]; _snprintf(buf, 256, "E:/OCR_Line/front/out/%s", fnext); imwrite(buf, im); } } //bffree(bf); vstr_free(sv); return 0; }
[ "31720406@qq.com" ]
31720406@qq.com
43f5a3372342a6d4c9d50d3fcb7009d3b4ad266f
2bc835b044f306fca1affd1c61b8650b06751756
/mshtml/src/site/util/domcoll.cxx
4ed764059da78fdcf48605be184274ef7bb63e9c
[]
no_license
KernelPanic-OpenSource/Win2K3_NT_inetcore
bbb2354d95a51a75ce2dfd67b18cfb6b21c94939
75f614d008bfce1ea71e4a727205f46b0de8e1c3
refs/heads/master
2023-04-04T02:55:25.139618
2021-04-14T05:25:01
2021-04-14T05:25:01
357,780,123
1
0
null
null
null
null
UTF-8
C++
false
false
18,109
cxx
#include "headers.hxx" #pragma MARK_DATA(__FILE__) #pragma MARK_CODE(__FILE__) #pragma MARK_CONST(__FILE__) #ifndef X_DOM_HXX_ #define X_DOM_HXX_ #include "dom.hxx" #endif #ifndef X_COLLBASE_HXX_ #define X_COLLBASE_HXX_ #include "collbase.hxx" #endif #ifndef X_DOMCOLL_HXX_ #define X_DOMCOLL_HXX_ #include "domcoll.hxx" #endif #ifndef X_TPOINTER_HXX_ #define X_TPOINTER_HXX_ #include "tpointer.hxx" #endif #ifndef X_QI_IMPL_H_ #define X_QI_IMPL_H_ #include "qi_impl.h" #endif #ifndef X_EOBJECT_HXX_ #define X_EOBJECT_HXX_ #include "eobject.hxx" #endif #define _cxx_ #include "domcoll.hdl" MtDefine(CAttrCollectionator, ObjectModel, "CAttrCollectionator") MtDefine(CAttrCollectionator_aryAttrDescs, CAttrCollectionator, "CAttrCollectionator::_aryAttrDescs") MtDefine(CDOMChildrenCollectionGetNewEnum_pary, ObjectModel, "CDOMChildrenCollection::GetNewEnum pary") MtDefine(CDOMChildrenCollectionGetNewEnum_pary_pv, ObjectModel, "CDOMChildrenCollection::GetNewEnum pary->_pv") MtDefine(CAttrCollectionatorGetNewEnum_pary, ObjectModel, "CAttrCollectionator::GetNewEnum pary") MtDefine(CAttrCollectionatorGetNewEnum_pary_pv, ObjectModel, "CAttrCollectionator::GetNewEnum pary->_pv") MtDefine(CDOMChildrenCollection, ObjectModel, "CDOMChildrenCollection") //+--------------------------------------------------------------- // // Member : CAttrCollectionator::~CAttrCollectionator // //---------------------------------------------------------------- CAttrCollectionator::~CAttrCollectionator() { Assert(_pElemColl); _pElemColl->FindAAIndexAndDelete(DISPID_INTERNAL_CATTRIBUTECOLLPTRCACHE, CAttrValue::AA_Internal); _pElemColl->Release(); } //+---------------------------------------------------------------- // // member : classdesc // //+---------------------------------------------------------------- const CBase::CLASSDESC CAttrCollectionator::s_classdesc = { &CLSID_HTMLAttributeCollection, // _pclsid 0, // _idrBase #ifndef NO_PROPERTY_PAGE NULL, // _apClsidPages #endif // NO_PROPERTY_PAGE NULL, // _pcpi 0, // _dwFlags &IID_IHTMLAttributeCollection, // _piidDispinterface &s_apHdlDescs, // _apHdlDesc }; HRESULT CAttrCollectionator::PrivateQueryInterface(REFIID iid, void **ppv) { *ppv = NULL; switch (iid.Data1) { QI_INHERITS((IPrivateUnknown *)this, IUnknown) QI_TEAROFF_DISPEX(this, NULL) QI_TEAROFF(this, IHTMLAttributeCollection, NULL) QI_TEAROFF(this, IHTMLAttributeCollection2, NULL) } if (*ppv) { ((IUnknown*)*ppv)->AddRef(); return S_OK; } return E_NOINTERFACE; } HRESULT CAttrCollectionator::get_length(long *plLength) { HRESULT hr = S_OK; if (!plLength) { hr = E_POINTER; goto Cleanup; } *plLength = _aryAttrDescs.Size(); Cleanup: RRETURN(SetErrorInfo(hr)); } HRESULT CAttrCollectionator::EnsureCollection() { HRESULT hr = S_OK; AttrDesc ad; DISPID startdispid = DISPID_STARTENUM; Assert(_pElemColl); CPtrBagVTableAggregate::CIterator vTableIterator(_pElemColl->GetStringTableAggregate()); for (vTableIterator.Start(VTABLEDESC_BELONGSTOPARSE); !vTableIterator.End(); vTableIterator.Next()) { const VTABLEDESC *pVTblDesc = vTableIterator.Item(); const PROPERTYDESC *pPropDesc = pVTblDesc->FastGetPropDesc(VTABLEDESC_BELONGSTOPARSE); Assert(pPropDesc); ad._pPropdesc = pPropDesc; ad._dispid = pPropDesc->GetDispid(); hr = THR(_aryAttrDescs.AppendIndirect(&ad)); if (hr) goto Cleanup; } // Now store index, so we can directly access the expandos _lexpandoStartIndex = _aryAttrDescs.Size(); // Now we fill in the dispids of the expandos ad._pPropdesc = NULL; while (hr != S_FALSE) { hr = THR(_pElemColl->GetNextDispIDExpando(startdispid, NULL, &ad._dispid)); if (FAILED(hr)) goto Cleanup; if (hr != S_FALSE) { Assert(_pElemColl->IsExpandoDISPID(ad._dispid)); _aryAttrDescs.AppendIndirect(&ad); } startdispid = ad._dispid; } hr = S_OK; Cleanup: RRETURN(hr); } HRESULT CAttrCollectionator::item(VARIANT *pvarName, IDispatch **ppdisp) { HRESULT hr; CVariant varArg; VARIANT varDispatch; long lIndex = 0; if (!ppdisp) { hr = E_POINTER; goto Cleanup; } if ((V_VT(pvarName) != VT_ERROR) && (V_VT(pvarName) != VT_EMPTY)) { // first attempt ordinal access... hr = THR(varArg.CoerceVariantArg(pvarName, VT_I4)); if (hr==S_OK) lIndex = V_I4(&varArg); else { // not a number, try named access hr = THR_NOTRACE(varArg.CoerceVariantArg(pvarName, VT_BSTR)); if (hr) { hr = E_INVALIDARG; goto Cleanup; } else { // find the attribute with this name lIndex = FindByName((LPCTSTR)V_BSTR(&varArg)); } } } // TODO(perf): can be optimized to combine FindByName and GetItem hr = THR(GetItem(lIndex, &varDispatch)); if(hr == S_FALSE) hr = E_INVALIDARG; else { Assert(V_VT(&varDispatch) == VT_DISPATCH); *ppdisp = V_DISPATCH(&varDispatch); } Cleanup: RRETURN(SetErrorInfo(hr)); } HRESULT CAttrCollectionator::GetItemAt(long lIndex, IDispatch **ppDisp) { Assert(_pElemColl); HRESULT hr = S_OK; AAINDEX aaIdx; DISPID dispid = _aryAttrDescs[lIndex]._dispid; const PROPERTYDESC *pPropdesc = _aryAttrDescs[lIndex]._pPropdesc; CAttrArray *pAA = *(_pElemColl->GetAttrArray()); CAttribute *pAttribute; LPCTSTR pchAttrName; Assert(dispid != DISPID_UNKNOWN); aaIdx = pAA->FindAAIndex(dispid, CAttrValue::AA_DOMAttribute); if (aaIdx == AA_IDX_UNKNOWN) { pAttribute = new CAttribute(pPropdesc, dispid, _pElemColl); if (!pAttribute) { hr = E_OUTOFMEMORY; goto Cleanup; } if (pPropdesc) pchAttrName = pPropdesc->pstrName; else { DISPID expDispid; IsExpandoDISPID(dispid, &expDispid); hr = THR(_pElemColl->GetExpandoName(expDispid, &pchAttrName)); if (hr) goto Cleanup; } Assert(pchAttrName); hr = THR(pAttribute->_cstrName.Set(pchAttrName)); if (hr) goto Cleanup; hr = THR(_pElemColl->AddUnknownObject(dispid, (IUnknown *)(IPrivateUnknown *)pAttribute, CAttrValue::AA_DOMAttribute)); pAttribute->Release(); if (hr) goto Cleanup; } else { IUnknown *pUnk; hr = THR(_pElemColl->GetUnknownObjectAt(aaIdx, &pUnk)); if (hr) goto Cleanup; pAttribute = (CAttribute *)pUnk; Assert(pAttribute); pAttribute->Release(); } hr = THR(pAttribute->QueryInterface(IID_IDispatch, (void **)ppDisp)); if (hr) goto Cleanup; Cleanup: RRETURN(hr); } HRESULT CAttrCollectionator::get__newEnum(IUnknown ** ppEnum) { Assert(_pElemColl); HRESULT hr = S_OK; CPtrAry<LPUNKNOWN> *pary = NULL; long lSize; long l; IDispatch *pdisp; if (!ppEnum) { hr = E_INVALIDARG; goto Cleanup; } *ppEnum = NULL; pary = new(Mt(CAttrCollectionatorGetNewEnum_pary)) CPtrAry<LPUNKNOWN>(Mt(CAttrCollectionatorGetNewEnum_pary_pv)); if (!pary) { hr = E_OUTOFMEMORY; goto Cleanup; } lSize = _aryAttrDescs.Size(); hr = THR(pary->EnsureSize(lSize)); if (hr) goto Error; // Now make a snapshot of our collection. for (l = 0; l < lSize; ++l) { hr = THR(GetItemAt(l, &pdisp)); if (hr) goto Error; hr = THR(pary->Append(pdisp)); if (hr) { pdisp->Release(); goto Error; } } // Turn the snapshot into an enumerator. hr = THR(pary->EnumVARIANT(VT_DISPATCH, (IEnumVARIANT **) ppEnum, FALSE, TRUE)); if (hr) goto Error; Cleanup: RRETURN(SetErrorInfo(hr)); Error: pary->ReleaseAll(); goto Cleanup; } long CAttrCollectionator::FindByName(LPCTSTR pszName, BOOL fCaseSensitive) { HRESULT hr = S_OK; long lIdx = 0; PROPERTYDESC *pPropDesc; DISPID dispid; long lloopindex; Assert(_pElemColl); pPropDesc = (PROPERTYDESC *)_pElemColl->FindPropDescForName(pszName, fCaseSensitive, &lIdx); if (pPropDesc) return lIdx; else { for (lloopindex = _lexpandoStartIndex; lloopindex < _aryAttrDescs.Size(); lloopindex++) { hr = THR(_pElemColl->GetExpandoDISPID((LPTSTR)pszName, &dispid, fCaseSensitive ? fdexNameCaseSensitive : 0)); if (hr) goto Cleanup; if (dispid == _aryAttrDescs[lloopindex]._dispid) break; } if (lloopindex == _aryAttrDescs.Size()) lloopindex = -1; return lloopindex; } Cleanup: return -1; } LPCTSTR CAttrCollectionator::GetName(long lIdx) { Assert(_pElemColl); LPCTSTR pch = NULL; DISPID dispid = _aryAttrDescs[lIdx]._dispid; const PROPERTYDESC *pPropdesc = _aryAttrDescs[lIdx]._pPropdesc; Assert(dispid != DISPID_UNKNOWN); if (pPropdesc) pch = pPropdesc->pstrExposedName ? pPropdesc->pstrExposedName : pPropdesc->pstrName; else IGNORE_HR(_pElemColl->GetExpandoName(dispid, &pch)); return pch; } HRESULT CAttrCollectionator::GetItem(long lIndex, VARIANT *pvar) { Assert(_pElemColl); HRESULT hr = S_OK; if (lIndex < 0 || lIndex >= _aryAttrDescs.Size()) { hr = S_FALSE; if (pvar) V_DISPATCH(pvar) = NULL; goto Cleanup; } if (!pvar) { // caller wanted only to check for correct range hr = S_OK; goto Cleanup; } V_VT(pvar) = VT_DISPATCH; hr = THR(GetItemAt(lIndex, &V_DISPATCH(pvar))); if (hr) goto Cleanup; Cleanup: RRETURN1(hr, S_FALSE); } HRESULT CAttrCollectionator::getNamedItem(BSTR bstrName, IHTMLDOMAttribute **ppAttribute) { return _pElemColl->getAttributeNode(bstrName, ppAttribute); } HRESULT CAttrCollectionator::setNamedItem(IHTMLDOMAttribute *pAttrIn, IHTMLDOMAttribute **ppAttribute) { return _pElemColl->setAttributeNode(pAttrIn, ppAttribute); } HRESULT CAttrCollectionator::removeNamedItem(BSTR bstrName, IHTMLDOMAttribute **ppAttribute) { HRESULT hr = S_OK; if (!ppAttribute) { hr = E_POINTER; goto Cleanup; } if (!bstrName || !*bstrName) { hr = E_INVALIDARG; goto Cleanup; } *ppAttribute = NULL; hr = THR(_pElemColl->RemoveAttributeNode(bstrName, ppAttribute)); if (hr) goto Cleanup; Cleanup: RRETURN(SetErrorInfo(hr)); } //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // CDOMChildrenCollection // //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //+---------------------------------------------------------------- // // member : classdesc // //+---------------------------------------------------------------- const CBase::CLASSDESC CDOMChildrenCollection::s_classdesc = { &CLSID_DOMChildrenCollection, // _pclsid 0, // _idrBase #ifndef NO_PROPERTY_PAGE NULL, // _apClsidPages #endif // NO_PROPERTY_PAGE NULL, // _pcpi 0, // _dwFlags &IID_IHTMLDOMChildrenCollection, // _piidDispinterface &s_apHdlDescs // _apHdlDesc }; //+--------------------------------------------------------------- // // Member : CDOMChildrenCollection::PrivateQueryInterface // // Sysnopsis : Vanilla implementation for this class // //---------------------------------------------------------------- HRESULT CDOMChildrenCollection::PrivateQueryInterface(REFIID iid, void **ppv) { *ppv = NULL; switch (iid.Data1) { QI_INHERITS((IPrivateUnknown *)this, IUnknown) QI_TEAROFF_DISPEX(this, NULL) default: { const CLASSDESC *pclassdesc = BaseDesc(); if (pclassdesc && pclassdesc->_piidDispinterface && (iid == *pclassdesc->_piidDispinterface)) { HRESULT hr = THR(CreateTearOffThunk(this, s_apfnIHTMLDOMChildrenCollection, NULL, ppv)); if (hr) RRETURN(hr); } } } if (*ppv) { (*(IUnknown**)ppv)->AddRef(); return S_OK; } return E_NOINTERFACE; } //+------------------------------------------------------------------------ // // Member: item // // Synopsis: collection object model // //------------------------------------------------------------------------- HRESULT CDOMChildrenCollection::item(long lIndex, IDispatch** ppResult) { HRESULT hr; VARIANT varDispatch; if ( !ppResult ) { RRETURN(E_POINTER); } hr = THR(GetItem(lIndex, &varDispatch)); if (hr) goto Cleanup; Assert(V_VT(&varDispatch) == VT_DISPATCH); *ppResult = V_DISPATCH(&varDispatch); Cleanup: RRETURN(hr); } //+------------------------------------------------------------------------ // // Member: get_length // // Synopsis: collection object model, defers to Cache Helper // //------------------------------------------------------------------------- HRESULT CDOMChildrenCollection::get_length(long * plSize) { HRESULT hr; if (!plSize) hr = E_INVALIDARG; else { *plSize = GetLength(); hr = S_OK; } RRETURN(SetErrorInfo(hr)); } //+------------------------------------------------------------------------ // // Member: Get_newEnum // // Synopsis: collection object model // //------------------------------------------------------------------------- HRESULT CDOMChildrenCollection::get__newEnum(IUnknown ** ppEnum) { HRESULT hr = E_INVALIDARG; CPtrAry<LPUNKNOWN> *pary = NULL; CElement *pElement; CObjectElement *pelObj = NULL; long lSize; long l; if (!_fIsElement) { hr = E_NOTIMPL; goto Cleanup; } if (!ppEnum) goto Cleanup; *ppEnum = NULL; pary = new(Mt(CDOMChildrenCollectionGetNewEnum_pary)) CPtrAry<LPUNKNOWN>(Mt(CDOMChildrenCollectionGetNewEnum_pary_pv)); if (!pary) { hr = E_OUTOFMEMORY; goto Cleanup; } lSize = GetLength(); hr = THR(pary->EnsureSize(lSize)); if (hr) goto Error; pElement = DYNCAST(CElement, _pOwner); if (pElement->Tag() == ETAG_OBJECT || pElement->Tag() == ETAG_APPLET) { pelObj = DYNCAST(CObjectElement, _pOwner); } // Now make a snapshot of our collection. for (l = 0; l < lSize; ++l) { IDispatch *pdisp; if (pelObj) { CParamElement *pelParam = pelObj->_aryParams[l]; Assert(pelParam && pelParam->Tag() == ETAG_PARAM); Assert(pelParam->_pelObjParent == pelObj); hr = THR(pelParam->QueryInterface(IID_IDispatch, (void **)&pdisp)); } else hr = THR(pElement->DOMWalkChildren(l, NULL, &pdisp)); if (hr) goto Error; hr = THR(pary->Append(pdisp)); if (hr) { pdisp->Release(); goto Error; } } // Turn the snapshot into an enumerator. hr = THR(pary->EnumVARIANT(VT_DISPATCH, (IEnumVARIANT **) ppEnum, FALSE, TRUE)); if (hr) goto Error; Cleanup: RRETURN(SetErrorInfo(hr)); Error: pary->ReleaseAll(); goto Cleanup; } HRESULT CDOMChildrenCollection::GetItem (long lIndex, VARIANT *pvar) { HRESULT hr = S_OK; IDispatch **ppDisp; if ( lIndex < 0 ) return E_INVALIDARG; if ( pvar ) V_DISPATCH(pvar) = NULL; if ( _fIsElement ) { // Pass through the NULL parameter correctly if (pvar) ppDisp = &V_DISPATCH(pvar); else ppDisp = NULL; CElement *pElement = DYNCAST(CElement, _pOwner); if (pElement->Tag() == ETAG_OBJECT || pElement->Tag() == ETAG_APPLET) { CObjectElement *pelObj = DYNCAST(CObjectElement, _pOwner); if (lIndex < pelObj->_aryParams.Size()) { Assert(lIndex == pelObj->_aryParams[lIndex]->_idxParam); if (ppDisp) { CParamElement *pelParam = pelObj->_aryParams[lIndex]; Assert(pelParam && pelParam->Tag() == ETAG_PARAM); Assert(pelParam->_pelObjParent == pelObj); hr = THR(pelParam->QueryInterface(IID_IDispatch, (void **)ppDisp)); } } else hr = E_INVALIDARG; } else hr = THR(pElement->DOMWalkChildren(lIndex, NULL, ppDisp )); } else hr = E_INVALIDARG; if (!hr && pvar) V_VT(pvar) = VT_DISPATCH; RRETURN(hr); } HRESULT CDOMChildrenCollection::IsValidIndex ( long lIndex ) { return (lIndex >= 0 && lIndex < GetLength()) ? S_OK : S_FALSE; } long CDOMChildrenCollection::GetLength ( void ) { long lCount = 0; if ( _fIsElement ) { CElement *pElement = DYNCAST(CElement, _pOwner); if (pElement->Tag() == ETAG_OBJECT || pElement->Tag() == ETAG_APPLET) lCount = DYNCAST(CObjectElement, _pOwner)->_aryParams.Size(); else pElement->DOMWalkChildren ( -1, &lCount, NULL ); } return lCount; }
[ "polarisdp@gmail.com" ]
polarisdp@gmail.com
1b3c686e76a213a6d0672569091abf22f15894a6
0bcc3daa519b795608cf1da5a48f9cc11075c8de
/Algorithms4th_CPP/Chapter1/random.h
1a5f52b849765f6e2eb59d68a01eb77cc1d66561
[]
no_license
Gatsby23/Algorithms4th_CPP
0c639430c1f0731968cbe212a51b8df021b69314
4c2f39483290871a43cf3af20aaeb85e5576523c
refs/heads/master
2021-09-07T22:52:41.382589
2018-03-02T13:31:04
2018-03-02T13:31:04
null
0
0
null
null
null
null
GB18030
C++
false
false
3,663
h
#pragma once #include<random> #include<exception> /** * The {@code StdRandom} class provides static methods for generating * random number from various discrete and continuous distributions, * including Bernoulli, uniform, Gaussian, exponential, pareto, * Poisson, and Cauchy. It also provides method for shuffling an * array or subarray. * <p> * API * void setSeed(long seed); 设置种子 * int uniformInt(int N); 0到N之间的整数 * int uniformInt(int lo, int hi); lo到hi的整数 * double uniform();0到1的实数 * double uniform(double lo, double hi); lo到hi之间的实数 * bool bernoulli(double p); 返回真的概率为p * double gaussian(); 标准正态分布 * double gaussian(double m, double s); 正态分布,期望值为m,标准差为s * int discrete(double[] a); 返回i的概率为a[i] * void shuffle(double[] a); 将数组a随机排序 */ class Random { private: std::default_random_engine e;//引擎 public: void setSeed(long s) { e.seed(s); } /** *随机返回整数 */ int uniformInt(int N) { if (N <= 0) throw std::invalid_argument("Parameter N must be positive"); std::uniform_int_distribution<unsigned> u(0, N); return u(e); } int uniformInt(int lo, int hi) { if (hi<lo || (long)(hi - lo)>INT_MAX) throw std::invalid_argument("range error"); std::uniform_int_distribution<int> u(lo, hi); return u(e); } /** *随机分布:返回实数 */ double uniform() { std::uniform_real_distribution<double> u(0, 1); return u(e); } double uniform(double lo, double hi) { if (lo >= hi) throw std::invalid_argument("range error"); std::uniform_real_distribution<double>u(lo, hi); return u(e); } /** *bornoulli分布:返回true的概率为p */ bool bernoulli(double p=0.5) { if (p <= 0 || p >= 1) throw std::invalid_argument("Probability must be between 0.0 and 1.0"); std::bernoulli_distribution b(p); return b(e); } /** *gaussian分布:返回实数 */ double gaussian() { std::normal_distribution<double> n; return n(e); } double gaussian(double m, double s) { std::normal_distribution<double> n(m, s); return n(e); } /** *i出现的概率是a[i] *使用轮盘策略 */ template<typename It> int discrete(It beg, It end) { double r = uniform(); double sum = 0; for (suto it = beg; it != end; ++it) { sum += *it; if (sum >= r)return (it - beg); } return -1; } /** *随机排序 */ template<typename It> void shuffle(It beg, It end) { int N = (end - beg); for (int i = 0; i < N; ++i) { int r = uniformInt(i, N - 1); using std::swap; swap(*(beg + i), *(beg + r)); } } }; /** * The {@code StdStats} class provides static methods for computing * statistics such as min, max, mean, sample standard deviation, and * sample variance. * <p> * API * max;min;mean;var;stddev;median */ #include<algorithm> #include<numeric> class __Stats { public: template<typename It> static auto max_(It beg, It end) -> decltype(*beg) { return std::max(beg, end); } template<typename It> static auto min_(It beg, It end) -> decltype(*beg) { return std::min(beg, end); } template<typename It> static double mean(It beg, It end) { double sum = std::accumulate(beg, end, 0.0); return sum / (end - beg); } template<typename It> static double var(It beg, It end) { double avg = mean(beg, end); double sum = 0.0; std::foreach(beg, end, [&sum, avg](const double d) {sum += (d - avg)*(d - avg); }); return sum / (end - beg - 1); } template<typename It> static double stddev(It beg, It end) { return std::sqrt(var(beg, end)); } }; static __Stats Stats;
[ "wangshanshi@WANGSHANSHI-PC" ]
wangshanshi@WANGSHANSHI-PC
ad5065e93679b54f72ee06743c237a4fca2171ce
8c2461b55a516bcbcd011b014cc0fd6ff30e1a4a
/CodeForces/82A - Double Cola.cpp
744b394670feeb8a812c56714737d19b504450a3
[]
no_license
Abhiramon/ioi-training
602bfd29f93f3d93143a1f54b93623b7df014f07
6f17829f2ea7fca60e719d1f67db4095012a9632
refs/heads/master
2021-01-22T05:50:42.627764
2015-06-18T02:13:46
2015-06-18T02:13:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
312
cpp
//11414684 2015-06-04 17:12:33 Hiasat98 82A - Double Cola GNU C++ Accepted 15 ms 0 KB #include <iostream> using namespace std; int main() { int n; cin >> n; string names[5] = { "Sheldon", "Leonard", "Penny", "Rajesh", "Howard" }; while(n > 5){ n =(n/2) - 2; } cout << names[n - 1] << endl; return 0; }
[ "hiasat00@gmail.com" ]
hiasat00@gmail.com
b69b2fc30b4b30923b6922b1cd21d9e6a19636f8
d9756b2d68edd109f1ea0a7535f1865769f4994a
/itl.trunk/boost/validate/loki/TypeTraits.h
257043bc59f4478d956318dc6c037f86a245e8ad
[ "BSL-1.0" ]
permissive
somaproject/streams
509362c9d88d608e429de225b785937a34984e87
9fed8ddb3b519a00fd8761a2382e11023ccf5186
refs/heads/master
2021-01-11T11:16:27.971865
2009-11-30T02:51:33
2009-11-30T02:51:33
100,223
1
0
null
null
null
null
UTF-8
C++
false
false
94,170
h
//////////////////////////////////////////////////////////////////////////////// // The Loki Library // Copyright (c) 2001 by Andrei Alexandrescu // This code accompanies the book: // Alexandrescu, Andrei. "Modern C++ Design: Generic Programming and Design // Patterns Applied". Copyright (c) 2001. Addison-Wesley. // Permission to use, copy, modify, distribute and sell this software for any // purpose is hereby granted without fee, provided that the above copyright // notice appear in all copies and that both that copyright notice and this // permission notice appear in supporting documentation. // The author or Addison-Wesley Longman make no representations about the // suitability of this software for any purpose. It is provided "as is" // without express or implied warranty. //////////////////////////////////////////////////////////////////////////////// #ifndef LOKI_TYPETRAITS_INC_ #define LOKI_TYPETRAITS_INC_ // $Id: TypeTraits.h 49589 2008-11-04 18:46:18Z jofaber $ #include "Typelist.h" #include "Sequence.h" #if (defined _MSC_VER) && (_MSC_VER < 1400) #include <string> #endif #ifdef _MSC_VER #pragma warning( push ) #pragma warning( disable : 4180 ) //qualifier applied to function type has no meaning; ignored #endif namespace Loki { //////////////////////////////////////////////////////////////////////////////// // class template IsCustomUnsignedInt // Offers a means to integrate nonstandard built-in unsigned integral types // (such as unsigned __int64 or unsigned long long int) with the TypeTraits // class template defined below. // Invocation: IsCustomUnsignedInt<T> where T is any type // Defines 'value', an enum that is 1 iff T is a custom built-in unsigned // integral type // Specialize this class template for nonstandard unsigned integral types // and define value = 1 in those specializations //////////////////////////////////////////////////////////////////////////////// template <typename T> struct IsCustomUnsignedInt { enum { value = 0 }; }; //////////////////////////////////////////////////////////////////////////////// // class template IsCustomSignedInt // Offers a means to integrate nonstandard built-in unsigned integral types // (such as unsigned __int64 or unsigned long long int) with the TypeTraits // class template defined below. // Invocation: IsCustomSignedInt<T> where T is any type // Defines 'value', an enum that is 1 iff T is a custom built-in signed // integral type // Specialize this class template for nonstandard unsigned integral types // and define value = 1 in those specializations //////////////////////////////////////////////////////////////////////////////// template <typename T> struct IsCustomSignedInt { enum { value = 0 }; }; //////////////////////////////////////////////////////////////////////////////// // class template IsCustomFloat // Offers a means to integrate nonstandard floating point types with the // TypeTraits class template defined below. // Invocation: IsCustomFloat<T> where T is any type // Defines 'value', an enum that is 1 iff T is a custom built-in // floating point type // Specialize this class template for nonstandard unsigned integral types // and define value = 1 in those specializations //////////////////////////////////////////////////////////////////////////////// template <typename T> struct IsCustomFloat { enum { value = 0 }; }; //////////////////////////////////////////////////////////////////////////////// // Helper types for class template TypeTraits defined below //////////////////////////////////////////////////////////////////////////////// namespace Private { #ifndef LOKI_DISABLE_TYPELIST_MACROS typedef LOKI_TYPELIST_4(unsigned char, unsigned short int,unsigned int, unsigned long int) StdUnsignedInts; typedef LOKI_TYPELIST_4(signed char, short int,int, long int) StdSignedInts; typedef LOKI_TYPELIST_3(bool, char, wchar_t) StdOtherInts; typedef LOKI_TYPELIST_3(float, double, long double) StdFloats; #else typedef Loki::Seq<unsigned char, unsigned short int,unsigned int, unsigned long int>::Type StdUnsignedInts; typedef Loki::Seq<signed char, short int,int, long int>::Type StdSignedInts; typedef Loki::Seq<bool, char, wchar_t>::Type StdOtherInts; typedef Loki::Seq<float, double, long double>::Type StdFloats; #endif template <typename U> struct AddPointer { typedef U* Result; }; template <typename U> struct AddPointer<U&> { typedef U* Result; }; template <class U> struct AddReference { typedef U & Result; }; template <class U> struct AddReference<U &> { typedef U & Result; }; template <> struct AddReference<void> { typedef NullType Result; }; template <class U> struct AddParameterType { typedef const U & Result; }; template <class U> struct AddParameterType<U &> { typedef U & Result; }; template <> struct AddParameterType<void> { typedef NullType Result; }; template <typename T> struct IsFunctionPointerRaw {enum{result = 0};}; template <typename T> struct IsFunctionPointerRaw<T(*)()> {enum {result = 1};}; template <typename T, typename P01> struct IsFunctionPointerRaw<T(*)(P01)> {enum {result = 1};}; template <typename T, typename P01, typename P02> struct IsFunctionPointerRaw<T(*)( P01, P02)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03> struct IsFunctionPointerRaw<T(*)( P01, P02, P03)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20)> {enum {result = 1};}; template <typename T> struct IsFunctionPointerRaw<T(*)( ...)> {enum {result = 1};}; template <typename T, typename P01> struct IsFunctionPointerRaw<T(*)( P01, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02> struct IsFunctionPointerRaw<T(*)( P01, P02, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, ...)> {enum {result = 1};}; template <typename T, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsFunctionPointerRaw<T(*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20, ...)> {enum {result = 1};}; template <typename T> struct IsMemberFunctionPointerRaw {enum{result = 0};}; template <typename T, typename S> struct IsMemberFunctionPointerRaw<T (S::*)()> {enum {result = 1};}; template <typename T, typename S, typename P01> struct IsMemberFunctionPointerRaw<T (S::*)(P01)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20)> {enum {result = 1};}; template <typename T, typename S> struct IsMemberFunctionPointerRaw<T (S::*)( ...)> {enum {result = 1};}; template <typename T, typename S, typename P01> struct IsMemberFunctionPointerRaw<T (S::*)( P01, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, ...)> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20, ...)> {enum {result = 1};}; // Const versions template <typename T, typename S> struct IsMemberFunctionPointerRaw<T (S::*)() const> {enum {result = 1};}; template <typename T, typename S, typename P01> struct IsMemberFunctionPointerRaw<T (S::*)(P01) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20) const> {enum {result = 1};}; template <typename T, typename S> struct IsMemberFunctionPointerRaw<T (S::*)( ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01> struct IsMemberFunctionPointerRaw<T (S::*)( P01, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, ...) const> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20, ...) const> {enum {result = 1};}; // Volatile versions template <typename T, typename S> struct IsMemberFunctionPointerRaw<T (S::*)() volatile> {enum {result = 1};}; template <typename T, typename S, typename P01> struct IsMemberFunctionPointerRaw<T (S::*)(P01) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20) volatile> {enum {result = 1};}; template <typename T, typename S> struct IsMemberFunctionPointerRaw<T (S::*)( ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01> struct IsMemberFunctionPointerRaw<T (S::*)( P01, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, ...) volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20, ...) volatile> {enum {result = 1};}; // Const volatile versions template <typename T, typename S> struct IsMemberFunctionPointerRaw<T (S::*)() const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01> struct IsMemberFunctionPointerRaw<T (S::*)(P01) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20) const volatile> {enum {result = 1};}; template <typename T, typename S> struct IsMemberFunctionPointerRaw<T (S::*)( ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01> struct IsMemberFunctionPointerRaw<T (S::*)( P01, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, ...) const volatile> {enum {result = 1};}; template <typename T, typename S, typename P01, typename P02, typename P03, typename P04, typename P05, typename P06, typename P07, typename P08, typename P09, typename P10, typename P11, typename P12, typename P13, typename P14, typename P15, typename P16, typename P17, typename P18, typename P19, typename P20> struct IsMemberFunctionPointerRaw<T (S::*)( P01, P02, P03, P04, P05, P06, P07, P08, P09, P10, P11, P12, P13, P14, P15, P16, P17, P18, P19, P20, ...) const volatile> {enum {result = 1};}; }// namespace Private //////////////////////////////////////////////////////////////////////////////// // class template TypeTraits // // Figures out at compile time various properties of any given type // Invocations (T is a type, TypeTraits<T>::Propertie): // // - isPointer : returns true if T is a pointer type // - PointeeType : returns the type to which T points if T is a pointer // type, NullType otherwise // - isReference : returns true if T is a reference type // - ReferredType : returns the type to which T refers if T is a reference // type, NullType otherwise // - isMemberPointer : returns true if T is a pointer to member type // - isStdUnsignedInt: returns true if T is a standard unsigned integral type // - isStdSignedInt : returns true if T is a standard signed integral type // - isStdIntegral : returns true if T is a standard integral type // - isStdFloat : returns true if T is a standard floating-point type // - isStdArith : returns true if T is a standard arithmetic type // - isStdFundamental: returns true if T is a standard fundamental type // - isUnsignedInt : returns true if T is a unsigned integral type // - isSignedInt : returns true if T is a signed integral type // - isIntegral : returns true if T is a integral type // - isFloat : returns true if T is a floating-point type // - isArith : returns true if T is a arithmetic type // - isFundamental : returns true if T is a fundamental type // - ParameterType : returns the optimal type to be used as a parameter for // functions that take Ts // - isConst : returns true if T is a const-qualified type // - NonConstType : Type with removed 'const' qualifier from T, if any // - isVolatile : returns true if T is a volatile-qualified type // - NonVolatileType : Type with removed 'volatile' qualifier from T, if any // - UnqualifiedType : Type with removed 'const' and 'volatile' qualifiers from // T, if any // - ConstParameterType: returns the optimal type to be used as a parameter // for functions that take 'const T's // //////////////////////////////////////////////////////////////////////////////// template <typename T> class TypeTraits { private: template <class U> struct ReferenceTraits { enum { result = false }; typedef U ReferredType; }; template <class U> struct ReferenceTraits<U&> { enum { result = true }; typedef U ReferredType; }; template <class U> struct PointerTraits { enum { result = false }; typedef NullType PointeeType; }; template <class U> struct PointerTraits<U*> { enum { result = true }; typedef U PointeeType; }; template <class U> struct PointerTraits<U*&> { enum { result = true }; typedef U PointeeType; }; template <class U> struct PToMTraits { enum { result = false }; }; template <class U, class V> struct PToMTraits<U V::*> { enum { result = true }; }; template <class U, class V> struct PToMTraits<U V::*&> { enum { result = true }; }; template <class U> struct FunctionPointerTraits { enum{ result = Private::IsFunctionPointerRaw<U>::result }; }; template <typename U> struct PToMFunctionTraits { enum{ result = Private::IsMemberFunctionPointerRaw<U>::result }; }; template <class U> struct UnConst { typedef U Result; enum { isConst = 0 }; }; template <class U> struct UnConst<const U> { typedef U Result; enum { isConst = 1 }; }; template <class U> struct UnConst<const U&> { typedef U& Result; enum { isConst = 1 }; }; template <class U> struct UnVolatile { typedef U Result; enum { isVolatile = 0 }; }; template <class U> struct UnVolatile<volatile U> { typedef U Result; enum { isVolatile = 1 }; }; template <class U> struct UnVolatile<volatile U&> { typedef U& Result; enum { isVolatile = 1 }; }; public: typedef typename UnConst<T>::Result NonConstType; typedef typename UnVolatile<T>::Result NonVolatileType; typedef typename UnVolatile<typename UnConst<T>::Result>::Result UnqualifiedType; typedef typename PointerTraits<UnqualifiedType>::PointeeType PointeeType; typedef typename ReferenceTraits<T>::ReferredType ReferredType; enum { isConst = UnConst<T>::isConst }; enum { isVolatile = UnVolatile<T>::isVolatile }; enum { isReference = ReferenceTraits<UnqualifiedType>::result }; enum { isFunction = FunctionPointerTraits<typename Private::AddPointer<T>::Result >::result }; enum { isFunctionPointer= FunctionPointerTraits< typename ReferenceTraits<UnqualifiedType>::ReferredType >::result }; enum { isMemberFunctionPointer= PToMFunctionTraits< typename ReferenceTraits<UnqualifiedType>::ReferredType >::result }; enum { isMemberPointer = PToMTraits< typename ReferenceTraits<UnqualifiedType>::ReferredType >::result || isMemberFunctionPointer }; enum { isPointer = PointerTraits< typename ReferenceTraits<UnqualifiedType>::ReferredType >::result || isFunctionPointer }; enum { isStdUnsignedInt = TL::IndexOf<Private::StdUnsignedInts, UnqualifiedType>::value >= 0 || TL::IndexOf<Private::StdUnsignedInts, typename ReferenceTraits<UnqualifiedType>::ReferredType>::value >= 0}; enum { isStdSignedInt = TL::IndexOf<Private::StdSignedInts, UnqualifiedType>::value >= 0 || TL::IndexOf<Private::StdSignedInts, typename ReferenceTraits<UnqualifiedType>::ReferredType>::value >= 0}; enum { isStdIntegral = isStdUnsignedInt || isStdSignedInt || TL::IndexOf<Private::StdOtherInts, UnqualifiedType>::value >= 0 || TL::IndexOf<Private::StdOtherInts, typename ReferenceTraits<UnqualifiedType>::ReferredType>::value >= 0}; enum { isStdFloat = TL::IndexOf<Private::StdFloats, UnqualifiedType>::value >= 0 || TL::IndexOf<Private::StdFloats, typename ReferenceTraits<UnqualifiedType>::ReferredType>::value >= 0}; enum { isStdArith = isStdIntegral || isStdFloat }; enum { isStdFundamental = isStdArith || isStdFloat || Conversion<T, void>::sameType }; enum { isUnsignedInt = isStdUnsignedInt || IsCustomUnsignedInt<UnqualifiedType>::value }; enum { isSignedInt = isStdSignedInt || IsCustomSignedInt<UnqualifiedType>::value }; enum { isIntegral = isStdIntegral || isUnsignedInt || isSignedInt }; enum { isFloat = isStdFloat || IsCustomFloat<UnqualifiedType>::value }; enum { isArith = isIntegral || isFloat }; enum { isFundamental = isStdFundamental || isArith }; typedef typename Select<isStdArith || isPointer || isMemberPointer, T, typename Private::AddParameterType<T>::Result>::Result ParameterType; }; } #ifdef _MSC_VER #pragma warning( pop ) #endif // _MSC_VER #endif // end file guardian
[ "jonas@mit.edu" ]
jonas@mit.edu
9e1ffefc4cd307e7711e9fd7ab49fbf855eeb3cf
f921d605ad9fbc65fb360ef00dd137e77e94b787
/C_Course_Training_ITPTIT/Contest_midterm/demomidterm.cpp
1f24519840d14937dc7efec5db4ed2b617c766e9
[]
no_license
maybehieu/C_Training
79702e096bd706ec06fc7965b7b63249d140c41b
e1fa87e0bc0a6569ab7ebc847ffbf4324f2fe922
refs/heads/master
2023-07-22T20:06:36.552137
2021-09-04T15:29:17
2021-09-04T15:29:17
403,091,644
0
0
null
null
null
null
UTF-8
C++
false
false
1,477
cpp
#include <stdio.h> #include <algorithm> int main() { int bo,n,check,tong,so,sntarr[100000],ketqua = 0; scanf("%d", &bo); while (bo--) { scanf("%d", &n); //check so nguyen to tu 1 den n for (int i = 2; i <= n; i++) { if (n % i == 0) { sntarr[i - 2] = i; } } tong = 0; so = 0; for (int i = 0; i <= n - 2; i++) { if (n == sntarr[i]) { ketqua = 1; } // for (int q = 0; q < n; q++) // { // } // else // { // ketqua = 3; // tong = tong + sntarr[i]; // so = so + 1; // } } } if (ketqua == 1) { printf("1\n"); } if (ketqua == 3) { printf("%d", so); } //nghich the // int n,arr[100000],check = 0,a,b; // scanf("%d", &n); // for (int i = 0; i < n; i++) // { // scanf("%d", &arr[i]); // } // check = 0; // for (int i = 0; i < n; i++) // { // a = arr[i]; // for (int q = i + 1; q < n; q++) // { // b = arr[q]; // if (q > i && a > b) // { // check++; // } // } // } // printf("%d", check); }
[ "71547583+maybehieu@users.noreply.github.com" ]
71547583+maybehieu@users.noreply.github.com
27211390a9528eebe8a0f4d3bcb2a4144b9e1c9c
606688234266e08c18d44cd4826f16afa39f9eb8
/tpls/ensmallen/ensmallen_bits/problems/beale_function.hpp
45e5183cb095a24d52355cd9196c6c478a2cb7c1
[ "BSD-3-Clause", "EPL-1.0", "BSL-1.0", "Apache-2.0", "BSD-2-Clause", "MPL-2.0", "LicenseRef-scancode-generic-export-compliance", "MIT" ]
permissive
eclipse/xacc
f285f2a20d88fbc4c8f7f1fc14f86bf170ae59e6
d1edaa7ae53edc7e335f46d33160f93d6020aaa3
refs/heads/master
2023-09-01T12:36:22.324158
2023-08-01T21:44:29
2023-08-01T21:44:29
104,096,218
159
125
BSD-3-Clause
2023-08-25T04:55:34
2017-09-19T15:56:59
C++
UTF-8
C++
false
false
3,059
hpp
/** * @file beale_function.hpp * @author Suryoday Basak * * Definition of the Beale function. * * ensmallen is free software; you may redistribute it and/or modify it under * the terms of the 3-clause BSD license. You should have received a copy of * the 3-clause BSD license along with ensmallen. If not, see * http://www.opensource.org/licenses/BSD-3-Clause for more information. */ #ifndef ENSMALLEN_PROBLEMS_BEALE_FUNCTION_HPP #define ENSMALLEN_PROBLEMS_BEALE_FUNCTION_HPP namespace ens { namespace test { /** * The Beale function, defined by * * \f[ * f(x_1,x_2) = (1.5 - x_1 + x_1 * x_2)^2 + * (2.25 - x_1 + x_1 * x_2^2)^2 + * (2.625 - x_1 + x_1 * x_2^3)^2 * \f] * * This should optimize to f(x) = 0, at x = [3, 0.5]. * * For more information, please refer to: * * @code * @misc{1307.5838, * Author = {Masoumeh Vali}, * Title = {Rotational Mutation Genetic Algorithm on optimizationProblems}, * Year = {2013}, * Eprint = {arXiv:1307.5838}, * } * @endcode */ class BealeFunction { public: //! Initialize the BealeFunction. BealeFunction(); /** * Shuffle the order of function visitation. This may be called by the * optimizer. */ void Shuffle(); //! Return 1 (the number of functions). size_t NumFunctions() const { return 1; } //! Get the starting point. template<typename MatType = arma::mat> MatType GetInitialPoint() const { return MatType("-4.5; 4.5"); } /** * Evaluate a function for a particular batch-size. * * @param coordinates The function coordinates. * @param begin The first function. * @param batchSize Number of points to process. */ template<typename MatType> typename MatType::elem_type Evaluate(const MatType& coordinates, const size_t begin, const size_t batchSize) const; /** * Evaluate a function with the given coordinates. * * @param coordinates The function coordinates. */ template<typename MatType> typename MatType::elem_type Evaluate(const MatType& coordinates) const; /** * Evaluate the gradient of a function for a particular batch-size. * * @param coordinates The function coordinates. * @param begin The first function. * @param gradient The function gradient. * @param batchSize Number of points to process. */ template<typename MatType, typename GradType> void Gradient(const MatType& coordinates, const size_t begin, GradType& gradient, const size_t batchSize) const; /** * Evaluate the gradient of a function with the given coordinates. * * @param coordinates The function coordinates. * @param gradient The function gradient. */ template<typename MatType, typename GradType> void Gradient(const MatType& coordinates, GradType& gradient); }; } // namespace test } // namespace ens // Include implementation. #include "beale_function_impl.hpp" #endif // ENSMALLEN_PROBLEMS_BEALE_FUNCTION_HPP
[ "mccaskeyaj@ornl.gov" ]
mccaskeyaj@ornl.gov
8d1d352f03c601f4471a829fb7e8e368590def91
4c2526a3c276314a090f1b44d6d00420443eca65
/string/test_length.cpp
bc42bd4c9651de62427d8a332423dbe6ae3a3324
[]
no_license
alfred316/KSU-CS2
b1ce1e4ecdd4fd2a0ebe152a97ed266d176cd713
bca9cf80eab57b30548bf074fcd5426c472f148e
refs/heads/master
2021-01-10T21:22:56.255291
2013-10-19T03:17:26
2013-10-19T03:17:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
486
cpp
// test length // Alfred Shaker #include "string.h" int main (){ {//test 1 myString str; assert(str.length()== 0); } {//test 2 myString str("alfred"); assert(str.length()== 6); } {//test 3 myString str("alfred"); assert(str.length()== 6); } {//test 4 myString str("Top MIA and we're gonna lose!"); assert(str.length()== 29); } // ADD ADDITIONAL TESTS AS NECESSARY std::cout << "Done testing length." << std::endl; }
[ "ashaker@kent.edu" ]
ashaker@kent.edu
464ed710ebafcd2dfc734031d928edf0041b8f9f
1a434aadcccbb3d2884e3ae5a32b439d916accda
/TextureLib/TextureLib.cpp
f906bc4ce72e718a3e80910a952d2bacd2220e3a
[]
no_license
mrdooz/TextureTjong
1ad9a80d917c200fd2e40b1bd65ffda1ce518cda
d020f614131ae38f5bf9c621d39de4df2e416b49
refs/heads/master
2021-01-06T20:38:22.356998
2010-03-04T12:15:28
2010-03-04T12:15:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,321
cpp
#include "stdafx.h" #include "TextureLib.hpp" #include "Texture.hpp" #include "Utils.hpp" #include "Generators.hpp" #include "Modifiers.hpp" pfnTexture texture_create_callback = NULL; pfnTexture texture_delete_callback = NULL; extern "C" { __declspec(dllexport) void setTextureInit(pfnTexture pfnInit) { texture_create_callback = pfnInit; } __declspec(dllexport) void setTextureClose(pfnTexture pfnClose) { texture_delete_callback = pfnClose; } } BOOST_PYTHON_MODULE(texture_ext) { using namespace boost::python; def("single_color", single_color); def("split_color", split_color); def("radial", radial); def("noise", noise); def("displace", displace); def("remap", remap); def("combine", combine); def("modulate", modulate); def("scale", scale); def("mixer", mixer); def("save_bitmap", save_bitmap); class_<D3DXCOLOR>("Color", init<float, float, float, float>()) .add_property("r", &D3DXCOLOR::r) .add_property("g", &D3DXCOLOR::g) .add_property("b", &D3DXCOLOR::b) .add_property("a", &D3DXCOLOR::a) ; class_<Texture>("Texture", init<int32_t, int32_t>()) .add_property("width", &Texture::width) .add_property("height", &Texture::height) .add_property("data_size", &Texture::data_size) .def("set_pixel", &Texture::set_pixel) ; }
[ "dooz@spotify.com" ]
dooz@spotify.com
3841013921096be1ca5bdd2ac8fdce509cbaf076
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/drivers/storage/volsnap/vss/server/modules/coord/src/mgmt.cxx
f75db54659ced9382071f4f312b36ff7387c3261
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,603
cxx
/*++ Copyright (c) 1999-2001 Microsoft Corporation Abstract: @doc @module Mgmt.cxx | Implementation of CVssSnapshotMgmt @end Author: Adi Oltean [aoltean] 03/05/2001 Revision History: Name Date Comments aoltean 03/05/2001 Created --*/ ///////////////////////////////////////////////////////////////////////////// // Includes #include "stdafx.hxx" #include "resource.h" #include "vs_inc.hxx" // Generated file from Coord.IDL #include "vs_idl.hxx" #include "svc.hxx" #include "copy.hxx" #include "pointer.hxx" #include "enum.hxx" #include "vs_sec.hxx" #include "provmgr.hxx" #include "mgmt.hxx" //////////////////////////////////////////////////////////////////////// // Standard foo for file name aliasing. This code block must be after // all includes of VSS header files. // #ifdef VSS_FILE_ALIAS #undef VSS_FILE_ALIAS #endif #define VSS_FILE_ALIAS "CORMGMTC" // //////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// // CVssSnapshotMgmt STDMETHODIMP CVssSnapshotMgmt::GetProviderMgmtInterface( IN VSS_ID ProviderId, // It might be a software or a system provider. IN REFIID InterfaceId, // Might be IID_IVssDifferentialSoftwareSnapshotMgmt OUT IUnknown** ppItf ) /*++ Routine description: Returns an interface to further configure a snapshot provider Error codes: E_ACCESSDENIED - The user is not a backup operator E_INVALIDARG - Invalid argument E_OUTOFMEMORY - lock failures. VSS_E_PROVIDER_NOT_REGISTERED - provider not found E_NOINTERFACE - the provider does not support the interface with the given ID. VSS_E_UNEXPECTED_PROVIDER_ERROR - unexpected error when calling QueryInteface [CVssProviderManager::GetProviderInterface() failures] [GetProviderInterfaceInternal() failures] E_OUTOFMEMORY [CoCreateInstance() failures] VSS_E_UNEXPECTED_PROVIDER_ERROR - The provider interface couldn't be created. An error log entry is added describing the error. [QueryInterface failures] VSS_E_UNEXPECTED_PROVIDER_ERROR - Unexpected provider error. An error log entry is added describing the error. [OnLoad() failures] VSS_E_UNEXPECTED_PROVIDER_ERROR - Unexpected provider error. The error code is logged into the event log. VSS_E_PROVIDER_VETO - Expected provider error. The provider already did the logging. [SetContext() failures] VSS_E_UNEXPECTED_PROVIDER_ERROR - Unexpected provider error. The error code is logged into the event log. --*/ { CVssFunctionTracer ft( VSSDBG_COORD, L"CVssCoordinator::GetProviderMgmtInterface" ); try { // Initialize [out] arguments VssZeroOutPtr( ppItf ); // Access check if (!IsAdministrator()) ft.Throw( VSSDBG_COORD, E_ACCESSDENIED, L"The client process is not running under an administrator account"); // Trace parameters ft.Trace( VSSDBG_COORD, L"Parameters: \n" L" ProviderId = " WSTR_GUID_FMT L"\n" L" InterfaceId = " WSTR_GUID_FMT L"\n" L" ppItf = %p\n", GUID_PRINTF_ARG( ProviderId ), GUID_PRINTF_ARG( InterfaceId ), ppItf); // Argument validation BS_ASSERT(ppItf); if (ppItf == NULL) ft.Throw( VSSDBG_COORD, E_INVALIDARG, L"NULL ppItf"); // Right now we support only IVssDifferentialSoftwareSnapshotMgmt. In future version we might support more interfaces. // WARNING: with the current implementation the client may still use QueryInterface to reach other provider's custom interfaces. // We cannot prevent that unless we decide to create a wrapper object around the returned provider interface, in order to // intercept QueryInterface calls also. if ( InterfaceId != IID_IVssDifferentialSoftwareSnapshotMgmt ) ft.Throw( VSSDBG_COORD, E_INVALIDARG, L"Invalid Interface ID"); if (CVssSKU::IsClient()) ft.Throw( VSSDBG_COORD, E_NOTIMPL, L"Method not exposed in client SKU"); // Get the provider interface CComPtr<IVssSnapshotProvider> ptrProviderInterface; BOOL bResult = CVssProviderManager::GetProviderInterface( ProviderId, VSS_CTX_ALL, ptrProviderInterface ); if (!bResult) ft.Throw( VSSDBG_COORD, VSS_E_PROVIDER_NOT_REGISTERED, L"We could not found a provider with the given ID"); BS_ASSERT(ptrProviderInterface); // Query the IID_IVssDifferentialSoftwareSnapshotMgmt interface. // Last call, so we can directly fill out the OUT parameter CComPtr<IVssSnapshotMgmt> ptrProviderSnapshotMgmt; ft.hr = ptrProviderInterface->QueryInternalInterface(IID_IVssSnapshotMgmt, reinterpret_cast<void**>(&ptrProviderSnapshotMgmt)); if (ft.HrFailed()) ft.TranslateProviderError(VSSDBG_COORD, ProviderId, L"IVssSnapshotProvider::QueryInternalInterface(IID_IVssSnapshotMgmt, ...)"); // Get the provider interface ft.hr = ptrProviderSnapshotMgmt->GetProviderMgmtInterface( ProviderId, InterfaceId, ppItf); } VSS_STANDARD_CATCH(ft) // The ft.hr may be an VSS_E_OBJECT_NOT_FOUND or not. return ft.hr; } STDMETHODIMP CVssSnapshotMgmt::QueryVolumesSupportedForSnapshots( IN VSS_ID ProviderId, IN LONG lContext, OUT IVssEnumMgmtObject **ppEnum ) /*++ Routine description: Query volumes (on the local machine) that support snapshots. Parameters: ProviderID - the provider on which we should return the supported volumes for snapshot. ppEnum - the returned list of volumes. Remarks: The result of the query is independent by context. Error codes: S_FALSE - If returning an empty array E_ACCESSDENIED - The user is not an administrator E_INVALIDARG - Invalid argument E_OUTOFMEMORY - lock failures. VSS_E_PROVIDER_NOT_REGISTERED The Provider ID does not correspond to a registered provider. VSS_E_UNEXPECTED_PROVIDER_ERROR Unexpected provider error on calling IsVolumeSupported E_UNEXPECTED Error while getting the list of volumes. (for example dismounting a volume in the middle of an enumeration) A error log entry contains more information. [CVssProviderManager::GetProviderInterface() failures] [lockObj failures] E_OUTOFMEMORY [GetProviderInterfaceInternal() failures] E_OUTOFMEMORY [CoCreateInstance() failures] VSS_E_UNEXPECTED_PROVIDER_ERROR - The provider interface couldn't be created. An error log entry is added describing the error. [QueryInterface failures] VSS_E_UNEXPECTED_PROVIDER_ERROR - Unexpected provider error. An error log entry is added describing the error. [OnLoad() failures] VSS_E_UNEXPECTED_PROVIDER_ERROR - Unexpected provider error. The error code is logged into the event log. VSS_E_PROVIDER_VETO - Expected provider error. The provider already did the logging. [SetContext() failures] VSS_E_UNEXPECTED_PROVIDER_ERROR - Unexpected provider error. The error code is logged into the event log. [provider's QueryVolumesSupportedForSnapshots()] S_FALSE - If returning an empty array E_ACCESSDENIED - The user is not an administrator E_INVALIDARG - Invalid argument E_OUTOFMEMORY - lock failures. E_UNEXPECTED Error while getting the list of volumes. (for example dismounting a volume in the middle of an enumeration) A error log entry contains more information. [CVssSoftwareProvider::IsVolumeSupported() failures] S_OK The function completed with success E_ACCESSDENIED The user is not an administrator. E_INVALIDARG NULL pointers passed as parameters or a volume name in an invalid format. E_OUTOFMEMORY Out of memory or other system resources E_UNEXPECTED Unexpected programming error. Logging not done and not needed. VSS_E_PROVIDER_VETO An error occured while opening the IOCTL channel. The error is logged. [CVssSoftwareProvider::GetVolumeInformation] E_OUTOFMEMORY VSS_E_PROVIDER_VETO An error occured while opening the IOCTL channel. The error is logged. E_UNEXPECTED Unexpected programming error. Nothing is logged. VSS_E_OBJECT_NOT_FOUND The device does not exist or it is not ready. --*/ { CVssFunctionTracer ft( VSSDBG_COORD, L"CVssCoordinator::QueryVolumesSupportedForSnapshots" ); try { // Initialize [out] arguments VssZeroOutPtr( ppEnum ); // Access check if (!IsAdministrator()) ft.Throw( VSSDBG_COORD, E_ACCESSDENIED, L"The client process is not running under an administrator account"); // Trace parameters ft.Trace( VSSDBG_COORD, L"Parameters: \n" L" ProviderId = " WSTR_GUID_FMT L"\n" L" ppEnum = %p\n", GUID_PRINTF_ARG( ProviderId ), ppEnum); // Argument validation if (ProviderId == GUID_NULL) ft.Throw( VSSDBG_COORD, E_INVALIDARG, L"NULL ProviderID"); BS_ASSERT(ppEnum); if (ppEnum == NULL) ft.Throw( VSSDBG_COORD, E_INVALIDARG, L"NULL ppEnum"); // Try to find the provider interface CComPtr<IVssSnapshotProvider> ptrProviderItf; if (!(CVssProviderManager::GetProviderInterface(ProviderId, lContext, ptrProviderItf))) ft.Throw( VSSDBG_COORD, VSS_E_PROVIDER_NOT_REGISTERED, L"Provider not found"); // Query the IID_IVssSnapshotMgmt interface. // Last call, so we can directly fill out the OUT parameter CComPtr<IVssSnapshotMgmt> ptrProviderSnapshotMgmt; ft.hr = ptrProviderItf->QueryInternalInterface(IID_IVssSnapshotMgmt, reinterpret_cast<void**>(&ptrProviderSnapshotMgmt)); if (ft.HrFailed()) ft.TranslateProviderError(VSSDBG_COORD, ProviderId, L"IVssSnapshotProvider::QueryInternalInterface(IID_IVssSnapshotMgmt, ...)"); // Get the provider interface ft.hr = ptrProviderSnapshotMgmt->QueryVolumesSupportedForSnapshots( ProviderId, lContext, ppEnum); if (ft.HrFailed()) ft.TranslateProviderError(VSSDBG_COORD, ProviderId, L"IVssSnapshotProvider::QueryVolumesSupportedForSnapshots(ProviderId,%ld,...)", lContext); } VSS_STANDARD_CATCH(ft) return ft.hr; } /*++ Routine description: Query snapshots on the given volume. Error codes: E_ACCESSDENIED - The user is not a backup operator E_INVALIDARG - Invalid argument E_OUTOFMEMORY - lock failures. --*/ STDMETHODIMP CVssSnapshotMgmt::QuerySnapshotsByVolume( IN VSS_PWSZ pwszVolumeName, IN VSS_ID ProviderId, OUT IVssEnumObject **ppEnum ) { CVssFunctionTracer ft( VSSDBG_COORD, L"CVssCoordinator::QuerySnapshotsByVolume" ); try { // Initialize [out] arguments VssZeroOutPtr( ppEnum ); // Access check if (!IsAdministrator()) ft.Throw( VSSDBG_COORD, E_ACCESSDENIED, L"The client process is not running under an administrator account"); // Trace parameters ft.Trace( VSSDBG_COORD, L"Parameters: \n" L" pwszVolumeName = %s\n" L" ProviderId = " WSTR_GUID_FMT L"\n" L" ppEnum = %p\n", pwszVolumeName, GUID_PRINTF_ARG( ProviderId ), ppEnum); // Argument validation BS_ASSERT(pwszVolumeName); if (pwszVolumeName == NULL) ft.Throw( VSSDBG_COORD, E_INVALIDARG, L"NULL pwszVolumeName"); if (ProviderId == GUID_NULL) ft.Throw( VSSDBG_COORD, E_INVALIDARG, L"NULL ProviderID"); BS_ASSERT(ppEnum); if (ppEnum == NULL) ft.Throw( VSSDBG_COORD, E_INVALIDARG, L"NULL ppEnum"); // Calculate the unique volume name, just to make sure that we have the right path WCHAR wszVolumeNameInternal[nLengthOfVolMgmtVolumeName + 1]; if (!::GetVolumeNameForVolumeMountPointW( pwszVolumeName, wszVolumeNameInternal, ARRAY_LEN(wszVolumeNameInternal))) ft.Throw( VSSDBG_COORD, VSS_E_OBJECT_NOT_FOUND, L"GetVolumeNameForVolumeMountPoint(%s,...) " L"failed with error code 0x%08lx", pwszVolumeName, GetLastError()); BS_ASSERT(::wcslen(wszVolumeNameInternal) != 0); BS_ASSERT(::IsVolMgmtVolumeName( wszVolumeNameInternal )); // Try to find the provider interface CComPtr<IVssSnapshotProvider> ptrProviderItf; if (!(CVssProviderManager::GetProviderInterface(ProviderId, VSS_CTX_ALL, ptrProviderItf))) ft.Throw( VSSDBG_COORD, VSS_E_PROVIDER_NOT_REGISTERED, L"Provider not found"); // Query the IID_IVssSnapshotMgmt interface. // Last call, so we can directly fill out the OUT parameter CComPtr<IVssSnapshotMgmt> ptrProviderSnapshotMgmt; ft.hr = ptrProviderItf->QueryInternalInterface(IID_IVssSnapshotMgmt, reinterpret_cast<void**>(&ptrProviderSnapshotMgmt)); if (ft.HrFailed()) ft.TranslateProviderError(VSSDBG_COORD, ProviderId, L"IVssSnapshotProvider::QueryInternalInterface(IID_IVssSnapshotMgmt, ...)"); // Get the provider interface ft.hr = ptrProviderSnapshotMgmt->QuerySnapshotsByVolume( wszVolumeNameInternal, ProviderId, ppEnum); if (ft.HrFailed()) ft.TranslateProviderError(VSSDBG_COORD, ProviderId, L"IVssSnapshotProvider::QuerySnapshotsByVolume(%s,...)", wszVolumeNameInternal); } VSS_STANDARD_CATCH(ft) return ft.hr; }
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
7efa9adfa22c922807a43d93461697dfac6f75e6
3328d663f713ce6d5e78d190f50ae7e10b48ba1f
/maze/ConsoleApplication6/ConsoleApplication6.cpp
206a0f93891d860a6bd4909b96925967e2d747e5
[]
no_license
deadTrail/gameAcademy
a3316b71810ef98e574ff87dfd05cd16547428f8
5c9e15aabff4d0e7734f190e94cc65fe1cf734fd
refs/heads/master
2021-01-01T04:03:34.390882
2017-07-28T12:57:49
2017-07-28T12:57:49
97,113,069
0
0
null
null
null
null
UHC
C++
false
false
246
cpp
// GameAcademyLecture_Array.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다. // #include "keyprocessing.h" #include "mapDraw.h" int main() { Title(); while (true) { KeyProcessing(); MapPrint(); } return 0; }
[ "erttll135@gmail.com" ]
erttll135@gmail.com
1af85f5d9f90411ecbafcf1e6c3cda22262b5676
635ea7e6b37dec361fc7304ab04116a6aba63f69
/src/related_data.h
80ecc8cd96f69863aa83e1153ea245a5241ec9b4
[ "MIT" ]
permissive
itsaboutcode/toggldesktop
409524ebab159b736c0b4206561fcb7b90ce9f8c
e28cc230963028bc4746b70441658cd8fbac8447
refs/heads/master
2021-01-17T09:05:27.595923
2014-03-16T11:24:11
2014-03-16T11:24:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
585
h
// Copyright 2014 Toggl Desktop developers. #ifndef SRC_RELATED_DATA_H_ #define SRC_RELATED_DATA_H_ #include <vector> #include "./workspace.h" #include "./client.h" #include "./project.h" #include "./task.h" #include "./tag.h" #include "./time_entry.h" namespace kopsik { class RelatedData { public: std::vector<Workspace *> Workspaces; std::vector<Client *> Clients; std::vector<Project *> Projects; std::vector<Task *> Tasks; std::vector<Tag *> Tags; std::vector<TimeEntry *> TimeEntries; }; } // namespace kopsik #endif // SRC_RELATED_DATA_H_
[ "tanel.lebedev@gmail.com" ]
tanel.lebedev@gmail.com
9bc4220b76cd567ee85a58a338613c941d3961c2
8dece6eb7431870bb516535fa0110d867145dd7f
/daemon/actors/PlayerActor.cpp
33297cd7d3e1a46870121d82f366b71256871a20
[ "BSD-2-Clause" ]
permissive
ChowZenki/SeventhUmbral
7f3862cc44ec6ccdbeeca5998e72257cce2b002e
0b83e1013afbe84ed47ce963ebf7d280a1a3c310
refs/heads/master
2020-04-07T14:19:09.980864
2014-08-24T23:46:11
2014-08-24T23:46:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,715
cpp
#include "PlayerActor.h" #include "Endian.h" #include "string_format.h" #include "../Log.h" #include "../GlobalData.h" #include "../Instance.h" #include "../DatabaseConnectionManager.h" #include "../GameServer_Ingame.h" #include "../packets/BattleActionPacket.h" #include "../packets/ChangeEquipmentSlotPacket.h" #include "../packets/FinishScriptPacket.h" #include "../packets/SetMusicPacket.h" #include "../packets/SetActorAppearancePacket.h" #include "../packets/SetActorStatePacket.h" #include "../packets/SetActorPropertyPacket.h" #include "../packets/SetTempInventoryPacket.h" #include "../packets/UnknownInventoryPacket.h" #include "../packets/CommandRequestReplyPacket.h" #define LOG_NAME "PlayerActor" #define ITEMDEFID_WEATHERED_SHORTBOW 4070001 #define ITEMDEFID_WEATHERED_WARAXE 4040001 #define ITEMDEFID_WEATHERED_GLADIUS 4030010 #define ITEMDEFID_WEATHERED_SPEAR 4080201 #define ITEMDEFID_WEATHERED_HORA 4020001 #define ITEMDEFID_WEATHERED_SCEPTER 5020001 #define ITEMDEFID_WEATHERED_CANE 5030101 #define ITEMDEFID_WEATHERED_ALEMBIC 6070001 #define ITEMDEFID_WEATHERED_DOMINGHAMMER 6030001 #define ITEMDEFID_WEATHERED_CROSSPEINHAMMER 6020001 #define ITEMDEFID_WEATHERED_HATCHET 7020002 #define ITEMDEFID_WEATHERED_SAW 6010001 #define ITEMDEFID_WEATHERED_SKILLET 6080001 #define ITEMDEFID_WEATHERED_FISHINGROD 7030002 #define ITEMDEFID_WEATHERED_CHASERHAMMER 6040001 #define ITEMDEFID_WEATHERED_HEADKNIFE 6050003 #define ITEMDEFID_WEATHERED_PICKAXE 7010005 #define ITEMDEFID_RUSTY_NEEDLE 6060006 #define JOBID_ARCHER (7) #define JOBID_MARAUDER (4) #define JOBID_GLADIATOR (3) #define JOBID_LANCER (8) #define JOBID_PUGILIST (2) #define JOBID_THAUMATURGE (22) #define JOBID_CONJURER (23) #define JOBID_ALCHEMIST (35) #define JOBID_ARMORER (31) #define JOBID_BLACKSMITH (30) #define JOBID_BOTANIST (40) #define JOBID_CARPENTER (29) #define JOBID_CULINARIAN (36) #define JOBID_FISHER (41) #define JOBID_GOLDSMITH (32) #define JOBID_LEATHERWORKER (33) #define JOBID_MINER (39) #define JOBID_WEAVER (34) #define SKILLID_STONE_THROW (0xA0F05662) #define SKILLID_PUMMEL (0xA0F069E6) #define SKILLID_FAST_BLADE (0xA0F06A0E) #define SKILLID_HEAVY_SWING (0xA0F06A36) #define SKILLID_HEAVY_SHOT (0xA0F06A5C) #define SKILLID_TRUE_THURST (0xA0F06A85) #define SKILLID_STONE (0xA0F06ADB) #define SKILLID_THUNDER (0xA0F06AB1) const CPlayerActor::WeaponJobMap CPlayerActor::m_weaponJobs = { std::make_pair(ITEMDEFID_WEATHERED_SHORTBOW, JOBID_ARCHER), std::make_pair(ITEMDEFID_WEATHERED_WARAXE, JOBID_MARAUDER), std::make_pair(ITEMDEFID_WEATHERED_GLADIUS, JOBID_GLADIATOR), std::make_pair(ITEMDEFID_WEATHERED_SPEAR, JOBID_LANCER), std::make_pair(ITEMDEFID_WEATHERED_HORA, JOBID_PUGILIST), std::make_pair(ITEMDEFID_WEATHERED_SCEPTER, JOBID_THAUMATURGE), std::make_pair(ITEMDEFID_WEATHERED_CANE, JOBID_CONJURER), std::make_pair(ITEMDEFID_WEATHERED_ALEMBIC, JOBID_ALCHEMIST), std::make_pair(ITEMDEFID_WEATHERED_DOMINGHAMMER, JOBID_ARMORER), std::make_pair(ITEMDEFID_WEATHERED_CROSSPEINHAMMER, JOBID_BLACKSMITH), std::make_pair(ITEMDEFID_WEATHERED_HATCHET, JOBID_BOTANIST), std::make_pair(ITEMDEFID_WEATHERED_SAW, JOBID_CARPENTER), std::make_pair(ITEMDEFID_WEATHERED_SKILLET, JOBID_CULINARIAN), std::make_pair(ITEMDEFID_WEATHERED_FISHINGROD, JOBID_FISHER), std::make_pair(ITEMDEFID_WEATHERED_CHASERHAMMER, JOBID_GOLDSMITH), std::make_pair(ITEMDEFID_WEATHERED_HEADKNIFE, JOBID_LEATHERWORKER), std::make_pair(ITEMDEFID_WEATHERED_PICKAXE, JOBID_MINER), std::make_pair(ITEMDEFID_RUSTY_NEEDLE, JOBID_WEAVER), }; const CPlayerActor::JobSkillMap CPlayerActor::m_jobSkills = { std::make_pair(JOBID_ARCHER, SKILLID_HEAVY_SHOT), std::make_pair(JOBID_MARAUDER, SKILLID_HEAVY_SWING), std::make_pair(JOBID_GLADIATOR, SKILLID_FAST_BLADE), std::make_pair(JOBID_LANCER, SKILLID_TRUE_THURST), std::make_pair(JOBID_PUGILIST, SKILLID_PUMMEL), std::make_pair(JOBID_THAUMATURGE, SKILLID_THUNDER), std::make_pair(JOBID_CONJURER, SKILLID_STONE), }; #define AUTO_ATTACK_DELAY 5.0f CPlayerActor::CPlayerActor(uint32 characterId) : m_characterId(characterId) { m_dbConnection = CDatabaseConnectionManager::GetInstance().CreateConnection(); try { auto query = string_format("SELECT * FROM ffxiv_characters WHERE id = %d", m_characterId); auto result = m_dbConnection.Query(query.c_str()); if(result.GetRowCount() != 0) { m_character = CCharacter(result); } } catch(const std::exception& exception) { CLog::GetInstance().LogError(LOG_NAME, "Failed to fetch character (id = %d): %s", m_characterId, exception.what()); } //Add some items in the inventory m_inventory.push_back(INVENTORY_ITEM(0x4000, ITEMDEFID_WEATHERED_SHORTBOW)); m_inventory.push_back(INVENTORY_ITEM(0x4001, ITEMDEFID_WEATHERED_WARAXE)); m_inventory.push_back(INVENTORY_ITEM(0x4002, ITEMDEFID_WEATHERED_GLADIUS)); m_inventory.push_back(INVENTORY_ITEM(0x4003, ITEMDEFID_WEATHERED_SPEAR)); m_inventory.push_back(INVENTORY_ITEM(0x4004, ITEMDEFID_WEATHERED_HORA)); m_inventory.push_back(INVENTORY_ITEM(0x4005, ITEMDEFID_WEATHERED_SCEPTER)); m_inventory.push_back(INVENTORY_ITEM(0x4006, ITEMDEFID_WEATHERED_CANE)); m_inventory.push_back(INVENTORY_ITEM(0x4007, ITEMDEFID_WEATHERED_ALEMBIC)); m_inventory.push_back(INVENTORY_ITEM(0x4008, ITEMDEFID_WEATHERED_DOMINGHAMMER)); m_inventory.push_back(INVENTORY_ITEM(0x4009, ITEMDEFID_WEATHERED_CROSSPEINHAMMER)); m_inventory.push_back(INVENTORY_ITEM(0x400A, ITEMDEFID_WEATHERED_HATCHET)); m_inventory.push_back(INVENTORY_ITEM(0x400B, ITEMDEFID_WEATHERED_SAW)); m_inventory.push_back(INVENTORY_ITEM(0x400C, ITEMDEFID_WEATHERED_SKILLET)); m_inventory.push_back(INVENTORY_ITEM(0x400D, ITEMDEFID_WEATHERED_FISHINGROD)); m_inventory.push_back(INVENTORY_ITEM(0x400E, ITEMDEFID_WEATHERED_CHASERHAMMER)); m_inventory.push_back(INVENTORY_ITEM(0x400F, ITEMDEFID_WEATHERED_HEADKNIFE)); m_inventory.push_back(INVENTORY_ITEM(0x4010, ITEMDEFID_WEATHERED_PICKAXE)); m_inventory.push_back(INVENTORY_ITEM(0x4011, ITEMDEFID_RUSTY_NEEDLE)); } CPlayerActor::~CPlayerActor() { } void CPlayerActor::Update(float dt) { if(m_isActiveMode && m_lockOnId != EMPTY_LOCKON_ID) { m_autoAttackTimer -= dt; if(m_autoAttackTimer < 0) { static const uint32 autoAttackDamage = 10; { auto packet = std::make_shared<CBattleActionPacket>(); packet->SetActionSourceId(m_id); packet->SetActionTargetId(m_lockOnId); packet->SetAnimationId(CBattleActionPacket::ANIMATION_PLAYER_ATTACK); packet->SetDescriptionId(CBattleActionPacket::DESCRIPTION_PLAYER_ATTACK); packet->SetDamageType(CBattleActionPacket::DAMAGE_NORMAL); packet->SetDamage(autoAttackDamage); packet->SetFeedbackId(CBattleActionPacket::FEEDBACK_NORMAL); packet->SetAttackSide(CBattleActionPacket::SIDE_FRONT); GlobalPacketReady(this, packet); } m_autoAttackTimer += AUTO_ATTACK_DELAY; DealDamageToTarget(autoAttackDamage); } } } const CCharacter& CPlayerActor::GetCharacter() const { return m_character; } const Inventory& CPlayerActor::GetInventory() const { return m_inventory; } void CPlayerActor::SetSelection(uint32 selectedActorId) { m_lockOnId = selectedActorId; } void CPlayerActor::ProcessCommandRequest(uint32 targetId, const PacketData& commandPacket) { switch(targetId) { case 0xA0F02EE9: EquipItem(commandPacket); break; case 0xA0F05E26: DoEmote(commandPacket); break; case 0xA0F05EA2: TrashItem(commandPacket); break; default: CLog::GetInstance().LogDebug(LOG_NAME, "Unknown target id (0x%0.8X).", targetId); break; } } void CPlayerActor::ProcessCommandForced(uint32 targetId) { switch(targetId) { case 0xA0F05209: SwitchToActiveMode(); break; case 0xA0F0520A: SwitchToPassiveMode(); break; default: CLog::GetInstance().LogDebug(LOG_NAME, "Unknown commandForced target id (0x%0.8X).", targetId); break; } { auto packet = std::make_shared<CFinishScriptPacket>(); packet->SetScriptSourceId(m_id); packet->SetScriptName("commandForced"); LocalPacketReady(this, packet); } } void CPlayerActor::ProcessCommandDefault(uint32 targetId) { switch(targetId) { case SKILLID_STONE_THROW: case SKILLID_PUMMEL: case SKILLID_FAST_BLADE: case SKILLID_HEAVY_SWING: case SKILLID_HEAVY_SHOT: case SKILLID_TRUE_THURST: case SKILLID_STONE: case SKILLID_THUNDER: ExecuteBattleSkill(CBattleActionPacket::ANIMATION_HEAVY_SWING, 0x08100000 | (targetId & 0xFFFF), 20); break; default: CLog::GetInstance().LogDebug(LOG_NAME, "Unknown commandDefault target id (0x%0.8X).", targetId); break; } { auto packet = std::make_shared<CFinishScriptPacket>(); packet->SetScriptSourceId(m_id); packet->SetScriptName("commandDefault"); LocalPacketReady(this, packet); } } void CPlayerActor::EquipItem(const PacketData& commandPacket) { uint32 itemId = Framework::CEndian::FromMSBF32(*reinterpret_cast<const uint32*>(&commandPacket[0x6E])); CLog::GetInstance().LogDebug(LOG_NAME, "Equipping item 0x%0.8X.", itemId); //itemId will be 0 if player wants to unequip an item if(itemId == 0) { CLog::GetInstance().LogDebug(LOG_NAME, "Unequip: %s.", CPacketUtils::DumpPacket(commandPacket).c_str()); } auto inventoryItemIterator = std::find_if(std::begin(m_inventory), std::end(m_inventory), [itemId](const INVENTORY_ITEM& item) { return item.itemId == itemId; }); if(inventoryItemIterator == std::end(m_inventory)) return; const auto& inventoryItem = *inventoryItemIterator; size_t itemIndex = inventoryItemIterator - std::begin(m_inventory); auto itemAppearance = CGlobalData::GetInstance().GetWeaponAppearanceDatabase().GetAppearanceForItemId(inventoryItem.itemDefId); if(itemAppearance) { auto weapon1AttrIterator = itemAppearance->attributes.find("Weapon1"); auto weapon2AttrIterator = itemAppearance->attributes.find("Weapon2"); if(weapon1AttrIterator != std::end(itemAppearance->attributes)) { m_character.weapon1 = weapon1AttrIterator->second; } if(weapon2AttrIterator != std::end(itemAppearance->attributes)) { m_character.weapon2 = weapon2AttrIterator->second; } } uint8 newJob = JOBID_GLADIATOR; //Default is Gladiator auto weaponJobIterator = m_weaponJobs.find(inventoryItem.itemDefId); if(weaponJobIterator != std::end(m_weaponJobs)) { newJob = weaponJobIterator->second; } uint32 jobSkill = SKILLID_STONE_THROW; auto jobSkillIterator = m_jobSkills.find(newJob); if(jobSkillIterator != std::end(m_jobSkills)) { jobSkill = jobSkillIterator->second; } { auto packet = std::make_shared<CSetActorAppearancePacket>(); packet->SetAppearanceItem(0x00, CCharacter::GetModelFromTribe(m_character.tribe)); packet->SetAppearanceItem(0x01, m_character.size); packet->SetAppearanceItem(0x02, m_character.GetColorInfo()); packet->SetAppearanceItem(0x03, m_character.GetFaceInfo()); packet->SetAppearanceItem(0x04, m_character.hairStyle << 10); packet->SetAppearanceItem(0x05, m_character.voice); packet->SetAppearanceItem(0x06, m_character.weapon1); packet->SetAppearanceItem(0x07, m_character.weapon2); packet->SetAppearanceItem(0x08, 0); packet->SetAppearanceItem(0x09, 0); packet->SetAppearanceItem(0x0A, 0); packet->SetAppearanceItem(0x0B, 0); packet->SetAppearanceItem(0x0C, 0); packet->SetAppearanceItem(0x0D, m_character.headGear); packet->SetAppearanceItem(0x0E, m_character.bodyGear); packet->SetAppearanceItem(0x0F, m_character.legsGear); packet->SetAppearanceItem(0x10, m_character.handsGear); packet->SetAppearanceItem(0x11, m_character.feetGear); packet->SetAppearanceItem(0x12, m_character.waistGear); packet->SetAppearanceItem(0x13, 0); packet->SetAppearanceItem(0x14, m_character.rightEarGear); packet->SetAppearanceItem(0x15, m_character.leftEarGear); packet->SetAppearanceItem(0x16, 0); packet->SetAppearanceItem(0x17, 0); packet->SetAppearanceItem(0x18, m_character.rightFingerGear); packet->SetAppearanceItem(0x19, m_character.leftFingerGear); packet->SetAppearanceItem(0x1A, 0); packet->SetAppearanceItem(0x1B, 0); GlobalPacketReady(this, packet); } { { auto packet = std::make_shared<CUnknownInventoryPacket_016D>(); LocalPacketReady(this, packet); } { auto packet = std::make_shared<CUnknownInventoryPacket_0146>(); packet->SetActorId(m_id); packet->SetUnknown0(200); //Inventory size? LocalPacketReady(this, packet); } { auto packet = std::make_shared<CSetTempInventoryPacket>(); packet->SetItemCount(1); packet->SetItemIndex(0, itemIndex + 1); packet->SetItemId(0, inventoryItem.itemId); packet->SetItemDefinitionId(0, inventoryItem.itemDefId); LocalPacketReady(this, packet); } { auto packet = std::make_shared<CUnknownInventoryPacket_0146>(); packet->SetActorId(m_id); packet->SetUnknown0(0x23); packet->SetUnknown1(0xFE); LocalPacketReady(this, packet); } { auto packet = std::make_shared<CChangeEquipmentSlotPacket>(); packet->SetSlotId(CChangeEquipmentSlotPacket::SLOT_MAINHAND); packet->SetItemIndex(itemIndex + 1); LocalPacketReady(this, packet); } for(unsigned int i = 0; i < 2; i++) { auto packet = std::make_shared<CUnknownInventoryPacket_0147>(); LocalPacketReady(this, packet); } { auto packet = std::make_shared<CUnknownInventoryPacket_016E>(); LocalPacketReady(this, packet); } } //Update job and level { auto packet = std::make_shared<CSetActorPropertyPacket>(); packet->AddSetByte(CSetActorPropertyPacket::VALUE_JOB, newJob); packet->AddSetByte(CSetActorPropertyPacket::VALUE_LEVEL, 0x01); packet->AddTargetProperty("charaWork/stateForAll"); GlobalPacketReady(this, packet); } //Update skill bar { auto packet = std::make_shared<CSetActorPropertyPacket>(); packet->AddSetWord(0xCA132BC5, jobSkill); //Action Bar(1, 1) -> New Skill packet->AddTargetProperty("charaWork/command"); GlobalPacketReady(this, packet); } //This seems to update the UI for level and job { auto packet = std::make_shared<CSetActorPropertyPacket>(); packet->AddSetWord(0xE98BFFBF, 0); packet->AddTargetProperty("charaWork/battleStateForSelf"); GlobalPacketReady(this, packet); } } void CPlayerActor::TrashItem(const PacketData& commandPacket) { uint32 itemId = *reinterpret_cast<const uint32*>(&commandPacket[0x6A]); CLog::GetInstance().LogDebug(LOG_NAME, "Trashing Item: 0x%0.8X", itemId); } void CPlayerActor::DoEmote(const PacketData& commandPacket) { uint8 emoteId = commandPacket[0x55]; CLog::GetInstance().LogDebug(LOG_NAME, "Executing Emote 0x%0.2X", emoteId); //In: 0x6F, Out: (0x0500B000, 0x526E) -> Dance //In: 0x??, Out: (0x5000C000, 0x????) -> Angry Pointing //In: 0x??, Out: (0x5000D000, 0x????) -> Snooze //In: 0x??, Out: (0x5000E000, 0x????) -> Frustrated //In: 0x??, Out: (0x5000F000, 0x????) -> Military Sign //In: 0x??, Out: (0x50011000, 0x????) -> Shrug //In: 0x??, Out: (0x50012000, 0x????) -> Success Baby //In: 0x77, Out: (0x05013000, 0x52BE) -> Kneel //In: 0x??, Out: (0x50014000, 0x????) -> Chuckle //In: 0x??, Out: (0x50015000, 0x????) -> Laugh //In: 0x??, Out: (0x50016000, 0x????) -> Look //In: 0x??, Out: (0x50018000, 0x????) -> No //In: 0x??, Out: (0x50019000, 0x????) -> Never uint32 animationId = 0x0500B000; uint32 descriptionId = 0x526E; //Wrong emotes //gcsalute -> grovel //grovel -> serpent salute //blowkiss -> disappointed //pray -> firedance //airquote -> pray //pose -> blowkiss //happy -> maelstorm salute //disappointed -> pose if(emoteId >= 0x64 && emoteId < 0xA0) { animationId = 0x05000000 + ((emoteId - 0x64) << 12); } /* switch(emoteId) { case 0x6A: //Cheer animationId = 0x05006000; break; case 0x6F: //Dance animationId = 0x0500B000; break; case 0x71: //Doze animationId = 0x0500D000; break; case 0x75: //Huh animationId = 0x05011000; break; case 0x78: //Chuckle animationId = 0x05014000; break; case 0x79: //Laugh animationId = 0x05015000; break; } */ { auto packet = std::make_shared<CCommandRequestReplyPacket>(); packet->SetAnimationId(animationId); packet->SetActorId(m_id); packet->SetDescriptionId(descriptionId); GlobalPacketReady(this, packet); } // printf("Anim Id = 0x%0.8X, Desc Id = 0x%0.8X\r\n", animationId, descriptionId); // animationId += 0x1000; // descriptionId += 1; } void CPlayerActor::SwitchToActiveMode() { { auto packet = std::make_shared<CSetActorStatePacket>(); packet->SetState(CSetActorStatePacket::STATE_ACTIVE); GlobalPacketReady(this, packet); } { auto packet = std::make_shared<CSetActorPropertyPacket>(); packet->AddSetShort(CSetActorPropertyPacket::VALUE_TP, 3000); packet->AddTargetProperty("charaWork/stateAtQuicklyForAll"); GlobalPacketReady(this, packet); } { auto packet = std::make_shared<CBattleActionPacket>(); packet->SetActionSourceId(m_id); packet->SetActionTargetId(m_id); packet->SetAnimationId(CBattleActionPacket::ANIMATION_SHEATH_UNSHEATH); packet->SetDescriptionId(CBattleActionPacket::DESCRIPTION_ENTER_BATTLE); packet->SetFeedbackId(1); packet->SetAttackSide(CBattleActionPacket::SIDE_NORMAL); GlobalPacketReady(this, packet); } { auto packet = std::make_shared<CSetMusicPacket>(); packet->SetMusicId(CSetMusicPacket::MUSIC_BLACKSHROUD_BATTLE); LocalPacketReady(this, packet); } m_isActiveMode = true; m_autoAttackTimer = AUTO_ATTACK_DELAY; } void CPlayerActor::SwitchToPassiveMode() { { auto packet = std::make_shared<CSetActorStatePacket>(); packet->SetState(CSetActorStatePacket::STATE_PASSIVE); GlobalPacketReady(this, packet); } { auto packet = std::make_shared<CBattleActionPacket>(); packet->SetActionSourceId(m_id); packet->SetActionTargetId(m_id); packet->SetAnimationId(CBattleActionPacket::ANIMATION_SHEATH_UNSHEATH); packet->SetDescriptionId(CBattleActionPacket::DESCRIPTION_LEAVE_BATTLE); packet->SetFeedbackId(1); packet->SetAttackSide(CBattleActionPacket::SIDE_NORMAL); GlobalPacketReady(this, packet); } { auto packet = std::make_shared<CSetMusicPacket>(); packet->SetMusicId(CSetMusicPacket::MUSIC_SHROUD); LocalPacketReady(this, packet); } m_isActiveMode = false; } void CPlayerActor::ExecuteBattleSkill(uint32 animationId, uint32 descriptionId, uint32 damage) { { auto packet = std::make_shared<CBattleActionPacket>(); packet->SetActionSourceId(m_id); packet->SetActionTargetId(m_lockOnId); packet->SetAnimationId(animationId); packet->SetDescriptionId(descriptionId); packet->SetDamageType(CBattleActionPacket::DAMAGE_NORMAL); packet->SetDamage(damage); packet->SetFeedbackId(CBattleActionPacket::FEEDBACK_NORMAL); packet->SetAttackSide(CBattleActionPacket::SIDE_FRONT); GlobalPacketReady(this, packet); } DealDamageToTarget(damage); //Reset auto attack timer m_autoAttackTimer = AUTO_ATTACK_DELAY; } void CPlayerActor::DealDamageToTarget(uint32 damage) { auto targetActor = m_instance->GetActor<CActor>(m_lockOnId); if(targetActor == nullptr) { CLog::GetInstance().LogError(LOG_NAME, "Couldn't find target actor."); } else { targetActor->TakeDamage(this, damage); } }
[ "jpd002@b2dc461f-b7ed-4520-8422-8e9c2511a46d" ]
jpd002@b2dc461f-b7ed-4520-8422-8e9c2511a46d
fd133c8dd44d6c78fb433bfe419b0b1708eac036
d161c240dd8d0615a9d9c16b7fb00a8bfbd197e1
/Marsh.cpp
050f575c611b9e0bc2b08dea292b06c8c90256d0
[]
no_license
MarkusRabus/OptimalExtraction-Cpp
ea28dbc3e3f6ffecbbddf489ebc07981fc2f6ae5
6e62ad34235ef8f96c913bc7bc075edd75c7c797
refs/heads/master
2022-08-02T00:47:47.504840
2020-06-02T15:14:14
2020-06-02T15:14:14
268,626,832
0
0
null
null
null
null
UTF-8
C++
false
false
8,409
cpp
#include "Marsh.h" namespace py = pybind11; Eigen::MatrixXd ObtainP(Eigen::MatrixXd &inputImage, Eigen::MatrixXd &imageMask, Eigen::VectorXd &traceCenter, int aperture, double polySpacing, int polyDegree, double RON, double GAIN, double RejectSigma) { //size_t fitWidth {0}; //fitWidth goes over i = columns colsInput = inputImage.cols(); rowsInput = inputImage.rows(); npoly = (int)(2*(int)((aperture/polySpacing)+0.5)+1); //2 * (int)((2.0 * aperture) / polySpacing / 2.) + 1; C_const = -1 * ( polySpacing * (1.0 + (( (double)npoly - 1.0 ) / 2.0 )) ); // Define Matrices used for computation: Eigen::MatrixXd polyCenters(rowsInput,(size_t)npoly); Eigen::VectorXd minAperture(rowsInput); Eigen::VectorXd maxAperture(rowsInput); Eigen::MatrixXd imageVariance(rowsInput, colsInput); Eigen::VectorXd standardSpectrum(rowsInput); Eigen::MatrixXd JMatrix( rowsInput, (size_t)(2 * (polyDegree+1) - 1) ); Eigen::MatrixXd QMatrix( npoly, colsInput * rowsInput ); Eigen::MatrixXd invEvariance(rowsInput, colsInput); Eigen::MatrixXd weightedE(rowsInput, colsInput); Eigen::VectorXd XVector( (polyDegree+1)* (size_t)npoly); Eigen::MatrixXd CMatrix( (polyDegree+1) * (size_t)npoly, (polyDegree+1) * (size_t)npoly ); Eigen::VectorXd Bsoln; Eigen::MatrixXd Acoeffs( (size_t)npoly, (polyDegree+1) ); Eigen::MatrixXd GkjMatrix((size_t)npoly, rowsInput); Eigen::MatrixXd PMatrix(rowsInput, colsInput); Eigen::MatrixXd newSpectrum(rowsInput, colsInput); Eigen::MatrixXd newImageVariance(rowsInput, colsInput); //create an array of trace centers equation (9) in Marsh et al. (1989) for (size_t id_j = 0; id_j < rowsInput; id_j++){ for (size_t id_k = 0; id_k < (size_t)npoly; id_k++){ polyCenters(id_j,id_k) = traceCenter(id_j) + (((-npoly/2+ 1) + (double)id_k) * polySpacing) - polySpacing/2; } } for (size_t id_j {0}; id_j < rowsInput; id_j++){ minAperture(id_j) = traceCenter(id_j) + C_const + polySpacing + 1.0; maxAperture(id_j) = traceCenter(id_j) + C_const + (polySpacing*npoly) ; } // Calculate image variance Vij calculateImageVariance(imageVariance, inputImage, imageMask, GAIN, RON); // Calculate the first estimate Sum_i Dij calculateStandardSpectrum(standardSpectrum, inputImage, imageMask, minAperture, maxAperture); // Calculate Ji calculateJmatrix(JMatrix); // Q matrix, compare equations (6) and (11) in Marsh et al. 1989 calculateQmatrix( QMatrix, polyCenters, minAperture, maxAperture, polySpacing, rowsInput, colsInput, npoly ); // Start the outlier rejection iteration do{ calculateInvEvariance(invEvariance, imageVariance, imageMask, standardSpectrum, minAperture, maxAperture); calculateWeightedE( weightedE, inputImage, imageMask, imageVariance, standardSpectrum, minAperture, maxAperture); calculateXVector(XVector, imageMask, weightedE, QMatrix, JMatrix, minAperture, maxAperture, polyDegree, npoly); calculateCmatrix(CMatrix, QMatrix, invEvariance, JMatrix, imageMask, minAperture, maxAperture, polyDegree, npoly); // Solve linear system C_qp * B_q = X_q Bsoln = CMatrix.ldlt().solve(XVector); // reformat solution of lineas system to fit A_nk calculateAcoeffs(Acoeffs, Bsoln, polyDegree, npoly); calculateGkjMatrix(GkjMatrix, imageMask, Acoeffs, JMatrix, polyDegree); calculatePMatrix( PMatrix, imageMask, QMatrix, GkjMatrix, minAperture, maxAperture, npoly); normalizeP(PMatrix, minAperture, maxAperture); calculateNewSpectrum(newSpectrum, PMatrix, standardSpectrum, minAperture, maxAperture, rowsInput, colsInput); calculateImageVariance(newImageVariance, newSpectrum, imageMask, GAIN, RON); nrBadPixels = outlierRejection( imageMask, inputImage, newSpectrum, newImageVariance, minAperture, maxAperture, RejectSigma); nrIterations += 1; std::cout << "Iteration " << nrIterations << " finished! \n"; std::cout << "Found " << nrBadPixels << " bad pixels\n"; } // iterate through while rejected pixels are found while(nrBadPixels > 0); return PMatrix; } /* */ Eigen::MatrixXd getSpectrum(Eigen::MatrixXd &inputImage, Eigen::MatrixXd &imageMask, Eigen::MatrixXd &PMatrix, Eigen::VectorXd &traceCenter, int aperture, double polySpacing, int polyDegree, double RON, double GAIN, double cosmicSigma) { colsInput = inputImage.cols(); // rowsInput = inputImage.rows(); // nlam npoly = (int)(2*(int)((aperture/polySpacing)+0.5)+1); //2 * (int)((2.0 * aperture) / polySpacing / 2.) + 1; C_const = -1 * ( polySpacing * (1.0 + (( (double)npoly - 1.0 ) / 2.0 )) ); // Define Matrices used for computation: Eigen::MatrixXd polyCenters(rowsInput,(size_t)npoly); Eigen::VectorXd minAperture(rowsInput); Eigen::VectorXd maxAperture(rowsInput); Eigen::MatrixXd imageVariance(rowsInput, colsInput); Eigen::VectorXd standardSpectrum(rowsInput); Eigen::VectorXd weightNormFactor(rowsInput); Eigen::MatrixXd normalizedWeight(rowsInput, colsInput); Eigen::VectorXd weightedFlux(rowsInput); Eigen::VectorXd weightedVariance(rowsInput); //create an array of trace centers equation (9) in Marsh et al. (1989) for (size_t id_j = 0; id_j < rowsInput; id_j++){ for (size_t id_k = 0; id_k < (size_t)npoly; id_k++){ polyCenters(id_j,id_k) = traceCenter(id_j) + (((-npoly/2+ 1) + (double)id_k) * polySpacing) - polySpacing/2; } } for (size_t id_j {0}; id_j < rowsInput; id_j++){ minAperture(id_j) = traceCenter(id_j) + C_const + polySpacing + 1.0; maxAperture(id_j) = traceCenter(id_j) + C_const + (polySpacing*npoly) ; } calculateStandardSpectrum(standardSpectrum, inputImage, imageMask, minAperture, maxAperture); // Start the iterative cosmic ray rejection. do{ calculateImageVariance(imageVariance, inputImage, imageMask, GAIN, RON); calculateWNormFactor(weightNormFactor, imageVariance, imageMask, PMatrix, minAperture, maxAperture); calculateWeight(normalizedWeight, weightNormFactor, imageVariance, imageMask, PMatrix, minAperture, maxAperture); calculateWeightedFlux(weightedFlux, normalizedWeight, inputImage, imageMask, minAperture, maxAperture); calculateWeightedVar( weightedVariance, normalizedWeight, imageVariance, imageMask, minAperture, maxAperture); nrBadPixels = CosmicRayRejection( imageMask, inputImage, imageVariance, PMatrix, weightedFlux, weightedVariance, minAperture, maxAperture, cosmicSigma); nrIterations += 1; std::cout << "Iteration " << nrIterations << " finished! \n"; } while(nrBadPixels > 0); Eigen::MatrixXd Spectrum(3, rowsInput); for(size_t id_j {0}; id_j < rowsInput; id_j++){ Spectrum(0, id_j) = (double)id_j; Spectrum(1, id_j) = weightedFlux(id_j); Spectrum(2, id_j) = (double)1. / weightedVariance(id_j); } return Spectrum; } PYBIND11_MODULE(Marsh, m) { m.doc() = "Utities to extract spectra"; // optional module docstring m.def("ObtainP", &ObtainP, "Method which returns the spatial light fractions. We assume for all Matrices: rows are the disperion direction and columns are the spatial direction."); m.def("getSpectrum", &getSpectrum, "Method which returns the optimal extracted spectrum.We assume for all Matrices: rows are the disperion direction and columns are the spatial direction."); }
[ "markus.rabus@gmail.com" ]
markus.rabus@gmail.com
f9482b399782b24bffdc9e924ee91d3c772e0191
f64f58aad1a5f4602440df8521c2d3bc25f6f6a2
/src/Profiler/source/PerfTopProfiler.cc
1ec71f7b432be6e29da9697a116464732adad2a2
[ "Apache-2.0" ]
permissive
tera-insights/grokit
ab0f41a8f213739b1bac6ef69815a177f75f914a
af55cc1d22b816e9f8424199cdc2e0264288bc8a
refs/heads/master
2020-04-15T17:29:49.981823
2017-08-26T22:24:52
2017-08-26T22:24:52
29,202,011
9
5
null
null
null
null
UTF-8
C++
false
false
11,020
cc
// Copyright 2013 Tera Insights, LLC. All Rights Reserved. // Author: Christopher Dudley // FIXME: This currently doesn't work (well) because of STDIO's output buffering. // The profiler doesn't get any output until the 4096 byte buffer fills up in // the Perf process. #include "PerfTopProfiler.h" #include "Errors.h" #include "Logging.h" #include "SerializeJson.h" #include "PerfProfMSG.h" #include <string> #include <sstream> #include <array> #include <cstdio> #include <cstdlib> #include <cctype> #include <cmath> #include <ctime> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> namespace { enum State { BEGIN = 0 , STATUS_LINE , FILLER1 , FILLER2 , INFO_LINE , END , ERROR }; const std::array<std::string, 7> stateNames = { "BEGIN" , "STATUS_LINE" , "FILLER1" , "FILLER2" , "INFO_LINE" , "END" , "ERROR" }; } PerfTopProfiler :: PerfTopProfiler(EventProcessor& _profiler) { evGen = new PerfTopProfilerImp(_profiler); } PerfTopProfilerImp :: PerfTopProfilerImp(EventProcessor & _profiler) : myProfiler(), childID(-1), childIn(-1), childOut(-1), childErr(-1), buffer(), start(buffer), end(buffer) { myProfiler.copy(_profiler); } void PerfTopProfilerImp :: PreStart(void) { // Start up the Perf Top process. pid_t pid = getpid(); // Create pipes int inPipe[2]; // Input to child int outPipe[2]; // Output from child int errPipe[2]; // Error from child if( pipe(inPipe) != 0 || pipe(outPipe) != 0 || pipe(errPipe) != 0 ) { perror("PerfTopProfiler pipe"); FATAL("PerfTopProfiler unable to create pipes"); } pid_t childid = fork(); if( childid == -1 ) { perror("PerfTopProfiler fork"); FATAL("PerfTopProfiler unable to fork"); } if( childid > 0 ) { // Parent // Close read end of inPipe and write end of outPipe close(inPipe[0]); close(outPipe[1]); close(errPipe[1]); childID = childid; childIn = inPipe[1]; childOut = outPipe[0]; childErr = errPipe[0]; } else { // Child // Close write end of inPipe and read end of outPipe close(inPipe[1]); close(outPipe[0]); close(errPipe[0]); // Duplicate inpipe to STDIN //dup2(inPipe[0], 0); // Duplicate outpipe to STDOUT dup2(outPipe[1], 1); // Duplicate errPipe to STDERR dup2(errPipe[1], 2); std::ostringstream ss; ss << pid; const char * pidString = ss.str().c_str(); // Brain swap execlp("stdbuf", "stdbuf", "--output=0", "perf", "top", "-K", "--percent-limit", "0.01", "--stdio", "-z", "-p", pidString); // If we got here, something went wrong perror("PerfTopProfiler execlp"); exit(EXIT_FAILURE); } /* std::ostringstream cmdBuilder; cmdBuilder << "stdbuf --output=0 perf top -K --percent-limit 0.01 --stdio -z -p " << pid; const char * command = cmdBuilder.str().c_str(); perfOut = popen(command, "r"); if( perfOut == NULL ) { perror("PerfTopProfiler popen"); FATAL("PerfTopProfiler unable to start child process"); } */ } int PerfTopProfilerImp :: ProduceMessage() { //int fd = fileno(perfOut); // file descriptor for select() int fd = childOut; //if( fd == -1 ) { //perror("PerfTopProfiler fileno"); //return -1; //} //printf("PerfTopProfiler :: ProduceMessage\n"); timespec wallTime; clock_gettime(CLOCK_REALTIME, &wallTime); int64_t wallTimeMillis = (wallTime.tv_sec * 1000) + (wallTime.tv_nsec / 1000000); fd_set rfds; // set of file descriptors timeval timeout; // Timeout for select() int retval = 0; // Return value of select() const char * bEnd = buffer + BUFFER_SIZE - 1; // one past the end for the entire buffer char * nLoc = NULL; // Location of first newline from start Json::Value info(Json::objectValue); // Information to send Json::Value content(Json::arrayValue); // List of function performance infos // Variables for extracting information from lines int scanRet = 0; const char * statusPattern = " PerfTop: %ld irqs/sec kernel: %lf%% exact: %lf%% [%ldHz cycles]"; long irqs = 0, freq = 0; double kernel = 0.0, exact = 0.0; double percentage = 0.0; State prevState = BEGIN; State state = BEGIN; State nextState = BEGIN; State errState = BEGIN; constexpr char ESC = 0x1B; bool readMore = true; // Whether or not to continue reading input // Watch the file descriptor to check for output FD_ZERO(&rfds); FD_SET(fd, &rfds); // Timeout of 100ms timeout.tv_sec = 0; timeout.tv_usec = 100 * 1000; while( readMore && (retval = select(fd+1, &rfds, NULL, NULL, &timeout)) > 0 ) { // If retval > 0, then fd must be ready (it's the only fd) // Try to fill up the buffer end += read(fd, end, bEnd - end); *end = '\0'; // Make sure string is null terminated while( readMore && (nLoc = strchr(start, '\n')) != NULL ) { // Switch newline to null *nLoc = '\0'; switch( state ) { case BEGIN: // this line should start with an escape if( *start == ESC ) { // Advance to next line start = nLoc + 1; nextState = STATUS_LINE; } else { nextState = ERROR; } break; case STATUS_LINE: LOG_ENTRY_P(2, "Status Line: %s\n", start); scanRet = sscanf(start, statusPattern, &irqs, &kernel, &exact, &freq); if( scanRet == 4 ) { // All values read successfully nextState = FILLER1; start = nLoc + 1; info["irqs"] = (Json::Int64) irqs; info["kernel"] = (Json::Int64) lround(kernel * 10); info["exact"] = (Json::Int64) lround(exact * 10); info["freq"] = (Json::Int64) freq; } else { nextState = ERROR; } break; case FILLER1: LOG_ENTRY_P(2, "Filler1: %s\n", start); // Skip line start = nLoc + 1; nextState = FILLER2; break; case FILLER2: LOG_ENTRY_P(2, "Filler2: %s\n", start); // Skip line while( start < nLoc && std::isspace(*start) ) start++; if( start == nLoc ) { start = nLoc + 1; nextState = FILLER2; } else { *nLoc = '\n'; nextState = INFO_LINE; } break; case INFO_LINE: if( *start == ESC ) { // New frame started nextState = END; } else { LOG_ENTRY_P(2, "Info Line: %s\n", start); char * libName = NULL; char * libNameEnd = NULL; char * funcName = NULL; char * funcNameEnd = NULL; // Remove whitespace before percentage while( std::isspace(*start) ) start++; percentage = strtod(start, NULL); // Find next whitespace while( ! std::isspace(*start) ) start++; // Skip the whitespace while( std::isspace(*start) ) start++; // We're now at the library name libName = start; // Find next whitespace while( ! std::isspace(*start) ) start++; // Make an end of string for the library name libNameEnd = start; *libNameEnd = '\0'; start++; // Skip the whitespace while( std::isspace(*start) ) start++; // This is the [.] // Skip it while( ! std::isspace(*start) ) start++; funcName = start; // Trim whitespace on the right. funcNameEnd = nLoc - 1; while( std::isspace(*funcNameEnd) ) funcNameEnd--; funcNameEnd++; *funcNameEnd = '\0'; // We're at the function name Json::Value infoLine(Json::objectValue); infoLine["portion"] = (Json::Int64) lround(percentage * 10); infoLine["library"] = Json::Value(libName, libNameEnd); infoLine["function"] = Json::Value(funcName, funcNameEnd); content.append(infoLine); // Advance to next line start = nLoc + 1; nextState = INFO_LINE; } break; case END: readMore = false; break; case ERROR: errState = prevState; readMore = false; break; } prevState = state; state = nextState; } // Move the remaining buffer to the beginning off_t rSize = end - start; memmove( buffer, start, rSize ); start = buffer; end = start + rSize; *end = '\0'; } if( retval < 0 ) { perror("PerfTopProfiler select()"); FATAL("PerfTopProfiler call to select() failed"); } // We are either here because the timeout expired (there's no more data for this frame) // or we reached the next frame, so send the message. if( state != ERROR ) { if( ! info.empty() ) { // Frame isn't empty info["content"] = content; PerfTopMessage::Factory(myProfiler, wallTimeMillis, info); } } else { LOG_ENTRY_P(1, "PerfTopProfiler failed to parse output in state %s, buffer:\n%s", stateNames[errState].c_str(), start ); } return 0; }
[ "alin@terainsights.com" ]
alin@terainsights.com
81ba519a92ad2f776e8891a4f131b0bc3125b020
98b13bf7decc8eb72fdf4e38d78391b893c6ead8
/old/neurolife/render.h
333ce5142b56bb6381d694b53a33d7ae96f33750
[]
no_license
vlargius/neurolife
683ead358518fc52a653b77a376aa95aa00d2fc1
e3bfa1b72319e50bfb121e87d99106468386568e
refs/heads/master
2021-06-13T10:12:36.151594
2019-11-13T20:41:50
2019-11-13T20:41:50
143,466,554
1
0
null
2018-08-15T18:05:58
2018-08-03T19:37:55
C++
UTF-8
C++
false
false
218
h
#pragma once #include <iostream> using namespace std; #include "world.h" class IRender { public: IRender(const World* w) : w(w) {} virtual void run() = 0; virtual void flash() = 0; protected: const World* w; };
[ "vlargius@gmail.com" ]
vlargius@gmail.com
74de841a52bf8cd403572c8214855059fb89f956
18614c5e8c150b8a88b4b3ca9de9adf5ce62dd9c
/Irrlicht/CLightSceneNode.h
4bd72bac32fc9748bde5432f98f2e44d49281e28
[]
no_license
fingoldin/vehicle-game
61793b8fc4689ee3a31f09d784f663407a02ad9c
0a2795d76bfca1c7cd66686ea53ba57dc395393f
refs/heads/master
2021-01-20T18:21:19.370785
2018-10-29T21:38:37
2018-10-29T21:38:37
62,091,049
0
0
null
null
null
null
UTF-8
C++
false
false
3,889
h
// Copyright (C) 2002-2012 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irrlicht.h #ifndef __C_LIGHT_SCENE_NODE_H_INCLUDED__ #define __C_LIGHT_SCENE_NODE_H_INCLUDED__ #include <irrlicht/irrlicht.h> #ifndef _IRR_OVERRIDE_ #define _IRR_OVERRIDE_ #endif namespace irr { namespace scene { //! Scene node which is a dynamic light. You can switch the light on and off by //! making it visible or not, and let it be animated by ordinary scene node animators. class CLightSceneNode : public ILightSceneNode { public: //! constructor CLightSceneNode(ISceneNode* parent, ISceneManager* mgr, s32 id, const core::vector3df& position, video::SColorf color, f32 range); //! pre render event virtual void OnRegisterSceneNode() _IRR_OVERRIDE_; //! render virtual void render() _IRR_OVERRIDE_; //! set node light data from light info virtual void setLightData(const video::SLight& light) _IRR_OVERRIDE_; //! \return Returns the light data. virtual const video::SLight& getLightData() const _IRR_OVERRIDE_; //! \return Returns the light data. virtual video::SLight& getLightData() _IRR_OVERRIDE_; //! Sets if the node should be visible or not. /** All children of this node won't be visible either, when set to true. \param isVisible If the node shall be visible. */ virtual void setVisible(bool isVisible) _IRR_OVERRIDE_; //! returns the axis aligned bounding box of this node virtual const core::aabbox3d<f32>& getBoundingBox() const _IRR_OVERRIDE_; //! Returns type of the scene node virtual ESCENE_NODE_TYPE getType() const _IRR_OVERRIDE_ { return ESNT_LIGHT; } //! Writes attributes of the scene node. virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options=0) const _IRR_OVERRIDE_; //! Reads attributes of the scene node. virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options=0) _IRR_OVERRIDE_; //! Creates a clone of this scene node and its children. virtual ISceneNode* clone(ISceneNode* newParent=0, ISceneManager* newManager=0) _IRR_OVERRIDE_; //! Sets the light's radius of influence. /** Outside this radius the light won't lighten geometry and cast no shadows. Setting the radius will also influence the attenuation, setting it to (0,1/radius,0). If you want to override this behavior, set the attenuation after the radius. \param radius The new radius. */ virtual void setRadius(f32 radius) _IRR_OVERRIDE_; //! Gets the light's radius of influence. /** \return The current radius. */ virtual f32 getRadius() const _IRR_OVERRIDE_; //! Sets the light type. /** \param type The new type. */ virtual void setLightType(video::E_LIGHT_TYPE type) _IRR_OVERRIDE_; //! Gets the light type. /** \return The current light type. */ virtual video::E_LIGHT_TYPE getLightType() const _IRR_OVERRIDE_; //! Sets whether this light casts shadows. /** Enabling this flag won't automatically cast shadows, the meshes will still need shadow scene nodes attached. But one can enable or disable distinct lights for shadow casting for performance reasons. \param shadow True if this light shall cast shadows. */ virtual void enableCastShadow(bool shadow=true) _IRR_OVERRIDE_; //! Check whether this light casts shadows. /** \return True if light would cast shadows, else false. */ virtual bool getCastShadow() const _IRR_OVERRIDE_; //! Updates the absolute position based on the relative and the parents position virtual void updateAbsolutePosition() _IRR_OVERRIDE_; private: video::SLight LightData; core::aabbox3d<f32> BBox; s32 DriverLightIndex; bool LightIsOn; void doLightRecalc(); }; } // end namespace scene } // end namespace irr #endif
[ "vassilioskaxiras@gmail.com" ]
vassilioskaxiras@gmail.com