blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
33249b580100c3d6417baecd0d3a85bf37a1c577
6c77b4db43660b7bdeb3a636de69623114ff3f35
/fusion-ws-player/cpps/src/Log.h
9cc4599b8e6fca320167dd5818860d12a9d96e4b
[]
no_license
ericma2014/wasm-video-player
04258cb449ca10b2743622e33b43a1753daadbd6
110beae4d2d5bcbc3c73fa3f936156661da79d24
refs/heads/master
2023-03-23T22:09:23.141308
2020-05-14T06:58:23
2020-05-14T06:58:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
460
h
Log.h
#ifndef WELLDONE_LOG_H #define WELLDONE_LOG_H #include <stdio.h> #include <stdarg.h> #include <time.h> #include <sys/timeb.h> class Log { public: Log(); Log( char * tag); ~Log(); void enable(bool enable); void info(const char* format, ...); void warn(const char* format, ...); void error(const char* format, ...); private: char* tag; bool enabled; //是否启用日志 void log(const char* level, char* szBuffer, int &prefixLength); }; #endif
74050d5bdc8bf5aaadc98a7296c24ce7885964ff
50cad2c1bd73dfd92184d7b41441eee9c2aa82b6
/src/cross/Service/Service.cpp
07b080876fb97d77f7f84a2f93695d604dafe370
[]
no_license
bman7777/cross
46ce38dc353ecd6cd04f85c3339dacf6246f96d2
fe15e99fa0796e475f041e2cd8a674b91e1d9a55
refs/heads/master
2021-01-23T15:41:53.069156
2014-06-21T16:42:36
2014-06-21T16:42:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
845
cpp
Service.cpp
/****************************************************************/ /// \class Cross::Service /// \ingroup Service /// \date Oct 4, 2013 /// \brief A base class for services that provides support for /// service keys that index into contexts. /****************************************************************/ #include "cross/Context/Context.h" #include "cross/Sequence/GenesisContext.h" #include "cross/Service/Service.h" namespace Cross { /// \brief get a service using its key and context /// \param type - type of service being requested /// \param context- where are you asking from? /// \return ptr to service (or NULL if there is none.) Service* Service::Get(const Type& t, Context* ctx) { if(ctx) { return ctx->GetService(t); } else { return GenesisContext::Get()->GetService(t); } } }
bb234aee75d4c7254c489a1bfecd717fa0cc7be8
61c8fc5b49bc9be71bb0da73d4a6c9eeb2c861d2
/BackjoonAlgorithm/7562. 나이트의 이동.cpp
8c875bcefb76f048040ff63b025a8f43d51c983a
[ "Unlicense" ]
permissive
Minusie357/Algorithm
188e8555b5edcf425a35e7228b7df4123a1cb7a1
f579f91024a582cdf7e36591308123f8c920e204
refs/heads/master
2022-06-18T06:50:13.904143
2020-05-14T13:42:47
2020-05-14T13:42:47
191,180,848
0
0
null
null
null
null
UTF-8
C++
false
false
1,392
cpp
7562. 나이트의 이동.cpp
//#include <iostream> //#include <queue> //#include <utility> //using namespace std; // ////#define DEBUG //#ifdef DEBUG //#include <chrono> //#include "Utility.h" // //chrono::system_clock::time_point Start; //chrono::nanoseconds Time; //#endif // // // //int main() //{ // ios::sync_with_stdio(false); // cin.tie(NULL); // // int T; // cin >> T; // // int L; // pair<int, int> Start, End; // // static int dr[8] = { -2,-1,1,2,2,1,-1,-2 }; // static int dc[8] = { 1,2,2,1,-1,-2,-2,-1 }; // // while (T--) // { // cin >> L >> Start.first >> Start.second >> End.first >> End.second; // // int Visit[300][300] = { 0 }; // queue<pair<int, int>> Queue; // Queue.emplace(Start.first, Start.second); // // // while (Queue.empty() == false) // { // pair<int, int> Current = Queue.front(); // Queue.pop(); // // if (End == Current) // { // cout << Visit[Current.first][Current.second] << "\n"; // break; // } // // for (int i = 0; i < 8; ++i) // { // pair<int, int> Next = { Current.first + dr[i], Current.second + dc[i] }; // if (Next.first < 0 || Next.first >= L || Next.second < 0 || Next.second >= L) // continue; // // if (Visit[Next.first][Next.second] != 0) // continue; // // Visit[Next.first][Next.second] = Visit[Current.first][Current.second] + 1; // Queue.emplace(Next.first, Next.second); // } // } // } // // return 0; //}
8c43ef4a638da269dfba956f04e13cefebc50f54
d8d7fd76c42c0aefb3bc52dbe42e1c6c378288a9
/Algorithms/Strings/Anagrams.cpp
33a3eeda4c01625093731ee424e8de2ea406d964
[]
no_license
66kesara99/Hackerrank-Random
ab15abdc5d19584a4b9b1a610c8f1727dae7bfbb
08837ca8f69cedc8185f2a0ce297f88db55114df
refs/heads/master
2020-05-21T22:50:50.284659
2018-06-16T15:16:10
2018-06-16T15:16:10
50,111,653
0
0
null
null
null
null
UTF-8
C++
false
false
868
cpp
Anagrams.cpp
#include <iostream> #include <string> #include <vector> using namespace std; int main(){ int t; cin >> t; for (int a0 = 0; a0<t; a0++){ int charcounta[26] = {0}; int charcountb[26] = {0}; int ans = 0; string s; cin >> s; int len = s.length(); if (len%2==1){ ans = -1; } else { for (int i = len/2; i<len; i++){ if (s[i]>='a' && s[i]<='z'){ charcountb[(int)s[i]-(int)'a']++; } } for (int i = 0; i<len/2; i++){ if (s[i]>='a' && s[i]<='z'){ charcounta[(int)s[i]-(int)'a']++; } } ans = 0; for (int i = 0; i<26; i++){ if (charcountb[i]>charcounta[i]){ ans = ans+(charcountb[i] - charcounta[i]); } } } cout << ans << endl; } }
53f7eddb855515a882b13235fe215f86f7e9ac13
506d3798f4b191d91bc9ed88aa1a437b4cabe5c4
/profiledialogue.cpp
b0dd271e5b4b571d9b26e2bc6ead4d44414b3476
[]
no_license
shihabshahriar16/Social-network-with-messenger
7607039f66bf58b59cdb80d0cd543dfd5cf25f00
392a896a387bafa24c74bf4b6580b4bd0e46a3ec
refs/heads/master
2020-07-19T07:35:16.574744
2019-09-05T08:51:25
2019-09-05T08:51:25
206,402,968
0
0
null
null
null
null
UTF-8
C++
false
false
1,530
cpp
profiledialogue.cpp
#include "profiledialogue.h" #include "ui_profiledialogue.h" #include "newpostdialogue.h" #include "updateprofiledialog.h" #include "user.h" #include "global_var.h" #include <string> #include <QMessageBox> #include<QString> #include <QSqlDatabase> #include<QtSql/QtSql> #include<QtSql/QSqlDatabase> #include<QtSql/QSqlQuery> #include "showbiodialogue.h" profiledialogue::profiledialogue(QWidget *parent) : QDialog(parent), ui(new Ui::profiledialogue) { ui->setupUi(this); QSqlQuery qry; QString uname= QString::fromStdString( user_obj->get_username() ); qry.prepare("SELECT post,post_datetime FROM post_table where username=:_uname order by post_datetime desc"); qry.bindValue(":_uname",uname); qry.exec(); // qry.first(); QString post; while(qry.next()){ post=post+qry.value(0).toString()+"\n"; post=post+qry.value(1).toString()+"\n \n \n \n \n \n"; } ui->mypost->setText(post); } profiledialogue::~profiledialogue() { delete ui; } void profiledialogue::on_newpost_clicked() { newpostdialogue posdialogue; posdialogue.setModal(true); posdialogue.exec(); } void profiledialogue::on_updateprofile_clicked() { updateprofileDialog updatepro; updatepro.setModal(true); updatepro.exec(); } void profiledialogue::on_pushButton_clicked() { showbiodialogue sbdialog; sbdialog.setModal(true); sbdialog.exec(); }
750f43ec178ccd89308130c6367dfbf66e2e7bbd
26a0d566b6e0b2e4faf669511b3ad5df7ee93891
/codeforces/seerc-2018/c.cpp
ee4e9a86f573da9476afd2916071f57b5fec1645
[]
no_license
sureyeaah/Competitive
41aeadc04b2a3b7eddd71e51b66fb4770ef64d9d
1960531b106c4ec0c6a44092996e6f8681fe3991
refs/heads/master
2022-09-13T20:46:39.987360
2020-05-30T23:20:41
2020-05-30T23:31:11
109,183,690
3
1
null
null
null
null
UTF-8
C++
false
false
2,023
cpp
c.cpp
// Gear4 #define _CRT_SECURE_NO_WARNINGS #include <bits/stdc++.h> using namespace std; #define DEBUG(x) cout << '>' << #x << ':' << x << endl; #define FOR0(i,n) for(int i=0, _##i=(n); i<_##i; ++i) #define FOR(i,l,r) for(int i=(l), _##i=(r); i<_##i; ++i) #define FORD(i,l,r) for(int i=(r), _##i=(l); --i>=_##i; ) #define SZ(a) ((int)((a).size())) #define printCase() "Case #" << caseNum << ": " #define pb push_back #define mp make_pair #define SYNC std::ios::sync_with_stdio(false); cin.tie(NULL); #define ff first #define ss second template<typename T> using V = vector<T>; template<typename T, typename U> using P = pair<T,U>; using ld = long double; using ll = long long; #define endl '\n' const int inf = 1e9, mod = 1e9 + 7; const ll INF = 9e18; const ld EPS = 1e-9, PI = acosl(-1.0); int n, m, p[105]; const int N = 105; V<V<int>> g(N); int x1; int dfs2(int u, int d=0, int pre=-1) { if(d > x1) return 0; int x = p[u]; for(auto v : g[u]) { if(v == pre) continue; // cerr << u << " " << v << " " << d << endl; x += dfs2(v, d+1, u); } return x; } int main() { SYNC cin >> n >> m; FOR(i, 1, n+1) { cin >> p[i]; } FOR0(i, n-1) { int u, v; cin >> u >> v; g[u].push_back(v); g[v].push_back(u); } int lt = 0, rt = n-1, ans = n + 1; while(lt <= rt) { int mid = (lt + rt) >> 1, f = 0; FOR(i, 1, n + 1) { V<int> v1, v2; x1 = mid/2; int s = p[i], val = s; for(int v: g[i]) { v1.push_back(dfs2(v, 1, i)); s += v1.back(); } x1 = (mid+1)/2; for(int v: g[i]) v2.push_back(dfs2(v, 1, i)); FOR0(j, v1.size()) { val = max(val, s-v1[j]+v2[j]); } if(val >= m) { ans = mid; rt = mid-1; f = 1; break; } } if(!f) lt = mid + 1; } cout << ans; }
f8e838289a2b1528f2649f75e63bacc16dc1e883
3ce52ef410c5421b4f7e02472cbf324c5dafa691
/include/FileSystem.h
648a74891452bb8b008dfa065011f9bd2c28aaba
[]
no_license
klepaczmikolaj/FileSystem
9313ebda4f5fbcf54aa20e82e7821beeba2e65b9
81d09a59008127286532a92b08bbecaaab925c3a
refs/heads/master
2020-04-15T21:50:45.587221
2019-01-20T17:25:40
2019-01-20T17:25:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,092
h
FileSystem.h
#ifndef FILE_SYSTEM_H #define FILE_SYSTEM_H #include <fstream> #include <string> #include <cstdlib> #include <cstring> #include <iostream> #include <iomanip> #include <cmath> #include "boost/filesystem.hpp" #include "boost/program_options.hpp" #define MAX_FILENAME_SIZE 128 #define KILOBYTE 1024 class FileSystem{ public: FileSystem(); ~FileSystem(); void createFileSystem(int size, std::string name); void openFileSystem(std::string name); void closeFileSystem(); void loadFile(std::string name); void downloadFile(std::string); void displayCatalog(); void deleteFile(std::string); void displayMemoryMap(); void displaySystemInfo(); private: static const unsigned BLOCK_SIZE = 1024; // 1kB struct SystemInfo{ const char fileSystemType[32] = "Contiguous"; char name[MAX_FILENAME_SIZE]; int sizeKB; int totalBlocks; int usedBlocks; int fatSize; int numberOfFiles; }systemInfo; struct FileNode{ char name[MAX_FILENAME_SIZE]; int startBlock; int blocksNumber; int sizeInBytes; }; std::deque<FileNode> inodes; typedef char blockBuffer[BLOCK_SIZE]; std::fstream fileFS; void readSystemInfo(std::string name); void readMetadata(); void writeSystemInfo(); void writeMetadata(); int getMemoryPosition(int blocksNumber); int defragmentMemory(); int appendFileInfoToMetadata(std::string name); void copyFileDataToFS(int nodeID); void writeFileToCurrentDir(int); void sortMetadata(); static bool compareNodes(FileNode node1, FileNode node2); void fillSysWithZeros(); int getNodeEndBlock(FileNode node); bool doesFileExistInDIR(std::string); bool doesFileExistInFS(std::string); bool isBlockUsed(int memID); std::string getFileNameFromMemID(int memID); }; #endif
d953f934bb029a0532ffb494f54a0a3f8704185a
eaa3875ea6111a4542b78ee84227784eb01cda9b
/src/video/decoder.cpp
be02f98751ee353b21426cae873d2f30eb92ef77
[ "MIT" ]
permissive
guidebee/irobot
36f864345be3ead74d85b7d9f21b706a62de72c1
261d334d7c16971d791840588abc2904a1d83eaa
refs/heads/master
2022-11-16T10:11:35.586686
2020-07-12T08:30:02
2020-07-12T08:30:02
242,664,951
0
0
null
null
null
null
UTF-8
C++
false
false
6,751
cpp
decoder.cpp
// // Created by James Shen on 25/3/20. // Copyright (c) 2020 GUIDEBEE IT. All rights reserved // #include "decoder.hpp" #include "ui/events.hpp" #include "util/log.hpp" #include "video/video_buffer.hpp" namespace irobot::video { // set the decoded frame as ready for rendering, and notify void Decoder::PushFrame() { bool previous_frame_skipped; this->video_buffer->OfferDecodedFrame( &previous_frame_skipped); if (previous_frame_skipped) { // the previous EVENT_NEW_FRAME will consume this frame return; } static SDL_Event new_frame_event = { .type = EVENT_NEW_FRAME, }; SDL_PushEvent(&new_frame_event); static SDL_Event new_opencv_frame_event = { .type = EVENT_NEW_OPENCV_FRAME, }; SDL_PushEvent(&new_opencv_frame_event); } void Decoder::Init(VideoBuffer *vb) { this->video_buffer = vb; this->sws_cv_ctx = nullptr; } bool Decoder::Open(const AVCodec *codec) { this->codec_ctx = avcodec_alloc_context3(codec); if (!this->codec_ctx) { LOGC("Could not allocate decoder context"); return false; } this->codec_cv_ctx = avcodec_alloc_context3(codec); if (!this->codec_cv_ctx) { LOGC("Could not allocate decoder context"); return false; } if (avcodec_open2(this->codec_ctx, codec, nullptr) < 0) { LOGE("Could not open codec"); avcodec_free_context(&this->codec_ctx); return false; } if (avcodec_open2(this->codec_cv_ctx, codec, nullptr) < 0) { LOGE("Could not open codec"); avcodec_free_context(&this->codec_ctx); avcodec_free_context(&this->codec_cv_ctx); return false; } return true; } void Decoder::Close() { avcodec_close(this->codec_ctx); avcodec_free_context(&this->codec_ctx); avcodec_close(this->codec_cv_ctx); avcodec_free_context(&this->codec_cv_ctx); sws_freeContext(this->sws_cv_ctx); av_free(this->video_buffer->buffer); this->sws_cv_ctx = nullptr; } bool Decoder::Push(const AVPacket *packet) { // the new decoding/encoding API has been introduced by: // <http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=7fc329e2dd6226dfecaa4a1d7adf353bf2773726> int ret; if ((ret = avcodec_send_packet(this->codec_ctx, packet)) < 0) { LOGE("Could not send video packet: %d", ret); return false; } ret = avcodec_receive_frame(this->codec_ctx, this->video_buffer->decoding_frame); if (!ret) { if (this->sws_cv_ctx == nullptr) { this->codec_cv_ctx->height = this->video_buffer->decoding_frame->height; this->codec_cv_ctx->width = video_buffer->decoding_frame->width; this->codec_cv_ctx->pix_fmt = AV_PIX_FMT_YUV420P; this->codec_cv_ctx->coded_height = this->codec_cv_ctx->height; this->codec_cv_ctx->coded_width = this->codec_cv_ctx->width; // initialize SWS context for software scaling this->sws_cv_ctx = sws_getContext(this->codec_cv_ctx->width, this->codec_cv_ctx->height, this->codec_cv_ctx->pix_fmt, this->codec_cv_ctx->width, this->codec_cv_ctx->height, AV_PIX_FMT_BGR24, SWS_BILINEAR, nullptr, nullptr, nullptr ); if (this->sws_cv_ctx == nullptr) { LOGE("Could not open sws_cv_ctx"); avcodec_free_context(&this->codec_ctx); avcodec_free_context(&this->codec_cv_ctx); return false; } int numBytes = av_image_get_buffer_size(AV_PIX_FMT_RGB24, this->codec_cv_ctx->width, this->codec_cv_ctx->height, IMAGE_ALIGN); this->video_buffer->rgb_frame->width = this->codec_cv_ctx->width; this->video_buffer->rgb_frame->height = this->codec_cv_ctx->height; this->video_buffer->rgb_frame->format = AV_PIX_FMT_RGB24; this->video_buffer->buffer = (uint8_t *) av_malloc(numBytes * sizeof(uint8_t)); av_image_fill_arrays(this->video_buffer->rgb_frame->data, this->video_buffer->rgb_frame->linesize, this->video_buffer->buffer, AV_PIX_FMT_RGB24, this->codec_cv_ctx->width, this->codec_cv_ctx->height, IMAGE_ALIGN); } // Convert the image from its native format to RGB sws_scale(this->sws_cv_ctx, (uint8_t const *const *) this->video_buffer->decoding_frame->data, this->video_buffer->decoding_frame->linesize, 0, this->codec_cv_ctx->height, this->video_buffer->rgb_frame->data, this->video_buffer->rgb_frame->linesize ); this->video_buffer->frame_number = this->codec_ctx->frame_number; this->PushFrame(); } else if (ret != AVERROR(EAGAIN)) { LOGE("Could not receive video frame: %d", ret); return false; } return true; } void Decoder::Interrupt() { this->video_buffer->Interrupt(); } #pragma ide diagnostic ignored "OCUnusedGlobalDeclarationInspection" void Decoder::SaveFrame(AVFrame *pFrameRGB, int iFrame) { FILE *pFile; char szFilename[32]; int width = pFrameRGB->width; int height = pFrameRGB->height; int y; // Open file sprintf(szFilename, "capture%d.ppm", iFrame); pFile = fopen(szFilename, "wb"); if (pFile == nullptr) return; // Write header fprintf(pFile, "P6\n%d %d\n255\n", width, height); // Write pixel data for (y = 0; y < height; y++) fwrite(pFrameRGB->data[0] + y * pFrameRGB->linesize[0], 1, width * 3, pFile); // Close file fclose(pFile); } }
69bec879fca3673c3eec4d2900d902fb4b85f3ee
fdb0396afa8f32d36b02050a9d0e6d6d8d91a2f2
/cpt1greg/io.cpp
ec72e9edb74d949c945fcb75ec9abd56f541e580
[]
no_license
gregsouza17/cppweekly
f9b98ec6161985773ab24517d8c355ed8a6be918
ed2aabb6aee8d8abc80f0726b6ee1fb586d86d00
refs/heads/master
2020-03-29T07:08:04.604770
2019-02-21T11:57:41
2019-02-21T11:57:41
149,654,004
0
0
null
null
null
null
UTF-8
C++
false
false
433
cpp
io.cpp
#include <iostream> int readNumber(){ /*Asks the user for a number input, returns it. */ int number; //asks user for input printf("Please, input a number:\n"); std::cin >> number; return number; } void writeAnswer(int firstInput, int secondInput){ /*Print the sum of the two arguments*/ std::cout << firstInput << " + " << secondInput << " = " << (firstInput + secondInput) << std::endl; }
c74749695dfb61173c13a6ea0f68170f820eb54c
2c78de0b151238b1c0c26e6a4d1a36c7fa09268c
/MDProcess/MDAModel/impl/SystemFunctionsImpl/SetGenID.h
c1b08299bc8146015d4ac491756f4cba8ec4d1f6
[]
no_license
bravesoftdz/realwork
05a3b308cef59bed8a9efda4212849c391b4b267
19b446ce8ad2adf82ab8ce7988bc003221accad2
refs/heads/master
2021-06-07T23:57:22.429896
2016-11-01T18:30:21
2016-11-01T18:30:21
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
2,594
h
SetGenID.h
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Модуль: "w:/MDProcess/MDAModel/impl/SystemFunctionsImpl/SetGenID.h" // генератор заголовочных файлов C++ (.h) // Generated from UML model, root element: <<Servant::Class>> MDProcess::MDAModel::SystemFunctionsImpl::SetGenID // Заголовок реализации класса серванта для интерфеса // // реализация встроенной функции генератора "_set_gen_id" // _set_gen_id(«gen id») - устанавливает генератор. // // // Все права принадлежат ООО НПП "Гарант-Сервис". // //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifndef __MDPROCESS_MDAMODEL_SYSTEMFUNCTIONSIMPL_SETGENID_H__ #define __MDPROCESS_MDAMODEL_SYSTEMFUNCTIONSIMPL_SETGENID_H__ #include "shared/CoreSrv/sys/std_inc.h" #include "MDProcess/MDAModel/impl/BaseFunctionImpl/InternalFunctionBase.h" namespace SystemFunctionsImpl { class SetGenID; // self forward Var typedef ::Core::Var<SetGenID> SetGenID_var; typedef ::Core::Var<const SetGenID> SetGenID_cvar; class SetGenID_factory; // реализация встроенной функции генератора "_set_gen_id" // _set_gen_id(«gen id») - устанавливает генератор. class SetGenID: virtual public BaseFunctionImpl::InternalFunctionBase { SET_OBJECT_COUNTER (SetGenID) friend class SetGenID_factory; // self factory ////////////////////////////////////////////////////////////////////////////////////////// // constructors and destructor protected: SetGenID (); virtual ~SetGenID (); ////////////////////////////////////////////////////////////////////////////////////////// // implemented interface's methods protected: // implemented method from BaseFunctionImpl::InternalFunctionBase // Собственно реализации встроенной функции. Каждый конкретный сервант реализует это метод virtual const std::string execute_impl ( const TemplateFunctions::FunctionParams& params , TemplatePainter* painter ) const /*throw ( TemplateFunctions::BadParams )*/; }; // class SetGenID } // namespace SystemFunctionsImpl #endif //__MDPROCESS_MDAMODEL_SYSTEMFUNCTIONSIMPL_SETGENID_H__ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2919a17f08fe6fc5dc37b443b2ad6da03bc7a1bc
299b377022f52b20e3c9696950da9007e9b078a4
/src/optimization/models/LAV.cpp
3b4dc950297cec4deefd30523f4518d6e98c291d
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
sg0/Elemental
43cba65d001de299167363c349127cf8c23f7403
614f02509690449b553451e36bc78e7e132ea517
refs/heads/master
2021-01-15T09:33:56.394836
2016-02-29T18:25:53
2016-02-29T18:25:53
19,929,637
1
0
null
null
null
null
UTF-8
C++
false
false
9,450
cpp
LAV.cpp
/* Copyright (c) 2009-2015, Jack Poulson All rights reserved. This file is part of Elemental and is under the BSD 2-Clause License, which can be found in the LICENSE file in the root directory, or at http://opensource.org/licenses/BSD-2-Clause */ #include "El.hpp" // Least Absolute Value (LAV) regression minimizes the one norm of the // residual of a system of equations, i.e., // // min || A x - b ||_1. // // Real instances of the problem are expressable as a Linear Program [1] via // // min 1^T (u + v) // s.t. [A, I, -I] [x; u; v] = b, u, v >= 0 // // which, in affine standard form, becomes // // min [0; 1; 1]^T [x; u; v] // s.t. [A, I, -I] | x | = b, | 0 -I 0 | | x | <= | 0 |. // | u | | 0 0 -I | | u | | 0 | // | v | | v | // // [1] // A. Charnes, W. W. Cooper, and R. O. Ferguson, // "Optimal estimation of executive compensation by linear programming", // Management Science, Vol. 1, No. 2, pp. 138--151, 1955. // namespace El { template<typename Real> void LAV ( const Matrix<Real>& A, const Matrix<Real>& b, Matrix<Real>& x, const lp::affine::Ctrl<Real>& ctrl ) { DEBUG_ONLY(CallStackEntry cse("LAV")) const Int m = A.Height(); const Int n = A.Width(); const Range<Int> xInd(0,n), uInd(n,n+m), vInd(n+m,n+2*m); Matrix<Real> c, AHat, G, h; // c := [0;1;1] // ============ Zeros( c, n+2*m, 1 ); auto cuv = c( IR(n,n+2*m), IR(0,1) ); Fill( cuv, Real(1) ); // \hat A := [A, I, -I] // ==================== Zeros( AHat, m, n+2*m ); auto AHatx = AHat( IR(0,m), xInd ); auto AHatu = AHat( IR(0,m), uInd ); auto AHatv = AHat( IR(0,m), vInd ); AHatx = A; FillDiagonal( AHatu, Real( 1) ); FillDiagonal( AHatv, Real(-1) ); // G := | 0 -I 0 | // | 0 0 -I | // ================ Zeros( G, 2*m, n+2*m ); auto Guv = G( IR(0,2*m), IR(n,n+2*m) ); FillDiagonal( Guv, Real(-1) ); // h := | 0 | // | 0 | // ========== Zeros( h, 2*m, 1 ); // Solve the affine linear program // =============================== Matrix<Real> xHat, y, z, s; LP( AHat, G, b, c, h, xHat, y, z, s, ctrl ); // Extract x // ========== x = xHat( xInd, IR(0,1) ); } template<typename Real> void LAV ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& b, AbstractDistMatrix<Real>& x, const lp::affine::Ctrl<Real>& ctrl ) { DEBUG_ONLY(CallStackEntry cse("LAV")) const Int m = A.Height(); const Int n = A.Width(); const Grid& g = A.Grid(); const Range<Int> xInd(0,n), uInd(n,n+m), vInd(n+m,n+2*m); DistMatrix<Real> c(g), AHat(g), G(g), h(g); // c := [0;1;1] // ============ Zeros( c, n+2*m, 1 ); auto cuv = c( IR(n,n+2*m), IR(0,1) ); Fill( cuv, Real(1) ); // \hat A := [A, I, -I] // ==================== Zeros( AHat, m, n+2*m ); auto AHatx = AHat( IR(0,m), xInd ); auto AHatu = AHat( IR(0,m), uInd ); auto AHatv = AHat( IR(0,m), vInd ); AHatx = A; FillDiagonal( AHatu, Real( 1) ); FillDiagonal( AHatv, Real(-1) ); // G := | 0 -I 0 | // | 0 0 -I | // ================ Zeros( G, 2*m, n+2*m ); auto Guv = G( IR(0,2*m), IR(n,n+2*m) ); FillDiagonal( Guv, Real(-1) ); // h := | 0 | // | 0 | // ========== Zeros( h, 2*m, 1 ); // Solve the affine linear program // =============================== DistMatrix<Real> xHat(g), y(g), z(g), s(g); LP( AHat, G, b, c, h, xHat, y, z, s, ctrl ); // Extract x // ========= Copy( xHat( xInd, IR(0,1) ), x ); } template<typename Real> void LAV ( const SparseMatrix<Real>& A, const Matrix<Real>& b, Matrix<Real>& x, const lp::affine::Ctrl<Real>& ctrl ) { DEBUG_ONLY(CallStackEntry cse("LAV")) const Int m = A.Height(); const Int n = A.Width(); const Range<Int> xInd(0,n), uInd(n,n+m), vInd(n+m,n+2*m); SparseMatrix<Real> AHat, G; Matrix<Real> c, h; // c := [0;1;1] // ============ Zeros( c, n+2*m, 1 ); auto cuv = c( IR(n,n+2*m), IR(0,1) ); Fill( cuv, Real(1) ); // \hat A := [A, I, -I] // ==================== Zeros( AHat, m, n+2*m ); const Int numEntriesA = A.NumEntries(); AHat.Reserve( numEntriesA + 2*m ); for( Int e=0; e<numEntriesA; ++e ) AHat.QueueUpdate( A.Row(e), A.Col(e), A.Value(e) ); for( Int i=0; i<m; ++i ) { AHat.QueueUpdate( i, i+n, Real( 1) ); AHat.QueueUpdate( i, i+n+m, Real(-1) ); } AHat.MakeConsistent(); // G := | 0 -I 0 | // | 0 0 -I | // ================ Zeros( G, 2*m, n+2*m ); G.Reserve( G.Height() ); for( Int i=0; i<2*m; ++i ) G.QueueUpdate( i, i+n, Real(-1) ); G.MakeConsistent(); // h := | 0 | // | 0 | // ========== Zeros( h, 2*m, 1 ); // Solve the affine linear program // =============================== Matrix<Real> xHat, y, z, s; LP( AHat, G, b, c, h, xHat, y, z, s, ctrl ); // Extract x // ========= x = xHat( xInd, IR(0,1) ); } template<typename Real> void LAV ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& b, DistMultiVec<Real>& x, const lp::affine::Ctrl<Real>& ctrl ) { DEBUG_ONLY(CallStackEntry cse("LAV")) const Int m = A.Height(); const Int n = A.Width(); mpi::Comm comm = A.Comm(); DistSparseMatrix<Real> AHat(comm), G(comm); DistMultiVec<Real> c(comm), h(comm); // c := [0;1;1] // ============ Zeros( c, n+2*m, 1 ); for( Int iLoc=0; iLoc<c.LocalHeight(); ++iLoc ) if( c.GlobalRow(iLoc) >= n ) c.SetLocal( iLoc, 0, Real(1) ); // \hat A := [A, I, -I] // ==================== Zeros( AHat, m, n+2*m ); const Int numLocalEntriesA = A.NumLocalEntries(); AHat.Reserve( numLocalEntriesA + 2*AHat.LocalHeight() ); for( Int e=0; e<numLocalEntriesA; ++e ) AHat.QueueLocalUpdate ( A.Row(e)-AHat.FirstLocalRow(), A.Col(e), A.Value(e) ); for( Int iLoc=0; iLoc<AHat.LocalHeight(); ++iLoc ) { const Int i = AHat.GlobalRow(iLoc); AHat.QueueLocalUpdate( iLoc, i+n, Real( 1) ); AHat.QueueLocalUpdate( iLoc, i+n+m, Real(-1) ); } AHat.MakeConsistent(); // G := | 0 -I 0 | // | 0 0 -I | // ================ Zeros( G, 2*m, n+2*m ); G.Reserve( G.LocalHeight() ); for( Int iLoc=0; iLoc<G.LocalHeight(); ++iLoc ) G.QueueLocalUpdate( iLoc, G.GlobalRow(iLoc)+n, Real(-1) ); G.MakeConsistent(); // h := | 0 | // | 0 | // ========== Zeros( h, 2*m, 1 ); // Solve the affine QP // =================== DistMultiVec<Real> xHat(comm), y(comm), z(comm), s(comm); LP( AHat, G, b, c, h, xHat, y, z, s, ctrl ); // Extract x // ========= Zeros( x, n, 1 ); // Determine the send and recv counts/offsets // ------------------------------------------ const Int commSize = mpi::Size(comm); vector<int> sendCounts(commSize,0); for( Int iLoc=0; iLoc<xHat.LocalHeight(); ++iLoc ) { const Int i = xHat.GlobalRow(iLoc); if( i < n ) ++sendCounts[ x.RowOwner(i) ]; else break; } vector<int> recvCounts(commSize); mpi::AllToAll( sendCounts.data(), 1, recvCounts.data(), 1, comm ); vector<int> sendOffsets, recvOffsets; const int totalSend = Scan( sendCounts, sendOffsets ); const int totalRecv = Scan( recvCounts, recvOffsets ); // Pack the data // ------------- vector<Int> sSendBuf(totalSend); vector<Real> vSendBuf(totalSend); auto offsets = sendOffsets; for( Int iLoc=0; iLoc<xHat.LocalHeight(); ++iLoc ) { const Int i = xHat.GlobalRow(iLoc); if( i < n ) { const int owner = x.RowOwner(i); sSendBuf[offsets[owner]] = i; vSendBuf[offsets[owner]] = xHat.GetLocal(iLoc,0); ++offsets[owner]; } else break; } // Exchange the data // ----------------- vector<Int> sRecvBuf(totalRecv); vector<Real> vRecvBuf(totalRecv); mpi::AllToAll ( sSendBuf.data(), sendCounts.data(), sendOffsets.data(), sRecvBuf.data(), recvCounts.data(), recvOffsets.data(), comm ); mpi::AllToAll ( vSendBuf.data(), sendCounts.data(), sendOffsets.data(), vRecvBuf.data(), recvCounts.data(), recvOffsets.data(), comm ); // Unpack the data // --------------- for( Int e=0; e<totalRecv; ++e ) x.UpdateLocal( sRecvBuf[e]-x.FirstLocalRow(), 0, vRecvBuf[e] ); } #define PROTO(Real) \ template void LAV \ ( const Matrix<Real>& A, const Matrix<Real>& b, \ Matrix<Real>& x, \ const lp::affine::Ctrl<Real>& ctrl ); \ template void LAV \ ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& b, \ AbstractDistMatrix<Real>& x, \ const lp::affine::Ctrl<Real>& ctrl ); \ template void LAV \ ( const SparseMatrix<Real>& A, const Matrix<Real>& b, \ Matrix<Real>& x, \ const lp::affine::Ctrl<Real>& ctrl ); \ template void LAV \ ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& b, \ DistMultiVec<Real>& x, \ const lp::affine::Ctrl<Real>& ctrl ); #define EL_NO_INT_PROTO #define EL_NO_COMPLEX_PROTO #include "El/macros/Instantiate.h" } // namepace elem
a97d8f607ba2e0413ed6088d1445f11a1235e195
09e5cfe06e437989a2ccf2aeecb9c73eb998a36c
/modules/cctbx_project/spotfinder/dxtbx_toolbox/libdistl.h
5ae6559636e3294209e7cc5030e019df88e6ba92
[ "BSD-3-Clause", "BSD-3-Clause-LBNL", "MIT" ]
permissive
jorgediazjr/dials-dev20191018
b81b19653624cee39207b7cefb8dfcb2e99b79eb
77d66c719b5746f37af51ad593e2941ed6fbba17
refs/heads/master
2020-08-21T02:48:54.719532
2020-01-25T01:41:37
2020-01-25T01:41:37
216,089,955
0
1
BSD-3-Clause
2020-01-25T01:41:39
2019-10-18T19:03:17
Python
UTF-8
C++
false
false
837
h
libdistl.h
#ifndef DXTBX_WRAP_LIBDISTL_H #define DXTBX_WRAP_LIBDISTL_H #include <spotfinder/core_toolbox/libdistl.h> #include <dxtbx/model/panel.h> #include <dxtbx/model/beam.h> #include <scitbx/vec2.h> #include <scitbx/vec3.h> using namespace std; namespace Distl { class dxtbx_diffimage: public diffimage { ::dxtbx::model::Panel panel; ::dxtbx::model::Beam beam; public: inline dxtbx_diffimage(){} inline ~dxtbx_diffimage(){} inline void set_panel(::dxtbx::model::Panel other){ panel = other;} inline void set_beam(::dxtbx::model::Beam& other) { beam = ::dxtbx::model::Beam(other); } inline double xy2resol(const double x, const double y) const { double resolution = panel.get_resolution_at_pixel(beam.get_s0(), scitbx::vec2<double>(x,y)); return resolution; } void search_icerings(); }; } #endif
153e4598e5b2f375a327787902cd269b9e2f380d
43880b6b86f44c8ce73d881de1f78a60995e11aa
/TGP_Duos/Intermediate/Build/Win64/UE4Editor/Inc/TGP_Duos/TGP_DuosProjectile.gen.cpp
cb9e81844c962ead45300e6a5799a5e65dc6f276
[]
no_license
hallamrear/TGP-Duos
b9b1b5761b3e0f0f448f106b990b15a4b2afeef0
eabe9ec71604af348c50160122b528681695322b
refs/heads/master
2021-10-10T04:05:33.618041
2019-01-06T22:35:28
2019-01-06T22:35:28
156,691,957
0
0
null
null
null
null
UTF-8
C++
false
false
13,276
cpp
TGP_DuosProjectile.gen.cpp
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/GeneratedCppIncludes.h" #include "TGP_Duos/TGP_DuosProjectile.h" #ifdef _MSC_VER #pragma warning (push) #pragma warning (disable : 4883) #endif PRAGMA_DISABLE_DEPRECATION_WARNINGS void EmptyLinkFunctionForGeneratedCodeTGP_DuosProjectile() {} // Cross Module References TGP_DUOS_API UClass* Z_Construct_UClass_ATGP_DuosProjectile_NoRegister(); TGP_DUOS_API UClass* Z_Construct_UClass_ATGP_DuosProjectile(); ENGINE_API UClass* Z_Construct_UClass_AActor(); UPackage* Z_Construct_UPackage__Script_TGP_Duos(); TGP_DUOS_API UFunction* Z_Construct_UFunction_ATGP_DuosProjectile_OnHit(); ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); ENGINE_API UClass* Z_Construct_UClass_UPrimitiveComponent_NoRegister(); ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); ENGINE_API UClass* Z_Construct_UClass_UProjectileMovementComponent_NoRegister(); ENGINE_API UClass* Z_Construct_UClass_USphereComponent_NoRegister(); // End Cross Module References void ATGP_DuosProjectile::StaticRegisterNativesATGP_DuosProjectile() { UClass* Class = ATGP_DuosProjectile::StaticClass(); static const FNameNativePtrPair Funcs[] = { { "OnHit", &ATGP_DuosProjectile::execOnHit }, }; FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, ARRAY_COUNT(Funcs)); } struct Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics { struct TGP_DuosProjectile_eventOnHit_Parms { UPrimitiveComponent* HitComp; AActor* OtherActor; UPrimitiveComponent* OtherComp; FVector NormalImpulse; FHitResult Hit; }; #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Hit_MetaData[]; #endif static const UE4CodeGen_Private::FStructPropertyParams NewProp_Hit; static const UE4CodeGen_Private::FStructPropertyParams NewProp_NormalImpulse; #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam NewProp_OtherComp_MetaData[]; #endif static const UE4CodeGen_Private::FObjectPropertyParams NewProp_OtherComp; static const UE4CodeGen_Private::FObjectPropertyParams NewProp_OtherActor; #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam NewProp_HitComp_MetaData[]; #endif static const UE4CodeGen_Private::FObjectPropertyParams NewProp_HitComp; static const UE4CodeGen_Private::FPropertyParamsBase* const PropPointers[]; #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam Function_MetaDataParams[]; #endif static const UE4CodeGen_Private::FFunctionParams FuncParams; }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_Hit_MetaData[] = { { "NativeConst", "" }, }; #endif const UE4CodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_Hit = { UE4CodeGen_Private::EPropertyClass::Struct, "Hit", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0010008008000182, 1, nullptr, STRUCT_OFFSET(TGP_DuosProjectile_eventOnHit_Parms, Hit), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_Hit_MetaData, ARRAY_COUNT(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_Hit_MetaData)) }; const UE4CodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_NormalImpulse = { UE4CodeGen_Private::EPropertyClass::Struct, "NormalImpulse", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0010000000000080, 1, nullptr, STRUCT_OFFSET(TGP_DuosProjectile_eventOnHit_Parms, NormalImpulse), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(nullptr, 0) }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_OtherComp_MetaData[] = { { "EditInline", "true" }, }; #endif const UE4CodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_OtherComp = { UE4CodeGen_Private::EPropertyClass::Object, "OtherComp", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0010000000080080, 1, nullptr, STRUCT_OFFSET(TGP_DuosProjectile_eventOnHit_Parms, OtherComp), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_OtherComp_MetaData, ARRAY_COUNT(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_OtherComp_MetaData)) }; const UE4CodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_OtherActor = { UE4CodeGen_Private::EPropertyClass::Object, "OtherActor", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0010000000000080, 1, nullptr, STRUCT_OFFSET(TGP_DuosProjectile_eventOnHit_Parms, OtherActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(nullptr, 0) }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_HitComp_MetaData[] = { { "EditInline", "true" }, }; #endif const UE4CodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_HitComp = { UE4CodeGen_Private::EPropertyClass::Object, "HitComp", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x0010000000080080, 1, nullptr, STRUCT_OFFSET(TGP_DuosProjectile_eventOnHit_Parms, HitComp), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_HitComp_MetaData, ARRAY_COUNT(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_HitComp_MetaData)) }; const UE4CodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::PropPointers[] = { (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_Hit, (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_NormalImpulse, (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_OtherComp, (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_OtherActor, (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::NewProp_HitComp, }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::Function_MetaDataParams[] = { { "ModuleRelativePath", "TGP_DuosProjectile.h" }, { "ToolTip", "called when projectile hits something" }, }; #endif const UE4CodeGen_Private::FFunctionParams Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ATGP_DuosProjectile, "OnHit", RF_Public|RF_Transient|RF_MarkAsNative, nullptr, (EFunctionFlags)0x00C20401, sizeof(TGP_DuosProjectile_eventOnHit_Parms), Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::PropPointers, ARRAY_COUNT(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::PropPointers), 0, 0, METADATA_PARAMS(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::Function_MetaDataParams, ARRAY_COUNT(Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::Function_MetaDataParams)) }; UFunction* Z_Construct_UFunction_ATGP_DuosProjectile_OnHit() { static UFunction* ReturnFunction = nullptr; if (!ReturnFunction) { UE4CodeGen_Private::ConstructUFunction(ReturnFunction, Z_Construct_UFunction_ATGP_DuosProjectile_OnHit_Statics::FuncParams); } return ReturnFunction; } UClass* Z_Construct_UClass_ATGP_DuosProjectile_NoRegister() { return ATGP_DuosProjectile::StaticClass(); } struct Z_Construct_UClass_ATGP_DuosProjectile_Statics { static UObject* (*const DependentSingletons[])(); static const FClassFunctionLinkInfo FuncInfo[]; #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam Class_MetaDataParams[]; #endif #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam NewProp_ProjectileMovement_MetaData[]; #endif static const UE4CodeGen_Private::FObjectPropertyParams NewProp_ProjectileMovement; #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam NewProp_CollisionComp_MetaData[]; #endif static const UE4CodeGen_Private::FObjectPropertyParams NewProp_CollisionComp; static const UE4CodeGen_Private::FPropertyParamsBase* const PropPointers[]; static const FCppClassTypeInfoStatic StaticCppClassTypeInfo; static const UE4CodeGen_Private::FClassParams ClassParams; }; UObject* (*const Z_Construct_UClass_ATGP_DuosProjectile_Statics::DependentSingletons[])() = { (UObject* (*)())Z_Construct_UClass_AActor, (UObject* (*)())Z_Construct_UPackage__Script_TGP_Duos, }; const FClassFunctionLinkInfo Z_Construct_UClass_ATGP_DuosProjectile_Statics::FuncInfo[] = { { &Z_Construct_UFunction_ATGP_DuosProjectile_OnHit, "OnHit" }, // 250198611 }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_ATGP_DuosProjectile_Statics::Class_MetaDataParams[] = { { "IncludePath", "TGP_DuosProjectile.h" }, { "ModuleRelativePath", "TGP_DuosProjectile.h" }, }; #endif #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_ProjectileMovement_MetaData[] = { { "AllowPrivateAccess", "true" }, { "Category", "Movement" }, { "EditInline", "true" }, { "ModuleRelativePath", "TGP_DuosProjectile.h" }, { "ToolTip", "Projectile movement component" }, }; #endif const UE4CodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_ProjectileMovement = { UE4CodeGen_Private::EPropertyClass::Object, "ProjectileMovement", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x00400000000a001d, 1, nullptr, STRUCT_OFFSET(ATGP_DuosProjectile, ProjectileMovement), Z_Construct_UClass_UProjectileMovementComponent_NoRegister, METADATA_PARAMS(Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_ProjectileMovement_MetaData, ARRAY_COUNT(Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_ProjectileMovement_MetaData)) }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_CollisionComp_MetaData[] = { { "Category", "Projectile" }, { "EditInline", "true" }, { "ModuleRelativePath", "TGP_DuosProjectile.h" }, { "ToolTip", "Sphere collision component" }, }; #endif const UE4CodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_CollisionComp = { UE4CodeGen_Private::EPropertyClass::Object, "CollisionComp", RF_Public|RF_Transient|RF_MarkAsNative, (EPropertyFlags)0x00400000000b0009, 1, nullptr, STRUCT_OFFSET(ATGP_DuosProjectile, CollisionComp), Z_Construct_UClass_USphereComponent_NoRegister, METADATA_PARAMS(Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_CollisionComp_MetaData, ARRAY_COUNT(Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_CollisionComp_MetaData)) }; const UE4CodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ATGP_DuosProjectile_Statics::PropPointers[] = { (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_ProjectileMovement, (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ATGP_DuosProjectile_Statics::NewProp_CollisionComp, }; const FCppClassTypeInfoStatic Z_Construct_UClass_ATGP_DuosProjectile_Statics::StaticCppClassTypeInfo = { TCppClassTypeTraits<ATGP_DuosProjectile>::IsAbstract, }; const UE4CodeGen_Private::FClassParams Z_Construct_UClass_ATGP_DuosProjectile_Statics::ClassParams = { &ATGP_DuosProjectile::StaticClass, DependentSingletons, ARRAY_COUNT(DependentSingletons), 0x008000A0u, FuncInfo, ARRAY_COUNT(FuncInfo), Z_Construct_UClass_ATGP_DuosProjectile_Statics::PropPointers, ARRAY_COUNT(Z_Construct_UClass_ATGP_DuosProjectile_Statics::PropPointers), "Game", &StaticCppClassTypeInfo, nullptr, 0, METADATA_PARAMS(Z_Construct_UClass_ATGP_DuosProjectile_Statics::Class_MetaDataParams, ARRAY_COUNT(Z_Construct_UClass_ATGP_DuosProjectile_Statics::Class_MetaDataParams)) }; UClass* Z_Construct_UClass_ATGP_DuosProjectile() { static UClass* OuterClass = nullptr; if (!OuterClass) { UE4CodeGen_Private::ConstructUClass(OuterClass, Z_Construct_UClass_ATGP_DuosProjectile_Statics::ClassParams); } return OuterClass; } IMPLEMENT_CLASS(ATGP_DuosProjectile, 1752243398); static FCompiledInDefer Z_CompiledInDefer_UClass_ATGP_DuosProjectile(Z_Construct_UClass_ATGP_DuosProjectile, &ATGP_DuosProjectile::StaticClass, TEXT("/Script/TGP_Duos"), TEXT("ATGP_DuosProjectile"), false, nullptr, nullptr, nullptr); DEFINE_VTABLE_PTR_HELPER_CTOR(ATGP_DuosProjectile); PRAGMA_ENABLE_DEPRECATION_WARNINGS #ifdef _MSC_VER #pragma warning (pop) #endif
27ca0c7a5f2b535174e750b78d575d36170bc40c
2aed63d9aa027419b797e56b508417789a604a8b
/injector2degHex/case_interPhaseChangeFoam_3mm/processor3/0.5/alpha.water
af29fd10bc0a0aeb4aaef5f2f96abb8b73d63a85
[]
no_license
icl-rocketry/injectorCFDModelling
70137f1c6574240c7202638c3713102a3e1e9fd8
96591cf2cf3cd4cbd64536d8ae47ed8080ed9016
refs/heads/main
2023-08-25T03:30:59.244137
2021-10-09T21:04:45
2021-10-09T21:04:45
322,369,673
3
5
null
null
null
null
UTF-8
C++
false
false
47,520
water
alpha.water
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2012 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.5"; object alpha.water; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField nonuniform List<scalar> 3338 ( -2.34151e-73 -1.72064e-74 -9.45263e-76 -3.88909e-77 -1.2022e-78 -2.79517e-80 -4.87602e-82 -6.35473e-84 -6.14275e-86 -4.36383e-88 -2.25203e-90 -8.32282e-93 -2.16668e-95 -3.89598e-98 -4.72784e-101 -3.76696e-104 -1.90453e-107 -5.83329e-111 -1.00687e-114 -8.54661e-119 -2.51697e-123 -2.1231e-72 -1.58327e-73 -8.84327e-75 -3.7062e-76 -1.16918e-77 -2.77908e-79 -4.96431e-81 -6.63494e-83 -6.58569e-85 -4.80876e-87 -2.55227e-89 -9.70178e-92 -2.59637e-94 -4.79293e-97 -5.95751e-100 -4.84564e-103 -2.48973e-106 -7.70593e-110 -1.33471e-113 -1.1252e-117 -3.20151e-122 -1.90446e-71 -1.44165e-72 -8.18907e-74 -3.49706e-75 -1.12623e-76 -2.73781e-78 -5.01023e-80 -6.87085e-82 -7.00717e-84 -5.26283e-86 -2.87526e-88 -1.12531e-90 -3.09944e-93 -5.8813e-96 -7.49713e-99 -6.23127e-102 -3.25481e-105 -1.01685e-108 -1.76034e-112 -1.45969e-116 -3.91436e-121 -1.68969e-70 -1.29869e-71 -7.50421e-73 -3.26621e-74 -1.07417e-75 -2.67149e-77 -5.01043e-79 -7.05345e-81 -7.39502e-83 -5.71671e-85 -3.21743e-87 -1.29772e-89 -3.68269e-92 -7.19204e-95 -9.41468e-98 -8.00609e-101 -4.25489e-104 -1.34167e-107 -2.31699e-111 -1.88065e-115 -4.75757e-120 -1.48244e-69 -1.15714e-70 -6.80318e-72 -3.01877e-73 -1.01409e-74 -2.58104e-76 -4.96289e-78 -7.17484e-80 -7.73687e-82 -6.15963e-84 -3.57381e-86 -1.48681e-88 -4.35169e-91 -8.75718e-94 -1.17879e-96 -1.02704e-99 -5.56031e-103 -1.77074e-106 -3.04891e-110 -2.41721e-114 -5.76936e-119 -1.28583e-68 -1.01953e-69 -6.10017e-71 -2.76016e-72 -9.47346e-74 -2.4682e-75 -4.86709e-77 -7.22856e-79 -8.02056e-81 -6.57963e-83 -3.93793e-85 -1.69116e-87 -5.11008e-90 -1.06087e-92 -1.47042e-95 -1.31457e-98 -7.26102e-102 -2.33829e-105 -4.01662e-109 -3.10944e-113 -6.99186e-118 -1.10235e-67 -8.88038e-69 -5.40854e-70 -2.49595e-71 -8.75445e-73 -2.33537e-74 -4.72402e-76 -7.20999e-78 -8.23471e-80 -6.96389e-82 -4.30187e-84 -1.90844e-86 -5.95872e-89 -1.27762e-91 -1.82593e-94 -1.67769e-97 -9.47087e-101 -3.08964e-104 -5.30315e-108 -4.0139e-112 -8.50708e-117 -9.33856e-67 -7.64494e-68 -4.74031e-69 -2.23155e-70 -8.00022e-72 -2.18562e-73 -4.53626e-75 -7.11668e-77 -8.36939e-79 -7.29924e-81 -4.6563e-83 -2.13525e-85 -6.89473e-88 -1.52841e-90 -2.25532e-93 -2.13322e-96 -1.23319e-99 -4.08438e-103 -7.02192e-107 -5.21016e-111 -1.0435e-115 -7.81538e-66 -6.50294e-67 -4.10583e-68 -1.97204e-69 -7.22753e-71 -2.0225e-72 -4.3079e-74 -6.94868e-76 -8.4167e-78 -7.57281e-80 -4.99081e-82 -2.36711e-84 -7.91064e-87 -1.81487e-89 -2.76861e-92 -2.7003e-95 -1.60186e-98 -5.40008e-102 -9.32723e-106 -6.80987e-110 -1.29484e-114 -6.45972e-65 -5.46411e-66 -3.51351e-67 -1.72202e-68 -6.45291e-70 -1.8499e-71 -4.0444e-73 -6.70863e-75 -8.37141e-77 -7.77274e-79 -5.2943e-81 -2.59847e-83 -8.99366e-86 -2.1374e-88 -3.37512e-91 -3.39997e-94 -2.07414e-97 -7.13658e-101 -1.24277e-104 -8.96931e-109 -1.62892e-113 -5.2717e-64 -4.53398e-65 -2.9696e-66 -1.48538e-67 -5.69191e-69 -1.67188e-70 -3.75235e-72 -6.40173e-74 -8.23141e-76 -7.88896e-78 -5.55545e-80 -2.82284e-82 -1.01251e-84 -2.49479e-87 -4.08257e-90 -4.25451e-93 -2.67485e-96 -9.42066e-100 -1.66035e-103 -1.19071e-107 -2.08009e-112 -4.24654e-63 -3.71419e-64 -2.47823e-65 -1.26526e-66 -4.95857e-68 -1.49248e-69 -3.43916e-71 -6.03561e-73 -7.998e-75 -7.91386e-77 -5.76336e-79 -3.033e-81 -1.12802e-83 -2.88385e-86 -4.89602e-89 -5.28631e-92 -3.43251e-95 -1.24106e-98 -2.2227e-102 -1.59278e-106 -2.69756e-111 -3.37548e-62 -3.00289e-63 -2.04144e-64 -1.06397e-65 -4.26488e-67 -1.31555e-68 -3.11275e-70 -5.61997e-72 -7.67601e-74 -7.84294e-76 -5.9082e-78 -3.22126e-80 -1.24284e-82 -3.29907e-85 -5.81658e-88 -6.5162e-91 -4.37875e-94 -1.63003e-97 -2.97869e-101 -2.14537e-105 -3.55218e-110 -2.64678e-61 -2.39536e-62 -1.65938e-63 -8.82954e-65 -3.62044e-66 -1.1446e-67 -2.78109e-69 -5.16615e-71 -7.27367e-73 -7.67524e-75 -5.98194e-77 -3.37993e-79 -1.35338e-81 -3.73239e-84 -6.8401e-87 -7.9613e-90 -5.54727e-93 -2.13209e-96 -3.99154e-100 -2.9065e-104 -4.74587e-109 -2.04663e-60 -1.88458e-61 -1.33054e-62 -7.22878e-64 -3.0323e-65 -9.82619e-67 -2.45192e-68 -4.68649e-70 -6.80229e-72 -7.41367e-74 -5.97891e-76 -3.50173e-78 -1.45569e-80 -4.17312e-83 -7.9559e-86 -9.63239e-89 -6.97193e-92 -2.77408e-95 -5.34144e-99 -3.95503e-103 -6.42476e-108 -1.56012e-59 -1.46193e-60 -1.05203e-61 -5.83659e-63 -2.50488e-64 -8.3205e-66 -2.13232e-67 -4.19379e-69 -6.27564e-71 -7.06495e-73 -5.89639e-75 -3.58032e-77 -1.54565e-79 -4.60814e-82 -9.1457e-85 -1.15308e-87 -8.68407e-91 -3.58597e-94 -7.12791e-98 -5.39664e-102 -8.79699e-107 -1.17197e-58 -1.11778e-59 -8.19982e-61 -4.64587e-62 -2.04008e-63 -6.94681e-65 -1.82847e-66 -3.70059e-68 -5.70929e-70 -6.63937e-72 -5.73492e-74 -3.61076e-76 -1.61916e-78 -5.02225e-81 -1.0383e-83 -1.36454e-86 -1.07088e-89 -4.59977e-93 -9.47114e-97 -7.37053e-101 -1.21563e-105 -8.6729e-58 -8.42062e-59 -6.29785e-60 -3.64443e-61 -1.63754e-62 -5.7165e-64 -1.54542e-65 -3.2186e-67 -5.11972e-69 -6.1503e-71 -5.49847e-73 -3.58996e-75 -1.6725e-77 -5.39889e-80 -1.16329e-82 -1.59493e-85 -1.30608e-88 -5.84746e-92 -1.25116e-95 -1.00562e-99 -1.69119e-104 -6.32028e-57 -6.24782e-58 -4.76465e-59 -2.81634e-60 -1.29497e-61 -4.63463e-63 -1.28694e-64 -2.75816e-66 -4.52342e-68 -5.61338e-70 -5.19428e-72 -3.51705e-74 -1.70254e-76 -5.72105e-79 -1.28533e-81 -1.8398e-84 -1.5739e-87 -7.35822e-91 -1.64068e-94 -1.36793e-98 -2.36248e-103 -4.53384e-56 -4.56396e-57 -3.54938e-58 -2.14319e-59 -1.00851e-60 -3.70059e-62 -1.05547e-63 -2.32783e-65 -3.93607e-67 -5.0457e-69 -4.83255e-71 -3.3935e-73 -1.70706e-75 -5.97242e-78 -1.39957e-80 -2.09277e-83 -1.87217e-86 -9.15448e-90 -2.13244e-93 -1.85151e-97 -3.30487e-102 -3.20021e-55 -3.28102e-56 -2.60244e-57 -1.60541e-58 -7.73174e-60 -2.90884e-61 -8.52193e-63 -1.93411e-64 -3.37167e-66 -4.46471e-68 -4.42581e-70 -3.22316e-72 -1.68495e-74 -6.13861e-77 -1.50087e-79 -2.34563e-82 -2.19618e-85 -1.12473e-88 -2.74306e-92 -2.48869e-96 -4.61722e-101 -2.22174e-54 -2.32033e-55 -1.87732e-56 -1.18326e-57 -5.83272e-59 -2.25001e-60 -6.7709e-62 -1.58133e-63 -2.84203e-65 -3.88728e-67 -3.98815e-69 -3.01209e-71 -1.63636e-73 -6.20845e-76 -1.58407e-78 -2.58855e-81 -2.53837e-84 -1.36313e-87 -3.48721e-91 -3.31577e-95 -6.42548e-100 -1.51643e-53 -1.61353e-54 -1.33179e-55 -8.57745e-57 -4.3279e-58 -1.71189e-59 -5.29161e-61 -1.27171e-62 -2.35623e-64 -3.32876e-66 -3.53434e-68 -2.76815e-70 -1.5628e-72 -6.17508e-75 -1.64442e-77 -2.81056e-80 -2.88823e-83 -1.62794e-86 -4.37542e-90 -4.37105e-94 -8.88466e-99 -1.01711e-52 -1.1028e-53 -9.28708e-55 -6.11258e-56 -3.15721e-57 -1.28058e-58 -4.06602e-60 -1.00551e-61 -1.92053e-63 -2.80224e-65 -3.07892e-67 -2.50055e-69 -1.46699e-71 -6.03673e-74 -1.67798e-76 -3.00029e-79 -3.23248e-82 -1.91386e-85 -5.41132e-89 -5.69172e-93 -1.21776e-97 -6.70088e-52 -7.4047e-53 -6.36312e-54 -4.28037e-55 -2.26336e-56 -9.41401e-58 -3.0704e-59 -7.81307e-61 -1.53828e-62 -2.31798e-64 -2.63533e-66 -2.21916e-68 -1.35277e-70 -5.7972e-73 -1.68203e-75 -3.14678e-78 -3.55565e-81 -2.21276e-84 -6.58874e-88 -7.30921e-92 -1.65089e-96 -4.33404e-51 -4.88198e-52 -4.28153e-53 -2.9439e-54 -1.59375e-55 -6.798e-57 -2.27752e-58 -5.9633e-60 -1.21021e-61 -1.88317e-63 -2.21517e-65 -1.93389e-67 -1.22482e-69 -5.46577e-72 -1.65533e-74 -3.2405e-77 -3.84101e-80 -2.51367e-83 -7.88899e-87 -9.24331e-91 -2.20919e-95 -2.75061e-50 -3.15895e-51 -2.8278e-52 -1.98764e-53 -1.10178e-54 -4.81965e-56 -1.65868e-57 -4.46864e-59 -9.34732e-61 -1.50188e-62 -1.82768e-64 -1.65404e-66 -1.08827e-68 -5.05662e-71 -1.59841e-73 -3.27426e-76 -4.07183e-79 -2.80318e-82 -9.27883e-86 -1.14953e-89 -2.91277e-94 -1.71199e-49 -2.00503e-50 -1.8323e-51 -1.31674e-52 -7.47403e-54 -3.3532e-55 -1.18544e-56 -3.28603e-58 -7.08432e-60 -1.17525e-61 -1.47943e-63 -1.38774e-65 -9.48403e-68 -4.58779e-70 -1.5135e-72 -3.24406e-75 -4.23289e-78 -3.06617e-81 -1.07097e-84 -1.40409e-88 -3.77749e-93 -1.0444e-48 -1.24763e-49 -1.16415e-50 -8.55425e-52 -4.97253e-53 -2.28818e-54 -8.30983e-56 -2.37004e-57 -5.26592e-59 -9.01894e-61 -1.17427e-62 -1.14154e-64 -8.10225e-67 -4.07981e-69 -1.40447e-71 -3.14966e-74 -4.31201e-77 -3.28695e-80 -1.21187e-83 -1.68245e-87 -4.81127e-92 -6.24116e-48 -7.60663e-49 -7.2483e-50 -5.44685e-51 -3.24285e-52 -1.53065e-53 -5.71044e-55 -1.67571e-56 -3.83695e-58 -6.78389e-60 -9.13465e-62 -9.20156e-64 -6.7817e-66 -3.55406e-68 -1.27651e-70 -2.99476e-73 -4.30148e-76 -3.45065e-79 -1.34318e-82 -1.97551e-86 -6.00986e-91 -3.65113e-47 -4.54124e-48 -4.42007e-49 -3.39736e-50 -2.07185e-51 -1.00317e-52 -3.8448e-54 -1.16082e-55 -2.73906e-57 -4.99883e-59 -6.96036e-61 -7.26416e-63 -5.55842e-65 -3.03117e-67 -1.13568e-69 -2.78684e-72 -4.19908e-75 -3.54479e-78 -1.45691e-81 -2.27069e-85 -7.35288e-90 -2.08966e-46 -2.65314e-47 -2.63828e-48 -2.07449e-49 -1.29604e-50 -6.43777e-52 -2.53488e-53 -7.87427e-55 -1.91459e-56 -3.60647e-58 -5.19212e-60 -5.6133e-62 -4.45858e-64 -2.52956e-66 -9.88435e-69 -2.53652e-71 -4.00864e-74 -3.56074e-77 -1.54522e-80 -2.55244e-84 -8.80083e-89 -1.16929e-45 -1.51587e-46 -1.54039e-47 -1.23932e-48 -7.93307e-50 -4.04297e-51 -1.63555e-52 -5.22732e-54 -1.30966e-55 -2.54606e-57 -3.78949e-59 -4.24336e-61 -3.49803e-63 -2.06429e-65 -8.41084e-68 -2.25666e-70 -3.73984e-73 -3.49489e-76 -1.60122e-79 -2.8033e-83 -1.0294e-87 -6.39246e-45 -8.46415e-46 -8.79158e-47 -7.23897e-48 -4.74846e-49 -2.48312e-50 -1.03211e-51 -3.39397e-53 -8.76164e-55 -1.75781e-56 -2.70447e-58 -3.13618e-60 -2.68269e-62 -1.64637e-64 -6.99292e-67 -1.96119e-69 -3.40746e-72 -3.34933e-75 -1.61985e-78 -3.00547e-82 -1.17541e-86 -3.41194e-44 -4.61539e-45 -4.90146e-46 -4.13135e-47 -2.77756e-48 -1.49055e-49 -6.366e-51 -2.15389e-52 -5.72913e-54 -1.18609e-55 -1.88618e-57 -2.26478e-59 -2.00988e-61 -1.28245e-63 -5.67717e-66 -1.66385e-68 -3.02995e-71 -3.13184e-74 -1.59855e-77 -3.14277e-81 -1.30893e-85 -1.77663e-43 -2.45589e-44 -2.66738e-45 -2.30208e-46 -1.58661e-47 -8.73869e-49 -3.83526e-50 -1.33517e-51 -3.65918e-53 -7.81682e-55 -1.2847e-56 -1.59701e-58 -1.4701e-60 -9.7507e-63 -4.49756e-65 -1.37708e-67 -2.62766e-70 -2.85528e-73 -1.53768e-76 -3.20263e-80 -1.42022e-84 -9.0182e-43 -1.27422e-43 -1.41583e-44 -1.25152e-45 -8.84421e-47 -5.00026e-48 -2.25532e-49 -8.07893e-51 -2.28127e-52 -5.02823e-54 -8.53984e-56 -1.09889e-57 -1.04908e-59 -7.23138e-62 -3.47457e-64 -1.11112e-66 -2.22089e-69 -2.53622e-72 -1.44068e-75 -3.17788e-79 -1.50009e-83 -4.45874e-42 -6.441e-43 -7.32411e-44 -6.63293e-45 -4.80727e-46 -2.79036e-47 -1.29356e-48 -4.76824e-50 -1.38726e-51 -3.15477e-53 -5.53637e-55 -7.37344e-57 -7.29892e-59 -5.22754e-61 -2.61579e-63 -8.73405e-66 -1.82809e-68 -2.19327e-71 -1.31367e-74 -3.06794e-78 -1.54106e-82 -2.14542e-41 -3.16926e-42 -3.68937e-43 -3.42428e-44 -2.54591e-45 -1.51744e-46 -7.23103e-48 -2.74299e-49 -8.22247e-51 -1.92916e-52 -3.49792e-54 -4.82099e-56 -4.94746e-58 -3.68086e-60 -1.91764e-62 -6.68347e-65 -1.4644e-67 -1.84517e-70 -1.1649e-73 -2.87925e-77 -1.53844e-81 -1.00383e-40 -1.51657e-41 -1.80811e-42 -1.72053e-43 -1.3126e-44 -8.03508e-46 -3.93639e-47 -1.53676e-48 -4.74651e-50 -1.1489e-51 -2.15215e-53 -3.06918e-55 -3.26476e-57 -2.52262e-59 -1.36793e-61 -4.97497e-64 -1.14071e-66 -1.50896e-69 -1.00374e-72 -2.62466e-76 -1.49115e-80 -4.56341e-40 -7.05086e-41 -8.61344e-42 -8.40618e-43 -6.58245e-44 -4.13929e-45 -2.08504e-46 -8.37807e-48 -2.66633e-49 -6.65813e-51 -1.28843e-52 -1.901e-54 -2.09564e-56 -1.68134e-58 -9.48753e-61 -3.59945e-63 -8.63376e-66 -1.19857e-68 -8.39703e-72 -2.32196e-75 -1.40203e-79 -2.01377e-39 -3.18158e-40 -3.98469e-41 -3.99006e-42 -3.20785e-43 -2.07266e-44 -1.07366e-45 -4.44075e-47 -1.45628e-48 -3.75153e-50 -7.49901e-52 -1.14458e-53 -1.30742e-55 -1.08893e-57 -6.39242e-60 -2.52914e-62 -6.34402e-65 -9.23895e-68 -6.81436e-71 -1.99179e-74 -1.2776e-78 -8.61616e-39 -1.39175e-39 -1.78831e-40 -1.83815e-41 -1.51774e-42 -1.00782e-43 -5.36961e-45 -2.28634e-46 -7.72625e-48 -2.0533e-49 -4.23946e-51 -6.69307e-53 -7.92059e-55 -6.84691e-57 -4.18039e-59 -1.72431e-61 -4.5215e-64 -6.90506e-67 -5.35953e-70 -1.65517e-73 -1.12727e-77 -3.55578e-38 -5.89468e-39 -7.77803e-40 -8.21034e-41 -6.96457e-42 -4.75403e-43 -2.60564e-44 -1.14227e-45 -3.97797e-47 -1.0906e-48 -2.32575e-50 -3.79754e-52 -4.6551e-54 -4.17569e-56 -2.6509e-58 -1.1396e-60 -3.12279e-63 -4.99901e-66 -4.08145e-69 -1.33115e-72 -9.6213e-77 -1.42014e-37 -2.41586e-38 -3.27504e-39 -3.55179e-40 -3.09629e-41 -2.17319e-42 -1.22553e-43 -5.53209e-45 -1.9855e-46 -5.61564e-48 -1.23683e-49 -2.08849e-51 -2.65147e-53 -2.4675e-55 -1.62838e-57 -7.29357e-60 -2.08787e-62 -3.50212e-65 -3.0064e-68 -1.03504e-71 -7.93528e-76 -5.48747e-37 -9.57199e-38 -1.33352e-38 -1.48643e-39 -1.33212e-40 -9.61612e-42 -5.58065e-43 -2.59425e-44 -9.59649e-46 -2.80007e-47 -6.36909e-49 -1.11208e-50 -1.46201e-52 -1.41126e-54 -9.67894e-57 -4.5155e-59 -1.34986e-61 -2.37156e-64 -2.13967e-67 -7.77237e-71 -6.31737e-75 -3.66299e-37 -5.24492e-38 -6.01073e-39 -5.53956e-40 -4.1138e-41 -2.45736e-42 -1.17656e-43 -4.48606e-45 -1.35037e-46 -3.17205e-48 -5.72653e-50 -7.79477e-52 -7.80287e-54 -5.56017e-56 -2.70104e-58 -8.42916e-61 -1.55051e-63 -1.4696e-66 -5.6299e-70 -4.84888e-74 -1.35306e-36 -1.9905e-37 -2.34555e-38 -2.22367e-39 -1.69927e-40 -1.04499e-41 -5.15388e-43 -2.02565e-44 -6.29057e-46 -1.52593e-47 -2.84797e-49 -4.01307e-51 -4.16519e-53 -3.08297e-55 -1.559e-57 -5.07712e-60 -9.77429e-63 -9.72835e-66 -3.92858e-69 -3.58357e-73 -7.2772e-37 -8.82038e-38 -8.60435e-39 -6.76771e-40 -4.28547e-41 -2.17748e-42 -8.8225e-44 -2.82656e-45 -7.08008e-47 -1.36598e-48 -1.99226e-50 -2.14347e-52 -1.64757e-54 -8.67e-57 -2.94551e-59 -5.93251e-62 -6.1978e-65 -2.63715e-68 -2.54648e-72 -2.55847e-36 -3.19142e-37 -3.20444e-38 -2.59487e-39 -1.69223e-40 -8.85931e-42 -3.7006e-43 -1.22315e-44 -3.1635e-46 -6.30852e-48 -9.52165e-50 -1.06171e-51 -8.47234e-54 -4.63816e-56 -1.64325e-58 -3.4612e-61 -3.79395e-64 -1.7002e-67 -1.7371e-71 -8.63654e-36 -1.10916e-36 -1.14667e-37 -9.56198e-39 -6.42327e-40 -3.46521e-41 -1.49229e-42 -5.08853e-44 -1.3588e-45 -2.80031e-47 -4.37314e-49 -5.05244e-51 -4.18457e-53 -2.38244e-55 -8.79921e-58 -1.93752e-60 -2.22742e-63 -1.05083e-66 -1.13549e-70 -2.79412e-35 -3.6959e-36 -3.93526e-37 -3.38008e-38 -2.33921e-39 -1.3005e-40 -5.77428e-42 -2.03116e-43 -5.59925e-45 -1.19234e-46 -1.92615e-48 -2.30513e-50 -1.9809e-52 -1.17251e-54 -4.51279e-57 -1.03839e-59 -1.25152e-62 -6.21327e-66 -7.09753e-70 -8.64606e-35 -1.17835e-35 -1.29259e-36 -1.14379e-37 -8.15599e-39 -4.67318e-40 -2.13919e-41 -7.76177e-43 -2.2085e-44 -4.85833e-46 -8.11632e-48 -1.00583e-49 -8.96515e-52 -5.5148e-54 -2.21107e-56 -5.31457e-59 -6.71273e-62 -3.50567e-65 -4.23187e-69 -2.55319e-34 -3.58651e-35 -4.05411e-36 -3.69647e-37 -2.71605e-38 -1.60385e-39 -7.56849e-41 -2.83213e-42 -8.3156e-44 -1.88914e-45 -3.26258e-47 -4.18515e-49 -3.86748e-51 -2.47138e-53 -1.03176e-55 -2.58954e-58 -3.42652e-61 -1.88179e-64 -2.39976e-68 -7.17697e-34 -1.03942e-34 -1.21098e-35 -1.13782e-36 -8.61486e-38 -5.24231e-39 -2.54974e-40 -9.83706e-42 -2.97938e-43 -6.98688e-45 -1.24677e-46 -1.65458e-48 -1.58438e-50 -1.05121e-52 -4.56764e-55 -1.19659e-57 -1.65817e-60 -9.57359e-64 -1.28948e-67 -1.91487e-33 -2.85991e-34 -3.43454e-35 -3.32547e-36 -2.59418e-37 -1.6264e-38 -8.15034e-40 -3.24046e-41 -1.0118e-42 -2.44763e-44 -4.50955e-46 -6.18677e-48 -6.13439e-50 -4.22313e-52 -1.90882e-54 -5.21724e-57 -7.56926e-60 -4.5936e-63 -6.53433e-67 -4.83317e-33 -7.44491e-34 -9.21596e-35 -9.19409e-36 -7.38773e-37 -4.76983e-38 -2.46135e-39 -1.00771e-40 -3.24079e-42 -8.07864e-44 -1.53504e-45 -2.17462e-47 -2.2303e-49 -1.5917e-51 -7.47852e-54 -2.13165e-56 -3.23713e-59 -2.06498e-62 -3.10277e-66 -1.1495e-32 -1.82614e-33 -2.32968e-34 -2.39384e-35 -1.98026e-36 -1.31571e-37 -6.98438e-39 -2.94089e-40 -9.72688e-42 -2.49429e-43 -4.87882e-45 -7.12353e-47 -7.54417e-49 -5.57377e-51 -2.71962e-53 -8.08004e-56 -1.28429e-58 -8.61419e-62 -1.36805e-65 -2.56399e-32 -4.19966e-33 -5.51889e-34 -5.83703e-35 -4.96641e-36 -3.39149e-37 -1.84909e-38 -7.9907e-40 -2.71109e-41 -7.12977e-43 -1.43078e-44 -2.14586e-46 -2.3399e-48 -1.78578e-50 -9.03665e-53 -2.7971e-55 -4.65479e-58 -3.28603e-61 -5.52408e-65 -5.33211e-32 -8.99852e-33 -1.21705e-33 -1.32338e-34 -1.15637e-35 -8.09924e-37 -4.52292e-38 -1.99845e-39 -6.92169e-41 -1.85576e-42 -3.79501e-44 -5.80446e-46 -6.4831e-48 -5.09425e-50 -2.66916e-52 -8.60683e-55 -1.50163e-57 -1.1185e-60 -1.99692e-64 -1.02607e-31 -1.78171e-32 -2.47647e-33 -2.76316e-34 -2.47322e-35 -1.77007e-36 -1.00734e-37 -4.5178e-39 -1.58012e-40 -4.26269e-42 -8.74171e-44 -1.33613e-45 -1.51515e-47 -1.22286e-49 -6.63563e-52 -2.23437e-54 -4.10555e-57 -3.24704e-60 -6.2032e-64 -1.80841e-31 -3.22284e-32 -4.59274e-33 -5.24075e-34 -4.783e-35 -3.47275e-36 -1.9921e-37 -8.9235e-39 -3.05386e-40 -8.00675e-42 -1.56847e-43 -2.17744e-45 -2.49846e-47 -2.12706e-49 -1.21984e-51 -4.35697e-54 -8.56547e-57 -7.31902e-60 -1.5241e-63 -2.87545e-31 -5.23314e-32 -7.61892e-33 -8.83637e-34 -8.14414e-35 -5.90319e-36 -3.30991e-37 -1.41504e-38 -4.16042e-40 -8.89569e-42 -1.24583e-43 4.87988e-46 -2.89986e-48 -1.32159e-49 -1.07923e-51 -4.57888e-54 -1.03328e-56 -1.01301e-59 -2.42979e-63 -4.01954e-31 -7.39096e-32 -1.0943e-32 -1.27253e-33 -1.1524e-34 -7.96494e-36 -3.84903e-37 -1.16016e-38 -1.30776e-57 -1.69174e-74 -1.07109e-63 3.33439e-44 7.44985e-47 0 -3.46046e-80 -1.86745e-55 -1.53491e-57 -3.17336e-60 -1.25901e-63 -4.66047e-31 -8.44044e-32 -1.26677e-32 -1.42024e-33 -1.12004e-34 -5.65819e-36 1.33929e-63 -1.67075e-48 -1.41192e-49 4.69324e-39 1.15952e-40 1.88355e-53 1.52578e-54 1.52047e-54 3.13135e-58 3.40372e-62 -1.60658e-59 -1.11778e-61 -9.20194e-65 -3.66221e-31 -6.12447e-32 -9.36836e-33 -8.34451e-34 -2.91238e-43 -6.30118e-46 -5.05204e-52 -2.18286e-48 1.03115e-47 8.42193e-38 7.78151e-40 1.90288e-52 1.68373e-53 3.20504e-53 5.49631e-57 3.18699e-61 1.58452e-65 2.40975e-69 -5.1419e-68 -6.81166e-41 -1.40541e-43 -3.78977e-45 -2.55397e-44 -1.03942e-47 -1.25751e-45 -1.74976e-46 1.08845e-33 8.86255e-35 7.66399e-47 5.8043e-48 5.7648e-48 2.58225e-51 3.40691e-55 1.13859e-58 2.71997e-62 1.45827e-66 1.79334e-70 6.04136e-74 -2.68028e-42 4.66894e-36 7.57737e-56 5.56088e-36 3.5208e-36 1.34192e-38 2.28907e-37 9.42636e-33 3.21437e-34 3.50498e-46 2.47189e-47 4.84357e-47 1.69114e-50 1.08011e-54 4.96794e-58 1.10507e-61 8.19748e-66 1.0503e-69 5.93483e-71 3.53781e-32 3.63573e-33 4.98915e-35 1.83434e-35 4.37164e-36 2.43815e-29 3.91615e-30 1.30492e-41 1.21235e-42 1.23726e-42 3.34157e-46 2.75653e-49 1.13761e-52 2.16101e-56 1.0432e-59 2.09164e-63 1.28834e-67 4.94652e-71 3.47771e-71 6.2818e-32 1.05017e-32 8.34975e-34 1.8433e-34 3.06158e-33 1.11691e-28 7.23856e-30 2.85093e-41 2.54685e-42 3.79331e-42 1.1567e-45 4.87998e-49 2.2798e-52 4.69122e-56 4.22757e-58 5.06472e-70 1.57841e-65 2.96233e-71 2.96233e-71 6.04948e-31 1.10784e-31 1.57419e-32 9.04417e-26 7.09914e-26 6.26496e-29 7.53063e-40 6.80761e-41 8.15054e-41 9.35596e-44 4.65801e-50 2.2558e-50 4.22589e-54 2.59428e-60 1.35007e-60 2.96233e-71 2.96233e-71 2.96233e-71 2.96233e-71 1.33586e-22 8.91662e-24 1.48747e-30 2.30893e-25 1.34597e-25 1.51947e-36 1.85142e-39 8.98449e-41 9.28967e-41 9.23946e-44 4.64134e-50 2.36997e-50 7.6087e-59 2.04623e-59 2.22053e-59 2.96304e-71 2.96233e-71 2.96233e-71 2.96234e-71 3.3321e-22 2.4693e-21 9.23312e-22 8.37301e-27 8.62778e-27 5.83459e-28 4.70737e-39 2.79541e-40 4.52652e-40 4.29556e-43 2.56568e-49 2.15162e-49 1.05571e-49 7.6087e-59 5.3487e-57 4.42852e-71 2.96304e-71 2.96276e-71 2.9649e-71 4.49467e-24 3.31102e-21 2.95887e-21 3.82688e-23 1.66048e-34 7.91294e-36 8.09663e-36 1.03986e-37 7.88108e-41 6.45335e-44 5.94422e-49 7.45313e-49 2.84341e-49 7.84106e-57 7.8948e-55 1.24847e-67 4.42852e-71 2.96326e-71 7.07217e-71 6.24072e-20 1.54885e-21 1.92415e-21 1.59594e-22 3.63819e-33 5.42345e-36 2.01074e-37 1.93868e-37 1.62586e-40 6.27574e-44 9.56526e-49 1.34835e-46 6.00911e-50 4.32138e-51 1.14756e-55 5.61304e-62 1.03676e-54 4.42852e-71 2.78691e-68 2.06934e-17 8.5071e-22 3.18048e-26 1.44951e-23 7.7742e-25 1.16725e-35 4.33452e-37 7.17474e-37 1.91568e-40 5.31519e-42 1.47301e-42 5.48135e-49 1.17297e-49 1.0236e-50 2.79021e-54 6.60806e-47 4.12849e-51 1.24847e-67 9.74526e-63 3.01151e-17 7.87358e-19 6.52628e-27 1.28134e-26 2.54867e-26 5.43515e-30 9.58758e-38 1.16399e-37 7.77735e-38 5.73466e-40 1.66395e-42 1.55944e-44 1.83805e-48 3.52794e-50 1.26304e-42 2.44733e-45 6.45727e-61 7.43295e-64 1.57673e-60 8.16488e-18 2.7379e-19 1.51924e-29 3.22666e-32 8.89019e-34 8.16588e-34 2.04171e-37 2.131e-37 4.13001e-37 6.10616e-40 1.98681e-41 5.2407e-44 1.51187e-46 5.87648e-39 2.40241e-41 5.70657e-56 8.27844e-57 1.65526e-56 8.89554e-59 2.82611e-29 2.87605e-20 2.20983e-21 9.12279e-32 2.55988e-33 3.81849e-33 1.24717e-33 1.84542e-35 3.14352e-37 1.18597e-38 4.0144e-41 3.04884e-43 1.16123e-35 8.28036e-38 1.11069e-51 1.23508e-52 2.46782e-52 1.22412e-56 2.60298e-58 2.82611e-29 1.08351e-26 1.25469e-26 1.27436e-27 8.32296e-33 1.24874e-32 1.11319e-32 6.0497e-35 2.33099e-36 1.95862e-38 2.10159e-40 1.00119e-32 1.2801e-34 6.62449e-48 7.35579e-49 1.46787e-48 1.15454e-52 3.90032e-57 1.11757e-58 2.82611e-29 8.02896e-27 1.60633e-26 6.6625e-27 1.27365e-32 1.29805e-32 1.34677e-32 5.75883e-34 3.67484e-36 7.89289e-38 4.07812e-30 8.75026e-32 1.27406e-44 1.06192e-45 2.10769e-45 4.67098e-49 1.13358e-53 1.32021e-57 3.09931e-59 3.13802e-28 4.57385e-27 1.56297e-26 6.88967e-27 1.41558e-32 1.53011e-32 3.13845e-32 8.11776e-34 1.62279e-35 9.58205e-28 2.89542e-29 1.02073e-41 5.60691e-43 1.09221e-42 5.82292e-46 3.37363e-50 2.60661e-54 2.8869e-58 6.41672e-60 1.38077e-28 2.20946e-28 3.91415e-28 6.87824e-28 3.83167e-30 1.53183e-32 2.34475e-32 2.34358e-33 1.41841e-25 5.72557e-27 7.17706e-28 1.90795e-30 2.85961e-32 2.49588e-32 2.49271e-32 2.34507e-32 2.34554e-32 -2.34389e-73 -1.72302e-74 -9.46882e-76 -3.89687e-77 -1.2049e-78 -2.80199e-80 -4.88868e-82 -6.37197e-84 -6.15989e-86 -4.37618e-88 -2.25843e-90 -8.34633e-93 -2.1727e-95 -3.90655e-98 -4.74025e-101 -3.77645e-104 -1.9091e-107 -5.8465e-111 -1.00901e-114 -8.56337e-119 -2.52148e-123 -2.12535e-72 -1.58554e-73 -8.85892e-75 -3.71385e-76 -1.17189e-77 -2.78609e-79 -4.97766e-81 -6.65362e-83 -6.6048e-85 -4.82295e-87 -2.55985e-89 -9.73048e-92 -2.60396e-94 -4.80664e-97 -5.97406e-100 -4.85862e-103 -2.49611e-106 -7.72468e-110 -1.33777e-113 -1.12761e-117 -3.20785e-122 -1.90655e-71 -1.44378e-72 -8.20399e-74 -3.50449e-75 -1.12892e-76 -2.74493e-78 -5.02415e-80 -6.89087e-82 -7.02825e-84 -5.27897e-86 -2.88415e-88 -1.12879e-90 -3.10893e-93 -5.89898e-96 -7.51909e-99 -6.24892e-102 -3.26367e-105 -1.0195e-108 -1.76467e-112 -1.46308e-116 -3.92283e-121 -1.69161e-70 -1.30066e-71 -7.51824e-73 -3.27334e-74 -1.0768e-75 -2.67864e-77 -5.02476e-79 -7.07466e-81 -7.41803e-83 -5.73487e-85 -3.22777e-87 -1.3019e-89 -3.69446e-92 -7.21467e-95 -9.44364e-98 -8.03e-101 -4.26715e-104 -1.34537e-107 -2.32307e-111 -1.88533e-115 -4.76871e-120 -1.48417e-69 -1.15894e-70 -6.8162e-72 -3.02551e-73 -1.01664e-74 -2.58813e-76 -4.97748e-78 -7.19705e-80 -7.76169e-82 -6.17986e-84 -3.5857e-86 -1.49177e-88 -4.36617e-91 -8.78594e-94 -1.18258e-96 -1.03026e-99 -5.57717e-103 -1.77591e-106 -3.05742e-110 -2.42362e-114 -5.78385e-119 -1.28737e-68 -1.02115e-69 -6.11208e-71 -2.76645e-72 -9.49776e-74 -2.47513e-75 -4.88176e-77 -7.25153e-79 -8.04703e-81 -6.60191e-83 -3.95147e-85 -1.69701e-87 -5.12773e-90 -1.0645e-92 -1.47537e-95 -1.31889e-98 -7.28415e-102 -2.34547e-105 -4.02847e-109 -3.1182e-113 -7.0106e-118 -1.1037e-67 -8.89476e-69 -5.41928e-70 -2.50174e-71 -8.77735e-73 -2.34207e-74 -4.73858e-76 -7.23346e-78 -8.26261e-80 -6.98814e-82 -4.31711e-84 -1.91526e-86 -5.98003e-89 -1.28215e-91 -1.83231e-94 -1.68343e-97 -9.50244e-101 -3.09961e-104 -5.31962e-108 -4.02585e-112 -8.53127e-117 -9.35015e-67 -7.6575e-68 -4.74987e-69 -2.23681e-70 -8.0215e-72 -2.19201e-73 -4.55053e-75 -7.14036e-77 -8.39843e-79 -7.32532e-81 -4.67326e-83 -2.14311e-85 -6.92019e-88 -1.53403e-90 -2.2635e-93 -2.14082e-96 -1.23748e-99 -4.09818e-103 -7.04482e-107 -5.2265e-111 -1.04664e-115 -7.82522e-66 -6.51376e-67 -4.11422e-68 -1.97676e-69 -7.24704e-71 -2.02851e-72 -4.32169e-74 -6.97227e-76 -8.44654e-78 -7.60052e-80 -5.00948e-82 -2.37607e-84 -7.94074e-87 -1.82176e-89 -2.77901e-92 -2.71028e-95 -1.60766e-98 -5.41911e-102 -9.35906e-106 -6.83228e-110 -1.29894e-114 -6.46796e-65 -5.4733e-66 -3.52076e-67 -1.72618e-68 -6.47055e-70 -1.85547e-71 -4.05756e-73 -6.7318e-75 -8.40168e-77 -7.80181e-79 -5.31457e-81 -2.60857e-83 -9.02886e-86 -2.14575e-88 -3.38822e-91 -3.41299e-94 -2.08193e-97 -7.16275e-101 -1.2472e-104 -9.0002e-109 -1.63433e-113 -5.27848e-64 -4.54167e-65 -2.97578e-66 -1.48901e-67 -5.70764e-69 -1.67698e-70 -3.76472e-72 -6.4242e-74 -8.26171e-76 -7.91905e-78 -5.57719e-80 -2.83408e-82 -1.01658e-84 -2.50482e-87 -4.0989e-90 -4.27135e-93 -2.68526e-96 -9.45653e-100 -1.6665e-103 -1.19498e-107 -2.08732e-112 -4.25204e-63 -3.72052e-64 -2.48342e-65 -1.26837e-66 -4.97239e-68 -1.49708e-69 -3.45064e-71 -6.05709e-73 -8.0279e-75 -7.94458e-77 -5.78636e-79 -3.04533e-81 -1.13266e-83 -2.89575e-86 -4.91617e-89 -5.30787e-92 -3.4463e-95 -1.24596e-98 -2.23125e-102 -1.59873e-106 -2.70733e-111 -3.37987e-62 -3.00803e-63 -2.04573e-64 -1.06659e-65 -4.27684e-67 -1.31964e-68 -3.12324e-70 -5.64021e-72 -7.70511e-74 -7.87386e-76 -5.9322e-78 -3.23462e-80 -1.24806e-82 -3.31302e-85 -5.84115e-88 -6.54354e-91 -4.3969e-94 -1.63667e-97 -2.99056e-101 -2.1537e-105 -3.56557e-110 -2.65023e-61 -2.39946e-62 -1.66288e-63 -8.85141e-65 -3.63064e-66 -1.14817e-67 -2.79054e-69 -5.18494e-71 -7.30159e-73 -7.70594e-75 -6.00663e-77 -3.3942e-79 -1.35918e-81 -3.74852e-84 -6.86971e-87 -7.9956e-90 -5.57093e-93 -2.14105e-96 -4.00798e-100 -2.91819e-104 -4.76444e-109 -2.0493e-60 -1.88781e-61 -1.33334e-62 -7.2467e-64 -3.04087e-65 -9.85704e-67 -2.4603e-68 -4.70368e-70 -6.82866e-72 -7.44368e-74 -6.00394e-76 -3.51676e-78 -1.46205e-80 -4.19153e-83 -7.99112e-86 -9.67492e-89 -7.00248e-92 -2.78607e-95 -5.36413e-99 -3.97147e-103 -6.45079e-108 -1.56214e-59 -1.46443e-60 -1.05424e-61 -5.85105e-63 -2.51196e-64 -8.3467e-66 -2.13964e-67 -4.20927e-69 -6.30017e-71 -7.09385e-73 -5.92139e-75 -3.59591e-77 -1.55251e-79 -4.62884e-82 -9.18702e-85 -1.15829e-87 -8.72307e-91 -3.60191e-94 -7.15908e-98 -5.41978e-102 -8.83384e-107 -1.17349e-58 -1.11968e-59 -8.21698e-61 -4.65735e-62 -2.04584e-63 -6.96871e-65 -1.83477e-66 -3.71431e-68 -5.73176e-70 -6.66677e-72 -5.7595e-74 -3.62668e-76 -1.62646e-78 -5.0452e-81 -1.04308e-83 -1.37083e-86 -1.07581e-89 -4.62072e-93 -9.5137e-97 -7.40307e-101 -1.22088e-105 -8.68405e-58 -8.43481e-59 -6.31095e-60 -3.6534e-61 -1.64216e-62 -5.7345e-64 -1.55075e-65 -3.23057e-67 -5.13997e-69 -6.17585e-71 -5.52224e-73 -3.60597e-75 -1.68014e-77 -5.42394e-80 -1.16874e-82 -1.60243e-85 -1.31221e-88 -5.87474e-92 -1.25692e-95 -1.01018e-99 -1.69872e-104 -6.32834e-57 -6.25826e-58 -4.77449e-59 -2.82322e-60 -1.2986e-61 -4.64919e-63 -1.29138e-64 -2.76844e-66 -4.54137e-68 -5.63683e-70 -5.2169e-72 -3.53289e-74 -1.71041e-76 -5.74795e-79 -1.29144e-81 -1.8486e-84 -1.58144e-87 -7.39329e-91 -1.64842e-94 -1.3743e-98 -2.37329e-103 -4.53956e-56 -4.5715e-57 -3.55663e-58 -2.14839e-59 -1.01132e-60 -3.71216e-62 -1.0591e-63 -2.3365e-65 -3.95171e-67 -5.06685e-69 -4.85371e-71 -3.40889e-73 -1.71502e-75 -6.00083e-78 -1.40632e-80 -2.10295e-83 -1.8813e-86 -9.19899e-90 -2.14273e-93 -1.86034e-97 -3.32039e-102 -3.2042e-55 -3.28638e-56 -2.6077e-57 -1.60927e-58 -7.75311e-60 -2.91788e-61 -8.5511e-63 -1.94129e-64 -3.38507e-66 -4.48346e-68 -4.44527e-70 -3.23787e-72 -1.69287e-74 -6.16811e-77 -1.5082e-79 -2.3572e-82 -2.20706e-85 -1.1303e-88 -2.75656e-92 -2.50083e-96 -4.63943e-101 -2.22447e-54 -2.32407e-55 -1.88106e-56 -1.18607e-57 -5.84869e-59 -2.25694e-60 -6.79395e-62 -1.58718e-63 -2.8533e-65 -3.90361e-67 -4.00572e-69 -3.02589e-71 -1.64411e-73 -6.23854e-76 -1.59189e-78 -2.60147e-81 -2.55114e-84 -1.37e-87 -3.5047e-91 -3.33227e-95 -6.4571e-100 -1.51827e-53 -1.61609e-54 -1.33441e-55 -8.59753e-57 -4.33961e-58 -1.71712e-59 -5.30948e-61 -1.27639e-62 -2.36554e-64 -3.34273e-66 -3.54992e-68 -2.78087e-70 -1.57022e-72 -6.20521e-75 -1.65261e-77 -2.82475e-80 -2.90294e-83 -1.63626e-86 -4.39775e-90 -4.39323e-94 -8.9293e-99 -1.01833e-52 -1.10452e-53 -9.30505e-55 -6.12668e-56 -3.16564e-57 -1.28444e-58 -4.07962e-60 -1.00919e-61 -1.92808e-63 -2.81396e-65 -3.09249e-67 -2.51205e-69 -1.47398e-71 -6.06633e-74 -1.6864e-76 -3.01558e-79 -3.24914e-82 -1.92378e-85 -5.43937e-89 -5.72111e-93 -1.224e-97 -6.70872e-52 -7.41603e-53 -6.37521e-54 -4.29009e-55 -2.26931e-56 -9.44205e-58 -3.08056e-59 -7.84135e-61 -1.54429e-62 -2.32763e-64 -2.64691e-66 -2.22936e-68 -1.35923e-70 -5.82574e-73 -1.69051e-75 -3.16295e-78 -3.57415e-81 -2.22436e-84 -6.62337e-88 -7.34756e-92 -1.6595e-96 -4.33902e-51 -4.8893e-52 -4.28951e-53 -2.95046e-54 -1.59787e-55 -6.81796e-57 -2.28496e-58 -5.98466e-60 -1.2149e-61 -1.89096e-63 -2.22486e-65 -1.94276e-67 -1.23066e-69 -5.49273e-72 -1.66372e-74 -3.25725e-77 -3.86116e-80 -2.52699e-83 -7.93097e-87 -9.2925e-91 -2.2209e-95 -2.7537e-50 -3.1636e-51 -2.83297e-52 -1.99198e-53 -1.10458e-54 -4.83357e-56 -1.66402e-57 -4.48445e-59 -9.38314e-61 -1.50804e-62 -1.83562e-64 -1.6616e-66 -1.09346e-68 -5.08157e-71 -1.60653e-73 -3.29126e-76 -4.09333e-79 -2.81816e-82 -9.32875e-86 -1.15573e-89 -2.92844e-94 -1.71388e-49 -2.00791e-50 -1.83557e-51 -1.31955e-52 -7.49265e-54 -3.36272e-55 -1.1892e-56 -3.2975e-58 -7.11115e-60 -1.18003e-61 -1.48581e-63 -1.39404e-65 -9.52909e-68 -4.6104e-70 -1.52119e-72 -3.26096e-75 -4.25536e-78 -3.08268e-81 -1.07679e-84 -1.41175e-88 -3.79809e-93 -1.04553e-48 -1.24938e-49 -1.16618e-50 -8.57214e-52 -4.98466e-53 -2.29455e-54 -8.33572e-56 -2.37819e-57 -5.28559e-59 -9.05515e-61 -1.17929e-62 -1.14669e-64 -8.14055e-67 -4.09986e-69 -1.4116e-71 -3.16609e-74 -4.33498e-77 -3.30475e-80 -1.2185e-83 -1.69171e-87 -4.83782e-92 -6.24774e-48 -7.61705e-49 -7.26063e-50 -5.45797e-51 -3.25058e-52 -1.53482e-53 -5.72789e-55 -1.68137e-56 -3.85107e-58 -6.81077e-60 -9.17328e-62 -9.24271e-64 -6.81355e-66 -3.57145e-68 -1.28297e-70 -3.01038e-73 -4.32444e-76 -3.46941e-79 -1.35058e-82 -1.98648e-86 -6.04336e-91 -3.6549e-47 -4.54731e-48 -4.4274e-49 -3.40413e-50 -2.07667e-51 -1.00584e-52 -3.85631e-54 -1.16467e-55 -2.74897e-57 -5.01835e-59 -6.98942e-61 -7.29631e-63 -5.58431e-65 -3.04591e-67 -1.14141e-69 -2.80135e-72 -4.22151e-75 -3.56411e-78 -1.46497e-81 -2.28339e-85 -7.39423e-90 -2.09177e-46 -2.6566e-47 -2.64253e-48 -2.07852e-49 -1.29898e-50 -6.45452e-52 -2.5423e-53 -7.89983e-55 -1.92139e-56 -3.62032e-58 -5.21349e-60 -5.63785e-62 -4.47915e-64 -2.54176e-66 -9.93397e-69 -2.54968e-71 -4.03002e-74 -3.58017e-77 -1.5538e-80 -2.56679e-84 -8.85069e-89 -1.17044e-45 -1.5178e-46 -1.54281e-47 -1.24166e-48 -7.95061e-50 -4.05322e-51 -1.64022e-52 -5.24392e-54 -1.31421e-55 -2.55567e-57 -3.80484e-59 -4.26166e-61 -3.51397e-63 -2.07416e-65 -8.45275e-68 -2.26832e-70 -3.75974e-73 -3.51395e-76 -1.61012e-79 -2.81911e-83 -1.03526e-87 -6.39861e-45 -8.4746e-46 -8.80501e-47 -7.25225e-48 -4.75867e-49 -2.48925e-50 -1.03499e-51 -3.40449e-53 -8.79148e-55 -1.76431e-56 -2.71524e-58 -3.1495e-60 -2.69476e-62 -1.65415e-64 -7.02747e-67 -1.97125e-69 -3.42551e-72 -3.36755e-75 -1.62886e-78 -3.02246e-82 -1.18214e-86 -3.41515e-44 -4.62094e-45 -4.90873e-46 -4.13871e-47 -2.78336e-48 -1.49412e-49 -6.38327e-51 -2.1604e-52 -5.74819e-54 -1.19038e-55 -1.89354e-57 -2.27424e-59 -2.01879e-61 -1.28844e-63 -5.70493e-66 -1.67231e-68 -3.04591e-71 -3.14883e-74 -1.60742e-77 -3.16055e-81 -1.31644e-85 -1.77827e-43 -2.45877e-44 -2.67123e-45 -2.30606e-46 -1.58983e-47 -8.75906e-49 -3.84538e-50 -1.3391e-51 -3.67105e-53 -7.84447e-55 -1.28961e-56 -1.60355e-58 -1.4765e-60 -9.79557e-63 -4.51928e-65 -1.38402e-67 -2.64139e-70 -2.87068e-73 -1.54619e-76 -3.22073e-80 -1.42838e-84 -9.02636e-43 -1.27568e-43 -1.41781e-44 -1.25362e-45 -8.86159e-47 -5.01156e-48 -2.26109e-49 -8.10205e-51 -2.28847e-52 -5.04558e-54 -8.57175e-56 -1.1033e-57 -1.05357e-59 -7.26412e-62 -3.49112e-64 -1.11666e-66 -2.23239e-69 -2.5498e-72 -1.44861e-75 -3.1958e-79 -1.50871e-83 -4.46271e-42 -6.44818e-43 -7.33408e-44 -6.64372e-45 -4.81642e-46 -2.79647e-47 -1.29677e-48 -4.78149e-50 -1.39152e-51 -3.16538e-53 -5.55656e-55 -7.40237e-57 -7.32953e-59 -5.25078e-61 -2.62805e-63 -8.77697e-66 -1.83745e-68 -2.20492e-71 -1.32086e-74 -3.08517e-78 -1.5499e-82 -2.1473e-41 -3.17271e-42 -3.69426e-43 -3.42968e-44 -2.5506e-45 -1.52066e-46 -7.2484e-48 -2.75037e-49 -8.24699e-51 -1.93547e-52 -3.51034e-54 -4.83945e-56 -4.96776e-58 -3.69691e-60 -1.92647e-62 -6.71582e-65 -1.4718e-67 -1.85486e-70 -1.17123e-73 -2.89533e-77 -1.54723e-81 -1.0047e-40 -1.51818e-41 -1.81044e-42 -1.72316e-43 -1.31494e-44 -8.05156e-46 -3.94554e-47 -1.54076e-48 -4.76022e-50 -1.15254e-51 -2.15958e-53 -3.08064e-55 -3.27783e-57 -2.53338e-59 -1.37412e-61 -4.99865e-64 -1.1464e-66 -1.51679e-69 -1.00914e-72 -2.6392e-76 -1.49963e-80 -4.56731e-40 -7.05824e-41 -8.62427e-42 -8.41867e-43 -6.59382e-44 -4.1475e-45 -2.08973e-46 -8.39917e-48 -2.67378e-49 -6.67859e-51 -1.29275e-52 -1.9079e-54 -2.10382e-56 -1.68835e-58 -9.52951e-61 -3.61626e-63 -8.67608e-66 -1.2047e-68 -8.44166e-72 -2.33471e-75 -1.40995e-79 -2.01548e-39 -3.18485e-40 -3.98958e-41 -3.99582e-42 -3.21322e-43 -2.07663e-44 -1.07599e-45 -4.45155e-47 -1.46022e-48 -3.76268e-50 -7.52337e-52 -1.14861e-53 -1.31239e-55 -1.09335e-57 -6.42007e-60 -2.54071e-62 -6.37456e-65 -9.28551e-68 -6.8501e-71 -2.00261e-74 -1.28475e-78 -8.62345e-39 -1.39316e-39 -1.79046e-40 -1.84074e-41 -1.5202e-42 -1.00969e-43 -5.38084e-45 -2.2917e-46 -7.74639e-48 -2.0592e-49 -4.25278e-51 -6.71592e-53 -7.9498e-55 -6.87399e-57 -4.19802e-59 -1.73202e-61 -4.54284e-64 -6.93925e-67 -5.38721e-70 -1.66405e-73 -1.13352e-77 -3.5588e-38 -5.90062e-39 -7.78722e-40 -8.22159e-41 -6.97551e-42 -4.76253e-43 -2.6109e-44 -1.14485e-45 -3.98796e-47 -1.09362e-48 -2.3328e-50 -3.81008e-52 -4.67174e-54 -4.19173e-56 -2.66179e-58 -1.14457e-60 -3.1372e-63 -5.02328e-66 -4.10218e-69 -1.33819e-72 -9.67399e-77 -1.42135e-37 -2.41828e-38 -3.27886e-39 -3.55655e-40 -3.10102e-41 -2.17694e-42 -1.22792e-43 -5.54413e-45 -1.9903e-46 -5.63062e-48 -1.24045e-49 -2.09515e-51 -2.66064e-53 -2.47669e-55 -1.63488e-57 -7.32456e-60 -2.09728e-62 -3.51876e-65 -3.02138e-68 -1.04042e-71 -7.97814e-76 -5.49221e-37 -9.58159e-38 -1.33506e-38 -1.48838e-39 -1.3341e-40 -9.63221e-42 -5.59112e-43 -2.59968e-44 -9.6188e-46 -2.80725e-47 -6.38702e-49 -1.11549e-50 -1.46689e-52 -1.41634e-54 -9.71636e-57 -4.53415e-59 -1.35579e-61 -2.38256e-64 -2.15011e-67 -7.81205e-71 -6.35096e-75 -3.66669e-37 -5.25094e-38 -6.0185e-39 -5.54759e-40 -4.12047e-41 -2.46181e-42 -1.17893e-43 -4.49608e-45 -1.3537e-46 -3.18063e-48 -5.74346e-50 -7.81984e-52 -7.83001e-54 -5.58097e-56 -2.71185e-58 -8.46511e-61 -1.55752e-63 -1.47661e-66 -5.65806e-70 -4.8742e-74 -1.35445e-36 -1.99279e-37 -2.34855e-38 -2.22682e-39 -1.70194e-40 -1.04681e-41 -5.16388e-43 -2.02999e-44 -6.30543e-46 -1.52989e-47 -2.85606e-49 -4.02548e-51 -4.17914e-53 -3.09411e-55 -1.56504e-57 -5.09813e-60 -9.81727e-63 -9.77357e-66 -3.94779e-69 -3.60192e-73 -7.28562e-37 -8.83159e-38 -8.61636e-39 -6.7781e-40 -4.29272e-41 -2.18154e-42 -8.84067e-44 -2.83297e-45 -7.09771e-47 -1.3697e-48 -1.99817e-50 -2.15038e-52 -1.6533e-54 -8.70245e-57 -2.95731e-59 -5.95783e-62 -6.22583e-65 -2.64973e-68 -2.55924e-72 -2.56147e-36 -3.19548e-37 -3.20886e-38 -2.59876e-39 -1.69501e-40 -8.87527e-42 -3.70792e-43 -1.2258e-44 -3.17104e-46 -6.32498e-48 -9.54877e-50 -1.06499e-51 -8.50071e-54 -4.65489e-56 -1.64961e-58 -3.47551e-61 -3.81061e-64 -1.70809e-67 -1.74559e-71 -8.6469e-36 -1.11058e-36 -1.14824e-37 -9.57607e-39 -6.43351e-40 -3.47123e-41 -1.49513e-42 -5.09912e-44 -1.3619e-45 -2.80731e-47 -4.38506e-49 -5.06742e-51 -4.19802e-53 -2.3907e-55 -8.83204e-58 -1.94526e-60 -2.23689e-63 -1.05557e-66 -1.14089e-70 -2.79758e-35 -3.70071e-36 -3.94066e-37 -3.38499e-38 -2.34285e-39 -1.30269e-40 -5.78486e-42 -2.03522e-43 -5.61149e-45 -1.19519e-46 -1.93117e-48 -2.31168e-50 -1.98701e-52 -1.17641e-54 -4.52898e-57 -1.04239e-59 -1.25666e-62 -6.24044e-66 -7.13039e-70 -8.6572e-35 -1.17993e-35 -1.29437e-36 -1.14544e-37 -8.16844e-39 -4.68083e-40 -2.14297e-41 -7.77668e-43 -2.21313e-44 -4.86943e-46 -8.13657e-48 -1.00856e-49 -8.99158e-52 -5.53241e-54 -2.21869e-56 -5.33427e-59 -6.73936e-62 -3.5205e-65 -4.25087e-69 -2.55664e-34 -3.59146e-35 -4.0598e-36 -3.70179e-37 -2.72013e-38 -1.60641e-39 -7.58145e-41 -2.83736e-42 -8.33231e-44 -1.89328e-45 -3.27036e-47 -4.19601e-49 -3.87838e-51 -2.47893e-53 -1.03517e-55 -2.59876e-58 -3.43961e-61 -1.88947e-64 -2.4102e-68 -7.18726e-34 -1.04092e-34 -1.21272e-35 -1.13947e-36 -8.6277e-38 -5.25051e-39 -2.55398e-40 -9.85464e-42 -2.98514e-43 -7.00155e-45 -1.24961e-46 -1.65869e-48 -1.58865e-50 -1.05428e-52 -4.58208e-55 -1.20067e-57 -1.66426e-60 -9.61126e-64 -1.29489e-67 -1.91781e-33 -2.86423e-34 -3.43962e-35 -3.33034e-36 -2.59803e-37 -1.6289e-38 -8.1636e-40 -3.24608e-41 -1.01369e-42 -2.45257e-44 -4.51942e-46 -6.20145e-48 -6.15017e-50 -4.2349e-52 -1.91458e-54 -5.23427e-57 -7.59588e-60 -4.61097e-63 -6.56079e-67 -4.84116e-33 -7.45682e-34 -9.23011e-35 -9.20782e-36 -7.39873e-37 -4.77713e-38 -2.46529e-39 -1.00942e-40 -3.24668e-42 -8.09443e-44 -1.53828e-45 -2.17957e-47 -2.23579e-49 -1.59594e-51 -7.50003e-54 -2.13828e-56 -3.24801e-59 -2.07246e-62 -3.11485e-66 -1.15157e-32 -1.82926e-33 -2.33341e-34 -2.3975e-35 -1.98323e-36 -1.31773e-37 -6.99552e-39 -2.94584e-40 -9.74427e-42 -2.49905e-43 -4.88881e-45 -7.13918e-47 -7.56197e-49 -5.58791e-51 -2.72705e-53 -8.10389e-56 -1.28839e-58 -8.64395e-62 -1.37315e-65 -2.56904e-32 -4.20735e-33 -5.52818e-34 -5.84619e-35 -4.974e-36 -3.39676e-37 -1.85208e-38 -8.00428e-40 -2.71595e-41 -7.1433e-43 -1.43367e-44 -2.15047e-46 -2.34525e-48 -1.79011e-50 -9.06004e-53 -2.80487e-55 -4.66875e-58 -3.29674e-61 -5.54364e-65 -5.34369e-32 -9.01629e-33 -1.2192e-33 -1.32552e-34 -1.15818e-35 -8.11232e-37 -4.53064e-38 -2.00203e-39 -6.93458e-41 -1.85937e-42 -3.80281e-44 -5.81709e-46 -6.49789e-48 -5.10631e-50 -2.6757e-52 -8.62899e-55 -1.50577e-57 -1.12186e-60 -2.00351e-64 -1.02854e-31 -1.7855e-32 -2.48106e-33 -2.76773e-34 -2.47721e-35 -1.77317e-36 -1.0093e-37 -4.52696e-39 -1.58339e-40 -4.27159e-42 -8.7613e-44 -1.33931e-45 -1.51892e-47 -1.22586e-49 -6.65142e-52 -2.2396e-54 -4.1154e-57 -3.25548e-60 -6.22127e-64 -1.81324e-31 -3.23018e-32 -4.60154e-33 -5.24955e-34 -4.79118e-35 -3.47988e-36 -1.99732e-37 -8.94696e-39 -3.06179e-40 -8.02301e-42 -1.57283e-43 -2.18335e-45 -2.50731e-47 -2.13379e-49 -1.22302e-51 -4.36614e-54 -8.58103e-57 -7.33248e-60 -1.52738e-63 -2.88385e-31 -5.24565e-32 -7.6336e-33 -8.85112e-34 -8.15966e-35 -5.91908e-36 -3.3263e-37 -1.42071e-38 -4.17666e-40 -8.81474e-42 -1.2492e-43 4.98414e-46 -3.21587e-48 -1.33581e-49 -1.08421e-51 -4.58824e-54 -1.03383e-56 -1.01298e-59 -2.43042e-63 -4.03151e-31 -7.40837e-32 -1.09626e-32 -1.27455e-33 -1.15517e-34 -7.99875e-36 -3.91226e-37 -1.1687e-38 -1.3091e-57 0 -8.94053e-72 3.15838e-44 6.32087e-47 -3.80481e-68 0 -1.81637e-55 -1.50373e-57 -3.12903e-60 -1.24796e-63 -4.67001e-31 -8.45585e-32 -1.26829e-32 -1.42208e-33 -1.1243e-34 -5.75826e-36 -1.17846e-38 -1.39693e-48 -1.13432e-49 4.96552e-39 1.16816e-40 1.93008e-53 1.56914e-54 1.59718e-54 3.48556e-58 3.39251e-62 -1.72935e-59 -1.17761e-61 -9.63472e-65 -3.65504e-31 -6.12327e-32 -9.35863e-33 -8.35114e-34 -1.29751e-60 -3.2375e-46 -3.28857e-52 -1.66662e-48 -1.59401e-49 7.99267e-38 7.3185e-40 1.79559e-52 1.59911e-53 3.02862e-53 5.16665e-57 3.00507e-61 1.49859e-65 2.27374e-69 -2.77321e-68 -6.67258e-41 -6.7967e-44 -2.59787e-45 -2.01001e-44 -2.26145e-59 -8.8338e-46 -7.39885e-47 1.06333e-33 8.71133e-35 7.56647e-47 5.77628e-48 5.73735e-48 2.62245e-51 3.34501e-55 1.11994e-58 2.66594e-62 1.42981e-66 1.76507e-70 6.38971e-74 -3.29399e-42 4.3757e-36 7.89348e-56 5.25715e-36 3.6054e-36 1.23803e-38 1.31626e-39 8.6084e-33 3.03799e-34 3.31318e-46 2.33982e-47 4.58635e-47 1.59358e-50 1.01615e-54 4.70001e-58 1.04373e-61 8.10613e-66 9.75893e-70 5.70282e-71 3.48293e-32 3.60356e-33 9.93468e-35 1.77738e-35 4.44578e-36 2.25015e-29 3.5697e-30 1.1929e-41 1.15814e-42 1.14853e-42 3.09627e-46 2.52009e-49 1.03616e-52 1.9645e-56 9.5262e-60 1.8999e-63 1.17371e-67 4.75189e-71 3.40693e-71 6.1541e-32 1.03847e-32 9.63963e-34 1.81648e-34 9.95241e-35 1.02099e-28 6.28368e-30 2.47936e-41 2.2504e-42 3.29649e-42 9.91891e-46 4.25497e-49 1.98391e-52 4.06586e-56 3.97571e-58 5.02735e-70 1.4889e-65 2.96233e-71 2.96233e-71 5.89688e-31 1.08821e-31 1.64605e-32 8.93879e-26 7.03043e-26 6.2596e-29 7.47802e-40 6.40856e-41 8.04621e-41 9.24329e-44 4.60958e-50 2.23763e-50 3.58029e-54 2.58094e-60 1.36887e-60 2.96233e-71 2.96233e-71 2.96233e-71 2.96233e-71 1.29818e-22 8.18338e-24 1.54791e-30 2.29817e-25 1.33711e-25 1.50908e-36 1.83979e-39 8.93169e-41 9.29248e-41 9.37159e-44 4.69473e-50 2.42626e-50 7.693e-59 2.09623e-59 2.29093e-59 2.96303e-71 2.96233e-71 2.96233e-71 2.96233e-71 3.08105e-22 2.45504e-21 9.37583e-22 8.01798e-27 7.98585e-27 5.64058e-28 4.55259e-39 2.72321e-40 4.38522e-40 4.1446e-43 2.51942e-49 2.12518e-49 1.06624e-49 7.693e-59 5.28707e-57 4.47096e-71 2.96303e-71 2.96271e-71 2.96487e-71 4.44329e-24 3.31091e-21 2.95371e-21 3.64579e-23 1.51296e-34 6.94916e-36 6.67887e-36 1.03419e-37 7.51406e-41 5.437e-44 6.2037e-49 8.07269e-49 2.86655e-49 7.86461e-57 7.95309e-55 1.67796e-67 4.47096e-71 2.96322e-71 7.19107e-71 1.00124e-19 1.88233e-21 1.87908e-21 1.52694e-22 3.49107e-33 5.19924e-36 1.89785e-37 1.82767e-37 1.58025e-40 4.07466e-44 1.00704e-48 1.27823e-46 5.94016e-50 4.25984e-51 1.33161e-55 5.71535e-62 1.08952e-54 4.47096e-71 3.27033e-68 2.11223e-17 2.60159e-21 3.42626e-26 1.34324e-23 7.56702e-25 1.10903e-35 1.86812e-37 2.70092e-37 2.79806e-41 9.65345e-42 1.34393e-42 5.51503e-49 1.18874e-49 1.0211e-50 2.81467e-54 6.66122e-47 4.23262e-51 1.28483e-67 9.83629e-63 2.9532e-17 7.04705e-19 8.36766e-27 1.62703e-26 3.20337e-26 5.75084e-29 7.20205e-38 7.10075e-38 7.12347e-38 6.42118e-40 1.41139e-42 1.0428e-44 4.76656e-48 3.54069e-50 1.27016e-42 2.46352e-45 6.56772e-61 7.54875e-64 1.61421e-60 6.89995e-18 2.07875e-19 1.32743e-28 1.8635e-28 3.31823e-28 5.60844e-35 8.05271e-36 1.02442e-35 3.28714e-37 1.23803e-40 2.09247e-41 4.77689e-44 1.53661e-46 5.90803e-39 2.41556e-41 5.73793e-56 8.32431e-57 1.66443e-56 8.96026e-59 2.82613e-29 1.29302e-20 1.21332e-21 7.03197e-32 3.96176e-32 2.46994e-35 8.23525e-36 6.88462e-35 2.80517e-37 1.16398e-38 4.13685e-41 3.00517e-43 1.16685e-35 8.32421e-38 1.11658e-51 1.24177e-52 2.48118e-52 1.23113e-56 2.6151e-58 2.82611e-29 8.22244e-27 7.26323e-27 4.42065e-29 1.86849e-30 2.497e-30 2.27558e-32 1.63805e-35 3.74808e-36 1.84096e-38 2.1174e-40 1.00493e-32 1.28585e-34 6.65327e-48 7.38389e-49 1.47347e-48 1.16086e-52 3.91655e-57 1.12467e-58 3.10013e-29 1.01797e-27 1.49074e-27 1.39876e-28 1.41558e-32 3.19771e-30 1.31581e-31 3.58572e-34 5.04635e-36 7.82224e-38 4.09003e-30 8.77924e-32 1.27824e-44 1.06535e-45 2.11447e-45 4.68667e-49 1.13829e-53 1.32475e-57 3.10761e-59 3.06946e-29 4.40898e-29 4.37743e-29 4.37977e-29 1.74379e-32 1.19478e-29 6.91729e-32 7.65994e-34 1.72927e-35 9.60765e-28 2.90341e-29 1.02349e-41 5.61975e-43 1.09469e-42 5.83976e-46 3.38148e-50 2.61641e-54 2.89502e-58 6.43342e-60 1.35398e-29 1.64613e-31 1.30453e-31 1.34392e-31 1.34586e-31 5.48912e-28 1.36833e-32 2.34173e-33 1.42235e-25 5.74086e-27 1.7935e-27 4.84406e-30 7.88946e-32 3.15969e-32 3.13786e-32 2.34554e-32 8.38603e-24 ) ; boundaryField { inlet { type fixedValue; value nonuniform List<scalar> 0(); } outlet { type inletOutlet; inletValue uniform 0; value nonuniform List<scalar> 42 ( -2.34151e-73 -2.34389e-73 -1.72064e-74 -1.72302e-74 -9.45263e-76 -9.46882e-76 -3.88909e-77 -3.89687e-77 -1.2022e-78 -1.2049e-78 -2.79517e-80 -2.80199e-80 -4.87602e-82 -4.88868e-82 -6.35473e-84 -6.37197e-84 -6.14275e-86 -6.15989e-86 -4.36383e-88 -4.37618e-88 -2.25203e-90 -2.25843e-90 -8.32282e-93 -8.34633e-93 -2.16668e-95 -2.1727e-95 -3.89598e-98 -3.90655e-98 -4.72784e-101 -4.74025e-101 -3.76696e-104 -3.77645e-104 -1.90453e-107 -1.9091e-107 -5.83329e-111 -5.8465e-111 -1.00687e-114 -1.00901e-114 -8.54661e-119 -8.56337e-119 -2.51697e-123 -2.52148e-123 ) ; } walls { type zeroGradient; } side1 { type cyclic; } side2 { type cyclic; } procBoundary3to0 { type processor; value nonuniform List<scalar> 42 ( 4.56552e-39 3.41666e-40 6.60736e-40 2.85997e-43 2.75239e-47 5.57969e-51 4.38754e-55 4.64935e-59 1.10695e-60 1.33661e-23 7.29312e-25 4.56552e-39 1.09639e-36 2.35615e-25 7.17706e-28 1.90795e-30 2.85961e-32 2.42242e-32 2.34554e-32 1.33661e-23 8.08037e-22 4.57824e-39 3.42642e-40 6.62626e-40 2.86593e-43 2.76105e-47 5.59199e-51 4.40301e-55 4.66214e-59 1.11028e-60 1.34019e-23 7.31561e-25 4.57824e-39 1.09995e-36 5.88762e-25 1.7935e-27 7.01146e-25 7.88946e-32 2.85961e-32 1.32895e-21 1.34019e-23 7.16341e-22 ) ; } procBoundary3to4 { type processor; value nonuniform List<scalar> 88 ( -4.38779e-38 -1.76417e-37 -6.85742e-37 -2.57376e-36 -2.12057e-36 -2.12057e-36 -7.60132e-36 -4.98112e-36 -4.98112e-36 -1.69913e-35 -5.5622e-35 -1.74418e-34 -5.22857e-34 -1.49504e-33 -4.06742e-33 -1.0499e-32 -2.56286e-32 -5.89385e-32 -1.27114e-31 -2.55681e-31 -4.76285e-31 -8.14154e-31 -1.26094e-30 -1.73592e-30 -2.05496e-30 -1.94249e-30 -1.13132e-30 -4.26025e-42 4.7689e-46 5.65448e-31 3.93395e-29 4.71501e-29 6.89274e-28 5.18468e-26 1.07928e-17 3.27015e-17 3.08275e-17 1.18432e-19 2.82611e-29 2.82611e-29 2.8261e-29 2.1893e-28 2.31682e-27 4.47742e-17 -4.39084e-38 -1.76542e-37 -6.86235e-37 -2.57565e-36 -2.12243e-36 -2.12243e-36 -7.60818e-36 -4.98632e-36 -4.98632e-36 -1.70096e-35 -5.5684e-35 -1.74621e-34 -5.23499e-34 -1.497e-33 -4.07312e-33 -1.05149e-32 -2.5671e-32 -5.90458e-32 -1.27372e-31 -2.56261e-31 -4.77508e-31 -8.16552e-31 -1.26528e-30 -1.74308e-30 -2.06573e-30 -1.95743e-30 -1.14989e-30 -5.13327e-42 1.1594e-51 5.759e-31 3.85321e-29 4.61335e-29 6.69629e-28 5.03198e-26 1.06329e-17 3.27015e-17 3.06873e-17 1.79188e-19 2.82613e-29 2.82611e-29 3.13823e-29 1.02796e-28 4.87537e-27 9.28929e-17 ) ; } procBoundary3to5 { type processor; value nonuniform List<scalar> 84 ( -2.60782e-72 -2.33167e-71 -2.06189e-70 -1.80296e-69 -1.5586e-68 -1.33173e-67 -1.12442e-66 -9.37917e-66 -7.72708e-65 -6.28587e-64 -5.04772e-63 -4.00017e-62 -3.12742e-61 -2.41147e-60 -1.83326e-59 -1.37363e-58 -1.01405e-57 -7.37299e-57 -5.27783e-56 -3.71813e-55 -2.57678e-54 -1.75602e-53 -1.17623e-52 -7.74035e-52 -5.0018e-51 -3.17224e-50 -1.97353e-49 -1.20369e-48 -7.19305e-48 -4.20895e-47 -2.40998e-46 -1.34941e-45 -7.38347e-45 -3.94505e-44 -2.05679e-43 -1.04548e-42 -5.17667e-42 -2.49458e-41 -1.1689e-40 -5.32263e-40 -2.35494e-39 -1.01232e-38 -2.60946e-72 -2.33322e-71 -2.06334e-70 -1.80428e-69 -1.55979e-68 -1.33278e-67 -1.12533e-66 -9.38696e-66 -7.73363e-65 -6.2913e-64 -5.05213e-63 -4.00371e-62 -3.13021e-61 -2.41363e-60 -1.83491e-59 -1.37486e-58 -1.01496e-57 -7.37958e-57 -5.28251e-56 -3.72141e-55 -2.57903e-54 -1.75754e-53 -1.17723e-52 -7.74686e-52 -5.00595e-51 -3.17483e-50 -1.97511e-49 -1.20464e-48 -7.19863e-48 -4.21216e-47 -2.41179e-46 -1.3504e-45 -7.38883e-45 -3.94787e-44 -2.05824e-43 -1.04621e-42 -5.18025e-42 -2.49629e-41 -1.1697e-40 -5.32626e-40 -2.35655e-39 -1.01302e-38 ) ; } } // ************************************************************************* //
37d16fe0c541e7ece0716a548f79867da92bcb04
9872a45b3eda1be44c8972bbaa9b2b762537a45e
/Gyro.h
3e5ceb197c36dcb8b39eadddb8a5b2d102fc56c9
[]
no_license
DeltaAndFriends/Delta_Robot
328d8a8ff5cdf64738488286d5dda9fd7f4f40cf
1e5a09348fb7f97ed6113abad5da29eae41cc990
refs/heads/master
2020-03-30T10:54:40.096984
2018-10-01T19:48:30
2018-10-01T19:48:30
151,142,848
2
0
null
null
null
null
UTF-8
C++
false
false
492
h
Gyro.h
#ifndef Gyro_h #define Gyro_h #include <ArduinoSTL.h> #include "Config.h" namespace Delta { enum class GYRO_DATA { X, Y, qty }; static const int gyro_error{-32767}; using GD = GYRO_DATA; class Gyro { public: Gyro(GYRO_PIN pin); ~Gyro(); void setup(); void read(); int get_raw(GD d) const; int get(GD d) const; private: std::vector<int> m_data; size_t m_pin; }; } // namespace Delta #endif // Gyro_h
9c55ea337c8f086cf99f7455c9487a6eee8b9c6b
6977ce2c9f2c29b37cbb203b74dd1b1e930705d7
/troegubova_aa/task6/Snake.cpp
34f75216668d32bbdb79eb751a47f7548eb15707
[]
no_license
alvls/mp1-2020-1
80ca6aa9de56bdd0b5054a6090e01fdb32d0f2cc
f091d450c85c8678c81632495dc49c984f06a523
refs/heads/master
2021-01-03T18:40:39.482160
2020-06-01T11:35:29
2020-06-01T11:35:29
240,188,887
0
19
null
2020-06-21T21:27:56
2020-02-13T06:01:41
C++
UTF-8
C++
false
false
15,655
cpp
Snake.cpp
#include"Snake.h" #include<iostream> #include<vector> #include<string> #include<conio.h> #include<time.h> #include <windows.h> Food::Food(): Line() { color = { 245, 17, 97 }; } Food::~Food() {} void Food::Draw() { x2 = x1; y2 = y1; Line::Draw(); } bool Food::Check() { if (((x1 + 5) % 15 == 0)&&((y1 + 5) % 15 == 0)) return true; return false; } void Food::RandFood() { srand(time(0)); bool check = false; while (!check) { x1 = rand() % ((115 + 61 * SIZE_CELL) - 130) + 130; y1 = rand() % ((115 + 28 * SIZE_CELL) - 130) + 130; check = Check(); } } //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Line::Line(): x1(0), x2(0), y1(0), y2(0) { color.resize(3); } Line::~Line() {} Line::Line(int _x1, int _y1, int _x2, int _y2, std::vector <int> _color) { SetLine(_x1, _y1, _x2, _y2); color = _color; } void Line::SetLine(int _x1, int _y1, int _x2, int _y2) { x1 = _x1; x2 = _x2; y1 = _y1; y2 = _y2; } Line& Line::operator =(const Line &line) { x1 = line.x1; x2 = line.x2; y1 = line.y1; y2 = line.y2; color = line.color; return *this; } void Line::Draw() { HWND hWnd = GetConsoleWindow(); HDC hDC = GetDC(hWnd); HPEN cP = CreatePen(PS_SOLID, SIZE_CELL, RGB(color[0], color[1], color[2])); SelectObject(hDC, cP); POINT p; MoveToEx(hDC, x1, y1, &p); LineTo(hDC, x2, y2); ReleaseDC(hWnd, hDC); DeleteObject(cP); } int Line::GetX1() { return x1; } int Line::GetY1() { return y1; } int Line::GetX2() { return x2; } int Line::GetY2() { return y2; } void Line:: SetX1(int _x1) { x1 = _x1; } void Line::SetY1(int _y1) { y1 = _y1; } void Line::SetX2(int _x2) { x2 = _x2; } void Line::SetY2(int _y2) { y2 = _y2; } void Line:: DrawColor(std::vector <int> _color) { HWND hWnd = GetConsoleWindow(); HDC hDC = GetDC(hWnd); HPEN cP = CreatePen(PS_SOLID, SIZE_CELL, RGB(_color[0], _color[1], _color[2])); SelectObject(hDC, cP); POINT p; MoveToEx(hDC, x1, y1, &p); LineTo(hDC, x2, y2); } //-------------------------------------------------------------------------------------------------------------------------------------------------------------------- Barrier::Barrier():width(62 * SIZE_CELL), height(29 * SIZE_CELL), Line(115, 115, 115 + 62 * SIZE_CELL, 115, { 207, 25, 179 }) {} Barrier::~Barrier() {} void::Barrier::Draw() { Line::Draw(); x2 = 115; y2 += height; Line::Draw(); y1 += height; x2 += width; Line::Draw(); x1 += width; y1 = 115; Line::Draw(); } //------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Snake::Snake(): size(5), difficulty(100) { snake.resize(0); snake.push_back(Line(805, 325, 730, 325, { 46, 149, 232 })); head = Line(730, 325, 730, 325, { 72, 219, 116 }); dir = "left"; continuation = true; } Snake::~Snake() {} void Snake::Draw() { for (int i = 0; i < snake.size(); i++) { snake[i].Draw(); } head.Draw(); } void Snake::DrawColor(std::vector<int> _color) { for (int i = 0; i < snake.size(); i++) { snake[i].DrawColor(_color); } head.DrawColor(_color); } bool Snake::CheckYourself() { for (int i = 0; i < (snake.size() - 1); i++) { if (snake[i].GetX1() < snake[i].GetX2()) { if ((head.GetX1() >= snake[i].GetX1()) && (head.GetX1() <= snake[i].GetX2())) { if (snake[i].GetY1() < snake[i].GetY2()) { if ((head.GetY1() >= snake[i].GetY1()) && (head.GetY1() <= snake[i].GetY2())) return false; } else { if ((head.GetY1() <= snake[i].GetY1()) && (head.GetY1() >= snake[i].GetY2())) return false; } } } else { if ((head.GetX1() <= snake[i].GetX1()) && (head.GetX1() >= snake[i].GetX2())) { if (snake[i].GetY1() < snake[i].GetY2()) { if ((head.GetY1() >= snake[i].GetY1()) && (head.GetY1() <= snake[i].GetY2())) return false; } else { if ((head.GetY1() <= snake[i].GetY1()) && (head.GetY1() >= snake[i].GetY2())) return false; } } } } return true; } bool Snake::CheckBarrier() { if ((head.GetY1() == 115) || (head.GetY1() == 550)) { return false; } if ((head.GetX1() == 115) || (head.GetX1() == 1045)) { return false; } return true; } void Snake::Continuation() { if (CheckYourself() && CheckBarrier()) { Draw(); Sleep(difficulty); } else { if (!CheckYourself()) { DrawColor({ 12, 12, 12 }); } else { DrawColor({ 12, 12, 12 }); head.DrawColor({ 207, 25, 179 }); } continuation = false; } } void Snake:: MoveLeft() { if (dir == "right") { MoveRight(); } else { snake[0].DrawColor({ 12, 12, 12 }); if (dir != "left") { snake.push_back(Line(snake[snake.size() - 1].GetX2(), snake[snake.size() - 1].GetY2(), snake[snake.size() - 1].GetX2(), snake[snake.size() - 1].GetY2(), { 46, 149, 232 })); dir = "left"; } if ((snake[0].GetY1() != snake[0].GetY2()) && ((snake.size() % 2 == 0))) { snake[snake.size() - 1].SetX2(snake[snake.size() - 1].GetX2() - SIZE_CELL); if (snake[0].GetY1() < snake[0].GetY2()) snake[0].SetY1(snake[0].GetY1() + SIZE_CELL); else snake[0].SetY1(snake[0].GetY1() - SIZE_CELL); head.SetX1(head.GetX1() - SIZE_CELL); head.SetX2(head.GetX2() - SIZE_CELL); if (snake[0].GetY1() == snake[0].GetY2()) { snake.erase(snake.begin()); } } else { if ((snake[0].GetX1() != snake[0].GetX2()) && (snake.size() > 1)) { snake[snake.size() - 1].SetX2(snake[snake.size() - 1].GetX2() - SIZE_CELL); if (snake[0].GetX1() < snake[0].GetX2()) snake[0].SetX1(snake[0].GetX1() + SIZE_CELL); else snake[0].SetX1(snake[0].GetX1() - SIZE_CELL); head.SetX1(head.GetX1() - SIZE_CELL); head.SetX2(head.GetX2() - SIZE_CELL); if (snake[0].GetX1() == snake[0].GetX2()) { snake.erase(snake.begin()); } } else { snake[snake.size() - 1].SetX1(snake[snake.size() - 1].GetX1() - SIZE_CELL); snake[snake.size() - 1].SetX2(snake[snake.size() - 1].GetX2() - SIZE_CELL); head.SetX1(head.GetX1() - SIZE_CELL); head.SetX2(head.GetX2() - SIZE_CELL); } } Continuation(); } } void Snake::MoveRight() { if (dir == "left") { MoveLeft(); } else { snake[0].DrawColor({ 12, 12, 12 }); if (dir != "right") { snake.push_back(Line(snake[snake.size() - 1].GetX2(), snake[snake.size() - 1].GetY2(), snake[snake.size() - 1].GetX2(), snake[snake.size() - 1].GetY2(), { 46, 149, 232 })); dir = "right"; } if ((snake[0].GetY1() != snake[0].GetY2()) && (snake.size() % 2 == 0)) { snake[snake.size() - 1].SetX2(snake[snake.size() - 1].GetX2() + SIZE_CELL); if (snake[0].GetY1() > snake[0].GetY2()) snake[0].SetY1(snake[0].GetY1() - SIZE_CELL); else snake[0].SetY1(snake[0].GetY1() + SIZE_CELL); head.SetX1(head.GetX1() + SIZE_CELL); head.SetX2(head.GetX2() + SIZE_CELL); if (snake[0].GetY1() == snake[0].GetY2()) { snake.erase(snake.begin()); } } else if ((snake[0].GetX1() != snake[0].GetX2()) && (snake.size() > 1)) { snake[snake.size() - 1].SetX2(snake[snake.size() - 1].GetX2() + SIZE_CELL); if (snake[0].GetX1() > snake[0].GetX2()) snake[0].SetX1(snake[0].GetX1() - SIZE_CELL); else snake[0].SetX1(snake[0].GetX1() + SIZE_CELL); head.SetX1(head.GetX1() + SIZE_CELL); head.SetX2(head.GetX2() + SIZE_CELL); if (snake[0].GetX1() == snake[0].GetX2()) { snake.erase(snake.begin()); } } else { snake[snake.size() - 1].SetX1(snake[snake.size() - 1].GetX1() + SIZE_CELL); snake[snake.size() - 1].SetX2(snake[snake.size() - 1].GetX2() + SIZE_CELL); head.SetX1(head.GetX1() + SIZE_CELL); head.SetX2(head.GetX2() + SIZE_CELL); } Continuation(); } } void Snake::MoveUp() { if (dir == "down") { MoveDown(); } else { snake[0].DrawColor({ 12, 12, 12 }); if (dir != "up") { snake.push_back(Line(snake[snake.size() - 1].GetX2(), snake[snake.size() - 1].GetY2(), snake[snake.size() - 1].GetX2(), snake[snake.size() - 1].GetY2(), { 46, 149, 232 })); dir = "up"; } if ((snake[0].GetX1() != snake[0].GetX2()) && (snake.size() % 2 == 0)) { snake[snake.size() - 1].SetY2(snake[snake.size() - 1].GetY2() - SIZE_CELL); if (snake[0].GetX1() > snake[0].GetX2()) snake[0].SetX1(snake[0].GetX1() - SIZE_CELL); else snake[0].SetX1(snake[0].GetX1() + SIZE_CELL); head.SetY1(head.GetY1() - SIZE_CELL); head.SetY2(head.GetY2() - SIZE_CELL); if (snake[0].GetX1() == snake[0].GetX2()) { snake.erase(snake.begin()); } } else if ((snake[0].GetY1() != snake[0].GetY2()) && (snake.size() > 1)) { snake[snake.size() - 1].SetY2(snake[snake.size() - 1].GetY2() - SIZE_CELL); if (snake[0].GetY1() > snake[0].GetY2()) snake[0].SetY1(snake[0].GetY1() - SIZE_CELL); else snake[0].SetY1(snake[0].GetY1() + SIZE_CELL); head.SetY1(head.GetY1() - SIZE_CELL); head.SetY2(head.GetY2() - SIZE_CELL); if (snake[0].GetY1() == snake[0].GetY2()) { snake.erase(snake.begin()); } } else { snake[snake.size() - 1].SetY1(snake[snake.size() - 1].GetY1() - SIZE_CELL); snake[snake.size() - 1].SetY2(snake[snake.size() - 1].GetY2() - SIZE_CELL); head.SetY1(head.GetY1() - SIZE_CELL); head.SetY2(head.GetY2() - SIZE_CELL); } Continuation(); } } void Snake::MoveDown() { if (dir == "up") { MoveUp(); } else { snake[0].DrawColor({ 12, 12, 12 }); if (dir != "down") { snake.push_back(Line(snake[snake.size() - 1].GetX2(), snake[snake.size() - 1].GetY2(), snake[snake.size() - 1].GetX2(), snake[snake.size() - 1].GetY2(), { 46, 149, 232 })); dir = "down"; } if ((snake[0].GetX1() != snake[0].GetX2()) && (snake.size() % 2 == 0)) { snake[snake.size() - 1].SetY2(snake[snake.size() - 1].GetY2() + SIZE_CELL); if (snake[0].GetX1() < snake[0].GetX2()) snake[0].SetX1(snake[0].GetX1() + SIZE_CELL); else snake[0].SetX1(snake[0].GetX1() - SIZE_CELL); head.SetY1(head.GetY1() + SIZE_CELL); head.SetY2(head.GetY2() + SIZE_CELL); if (snake[0].GetX1() == snake[0].GetX2()) { snake.erase(snake.begin()); } } else if ((snake[0].GetY1() != snake[0].GetY2()) && (snake.size() > 1)) { snake[snake.size() - 1].SetY2(snake[snake.size() - 1].GetY2() + SIZE_CELL); if (snake[0].GetY1() < snake[0].GetY2()) snake[0].SetY1(snake[0].GetY1() + SIZE_CELL); else snake[0].SetY1(snake[0].GetY1() - SIZE_CELL); head.SetY1(head.GetY1() + SIZE_CELL); head.SetY2(head.GetY2() + SIZE_CELL); if (snake[0].GetY1() == snake[0].GetY2()) { snake.erase(snake.begin()); } } else { snake[snake.size() - 1].SetY1(snake[snake.size() - 1].GetY1() + SIZE_CELL); snake[snake.size() - 1].SetY2(snake[snake.size() - 1].GetY2() + SIZE_CELL); head.SetY1(head.GetY1() + SIZE_CELL); head.SetY2(head.GetY2() + SIZE_CELL); } Continuation(); } } //-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------ы Game::Game(Snake * _snake) { snake = _snake; } Game::~Game() {} bool Game::CheckFood()//проверка на правильность еды { for (int i = 0; i < snake->snake.size(); i++) { if (snake->snake[i].GetX1() < snake->snake[i].GetX2()) { if ((food.GetX1() >= snake->snake[i].GetX1()) && (food.GetX1() <= snake->snake[i].GetX2())) { if (snake->snake[i].GetY1() < snake->snake[i].GetY2()) { if ((food.GetY1() >= snake->snake[i].GetY1()) && (food.GetY1() <= snake->snake[i].GetY2())) return false; } else { if ((food.GetY1() <= snake->snake[i].GetY1()) && (food.GetY1() >= snake->snake[i].GetY2())) return false; } } } else { if ((food.GetX1() <= snake->snake[i].GetX1()) && (food.GetX1() >= snake->snake[i].GetX2())) { if (snake->snake[i].GetY1() < snake->snake[i].GetY2()) { if ((food.GetY1() >= snake->snake[i].GetY1()) && (food.GetY1() <= snake->snake[i].GetY2())) return false; } else { if ((food.GetY1() <= snake->snake[i].GetY1()) && (food.GetY1() >= snake->snake[i].GetY2())) return false; } } } } return true; } void Game::DrawFood()//рисуется еда с учётом положения змейки { bool check = false; while (!check) { food.RandFood();//задались координады в нужном диапазоне check = CheckFood(); } food.Draw(); } void Game::Increase()//увеличение { if (snake->snake[0].GetX1() == snake->snake[0].GetX2()) { if (snake->snake[0].GetY1() > snake->snake[0].GetY2()) snake->snake[0].SetY1(snake->snake[0].GetY1() + SIZE_CELL); else snake->snake[0].SetY1(snake->snake[0].GetY1() - SIZE_CELL); } else { if (snake->snake[0].GetX1() > snake->snake[0].GetX2()) snake->snake[0].SetX1(snake->snake[0].GetX1() + SIZE_CELL); else snake->snake[0].SetX1(snake->snake[0].GetX1() - SIZE_CELL); } snake->size++; } void Game::Move() { while ((snake->continuation)&&(snake->size < snake->max_size)) { while (!_kbhit() && (snake->continuation)) { snake->MoveLeft(); if (!CheckFood()) { Increase(); WriteSize(); DrawFood(); } } switch (_getch()) { case 72: while ((!_kbhit())&&(snake->continuation)) { snake->MoveUp(); if (!CheckFood()) { Increase(); WriteSize(); DrawFood(); } } break; case 80: while (!_kbhit() && (snake->continuation)) { snake->MoveDown(); if (!CheckFood()) { Increase(); WriteSize(); DrawFood(); } } break; case 75: while (!_kbhit() && (snake->continuation)) { snake->MoveLeft(); if (!CheckFood()) { Increase(); WriteSize(); DrawFood(); } } break; case 77: while (!_kbhit() && (snake->continuation)) { snake->MoveRight(); if (!CheckFood()) { Increase(); WriteSize(); DrawFood(); } } break; default: break; } } if (snake->max_size == snake->size) std::cout << " You won!!! "; else { std::cout << " Game over."; } } void Game::WriteSize() { COORD position = { 0,0 }; //позиция x и y HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleCursorPosition(hConsole, position); std::cout << "Snake size: " << snake->size; } void Game::GameStart() { system("cls"); WriteSize(); barrier.Draw(); snake->Draw();//начальное положение DrawFood(); Move(); } void Game::GameOver() { snake->snake.clear(); snake->snake.push_back(Line(805, 325, 730, 325, { 46, 149, 232 })); snake->head = Line(730, 325, 730, 325, { 72, 219, 116 }); snake->dir = "left"; snake->continuation = true; snake->size = 5; barrier.SetLine(115, 115, 115 + 62 * SIZE_CELL, 115); } void Game:: game() { while (true) { system("cls"); int act; std::cout << "1)Start the game\n2)Customization\n3)Leave the game\n"; std::cin >> act; if (act == 1) { GameStart(); GameOver(); } else if (act == 2) { Customization(); } else break; } } void Game::Customization() { int i; std::cout << "1)easy\n2)average\n3)difficult\nChoose the difficulty level: "; std::cin >> i; switch (i) { case 1: snake->difficulty = 300; break; case 2: snake->difficulty = 200; break; case 3: snake->difficulty = 100; break; default: break; } }
43f9a27e519f67aa08297dc1770e0985f0060503
17e326bced8e286cf91333ee40de2ae239c4638f
/TestTool/MCU/Arduino/Arduino Uno/Arduino_Uno_Wirelss_Communication/Arduino_Uno_Wirelss_Communication.ino
8f242d00f597a7dafd2afec0e9c316b95b47a238
[]
no_license
HumorLogic/Auto-Delivery-Robot
98137d82ff3115ebd45de78f7c0cb0a2aa57fbfe
d74321215fe6ef4bc9af830ea037a82fd5ab8826
refs/heads/master
2020-09-28T11:46:36.203066
2020-01-01T00:20:08
2020-01-01T00:20:08
226,772,160
1
0
null
2019-12-18T15:08:30
2019-12-09T02:57:42
C#
UTF-8
C++
false
false
1,780
ino
Arduino_Uno_Wirelss_Communication.ino
#include <SoftwareSerial.h> SoftwareSerial mySerial(2, 3); //RX TX const int LedPin = 13; const int motorA_PWM_pin = 6; const int motorA_IN1_pin = 7; const int motorA_IN2_pin = 8; int ledState = 0; int motorState = 3; void setup() { pinMode(LedPin, OUTPUT); pinMode(motorA_IN1_pin, OUTPUT); pinMode(motorA_IN2_pin, OUTPUT); pinMode(motorA_PWM_pin, OUTPUT); mySerial.begin(115200); } void loop() { char receiveVal; if (mySerial.available() > 0) { receiveVal = mySerial.read(); if (receiveVal == '1') { ledState = 1; motorState = 1; } else if (receiveVal == '2') { ledState = 0; motorState = 2; } else if (receiveVal == '0') { motorState = 0; } // else // ledState = 0; } digitalWrite(LedPin, ledState); drive_motor(motorState); delay(50); } void drive_motor(int state) { if(state == 0) motor_brake(); else if (state == 1) motor_forward(); else if (state == 2) motor_backward(); else if (state == 3) motor_neutral(); } //电机向前 void motor_forward() { digitalWrite(motorA_IN1_pin, HIGH); digitalWrite(motorA_IN2_pin, LOW); analogWrite(motorA_PWM_pin, 100); } void motor_backward() { digitalWrite(motorA_IN1_pin, LOW); digitalWrite(motorA_IN2_pin, HIGH); analogWrite(motorA_PWM_pin, 100); } void motor_brake() { digitalWrite(motorA_IN1_pin, LOW); digitalWrite(motorA_IN2_pin, LOW); analogWrite(motorA_PWM_pin, 0); } void motor_neutral() { digitalWrite(motorA_IN1_pin, HIGH); digitalWrite(motorA_IN2_pin, HIGH); analogWrite(motorA_PWM_pin, 0); }
c0e30f357804b1c8ab27ad3db1a6bc14840d0004
c9063ce988e63ef9904eb7be0ab515004056f476
/PosteriorDistributionCL/LogisticRegressionPosterior.h
0dc2a4642a3c86c559fcec8b557b8e2515d1afcb
[]
no_license
kwathen/PosteriorDistribution
355b70f55d473b7f5afd98c7e6e4d9b605529158
6068ea7a32ea4afdc2c069623155eecef834dd48
refs/heads/master
2020-03-22T11:56:02.690961
2019-06-17T11:12:29
2019-06-17T11:12:29
140,005,585
0
0
null
null
null
null
UTF-8
C++
false
false
967
h
LogisticRegressionPosterior.h
#pragma once #include "PosteriorDistribution.h" #include <boost/numeric/ublas/matrix.hpp> #include <boost/numeric/ublas/vector.hpp> class LogisticRegressionPosterior :public PosteriorDistribution { public: LogisticRegressionPosterior(); ~LogisticRegressionPosterior(); double CalcualteLogPrior(const boost::numeric::ublas::vector<double> & vParams); double CalculateLogLikelihood(const boost::numeric::ublas::vector<double> & vParams); void SetData( const std::vector<double> & vDose, const std::vector<int> vEvent ); void SetPrior(const boost::numeric::ublas::matrix<double>& mPriorMean, const boost::numeric::ublas::matrix<double> & mVarCov ); private: std::vector<double> m_vDose; std::vector< int > m_vEvent; int m_nQtyDataPoints; boost::numeric::ublas::matrix<double> m_mPriorMean; boost::numeric::ublas::matrix<double> m_mPriorVarCov; boost::numeric::ublas::matrix<double> m_mPriorVarCovInv; };
df9b126dac70e8225da36ba25b46fe05f945c5d0
93cdde5d9d5d248b85b0c7cbf1f1ae76ad51b6b0
/second_cpp/src/VoxelNet.cpp
b31488e1d01815438ff5a96e8443a301ae836396
[]
no_license
841661831/perception
539a476d649e9a4364ad01f3405a8db1c078640f
31918e28fa3390390c4ea6208132d48164f95f73
refs/heads/master
2021-07-08T16:05:41.591419
2021-06-18T05:29:52
2021-06-18T05:29:52
246,080,065
1
0
null
null
null
null
UTF-8
C++
false
false
27,949
cpp
VoxelNet.cpp
// // Created by chenxiangyang on 3/2/21. // #include <iostream> #include "VoxelNet.h" #include <vector> #include <string> #include <torch/script.h> #include "voxel_encoder.h" #include "middle.h" #include <ctime> #include <boost/geometry.hpp> #include "../inference.h" //Pred_dict prediction_dict; std::map<std::string, torch::Tensor> prediction_dict; VoxelNet::VoxelNet(std::vector<int64_t> output_shape, // 1 std::vector<float> voxel_size, // voxel_generate && vfe std::vector<float> point_cloud_range, // voxel_generate && vfe // int64_t max_num_points, // voxel_generate // int64_t max_voxels, // voxel_generate // bool full_mean, // voxel_generate // bool block_filtering, // voxel_generate // int64_t block_factor, // voxel_generate // int64_t block_size, // voxel_generate // float height_threshold, // voxel_generate // float height_high_threshold, // voxel_generate std::map<std::string, std::map<std::string, torch::Tensor>> &weights, // middle2 // bool use_sigmoid_score, int nms_pre_max_sizes, //pre int nms_post_max_sizes, //pre float nms_iou_thresholds, //pre std::vector<float> nms_score_thresholds, std::vector<struct Anchor_generators> anchor_generator, // target std::vector<std::vector<int>> feature_map_sizes, //target std::vector<int> feature_map_size, //target int num_class, //rpn int64_t num_input_features, // vfe std::vector<int> vfe_num_filters, // vfe bool with_distance, // vfe int32_t middle_num_input_features, // middle2 int64_t rpn_num_input_features, // rpn int64_t num_anchor_per_loc, // rpn std::vector<int64_t> rpn_layer_nums, // rpn std::vector<int64_t> rpn_layer_strides, // rpn std::vector<int64_t> rpn_num_filters, // rpn std::vector<float> rpn_upsample_strides, // rpn std::vector<int64_t> rpn_num_upsample_filters, // rpn bool use_norm, // vfe && middle2 && rpn bool use_groupnorm, // rpn int64_t num_groups, // rpn int64_t box_code_size, // rpn TODO change it to target_assigner bool use_direction_classifier, // rpn bool encode_background_as_zeros, // rpn int64_t num_direction_bins, // rpn bool kd ): _num_class(num_class), _box_coder(box_code_size), _num_direction_bins(num_direction_bins), _encode_background_as_zeros(encode_background_as_zeros), _use_direction_classifier(use_direction_classifier), _weights_middle(weights["middle2"]), _weights_rpn(weights["rpn"]), // _use_sigmoid_score(use_sigmoid_score), _nms_score_thresholds(nms_score_thresholds), _nms_pre_max_sizes(nms_pre_max_sizes), _nms_post_max_sizes(nms_post_max_sizes), _nms_iou_thresholds(nms_iou_thresholds) { // _voxel_generator = VoxelGeneratorV2(voxel_size, point_cloud_range, max_num_points, max_voxels, full_mean, block_filtering, // block_factor, block_size, height_threshold, height_high_threshold); // _voxel_feature_extractor = SimpleVoxelRadius(num_input_features, use_norm, vfe_num_filters, with_distance, _voxel_generator._voxel_size, point_cloud_range); _target_assigner = TargetAssigner(anchor_generator,feature_map_sizes); _anchors = _target_assigner.generate_anchors(feature_map_size); _middle_feature_extractor = SpMiddleFHD(output_shape, use_norm, middle_num_input_features, _weights_middle, kd); _rpn = RPNV2(use_norm, num_class, rpn_layer_nums, rpn_layer_strides, rpn_num_filters, rpn_upsample_strides, rpn_num_upsample_filters, rpn_num_input_features, num_anchor_per_loc, encode_background_as_zeros, use_direction_classifier, use_groupnorm, num_groups, box_code_size, _num_direction_bins, false); _rpn.load_weight(_weights_rpn, true, false); } template <typename DType> xt::xarray<DType> tensorToxTensor(const torch::Tensor & boxes) { int n = boxes.dim(); if (n == 1) { size_t size = (size_t) boxes.size(0) ; std::vector<DType> tensorshape = {DType (boxes.size(0))}; xt::xarray<DType> out = xt::adapt(boxes.data_ptr<DType>(), size, xt::no_ownership(), tensorshape); return out; }else if (n == 2) { size_t size = (size_t) boxes.size(0) * (size_t) boxes.size(1); std::vector<DType> tensorshape = {DType (boxes.size(0)),DType (boxes.size(1))}; xt::xarray<DType> out = xt::adapt(boxes.data_ptr<DType>(), size, xt::no_ownership(), tensorshape); return out; }else if(n == 3) { size_t size = (size_t) boxes.size(0) * (size_t) boxes.size(1)* (size_t) boxes.size(2); std::vector<DType> tensorshape = {DType (boxes.size(0)),DType (boxes.size(1)),DType (boxes.size(2))}; xt::xarray<DType> out = xt::adapt(boxes.data_ptr<DType>(), size, xt::no_ownership(), tensorshape); return out; } else { std::cout << "wrong dim" << std::endl; } return -1; } xt::xarray<float> iou_jit( const torch::Tensor & boxes, const torch::Tensor & query_boxes, float eps){ xt::xarray<float> xt_boxes = tensorToxTensor<float> (boxes); xt::xarray<float> xt_query_boxes = tensorToxTensor<float> (query_boxes); int N = xt_boxes.shape(0); int K = xt_query_boxes.shape(0); xt::xarray<float> overlaps = xt::zeros<float>({N,K}); float box_area; float iw; float ih; float ua; for (int k = 0; k < K; ++k) { box_area = ((xt_query_boxes(k, 2) - xt_query_boxes(k, 0) + eps) * (xt_query_boxes(k, 3) - xt_query_boxes(k ,1) + eps)); for (int n = 0; n < N; ++n) { iw = std::min(xt_boxes(n, 2), xt_query_boxes(k, 2)) - std::max(xt_boxes(n, 0), xt_query_boxes(k, 0) + eps); if (iw > 0) { ih = std::min(xt_boxes(n, 3), xt_query_boxes(k, 3)) - std::max(xt_boxes(n, 1), xt_query_boxes(k, 1) + eps); if (ih > 0) { ua = ((xt_boxes(n, 2) - xt_boxes(n, 0) + eps) * (xt_boxes(n, 3) - xt_boxes(n, 1) + eps) + box_area - iw * ih); overlaps(n, k) = iw * ih / ua; } } } } return overlaps; } torch::Tensor corner_to_standup_nd(const torch::Tensor & dets_corners){ assert(dets_corners.sizes().size() == 3); std::tuple<torch::Tensor,torch::Tensor> max_standup_boxes; std::tuple<torch::Tensor,torch::Tensor> min_standup_boxes; torch::Tensor x_standup_boxes; torch::Tensor n_standup_boxes; std::vector<torch::Tensor> standup_boxes; min_standup_boxes = torch::min({dets_corners},1); max_standup_boxes = torch::max({dets_corners},1); n_standup_boxes = std::get<0>(min_standup_boxes); x_standup_boxes = std::get<0>(max_standup_boxes); standup_boxes.push_back(n_standup_boxes); standup_boxes.push_back(x_standup_boxes); torch::Tensor res4 = torch::cat({standup_boxes}, -1); return res4; } torch::Tensor rotation_2d(const torch::Tensor & corners, const torch::Tensor & angles){ torch::Tensor rot_sin = torch::sin(angles); torch::Tensor rot_cos = torch::cos(angles); torch::Tensor a = torch::cat({rot_cos,-rot_sin},1).t(); torch::Tensor b = torch::cat({rot_sin,rot_cos},1).t(); torch::Tensor rot_mat_T = torch::stack({a, b},0); torch::Tensor res3 = torch::einsum("aij,jka->aik",{corners , rot_mat_T}); return res3; } torch::Tensor corners_nd(torch::Tensor & dims, float origin){ int ndim = int(dims.size(1)); torch::Tensor corners_norm; if(ndim == 2) { corners_norm = torch::zeros({4,2}); corners_norm[1][1] = 1; corners_norm[2][0] = 1; corners_norm[3][0] = 1; corners_norm[2][1] = 1; corners_norm.to(torch::kFloat32); } else if(ndim == 3) { corners_norm = torch::zeros({8,3}); corners_norm[4][0] = 1; corners_norm[5][0] = 1; corners_norm[6][0] = 1; corners_norm[7][0] = 1; corners_norm[2][1] = 1; corners_norm[3][1] = 1; corners_norm[6][1] = 1; corners_norm[7][1] = 1; corners_norm[1][2] = 1; corners_norm[2][2] = 1; corners_norm[5][2] = 1; corners_norm[6][2] = 1; corners_norm.to(torch::kFloat32); } corners_norm = corners_norm - origin; torch::Tensor corners; int x = pow(2,ndim); corners = dims.reshape({-1,1,ndim})*corners_norm.reshape({1,x,ndim}); return corners; } torch::Tensor center_to_corner_box2d(torch::Tensor & centers, torch::Tensor & dims, torch::Tensor & angles, float origin){ torch::Tensor corners = corners_nd(dims, origin); // corners: [N, 4, 2] if (angles.size(0) != 0) { corners = rotation_2d(corners, angles); } corners += centers.reshape({-1, 1, 2}); return corners; } torch::Tensor second_box_decode(const torch::Tensor& box_encodings, const torch::Tensor& anchors, bool encode_angle_to_vector, bool smooth_dim) { int box_ndim = anchors.sizes()[2]; //boxes ([N, 7] Tensor): normal boxes: x, y, z, w, l, h, r //note: for encode_angle_to_vector is true: r==rx ry ==ry // for encode_angle_to_vector is false: r == r, ry not use enum anchor_type{x__ = 0, y__, z__, w__, l__, h__, r__, ry__}; std::vector<torch::Tensor> vec_anchors = torch::split(anchors, 1, -1); std::vector<torch::Tensor> vec_box_encodings = torch::split(box_encodings, 1, -1); torch::Tensor diagonal = torch::sqrt(vec_anchors.at(l__) * vec_anchors.at(l__) + vec_anchors.at(w__) * vec_anchors.at(w__)); torch::Tensor xg = vec_box_encodings.at(x__) * diagonal + vec_anchors.at(x__); torch::Tensor yg = vec_box_encodings.at(y__) * diagonal + vec_anchors.at(y__); torch::Tensor zg = vec_box_encodings.at(z__) * vec_anchors.at(h__) + vec_anchors.at(z__); torch::Tensor lg; torch::Tensor wg; torch::Tensor hg; if (smooth_dim) { lg = (vec_box_encodings.at(l__) + 1) * vec_anchors.at(l__); wg = (vec_box_encodings.at(w__) + 1) * vec_anchors.at(w__); hg = (vec_box_encodings.at(h__) + 1) * vec_anchors.at(h__); } else { lg = torch::exp(vec_box_encodings.at(l__)) * vec_anchors.at(l__); wg = torch::exp(vec_box_encodings.at(w__)) * vec_anchors.at(w__); hg = torch::exp(vec_box_encodings.at(h__)) * vec_anchors.at(h__); } torch::Tensor rg; if (encode_angle_to_vector) { torch::Tensor rgx = vec_box_encodings.at(r__) + torch::cos(vec_anchors.at(r__)); torch::Tensor rgy = vec_box_encodings.at(ry__) + torch::sin(vec_anchors.at(r__)); rg = torch::atan2(rgy, rgx); } else { rg = vec_box_encodings.at(r__) + vec_anchors.at(r__); } //get cgs std::vector<torch::Tensor> cgs; if (box_ndim > 7) { std::vector<torch::Tensor>::iterator it_anchors = vec_anchors.begin(); std::vector<torch::Tensor>::iterator it_box_encoding = vec_box_encodings.begin(); int minimum_size = std::min(vec_anchors.size(), vec_box_encodings.size()); it_anchors += r__ + 1; if (encode_angle_to_vector) { it_box_encoding += ry__ + 1; } else { it_box_encoding += r__ + 1; } while (it_anchors < vec_anchors.end() && it_box_encoding < vec_box_encodings.end()) { cgs.emplace_back(*it_anchors + *it_box_encoding); it_box_encoding++; it_anchors++; } } else { cgs.clear(); } std::vector<torch::Tensor> temp; temp.push_back(std::move(xg)); temp.push_back(std::move(yg)); temp.push_back(std::move(zg)); temp.push_back(std::move(wg)); temp.push_back(std::move(lg)); temp.push_back(std::move(hg)); temp.push_back(std::move(rg)); std::vector<torch::Tensor>::iterator it; for (it = cgs.begin(); it < cgs.end(); it++) { temp.push_back(std::move(*it)); } torch::Tensor res = torch::cat(temp, -1); return res; } torch::Tensor decode_torch(const torch::Tensor& box_encodings, const torch::Tensor& anchors){ auto res = second_box_decode(box_encodings, anchors, false, false); return res; } torch::Tensor rotate_non_max_suppression_cpu( const torch::Tensor & t_box_corners, const torch::Tensor & t_order, const xt::xarray<float> & t_standup_iou, float thresh) { xt::xarray<float> box_corners = tensorToxTensor<float>(t_box_corners); xt::xarray<int> order1 = tensorToxTensor<int>(t_order.cpu()); order1 = order1.reshape({-1}); int ndets = t_box_corners.size(0); xt::xarray<float> box_corners_r = box_corners; xt::xarray<float> order_r = order1; xt::xarray<int> suppressed = xt::zeros<int>({ndets}); xt::xarray<int> suppressed_rw = suppressed; xt::xarray<float> standup_iou_r = t_standup_iou; std::vector<int> keep; int i, j; namespace bg = boost::geometry; typedef bg::model::point<float, 2, bg::cs::cartesian> point_t; typedef bg::model::polygon<point_t> polygon_t; polygon_t poly, qpoly; std::vector<polygon_t> poly_inter, poly_union; float inter_area, union_area, overlap; for (int _i = 0; _i < ndets; ++_i) { i = order_r(_i); if (suppressed_rw(i) == 1) continue; keep.push_back(i); for (int _j = _i + 1; _j < ndets; ++_j) { j = order_r(_j); if (suppressed_rw(j) == 1) continue; if (standup_iou_r(i, j) <= 0.0) continue; try { bg::append(poly, point_t(box_corners_r(i, 0, 0), box_corners_r(i, 0, 1))); bg::append(poly, point_t(box_corners_r(i, 1, 0), box_corners_r(i, 1, 1))); bg::append(poly, point_t(box_corners_r(i, 2, 0), box_corners_r(i, 2, 1))); bg::append(poly, point_t(box_corners_r(i, 3, 0), box_corners_r(i, 3, 1))); bg::append(poly, point_t(box_corners_r(i, 0, 0), box_corners_r(i, 0, 1))); bg::append(qpoly, point_t(box_corners_r(j, 0, 0), box_corners_r(j, 0, 1))); bg::append(qpoly, point_t(box_corners_r(j, 1, 0), box_corners_r(j, 1, 1))); bg::append(qpoly, point_t(box_corners_r(j, 2, 0), box_corners_r(j, 2, 1))); bg::append(qpoly, point_t(box_corners_r(j, 3, 0), box_corners_r(j, 3, 1))); bg::append(qpoly, point_t(box_corners_r(j, 0, 0), box_corners_r(j, 0, 1))); bg::intersection(poly, qpoly, poly_inter); //slow jiaoji }catch (const std::exception &e) { std::cout << "box i corners:" << std::endl; for (int k = 0; k < 4; ++k) { std::cout << box_corners_r(i, k, 0) << " " << box_corners_r(i, k, 1) << std::endl; } std::cout << "box j corners:" << std::endl; for (int k = 0; k < 4; ++k) { std::cout << box_corners_r(j, k, 0) << " " << box_corners_r(j, k, 1) << std::endl; } continue; } if (!poly_inter.empty()) { inter_area = bg::area(poly_inter.front()); bg::union_(poly, qpoly, poly_union); //slow bingji if (!poly_union.empty()) { // ignore invalid box union_area = bg::area(poly_union.front()); overlap = inter_area / union_area; if (overlap >= thresh) suppressed_rw(j) = 1; poly_union.clear(); } } poly.clear(); qpoly.clear(); poly_inter.clear(); } } int t = keep.size(); torch::Tensor result = torch::tensor(keep).to(torch::kInt32).to(torch::kCUDA); // for (int k = 0; j < keep.size(); ++k) { // result[k] = keep[k]; // } // std::cout << "keeps= \n"<<keep << std::endl; // std::cout << "result= \n"<<result << std::endl; return result; } torch::Tensor rotate_nms_cc(const torch::Tensor & dets_np, float thresh){ torch::Tensor c_scores = dets_np.index({"...", torch::tensor({5})}).to(torch::kCUDA); torch::Tensor c_order = c_scores.argsort(0,true).to(torch::kInt32).to(torch::kCPU); torch::Tensor centers = dets_np.index({"...", torch::tensor({0,1})}); torch::Tensor dims = dets_np.index({"...", torch::tensor({2,3})}); torch::Tensor angles = dets_np.index({"...", torch::tensor({4})}); auto t1 = std::chrono::steady_clock::now(); torch::Tensor dets_corners = center_to_corner_box2d(centers, dims, angles ); auto t2 = std::chrono::steady_clock::now(); double dr = std::chrono::duration<double, std::milli>(t2 - t1).count(); // printf("center_to_corner_box2d cost %f\n",dr); auto t3 = std::chrono::steady_clock::now(); torch::Tensor dets_standup = corner_to_standup_nd(dets_corners); auto t4 = std::chrono::steady_clock::now(); double dq = std::chrono::duration<double, std::milli>(t4 - t3).count(); // printf("corner_to_standup_nd cost %f\n",dq); auto t5 = std::chrono::steady_clock::now(); xt::xarray<float> standup_iou = iou_jit(dets_standup, dets_standup, 0.0); auto t6 = std::chrono::steady_clock::now(); double dw = std::chrono::duration<double, std::milli>(t6 - t5).count(); // printf("iou_jit cost %f\n",dw); auto t7 = std::chrono::steady_clock::now(); torch::Tensor res5 = rotate_non_max_suppression_cpu(dets_corners,c_order,standup_iou, thresh); // std::cout << "res5 = \n"<< res5 << std::endl; auto t8 = std::chrono::steady_clock::now(); double di = std::chrono::duration<double, std::milli>(t8 - t7).count(); // printf("rotate_non_max_suppression_cpu cost %f\n",di); return res5; } torch::Tensor rotate_nms( const torch::Tensor & boxes_for_nms, const torch::Tensor & top_scores, int pre_max_sizes, int post_max_sizes, float iou_thresholds) { torch::Tensor rbboxes = boxes_for_nms; torch::Tensor scores; std::tuple<torch::Tensor,torch::Tensor> topk; int num_keeped_scores = top_scores.size(0); pre_max_sizes = std::min(num_keeped_scores, pre_max_sizes); topk = torch::topk(top_scores, pre_max_sizes); scores = std::get<0>(topk); torch::Tensor indices = std::get<1>(topk); rbboxes = rbboxes.index({indices.to(torch::kLong)}); torch::Tensor dets; dets = torch::cat({rbboxes, scores.unsqueeze(-1)},1); torch::Tensor dets_np = dets.data().cpu(); torch::Tensor ret = rotate_nms_cc(dets_np, iou_thresholds); torch::Tensor res2 = indices.index({ret.to(torch::kLong)}).to(torch::kInt32); return res2; } std::map<std::string, torch::Tensor> VoxelNet::predict(torch::Tensor & example, std::map<std::string, torch::Tensor> & preds_dict) { torch::Tensor total_scores; torch::Tensor batch_anchors; torch::Tensor batch_box_preds; torch::Tensor batch_cls_preds; torch::Tensor batch_dir_preds; int batch_size = example.size(0); batch_anchors = example.view({batch_size,-1,example.size(-1)}); batch_box_preds = preds_dict["box_preds"]; batch_cls_preds = preds_dict["cls_preds"]; // batch_box_preds = torch::where(torch::isnan(batch_box_preds), torch::full_like(batch_box_preds, 0), batch_box_preds); // batch_box_preds = torch::where(torch::isinf(batch_box_preds), torch::full_like(batch_box_preds, 0), batch_box_preds); // batch_cls_preds = torch::where(torch::isnan(batch_cls_preds), torch::full_like(batch_cls_preds, 0), batch_cls_preds); // batch_cls_preds = torch::where(torch::isinf(batch_cls_preds), torch::full_like(batch_cls_preds, 0), batch_cls_preds); batch_box_preds = batch_box_preds.view({batch_size,-1, 7}); // 7 = m_box_coder.code_size int num_class_with_pg = _num_class; if (!_encode_background_as_zeros) { num_class_with_pg = _num_class + 1; } batch_cls_preds = batch_cls_preds.view({batch_size,-1,num_class_with_pg}); batch_box_preds = decode_torch(batch_box_preds,batch_anchors); if (_use_direction_classifier) { batch_dir_preds = preds_dict["dir_cls_preds"]; // batch_dir_preds = torch::where(torch::isnan(batch_dir_preds), torch::full_like(batch_dir_preds, 0), batch_dir_preds); // batch_dir_preds = torch::where(torch::isinf(batch_dir_preds), torch::full_like(batch_dir_preds, 0), batch_dir_preds); batch_dir_preds = batch_dir_preds.view({batch_size,-1,_num_direction_bins}); } torch::Tensor post_center_range = torch::tensor( {0.0, -40.0, -2.200000047683716, 70.4000015258789, 40.0, 0.800000011920929}) .to(batch_box_preds.dtype()) .to(batch_box_preds.device()); torch::Tensor box_preds = batch_box_preds[0]; torch::Tensor cls_preds = batch_cls_preds[0]; torch::Tensor dir_preds = batch_dir_preds[0]; // std::cout<<batch_box_preds[0]; std::tuple<torch::Tensor,torch::Tensor> tmp_dir_labels; torch::Tensor dir_labels ; torch::Tensor boxes_for_nms; torch::Tensor top_scores_keep; torch::Tensor selected; torch::Tensor selected_boxes; torch::Tensor selected_dir_labels; torch::Tensor selected_labels; torch::Tensor selected_scores; torch::Tensor scores; torch::Tensor label_preds; if (_use_direction_classifier) { tmp_dir_labels = torch::max(dir_preds,-1); dir_labels = std::get<1>(tmp_dir_labels); } if (_encode_background_as_zeros) { // assert(_use_sigmoid_score == true); total_scores = torch::sigmoid(cls_preds); } int feature_map_size_prod = 21120; // feature_map_size_prod = batch_box_preds.size(1) / _target_assigner.num_anchors_per_location; std::tuple<torch::Tensor,torch::Tensor> top = torch::max(total_scores,-1); // std::get<0>(top):top_scores std::get<1>(top):top_labels torch::Tensor top_scores = std::get<0>(top); torch::Tensor top_labels = std::get<1>(top); if (_nms_score_thresholds[0] > 0.0) { top_scores_keep = top_scores >= _nms_score_thresholds[0]; top_scores = top_scores.masked_select(top_scores_keep); } if (top_scores.size(0) != 0) { if (_nms_score_thresholds[0] > 0.0 ) { box_preds = box_preds.index({top_scores_keep.to(torch::kBool)}); if (_use_direction_classifier) { dir_labels = dir_labels.index({top_scores_keep.to(torch::kBool)}); } top_labels = top_labels.index({top_scores_keep.to(torch::kBool)}); } boxes_for_nms = box_preds.index({"...", torch::tensor({0, 1, 3, 4, 6})}); auto t1 = std::chrono::steady_clock::now(); selected = rotate_nms(boxes_for_nms, top_scores, _nms_pre_max_sizes, _nms_post_max_sizes, _nms_iou_thresholds); auto t2 = std::chrono::steady_clock::now(); double dr = std::chrono::duration<double, std::milli>(t2 - t1).count(); // printf("rotate_nms cost %f\n",dr); } // std::cout<<box_preds; selected_boxes = box_preds.index({selected.to(torch::kLong)}); if (_use_direction_classifier) { selected_dir_labels = dir_labels.index({selected.to(torch::kLong)}); } selected_labels = top_labels.index({selected.to(torch::kLong)}); selected_scores = top_scores.index({selected.to(torch::kLong)}); // finally generate predictions. if (selected_boxes.size(0) != 0) { box_preds = selected_boxes; scores = selected_scores; label_preds = selected_labels; if (_use_direction_classifier) { dir_labels = selected_dir_labels; } torch::Tensor final_box_preds = box_preds; torch::Tensor final_scores = scores; torch::Tensor final_labels = label_preds; torch::Tensor mask = (final_box_preds.index({"...", torch::tensor({0,1,2})}) >= post_center_range.slice(0, 0, 3)).to(torch::kBool).all(1); mask &= (final_box_preds.index({"...", torch::tensor({0,1,2})}) <= post_center_range.slice(0, 3, final_box_preds.size(1) - 1)).to(torch::kBool).all(1); prediction_dict["box3d_lidar"] = final_box_preds.index({mask.to(torch::kBool)}); prediction_dict["scores"] = final_scores.index({mask.to(torch::kBool)}); prediction_dict["label_preds"] = label_preds.index({mask.to(torch::kBool)}); } return prediction_dict; } std::map<std::string, torch::Tensor> VoxelNet::forward(xt::xarray<float> &voxels, xt::xarray<int> &num_points,xt::xarray<int> &coors, int batch_size) { xt::xarray<int> coor_shape = xt::adapt(coors.shape()); torch::Tensor coors_t = torch::from_blob(coors.data(), {coor_shape(0), coor_shape(1)}, torch::kInt32).to(torch::kCUDA); auto t1 = std::chrono::steady_clock::now(); auto voxel_feature = _voxel_feature_extractor.forward_xt(voxels, num_points); auto t2 = std::chrono::steady_clock::now(); std::cout<<voxel_feature.sizes()<<"\n"; auto spatial_features = _middle_feature_extractor.forward(voxel_feature, coors_t, batch_size); auto t3 = std::chrono::steady_clock::now(); auto preds_dict = _rpn.forward(spatial_features); auto t4 = std::chrono::steady_clock::now(); // std::cout<<preds_dict["box_preds"].index({0, 0, 0})<<"\n"; // std::cout<<preds_dict["cls_preds"]<<"\n"; // std::cout<<preds_dict["dir_cls_preds"]<<"\n"; // auto anchor = npy2tensor("/data/second_cpp2/weights2/weights/anchor.npy"); auto res = predict(_anchors, preds_dict); // std::cout<<res["box3d_lidar"] << "\n"; // std::cout<<res["scores"] << "\n"; // std::cout<<res["label_preds"] << "\n"; auto t5 = std::chrono::steady_clock::now(); double vfe = std::chrono::duration<double, std::milli>(t2 - t1).count(); double mid = std::chrono::duration<double, std::milli>(t3 - t2).count(); double rpn = std::chrono::duration<double, std::milli>(t4 - t3).count(); double pre = std::chrono::duration<double, std::milli>(t5 - t4).count(); printf("vfe cost %4f ms!\n", vfe); printf("mid cost %4f ms!\n", mid); printf("rpn cost %4f ms!\n", rpn); printf("pre cost %4f ms!\n", pre); return res; }
ff64983ab94ca05262a9b622b4899d4a524596d0
bdd9f3cdabe0c768641cf61855a6f24174735410
/src/engine/shared/application/PlanetWatcher/src/win32/ColorTableItem.cpp
521d19c4a49bcc55ee3c975d8caf964b89ef50c1
[]
no_license
SWG-Source/client-tools
4452209136b376ab369b979e5c4a3464be28257b
30ec3031184243154c3ba99cedffb2603d005343
refs/heads/master
2023-08-31T07:44:22.692402
2023-08-28T04:34:07
2023-08-28T04:34:07
159,086,319
15
47
null
2022-04-15T16:20:34
2018-11-25T23:57:31
C++
UTF-8
C++
false
false
2,648
cpp
ColorTableItem.cpp
// ============================================================================ // // ColorTableItem.cpp // // Copyright Sony Online Entertainment // // ============================================================================ #include "FirstPlanetWatcher.h" #include "ColorTableItem.h" // ============================================================================ // // ColorTableItem // // ============================================================================ //----------------------------------------------------------------------------- ColorTableItem::ColorTableItem(QTable *parent, QString const &text, QColor const &cellColor) : QTableItem(parent, QTableItem::Never, text) , m_cellColor(cellColor) , m_textColor() , m_number(false) { } //----------------------------------------------------------------------------- void ColorTableItem::paint(QPainter *painter, const QColorGroup &colorGroup, const QRect &updateRegion, bool selected) { QColorGroup colorGroupCopy(colorGroup); colorGroupCopy.setColor(QColorGroup::Base, m_cellColor); colorGroupCopy.setColor(QColorGroup::Highlight, m_cellColor); colorGroupCopy.setColor(QColorGroup::Text, m_textColor); colorGroupCopy.setColor(QColorGroup::HighlightedText, m_textColor); if (m_number) { QString tempText(text()); setText(""); QTableItem::paint(painter, colorGroupCopy, updateRegion, selected); setText(tempText); painter->setPen(m_textColor); QRect rect(0, 0, painter->window().width(), painter->window().height()); painter->drawText(rect, Qt::AlignHCenter | Qt::AlignVCenter, text()); } else { QTableItem::paint(painter, colorGroupCopy, updateRegion, selected); } } //----------------------------------------------------------------------------- void ColorTableItem::setTextColor(QColor const &textColor) { m_textColor = textColor; } // //----------------------------------------------------------------------------- void ColorTableItem::setCellColor(const QColor &cellColor) { if (m_cellColor != cellColor) { m_cellColor = cellColor; } } //----------------------------------------------------------------------------- const QColor &ColorTableItem::getCellColor() const { return m_cellColor; } //----------------------------------------------------------------------------- void ColorTableItem::setText(const QString &text) { QTableItem::setText(text); } //----------------------------------------------------------------------------- void ColorTableItem::setTextNumber(const QString &text) { m_number = true; QTableItem::setText(text); } // ============================================================================
788c737c8441c5584f63beaebb155d6428cb7646
c379115f0be03956964992c7172c58c2cabbc577
/problem3.cpp
d34a516161a88d8d6af84374824efe354adb2f1b
[]
no_license
DinhH/Euler
f9c031cf18ea44a8ca963cde7208a7b6ca1152e5
d904123d3dca1d13bb9aad78dfc0079cae9518a5
refs/heads/master
2016-09-06T02:36:37.137643
2015-06-17T14:58:06
2015-06-17T14:58:06
24,312,760
0
0
null
null
null
null
UTF-8
C++
false
false
190
cpp
problem3.cpp
#include <iostream> int main() { long number = 600851475143; long divide; for (divide = 3; divide != number; divide += 2) { if (number % divide ==0) { number /= divide; } } }
f7598677d1eb63016fafe54995a9fb4d575ed70f
c73b25c20f3b56343ae31399a4d51134098451f3
/cpp/SampleCommands/cmdSampleToggleLayer.cpp
5e69a8b41d4038a1df2ba31a74fbc937093fe1e1
[ "MIT" ]
permissive
deKlerk/rhino-developer-samples
b3fe59392729ab2ab168945c5f7accbfc1bb7f7c
7f26b4d48c0579e97fe5964fe27ebed5168c135a
refs/heads/master
2020-03-27T06:34:39.594185
2017-08-25T17:04:07
2017-08-25T17:04:07
146,116,291
0
1
null
2018-08-25T17:36:56
2018-08-25T17:36:55
null
UTF-8
C++
false
false
2,172
cpp
cmdSampleToggleLayer.cpp
#include "stdafx.h" //////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////// // // BEGIN SampleToggleLayer command // #pragma region SampleToggleLayer command class CCommandSampleToggleLayer : public CRhinoCommand { public: CCommandSampleToggleLayer() = default; ~CCommandSampleToggleLayer() = default; UUID CommandUUID() override { // {72EAC2EB-E568-4C91-A1F4-3EA3DC71E537} static const GUID SampleToggleLayerCommand_UUID = { 0x72EAC2EB, 0xE568, 0x4C91, { 0xA1, 0xF4, 0x3E, 0xA3, 0xDC, 0x71, 0xE5, 0x37 } }; return SampleToggleLayerCommand_UUID; } const wchar_t* EnglishCommandName() override { return L"SampleToggleLayer"; } CRhinoCommand::result RunCommand(const CRhinoCommandContext& context) override ; }; // The one and only CCommandSampleToggleLayer object static class CCommandSampleToggleLayer theSampleToggleLayerCommand; CRhinoCommand::result CCommandSampleToggleLayer::RunCommand(const CRhinoCommandContext& context) { CRhinoGetString gs; gs.SetCommandPrompt(L"Layer to toggle visiblity"); gs.GetString(); if (gs.CommandResult() != CRhinoCommand::success) return gs.CommandResult(); ON_wString layer_name = gs.String(); layer_name.TrimLeftAndRight(); if (layer_name.IsEmpty()) return CRhinoCommand::nothing; CRhinoLayerTable& layer_table = context.m_doc.m_layer_table; int layer_index = layer_table.FindLayerFromFullPathName(layer_name, -1); if (layer_index < 0) { RhinoApp().Print(L"The \"%s\" layer was not found.\n", (const wchar_t*)layer_name); return CRhinoCommand::nothing; } bool bVisible = layer_table[layer_index].PersistentVisibility() ? false : true; // toggle... ON_Layer onlayer = layer_table[layer_index]; onlayer.SetVisible(bVisible); onlayer.SetPersistentVisibility(bVisible); layer_table.ModifyLayer(onlayer, layer_index, true); context.m_doc.Redraw(); return CRhinoCommand::success; } #pragma endregion // // END SampleToggleLayer command // //////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////
4d7c271bc11af7fd8a6148bb9d6f46a803b2d147
46e1ec2efbe78bc84b36236bd77379a8d3449ffb
/commandinterpreter.h
e467a0b6118f95b05f954ffeab44d563d901ea9c
[]
no_license
nt7nguye/biquadris
5e2e1f7468983a820e058af770ee9427ec9182a8
62f20f1a244e22db0d0f1255452d04a2cddd8761
refs/heads/master
2023-08-07T08:20:40.763015
2021-09-16T00:59:44
2021-09-16T00:59:44
406,970,184
0
0
null
null
null
null
UTF-8
C++
false
false
782
h
commandinterpreter.h
#ifndef COMMAND_INTERPRETER_H #define COMMAND_INTERPRETER_H #include <string> #include "game.h" #include "prefixmap.h" #include "commandtokenizer.h" #include <vector> class CommandInterpreter { public: static std::string const Restart; static std::string const Sequence; static std::string const Rename; static std::string const Macro; private: Game* game; PrefixMap prefixMap; CommandTokenizer tokenizer; std::vector<std::string> seqStack; //list of currently open files // being used for the 'sequence' command void runSequence(std::string file, std::string input); public: CommandInterpreter(Game*); void registerCommand(std::string const&); void run(std::string); }; #endif
0c497dc4f3d44bc638e3ea9b54de0f609283b936
35b6f66ef2dfb6b1d7e839e9513e08139a55b68b
/arduArm/source/arduArm/arduArm/MVector.cpp
482e71bbfdf5b3a3016c4a92764d765b534dac5f
[]
no_license
vladislav06/arduarm
04eacc524ae465307e2345636211b104f13001d1
ffc39a570480c2ed18f962154f03a776e1cb3462
refs/heads/master
2021-03-14T17:59:22.072637
2020-05-15T10:28:49
2020-05-15T10:28:49
246,781,407
0
0
null
null
null
null
UTF-8
C++
false
false
939
cpp
MVector.cpp
#define _USE_MATH_DEFINES #include <cmath> namespace MVector { struct point { float x; float y; float z; }; point sum(point a, point b) // c = a + b { point c; c.x = a.x + b.x; c.y = a.y + b.y; c.z = a.z + b.z; return c; } point dif(point a, point b) // c = a - b { point c; c.x = a.x - b.x; c.y = a.y - b.y; c.z = a.z - b.z; return c; } point absP(point a) //a = | a | { if (a.x < 0) { a.x *= -1; } if (a.y < 0) { a.y *= -1; } if (a.z < 0) { a.z *= -1; } return a; } point toPoint(float a)//turns float into point { point b; b.x = a; b.y = a; b.z = a; return b; } float vecLng(point a, point b) { point c; c = absP(dif(a, b)); float lng; lng = sqrt(pow(c.x, 2) + pow(c.y, 2) + pow(c.z, 2)); return lng; }; point multVEC(float a, point b) // float * point { b.x *= a; b.y *= a; b.z *= a; return b; }; void nol() {} }
8a57ea0eca2fdd0732276bd5a6d09004f5eca849
a0e3518418469e263c7101033368f47af9afa800
/srcs/Environment.cpp
89ef6c5853ee0ffe18400daec2eddfecd7b6d470
[]
no_license
qfeuilla/IRC
9152b098a5871b578ba9815cff23a069c3110e71
373b83ab9b163afa6d3b045ef653a29ff3a94127
refs/heads/master
2023-03-05T04:57:09.773818
2021-02-16T15:19:20
2021-02-16T15:19:20
296,306,979
1
0
null
2021-09-27T18:57:44
2020-09-17T11:31:14
C++
UTF-8
C++
false
false
6,829
cpp
Environment.cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Environment.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: qfeuilla <qfeuilla@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/09/17 19:52:01 by qfeuilla #+# #+# */ /* Updated: 2020/10/07 14:52:20 by qfeuilla ### ########.fr */ /* */ /* ************************************************************************** */ #include "Environment.hpp" #include <string> #include <sys/select.h> #include <sys/resource.h> #include <iostream> #include "Client.hpp" #include "utils.hpp" Environment::Environment(): otherServers() { clients_num = CLIENTS_MAX; clients_fd = std::vector<Fd *>(clients_num); for (int i = 0; i < clients_num ; i++) { clients_fd[i] = new Fd(); } cmd_count.emplace(std::pair<std::string, int>("PASS", 0)); cmd_count.emplace(std::pair<std::string, int>("NICK", 0)); cmd_count.emplace(std::pair<std::string, int>("USER", 0)); cmd_count.emplace(std::pair<std::string, int>("OPER", 0)); cmd_count.emplace(std::pair<std::string, int>("MODE", 0)); cmd_count.emplace(std::pair<std::string, int>("SERVICE", 0)); cmd_count.emplace(std::pair<std::string, int>("QUIT", 0)); cmd_count.emplace(std::pair<std::string, int>("SQUIT", 0)); cmd_count.emplace(std::pair<std::string, int>("JOIN", 0)); cmd_count.emplace(std::pair<std::string, int>("PART", 0)); cmd_count.emplace(std::pair<std::string, int>("TOPIC", 0)); cmd_count.emplace(std::pair<std::string, int>("NAMES", 0)); cmd_count.emplace(std::pair<std::string, int>("LIST", 0)); cmd_count.emplace(std::pair<std::string, int>("INVITE", 0)); cmd_count.emplace(std::pair<std::string, int>("KICK", 0)); cmd_count.emplace(std::pair<std::string, int>("PRIVMSG", 0)); cmd_count.emplace(std::pair<std::string, int>("NOTICE", 0)); cmd_count.emplace(std::pair<std::string, int>("MOTD", 0)); cmd_count.emplace(std::pair<std::string, int>("LUSERS", 0)); cmd_count.emplace(std::pair<std::string, int>("VERSION", 0)); cmd_count.emplace(std::pair<std::string, int>("STATS", 0)); cmd_count.emplace(std::pair<std::string, int>("LINKS", 0)); cmd_count.emplace(std::pair<std::string, int>("TIME", 0)); cmd_count.emplace(std::pair<std::string, int>("CONNECT", 0)); cmd_count.emplace(std::pair<std::string, int>("TRACE", 0)); cmd_count.emplace(std::pair<std::string, int>("ADMIN", 0)); cmd_count.emplace(std::pair<std::string, int>("INFO", 0)); cmd_count.emplace(std::pair<std::string, int>("SERVLIST", 0)); cmd_count.emplace(std::pair<std::string, int>("SQUERY", 0)); cmd_count.emplace(std::pair<std::string, int>("WHO", 0)); cmd_count.emplace(std::pair<std::string, int>("WHOIS", 0)); cmd_count.emplace(std::pair<std::string, int>("WHOWAS", 0)); cmd_count.emplace(std::pair<std::string, int>("KILL", 0)); cmd_count.emplace(std::pair<std::string, int>("PING", 0)); cmd_count.emplace(std::pair<std::string, int>("PONG", 0)); cmd_count.emplace(std::pair<std::string, int>("ERROR", 0)); cmd_count.emplace(std::pair<std::string, int>("AWAY", 0)); cmd_count.emplace(std::pair<std::string, int>("REHASH", 0)); cmd_count.emplace(std::pair<std::string, int>("DIE", 0)); cmd_count.emplace(std::pair<std::string, int>("RESTART", 0)); cmd_count.emplace(std::pair<std::string, int>("SUMMON", 0)); cmd_count.emplace(std::pair<std::string, int>("USERS", 0)); cmd_count.emplace(std::pair<std::string, int>("WALLOPS", 0)); cmd_count.emplace(std::pair<std::string, int>("USERHOST", 0)); cmd_count.emplace(std::pair<std::string, int>("ISON", 0)); cmd_count.emplace(std::pair<std::string, int>("SERVER", 0)); cmd_count.emplace(std::pair<std::string, int>("NJOIN", 0)); channels = new ChannelMaster(); } Environment::~Environment() { delete channels; } void Environment::init_fds() { int i; i = 0; maxfd = 0; FD_ZERO(&fd_read); FD_ZERO(&fd_write); while (i < clients_num) { if (clients_fd[i]->type != FD_FREE) { FD_SET(i, &fd_read); if (std::string(clients_fd[i]->buf_write).length() > 0) FD_SET(i, &fd_write); maxfd = MAX(maxfd, i); } i++; } } std::vector<Fd *> Environment::search_history_nick(std::string nk) { std::vector<Fd *> buff; for (Fd *f : client_history) { Client *c = reinterpret_cast<Client *>(f); if (utils::strMatchToLower(nk, c->nick)) buff.push_back(c); } return buff; } std::vector<Fd *> Environment::search_list_nick(std::string nk) { std::vector<Fd *> buff; for (Fd *f : clients_fd) { if (f->type == FD_CLIENT) { Client *c = reinterpret_cast<Client *>(f); if (utils::strMatchToLower(nk, c->nick)) buff.push_back(c); } } return buff; } std::vector<OtherServ *> Environment::search_othersrv_nick(std::string nk) { std::vector<OtherServ *> buff; for (OtherServ *srv : otherServers) { for (Client *c : srv->clients) { if (utils::strCmp(c->nick, nk)) { buff.push_back(srv); return (buff); } } } return (buff); } Client *Environment::getOtherServClientByNick(const std::string &nick) { for (OtherServ *srv : otherServers) { for (Client *c : srv->clients) { if (utils::strCmp(c->nick, nick)) return (c); } } return (nullptr); } Client *Environment::searchClientEverywhere(const std::string &nick) { Client *client = getClient(nick); if (client) return (client); return (getOtherServClientByNick(nick)); } Client *Environment::getClient(const std::string &nick) { for (Fd *f : clients_fd) { if (f->type == FD_CLIENT) { Client *c = reinterpret_cast<Client *>(f); if (utils::strCmp(nick, c->nick)) return (c); } } return (nullptr); } std::vector<OtherServ *> Environment::search_othersrv_history_nick(std::string nk) { std::vector<OtherServ *> buff; for (OtherServ *srv : otherServers) { for (Client *c : srv->clients_history) { if (c->nick == nk) { buff.push_back(srv); return (buff); } } } return (buff); } std::vector<Fd *> Environment::search_list_with_mode(std::string mask, std::string targ, char c) { (void)mask; (void)targ; std::vector<Fd *> buff; for (Fd *f : clients_fd) { if (f->type == FD_CLIENT) { Client *cl = reinterpret_cast<Client *>(f); if (c == 'o' && cl->o_mode) buff.push_back(cl); if (c == 'i' && cl->i_mode) buff.push_back(cl); if (c == 'w' && cl->w_mode) buff.push_back(cl); if (c == 's' && cl->s_mode) buff.push_back(cl); } } return buff; }
4ca0672c3ce37fb9ea7c52a535122d245b20b418
01c286c750aa34f8bed760d3919e5a58539f4a8e
/Codeforces/749C.cpp
719a0531454fb1367f93550e9895e3d5e97cdae2
[ "MIT" ]
permissive
Alipashaimani/Competitive-programming
17686418664fb32a3f736bb4d57317dc6657b4a4
5d55567b71ea61e69a6450cda7323c41956d3cb9
refs/heads/master
2023-04-19T03:21:22.172090
2021-05-06T15:30:25
2021-05-06T15:30:25
241,510,661
0
0
null
null
null
null
UTF-8
C++
false
false
655
cpp
749C.cpp
#include <bits/stdc++.h> using namespace std; queue<int> qR, qD; char c; int n; int main(){ ios_base::sync_with_stdio(false); cin.tie(0); cin >> n; for(int i = 0; i < n; i ++){ cin >> c; if(c == 'D') qR.push(i); else qD.push(i); } while(1){ if (qR.empty() || qD.empty() ) break; if(qR.front() < qD.front()){ qD.pop(); qR.pop(); qR.push(n); } else{ qR.pop(); qD.pop(); qD.push(n); } n++; } cout << (qR.empty()?"R":"D") << '\n'; return 0; }
f5b8c83147bfc72015bbdc1ad9f8861457224097
96087808a05a1a6beba14207b813ac7a152ef28a
/AlgorithmQuestions/AtCoder/arc064/c.cpp
fc3665912533630c20a5352344e8e8ebfd08d1f2
[]
no_license
phonism/notes
d76dd50d1e5b9463c2b65eafca7a596bd97e523b
97e72472657dfbabdf858fe812308790c0214a0b
refs/heads/master
2022-09-10T04:23:39.394736
2022-08-17T12:28:30
2022-08-17T12:28:30
24,148,792
12
1
null
null
null
null
UTF-8
C++
false
false
470
cpp
c.cpp
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; long long a[N], p[N]; int main() { int n, x; cin >> n >> x; for (int i = 1; i <= n; ++i) { cin >> a[i]; p[i] = a[i] + a[i - 1]; p[i] -= x; // cout << p[i] << endl; } long long ans = 0; for (int i = 1; i <= n; ++i) { if (p[i] > 0) { ans += p[i]; p[i + 1] -= p[i]; } } cout << ans << endl; }
776a55cf48ac15fd37284970795602f26c81de94
ec7a9036b51c2d54b2707c184b3d738f8fdd93e9
/src/animations/ARight.cpp
57640682262723d585eb8de85ea0d9395c1c967d
[]
no_license
xZwop/Gravedigger
b0f33088cb57d2d698db33fe2b21c7775dddb475
99230d1d07d6e7bb97387cfdec7a23940cd32e7b
refs/heads/master
2021-01-16T23:12:59.752820
2013-01-21T20:00:13
2013-01-21T20:00:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,025
cpp
ARight.cpp
#include "ARight.hpp" ARight::ARight(Character * _parent, const sf::Int32 _moduloTime) : AAnimation(_parent,_moduloTime) { } void ARight::execute(const sf::Int32 elapsed) { // TODO: Verif' they are existing components // #1 get all components CAcceleration * acceleration; acceleration = (CAcceleration *) parent->getComponent("Acceleration"); CSpeed * speed; speed = (CSpeed *) parent->getComponent("Speed"); CPosition * position; position = (CPosition *) parent->getComponent("Position"); if (speed->getHSpeed() < -1.2) { // #2a go back to 0 speed->setHSpeed((speed->getHSpeed())-((float)(speed->getHSpeed())/8.0)); position->setX((position->getX())+(speed->getHSpeed())); } else { // #2 add values speed->setHSpeed((speed->getHSpeed())+(acceleration->getHAcceleration())); position->setX((position->getX())+(speed->getHSpeed())); } // #3 change sprites TODO // example : if elapsed > modulotime/2 then ... }
4fe7132db858975e04b1bba3e9aceaefc788a13c
5c5e7b84ffa25a6aa8d87b9575b8dbd609541a8d
/user.h
8a1e681ee31d7751144da59684415acc8f712591
[]
no_license
jagrutijadhav/payLaterService
b05128cf79d2380f188e91a5dcf9bb84cb8030c1
3fb7150e82232decb4ae16b1043c7b8015fbc3a3
refs/heads/master
2023-05-06T03:04:44.131742
2021-05-24T11:09:22
2021-05-24T11:09:22
370,322,661
0
0
null
null
null
null
UTF-8
C++
false
false
2,837
h
user.h
#include <bits/stdc++.h> using namespace std; class acceptUsers { public: map<string, map<string, int>> userData; // ***** ACCEPT USER DATA ******** void addusers() { int numberOfUsers; cout << " enter number of Users : "; cin >> numberOfUsers; for (int i = 0; i < numberOfUsers; i++) { string name, email; int credit; cout << "Enter Name, E-mail ID and Cash Credit of Users" << i + 1 << " respectively : "; cin >> name >> email >> credit; userData.insert(make_pair(name, map<string, int>())); userData[name].insert(make_pair(email, credit)); } printUsers(userData); } // ******* DISPLAY USER DATA ******* void printUsers(map<string, map<string, int>> userData) { cout << "NAME \t EMAIL \t CREDIT" << endl; for (auto outerData : userData) for (auto innerData : outerData.second) cout << outerData.first << "\t" << innerData.first << "\t" << innerData.second << endl; } }; int userCredit; class SearchUserData : public acceptUsers { public: int sample, count = 0; string foundName, foundemail; // ******* FIND REQUIRED USER NAME ;******* void searchUserElement(string userName) { //sample = 10; bool f = 0; for (auto i : this->userData) { for (auto j : i.second) { if (userName == i.first) { userCredit = j.second; // count++; f = 1; break; } } if (f) break; } if (f == 0) { cout << "PLEASE ENTER VALID NAME"; } // cout << "UESECREDIT 1 ====" << userCredit << endl; } }; class checkUserCredit : public SearchUserData { public: int newcredit = 0; // ******** CHECK WHETHER REQUIRED AMOUNT EXIST OR NOT ****** int checkCredit(int price) { // cout << "UESECREDIT 2 ====" << userCredit << endl; // checkUserCredit acceptUserObj; //mainclass mainobj; if (userCredit > price) { bool f = 0; for (auto outerData : userData) { for (auto innerData : outerData.second) { if (userCredit == innerData.second) { newcredit = innerData.second; newcredit = innerData.second - price; innerData.second = newcredit; f = 1; break; } } if (f) break; } cout << "**** USER CREDIT ***** " << userCredit << endl; } else { cout << "INVALID TRANSACTION..!! :(" << endl; } return newcredit; //mainobj.getUserData(newcredit); } };
2192e8e826211732db6009c6ee47e9ffb323c857
6099e0ebd8e78311c5e3dfae1a4678c2a4d51873
/3rdParty/rocksdb/6.27/env/unique_id_gen.h
f48c3b5e7d0f68ae081b54a40d0cfe79da82a9d5
[ "Apache-2.0", "GPL-2.0-only", "BSD-3-Clause", "ICU", "LGPL-2.1-or-later", "OpenSSL", "GPL-1.0-or-later", "Zlib", "MIT", "ISC", "CC0-1.0", "BSL-1.0", "LicenseRef-scancode-autoconf-simple-exception", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "LicenseRef-scancode-pcre", "BSD-4-Clause", "Python-2.0", "Bison-exception-2.2", "JSON", "LicenseRef-scancode-unknown-license-reference", "Unlicense" ]
permissive
vishalbelsare/arangodb
be647e192dd7505a9907263892fe65112ce81d2d
a6bd3ccd6f622fab2a288d2e3a06ab8e338d3ec1
refs/heads/devel
2023-09-05T13:34:28.350423
2021-12-27T07:16:58
2021-12-27T07:16:58
137,596,199
0
0
Apache-2.0
2021-12-28T14:39:52
2018-06-16T16:54:10
C++
UTF-8
C++
false
false
2,840
h
unique_id_gen.h
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). // This file is for functions that generate unique identifiers by // (at least in part) by extracting novel entropy or sources of uniqueness // from the execution environment. (By contrast, random.h is for algorithmic // pseudorandomness.) // // These functions could eventually migrate to public APIs, such as in Env. #pragma once #include <atomic> #include <cstdint> #include "rocksdb/rocksdb_namespace.h" namespace ROCKSDB_NAMESPACE { // Generates a new 128-bit identifier that is universally unique // (with high probability) for each call. The result is split into // two 64-bit pieces. This function has NOT been validated for use in // cryptography. // // This is used in generating DB session IDs and by Env::GenerateUniqueId // (used for DB IDENTITY) if the platform does not provide a generator of // RFC 4122 UUIDs or fails somehow. (Set exclude_port_uuid=true if this // function is used as a fallback for GenerateRfcUuid, because no need // trying it again.) void GenerateRawUniqueId(uint64_t* a, uint64_t* b, bool exclude_port_uuid = false); #ifndef NDEBUG // A version of above with options for challenge testing void TEST_GenerateRawUniqueId(uint64_t* a, uint64_t* b, bool exclude_port_uuid, bool exclude_env_details, bool exclude_random_device); #endif // Generates globally unique ids with lower probability of any collisions // vs. each unique id being independently random (GenerateRawUniqueId). // We call this "semi-structured" because between different // SemiStructuredUniqueIdGen objects, the IDs are separated by random // intervals (unstructured), but within a single SemiStructuredUniqueIdGen // object, the generated IDs are trivially related (structured). See // https://github.com/pdillinger/unique_id for how this improves probability // of no collision. In short, if we have n SemiStructuredUniqueIdGen // objects each generating m IDs, the first collision is expected at // around n = sqrt(2^128 / m), equivalently n * sqrt(m) = 2^64, // rather than n * m = 2^64 for fully random IDs. class SemiStructuredUniqueIdGen { public: // Initializes with random starting state (from GenerateRawUniqueId) SemiStructuredUniqueIdGen(); // Assuming no fork(), `lower` is guaranteed unique from one call // to the next (thread safe). void GenerateNext(uint64_t* upper, uint64_t* lower); private: uint64_t base_upper_; uint64_t base_lower_; std::atomic<uint64_t> counter_; int64_t saved_process_id_; }; } // namespace ROCKSDB_NAMESPACE
996712f9e1caed5c706358950c87785197bd587a
c7e035411bd40fa197e61acfc9038950d45594e4
/src/Chamelion/Source/Printers.cpp
2b17e044a4757afabd7a97c0678257c39482de33
[]
no_license
cutff/ChamelionInfoStealer
27e19e9f9f319be682e8a690903d37e90c41263b
707013e64b0c6f1b545f84a774b3efdd16df7085
refs/heads/main
2023-05-28T16:29:09.639177
2021-06-08T08:15:33
2021-06-08T08:15:33
380,619,651
2
1
null
2021-06-27T00:19:55
2021-06-27T00:19:55
null
UTF-8
C++
false
false
6,857
cpp
Printers.cpp
#include "../Headers/Printers.h" /// <summary> /// reinterpretPrinterValueAddress is used to reintepret the pointer address of the values enumerated by EnumPrinters. /// </summary> /// <param name="printerInformation">LPPRINTER_INFO_2 Value</param> /// <returns>The same value but reinterpreted as a std::string</returns> std::string reinterpretPrinterValueAddress(LPWSTR& printerInformation) { std::string printersReinterpreted; for (int i = 0; i < wcslen(printerInformation); i++) { printersReinterpreted.append(reinterpret_cast<const char*>(printerInformation + i)); } return printersReinterpreted; } /// <summary> /// reinterpretPrinterValueAddress is used to reintepret the pointer address of the values enumerated by EnumPrinters. /// </summary> /// <param name="printerInformation">LPPRINTER_INFO_2 Value</param> /// <returns>The same value but reinterpreted as a std::string</returns> std::string reinterpretPrinterValueAddress(LPSTR& printerInformation) { std::string printersReinterpreted; for (int i = 0; i < strlen(printerInformation); i++) { printersReinterpreted.append(reinterpret_cast<const char*>(printerInformation + i)); } return printersReinterpreted; } bool Printers::EnumeratePrintersInformation() { //Get default printer DWORD DefaultPrinterNameLength = 0; //Get buffer size GetDefaultPrinter(NULL, &DefaultPrinterNameLength); //Obtain DefaultPrinterNameLength char* DefaultPrinterNameBuffer = new char[DefaultPrinterNameLength]; //Allocate new char of size DefaultPrinterNameLength //Get value if (!(GetDefaultPrinterA(DefaultPrinterNameBuffer, &DefaultPrinterNameLength))) { if (::GetLastError() == ERROR_INSUFFICIENT_BUFFER) { #ifdef _DEBUG std::cout << "[ERROR] Failed to obtain Default Printer Name : " << "ERROR_INSUFFICIENT_BUFFER" << std::endl; #endif } if (::GetLastError() == ERROR_FILE_NOT_FOUND) { #ifdef _DEBUG std::cout << "[ERROR] Failed to obtain Default Printer Name : " << "ERROR_FILE_NOT_FOUND" << std::endl; #endif } } else { //If the function succeeded this->DefaultPrinterName = DefaultPrinterNameBuffer; std::cout << "Default Printer Name : " << this->DefaultPrinterName << std::endl << std::endl; } //Enumerate All Printers with their details LPPRINTER_INFO_2 printerInformation = nullptr; DWORD pcbNeeded, pcReturned = { 0 }; //pcbNeeded : A pointer to a value that receives the number of bytes copied //pcbReturned : A pointer to a value that received the number of PRINTER_INFO_5. //Get Buffer Size EnumPrinters( PRINTER_ENUM_LOCAL | PRINTER_ENUM_CONNECTIONS, NULL, 2, (PBYTE)0, 0, &pcbNeeded, &pcReturned ); //Allocate memory for LPPRINTER_INFO_2 if ((printerInformation = (LPPRINTER_INFO_2)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, pcbNeeded)) == 0) exit(EXIT_FAILURE); //Exit Failure if not enough memory is available. //Enum our printers if (EnumPrintersA(PRINTER_ENUM_LOCAL | PRINTER_ENUM_CONNECTIONS, NULL, 2, (LPBYTE)printerInformation, pcbNeeded, &pcbNeeded, &pcReturned) == 0) { std::cout << "ENUMPRINTERS FAILED WITH ERROR : " << GetLastError() << std::endl; exit(EXIT_FAILURE); } for (DWORD dwItem = 0; dwItem < pcReturned; dwItem++) { //If printInformation has attributes PRINTER_ATTRIBUTE_SHARED then push it into our struct vector else we push "NONE" Printers.push_back({ reinterpret_cast<char *>(printerInformation[dwItem].pPrinterName), printerInformation[dwItem].Attributes& PRINTER_ATTRIBUTE_SHARED ? reinterpret_cast<char *>(printerInformation[dwItem].pShareName) : "None", //PUSH SHARE NAME reinterpret_cast<char *>(printerInformation[dwItem].pPortName), reinterpret_cast<char *>(printerInformation[dwItem].pDriverName), reinterpret_cast<char *>(printerInformation[dwItem].pComment), reinterpret_cast<char *>(printerInformation[dwItem].pLocation), reinterpret_cast<char *>(printerInformation[dwItem].pPrintProcessor), printerInformation[dwItem].Status, printerInformation[dwItem].cJobs, printerInformation[dwItem].Priority, printerInformation[dwItem].AveragePPM, reinterpret_cast<char*>(printerInformation[dwItem].pPrinterName) == DefaultPrinterName ? true : false }); } //Print our printer informations in a for loop just for testing purposes #ifdef _DEBUG for (int i = 0; i < Printers.size(); i++) { std::cout << this->Printers[i] << std::endl; } #endif return true; } ///Spam print hacked message on all the Printers ///in the victim location. //Useful Documentations : //https://docs.microsoft.com/en-us/troubleshoot/windows/win32/win32-raw-data-to-printer void Printers::PrintHackedMessage(){ //Check if we have more than 1 printers in the list. if(this->Printers.size() < 1) return; //Variables LPHANDLE hPrinter = nullptr; DWORD PrintJob = 0; DOC_INFO_1 docInformations; //Print for(PrinterInformations currentPrinter : this->Printers){ if(OpenPrinterA((char*)currentPrinter.PrinterName.c_str(), hPrinter, NULL) != 0){ //Printer is opened and we now have a handle on it. //Add Job (Apparently it is not recommended to run AddJob directly on Windows 8 and Later OS) //So we'll use the StartDocPrinter along with StartPagePrinter, WritePrinter, EndPagePrinter, EndDocPrinter. //Fill the structure with data. docInformations.pDocName = TEXT("Hacked Really Hard By Gremlin"); //Document name. docInformations.pOutputFile = NULL; //Sets this to null if you send data to a printer. docInformations.pDatatype = TEXT("RAW"); //We sending RAW DATA to the printer. char* lpData = "DATASENTDATASENTDATASENTDATASENT"; DWORD dwCount = sizeof(lpData) / sizeof(char); DWORD dwBytesWritten; //Inform the spooler the document is beginning. if((PrintJob = StartDocPrinter(&hPrinter, 1, (LPBYTE)&docInformations)) == 0){ //If StartDocPrinter failed close the printer. ClosePrinter(hPrinter); return; } //Start a page. if(!StartPagePrinter(hPrinter)){ //If StartPagePrinter function fails. EndDocPrinter(hPrinter); //Tell our spooler to stop the Doc Print. ClosePrinter(hPrinter); //Close our printer handle. return; } //Apparently there is a problem with the WritePrinter function, we'll still figure it out. if(!WritePrinter(hPrinter, (LPBYTE)&lpData, dwCount, &dwBytesWritten)){ //If WritePrinter function fails. EndPagePrinter(hPrinter); EndDocPrinter(hPrinter); ClosePrinter(hPrinter); return; } //End the page if(!EndPagePrinter(hPrinter)){ EndDocPrinter(hPrinter); ClosePrinter(hPrinter); return; } if(!EndDocPrinter(hPrinter)){ ClosePrinter(hPrinter); return; } } } }
87aef56a13336c231d4f268d4746028e647b664b
4eb606bc2c42ea64264bd8b160db4d81919b7850
/Template.cpp
6e206174a8416da08c1821ee8990dd49b2f23c3e
[]
no_license
mjohnson9/cist2362
23ac3ea43c253c8a7e9539d348d6a6da1068c482
294ac0cbbbd6d7007088c1fcf33a33fcc8ba54e1
refs/heads/master
2022-01-16T16:34:14.194118
2019-07-07T14:43:07
2019-07-07T14:43:07
166,576,352
0
0
null
null
null
null
UTF-8
C++
false
false
1,138
cpp
Template.cpp
// Copyright 2019 Michael Johnson #include <iostream> #include "../common.h" namespace mjohnson { namespace programname { // FORWARD DECLARATIONS // MAIN FUNCTIONS int Run() { // Add the computer's locale to cout. This lets us do thousands separators and // decimal points in the locale of the user. std::cout.imbue(std::locale("")); do { } while (mjohnson::common::RequestContinue()); return 0; } // UNIT TESTING /** * Runs the program's unit tests. Returns the success or failure of those unit * tests. * @return True if all unit tests passed, false otherwise. */ bool RunUnitTests() { return true; } } // namespace programname } // namespace mjohnson int main(int argc, char* argv[]) { bool run_unit_tests; if (!mjohnson::common::ParseArgs(argc, argv, &run_unit_tests)) { return 1; } if (run_unit_tests) { const bool result = mjohnson::programname::RunUnitTests(); if (!result) { std::cout << "Unit tests failed." << std::endl; return 1; } std::cout << "Unit tests passed." << std::endl; return 0; } return mjohnson::programname::Run(); } // Grade: 100
db4044f36e17e4dfb0056ed0a98885ebf8660a64
b1f959dfb2b2ca978924879c282ca7bf2a1e8b0c
/CreamyGameLib/include/Math/Vector3.hpp
80017ca0a1101eb523c5221c4168e02303c421b0
[ "MIT", "IJG", "BSD-3-Clause", "libtiff" ]
permissive
NoixChou/CreamyGameLib
6a6a1b41a914768ba0b3998e24c278459a869409
f3268d8f6d468e2cce93efc70206d4d19e8c3716
refs/heads/master
2023-03-09T08:40:33.346070
2021-01-04T15:48:11
2021-01-04T15:48:11
247,012,717
0
0
null
null
null
null
UTF-8
C++
false
false
348
hpp
Vector3.hpp
#pragma once #include "Vector2.hpp" namespace creamyLib::math { struct Vector3 { float x; float y; float z; constexpr Vector3(const float x, const float y, const float z) : x(x), y(y), z(z) {} [[nodiscard]] Vector2 toVector2() const { return Vector2(x, y); } }; }
d7189b443138f036554a26b5f40446b5b239d993
1a160272694522ed1da602c77da316fe4c767ed5
/Qt_5_5_1_mingw492_32-Release/debug/moc_tabout_form.cpp
642a416476f149f07944e224d8e9a0bc201eaf40
[ "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
stasinek/Koperek
5df6a1882dd9c95045fd5c4b5f74b7082dbcef83
a20d5c394ae4f6e3eb58b5eb00ba205173ffe004
refs/heads/master
2023-05-24T20:19:45.060233
2023-05-19T18:48:07
2023-05-19T18:48:07
129,602,469
0
0
null
null
null
null
UTF-8
C++
false
false
4,913
cpp
moc_tabout_form.cpp
/**************************************************************************** ** Meta object code from reading C++ file 'tabout_form.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.5.1) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../../tabout_form.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'tabout_form.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.5.1. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE struct qt_meta_stringdata_TAbout_form_t { QByteArrayData data[12]; char stringdata0[134]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_TAbout_form_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_TAbout_form_t qt_meta_stringdata_TAbout_form = { { QT_MOC_LITERAL(0, 0, 11), // "TAbout_form" QT_MOC_LITERAL(1, 12, 19), // "on_checkBox_toggled" QT_MOC_LITERAL(2, 32, 0), // "" QT_MOC_LITERAL(3, 33, 7), // "checked" QT_MOC_LITERAL(4, 41, 9), // "showEvent" QT_MOC_LITERAL(5, 51, 11), // "QShowEvent*" QT_MOC_LITERAL(6, 63, 1), // "e" QT_MOC_LITERAL(7, 65, 10), // "closeEvent" QT_MOC_LITERAL(8, 76, 12), // "QCloseEvent*" QT_MOC_LITERAL(9, 89, 20), // "on_buttonBox_clicked" QT_MOC_LITERAL(10, 110, 16), // "QAbstractButton*" QT_MOC_LITERAL(11, 127, 6) // "button" }, "TAbout_form\0on_checkBox_toggled\0\0" "checked\0showEvent\0QShowEvent*\0e\0" "closeEvent\0QCloseEvent*\0on_buttonBox_clicked\0" "QAbstractButton*\0button" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_TAbout_form[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 4, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount // slots: name, argc, parameters, tag, flags 1, 1, 34, 2, 0x08 /* Private */, 4, 1, 37, 2, 0x08 /* Private */, 7, 1, 40, 2, 0x08 /* Private */, 9, 1, 43, 2, 0x08 /* Private */, // slots: parameters QMetaType::Void, QMetaType::Bool, 3, QMetaType::Void, 0x80000000 | 5, 6, QMetaType::Void, 0x80000000 | 8, 6, QMetaType::Void, 0x80000000 | 10, 11, 0 // eod }; void TAbout_form::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { if (_c == QMetaObject::InvokeMetaMethod) { TAbout_form *_t = static_cast<TAbout_form *>(_o); Q_UNUSED(_t) switch (_id) { case 0: _t->on_checkBox_toggled((*reinterpret_cast< bool(*)>(_a[1]))); break; case 1: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break; case 2: _t->closeEvent((*reinterpret_cast< QCloseEvent*(*)>(_a[1]))); break; case 3: _t->on_buttonBox_clicked((*reinterpret_cast< QAbstractButton*(*)>(_a[1]))); break; default: ; } } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { switch (_id) { default: *reinterpret_cast<int*>(_a[0]) = -1; break; case 3: switch (*reinterpret_cast<int*>(_a[1])) { default: *reinterpret_cast<int*>(_a[0]) = -1; break; case 0: *reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QAbstractButton* >(); break; } break; } } } const QMetaObject TAbout_form::staticMetaObject = { { &QDialog::staticMetaObject, qt_meta_stringdata_TAbout_form.data, qt_meta_data_TAbout_form, qt_static_metacall, Q_NULLPTR, Q_NULLPTR} }; const QMetaObject *TAbout_form::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *TAbout_form::qt_metacast(const char *_clname) { if (!_clname) return Q_NULLPTR; if (!strcmp(_clname, qt_meta_stringdata_TAbout_form.stringdata0)) return static_cast<void*>(const_cast< TAbout_form*>(this)); return QDialog::qt_metacast(_clname); } int TAbout_form::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) { if (_id < 4) qt_static_metacall(this, _c, _id, _a); _id -= 4; } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { if (_id < 4) qt_static_metacall(this, _c, _id, _a); _id -= 4; } return _id; } QT_END_MOC_NAMESPACE
fbda25ba87bc66f9559076fab8bacc731a94b4e2
e52010dbde811a010102c66dc01ac0fac2993e71
/GGHAA2Mu2TauAnalysis/AMuTriggerAnalyzer/plugins/Mu1Mu2Analyzer.cc
c6814ca1dfefe338b2e8876f4bf9367adf596b69
[]
no_license
red1habibullah/lightHiggsAnalysis
a03aa4560c5ca917774d2beaed01e2d9d6ec4fbd
e81ce7930f5f06199e002241bdf31ce5a2f8c334
refs/heads/master
2021-01-01T20:45:29.448521
2019-06-05T22:01:43
2019-06-05T22:01:43
98,927,713
1
0
null
2017-07-31T20:38:05
2017-07-31T20:38:05
null
UTF-8
C++
false
false
20,427
cc
Mu1Mu2Analyzer.cc
// -*- C++ -*- // // Package: GGHAA2Mu2TauAnalysis/Mu1Mu2Analyzer // Class: Mu1Mu2Analyzer // /**\class Mu1Mu2Analyzer Mu1Mu2Analyzer.cc GGHAA2Mu2TauAnalysis/Mu1Mu2Analyzer/plugins/Mu1Mu2Analyzer.cc Description: [one line class summary] Implementation: [Notes on implementation] */ // // Original Author: Mengyao Shi // Created: Mon, 21 Mar 2016 12:00:57 GMT // // // system include files #include <memory> #include <cmath> // user include files #include "TH1D.h" #include "TTree.h" #include "TCanvas.h" #include "TFrame.h" #include "TGraph.h" // user include files #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/EDAnalyzer.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "DataFormats/HepMCCandidate/interface/GenParticleFwd.h" #include "Tools/Common/interface/GenTauDecayID.h" #include "Tools/Common/interface/Common.h" #include "FWCore/ServiceRegistry/interface/Service.h" #include "CommonTools/UtilAlgos/interface/TFileService.h" #include "SimDataFormats/PileupSummaryInfo/interface/PileupSummaryInfo.h" #include "DataFormats/PatCandidates/interface/MET.h" #include "PhysicsTools/Utilities/interface/LumiReWeighting.h" #include "SimDataFormats/GeneratorProducts/interface/GenEventInfoProduct.h" using namespace std; using namespace edm; using namespace reco; using namespace trigger; // // class declaration // // If the analyzer does not use TFileService, please remove // the template argument to the base class so the class inherits // from edm::one::EDAnalyzer<> and also remove the line from // constructor "usesResource("TFileService");" // This will improve performance in multithreaded jobs. class Mu1Mu2Analyzer : public edm::EDAnalyzer{ public: explicit Mu1Mu2Analyzer(const edm::ParameterSet&); ~Mu1Mu2Analyzer(); static void fillDescriptions(edm::ConfigurationDescriptions& descriptions); private: virtual void beginJob() override; virtual void analyze(const edm::Event&, const edm::EventSetup&) override; virtual void endJob() override; // ----------member data --------------------------- edm::EDGetTokenT<edm::View<pat::Muon>> Mu1Mu2_; edm::EDGetTokenT<edm::View<pat::Muon>> Mu1_; std::map<std::string, TH1D*> histos1D_; std::map<std::string, TH2D*> histos2D_; edm::EDGetTokenT<std::vector<pat::MET>> pfMETsTag_; std::vector<double> Mu2PtBins_; std::vector<double> invMassBins_; bool MC_; edm::FileInPath _fp; edm::FileInPath _fpIDs_BToF; edm::FileInPath _fpIDs_GH; edm::FileInPath _fpISOs_BToF; edm::FileInPath _fpISOs_GH; edm::FileInPath _fpTrack; edm::FileInPath _fpTrigger_BToF; edm::FileInPath _fpTrigger_GH; edm::EDGetTokenT<std::vector<PileupSummaryInfo>> PUTag_; float EventWeight; float SFsWeight; edm::EDGetTokenT<GenEventInfoProduct> generator_; TFile *_filePU; TH1D *puweight; TFile *_fileIDs_BToF; TFile *_fileIDs_GH; TFile *_fileISOs_BToF; TFile *_fileISOs_GH; TFile *_fileTrack; TFile *_fileTrigger_BToF; TFile *_fileTrigger_GH; TH2F *IDsWeight_BToF; TH2F *IDsWeight_GH; TH2F *ISOsWeight_BToF; TH2F *ISOsWeight_GH; TGraph *TrackWeight; TH2F *TriggerWeight_BToF; TH2F *TriggerWeight_GH; struct TrackProperties{ Double_t x; Double_t y; Double_t errx_up; Double_t errx_down; Double_t erry_up; Double_t erry_down; }; struct Gauss{ Double_t meanData; Double_t sigmaData; Double_t meanMC; Double_t sigmaMC; Double_t ptMin; Double_t ptMax; }; std::list<TrackProperties> TrackCorr; struct Gauss GaussU1Corr[5]; struct Gauss GaussU2Corr[5]; edm::EDGetTokenT<bool> BadChCandFilterToken_; edm::EDGetTokenT<bool> BadPFMuonFilterToken_; TTree *METRecoil_; edm::Service<TFileService> fileService; Double_t totalWeights_; Double_t f_z1_pt; Double_t f_u1; Double_t f_u2; }; // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // Mu1Mu2Analyzer::Mu1Mu2Analyzer(const edm::ParameterSet& iConfig): Mu1Mu2_(consumes<edm::View<pat::Muon>>(iConfig.getParameter<edm::InputTag>("Mu1Mu2"))), Mu1_(consumes<edm::View<pat::Muon>>(iConfig.getParameter<edm::InputTag>("Mu1"))), histos1D_(), histos2D_(), pfMETsTag_ (consumes<std::vector<pat::MET>>(iConfig.getParameter<edm::InputTag>("pfMet"))), Mu2PtBins_(iConfig.getParameter<std::vector<double> >("Mu2PtBins")), invMassBins_(iConfig.getParameter<std::vector<double>>("invMassBins")), MC_(iConfig.getParameter<bool>("MC")), _fp(iConfig.getParameter<edm::FileInPath>("fp")), _fpIDs_BToF(iConfig.getParameter<edm::FileInPath>("fpIDs_BToF")), _fpIDs_GH(iConfig.getParameter<edm::FileInPath>("fpIDs_GH")), _fpISOs_BToF(iConfig.getParameter<edm::FileInPath>("fpISOs_BToF")), _fpISOs_GH(iConfig.getParameter<edm::FileInPath>("fpISOs_GH")), _fpTrack(iConfig.getParameter<edm::FileInPath>("fpTrack")), _fpTrigger_BToF(iConfig.getParameter<edm::FileInPath>("fpTrigger_BToF")), _fpTrigger_GH(iConfig.getParameter<edm::FileInPath>("fpTrigger_GH")), PUTag_(consumes<std::vector<PileupSummaryInfo> >(iConfig.getParameter<edm::InputTag>("PUTag"))), generator_(consumes<GenEventInfoProduct>(iConfig.existsAs<edm::InputTag>("Generator") ? iConfig.getParameter<edm::InputTag>("Generator"): edm::InputTag())), BadChCandFilterToken_(consumes<bool>(iConfig.getParameter<edm::InputTag>("BadChargedCandidateFilter"))), BadPFMuonFilterToken_(consumes<bool>(iConfig.getParameter<edm::InputTag>("BadPFMuonFilter"))) { METRecoil_=fileService->make<TTree>("METRecoil","METRecoil"); METRecoil_->Branch("f_weight",&totalWeights_,"totalWeights_/D"); METRecoil_->Branch("f_z1_pt", &f_z1_pt,"f_z1_pt/D"); METRecoil_->Branch("f_u1", &f_u1, "f_u1/D"); METRecoil_->Branch("f_u2", &f_u2, "f_u2/D"); std::string FullFilePath = _fp.fullPath(); _filePU= TFile::Open(FullFilePath.c_str()); puweight = (TH1D*)_filePU->Get("pileup_scale"); std::string FullFilePathIDs_BToF=_fpIDs_BToF.fullPath(); std::string FullFilePathIDs_GH=_fpIDs_GH.fullPath(); std::string FullFilePathISOs_BToF=_fpISOs_BToF.fullPath(); std::string FullFilePathISOs_GH=_fpISOs_GH.fullPath(); std::string FullFilePathTrack=_fpTrack.fullPath(); std::string FullFilePathTrigger_BToF=_fpTrigger_BToF.fullPath(); std::string FullFilePathTrigger_GH=_fpTrigger_GH.fullPath(); _fileIDs_BToF=TFile::Open(FullFilePathIDs_BToF.c_str()); _fileIDs_GH=TFile::Open(FullFilePathIDs_GH.c_str()); _fileISOs_BToF=TFile::Open(FullFilePathISOs_BToF.c_str()); _fileISOs_GH=TFile::Open(FullFilePathISOs_GH.c_str()); _fileTrack=TFile::Open(FullFilePathTrack.c_str()); _fileTrigger_BToF=TFile::Open(FullFilePathTrigger_BToF.c_str()); _fileTrigger_GH=TFile::Open(FullFilePathTrigger_GH.c_str()); IDsWeight_BToF= (TH2F*)_fileIDs_BToF->Get("MC_NUM_MediumID2016_DEN_genTracks_PAR_pt_eta/pt_abseta_ratio"); IDsWeight_GH= (TH2F*)_fileIDs_GH->Get("MC_NUM_MediumID2016_DEN_genTracks_PAR_pt_eta/pt_abseta_ratio"); ISOsWeight_BToF=(TH2F*)_fileISOs_BToF->Get("LooseISO_MediumID_pt_eta/pt_abseta_ratio"); ISOsWeight_GH=(TH2F*)_fileISOs_GH->Get("LooseISO_MediumID_pt_eta/pt_abseta_ratio"); TrackWeight=(TGraph*)_fileTrack->Get("ratio_eff_aeta_dr030e030_corr"); TriggerWeight_BToF=(TH2F*)_fileTrigger_BToF->Get("IsoMu24_OR_IsoTkMu24_PtEtaBins/pt_abseta_ratio"); TriggerWeight_GH=(TH2F*)_fileTrigger_GH->Get("IsoMu24_OR_IsoTkMu24_PtEtaBins/pt_abseta_ratio"); Double_t x[TrackWeight->GetN()], y[TrackWeight->GetN()]; for(int i=0; i<TrackWeight->GetN(); i++){ TrackWeight->GetPoint(i, x[i], y[i]); TrackProperties val; val.x=x[i]; val.y=y[i]; val.errx_up=TrackWeight->GetErrorXhigh(i+1); val.errx_down=TrackWeight->GetErrorXlow(i+1); val.erry_up=TrackWeight->GetErrorYhigh(i+1); val.erry_down=TrackWeight->GetErrorYlow(i+1); TrackCorr.push_back(val); } GaussU1Corr[0]={1.8,19.4,1.7, 20.9,0.0,10.0}; GaussU1Corr[1]={3.0,19.9,2.7,21.2,10.0,20.0}; GaussU1Corr[2]={2.9, 20.6,2.4, 21.7,20.0, 30.0}; GaussU1Corr[3]={2.5,20.5,2.0, 22.1, 30.0,50.0}; GaussU1Corr[4]={1.8,23.3,1.1, 23.7,50.0, 1000.0}; GaussU2Corr[0]={0.0, 19.3,0.4, 21.1, 0.0, 10.0}; GaussU2Corr[1]={0.0, 19.6,0.0 ,21.0 , 10.0, 20.0}; GaussU2Corr[2]={0.0, 20.0,0.0 ,21.3 ,20.0, 30.0}; GaussU2Corr[3]={0.0, 20.5,0.0, 21.5, 30.0, 50.0}; GaussU2Corr[4]={0.0,21.6 , 0.0, 22.1, 50.0, 1000.0}; } Mu1Mu2Analyzer::~Mu1Mu2Analyzer() { // do anything here that needs to be done at desctruction time // (e.g. close files, deallocate resources etc.) _filePU->Close(); delete(_filePU); _fileIDs_BToF->Close(); _fileIDs_GH->Close(); _fileISOs_BToF->Close(); _fileISOs_GH->Close(); _fileTrack->Close(); _fileTrigger_BToF->Close(); _fileTrigger_GH->Close(); delete(_fileIDs_BToF); delete(_fileIDs_GH); delete(_fileISOs_BToF); delete(_fileISOs_GH); delete(_fileTrack); delete(_fileTrigger_BToF); delete(_fileTrigger_GH); } // // member functions // // ------------ method called for each event ------------ void Mu1Mu2Analyzer::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) { using namespace edm; edm::Handle<edm::View<pat::Muon>> pMu1Mu2; iEvent.getByToken(Mu1Mu2_, pMu1Mu2); edm::Handle<edm::View<pat::Muon>> pMu1; iEvent.getByToken(Mu1_, pMu1); edm::Handle<std::vector<pat::MET>> pMets; iEvent.getByToken( pfMETsTag_ ,pMets); edm::Handle<std::vector<PileupSummaryInfo> > pPU; if (MC_) iEvent.getByToken(PUTag_, pPU); edm::Handle<bool> ifilterbadChCand; iEvent.getByToken(BadChCandFilterToken_, ifilterbadChCand); bool filterbadChCandidate = *ifilterbadChCand; edm::Handle<bool> ifilterbadPFMuon; iEvent.getByToken(BadPFMuonFilterToken_, ifilterbadPFMuon); bool filterbadPFMuon = *ifilterbadPFMuon; //if MC do Pileup reweighting double pu_weight = 1.0; double IDs_weightBToF=1.0;//every muon pass through "medium ID" double IDs_weightGH=1.0; double ISOs_weightBToF=1.0; // every muon pass through 0.25 relative isolation double ISOs_weightGH=1.0; double Tracks_weight=1.0; double Trigger_weightBToF=1.0; double Trigger_weightGH=1.0; float num_PU_vertices = -1; //int test=0; if (MC_ ) { if(pPU.isValid()){ int count_pu=0; for(vector<PileupSummaryInfo>::const_iterator cand=pPU->begin(); cand!=pPU->end();++cand){ //std::cout << " Pileup Information: bunchXing, nvtx: " << cand->getBunchCrossing() << " " << cand->getPU_NumInteractions() << std::endl; if (cand->getBunchCrossing() == 0) { num_PU_vertices=cand->getTrueNumInteractions(); //test=cand->getPU_NumInteractions(); count_pu++; break; } //num_PU_vertices=cand->getPU_NumInteractions(); in-time,out-of-time pileup //BX=cand->getBunchCrossing(); } //cout<<"count"<<count_pu<<std::endl; //cout<<"PU_NumInteractions"<<test<<std::endl; //cout<<"NumVertices"<<num_PU_vertices<<std::endl; } histos1D_["NumVertices"]->Fill(num_PU_vertices); if (num_PU_vertices!=-1){ int binx = puweight->GetXaxis()->FindBin(num_PU_vertices); //cout << " bin x= " << binx << " " << puweight->GetBinContent(binx) << endl; pu_weight=double(puweight->GetBinContent(binx)); } // if Mc, do NLO corrections EventWeight = 1.0; edm::Handle<GenEventInfoProduct> gen_ev_info; iEvent.getByToken(generator_, gen_ev_info); if(gen_ev_info.isValid()) { EventWeight = gen_ev_info->weight(); } //cout<<"EventWeight=="<<EventWeight<<std::endl; } double invMass=0; float LumiFraction_GH=(7721.057+8857.033)/36814.270; float LumiFraction_BToF=1.0-LumiFraction_GH; pat::Muon HighestPtMu1Mu2; pat::Muon LowestPtMu1Mu2; reco::Candidate::LorentzVector p4DiMu; for(edm::View<pat::Muon>::const_iterator iMuon=pMu1Mu2->begin(); iMuon!=pMu1Mu2->end();++iMuon) { p4DiMu+=iMuon->p4(); if (MC_ && iMuon->pt()<120.0 && fabs(iMuon->eta())<2.4){ float binxIDs_BToF=IDsWeight_BToF->GetXaxis()->FindBin(iMuon->pt()); float binyIDs_BToF=IDsWeight_BToF->GetYaxis()->FindBin(fabs(iMuon->eta())); float binxIDs_GH=IDsWeight_GH->GetXaxis()->FindBin(iMuon->pt()); float binyIDs_GH=IDsWeight_GH->GetYaxis()->FindBin(fabs(iMuon->eta())); float binxISOs_BToF=ISOsWeight_BToF->GetXaxis()->FindBin(iMuon->pt()); float binyISOs_BToF=ISOsWeight_BToF->GetYaxis()->FindBin(fabs(iMuon->eta())); float binxISOs_GH=ISOsWeight_GH->GetXaxis()->FindBin(iMuon->pt()); float binyISOs_GH=ISOsWeight_GH->GetYaxis()->FindBin(fabs(iMuon->eta())); for(std::list<TrackProperties>::const_iterator it=TrackCorr.begin(); it!=TrackCorr.end(); it++ ){ if(fabs(iMuon->eta())>= (*it).x-(*it).errx_down && fabs(iMuon->eta())<=(*it).x+(*it).errx_up){ Tracks_weight*=(*it).y; break; } } IDs_weightBToF=IDs_weightBToF*IDsWeight_BToF->GetBinContent(binxIDs_BToF, binyIDs_BToF); IDs_weightBToF=IDs_weightBToF*IDsWeight_GH->GetBinContent(binxIDs_GH, binyIDs_GH); ISOs_weightBToF=ISOs_weightBToF*ISOsWeight_BToF->GetBinContent(binxISOs_BToF, binyISOs_BToF); ISOs_weightGH=ISOs_weightGH*ISOsWeight_GH->GetBinContent(binxISOs_GH, binyISOs_GH); } } for(edm::View<pat::Muon>::const_iterator iMuon=pMu1->begin(); iMuon!=pMu1->end(); ++iMuon){ if(MC_ && iMuon->pt()<500.0 && fabs(iMuon->eta())<2.4){ float binxTrigger_BToF=TriggerWeight_BToF->GetXaxis()->FindBin(iMuon->pt()); float binyTrigger_BToF=TriggerWeight_BToF->GetYaxis()->FindBin(fabs(iMuon->eta())); float binxTrigger_GH=TriggerWeight_GH->GetXaxis()->FindBin(iMuon->pt()); float binyTrigger_GH=TriggerWeight_GH->GetYaxis()->FindBin(fabs(iMuon->eta())); Trigger_weightBToF=Trigger_weightBToF*TriggerWeight_BToF->GetBinContent(binxTrigger_BToF, binyTrigger_BToF); Trigger_weightGH=Trigger_weightGH*TriggerWeight_GH->GetBinContent(binxTrigger_GH, binyTrigger_GH); } } SFsWeight= LumiFraction_BToF*(IDs_weightBToF*ISOs_weightBToF*Trigger_weightBToF)+LumiFraction_GH*(IDs_weightGH*ISOs_weightGH*Trigger_weightGH); f_z1_pt=p4DiMu.pt(); invMass=p4DiMu.mass(); const auto Mu1=pMu1Mu2->at(0); const auto Mu2=pMu1Mu2->at(1); if(Mu1.pt()> Mu2.pt()){ HighestPtMu1Mu2=Mu1; LowestPtMu1Mu2=Mu2; } else { HighestPtMu1Mu2=Mu2; LowestPtMu1Mu2=Mu1; } double Mu2Pt=0; double dR=0.0; double etaOfMu2=0; double etaOfMu1=0; dR=deltaR(LowestPtMu1Mu2, HighestPtMu1Mu2); Mu2Pt=LowestPtMu1Mu2.pt(); etaOfMu2=LowestPtMu1Mu2.eta(); etaOfMu1=HighestPtMu1Mu2.eta(); histos2D_["dRVsMu2Pt"]->Fill(dR, Mu2Pt); histos2D_["Mu1PtMu2Pt"]->Fill(HighestPtMu1Mu2.pt(), Mu2Pt); pat::MET Met=(*pMets)[0]; Double_t MetPt=Met.pt(); Double_t deltaPhiZAndMet=Met.phi()-p4DiMu.phi(); f_u1=-cos(deltaPhiZAndMet)*Met.pt(); f_u2=sin(deltaPhiZAndMet)*Met.pt(); //Get which bin pt falls into for f_u1 and f_u2 if(MC_){ int f_u1Bin; int f_u2Bin; if(f_z1_pt>=0 && f_z1_pt<10.0){ f_u1Bin=0; f_u2Bin=0; } else if(f_z1_pt>=10 && f_z1_pt<20.0){ f_u1Bin=1; f_u2Bin=1; } else if(f_z1_pt>=20.0 && f_z1_pt<30.0){ f_u1Bin=2; f_u2Bin=2; } else if(f_z1_pt>=30.0 && f_z1_pt<50.0){ f_u1Bin=3; f_u2Bin=3; } else{ f_u1Bin=4; f_u2Bin=4; } f_u1=GaussU1Corr[f_u1Bin].meanData+(f_u1-GaussU1Corr[f_u1Bin].meanMC)/GaussU1Corr[f_u1Bin].sigmaMC*GaussU1Corr[f_u1Bin].sigmaData; f_u2=GaussU2Corr[f_u2Bin].meanData+(f_u2-GaussU2Corr[f_u2Bin].meanData)/GaussU2Corr[f_u2Bin].sigmaMC*GaussU2Corr[f_u2Bin].sigmaData; MetPt=f_u1/(f_u1/sqrt(f_u2*f_u2+f_u1*f_u1)); } totalWeights_=SFsWeight*pu_weight*EventWeight; if(filterbadChCandidate&& filterbadPFMuon){ METRecoil_->Fill(); if(MC_){ histos1D_["MetPt"]->Fill(MetPt, totalWeights_); histos1D_["Mu1Mu2Pt"]->Fill(HighestPtMu1Mu2.pt(), totalWeights_); histos1D_["Mu1Mu2Pt"]->Fill(LowestPtMu1Mu2.pt(), totalWeights_); histos1D_["ZPt"]->Fill(f_z1_pt,totalWeights_); histos1D_["Mu1Mu2Eta"]->Fill(HighestPtMu1Mu2.eta(), totalWeights_); histos1D_["Mu1Mu2Eta"]->Fill(LowestPtMu1Mu2.eta(), totalWeights_); histos1D_["Mu1Pt"]->Fill(HighestPtMu1Mu2.pt(),totalWeights_); histos1D_["Mu2Pt"]->Fill(Mu2Pt,totalWeights_); histos1D_["dRMu1Mu2"]->Fill(dR,totalWeights_); histos1D_["dRMu1Mu2Wider"]->Fill(dR, totalWeights_); histos1D_["etaOfMu1"]->Fill(etaOfMu1,totalWeights_); histos1D_["etaOfMu2"]->Fill(etaOfMu2,totalWeights_); histos1D_["invMass"]->Fill(invMass,totalWeights_); } else{ histos1D_["MetPt"]->Fill(MetPt); histos1D_["Mu1Mu2Pt"]->Fill(HighestPtMu1Mu2.pt()); histos1D_["Mu1Mu2Pt"]->Fill(LowestPtMu1Mu2.pt()); histos1D_["ZPt"]->Fill(f_z1_pt); histos1D_["Mu1Mu2Eta"]->Fill(HighestPtMu1Mu2.eta()); histos1D_["Mu1Mu2Eta"]->Fill(LowestPtMu1Mu2.eta()); histos1D_["Mu1Pt"]->Fill(HighestPtMu1Mu2.pt()); histos1D_["Mu2Pt"]->Fill(Mu2Pt); histos1D_["dRMu1Mu2"]->Fill(dR); histos1D_["dRMu1Mu2Wider"]->Fill(dR); histos1D_["etaOfMu1"]->Fill(etaOfMu1); histos1D_["etaOfMu2"]->Fill(etaOfMu2); histos1D_["invMass"]->Fill(invMass); } } } // ------------ method called once each job just before starting event loop ------------ void Mu1Mu2Analyzer::beginJob() { histos1D_["MetPt"]=fileService->make<TH1D>("MetPt","MetPt", 100, 0.0, 300.0); histos1D_["invMass"]=fileService->make<TH1D>("invMass of Mu1 Mu2","invMass of Mu1 Mu2 (H750a09)",invMassBins_.size()-1, &invMassBins_[0]); histos1D_["invMass"]->Sumw2(); histos1D_["Mu1Mu2Pt"]=fileService->make<TH1D>("Mu1Mu2Pt","Mu1Mu2Pt", 100, 0, 300); histos1D_["ZPt"]=fileService->make<TH1D>("ZPt","ZPt",100,0,300); histos1D_["Mu1Mu2Eta"]=fileService->make<TH1D>("Mu1Mu2Eta","Mu1Mu2Eta", 100, -2.5, 2.5); histos2D_["Mu1PtMu2Pt"]=fileService->make<TH2D>("Mu1PtMu2Pt","Mu1Pt vs Mu2Pt", 100, 0, 500, 40, 0, 200); histos1D_["Mu2Pt"]=fileService->make<TH1D>("pt of Mu2", "Pt of RecoMu2",Mu2PtBins_.size()-1,&Mu2PtBins_[0]); histos1D_["Mu2Pt"]->Sumw2(); histos1D_["Mu1Pt"]=fileService->make<TH1D>("pt of Mu1", "pt of Mu1", 100, 0, 200); histos1D_["dRMu1Mu2"]=fileService->make<TH1D>("dRMu1Mu2", "dRMu1Mu2", 50, 0, 2.0); histos1D_["dRMu1Mu2Wider"]=fileService->make<TH1D>("dRMu1Mu2Wider", "dRMu1Mu2Wider", 50, 0, 5.0); histos2D_["dRVsMu2Pt"]=fileService->make<TH2D>("dRVsMu2Pt", "dRVsMu2Pt", 50, 0, 5.0, 50, 0, 50.0); histos1D_["etaOfMu1"]=fileService->make<TH1D>("Eta of Mu1", "Eta of Mu1", 100, -5.0, 5.0); histos1D_["etaOfMu2"]=fileService->make<TH1D>("Eta of Mu2", "Eta of Mu2", 100, -5.0, 5.0); histos1D_["NumVertices"]=fileService->make<TH1D>("NumVertices","NumVertices", 70, 0, 70); } // ------------ method called once each job just after ending the event loop ------------ void Mu1Mu2Analyzer::endJob() { } // ------------ method fills 'descriptions' with the allowed parameters for the module ------------ void Mu1Mu2Analyzer::fillDescriptions(edm::ConfigurationDescriptions& descriptions) { //The following says we do not know what parameters are allowed so do no validation // Please change this to state exactly what you do use, even if it is no parameters edm::ParameterSetDescription desc; desc.setUnknown(); descriptions.addDefault(desc); } //define this as a plug-in DEFINE_FWK_MODULE(Mu1Mu2Analyzer);
bc4aeefc5a51dd3d78dcb943cf0334c9a9abb287
0a60b3b6e8107b9babb1d2681328e11e32a4fc66
/ClassFile/src/filePath.cpp
ee1ade52552ac0349bfdf8ebc907cd5a16547fe3
[]
no_license
hugodro/Plzen-GenComp
9857a2f372c89058218ae7fafb4f06c429563981
b6df4d06b685b2e8e67ac1a08b343b8deaaac275
refs/heads/master
2022-07-16T22:55:10.229262
2020-05-20T01:11:49
2020-05-20T01:11:49
265,406,873
0
0
null
null
null
null
UTF-8
C++
false
false
9,926
cpp
filePath.cpp
/************************************************** * File: filePath.cc. * Desc: Implementation of Path and PathList classes. * Module: AkraLog : JavaKit. * Rev: 3 mai 1996 : REV 0 : Hugo DesRosiers : Creation. **************************************************/ extern "C" { #include <sys/types.h> #include <sys/stat.h> #include <string.h> // MOD-970520 [HD]: Pour NT. #if !defined(_WIN32) && !defined(MSDOS) // MOD-970415 [JST]: #include <strings.h> #endif } #if defined(_WIN32) #define index(a, b) strchr((a),(b)) #define rindex(a,b) strrchr((a), (b)) #endif #include <vm/runtimeDefs.h> #include "zipStream.h" #include "filePath.h" /************************************************** * Implementation: Path. **************************************************/ Path::Path() { type= 0; localPathLength= hostNameLength= fileNameLength= extensionLength= 0; fullPath= NULL; next= NULL; flags= 0; zipArchive= NULL; } Path::Path(char *aURLPath) { type= 0; localPathLength= hostNameLength= fileNameLength= extensionLength= 0; next= NULL; zipArchive= NULL; flags= 0; setURLPath(aURLPath); } Path::Path(char *type, char *host, char *path, char *fileName, char *extension) { type= 0; localPathLength= hostNameLength= fileNameLength= extensionLength= 0; next= NULL; zipArchive= NULL; flags= 0; setMultiComponentPath(type, host, path, fileName, extension); } Path::~Path() { delete[] fullPath; } bool Path::setURLPath(char *aURLPath) { unsigned int typeLength, i; char *tmpMemberPtr, *sndMemberPtr; bool result= true; // Suppose success, and prove error, for now. fullPath= new char[strlen(aURLPath)+1]; strcpy(fullPath, aURLPath); // Find URL type. sndMemberPtr= fullPath; tmpMemberPtr= index(fullPath, ':'); if (tmpMemberPtr != NULL) { sndMemberPtr= tmpMemberPtr+1; typeLength= tmpMemberPtr - fullPath; for (i= 0; i < nbrUrlTypes; i++) { if (strncmp(fullPath, urlTypes[i], typeLength) == 0) { break; } } type= i; // If (i == nbrUrlTypes) --> unknown type. } else type= 0; // Suppose file. // Find host. tmpMemberPtr= index(sndMemberPtr, '/'); if (tmpMemberPtr != NULL) { if (*(tmpMemberPtr+1) == '/') { // Host definition. sndMemberPtr= index(tmpMemberPtr+2, '/'); host= tmpMemberPtr+2; if (sndMemberPtr == NULL) { hostNameLength= strlen(host); } else { hostNameLength= sndMemberPtr - host; sndMemberPtr++; } } else { // No host definition. host= NULL; hostNameLength= 0; } } // Find file path. Base the 'localPath' on the last fileSep found. The 'test' method will correct // the problem that the last path component was not followed by a trailing fileSep. if (sndMemberPtr != NULL) { tmpMemberPtr= rindex(sndMemberPtr, FILE_SEPARATOR); if (tmpMemberPtr != NULL) { localPath= sndMemberPtr; localPathLength= tmpMemberPtr - sndMemberPtr; sndMemberPtr= tmpMemberPtr + 1; } else if (sndMemberPtr[0]= '.') { if (sndMemberPtr[1] == '\0') { localPath= sndMemberPtr; localPathLength= 1; sndMemberPtr= NULL; } else if ((sndMemberPtr[1]= '.' ) && (sndMemberPtr[2]= '\0')) { localPath= sndMemberPtr; localPathLength= 2; sndMemberPtr= NULL; } } else localPath= NULL; } // Find file name. if (sndMemberPtr != NULL) { fileName= sndMemberPtr; tmpMemberPtr= rindex(sndMemberPtr, '.'); if (tmpMemberPtr != NULL) { if (tmpMemberPtr == sndMemberPtr) { // Take care of the '.' as current path or firt char in file name. fileNameLength= strlen(fileName); sndMemberPtr= NULL; // No extension left to cover. } else { fileNameLength= tmpMemberPtr - sndMemberPtr; sndMemberPtr= tmpMemberPtr + 1; } } else { fileNameLength= strlen(fileName); sndMemberPtr= NULL; } } // Find extension. if (sndMemberPtr != NULL) { extension= sndMemberPtr; extensionLength= strlen(extension); } return result; } bool Path::setMultiComponentPath(char *aType, char *aHost, char *aPath, char *aFileName, char *anExtension) { unsigned int fullPathLen= 0; bool result= true; if (aType != NULL) fullPathLen+= strlen(aType) + 1; // Add ':' length. if (aHost != NULL) fullPathLen+= (hostNameLength= strlen(aHost)) + 3; // Add '//' and '/' length. if (aPath != NULL) fullPathLen+= (localPathLength= strlen(aPath)) + 1; // Add the '/' length. if (aFileName != NULL) fullPathLen+= (fileNameLength= strlen(aFileName)); if (anExtension != NULL) fullPathLen+= (extensionLength= strlen(anExtension)) + 1; // Add the '.' length. if (fullPathLen > 0) { fullPath= new char[fullPathLen+1]; fullPath[0]= '\0'; if (aType != NULL) { strcpy(fullPath, aType); strcat(fullPath, ":"); type= findIndexForType(aType); } if (aHost != NULL) { strcat(fullPath, "//"); host= fullPath + strlen(fullPath); strcat(fullPath, aHost); if ((aPath != NULL) || (aFileName != NULL) || (anExtension != NULL)) strcat(fullPath, "/"); } if (aPath != NULL) { char fileSeparator[2]= { FILE_SEPARATOR, '\0' }; localPath= fullPath + strlen(fullPath); strcat(fullPath, aPath); if ((aFileName != NULL) || (anExtension != NULL)) strcat(fullPath, fileSeparator); } if (aFileName != NULL) { fileName= fullPath + strlen(fullPath); strcat(fullPath, aFileName); } if (anExtension != NULL) { strcat(fullPath, "."); extension= fullPath + strlen(fullPath); strcat(fullPath, anExtension); } } else result= false; return result; } // Not responsable to free allocated memory when unknown type in URL ! void Path::getType(char *holder) { char *tmpTypeEnd; if (type < nbrUrlTypes) { strcpy(holder, urlTypes[type]); } else { tmpTypeEnd= index(fullPath, ':'); if (tmpTypeEnd) { memcpy(holder, fullPath, (tmpTypeEnd - fullPath)); holder[(tmpTypeEnd - fullPath)]= '\0'; } else strcpy(holder, urlTypes[type]); // Bail out with a 'file' type. } } unsigned int Path::getTypeIndex(void) { return type; } void Path::getFullPath(char *holder) { if (holder != NULL) strcpy(holder, fullPath); } void Path::getHostName(char *holder) { if (hostNameLength > 0) { if (holder != NULL) { memcpy(holder, host, hostNameLength); holder[hostNameLength]= '\0'; } } } void Path::getFilePath(char *holder) { if (localPathLength > 0) { if (holder != NULL) { memcpy(holder, localPath, localPathLength); holder[localPathLength]= '\0'; } } else { if (holder != NULL) holder[0]= '\0'; } } void Path::getFileName(char *holder) { if (fileNameLength > 0) { if (holder != NULL) { memcpy(holder, fileName, fileNameLength); holder[fileNameLength]= '\0'; } } } void Path::getExtension(char *holder) { if (extensionLength > 0) { if (holder != NULL) { memcpy(holder, extension, extensionLength); holder[extensionLength]= '\0'; } } } void Path::linkTo(Path *nextPath) { next= nextPath; } int Path::findIndexForType(char *aType) { unsigned int typeLength, i; if (aType != NULL) { typeLength= strlen(aType); for (i= 0; i < nbrUrlTypes; i++) { if (strncmp(aType, urlTypes[i], typeLength) == 0) { break; } } } else i= 0; // Suppose file. return i; } Path * Path::giveNext(void) { return next; } void Path::test(void) { struct stat tmpStatInfo; bool result= false; if (extensionLength == 3) { // Test for archive. #if defined(MSDOS) if (stricmp(extension, ZIPSUFFIX) == 0) { #else if (strcmp(extension, ZIPSUFFIX) == 0) { #endif if (stat(localPath, &tmpStatInfo) == 0) { zipArchive= new ZipArchive(); if (!zipArchive->loadArchiveDirectory(localPath)) { // ATTN: Must give an error msg. } flags= exists | archive; } } } if ((flags & exists) == 0) { if (stat(localPath, &tmpStatInfo) == 0) { flags= exists; if (S_ISDIR(tmpStatInfo.st_mode)) { if (fileNameLength != 0) localPathLength+= fileNameLength + 1; if (extensionLength != 0) localPathLength+= extensionLength + 1; fileName= extension= NULL; flags|= directory; } } } } bool Path::isArchive(void) { return ((flags & archive) != 0); } ZipArchive *Path::getArchive(void) { return zipArchive; } /************************************************** * Implementation: PathList. **************************************************/ PathList::PathList() { nbrElements= 0; paths= lastPath= cursor= 0; } PathList::~PathList() { while (paths != NULL) { cursor= paths; paths= paths->giveNext(); delete cursor; } } bool PathList::addPath(char *aURLPath) { Path *newPath; bool result= true; newPath= new Path; if (newPath->setURLPath(aURLPath)) { nbrElements++; if (lastPath != NULL) lastPath->linkTo(newPath); else { paths= newPath; } lastPath= newPath; } else { delete newPath; result= false; } return result; } Path * PathList::getFirst(void) { if (paths != NULL) { /* MOD-970611 [HD]: The cursor is looking at the current element. cursor= paths->giveNext(); */ cursor= paths; } return paths; } Path * PathList::getNext(void) { /* MOD-970611 [HD]: The result is always current cursor. Path *result= cursor; */ Path *result; if (cursor != NULL) { cursor= cursor->giveNext(); /* MOD-970611 [HD]: The result is always current cursor. if (cursor != NULL) result= cursor; */ } result= cursor; return result; } Path * PathList::getIth(unsigned int i) { Path *result; result= paths; while (result != NULL) { if (i == 0) break; i--; result= result->giveNext(); } if (result != NULL) cursor= result->giveNext(); return result; }
bb6478ad58601e3c8ff6f64870aaaa26002b5edc
23b8e5d97e136302a89efc113cf43476c8240b5b
/NewTugasGPU/Lesson29.cpp
4414e7476d2e2f60b7e1174e10e8cece26107181
[]
no_license
jackiejohn/gpunehesrc
e0cdf1aa4dbb51d5881def84412ff1ebbfcb5598
b79643876f120a88e93f28fc28d0a5875b60eea8
refs/heads/master
2021-05-28T21:28:46.280527
2017-03-02T14:26:26
2017-03-02T14:26:26
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
18,219
cpp
Lesson29.cpp
#define _CRT_SECURE_NO_WARNINGS 1 #ifndef Lesson29_CLASS #define Lesson29_CLASS #include "baseapp.h" #include <stdio.h> class Lesson29 { public: DEVMODE DMsaved; // Saves The Previous Screen Settings (NEW) GLfloat xrot; // X Rotation GLfloat yrot; // Y Rotation GLfloat zrot; // Z Rotation GLuint texture[1]; // Storage For 1 Texture typedef struct { int width; // Width Of Image In Pixels int height; // Height Of Image In Pixels int format; // Number Of Bytes Per Pixel unsigned char *data; // Texture Data } TEXTURE_IMAGE; typedef TEXTURE_IMAGE *P_TEXTURE_IMAGE; // A Pointer To The Texture Image Data Type P_TEXTURE_IMAGE t1; // Pointer To The Texture Image Data Type P_TEXTURE_IMAGE t2; // Pointer To The Texture Image Data Type public: // Allocate An Image Structure And Inside Allocate Its Memory Requirements P_TEXTURE_IMAGE AllocateTextureBuffer(GLint w, GLint h, GLint f) { P_TEXTURE_IMAGE ti = NULL; // Pointer To Image Struct unsigned char *c = NULL; // Pointer To Block Memory For Image ti = (P_TEXTURE_IMAGE)malloc(sizeof(TEXTURE_IMAGE)); // One Image Struct Please if (ti != NULL) { ti->width = w; // Set Width ti->height = h; // Set Height ti->format = f; // Set Format c = (unsigned char *)malloc(w * h * f); if (c != NULL) { ti->data = c; } else { MessageBox(NULL, "Could Not Allocate Memory For A Texture Buffer", "BUFFER ERROR", MB_OK | MB_ICONINFORMATION); return NULL; } } else { MessageBox(NULL, "Could Not Allocate An Image Structure", "IMAGE STRUCTURE ERROR", MB_OK | MB_ICONINFORMATION); return NULL; } return ti; // Return Pointer To Image Struct } // Free Up The Image Data void DeallocateTexture(P_TEXTURE_IMAGE t) { if (t) { if (t->data) { free(t->data); } free(t); } } // Read A .RAW File In To The Allocated Image Buffer Using Data In The Image Structure Header. // Flip The Image Top To Bottom. Returns 0 For Failure Of Read, Or Number Of Bytes Read. int ReadTextureData(char *filename, P_TEXTURE_IMAGE buffer) { FILE *f; int i, j, k, done = 0; int stride = buffer->width * buffer->format; // Size Of A Row (Width * Bytes Per Pixel) unsigned char *p = NULL; f = fopen(filename, "rb"); // Open "filename" For Reading Bytes if (f != NULL) // If File Exists { for (i = buffer->height - 1; i >= 0; i--) // Loop Through Height (Bottoms Up - Flip Image) { p = buffer->data + (i * stride); // for (j = 0; j < buffer->width; j++) // Loop Through Width { for (k = 0; k < buffer->format - 1; k++, p++, done++) { *p = fgetc(f); // Read Value From File And Store In Memory } *p = 255; p++; // Store 255 In Alpha Channel And Increase Pointer } } fclose(f); // Close The File } else // Otherwise { MessageBox(NULL, "Unable To Open Image File", "IMAGE ERROR", MB_OK | MB_ICONINFORMATION); } return done; // Returns Number Of Bytes Read In } void BuildTexture(P_TEXTURE_IMAGE tex) { glGenTextures(1, &texture[0]); glBindTexture(GL_TEXTURE_2D, texture[0]); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGB, tex->width, tex->height, GL_RGBA, GL_UNSIGNED_BYTE, tex->data); } void Blit(P_TEXTURE_IMAGE src, P_TEXTURE_IMAGE dst, int src_xstart, int src_ystart, int src_width, int src_height, int dst_xstart, int dst_ystart, int blend, int alpha) { int i, j, k; unsigned char *s, *d; // Source & Destination // Clamp Alpha If Value Is Out Of Range if (alpha > 255) alpha = 255; if (alpha < 0) alpha = 0; // Check For Incorrect Blend Flag Values if (blend < 0) blend = 0; if (blend > 1) blend = 1; d = dst->data + (dst_ystart * dst->width * dst->format); // Start Row - dst (Row * Width In Pixels * Bytes Per Pixel) s = src->data + (src_ystart * src->width * src->format); // Start Row - src (Row * Width In Pixels * Bytes Per Pixel) for (i = 0; i < src_height; i++) // Height Loop { s = s + (src_xstart * src->format); // Move Through Src Data By Bytes Per Pixel d = d + (dst_xstart * dst->format); // Move Through Dst Data By Bytes Per Pixel for (j = 0; j < src_width; j++) // Width Loop { for (k = 0; k < src->format; k++, d++, s++) // "n" Bytes At A Time { if (blend) // If Blending Is On *d = ((*s * alpha) + (*d * (255 - alpha))) >> 8; // Multiply Src Data*alpha Add Dst Data*(255-alpha) else // Keep in 0-255 Range With >> 8 *d = *s; // No Blending Just Do A Straight Copy } } d = d + (dst->width - (src_width + dst_xstart))*dst->format; // Add End Of Row */ s = s + (src->width - (src_width + src_xstart))*src->format; // Add End Of Row */ } } int InitGL(GLvoid) // This Will Be Called Right After The GL Window Is Created { t1 = AllocateTextureBuffer(256, 256, 4); // Get An Image Structure if (ReadTextureData("Data/Monitor.raw", t1) == 0) // Fill The Image Structure With Data { // Nothing Read? MessageBox(NULL, "Could Not Read 'Monitor.raw' Image Data", "TEXTURE ERROR", MB_OK | MB_ICONINFORMATION); return FALSE; } t2 = AllocateTextureBuffer(256, 256, 4); // Second Image Structure if (ReadTextureData("Data/GL.raw", t2) == 0) // Fill The Image Structure With Data { // Nothing Read? MessageBox(NULL, "Could Not Read 'GL.raw' Image Data", "TEXTURE ERROR", MB_OK | MB_ICONINFORMATION); return FALSE; } // Image To Blend In, Original Image, Src Start X & Y, Src Width & Height, Dst Location X & Y, Blend Flag, Alpha Value Blit(t2, t1, 127, 127, 128, 128, 64, 64, 1, 127); // Call The Blitter Routine BuildTexture(t1); // Load The Texture Map Into Texture Memory DeallocateTexture(t1); // Clean Up Image Memory Because Texture Is DeallocateTexture(t2); // In GL Texture Memory Now glEnable(GL_TEXTURE_2D); // Enable Texture Mapping glShadeModel(GL_SMOOTH); // Enables Smooth Color Shading glClearColor(0.0f, 0.0f, 0.0f, 0.0f); // This Will Clear The Background Color To Black glClearDepth(1.0); // Enables Clearing Of The Depth Buffer glEnable(GL_DEPTH_TEST); // Enables Depth Testing glDepthFunc(GL_LESS); // The Type Of Depth Test To Do return TRUE; } GLvoid DrawGLScene(GLvoid) { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear The Screen And The Depth Buffer glLoadIdentity(); // Reset The View glTranslatef(0.0f, 0.0f, -5.0f); glRotatef(xrot, 1.0f, 0.0f, 0.0f); glRotatef(yrot, 0.0f, 1.0f, 0.0f); glRotatef(zrot, 0.0f, 0.0f, 1.0f); glBindTexture(GL_TEXTURE_2D, texture[0]); glBegin(GL_QUADS); // Front Face glNormal3f(0.0f, 0.0f, 1.0f); glTexCoord2f(1.0f, 1.0f); glVertex3f(1.0f, 1.0f, 1.0f); glTexCoord2f(0.0f, 1.0f); glVertex3f(-1.0f, 1.0f, 1.0f); glTexCoord2f(0.0f, 0.0f); glVertex3f(-1.0f, -1.0f, 1.0f); glTexCoord2f(1.0f, 0.0f); glVertex3f(1.0f, -1.0f, 1.0f); // Back Face glNormal3f(0.0f, 0.0f, -1.0f); glTexCoord2f(1.0f, 1.0f); glVertex3f(-1.0f, 1.0f, -1.0f); glTexCoord2f(0.0f, 1.0f); glVertex3f(1.0f, 1.0f, -1.0f); glTexCoord2f(0.0f, 0.0f); glVertex3f(1.0f, -1.0f, -1.0f); glTexCoord2f(1.0f, 0.0f); glVertex3f(-1.0f, -1.0f, -1.0f); // Top Face glNormal3f(0.0f, 1.0f, 0.0f); glTexCoord2f(1.0f, 1.0f); glVertex3f(1.0f, 1.0f, -1.0f); glTexCoord2f(0.0f, 1.0f); glVertex3f(-1.0f, 1.0f, -1.0f); glTexCoord2f(0.0f, 0.0f); glVertex3f(-1.0f, 1.0f, 1.0f); glTexCoord2f(1.0f, 0.0f); glVertex3f(1.0f, 1.0f, 1.0f); // Bottom Face glNormal3f(0.0f, -1.0f, 0.0f); glTexCoord2f(0.0f, 0.0f); glVertex3f(1.0f, -1.0f, 1.0f); glTexCoord2f(1.0f, 0.0f); glVertex3f(-1.0f, -1.0f, 1.0f); glTexCoord2f(1.0f, 1.0f); glVertex3f(-1.0f, -1.0f, -1.0f); glTexCoord2f(0.0f, 1.0f); glVertex3f(1.0f, -1.0f, -1.0f); // Right Face glNormal3f(1.0f, 0.0f, 0.0f); glTexCoord2f(1.0f, 0.0f); glVertex3f(1.0f, -1.0f, -1.0f); glTexCoord2f(1.0f, 1.0f); glVertex3f(1.0f, 1.0f, -1.0f); glTexCoord2f(0.0f, 1.0f); glVertex3f(1.0f, 1.0f, 1.0f); glTexCoord2f(0.0f, 0.0f); glVertex3f(1.0f, -1.0f, 1.0f); // Left Face glNormal3f(-1.0f, 0.0f, 0.0f); glTexCoord2f(0.0f, 0.0f); glVertex3f(-1.0f, -1.0f, -1.0f); glTexCoord2f(1.0f, 0.0f); glVertex3f(-1.0f, -1.0f, 1.0f); glTexCoord2f(1.0f, 1.0f); glVertex3f(-1.0f, 1.0f, 1.0f); glTexCoord2f(0.0f, 1.0f); glVertex3f(-1.0f, 1.0f, -1.0f); glEnd(); xrot += 0.3f; yrot += 0.2f; zrot += 0.4f; } /* This Code Creates Our OpenGL Window. Parameters Are: * * title - Title To Appear At The Top Of The Window * * width - Width Of The GL Window Or Fullscreen Mode * * height - Height Of The GL Window Or Fullscreen Mode * * bits - Number Of Bits To Use For Color (8/16/24/32) * * fullscreenflag - Use Fullscreen Mode (TRUE) Or Windowed Mode (FALSE) */ BOOL CreateGLWindow(char* title, int width, int height, int bits, bool fullscreenflag) { GLuint PixelFormat; // Holds The Results After Searching For A Match WNDCLASS wc; // Windows Class Structure DWORD dwExStyle; // Window Extended Style DWORD dwStyle; // Window Style fullscreen = fullscreenflag; // Set The Global Fullscreen Flag hInstance = GetModuleHandle(NULL); // Grab An Instance For Our Window wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; // Redraw On Size, And Own DC For Window. wc.lpfnWndProc = (WNDPROC)WndProc; // WndProc Handles Messages wc.cbClsExtra = 0; // No Extra Window Data wc.cbWndExtra = 0; // No Extra Window Data wc.hInstance = hInstance; // Set The Instance wc.hIcon = LoadIcon(NULL, IDI_WINLOGO); // Load The Default Icon wc.hCursor = LoadCursor(NULL, IDC_ARROW); // Load The Arrow Pointer wc.hbrBackground = NULL; // No Background Required For GL wc.lpszMenuName = NULL; // We Don't Want A Menu wc.lpszClassName = "OpenGL"; // Set The Class Name EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &DMsaved); // Save The Current Display State (NEW) if (fullscreen) // Attempt Fullscreen Mode? { DEVMODE dmScreenSettings; // Device Mode memset(&dmScreenSettings, 0, sizeof(dmScreenSettings)); // Makes Sure Memory's Cleared dmScreenSettings.dmSize = sizeof(dmScreenSettings); // Size Of The Devmode Structure dmScreenSettings.dmPelsWidth = width; // Selected Screen Width dmScreenSettings.dmPelsHeight = height; // Selected Screen Height dmScreenSettings.dmBitsPerPel = bits; // Selected Bits Per Pixel dmScreenSettings.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT; // Try To Set Selected Mode And Get Results. NOTE: CDS_FULLSCREEN Gets Rid Of Start Bar. if (ChangeDisplaySettings(&dmScreenSettings, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL) { // If The Mode Fails, Offer Two Options. Quit Or Use Windowed Mode. if (MessageBox(NULL, "The Requested Fullscreen Mode Is Not Supported By\nYour Video Card. Use Windowed Mode Instead?", "NeHe GL", MB_YESNO | MB_ICONEXCLAMATION) == IDYES) { fullscreen = FALSE; // Windowed Mode Selected. Fullscreen = FALSE } else { // Pop Up A Message Box Letting User Know The Program Is Closing. MessageBox(NULL, "Program Will Now Close.", "ERROR", MB_OK | MB_ICONSTOP); return FALSE; // Return FALSE } } } if (!RegisterClass(&wc)) // Attempt To Register The Window Class { MessageBox(NULL, "Failed To Register The Window Class.", "ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (fullscreen) // Are We Still In Fullscreen Mode? { dwExStyle = WS_EX_APPWINDOW; // Window Extended Style dwStyle = WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN; // Windows Style ShowCursor(FALSE); // Hide Mouse Pointer } else { dwExStyle = WS_EX_APPWINDOW | WS_EX_WINDOWEDGE; // Window Extended Style dwStyle = WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS | WS_CLIPCHILDREN; // Windows Style } // Create The Window if (!(hWnd = CreateWindowEx(dwExStyle, // Extended Style For The Window "OpenGL", // Class Name title, // Window Title dwStyle, // Window Style 0, 0, // Window Position width, height, // Selected Width And Height NULL, // No Parent Window NULL, // No Menu hInstance, // Instance NULL))) // Dont Pass Anything To WM_CREATE { KillGLWindow(); // Reset The Display MessageBox(NULL, "Window Creation Error.", "ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } static PIXELFORMATDESCRIPTOR pfd = // pfd Tells Windows How We Want Things To Be { sizeof(PIXELFORMATDESCRIPTOR), // Size Of This Pixel Format Descriptor 1, // Version Number PFD_DRAW_TO_WINDOW | // Format Must Support Window PFD_SUPPORT_OPENGL | // Format Must Support OpenGL PFD_DOUBLEBUFFER, // Must Support Double Buffering PFD_TYPE_RGBA, // Request An RGBA Format bits, // Select Our Color Depth 0, 0, 0, 0, 0, 0, // Color Bits Ignored 0, // No Alpha Buffer 0, // Shift Bit Ignored 0, // No Accumulation Buffer 0, 0, 0, 0, // Accumulation Bits Ignored 16, // 16Bit Z-Buffer (Depth Buffer) 1, // Use Stencil Buffer ( * Important * ) 0, // No Auxiliary Buffer PFD_MAIN_PLANE, // Main Drawing Layer 0, // Reserved 0, 0, 0 // Layer Masks Ignored }; if (!(hDC = GetDC(hWnd))) // Did We Get A Device Context? { KillGLWindow(); // Reset The Display MessageBox(NULL, "Can't Create A GL Device Context.", "ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!(PixelFormat = ChoosePixelFormat(hDC, &pfd))) // Did Windows Find A Matching Pixel Format? { KillGLWindow(); // Reset The Display MessageBox(NULL, "Can't Find A Suitable PixelFormat.", "ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!SetPixelFormat(hDC, PixelFormat, &pfd)) // Are We Able To Set The Pixel Format? { KillGLWindow(); // Reset The Display MessageBox(NULL, "Can't Set The PixelFormat.", "ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!(hRC = wglCreateContext(hDC))) // Are We Able To Get A Rendering Context? { KillGLWindow(); // Reset The Display MessageBox(NULL, "Can't Create A GL Rendering Context.", "ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!wglMakeCurrent(hDC, hRC)) // Try To Activate The Rendering Context { KillGLWindow(); // Reset The Display MessageBox(NULL, "Can't Activate The GL Rendering Context.", "ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } ShowWindow(hWnd, SW_SHOW); // Show The Window SetForegroundWindow(hWnd); // Slightly Higher Priority SetFocus(hWnd); // Sets Keyboard Focus To The Window ReSizeGLScene(width, height); // Set Up Our Perspective GL Screen if (!InitGL()) // Initialize Our Newly Created GL Window { KillGLWindow(); // Reset The Display MessageBox(NULL, "Initialization Failed.", "ERROR", MB_OK | MB_ICONEXCLAMATION); return FALSE; // Return FALSE } return TRUE; // Success } int WINAPI WinMain(HINSTANCE hInstance, // Instance HINSTANCE hPrevInstance, // Previous Instance LPSTR lpCmdLine, // Command Line Parameters int nCmdShow) // Window Show State { MSG msg; // Windows Message Structure BOOL done = FALSE; // Bool Variable To Exit Loop // Ask The User Which Screen Mode They Prefer if (MessageBox(NULL, "Would You Like To Run In Fullscreen Mode?", "Start FullScreen?", MB_YESNO | MB_ICONQUESTION) == IDNO) { fullscreen = FALSE; // Windowed Mode } // Create Our OpenGL Window if (!CreateGLWindow("Andreas Löffler, Rob Fletcher & NeHe's Blitter & Raw Image Loading Tutorial", 640, 480, 32, fullscreen)) { return 0; // Quit If Window Was Not Created } while (!done) // Loop That Runs While done=FALSE { if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) // Is There A Message Waiting? { if (msg.message == WM_QUIT) // Have We Received A Quit Message? { done = TRUE; // If So done=TRUE } else // If Not, Deal With Window Messages { TranslateMessage(&msg); // Translate The Message DispatchMessage(&msg); // Dispatch The Message } } if (!active) // Program Inactive? { WaitMessage(); // Wait For A Message / Do Nothing ( NEW ... Thanks Jim Strong ) } if (keys[VK_ESCAPE]) // Was Escape Pressed? { done = TRUE; // ESC Signalled A Quit } if (keys[VK_F1]) // Is F1 Being Pressed? { keys[VK_F1] = FALSE; // If So Make Key FALSE KillGLWindow(); // Kill Our Current Window fullscreen = !fullscreen; // Toggle Fullscreen / Windowed Mode // Recreate Our OpenGL Window if (!CreateGLWindow("Andreas Löffler, Rob Fletcher & NeHe's Blitter & Raw Image Loading Tutorial", 640, 480, 16, fullscreen)) { return 0; // Quit If Window Was Not Created } } DrawGLScene(); // Draw The Scene SwapBuffers(hDC); // Swap Buffers (Double Buffering) } // Shutdown KillGLWindow(); // Kill The Window return (msg.wParam); // Exit The Program } }; #endif
f2fe8b067d9185807a1c482967bdf2a5b3ee107b
a595d9c21bb8d77a55e1461d185b826e90ac5234
/[64010736]_week7_2.cpp
994e31ac022d5577bda7e9fe31a6cfb8f2979aae
[]
no_license
64010736Rungnapa/-64010736-_week7_2
811836f10a4ff596ddd99e1619285ea9180fb51b
4d52c56c2c068248ac9d4f71b00785e116e74718
refs/heads/main
2023-08-01T12:31:45.571036
2021-09-19T14:17:58
2021-09-19T14:17:58
408,145,854
0
0
null
null
null
null
UTF-8
C++
false
false
586
cpp
[64010736]_week7_2.cpp
#include "stdio.h" #include "conio.h" #include "string.h" int main(){ int const n = 10; int i,nam[n],max,min; for(i=0; i<n; i++) { printf("Enter Namber %d :",i+1); scanf("%d",&nam[i]); } max=nam[0]; min=nam[0]; for(i=0; i<n; i++) { if (nam[i]>max) { max=nam[i]; } if(nam[i]<min) { min=nam[i]; } } printf("\n"); printf("Max : %d\n",max); printf("Min: %d\n",min); return 0; }
ee1937170fbff05b4b6c134cf80ed8b1d1e4acee
e8f570d475151fdce7bb8449881e30fa2dc2ec23
/OnlineJudge/CodeForces/471D.cpp
cbd326edb4c6dc6de54eb14c6f4a36646a93e8cc
[]
no_license
MoonChasing/SmarllToLarge
0384983a4781c05885ce7a2fd7914dfbbd675329
d02cbbea753811b8ad22aa172fb472c9733f667a
refs/heads/master
2020-03-07T05:46:29.609419
2018-08-14T08:22:38
2018-08-14T08:22:38
127,305,096
0
0
null
null
null
null
GB18030
C++
false
false
1,560
cpp
471D.cpp
#include <cstdio> #include <cstring> #include <cstdlib> #include <iostream> #include <set> #include <map> #include <queue> #include <vector> #include <utility> #include <algorithm> #define MAXN 200005 #define INF 0x3f3f3f3f #define DEBUG #define DataIn typedef long long LL; using namespace std; inline int read() { int x=0,f=1;char ch=getchar(); while(!isdigit(ch)) {if(ch=='-') f=-1;ch=getchar();} while(isdigit(ch)) {x=x*10+ch-'0';ch=getchar();} return x*f; } int n, w; int a[MAXN], b[MAXN]; int next[MAXN]; void prekmp() { int i=0, j=-1; next[0] = -1; while(i<w) { while(~j && b[i]!=b[j]) j = next[j]; next[++i] = ++j; } } int kmpcnt() { int i=0, j=0; int cnt = 0; prekmp(); while(i<n) { while(~j && a[i]!=b[j]) j = next[j]; i++; j++; if(j >= w) { cnt++; j = next[j]; } } return cnt; } int main() { n = read(), w = read(); for(int i=0; i<n; i++) a[i] = read(); for(int i=n-1; i>0; i--) a[i] -= a[i-1]; for(int i=0; i<n-1; i++) a[i] = a[i+1]; // for(int i=0; i<n-1; i++) // printf("%d ", a[i]) // putchar(10); n--; for(int i=0; i<w; i++) b[i] = read(); for(int i=w-1; i>0; i--) b[i] -= b[i-1]; for(int i=0; i<w-1; i++) b[i] = b[i+1]; w--; if(w==0)//子中长度为1时要特判 printf("%d\n", n+1); else printf("%d\n", kmpcnt()); return 0; }
f536a9c55f6ce1041813ae347b92f65aa260deb4
1c2f0dfcbd708569b036874dc4adfa63255ea3d8
/QConsoleKeyEvent/include/QConsoleKeyPressThread.h
d7afbbdbd20178dfd878f326707a6767c81ab6ee
[]
no_license
efedel/tg-community
5b1d9153e7f4b0ff744609cb497d7b6138f6b04f
0410d0a08b43f059790445e5edb0216178b6f02d
refs/heads/master
2016-09-10T19:15:13.279355
2014-02-25T23:21:18
2014-02-25T23:21:18
294,647
3
0
null
null
null
null
UTF-8
C++
false
false
431
h
QConsoleKeyPressThread.h
/* QConsoleKeyPressThread.h * (c) Copyright 2009 ThoughtGang (www.thoughtgang.org) */ #ifndef QCONSOLE_KEYPRESS_THREAD_H #define QCONSOLE_KEYPRESS_THREAD_H #include <QMutex> #include <QThread> class QConsoleKeyPressThread : public QThread { public: QConsoleKeyPressThread( QObject * parent=0 ); virtual void stop(); protected: virtual void run(); private: bool p_cont; QMutex p_mutex; bool cont(); }; #endif
96543819b6e826037905c8200d988b462477b1de
bd49be5ceb2db0a59e8d2acf99fa053b2402942f
/contracts/hdddeposit/hdddeposit.hpp
77915b0fc15c721b349fd98f4f37d3e7ac557574
[ "MIT" ]
permissive
yottachain/YTBP
400315e121df0141f2ffe1e4dd57608e0e5dc18c
914296432fce18592dcaade2bfbb6de35419de04
refs/heads/master
2023-01-14T06:24:10.902590
2022-12-27T05:47:19
2022-12-27T05:47:19
182,002,928
13
5
null
null
null
null
UTF-8
C++
false
false
7,663
hpp
hdddeposit.hpp
#include <eosiolib/eosio.hpp> #include <eosiolib/asset.hpp> #include <eosiolib/singleton.hpp> #include <eosiolib/symbol.hpp> using eosio::name; using eosio::asset; using eosio::multi_index; using eosio::indexed_by; using eosio::const_mem_fun; class hdddeposit : public eosio::contract { public: using contract::contract; void paydeppool(account_name user, asset quant); void unpaydeppool(account_name user, asset quant); void paydeppool2(account_name user, asset quant); void undeppool2(account_name user, asset quant); void depstore(account_name user, asset quant); void undepstore(account_name user, account_name caller); void paydeposit(account_name user, uint64_t minerid, asset quant); void incdeposit(uint64_t minerid, asset quant); void chgdeposit(name user, uint64_t minerid, bool is_increase, asset quant); void mforfeit(name user, uint64_t minerid, asset quant, std::string memo, uint8_t acc_type, name caller); void delminer(uint64_t minerid); void setrate(int64_t rate); void mchgdepacc(uint64_t minerid, name new_depacc); void updatevote(name user); void channellog(uint8_t type, asset quant, account_name user); inline asset get_deposit( account_name user )const; inline asset get_depositfree( account_name user )const; inline asset get_miner_deposit( uint64_t minerid )const; inline asset get_miner_forfeit( uint64_t minerid )const; inline name get_miner_depacc(uint64_t minerid)const; inline bool is_deposit_enough( asset deposit, uint64_t max_space ) const; inline asset calc_deposit( uint64_t space )const; private: void check_bp_account(account_name bpacc, uint64_t id, bool isCheckId); //记录某个账户的存储押金池信息 struct depositpool { name account_name; uint8_t pool_type = 0; asset deposit_total; //用户押金池总额(扣除了罚金后的总额) asset deposit_free; //用户押金池剩余的可以给矿机缴纳押金的总额 asset deposit_his; //用户总抵押量(包含罚金) uint64_t primary_key()const { return account_name.value; } }; typedef multi_index<N(depositpool), depositpool> depositpool_table; //记录某个账户的存储押金池信息(跨链token存储抵押) struct depositpool2 { name account_name; uint8_t pool_type = 0; asset deposit_total; //用户押金池总额(扣除了罚金后的总额) asset deposit_free; //用户押金池剩余的可以给矿机缴纳押金的总额 asset deposit_his; //用户总抵押量(包含罚金) uint64_t primary_key()const { return account_name.value; } }; typedef multi_index<N(depositpool2), depositpool2> depositpool2_table; struct storedeposit { name account_name; asset deposit_total; asset reserved1; uint64_t reserved2; uint64_t reserved3; uint64_t primary_key()const { return account_name.value; } }; typedef multi_index<N(depstore), storedeposit> storedeposit_table; //记录哪个账户为哪个矿机抵押了多少钱 struct miner2dep { uint64_t minerid; //矿机ID uint8_t miner_type = 0; name account_name; asset deposit; asset dep_total; uint64_t primary_key()const { return minerid; } uint64_t by_accname()const { return account_name.value; } }; typedef multi_index<N(miner2dep), miner2dep, indexed_by<N(accname), const_mem_fun<miner2dep, uint64_t, &miner2dep::by_accname> > > minerdeposit_table; struct deposit_rate { int64_t rate = 100; }; typedef eosio::singleton<N(gdepositrate), deposit_rate> grate_singleton; public: static bool is_old_miner(uint64_t minerid) { minerdeposit_table _mdeposit(N(hdddeposit12), N(hdddeposit12)); auto miner = _mdeposit.find( minerid ); if(miner == _mdeposit.end()) return true; if(miner->miner_type == 0) return true; return false; } }; //these const functions will be called by eosio.token transfer action to check where a user has deposit asset hdddeposit::get_deposit( account_name user ) const { asset deposit{0, CORE_SYMBOL}; depositpool_table _deposit(_self, user); auto acc = _deposit.find( user ); if ( acc != _deposit.end() ) { deposit += acc->deposit_total; } depositpool2_table _deposit2(_self, user); auto acc2 = _deposit2.find( user ); if ( acc2 != _deposit2.end() ) { deposit += acc2->deposit_total; } return deposit; } asset hdddeposit::get_depositfree( account_name user ) const { asset deposit{0, CORE_SYMBOL}; depositpool_table _deposit(_self, user); auto acc = _deposit.find( user ); if ( acc != _deposit.end() ) { deposit += acc->deposit_free; } depositpool2_table _deposit2(_self, user); auto acc2 = _deposit2.find( user ); if ( acc2 != _deposit2.end() ) { deposit += acc2->deposit_free; } return deposit; } asset hdddeposit::get_miner_deposit( uint64_t minerid ) const { minerdeposit_table _mdeposit(_self, _self); auto miner = _mdeposit.find( minerid ); if(miner != _mdeposit.end()) return miner->deposit; asset zero{0, CORE_SYMBOL}; return zero; } asset hdddeposit::get_miner_forfeit( uint64_t minerid ) const { minerdeposit_table _mdeposit(_self, _self); auto miner = _mdeposit.find( minerid ); if(miner != _mdeposit.end()) { if(miner->dep_total.amount > miner->deposit.amount) return (miner->dep_total - miner->deposit); } asset zero{0, CORE_SYMBOL}; return zero; } name hdddeposit::get_miner_depacc( uint64_t minerid ) const { minerdeposit_table _mdeposit(_self, _self); name depacc = {0}; auto miner = _mdeposit.find( minerid ); if(miner != _mdeposit.end()) { depacc = miner->account_name; } return depacc; } bool hdddeposit::is_deposit_enough( asset deposit, uint64_t max_space ) const { grate_singleton grate(_self, _self); deposit_rate rate_state; int64_t rate; if (!grate.exists()) { rate = 100; } else { rate = grate.get().rate; } double drate = ((double)rate)/100; uint32_t one_gb = 64 * 1024; //1GB, 以16k一个分片大小为单位 int64_t am = (int64_t)((((double)max_space)/one_gb) * drate * 10000); if(deposit.amount >= am) return true; return false; } asset hdddeposit::calc_deposit( uint64_t space )const { grate_singleton grate(_self, _self); deposit_rate rate_state; int64_t rate; if (!grate.exists()) { rate = 100; } else { rate = grate.get().rate; } double drate = ((double)rate)/100; uint32_t one_gb = 64 * 1024; //1GB, 以16k一个分片大小为单位 int64_t am = (int64_t)((((double)space)/one_gb) * drate * 10000); asset dep{am,CORE_SYMBOL}; return dep; }
99a4605b1be873eb714a6b4e3f47d23294e40257
0ad10704775226121ce6e180744154eb0f059567
/2 Abgaben Studierende/Maria/A4/Aufgabe4_Maria/PS_ABGABE_4/PS_ABGABE_29.11.ino
8ce8382dc06d99c34e486b3b23cb1b26dcf5d254
[]
no_license
Teaching-Creative-Technology/ws_pc_2019
26bec0543c0685b20682871b798e8a90727cc25f
30c71e2a2fc0e0921552c495d689189b7be6730e
refs/heads/master
2022-03-16T21:49:42.318550
2019-12-09T21:49:36
2019-12-09T21:49:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
902
ino
PS_ABGABE_29.11.ino
#include <Servo.h> #define LICHT1 0 #define BEWEGUNG 1 int STATE=0; long zeit1=0; long zeit2=1000; long interval=1000; Servo MOTOR; int ROT=2; int BLAU=9; void setup() { // put your setup code here, to run once: Serial.begin(9600); MOTOR.attach(11); pinMode(ROT,OUTPUT); pinMode(BLAU,OUTPUT); } void loop() { // put your main code here, to run repeatedly: stateMachine(); } void stateMachine() { // mein Wunsch switch(STATE) { case LICHT1: if(millis() - zeit1 > interval){ zeit1=millis(); MOTOR.write(0); digitalWrite(ROT,HIGH); delay(interval); digitalWrite(ROT,LOW); STATE=BEWEGUNG; } break; case BEWEGUNG: if(millis() - zeit2 > interval){ zeit2=millis(); MOTOR.write(90); digitalWrite(BLAU,HIGH); delay(interval); digitalWrite(BLAU,LOW); STATE=LICHT1; } break; } }
2e724a20c0b0f7d6b3ac94fa5d5be0b8317c6301
33f1b5f6afa115be45cade93479bb7fbc33e7da0
/CodeForces/598A/7777284_AC_15ms_2044kB.cpp
7c91b56d8244628e4a4d0f89999472681ab9f143
[]
no_license
showmic96/Online-Judge-Solution
3960c37a646f4885210c09096c21dabd7f2154d2
94c34e9db2833fb84d0ac885b637dfebac30a5a2
refs/heads/master
2022-11-26T09:56:58.469560
2020-08-02T04:42:33
2020-08-02T04:42:33
230,185,618
1
0
null
null
null
null
UTF-8
C++
false
false
576
cpp
7777284_AC_15ms_2044kB.cpp
// In the name of Allah the most Merciful. #include<bits/stdc++.h> using namespace std; typedef long long ll; ll f(ll a) { ll sum = 1; for(int i=0;i<a;i++){ sum*=2; } //cout << sum << endl; return sum; } ll p(ll a) { ll sum = 1; ll d = 1; while(f(d)<=a){ sum+=f(d); d++; } return sum; } int main(void) { ll t; cin >> t; while(t--){ ll in; cin >> in; ll sum = ((1+in)*in/2); //cout << sum << endl; cout << sum - 2*p(in) << endl; } return 0; }
797746255d4eb3a0821ea108b312520cc583a815
3c1551055b607ded7d75205f038b1c10a6e32486
/GPI/Task-B.cpp
db922547b6fc3d8e62c0701ef973da240eed2cdf
[]
no_license
aberikashvili/algorithms
e272cde5bf416aba4a168fe5558384c56ac42ea2
250c21f528a90114a63f6092cb1e6e5647d72b10
refs/heads/master
2022-04-17T19:26:44.391181
2020-04-18T05:24:08
2020-04-18T05:24:08
256,675,845
0
0
null
null
null
null
UTF-8
C++
false
false
1,685
cpp
Task-B.cpp
//g++ 5.4.0 // ამოცანა B. // დადებით მთელ რიცხვ M-ს ვუწოდოთ დადებითი მთელი N რიცხვის თანაბარი // გამყოფი, თუ N-ის M-ზე გაყოფისას განაყოფშიც და ნაშთშიც ერთი და იგივე რიცხვი // მიიღება. მაგალითად, 10-თვის რიცხვი 4 წარმოადგენს თანაბარ გამყოფს. მოცემული // დადებითი მთელი N-თვის დასადგენია მისი თანაბარი გამყოფების საერთო რაოდენობა. // შეზღუდვები. 1<=N<=1012 // . // შეტანის ფაილის ფორმატი. შეტანის ფაილში არის ერთადერთი რიცხვი N. // გამოტანის ფაილის ფორმატი. ერთადერთ სტრიქონში — ამოცანის პასუხი. // მაგალითები: // შეტანის ფაილი გამოტანის ფაილი // 15 2 // 7236 12 #include <iostream> using namespace std; int main() { long long number; int equalDivisor = 0; cin >> number; for (int current = 1; current <= number; current ++) { equalDivisor += (number / current == number % current); } cout << equalDivisor << endl; }
2bd9d692c920de01bde07f77d2db3f08507c2079
ba66f5b93dbf2b10d9c81994dd2966bfe69ae149
/rimpici.andrew/snake_midterm/GraphicsLib/EventListener.cpp
cd564a48f61be01958829db8ffd6de0683e5584e
[]
no_license
Andy608/GameArchitectureMidterm
dc9221c7e32a140af06b317ce430878e31caa556
d8c333491c8299906d7c424be4d69efbeb5f6a2e
refs/heads/master
2020-04-13T21:06:44.417696
2018-12-28T20:52:55
2018-12-28T20:52:55
163,448,226
0
1
null
null
null
null
UTF-8
C++
false
false
448
cpp
EventListener.cpp
/* * Author: Andrew Rimpici * Date: 3/02/2018 * Class: Game Architecture <EGP310-03> * Assignment: Assignment 5 * Certification of Authenticity: I certify that this assignment is entirely my own work. */ #include "EventListener.h" #include "EventSystem.h" EventListener::EventListener( EventSystem* pEventSystem ) : mpEventSystem( pEventSystem ) { } EventListener::~EventListener() { mpEventSystem->removeListenerFromAllEvents( this ); }
f9b64df6045395fa8a11e0434ad933b5d9fe0247
784883785e9bfdb7eb8031b1311321f2901e13bd
/C++ Codes/pcj18b.cpp
78a52bf0cab0f4b559684026ca30a39b399cc172
[]
no_license
jaimittal1998/Competitive-Programming
3a6cea7ce56ab3fae0dedd00212df84ec7212b9d
d2387e6de4c3e029ec7b87b6b98fb6607400a150
refs/heads/master
2022-11-10T03:44:49.209525
2020-06-22T12:40:36
2020-06-22T12:40:36
118,754,177
2
2
null
2018-10-06T17:27:40
2018-01-24T11:08:38
C++
UTF-8
C++
false
false
287
cpp
pcj18b.cpp
#include<bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int T; cin>>T; while(T--) { int N; cin>>N; long res=0; for(int i=N;i>0;i-=2) { res+=i*i; } cout<<res<<'\n'; } return 0; }
ca07b6d4ca7c4d6c6048719f967b9837991eeffb
b7947a2a8eb187147680c944621e177e6596f524
/M_CG2/CG2UserShoppingInfo.cpp
8c79f452152c196a306ff8c04b1a608c838cc0ec
[]
no_license
mirkiss/GMClient_20091221
0b263316842f66950dd543378e0ba1a6c2008cc3
678f01b24326bd5161a8dbb369affbee6710cbc4
refs/heads/master
2023-03-17T03:22:37.320238
2018-04-25T07:48:45
2018-04-25T07:48:45
null
0
0
null
null
null
null
GB18030
C++
false
false
14,909
cpp
CG2UserShoppingInfo.cpp
// CG2UserShoppingInfo.cpp : 实现文件 // #include "stdafx.h" #include "M_CG2.h" #include "CG2UserShoppingInfo.h" #include ".\CG2UserShoppingInfo.h" // CCG2UserShoppingInfo 对话框 IMPLEMENT_DYNAMIC(CCG2UserShoppingInfo, CDialog) CCG2UserShoppingInfo::CCG2UserShoppingInfo(CWnd* pParent /*=NULL*/) : CDialog(CCG2UserShoppingInfo::IDD, pParent) { } CCG2UserShoppingInfo::~CCG2UserShoppingInfo() { } void CCG2UserShoppingInfo::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); DDX_Control(pDX, IDC_CMBKPPAGE, cmbPage); DDX_Control(pDX, IDC_LISTUSERINFO, listResult); DDX_Control(pDX, IDC_GRPSEARCH, GrpSearch); DDX_Control(pDX, IDC_GRPKPPAGE, GrpPage); DDX_Control(pDX, IDC_BEGINTIME, dtcBeginDate); DDX_Control(pDX, IDC_ENDTIME, dtcEndDate); DDX_Control(pDX, IDC_CK1, ck_Send); DDX_Control(pDX, IDC_CK2, ck_Recv); } BEGIN_MESSAGE_MAP(CCG2UserShoppingInfo, CDialog) ON_CBN_SELCHANGE(IDC_CMBKPPAGE, OnCbnSelchangeCmbkppage) ON_WM_SIZE() ON_MESSAGE(UM_RECEIVE,OnMessageReceive) ON_BN_CLICKED(IDUISEARCH, OnBnClickedUisearch) ON_BN_CLICKED(IDUICANCEL, OnBnClickedUicancel) ON_WM_CLOSE() ON_WM_CTLCOLOR() ON_BN_CLICKED(IDC_CK1, OnBnClickedCk1) ON_BN_CLICKED(IDC_CK2, OnBnClickedCk2) END_MESSAGE_MAP() // 初始化对话框 BOOL CCG2UserShoppingInfo::OnInitDialog() { CDialog::OnInitDialog(); InitUI();// 初始化显示字符 nItem = -1; pageInfo = false;//初始化一些私有变量 CRect rs; GetClientRect(rs);//获取对话框的大小信息 CRect srcRect; CRect newRect; if(GrpSearch.m_hWnd != NULL) { GrpSearch.GetWindowRect(srcRect);//获取GrpSearch的大小信息 grpHeight = srcRect.bottom - srcRect.top;//得到GrpSearch的高度信息 newRect.top = rs.top + 4; newRect.bottom = newRect.top + grpHeight; newRect.left = rs.left +10; newRect.right = rs.right - 10; GrpSearch.MoveWindow(newRect);//设置好GrpSearch的位置 } if(GrpPage.m_hWnd != NULL) { GrpPage.GetWindowRect(srcRect);//获取GrpPage的大小信息 grpPHeight = srcRect.bottom - srcRect.top;//得到GrpPage的高度信息 newRect.top = rs.top + 4 + grpHeight; newRect.bottom = newRect.top + grpPHeight; newRect.left = rs.left +10; newRect.right = rs.right - 10; GrpPage.MoveWindow(newRect);//设置好GrpPage的位置 } if(listResult.m_hWnd != NULL) { newRect.top = rs.top + 4 + grpHeight + grpPHeight; newRect.bottom = rs.bottom-10; newRect.left = rs.left +10; newRect.right = rs.right - 10; listResult.MoveWindow(newRect);//设置好listUser的位置 } dlgStatus = theApp.operCG2.ReadIntValue("MCG2","Create");//初始建立对话框 return TRUE; } // 初始化显示字符 void CCG2UserShoppingInfo::InitUI() { //OperationCG2 theApp.operCG2; SetWindowText(theApp.operCG2.ReadValue("MCG2","KP_UI_KickPlayer")); SetDlgItemText(IDC_GRPSEARCH,theApp.operCG2.ReadValue("MCG2","UIC_UI_GrpSearch")); SetDlgItemText(IDC_LBLUIACCOUNT,theApp.operCG2.ReadValue("MCG2","UIC_UI_lblAccount")); SetDlgItemText(IDUISEARCH,theApp.operCG2.ReadValue("MCG2","Search")); SetDlgItemText(IDUICANCEL,theApp.operCG2.ReadValue("MCG2","Reset")); SetDlgItemText(IDC_LBLUIPAGE,theApp.operCG2.ReadValue("MCG2","UIC_UI_Page")); SetDlgItemText(IDC_LBLBEGINTIME,theApp.operCG2.ReadValue("MCG2","NI_UI_StartTime")); SetDlgItemText(IDC_LBLENDTIME,theApp.operCG2.ReadValue("MCG2","NI_UI_EndTime")); SetDlgItemText(IDC_CK1,theApp.operCG2.ReadValue("MCG2","BU_UI_SENDLOG")); SetDlgItemText(IDC_CK2,theApp.operCG2.ReadValue("MCG2","BU_UI_RECVLOG")); ck_Send.SetCheck(1); } // 自动改变大小 void CCG2UserShoppingInfo::OnSize(UINT nType, int cx, int cy) { CDialog::OnSize(nType, cx, cy); CRect rs; GetClientRect(rs); CRect newRect; if(GrpSearch.m_hWnd != NULL) { newRect.top = rs.top + 4; newRect.bottom = newRect.top + grpHeight; newRect.left = rs.left +10; newRect.right = rs.right - 10; GrpSearch.MoveWindow(newRect);//设置好GrpSearch的位置 } if(GrpPage.m_hWnd != NULL) { newRect.top = rs.top + 4 + grpHeight; newRect.bottom = newRect.top + grpPHeight; newRect.left = rs.left +10; newRect.right = rs.right - 10; GrpPage.MoveWindow(newRect);//设置好GrpPage的位置 } if(listResult.m_hWnd != NULL) { newRect.top = rs.top + 4 + grpHeight + grpPHeight; newRect.bottom = rs.bottom-10; newRect.left = rs.left +10; newRect.right = rs.right - 10; listResult.MoveWindow(newRect);//设置好listResult的位置 } } //设置背景颜色 HBRUSH CCG2UserShoppingInfo::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) { HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor); COLORREF backColor = RGB(255, 255, 255);//背景颜色为白色 pDC->SetTextColor(RGB(0, 0, 0)); pDC->SetBkMode(TRANSPARENT); return CreateSolidBrush(backColor); } // 查询玩家资料信息 void CCG2UserShoppingInfo::OnBnClickedUisearch() { try { //OperationCG2 theApp.operCG2; nItem = -1;//玩家资料列表没有选定项 pageInfo = false;//玩家资料列表不能翻页 cmbPage.ResetContent();//清除玩家资料列表翻页的复选框 while(listResult.DeleteColumn(0)){}//清除玩家资料列表中的所有内容 UpdateData(true); GetDlgItemText(IDC_EDITUIACCOUNT,UserName);//获取玩家帐号 if(UserName == "")//玩家帐号不能同时为空 { MessageBox(theApp.operCG2.ReadValue("MCG2","UIC_Warn_InputUserName"),theApp.operCG2.ReadValue("MCG2","Warn"),MB_ICONWARNING+MB_OK); return; } UserInfo(); } catch(...) { } } // 查询玩家资料信息 void CCG2UserShoppingInfo::UserInfo() { //OperationCG2 theApp.operCG2; try { CIni mIni; int index = theApp.operCG2.ReadIntValue("MCG2","index");//查询第一页的信息 int iPageSize = theApp.operCG2.ReadIntValue("MCG2","pageSize");//每页显示50条记录 nItem = -1;//玩家资料列表没有选定项 pageInfo = false;//玩家资料列表不能翻页 cmbPage.ResetContent();//清除玩家资料列表翻页的复选框 while(listResult.DeleteColumn(0)){}//清除玩家资料列表中的所有内容 CSocketData socketdata; socketdata.InitCreate(1,10);//共有五个参数,服务器IP、玩家帐号、玩家昵称、页数、每页的记录条数 char strInt[10]; CTime BeginDate,EndDate; dtcBeginDate.GetTime(BeginDate); dtcEndDate.GetTime(EndDate); CTime LoginDT=CTime::CTime(BeginDate.GetYear(),BeginDate.GetMonth(),BeginDate.GetDay(),0,0,0); CTime LogoutDT=CTime::CTime(EndDate.GetYear(),EndDate.GetMonth(),EndDate.GetDay(),0,0,0); CString strLoginTime,strLogoutTime; strLoginTime=LoginDT.Format("%Y-%m-%d %H:%M:%S");//设置开始时间 strLogoutTime=LogoutDT.Format("%Y-%m-%d %H:%M:%S");//设置结束时间 socketdata.AddTFLV(CEnumCore::TagName::CG2_UserName,CEnumCore::TagFormat::TLV_STRING,strlen(UserName),(unsigned char *)mIni.wcharToChar(UserName));//玩家帐号 socketdata.AddTFLV(CEnumCore::TagName::CG2_nickname,CEnumCore::TagFormat::TLV_STRING,strlen(UserNick),(unsigned char *)mIni.wcharToChar(UserNick));//玩家昵称 socketdata.AddTFLV(CEnumCore::TagName::CG2_StartTime,CEnumCore::TagFormat::TLV_STRING,strlen(strLoginTime),(unsigned char *)mIni.wcharToChar(strLoginTime));//玩家帐号 socketdata.AddTFLV(CEnumCore::TagName::CG2_EndTime,CEnumCore::TagFormat::TLV_STRING,strlen(strLogoutTime),(unsigned char *)mIni.wcharToChar(strLogoutTime));//玩家昵称 int iTypeID=0; switch(ck_Send.GetCheck()) { case 0: iTypeID=2; break; case 1: iTypeID=1; break; } _itoa(iTypeID,strInt,10); socketdata.AddTFLV(CEnumCore::TagName::CG2_TypeID,CEnumCore::TagFormat::TLV_INTEGER,sizeof(int),(unsigned char *)&strInt);//类型 _itoa(index,strInt,10); socketdata.AddTFLV(CEnumCore::TagName::Index,CEnumCore::TagFormat::TLV_INTEGER,sizeof(int),(unsigned char *)&strInt);//页数 _itoa(iPageSize,strInt,10); socketdata.AddTFLV(CEnumCore::TagName::PageSize,CEnumCore::TagFormat::TLV_INTEGER,sizeof(int),(unsigned char *)&strInt);//每页的记录条数 int midlength = socketdata.EnBody(); theApp.operCG2.SendQuery((unsigned char *)socketdata.getDes(),midlength,CEnumCore::ServiceKey::CG2_UserShoppingInfo_Query);//发送查询玩家资料信息的请求 ::EnableWindow(this->GetParent()->m_hWnd,false);//发送一个请求时,让整个界面都变成Disable的状态,避免客户端同时发出多个请求 dlgStatus = theApp.operCG2.ReadIntValue("MCG2","Send");//当前的状态为发送查询请求 socketdata.Destroy();//销毁CSocketData局部变量 } catch(...) { MessageBox(theApp.operCG2.ReadValue("MCG2","UIC_Error_UserInfo"),theApp.operCG2.ReadValue("MCG2","Error"),0); } } // 翻页进行查询 void CCG2UserShoppingInfo::OnCbnSelchangeCmbkppage() { try { if(pageInfo)//如果可以翻页的话 { CIni mIni; //OperationCG2 theApp.operCG2; char strInt[10]; int index = cmbPage.GetCurSel() + 1;//页数为cmbPage当前的索引值加1,也就是cmbPage中当前显示的值 int iPageSize = theApp.operCG2.ReadIntValue("MCG2","pageSize");//每页显示50条记录 while(listResult.DeleteColumn(0)){}//清除页面内容 CSocketData socketdata; socketdata.InitCreate(1,10);//共有五个参数,服务器IP、玩家帐号、玩家昵称、页数、每页的记录条数 CTime BeginDate,EndDate; dtcBeginDate.GetTime(BeginDate); dtcEndDate.GetTime(EndDate); CTime LoginDT=CTime::CTime(BeginDate.GetYear(),BeginDate.GetMonth(),BeginDate.GetDay(),0,0,0); CTime LogoutDT=CTime::CTime(EndDate.GetYear(),EndDate.GetMonth(),EndDate.GetDay(),0,0,0); CString strLoginTime,strLogoutTime; strLoginTime=LoginDT.Format("%Y-%m-%d %H:%M:%S");//设置开始时间 strLogoutTime=LogoutDT.Format("%Y-%m-%d %H:%M:%S");//设置结束时间 socketdata.AddTFLV(CEnumCore::TagName::CG2_UserName,CEnumCore::TagFormat::TLV_STRING,strlen(UserName),(unsigned char *)mIni.wcharToChar(UserName));//玩家帐号 socketdata.AddTFLV(CEnumCore::TagName::CG2_nickname,CEnumCore::TagFormat::TLV_STRING,strlen(UserNick),(unsigned char *)mIni.wcharToChar(UserNick));//玩家昵称 socketdata.AddTFLV(CEnumCore::TagName::CG2_StartTime,CEnumCore::TagFormat::TLV_STRING,strlen(strLoginTime),(unsigned char *)mIni.wcharToChar(strLoginTime));//玩家帐号 socketdata.AddTFLV(CEnumCore::TagName::CG2_EndTime,CEnumCore::TagFormat::TLV_STRING,strlen(strLogoutTime),(unsigned char *)mIni.wcharToChar(strLogoutTime));//玩家昵称 int iTypeID=0; switch(ck_Send.GetCheck()) { case 0: iTypeID=2; break; case 1: iTypeID=1; break; } _itoa(iTypeID,strInt,10); socketdata.AddTFLV(CEnumCore::TagName::CG2_TypeID,CEnumCore::TagFormat::TLV_INTEGER,sizeof(int),(unsigned char *)&strInt);//类型 _itoa(index,strInt,10); socketdata.AddTFLV(CEnumCore::TagName::Index,CEnumCore::TagFormat::TLV_INTEGER,sizeof(int),(unsigned char *)&strInt); _itoa(iPageSize,strInt,10); socketdata.AddTFLV(CEnumCore::TagName::PageSize,CEnumCore::TagFormat::TLV_INTEGER,sizeof(int),(unsigned char *)&strInt); int midlength = socketdata.EnBody(); theApp.operCG2.SendQuery((unsigned char *)socketdata.getDes(),midlength,CEnumCore::ServiceKey::CG2_UserShoppingInfo_Query);//当前的状态为发送查询请求 ::EnableWindow(this->GetParent()->m_hWnd,false); dlgStatus = theApp.operCG2.ReadIntValue("MCG2","Send");//当前的状态为发送查询请求 socketdata.Destroy(); } } catch(...) { } } // 接收返回信息 LRESULT CCG2UserShoppingInfo::OnMessageReceive(WPARAM wParam, LPARAM lParam) { ::EnableWindow(this->GetParent()->m_hWnd,true);//接收到返回信息之后,让整个界面都变成Enable的状态,此时可以发新的请求 ::SetWindowPos(this->GetParent()->m_hWnd,HWND_TOP,0,0,0,0,SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE); unsigned char* lpReceive=(unsigned char*)wParam;//接收到的数据指针 int bodyLength = (int)lParam;//接收到的数据长度 //OperationCG2 theApp.operCG2; CIni mIni; dlgStatus = theApp.operCG2.ReadIntValue("MCG2","Receive");//当前的状态为接收到了返回信息 CSocketData socketdata; socketdata.Create(bodyLength/8); socketdata.DeBody(lpReceive,bodyLength); int pageCount = 0; switch(theApp.m_TagID) { case CEnumCore::Message_Tag_ID::CG2_UserShoppingInfo_Query_Resp ://查询玩家资料信息的回应 { if(pageInfo)//如果已经能够翻页 { theApp.operCG2.BuildDataTable(&socketdata,&listResult,&pageCount);//构造CListCtrl对象 } else { theApp.operCG2.BuildDataTable(&socketdata,&listResult,&pageCount);//构造CListCtrl对象 if(pageCount<=0)//页数<=0,说明没有数据返回 { nItem = -1;//不能选中某一行 pageInfo = false;//不能翻页 cmbPage.ResetContent();//清空页数复选框 while(listResult.DeleteColumn(0)){}//清空CListCtrl内容 } else { nItem = 0; cmbPage.ResetContent();//清空页数复选框,以便重新构造 for(int i=1;i<=pageCount;i++) { CString str=""; str.Format("%d",i); cmbPage.AddString(str);//在复选框中构造页数信息 } cmbPage.SetCurSel(0);//在复选框中选中第一页 if(pageCount == 1) { pageInfo = false;//只有一页数据,不能翻页 } else { pageInfo = true;//有多页数据,可以翻页 } } } } break; default: break; } socketdata.Destroy(); ::EnableWindow(this->GetParent()->m_hWnd,true);//接收到返回信息之后,让整个界面都变成Enable的状态,此时可以发新的请求 ::SetWindowPos(this->GetParent()->m_hWnd,HWND_TOP,0,0,0,0,SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE); return false; } // 关闭对话框 void CCG2UserShoppingInfo::OnBnClickedUicancel() { //OperationCG2 theApp.operCG2; /*dlgStatus = theApp.operCG2.ReadIntValue("MCG2","Close");//关闭窗体 OnClose();*/ SetDlgItemText(IDC_EDITUIACCOUNT,""); ck_Send.SetCheck(1); ck_Recv.SetCheck(0); SYSTEMTIME sys; GetLocalTime( &sys ); dtcBeginDate.SetTime(sys); dtcEndDate.SetTime(sys); nItem = -1;//玩家资料列表没有选定项 pageInfo = false;//玩家资料列表不能翻页 cmbPage.ResetContent();//清除玩家资料列表翻页的复选框 while(listResult.DeleteColumn(0)){}//清除玩家资料列表中的所有内容 } // 关闭对话框 void CCG2UserShoppingInfo::OnClose() { DestroyWindow(); CDialog::OnClose(); } void CCG2UserShoppingInfo::OnBnClickedCk1() { // TODO: 在此添加控件通知处理程序代码 switch(ck_Send.GetCheck()) { case 0: { ck_Recv.SetCheck(1); } break; case 1: { ck_Recv.SetCheck(0); } break; } } void CCG2UserShoppingInfo::OnBnClickedCk2() { // TODO: 在此添加控件通知处理程序代码 switch(ck_Recv.GetCheck()) { case 0: { ck_Send.SetCheck(1); } break; case 1: { ck_Send.SetCheck(0); } break; } }
7737828fe8385e4b7769f03f0929d35b89b721d3
1884b52d923717d7a406ff5dbf860a431692de81
/C-nowcoder/Huawei 2016 campus recruitment written/A.cpp
60c1c34a96b2654dd9919467038cd912eb9ad9c5
[]
no_license
ShijieQ/C-
da7de3adf71581597b987aee04a28c49fbd9d24e
4b3f363a5e5d836d8c84f0ccc2e121078a8f6fa7
refs/heads/master
2021-06-11T17:38:52.054092
2021-03-24T15:23:30
2021-03-24T15:23:30
159,472,051
0
0
null
null
null
null
UTF-8
C++
false
false
2,286
cpp
A.cpp
#include <stack> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> using namespace std; const int mod = 1e9+7; const int INF = 0x3f3f3f3f; const int MAX = 5e4+10; const int maxn = 2e5+100; int A[maxn]; struct node{ int left; int right; int max; }Tree[maxn<<2]; void maintain(int root){ int LC = root<<1; int RC = (root<<1)+1; Tree[root].max = max(Tree[LC].max,Tree[RC].max); } void Build(int root,int start,int end){ Tree[root].left = start; Tree[root].right = end; if(start == end){ Tree[root].max = A[start]; return; } int mid = (start + end)>>1; Build(root<<1,start,mid); Build((root<<1)+1,mid+1,end); maintain(root); } void update(int root,int pos,int value){ if(Tree[root].left == Tree[root].right && Tree[root].left == pos){ Tree[root].max = value; return ; } int mid = (Tree[root].left + Tree[root].right)>>1; if(pos <= mid) update(root<<1,pos,value); else update((root<<1)+1,pos,value); maintain(root); } int RmaxQ(int root,int start,int end){ if(start == Tree[root].left && Tree[root].right == end) { return Tree[root].max; } int mid = (Tree[root].left + Tree[root].right)>>1; int ret = -INF; if(end <= mid) ret = max(ret,RmaxQ(root<<1,start,end)); else if(start >= mid+1) ret = max(ret,RmaxQ((root<<1)+1,start,end)); else { int a = RmaxQ(root<<1,start,mid); int b = RmaxQ((root<<1)+1,mid+1,end); ret = max(a,b); } return ret; } int main(){ int n, m; while(scanf("%d%d", &n, &m) != EOF){ for(int i = 1; i <= n; i++){ scanf("%d", &A[i]); } getchar(); Build(1, 1, n); for(int i = 1; i <= m; i++){ char ch; int l, r; scanf("%c %d %d", &ch, &l, &r); getchar(); //cout<<"ch = "<<ch<<" l = "<<l<<" r = "<<r<<endl; if(ch == 'Q'){ //cout<<"l = "<<l<<" r = "<<r<<endl; if(l > r) swap(l, r); cout<<RmaxQ(1, l, r)<<endl; } else{ update(1, l, r); } } } return 0; }
cd5b27fd11e18a1c28ba2b450612eac710d33292
dc2e278726cdc50355cf4cf27d975bd39a935b42
/abc103_a.cpp
e8a6a580c7343e9fdd9a7ba05a7581cce2db4d53
[]
no_license
yongwhan/atcoder
dfb2a81e17b7841436e96928c7b583b2023225e3
7612e6f2ce235730a6390fbe1d8e67d795f5fe8b
refs/heads/master
2020-11-28T02:08:46.930143
2019-12-23T04:33:41
2019-12-23T04:33:41
229,676,591
0
0
null
null
null
null
UTF-8
C++
false
false
444
cpp
abc103_a.cpp
#include<bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; using namespace std; typedef long long ll; typedef pair<int,int> ii; typedef tree<ii,null_type,less<ii>,rb_tree_tag,tree_order_statistics_node_update> indexed_set; int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); vector<int> a(3); cin>>a[0]>>a[1]>>a[2]; sort(a.begin(),a.end()); cout<<a.back()-a.front()<<"\n"; return 0; }
fbc9fcb250fb0f8e38f4070e0c97f11453092afd
58158c18390549157070514f34c56e85188327af
/[Luogu P1541] 乌龟棋.cpp
e8074dc3e4f5c52cd8cbaa20d0d73003f1f69042
[]
no_license
TosakaUCW/Solution_Source_Code
8c24e3732570bb813d5d713987a99fea17618e1f
8469cc7a177ed17e013a5fb17482983d8e61911e
refs/heads/master
2021-11-26T21:23:50.423916
2021-11-19T02:34:01
2021-11-19T02:34:01
149,946,420
7
0
null
null
null
null
UTF-8
C++
false
false
1,233
cpp
[Luogu P1541] 乌龟棋.cpp
#include <stdio.h> #include <algorithm> const int N = 350 + 5; const int M = 120 + 5; int n, m, score[N + 5], f[M + 5][M + 5][M + 5][M + 5], num[5]; int main() { scanf("%d%d", &n, &m); for (int i = 1; i <= n; i++) scanf("%d", &score[i]); for (int i = 1; i <= m; i++) { int tmp; scanf("%d", &tmp); num[tmp]++; } f[0][0][0][0] = score[1]; for (int i = 0; i <= num[1]; i++) for (int j = 0; j <= num[2]; j++) for (int k = 0; k <= num[3]; k++) for (int l = 0; l <= num[4]; l++) { int dis = i + j * 2 + k * 3 + l * 4 + 1; if (i) f[i][j][k][l] = std::max(f[i][j][k][l], f[i - 1][j][k][l] + score[dis]); if (j) f[i][j][k][l] = std::max(f[i][j][k][l], f[i][j - 1][k][l] + score[dis]); if (k) f[i][j][k][l] = std::max(f[i][j][k][l], f[i][j][k - 1][l] + score[dis]); if (l) f[i][j][k][l] = std::max(f[i][j][k][l], f[i][j][k][l - 1] + score[dis]); } printf("%d", f[num[1]][num[2]][num[3]][num[4]]); return 0; }
304b6c40108ddff9b503bb8cb2599d5bc8d92ec1
d25f80d2cbef87a9976d811f45cb2a84b3de8761
/Source.cpp
e68ada9f4dc1f222be4e125a4bbd0574ce80f97c
[]
no_license
SergeyShopik/Cpp_Dijkstra_Algorithm
8f98079ed33d7d5afbf2104bc2011ce8e477a3a4
b771b26a1754984ac97fc0caf9e80b84326f0902
refs/heads/master
2023-01-29T13:31:40.956506
2020-12-14T12:49:53
2020-12-14T12:49:53
321,345,865
0
0
null
null
null
null
UTF-8
C++
false
false
1,824
cpp
Source.cpp
#include<iostream> #include<climits> const int size = 6; struct Point { size_t minDist;// min distance from initial point bool check;// is point visited int source; }; int findMinDist(Point* arr, int size, int _index) { int min = INT_MAX; int index = _index; for (int i = 0; i < size; i++) { if (arr[i].minDist < min && arr[i].check == false) { min = arr[i].minDist; index = i; } } return index; } void initPoints(Point* array, int size) { for (size_t i = 0; i < size; i++) { array[i].minDist = INT_MAX; array[i].check = false; array[i].source = -1; } } void deikstra(int graph[][size], int start, int finish) { Point array[size]; initPoints(array, size); array[start].minDist = 0; array[start].check = true; // find where to go from starting point for (size_t i = 0; i < size; i++) { int possiblePoint = findMinDist(array, size, start); array[possiblePoint].check = true; for (size_t j = 0; j < size; j++) { if (array[j].check == false && graph[possiblePoint][j] > 0 && array[possiblePoint].minDist != INT_MAX && array[possiblePoint].minDist + graph[possiblePoint][j] < array[j].minDist) { array[j].minDist = array[possiblePoint].minDist + graph[possiblePoint][j]; array[j].source = possiblePoint; } } } // find route std::cout << "Route: "; int pass = finish; while (pass != start) { std::cout << pass << " "; pass = array[pass].source; } std::cout << "\nPoint: " << finish << "\nDistance: " << array[finish].minDist << "\nSource: " << array[finish].source << std::endl; } int main() { int graph[size][size] = { {0, 10, 20, 0, 0, 0}, {10, 0, 0, 50, 10, 0}, {20, 0, 0, 20, 40, 0}, {0, 50, 20, 0, 30, 15}, {0, 10, 40, 30, 0, 5}, {0, 0, 0, 15, 5, 0} }; deikstra(graph, 1, 3); return 0; }
4cc052404faa9b4b1667b2be4a827e8e714f4a11
188fb8ded33ad7a2f52f69975006bb38917437ef
/Fluid/processor3/0.59/cellDisplacement
811b3d06a3ba495b66ddfe4b2bf95edc4f10d1b0
[]
no_license
abarcaortega/Tuto_2
34a4721f14725c20471ff2dc8d22b52638b8a2b3
4a84c22efbb9cd2eaeda92883343b6910e0941e2
refs/heads/master
2020-08-05T16:11:57.674940
2019-10-04T09:56:09
2019-10-04T09:56:09
212,573,883
0
0
null
null
null
null
UTF-8
C++
false
false
14,014
cellDisplacement
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: dev | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "0.59"; object cellDisplacement; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 0 0 0 0 0]; internalField nonuniform List<vector> 465 ( (0.00912252 0 0.000147157) (0.0261342 0 0.000427321) (0.0409434 0 0.000678043) (0.0538074 0 0.000902968) (0.0649733 0 0.00110518) (0.0746513 0 0.00128678) (0.0830193 0 0.00144912) (0.0902291 0 0.00159239) (0.0964115 0 0.00171602) (0.101679 0 0.00181884) (0.10613 0 0.00189913) (0.109846 0 0.00195473) (0.112901 0 0.00198326) (0.115355 0 0.00198242) (0.117261 0 0.00195039) (0.118663 0 0.00188639) (0.119598 0 0.00179022) (0.120094 0 0.00166316) (0.120177 0 0.0015084) (0.119864 0 0.00133127) (0.119164 0 0.00113933) (0.00912053 0 0.000441284) (0.026129 0 0.00128146) (0.0409366 0 0.00203348) (0.0537999 0 0.0027083) (0.0649663 0 0.00331517) (0.0746463 0 0.00386046) (0.0830178 0 0.0043484) (0.0902324 0 0.00477953) (0.096421 0 0.00515225) (0.101697 0 0.00546313) (0.106158 0 0.00570707) (0.109887 0 0.00587766) (0.112958 0 0.00596775) (0.115431 0 0.00597027) (0.117362 0 0.00587956) (0.118793 0 0.0056934) (0.119764 0 0.00541068) (0.120305 0 0.00503467) (0.120444 0 0.00457441) (0.1202 0 0.00404524) (0.119593 0 0.0034692) (0.00911704 0 0.000734962) (0.0261198 0 0.00213442) (0.040924 0 0.00338745) (0.0537862 0 0.00451246) (0.0649534 0 0.00552496) (0.0746373 0 0.00643556) (0.0830156 0 0.00725209) (0.0902396 0 0.00797538) (0.0964406 0 0.00860302) (0.101732 0 0.00912958) (0.106213 0 0.00954687) (0.109968 0 0.00984439) (0.11307 0 0.0100102) (0.115582 0 0.0100321) (0.11756 0 0.0098995) (0.119049 0 0.00960991) (0.12009 0 0.00915927) (0.120718 0 0.0085513) (0.120964 0 0.00779921) (0.120855 0 0.00692651) (0.12042 0 0.00596644) (0.00911197 0 0.00102798) (0.0261062 0 0.00298567) (0.0409056 0 0.00473946) (0.0537659 0 0.00631541) (0.064934 0 0.0077354) (0.0746236 0 0.00901412) (0.0830123 0 0.0101646) (0.0902499 0 0.0111876) (0.0964688 0 0.0120801) (0.101784 0 0.0128355) (0.106294 0 0.0134428) (0.110086 0 0.0138878) (0.113234 0 0.0141539) (0.115802 0 0.0142234) (0.117848 0 0.0140776) (0.119422 0 0.0137182) (0.120566 0 0.0131332) (0.121318 0 0.0123246) (0.121716 0 0.011307) (0.121796 0 0.0101099) (0.121599 0 0.00877439) (0.00910553 0 0.0013201) (0.0260889 0 0.00383464) (0.040882 0 0.00608887) (0.0537397 0 0.00811686) (0.064908 0 0.00994719) (0.0746051 0 0.0115975) (0.0830078 0 0.0130898) (0.0902628 0 0.0144228) (0.0965048 0 0.0155941) (0.10185 0 0.0165964) (0.106398 0 0.0174169) (0.110238 0 0.0180382) (0.113444 0 0.0184394) (0.116083 0 0.0185987) (0.118219 0 0.0184946) (0.119901 0 0.0181082) (0.121173 0 0.0174281) (0.122079 0 0.0164527) (0.122661 0 0.0151946) (0.122964 0 0.0136839) (0.123036 0 0.0119706) (0.0090981 0 0.00161108) (0.0260685 0 0.00468066) (0.040854 0 0.00743485) (0.0537086 0 0.00991625) (0.0648754 0 0.012161) (0.0745812 0 0.0141982) (0.0830022 0 0.0160426) (0.0902779 0 0.0176973) (0.0965473 0 0.0191623) (0.101928 0 0.0204304) (0.106522 0 0.0214875) (0.110418 0 0.0223137) (0.113694 0 0.0228837) (0.116419 0 0.0231712) (0.118657 0 0.0231521) (0.12046 0 0.0227852) (0.121877 0 0.0220568) (0.122954 0 0.0209585) (0.123736 0 0.0194957) (0.12427 0 0.0176936) (0.124606 0 0.015602) (0.00908952 0 0.00190162) (0.0260456 0 0.00552566) (0.0408223 0 0.00877985) (0.0536745 0 0.0117159) (0.0648484 0 0.0143793) (0.0745623 0 0.0168074) (0.082994 0 0.0190087) (0.0902911 0 0.020994) (0.0965907 0 0.022765) (0.102012 0 0.0243152) (0.106656 0 0.0256306) (0.110615 0 0.0266894) (0.113966 0 0.0274608) (0.116784 0 0.0279141) (0.119132 0 0.0280154) (0.121065 0 0.0277249) (0.122635 0 0.0270135) (0.123891 0 0.0258599) (0.124878 0 0.0242581) (0.12564 0 0.022221) (0.126227 0 0.0197903) (0.00907905 0 0.0021905) (0.0260183 0 0.0063658) (0.0407845 0 0.0101174) (0.0536331 0 0.0135062) (0.0648117 0 0.0165861) (0.0745345 0 0.0193969) (0.0829795 0 0.0219581) (0.0902987 0 0.0242807) (0.0966297 0 0.0263685) (0.102093 0 0.0282174) (0.106791 0 0.0298146) (0.110815 0 0.0311386) (0.114246 0 0.0321517) (0.117159 0 0.0328213) (0.119621 0 0.033108) (0.121688 0 0.0329673) (0.123416 0 0.0323564) (0.124851 0 0.0312378) (0.126041 0 0.0295911) (0.127025 0 0.0274077) (0.127844 0 0.0247092) (0.00906738 0 0.00247537) (0.0259872 0 0.00719403) (0.0407405 0 0.0114362) (0.0535836 0 0.0152725) (0.0647646 0 0.018765) (0.0744964 0 0.0219594) (0.0829555 0 0.0248835) (0.0902964 0 0.0275494) (0.0966589 0 0.0299646) (0.102165 0 0.0321281) (0.106918 0 0.0340304) (0.111009 0 0.0356557) (0.114518 0 0.0369528) (0.117527 0 0.037894) (0.120102 0 0.0384371) (0.122303 0 0.0385318) (0.124185 0 0.0381235) (0.125796 0 0.0371525) (0.127182 0 0.035589) (0.128379 0 0.0333902) (0.129415 0 0.0305441) (0.00905407 0 0.00275544) (0.0259512 0 0.00800814) (0.040689 0 0.0127328) (0.0535241 0 0.01701) (0.0647053 0 0.0209103) (0.0744459 0 0.024487) (0.0829192 0 0.027777) (0.0902799 0 0.0307913) (0.0966725 0 0.0335427) (0.10222 0 0.0360353) (0.10703 0 0.0382627) (0.111184 0 0.040207) (0.114768 0 0.0418252) (0.117868 0 0.0430924) (0.120552 0 0.0439643) (0.12288 0 0.044388) (0.124907 0 0.0443032) (0.126687 0 0.0436412) (0.128261 0 0.042329) (0.129659 0 0.0402992) (0.130904 0 0.0374955) (0.00903826 0 0.00303023) (0.0259094 0 0.00880714) (0.0406284 0 0.0140058) (0.0534525 0 0.0187168) (0.0646311 0 0.0230198) (0.074381 0 0.026976) (0.0828685 0 0.0306211) (0.0902454 0 0.0339848) (0.096665 0 0.0370771) (0.102251 0 0.0399084) (0.10711 0 0.0424737) (0.111324 0 0.0447461) (0.114979 0 0.0467185) (0.118164 0 0.0483589) (0.120946 0 0.0496237) (0.123389 0 0.0504612) (0.125549 0 0.0508101) (0.127479 0 0.0506007) (0.12922 0 0.0497233) (0.130804 0 0.0480864) (0.132248 0 0.0455878) (0.00902122 0 0.00329804) (0.0258633 0 0.00958505) (0.04056 0 0.0152446) (0.0533695 0 0.020378) (0.0645411 0 0.0250736) (0.0742884 0 0.0293979) (0.0827895 0 0.0333925) (0.0901882 0 0.0370953) (0.0966305 0 0.0405259) (0.102249 0 0.0436994) (0.107148 0 0.0466123) (0.111416 0 0.0492458) (0.115138 0 0.0516053) (0.118398 0 0.0536602) (0.121265 0 0.0553739) (0.123804 0 0.0567008) (0.126074 0 0.0575833) (0.128127 0 0.0579472) (0.130008 0 0.0576914) (0.131752 0 0.0566998) (0.133382 0 0.0548296) (0.00900371 0 0.00355674) (0.0258127 0 0.0103346) (0.0404831 0 0.0164372) (0.0532741 0 0.0219765) (0.0644347 0 0.0270502) (0.074177 0 0.0317318) (0.0826797 0 0.0360727) (0.0900944 0 0.0401093) (0.0965622 0 0.0438799) (0.10221 0 0.0473988) (0.107145 0 0.0506708) (0.111459 0 0.0536939) (0.115237 0 0.0564677) (0.118558 0 0.0589748) (0.121494 0 0.0611907) (0.12411 0 0.0630819) (0.126464 0 0.0646039) (0.128611 0 0.0656962) (0.130599 0 0.0662752) (0.132469 0 0.0662307) (0.134257 0 0.0654122) (0.00898383 0 0.00380594) (0.0257545 0 0.0110557) (0.040394 0 0.0175842) (0.0531623 0 0.023514) (0.064308 0 0.0289524) (0.0740425 0 0.0339809) (0.0825451 0 0.0386599) (0.0899701 0 0.0430351) (0.0964565 0 0.047145) (0.102128 0 0.0510122) (0.107094 0 0.0546506) (0.111446 0 0.058073) (0.115267 0 0.0612815) (0.118637 0 0.064272) (0.121625 0 0.0670355) (0.124295 0 0.0695575) (0.126707 0 0.0718173) (0.128914 0 0.0737848) (0.130967 0 0.0754168) (0.132915 0 0.0766519) (0.134805 0 0.0773999) (0.00896058 0 0.00404556) (0.0256867 0 0.0117488) (0.0402904 0 0.0186867) (0.0530316 0 0.0249928) (0.0641585 0 0.0307837) (0.073882 0 0.0361495) (0.0823814 0 0.0411588) (0.089812 0 0.045865) (0.096311 0 0.0503108) (0.102 0 0.054526) (0.10699 0 0.0585323) (0.111371 0 0.0623609) (0.115225 0 0.0660176) (0.118628 0 0.069513) (0.12165 0 0.0728569) (0.124353 0 0.0760592) (0.126794 0 0.0791315) (0.129026 0 0.0820887) (0.131096 0 0.0849516) (0.133054 0 0.0877514) (0.134951 0 0.0905363) (0.0401694 0 0.019762) (0.0528784 0 0.0264359) (0.063982 0 0.0325724) (0.0736905 0 0.0382703) (0.082183 0 0.043606) (0.0896145 0 0.0486406) (0.0961207 0 0.0534226) (0.101819 0 0.057989) (0.106825 0 0.0623805) (0.11123 0 0.0666243) (0.115106 0 0.0707373) (0.11853 0 0.0747476) (0.12157 0 0.0786843) (0.124284 0 0.0825815) (0.126728 0 0.0864829) (0.128949 0 0.090447) (0.130989 0 0.0945553) (0.13289 0 0.0989244) (0.134689 0 0.103723) (0.0526975 0 0.0278547) (0.063773 0 0.0343316) (0.0734621 0 0.0403567) (0.0819436 0 0.0460146) (0.0893715 0 0.0513731) (0.0958805 0 0.0564879) (0.101589 0 0.0614063) (0.106603 0 0.0661763) (0.111015 0 0.07082) (0.114901 0 0.0753749) (0.118332 0 0.0798801) (0.121373 0 0.0843792) (0.124079 0 0.0889237) (0.1265 0 0.0935787) (0.128676 0 0.0984278) (0.130644 0 0.103581) (0.132429 0 0.109184) (0.134049 0 0.115423) (0.0635283 0 0.0360273) (0.0731932 0 0.0423668) (0.0816586 0 0.048333) (0.0890778 0 0.0540003) (0.0955838 0 0.0594305) (0.101293 0 0.0646768) (0.10631 0 0.0697877) (0.110722 0 0.0748006) (0.114607 0 0.0797587) (0.118032 0 0.0847085) (0.121059 0 0.089702) (0.123739 0 0.0947999) (0.126116 0 0.100075) (0.128225 0 0.105618) (0.130092 0 0.111535) (0.131733 0 0.117957) (0.133149 0 0.125029) (0.0728814 0 0.0442678) (0.0813254 0 0.0505233) (0.0887298 0 0.0564789) (0.0952262 0 0.0622014) (0.10093 0 0.0677485) (0.10594 0 0.0731715) (0.110345 0 0.0785161) (0.114219 0 0.0838294) (0.117627 0 0.0891616) (0.120628 0 0.0945676) (0.123268 0 0.100109) (0.125588 0 0.105856) (0.127616 0 0.111887) (0.129373 0 0.118292) (0.130867 0 0.12516) (0.132092 0 0.132576) (0.0809382 0 0.0525637) (0.0883219 0 0.0587835) (0.0948019 0 0.0647711) (0.100492 0 0.0705881) (0.10549 0 0.0762882) (0.109879 0 0.0819206) (0.113734 0 0.0875345) (0.117117 0 0.0931798) (0.120082 0 0.0989093) (0.122675 0 0.104779) (0.12493 0 0.110849) (0.126874 0 0.117179) (0.128523 0 0.123829) (0.129884 0 0.130849) (0.130952 0 0.138265) (0.0878491 0 0.0608886) (0.0943061 0 0.0671109) (0.0999766 0 0.0731635) (0.104954 0 0.0791007) (0.109322 0 0.0849731) (0.113151 0 0.0908288) (0.116502 0 0.0967149) (0.119427 0 0.102678) (0.121968 0 0.108766) (0.124158 0 0.115022) (0.126022 0 0.121487) (0.127576 0 0.128192) (0.128827 0 0.135149) (0.129775 0 0.142345) (0.0993801 0 0.0754438) (0.104333 0 0.0815757) (0.108673 0 0.0876375) (0.112472 0 0.0936752) (0.115787 0 0.0997306) (0.118669 0 0.105843) (0.121158 0 0.112047) (0.123287 0 0.118373) (0.12508 0 0.124841) (0.126554 0 0.131458) (0.127721 0 0.13821) (0.128585 0 0.145058) (0.103624 0 0.0836833) (0.107933 0 0.0898837) (0.111698 0 0.0960451) (0.114975 0 0.102202) (0.117814 0 0.108386) (0.120255 0 0.114621) (0.122329 0 0.120921) (0.124062 0 0.127292) (0.125475 0 0.133722) (0.126581 0 0.140182) (0.127392 0 0.146618) (0.110833 0 0.0979171) (0.114072 0 0.104114) (0.116871 0 0.110303) (0.119267 0 0.116495) (0.121295 0 0.122696) (0.122981 0 0.128898) (0.124349 0 0.135078) (0.125415 0 0.141197) (0.126197 0 0.147198) (0.115845 0 0.111596) (0.118204 0 0.11769) (0.120194 0 0.123736) (0.121845 0 0.12972) (0.123181 0 0.135612) (0.124225 0 0.14137) (0.124997 0 0.146939) (0.117071 0 0.118226) (0.119031 0 0.124078) (0.120658 0 0.129813) (0.121976 0 0.1354) (0.123011 0 0.140796) (0.123786 0 0.14595) (0.119425 0 0.129228) (0.120735 0 0.134504) (0.121771 0 0.139547) (0.122559 0 0.144313) (0.120503 0 0.137681) (0.121309 0 0.142086) ) ; boundaryField { inlet { type cellMotion; value uniform (0 0 0); } outlet { type cellMotion; value nonuniform 0(); } flap { type cellMotion; value nonuniform 0(); } upperWall { type slip; } lowerWall { type slip; } frontAndBack { type empty; } procBoundary3to0 { type processor; value nonuniform List<vector> 34 ( (0.0089337 0 0.00427955) (0.0256085 0 0.012425) (0.0256085 0 0.012425) (0.0400281 0 0.0208199) (0.0400281 0 0.0208199) (0.0524885 0 0.0292241) (0.0524885 0 0.0292241) (0.0632488 0 0.0376336) (0.0632488 0 0.0376336) (0.0725243 0 0.0460426) (0.0725243 0 0.0460426) (0.080495 0 0.0544335) (0.080495 0 0.0544335) (0.0873108 0 0.0627715) (0.0937376 0 0.0691945) (0.0937376 0 0.0691945) (0.0987039 0 0.0774029) (0.0987039 0 0.0774029) (0.102832 0 0.0854004) (0.107105 0 0.0916888) (0.107105 0 0.0916888) (0.109885 0 0.0992792) (0.113085 0 0.105461) (0.113085 0 0.105461) (0.114746 0 0.112277) (0.114746 0 0.112277) (0.115879 0 0.118128) (0.117816 0 0.123759) (0.117816 0 0.123759) (0.118153 0 0.128008) (0.11946 0 0.132975) (0.11946 0 0.132975) (0.11921 0 0.135238) (0.120036 0 0.139311) ) ; } procBoundary3to1 { type processor; value nonuniform List<vector> 9((0.13171 0 0.146064) (0.130412 0 0.149726) (0.129149 0 0.15193) (0.127918 0 0.152952) (0.126712 0 0.153006) (0.125519 0 0.152251) (0.124326 0 0.150804) (0.123124 0 0.148751) (0.121904 0 0.14615)); } procBoundary3to4 { type processor; value nonuniform List<vector> 19 ( (0.118081 0 0.000942305) (0.118635 0 0.0028762) (0.119693 0 0.00497275) (0.121173 0 0.00736124) (0.122932 0 0.0101179) (0.124805 0 0.0132989) (0.126692 0 0.0170453) (0.128539 0 0.021561) (0.130315 0 0.0270825) (0.132003 0 0.0338945) (0.133552 0 0.0421349) (0.1349 0 0.051915) (0.135985 0 0.0636158) (0.136692 0 0.0775274) (0.13685 0 0.0933847) (0.136421 0 0.109196) (0.135506 0 0.122534) (0.134324 0 0.132898) (0.133028 0 0.140595) ) ; } } // ************************************************************************* //
fb37b1e187833e47c60ab0af3a35edeb59b2ac8d
d7688c81a31d7b2ccf0e59433a35c3a3c6f544b6
/vk-point-cloud-renderer/src/rendering/Renderer.h
4e33416b0640fed629af875c5b4fea28eaeb6736
[]
no_license
dale-findlay/vk-point-cloud-renderer
1f42fea63f7817725ac1d69ee81f0ec9fcd970cf
5329e0649fbdf8f763444731fdcc94bb84d7cf4c
refs/heads/main
2023-01-03T02:48:06.995346
2020-10-23T08:07:09
2020-10-23T08:07:09
300,790,457
0
0
null
null
null
null
UTF-8
C++
false
false
4,406
h
Renderer.h
#pragma once #include "core/SubSystem.h" #define GLFW_INCLUDE_VULKAN #include <GLFW/glfw3.h> #include <string> #include <vector> #include <optional> namespace vkpc { typedef struct QueueFamilyIndices { std::optional<uint32_t> graphicsFamily; std::optional<uint32_t> presentFamily; bool isComplete() { return graphicsFamily.has_value() && presentFamily.has_value(); } } QueueFamilyIndices; typedef struct SwapChainSupportDetails { VkSurfaceCapabilitiesKHR capabilities; std::vector<VkSurfaceFormatKHR> formats; std::vector<VkPresentModeKHR> presentModes; } SwapChainSupportDetails; class Renderer : public SubSystem { public: ~Renderer(); // Inherited via SubSystem virtual bool Init() override; virtual void Update() override; virtual void Shutdown() override; private: bool ValidateLayerSupport() const; bool ValidateExtensionSupport() const; bool CreateVkDebugMessenger(); void GetVkDMCreateInfo(VkDebugUtilsMessengerCreateInfoEXT& createInfo); void DestroyVkDebugMessenger(); bool CreateVkInstance(); void DestroyVkInstance(); //Physical Device bool SelectVkPhysicalDevice(); bool CheckDeviceSuitablity(VkPhysicalDevice device); bool CheckDeviceExtensionSupport(VkPhysicalDevice device); QueueFamilyIndices FindQueueFamilies(VkPhysicalDevice device); //Logical Device bool CreateVkLogicalDevice(); void DestroyVkLogicalDevice(); void SelectQueues(QueueFamilyIndices indices); //Window Surface bool CreateWindowSurface(); void DestroyWindowSurface(); //Swapchain bool CreateVkSwapChain(); void DestroyVkSwapChain(); bool GetSwapChainImages(); SwapChainSupportDetails QuerySwapChainSupport(VkPhysicalDevice device); VkSurfaceFormatKHR ChooseSwapSurfaceFormat(const std::vector<VkSurfaceFormatKHR>& availableFormats); VkPresentModeKHR ChooseSwapPresentMode(const std::vector<VkPresentModeKHR>& availablePresentModes); VkExtent2D ChooseSwapExtent(const VkSurfaceCapabilitiesKHR& capabilities); uint32_t GetImageCount(const SwapChainSupportDetails& swapChainSupport); //Image Views bool CreateSwapChainImageViews(); void DestroySwapChainImageViews(); //Render Passes bool CreateRenderPass(); void DestroyRenderPass(); //Graphics Pipeline bool CreateGraphicsPipeline(); void DestroyGraphicsPipeline(); bool CreateGraphicsPipelineLayout(); void DestroyGraphicsPipelineLayout(); //Framebuffers bool CreateFramebuffers(); void DestroyFramebuffers(); //Command infrastructure bool CreateCommandPool(); void DestroyCommandPool(); bool CreateCommandBuffers(); void DestroyCommandBuffers(); //Command Buffer Population. bool BuildCommandBuffer(); //Sync Primitives bool CreateSyncPrimitives(); void DestroySyncPrimitives(); //Shader Modules VkShaderModule CreateShaderModule(std::vector<char> source); void DestroyShaderModule(VkShaderModule module); //Helper Functions static std::vector<char> ReadShaderFile(const std::string& filename); void DrawFrame(); private: bool enableValidationLayers = true; std::vector<const char*> m_ValidationLayers; std::vector<const char*> m_Extensions; std::vector<const char*> m_DeviceExtensions; bool framebufferResized = false; uint32_t maxInFlightFrames = 2; size_t currentFrame = 0; VkInstance instance; VkDebugUtilsMessengerEXT debugMessenger; VkPhysicalDevice physicalDevice = VK_NULL_HANDLE; VkDevice logicalDevice; //Queues VkQueue graphicsQueue; VkQueue presentQueue; //Window surface VkSurfaceKHR surface; //Swapchain VkSwapchainKHR swapChain; vkpc::SwapChainSupportDetails swapChainSupport; std::vector<VkImage> swapChainImages; VkSurfaceFormatKHR surfaceFormat; VkPresentModeKHR presentMode; VkExtent2D extent; VkFormat swapChainImageFormat; VkExtent2D swapChainExtent; std::vector<VkImageView> swapChainImageViews; std::vector<VkFramebuffer> swapChainFramebuffers; //Render Pass VkRenderPass renderPass; //Graphics pipeline passes. VkPipelineLayout pipelineLayout; VkPipeline graphicsPipeline; //Cmd pool. VkCommandPool commandPool; std::vector<VkCommandBuffer> commandBuffers; //Synchronization Primitives. std::vector<VkSemaphore> imageAvailableSemaphores; std::vector<VkSemaphore> renderFinishedSemaphores; std::vector<VkFence> inFlightFences; std::vector<VkFence> imagesInFlight; }; }
9897644e81a894c4255d7ed7ffcf6d43bb32c5c1
62fdf98a7b81eaba5f5c5cdfc3c4ad19035c3584
/LibNetWork/include/CLCommunication.h
3b2f4a71ebb2f549f4f16f64b85b9d441921a996
[]
no_license
uestcll/logServer
df692bfc934bca78f6d922d36c3446976512656a
1f3f13744bb137f4773191e4d099da4375909a66
refs/heads/master
2021-01-10T19:57:22.354834
2013-12-25T00:44:27
2013-12-25T00:44:27
12,896,565
0
1
null
null
null
null
UTF-8
C++
false
false
602
h
CLCommunication.h
#ifndef CLCOMMUNICATION_H #define CLCOMMUNICATION_H #include "SLAddress.h" #include "CLBuffer.h" #include "CLAgent.h" #include "CLProcessRequest.h" class CLBuffer; class CLProcessRequest; class CLCommunication : public CLAgent { public: explicit CLCommunication(const int fd = -1); ~CLCommunication(); int recevData(); int sendData(); void setState(bool state); void setProcess(CLProcessRequest *process); //void getRequest(SLRequest *request); void writeToServer(struct iovec hello); private: CLBuffer *m_buffer; bool m_state; CLProcessRequest *m_process; }; #endif
8892935c99a5b8e7e852352a79381b4112f0e0dd
cd1ed806559658c23a95b92cff05fe2b50c4035f
/SimpleCaptureSafe.cpp
92233860404d9a38874a8aef42929183da4f8928
[]
no_license
alan0526/SFR
24fa89e1d849ced38d2c89aef8b3584dbe3f90bd
76ead4dac194035ff5276f5b53c3a185f3f599f8
refs/heads/master
2020-03-27T13:38:11.732034
2018-07-17T21:09:22
2018-07-17T21:09:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
98,356
cpp
SimpleCaptureSafe.cpp
/////////////////////////////////////////////////////////////// // D E F I N E S /////////////////////////////////////////////////////////////// //#define Check_Error_Frames 1 //#define NO_CAMERA /* * default amount of frames to capture...can also specify on command line */ #define DEFAULT_IMAGE_WIDTH 1280 /* * default amount of frames to capture...can also specify on command line */ //#define DEFAULT_IMAGE_HEIGHT 960 #define DEFAULT_IMAGE_HEIGHT 964 /* * default amount of frames to capture...can also specify on command line */ #define DEFAULT_NUM_FRAMES 100 //0xffffffff /* * the amount of tries before giving up trying to grab a valid frame. */ #define MAX_BADFRAME_TRIES 100 /** * No Key Pressed */ #define NO_KEY_PRESSED -1 #define MAX_NUMBER_BOXES 11 #define ROI_PER_SLANTBOX 4 #define KERNAL_SIZE 7 #define VERSION 1 #define RELEASE 1 #define BUILD 0 #ifndef DebugError #define DebugError 0 #endif /////////////////////////////////////////////////////////////// // I N C L U D E S /////////////////////////////////////////////////////////////// #include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef _WIN32 #include <conio.h> #else #define _getch getchar #define sscanf_s sscanf #endif #ifndef APBASE_LITE #include "apbase.h" #else #include "apbase_lite.h" #endif #include <iostream> #include <io.h> #include <fcntl.h> //#include <atlbase.h> //#include "stdafx.h" #include <fstream> #include <ctime> #include <stdio.h> #include <stdlib.h> #include <math.h> #include "opencv2/core/core.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #undef _UNICODE #include "include\IL\il.h" #include "SimpleCapture.h" using namespace std; /////////////////////////////////////////////////////////////// // E X T E R N S /////////////////////////////////////////////////////////////// extern "C" int sfrProc(double **,double **, int*, double *, unsigned short, int *, double *, int *, int *, double*, double*, int, int, int); #pragma comment( lib, "DevIL.lib" ) /////////////////////////////////////////////////////////////// // G L O B A L S /////////////////////////////////////////////////////////////// bool DeAllocate12BPP_Memory = false; AllTargetBoxesType AllTargetBoxes[MAX_NUMBER_BOXES]; cv::Point m_AllTargetCenterBoxes[MAX_NUMBER_BOXES]; bool m_DetectedTargetCenterBoxes[MAX_NUMBER_BOXES]; cv::Mat CFid; cv::Mat CFid_32BitsPerPixel; cv::Mat CFid2; cv::Mat CFid2_32BitsPerPixel; int m_FrameCounter; char lSaturationLog = 'N'; char szCharWithoutExePath[1024] = ".\\"; // Default to current path bool Once = false; bool Display = true; unsigned long ImageCounter = 0; int lKey = 0; //////////////////////////////////////////////////////////////////////////////// // Helper functions used in Main() //////////////////////////////////////////////////////////////////////////////// void printusage(void) { printf("Usage:\nSimpleCapture [filename|live]\n"); printf("\tfilename\t\tPNG or PGM format image filename or 'live' for live Camera input\n"); printf("\t-noembedded\t\tData does not contain embedded metadata\n"); printf("\t-bayer [#]\tProcess raw image with Malvar-He demosaic algorithm, option\n\t\t\t# for RGB pattern (0-3)\n"); } // // Callback for INI PROMPT= command. Some initialization files // use this. // int APBASE_DECL MultipleChoice(void *pContext, const char *szMessage, const char *szChoices) { int nChoices = 0; if (szMessage) printf("\n%s\n", szMessage); if (szChoices == NULL || szChoices[0] == 0) return 0; // no choices, just an informational message printf("%4d. Cancel\n", -1); printf("%4d. Skip this\n", 0); for (const char *p = szChoices; nChoices < 25; ++p) { if (strlen(p) == 0) break; ++nChoices; printf("%4d. %s\n", nChoices, p); while (*p) ++p; } printf("Enter selection [1]: "); char s[256]; fgets(s, sizeof(s), stdin); int n = 1; sscanf_s(s, "%i", &n); return n; } // // ApBase callbacks for log messages and error messages. // Not essential, but here for demonstration // // Callback for INI file LOG= command void APBASE_DECL MyLogComment(void *pContext, const char *szComment) { printf("%s\n", szComment); } // Callback for user query (based on MessageBox) int APBASE_DECL MyErrorMessage(void *pContext, const char *szMessage, unsigned int mbType) { printf("%s\n", szMessage); switch (mbType & 0xF) { case AP_MSGTYPE_OK: return AP_MSG_OK; case AP_MSGTYPE_OKCANCEL: return AP_MSG_OK; case AP_MSGTYPE_ABORTRETRYIGNORE: return AP_MSG_ABORT; case AP_MSGTYPE_YESNOCANCEL: return AP_MSG_YES; case AP_MSGTYPE_YESNO: return AP_MSG_YES; case AP_MSGTYPE_RETRYCANCEL: return AP_MSG_CANCEL; case AP_MSGTYPE_CANCELTRYCONTINUE: return AP_MSG_CANCEL; } return AP_MSG_OK; } // Callback for Python print() calls, etc. void APBASE_DECL MyScriptOutput(void *pContext, int nUnit, const char *szString) { switch (nUnit) { case 0: default: printf("%s", szString); break; case 1: fprintf(stderr, "%s", szString); break; } } int **allocate_dynamic_matrix(int row, int col) { int **ret_val; int i; ret_val = (int **)malloc(sizeof(int *) * row); if (ret_val == NULL) { perror("memory allocation failure"); exit(EXIT_FAILURE); } for (i = 0; i < row; ++i) { ret_val[i] = (int *)malloc(sizeof(int) * col); if (ret_val[i] == NULL) { perror("memory allocation failure"); exit(EXIT_FAILURE); } } return ret_val; } void deallocate_dynamic_matrix(int **matrix, int row) { int i; for (i = 0; i < row; ++i) free(matrix[i]); free(matrix); } #define HI(num) (((num) & 0x0000FF00) >> 8) #define LO(num) ((num) & 0x000000FF) void SkipComments(FILE *fp) { int ch; char line[100]; while ((ch = fgetc(fp)) != EOF && isspace(ch)); if (ch == '#') { fgets(line, sizeof(line), fp); SkipComments(fp); } else fseek(fp, -1, SEEK_CUR); } /*for reading:*/ PGMData* readPGM(const char *file_name, PGMData *data) { FILE *pgmFile; char version[3]; int i, j; int lo, hi; pgmFile = fopen(file_name, "rb"); if (pgmFile == NULL) { perror("cannot open file to read"); exit(EXIT_FAILURE); } fgets(version, sizeof(version), pgmFile); if (strcmp(version, "P5")) { fprintf(stderr, "Wrong file type!\n"); exit(EXIT_FAILURE); } SkipComments(pgmFile); fscanf(pgmFile, "%d", &data->col); SkipComments(pgmFile); fscanf(pgmFile, "%d", &data->row); SkipComments(pgmFile); fscanf(pgmFile, "%d", &data->max_gray); fgetc(pgmFile); data->matrix = allocate_dynamic_matrix(data->row, data->col); // Is this data 16-bpp or 8-bpp? if (data->max_gray > 255) { for (i = 0; i < data->row; ++i) for (j = 0; j < data->col; ++j) { // Default for PGM is Bigp-Endian storage hi = fgetc(pgmFile); lo = fgetc(pgmFile); data->matrix[i][j] = (hi << 8) + lo; } } else { for (i = 0; i < data->row; ++i) { for (j = 0; j < data->col; ++j) { data->matrix[i][j] = static_cast<int>(fgetc(pgmFile))<<8; if (data->matrix[i][j]>65000) { printf("Saturated pixel [%d][%d]=%d\n",j,i,data->matrix[i][j]); } } } } fclose(pgmFile); return data; } PGMData* setPGM(ILubyte *bytes, PGMData *data) { int i, j; int lo, hi; data->matrix = allocate_dynamic_matrix(data->row, data->col); int k = 0; if (data->max_gray > 255) { for (i = 0; i < data->row; ++i) { for (j = 0; j < data->col; ++j) { lo = bytes[k]; k++; hi = bytes[k]; k++; data->matrix[i][j] = (hi << 8) + lo; } } } else { for (i = 0; i < data->row; ++i) { for (j = 0; j < data->col; ++j) { lo = bytes[k]; k++; data->matrix[i][j] = lo; } } } return data; } /*and for writing*/ void writePGM(const char *filename, const PGMData *data) { FILE *pgmFile; int i, j; int hi, lo; pgmFile = fopen(filename, "wb"); if (pgmFile == NULL) { perror("cannot open file to write"); exit(EXIT_FAILURE); } fprintf(pgmFile, "P5 "); fprintf(pgmFile, "%d %d ", data->col, data->row); fprintf(pgmFile, "%d ", data->max_gray); if (data->max_gray > 255) { for (i = 0; i < data->row; ++i) { for (j = 0; j < data->col; ++j) { hi = HI(data->matrix[i][j]); lo = LO(data->matrix[i][j]); fputc(hi, pgmFile); fputc(lo, pgmFile); } } } else { for (i = 0; i < data->row; ++i) for (j = 0; j < data->col; ++j) { lo = LO(data->matrix[i][j]); fputc(lo, pgmFile); } } fclose(pgmFile); deallocate_dynamic_matrix(data->matrix, data->row); } /*and for writing*/ void writePGM_16(const char *filename, const PGMData *data, int x, int y, int height, int width, int gray, bool deallocate_memory = true) { FILE *pgmFile; int i, j; int hi, lo; pgmFile = fopen(filename, "wb"); if (pgmFile == NULL) { perror("cannot open file to write"); exit(EXIT_FAILURE); } fprintf(pgmFile, "P5 "); fprintf(pgmFile, "%d %d ", width, height); fprintf(pgmFile, "%d ", gray); if (data->max_gray > 255) { for (i = y; i < y+ height; ++i) { for (j = x; j < x + width; ++j) { int pixdata=data->matrix[i][j]; if (pixdata > 65000) { printf("Sat pixel[%d][%d]=%d\n",j,i,pixdata); } fputc(HI(pixdata), pgmFile); fputc(LO(pixdata), pgmFile); } } } else { for (i = y; i < y+ height; ++i) for (j = x; j < x + width; ++j) { lo = LO(data->matrix[i][j]); fputc(lo, pgmFile); } } fclose(pgmFile); if (deallocate_memory) deallocate_dynamic_matrix(data->matrix, data->row); } void ImageWrite(cv::string filename, cv::Mat ImageData) { try { cv::imwrite(filename, ImageData); } catch (runtime_error& ex) { cout << "Error:unable to store image" << endl; getchar(); } } bool InitTemplateAllBoxes(string filePath) { string lFileName = filePath + "\\cfid_fullres_box"; bool error = true; for (int i = 0; i < MAX_NUMBER_BOXES; i++) { string lFullFileName = lFileName + std::to_string((_ULonglong) i) +".pgm"; Boxes[i].CFid = cv::imread(lFullFileName,CV_LOAD_IMAGE_ANYDEPTH); if (CFid.rows == 0 ) { cout <<"error reading fidduicial template for Box"<<i << endl; error = false; } else Boxes[i].CFid.convertTo(Boxes[i].CFid_32BitsPerPixel,CV_32F); } return error; } bool InitTemplates(string filePath) { string Filename = filePath + "\\cfid_fullres_11boxes.pgm"; string Filename2 = filePath + "\\cfid_fullres_11boxes_corners.pgm"; bool error = true; CFid = cv::imread(Filename,CV_LOAD_IMAGE_ANYDEPTH); cout << Filename << endl; if (CFid.rows == 0 ) { cout <<"error reading the central fidduicial template" << endl; error = false; } CFid.convertTo(CFid_32BitsPerPixel,CV_32F); CFid2 = cv::imread(Filename2,CV_LOAD_IMAGE_ANYDEPTH); // Force Greyscale load. if (CFid2.rows == 0 ) { cout <<"error reading the outside fidduicial template" << endl; error = false; } CFid2.convertTo(CFid2_32BitsPerPixel,CV_32F); return error; } bool acceptLinePair(cv::Vec2f line1, cv::Vec2f line2, float minTheta) { float theta1 = line1[1], theta2 = line2[1]; if(theta1 < minTheta) { theta1 += (float)CV_PI; // dealing with 0 and 180 ambiguities... } if(theta2 < minTheta) { theta2 += (float)CV_PI; // dealing with 0 and 180 ambiguities... } return abs(theta1 - theta2) > minTheta; } cv::vector<cv::Point2f> lineToPointPair(cv::Vec2f line) { vector<cv::Point2f> points; float r = line[0], t = line[1]; double cos_t = cos(t), sin_t = sin(t); double x0 = r*cos_t, y0 = r*sin_t; double alpha = 1000; points.push_back(cv::Point2f((float)(x0 + alpha*(-sin_t)), (float)(y0 + alpha*cos_t))); points.push_back(cv::Point2f((float)(x0 - alpha*(-sin_t)), (float)(y0 - alpha*cos_t))); return points; } // the long nasty wikipedia line-intersection equation...bleh... cv::Point2f computeIntersect(cv::Vec2f line1, cv::Vec2f line2) { vector<cv::Point2f> p1 = lineToPointPair(line1); vector<cv::Point2f> p2 = lineToPointPair(line2); float denom = (p1[0].x - p1[1].x)*(p2[0].y - p2[1].y) - (p1[0].y - p1[1].y)*(p2[0].x - p2[1].x); cv::Point2f intersect(((p1[0].x*p1[1].y - p1[0].y*p1[1].x)*(p2[0].x - p2[1].x) - (p1[0].x - p1[1].x)*(p2[0].x*p2[1].y - p2[0].y*p2[1].x)) / denom, ((p1[0].x*p1[1].y - p1[0].y*p1[1].x)*(p2[0].y - p2[1].y) - (p1[0].y - p1[1].y)*(p2[0].x*p2[1].y - p2[0].y*p2[1].x)) / denom); return intersect; } int LocateMultipleFeaturesDetection2(cv::Mat img, cv::Mat img_display, int width, int height, const flags_t modeflags) { cv::Mat lTempImg = cv::Mat(cv::Mat::zeros(height, width, CV_8U)); if (((modeflags.WriteImageLevel > 3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) ImageWrite("ObjectDetection_Original.pgm", img_display); img.convertTo(lTempImg,CV_8U); if (((modeflags.WriteImageLevel > 3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) ImageWrite("ObjectDetection_8U.pgm", lTempImg); threshold(lTempImg, lTempImg, 30, 255, CV_THRESH_BINARY); if (((modeflags.WriteImageLevel > 3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) ImageWrite("ObjectDetection_CV_THRESH_BINARY.pgm", lTempImg); dilate(lTempImg, lTempImg, cv::Mat(), cv::Point(-1, -1), 2, 1, 1); if (((modeflags.WriteImageLevel > 3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) ImageWrite("ObjectDetection_CV_THRESH_BINARY_dilate.pgm", lTempImg); //Find the contours. Use the contourOutput Mat so the original image doesn't get overwritten std::vector<std::vector<cv::Point> > contours; cv::Mat contourOutput = cv::Mat(lTempImg.clone()); cv::findContours( contourOutput, contours, CV_RETR_TREE, CV_CHAIN_APPROX_NONE ); if (((modeflags.WriteImageLevel >3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) ImageWrite("ObjectDetection_CV_THRESH_BINARY_dilate_FindContoursOutput.pgm", contourOutput); vector<vector<cv::Point> > contours_poly( contours.size() ); vector<cv::Rect> boundRect( contours.size() ); vector<cv::Point2f>center( contours.size() ); vector<float>radius( contours.size() ); for (size_t idx = 0; idx < contours.size(); idx++) { cv::approxPolyDP( cv::Mat(contours[idx]), contours_poly[idx], 3, true ); boundRect[idx] = cv::boundingRect( cv::Mat(contours_poly[idx]) ); cv::minEnclosingCircle( (cv::Mat)contours_poly[idx], center[idx], radius[idx] ); } /// Draw polygonal contour + bonding rects + circles cv::Mat drawing = cv::Mat::zeros( contourOutput.size(), CV_8UC1 ); for( int i = 0; i< (int)contours.size(); i++ ) { cv::Scalar color = cv::Scalar( 255, 0, 0 ); drawContours( img_display, contours_poly, i, color, 1, 8, vector<cv::Vec4i>(), 0, cv::Point() ); if ((((boundRect[i].width > 65) && (boundRect[i].width < 180) && (modeflags.Distance == 1)) && ((boundRect[i].height > 65) && (boundRect[i].height < 180) && (modeflags.Distance == 1))) || // 5 meters ((boundRect[i].width > 100) && ( modeflags.Distance == 0))) // 3.5 meters { if (modeflags.WriteImageLevel >=5) rectangle( img_display, boundRect[i].tl(), boundRect[i].br(), color, 2, 8, 0 ); if(boundRect[i].y < (int)(height/3)) { if (boundRect[i].x <= (int)(width/3)) { //if (!m_DetectedTargetCenterBoxes[10]) //{ AllTargetBoxes[10].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[10].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[10].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[10].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; // m_DetectedTargetCenterBoxes[10] = true; //} //else // continue; } else if (boundRect[i].x >= (int)(2*width/3)) { //if (!m_DetectedTargetCenterBoxes[5]) //{ AllTargetBoxes[5].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[5].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[5].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[5].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; // m_DetectedTargetCenterBoxes[5] = true; //} //else // continue; } else { //if (!m_DetectedTargetCenterBoxes[1]) //{ AllTargetBoxes[1].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[1].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[1].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[1].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; // m_DetectedTargetCenterBoxes[1] = true; //} //else // continue; } } else if(boundRect[i].y >= (int)(2*height/3)) { if (boundRect[i].x <= (int)(width/3)) { //if (!m_DetectedTargetCenterBoxes[8]) //{ AllTargetBoxes[8].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[8].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[8].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[8].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; // m_DetectedTargetCenterBoxes[8] = true; //} //else // continue; } else if (boundRect[i].x >= (int)(2*width/3)) { //if (!m_DetectedTargetCenterBoxes[7]) //{ AllTargetBoxes[7].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[7].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[7].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[7].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; //m_DetectedTargetCenterBoxes[7] = true; //} //else // continue; } else { //if (!m_DetectedTargetCenterBoxes[3]) //{ AllTargetBoxes[3].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[3].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[3].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[3].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; //m_DetectedTargetCenterBoxes[3] = true; //} //else // continue; } } else { if (boundRect[i].x <= (int)(width/5)) { //if (!m_DetectedTargetCenterBoxes[9]) //{ AllTargetBoxes[9].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[9].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[9].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[9].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; // m_DetectedTargetCenterBoxes[9] = true; //} //else // continue; } else if ((boundRect[i].x >= (int)(width/5)) && (boundRect[i].x <= (int)(2*width/5))) { //if (!m_DetectedTargetCenterBoxes[4]) //{ AllTargetBoxes[4].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[4].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[4].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[4].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; // m_DetectedTargetCenterBoxes[4] = true; //} //else // continue; } else if ((boundRect[i].x >= (int)(2*width/5)) && (boundRect[i].x <= (int)(3*width/5))) { //if (!m_DetectedTargetCenterBoxes[0]) //{ AllTargetBoxes[0].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[0].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[0].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[0].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; /* m_DetectedTargetCenterBoxes[0] = true; } else continue*/; } else if ((boundRect[i].x >= (int)(3*width/5)) && (boundRect[i].x <= (int)(4*width/5))) { //if (!m_DetectedTargetCenterBoxes[2]) //{ AllTargetBoxes[2].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[2].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[2].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[2].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; // m_DetectedTargetCenterBoxes[2] = true; //} //else // continue; } else { //if (!m_DetectedTargetCenterBoxes[6]) //{ AllTargetBoxes[6].m_TargetBoxHeight = boundRect[i].height; AllTargetBoxes[6].m_TargetBoxWidth = boundRect[i].width; AllTargetBoxes[6].m_TargetBoxCenter.x = boundRect[i].x + boundRect[i].width/2; AllTargetBoxes[6].m_TargetBoxCenter.y = boundRect[i].y + boundRect[i].height/2; // m_DetectedTargetCenterBoxes[6] = true; //} //else // continue; } } } if (((int)radius[i] > 25) && ((int)radius[i] < 30) &&(modeflags.WriteImageLevel >=5)) { circle( img_display, center[i], (int)radius[i], color, 2, 8, 0 ); } } if (((modeflags.WriteImageLevel >3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) ImageWrite("ObjectDetection_CV_THRESH_BINARY_dilate_FindContours_ContourImage.pgm", img_display); #if DebugError #endif return 0; } int LocateMultipleFeaturesDetection(cv::Mat img, cv::Mat img_display, int width, int height, const flags_t modeflags) { cv::Mat lTempImg = cv::Mat::zeros(height, width, CV_8U); if (modeflags.WriteImageLevel >=5) ImageWrite("ObjectDetection_Original.pgm", img_display); img.convertTo(lTempImg,CV_8U); if (modeflags.WriteImageLevel >=5) ImageWrite("ObjectDetection_8U.pgm", lTempImg); GaussianBlur(lTempImg, lTempImg, cv::Size(7, 7), 2.0, 2.0); if (modeflags.WriteImageLevel >=5) ImageWrite("ObjectDetection_8U_GaussianBlur.pgm", lTempImg); threshold(lTempImg, lTempImg, 10, 255, CV_THRESH_OTSU); if (modeflags.WriteImageLevel >=5) ImageWrite("ObjectDetection_8U_GaussianBlur_CV_THRESH_OTSU.pgm", lTempImg); // erode(lTempImg, lTempImg, cv::Mat(), cv::Point(-1, -1), 2, 1, 1); //if (modeflags.WriteImageLevel >=5) // ImageWrite("ObjectDetection_8U_GaussianBlur_CV_THRESH_OTSU_erode.pgm", lTempImg); //dilate(lTempImg, lTempImg, cv::Mat(), cv::Point(-1, -1), 2, 1, 1); //if (modeflags.WriteImageLevel >=5) // ImageWrite("ObjectDetection_8U_GaussianBlur_CV_THRESH_OTSU_erode_dilate.pgm", lTempImg); Canny(lTempImg, lTempImg, 200, 100, 3 ); if (modeflags.WriteImageLevel >=5) ImageWrite("ObjectDetection_8U_GaussianBlur_CV_THRESH_OTSU_dilate_erode_Canny.pgm", lTempImg); vector<cv::Vec3f> circles; if (modeflags.Distance == 0) HoughCircles( lTempImg, circles, CV_HOUGH_GRADIENT, 1, height/8, 200,25, 27, 110); // 3.6 m else if (modeflags.Distance == 1) HoughCircles( lTempImg, circles, CV_HOUGH_GRADIENT, 1, height/8, 200,25, 10, 90); // 5m //vector<cv::Vec2f> lines; // HoughLines( lTempImg, lines, 1, CV_PI/180, 117, 0, 0 ); //cout << "Detected Lines: " << lines.size() << " lines." << endl; // // compute the intersection from the lines detected... // vector<cv::Point2f> intersections; // for( size_t i = 0; i < lines.size(); i++ ) // { // for(size_t j = 0; j < lines.size(); j++) // { // cv::Vec2f line1 = lines[i]; // cv::Vec2f line2 = lines[j]; // if(acceptLinePair(line1, line2, CV_PI / 32)) // { // cv::Point2f intersection = computeIntersect(line1, line2); // intersections.push_back(intersection); // } // } // } //cout << "Detected Lines Intersection: " << intersections.size() << " intersections." << endl; // if(intersections.size() > 0) // { // vector<cv::Point2f>::iterator i; // for(i = intersections.begin(); i != intersections.end(); ++i) // { // cout << "Intersection is " << i->x << ", " << i->y << endl; // circle(img_display, *i, 1, cv::Scalar(0, 255, 0), 30); // } // } //cout << "Size = " << circles.size() << endl; for( size_t i = 0; i < circles.size(); i++ ) { cv::Point center(cvRound(circles[i][0]), cvRound(circles[i][1])); int radius = cvRound(circles[i][2]); cv:: Point TargetCenterDetection = center; if(TargetCenterDetection.y < (int)(height/3)) { if (TargetCenterDetection.x <= (int)(width/3)) { if (!m_DetectedTargetCenterBoxes[10]) { m_AllTargetCenterBoxes[10] = TargetCenterDetection; m_DetectedTargetCenterBoxes[10] = true; } else continue; } else if (TargetCenterDetection.x >= (int)(2*width/3)) { if (!m_DetectedTargetCenterBoxes[5]) { m_AllTargetCenterBoxes[5] = TargetCenterDetection; m_DetectedTargetCenterBoxes[5] = true; } else continue; } else { if (!m_DetectedTargetCenterBoxes[1]) { m_AllTargetCenterBoxes[1] = TargetCenterDetection; m_DetectedTargetCenterBoxes[1] = true; } else continue; } } else if(TargetCenterDetection.y >= (int)(2*height/3)) { if (TargetCenterDetection.x <= (int)(width/3)) { if (!m_DetectedTargetCenterBoxes[8]) { m_AllTargetCenterBoxes[8] = TargetCenterDetection; m_DetectedTargetCenterBoxes[8] = true; } else continue; } else if (TargetCenterDetection.x >= (int)(2*width/3)) { if (!m_DetectedTargetCenterBoxes[7]) { m_AllTargetCenterBoxes[7] = TargetCenterDetection; m_DetectedTargetCenterBoxes[7] = true; } else continue; } else { if (!m_DetectedTargetCenterBoxes[3]) { m_AllTargetCenterBoxes[3] = TargetCenterDetection; m_DetectedTargetCenterBoxes[3] = true; } else continue; } } else { if (TargetCenterDetection.x <= (int)(width/5)) { if (!m_DetectedTargetCenterBoxes[9]) { m_AllTargetCenterBoxes[9] = TargetCenterDetection; m_DetectedTargetCenterBoxes[9] = true; } else continue; } else if ((TargetCenterDetection.x >= (int)(width/5)) && (TargetCenterDetection.x <= (int)(2*width/5))) { if (!m_DetectedTargetCenterBoxes[4]) { m_AllTargetCenterBoxes[4] = TargetCenterDetection; m_DetectedTargetCenterBoxes[4] = true; } else continue; } else if ((TargetCenterDetection.x >= (int)(2*width/5)) && (TargetCenterDetection.x <= (int)(3*width/5))) { if (!m_DetectedTargetCenterBoxes[0]) { m_AllTargetCenterBoxes[0] = TargetCenterDetection; m_DetectedTargetCenterBoxes[0] = true; } else continue; } else if ((TargetCenterDetection.x >= (int)(3*width/5)) && (TargetCenterDetection.x <= (int)(4*width/5))) { if (!m_DetectedTargetCenterBoxes[2]) { m_AllTargetCenterBoxes[2] = TargetCenterDetection; m_DetectedTargetCenterBoxes[2] = true; } else continue; } else { if (!m_DetectedTargetCenterBoxes[6]) { m_AllTargetCenterBoxes[6] = TargetCenterDetection; m_DetectedTargetCenterBoxes[6] = true; } else continue; } } // draw the circle center circle( img_display, center, 3, cv::Scalar(0,255,0), -1, 8, 0 ); // draw the circle outline circle( img_display, center, radius, cv::Scalar(0,0,255), 3, 8, 0 ); } //ImageWrite("ObjectDetection.pgm", img_display); return 0; } int LocateMultipleFeatures(cv::Mat img, cv::Mat img_display, int width, int height) { int lMaxIteration = 100; cv::Mat left_result,right_result; int left_result_cols = img.cols - CFid_32BitsPerPixel.cols + 1; int left_result_rows = img.rows - CFid_32BitsPerPixel.rows + 1; int Right_result_cols; int Right_result_rows; if(!CFid2.empty()) { Right_result_cols = img.cols - CFid2_32BitsPerPixel.cols + 1; Right_result_rows = img.rows - CFid2_32BitsPerPixel.rows + 1; } double minVal, maxVal, threshold = 0.6; cv::Rect edgebox; cv::Point matchLoc; cv::Point minLoc; cv::Point maxLoc; int match_found = false; //img.copyTo( img_display ); /// Create the result matrix (left and right) left_result.create( left_result_cols, left_result_rows, CV_32FC1 ); right_result.create( Right_result_cols, Right_result_rows, CV_32FC1 ); /// Do the Matching and Normalize //matchTemplate( img, CFid, left_result, CV_TM_SQDIFF ); //normalize( left_result, left_result, 0, 1, NORM_MINMAX, -1, Mat() ); matchTemplate( img, CFid_32BitsPerPixel, left_result, CV_TM_CCOEFF_NORMED ); cv::threshold(left_result, left_result, 0.0, 1, CV_THRESH_TOZERO); //normalize( left_result, left_result, 0, 1, NORM_MINMAX, -1, Mat() ); matchTemplate( img, CFid2_32BitsPerPixel, right_result, CV_TM_CCOEFF_NORMED ); cv::threshold(right_result, right_result, 0.0, 1, CV_THRESH_TOZERO); int lTotalDetectedBoxes = 11; for (int i = 0; i < MAX_NUMBER_BOXES ; i++) m_DetectedTargetCenterBoxes[i] = false; cv::Point TargetCenterDetection; while (true) { if ((lTotalDetectedBoxes <= 0) || (lMaxIteration <= 0)) break; /// Localizing the best match with minMaxLoc minMaxLoc( left_result, &minVal, &maxVal, &minLoc, &maxLoc, cv::Mat() ); /// For SQDIFF and SQDIFF_NORMED, the best matches are lower values. For all the other methods, the higher the better if (maxVal >= threshold) { lMaxIteration--; matchLoc = maxLoc; //matchLoc = minLoc; TargetCenterDetection.x = matchLoc.x + CFid_32BitsPerPixel.cols/2; TargetCenterDetection.y = matchLoc.y + CFid_32BitsPerPixel.rows/2; if(TargetCenterDetection.y < (int)(height/3)) { if (TargetCenterDetection.x <= (int)(width/3)) { if (!m_DetectedTargetCenterBoxes[10]) { m_AllTargetCenterBoxes[10] = TargetCenterDetection; m_DetectedTargetCenterBoxes[10] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if (TargetCenterDetection.x >= (int)(2*width/3)) { if (!m_DetectedTargetCenterBoxes[5]) { m_AllTargetCenterBoxes[5] = TargetCenterDetection; m_DetectedTargetCenterBoxes[5] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else { if (!m_DetectedTargetCenterBoxes[1]) { m_AllTargetCenterBoxes[1] = TargetCenterDetection; m_DetectedTargetCenterBoxes[1] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } } else if(TargetCenterDetection.y >= (int)(2*height/3)) { if (TargetCenterDetection.x <= (int)(width/3)) { if (!m_DetectedTargetCenterBoxes[8]) { m_AllTargetCenterBoxes[8] = TargetCenterDetection; m_DetectedTargetCenterBoxes[8] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if (TargetCenterDetection.x >= (int)(2*width/3)) { if (!m_DetectedTargetCenterBoxes[7]) { m_AllTargetCenterBoxes[7] = TargetCenterDetection; m_DetectedTargetCenterBoxes[7] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else { if (!m_DetectedTargetCenterBoxes[3]) { m_AllTargetCenterBoxes[3] = TargetCenterDetection; m_DetectedTargetCenterBoxes[3] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } } else { if (TargetCenterDetection.x <= (int)(width/5)) { if (!m_DetectedTargetCenterBoxes[9]) { m_AllTargetCenterBoxes[9] = TargetCenterDetection; m_DetectedTargetCenterBoxes[9] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if ((TargetCenterDetection.x >= (int)(width/5)) && (TargetCenterDetection.x <= (int)(2*width/5))) { if (!m_DetectedTargetCenterBoxes[4]) { m_AllTargetCenterBoxes[4] = TargetCenterDetection; m_DetectedTargetCenterBoxes[4] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if ((TargetCenterDetection.x >= (int)(2*width/5)) && (TargetCenterDetection.x <= (int)(3*width/5))) { if (!m_DetectedTargetCenterBoxes[0]) { m_AllTargetCenterBoxes[0] = TargetCenterDetection; m_DetectedTargetCenterBoxes[0] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if ((TargetCenterDetection.x >= (int)(3*width/5)) && (TargetCenterDetection.x <= (int)(4*width/5))) { if (!m_DetectedTargetCenterBoxes[2]) { m_AllTargetCenterBoxes[2] = TargetCenterDetection; m_DetectedTargetCenterBoxes[2] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else { if (!m_DetectedTargetCenterBoxes[6]) { m_AllTargetCenterBoxes[6] = TargetCenterDetection; m_DetectedTargetCenterBoxes[6] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } } if( (matchLoc.x < width-CFid.cols) && (matchLoc.y < height-CFid.rows) && (matchLoc.x > 0) && (matchLoc.y > 0) ) { rectangle( img_display, matchLoc, cv::Point( matchLoc.x + CFid_32BitsPerPixel.cols , matchLoc.y + CFid_32BitsPerPixel.rows ), cv::Scalar::all(0), 1, 8, 0 ); line( img_display, cv::Point(TargetCenterDetection.x+5,TargetCenterDetection.y),cv::Point(TargetCenterDetection.x-5,TargetCenterDetection.y),(255,255,255), 1, 8, 0); line( img_display, cv::Point(TargetCenterDetection.x,TargetCenterDetection.y+5),cv::Point(TargetCenterDetection.x,TargetCenterDetection.y-5),(255,255,255), 1, 8, 0); cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); match_found = true; } //else // match_found = false; } else { break; } } while (true) { if ((lTotalDetectedBoxes <= 0) || (lMaxIteration <= 0)) break; /// Localizing the best match with minMaxLoc minMaxLoc( right_result, &minVal, &maxVal, &minLoc, &maxLoc, cv::Mat() ); /// For SQDIFF and SQDIFF_NORMED, the best matches are lower values. For all the other methods, the higher the better if (maxVal >= threshold) { lMaxIteration--; matchLoc = maxLoc; //matchLoc = minLoc; TargetCenterDetection.x = matchLoc.x + CFid2_32BitsPerPixel.cols/2; TargetCenterDetection.y = matchLoc.y + CFid2_32BitsPerPixel.rows/2; if(TargetCenterDetection.y < (int)(height/3)) { if (TargetCenterDetection.x <= (int)(width/3)) { if (!m_DetectedTargetCenterBoxes[10]) { m_AllTargetCenterBoxes[10] = TargetCenterDetection; m_DetectedTargetCenterBoxes[10] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if (TargetCenterDetection.x >= (int)(2*width/3)) { if (!m_DetectedTargetCenterBoxes[5]) { m_AllTargetCenterBoxes[5] = TargetCenterDetection; m_DetectedTargetCenterBoxes[5] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else { if (!m_DetectedTargetCenterBoxes[1]) { m_AllTargetCenterBoxes[1] = TargetCenterDetection; m_DetectedTargetCenterBoxes[1] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } } else if(TargetCenterDetection.y >= (int)(2*height/3)) { if (TargetCenterDetection.x <= (int)(width/3)) { if (!m_DetectedTargetCenterBoxes[8]) { m_AllTargetCenterBoxes[8] = TargetCenterDetection; m_DetectedTargetCenterBoxes[8] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if (TargetCenterDetection.x >= (int)(2*width/3)) { if (!m_DetectedTargetCenterBoxes[7]) { m_AllTargetCenterBoxes[7] = TargetCenterDetection; m_DetectedTargetCenterBoxes[7] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else { if (!m_DetectedTargetCenterBoxes[3]) { m_AllTargetCenterBoxes[3] = TargetCenterDetection; m_DetectedTargetCenterBoxes[3] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } } else { if (TargetCenterDetection.x <= (int)(width/5)) { if (!m_DetectedTargetCenterBoxes[9]) { m_AllTargetCenterBoxes[9] = TargetCenterDetection; m_DetectedTargetCenterBoxes[9] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if ((TargetCenterDetection.x >= (int)(width/5)) && (TargetCenterDetection.x <= (int)(2*width/5))) { if (!m_DetectedTargetCenterBoxes[4]) { m_AllTargetCenterBoxes[4] = TargetCenterDetection; m_DetectedTargetCenterBoxes[4] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if ((TargetCenterDetection.x >= (int)(2*width/5)) && (TargetCenterDetection.x <= (int)(3*width/5))) { if (!m_DetectedTargetCenterBoxes[0]) { m_AllTargetCenterBoxes[0] = TargetCenterDetection; m_DetectedTargetCenterBoxes[0] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else if ((TargetCenterDetection.x >= (int)(3*width/5)) && (TargetCenterDetection.x <= (int)(4*width/5))) { if (!m_DetectedTargetCenterBoxes[2]) { m_AllTargetCenterBoxes[2] = TargetCenterDetection; m_DetectedTargetCenterBoxes[2] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } else { if (!m_DetectedTargetCenterBoxes[6]) { m_AllTargetCenterBoxes[6] = TargetCenterDetection; m_DetectedTargetCenterBoxes[6] = true; lTotalDetectedBoxes--; } else { cv::floodFill(left_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); continue; } } } if( (matchLoc.x < width-CFid2.cols) && (matchLoc.y < height-CFid2.rows) && (matchLoc.x > 0) && (matchLoc.y > 0) ) { rectangle( img_display, matchLoc, cv::Point( matchLoc.x + CFid2_32BitsPerPixel.cols , matchLoc.y + CFid2_32BitsPerPixel.rows ), cv::Scalar::all(0), 1, 8, 0 ); line( img_display, cv::Point(TargetCenterDetection.x+5,TargetCenterDetection.y),cv::Point(TargetCenterDetection.x-5,TargetCenterDetection.y),(255,255,255), 1, 8, 0); line( img_display, cv::Point(TargetCenterDetection.x,TargetCenterDetection.y+5),cv::Point(TargetCenterDetection.x,TargetCenterDetection.y-5),(255,255,255), 1, 8, 0); cv::floodFill(right_result, maxLoc, cv::Scalar(0), 0, cv::Scalar(0.1), cv::Scalar(1.)); match_found = true; } //else // match_found = false; } else { break; } } return match_found; } bool InitializeROIs(string filePath) { int symetric_offset = 0; int box_col = 0; int xoffset,yoffset; cv::FileStorage ConfigurationXML; ConfigurationXML.open(filePath + "\\Lens.xml", cv::FileStorage::READ); if (!ConfigurationXML.isOpened()) { return false; } cv::FileNode Boxes_Node = ConfigurationXML["FOCUS_SFR_11Boxes"]; for (int boxNumber = 0; boxNumber < MAX_NUMBER_BOXES; boxNumber++) { cv::string BoxValue("Box"); BoxValue += std::to_string(static_cast<long long>(boxNumber)); cv::FileNode BoxValue_Node = Boxes_Node[BoxValue]; Boxes[boxNumber].SB_Size = (int)BoxValue_Node["SB_Size"]; cv::FileNode SFRBox_ROIUsed_Node = BoxValue_Node["ROIUsed"]; // Apply "rules" based on rows columns or both. Set defautls for all boxes first and then modify based on rules Boxes[boxNumber].roi_used[N] = static_cast<bool>((int)SFRBox_ROIUsed_Node["North"]); Boxes[boxNumber].roi_used[S] = static_cast<bool>((int)SFRBox_ROIUsed_Node["South"]); Boxes[boxNumber].roi_used[E] = static_cast<bool>((int)SFRBox_ROIUsed_Node["East"]); Boxes[boxNumber].roi_used[W] = static_cast<bool>((int)SFRBox_ROIUsed_Node["West"]); Boxes[boxNumber].box_ctr.y = m_AllTargetCenterBoxes[boxNumber].y; Boxes[boxNumber].box_ctr.x = m_AllTargetCenterBoxes[boxNumber].x; //cv::FileNode SFRBox_BoxCtr_Node = BoxValue_Node["BoxCtr"]; //Boxes[boxNumber].box_ctr.y = (int)SFRBox_BoxCtr_Node["Y"]; //Boxes[boxNumber].box_ctr.x = (int)SFRBox_BoxCtr_Node["X"]; cv::FileNode AllSFRBox_Value_Nodes = BoxValue_Node["SRFBox"]; cv::string SFRBox_Value; for(int i = 0;i<ROI_PER_SLANTBOX;i++) { switch (i) { case 0: SFRBox_Value = "Zero"; break; case 1: SFRBox_Value = "One"; break; case 2: SFRBox_Value = "Two"; break; case 3: SFRBox_Value = "Three"; break; default: break; } cv::FileNode SFRBox_Value_Node = AllSFRBox_Value_Nodes[SFRBox_Value]; Boxes[boxNumber].SFRBox[i].isHorz = static_cast<bool>((int)SFRBox_Value_Node["isHorz"]); cv::FileNode SFRBox_ROI_Node = SFRBox_Value_Node["ROI"]; Boxes[boxNumber].SFRBox[i].roi.width = (int)SFRBox_ROI_Node["Width"]; Boxes[boxNumber].SFRBox[i].roi.height = (int)SFRBox_ROI_Node["Height"]; Boxes[boxNumber].SFRBox[i].x_Delta = (int)SFRBox_ROI_Node["X_Delta"]; Boxes[boxNumber].SFRBox[i].y_Delta = (int)SFRBox_ROI_Node["Y_Delta"]; switch (i) { case 0 : //North yoffset = -(Boxes[boxNumber].SB_Size/2)-(Boxes[boxNumber].SFRBox[i].roi.height/2); xoffset = -(Boxes[boxNumber].SFRBox[i].roi.width/2); break; case 2 : //south yoffset = (Boxes[boxNumber].SB_Size/2)-(Boxes[boxNumber].SFRBox[i].roi.height/2); xoffset = -(Boxes[boxNumber].SFRBox[i].roi.width/2); break; case 1 : // EAST yoffset = -(Boxes[boxNumber].SFRBox[i].roi.height/2); xoffset = (Boxes[boxNumber].SB_Size/2)-(Boxes[boxNumber].SFRBox[i].roi.width/2); break; case 3 : //West yoffset = -(Boxes[boxNumber].SFRBox[i].roi.height/2); xoffset = -(Boxes[boxNumber].SB_Size/2)-(Boxes[boxNumber].SFRBox[i].roi.width/2); break; default : break; } Boxes[boxNumber].SFRBox[i].roi.x = Boxes[boxNumber].box_ctr.x+ xoffset + Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = Boxes[boxNumber].box_ctr.y+ yoffset + Boxes[boxNumber].SFRBox[i].y_Delta; if ( Boxes[boxNumber].SFRBox[i].roi.x < 0) Boxes[boxNumber].SFRBox[i].roi.x = 0; if (Boxes[boxNumber].SFRBox[i].roi.y < 0) Boxes[boxNumber].SFRBox[i].roi.y = 0; Boxes[boxNumber].SFRBox[i].DesiredFreq = (double)SFRBox_Value_Node["DesiredFreq"]; Boxes[boxNumber].SFRBox[i].SFRLimit = (double)SFRBox_Value_Node["SFRLimit"]; Boxes[boxNumber].SFRBox[i].sideused = static_cast<ROIUSAGE>((int)SFRBox_Value_Node["SideUsed"]); Boxes[boxNumber].SFRBox[i].inRange = static_cast<bool>((int)SFRBox_Value_Node["inRange"]); Boxes[boxNumber].SFRBox[i].SFRValue = (double)SFRBox_Value_Node["SFRValue"]; } } ConfigurationXML.release(); return true; } double CalcSFR_Hi(wchar_t* ptr_img, Roi_for_SFR & SFRBox, int width, int height, int grey_Level, double MM_PER_PIX, const flags_t modeflags) { // added for SFR int i; double *farea; double slope, scale; int size_x, size_y; int err, bin_len; int center; int numcycles=0; double *Freq=NULL; double *disp=NULL; double off, R2; double ScoreSFR = 0.0; double Limit_Cymm = 0.0; int g_version = 0; // flag to use different alg variation // leave at zero. wchar_t *img = (wchar_t *)malloc(height*width*sizeof(wchar_t)); wchar_t *imgOrg = (wchar_t *)malloc(height*width*sizeof(wchar_t)); memcpy(img, ptr_img, height*width*sizeof(wchar_t)); memcpy(imgOrg, ptr_img, height*width*sizeof(wchar_t)); Limit_Cymm = SFRBox.DesiredFreq; size_x = SFRBox.roi.width; size_y = SFRBox.roi.height; farea = (double *)malloc(size_y*size_x*sizeof(double)); /* calculate the sfr on this area */ // Original call err = sfrProc(&Freq, &disp, &bin_len, farea, (unsigned short)size_x, &size_y, &slope, &numcycles,&center,&off, &R2, g_version, 0, g_userangle); int index= 0; // Vert SFR with Mosaic need rows removed to eliminate RED and maintain resolution across SFR Edge. // Due using the whole array (starting at row 0) with top 3 rows black the red pixels are EVEN rows and ODD columns in original image // so depending on ROI coordinates need start on correct row or column to skip red pixels int odd_x_offset = 0; int odd_y_offset = 0; if (!(SFRBox.roi.y % 2)) { if (modeflags.lEmbeddedData == 1) { if (SFRBox.isHorz) odd_y_offset = 1; else odd_y_offset = 1; } else if (modeflags.lEmbeddedData == 2) { if (SFRBox.isHorz) odd_y_offset = 1; else odd_y_offset = 1; } else cout<< "Undefined embedded data definition" << endl; } else { if (modeflags.lEmbeddedData == 1) { if (SFRBox.isHorz) odd_y_offset = 0; else odd_y_offset = 0; } else if (modeflags.lEmbeddedData == 2) { if (SFRBox.isHorz) odd_y_offset = 0; else odd_y_offset = 0; } else cout<< "Undefined embedded data definition" << endl; } if ((SFRBox.roi.x % 2)) { if (modeflags.lEmbeddedData == 1) { if (SFRBox.isHorz) odd_x_offset = 1; else odd_x_offset = 1; } else if (modeflags.lEmbeddedData == 2) { if (SFRBox.isHorz) odd_x_offset = 0; else odd_x_offset = 0; } else cout<< "Undefined embedded data definition" << endl; } else { if (modeflags.lEmbeddedData == 1) { if (SFRBox.isHorz) odd_x_offset = 0; else odd_x_offset = 0; } else if (modeflags.lEmbeddedData == 2) { if (SFRBox.isHorz) odd_x_offset = 1; else odd_x_offset = 1; } else cout<< "Undefined embedded data definition" << endl; } std::stringstream ss; ss << m_FrameCounter; std::string lFileName = "ROI_Binary_"+ ss.str(); // + "_AfterRemovingRedPixels.pgm"; m_FrameCounter++; int lRow = 0; int lCol = 0; if (modeflags.Demosaic == 0) { if(!SFRBox.isHorz) { lRow = 0; lCol = 0; if (((modeflags.WriteImageLevel >3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) { std::string lFileNameBefore = lFileName + "_BeforeRemovingRedPixels.pgm"; cv::Mat roi_file_Before(size_y, size_x,CV_16U,cv::Scalar::all(0)); // Vert SFR Calc - read rows col by col and convert to ratiometric (0 - 1) array. for (int row=SFRBox.roi.y+odd_y_offset;row< SFRBox.roi.y+size_y + odd_y_offset;row++) { lCol = 0; for (int col=SFRBox.roi.x+ odd_x_offset;col< SFRBox.roi.x+size_x + odd_x_offset;col++) { roi_file_Before.at<ushort>(lRow,lCol) = (ushort)img[width*row + col]; lCol++; } lRow++; } ImageWrite(lFileNameBefore,roi_file_Before); roi_file_Before.release(); } lRow = 0; lCol = 0; std::string lFileNameAfter = lFileName + "_AfterRemovingRedPixels.pgm"; cv::Mat roi_file2(size_y/2, size_x,CV_16U,cv::Scalar::all(0)); // Vert SFR Calc - read rows col by col and convert to ratiometric (0 - 1) array. for (int row=SFRBox.roi.y+odd_y_offset;row< SFRBox.roi.y+size_y + odd_y_offset;row=row+2) { lCol = 0; for (int col=SFRBox.roi.x + odd_x_offset;col< SFRBox.roi.x+size_x +odd_x_offset;col++) { roi_file2.at<ushort>(lRow,lCol) = (ushort)img[width*row + col]; lCol++; farea[index] = (double)( img[width*row + col])/(double)grey_Level; index++; } lRow++; } if (((modeflags.WriteImageLevel >3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) ImageWrite(lFileNameAfter,roi_file2); roi_file2.release(); } else { lRow = 0; lCol = 0; if (((modeflags.WriteImageLevel >3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) { std::string lFileNameBefore = lFileName + "_BeforeRemovingRedPixels.pgm"; cv::Mat roi_file_Before(size_y, size_x,CV_16U,cv::Scalar::all(0)); // Vert SFR Calc - read rows col by col and convert to ratiometric (0 - 1) array. for (int col=SFRBox.roi.x+odd_x_offset;col< SFRBox.roi.x+size_x+odd_x_offset;col++) { lRow = 0; for (int row=SFRBox.roi.y + odd_y_offset;row< SFRBox.roi.y+size_y+odd_y_offset;row++) { roi_file_Before.at<ushort>(lRow,lCol) = (ushort)img[width*row + col]; lRow++; } lCol++; } ImageWrite(lFileNameBefore,roi_file_Before); roi_file_Before.release(); } lRow = 0; lCol = 0; std::string lFileNameAfter = lFileName + "_AfterRemovingRedPixels.pgm"; // Horz SFR Calc - read cols row by row an convert cv::Mat roi_file2(size_y,(size_x/2),CV_16U,cv::Scalar::all(0)); for (int col=SFRBox.roi.x+odd_x_offset;col< SFRBox.roi.x+size_x+odd_x_offset;col=col+2) { lRow = 0; for (int row=SFRBox.roi.y+odd_y_offset;row< SFRBox.roi.y+size_y+odd_y_offset;row++) { roi_file2.at<ushort>(lRow,lCol) = (ushort)img[width*row + col]; lRow++; //for (int col=0;col< size_x;col=col+2) //{ // for (int row=0;row< size_y;row++) // { farea[index] = (double)( img[width*row + col])/(double)grey_Level; index++; } lCol++; } // now that copy is complete must transpose x and y sizes to match the "rotated" image size_x = SFRBox.roi.height; size_y = SFRBox.roi.width; if (((modeflags.WriteImageLevel >3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) ImageWrite(lFileNameAfter,roi_file2); roi_file2.release(); } // SFRPROC always passed a "vert" edge so rows are always reduced. // TODO: check that /2 rounding errors will not throw things off. size_y = size_y/2; } else if (modeflags.Demosaic == 1) { if (((modeflags.WriteImageLevel >3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) { std::string lFileNameBefore = lFileName + "_BeforeDemosaic.pgm"; cv::Mat roi_file_Before(size_y, size_x,CV_16U,cv::Scalar::all(0)); // Vert SFR Calc - read rows col by col and convert to ratiometric (0 - 1) array. for (int row=SFRBox.roi.y+odd_y_offset;row< SFRBox.roi.y+size_y;row++) { lCol = 0; for (int col=SFRBox.roi.x;col< SFRBox.roi.x+size_x;col++) { roi_file_Before.at<ushort>(lRow,lCol) = (ushort)img[width*row + col]; lCol++; } lRow++; } ImageWrite(lFileNameBefore,roi_file_Before); roi_file_Before.release(); } lRow = 0; lCol = 0; // Demosaic double DemosaicMask1[5][5] = { {0,0,0,0,0}, {0,0,0.25,0,0}, {0,0.25,0,0.25,0}, {0,0,0.25,0,0}, {0,0,0,0,0}, }; double DemosaicMask2[5][5] = { {0,0,-0.25,0,0}, {0,0,0,0,0}, {-0.25,0,1,0,-0.25}, {0,0,0,0,0}, {0,0,-0.25,0,0}, }; for (int row=SFRBox.roi.y+odd_y_offset;row< SFRBox.roi.y+size_y;row += 2) { for (int col=SFRBox.roi.x+odd_x_offset;col< SFRBox.roi.x+size_x;col+=2) { double Mask1 = 0.0; for (int mRow = 0; mRow< 5; mRow++) { for (int mCol = 0; mCol< 5; mCol++) { //cout << "Imag[" << row-2+mRow << "][" << col-2+mCol << "]="<< imgOrg[width*(row-2+mRow) + (col-2+mCol)] << endl; Mask1 += imgOrg[width*(row-2+mRow) + (col-2+mCol)]*DemosaicMask1[mRow][mCol]; } } double Mask2 = 0.0; for (int mRow = 0; mRow< 5; mRow++) { for (int mCol = 0; mCol< 5; mCol++) { Mask2 += imgOrg[width*(row-2+mRow) + (col-2+mCol)]*DemosaicMask2[mRow][mCol]; } } img[width*row + col] = Mask1 + Mask2; } } if (((modeflags.WriteImageLevel >3)&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& (modeflags.WriteImageLevel == 3))) { std::string lFileNameBefore = lFileName + "_AfterDemosaic.pgm"; cv::Mat roi_file_Before(size_y, size_x,CV_16U,cv::Scalar::all(0)); // Vert SFR Calc - read rows col by col and convert to ratiometric (0 - 1) array. for (int row=SFRBox.roi.y+odd_y_offset;row< SFRBox.roi.y+size_y;row++) { lCol = 0; for (int col=SFRBox.roi.x+odd_x_offset;col< SFRBox.roi.x+size_x;col++) { roi_file_Before.at<ushort>(lRow,lCol) = (ushort)img[width*row + col]; lCol++; } lRow++; } ImageWrite(lFileNameBefore,roi_file_Before); roi_file_Before.release(); } for (int row=SFRBox.roi.y+odd_y_offset;row< SFRBox.roi.y+size_y;row++) { for (int col=SFRBox.roi.x+odd_x_offset;col< SFRBox.roi.x+size_x;col++) { farea[index] = (double)( img[width*row + col])/(double)grey_Level; index++; } } } err = sfrProc(&Freq, &disp, &bin_len, farea, (unsigned short)size_x, &size_y, &slope, &numcycles,&center,&off, &R2, g_version, 0, 0); if (!err) { scale = 1/MM_PER_PIX; // Pix per mm double f, sfr, last_f=0, last_sfr=0; double freq, fd_scale; bool score_complete = false; for( i=0; i<bin_len/2; i++) { freq = M_PI*Freq[i]; // Version is always "0" but left over in case needed. /* [-1 0 0 0 1] freq /= 1.0; */ if (g_version & 4) /* [-1 0 1] */ freq /= 2.0; else freq /= 4.0; /* [-1 1] */ if (freq == 0.0) fd_scale = 1.0; else fd_scale = freq / sin(freq); f = Freq[i]*scale; sfr = disp[i]*fd_scale; // look at scaled values to interpolate the limit value // This is a linear iterpolation between the two points in the Freq/SFR arrays that // are above and below the limit value that we want to check. if( (f < Limit_Cymm) && !score_complete) { last_f = f; last_sfr= sfr; } else if( (f >= Limit_Cymm) && !score_complete) { ScoreSFR = last_sfr + (sfr -last_sfr )*((last_f-Limit_Cymm)/(last_f-f)); score_complete = true; } } } // it is possible for the computation of the SFR frequencies to produce Indeterminate results (shows as -1.#IND) which // doesn't flag a bad number in the comparisons. // Check for this here and set value to 0.0 which will fail tests. if( !_finite(ScoreSFR) ) { ScoreSFR = 0.0; } // Freq and disp get allocated inside sfrproc but never free'd might not be an issue. // Not sure this is needed. free(Freq); free(disp); free(farea); // roi_file.release(); free(img); free(imgOrg); //img.release(); if(!err) { SFRBox.SFRValue = ScoreSFR; return ScoreSFR; } else { // any value over 1 is an error. 5 is used just as an example. // It can be replaced by "SFRBox.SFRValue = (double)err;" if needed for debuging SFRBox.SFRValue = 5.0; return (double)err; } } void InitializeDetection() { for ( int i = 0 ; i < MAX_NUMBER_BOXES; i++) { m_AllTargetCenterBoxes[i].x = 0; m_AllTargetCenterBoxes[i].y = 0; m_DetectedTargetCenterBoxes[i] = false; } } void OverlayROIs(UINT8* DisplayImg, int width, int height, SFRPlus & SB) { cv::Mat img_display(height,width,CV_8U,DisplayImg); char ScoreSTR[128]; int i; cv::Size textSize; int baseline; cv::Point s,e,c,t; for(i=0;i<ROI_PER_SLANTBOX;i++) { if(SB.SFRBox[i].inRange) { s.x=SB.SFRBox[i].roi.x; s.y=SB.SFRBox[i].roi.y; e.x =s.x+SB.SFRBox[i].roi.width; e.y =s.y+SB.SFRBox[i].roi.height; c.x = s.x-((s.x-e.x)/2); c.y = s.y-((s.y-e.y)/2); rectangle( img_display, s , e, (128,128,128), 1, 8, 0 ); sprintf(ScoreSTR,"%4.2f",ceilf(SB.SFRBox[i].SFRValue * 100) / 100); textSize = getTextSize(ScoreSTR,cv::FONT_HERSHEY_PLAIN,0.75,1,&baseline); t.x = c.x-(textSize.width/2); t.y = c.y+(textSize.height/2); rectangle(img_display,t,cv::Point(t.x+(textSize.width),t.y-(textSize.height+baseline)),(255,255,255),CV_FILLED); putText(img_display, ScoreSTR, t ,cv::FONT_HERSHEY_PLAIN,0.75,(0,0,0),1); } } } void OverlayROIs_16BPP(UINT8* DisplayImg, int width, int height, SFRPlus & SB) { cv::Mat img_display(height,width,CV_16U,DisplayImg); char ScoreSTR[128]; int i; cv::Size textSize; int baseline; cv::Point s,e,c,t; for(i=0;i<ROI_PER_SLANTBOX;i++) { if(SB.SFRBox[i].inRange) { s.x=SB.SFRBox[i].roi.x; s.y=SB.SFRBox[i].roi.y; e.x =s.x+SB.SFRBox[i].roi.width; e.y =s.y+SB.SFRBox[i].roi.height; c.x = s.x-((s.x-e.x)/2); c.y = s.y-((s.y-e.y)/2); rectangle( img_display, s , e, (128,128,128), 1, 8, 0 ); sprintf(ScoreSTR,"%4.2f",ceilf(SB.SFRBox[i].SFRValue * 100) / 100); textSize = getTextSize(ScoreSTR,cv::FONT_HERSHEY_PLAIN,0.75,1,&baseline); t.x = c.x-(textSize.width/2); t.y = c.y+(textSize.height/2); rectangle(img_display,t,cv::Point(t.x+(textSize.width),t.y-(textSize.height+baseline)),(255,255,255),CV_FILLED); putText(img_display, ScoreSTR, t ,cv::FONT_HERSHEY_PLAIN,0.75,(0,0,0),1); } } } void InitializeBoxes() { for ( int i = 0 ; i < MAX_NUMBER_BOXES; i++) { Boxes[i].box_ctr.x = 0; Boxes[i].box_ctr.y = 0; for ( int j = 0; j < ROI_PER_SLANTBOX; j++) { Boxes[i].roi_used[j] = false; Boxes[i].SFRBox[j].DesiredFreq = 0; Boxes[i].SFRBox[j].inRange = false; Boxes[i].SFRBox[j].isHorz = false; Boxes[i].SFRBox[j].roi.x = 0; Boxes[i].SFRBox[j].roi.y = 0; Boxes[i].SFRBox[j].roi.width = 0; Boxes[i].SFRBox[j].roi.height = 0; Boxes[i].SFRBox[j].x_Delta = 0; Boxes[i].SFRBox[j].y_Delta = 0; Boxes[i].SFRBox[j].SFRLimit = 0; Boxes[i].SFRBox[j].SFRValue = 0; Boxes[i].SFRBox[j].sideused = NEVER; } Boxes[i].SB_Size = 0; } } void Score_Image(int argc, char* argv[], const flags_t modeflags) { bool lSaturated = false; InitializeBoxes(); InitializeDetection(); char szChar[1024] = {0}; strcpy(szChar, argv[argc]); cout << "Filename: " << szChar << endl; size_t lLength = strlen(szChar); PGMData* dataArray_Hi_16BitsPerPixel = new PGMData(); PGMData* dataArray_Hi_12BitsPerPixel = new PGMData(); int lCol = 0; int lRow = 0; if (((szChar[lLength-1] == 'm') || (szChar[lLength-1] == 'M')) && ((szChar[lLength-2] == 'g') || (szChar[lLength-2] == 'G')) && ((szChar[lLength-3] == 'p')|| (szChar[lLength-3] == 'P'))) { // Read PGM data as a 2d Matrix cout << "Reading .pgm file" << endl; dataArray_Hi_16BitsPerPixel = readPGM(szChar, dataArray_Hi_16BitsPerPixel); lCol = dataArray_Hi_16BitsPerPixel->col; lRow = dataArray_Hi_16BitsPerPixel->row; dataArray_Hi_16BitsPerPixel->max_gray = (1<<16)-1; // Horizontally Flip the image for (int i = 0; i < dataArray_Hi_16BitsPerPixel->row; ++i) { for (int j = 0; j < dataArray_Hi_16BitsPerPixel->col/2; ++j) { int temp = dataArray_Hi_16BitsPerPixel->matrix[i][j]; dataArray_Hi_16BitsPerPixel->matrix[i][j] = dataArray_Hi_16BitsPerPixel->matrix[i][dataArray_Hi_16BitsPerPixel->col -1 -j]; dataArray_Hi_16BitsPerPixel->matrix[i][dataArray_Hi_16BitsPerPixel->col -1 -j] = temp; } } writePGM_16("Test.pgm", dataArray_Hi_16BitsPerPixel,0,0,dataArray_Hi_16BitsPerPixel->row,dataArray_Hi_16BitsPerPixel->col,dataArray_Hi_16BitsPerPixel->max_gray,false); } else if (((szChar[lLength-1] == 'g') || (szChar[lLength-1] == 'G')) && ((szChar[lLength-2] == 'n') || (szChar[lLength-2] == 'N')) && ((szChar[lLength-3] == 'p')|| (szChar[lLength-3] == 'P'))) { cout << "Reading .png file" << endl; ILboolean result = ilLoadImage( szChar ) ; if(!result) { cout << "Unable to read: " << szChar << endl; DelayExit(1); } int lSize = ilGetInteger( IL_IMAGE_SIZE_OF_DATA ) ; //data->row, data->col int lBits_Per_Pixel = ilGetInteger(IL_IMAGE_BITS_PER_PIXEL); dataArray_Hi_16BitsPerPixel->col = ilGetInteger(IL_IMAGE_WIDTH); dataArray_Hi_16BitsPerPixel->row = ilGetInteger(IL_IMAGE_HEIGHT); dataArray_Hi_16BitsPerPixel->max_gray = (int)pow(2.0,lBits_Per_Pixel) ; setPGM(ilGetData(),dataArray_Hi_16BitsPerPixel); lCol = ilGetInteger(IL_IMAGE_WIDTH); lRow = ilGetInteger(IL_IMAGE_HEIGHT); } else { cout << "Unsupported file format: " << szChar << endl; delete dataArray_Hi_12BitsPerPixel; delete dataArray_Hi_16BitsPerPixel; exit(1); } //dataArray_Hi_16BitsPerPixel = readPGM(szChar, dataArray_Hi_16BitsPerPixel); dataArray_Hi_12BitsPerPixel->col = lCol; dataArray_Hi_12BitsPerPixel->row = lRow; dataArray_Hi_12BitsPerPixel->matrix = allocate_dynamic_matrix(dataArray_Hi_12BitsPerPixel->row, dataArray_Hi_12BitsPerPixel->col); // Convert to 12 bit image for (int i = 0; i < dataArray_Hi_16BitsPerPixel->row; ++i) { for (int j = 0; j < dataArray_Hi_16BitsPerPixel->col; ++j) { // Division by 16 because the data are store in the 12 MSB not the 12 LSB dataArray_Hi_12BitsPerPixel->matrix[i][j] = (dataArray_Hi_16BitsPerPixel->matrix[i][j])>>4; } } // Reset maximum gray value for 12 bpp data dataArray_Hi_12BitsPerPixel->max_gray = 4095; strcat(szChar, "_12bits.pgm"); if (modeflags.WriteImageLevel >= 0) { writePGM_16(szChar, dataArray_Hi_12BitsPerPixel,0,0,dataArray_Hi_12BitsPerPixel->row,dataArray_Hi_12BitsPerPixel->col,dataArray_Hi_12BitsPerPixel->max_gray); cout << szChar << " is Created" << endl; } char szChar_DD[1024] = {0}; unsigned int index2= 0; size_t length2= strlen(szChar); for(int j=0; j<length2; j++) { //szChar_DD[index2++]= szChar[j]; if(szChar[j]!= '\\') { szChar_DD[index2++]= szChar[j]; } else { strcat(szChar_DD,"\\\\"); index2+= 2; } } //////////////////////////////////////////////////// // C O M M O N S T A R T I N G P O I N T //////////////////////////////////////////////////// cv::Mat lImageData_12BitsPerPixel = cv::imread(szChar_DD, CV_LOAD_IMAGE_ANYDEPTH); if (lImageData_12BitsPerPixel.rows == 0 ) { cout << "Error reading the 12 bits Per Pixel Image" << endl; DelayExit(1); } cv::Mat lImageData_32BitsPerPixel; lImageData_12BitsPerPixel.convertTo(lImageData_32BitsPerPixel,CV_32F); cv::Mat lImageDataDisplay_12BitsPerPixel = cv::imread(szChar_DD, CV_LOAD_IMAGE_ANYDEPTH); if (lImageDataDisplay_12BitsPerPixel.rows == 0 ) { cout << "Error reading the 12 bits Per Pixel Display Image" << endl; cout << "Press Any Key to Exit" << endl; getchar(); } int lNumberOfDetectedBoxes; int SaturationX = 0; int SaturationY = 0; switch (modeflags.lTargetDetection) { case 1: { cv::Mat lImageDataDisplay_32BitsPerPixel; lImageDataDisplay_12BitsPerPixel.convertTo(lImageDataDisplay_32BitsPerPixel,CV_32F); for (int i = 0; i < lImageDataDisplay_12BitsPerPixel.rows; ++i) { for (int j = 0; j < lImageDataDisplay_12BitsPerPixel.cols; ++j) { // to avoid the embedded data if ((i >= 4) && (i <= 945)) { if ((modeflags.lRunningMode == 1) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 2048)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } if ((modeflags.lRunningMode == 2) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 3800)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } } } if (lSaturated) break; } if(!lSaturated) lNumberOfDetectedBoxes = LocateMultipleFeatures(lImageData_32BitsPerPixel, lImageDataDisplay_32BitsPerPixel, lImageDataDisplay_32BitsPerPixel.cols, lImageDataDisplay_32BitsPerPixel.rows); } break; case 2: { cv::Mat lImageDataDisplay_8BitsPerPixel = cv::Mat::zeros(lImageDataDisplay_12BitsPerPixel.rows, lImageDataDisplay_12BitsPerPixel.cols, CV_8U); //lImageDataDisplay_12BitsPerPixel.convertTo(lImageDataDisplay_8BitsPerPixel,CV_8U); for (int i = 0; i < lImageDataDisplay_12BitsPerPixel.rows; ++i) { for (int j = 0; j < lImageDataDisplay_12BitsPerPixel.cols; ++j) { // to avoid the embedded data if ((i >= 4) && (i <= 945)) { if ((modeflags.lRunningMode == 1) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 2048)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } if ((modeflags.lRunningMode == 2) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 3800)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } } // Division by 16 lImageDataDisplay_8BitsPerPixel.at<char>(i,j) = lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) / 16; } if (lSaturated) break; } if(!lSaturated) lNumberOfDetectedBoxes = LocateMultipleFeaturesDetection(lImageDataDisplay_8BitsPerPixel, lImageDataDisplay_12BitsPerPixel, lImageDataDisplay_8BitsPerPixel.cols, lImageDataDisplay_8BitsPerPixel.rows, modeflags); } break; case 3: { cout << "Detect Objects and check for Saturation" << endl; cv::Mat lImageDataDisplay_8BitsPerPixel = cv::Mat::zeros(lImageDataDisplay_12BitsPerPixel.rows, lImageDataDisplay_12BitsPerPixel.cols, CV_8U); //lImageDataDisplay_12BitsPerPixel.convertTo(lImageDataDisplay_8BitsPerPixel,CV_8U); for (int i = 0; i < lImageDataDisplay_12BitsPerPixel.rows; ++i) { for (int j = 0; j < lImageDataDisplay_12BitsPerPixel.cols; ++j) { // to avoid the embedded data if ((i >= 4) && (i <= 955)) { if ((modeflags.lRunningMode == 1) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 2048)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } if ((modeflags.lRunningMode == 2) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 3800)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } } // Division by 16 lImageDataDisplay_8BitsPerPixel.at<char>(i,j) = lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) / 16; } // End for j if (lSaturated) { break; } } // End for i if(!lSaturated) { LocateMultipleFeaturesDetection2(lImageDataDisplay_8BitsPerPixel, lImageDataDisplay_12BitsPerPixel, lImageDataDisplay_8BitsPerPixel.cols, lImageDataDisplay_8BitsPerPixel.rows, modeflags); } } break; default: cout << "Not supported approach" << endl; exit(1); } if (lSaturated && modeflags.lRunningMode==2) { cout << "Saturated Image at Image[" << SaturationX << "][" << SaturationY << "] = " << lImageDataDisplay_12BitsPerPixel.at<ushort>(SaturationY,SaturationX) << endl; cout << "Press Any Key to Continue" << endl; getchar(); } if (modeflags.lTargetDetection != 3) { cout << endl << "Initializing ROIs" << endl; InitializeROIs(szCharWithoutExePath); } else { cout << endl << "Detected ROIs" << endl; bool lIsHorz = true; for (int boxNumber = 0; boxNumber < MAX_NUMBER_BOXES; boxNumber++) { Boxes[boxNumber].SB_Size = (AllTargetBoxes[boxNumber].m_TargetBoxHeight + AllTargetBoxes[boxNumber].m_TargetBoxWidth)/2; // Apply "rules" based on rows columns or both. Set defautls for all boxes first and then modify based on rules Boxes[boxNumber].roi_used[N] = true; Boxes[boxNumber].roi_used[S] = true; Boxes[boxNumber].roi_used[E] = true; Boxes[boxNumber].roi_used[W] = true; Boxes[boxNumber].box_ctr.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y; Boxes[boxNumber].box_ctr.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x; for(int i = 0;i<ROI_PER_SLANTBOX;i++) { Boxes[boxNumber].SFRBox[i].isHorz = (i%2 == 0)? true: false; Boxes[boxNumber].SFRBox[i].roi.width = (i%2 == 0)? (((Boxes[boxNumber].SB_Size*2/3)%2 !=0)? (Boxes[boxNumber].SB_Size*2/3)-1:(Boxes[boxNumber].SB_Size*2/3)): (((Boxes[boxNumber].SB_Size*1/3)%2 != 0)? (Boxes[boxNumber].SB_Size*1/3)-1:(Boxes[boxNumber].SB_Size*1/3)); Boxes[boxNumber].SFRBox[i].roi.height = (i%2 == 0)? (((Boxes[boxNumber].SB_Size*1/3)%2 !=0)?(Boxes[boxNumber].SB_Size*1/3)-1:(Boxes[boxNumber].SB_Size*1/3)): (((Boxes[boxNumber].SB_Size*2/3)%2 != 0)? (Boxes[boxNumber].SB_Size*2/3)-1:(Boxes[boxNumber].SB_Size*2/3)); Boxes[boxNumber].SFRBox[i].x_Delta = 10; Boxes[boxNumber].SFRBox[i].y_Delta = 10; switch (i) { case 0 : //North Boxes[boxNumber].SFRBox[i].roi.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x - Boxes[boxNumber].SFRBox[i].roi.width/2 - Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y - AllTargetBoxes[boxNumber].m_TargetBoxHeight/2 - Boxes[boxNumber].SFRBox[i].roi.height/2 + Boxes[boxNumber].SFRBox[i].y_Delta; break; case 2 : //south Boxes[boxNumber].SFRBox[i].roi.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x - Boxes[boxNumber].SFRBox[i].roi.width/2 + Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y + AllTargetBoxes[boxNumber].m_TargetBoxHeight/2 - Boxes[boxNumber].SFRBox[i].roi.height/2 - Boxes[boxNumber].SFRBox[i].y_Delta; break; case 1 : // EAST Boxes[boxNumber].SFRBox[i].roi.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x + AllTargetBoxes[boxNumber].m_TargetBoxWidth/2- Boxes[boxNumber].SFRBox[i].roi.width/2 - Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y - Boxes[boxNumber].SFRBox[i].roi.height/2 - Boxes[boxNumber].SFRBox[i].y_Delta; break; case 3 : //West Boxes[boxNumber].SFRBox[i].roi.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x - AllTargetBoxes[boxNumber].m_TargetBoxWidth/2- Boxes[boxNumber].SFRBox[i].roi.width/2 + Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y - Boxes[boxNumber].SFRBox[i].roi.height/2 + Boxes[boxNumber].SFRBox[i].y_Delta; break; default : break; } if ( Boxes[boxNumber].SFRBox[i].roi.x < 0) Boxes[boxNumber].SFRBox[i].roi.x = 0; if (Boxes[boxNumber].SFRBox[i].roi.y < 0) Boxes[boxNumber].SFRBox[i].roi.y = 0; Boxes[boxNumber].SFRBox[i].isHorz = lIsHorz; lIsHorz = !lIsHorz; Boxes[boxNumber].SFRBox[i].DesiredFreq = 67.0; Boxes[boxNumber].SFRBox[i].SFRLimit = 0.5; Boxes[boxNumber].SFRBox[i].sideused = static_cast<ROIUSAGE>(2); Boxes[boxNumber].SFRBox[i].inRange = static_cast<bool>(0); Boxes[boxNumber].SFRBox[i].SFRValue = 0.0; } } } for ( int lRoi = 0; lRoi< ROI_PER_SLANTBOX; lRoi++) { for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { if ((Boxes[lBoxes].box_ctr.x != 0 ) && (Boxes[lBoxes].box_ctr.y != 0 )) { //Boxes[lBoxes].SFRBox[lRoi].roi.height = 36; cv::Point p1; //Boxes[lBoxes].SFRBox[lRoi].roi.x += 6; //if (Boxes[lBoxes].SFRBox[lRoi].roi.y > 6) // Boxes[lBoxes].SFRBox[lRoi].roi.y -= 6; p1.x = Boxes[lBoxes].SFRBox[lRoi].roi.x; p1.y = Boxes[lBoxes].SFRBox[lRoi].roi.y; cv::Point p2; p2.x = Boxes[lBoxes].SFRBox[lRoi].roi.x + Boxes[lBoxes].SFRBox[lRoi].roi.width; p2.y = Boxes[lBoxes].SFRBox[lRoi].roi.y + Boxes[lBoxes].SFRBox[lRoi].roi.height; rectangle( lImageDataDisplay_12BitsPerPixel, p1, p2, cv::Scalar::all(0), 1, 8, 0 ); } } } if (modeflags.WriteImageLevel >= 1) { strcat(szChar_DD, "_ObjectDetection.pgm"); ImageWrite(szChar_DD,lImageDataDisplay_12BitsPerPixel); } cout << endl << "Applying RCC Filter and Scores Slant-Edges" << endl; // change 2d Matrix into 1d vector wchar_t *DataVector_Hi = new wchar_t[dataArray_Hi_16BitsPerPixel->row *dataArray_Hi_16BitsPerPixel->col]; memset(DataVector_Hi,0, dataArray_Hi_16BitsPerPixel->row *dataArray_Hi_16BitsPerPixel->col *2); int k_Hi = 0; for (int i = 0; i < dataArray_Hi_16BitsPerPixel->row; ++i) { for (int j = 0; j < dataArray_Hi_16BitsPerPixel->col; ++j) { DataVector_Hi[k_Hi] = static_cast<wchar_t>(static_cast<int>(dataArray_Hi_16BitsPerPixel->matrix[i][j])); k_Hi++; } } for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { for ( int lRoi = 0; lRoi< ROI_PER_SLANTBOX; lRoi++) { if ((Boxes[lBoxes].box_ctr.x != 0 ) && (Boxes[lBoxes].box_ctr.y != 0 )) { CalcSFR_Hi(DataVector_Hi, Boxes[lBoxes].SFRBox[lRoi], dataArray_Hi_16BitsPerPixel->col, dataArray_Hi_16BitsPerPixel->row, dataArray_Hi_16BitsPerPixel->max_gray, 0.00375, modeflags); } } } cout <<"Data"<<" "; cout <<" X "<<" "; cout <<" Y "<<" "; for (int k = 0; k < MAX_NUMBER_BOXES; k++) cout <<"Box"<<k<< " "; cout<<endl; for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { cout <<Boxes[lBoxes].box_ctr.x <<" "; } cout<<endl; for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { cout <<Boxes[lBoxes].box_ctr.y <<" "; } cout<<endl; for ( int lRoi = 0; lRoi< ROI_PER_SLANTBOX; lRoi++) { for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { cout <<Boxes[lBoxes].SFRBox[lRoi].SFRValue <<" "; } cout<<endl; } std::ofstream MyFile; MyFile.open ("DataSheet.csv", ios::out | ios::ate | ios::app | ios::binary); if (!Once) { MyFile << "SN,Version,Time,Demosaic Appraoch, Detection Approach, Running Mode,X,Y,ROI0,ROI1,ROI2,ROI3,X,Y,ROI4,ROI5,ROI6,ROI7,X,Y,ROI8,ROI9,ROI10,ROI11,X,Y,ROI12,ROI13,ROI14,ROI15,X,Y,ROI16,ROI17,ROI18,ROI19,X,Y,ROI20,ROI21,ROI22,ROI23,X,Y,ROI24,ROI25,ROI26,ROI27,X,Y,ROI28,ROI29,ROI30,ROI31,X,Y,ROI32,ROI33,ROI34,ROI35,X,Y,ROI36,ROI37,ROI38,ROI39,X,Y,ROI40,ROI41,ROI42,ROI43" << endl; Once = true; } MyFile << szChar << ","; MyFile << VERSION << "." << RELEASE << "." << BUILD<<","; char s[100]; time_t now = time(NULL); struct tm * p = localtime(&now); strftime(s, 100, "%A %B:%d:%Y", p); MyFile << s << "," ; switch (modeflags.Demosaic) { case 0:MyFile <<"Row/Col removal,"; break; case 1: MyFile <<"Modified Gradient,"; break; } switch (modeflags.lTargetDetection) { case 1:MyFile <<"Template Match,"; break; case 2: MyFile <<"Circle Detection,"; break; case 3: MyFile <<"Edge Detection,"; break; } switch (modeflags.lRunningMode) { case 1:MyFile <<"HDR,"; break; case 2: MyFile <<"Linear,"; break; } for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { MyFile << Boxes[lBoxes].box_ctr.x <<"," << Boxes[lBoxes].box_ctr.y <<","; for ( int lRoi = 0; lRoi< ROI_PER_SLANTBOX; lRoi++) { MyFile <<Boxes[lBoxes].SFRBox[lRoi].SFRValue <<","; } } MyFile <<endl; MyFile.close(); //getchar(); delete dataArray_Hi_12BitsPerPixel; delete dataArray_Hi_16BitsPerPixel; } void Score_Image(unsigned char *pBuffer, const flags_t modeflags) { bool lSaturated = false; PGMData* dataArray_Hi_12BitsPerPixel = new PGMData(); InitializeBoxes(); InitializeDetection(); // Get PGM data as a 2d Matrix dataArray_Hi_12BitsPerPixel->col = DEFAULT_IMAGE_WIDTH; dataArray_Hi_12BitsPerPixel->row = DEFAULT_IMAGE_HEIGHT; dataArray_Hi_12BitsPerPixel->matrix = allocate_dynamic_matrix(dataArray_Hi_12BitsPerPixel->row, dataArray_Hi_12BitsPerPixel->col); //dataArray_Hi_12BitsPerPixel = readPGM(szChar, dataArray_Hi_12BitsPerPixel); // Convert to 12 bit image int pBuffer_Counter = 0; for (int i = 0; i < dataArray_Hi_12BitsPerPixel->row; ++i) { for (int j = 0; j < dataArray_Hi_12BitsPerPixel->col; ++j) { unsigned short pixel_firstbyte = pBuffer[pBuffer_Counter]; unsigned short pixel_secondbyte = pBuffer[pBuffer_Counter+1]; unsigned short pixel = (pixel_secondbyte << 8) | pixel_firstbyte; dataArray_Hi_12BitsPerPixel->matrix[i][j] = static_cast<wchar_t>(static_cast<int>(pixel)); pBuffer_Counter += 2; } } dataArray_Hi_12BitsPerPixel->max_gray = 4095; //strcat(szChar, "_12bits.pgm"); if (((modeflags.WriteImageLevel >=0)&& ((modeflags.WriteImageLevel < 2)&&(modeflags.WriteImageLevel > 3) )&& (lKey == NO_KEY_PRESSED)) || (((lKey == 0x73)|| (lKey == 0x53))&& ((modeflags.WriteImageLevel == 2)||(modeflags.WriteImageLevel == 3)))) { writePGM_16("test_12bits.pgm", dataArray_Hi_12BitsPerPixel,0,0,dataArray_Hi_12BitsPerPixel->row,dataArray_Hi_12BitsPerPixel->col,dataArray_Hi_12BitsPerPixel->max_gray,DeAllocate12BPP_Memory); cout << "test_12bits.pgm" << " is Created" << endl; } //////////////////////////////////////////////////// // C O M M O N S T A R T I N G P O I N T //////////////////////////////////////////////////// cv::Mat lImageData_12BitsPerPixel = cv::Mat(dataArray_Hi_12BitsPerPixel->row, dataArray_Hi_12BitsPerPixel->col, CV_16UC1, pBuffer); if (lImageData_12BitsPerPixel.rows == 0 ) { cout <<"error reading the 12 bits Per Pixel Image" << endl; cout << "Press Any Key to Exit" << endl; getchar(); } cv::Mat lImageData_32BitsPerPixel; lImageData_12BitsPerPixel.convertTo(lImageData_32BitsPerPixel,CV_32F); cv::Mat lImageDataDisplay_12BitsPerPixel = cv::Mat(dataArray_Hi_12BitsPerPixel->row, dataArray_Hi_12BitsPerPixel->col, CV_16UC1, pBuffer); if (lImageDataDisplay_12BitsPerPixel.rows == 0 ) { cout <<"error reading the 12 bits Per Pixel Display Image" << endl; cout << "Press Any Key to Exit" << endl; getchar(); } cv::Mat lImageDataDisplay_8BitsPerPixel; int lNumberOfDetectedBoxes; int SaturationX = 0; int SaturationY = 0; switch (modeflags.lTargetDetection) { case 1: { cv::Mat lImageDataDisplay_32BitsPerPixel; lImageDataDisplay_12BitsPerPixel.convertTo(lImageDataDisplay_32BitsPerPixel,CV_32F); for (int i = 0; i < lImageDataDisplay_12BitsPerPixel.rows; ++i) { for (int j = 0; j < lImageDataDisplay_12BitsPerPixel.cols; ++j) { // to avoid the embedded data if ((i >= 4) && (i <= 945)) { if ((modeflags.lRunningMode == 1) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 2048)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } if ((modeflags.lRunningMode == 2) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 3800)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } } } if (lSaturated) break; } if(!lSaturated) lNumberOfDetectedBoxes = LocateMultipleFeatures(lImageData_32BitsPerPixel, lImageDataDisplay_32BitsPerPixel, lImageDataDisplay_32BitsPerPixel.cols, lImageDataDisplay_32BitsPerPixel.rows); } break; case 2: { lImageDataDisplay_8BitsPerPixel = cv::Mat::zeros(lImageDataDisplay_12BitsPerPixel.rows, lImageDataDisplay_12BitsPerPixel.cols, CV_8U); //lImageDataDisplay_12BitsPerPixel.convertTo(lImageDataDisplay_8BitsPerPixel,CV_8U); for (int i = 0; i < lImageDataDisplay_12BitsPerPixel.rows; ++i) { for (int j = 0; j < lImageDataDisplay_12BitsPerPixel.cols; ++j) { // to avoid the embedded data if ((i >= 4) && (i <= 945)) { if ((modeflags.lRunningMode == 1) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 2048)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } if ((modeflags.lRunningMode == 2) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 3800)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } } // Division by 16 lImageDataDisplay_8BitsPerPixel.at<char>(i,j) = lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) / 16; } if (lSaturated) break; } if(!lSaturated) lNumberOfDetectedBoxes = LocateMultipleFeaturesDetection(lImageDataDisplay_8BitsPerPixel, lImageDataDisplay_12BitsPerPixel, lImageDataDisplay_8BitsPerPixel.cols, lImageDataDisplay_8BitsPerPixel.rows, modeflags); } break; case 3: { // cout << "Detect Objects and check for Saturation" << endl; lImageDataDisplay_8BitsPerPixel = cv::Mat::zeros(lImageDataDisplay_12BitsPerPixel.rows, lImageDataDisplay_12BitsPerPixel.cols, CV_8U); //lImageDataDisplay_12BitsPerPixel.convertTo(lImageDataDisplay_8BitsPerPixel,CV_8U); for (int i = 0; i < lImageDataDisplay_12BitsPerPixel.rows; ++i) { for (int j = 0; j < lImageDataDisplay_12BitsPerPixel.cols; ++j) { // to avoid the embedded data if ((i >= 4) && (i <= 945)) { if ((modeflags.lRunningMode == 1) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 2048)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } if ((modeflags.lRunningMode == 2) && (lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) > 3800)) { lSaturated = true; SaturationX = j; SaturationY = i; break; } } // Division by 16 lImageDataDisplay_8BitsPerPixel.at<uchar>(i,j) = lImageDataDisplay_12BitsPerPixel.at<ushort>(i,j) / 16; } } // Marwan skipped the next step if we had saturated pixels, do we still need that? LocateMultipleFeaturesDetection2(lImageDataDisplay_8BitsPerPixel, lImageDataDisplay_12BitsPerPixel, lImageDataDisplay_8BitsPerPixel.cols, lImageDataDisplay_8BitsPerPixel.rows, modeflags); } break; default: cout << "Not supported approach" << endl; return; } if (modeflags.lTargetDetection != 3) { // cout << endl << "Initializing ROIs" << endl; InitializeROIs(szCharWithoutExePath); } else { // cout << endl << "Detected ROIs" << endl; bool lIsHorz = true; for (int boxNumber = 0; boxNumber < MAX_NUMBER_BOXES; boxNumber++) { Boxes[boxNumber].SB_Size = (AllTargetBoxes[boxNumber].m_TargetBoxHeight + AllTargetBoxes[boxNumber].m_TargetBoxWidth)/2; // Apply "rules" based on rows columns or both. Set defautls for all boxes first and then modify based on rules Boxes[boxNumber].roi_used[N] = true; Boxes[boxNumber].roi_used[S] = true; Boxes[boxNumber].roi_used[E] = true; Boxes[boxNumber].roi_used[W] = true; Boxes[boxNumber].box_ctr.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y; Boxes[boxNumber].box_ctr.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x; for(int i = 0;i<ROI_PER_SLANTBOX;i++) { Boxes[boxNumber].SFRBox[i].isHorz = (i%2 == 0)? true: false; Boxes[boxNumber].SFRBox[i].roi.width = (i%2 == 0)? (((Boxes[boxNumber].SB_Size*2/3)%2 !=0)? (Boxes[boxNumber].SB_Size*2/3)-1:(Boxes[boxNumber].SB_Size*2/3)): (((Boxes[boxNumber].SB_Size*1/3)%2 != 0)? (Boxes[boxNumber].SB_Size*1/3)-1:(Boxes[boxNumber].SB_Size*1/3)); Boxes[boxNumber].SFRBox[i].roi.height = (i%2 == 0)? (((Boxes[boxNumber].SB_Size*1/3)%2 !=0)?(Boxes[boxNumber].SB_Size*1/3)-1:(Boxes[boxNumber].SB_Size*1/3)): (((Boxes[boxNumber].SB_Size*2/3)%2 != 0)? (Boxes[boxNumber].SB_Size*2/3)-1:(Boxes[boxNumber].SB_Size*2/3)); Boxes[boxNumber].SFRBox[i].x_Delta = 10; Boxes[boxNumber].SFRBox[i].y_Delta = 10; switch (i) { case 0 : //North Boxes[boxNumber].SFRBox[i].roi.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x - Boxes[boxNumber].SFRBox[i].roi.width/2 - Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y - AllTargetBoxes[boxNumber].m_TargetBoxHeight/2 - Boxes[boxNumber].SFRBox[i].roi.height/2 + Boxes[boxNumber].SFRBox[i].y_Delta; break; case 2 : //south Boxes[boxNumber].SFRBox[i].roi.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x - Boxes[boxNumber].SFRBox[i].roi.width/2 + Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y + AllTargetBoxes[boxNumber].m_TargetBoxHeight/2 - Boxes[boxNumber].SFRBox[i].roi.height/2 - Boxes[boxNumber].SFRBox[i].y_Delta; break; case 1 : // EAST Boxes[boxNumber].SFRBox[i].roi.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x + AllTargetBoxes[boxNumber].m_TargetBoxWidth/2- Boxes[boxNumber].SFRBox[i].roi.width/2 - Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y - Boxes[boxNumber].SFRBox[i].roi.height/2 - Boxes[boxNumber].SFRBox[i].y_Delta; break; case 3 : //West Boxes[boxNumber].SFRBox[i].roi.x = AllTargetBoxes[boxNumber].m_TargetBoxCenter.x - AllTargetBoxes[boxNumber].m_TargetBoxWidth/2- Boxes[boxNumber].SFRBox[i].roi.width/2 + Boxes[boxNumber].SFRBox[i].x_Delta; Boxes[boxNumber].SFRBox[i].roi.y = AllTargetBoxes[boxNumber].m_TargetBoxCenter.y - Boxes[boxNumber].SFRBox[i].roi.height/2 + Boxes[boxNumber].SFRBox[i].y_Delta; break; default : break; } if ( Boxes[boxNumber].SFRBox[i].roi.x < 0) Boxes[boxNumber].SFRBox[i].roi.x = 0; if (Boxes[boxNumber].SFRBox[i].roi.y < 0) Boxes[boxNumber].SFRBox[i].roi.y = 0; Boxes[boxNumber].SFRBox[i].isHorz = lIsHorz; lIsHorz = !lIsHorz; Boxes[boxNumber].SFRBox[i].DesiredFreq = 67.0; Boxes[boxNumber].SFRBox[i].SFRLimit = 0.5; Boxes[boxNumber].SFRBox[i].sideused = static_cast<ROIUSAGE>(2); Boxes[boxNumber].SFRBox[i].inRange = static_cast<bool>(1); Boxes[boxNumber].SFRBox[i].SFRValue = 0.0; } } } for ( int lRoi = 0; lRoi< ROI_PER_SLANTBOX; lRoi++) { for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { if ((Boxes[lBoxes].box_ctr.x != 0 ) && (Boxes[lBoxes].box_ctr.y != 0 )) { //Boxes[lBoxes].SFRBox[lRoi].roi.height = 36; cv::Point p1; //Boxes[lBoxes].SFRBox[lRoi].roi.x += 6; //if (Boxes[lBoxes].SFRBox[lRoi].roi.y > 6) // Boxes[lBoxes].SFRBox[lRoi].roi.y -= 6; p1.x = Boxes[lBoxes].SFRBox[lRoi].roi.x; p1.y = Boxes[lBoxes].SFRBox[lRoi].roi.y; cv::Point p2; p2.x = Boxes[lBoxes].SFRBox[lRoi].roi.x + Boxes[lBoxes].SFRBox[lRoi].roi.width; p2.y = Boxes[lBoxes].SFRBox[lRoi].roi.y + Boxes[lBoxes].SFRBox[lRoi].roi.height; rectangle( lImageDataDisplay_12BitsPerPixel, p1, p2, cv::Scalar::all(0), 1, 8, 0 ); } } } //if (modeflags.WriteImageLevel >= 1) //{ // strcat(szChar_DD, "_ObjectDetection.pgm"); // bool resu= ImageWrite(szChar_DD,lImageDataDisplay_12BitsPerPixel); //} // cout << endl << "Applying RCC Filter and Scores Slant-Edges" << endl; // change 2d Matrix into 1d vector wchar_t *DataVector_Hi = new wchar_t[dataArray_Hi_12BitsPerPixel->row *dataArray_Hi_12BitsPerPixel->col]; memset(DataVector_Hi,0, dataArray_Hi_12BitsPerPixel->row *dataArray_Hi_12BitsPerPixel->col *2); int k_Hi = 0; for (int i = 0; i < dataArray_Hi_12BitsPerPixel->row; ++i) { for (int j = 0; j < dataArray_Hi_12BitsPerPixel->col; ++j) { DataVector_Hi[k_Hi] = static_cast<wchar_t>(static_cast<int>(dataArray_Hi_12BitsPerPixel->matrix[i][j])); k_Hi++; } } for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { for ( int lRoi = 0; lRoi< ROI_PER_SLANTBOX; lRoi++) { if ((Boxes[lBoxes].box_ctr.x != 0 ) && (Boxes[lBoxes].box_ctr.y != 0 )) CalcSFR_Hi(DataVector_Hi, Boxes[lBoxes].SFRBox[lRoi], dataArray_Hi_12BitsPerPixel->col, dataArray_Hi_12BitsPerPixel->row, dataArray_Hi_12BitsPerPixel->max_gray, 0.00375, modeflags); } } if(Display) { //0.5 FOV cv::circle(lImageDataDisplay_8BitsPerPixel,cv::Point(640,480),400,CV_RGB(100,100,100),3,4); //0.7 FOV cv::circle(lImageDataDisplay_8BitsPerPixel,cv::Point(640,480),560,CV_RGB(100,100,100),3,4); for ( int lBoxNumber = 0; lBoxNumber < MAX_NUMBER_BOXES; lBoxNumber++) { //mTRWCalc.UpdateROIs(half_width,half_height,mTRWCalc.m_BoxesFilteredSFR[lBoxNumber]); OverlayROIs(lImageDataDisplay_8BitsPerPixel.data, lImageDataDisplay_8BitsPerPixel.cols,lImageDataDisplay_8BitsPerPixel.rows,Boxes[lBoxNumber]); OverlayROIs_16BPP(lImageDataDisplay_12BitsPerPixel.data, lImageDataDisplay_12BitsPerPixel.cols,lImageDataDisplay_12BitsPerPixel.rows,Boxes[lBoxNumber]); } //cv::Mat pano = cv::imread(result_name , CV_LOAD_IMAGE_GRAYSCALE); //cv::convertScaleAbs(lImageDataDisplay_8BitsPerPixel,lImageDataDisplay_8BitsPerPixel); imshow( "DisplayWindow", lImageDataDisplay_8BitsPerPixel ); if ((((lKey == 0x73)|| (lKey == 0x53))&& ((modeflags.WriteImageLevel == 2)||(modeflags.WriteImageLevel == 3)))|| (((modeflags.WriteImageLevel < 2)&&(modeflags.WriteImageLevel > 3))&& (lKey == NO_KEY_PRESSED))) { ostringstream convert; // stream used for the conversion convert << ImageCounter; // insert the textual representation of 'Number' in the characters in the stream //Result = convert.str(); // set 'Result' to the contents of the stream cv::string result_name = "image_" + convert.str() + ".pgm"; ImageWrite(result_name, lImageDataDisplay_8BitsPerPixel); } } if ((((lKey == 0x73)|| (lKey == 0x53))&& ((modeflags.WriteImageLevel == 2)||(modeflags.WriteImageLevel == 3)))|| (((modeflags.WriteImageLevel < 2)&&(modeflags.WriteImageLevel > 3))&& (lKey == NO_KEY_PRESSED))) { cout <<"Data"<<" "; cout <<" X "<<" "; cout <<" Y "<<" "; for (int k = 0; k < MAX_NUMBER_BOXES; k++) cout <<"Box"<<k<< " "; cout<<endl; for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { cout <<Boxes[lBoxes].box_ctr.x <<" "; } cout<<endl; for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { cout <<Boxes[lBoxes].box_ctr.y <<" "; } cout<<endl; for ( int lRoi = 0; lRoi< ROI_PER_SLANTBOX; lRoi++) { for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { cout <<Boxes[lBoxes].SFRBox[lRoi].SFRValue <<" "; } cout<<endl; } std::ofstream MyFile; MyFile.open ("DataSheet.csv", ios::out | ios::ate | ios::app | ios::binary); if (!Once) { MyFile << "Version,Time,Demosaic Appraoch, Detection Approach, Running Mode, Saturation,X,Y,ROI0,ROI1,ROI2,ROI3,X,Y,ROI4,ROI5,ROI6,ROI7,X,Y,ROI8,ROI9,ROI10,ROI11,X,Y,ROI12,ROI13,ROI14,ROI15,X,Y,ROI16,ROI17,ROI18,ROI19,X,Y,ROI20,ROI21,ROI22,ROI23,X,Y,ROI24,ROI25,ROI26,ROI27,X,Y,ROI28,ROI29,ROI30,ROI31,X,Y,ROI32,ROI33,ROI34,ROI35,X,Y,ROI36,ROI37,ROI38,ROI39,X,Y,ROI40,ROI41,ROI42,ROI43" << endl; Once = true; } //MyFile <<szChar_D<<","; MyFile <<VERSION<<"."<< RELEASE << "." << BUILD<<","; char s[100]; time_t now = time(NULL); struct tm * p = localtime(&now); strftime(s, 100, "%A %B:%d:%Y", p); MyFile <<s<<","; switch (modeflags.Demosaic) { case 0: MyFile <<"Row/Col removal,"; break; case 1: MyFile <<"Modified Gradient,"; break; } switch (modeflags.lTargetDetection) { case 1:MyFile <<"Template Match,"; break; case 2: MyFile <<"Circle Detection,"; break; case 3: MyFile <<"Edge Detection,"; break; } switch (modeflags.lRunningMode) { case 1:MyFile <<"HDR,"; break; case 2: MyFile <<"Linear,"; break; } MyFile << lSaturationLog<< ','; for (int lBoxes = 0; lBoxes < MAX_NUMBER_BOXES; lBoxes++) { MyFile << Boxes[lBoxes].box_ctr.x <<"," << Boxes[lBoxes].box_ctr.y <<","; for ( int lRoi = 0; lRoi< ROI_PER_SLANTBOX; lRoi++) { MyFile <<Boxes[lBoxes].SFRBox[lRoi].SFRValue <<","; } } MyFile <<endl; MyFile.close(); } //getchar(); if (!DeAllocate12BPP_Memory) deallocate_dynamic_matrix(dataArray_Hi_12BitsPerPixel->matrix, dataArray_Hi_12BitsPerPixel->row); delete dataArray_Hi_12BitsPerPixel; } int main(int argc, char* argv[]) { AP_HANDLE hCamera; unsigned long frameLength; //size of the frames from the camera unsigned char *pBuffer=NULL; //grabFrame buffer size_t nBufferSize; //size of the buffer unsigned int num_frames = DEFAULT_NUM_FRAMES; //number of frames to capture ap_u32 nWidth = DEFAULT_IMAGE_WIDTH; //width of image (taken from command line or set to default below) ap_u32 nHeight = DEFAULT_IMAGE_HEIGHT; //height of image (taken from command line or set to default below) FILE *imfile; //capture file char imagetypestr[64]; flags_t modeflags; m_FrameCounter = 0; // Initial Image Library ilInit(); int lCounter =0; // Find the last instance of a path delimiter for (int iEx = 0; iEx < (int)strlen(argv[0]); iEx++) { if (argv[0][iEx] == '\\') { lCounter = iEx; } } // Did we find a path delimiter? If not, path was defaulted to '.\' if ( lCounter ) { for (int iEx = 0; iEx <= lCounter; iEx++) { szCharWithoutExePath[iEx] = argv[0][iEx]; } // Close the string with a null character szCharWithoutExePath[lCounter] = '\0'; } // Announce the found path Debug_Report("Execution Path: "); // Attempt to load the templates from the directory where the executable is if (!InitTemplates(szCharWithoutExePath)) { cout << "Error, can't read the fidducial templete" << endl; DelayExit(1); } /////////////////////////////////////////////////////////////////////// // C O M M A N D L I N E A R G U M E N T P A R S I N G /////////////////////////////////////////////////////////////////////// ProcessArgs(argc, argv, modeflags); // Is last argument a filename and not a flag? if ( strcmp(argv[argc-1], "live") ) { // Not live imaging lKey = NO_KEY_PRESSED; Score_Image(argc-1, argv, modeflags); } else { // Has user requested no overlay? if ( GetCmdLineArgument( argc, (const char **)argv, "-nooverlay" ) > 0 ) { Display = false; } else { Display = true; } #ifndef NO_CAMERA // Test to make sure we have at least one camera available if (ap_DeviceProbe(NULL)) { printf("Camera Probe returned error %d.\n", ap_GetLastError() ); DelayExit(1); } else if (!ap_NumCameras()) { printf("Could not find any cameras.\n" ); DelayExit(1); } else { // Just take the first device hCamera = ap_Create(0); // Verify we have a valid camera handle if (!hCamera) { printf("Could not get handle to a camera (Err #: %d). \n",ap_GetLastError()); ap_Finalize(); DelayExit(1); } } // End camera initiliazation // Open Display once we've got a valid camera handle if (Display) { cv::namedWindow( "DisplayWindow", cv::WINDOW_AUTOSIZE ); } // Application functions that scripts may use ap_SetCallback_MultipleChoice(hCamera, MultipleChoice, NULL); ap_SetCallback_LogComment(hCamera, MyLogComment, NULL); ap_SetCallback_ErrorMessage(hCamera, MyErrorMessage, NULL); ap_SetCallback_ScriptOutput(hCamera, MyScriptOutput, NULL); // For informational purposes, enable log for SHIP commands during ap_LoadIniPreset ap_OpenIoLog(AP_LOG_SHIP, "ship_log_.txt"); printf("Log file: %s \n", ap_GetIoLogFilename()); // Load default initialization preset [Demo Initialization] in default ini file ap_LoadIniPreset(hCamera, NULL, NULL); ap_CheckSensorState(hCamera, 0); // Command line dimensions override if (nWidth && nHeight) { ap_SetImageFormat(hCamera, nWidth, nHeight, NULL); } //display some stats ap_GetImageFormat(hCamera, &nWidth, &nHeight, imagetypestr, sizeof(imagetypestr)); //Allocate a buffer to store the images nBufferSize = ap_GrabFrame(hCamera, NULL, 0); #else nBufferSize = 1280 * 964 *2; #endif pBuffer = (unsigned char *)malloc(nBufferSize); if (pBuffer == NULL) { printf("Error trying to create a buffer of size %lu to grab the frames.\n", (unsigned long)nBufferSize); #ifndef NO_CAMERA ap_Destroy(hCamera); #endif ap_Finalize(); DelayExit(1); } Debug_Report("Saving frames to img.raw..."); imfile = fopen("img.raw","wb"); //grabFrame printf("Grabbing frame \n"); while (true) { lKey = cv::waitKey(1); if (lKey == 0x1B) { cv::waitKey(0); } switch (lKey) { case 's': case 'S': printf("Saving Files\n"); break; case 'q': case 'Q': // Clean up before exiting fclose(imfile); #ifndef NO_CAMERA ap_Destroy(hCamera); #endif ap_Finalize(); free(pBuffer);pBuffer=NULL; ap_CloseIoLog(); exit(0); break; default: lKey = NO_KEY_PRESSED; break; } /* skip frames until a good frame is found. */ int count = 0; #if Check_Error_Frames do { frameLength = ap_GrabFrame(hCamera, pBuffer, (ap_u32)nBufferSize); if (ap_GetLastError() == AP_CAMERA_SUCCESS) break; printf("b"); } while (count++ < MAX_BADFRAME_TRIES); #else // frameLength = ap_GrabFrame(hCamera, pBuffer, (ap_u32)nBufferSize); #endif #if Check_Error_Frames if (ap_GetLastError() != AP_CAMERA_SUCCESS) printf("B (error code: %d)", ap_GetLastError()); else { // The following keeps writing images to output file; Should it? fwrite(pBuffer, frameLength, 1, imfile); Score_Image(pBuffer, modeflags); printf("."); } #else Score_Image(pBuffer, modeflags); #endif } // end while() } // End if (live images) // Delay exit if in Debug; return success DelayExit(0); }
4b80603df9ab96f5f0563dd07aed0e538b1668b9
a3d57036a8b42f9dfc4da00bad528a502f6595dc
/projects/lilyCGI/include/process.h
cbfa4b29bead223c54cd5f433aa5b552645ff19f
[]
no_license
zhouchunliang/chenzhengqiang
5f3579badc557f887a6b09d4489c0f3134448c1d
d4cd58715343ce539ff2523e4ac0f0c80f2bd0c7
refs/heads/master
2020-07-07T12:05:27.104252
2017-12-28T08:31:06
2017-12-28T08:31:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
343
h
process.h
/* *@filename:process.h *@author:chenzhengqiang *@start date:2016/01/11 09:58:03 *@modified date: *@desc: */ #ifndef _CZQ_PROCESS_H_ #define _CZQ_PROCESS_H_ #include<unistd.h> namespace czq { //write the function prototypes or the declaration of variables here class process { public: pid_t pid_; int pipeFd_[2]; }; }; #endif
96386532a56f5de3e55344d6594aeca81ac0a7f2
5e3db2bd0227ec1a761ee0f3c7100fb2aca8e5fb
/LeetCodeSolutions/SubTreeOfAnotherTree.cpp
88ced882bfcd0c95b46c74f5d8e45c07146029c8
[]
no_license
Raunak173/hacktoberfest
e09eaff87c6e2eb12935c03f404c17e20146f9a8
1d21f9a314bfb05674fa793a2a80eedceeca6eda
refs/heads/main
2023-08-16T04:05:09.908878
2021-10-14T09:58:14
2021-10-14T09:58:14
417,076,974
1
0
null
null
null
null
UTF-8
C++
false
false
757
cpp
SubTreeOfAnotherTree.cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : val(0), left(nullptr), right(nullptr) {} * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {} * }; */ class Solution { public: bool areEqual(TreeNode*s, TreeNode* t ) { if(s==nullptr||t==nullptr) return s==t; return s->val==t->val && areEqual(s->left, t->left) && areEqual(s->right,t->right); } bool isSubtree(TreeNode* s, TreeNode* t) { return areEqual(s,t)||(s->left && isSubtree(s->left,t))||(s->right && isSubtree(s->right,t)); } };
ac7376ccc0edd232dcd8340b56e8c229c4c4d352
020b1ec3201887c8ef6cf3d5cecece0a251d6759
/freq_div/freq_div.ino
7c87e8ffd0df5a1d9f1ca87f031d66b01455a4e6
[]
no_license
alexhagen/freq_div
c814c7bafd12aa418eda9921c2970fa31ec428e7
2b5deb0ac8cfdd413b0637d150081d57d64b0328
refs/heads/master
2021-07-21T23:30:40.161164
2017-11-01T00:21:37
2017-11-01T00:21:37
108,901,227
0
0
null
null
null
null
UTF-8
C++
false
false
435
ino
freq_div.ino
const byte inputpin = 3; const byte inputinterrupt = 1; const byte outputpin = 7; const byte denom = 4; volatile byte count = 0; void counter(){ count = count + 1; if (count % denom == 0) { digitalWrite(outputpin, HIGH); digitalWrite(outputpin, LOW); count = 0; } } void setup(){ pinMode(outputpin, OUTPUT); pinMode(inputpin, INPUT_PULLUP); attachInterrupt(inputinterrupt, counter, RISING); } void loop(){ }
86f56213a51c51817ee1e56ed423fa32addd8559
64fe2327449e3802b0126250a0024dd55a7dc9bb
/Sylinder/SylinderNear_test.cpp
317969838b658fe56d72924d7b6e8c0907df709f
[ "Apache-2.0" ]
permissive
williamliao28/SimToolbox
36194c963a1876ac24a45a1dd6a66ffacf1f8969
c9417231217026d555a050a483aaefc6a273026e
refs/heads/master
2023-01-29T08:11:44.652373
2020-12-10T19:51:47
2020-12-10T19:51:47
264,451,853
0
0
null
2020-05-16T14:12:42
2020-05-16T14:12:42
null
UTF-8
C++
false
false
6,375
cpp
SylinderNear_test.cpp
#include "SylinderNear.hpp" #include "Util/EigenDef.hpp" #include <cmath> void testEpsilon() { constexpr double epsilonConst[3][3][3] = {{{0, 0, 0}, {0, 0, 1}, {0, -1, 0}}, // {{0, 0, -1}, {0, 0, 0}, {1, 0, 0}}, // {{0, 1, 0}, {-1, 0, 0}, {0, 0, 0}}}; double epsilon[3][3][3]; for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { for (int k = 0; k < 3; k++) { epsilon[i][j][k] = 0.0; } } } epsilon[0][1][2] = 1.0; epsilon[1][2][0] = 1.0; epsilon[2][0][1] = 1.0; epsilon[1][0][2] = -1.0; epsilon[2][1][0] = -1.0; epsilon[0][2][1] = -1.0; for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { for (int k = 0; k < 3; k++) { if (epsilon[i][j][k] != epsilonConst[i][j][k]) { printf("epsilonConst not correct\n"); std::exit(1); } } } } } void testFixedPair() { omp_set_num_threads(1); Evec3 P0(1, 0, 0); Evec3 P1(0, sqrt(3), 0); Evec3 Q0(0, 0, 1); Evec3 Q1(2, 2 * sqrt(3), 1); CalcSylinderNearForce calc; calc.conPoolPtr = std::make_shared<ConstraintBlockPool>(); calc.conPoolPtr->resize(1); std::vector<SylinderNearEP> sylinderP(1); std::vector<SylinderNearEP> sylinderQ(1); { // setup P Evec3 center = (P0 + P1) / 2; Evec3 direction = (P1 - P0).normalized(); double length = (P1 - P0).norm(); sylinderP[0].gid = 0; sylinderP[0].globalIndex = 0; sylinderP[0].rank = 0; sylinderP[0].radius = 0.4; sylinderP[0].radiusCollision = 0.4; sylinderP[0].length = length; sylinderP[0].lengthCollision = length; sylinderP[0].pos[0] = center[0]; sylinderP[0].pos[1] = center[1]; sylinderP[0].pos[2] = center[2]; sylinderP[0].direction[0] = direction[0]; sylinderP[0].direction[1] = direction[1]; sylinderP[0].direction[2] = direction[2]; } { // setup Q Evec3 center = (Q0 + Q1) / 2; Evec3 direction = (Q1 - Q0).normalized(); double length = (Q1 - Q0).norm(); sylinderQ[0].gid = 1; sylinderQ[0].globalIndex = 1; sylinderQ[0].rank = 0; sylinderQ[0].radius = 0.5; sylinderQ[0].radiusCollision = 0.5; sylinderQ[0].length = length; sylinderQ[0].lengthCollision = length; sylinderQ[0].pos[0] = center[0]; sylinderQ[0].pos[1] = center[1]; sylinderQ[0].pos[2] = center[2]; sylinderQ[0].direction[0] = direction[0]; sylinderQ[0].direction[1] = direction[1]; sylinderQ[0].direction[2] = direction[2]; } ForceNear fnear; calc(sylinderP.data(), 1, sylinderQ.data(), 1, &fnear); printf("%zu collisions recorded\n", calc.conPoolPtr->front().size()); auto stress = calc.conPoolPtr->front().front().stress; printf("%g,%g,%g,%g,%g,%g,%g,%g,%g\n", stress[0], stress[1], stress[2], stress[3], stress[4], stress[5], stress[6], stress[7], stress[8]); bool pass = true; pass = pass && fabs(stress[0] - 0) < 1e-6; pass = pass && fabs(stress[1] - 0) < 1e-6; pass = pass && fabs(stress[2] - 0.0160681) < 1e-6; pass = pass && fabs(stress[3] - 0) < 1e-6; pass = pass && fabs(stress[4] - 0) < 1e-6; pass = pass && fabs(stress[5] - 0.0278307) < 1e-6; pass = pass && fabs(stress[6] - 0.0160681) < 1e-6; pass = pass && fabs(stress[7] - 0.0278307) < 1e-6; pass = pass && fabs(stress[8] - 1) < 1e-6; if (pass) { } else { printf("stress wrong\n"); std::exit(1); } } void testParallel() { omp_set_num_threads(1); Evec3 P0(0.9942362769247484, 1.486372506783908, 1.499998650123065); Evec3 P1(1.994235986439871, 1.487134714472271, 1.500001668306246); Evec3 Q0(1.005687630910662, 1.464364624867677, 1.500001338752708); Evec3 Q1(2.005685087440173, 1.462109203504082, 1.4999983414464); CalcSylinderNearForce calc; calc.conPoolPtr = std::make_shared<ConstraintBlockPool>(); calc.conPoolPtr->resize(1); std::vector<SylinderNearEP> sylinderP(1); std::vector<SylinderNearEP> sylinderQ(1); { // setup P Evec3 center = (P0 + P1) / 2; Evec3 direction = (P1 - P0).normalized(); double length = (P1 - P0).norm(); sylinderP[0].gid = 0; sylinderP[0].globalIndex = 0; sylinderP[0].rank = 0; sylinderP[0].radius = 0.4; sylinderP[0].radiusCollision = 0.4; sylinderP[0].length = length; sylinderP[0].lengthCollision = length; sylinderP[0].pos[0] = center[0]; sylinderP[0].pos[1] = center[1]; sylinderP[0].pos[2] = center[2]; sylinderP[0].direction[0] = direction[0]; sylinderP[0].direction[1] = direction[1]; sylinderP[0].direction[2] = direction[2]; } { // setup Q Evec3 center = (Q0 + Q1) / 2; Evec3 direction = (Q1 - Q0).normalized(); double length = (Q1 - Q0).norm(); sylinderQ[0].gid = 1; sylinderQ[0].globalIndex = 1; sylinderQ[0].rank = 0; sylinderQ[0].radius = 0.5; sylinderQ[0].radiusCollision = 0.5; sylinderQ[0].length = length; sylinderQ[0].lengthCollision = length; sylinderQ[0].pos[0] = center[0]; sylinderQ[0].pos[1] = center[1]; sylinderQ[0].pos[2] = center[2]; sylinderQ[0].direction[0] = direction[0]; sylinderQ[0].direction[1] = direction[1]; sylinderQ[0].direction[2] = direction[2]; } ForceNear fnear; calc(sylinderP.data(), 1, sylinderQ.data(), 1, &fnear); printf("%zu collisions recorded\n", calc.conPoolPtr->front().size()); auto stress = calc.conPoolPtr->front().front().stress; auto block = calc.conPoolPtr->front().front(); printf("%g,%g,%g,%g,%g,%g,%g,%g,%g\n", stress[0], stress[1], stress[2], stress[3], stress[4], stress[5], stress[6], stress[7], stress[8]); printf("posI %18.16g %18.16g %18.16g, posJ %18.16g %18.16g %18.16g\n", block.posI[0], block.posI[1], block.posI[2], block.posJ[0], block.posJ[1], block.posJ[2]); } int main() { testEpsilon(); testFixedPair(); testParallel(); return 0; }
b71b0b4c34422b9e3a615f2119bd61b6d325769f
b7cfb61323623d07cf7d52cc9e78c32d02854da0
/Módulo 1/Aplicação/D. Deivis e o ano bonito.cpp
b3c423c779858035c44b1f93a5b40af42806db77
[]
no_license
MatosThiago/ProgramacaoCompetitiva
97b99f976af10e04b329f61cae45f73e1cf3fd87
66653609632b2cdfcc2060633cbfffe1fa291b7f
refs/heads/master
2020-03-11T17:36:56.635158
2018-07-07T17:44:18
2018-07-07T17:44:18
130,152,149
0
0
null
null
null
null
UTF-8
C++
false
false
434
cpp
D. Deivis e o ano bonito.cpp
#include <bits/stdc++.h> using namespace std; int main() { int N, V[4]; cin >> N; int Bonito = 0; while(!Bonito) { N++; V[3] = N % 10; V[2] = (N / 10) % 10; V[1] = (N / 100) % 10; V[0] = (N / 1000) % 10; if(V[0] != V[1] && V[0] != V[2] && V[0] != V[3] && V[1] != V[2] && V[1] != V[3] && V[2] != V[3]) Bonito = 1; } cout << N; return 0; }
5a45100df842c67cabea0d15f2be8d160a2b7489
3c0e92dc6bf91c6a6c1b8c73d5da0b038c58e436
/proxies/Pelican/sources/EventGenerator.cpp
c09f7345422a9df05b703a7508fad1b691d8409a
[]
no_license
yebo92/mavwork
f9d47d84e952c9b9939216b09f50fa128131ab9e
a7bce5766874850528857f6fd96fce4152f5775a
refs/heads/master
2022-06-10T18:27:52.428622
2013-06-06T16:25:14
2013-06-06T16:25:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
683
cpp
EventGenerator.cpp
/* * EventGenerator.cpp * * Created on: 30/04/2012 * Author: Ignacio Mellado-Bataller */ #include "base/EventGenerator.h" void EventGenerator::addEventListener(EventListener *el) { std::list<EventListener *>::iterator i; for(i = listeners.begin(); i != listeners.end(); i++) if ((*i) == el) return; listeners.push_back(el); } void EventGenerator::notifyEvent(const Event &e) { std::list<EventListener *>::iterator i; for(i = listeners.begin(); i != listeners.end(); i++) (*i)->gotEvent(*this, e); } void EventGenerator::removeEventListener(EventListener *el) { listeners.remove(el); } void EventGenerator::removeAllEventListeners() { listeners.clear(); }
3a9e7ba7969d20cc32533fb3d6d04920c92c5006
3d07f3247b027a044f90eee1c744e91a98951dde
/humanoid_model/src/HumanoidModelNode.cpp
dacb94c997234f8c7f753030266b4a82005bcc34
[]
no_license
murilomend/humanoid_movement
f93d2ab66fbbfaaff7d4cc906df338e36ce36ea3
e657538b1d239b8df63ff03875155687a93f5d21
refs/heads/master
2020-03-26T08:39:47.810954
2018-08-14T12:01:07
2018-08-14T12:01:07
144,714,031
3
0
null
null
null
null
UTF-8
C++
false
false
21,162
cpp
HumanoidModelNode.cpp
#include "humanoid_model/HumanoidModelNode.h" HumanoidModelNode::HumanoidModelNode(ros::NodeHandle nh_, ros::NodeHandle nh_private_,ros::NodeHandle nh_private_walk_,ros::NodeHandle nh_private_movcreator_) : nh(nh_) , nh_private(nh_private_) , nh_private_walk(nh_private_walk_),nh_private_movcreator(nh_private_movcreator_) { if (!nh_private.getParam ("dt", dt)) dt = 0.07; //Publisher Stuff jointStateTopic = nh.advertise<JointStateMsg>("humanoid_model/jointState", 1000); endEffStateTopic = nh.advertise<EndEffStateMsg>("humanoid_model/endEffState", 1000); humanoidPropsTopic = nh.advertise<humanoid_msgs::HumanoidPropertiesMsg>("humanoid_model/humanoid_properties", 1000); //Subscriber Stuff jointStateSubPtr.reset(new JointStateSub(nh,"humanoid_model/jointState",1)); jointStateSubPtr->registerCallback(&HumanoidModelNode::jointStateCallback, this); endEffStateSubPtr.reset(new EndEffStateSub(nh,"humanoid_model/endEffState",1)); endEffStateSubPtr->registerCallback(&HumanoidModelNode::endEffStateCallback, this); humanoidControlSubPtr.reset(new HumanoidControlSub(nh,"humanoid_control/cmd",1)); humanoidControlSubPtr->registerCallback(&HumanoidModelNode::humanoidControlCallback, this); //Service Stuff mapCli = nh.serviceClient<humanoid_msgs::LoadMapConfigsSrv>("humanoid_loadmap/load"); humanoidPropsSrv = nh.advertiseService("humanoid_model/properties",&HumanoidModelNode::humanoidPropertiesSrv,this); zmpPoint = Eigen::Vector3d(0,0,0); comPoint = Eigen::Vector3d(0,0,0); footComPoint = Eigen::Vector3d(0,0,0); trunk = BodyPointState(TRUNK); loadMap(); loadRobotParams(); //Dynamic Reconfigure Server config_server.reset(new HumanoidModelConfigServer(nh_private_walk)); HumanoidModelConfigServer::CallbackType f = boost::bind(&HumanoidModelNode::reconfigCallback, this, _1, _2); config_server->setCallback(f); config_server_mov.reset(new HumanoidModelMovCreatorConfigServer(nh_private_movcreator)); HumanoidModelMovCreatorConfigServer::CallbackType f_mov = boost::bind(&HumanoidModelNode::reconfigMovCreatorCallback, this, _1, _2); config_server_mov->setCallback(f_mov); //Run Callback runTimer = nh.createTimer(ros::Duration(dt), &HumanoidModelNode::runCallBack,this); } void HumanoidModelNode::runCallBack(const ros::TimerEvent&) { if(modelMovCreatorMsg.on == true) { robot.setIKRef(Eigen::Vector3d(0,0,0)); rLegBP.pos = Eigen::Vector3d(modelMovCreatorMsg.rFootX,-modelMovCreatorMsg.rFootY - robot.poseParams[P_POSE_LEG_OPEN_REF],modelMovCreatorMsg.rFootZ - robot.poseParams[P_POSE_LEG_SQUAT_REF]); lLegBP.pos = Eigen::Vector3d(modelMovCreatorMsg.lFootX,modelMovCreatorMsg.lFootY + robot.poseParams[P_POSE_LEG_OPEN_REF],modelMovCreatorMsg.lFootZ - robot.poseParams[P_POSE_LEG_SQUAT_REF]); rLegBP.rot = Eigen::Vector3d((modelMovCreatorMsg.rFootRX*PI)/180.,(modelMovCreatorMsg.rFootRY*PI)/180.,(modelMovCreatorMsg.rFootRZ*PI)/180.); lLegBP.rot = Eigen::Vector3d((modelMovCreatorMsg.lFootRX*PI)/180.,(modelMovCreatorMsg.lFootRY*PI)/180.,(modelMovCreatorMsg.lFootRZ*PI)/180.); std::vector<BodyPointState> bpVec; bpVec.push_back(rLegBP); bpVec.push_back(lLegBP); robot.setEndEffState(bpVec); robot.qState.pos[map.map(LARM0,ROBOT_IDS)] = -(modelMovCreatorMsg.lArm0*PI)/180.; robot.qState.pos[map.map(LARM1,ROBOT_IDS)] = (modelMovCreatorMsg.lArm1*PI)/180.; robot.qState.pos[map.map(LARM2,ROBOT_IDS)] = -(modelMovCreatorMsg.lArm2*PI)/180.; robot.qState.pos[map.map(RARM0,ROBOT_IDS)] = (modelMovCreatorMsg.rArm0*PI)/180.; robot.qState.pos[map.map(RARM1,ROBOT_IDS)] = -(modelMovCreatorMsg.rArm1*PI)/180.; robot.qState.pos[map.map(RARM2,ROBOT_IDS)] = (modelMovCreatorMsg.rArm2*PI)/180.; JointState qState; qState = robot.qState; qState.source = CONST_VEL; for(int i = 0; i < int(qState.vel.size());i++) { qState.vel[i] = 0.3; } qState.dt = 3; if(modelMovCreatorMsg.toJointState) sendJointState(qState,dt); if(modelMovCreatorMsg.toMotorState) sendJointState(qState,dt); setRobotFlag = true; } else { if(setRobotFlag) { robot.comOverride.pos(0) = comX; robot.comOverride.pos(1) = comY; robot.comOverride.pos(2) = comZ; setRobot(squat,open,incl,sideIncl,footIncl); } if(calcCOM) { } if(calcIK) { double arm0_ = 0; if(humanoidControlMsg.ctrl_flag == true) { /*if(humanoidControlMsg.torso_ctrl_flag == true) { //TRUNK trunk = robot.endEffectors[TRUNK]; trunk.rot = Eigen::Vector3d(trunk.rot(0) + (humanoidControlMsg.torsoAddX/180.)*PI,trunk.rot(1) + (humanoidControlMsg.torsoAddY/180.)*PI,trunk.rot(2) + (humanoidControlMsg.torsoAddZ/180.)*PI); if(trunk.rot(1) > (50./180.)*PI ) { ROS_WARN("TRUNK_ROT_Y SATURATED: %4.3f",(trunk.rot(1)/PI)*180.); trunk.rot(1) = (50./180.)*PI; } else if(trunk.rot(1) < (-50./180.)*PI ) { ROS_WARN("TRUNK_ROT_Y SATURATED: %4.3f",(trunk.rot(1)/PI)*180.); trunk.rot(1) = (-50./180.)*PI; } vecBody.push_back(trunk); } else { trunk.rot = Eigen::Vector3d((sideIncl/180.)*PI,(incl/180.)*PI,0); vecBody.push_back(trunk); }*/ if(humanoidControlMsg.arm_ctrl_flag == true) { //ARM arm0_ = ((arm0 + humanoidControlMsg.armAdd)/180.)*PI; if(arm0_ > (50./180.)*PI ) { ROS_WARN("ARM0 SATURATED: %4.3f",(arm0_/PI)*180.); arm0_ = (50./180.)*PI; } else if(arm0_ < (-50./180.)*PI ) { ROS_WARN("ARM0 SATURATED: %4.3f",(arm0_/PI)*180.); arm0_ = (-50./180.)*PI; } } else { arm0_ = (arm0/180.)*PI; } } else { arm0_ = (arm0/180.)*PI; } if(!vecBodyBuff.empty()) { if(humanoidControlMsg.foot_ctrl_flag) footIncl = humanoidControlMsg.slope; else footIncl = 0; vecBody[0].rot(1) = vecBodyBuff[0].rot(1) + (footIncl/180.)*PI; vecBody[1].rot(1) = vecBodyBuff[1].rot(1) + (footIncl/180.)*PI; vecBody[2].rot = (vecBodyBuff[2].rot/180.)*PI + Eigen::Vector3d((sideIncl/180.)*PI,(incl/180.)*PI,0); /*double rPosX = 0.05*(humanoidControlMsg.rFootFac.pos.x)/2. + 1.0; double rPosY = 0.05*(humanoidControlMsg.rFootFac.pos.y)/2. + 1.0; double rPosZ = 0.05*(humanoidControlMsg.rFootFac.pos.z)/2. + 1.0; double rRotX = 0.1*(humanoidControlMsg.rFootFac.rot.x)/2.; double rRotY = 0.1*(humanoidControlMsg.rFootFac.rot.y)/2.; double rRotZ = 0.1*(humanoidControlMsg.rFootFac.rot.z)/2.; double lPosX = 0.05*(humanoidControlMsg.lFootFac.pos.x)/2. + 1.0; double lPosY = 0.05*(humanoidControlMsg.lFootFac.pos.y)/2. + 1.0; double lPosZ = 0.05*(humanoidControlMsg.lFootFac.pos.z)/2. + 1.0; double lRotX = 0.1*(humanoidControlMsg.lFootFac.rot.x)/2.; double lRotY = 0.1*(humanoidControlMsg.lFootFac.rot.y)/2.; double lRotZ = 0.1*(humanoidControlMsg.lFootFac.rot.z)/2.; vecBody[0].pos = Eigen::Vector3d(vecBody[0].pos(0)*rPosX,vecBody[0].pos(1)*rPosY,vecBody[0].pos(2)*rPosZ); vecBody[0].rot = Eigen::Vector3d(rRotX,rRotY,rRotZ); vecBody[1].pos = Eigen::Vector3d(vecBody[1].pos(0)*lPosX,vecBody[1].pos(1)*lPosY,vecBody[1].pos(2)*lPosZ); vecBody[1].rot = Eigen::Vector3d(lRotX,lRotY,lRotZ);*/ //vecBody[0].pos = Eigen::Vector3d(vecBody[0].pos(0)*humanoidControlMsg.rFootFac.pos.x,vecBody[0].pos(1)*humanoidControlMsg.rFootFac.pos.y,vecBody[0].pos(2)*humanoidControlMsg.rFootFac.pos.z); //vecBody[1].pos = Eigen::Vector3d(vecBody[1].pos(0)*humanoidControlMsg.lFootFac.pos.x,vecBody[1].pos(1)*humanoidControlMsg.lFootFac.pos.y,vecBody[1].pos(2)*humanoidControlMsg.lFootFac.pos.z); robot.setEndEffState(vecBody); robot.setArmParams(arm0_,(arm1/180.)*PI,(arm2/180.)*PI); sendJointState(robot.qState,dt); } } } } void HumanoidModelNode::sendJointState(const JointState &jointState,const double &dt) { jointMsg.header.stamp = ros::Time::now(); for(int i = 0; i < int(jointState.pos.size());i++) { jointMsg.pos[i] = jointState.pos(i); } jointMsg.type = jointState.type; jointMsg.source = HUMANOID_MODEL; jointMsg.dt = jointState.dt; jointStateTopic.publish(jointMsg); } void HumanoidModelNode::jointStateCallback(const humanoid_msgs::JointStateMsgPtr &jointState) { if(calcFK) { } } void HumanoidModelNode::endEffStateCallback(const humanoid_msgs::EndEffStateMsgPtr &endEffState) { if(calcIK) { vecBodyBuff.clear(); vecBodyBuff.resize(endEffState->endEff.size()); vecBody.clear(); vecBody.resize(endEffState->endEff.size()); for(int i = 0; i < int(endEffState->endEff.size());i++) { tf::pointMsgToEigen(endEffState->endEff[i].pos,vecBodyBuff[i].pos); tf::pointMsgToEigen(endEffState->endEff[i].vel,vecBodyBuff[i].vel); tf::pointMsgToEigen(endEffState->endEff[i].acc,vecBodyBuff[i].acc); tf::pointMsgToEigen(endEffState->endEff[i].rot,vecBodyBuff[i].rot); vecBodyBuff[i].type = endEffState->endEff[i].type; vecBodyBuff[i].flag = endEffState->endEff[i].flag; vecBodyBuff[i].dt = endEffState->endEff[i].dt; vecBody[i] = vecBodyBuff[i]; } } } void HumanoidModelNode::humanoidControlCallback(const humanoid_msgs::HumanoidControlMsgPtr &humanoidControl) { this->humanoidControlMsg = *humanoidControl; } void HumanoidModelNode::loadRobotParams() { robot = HumanoidModel(); robot.map = map.map; //Parameter Server //Static Params if (!nh_private.getParam ("P_LEG_D0", robot.legParams[P_LEG_D0])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D0 param not found"); if (!nh_private.getParam ("P_LEG_D1", robot.legParams[P_LEG_D1])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D1 param not found"); if (!nh_private.getParam ("P_LEG_D2", robot.legParams[P_LEG_D2])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D2 param not found"); if (!nh_private.getParam ("P_LEG_D3", robot.legParams[P_LEG_D3])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D3 param not found"); if (!nh_private.getParam ("P_LEG_D4", robot.legParams[P_LEG_D4])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D4 param not found"); if (!nh_private.getParam ("P_ARM_D0", robot.armParams[P_ARM_D0])) ROS_FATAL("[HUMANOID_MODEL] P_ARM_D0 param not found"); if (!nh_private.getParam ("P_ARM_D1", robot.armParams[P_ARM_D1])) ROS_FATAL("[HUMANOID_MODEL] P_ARM_D1 param not found"); if (!nh_private.getParam ("P_ARM_D2", robot.armParams[P_ARM_D2])) ROS_FATAL("[HUMANOID_MODEL] P_ARM_D2 param not found"); if (!nh_private.getParam ("P_FOOT_W", robot.footParams[P_FOOT_W])) ROS_FATAL("[HUMANOID_MODEL] P_FOOT_W param not found"); if (!nh_private.getParam ("P_FOOT_H", robot.footParams[P_FOOT_H])) ROS_FATAL("[HUMANOID_MODEL] P_FOOT_H param not found"); if (!nh_private.getParam ("P_FOOT_X", robot.footParams[P_FOOT_X])) ROS_FATAL("[HUMANOID_MODEL] P_FOOT_X param not found"); if (!nh_private.getParam ("P_FOOT_Y", robot.footParams[P_FOOT_Y])) ROS_FATAL("[HUMANOID_MODEL] P_FOOT_Y param not found"); if (!nh_private.getParam ("override_com", override_com)) { ROS_WARN("[HUMANOID_MODEL] override_com param not found. This feature wont be used"); override_com = false; } if (!nh_private_walk.getParam ("comX", comX)) { ROS_WARN("[HUMANOID_MODEL] comX param not found. Zero value will be set"); comX = 0; } if (!nh_private_walk.getParam ("comY", comY)) { ROS_WARN("[HUMANOID_MODEL] comY param not found. Zero value will be set"); comY = 0; } if (!nh_private_walk.getParam ("comZ", comZ)) { ROS_WARN("[HUMANOID_MODEL] comZ param not found. Zero value will be set"); comZ = 0; } robot.comOverride.pos(0) = comX; robot.comOverride.pos(1) = comY; robot.comOverride.pos(2) = comZ; //Urdf if (!nh.getParam ("fUrdf", fUrdf)) ROS_FATAL("[HUMANOID_MODEL] Urdf file address not found"); robot.loadURDF(fUrdf.c_str()); robot.robotDOF = robotDOF; robot.urdfDOF = urdfDOF; robot.ikDOF = ikDOF; vecBody.resize(3); vecBodyBuff.resize(3); rLegBP = BodyPointState(RLEG,BP_TOUCHING); lLegBP = BodyPointState(LLEG,BP_TOUCHING); jointMsg.pos.resize(robotDOF); jointMsg.vel.resize(robotDOF); jointMsg.acc.resize(robotDOF); jointMsg.torq.resize(robotDOF); robot.qState = JointState(robotDOF,ROBOT_IDS); //Dynamic Params if (!nh_private_walk.getParam ("squat", squat)) squat = 0.05; if (!nh_private_walk.getParam ("open", open)) open = 0.02; if (!nh_private_walk.getParam ("incl", incl)) incl = 0; if (!nh_private_walk.getParam ("sideIncl", sideIncl)) sideIncl = 0; if (!nh_private_walk.getParam ("footIncl", sideIncl)) footIncl = 0; if (!nh_private_walk.getParam ("arm0", arm0)) arm0 = 0; if (!nh_private_walk.getParam ("arm1", arm1)) arm1 = 0; if (!nh_private_walk.getParam ("arm2", arm2)) arm2 = 0; //Pose properties are derived from other params robot.poseParams[P_POSE_LEG_OPEN_REF] = robot.legParams[P_LEG_D0]; robot.poseParams[P_POSE_LEG_SQUAT_REF] = robot.legParams[P_LEG_D1] + robot.legParams[P_LEG_D2] + robot.legParams[P_LEG_D3] + robot.legParams[P_LEG_D4]; robot.poseParams[P_POSE_TORSO_INC_REF] = 0;///<-------------------- robot.poseParams[P_POSE_SIDE_INC_REF] = 0;///<-------------------- setRobot(squat,open,incl,sideIncl,footIncl); robot.qState.pos[map.map(LARM0,ROBOT_IDS)] = arm0; robot.qState.pos[map.map(LARM1,ROBOT_IDS)] = arm1; robot.qState.pos[map.map(LARM2,ROBOT_IDS)] = arm2; robot.qState.pos[map.map(RARM0,ROBOT_IDS)] = arm0; robot.qState.pos[map.map(RARM1,ROBOT_IDS)] = arm1; robot.qState.pos[map.map(RARM2,ROBOT_IDS)] = arm2; } bool HumanoidModelNode::humanoidPropertiesSrv(humanoid_msgs::LoadHumanoidPropertiesSrv::Request &msg, humanoid_msgs::LoadHumanoidPropertiesSrv::Response &res) { Eigen::Vector3d footCom; Eigen::Vector3d refCom; if(!msg.joint.pos.empty()) robot.setQState(JointState(msg.joint.pos.size(),msg.joint.type,msg.joint.source)); if(!msg.endEff.endEff.empty()) { std::vector<BodyPointState> endEff; for(int i = 0; i < int(msg.endEff.endEff.size());i++) endEff.push_back(BodyPointState(msg.endEff.endEff[i].type,msg.endEff.endEff[i].flag)); robot.setEndEffState(endEff); } if(msg.calcCOM) { robot.getComVecs(footCom,refCom,override_com); comPoint = refCom; footComPoint = footCom; } if(msg.calcZMP) { } if(msg.calcInvDyn) { } if(msg.setIkRef) { Eigen::Vector3d ikRef; tf::pointMsgToEigen(msg.ikRef, ikRef); robot.setIKRef(ikRef); } if(msg.setComAsIkRef) { robot.setIKRef(refCom); } tf::pointEigenToMsg(zmpPoint,res.zmpPoint); tf::pointEigenToMsg(comPoint,res.comPoint); tf::pointEigenToMsg(footComPoint,res.footComPoint); for(int i = 0; i < int(torq.size());i++) res.torq.push_back(torq(i)); humanoidPropsMsg.zmpPoint = res.zmpPoint; humanoidPropsMsg.comPoint = res.comPoint; humanoidPropsMsg.footComPoint = res.footComPoint; humanoidPropsMsg.torq = res.torq; humanoidPropsMsg.squat = squat; humanoidPropsMsg.open = open; humanoidPropsMsg.incl = incl; humanoidPropsMsg.sideIncl = sideIncl; humanoidPropsMsg.footIncl = footIncl; sendHumanoidProps(humanoidPropsMsg); return true; } void HumanoidModelNode::setRobot(double squat, double open, double incl, double sideIncl,double footIncl) { robot.setPoseParams(squat,open,(incl/180.)*PI,(sideIncl/180.)*PI,(footIncl/180.)*PI); Eigen::Vector3d footCom; Eigen::Vector3d refCom; robot.getComVecs(footCom,refCom,override_com); ROS_WARN("COM_POINT: %4.3f %4.3f %4.3f",refCom[0],refCom[1],refCom[2]); robot.setIKRef(refCom); comPoint = refCom; footComPoint = footCom; tf::pointEigenToMsg(comPoint,humanoidPropsMsg.comPoint); tf::pointEigenToMsg(footComPoint,humanoidPropsMsg.footComPoint); humanoidPropsMsg.squat = squat; humanoidPropsMsg.open = open; humanoidPropsMsg.incl = incl; humanoidPropsMsg.sideIncl = sideIncl; humanoidPropsMsg.footIncl = footIncl; sendHumanoidProps(humanoidPropsMsg); setRobotFlag = false; } void HumanoidModelNode::loadMap() { mapMsg.request.update = false; if(mapCli.call(mapMsg)) { int h = mapMsg.response.idMap.map.layout.dim[0].size; int w = mapMsg.response.idMap.map.layout.dim[1].size; std::vector<int> data = mapMsg.response.idMap.map.data; Eigen::Map<Eigen::MatrixXi> mat(data.data(), h, w); map.map = mat; for(int i = 0; i < int(mapMsg.response.idMap.jNames.size());i++) { map.enumMap.insert(std::make_pair(mapMsg.response.idMap.jNames[i],i)); } robotDOF = mapMsg.response.idMap.robotDOF; urdfDOF = mapMsg.response.idMap.urdfDOF; ikDOF = mapMsg.response.idMap.ikDOF; //map.print(); ROS_INFO("[HUMANOID_MODEL] MAP WAS LOADED: ROBOT_DOF: %d URDF_DOF: %d IK_DOF: %d",robotDOF,urdfDOF,ikDOF); } } void HumanoidModelNode::sendHumanoidProps(const humanoid_msgs::HumanoidPropertiesMsg &msg) { ROS_INFO("[HUMANOID_MODEL] HUMANOIDPROPS: SQUAT = %4.3f OPEN = %4.3f INCL = %4.3f ZC = %4.3f",msg.squat,msg.open,msg.incl,msg.footComPoint.z); humanoidPropsTopic.publish(msg); } void HumanoidModelNode::reconfigCallback(humanoid_msgs::HumanoidModelConfig& config, uint32_t level) { boost::mutex::scoped_lock lock(mutex); squat = config.squat; open = config.open; incl = config.incl; sideIncl = config.sideIncl; footIncl = config.footIncl; comX = config.comX; comY = config.comY; comZ = config.comZ; arm0 = config.arm0; arm1 = config.arm1; arm2 = config.arm2; setRobotFlag = true; calcIK = config.calcIK; calcFK = config.calcFK; calcCOM = config.calcCOM; calcZMP = config.calcZMP; calcInvDyn = config.calcInvDyn; dt = config.dt; runTimer.setPeriod(ros::Duration(dt)); } void HumanoidModelNode::reconfigMovCreatorCallback(humanoid_msgs::HumanoidModelMovCreatorConfig& config, uint32_t level) { boost::mutex::scoped_lock lock(mutex); modelMovCreatorMsg.rArm0 = config.rArm0; modelMovCreatorMsg.rArm1 = config.rArm1; modelMovCreatorMsg.rArm2 = config.rArm2; modelMovCreatorMsg.lArm0 = config.lArm0; modelMovCreatorMsg.lArm1 = config.lArm1; modelMovCreatorMsg.lArm2 = config.lArm2; modelMovCreatorMsg.rFootX = config.rFootX; modelMovCreatorMsg.rFootY = config.rFootY; modelMovCreatorMsg.rFootZ = config.rFootZ; modelMovCreatorMsg.rFootRX = config.rFootRX; modelMovCreatorMsg.rFootRY = config.rFootRY; modelMovCreatorMsg.rFootRZ = config.rFootRZ; modelMovCreatorMsg.lFootX = config.lFootX; modelMovCreatorMsg.lFootY = config.lFootY; modelMovCreatorMsg.lFootZ = config.lFootZ; modelMovCreatorMsg.lFootRX = config.lFootRX; modelMovCreatorMsg.lFootRY = config.lFootRY; modelMovCreatorMsg.lFootRZ = config.lFootRZ; modelMovCreatorMsg.on = config.on; modelMovCreatorMsg.toJointState = config.toJointState; modelMovCreatorMsg.toMotorState = config.toMotorState; } HumanoidModelNode::~HumanoidModelNode() { }
68907b3cec23fb1796220084569c5db7c430498e
5ef0b4d230dc5243225d149efb44cdcdd2ffea9d
/trunk/cpp-tests/2420-content/postings/services.cpp
8ec3ef1215ea034128bbb90322582200bb17be9f
[]
no_license
kai-zhu/the-teaching-machine-and-webwriter
3d3b3dfdecd61e0fb2146b44c42d6467489fd94f
67adf8f41bb475108c285eb0894906cb0878849c
refs/heads/master
2021-01-16T20:47:55.620437
2016-05-23T12:38:03
2016-05-23T12:38:12
61,149,759
1
0
null
2016-06-14T19:22:57
2016-06-14T19:22:57
null
UTF-8
C++
false
false
3,806
cpp
services.cpp
/****************************************************************** * services.cpp -- a file containing a number of functions useful * for creating programs. * * Each function constitutes a "service" that can be used in * different programs * * Thus this services file constitutes a library of function services * * *******************************************************************/ #include "services.h" #include <iostream> #include <string> using namespace std; /****************************************************************** * openFile -- prompt for a filename & open file for reading * * Parameters: * is: the input stream to which to attach the file * * Modifies: attaches a file to the input stream, is * * Returns: EXIT_FAILURE if file can't be opened, 0 if successful *******************************************************************/ int openFile(ifstream& is){ string fileName; cout << "Please specify the name of the file to open: "; cin >> fileName; is.open(fileName.c_str()); if (is.fail()){ cout << "Unable to open file " << fileName << endl; return EXIT_FAILURE; } return 0; } /****************************************************************** * readDoubles -- read a list of doubles from a stream to an array * * Parameters: * is: the input stream to which to attach the file * anArray: the array into which the file data is to be read * maxSize: the maximum size the array can hold * * Modifies: loads data into anArray * * Returns: the actual size of the array or -1 if too much data *******************************************************************/ int readDoubles(ifstream& is, double anArray[], int maxSize){ int size; // actual size is >> size; if (size > maxSize) { cout << "Sorry! Can only handle arrays of up to " << maxSize << endl; return -1; } for (int i = 0; i < size; i++) { is >> anArray[i]; if(is.fail()) { cout << "Sorry. Unable to read file after " << i << "'th entry." << endl; return 0; } } return size; } /****************************************************************** * sortDoubles -- sort an array of doubles in descending order * * Parameters: * theTable: holds the data to be sorted * size: the number of doubles in the table * * Modifies: the data in the array is sorted in descending order * * Returns: nothing *******************************************************************/ void sortDoubles(double theTable[], int size){ for(int i = 0; i < size-1; i++) { for (int j = i+1; j < size; j++) { if (theTable[j] > theTable[i]) swapDoubles(theTable[i], theTable[j]); } } } /****************************************************************** * swapDoubles -- swap a pair of doubles * * Parameters: * arg1: the first of the two doubles * arg2: the other double * * Modifies: the data in the parameters is swapped * * Returns: nothing *******************************************************************/ void swapDoubles(double& arg1, double& arg2){ double hold; hold = arg1; arg1 = arg2; arg2 = hold; } /****************************************************************** * outArrayofDoubles -- output an array of doubles * * Parameters: * theTable: holds the data to be sorted * size: the number of doubles in the table * * Modifies: nothing * * Returns: nothing *******************************************************************/ void outArrayofDoubles(double theTable[], int size){ cout << '{'; for (int i = 0; i < size-1; i++) cout << theTable[i] << ". "; cout << theTable[size - 1] << '}'; }
40675727b9ce077fba374deefc2d9e9b9138595a
8ec968525f3551ce5550c22edc013d62a2dc44cf
/ideone/ideone_gRsaen.cpp
0a55fbb21f16bf59be0c3f508e5272eb6a5fc7bd
[]
no_license
manishankarbalu/CampusPlacement
5f0abec05ee78462b34d20c3c6456320dadade16
905fb2ece09b2314b58b5d5eae4920bcf2c07a62
refs/heads/master
2023-05-30T20:57:59.140557
2020-03-19T10:05:04
2020-03-19T10:05:04
115,243,914
4
1
null
2020-03-19T10:05:07
2017-12-24T06:11:36
C++
UTF-8
C++
false
false
618
cpp
ideone_gRsaen.cpp
#include <iostream> #include <vector> using namespace std; int maxValue1(vector<int> price) { int maxi[price.size()+1]={0}; for(int i=1; i <= price.size(); i++){ maxi[i] = price[i-1]; } for(int i=1 ; i <= price.size(); i++){ for(int j=1; j < i ; j++){ maxi[i] = max(maxi[i], maxi[i-j] + maxi[j]); } } for(int i: maxi) cout<<i<<' '; cout<<endl; return maxi[price.size()]; } int main() { // your code goes here vector<int> arr={3, 5, 8, 9, 10, 17, 17, 20}; cout<<maxValue1(arr); return 0; }
aeb0cd765290e722b8274e8718ec5b6fe5a858c2
ec5ed0cd119750a9c7e7f29a318a5757c555b243
/backups/like-animator.ino
a16d1310427b41d196a2ca908ec1767d3bad5619
[]
no_license
merekamakerspace/light-box
61240b26dbf14b7b61dce260cf9c260daa72662d
164602769254d07e49527df174fc83877b2e1e9b
refs/heads/master
2021-05-12T13:40:05.195688
2018-10-05T02:44:42
2018-10-05T02:44:42
116,938,186
0
0
null
null
null
null
UTF-8
C++
false
false
10,317
ino
like-animator.ino
#include "FastLED.h" #include "digits.h" // How many leds in your strip? #define NUM_LEDS_1 150 #define NUM_LEDS_2 98 #define NUM_LEDS NUM_LEDS_1 + NUM_LEDS_2 #define LEDS_PER_ROW 8 #define NUM_ROWS 31 // For led chips like Neopixels, which have a data line, ground, and power, you just // need to define DATA_PIN. For led chipsets that are SPI based (four wires - data, clock, // ground, and power), like the LPD8806 define both DATA_PIN and CLOCK_PIN #define DATA_PIN_1 7 #define DATA_PIN_2 8 #define KNOB_PIN A1 #define MAX_ENERGY 500 #define START_RABBIT_POS 22 #define START_SNAKE_LENGTH 12 CRGB leds[NUM_LEDS]; int last_val = -1; enum { WAITING, COUNT_DOWN, START_GAME, PLAYING, WIN, LOSE, END_GAME }; int state = WAITING; const int numReadings = 10; float readings[numReadings]; // the readings from the analog input int index = 0; // the index of the current reading float total = 0; // the running total float average = 0; // the average float currentValue = 0; float energy = 0; int val; long max_energy = MAX_ENERGY; unsigned long last_twinkle = 0; unsigned char hue = 0; int run_time = 0; unsigned long last_read = 0; unsigned long last_draw = 0; unsigned long fade_time = millis(); int dt = 0; bool running = false; int count = 0; //Game variables int snake_length = 3; int rabbit_pos = 22; unsigned long game_time; int level = 1; int LEVEL_TIME[] = {25000, 22000, 21000, 20000, 18000, 15000, 14000, 13000, 12000, 10000}; void fadeAll() { for (int i = 0; i < NUM_LEDS; i++) { leds[i].nscale8(250); } FastLED.show(); } void light_row(int row, CRGB colour) { if (row > NUM_ROWS) { return; } for (int i = 0; i < LEDS_PER_ROW; i++) { int pixel = (LEDS_PER_ROW * row) + i; leds[NUM_LEDS - pixel - 1] = colour; } } void show_digit(int digit, int start_row) { //FastLED.clear(); for (int row = 0; row < 8; row++) { byte line = DIGITS[digit][row]; //Serial.println(line); int col = 0; for (byte mask = 00000001; mask > 0; mask <<= 1) { //iterate through bit mask //int pixel = ((start_row + row) * 8) + col; int pixel = ((start_row + row) * 8) + (7 - col); if ((start_row + row) % 2) { //pixel = ((start_row + row) * 8) + (7 - col); pixel = ((start_row + row) * 8) + col;//pixel += 1; } if (line & mask) { leds[pixel] = CRGB::Red; //Serial.print("*"); } else { //Serial.print(" "); leds[pixel] = CRGB::Black; } //Serial.println(pixel); col++; } //Serial.println(); } FastLED.show(); } void like_animation(int likes) { Serial.print("Likes: "); Serial.println(likes); int ones = (likes % 10); likes = likes / 10; int tens = (likes % 10); likes = likes / 10; int hundreds = (likes % 10) ; likes = likes / 10; int thou = likes; show_digit(thou, 0); show_digit(hundreds, 8); show_digit(tens, 16); show_digit(ones, 23); fade_time = millis(); while (millis() - fade_time < 5000) { fadeAll(); delay(30); } //Serial.println(thou); //Serial.println(hundreds); //Serial.println(tens); //Serial.println(ones); } void show_logo() { count = random(23) * 8; for (int j = 0; j < 8; j++) { byte line = M_LOGO[j]; //Serial.println(line); for (byte mask = 00000001; mask > 0; mask <<= 1) { //iterate through bit mask if (line & mask) { leds[count] = CRGB::Red; //Serial.print("*"); } else { //Serial.print(" "); leds[count] = CRGB::Black; } count++; } ///Serial.println(); } FastLED.show(); } void serialEvent() { while (Serial.available()) { // get the new byte: int likes = Serial.parseInt(); if (likes > 0 && likes <= 9999) like_animation(likes); } } void setup() { Serial.begin(115200); //like_animation(1234); Serial.println("ON"); //FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS); FastLED.addLeds<WS2812, DATA_PIN_1, RGB>(leds, 0, NUM_LEDS_1); FastLED.addLeds<WS2812, DATA_PIN_2, RGB>(leds, NUM_LEDS_1, NUM_LEDS_2); for (int i = 0; i < NUM_ROWS; i++) { hue = map(i, 0, NUM_ROWS, 0, 160); light_row(i, CHSV(hue, 255, 255)); } FastLED.show(); show_logo(); //unsigned long start_time = millis(); while (leds[0].b > 2) { fadeAll(); delay(30); } // initialise array for (int thisReading = 0; thisReading < numReadings; thisReading++) { readings[thisReading] = 0; } //allOff(); last_read = millis(); } void readADC() { dt = (millis() - last_read); last_read = millis(); total = total - readings[index]; readings[index] = map(analogRead(A0), 0, 1024, 0, 60); //Raw data reading total = total + readings[index]; index = index + 1; if (index >= numReadings) { index = 0; } average = total / numReadings; //Smoothing algorithm (http://www.arduino.cc/en/Tutorial/Smoothing) if (average != currentValue) { //Serial.println(average); } currentValue = average; if (average > 2) { if (!running) { running = true; //Serial.println("0 running"); } energy += ((average * dt) / 1000); run_time += dt; } else { if (energy <= 0) { if (running) { running = false; //Serial.println("0 stopped"); energy = 0; last_twinkle = millis() + 5000; } } else { //energy -= 10; run_time -= dt; } //energy -= 100; } if (energy > max_energy) { energy = max_energy + 1; } //if (running) // Serial.println(energy); } void colours() { hue += 30; CRGB col = CHSV(hue, 255, 255); for (int i = 0; i < NUM_LEDS; i++) { leds[i] = col; } FastLED.show(); } void draw_lines() { if (millis() - last_draw > 300) { //max_energy = int(map(analogRead(KNOB_PIN), 2, 1024, 0, MAX_ENERGY)); if (energy > max_energy) { colours(); } else { val = map(energy, 0, max_energy, 0, NUM_ROWS); val = constrain(val, 0, 31); //last_twinkle = millis() - 3000; Serial.print("val\t"); Serial.println(val); for (int i = 0; i < NUM_ROWS; i++) { hue = 160 - map(i, 0, NUM_ROWS, 0, 160); if (i <= val) { light_row(i, CHSV(hue, 255, 255)); } else { light_row(i, CRGB::Black); } } FastLED.show(); } last_draw = millis(); } } void twinkle() { //fadeAll(); if (millis() - last_twinkle > 1000) { hue += 30; leds[random(NUM_LEDS)] = CHSV(hue, 255, 255); last_twinkle = millis(); } FastLED.show(); } int matrix_row = NUM_ROWS; int matrix_col = random(LEDS_PER_ROW); void matrix() { for (int i = 0; i < NUM_LEDS; i++) { leds[i].nscale8(240); } if (matrix_row <= 0) { matrix_row = NUM_ROWS; matrix_col = random(LEDS_PER_ROW); hue += 42; } if (millis() - last_twinkle > 100) { last_twinkle = millis(); matrix_row--; int pixel = ((LEDS_PER_ROW) * (matrix_row) ) + matrix_col; if (matrix_row % 2) { pixel = ((LEDS_PER_ROW) * (matrix_row) ) + (LEDS_PER_ROW - 1 - matrix_col); //pixel += 1; } leds[NUM_LEDS - pixel - 1] = CHSV(hue, 255, 255); FastLED.show(); } } //Show 3 to 1 count_down void count_down() { FastLED.clear(); // FastLED.show(); show_digit(3, 8); delay(1000); show_digit(2, 8); delay(1000); show_digit(1, 8); delay(1000); FastLED.clear(); FastLED.show(); } void draw_game() { FastLED.clear(); //Draw Snake for (int i = 0; i < snake_length; i++) { leds[NUM_LEDS - 1 - i] = CRGB::Green; } //Draw Player leds[NUM_LEDS - 1 - rabbit_pos] = CRGB::Blue; FastLED.show(); last_draw = millis(); } unsigned long last_run = millis(); int prev_snake = -1; int prev_rabbit = -1; void loop() { switch (state) { case WAITING: readADC(); if (!running) { fadeAll(); if (millis() - fade_time > 5000) { show_logo(); fade_time = millis(); } //twinkle(); //matrix(); } else { if (millis() - last_run > 10000) { state = COUNT_DOWN; } } delay(30); break; case COUNT_DOWN: Serial.println("0 Count Down"); count_down(); state = START_GAME; break; case START_GAME: energy = 0; rabbit_pos = START_RABBIT_POS; snake_length = START_SNAKE_LENGTH; state = PLAYING; game_time = millis(); last_read = millis(); break; case PLAYING: readADC(); snake_length = map(energy, 0, MAX_ENERGY, START_SNAKE_LENGTH, NUM_LEDS - 1); rabbit_pos = map(millis() - game_time, 0, LEVEL_TIME[level], START_RABBIT_POS, NUM_LEDS - 1); if (snake_length != prev_snake) { Serial.print("Snake "); Serial.print(snake_length); Serial.print(" Energy: "); Serial.println(energy); } if (snake_length >= rabbit_pos) { state = WIN; Serial.print("Level: "); Serial.print(level); Serial.print(" Snake: "); Serial.print(snake_length); Serial.print(" Rabbit: "); Serial.print(rabbit_pos); Serial.print(" Energy: "); Serial.println(energy); } else if (rabbit_pos >= NUM_LEDS - 1) { state = LOSE; } else { draw_game(); } delay(30); break; case WIN: //Serial.print("0 Win "); //Serial.println(level); for (int i = 0; i < NUM_LEDS; i++) { leds[i] = CRGB::Green; } FastLED.show(); while (leds[0].g > 0) { fadeAll(); delay(5); } level++; if (level > 9) { state = END_GAME; break; } show_digit(level, 8); delay(500); FastLED.clear(); energy = 0; state = START_GAME; //rabbit_pos = START_PLAYER_POS; //snake_length = START_SNAKE_LENGTH; break; case LOSE: Serial.println("0 Lose"); for (int i = 0; i < NUM_LEDS; i++) { leds[i] = CRGB::Red; } FastLED.show(); while (leds[0].r > 0) { fadeAll(); delay(30); } state = END_GAME; break; case END_GAME: energy = 0; level = 0; FastLED.clear(); FastLED.show(); last_run = millis(); running = false; //delay(3000); state = WAITING; break; } }
836f2b9507a7ec3c6418063f600f098c5834d019
de7e771699065ec21a340ada1060a3cf0bec3091
/spatial-extras/src/test/org/apache/lucene/spatial/prefix/CellToBytesRefIterator50.h
82ea73579874e196e6a1fc17c8050687d386f19e
[]
no_license
sraihan73/Lucene-
0d7290bacba05c33b8d5762e0a2a30c1ec8cf110
1fe2b48428dcbd1feb3e10202ec991a5ca0d54f3
refs/heads/master
2020-03-31T07:23:46.505891
2018-12-08T14:57:54
2018-12-08T14:57:54
152,020,180
7
0
null
null
null
null
UTF-8
C++
false
false
1,768
h
CellToBytesRefIterator50.h
#pragma once #include "stringhelper.h" #include <memory> // C++ NOTE: Forward class declarations: #include "core/src/java/org/apache/lucene/spatial/prefix/tree/Cell.h" #include "core/src/java/org/apache/lucene/util/BytesRef.h" /* * Licensed to the Syed Mamun Raihan (sraihan.com) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * sraihan.com licenses this file to You under GPLv3 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 * * https://www.gnu.org/licenses/gpl-3.0.en.html * * 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. */ namespace org::apache::lucene::spatial::prefix { using Cell = org::apache::lucene::spatial::prefix::tree::Cell; using BytesRef = org::apache::lucene::util::BytesRef; /** For testing Lucene <= 5.0. Index redundant prefixes for leaf cells. Fixed in * LUCENE-4942. */ class CellToBytesRefIterator50 : public CellToBytesRefIterator { GET_CLASS_NAME(CellToBytesRefIterator50) public: std::shared_ptr<Cell> repeatCell; std::shared_ptr<BytesRef> next() override; protected: std::shared_ptr<CellToBytesRefIterator50> shared_from_this() { return std::static_pointer_cast<CellToBytesRefIterator50>( CellToBytesRefIterator::shared_from_this()); } }; } // #include "core/src/java/org/apache/lucene/spatial/prefix/
ae55244d88613d516781ec5f9ddcf8dcc7cf4708
b0d917e5f5df080c9377a93045ffcda553319ae9
/src/arduino_lmic_hal_configuration.h
2350f4a1be7d95426a281794c24836bbc1ecfcf5
[ "MIT" ]
permissive
mcci-catena/arduino-lmic
d46943bba58776d197c605eaa8771a32b5487657
4ceb2b049b59bb2390491f2db63e4951b986d277
refs/heads/master
2023-08-17T15:20:22.246976
2022-11-21T06:21:10
2022-11-21T06:21:10
67,839,795
610
247
MIT
2023-08-09T02:54:25
2016-09-09T23:49:49
C
UTF-8
C++
false
false
2,919
h
arduino_lmic_hal_configuration.h
/* Module: arduino_lmic_hal_configuration.h Function: Arduino-LMIC C++ HAL configuration APIs Copyright & License: See accompanying LICENSE file. Author: Matthijs Kooijman 2015 Terry Moore, MCCI November 2018 */ #pragma once #ifndef _arduino_lmic_hal_configuration_h_ # define _arduino_lmic_hal_configuration_h_ #include <stdint.h> #include "lmic/lmic_env.h" namespace Arduino_LMIC { /* these types should match the types used by the LMIC */ typedef int32_t ostime_t; // this type is used when we need to represent a threee-state signal enum class ThreeState_t : uint8_t { Off = 0, On = 1, HiZ = 2 }; // forward reference class HalConfiguration_t; // // for legacy reasons, we need a plain-old-data C-like // structure that defines the "pin mapping" for the // common pins. Many clients initialize an instance of // this structure using named-field initialization. // // Be careful of alignment below. struct HalPinmap_t { // Use this for any unused pins. static constexpr uint8_t UNUSED_PIN = 0xff; static constexpr int NUM_DIO = 3; // for backward compatibility... static constexpr uint8_t LMIC_UNUSED_PIN = UNUSED_PIN; /* the contents */ uint8_t nss; // byte 0: pin for select uint8_t rxtx; // byte 1: pin for rx/tx control uint8_t rst; // byte 2: pin for reset uint8_t dio[NUM_DIO]; // bytes 3..5: pins for DIO0, DOI1, DIO2 // true if we must set rxtx for rx_active, false for tx_active uint8_t rxtx_rx_active; // byte 6: polarity of rxtx active int8_t rssi_cal; // byte 7: cal in dB -- added to RSSI // measured prior to decision. // Must include noise guardband! uint32_t spi_freq; // bytes 8..11: SPI freq in Hz. // optional pointer to configuration object (bytes 12..15) HalConfiguration_t *pConfig; }; class HalConfiguration_t { public: HalConfiguration_t() {}; // these must match the constants in radio.c enum class TxPowerPolicy_t : uint8_t { RFO, PA_BOOST, PA_BOOST_20dBm }; virtual ostime_t setModuleActive(bool state) { LMIC_API_PARAMETER(state); // by default, if not overridden, do nothing // and return 0 to indicate that the caller // need not delay. return 0; } virtual void begin(void) {} virtual void end(void) {} virtual bool queryUsingTcxo(void) { return false; } // compute desired transmit power policy. HopeRF needs // (and previous versions of this library always chose) // PA_BOOST mode. So that's our default. Override this // for the Murata module. virtual TxPowerPolicy_t getTxPowerPolicy( TxPowerPolicy_t policy, int8_t requestedPower, uint32_t frequency ) { LMIC_API_PARAMETER(policy); LMIC_API_PARAMETER(requestedPower); LMIC_API_PARAMETER(frequency); // default: use PA_BOOST exclusively return TxPowerPolicy_t::PA_BOOST; } }; bool hal_init_with_pinmap(const HalPinmap_t *pPinmap); }; // end namespace Arduino_LMIC #endif
936313f7dd0bd0ada823b845baeb69488287b252
617aeda9343d0151c8bb17785497241b9ce39929
/Sikker5PointPixy.ino
f16107e0e026cd684e49a089308651eece4aefec
[]
no_license
RoboCup-workshop/Lyngby_Robot
c58799c2e3909206dd8377eb02b645170d6e47cb
47f5fcf615697c24f3ffa108bdc8cf1000cb13c2
refs/heads/master
2021-04-27T00:16:43.142418
2019-04-24T15:17:10
2019-04-24T15:17:10
123,783,408
1
0
null
null
null
null
UTF-8
C++
false
false
1,589
ino
Sikker5PointPixy.ino
#include <SPI.h> #include <Pixy.h> #include "MeMegaPi.h" // This is the main Pixy object Pixy pixy; MeMegaPiDCMotor motor2(PORT1B); //Venstre MeMegaPiDCMotor motor4(PORT2B); //Højre int Vmotorspeed; int Hmotorspeed; unsigned long TurnCountLeft = 0; unsigned long TurnCountRight = 0; void setup() { Serial.begin(9600); Serial.print("Starting...\n"); pixy.init(); } void loop() { static int i = 0; int j; uint16_t blocks; char buf[32]; // grab blocks! blocks = pixy.getBlocks(); int LinePositionX = pixy.blocks[i].x - 120; //-160 er venstre, 160 er højre if (blocks && pixy.blocks[i].width > 250 && pixy.blocks[i].height > 15 && LinePositionX < 0){ //Drej til venstre Hmotorspeed = 0; Vmotorspeed = 255; motor2.run(-Hmotorspeed); motor4.run(Vmotorspeed); TurnCountLeft += 1; Serial.println(TurnCountLeft); } else if (blocks && pixy.blocks[i].width > 250 && pixy.blocks[i].height > 15 && LinePositionX > 0){ //Drej til højre Hmotorspeed = 255; Vmotorspeed = 0; motor2.run(-Hmotorspeed); motor4.run(Vmotorspeed); TurnCountRight += 1; //Serial.println(TurnCountRight); } else if (blocks && pixy.blocks[i].width > 5 && pixy.blocks[i].height > 15) //Følg linjen { Hmotorspeed = pow(1.03,-(LinePositionX))+0.6*-LinePositionX+170; Vmotorspeed = pow(1.03,LinePositionX)+0.6*LinePositionX+170; motor2.run(-Hmotorspeed); motor4.run(Vmotorspeed); //Serial.println(-Hmotorspeed); //Serial.println(Vmotorspeed); } }
cfa39df0faca44cb0dedecb6d00a0f57b8a9c603
f0341e6bfb253af0d691240a66f6dff6d3d9872f
/contenedor.h
472bf90d49d0bb613ca3e23913c6b33bd7216a14
[]
no_license
ChristianGalindo10/FinalCiencias
2e04c969d6bcf3e2d1d28ff175e020eab4f16518
0a5265720ee61ca0b9c4e90a9705cd2c734505b5
refs/heads/master
2022-12-04T16:50:09.287062
2020-08-26T12:28:49
2020-08-26T12:28:49
287,644,624
0
0
null
null
null
null
ISO-8859-1
C++
false
false
1,363
h
contenedor.h
/** *@file contenedor.h *@version 1.0 *@date 24/08/2020 *@title Clase Contenedor *@brief Clase para representar una evaluación dentro del programa */ #ifndef CONTENEDOR_H #define CONTENEDOR_H #include "lista.h" #include "evaluacion.h" /** *@brief Clase para manejar los datos de una evaluación relacionada a un tipo de evaluación */ class Contenedor{ int i; ///&lt; Número de la evaluación lista<Evaluacion> c; ///&lt; Preguntas asociadas a la evaluación public: //Setters /** *@brief Establece el número de la evaluación *@param a Número de la evaluación */ void setI(int a); /** *@brief Establece la lista de preguntas *@param b Lista de tipo Evaluación */ void setListaEvaluacion(lista<Evaluacion> b); //Getters /** *@brief Retorna el número de la evaluación *@return Número de la evaluación de tipo entero */ int& getI(); /** *@brief Retorna la lista de preguntas *@return Lista de tipo Evaluación asociada a la evaluación */ lista<Evaluacion> getListaEvaluacion(); }; //Setters void Contenedor::setI(int a){ i = a; } void Contenedor::setListaEvaluacion(lista<Evaluacion> b){ c = b; } //Getters int& Contenedor::getI(){ return i; } lista<Evaluacion> Contenedor::getListaEvaluacion(){ return c; } #endif
f0017a08d05326ba8606d4b8b7032d288390fd85
c3eeda144698d7597dd12f1a16f5dddda8d9b99a
/Source/Planets/MyPlayerController.cpp
5cbeaeaf976f21ae212faf5ddc17209dcd808322
[]
no_license
quangIO/gamejam
a5673e0e82dcd5ac975213c87c535c3656e28103
105fc766188e2571634f60c1e37186830aa26791
refs/heads/master
2020-03-07T09:49:57.714653
2018-03-30T11:57:10
2018-03-30T11:57:10
127,416,822
2
2
null
null
null
null
UTF-8
C++
false
false
553
cpp
MyPlayerController.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "MyPlayerController.h" #include "Kismet/KismetMathLibrary.h" #include "PlanetsPawn.h" void AMyPlayerController::UpdateRotation() { FHitResult HitResult; GetHitResultUnderCursorByChannel(TraceTypeQuery3, false, HitResult); if (HitResult.bBlockingHit) { APawn *ControlledPawn = GetPawn(); const FRotator rot = UKismetMathLibrary::FindLookAtRotation(ControlledPawn->GetActorLocation(), HitResult.Location); ControlledPawn->SetActorRotation(rot); } }
2571a99945878cfcdcf5b6e46596ecfee8e5c184
8f08cf24ddc4b2ce3e091d8c1d1f013ccadba0ac
/LanceMag/_CLance_In_Yard.cpp
3e02822a4b76f20877389dfd4a888475dd8d1ad7
[]
no_license
rcw0125/lgLogic
42cf0a67b367d0a2ab86260639aface6cb847680
47a11962ab0132420231ca88157db862203f5cdc
refs/heads/master
2020-03-10T05:12:29.589505
2018-04-12T07:31:13
2018-04-12T07:31:13
129,211,942
0
2
null
null
null
null
GB18030
C++
false
false
916
cpp
_CLance_In_Yard.cpp
// 逻辑类CLance_In_Yard源文件 // 本文件是由L3集成开发环境自动生成,在没有充分了解本文件的内容前,请不要随意修改本文件中的内容 // 否则可能带来严重后果。 #include "StdAfx.h" #include "_CLance_In_Yard.h" IMPLEMENT_L3CLASS(CLance_In_Yard,CL3Object,1) BEGIN_L3PROPTABLE(CLance_In_Yard,CL3Object) L3PROP_DATETIME(Input_Time) L3PROP_STRING(Lance_Head_Type) L3PROP_STRING(Nozzle_Factury) L3PROP_DOUBLE(Nozzle_Throat_Dia) L3PROP_DOUBLE(Nozzle_Angle) L3PROP_LONG(IN_Yard) L3PROP_LONG(IN_Total) L3PROP_STRING(In_Confirm) L3PROP_STRING(TeamID) L3PROP_STRING(ShiftID) L3PROP_STRING(Note) END_L3PROPTABLE(CLance_In_Yard) BEGIN_L3METHODMAP(CLance_In_Yard,CL3Object) END_L3METHODMAP() BEGIN_L3EVENTSINK_MAP(CLance_In_Yard,CL3Object) END_L3EVENTSINK_MAP(CLance_In_Yard) CLance_In_Yard::CLance_In_Yard(void) { } CLance_In_Yard::~CLance_In_Yard(void) { }
26c97ff04daac1c31e8c7a0ba34bfc77b0519a72
8d11457bc63d9ff6baa78100c4adfcb37df25a5b
/C++/Final Project RPG/Final Project RPG/Enemy.cpp
855bd7273a0e84c7280a05ed7ec363d246a65725
[]
no_license
ricky92998/iDPA-Stuff
eca5b368deebe5f1b3300cab77ad8f2140ceac49
f791e0198ab869158e927f33b0c3859a431a8c3a
refs/heads/master
2021-01-20T05:31:16.071396
2013-07-15T16:36:22
2013-07-15T16:36:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
204
cpp
Enemy.cpp
#include "Enemy.h" Enemy::Enemy(void) { } Enemy::~Enemy(void) { } void Enemy::takeDamage(int damage) { enemyHealth = enemyHealth - damage; cout << "Slime took " << damage << " damage." << endl; }
d61ec15f56cc94b2f1fde65742f9ee807c3fb711
f9b77eecdf503c4f37f48c6b28a2e665d7639e07
/Resource/ResourceManager.cpp
aa9a7b120efc39cde1342fb80bdb8adf695b13d9
[]
no_license
guowanwei/Code
7a8fc216b8156115ba855e066c23fe16a19823dc
017b011909bd60fd325967cb1e741959b243e663
refs/heads/master
2021-05-02T07:14:53.842504
2019-10-03T07:33:17
2019-10-03T07:33:17
120,871,235
0
0
null
null
null
null
GB18030
C++
false
false
671
cpp
ResourceManager.cpp
#include "ResourceManager.h" bool ResourceManager::RemoveResource(ResourceType type, std::string globalName) { if (type >= RT_MAX) return false; ResourceList::iterator iter = m_vecResources[type].find(globalName); if (iter != m_vecResources[type].end()) { m_vecResources[type].erase(iter); return true; } return false; } Resource* ResourceManager::LoadResource(ResourceType type, std::string globalName) { if (type >= RT_MAX) return NULL; ResourceList::iterator iter = m_vecResources[type].find(globalName); if (iter != m_vecResources[type].end()) { iter->second->AddRef(); return iter->second; } //没找到需要硬盘加载 //todo return NULL; }
d8923695e0853343103d9fab117220c770006dc8
c6f789a9988d01e9e519c26fa77a1ba23e309cac
/src/app/script_stream.cpp
2adc19ab0dc6547e3d427018b7dda8ed2c4b41e3
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
jackeri/ModelTool
ebacfad1ea62e6601d7a885f711cd289242dbdcd
8484ca275ee00919c4a3a09c5b17f00be0deb8e0
refs/heads/main
2023-05-23T13:54:36.971426
2021-06-06T21:53:21
2021-06-06T21:53:21
362,191,944
0
0
null
null
null
null
UTF-8
C++
false
false
6,630
cpp
script_stream.cpp
#include "script_stream.h" const std::set<char> singlePunctuations = { '{', '}', '[', ']', '<', '>', '(', ')' }; const std::set<std::string> multiPunctuations = { "+=", "-=", "*=", "/=", "&=", "|=", "++", "--", "&&", "||", "<=", ">=", "==", "!=" }; mt::ScriptStream::ScriptStream(const std::string &value) { load(value); } mt::ScriptStream::ScriptStream(const Ref<IO::MTFile> &file) { load(file); } void mt::ScriptStream::load(const Ref<IO::MTFile> &file) { load(file->string()); } void mt::ScriptStream::load(const std::string &value) { fullScript = value; offset = 0; lines = 0; currentToken = {}; } bool mt::ScriptStream::valid() const { return !fullScript.empty(); } std::string mt::ScriptStream::token(bool allowLineBreaks) { parseNext(allowLineBreaks); return currentToken; } mt::ScriptStream &mt::ScriptStream::parse(bool allowLineBreaks) { parseNext(allowLineBreaks); return *this; } bool mt::ScriptStream::isBlockStart(bool parse) { if (parse) { parseNext(true); } return currentToken == "{"; } bool mt::ScriptStream::isBlockEnd(bool parse) { if (parse) { parseNext(true); } return currentToken == "}"; } void mt::ScriptStream::skipLine() { for (; offset < fullScript.length(); offset++) { if (fullScript[offset] == '\n') { while (fullScript.length() > offset && fullScript[offset] == '\n') { offset++; lines++; } break; } } } void mt::ScriptStream::skipSection() { unsigned int depth = 0; while (current() != '\0') { if (current() == '{') { depth++; } else if (current() == '}') { depth--; if (depth <= 0) { offset++; return; } } offset++; } } bool mt::ScriptStream::matches(const std::string &match) const { return !currentToken.empty() && currentToken == match; } std::string mt::ScriptStream::last() { return currentToken; } std::string mt::ScriptStream::previous() { return previousToken; } std::string mt::ScriptStream::peekNext() { // Stash our current values auto tmpOffset = offset; auto tmpCurrent = currentToken; auto tmpPrevious = previousToken; // parse the next token parseNext(true); auto next = currentToken; // return our old values offset = tmpOffset; currentToken = tmpCurrent; previousToken = tmpPrevious; // our shiny peeked value is returned return next; } void mt::ScriptStream::parse1DMatrix(int columns, float *output) { if (token() != "(") { throw std::invalid_argument("Expected ( but found: " + last()); } for (int i = 0; i < columns; i++) { output[i] = parseFloat(false); } if (token() != ")") { throw std::invalid_argument("Expected ) but found: " + last()); } } float mt::ScriptStream::parseFloat(bool allowLineBreaks) { return std::stof(token(allowLineBreaks)); } int mt::ScriptStream::parseInt(bool allowLineBreaks) { return std::stoi(token(allowLineBreaks)); } bool mt::ScriptStream::parseBool(bool allowLineBreaks) { std::string tmp = token(allowLineBreaks); for (auto &s : tmp) { s = static_cast<char>(tolower(s)); } return tmp == "true"; } bool mt::ScriptStream::hasNext() { return !peekNext().empty(); } bool mt::ScriptStream::operator==(const std::string &other) const { return currentToken == other; } mt::ScriptStream::operator float() { return std::stof(currentToken); } mt::ScriptStream::operator int() { return std::stoi(currentToken); } mt::ScriptStream::operator bool() { std::string tmp = currentToken; for (auto &s : tmp) { s = static_cast<char>(tolower(s)); } return tmp == "true"; } char mt::ScriptStream::current() { return fullScript.length() <= (offset) ? '\0' : fullScript[offset]; } char mt::ScriptStream::next() { return fullScript.length() <= (offset + 1) ? '\0' : fullScript[offset + 1]; } void mt::ScriptStream::parseNext(bool linebreaks) { previousToken = currentToken; currentToken = {}; // skip whitespace at the beginning if (skipWhitespace() && !linebreaks) { return; } // skip whitespace and comments while (current() != '\0') { // Commented line if (current() == '/' && next() == '/') { if (!currentToken.empty()) { return; } skipLine(); // If we did not allow line breaks then set the current token to be empty but still move the offset forward if (!linebreaks) { return; } skipWhitespace(); continue; } // Block comment else if (current() == '/' && next() == '*') { if (!currentToken.empty()) { return; } // If we do not allow line breaks and the block comment expands multiple lines // then we need to return an empty token and exit after moving the offset if (skipBlockComment() && !linebreaks) { return; } continue; } if (current() == '\n') { if (!currentToken.empty()) { return; } skipLine(); if (!linebreaks) { return; } } // Quoted string if (current() == '\"') { offset++; while (current() != '\0') { // allow quoted strings to have escaped " characters if (current() == '\\' && next() == '\"') { currentToken.push_back('\"'); } else if (current() == '\"') { offset++; return; } else if (current() == '\n') { lines++; offset++; return; } else { currentToken.push_back(current()); } offset++; } return; } if (isspace(current())) { if (currentToken.empty()) { offset++; continue; } return; } if (multiPunctuations.find({current(), next()}) != multiPunctuations.end()) { if (currentToken.empty()) { currentToken = {current(), next()}; offset += 2; } return; } if (singlePunctuations.find(current()) != singlePunctuations.end()) { if (currentToken.empty()) { currentToken = {current()}; offset++; } return; } // Just push the char into the buffer currentToken.push_back(current()); offset++; } } bool mt::ScriptStream::skipBlockComment() { // If we do not allow line breaks and the block comment expands multiple lines // then we need to return an empty token and exit after moving the offset bool hadLineBreaks = false; while (current() != '\0') { offset++; if (current() == '\n') { lines++; hadLineBreaks = true; } if (current() == '*' && next() == '/') { offset += 2; break; } } return hadLineBreaks; } bool mt::ScriptStream::skipWhitespace() { bool hadLineBreaks = false; while (current() != '\0') { if (current() == '\n') { lines++; hadLineBreaks = true; } if (!isspace(current())) { break; } offset++; } return hadLineBreaks; }
85b773476378bf471b32acc3e5f665a1ed2a2f86
d2dd1b37a3f0efa14f862daf6105ee655f7da9c8
/Classes/Common/GameCmd.h
84fe3ccffeddcf3f54683f85b173f08225d429c1
[]
no_license
corner4world/cocostudio-mahjong
7ec9941f2970b72daa8b70e7dcd174df6ffcd69b
87ac6540e75955d8002017039bfd5ddac45d6695
refs/heads/master
2021-09-22T16:54:39.488776
2018-07-29T09:58:57
2018-07-29T09:58:57
148,442,796
3
0
null
null
null
null
UTF-8
C++
false
false
4,429
h
GameCmd.h
// // Created by farmer on 2018/7/5. // 游戏指令数据结构,部分常量 // #ifndef COCOSTUDIO_MAHJONG_GAMECMD_H #define COCOSTUDIO_MAHJONG_GAMECMD_H #include <cstdint> #define INVALID_CHAIR 0xFF //无效椅子 #define INVALID_BYTE 0xFF //无效BYTE #define GAME_PLAYER 4 //玩家数量 #define MAX_WEAVE 4 //最大组合 #define MAX_INDEX 34 //最大索引 #define MAX_REPERTORY 136 //最大库存 #define MAX_COUNT 14 //最大数 #define MAX_MA 8 //最大马数 #define MAX_DISCARD 60 //丢弃的牌 struct CMD_WeaveItem { uint8_t cbWeaveKind; //组合类型 uint8_t cbCenterCard; //中心扑克 uint8_t cbPublicCard; //公开标志 uint8_t cbProvideUser; //供应用户 uint8_t cbValid; //有效标识 }; //游戏开始 struct CMD_S_GameStart { uint32_t iDiceCount; //骰子点数 uint8_t cbBankerUser; //庄家用户 uint8_t cbCurrentUser; //当前用户 uint8_t cbCardData[MAX_COUNT * GAME_PLAYER]; //扑克列表 uint8_t cbLeftCardCount; //剩余数目 }; //出牌命令 struct CMD_S_OutCard { uint8_t cbOutCardUser; //出牌用户 uint8_t cbOutCardData; //出牌扑克 }; //发牌命令 struct CMD_S_SendCard { uint8_t cbCardData; //扑克数据 uint8_t cbActionMask; //动作掩码 uint8_t cbCurrentUser; //当前用户 uint8_t cbGangCount; //可以杠的数量 uint8_t cbGangCard[MAX_WEAVE]; //杠的牌 bool bTail; //末尾发牌 }; //操作提示 struct CMD_S_OperateNotify { uint8_t cbResumeUser; //还原用户 uint8_t cbActionMask; //动作掩码 uint8_t cbActionCard; //动作扑克 uint8_t cbGangCount; //可以杠的数量 uint8_t cbGangCard[MAX_WEAVE]; //可以杠的牌 }; //操作结果 struct CMD_S_OperateResult { uint8_t cbOperateUser; //操作用户 uint8_t cbProvideUser; //供应用户 uint8_t cbOperateCode; //操作代码 uint8_t cbOperateCard; //操作扑克 }; //游戏结束 struct CMD_S_GameEnd { uint8_t cbCardCount[GAME_PLAYER]; //扑克总数 uint8_t cbCardData[GAME_PLAYER][MAX_COUNT]; //扑克数据 uint8_t cbHuUser; //胡牌人员 uint8_t cbProvideUser; //供应用户 uint8_t cbHuCard; //供应扑克 uint64_t dwHuRight[GAME_PLAYER]; //胡牌类型 uint8_t cbHuKind[GAME_PLAYER]; //胡牌方式 uint8_t cbHuSpecial[GAME_PLAYER]; //特殊情况 uint8_t cbWeaveCount[GAME_PLAYER]; //组合数量 CMD_WeaveItem WeaveItemArray[GAME_PLAYER][MAX_WEAVE]; //组合扑克 uint8_t cbMaCard[MAX_MA]; //扎鸟 int64_t lMaGameScore[GAME_PLAYER]; //单局马积分 int64_t lNormalGameScore[GAME_PLAYER]; //单局常规积分 int64_t lGameScore[GAME_PLAYER]; //单局积分 int64_t lGameScoreTable[GAME_PLAYER]; //总局积分 }; //出牌命令 struct CMD_C_OutCard { uint8_t cbCardData; //扑克数据 }; //操作命令 struct CMD_C_OperateCard { uint8_t cbOperateUser; //操作玩家 uint8_t cbOperateCode; //操作代码 uint8_t cbOperateCard; //操作扑克 }; #endif //COCOSTUDIO_MAHJONG_GAMECMD_H
8fe1008157d2bcfefc583f186bc0fcec66402d4b
b4e1bdfa39b1261798cfc5e12a900da4e7bbb2c3
/Source Code/Platform/Video/RenderBackend/OpenGL/Textures/glSamplerOject.cpp
e3dbddb2eb55327ae2e60981648c89d28a791468
[ "MIT" ]
permissive
wangscript007/Divide-Framework
720b8ccff4b417c1d5f905675b3526745f0085c7
c8c8faa2e78ac0e13131e382dff926475a3032df
refs/heads/master
2022-12-11T15:58:00.538735
2020-09-03T18:43:00
2020-09-03T18:43:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,489
cpp
glSamplerOject.cpp
#include "stdafx.h" #include "Headers/glSamplerObject.h" #include "Platform/Video/RenderBackend/OpenGL/Headers/GLWrapper.h" #include "Platform/Video/Textures/Headers/TextureDescriptor.h" namespace Divide { GLuint glSamplerObject::construct(const SamplerDescriptor& descriptor) { GLuint samplerID = 0; glCreateSamplers(1, &samplerID); glSamplerParameterf(samplerID, GL_TEXTURE_LOD_BIAS, to_F32(descriptor.biasLOD())); glSamplerParameterf(samplerID, GL_TEXTURE_MIN_LOD, to_F32(descriptor.minLOD())); glSamplerParameterf(samplerID, GL_TEXTURE_MAX_LOD, to_F32(descriptor.maxLOD())); glSamplerParameteri(samplerID, GL_TEXTURE_MIN_FILTER, to_U32(GLUtil::glTextureFilterTable[to_U32(descriptor.minFilter())])); glSamplerParameteri(samplerID, GL_TEXTURE_MAG_FILTER, to_U32(GLUtil::glTextureFilterTable[to_U32(descriptor.magFilter())])); glSamplerParameteri(samplerID, GL_TEXTURE_WRAP_S, to_U32(GLUtil::glWrapTable[to_U32(descriptor.wrapU())])); glSamplerParameteri(samplerID, GL_TEXTURE_WRAP_T, to_U32(GLUtil::glWrapTable[to_U32(descriptor.wrapV())])); glSamplerParameteri(samplerID, GL_TEXTURE_WRAP_R, to_U32(GLUtil::glWrapTable[to_U32(descriptor.wrapW())])); if (descriptor.wrapU() == TextureWrap::CLAMP_TO_BORDER || descriptor.wrapV() == TextureWrap::CLAMP_TO_BORDER || descriptor.wrapW() == TextureWrap::CLAMP_TO_BORDER) { glSamplerParameterfv(samplerID, GL_TEXTURE_BORDER_COLOR, descriptor.borderColour()._v); } if (descriptor.useRefCompare()) { glSamplerParameteri(samplerID, GL_TEXTURE_COMPARE_FUNC, to_U32(GLUtil::glCompareFuncTable[to_U32(descriptor.cmpFunc())])); glSamplerParameteri(samplerID, GL_TEXTURE_COMPARE_MODE, to_base(GL_COMPARE_REF_TO_TEXTURE)); } else { glSamplerParameteri(samplerID, GL_TEXTURE_COMPARE_MODE, to_base(GL_NONE)); } if (descriptor.anisotropyLevel() > 1) { glSamplerParameterf(samplerID, GL_API::getStateTracker()._opengl46Supported ? GL_TEXTURE_MAX_ANISOTROPY : GL_TEXTURE_MAX_ANISOTROPY_EXT, std::min<GLfloat>(to_F32(descriptor.anisotropyLevel()), to_F32(GL_API::s_anisoLevel))); } return samplerID; } void glSamplerObject::destruct(GLuint& handle) { if (handle > 0) { glDeleteSamplers(1, &handle); handle = 0; } } };
9eac7d3b50ba81fcdd33b38b4fac016c673a6e9d
17fafd5d1aa4028233b4a46b4b40d2c41cc91efb
/src/map.cpp
ec483e31e8bb808041ff6bdf7a4af5161ec09015
[]
no_license
aneopsy/gomoku
c111c7dd9fa2c2d8a14b94f04dbf7fbb87c2e220
02f445d5bdc2d2885284be3e821f63362b607ce6
refs/heads/master
2021-09-03T04:32:43.791693
2018-01-05T15:36:27
2018-01-05T15:36:27
112,361,359
1
0
null
null
null
null
UTF-8
C++
false
false
1,066
cpp
map.cpp
#include <cstring> #include <map.hpp> #include <other/global.hpp> Board::Board(unsigned int x, unsigned int y) { _size_x = x; _size_y = y; _map = new int[y * x]; clearMap(); } Board::~Board() {} void Board::clearMap() { for (unsigned int i = 0; i < _size_y * _size_x; ++i) { _map[i] = 0; } } void Board::printMap() { std::cout << "+" << std::endl; for (unsigned int i = 0; i < _size_y * _size_x; ++i) { if (i % _size_x == 0 && i != 0) std::cout << std::endl; if (_map[i] == 0) std::cout << "."; else std::cout << _map[i]; } std::cout << "\n+" << std::endl; } void Board::printLinearMap() { for (unsigned int i = 0; i < _size_y * _size_x; ++i) { if (_map[i] == 0) std::cout << "."; else std::cout << _map[i]; } } bool Board::put(unsigned int x, unsigned int y, const int c) { if (x > _size_x || y > _size_y) return false; _map[_size_x * y + x] = c; return true; } int *Board::getMap() { int *tmp = _map; return (tmp); } int Board::getSize() { return (_size_x); }
665660a0a1cf5d7c6eaeff9b2dbddfa3397895c5
576fe24003c0a4ef5f8ce60ba297e7621fa6509c
/BOJ/!16235.cpp
e8ba7930215c26ee9cc58960ae5de069a0ab1066
[]
no_license
juvelop17/problem_solving
167edd847a1578a02ac8de04d93246def6d4766f
cf57de3f0258f516454c5db47e214148e5a82e77
refs/heads/main
2021-11-17T10:04:05.511857
2021-10-13T14:53:59
2021-10-13T14:53:59
210,004,340
1
0
null
null
null
null
UTF-8
C++
false
false
2,421
cpp
!16235.cpp
#include <iostream> #include <cstdio> #include <vector> #include <queue> using namespace std; struct Tree{ int x; int y; int age; }; struct cmp{ bool operator() (Tree a, Tree b){ return a.age < b.age; } }; int N,M,K; int map_arr[11][11] = {0}; // 맵 int A[11][11] = {0}; // 양분 int tree_arr[11][11] = {0}; // 나무 나이 int dx[8] = {-1,-1,-1,0,0,1,1,1}; int dy[8] = {-1,0,1,-1,1,-1,0,1}; priority_queue<Tree,vector<Tree>,cmp> tree_pque; priority_queue<Tree,vector<Tree>,cmp> alive_pque; priority_queue<Tree,vector<Tree>,cmp> dead_pque; bool checkRange(int i, int j) { return i >= 1 && i <= N && j >= 1 && j <= N; } int solution(){ int y = 0; for(int i=1;i<=N;i++){ for(int j=1;j<=N;j++){ map_arr[i][j] = 5; } } while(y < K){ // 봄 while(!tree_pque.empty()){ Tree tr = tree_pque.top(); tree_pque.pop(); if(map_arr[tr.x][tr.y] >= tr.age){ map_arr[tr.x][tr.y] -= tr.age; tr.age += 1; alive_pque.push(tr); } else { dead_pque.push(tr); } } // 여름 while(!dead_pque.empty()){ Tree tr = dead_pque.top(); dead_pque.pop(); map_arr[tr.x][tr.y] += tr.age/2; } // 가을 while(!alive_pque.empty()){ Tree tr = alive_pque.top(); alive_pque.pop(); if (tr.age % 5 == 0){ for(int i=0;i<8;i++){ int new_x = tr.x + dx[i]; int new_y = tr.y + dy[i]; if (checkRange(new_x,new_y)){ Tree t = {new_x,new_y,1}; tree_pque.push(t); } } } tree_pque.push(tr); } // 겨울 for(int i=1;i<=N;i++){ for(int j=1;j<=N;j++){ map_arr[i][j] += A[i][j]; } } y++; } return tree_pque.size(); } int main(){ freopen("input.txt","r",stdin); cin >> N >> M >> K; for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ cin >> A[i][j]; } } int x,y,z; for(int i=0;i<M;i++){ Tree tr; cin >> tr.x >> tr.y >> tr.age; tree_pque.push(tr); } cout << solution(); return 0; }
9b915ae0990ddf5d306335b3ccbf8c1acde6e377
8827e127c1b0b7cc1dd3bc5d53387f0e1723ab90
/Pemrograman Dasar/komposisi.cpp
4be928b7e7098945073c084b308f52c056dbcac0
[ "MIT" ]
permissive
bayusamudra5502/PustakaCPP
f5ad4d86e1dab6d82be6259ffb0d30ae3b70823a
ac67e47374740b4923dd135d67f4bf987d4010b4
refs/heads/master
2021-06-27T19:41:18.908621
2020-10-27T05:56:25
2020-10-27T05:56:25
173,448,646
0
0
null
null
null
null
UTF-8
C++
false
false
331
cpp
komposisi.cpp
#include <bits/stdc++.h> using namespace std; int f(int A, int B, int x); int main(){ int a,b,k,x; scanf("%d %d %d %d", &a, &b , &k, &x); for(int i = 0; i < k; i++){ x = f(a,b,x); } printf("%d\n", x); return 0; } int f(int A, int B, int x){ return ((int) abs(A*x + B)); }
f3d58abb438228c5ea49ce97e253669c2756d28d
024d697677d203a05cc6a2d7f3206a7d15e72416
/Jolly Jumpers.cpp
56b3a7187644da7e5291876ba273842458587d70
[]
no_license
pluralism/CodeEval
cedada6cec3408ca3f6f3db5420c23bd2a6ac3bf
4be97f6b9d1901bc7068d2d78c010c0892c516e0
refs/heads/master
2021-01-17T13:30:28.728775
2017-11-04T02:53:37
2017-11-04T02:53:37
17,156,561
0
0
null
null
null
null
UTF-8
C++
false
false
1,158
cpp
Jolly Jumpers.cpp
#include <iostream> #include <sstream> #include <fstream> #include <set> #include <vector> #include <algorithm> #include <cstdlib> using namespace std; bool jolly(vector<int> numbers) { bool first = true; int last_value = 0; for (vector<int>::iterator it = numbers.begin(); it != numbers.end(); it++) { if (first) first = false; else { if (*it - last_value != 1) return false; } last_value = *it; } return true; } int main(int argc, char* argv[]) { ifstream fin; fin.open(argv[1]); while (!fin.eof()) { string line; vector<int> numbers; vector<int> N; getline(fin, line); replace(line.begin(), line.end(), ',', ' '); stringstream ss(line); int num; bool got_n = false; while (ss >> num) { if (!got_n) { got_n = true; } else N.push_back(num); } if (N.size() == 1) { cout << "Jolly" << endl; } else { for (int i = 1; i < N.size(); i++) { int m = N[i] - N[i - 1]; numbers.push_back(m < 0 ? -m : m); } sort(numbers.begin(), numbers.end()); if (jolly(numbers)) cout << "Jolly" << endl; else cout << "Not jolly" << endl; } } fin.close(); return 0; }
c59cfa3d5847ae2270d2b5c795352ab0ace87f61
45a1f47c08d3a1820ef2bcdb0a5c81ba7a95ba93
/fintp_utils/src/Base64.h
00ba6e9f9c8992cc4826e7538cc8ba6337575906
[]
no_license
FinTPc/fintpc-tip
88fdd88451914b83b97b97903c6ebc308ce5509f
bf0e2d3a6015b8130022d839b16fa328c1c6af2b
refs/heads/master
2021-03-18T12:52:14.542929
2020-06-23T08:36:30
2020-06-23T08:36:30
247,077,547
0
0
null
null
null
null
UTF-8
C++
false
false
3,836
h
Base64.h
/* * FinTP - Financial Transactions Processing Application * Copyright (C) 2013 Business Information Systems (Allevo) S.R.L. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> * or contact Allevo at : 031281 Bucuresti, 23C Calea Vitan, Romania, * phone +40212554577, office@allevo.ro <mailto:office@allevo.ro>, www.allevo.ro. */ /** \file Base64.h \brief Base64 encode/decode functions */ #ifndef BASE64_H #define BASE64_H #include "Collections.h" #include <string> using namespace std; namespace FinTP { /** \class Base64 \brief Implement decode and encode function for base64 \author Horia Beschea */ class ExportedUtilsObject Base64 { private : /// \brief The alphabet to use for encode/decode operations static string m_Alphabet; /// \brief Character to fill the output when the length isn't 4 multiplier static char m_FillChar; public: /** \brief Encodes the given string data \param[in] data Input data to encode \return Encoded string in base64 format */ static string encode( const string& data ); /** \brief Encodes the first <size> bytes of the given buffer \param[in] data The string to be encoded \param[in] size Number of characters to be encoded \return The encoded string */ static string encode( const unsigned char* data, const unsigned int size ); /** \brief Decodes given data \param[in] data Data to be decoded in base64 format \return The decoded string */ static string decode( const string& data ); /** \brief Decodes given data with the specified size \param[in] data The string to be decoded \param[in] size Number of characters to be decoded \return The decoded data */ static string decode( const unsigned char* data, const unsigned int size ); /** \brief Returns the length of the encoded data \param[in] data String to be encoded and return it's length \return The length of the encoded data */ static unsigned int encodedLength( const string& data ); /** \brief Returns the length of the encoded data \param[in] data String to be encoded and return it's length \param[in] size Number of characters to encode from input string \return The length of the encoded data */ static unsigned int encodedLength( const unsigned char* data, const unsigned int size ); /** \brief Returns the length of the decoded data given as a param \param[in] data String to be decoded and return it's length \return The length of the decoded data */ static unsigned int decodedLength( const string& data ); /** \brief Returns the length of the decoded data given as a param \param[in] data String to be decoded and return it's length 'param[in] size Number of characters to decode from input string \return The length of the decoded data */ static unsigned int decodedLength( const unsigned char* data, const unsigned int size ); /** \brief Return \a TRUE if input text is in base64 format, \a FALSE otherwise \param[in] text Input string to be tested \return \a TRUE if input text is in base64 format, \a FALSE otherwise */ static bool isBase64( const string& text ); }; } #endif //BASE64_H
ce9e2ed8f498dc12edf843c7cc140c91c399ddb7
4320d485ada24bde0bc5b7d69b96ecbaa7b2c0a4
/src/Particle.h
29ef9549947967a6873e4bae5a898bdcefc9b91e
[]
no_license
justinmmagadia/CS-134-Final-Project-Lander
2840443908900d8c473a949916f38a55b22b0b1c
efd9ab72f403dd41e4e1184d71b3ec1a1d9a99d5
refs/heads/master
2022-07-15T12:54:45.183293
2020-05-13T11:39:33
2020-05-13T11:39:33
263,819,953
0
0
null
2020-05-14T05:09:52
2020-05-14T05:04:07
null
UTF-8
C++
false
false
555
h
Particle.h
// // Particle.h // Lander-Final // // Created by Hoang on 5/13/20. // #ifndef Particle_h #define Particle_h #endif /* Particle_h */ #pragma once #include "ofMain.h" class ParticleForceField; class Particle{ public: Particle(); ofVec3f position; ofVec3f velocity; ofVec3f acceleration; ofVec3f forces; float damping; float mass; float lifespan; float radius; float birthtime; void integrate(); void draw(); float age(); // sec ofColor color; ofShader shader; }
4cb7e95dadad48dfb6583e6d71980484f24a0d39
73a52d0a1325c9865896a9197730875cb6d46c61
/Framework/Geometry/test/SpaceGroupTest.h
02185dbd53a0e07915bc602413e3b230fc2c06ee
[]
no_license
dezed/mantid
47b3c9f57f9adf2b6ac642ae407d26f06a0889c5
9095776c26e868a00d8126ad275626f910d66f62
refs/heads/master
2021-01-15T13:51:57.852879
2016-03-08T10:49:43
2016-03-08T10:49:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,078
h
SpaceGroupTest.h
#ifndef MANTID_GEOMETRY_SPACEGROUPTEST_H_ #define MANTID_GEOMETRY_SPACEGROUPTEST_H_ #include <cxxtest/TestSuite.h> #include "MantidGeometry/Crystal/SpaceGroup.h" #include "MantidGeometry/Crystal/SymmetryOperationFactory.h" #include "MantidGeometry/Crystal/CyclicGroup.h" #include "MantidGeometry/Crystal/ProductOfCyclicGroups.h" #include "MantidGeometry/Crystal/CenteringGroup.h" #include "MantidKernel/V3D.h" using namespace Mantid::Geometry; using Mantid::Kernel::V3D; class SpaceGroupTest : public CxxTest::TestSuite { public: // This pair of boilerplate methods prevent the suite being created statically // This means the constructor isn't called when running other tests static SpaceGroupTest *createSuite() { return new SpaceGroupTest(); } static void destroySuite(SpaceGroupTest *suite) { delete suite; } void testConstruction() { Group_const_sptr inversion = GroupFactory::create<CyclicGroup>("-x,-y,-z"); SpaceGroup p1bar(2, "P-1", *inversion); TS_ASSERT_EQUALS(p1bar.number(), 2); TS_ASSERT_EQUALS(p1bar.hmSymbol(), "P-1"); TS_ASSERT_EQUALS(p1bar.order(), 2); TS_ASSERT_EQUALS(p1bar.getSymmetryOperations().size(), 2); } void testNumber() { TestableSpaceGroup empty; TS_ASSERT_EQUALS(empty.number(), 0); empty.m_number = 2; TS_ASSERT_EQUALS(empty.number(), 2); } void testSymbol() { TestableSpaceGroup empty; TS_ASSERT_EQUALS(empty.hmSymbol(), ""); empty.m_hmSymbol = "Test"; TS_ASSERT_EQUALS(empty.hmSymbol(), "Test"); } void testAssignmentOperator() { Group_const_sptr inversion = GroupFactory::create<CyclicGroup>("-x,-y,-z"); SpaceGroup p1bar(2, "P-1", *inversion); SpaceGroup other = p1bar; TS_ASSERT_EQUALS(other.number(), p1bar.number()); TS_ASSERT_EQUALS(other.hmSymbol(), p1bar.hmSymbol()); TS_ASSERT_EQUALS(other.order(), p1bar.order()); } void testGetEquivalentsR3c() { Group_const_sptr group = GroupFactory::create<ProductOfCyclicGroups>( "-y,x-y,z; y,x,-z+1/2; -x,-y,-z"); Group_const_sptr centering = GroupFactory::create<CenteringGroup>("R"); SpaceGroup spaceGroup(167, "R-3c", *(group * centering)); std::vector<V3D> byOperator = spaceGroup * V3D(0.3, 0.0, 0.25); for (size_t i = 0; i < byOperator.size(); ++i) { byOperator[i] = getWrappedVector(byOperator[i]); } std::sort(byOperator.begin(), byOperator.end()); std::vector<V3D> byEquivalents = spaceGroup.getEquivalentPositions(V3D(0.3, 0.0, 0.25)); std::sort(byEquivalents.begin(), byEquivalents.end()); TS_ASSERT_EQUALS(byOperator.size(), 18); TS_ASSERT_EQUALS(byOperator.size(), byEquivalents.size()); for (size_t i = 0; i < byEquivalents.size(); ++i) { TS_ASSERT_EQUALS(byOperator[i], byEquivalents[i]); } } void testGetEquivalentsR3m9e() { Group_const_sptr group = GroupFactory::create<ProductOfCyclicGroups>( "-y,x-y,z; y,x,-z; -x,-y,-z"); Group_const_sptr centering = GroupFactory::create<CenteringGroup>("R"); SpaceGroup spaceGroup(166, "R-3m", *(group * centering)); std::vector<V3D> byOperator = spaceGroup * V3D(0.5, 0.0, 0.0); for (size_t i = 0; i < byOperator.size(); ++i) { byOperator[i] = getWrappedVector(byOperator[i]); } std::sort(byOperator.begin(), byOperator.end()); std::vector<V3D> byEquivalents = spaceGroup.getEquivalentPositions(V3D(0.5, 0.0, 0.0)); std::sort(byEquivalents.begin(), byEquivalents.end()); TS_ASSERT_EQUALS(byOperator.size(), 9); TS_ASSERT_EQUALS(byOperator.size(), byEquivalents.size()); for (size_t i = 0; i < byEquivalents.size(); ++i) { TS_ASSERT_EQUALS(byOperator[i], byEquivalents[i]); } } void testIsAllowedReflectionR3m() { /* This is just a check that isAllowedReflection behaves correctly, * there is a system test in place that checks more examples. * * This test uses space group 166, R-3m, like above. */ Group_const_sptr group = GroupFactory::create<ProductOfCyclicGroups>( "-y,x-y,z; y,x,-z; -x,-y,-z"); Group_const_sptr centering = GroupFactory::create<CenteringGroup>("R"); SpaceGroup spaceGroup(166, "R-3m", *(group * centering)); // Reflections hkl: -h + k + l = 3n V3D goodHKL(1, 4, 3); // -1 + 4 + 3 = 6 = 3 * 2 V3D badHKL(2, 4, 3); // -2 + 4 + 3 = 5 TS_ASSERT(spaceGroup.isAllowedReflection(goodHKL)); TS_ASSERT(!spaceGroup.isAllowedReflection(badHKL)); // Reflections hk0: -h + k = 3n V3D goodHK0(3, 9, 0); // -3 + 9 = 6 = 3 * 2 V3D badHK0(4, 9, 0); // -4 + 9 = 5 TS_ASSERT(spaceGroup.isAllowedReflection(goodHK0)); TS_ASSERT(!spaceGroup.isAllowedReflection(badHK0)); // Reflections hhl: l = 3n V3D goodHHL(1, 1, 6); // 6 = 3 * 2 V3D badHHL(1, 1, 7); TS_ASSERT(spaceGroup.isAllowedReflection(goodHHL)); TS_ASSERT(!spaceGroup.isAllowedReflection(badHHL)); // Reflections h-hl: h + l = 3n V3D goodHmHL(3, -3, 6); // 3 + 9 = 9 = 3 * 3 V3D badHmHL(3, -3, 7); // 3 + 7 = 10 TS_ASSERT(spaceGroup.isAllowedReflection(goodHmHL)); TS_ASSERT(!spaceGroup.isAllowedReflection(badHmHL)); // Reflections 000l: l = 3n V3D good00L(0, 0, 6); // 6 = 3 * 2 V3D bad00L(0, 0, 7); TS_ASSERT(spaceGroup.isAllowedReflection(good00L)); TS_ASSERT(!spaceGroup.isAllowedReflection(bad00L)); // Reflections h-h0: h = 3n V3D goodHH0(3, -3, 0); // 3 = 3 * 1 V3D badHH0(4, -4, 0); TS_ASSERT(spaceGroup.isAllowedReflection(goodHH0)); TS_ASSERT(!spaceGroup.isAllowedReflection(badHH0)); } void testSiteSymmetryGroupR3c() { /* Like the test above, this test checks that getSiteSymmetryGroup works * correctly. A system test checks different space groups and different * positions. * * This test uses space group 167, R-3c. Reference data from * * The Bilbao Crystallographic Server * (http://www.cryst.ehu.es/cgi-bin/cryst/programs//find_comp_op) * * M. I. Aroyo et al, "Crystallography online: Bilbao Crystallographic * Server" Bulg. Chem. Commun. 43(2) 183-197 (2011). * * M. I. Aroyo et al, "Bilbao Crystallographic Server I: Databases and * crystallographic computing programs" Z. Krist. 221, 1, 15-27 (2006) * * M. I. Aroyo et al, "Bilbao Crystallographic Server II: Representations * of crystallographic point groups and space groups" * Acta Cryst. A62, 115-128 (2006) */ Group_const_sptr group = GroupFactory::create<ProductOfCyclicGroups>( "-y,x-y,z; y,x,-z+1/2; -x,-y,-z"); Group_const_sptr centering = GroupFactory::create<CenteringGroup>("R"); SpaceGroup spaceGroup(167, "R-3c", *(group * centering)); size_t sgOrder = spaceGroup.order(); // Position 6a V3D w6a(0, 0, 1. / 4.); Group_const_sptr siteSymmGrp6a = spaceGroup.getSiteSymmetryGroup(w6a); checkSiteSymmetryGroupPositions(w6a, siteSymmGrp6a, "6a", sgOrder / 6); // 6b V3D w6b(0, 0, 0); Group_const_sptr siteSymmGrp6b = spaceGroup.getSiteSymmetryGroup(w6b); checkSiteSymmetryGroupPositions(w6b, siteSymmGrp6b, "6b", sgOrder / 6); // 12c V3D w12c(0, 0, 0.342352); Group_const_sptr siteSymmGrp12c = spaceGroup.getSiteSymmetryGroup(w12c); checkSiteSymmetryGroupPositions(w12c, siteSymmGrp12c, "12c", sgOrder / 12); // 18d V3D w18d(1. / 2., 0, 0); Group_const_sptr siteSymmGrp18d = spaceGroup.getSiteSymmetryGroup(w18d); checkSiteSymmetryGroupPositions(w18d, siteSymmGrp18d, "18d", sgOrder / 18); // 18e V3D w18e(0.32411, 0, 1. / 4.); Group_const_sptr siteSymmGrp18e = spaceGroup.getSiteSymmetryGroup(w18e); checkSiteSymmetryGroupPositions(w18e, siteSymmGrp18e, "18e", sgOrder / 18); // 36f V3D w36f(0.32411, 0.73232, 0.5232); Group_const_sptr siteSymmGrp36f = spaceGroup.getSiteSymmetryGroup(w36f); checkSiteSymmetryGroupPositions(w36f, siteSymmGrp36f, "36f", sgOrder / 36); } private: void checkSiteSymmetryGroupPositions(const V3D &position, const Group_const_sptr &siteSymmGroup, const std::string &wPosName, size_t siteSymmGroupOrder) { std::vector<V3D> equivalents = (*siteSymmGroup) * position; for (auto eq = equivalents.begin(); eq != equivalents.end(); ++eq) { TSM_ASSERT_EQUALS("Problem with Wyckoff-position " + wPosName + ". Expected " + position.toString() + ", got " + (*eq).toString() + ".", *eq, position); } TSM_ASSERT_EQUALS("Problem with Wyckoff-position " + wPosName + ", order of site symmetry group is incorrect.", siteSymmGroup->order(), siteSymmGroupOrder); } class TestableSpaceGroup : public SpaceGroup { friend class SpaceGroupTest; public: TestableSpaceGroup() : SpaceGroup(0, "", Group()) {} ~TestableSpaceGroup() override {} }; }; #endif /* MANTID_GEOMETRY_SPACEGROUPTEST_H_ */
d9fda7c380a28bfcf351f322c263f0ffa247353f
f4c3a3626f30b3bd7d1c648915287b303ffdfb64
/src/RaceGateway/src/lora_pkt/lora_push_data_parser.cpp
333a9af7b3981c364ca14bee459d152c95543b59
[]
no_license
leodido99/TravailBachelor
e94ebe745418f09d9311cc9b8e50c2f27bb798f3
5bdaf04cfcd4b53a587562d0fbdb094cf6aacbdf
refs/heads/master
2021-07-24T14:48:40.899336
2018-11-02T10:53:16
2018-11-02T10:53:16
133,918,812
0
0
null
null
null
null
UTF-8
C++
false
false
2,614
cpp
lora_push_data_parser.cpp
/** * @file lora_push_data_parser.cpp * @brief LoRa PUSH_DATA packet forwarder parser * * Parses packets produced by a LoRa packet forwarder and which * are of type PUSH_DATA. * * @author Léonard Bise * @date Jul 9, 2018 */ #include "lora_push_data_parser.h" #include "logger.h" #include <iostream> #include <cstring> #include <rapidjson/document.h> /** * Size of the gateway address */ #define LORA_PKT_GATEWAY_ADDR_SIZE (sizeof(uint8_t) * 8) /** * lora_push_data_parser implementation * * LoRa packet forwarder PUSH_DATA parser. This class provides a way to parse packets sent by the packet forwarder. */ /** * Names associated with lora_push_data_types */ std::string lora_push_data_types_names[3] = { "stat", "rxpk", "unknown type" }; /** * Constructor */ lora_push_data_parser::lora_push_data_parser() { this->data_type = UNKNOWN; this->gateway_mac_addr = 0; } /** * Parse the packet data of a PUSH_DATA * @param data * @param size */ void lora_push_data_parser::parse(uint8_t* data, int size) { rapidjson::Document doc; /* Extract parameters from data array */ std::memcpy(&this->gateway_mac_addr, data, LORA_PKT_GATEWAY_ADDR_SIZE); /* Ensure string is zero terminated */ data[size] = '\0'; this->json_string = std::string((char *)&data[LORA_PKT_GATEWAY_ADDR_SIZE]); log(logDEBUG4) << "lora_push_data_parser::parse: Parsing " << this->json_string; rapidjson::StringStream packet_stream(this->json_string.c_str()); doc.ParseStream(packet_stream); /* Get main json member name which define what type of packet has been received */ rapidjson::Value::ConstMemberIterator fileIt = doc.MemberBegin(); std::string member(fileIt->name.GetString()); if (member.compare("stat") == 0) { this->data_type = STAT; } else if (member.compare("rxpk") == 0) { this->data_type = RXPK; } log(logDEBUG4) << "lora_push_data_parser::parse: Main json member name: " << lora_push_data_types_names[this->data_type]; } /** * Returns the type of the packet data * @return lora_push_data_types */ lora_push_data_types lora_push_data_parser::get_data_type() const { return this->data_type; } /** * Returns the json string of the packet data * @return string */ std::string lora_push_data_parser::get_json_string() const { return this->json_string; } std::ostream& operator<<(std::ostream &strm, const lora_push_data_parser &a) { // "decoded data=" << a.get_decoded_data() << return strm << "lora_push_data_parser(" << "data type=" << lora_push_data_types_names[a.data_type] << " gateway mac addr=" << a.gateway_mac_addr << " json=" << a.json_string << ")"; }
fefcebc90bc561b9265a0c8aa2d654d76c953817
2cb82e86d02887bc5c5a54b4f1c8aaa6bcb90a7e
/smalldb_server/smalldb_server/main.cpp
cdedc6f1c4645b37fec374099f17444746b207e0
[]
no_license
01-2/achro_imx6q_opencv
2f37ac9ace6d44603fcd1b642cb2cf42657c67f0
9e4f31d9ae38ddca01e767980a67f5109dce3c2c
refs/heads/master
2020-06-09T11:48:51.699889
2019-06-26T09:59:02
2019-06-26T09:59:02
193,432,161
0
0
null
null
null
null
UTF-8
C++
false
false
9,172
cpp
main.cpp
// // main.cpp // smalldb_server // // Created by Young-il Seo on 21/06/2019. // Copyright © 2019 Young-il Seo. All rights reserved. // Only receive data #include <iostream> #include <fstream> #include <utility> #include <vector> #include <ctime> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <arpa/inet.h> #include <sys/types.h> #include <sys/socket.h> #define BUFF_SIZE 1024 typedef struct{ int hour; int min; }CustomTime; typedef struct{ char s_code[7]; // subject code CustomTime s_time; // 수업 시작 시간 CustomTime f_time; // 수업 종료 시간 int s_num; // number of students }ConfData; typedef struct{ int label; char name[BUFF_SIZE]; bool checked; }UserData; typedef struct{ int year; int month; int day; int hour; int min; int sec; int label; }AttData; std::vector<UserData> user_data; std::vector<AttData> att_data; ConfData sys_ConfData; tm* get_current_time(){ struct tm *curr_tm; time_t curr_time; curr_time = time(NULL); curr_tm = localtime(&curr_time); return curr_tm; } int req_mod_switch(char* msg){ if(0 == strncmp(msg, "REQ REG", 7)) return 0; else if(0 == strncmp(msg, "REQ ATT", 7)) return 1; else if(0 == strncmp(msg, "REQ CONFIG", 9)) return 2; else if(0 == strncmp(msg, "EXIT", 4)) return 3; return -1; } int input_file(){ UserData temp; std::ifstream inFile("user_db.ppap"); if(!inFile.is_open()) return -1; inFile.seekg(0, inFile.end); long long length = inFile.tellg(); if(length == 0) return 1; while(!inFile.eof()){ inFile >> temp.label >> temp.name; temp.checked = false; user_data.push_back(temp); } inFile.close(); return 1; } int input_att_file(){ AttData temp; std::ifstream attInFile("att_data.ppap"); if(!attInFile.is_open()) return -1; // if(is_empty(inFile)) return 1; attInFile >> sys_ConfData.s_code >> sys_ConfData.s_time.hour >> sys_ConfData.s_time.min >> sys_ConfData.f_time.hour >> sys_ConfData.f_time.min >> sys_ConfData.s_num; while(!attInFile.eof()){ //year:mon:mday:hour:min:sec:label attInFile >> temp.year >> temp.month >> temp.day >> temp.hour >> temp.min >> temp.sec >> temp.label; att_data.push_back(temp); } attInFile.close(); return 1; } void output_file(){ std::ofstream outFile("user_db.ppap"); for(int i = 0; i < user_data.size(); i++) outFile << user_data[i].label << " " << user_data[i].name << std::endl; outFile.close(); } void output_att_file(){ std::ofstream attOutFile("att_data.ppap"); attOutFile << sys_ConfData.s_code << " " << sys_ConfData.s_time.hour << " " << sys_ConfData.s_time.min << " " << sys_ConfData.f_time.hour << " " << sys_ConfData.f_time.min << " " << sys_ConfData.s_num << std::endl; for(int i = 0; i < att_data.size(); i++){ attOutFile << att_data[i].year << " " << att_data[i].month << " " << att_data[i].day << " " << att_data[i].hour << " " << att_data[i].min << " " << att_data[i].sec << " " << att_data[i].label << std::endl; } attOutFile.close(); } int find_duplicated(int t){ int i = 0; for(i = 0; i < user_data.size(); i++){ if(user_data[i].label == t) return -1; } return i; } int main(void){ int mod_sw = 0; int server_socket, client_socket, client_addr_size; struct sockaddr_in server_addr, client_addr; char buff_rcv[BUFF_SIZE+5]; char buff_snd[BUFF_SIZE+5]; input_file(); input_att_file(); server_socket = socket(PF_INET, SOCK_STREAM, 0); if(-1 == server_socket){ std::cout << "server socket error" << std::endl; exit(1); } memset(&server_addr, 0, sizeof(server_addr)); server_addr.sin_family = AF_INET; server_addr.sin_port = htons(4000); server_addr.sin_addr.s_addr= htonl(INADDR_ANY); // Don't use 'using namespace std' if(-1 == bind(server_socket, (struct sockaddr*)&server_addr, sizeof(server_addr))){ std::cout << "bind() error" << std::endl; exit(1); } if(-1 == listen(server_socket, 5)){ std::cout << "wait mode error" << std::endl; exit(1); } client_addr_size = sizeof( client_addr); client_socket = accept( server_socket, (struct sockaddr*)&client_addr, (socklen_t*)&client_addr_size); if (-1 == client_socket){ std::cout << "client error" << std::endl; exit(1); } while(1){ /* mode select 1. REGISTRATION MODE 2. ATTENDANCE CHECK 3. CONFIGURATION MODE 4. EXIT */ read(client_socket, buff_rcv, BUFF_SIZE); printf("receive: %s\n", buff_rcv); mod_sw = req_mod_switch(buff_rcv); switch(mod_sw){ // case 0:{ -> ???? fookin compile error :( case 0:{ strcpy(buff_snd, "REG MODE OK"); if((-1 == write(client_socket, buff_snd, strlen(buff_snd) + 1)) || (-1 == input_file())){ std::cout << "[ERROR] REPLY REG MODE MSG FAILED" << std::endl; return -1; } // read student_num & usr_name read(client_socket, buff_rcv, BUFF_SIZE); std::cout << "RE : " << buff_rcv << std::endl; int usr_len = 0; UserData temp_user; temp_user.label = atoi(strtok(buff_rcv, " ")); usr_len = atoi(strtok(NULL, " ")); strncpy(temp_user.name, strtok(NULL, " "), usr_len + 1); if(-1 != find_duplicated(temp_user.label)){ user_data.push_back(temp_user); strcpy(buff_snd, "REG OK"); write(client_socket, buff_snd, strlen(buff_snd)+1); } else{ strcpy(buff_snd, "REG DP"); write(client_socket, buff_snd, strlen(buff_snd)+1); } std::cout << "REG COMPLETE" << std::endl; break; } case 1:{ strcpy(buff_snd, "REQ ATT OK"); if((-1 == write(client_socket, buff_snd, strlen(buff_snd) + 1)) || (-1 == input_att_file())){ std::cout << "[ERROR] REPLY ATT MODE MSG FAILED" << std::endl; return -1; }; // read attendance, about 1 minute // read를 계속 반복, 특정 요청이 들어오면 레이블을 반환하도록 함 do{ int index = 0; read(client_socket, buff_rcv, BUFF_SIZE); printf("receive: %s\n", buff_rcv); index = find_duplicated(atoi(buff_rcv)); strcpy(buff_snd, user_data[index].name); write(client_socket, buff_snd, strlen(buff_snd)+1); if(user_data[index].checked == false){ tm* cur_time = get_current_time(); int conv_stime = sys_ConfData.s_time.hour * 60 + sys_ConfData.s_time.min; int conv_ftime = sys_ConfData.f_time.hour * 60 + sys_ConfData.f_time.min; int conv_ctime = cur_time->tm_hour * 60 + cur_time -> tm_min; if((conv_ftime > conv_ctime) && (conv_ctime > conv_stime)){ user_data[index].checked = true; AttData temp; temp.year = cur_time->tm_year; temp.month = cur_time->tm_mon; temp.day = cur_time->tm_mday; temp.hour = cur_time->tm_hour; temp.min = cur_time->tm_min; temp.sec = cur_time->tm_sec; temp.label = user_data[index].label; att_data.push_back(temp); } } }while(0 != strncmp(buff_rcv, "KILL", 4)); break; } case 2:{ sprintf(buff_snd, "%s %d %d %d %d %d", sys_ConfData.s_code, sys_ConfData.s_time.hour, sys_ConfData.s_time.min, sys_ConfData.f_time.hour, sys_ConfData.f_time.min, sys_ConfData.s_num); if(-1 == write(client_socket, buff_snd, strlen(buff_snd)+1)){ std::cout << "[ERROR] SEND CONFIG ERROR" << std::endl; return -1; } break; } case 3:{ output_file(); output_att_file(); close(client_socket); return -1; break; } } } }
592bf108632d936e819e933f9da88a1d16296317
2f015500a180f1dab1eaa23978bbd645cf43131e
/src/borwall-ex1-densityBased/testCases/pitzDaily/8/phia
2adfbdde857929c47a0ce049470a3b5ef61ab9ee
[]
no_license
krajit/borwall-example1
2da6fb0f4df5efec41b6af4360803c09a13ff3e5
834ea8d5fa585570fb946fc907aa84ce9fa5145c
refs/heads/master
2020-08-02T14:51:34.352745
2019-10-09T18:04:06
2019-10-09T18:04:06
211,396,158
1
0
null
null
null
null
UTF-8
C++
false
false
444,804
phia
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1806 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "8"; object phia; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; oriented oriented; internalField nonuniform List<scalar> 24170 ( 1.90178032408e-07 1.26642030027e-07 2.29884847552e-07 -4.08262744584e-08 1.57048917546e-07 7.0299799412e-08 1.82668407996e-07 -2.77084607712e-08 1.87558097983e-07 -7.36950882244e-09 1.96879159042e-07 -1.05294056953e-08 2.05432230462e-07 -1.04653703116e-08 2.15842873278e-07 -1.10353433703e-08 2.29150572615e-07 -1.44165373285e-08 2.46901986292e-07 -1.79152745186e-08 2.67271267848e-07 -2.09246461957e-08 2.93714321566e-07 -2.65431788372e-08 3.25856649911e-07 -3.24517413432e-08 3.65615600117e-07 -3.99531469424e-08 4.11841911729e-07 -4.64757569534e-08 4.58363960136e-07 -4.66540071017e-08 5.32107946953e-07 -7.3670219699e-08 -5.02456742557e-07 1.03456616447e-06 6.1455492739e-07 -1.41733480094e-07 2.04188284722e-07 3.72058891111e-07 2.47398742583e-07 2.70762398973e-08 2.40160363955e-07 -2.08490303853e-08 2.43980247609e-07 -1.20684882093e-08 2.56205683605e-07 -2.27757592962e-08 2.7447322784e-07 -2.90853955149e-08 2.9965902943e-07 -3.56694430405e-08 3.28777717978e-07 -4.30695373973e-08 3.61692072855e-07 -4.96784590117e-08 3.97625081297e-07 -5.57681843814e-08 4.36377264526e-07 -6.39086660798e-08 4.77001269103e-07 -7.1843572987e-08 5.18027616768e-07 -7.98778800133e-08 5.56765553695e-07 -8.43939653287e-08 5.97748814856e-07 -8.70393113092e-08 6.89370420517e-07 -1.64786067128e-07 -6.11963673773e-07 7.98965745469e-07 -2.17973041382e-07 4.39557265413e-07 2.78870474548e-07 -1.27532540949e-07 2.58508622645e-07 4.44267414372e-08 2.40654588185e-07 -5.24847889937e-09 2.46886075198e-07 -2.05629356902e-08 2.51790571309e-07 -2.90389951388e-08 2.58627251989e-07 -3.76061696259e-08 2.67006478656e-07 -4.49561248853e-08 2.76836981977e-07 -5.39948982552e-08 2.89333828265e-07 -6.27791977238e-08 3.0515599241e-07 -7.23524490701e-08 3.25055384885e-07 -8.43547994856e-08 3.49524718518e-07 -9.69014193616e-08 3.78548837478e-07 -1.09392774986e-07 4.1389705435e-07 -1.2019205505e-07 4.69336645511e-07 -1.428187121e-07 5.71630340628e-07 -2.67306070126e-07 -6.28660460369e-07 5.87854204025e-07 5.81324246938e-07 2.52814063073e-07 3.13139124901e-07 1.41231077382e-07 3.20640239928e-07 3.62672509648e-08 3.16363229954e-07 -1.70622169902e-09 3.15524366091e-07 -2.07075122385e-08 3.18812695722e-07 -3.28305307503e-08 3.24810098207e-07 -4.41975891505e-08 3.33910101431e-07 -5.41285680304e-08 3.44996019893e-07 -6.50577275367e-08 3.58136905475e-07 -7.55278537512e-08 3.72980101359e-07 -8.67540116473e-08 3.89259901747e-07 -1.00062022528e-07 4.0690505755e-07 -1.1403915513e-07 4.25862372719e-07 -1.27926362355e-07 4.5029608665e-07 -1.44342360211e-07 4.94547335258e-07 -1.86897752748e-07 5.54866410637e-07 -3.27533388354e-07 -5.8889856282e-07 5.15027052217e-07 2.75896371261e-07 3.94128759547e-07 3.57595054022e-07 5.63691415743e-08 3.44542136149e-07 4.62119104377e-08 3.40967484682e-07 -3.53859266676e-10 3.40673990729e-07 -2.25049187958e-08 3.44170264594e-07 -3.77225397589e-08 3.50276357031e-07 -5.1806876738e-08 3.59250638227e-07 -6.41017030796e-08 3.70173493859e-07 -7.70108355621e-08 3.83188447651e-07 -8.92985886522e-08 3.97992924494e-07 -1.02352152681e-07 4.14223628542e-07 -1.16962850876e-07 4.31824236204e-07 -1.322872547e-07 4.51690842712e-07 -1.48355201917e-07 4.78540499896e-07 -1.71695233933e-07 5.19021662159e-07 -2.27784674719e-07 5.50157738706e-07 -3.58997634446e-07 -5.38239773701e-07 4.98994319005e-07 4.16981269035e-07 4.27307226995e-07 4.01988571128e-07 6.99275002398e-08 3.99583669374e-07 4.70326305123e-08 3.95213356672e-07 2.61966079264e-09 3.936715394e-07 -2.22097417339e-08 3.950624231e-07 -4.01230008395e-08 3.98796889936e-07 -5.63846772076e-08 4.05001211652e-07 -7.09067495397e-08 4.13079818467e-07 -8.54790803781e-08 4.23162556501e-07 -9.96290586584e-08 4.35057174218e-07 -1.14377391672e-07 4.48455305866e-07 -1.30460818632e-07 4.63491974546e-07 -1.47409636278e-07 4.81731059604e-07 -1.66717662829e-07 5.06857339291e-07 -1.96963410152e-07 5.37797175353e-07 -2.58889700861e-07 5.4824818087e-07 -3.69612676943e-07 -4.91732464683e-07 5.016519837e-07 4.50129456775e-07 4.57162955558e-07 4.49471756972e-07 6.73000470216e-08 4.47645808951e-07 4.59695960565e-08 4.44245782409e-07 3.76348503768e-09 4.42547008744e-07 -2.23486159891e-08 4.43291975273e-07 -4.23390716061e-08 4.46037309925e-07 -6.04114567447e-08 4.5087112012e-07 -7.68131999731e-08 4.57364812128e-07 -9.29074760002e-08 4.65578349532e-07 -1.08694047563e-07 4.75321889356e-07 -1.24894514352e-07 4.86412434986e-07 -1.42266731296e-07 4.99230432524e-07 -1.60880615271e-07 5.15356039422e-07 -1.83432602689e-07 5.36273772074e-07 -2.18395711012e-07 5.56096531416e-07 -2.79129249205e-07 5.53631597037e-07 -3.6740886688e-07 -4.52528099535e-07 5.13723846445e-07 5.01751733515e-07 4.70763619844e-07 4.97944731125e-07 6.84200529889e-08 4.98136791163e-07 4.33611810475e-08 4.95192554354e-07 4.81268748095e-09 4.93466824682e-07 -2.22470814564e-08 4.93614376631e-07 -4.37459352928e-08 4.95447461691e-07 -6.33642051728e-08 4.99042156396e-07 -8.12472143598e-08 5.04074561459e-07 -9.86981269879e-08 5.10571654796e-07 -1.15767364425e-07 5.18338950415e-07 -1.3320145887e-07 5.27328227536e-07 -1.51720083619e-07 5.38006527615e-07 -1.72013327698e-07 5.5136982399e-07 -1.97208654812e-07 5.66692414221e-07 -2.34119027577e-07 5.76555150202e-07 -2.89297083101e-07 5.6662798984e-07 -3.5792387669e-07 -4.18552001578e-07 5.3236719397e-07 5.52476061521e-07 4.70355417156e-07 5.48382654323e-07 6.94941314226e-08 5.49995801561e-07 3.90708995463e-08 5.47603762895e-07 5.05674324566e-09 5.46097912496e-07 -2.24910177593e-08 5.45877457431e-07 -4.49494790272e-08 5.47032926584e-07 -6.57322328411e-08 5.49576870153e-07 -8.48370972989e-08 5.53320787328e-07 -1.03366494551e-07 5.58215256002e-07 -1.21509219566e-07 5.64136000802e-07 -1.39861245368e-07 5.71078329499e-07 -1.5935694452e-07 5.79430149468e-07 -1.8099461469e-07 5.89315450688e-07 -2.07675077788e-07 5.98598132001e-07 -2.43901173685e-07 6.00464511157e-07 -2.91585058116e-07 5.86456609126e-07 -3.44250814737e-07 -3.88728495133e-07 5.55876268473e-07 6.03991931089e-07 4.58109986453e-07 6.00609361007e-07 6.97451841555e-08 6.03701290937e-07 3.33727928966e-08 6.01735487078e-07 4.85047293176e-09 6.00573510591e-07 -2.30172394453e-08 6.00127005468e-07 -4.59337275755e-08 6.00741215168e-07 -6.7461624841e-08 6.02368691454e-07 -8.74474747005e-08 6.04922682653e-07 -1.06699440524e-07 6.08333494119e-07 -1.25564580052e-07 6.12483163586e-07 -1.44587430709e-07 6.17361604789e-07 -1.6481332296e-07 6.23131694306e-07 -1.8721522706e-07 6.29121872478e-07 -2.14147099326e-07 6.32689754934e-07 -2.478435917e-07 6.28553961097e-07 -2.87775967289e-07 6.1203491776e-07 -3.28225941145e-07 -3.61062049034e-07 5.8394914568e-07 6.58284884274e-07 4.34595912419e-07 6.5461835299e-07 7.05565584598e-08 6.58689422372e-07 2.66864500347e-08 6.57233287603e-07 4.18619504584e-09 6.56438718332e-07 -2.40327408837e-08 6.55908963655e-07 -4.68235107461e-08 6.56062727017e-07 -6.88730646125e-08 6.5691713336e-07 -8.93071844038e-08 6.5836916292e-07 -1.09043391557e-07 6.60378382466e-07 -1.28288964835e-07 6.62764712129e-07 -1.47658331828e-07 6.655359747e-07 -1.68064252424e-07 6.68503733683e-07 -1.90750351513e-07 6.70579134522e-07 -2.16623166848e-07 6.69165092167e-07 -2.46861559393e-07 6.60649210888e-07 -2.7956633081e-07 6.42717757202e-07 -3.1062247585e-07 -3.35226728999e-07 6.16199252408e-07 5.96493155191e-07 4.08966169697e-07 5.94720409158e-07 6.93202447458e-08 5.97273295936e-07 2.14633559934e-08 5.96754406071e-07 2.56872413194e-09 5.96316789292e-07 -2.54513247746e-08 5.95954918618e-07 -4.79019895206e-08 5.9587369335e-07 -7.00867810671e-08 5.96129033437e-07 -9.05904982339e-08 5.96637023105e-07 -1.10445907412e-07 5.97367106866e-07 -1.29719170231e-07 5.98168622896e-07 -1.49009714466e-07 5.98837009457e-07 -1.69656287651e-07 5.99302433826e-07 -1.91504506518e-07 5.98204355955e-07 -2.16239617835e-07 5.9400224954e-07 -2.42900934425e-07 5.84459489553e-07 -2.70501856901e-07 5.68663909832e-07 -2.95289504901e-07 -3.14627070074e-07 5.47439609523e-07 7.27632518199e-07 3.78900000281e-07 7.27600343254e-07 6.69952942213e-08 7.29049252434e-07 1.79742144917e-08 7.29145276266e-07 5.28934561966e-10 7.289476756e-07 -2.67336935984e-08 7.28611561806e-07 -4.89922541709e-08 7.28365433419e-07 -7.08986751116e-08 7.28216711878e-07 -9.1448628228e-08 7.28162063962e-07 -1.11098603571e-07 7.28071675166e-07 -1.30216295858e-07 7.27504983293e-07 -1.49527868527e-07 7.26728311417e-07 -1.69321179445e-07 7.24783950333e-07 -1.904936754e-07 7.21015046202e-07 -2.12680022795e-07 7.13308871007e-07 -2.3590227286e-07 7.00724200845e-07 -2.58098821185e-07 6.82281516443e-07 -2.77635233293e-07 -2.92060913923e-07 6.59401820912e-07 8.85570300003e-07 3.44211013641e-07 8.86352783479e-07 6.41748195032e-08 8.86946792222e-07 1.52259715748e-08 8.87548306358e-07 -1.33777099673e-09 8.87439394312e-07 -2.83313382776e-08 8.87229511148e-07 -4.96845982466e-08 8.86635334691e-07 -7.15921512614e-08 8.86001118321e-07 -9.14519019556e-08 8.85023768495e-07 -1.10953298573e-07 8.83511986333e-07 -1.29530542357e-07 8.81276311308e-07 -1.48284120836e-07 8.78053224165e-07 -1.67007371262e-07 8.73346426606e-07 -1.86428242427e-07 8.65903085166e-07 -2.05818474266e-07 8.54727576444e-07 -2.25037890669e-07 8.38625534574e-07 -2.42549910901e-07 8.18007929645e-07 -2.57237436404e-07 -2.68048636896e-07 7.93093155418e-07 1.07595544645e-06 3.06378054261e-07 1.07840725366e-06 5.95071079452e-08 1.07857372638e-06 1.36335468144e-08 1.07935807145e-06 -4.13364710812e-09 1.07954852259e-06 -2.92959619745e-08 1.07879364412e-06 -5.05609705716e-08 1.07788287817e-06 -7.1132086759e-08 1.07596202748e-06 -9.07691063091e-08 1.07373641151e-06 -1.09050784351e-07 1.06992494511e-06 -1.27217059242e-07 1.06538311821e-06 -1.44283096276e-07 1.05871145635e-06 -1.61809186674e-07 1.05059227166e-06 -1.7837331663e-07 1.0388532202e-06 -1.95000533455e-07 1.02390499893e-06 -2.09962119244e-07 1.00428427922e-06 -2.23549723293e-07 9.81075767599e-07 -2.34071292869e-07 -2.41910431211e-07 9.54716394207e-07 1.30206224352e-06 2.69949674291e-07 1.30841259611e-06 5.13062990474e-08 1.30866911542e-06 1.13125946303e-08 1.31026199738e-06 -6.91218457864e-09 1.3099141219e-06 -3.06117863131e-08 1.30913916194e-06 -5.04460471668e-08 1.30676080515e-06 -7.01069056411e-08 1.30386968449e-06 -8.81347300281e-08 1.29893768088e-06 -1.05520639057e-07 1.29315392455e-06 -1.21705756033e-07 1.28456495954e-06 -1.3745169283e-07 1.27507280568e-06 -1.52164235841e-07 1.26187377799e-06 -1.66476579012e-07 1.2467525362e-06 -1.79354448277e-07 1.22693157172e-06 -1.91153423356e-07 1.20486833766e-06 -2.00749023486e-07 1.17829373271e-06 -2.08499887594e-07 -2.13562618158e-07 1.15081675155e-06 1.57429561839e-06 2.39310454434e-07 1.58283597383e-06 4.09308665474e-08 1.58448067848e-06 7.9043865759e-09 1.58632299319e-06 -1.02501447324e-08 1.58581843532e-06 -3.14062505399e-08 1.58391820657e-06 -4.96331685333e-08 1.58021576979e-06 -6.72818463152e-08 1.57479845367e-06 -8.35045905674e-08 1.56744633261e-06 -9.88197747761e-08 1.55780685093e-06 -1.12995902445e-07 1.54608131835e-06 -1.26228814258e-07 1.53167969226e-06 -1.38474849373e-07 1.51479274863e-06 -1.49738397116e-07 1.49459273397e-06 -1.59664085143e-07 1.4717313811e-06 -1.68182227862e-07 1.44558758535e-06 -1.75015181293e-07 1.41764359098e-06 -1.80194344105e-07 -1.83652177276e-07 1.3871173678e-06 1.90017071719e-06 2.20708614289e-07 1.91210148696e-06 2.70233233499e-08 1.91393660838e-06 4.16453365343e-09 1.91597328617e-06 -1.38806358544e-08 1.91462843822e-06 -3.12831662903e-08 1.9109906955e-06 -4.72020211231e-08 1.90508558105e-06 -6.21093623844e-08 1.89643567299e-06 -7.58506113162e-08 1.88575893273e-06 -8.85422005261e-08 1.87193205887e-06 -1.00140107616e-07 1.85618627622e-06 -1.1066062721e-07 1.83702108563e-06 -1.20185276528e-07 1.81596520686e-06 -1.28623333909e-07 1.79133654778e-06 -1.35812722894e-07 1.7651808031e-06 -1.41730342977e-07 1.73574481551e-06 -1.46328701679e-07 1.70590847386e-06 -1.49686092978e-07 -1.51873907943e-07 1.67323706788e-06 2.29450830581e-06 2.20130971045e-07 2.31150524738e-06 7.06417345964e-09 2.31348256643e-06 9.53783230031e-11 2.31519256579e-06 -1.76923593869e-08 2.31239816344e-06 -3.01005797255e-08 2.30644464989e-06 -4.26569940084e-08 2.29758341676e-06 -5.42271043167e-08 2.28515486927e-06 -6.45128710925e-08 2.27037508974e-06 -7.4302882696e-08 2.2519075682e-06 -8.26937879708e-08 2.23156757148e-06 -9.05072800713e-08 2.20745168628e-06 -9.71199055095e-08 2.18198572969e-06 -1.03074376025e-07 2.15291123147e-06 -1.07761475505e-07 2.12323532163e-06 -1.1170117586e-07 2.0903302367e-06 -1.14502227816e-07 2.05805810082e-06 -1.16628973528e-07 -1.17871971985e-07 2.0227810701e-06 1.68315048755e-06 2.13916655139e-07 1.68987400081e-06 -3.54962621021e-09 1.69127559085e-06 -4.77281677652e-09 1.68993390933e-06 -2.01398229464e-08 1.68730325225e-06 -2.83274994395e-08 1.68022447727e-06 -3.87266819247e-08 1.67320716328e-06 -4.68566518059e-08 1.6614546388e-06 -5.55999724046e-08 1.65049400656e-06 -6.23525617695e-08 1.63490064833e-06 -6.94612635352e-08 1.62033372406e-06 -7.48048759474e-08 1.60149187495e-06 -8.03263459026e-08 1.58395004204e-06 -8.42615342132e-08 1.56247595034e-06 -8.81885202112e-08 1.54272661327e-06 -9.0644201363e-08 1.51951133432e-06 -9.30551878625e-08 1.49856912792e-06 -9.42038070042e-08 -9.54043010445e-08 1.47460709751e-06 1.47122094074e-06 2.04313162493e-07 1.47553951143e-06 -1.16970929712e-08 1.47664987461e-06 -7.59284081773e-09 1.47459408081e-06 -2.13791030916e-08 1.47026565312e-06 -2.72638486869e-08 1.46440042505e-06 -3.47819631155e-08 1.45575336114e-06 -4.10913334515e-08 1.44662467307e-06 -4.67444686842e-08 1.4345112026e-06 -5.24498313782e-08 1.42235688148e-06 -5.70825338998e-08 1.40753218717e-06 -6.15891620693e-08 1.39293395487e-06 -6.52317067389e-08 1.37591484676e-06 -6.86105283212e-08 1.359543528e-06 -7.1150738145e-08 1.34102366117e-06 -7.33556178692e-08 1.32363835253e-06 -7.47888483047e-08 1.30430056617e-06 -7.5965852119e-08 -7.64312888357e-08 1.28653494542e-06 1.28617596606e-06 1.87030502111e-07 1.29191479931e-06 -2.0038510259e-08 1.29005248749e-06 -1.17505853065e-08 1.28873421973e-06 -2.21906593392e-08 1.28440320153e-06 -2.54447073251e-08 1.27856792153e-06 -3.06935829144e-08 1.27089630543e-06 -3.52252541247e-08 1.26171610284e-06 -3.95832090606e-08 1.25151540299e-06 -4.33710095876e-08 1.24005291041e-06 -4.68843273591e-08 1.2275934073e-06 -5.00330818346e-08 1.21441377612e-06 -5.26263715828e-08 1.20019991827e-06 -5.51553912975e-08 1.18573401189e-06 -5.69244814428e-08 1.17055769514e-06 -5.87046555299e-08 1.15536740934e-06 -5.9659858204e-08 1.13994239427e-06 -6.0599617258e-08 -6.11062910775e-08 1.12433796193e-06 1.13190812235e-06 1.65470596302e-07 1.13055180654e-06 -2.02942727416e-08 1.12986260397e-06 -9.55245570406e-09 1.12763175622e-06 -2.2696861111e-08 1.1237878351e-06 -2.30821836409e-08 1.11801890195e-06 -2.75105450187e-08 1.1111192889e-06 -2.97633955874e-08 1.10291623329e-06 -3.26878471978e-08 1.09373271554e-06 -3.53731329337e-08 1.08353740723e-06 -3.7777141347e-08 1.07281692186e-06 -3.99485840648e-08 1.06087927536e-06 -4.20238768874e-08 1.04906379988e-06 -4.35580081116e-08 1.03593792938e-06 -4.51907686882e-08 1.02363050871e-06 -4.60725211943e-08 1.01007039537e-06 -4.70857998034e-08 9.97385261309e-07 -4.73590086285e-08 -4.67291033178e-08 9.82231618872e-07 9.60903906209e-07 1.65609819166e-07 9.93269086882e-07 -5.4802692977e-08 9.90112447232e-07 -1.13978587833e-08 9.89795302501e-07 -2.23397679007e-08 9.8580702973e-07 -1.98678009002e-08 9.80953875009e-07 -2.26336026425e-08 9.74410893621e-07 -2.44304093172e-08 9.67077337843e-07 -2.64802941992e-08 9.59066835191e-07 -2.81819411718e-08 9.50200581838e-07 -3.00010474397e-08 9.40839466025e-07 -3.13689270501e-08 9.30853451533e-07 -3.27478037492e-08 9.20287205422e-07 -3.39460870717e-08 9.09609134492e-07 -3.49805615125e-08 8.98692289875e-07 -3.58781312308e-08 8.87875544905e-07 -3.64887159284e-08 8.77276274137e-07 -3.70921063231e-08 -4.17267733927e-08 8.72025030706e-07 9.65963541623e-07 4.31958934855e-08 8.61739659287e-07 5.04099925416e-08 8.63003854425e-07 -1.00212721679e-08 8.62387999096e-07 -2.22490947474e-08 8.58453984203e-07 -1.64777947678e-08 8.53499569908e-07 -1.90125303121e-08 8.47685361413e-07 -1.91459989702e-08 8.4118666208e-07 -2.05958241233e-08 8.33999678091e-07 -2.17344932538e-08 8.26287957942e-07 -2.25574183261e-08 8.17845468508e-07 -2.36266812382e-08 8.09038282549e-07 -2.45389765016e-08 7.99596726703e-07 -2.52859484689e-08 7.89832092994e-07 -2.57932445403e-08 7.79799423269e-07 -2.62875953344e-08 7.69765122608e-07 -2.67697538537e-08 7.59066261748e-07 -2.699920336e-08 -1.47815044036e-08 7.31993601228e-07 3.74815439358e-07 4.00399361254e-07 7.88383612372e-07 -3.6258756366e-07 7.70039325863e-07 7.3786223913e-09 7.71345372911e-07 -2.28319423816e-08 7.68108181469e-07 -1.23345292312e-08 7.64843020693e-07 -1.54159745696e-08 7.60521697647e-07 -1.53502931979e-08 7.5568663564e-07 -1.63165114755e-08 7.50380663499e-07 -1.67798334974e-08 7.44580346009e-07 -1.74446507706e-08 7.38255838179e-07 -1.76525791007e-08 7.31379546521e-07 -1.82132303918e-08 7.24078146223e-07 -1.83811203122e-08 7.16606745886e-07 -1.87532293435e-08 7.09189528795e-07 -1.92233858456e-08 7.01461710343e-07 -1.92380063875e-08 6.9230548905e-07 -1.84023282876e-08 -4.05639525793e-08 7.17527679644e-07 1.56010052302e-06 -5.19398151758e-07 6.30931302864e-07 5.68996198634e-07 6.45622293755e-07 -5.39167097266e-09 6.56154711739e-07 -2.92864363508e-08 6.48153458976e-07 -6.20409511929e-09 6.42461602008e-07 -9.74167519936e-09 6.36225335739e-07 -9.21615499116e-09 6.29613847019e-07 -9.94624408469e-09 6.22501773443e-07 -9.95872633697e-09 6.14800759279e-07 -9.80857604517e-09 6.06319284302e-07 -9.9312818083e-09 5.98121870709e-07 -1.00878078799e-08 5.89728946421e-07 -1.03334900583e-08 5.81031436365e-07 -1.03548638503e-08 5.72603995052e-07 -1.09726003528e-08 5.66443268949e-07 -1.33111884207e-08 5.68329777848e-07 -2.04409272603e-08 -6.61149526468e-09 5.33411601079e-07 -7.9953695569e-07 8.3853016133e-07 6.55380493344e-07 -8.83171517404e-07 6.30307012781e-07 2.28282098879e-08 5.99999653481e-07 4.87750214949e-09 6.01999295151e-07 -8.06258594146e-09 5.99386037514e-07 -6.92624693404e-09 5.98000532338e-07 -7.68789627505e-09 5.96009163134e-07 -8.04789638686e-09 5.94153679098e-07 -8.14500821946e-09 5.91932204197e-07 -8.04132905759e-09 5.89234196051e-07 -7.56976762063e-09 5.86168448602e-07 -7.17172886176e-09 5.82655917885e-07 -6.88183984626e-09 5.7837461597e-07 -6.25280377179e-09 5.72722506144e-07 -5.43445827076e-09 5.62754618754e-07 -3.30811738456e-09 5.35307620719e-07 6.31255198997e-09 -5.33965333793e-10 5.28929842792e-07 1.33492469394e-06 -9.45957999423e-09 4.00063064545e-07 5.49368790383e-08 5.36893238666e-07 -1.10212415011e-07 5.27534766466e-07 1.88340753665e-08 5.25571662937e-07 -5.54960324571e-09 5.22966718994e-07 -4.02105390318e-09 5.20183641872e-07 -4.73120275596e-09 5.17659197535e-07 -5.57634911937e-09 5.14720487776e-07 -5.34933518063e-09 5.11613019933e-07 -5.30300384199e-09 5.0853023541e-07 -4.86986037005e-09 5.05344326924e-07 -4.05272939116e-09 5.01498768332e-07 -3.09764999619e-09 4.9698415589e-07 -1.89843563604e-09 4.92118808495e-07 -6.35482025608e-10 4.89569735337e-07 -9.59027869738e-10 5.01871390216e-07 -6.30751600837e-09 1.43584652178e-08 4.86339955126e-07 4.11053036348e-07 4.66282749701e-07 3.56521036139e-07 3.75411016604e-07 3.69893299992e-07 3.65895857455e-07 3.6115838026e-07 3.55568625258e-07 3.50170876304e-07 3.44801985338e-07 3.39918327452e-07 3.35860437498e-07 3.32731667306e-07 3.30812956811e-07 3.30157558364e-07 3.2912136542e-07 3.22662434964e-07 3.37064306968e-07 -2.0773602618e-07 2.59469083416e-07 -2.98762280458e-07 1.52247149236e-07 -2.69942688188e-07 9.25233256102e-09 -1.84683512884e-07 -5.50740457219e-08 -1.18663054259e-07 -5.26651742973e-08 -6.91711221562e-08 -3.53622516326e-08 -4.52490843517e-08 -1.77049460446e-08 -3.25587221369e-08 -3.94314899539e-09 -3.36030059949e-08 4.97961347585e-09 -3.74733352805e-08 9.99504180814e-09 -4.67799161131e-08 1.19616488961e-08 -5.42899980598e-08 1.20213202602e-08 -6.31866333005e-08 1.07376861979e-08 -6.86768096125e-08 8.82168006095e-09 -7.38990050511e-08 6.48319963191e-09 -7.55662481706e-08 4.11628165154e-09 -7.64455098833e-08 1.73976192144e-09 -7.42086455908e-08 -4.26611199469e-10 -7.11201787986e-08 -2.44634596398e-09 -6.55239371714e-08 -4.19531737451e-09 -5.92013078532e-08 -5.76695686015e-09 -5.09735429036e-08 -7.08225966358e-09 -4.21510429231e-08 -8.23336288225e-09 -3.19526000624e-08 -9.17946121327e-09 -2.13343078241e-08 -9.99137220059e-09 -9.75380755946e-09 -1.06423993518e-08 2.06676822386e-09 -1.11942212668e-08 1.45402992545e-08 -1.16211040137e-08 2.70994171961e-08 -1.19671764904e-08 4.00745037147e-08 -1.22161492924e-08 5.29739709908e-08 -1.24023442925e-08 6.61313054969e-08 -1.25041339982e-08 7.90965220458e-08 -1.25568583321e-08 9.2173000093e-08 -1.25413561123e-08 1.04964048347e-07 -1.2489070394e-08 1.17763775034e-07 -1.23791136297e-08 1.30229412173e-07 -1.22429754853e-08 1.42619957346e-07 -1.20619940134e-08 1.54650548964e-07 -1.18666294127e-08 1.66541521768e-07 -1.16414185046e-08 1.7807094784e-07 -1.1414015432e-08 1.894195049e-07 -1.1171065283e-08 2.00430176983e-07 -1.0936002194e-08 2.11239616802e-07 -1.06979516224e-08 2.21755879716e-07 -1.04746507824e-08 2.32066089627e-07 -1.02582195873e-08 2.421422751e-07 -1.0059883699e-08 2.52016767881e-07 -9.87598526135e-09 2.61715176708e-07 -9.70823481775e-09 2.71234409074e-07 -9.55948687792e-09 2.80625736566e-07 -9.43039496168e-09 2.8988269301e-07 -9.32310237081e-09 2.99054012051e-07 -9.2343900907e-09 3.08144571789e-07 -9.16649198187e-09 3.17168383144e-07 -9.11406659964e-09 3.26171929129e-07 -9.07346968575e-09 3.35110517745e-07 -9.04922923049e-09 3.44076495836e-07 -9.03466155509e-09 3.5295831724e-07 -9.03008946131e-09 3.61825611478e-07 -8.94059252092e-09 3.70293074037e-07 -8.64280368304e-09 3.78165463167e-07 -7.98472899969e-09 3.84876951157e-07 -6.91958221069e-09 3.91211827091e-07 -6.493938042e-09 3.97710881526e-07 -6.75668304631e-09 4.0474567446e-07 -7.22266972837e-09 4.12319788295e-07 -7.84257808154e-09 4.20631009657e-07 -8.52966154458e-09 4.29622695685e-07 -9.28233991811e-09 4.39410276862e-07 -1.00554787273e-08 4.49932178365e-07 -1.08605078845e-08 4.61286214784e-07 -1.1675207953e-08 4.73376538122e-07 -1.25273987957e-08 4.86334951663e-07 -1.33704269744e-08 5.00080729282e-07 -1.4248404354e-08 5.14677860182e-07 -1.51305468499e-08 5.30074921788e-07 -1.60161040327e-08 5.46298502145e-07 -1.68771804145e-08 5.63279669849e-07 -1.77194276496e-08 5.81002741771e-07 -1.85110843179e-08 5.99416854459e-07 -1.92523573959e-08 6.18437727841e-07 -1.99138469484e-08 6.38017340168e-07 -2.04820906098e-08 6.57979964855e-07 -2.09470882147e-08 6.7828365971e-07 -2.12790044989e-08 6.98596529786e-07 -2.14164510436e-08 7.18798653142e-07 -2.12515932861e-08 7.3832511114e-07 -2.07312813969e-08 7.56798857744e-07 -1.9451242762e-08 7.72725890188e-07 -1.7641595775e-08 7.85934868831e-07 -1.49859547446e-08 7.96078709461e-07 -1.22002735921e-08 8.03246374541e-07 -8.93003595838e-09 8.06364097474e-07 -4.46890154899e-09 8.03904058967e-07 1.67781600349e-09 7.95536733533e-07 8.45570572431e-09 7.80048447374e-07 1.62875581657e-08 7.52166598031e-07 2.99484876415e-08 7.34609977156e-07 2.02218699804e-08 7.53423492503e-07 -1.44504076686e-08 7.89123766671e-07 -3.06304022024e-08 8.30267820664e-07 -3.36363886278e-08 8.15513737188e-07 2.31213642776e-08 7.43030116574e-07 8.14525777951e-08 7.37413400777e-07 1.55192537634e-08 6.86376062535e-07 5.96674318999e-08 6.0050766376e-07 9.12439731473e-08 5.33132286147e-07 7.09310414576e-08 4.89665070667e-07 4.57536216727e-08 4.63510036287e-07 2.77229200253e-08 4.49615450522e-07 1.46232838323e-08 4.4205803042e-07 7.87362335192e-09 4.37358657425e-07 4.3759804922e-09 4.34092153334e-07 2.68498679992e-09 4.31237184003e-07 1.774392348e-09 4.28641141421e-07 1.3481245812e-09 4.25962784194e-07 1.0452540899e-09 4.23310238043e-07 8.91905483335e-10 4.20535342243e-07 7.44644020974e-10 4.17795977581e-07 6.49047789049e-10 4.15063289897e-07 5.58092796112e-10 4.12373871637e-07 4.89946682765e-10 4.0965737579e-07 4.30427833228e-10 4.06877998912e-07 3.60760065023e-10 4.04136985239e-07 2.11809625907e-10 4.0114348577e-07 3.69436317287e-10 3.97947555751e-07 5.64940602536e-10 3.94619777992e-07 6.37246410816e-10 3.91291708273e-07 6.74484096999e-10 3.87914154078e-07 6.59425818441e-10 3.84572647658e-07 6.72068229907e-10 3.8115449821e-07 6.67177959754e-10 3.77710666109e-07 7.37297833876e-10 3.74062126802e-07 8.45308395578e-10 3.70242921195e-07 1.05249197978e-09 3.6611372392e-07 1.26031165009e-09 3.61740194319e-07 1.5561351517e-09 3.5702469547e-07 1.85269306048e-09 3.51910246254e-07 2.41845341935e-09 3.46146169765e-07 3.03659059526e-09 3.39652640062e-07 3.85336044358e-09 3.32061231991e-07 4.69844334499e-09 3.23383751012e-07 5.72963293009e-09 3.13413617582e-07 6.74092593323e-09 3.02337117316e-07 7.87620579287e-09 2.90026473632e-07 8.89466329789e-09 2.76780471912e-07 9.94609181631e-09 2.62536204093e-07 1.07605672008e-08 2.47717779844e-07 1.15101852009e-08 2.32322889189e-07 1.19141879568e-08 2.16880762336e-07 1.21833744812e-08 2.01407852305e-07 1.20413477274e-08 1.86481198125e-07 1.17528886228e-08 1.7206691744e-07 1.10599786291e-08 1.58708607257e-07 1.02912926057e-08 1.46248211646e-07 9.2079639374e-09 1.3514427324e-07 8.17043825031e-09 1.2510244171e-07 6.9327811892e-09 1.1649791143e-07 5.85368386326e-09 1.08926885627e-07 4.67465724726e-09 1.02682051675e-07 3.74971672096e-09 9.73129730834e-08 2.77379571581e-09 9.31692142509e-08 1.98352779888e-09 8.9934818097e-08 1.02243162307e-09 8.805337481e-08 1.13060438044e-10 8.72883356984e-08 -1.01729720121e-09 8.81764459346e-08 -2.2546640437e-09 9.06045370514e-08 -3.79256996673e-09 9.51629929903e-08 -5.57103183147e-09 1.01885178684e-07 -7.74496827133e-09 1.11113229107e-07 -9.98041485905e-09 1.22309665095e-07 -1.19904826427e-08 1.3495157441e-07 -1.32281501134e-08 1.48997440432e-07 -1.47182455183e-08 1.62484785647e-07 -1.39725987291e-08 1.73839245549e-07 -1.19565538433e-08 1.81315744003e-07 -7.85493129031e-09 1.80371110004e-07 3.97855716377e-10 1.67549621008e-07 1.23577359988e-08 2.10051188619e-08 1.45755395782e-07 -2.02886593529e-08 3.07438166325e-07 1.03434466173e-07 4.73782274086e-08 1.49339720199e-07 -2.60468870933e-08 1.38492367033e-07 -3.42689809923e-08 1.15522217729e-07 -2.35549657153e-08 9.55048494577e-08 -8.55724851234e-09 7.82730219928e-08 3.78369672932e-09 6.80924592981e-08 1.13183997953e-08 6.17436624184e-08 1.44018511052e-08 6.14951120197e-08 1.42421600431e-08 6.38613045873e-08 1.19701959122e-08 7.04200584685e-08 8.56598959932e-09 7.82927306938e-08 4.64408626798e-09 8.88091686717e-08 6.65468969e-10 9.97352830743e-08 -3.14633758565e-09 1.12232493204e-07 -6.61498111744e-09 1.24611373288e-07 -9.70186016685e-09 1.37865642328e-07 -1.23550938305e-08 1.50749065576e-07 -1.46115018279e-08 1.64051987807e-07 -1.64708427898e-08 1.7688942429e-07 -1.79841185488e-08 1.89858426676e-07 -1.91761553292e-08 2.02326929946e-07 -2.01016219876e-08 2.14742734634e-07 -2.07804976243e-08 2.26650450991e-07 -2.12659325549e-08 2.38352309009e-07 -2.15811664672e-08 2.49543280523e-07 -2.17586888033e-08 2.60473055207e-07 -2.18195558722e-08 2.70890488707e-07 -2.17930211892e-08 2.81027105967e-07 -2.1690440859e-08 2.90682408269e-07 -2.15346167982e-08 3.00087632363e-07 -2.13319160779e-08 3.09067892286e-07 -2.10999746674e-08 3.1784334629e-07 -2.08417167046e-08 3.2626855925e-07 -2.05693774078e-08 3.34549936449e-07 -2.02824499208e-08 3.42565281895e-07 -1.99910731745e-08 3.50490524375e-07 -1.96929969681e-08 3.58223735638e-07 -1.93963916532e-08 3.65901098342e-07 -1.90994558837e-08 3.73442282618e-07 -1.88083186454e-08 3.80944774094e-07 -1.85215730706e-08 3.88349567865e-07 -1.82431711265e-08 3.95715760346e-07 -1.79716864602e-08 4.03007009034e-07 -1.77089805445e-08 4.10243913501e-07 -1.74539592249e-08 4.17412731673e-07 -1.72058073115e-08 4.2450262323e-07 -1.69640805386e-08 4.31511573783e-07 -1.67271983695e-08 4.38407791749e-07 -1.64917965534e-08 4.45196081969e-07 -1.62539043447e-08 4.51833761391e-07 -1.60182654702e-08 4.58315903678e-07 -1.57812687593e-08 4.64622893333e-07 -1.5544507143e-08 4.70732755843e-07 -1.53057291963e-08 4.76643874818e-07 -1.50581568977e-08 4.82288763012e-07 -1.47918099691e-08 4.87651099116e-07 -1.44813421281e-08 4.92601399902e-07 -1.40979699163e-08 4.97138517347e-07 -1.3582729596e-08 5.01241848419e-07 -1.28814483348e-08 5.05102307991e-07 -1.19750787402e-08 5.09199511848e-07 -1.12004120378e-08 5.11970371755e-07 -9.43574173326e-09 5.13149422997e-07 -8.14017209363e-09 5.13036501248e-07 -7.31936034065e-09 5.11830095124e-07 -6.86563754551e-09 5.09793538078e-07 -6.72635463859e-09 5.07126602518e-07 -6.8729537594e-09 5.04067518604e-07 -7.26312538327e-09 5.00766847632e-07 -7.87541943815e-09 4.97415051973e-07 -8.65962527141e-09 4.94124290986e-07 -9.59579840993e-09 4.91002473268e-07 -1.06643967445e-08 4.88121433155e-07 -1.18374556058e-08 4.85581773297e-07 -1.30838272357e-08 4.8340987676e-07 -1.4407973478e-08 4.81684463036e-07 -1.57706674152e-08 4.80443926687e-07 -1.71574911e-08 4.79735208052e-07 -1.85367408732e-08 4.79593971405e-07 -1.98856199905e-08 4.80028461781e-07 -2.11663614001e-08 4.81039508248e-07 -2.23370773744e-08 4.82546017725e-07 -2.33473442652e-08 4.84489861451e-07 -2.41216090295e-08 4.86668139598e-07 -2.45662393027e-08 4.88887377436e-07 -2.44900027661e-08 4.90907935536e-07 -2.36080899032e-08 4.91992944726e-07 -2.19046308021e-08 4.91778005666e-07 -1.86676953048e-08 4.89193513097e-07 -1.44738130041e-08 4.84071273086e-07 -9.22627927795e-09 4.75285789877e-07 -2.05292980195e-09 4.60266576303e-07 8.97719102638e-09 4.35982759879e-07 2.50291187582e-08 4.09338981893e-07 3.47892853539e-08 3.98259957474e-07 2.7950672969e-08 3.95744955241e-07 3.37605308949e-08 3.9382926305e-07 2.47803594008e-08 3.88412454126e-07 -5.27692091473e-09 3.59249493663e-07 3.87853153873e-09 4.19590016663e-07 -8.79089334203e-08 5.22404601314e-07 -7.41702699135e-08 5.4484973692e-07 6.25941996182e-08 4.63121756845e-07 9.99177013588e-08 4.07622959739e-07 1.17186817241e-07 3.87394945864e-07 1.13241562624e-07 3.83337606559e-07 7.62582903194e-08 3.84928920633e-07 4.52322701567e-08 3.88223151217e-07 2.50227021304e-08 3.91279077511e-07 1.19592076219e-08 3.94011054086e-07 5.11469054123e-09 3.96659776358e-07 1.51213289417e-09 3.99123856307e-07 -3.37984555244e-10 4.01429437003e-07 -1.25687344864e-09 4.03504381687e-07 -1.71721428498e-09 4.05379219989e-07 -1.96484044954e-09 4.07057657444e-07 -2.11096111593e-09 4.08592951701e-07 -2.23744595305e-09 4.10045709707e-07 -2.33029464444e-09 4.11451788106e-07 -2.41228808753e-09 4.12845730908e-07 -2.48560580251e-09 4.14204859591e-07 -2.56894256506e-09 4.15508378047e-07 -2.66398024329e-09 4.16661509423e-07 -2.73618438371e-09 4.1761646722e-07 -2.4117004804e-09 4.18487740436e-07 -2.15125936178e-09 4.19376601929e-07 -2.08611821018e-09 4.20313370438e-07 -2.0927348739e-09 4.21321127331e-07 -2.15905496134e-09 4.22430260618e-07 -2.23841835189e-09 4.23674240106e-07 -2.36382094775e-09 4.25088499361e-07 -2.45648884344e-09 4.26722499999e-07 -2.56208739891e-09 4.28651887275e-07 -2.65164431375e-09 4.30925460349e-07 -2.78245104474e-09 4.33621347088e-07 -2.91236310411e-09 4.36783629691e-07 -3.00392787413e-09 4.40377871682e-07 -2.82555090579e-09 4.44649613999e-07 -2.77871474399e-09 4.49666673648e-07 -2.73501413438e-09 4.55469751368e-07 -2.70734592176e-09 4.62118279347e-07 -2.64811305954e-09 4.69663038247e-07 -2.58672643568e-09 4.78135725477e-07 -2.47713280419e-09 4.87487884412e-07 -2.34933509946e-09 4.97625792205e-07 -2.14641691419e-09 5.08342027026e-07 -1.89611421161e-09 5.19392667004e-07 -1.52607129516e-09 5.30411279423e-07 -1.06481004587e-09 5.41029380476e-07 -4.30811210937e-10 5.50764179341e-07 3.3790704934e-10 5.59191621395e-07 1.32615895258e-09 5.658088165e-07 2.46767103409e-09 5.70265301574e-07 3.83418346518e-09 5.72181584204e-07 5.31319577108e-09 5.71415453667e-07 6.94481236346e-09 5.67821078924e-07 8.56445906399e-09 5.61544492195e-07 1.01791398264e-08 5.52734432111e-07 1.15823505365e-08 5.41868008309e-07 1.27624502204e-08 5.29374972428e-07 1.34916083467e-08 5.15925893243e-07 1.37485969818e-08 5.02011506958e-07 1.33629928769e-08 4.88319039138e-07 1.23604205995e-08 4.75323820357e-07 1.06669238584e-08 4.63641462072e-07 8.26741224502e-09 4.53524340557e-07 5.30500374443e-09 4.45143718013e-07 1.93915107949e-09 4.38245895871e-07 -1.59563016106e-09 4.32702086455e-07 -5.06189820959e-09 4.28181167368e-07 -8.01511358774e-09 4.24373947446e-07 -9.88402826947e-09 4.20355127383e-07 -1.11436460942e-08 4.15841389909e-07 -9.86120163518e-09 4.10669749802e-07 -7.21278452818e-09 4.05453081148e-07 -3.03235423676e-09 4.02117455453e-07 3.28200669682e-09 4.04454483618e-07 9.5125690044e-09 1.85802688256e-08 4.0611757046e-07 1.42570237206e-07 1.79404690499e-07 2.02259479591e-07 -1.41403572597e-09 2.05890689164e-07 -2.33012505471e-08 1.93137050716e-07 -1.49758994668e-08 1.76179764948e-07 -2.37464394523e-09 1.64678069617e-07 7.89510031564e-09 1.57751907685e-07 1.37866508768e-08 1.57306888107e-07 1.57247665851e-08 1.59420462503e-07 1.48357262079e-08 1.64617574744e-07 1.22310964197e-08 1.69863258202e-07 8.70950686519e-09 1.76175639331e-07 4.80209934295e-09 1.8151954151e-07 8.14734033072e-10 1.8719770351e-07 -3.03666487302e-09 1.91834144364e-07 -6.65888356997e-09 1.96688418996e-07 -9.96983233379e-09 2.00779929953e-07 -1.29608262924e-08 2.0516575147e-07 -1.56091697403e-08 2.09129055126e-07 -1.79346197784e-08 2.13514034573e-07 -1.99402263235e-08 2.17753773178e-07 -2.16680964077e-08 2.2247257441e-07 -2.31225248009e-08 2.27278499317e-07 -2.43387107264e-08 2.32568967814e-07 -2.53409451851e-08 2.38037307574e-07 -2.61535156571e-08 2.43965840173e-07 -2.67917585005e-08 2.50093023093e-07 -2.7285644599e-08 2.56609247059e-07 -2.7646884837e-08 2.63292899497e-07 -2.7896176933e-08 2.70284459458e-07 -2.8045197043e-08 2.77383516481e-07 -2.81101364464e-08 2.84714819796e-07 -2.8100097778e-08 2.92090245336e-07 -2.80289506104e-08 2.99626532728e-07 -2.79027924904e-08 3.07154012335e-07 -2.77339249715e-08 3.14781991946e-07 -2.75249914819e-08 3.22366505758e-07 -2.72858329506e-08 3.29996164226e-07 -2.70196790269e-08 3.37555006811e-07 -2.6733080882e-08 3.45112686551e-07 -2.64293088414e-08 3.52578941509e-07 -2.61139270063e-08 3.60004258113e-07 -2.57893774936e-08 3.67327626363e-07 -2.54594231023e-08 3.74579083304e-07 -2.51264096402e-08 3.81725476384e-07 -2.47922476809e-08 3.8877758997e-07 -2.44589701362e-08 3.95726796881e-07 -2.41270005033e-08 4.02565006092e-07 -2.37979950664e-08 4.09305071806e-07 -2.34684421505e-08 4.1592931865e-07 -2.31403366641e-08 4.22449343454e-07 -2.28076103659e-08 4.28847594322e-07 -2.24641569927e-08 4.35117074037e-07 -2.21047653429e-08 4.41235240914e-07 -2.17275313972e-08 4.47184690378e-07 -2.13300161948e-08 4.52968206907e-07 -2.09124751539e-08 4.58565884697e-07 -2.04785311873e-08 4.64031138834e-07 -2.00284305411e-08 4.69400825457e-07 -1.95728976714e-08 4.74877615116e-07 -1.91495757711e-08 4.80701291744e-07 -1.88349488077e-08 4.87172876237e-07 -1.85713156166e-08 4.94188100787e-07 -1.83592555864e-08 5.03061567432e-07 -1.84667145983e-08 5.12551731279e-07 -1.7813358887e-08 5.21934745231e-07 -1.68823914592e-08 5.30760252385e-07 -1.5893734353e-08 5.38770147101e-07 -1.49456258109e-08 5.4577272554e-07 -1.41058798429e-08 5.51673656595e-07 -1.3417560159e-08 5.56441429171e-07 -1.29057511238e-08 5.60089337e-07 -1.25978592141e-08 5.6265239112e-07 -1.25040869671e-08 5.6424018853e-07 -1.2604891186e-08 5.64929249266e-07 -1.29132354814e-08 5.6481301944e-07 -1.34178098864e-08 5.64008189559e-07 -1.4090402367e-08 5.62614584959e-07 -1.49156706592e-08 5.60737364777e-07 -1.58665780999e-08 5.58485157847e-07 -1.69152043723e-08 5.55962956168e-07 -1.80288183458e-08 5.53262363424e-07 -1.9163766974e-08 5.50463731935e-07 -2.02561979832e-08 5.47613662737e-07 -2.12405769918e-08 5.44738117388e-07 -2.20244991411e-08 5.41777840312e-07 -2.24266788151e-08 5.38688110611e-07 -2.21431498795e-08 5.35158152666e-07 -2.09953371649e-08 5.31043797944e-07 -1.84472482122e-08 5.24942138718e-07 -1.43309186452e-08 5.15554681969e-07 -7.04833380647e-09 5.01358292025e-07 2.95097807364e-09 4.841582787e-07 1.31228127664e-08 4.70147246126e-07 2.12671368237e-08 4.61304469482e-07 3.2589198774e-08 4.43393197853e-07 5.16981364306e-08 4.16983500012e-07 5.41569690456e-08 3.75080883215e-07 7.58288603932e-08 3.52419484372e-07 4.88055006416e-08 4.12233826814e-07 -6.36511651705e-08 4.72098369996e-07 -5.44550595016e-08 4.08094587305e-07 -2.32655562061e-08 3.1075612658e-07 2.3363099557e-08 2.99353236868e-07 7.39133153673e-08 3.08979092757e-07 9.02953166704e-08 3.40386373135e-07 8.5919303118e-08 3.82225056965e-07 7.16051946059e-08 4.14316507002e-07 4.43741747734e-08 4.35287415818e-07 2.44080364095e-08 4.50807564732e-07 9.53055603797e-09 4.62350207669e-07 3.26654812423e-10 4.71504892526e-07 -4.30811792732e-09 4.79065083499e-07 -6.44247495426e-09 4.85324704719e-07 -7.18411746094e-09 4.90555412133e-07 -7.18862185299e-09 4.94838455425e-07 -6.87790167473e-09 4.98329075804e-07 -6.42320717056e-09 5.01061645677e-07 -5.95879891069e-09 5.03153423344e-07 -5.51434814247e-09 5.04675238697e-07 -5.11176727427e-09 5.0573897994e-07 -4.74464710408e-09 5.06388772714e-07 -4.42114646275e-09 5.06637870658e-07 -4.14505455285e-09 5.06495808725e-07 -3.90201456496e-09 5.05975063544e-07 -3.65465533621e-09 5.05395597348e-07 -3.28371151142e-09 5.04719514099e-07 -2.95026959984e-09 5.03893731513e-07 -2.70817678412e-09 5.02891005945e-07 -2.54718465139e-09 5.01745035815e-07 -2.42740744842e-09 5.00432404599e-07 -2.34925629752e-09 4.98977069464e-07 -2.28607212614e-09 4.97361219998e-07 -2.23107565305e-09 4.9561653471e-07 -2.1655468357e-09 4.93706932135e-07 -2.10608082356e-09 4.91640023874e-07 -2.04062352206e-09 4.89378218864e-07 -1.96165042934e-09 4.86951512316e-07 -1.79904191801e-09 4.84484391262e-07 -1.49943025062e-09 4.81842971232e-07 -1.16809230167e-09 4.78916191325e-07 -8.07007087489e-10 4.75615984106e-07 -3.9925654819e-10 4.71872265697e-07 4.73284547442e-11 4.67672653251e-07 5.44697419471e-10 4.63010330897e-07 1.07702112273e-09 4.57915817057e-07 1.64473209987e-09 4.52430032561e-07 2.22466252187e-09 4.46635203976e-07 2.81226173003e-09 4.40640571983e-07 3.38398887935e-09 4.34596242183e-07 3.93860496219e-09 4.28679945626e-07 4.45716802668e-09 4.23095910969e-07 4.9474129353e-09 4.18067937944e-07 5.39670992821e-09 4.13814546362e-07 5.8200962563e-09 4.10548763284e-07 6.21609484249e-09 4.08433049369e-07 6.5990550562e-09 4.076026742e-07 6.96331561381e-09 4.08099412752e-07 7.30705683052e-09 4.0992414738e-07 7.61832325895e-09 4.12952681146e-07 7.86811083443e-09 4.170251688e-07 8.04127835589e-09 4.21842699073e-07 8.07456211346e-09 4.27120970313e-07 7.92110497852e-09 4.32468123604e-07 7.50905390441e-09 4.37554721623e-07 6.82456934605e-09 4.41964781204e-07 5.8341174918e-09 4.45319334654e-07 4.54457159868e-09 4.47229701958e-07 3.02877578178e-09 4.47519971296e-07 1.32544281617e-09 4.45953658848e-07 -3.7589000427e-10 4.42293952129e-07 -1.71778466583e-09 4.36395734651e-07 -2.46891746642e-09 4.2853023412e-07 -2.33782859871e-09 4.18195294836e-07 -1.16111832492e-09 4.0611179099e-07 1.91888862863e-09 3.92365567744e-07 6.2239003421e-09 3.77198637255e-07 1.19099330862e-08 3.61326920761e-07 1.89332682173e-08 3.40804426377e-07 2.97858814771e-08 4.38346115581e-08 3.15198573467e-07 9.28272604924e-08 9.5734278858e-08 1.46655418562e-07 -4.75663639387e-08 1.75281078578e-07 -4.75316137795e-08 1.9460098732e-07 -2.92532903976e-08 2.06810177274e-07 -1.16103205226e-08 2.17923638959e-07 5.30745428105e-10 2.27513007975e-07 6.63508578594e-09 2.37853920484e-07 8.46245422957e-09 2.46792336789e-07 7.80010017842e-09 2.55803268863e-07 5.82344283774e-09 2.6295905818e-07 3.14193958689e-09 2.69714678914e-07 1.59926093773e-10 2.74715957831e-07 -2.93876908724e-09 2.79336792412e-07 -5.99572243304e-09 2.82578904881e-07 -8.95681746151e-09 2.85636030462e-07 -1.17467097926e-08 2.87742441328e-07 -1.43593952826e-08 2.89886279019e-07 -1.67540277537e-08 2.91471297075e-07 -1.89512957434e-08 2.93245118325e-07 -2.09306829999e-08 2.94793038839e-07 -2.27057205412e-08 2.96659727806e-07 -2.42803086507e-08 2.98497531493e-07 -2.5676693641e-08 3.00723977913e-07 -2.6887225885e-08 3.03070906096e-07 -2.79410424095e-08 3.05791038607e-07 -2.88445330631e-08 3.08689090266e-07 -2.96099137057e-08 3.11946219203e-07 -3.02458162877e-08 3.15381614898e-07 -3.07688820095e-08 3.19139726043e-07 -3.11846877988e-08 3.23055921797e-07 -3.15091946398e-08 3.27257143049e-07 -3.17463871141e-08 3.31588445684e-07 -3.191191595e-08 3.36165981923e-07 -3.20077750409e-08 3.40853716248e-07 -3.204550871e-08 3.45750503177e-07 -3.20290334236e-08 3.5073337225e-07 -3.19664100081e-08 3.55888829097e-07 -3.18585937451e-08 3.61105738778e-07 -3.17137834084e-08 3.66447440772e-07 -3.15325202054e-08 3.71824886641e-07 -3.13195713139e-08 3.77279198114e-07 -3.10766714477e-08 3.82742016964e-07 -3.08068104238e-08 3.88233495713e-07 -3.05121909668e-08 3.9370633047e-07 -3.0194591819e-08 3.99159951795e-07 -2.98571475281e-08 4.04567272043e-07 -2.94996838815e-08 4.09914965286e-07 -2.91256719946e-08 4.15185870399e-07 -2.87353742183e-08 4.20360376983e-07 -2.83293074358e-08 4.25440526929e-07 -2.79055930589e-08 4.3040698613e-07 -2.74674645558e-08 4.35263601722e-07 -2.70063458967e-08 4.39999769279e-07 -2.65148193424e-08 4.44595928832e-07 -2.59882182105e-08 4.49048976618e-07 -2.54271304843e-08 4.53333566748e-07 -2.48403477807e-08 4.57473201951e-07 -2.42366889597e-08 4.61445120602e-07 -2.36345479245e-08 4.65238007178e-07 -2.30287585748e-08 4.68660281613e-07 -2.23563629256e-08 4.71553566895e-07 -2.1560350305e-08 4.73737079951e-07 -2.06755845394e-08 4.75448169095e-07 -2.02979230753e-08 4.77614744803e-07 -2.01206037025e-08 4.80526804642e-07 -1.99451878511e-08 4.84187388547e-07 -1.97199616554e-08 4.88503905879e-07 -1.94378280992e-08 4.93309704333e-07 -1.9103522533e-08 4.98430241596e-07 -1.87370244321e-08 5.03663568624e-07 -1.83746798323e-08 5.08858666254e-07 -1.80445651474e-08 5.13894562994e-07 -1.77888453021e-08 5.186551114e-07 -1.76657077016e-08 5.23100056467e-07 -1.76912850264e-08 5.27214110749e-07 -1.78828831805e-08 5.30981306202e-07 -1.82526407317e-08 5.34409928893e-07 -1.87781524046e-08 5.37509145285e-07 -1.94317678593e-08 5.40277466184e-07 -2.01824930324e-08 5.42717319761e-07 -2.0990440856e-08 5.44817970427e-07 -2.1805673828e-08 5.4655884996e-07 -2.2553227742e-08 5.47903944942e-07 -2.31621284833e-08 5.4882083839e-07 -2.35211193729e-08 5.49219430211e-07 -2.34243997008e-08 5.48847160126e-07 -2.23997672382e-08 5.47172172131e-07 -1.97456872938e-08 5.42756574238e-07 -1.52650688958e-08 5.363360444e-07 -8.83939900953e-09 5.28830192164e-07 -1.2963338929e-09 5.23506619738e-07 6.47223019035e-09 5.18265342141e-07 1.65581895832e-08 4.98220762364e-07 3.96528665851e-08 4.61836943586e-07 6.73013983007e-08 4.18006287772e-07 9.42728412062e-08 3.96749479876e-07 7.406862067e-08 4.23277252278e-07 4.84265723856e-08 4.490431229e-07 2.22326670268e-08 4.16654957511e-07 -3.19937350212e-08 3.85555055973e-07 -2.44768615455e-08 3.53866467339e-07 6.93225747663e-09 3.3093876982e-07 4.45985096671e-08 3.36101594016e-07 6.71904870769e-08 3.54416615586e-07 7.07453148007e-08 3.79493790439e-07 5.99762853993e-08 4.08405811133e-07 4.20859400705e-08 4.31246247094e-07 2.11316443546e-08 4.47876429422e-07 7.44712221108e-09 4.58830870932e-07 -1.70065385938e-09 4.65912773945e-07 -7.07528552707e-09 4.7087003504e-07 -9.6177482947e-09 4.74528938772e-07 -1.05473333618e-08 4.77342129413e-07 -1.05188049362e-08 4.79524173645e-07 -9.99938628601e-09 4.81205294454e-07 -9.27630663502e-09 4.824570381e-07 -8.47921042353e-09 4.83316102381e-07 -7.71695111241e-09 4.83831710692e-07 -6.99989032775e-09 4.84057172976e-07 -6.36355006174e-09 4.84061319105e-07 -5.78862716168e-09 4.83868396113e-07 -5.28846186426e-09 4.83481345548e-07 -4.85410243654e-09 4.82905316482e-07 -4.46904854026e-09 4.82175066169e-07 -4.10705183551e-09 4.81409621673e-07 -3.71898009465e-09 4.80618767603e-07 -3.37051312657e-09 4.79783617682e-07 -3.07239954893e-09 4.78888893986e-07 -2.84808343454e-09 4.77944641318e-07 -2.65297643585e-09 4.76942221832e-07 -2.51102302071e-09 4.75895148191e-07 -2.3718000771e-09 4.74800480039e-07 -2.26616429884e-09 4.73682817158e-07 -2.14607295867e-09 4.72536102941e-07 -2.05810227601e-09 4.71388513243e-07 -1.95618827241e-09 4.70262008444e-07 -1.85587724514e-09 4.69222074552e-07 -1.69173476049e-09 4.68357751841e-07 -1.464874216e-09 4.67660905282e-07 -1.19749261304e-09 4.67104293193e-07 -9.26649968278e-10 4.66670367239e-07 -6.2935890921e-10 4.66361322707e-07 -3.35119984473e-10 4.66208708775e-07 -9.07755771603e-12 4.66240727789e-07 3.17733822605e-10 4.66484141463e-07 6.79348992117e-10 4.66946880917e-07 1.0413238995e-09 4.67622386754e-07 1.43745628943e-09 4.68487808782e-07 1.83604659775e-09 4.69498029787e-07 2.2756661188e-09 4.70597433153e-07 2.72994481517e-09 4.71706347436e-07 3.24203533704e-09 4.72746831965e-07 3.78435143282e-09 4.73621059938e-07 4.40001276531e-09 4.74255246643e-07 5.05391882115e-09 4.74565717672e-07 5.77794504869e-09 4.74513155691e-07 6.51563670958e-09 4.74055008902e-07 7.27575532585e-09 4.73211771276e-07 7.97984123531e-09 4.71996300277e-07 8.61158621975e-09 4.70489025752e-07 9.08815608748e-09 4.68742352856e-07 9.37402333707e-09 4.66859529224e-07 9.37598068529e-09 4.64895540337e-07 9.06228827589e-09 4.6294412178e-07 8.39097737287e-09 4.61038337052e-07 7.37290512196e-09 4.59211845545e-07 6.03046654321e-09 4.57448084241e-07 4.46602905837e-09 4.55724973797e-07 2.74014199878e-09 4.53942060359e-07 1.10472443989e-09 4.52034115697e-07 -1.09463763848e-10 4.50011419827e-07 -7.46705466766e-10 4.47925464124e-07 -5.66215095225e-10 4.45630421882e-07 8.12342695154e-10 4.43353018688e-07 3.85484643489e-09 4.41029690215e-07 8.21461865982e-09 4.38598389811e-07 1.40265529455e-08 4.35101844177e-07 2.21387859785e-08 4.2993612992e-07 3.45643304202e-08 5.53348135273e-08 4.1785502463e-07 4.51040620402e-08 5.66747822687e-08 1.125732006e-07 -1.09087379307e-07 1.6537986668e-07 -9.71239023744e-08 2.04019148992e-07 -6.41545044824e-08 2.30217665468e-07 -3.55946127103e-08 2.51063145075e-07 -1.73895974069e-08 2.67433995373e-07 -8.09507129653e-09 2.82388279936e-07 -4.06902511442e-09 2.94615756154e-07 -2.92292313512e-09 3.05761684341e-07 -3.31359224799e-09 3.14668304089e-07 -4.54776891253e-09 3.22721056914e-07 -6.23193086101e-09 3.28926351504e-07 -8.17764632798e-09 3.34489559043e-07 -1.0230976638e-08 3.38619222298e-07 -1.23394347187e-08 3.42335596378e-07 -1.44220687575e-08 3.45029909503e-07 -1.64678809758e-08 3.47515007175e-07 -1.84291043872e-08 3.49338654153e-07 -2.03027476101e-08 3.51165733017e-07 -2.20569425995e-08 3.52607312141e-07 -2.37116623879e-08 3.54176930571e-07 -2.52335954764e-08 3.5562148979e-07 -2.66370650133e-08 3.5726605976e-07 -2.79191358839e-08 3.58914171645e-07 -2.90838605072e-08 3.60824696805e-07 -3.01221566145e-08 3.62816456635e-07 -3.10535174507e-08 3.65066204564e-07 -3.18719564692e-08 3.67432809269e-07 -3.25907057336e-08 3.70047769718e-07 -3.3209048618e-08 3.72784931245e-07 -3.37403349222e-08 3.75753846378e-07 -3.41854756933e-08 3.78842613603e-07 -3.45548700445e-08 3.82151337021e-07 -3.48512686401e-08 3.85565717427e-07 -3.50859831375e-08 3.89184963746e-07 -3.52557115417e-08 3.92902616366e-07 -3.53710887254e-08 3.96793008521e-07 -3.54313898574e-08 4.00764570905e-07 -3.54407512764e-08 4.04876912082e-07 -3.53989536622e-08 4.09047843498e-07 -3.53103428257e-08 4.13321813022e-07 -3.51745357438e-08 4.17633918388e-07 -3.49953029782e-08 4.2201229838e-07 -3.47741947561e-08 4.26410387445e-07 -3.45147595672e-08 4.3084346143e-07 -3.42204955067e-08 4.35282487931e-07 -3.38952310819e-08 4.39729775121e-07 -3.35432423325e-08 4.44176765774e-07 -3.31649550834e-08 4.48618364421e-07 -3.27662826461e-08 4.53045747947e-07 -3.23434205265e-08 4.57452173746e-07 -3.18920106691e-08 4.61824913917e-07 -3.14060333412e-08 4.6614872668e-07 -3.08747839298e-08 4.70398982371e-07 -3.02841148921e-08 4.74564268807e-07 -2.96392992036e-08 4.78624080984e-07 -2.89583900523e-08 4.82570788712e-07 -2.8239375506e-08 4.86320563613e-07 -2.74525084644e-08 4.89789780186e-07 -2.65539600565e-08 4.92887007705e-07 -2.5536283219e-08 4.95723248124e-07 -2.44722317342e-08 4.98111075414e-07 -2.3146112543e-08 4.99605198672e-07 -2.18819394827e-08 5.00244918832e-07 -2.08696591856e-08 5.00270114347e-07 -2.00746548705e-08 4.99910613237e-07 -1.94853245402e-08 4.99425276299e-07 -1.90807771896e-08 4.99011845427e-07 -1.88377556663e-08 4.98838617042e-07 -1.87274278947e-08 4.99019328499e-07 -1.87180115774e-08 4.99601418106e-07 -1.88041756232e-08 5.00578055029e-07 -1.89824266775e-08 5.01949070189e-07 -1.92487166194e-08 5.03666102717e-07 -1.96367353865e-08 5.05680493987e-07 -2.01658506894e-08 5.07975539611e-07 -2.08315604001e-08 5.10516270053e-07 -2.16279233217e-08 5.13275651938e-07 -2.25200357631e-08 5.16205991012e-07 -2.34600166957e-08 5.19246752933e-07 -2.43896227918e-08 5.22315305468e-07 -2.52403064458e-08 5.25299013089e-07 -2.59094339636e-08 5.28021119573e-07 -2.6255374075e-08 5.30140142305e-07 -2.60333914228e-08 5.31190082924e-07 -2.48534347229e-08 5.31022466398e-07 -2.25471928484e-08 5.29720586556e-07 -1.90101036367e-08 5.28707811579e-07 -1.42039075709e-08 5.2763765105e-07 -9.19472215867e-09 5.22302127968e-07 3.17448596916e-09 5.03475373996e-07 2.41073814903e-08 4.74261016092e-07 4.46691995378e-08 4.37370104613e-07 7.53475788347e-08 4.1239879715e-07 9.11129339838e-08 4.15472611651e-07 9.01720029112e-08 4.30554333843e-07 5.7809839263e-08 4.50261298817e-07 2.75746861164e-08 4.67871414524e-07 3.09518921267e-09 4.52366532154e-07 -1.81043844858e-08 4.31899453476e-07 -6.1313220011e-09 4.16054547757e-07 2.05075886331e-08 4.13831654055e-07 4.44537067831e-08 4.25366936844e-07 5.35424922811e-08 4.43981403352e-07 5.04314513576e-08 4.63630009031e-07 3.90260154786e-08 4.80696872496e-07 2.40662352781e-08 4.91912294638e-07 9.18832142211e-09 4.99494627895e-07 -7.03709825949e-10 5.04013765094e-07 -6.70372109716e-09 5.06390757705e-07 -9.9093449212e-09 5.07545326053e-07 -1.12200476658e-08 5.07963194841e-07 -1.14624257418e-08 5.07963605136e-07 -1.10444912253e-08 5.07666353739e-07 -1.03139444696e-08 5.07181279665e-07 -9.4349114459e-09 5.06510074806e-07 -8.54617465645e-09 5.0569824915e-07 -7.68806900833e-09 5.04738099165e-07 -6.91134988322e-09 5.03685961343e-07 -6.21101439459e-09 5.02566522181e-07 -5.59732657396e-09 5.0139867375e-07 -5.06241944006e-09 5.00179219896e-07 -4.60189711254e-09 4.98904324809e-07 -4.20265296964e-09 4.976057394e-07 -3.83450318267e-09 4.96317478981e-07 -3.48900216448e-09 4.95069269496e-07 -3.16768965236e-09 4.93832057335e-07 -2.89932604631e-09 4.92619835724e-07 -2.66684381186e-09 4.91402105451e-07 -2.48071984829e-09 4.90201381549e-07 -2.31263981401e-09 4.88986676855e-07 -2.17360794232e-09 4.87786625851e-07 -2.03625277722e-09 4.86572500452e-07 -1.91674970088e-09 4.85370769232e-07 -1.79567411084e-09 4.84165324242e-07 -1.68207680402e-09 4.82995429889e-07 -1.53730867421e-09 4.81874958593e-07 -1.35301938704e-09 4.80853785829e-07 -1.1006559008e-09 4.79901020243e-07 -8.15765354796e-10 4.78987335911e-07 -4.9988826019e-10 4.78051649798e-07 -1.77727179248e-10 4.77085848765e-07 1.6888359947e-10 4.76064798195e-07 5.26015375631e-10 4.75007937797e-07 9.16768109205e-10 4.73896891983e-07 1.32274301808e-09 4.72750795552e-07 1.76571119247e-09 4.71547596341e-07 2.22167535457e-09 4.7030981329e-07 2.71548561093e-09 4.69019386159e-07 3.21931168098e-09 4.67711785845e-07 3.76388743245e-09 4.66379843261e-07 4.31532488231e-09 4.65076714308e-07 4.9080469922e-09 4.6380661773e-07 5.50093806722e-09 4.62639179369e-07 6.12902981879e-09 4.61585121814e-07 6.73894766039e-09 4.60718907232e-07 7.35735181404e-09 4.6004260519e-07 7.91460120644e-09 4.59617098206e-07 8.42583662333e-09 4.59416063952e-07 8.81028021845e-09 4.59467276156e-07 9.08040524471e-09 4.59704469043e-07 9.14963994159e-09 4.60105078622e-07 9.01797144178e-09 4.60556157897e-07 8.61459136686e-09 4.60990275577e-07 7.96811211632e-09 4.61267241709e-07 7.05715784979e-09 4.61285484394e-07 5.95598866729e-09 4.60914293336e-07 4.72042492217e-09 4.60044206306e-07 3.45589975218e-09 4.58571671424e-07 2.35894281103e-09 4.56499886254e-07 1.70525433127e-09 4.53793072146e-07 1.65152211773e-09 4.50495544595e-07 2.40841411839e-09 4.46643700027e-07 4.31402414826e-09 4.42642767448e-07 7.53325298109e-09 4.38481316434e-07 1.20668210486e-08 4.34105521449e-07 1.81834875419e-08 4.29550821872e-07 2.64995209742e-08 4.24989911353e-07 3.88704513639e-08 5.76080987734e-08 4.22306815151e-07 3.06795948866e-08 3.00526366763e-08 1.1738093901e-07 -1.91702208173e-07 1.7880274355e-07 -1.56488694783e-07 2.16677183631e-07 -9.92043482229e-08 2.41165761058e-07 -5.87483741518e-08 2.62021462499e-07 -3.62378071876e-08 2.80169082741e-07 -2.50890687056e-08 2.97217064412e-07 -1.9476753988e-08 3.11834482125e-07 -1.66729827151e-08 3.25338362378e-07 -1.53885263487e-08 3.36608710067e-07 -1.50316928298e-08 3.46805237387e-07 -1.52322788e-08 3.55121035944e-07 -1.58337144651e-08 3.62554478343e-07 -1.6688077691e-08 3.68499330373e-07 -1.77474233087e-08 3.73789938446e-07 -1.892440186e-08 3.77957738278e-07 -2.02012880475e-08 3.81699892605e-07 -2.15114379881e-08 3.84647339024e-07 -2.28582660922e-08 3.87321095938e-07 -2.41895452066e-08 3.89499097811e-07 -2.5496881442e-08 3.91567620946e-07 -2.67599962937e-08 3.93318236865e-07 -2.79832013637e-08 3.95084478263e-07 -2.91312436583e-08 3.96709169754e-07 -3.02199081799e-08 3.98389393956e-07 -3.12348322438e-08 4.00026812646e-07 -3.21762170161e-08 4.01767257416e-07 -3.30369153658e-08 4.03518478089e-07 -3.38252369038e-08 4.05394634689e-07 -3.45356939614e-08 4.07315360417e-07 -3.51772170468e-08 4.09382533334e-07 -3.57457878793e-08 4.11510359581e-07 -3.62541686095e-08 4.13793291666e-07 -3.6694999793e-08 4.16158264745e-07 -3.70760816945e-08 4.18676388031e-07 -3.73962642591e-08 4.21270655798e-07 -3.76580310341e-08 4.24011013461e-07 -3.78554837244e-08 4.26812806661e-07 -3.79942299178e-08 4.29729043253e-07 -3.80685326016e-08 4.3268626338e-07 -3.8081003876e-08 4.35722968732e-07 -3.80295635525e-08 4.38776729588e-07 -3.79175204191e-08 4.41874947423e-07 -3.77463277437e-08 4.44969362356e-07 -3.7521322176e-08 4.48078244514e-07 -3.72482082529e-08 4.51170602602e-07 -3.69334682404e-08 4.54262820395e-07 -3.65850099926e-08 4.5733513119e-07 -3.62101510477e-08 4.60403241956e-07 -3.58135878518e-08 4.63465022574e-07 -3.53950290189e-08 4.66529981205e-07 -3.49566514216e-08 4.69599025988e-07 -3.44862437136e-08 4.72672222803e-07 -3.39628176467e-08 4.7571126166e-07 -3.3348108929e-08 4.78706958761e-07 -3.26614798247e-08 4.81680946263e-07 -3.196825551e-08 4.846801067e-07 -3.12697605609e-08 4.87714333954e-07 -3.05283620957e-08 4.90833848076e-07 -2.97136066042e-08 4.94094045719e-07 -2.88384667553e-08 4.97510902824e-07 -2.79262738047e-08 5.01370154436e-07 -2.70652931776e-08 5.05359093588e-07 -2.59179163948e-08 5.09047581937e-07 -2.46188222692e-08 5.12184395202e-07 -2.32761777039e-08 5.14583604353e-07 -2.19628724932e-08 5.16165596066e-07 -2.0746003256e-08 5.16911726824e-07 -1.96797111856e-08 5.16902639491e-07 -1.88116487653e-08 5.16246166236e-07 -1.81815945039e-08 5.15123741261e-07 -1.78039689872e-08 5.13721905265e-07 -1.76904951803e-08 5.12199521378e-07 -1.78634557867e-08 5.10727013285e-07 -1.83136535527e-08 5.09449929876e-07 -1.9036337969e-08 5.08473662921e-07 -2.00180149012e-08 5.07888174426e-07 -2.12163000969e-08 5.07753856438e-07 -2.25654038038e-08 5.08081552452e-07 -2.39710925071e-08 5.0882514952e-07 -2.53136873186e-08 5.09847929286e-07 -2.6438717558e-08 5.10904049389e-07 -2.71380470534e-08 5.11726473868e-07 -2.72357074768e-08 5.12171147487e-07 -2.65971160315e-08 5.12317981369e-07 -2.51277960441e-08 5.12326724288e-07 -2.26653207173e-08 5.11472290404e-07 -1.78958960335e-08 5.0540213386e-07 -9.02301256301e-09 4.92770423218e-07 3.71011872566e-09 4.73680005732e-07 2.19037616036e-08 4.48425021988e-07 4.93299336677e-08 4.24764045995e-07 6.8332850884e-08 4.19495329856e-07 8.05449230135e-08 4.35415245434e-07 7.50087268321e-08 4.65418914955e-07 5.96619713172e-08 4.91613439121e-07 3.08492086232e-08 5.10128421363e-07 7.79845239699e-09 5.15631987915e-07 -3.96618032873e-09 5.00311814928e-07 -4.81996077574e-09 4.82505088064e-07 9.34673370287e-09 4.72605054317e-07 2.78439361136e-08 4.74404520931e-07 4.01200289498e-08 4.83654552619e-07 4.20428289087e-08 4.9556456924e-07 3.6669601221e-08 5.06163460634e-07 2.69690542957e-08 5.13182259563e-07 1.59294097423e-08 5.15865309826e-07 5.62835631231e-09 5.16187980247e-07 -1.70893213056e-09 5.15242494108e-07 -6.34036244493e-09 5.13713546426e-07 -8.87590382052e-09 5.12005502498e-07 -9.99502290378e-09 5.10325894829e-07 -1.02487922835e-08 5.08757574198e-07 -9.97960562107e-09 5.07338469014e-07 -9.42019299892e-09 5.06049007791e-07 -8.71776912377e-09 5.04858279783e-07 -7.97647397601e-09 5.03724772163e-07 -7.24218482074e-09 5.0262332736e-07 -6.56087394615e-09 5.0155145563e-07 -5.934854485e-09 5.00510351249e-07 -5.37565758518e-09 4.99488602596e-07 -4.88011210088e-09 4.98465346339e-07 -4.44427531324e-09 4.97426959707e-07 -4.05929364743e-09 4.96375793815e-07 -3.70279026707e-09 4.95324755097e-07 -3.37469374913e-09 4.94279047103e-07 -3.0644128709e-09 4.93229207546e-07 -2.79439064316e-09 4.92170709684e-07 -2.54428541258e-09 4.91092206152e-07 -2.33327919181e-09 4.89995208005e-07 -2.12848546649e-09 4.88869836832e-07 -1.95337945724e-09 4.87723496249e-07 -1.77142197282e-09 4.86546450721e-07 -1.61316362153e-09 4.85350211153e-07 -1.44335469565e-09 4.84139120391e-07 -1.27779487197e-09 4.82938454434e-07 -1.07477062732e-09 4.8177033356e-07 -8.33809320534e-10 4.80661079613e-07 -5.36402303141e-10 4.79599278202e-07 -2.09612938995e-10 4.78559367247e-07 1.44407684344e-10 4.77507782858e-07 5.0382339161e-10 4.76433796626e-07 8.83549826286e-10 4.75333760348e-07 1.27087563602e-09 4.74221116874e-07 1.6868314265e-09 4.73101926426e-07 2.11800279934e-09 4.71989774269e-07 2.58121319606e-09 4.70889114553e-07 3.06106675563e-09 4.69811468635e-07 3.57033749328e-09 4.68762191295e-07 4.09416036361e-09 4.67753523262e-07 4.64287727152e-09 4.66792464987e-07 5.20091394087e-09 4.65891888453e-07 5.77649653601e-09 4.65059045315e-07 6.35179841512e-09 4.64307547018e-07 6.93248326157e-09 4.63642851579e-07 7.49364310365e-09 4.63077533733e-07 8.03279235813e-09 4.62612009941e-07 8.51293509594e-09 4.62254637269e-07 8.92228916698e-09 4.61995079736e-07 9.21670061956e-09 4.61833446404e-07 9.38313089334e-09 4.61744175569e-07 9.37382270011e-09 4.61709336773e-07 9.17066637675e-09 4.6168007768e-07 8.74107939392e-09 4.61618778477e-07 8.09768421096e-09 4.61453987321e-07 7.25432947909e-09 4.61128312025e-07 6.27360963886e-09 4.60561028629e-07 5.22981106881e-09 4.59678039551e-07 4.23305586034e-09 4.58406458824e-07 3.46627421572e-09 4.56732251113e-07 3.1696024335e-09 4.54616616195e-07 3.50050790597e-09 4.52064639043e-07 4.66108167807e-09 4.49152792527e-07 6.87859571705e-09 4.46005444954e-07 1.0325804226e-08 4.42666432146e-07 1.50423221805e-08 4.39158447581e-07 2.13903872802e-08 4.35559350122e-07 2.98228954745e-08 4.32214033016e-07 4.18395195218e-08 5.72270470324e-08 4.31991997199e-07 3.67204078839e-08 -4.38791923632e-09 1.36366316335e-07 -2.88399142527e-07 1.88787473944e-07 -2.07715102632e-07 2.13951023233e-07 -1.22622760762e-07 2.32781605589e-07 -7.6855870895e-08 2.53089839691e-07 -5.52566256061e-08 2.72923773129e-07 -4.45157801569e-08 2.92298289632e-07 -3.7838775742e-08 3.09543645691e-07 -3.34428003659e-08 3.25413971204e-07 -3.04381667245e-08 3.39143685584e-07 -2.83655210477e-08 3.51589746743e-07 -2.69758307917e-08 3.62242478582e-07 -2.61363136141e-08 3.71871048504e-07 -2.57186422389e-08 3.80097186068e-07 -2.56610108276e-08 3.87547611604e-07 -2.58671335877e-08 3.93938838809e-07 -2.6298834291e-08 3.99741249456e-07 -2.68860448231e-08 4.0475678741e-07 -2.75969254539e-08 4.09381173457e-07 -2.83752879724e-08 4.13410850418e-07 -2.92256433227e-08 4.17167395785e-07 -3.00947299039e-08 4.20550962254e-07 -3.09802749292e-08 4.2374442199e-07 -3.18616806695e-08 4.26672216153e-07 -3.27284338854e-08 4.29502845713e-07 -3.35552945855e-08 4.321536508e-07 -3.43528016476e-08 4.34738875113e-07 -3.51027911329e-08 4.37207266583e-07 -3.58119427011e-08 4.39645642259e-07 -3.64696091869e-08 4.42010176157e-07 -3.70848419824e-08 4.44369192661e-07 -3.76498876582e-08 4.46693737874e-07 -3.81674131755e-08 4.49044987453e-07 -3.86339019062e-08 4.51371930402e-07 -3.90532610984e-08 4.53745980197e-07 -3.94122051562e-08 4.56108079653e-07 -3.97154116143e-08 4.58505196204e-07 -3.99538300427e-08 4.60880542511e-07 -4.01245913248e-08 4.63274653812e-07 -4.02207100181e-08 4.65625179353e-07 -4.02427126749e-08 4.67966633335e-07 -4.01861602134e-08 4.70242513293e-07 -4.00546853445e-08 4.72481049987e-07 -3.98494097265e-08 4.7463608721e-07 -3.9578450853e-08 4.76734764193e-07 -3.92499626569e-08 4.78746004982e-07 -3.88773916772e-08 4.80696701615e-07 -3.84719053482e-08 4.82577081528e-07 -3.80450355351e-08 4.84418018553e-07 -3.7611500161e-08 4.86217701155e-07 -3.71703034563e-08 4.8801048057e-07 -3.67256171565e-08 4.89799787021e-07 -3.62634966355e-08 4.91595527623e-07 -3.57505027026e-08 4.93296995267e-07 -3.50499602212e-08 4.94878382609e-07 -3.42445318337e-08 4.96478745419e-07 -3.35752147335e-08 4.98204062749e-07 -3.30015267238e-08 5.00043976277e-07 -3.2376244006e-08 5.01930157319e-07 -3.15994659316e-08 5.03750353474e-07 -3.06707400932e-08 5.05413127122e-07 -2.95953621064e-08 5.06871262615e-07 -2.85313823004e-08 5.08363806537e-07 -2.74198608138e-08 5.0997464997e-07 -2.62532777996e-08 5.11720858625e-07 -2.50378700677e-08 5.13514156214e-07 -2.37887306084e-08 5.15255653597e-07 -2.25147608236e-08 5.16779251281e-07 -2.12466436237e-08 5.17947787066e-07 -2.00259815498e-08 5.1863843224e-07 -1.89125786489e-08 5.18783848943e-07 -1.79868945829e-08 5.18354630164e-07 -1.73185475358e-08 5.17413965586e-07 -1.69586352421e-08 5.16039508801e-07 -1.69718711942e-08 5.14356322851e-07 -1.73926102788e-08 5.12517989497e-07 -1.82129586739e-08 5.10668194415e-07 -1.93970568304e-08 5.08931049791e-07 -2.08495725641e-08 5.07370101187e-07 -2.24201353897e-08 5.05990984903e-07 -2.39288494682e-08 5.04763604206e-07 -2.51845658385e-08 5.03636275743e-07 -2.59590968877e-08 5.02571345669e-07 -2.60892748604e-08 5.01366083131e-07 -2.53057223929e-08 4.99011817865e-07 -2.26546253914e-08 4.92839647792e-07 -1.62338298274e-08 4.83145393762e-07 -8.3593528746e-09 4.70877751762e-07 4.01210325432e-09 4.54171032699e-07 2.03752773588e-08 4.37760696563e-07 3.91058251204e-08 4.346838129e-07 5.33861557004e-08 4.44008858149e-07 5.99175236776e-08 4.6372216867e-07 6.15399879204e-08 4.90642780908e-07 4.85103448033e-08 5.19242336441e-07 3.10298924027e-08 5.36604671162e-07 1.30588526331e-08 5.40471493467e-07 2.92039872407e-09 5.32793921449e-07 2.30613234886e-09 5.17319018805e-07 8.72512948458e-09 5.04483397066e-07 1.99778991699e-08 4.99596710059e-07 3.03217707019e-08 5.02220103485e-07 3.51686511871e-08 5.08355893747e-07 3.38422783321e-08 5.14932764336e-07 2.83569219223e-08 5.19873622535e-07 2.06528314453e-08 5.22217208157e-07 1.24746619242e-08 5.21971723791e-07 5.01053723821e-09 5.20261180148e-07 -7.16479578687e-10 5.17975076595e-07 -4.64333749007e-09 5.15610304059e-07 -7.03800416577e-09 5.13421409464e-07 -8.29035528438e-09 5.11476804404e-07 -8.7773145911e-09 5.09778364633e-07 -8.76909395732e-09 5.08310615339e-07 -8.44722929652e-09 5.07009641156e-07 -7.95814422092e-09 5.05838151561e-07 -7.3776124537e-09 5.04726819822e-07 -6.78172708285e-09 5.0366058344e-07 -6.19391872193e-09 5.02620210676e-07 -5.64499299178e-09 5.01608691565e-07 -5.13547603975e-09 5.00614058898e-07 -4.67263005546e-09 4.99615285171e-07 -4.25583240289e-09 4.98606470305e-07 -3.87498449313e-09 4.97576716622e-07 -3.52654747664e-09 4.96543417817e-07 -3.19615700967e-09 4.95494513988e-07 -2.89291299728e-09 4.94444303775e-07 -2.60675982823e-09 4.93369907654e-07 -2.34977552893e-09 4.92288084658e-07 -2.10492660665e-09 4.91174552382e-07 -1.88240951147e-09 4.90050559007e-07 -1.66311146918e-09 4.88892367956e-07 -1.45801677285e-09 4.87721725546e-07 -1.25112517793e-09 4.86523659003e-07 -1.04795594129e-09 4.85326784621e-07 -8.26664740389e-10 4.84134247769e-07 -5.76692903735e-10 4.82975409905e-07 -2.83198507274e-10 4.81855831338e-07 5.58848361637e-11 4.80775332695e-07 4.23670153298e-10 4.79705821981e-07 8.10644161743e-10 4.78631797489e-07 1.20732777827e-09 4.77533370984e-07 1.61541203472e-09 4.76418979285e-07 2.0358663021e-09 4.75289038215e-07 2.47588566757e-09 4.74159823493e-07 2.93480684756e-09 4.73033655792e-07 3.41765721236e-09 4.71923810585e-07 3.91996378349e-09 4.70832658884e-07 4.44454783407e-09 4.69772604866e-07 4.98501303631e-09 4.68747799539e-07 5.54134022986e-09 4.67770837265e-07 6.1054073702e-09 4.66846709539e-07 6.67350194571e-09 4.65988103488e-07 7.23574591342e-09 4.65200711164e-07 7.78431405562e-09 4.64496560369e-07 8.30490656253e-09 4.63880574835e-07 8.78236158196e-09 4.6336080986e-07 9.19371818927e-09 4.62937601854e-07 9.51801641911e-09 4.6260895265e-07 9.72733984518e-09 4.62366466478e-07 9.80371141711e-09 4.62191170937e-07 9.71612769904e-09 4.62056684694e-07 9.45170345836e-09 4.61919413062e-07 8.98987924082e-09 4.6173528056e-07 8.35471865598e-09 4.61440173675e-07 7.56236225017e-09 4.60980244277e-07 6.69135949498e-09 4.60285440937e-07 5.8043412918e-09 4.59298529784e-07 5.03726956827e-09 4.57967749874e-07 4.53644883917e-09 4.56289856803e-07 4.53529336294e-09 4.54250199856e-07 5.17580610903e-09 4.51868361663e-07 6.65398012099e-09 4.49249542221e-07 9.09530360404e-09 4.46475698374e-07 1.2706535528e-08 4.43619348169e-07 1.75472622159e-08 4.40769707303e-07 2.39598502867e-08 4.38055833753e-07 3.23137727056e-08 4.36016802669e-07 4.35409209948e-08 5.64268704054e-08 4.36296153309e-07 5.04580380281e-08 -5.36214020761e-08 1.5019375421e-07 -3.86570957737e-07 1.84448013209e-07 -2.41652977607e-07 1.9870173886e-07 -1.35927721443e-07 2.16415031318e-07 -9.4612024339e-08 2.38524552237e-07 -7.69518825936e-08 2.60446726187e-07 -6.6481337849e-08 2.81054627649e-07 -5.82249274702e-08 2.99433780737e-07 -5.19860559097e-08 3.16287288306e-07 -4.71006073653e-08 3.31127106891e-07 -4.32734139108e-08 3.44646749938e-07 -4.03124172113e-08 3.56610620029e-07 -3.80938582016e-08 3.67561532642e-07 -3.64768493662e-08 3.77340848158e-07 -3.53733883892e-08 3.8635181219e-07 -3.46698019168e-08 3.94467622343e-07 -3.43040144854e-08 4.02013457573e-07 -3.41845289565e-08 4.08875592747e-07 -3.42809686801e-08 4.15264552505e-07 -3.45222263065e-08 4.21166328123e-07 -3.48838790411e-08 4.26726928267e-07 -3.53330400525e-08 4.31888737237e-07 -3.58551304002e-08 4.3680607534e-07 -3.6398598434e-08 4.41435610938e-07 -3.69673965365e-08 4.45837003773e-07 -3.75360383226e-08 4.50007712631e-07 -3.80978037804e-08 4.53991758171e-07 -3.86384013969e-08 4.5778202741e-07 -3.91624204492e-08 4.61410472013e-07 -3.96595137473e-08 4.64876723649e-07 -4.01334026343e-08 4.68219005197e-07 -4.05742153797e-08 4.71416998486e-07 -4.0989614501e-08 4.74512968877e-07 -4.13630533156e-08 4.77493902394e-07 -4.16951203024e-08 4.80382456805e-07 -4.19766281062e-08 4.83150372307e-07 -4.22013296359e-08 4.85833581348e-07 -4.23544170356e-08 4.8838278699e-07 -4.24360215603e-08 4.90828284457e-07 -4.24335190056e-08 4.93122268952e-07 -4.2346999902e-08 4.95292164362e-07 -4.21705757886e-08 4.97292211843e-07 -4.19086865622e-08 4.99149826694e-07 -4.15628454976e-08 5.00826907158e-07 -4.11450898762e-08 5.02354752851e-07 -4.06678697521e-08 5.0371119734e-07 -4.01510328974e-08 5.04937225219e-07 -3.96117142187e-08 5.06026515377e-07 -3.90721207735e-08 5.0703431733e-07 -3.85553546635e-08 5.07971460771e-07 -3.80575431364e-08 5.08888963615e-07 -3.75953961648e-08 5.09783373312e-07 -3.71214082341e-08 5.10682746245e-07 -3.66139896521e-08 5.11268766702e-07 -3.56065765561e-08 5.11467213854e-07 -3.44131201587e-08 5.11803479196e-07 -3.38842215514e-08 5.124458887e-07 -3.36115841712e-08 5.13300183937e-07 -3.31974999376e-08 5.14268410901e-07 -3.25344799342e-08 5.1527370245e-07 -3.16377552257e-08 5.16293450767e-07 -3.05779908718e-08 5.17203413907e-07 -2.94141583775e-08 5.17973758709e-07 -2.81574270499e-08 5.18612724437e-07 -2.68637341904e-08 5.19152911512e-07 -2.55483949984e-08 5.19615682742e-07 -2.42292414631e-08 5.20028193996e-07 -2.29002758858e-08 5.20376824825e-07 -2.15763599631e-08 5.20640186328e-07 -2.02545779253e-08 5.20735607276e-07 -1.89888006117e-08 5.20609844902e-07 -1.78247195616e-08 5.20192942493e-07 -1.68467288316e-08 5.194224496e-07 -1.61293454755e-08 5.1827409733e-07 -1.57562529863e-08 5.16769165821e-07 -1.57965521728e-08 5.149439713e-07 -1.628721208e-08 5.12858787383e-07 -1.71911710105e-08 5.10580232283e-07 -1.84296338157e-08 5.08176082876e-07 -1.9851733969e-08 5.05737762617e-07 -2.12899874479e-08 5.03298344576e-07 -2.25230446095e-08 5.0061368806e-07 -2.30138538926e-08 4.96679579338e-07 -2.18867398959e-08 4.90984621524e-07 -1.92984780203e-08 4.83623741836e-07 -1.4958370237e-08 4.73973696255e-07 -6.29305548529e-09 4.62753319976e-07 3.43471479284e-09 4.52399487911e-07 1.43528225728e-08 4.48228863117e-07 2.55411006445e-08 4.51269212609e-07 3.72920347247e-08 4.6235697034e-07 4.37319343554e-08 4.8043100532e-07 4.32345163906e-08 5.04598137125e-07 3.85268445053e-08 5.26672044311e-07 2.72109903508e-08 5.41769741162e-07 1.63015588491e-08 5.45514496906e-07 9.13436772872e-09 5.39944108488e-07 7.84082325487e-09 5.29441216175e-07 1.16138334117e-08 5.18645447934e-07 1.79194752497e-08 5.12053302705e-07 2.46405793856e-08 5.11028459136e-07 2.92736031752e-08 5.13931387995e-07 3.02615332849e-08 5.18170902227e-07 2.77944688876e-08 5.22014959169e-07 2.29782020997e-08 5.24436075884e-07 1.69573549964e-08 5.25121130513e-07 1.07498612981e-08 5.24209233081e-07 5.07360063872e-09 5.22321080184e-07 4.64729547835e-10 5.20015348818e-07 -2.93034342634e-09 5.17660885319e-07 -5.21062620106e-09 5.15465680791e-07 -6.56789227287e-09 5.13485485523e-07 -7.25880911122e-09 5.1173800215e-07 -7.46996827801e-09 5.10192366973e-07 -7.36454520451e-09 5.08811412117e-07 -7.06054383736e-09 5.07541080618e-07 -6.64143991144e-09 5.06341719282e-07 -6.17401236517e-09 5.051868675e-07 -5.69302162686e-09 5.04072714696e-07 -5.22308888733e-09 5.02995861418e-07 -4.77448425126e-09 5.01945629078e-07 -4.3534431356e-09 5.00905052476e-07 -3.96515409507e-09 4.99862867028e-07 -3.60108730905e-09 4.98812794769e-07 -3.26423901461e-09 4.97756357333e-07 -2.94030777551e-09 4.96691050333e-07 -2.64035999276e-09 4.95617769075e-07 -2.34872453552e-09 4.9452956563e-07 -2.08205635945e-09 4.93428515616e-07 -1.81722855227e-09 4.92306754958e-07 -1.57438982834e-09 4.91170047742e-07 -1.32458090723e-09 4.90009103363e-07 -1.09278328915e-09 4.88833074964e-07 -8.47214898721e-10 4.87638497037e-07 -6.07553486497e-10 4.86445203468e-07 -3.35791905834e-10 4.85256634227e-07 -4.19990332554e-11 4.84095658514e-07 3.02004659831e-10 4.82957813347e-07 6.72603706877e-10 4.81847681172e-07 1.07801815958e-09 4.80739982927e-07 1.48981330965e-09 4.79627203374e-07 1.92335183269e-09 4.78489620858e-07 2.35560018287e-09 4.77338461233e-07 2.81153457353e-09 4.76170419925e-07 3.27233754453e-09 4.75004511676e-07 3.76292221292e-09 4.73839498563e-07 4.26335585925e-09 4.7269255803e-07 4.79341546484e-09 4.71563185764e-07 5.33245665519e-09 4.70467677508e-07 5.89415552722e-09 4.6940801874e-07 6.45732266011e-09 4.6839970789e-07 7.02965497901e-09 4.67446086639e-07 7.58914376456e-09 4.66561113458e-07 8.13879459563e-09 4.65748335922e-07 8.65516948224e-09 4.6501950676e-07 9.13653571049e-09 4.64376224375e-07 9.55516594695e-09 4.6382535148e-07 9.90310163187e-09 4.63362434818e-07 1.01495005595e-08 4.62985285348e-07 1.0284872645e-08 4.6267944511e-07 1.02819395489e-08 4.62428577235e-07 1.01331657418e-08 4.62200560271e-07 9.81837506352e-09 4.61959533728e-07 9.34412022674e-09 4.61656510459e-07 8.72299597963e-09 4.61241900733e-07 7.99825340596e-09 4.60660070528e-07 7.22868619803e-09 4.59860909526e-07 6.50225393888e-09 4.58790548809e-07 5.9310791667e-09 4.57419598679e-07 5.67343080655e-09 4.55740791173e-07 5.90926626266e-09 4.5375937159e-07 6.80892314835e-09 4.51495569858e-07 8.51332199743e-09 4.49046999147e-07 1.11150003836e-08 4.46494555272e-07 1.48001969031e-08 4.43923006214e-07 1.96850688974e-08 4.41467468588e-07 2.60287564686e-08 4.39320223199e-07 3.41344505064e-08 4.38018588254e-07 4.43766392199e-08 5.53929417939e-08 4.38366385568e-07 6.34381546774e-08 -1.17190400406e-07 1.53029888113e-07 -4.75564047621e-07 1.71264768859e-07 -2.60327457738e-07 1.83258605361e-07 -1.47979963552e-07 2.04861717409e-07 -1.16825856009e-07 2.29073317817e-07 -1.01459700217e-07 2.5148017243e-07 -8.96438553315e-08 2.71901176433e-07 -7.90690491341e-08 2.90240323682e-07 -7.08903717019e-08 3.06891888763e-07 -6.41902470308e-08 3.21875549221e-07 -5.87268788509e-08 3.3556237767e-07 -5.43478489103e-08 3.48037224372e-07 -5.08940761457e-08 3.59539282577e-07 -4.82098120048e-08 3.70157134686e-07 -4.61752817441e-08 3.80034662966e-07 -4.46631209752e-08 3.89265193247e-07 -4.35863981677e-08 3.97903452697e-07 -4.28526104622e-08 4.06050060795e-07 -4.23892653611e-08 4.13764404301e-07 -4.21313925973e-08 4.21077044598e-07 -4.20642214018e-08 4.28037864042e-07 -4.2122274201e-08 4.34719622894e-07 -4.22769759761e-08 4.41080746478e-07 -4.24976051392e-08 4.47177715432e-07 -4.27572662741e-08 4.53007468006e-07 -4.30269041399e-08 4.58593627757e-07 -4.33107397454e-08 4.63918273916e-07 -4.3590817323e-08 4.69018533243e-07 -4.3870915991e-08 4.73877934454e-07 -4.41391795144e-08 4.78526903632e-07 -4.44010655481e-08 4.82945998436e-07 -4.46447877255e-08 4.87172504618e-07 -4.48663070268e-08 4.91192121147e-07 -4.50567732797e-08 4.95007545574e-07 -4.52124216236e-08 4.98632496936e-07 -4.53112028131e-08 5.02053137041e-07 -4.53520602939e-08 5.0527136123e-07 -4.53194492179e-08 5.08269807351e-07 -4.52066828179e-08 5.11059752784e-07 -4.50028671862e-08 5.13610934322e-07 -4.47082760113e-08 5.15943007218e-07 -4.43164382122e-08 5.18023350623e-07 -4.38335936386e-08 5.19876849445e-07 -4.326162329e-08 5.21475382331e-07 -4.26176015876e-08 5.22855039911e-07 -4.19184973178e-08 5.24001311045e-07 -4.11937728088e-08 5.24964766405e-07 -4.04681029555e-08 5.25760845598e-07 -3.97804178735e-08 5.26476595029e-07 -3.91785286536e-08 5.27162104743e-07 -3.86683574417e-08 5.27910790028e-07 -3.82640479856e-08 5.28666435525e-07 -3.7808455482e-08 5.29455048129e-07 -3.7330236056e-08 5.29415775555e-07 -3.55005841402e-08 5.28300391648e-07 -3.32258055478e-08 5.27822274498e-07 -3.33322326634e-08 5.27967820365e-07 -3.36720320494e-08 5.28328034349e-07 -3.34713559933e-08 5.28685246389e-07 -3.27968927666e-08 5.28780625722e-07 -3.16427928141e-08 5.28530825095e-07 -3.02467738172e-08 5.28073373262e-07 -2.88644004621e-08 5.27532647743e-07 -2.7543491767e-08 5.26997975063e-07 -2.62342221229e-08 5.26452130166e-07 -2.49283432765e-08 5.25899903928e-07 -2.35713328527e-08 5.25292647389e-07 -2.22126364242e-08 5.24653122866e-07 -2.08223006617e-08 5.23942731347e-07 -1.94533127398e-08 5.23189451611e-07 -1.81001194498e-08 5.22357817646e-07 -1.68651688995e-08 5.21437629562e-07 -1.57746627555e-08 5.20368943504e-07 -1.48925829811e-08 5.19102318523e-07 -1.42849998758e-08 5.17586403051e-07 -1.40689523111e-08 5.15843539114e-07 -1.42929010111e-08 5.13853767266e-07 -1.49340330012e-08 5.11613569281e-07 -1.58799775433e-08 5.09036832441e-07 -1.69409716939e-08 5.0594347411e-07 -1.78158771624e-08 5.02133454731e-07 -1.83104366168e-08 4.9731634706e-07 -1.77769548318e-08 4.9079574861e-07 -1.49319761127e-08 4.82452304095e-07 -1.05531701621e-08 4.72999522822e-07 -5.10973367678e-09 4.65641632388e-07 1.46836541335e-09 4.61183826817e-07 8.10882039793e-09 4.60181057716e-07 1.61145847514e-08 4.63962073133e-07 2.2600554134e-08 4.74621977137e-07 2.80814811213e-08 4.90492386816e-07 2.95178857091e-08 5.0802768321e-07 2.72481320391e-08 5.24875989276e-07 2.30231242341e-08 5.35967774416e-07 1.706567406e-08 5.39811316282e-07 1.30208385993e-08 5.36916885623e-07 1.20586320714e-08 5.30283622593e-07 1.40704109308e-08 5.2312734947e-07 1.78456341499e-08 5.17879071241e-07 2.18947797475e-08 5.15827095888e-07 2.51071958418e-08 5.16808983073e-07 2.66103355982e-08 5.19493892446e-07 2.59311244695e-08 5.22477459336e-07 2.33075362787e-08 5.24845442312e-07 1.93144928213e-08 5.26089718208e-07 1.45974790926e-08 5.26137263684e-07 9.78601211458e-09 5.25105597328e-07 5.31747111369e-09 5.23373153129e-07 1.54741411621e-09 5.21268419841e-07 -1.40208305567e-09 5.19081662622e-07 -3.52361382308e-09 5.16970022081e-07 -4.92492992797e-09 5.15017520765e-07 -5.74938787176e-09 5.13249953236e-07 -6.13584812534e-09 5.11653364229e-07 -6.21431455542e-09 5.10205373348e-07 -6.07760882196e-09 5.08856067423e-07 -5.81531736448e-09 5.07581641223e-07 -5.47463376056e-09 5.06358634373e-07 -5.10333658938e-09 5.05186804803e-07 -4.71740459186e-09 5.04063362602e-07 -4.3332635238e-09 5.02972521514e-07 -3.96049100778e-09 5.01904134141e-07 -3.6019997772e-09 5.00838154161e-07 -3.26240609929e-09 4.99776680205e-07 -2.9347544229e-09 4.98704778372e-07 -2.62418741622e-09 4.97633285705e-07 -2.3208240417e-09 4.96544648217e-07 -2.03366953495e-09 4.95452637228e-07 -1.75028402869e-09 4.94337040366e-07 -1.48059211604e-09 4.9321542773e-07 -1.20980500538e-09 4.920669188e-07 -9.47800437156e-10 4.90910316669e-07 -6.80277486706e-10 4.8972820815e-07 -4.131020107e-10 4.88543705192e-07 -1.31470725246e-10 4.87351047965e-07 1.72201191615e-10 4.86171708992e-07 5.07407354477e-10 4.85003033038e-07 8.81985984352e-10 4.83855017618e-07 1.28306566559e-09 4.82716194205e-07 1.71028105041e-09 4.8158331541e-07 2.15009477674e-09 4.80434417032e-07 2.60434419502e-09 4.79270802507e-07 3.06506105404e-09 4.7808591118e-07 3.54194276466e-09 4.76894175002e-07 4.0293935589e-09 4.75697315336e-07 4.53847617561e-09 4.74509749138e-07 5.0596710439e-09 4.73334204525e-07 5.60278867035e-09 4.72183396224e-07 6.15389773709e-09 4.71062237372e-07 6.72052079153e-09 4.69983240287e-07 7.28444007185e-09 4.68952731029e-07 7.84980060928e-09 4.67982093368e-07 8.3949678663e-09 4.67076956111e-07 8.92096926188e-09 4.66246526667e-07 9.40370873773e-09 4.65494194292e-07 9.84140113964e-09 4.64825355261e-07 1.02064147417e-08 4.64238569145e-07 1.04941036697e-08 4.63732233359e-07 1.06746648673e-08 4.63296970497e-07 1.07457495358e-08 4.62920932319e-07 1.06803307888e-08 4.62583029394e-07 1.04834170558e-08 4.62255406413e-07 1.01344292115e-08 4.61901642765e-07 9.65763214446e-09 4.61479302346e-07 9.0590275309e-09 4.60942742418e-07 8.40177644002e-09 4.60245769548e-07 7.72886651435e-09 4.59345562788e-07 7.14797360808e-09 4.58202982715e-07 6.75182833578e-09 4.56795552803e-07 6.70524559673e-09 4.55125676166e-07 7.15470799467e-09 4.53202074845e-07 8.27401095013e-09 4.51058194462e-07 1.01821352902e-08 4.48767766996e-07 1.29165924277e-08 4.46421459965e-07 1.66762779419e-08 4.44104229532e-07 2.15577666168e-08 4.41992898708e-07 2.7782790593e-08 4.40296194223e-07 3.5514723311e-08 4.39447438366e-07 4.47903574916e-08 5.44155790196e-08 4.39785051975e-07 7.25157015748e-08 -1.90585863752e-07 1.4607446303e-07 -5.49602709833e-07 1.58012040835e-07 -2.73394023185e-07 1.76151075438e-07 -1.66880149517e-07 2.02669965868e-07 -1.44605938869e-07 2.27262434281e-07 -1.27166270656e-07 2.49438016958e-07 -1.129889844e-07 2.69188245748e-07 -1.00015692212e-07 2.8708086728e-07 -8.9956041741e-08 3.0326521759e-07 -8.1470175375e-08 3.18065734198e-07 -7.44742263867e-08 3.31574130751e-07 -6.87716957228e-08 3.44151465586e-07 -6.4173215524e-08 3.55743126748e-07 -6.04939060698e-08 3.66693724272e-07 -5.75900186823e-08 3.7688315291e-07 -5.53244911609e-08 3.8661506447e-07 -5.35857219567e-08 3.95773087089e-07 -5.2270351662e-08 4.04597339908e-07 -5.12960490948e-08 4.12936453726e-07 -5.05993615257e-08 4.21049129742e-07 -5.01074889142e-08 4.28767989436e-07 -4.97951914892e-08 4.36242234771e-07 -4.95970002652e-08 4.43374829357e-07 -4.94745320018e-08 4.50290788799e-07 -4.93962917196e-08 4.56854204736e-07 -4.93638881331e-08 4.63206361587e-07 -4.93396328125e-08 4.69233615486e-07 -4.93404794682e-08 4.75048778537e-07 -4.9338103181e-08 4.80551659584e-07 -4.93523709195e-08 4.85840599605e-07 -4.93506329471e-08 4.90839549999e-07 -4.93525238471e-08 4.95608668016e-07 -4.93273416275e-08 5.00093857636e-07 -4.92850124664e-08 5.04355118831e-07 -4.9186082337e-08 5.08332247214e-07 -4.90510094686e-08 5.12063297768e-07 -4.88349221873e-08 5.15522471691e-07 -4.85540828278e-08 5.18719694805e-07 -4.81763051085e-08 5.21642287844e-07 -4.77206150761e-08 5.24295486581e-07 -4.71577168735e-08 5.2667679677e-07 -4.65122088715e-08 5.28784399514e-07 -4.57610466314e-08 5.30625496498e-07 -4.49370232713e-08 5.32200586501e-07 -4.40335919198e-08 5.33532118509e-07 -4.31029715633e-08 5.34633325907e-07 -4.21524274387e-08 5.35549495938e-07 -4.12513612025e-08 5.36348703662e-07 -4.0448467829e-08 5.37165222022e-07 -3.98746136971e-08 5.38206588354e-07 -3.95843367047e-08 5.39654236113e-07 -3.95994338906e-08 5.4146354746e-07 -3.94933211809e-08 5.432892433e-07 -3.90469775499e-08 5.43696164888e-07 -3.57730580815e-08 5.41573172331e-07 -3.09838627706e-08 5.40315811357e-07 -3.1905051682e-08 5.40534246111e-07 -3.37462830334e-08 5.41622487907e-07 -3.43556218877e-08 5.42866695274e-07 -3.38592787116e-08 5.42859437179e-07 -3.1433368984e-08 5.41431847838e-07 -2.86244651915e-08 5.39240449882e-07 -2.65108975801e-08 5.36956150737e-07 -2.50484937904e-08 5.34823130752e-07 -2.39458449856e-08 5.32989410646e-07 -2.28547246025e-08 5.31276840298e-07 -2.16886557877e-08 5.29708076183e-07 -2.03782084264e-08 5.28124743334e-07 -1.90362034064e-08 5.26602322317e-07 -1.76428345662e-08 5.25060344382e-07 -1.63212122352e-08 5.23596016151e-07 -1.50996364222e-08 5.22160850832e-07 -1.40479871061e-08 5.20756042553e-07 -1.31527737471e-08 5.19282784782e-07 -1.24751039582e-08 5.1772258593e-07 -1.21228000969e-08 5.16084240683e-07 -1.22509015705e-08 5.14332068513e-07 -1.27438540739e-08 5.12223164177e-07 -1.33155617939e-08 5.09433091148e-07 -1.36643205651e-08 5.05337242917e-07 -1.32206510236e-08 4.99438325815e-07 -1.19051444809e-08 4.91899238667e-07 -9.77951696836e-09 4.84063906099e-07 -6.67037859206e-09 4.7736619032e-07 -3.45120025861e-09 4.72397955339e-07 2.69284934743e-10 4.70135560762e-07 4.13515754113e-09 4.71007862657e-07 7.72689814316e-09 4.75734828578e-07 1.18605527732e-08 4.84020502575e-07 1.5383698989e-08 4.95596990323e-07 1.79333186708e-08 5.08263157531e-07 1.84628805906e-08 5.19492778195e-07 1.7555218743e-08 5.27721664286e-07 1.60983926964e-08 5.31237788948e-07 1.45447672714e-08 5.30488751552e-07 1.43566660662e-08 5.27108002375e-07 1.56255391564e-08 5.23029234874e-07 1.78823505508e-08 5.19840112722e-07 2.03819905568e-08 5.18283501368e-07 2.24502836222e-08 5.18508726188e-07 2.36477991534e-08 5.20095175227e-07 2.36917103212e-08 5.22268262623e-07 2.24320799049e-08 5.2433192284e-07 2.00169464353e-08 5.25793456941e-07 1.67472759071e-08 5.26420178993e-07 1.30087112209e-08 5.26176878002e-07 9.19300096421e-09 5.25176874246e-07 5.59626240448e-09 5.23633919994e-07 2.46470691221e-09 5.21774886492e-07 -9.60538459293e-11 5.1979985823e-07 -2.04042379532e-09 5.17841575351e-07 -3.42556265567e-09 5.15985709495e-07 -4.32131339246e-09 5.14261889396e-07 -4.83540110065e-09 5.12678991191e-07 -5.05461938495e-09 5.11210846126e-07 -5.06692619211e-09 5.09834113149e-07 -4.93829981656e-09 5.08521436207e-07 -4.72174014682e-09 5.07266777503e-07 -4.45034390008e-09 5.06067368766e-07 -4.1476721331e-09 5.04919330894e-07 -3.82693399426e-09 5.03808440367e-07 -3.50407224613e-09 5.02721706465e-07 -3.18061120012e-09 5.01645359206e-07 -2.8670560454e-09 5.0057272016e-07 -2.55606903057e-09 4.99496534773e-07 -2.25728145892e-09 4.98415589061e-07 -1.95843456347e-09 4.97323895088e-07 -1.67230722867e-09 4.96222586174e-07 -1.38193987247e-09 4.95105236168e-07 -1.10397505836e-09 4.93976464072e-07 -8.15911151461e-10 4.92828632891e-07 -5.38729127362e-10 4.91669302807e-07 -2.45173497694e-10 4.90491118834e-07 4.21747175614e-11 4.89311230762e-07 3.58763238701e-10 4.88124669578e-07 6.86020425309e-10 4.86950724383e-07 1.05786601327e-09 4.85777504241e-07 1.44664275983e-09 4.84619377836e-07 1.87410706643e-09 4.83460102127e-07 2.30880622922e-09 4.82304687243e-07 2.77399224144e-09 4.81129089978e-07 3.23721539169e-09 4.79942550572e-07 3.72657318792e-09 4.78732952886e-07 4.21342896466e-09 4.77521319589e-07 4.72905999891e-09 4.76301870957e-07 5.24540870925e-09 4.75096677867e-07 5.79089819021e-09 4.73900263583e-07 6.33670809382e-09 4.72733783899e-07 6.9057004426e-09 4.71593552153e-07 7.4681994464e-09 4.70500427953e-07 8.04008150625e-09 4.69452111255e-07 8.59067378656e-09 4.68467596758e-07 9.12975234856e-09 4.67543749445e-07 9.62622994718e-09 4.66696207374e-07 1.00858791518e-08 4.65919150101e-07 1.04775133441e-08 4.65223488676e-07 1.08037665207e-08 4.64598262619e-07 1.10333131218e-08 4.64047459031e-07 1.11682075255e-08 4.63552299796e-07 1.11809112538e-08 4.63107624061e-07 1.10780572877e-08 4.62683707691e-07 1.08403715944e-08 4.622624684e-07 1.04841865315e-08 4.61800934054e-07 1.00085004758e-08 4.61270287914e-07 9.45618171028e-09 4.60620631793e-07 8.86071399592e-09 4.59822607328e-07 8.29863130173e-09 4.58831520846e-07 7.84253957317e-09 4.57628011452e-07 7.61602958516e-09 4.56188871596e-07 7.73852952266e-09 4.54528741294e-07 8.37408992472e-09 4.52657642454e-07 9.65136651179e-09 4.50616484883e-07 1.17067212623e-08 4.48464344002e-07 1.45134767186e-08 4.46289864139e-07 1.82921524544e-08 4.44190448908e-07 2.31078475827e-08 4.42357314135e-07 2.91395494442e-08 4.41001378602e-07 3.64337355325e-08 4.40416140478e-07 4.48147168783e-08 5.33238705056e-08 4.40721062401e-07 7.54705733167e-08 -2.67832725695e-07 1.3161045597e-07 -6.06884822458e-07 1.4988905885e-07 -2.9331373889e-07 1.79270570613e-07 -1.97818115773e-07 2.08865041822e-07 -1.75888053949e-07 2.33206517661e-07 -1.53233204728e-07 2.55300738246e-07 -1.36850546569e-07 2.74812356845e-07 -1.21324123468e-07 2.92608441217e-07 -1.09300972114e-07 3.08532050312e-07 -9.91011508325e-08 3.23355926475e-07 -9.06562273402e-08 3.36792919406e-07 -8.36635722025e-08 3.49493606615e-07 -7.79535200236e-08 3.61126397863e-07 -7.32593559369e-08 3.72245638867e-07 -6.94955466416e-08 3.82543307439e-07 -6.64327319329e-08 3.92486036225e-07 -6.40400634119e-08 4.01805630716e-07 -6.21275561178e-08 4.10869735226e-07 -6.06548694029e-08 4.19454831264e-07 -5.94283235007e-08 4.2774390404e-07 -5.85083345676e-08 4.35599233615e-07 -5.77326784977e-08 4.43206561379e-07 -5.71407100802e-08 4.50406619454e-07 -5.66112939841e-08 4.57332596133e-07 -5.61977838082e-08 4.63929045716e-07 -5.57848794195e-08 4.70248494863e-07 -5.54582636292e-08 4.76257486444e-07 -5.51149424808e-08 4.81985924555e-07 -5.48337956567e-08 4.87425725352e-07 -5.4521380513e-08 4.92568375055e-07 -5.425538073e-08 4.97420784906e-07 -5.39455793907e-08 5.01969309103e-07 -5.36515042234e-08 5.06241942694e-07 -5.32936885637e-08 5.10177970809e-07 -5.29298623451e-08 5.13855318544e-07 -5.24717745446e-08 5.17197502788e-07 -5.1979557953e-08 5.20278362266e-07 -5.13852889765e-08 5.23027897998e-07 -5.07360152574e-08 5.25535833986e-07 -4.99768594769e-08 5.27721368798e-07 -4.91557924387e-08 5.29682442325e-07 -4.82262276869e-08 5.31338668313e-07 -4.7234639932e-08 5.32791831593e-07 -4.61516216737e-08 5.33971015389e-07 -4.50372261505e-08 5.34983832807e-07 -4.38861730829e-08 5.35769338944e-07 -4.27679346671e-08 5.36457188169e-07 -4.17168335557e-08 5.37087478943e-07 -4.09101158629e-08 5.37958936992e-07 -4.05268443895e-08 5.39366723939e-07 -4.08211676342e-08 5.41719501211e-07 -4.17264590468e-08 5.45087337567e-07 -4.26836793261e-08 5.47995901929e-07 -4.17026013253e-08 5.4880909774e-07 -3.63837744473e-08 5.48159642418e-07 -3.00081449775e-08 5.45834899827e-07 -2.93028639205e-08 5.42314590882e-07 -2.97242297241e-08 5.41893789692e-07 -3.34151556326e-08 5.44374462813e-07 -3.5668220915e-08 5.45003903638e-07 -3.16048454297e-08 5.43515035066e-07 -2.66704549764e-08 5.40797707138e-07 -2.3412341664e-08 5.37977122207e-07 -2.18452470162e-08 5.35610920943e-07 -2.11898861432e-08 5.33770360345e-07 -2.06300892308e-08 5.323214779e-07 -1.98058672087e-08 5.31040061485e-07 -1.86698539944e-08 5.2976037058e-07 -1.72889730235e-08 5.28336466783e-07 -1.57585983085e-08 5.26744345013e-07 -1.42489139987e-08 5.25054724189e-07 -1.29264877919e-08 5.23345172711e-07 -1.18599181923e-08 5.21695020346e-07 -1.10065284248e-08 5.20077406151e-07 -1.03526243946e-08 5.18396776823e-07 -9.91359539212e-09 5.16237874345e-07 -9.56220633201e-09 5.13169120095e-07 -9.14220001779e-09 5.09061181908e-07 -8.71238666307e-09 5.04000132126e-07 -8.12115263548e-09 4.98291398258e-07 -7.05912280784e-09 4.92486228002e-07 -5.66692406019e-09 4.87032619634e-07 -3.90939137578e-09 4.82723163366e-07 -1.96161224381e-09 4.80159183547e-07 -4.80897742996e-10 4.7992509208e-07 9.35561008317e-10 4.82123282636e-07 2.3624379835e-09 4.86244514647e-07 4.03275766518e-09 4.92303248822e-07 6.42168188153e-09 4.99646204312e-07 8.94558601412e-09 5.0771862583e-07 1.11367572494e-08 5.15026071819e-07 1.25252192674e-08 5.2049225713e-07 1.34498811238e-08 5.23573845645e-07 1.41286611819e-08 5.24157950522e-07 1.48463491901e-08 5.23004232175e-07 1.60185895513e-08 5.21254961797e-07 1.75761416446e-08 5.19755453808e-07 1.9184711404e-08 5.19079622838e-07 2.05695477491e-08 5.19301882889e-07 2.14341147677e-08 5.20334973221e-07 2.16546076814e-08 5.2186685253e-07 2.1097514581e-08 5.23511258996e-07 1.97218681424e-08 5.24915327122e-07 1.76039803216e-08 5.25811625153e-07 1.49148706048e-08 5.26088374161e-07 1.19060830919e-08 5.25716023307e-07 8.8162426985e-09 5.24792720228e-07 5.87437129985e-09 5.23433674345e-07 3.2352257753e-09 5.21812755351e-07 1.01323169364e-09 5.20053789877e-07 -7.59985062943e-10 5.18279387939e-07 -2.08561146332e-09 5.16553000582e-07 -3.01423904036e-09 5.14918071179e-07 -3.60981745414e-09 5.13383480583e-07 -3.93942245924e-09 5.11936204756e-07 -4.07315663399e-09 5.10560506623e-07 -4.0607339527e-09 5.09242205951e-07 -3.95084709107e-09 5.07978623667e-07 -3.7697899579e-09 5.06773126354e-07 -3.54020794636e-09 5.05614395692e-07 -3.28006957147e-09 5.04496174429e-07 -3.00051367028e-09 5.03398397125e-07 -2.71364829089e-09 5.02317977574e-07 -2.42086758249e-09 5.01236913375e-07 -2.13038766026e-09 5.00160086454e-07 -1.8369920242e-09 4.99071085078e-07 -1.54842757036e-09 4.97980131905e-07 -1.25586660256e-09 4.96869949476e-07 -9.67900869441e-10 4.95755194207e-07 -6.73637810484e-10 4.94618112999e-07 -3.81614713585e-10 4.93475934438e-07 -8.05034038801e-11 4.92310484447e-07 2.23209343231e-10 4.91142730317e-07 5.37871395323e-10 4.89961819048e-07 8.68839652474e-10 4.88788459064e-07 1.22208291066e-09 4.87611565865e-07 1.60654509122e-09 4.86442959081e-07 2.01329678457e-09 4.85271062404e-07 2.44751672356e-09 4.84105518042e-07 2.89814320331e-09 4.82927561437e-07 3.37014909427e-09 4.81740981373e-07 3.85088106662e-09 4.80531343069e-07 4.34928490997e-09 4.7931214762e-07 4.85467154125e-09 4.78080480078e-07 5.37996199107e-09 4.76853547193e-07 5.91163103751e-09 4.75631334676e-07 6.46322433972e-09 4.7442850461e-07 7.01619742929e-09 4.73246988874e-07 7.58389913554e-09 4.72100039601e-07 8.14222232692e-09 4.70992278776e-07 8.70292287385e-09 4.69935322862e-07 9.23657773987e-09 4.68934262631e-07 9.75315397754e-09 4.67997216979e-07 1.02194711198e-08 4.6712728424e-07 1.06449845209e-08 4.6632771019e-07 1.09944454436e-08 4.6559775147e-07 1.12778007058e-08 4.64934214662e-07 1.14588994862e-08 4.64330557772e-07 1.15507451595e-08 4.63775402933e-07 1.15200027795e-08 4.63254606423e-07 1.13874813489e-08 4.62746479274e-07 1.11269839846e-08 4.62226797041e-07 1.07726946749e-08 4.61662705854e-07 1.0314214578e-08 4.61022559158e-07 9.8130294149e-09 4.60268846731e-07 9.28857088386e-09 4.59371682582e-07 8.83347367839e-09 4.5830081763e-07 8.50204794239e-09 4.57038318247e-07 8.42910862593e-09 4.5557569206e-07 8.71200696081e-09 4.53923270866e-07 9.51034542226e-09 4.52105497638e-07 1.0935207475e-08 4.50154604499e-07 1.31077812639e-08 4.48130607811e-07 1.59875946563e-08 4.46107798471e-07 1.97599494084e-08 4.44202621447e-07 2.4499463396e-08 4.42595539248e-07 3.02895892253e-08 4.41491174222e-07 3.71399254319e-08 4.4103830125e-07 4.47300570684e-08 5.23311718131e-08 4.41305372446e-07 7.45227895423e-08 -3.44475270163e-07 1.3537863532e-07 -6.69556573998e-07 1.60610080136e-07 -3.20416604876e-07 1.91028602009e-07 -2.30158421648e-07 2.18001403875e-07 -2.04785415619e-07 2.41775466579e-07 -1.7923647635e-07 2.64251037513e-07 -1.61178618442e-07 2.83950224339e-07 -1.43366015048e-07 3.02467552474e-07 -1.29665741549e-07 3.19068064213e-07 -1.17967832031e-07 3.34957230422e-07 -1.08144261398e-07 3.49155500056e-07 -9.99066122062e-08 3.62960030732e-07 -9.30295152632e-08 3.75265151799e-07 -8.72844161416e-08 3.87366714572e-07 -8.25132403658e-08 3.9812602281e-07 -7.85506786041e-08 4.08776642765e-07 -7.52773391382e-08 4.18228785564e-07 -7.25668099085e-08 4.27621923738e-07 -7.03161666434e-08 4.35915662316e-07 -6.84391276996e-08 4.44255629939e-07 -6.68788391912e-08 4.51680615657e-07 -6.55843833279e-08 4.59117376077e-07 -6.44911667711e-08 4.65784788067e-07 -6.35297163603e-08 4.72498558233e-07 -6.26795870931e-08 4.78490507178e-07 -6.19091956308e-08 4.8450408988e-07 -6.11920249646e-08 4.8986522301e-07 -6.05093662592e-08 4.95199207271e-07 -5.98525590761e-08 4.99905723398e-07 -5.92063982217e-08 5.04524334825e-07 -5.85623613801e-08 5.08554817169e-07 -5.79050315171e-08 5.12427855899e-07 -5.72350556777e-08 5.15738700842e-07 -5.65279266597e-08 5.18877766316e-07 -5.57800079219e-08 5.21498508736e-07 -5.49835626519e-08 5.23917434894e-07 -5.41337541218e-08 5.25901852308e-07 -5.32181082559e-08 5.27688715419e-07 -5.22472048764e-08 5.29110153668e-07 -5.1211114599e-08 5.30358412653e-07 -5.01199392405e-08 5.31319834816e-07 -4.89688005043e-08 5.32148754542e-07 -4.77731898355e-08 5.3277632863e-07 -4.65391507496e-08 5.33329832997e-07 -4.52966104377e-08 5.33766299983e-07 -4.40681611728e-08 5.34201838275e-07 -4.29036123034e-08 5.34636805597e-07 -4.18845045233e-08 5.35211437038e-07 -4.11713928538e-08 5.35911331694e-07 -4.09443663895e-08 5.36716740508e-07 -4.1285759814e-08 5.37244293447e-07 -4.19477290793e-08 5.37214865096e-07 -4.22532645894e-08 5.36901632085e-07 -4.10316739905e-08 5.3930042404e-07 -3.82684599799e-08 5.47539879002e-07 -3.77470833653e-08 5.57117897991e-07 -3.80313735188e-08 5.5990623709e-07 -3.14976200661e-08 5.5494931708e-07 -2.69020548036e-08 5.46035723313e-07 -2.56851157333e-08 5.39470361114e-07 -2.41292175522e-08 5.35882771507e-07 -2.25575046504e-08 5.34110043025e-07 -2.11468217831e-08 5.32775516939e-07 -2.01624004801e-08 5.31336679275e-07 -1.93982015081e-08 5.29574896328e-07 -1.856903586e-08 5.27612502131e-07 -1.75313098032e-08 5.25538902348e-07 -1.62979167546e-08 5.23495382511e-07 -1.49227933768e-08 5.21560019741e-07 -1.34917749016e-08 5.19788603254e-07 -1.21188636805e-08 5.18131107898e-07 -1.08934653764e-08 5.16488320134e-07 -9.81936828851e-09 5.14746262746e-07 -8.85211072991e-09 5.12793196265e-07 -7.98471869282e-09 5.10536985782e-07 -7.23757578487e-09 5.07927832539e-07 -6.54079533779e-09 5.04998176097e-07 -5.80131705384e-09 5.01685752675e-07 -4.99699028471e-09 4.98050572298e-07 -4.08678891957e-09 4.9446211823e-07 -3.07842840772e-09 4.91372669512e-07 -2.19046961662e-09 4.89330508281e-07 -1.48564233923e-09 4.88842305966e-07 -1.08896097863e-09 4.89884466302e-07 -1.11908815796e-09 4.92344691972e-07 -1.0969307862e-09 4.9582439451e-07 -6.48278380912e-10 4.99740421063e-07 5.62433890545e-10 5.03978284458e-07 2.74379767642e-09 5.08278978941e-07 5.32346500493e-09 5.12428573952e-07 7.98451860011e-09 5.15810349625e-07 1.02597791009e-08 5.18068204533e-07 1.22317844666e-08 5.19207233816e-07 1.38804903018e-08 5.19369986474e-07 1.53326858237e-08 5.19087554615e-07 1.67030380624e-08 5.18812880216e-07 1.79605062401e-08 5.18866760485e-07 1.89776611398e-08 5.19348496996e-07 1.96721929563e-08 5.20225689719e-07 1.99342549081e-08 5.21391793281e-07 1.97187006985e-08 5.2268020511e-07 1.89568947516e-08 5.23898510151e-07 1.76367770053e-08 5.24848994367e-07 1.58038027221e-08 5.25397489462e-07 1.35713931612e-08 5.2546254511e-07 1.11026970716e-08 5.25047340147e-07 8.56179258115e-09 5.24199680121e-07 6.11328073757e-09 5.2301254696e-07 3.87104945297e-09 5.21592232407e-07 1.9329119777e-09 5.20038978601e-07 3.29778110096e-10 5.1844149896e-07 -9.17190205967e-10 5.16856436227e-07 -1.84616103202e-09 5.15327320748e-07 -2.48624392965e-09 5.13860573889e-07 -2.89731179776e-09 5.12458086986e-07 -3.12015900492e-09 5.11105620032e-07 -3.20453942621e-09 5.09803364357e-07 -3.17959397569e-09 5.08551917101e-07 -3.07527757948e-09 5.07353203954e-07 -2.90846964383e-09 5.06198350175e-07 -2.70211942523e-09 5.05078561442e-07 -2.46383118736e-09 5.03980540183e-07 -2.21050287709e-09 5.02896063553e-07 -1.9413667932e-09 5.01815038677e-07 -1.6691356802e-09 5.00733770639e-07 -1.38638088568e-09 4.99645170401e-07 -1.10521221014e-09 4.98549137901e-07 -8.13053604025e-10 4.97439487617e-07 -5.24671357019e-10 4.96320302526e-07 -2.21914143816e-10 4.95185008835e-07 7.61278024769e-11 4.94040896893e-07 3.9330169896e-10 4.92877826565e-07 7.0237620546e-10 4.91713376347e-07 1.03820582312e-09 4.90537718594e-07 1.37345633921e-09 4.89371360576e-07 1.74956559289e-09 4.88196210658e-07 2.13169518039e-09 4.87028854651e-07 2.55524337713e-09 4.85850963809e-07 2.98181256065e-09 4.84678641544e-07 3.44819374334e-09 4.83487397173e-07 3.91265494229e-09 4.82290440827e-07 4.41256027728e-09 4.81066696247e-07 4.90590410272e-09 4.79839093167e-07 5.43302473768e-09 4.78595167118e-07 5.95262390032e-09 4.77362429427e-07 6.50430393266e-09 4.76129388161e-07 7.04584724343e-09 4.74922532186e-07 7.61344605241e-09 4.73730676187e-07 8.1642788625e-09 4.72579884596e-07 8.72910282329e-09 4.71460550279e-07 9.26432067207e-09 4.70397524196e-07 9.79452238552e-09 4.69381035529e-07 1.02758476204e-08 4.68432414824e-07 1.0728317307e-08 4.67539374407e-07 1.11092414357e-08 4.66718127625e-07 1.14365515852e-08 4.6595214748e-07 1.16697672338e-08 4.65251317974e-07 1.18268447892e-08 4.64593348452e-07 1.18715743744e-08 4.63980664754e-07 1.182579744e-08 4.63383940217e-07 1.16613520439e-08 4.62796843322e-07 1.14085336592e-08 4.62181671902e-07 1.10524597445e-08 4.61523437843e-07 1.0639600506e-08 4.60779469484e-07 1.01799423739e-08 4.59932349031e-07 9.74743020109e-09 4.58943433589e-07 9.37994346373e-09 4.5780283768e-07 9.18105834506e-09 4.56486755227e-07 9.22907985081e-09 4.5500395026e-07 9.66088540682e-09 4.53358934113e-07 1.05773697157e-08 4.51586017414e-07 1.21178759304e-08 4.49713293322e-07 1.43558840628e-08 4.47793993689e-07 1.72692892899e-08 4.45899895994e-07 2.09995011458e-08 4.44148387551e-07 2.56217939071e-08 4.42717264079e-07 3.11501308347e-08 4.41779865304e-07 3.75587273038e-08 4.41387771809e-07 4.44653834434e-08 5.12752000156e-08 4.41596517037e-07 7.53968465595e-08 -4.22529920095e-07 1.45749942835e-07 -7.42090625599e-07 1.72518669713e-07 -3.49123123692e-07 2.0020564852e-07 -2.60084460206e-07 2.25184174826e-07 -2.31613044676e-07 2.47223777612e-07 -2.03564095049e-07 2.68219772563e-07 -1.84036192581e-07 2.86921828553e-07 -1.64371920852e-07 3.04866155673e-07 -1.49284381601e-07 3.21021158825e-07 -1.36316734813e-07 3.36729656487e-07 -1.25332996627e-07 3.50933969194e-07 -1.16042340502e-07 3.64898687381e-07 -1.08185451945e-07 3.77548561549e-07 -1.01523656379e-07 3.90044067871e-07 -9.58861648538e-08 4.01361525254e-07 -9.11006980634e-08 4.12553159398e-07 -8.70453566082e-08 4.22658470588e-07 -8.35968726649e-08 4.32652218461e-07 -8.06530899386e-08 4.41718211352e-07 -7.81210513378e-08 4.50622399401e-07 -7.59464765788e-08 4.58637683357e-07 -7.40489879095e-08 4.66514695633e-07 -7.23799681796e-08 4.7356906694e-07 -7.08952421515e-08 4.80459745444e-07 -6.95469032186e-08 4.86640222772e-07 -6.82960243408e-08 4.92654294658e-07 -6.71264462222e-08 4.98012763613e-07 -6.60116679036e-08 5.03198134597e-07 -6.49363955655e-08 5.07783141928e-07 -6.38840113888e-08 5.1217520235e-07 -6.28439140442e-08 5.15997684877e-07 -6.1802805626e-08 5.19616819332e-07 -6.07434574019e-08 5.22717182694e-07 -5.96625911979e-08 5.2558387537e-07 -5.85496924124e-08 5.27991243462e-07 -5.73945400893e-08 5.30176337706e-07 -5.61976989556e-08 5.31951974625e-07 -5.49610000654e-08 5.33523578863e-07 -5.36822414006e-08 5.34761942473e-07 -5.23685976967e-08 5.35828770488e-07 -5.10263256392e-08 5.36645490106e-07 -4.96640932531e-08 5.37345939374e-07 -4.82945625998e-08 5.37890615645e-07 -4.69335336078e-08 5.38390045407e-07 -4.56074994994e-08 5.38841587521e-07 -4.43518331627e-08 5.39353325867e-07 -4.32247192457e-08 5.3994632856e-07 -4.23000695133e-08 5.4062809031e-07 -4.16649510151e-08 5.41212962573e-07 -4.13516238792e-08 5.41384666088e-07 -4.12712248773e-08 5.40795956822e-07 -4.11816201688e-08 5.39441796545e-07 -4.07121546038e-08 5.38204785116e-07 -3.96055129782e-08 5.37819086802e-07 -3.76753597461e-08 5.36882058395e-07 -3.65855872977e-08 5.34830660615e-07 -3.57296271876e-08 5.34340729622e-07 -3.07358690869e-08 5.33844561884e-07 -2.61180524765e-08 5.32362863063e-07 -2.39479943289e-08 5.30921623942e-07 -2.24492583213e-08 5.29746629069e-07 -2.11832388392e-08 5.2877682956e-07 -1.99776889093e-08 5.27639806415e-07 -1.8847803169e-08 5.26166707611e-07 -1.77377875734e-08 5.24342635072e-07 -1.65639892905e-08 5.22308839942e-07 -1.53005439311e-08 5.20185062703e-07 -1.39719428483e-08 5.18104489492e-07 -1.26191689444e-08 5.16144876685e-07 -1.12953338063e-08 5.14343196849e-07 -1.00569310062e-08 5.12656538861e-07 -8.9294186514e-09 5.11027933532e-07 -7.89284257692e-09 5.09397736155e-07 -6.91348524899e-09 5.07716971577e-07 -5.98538104536e-09 5.05922834421e-07 -5.11740736568e-09 5.03992694101e-07 -4.28117634824e-09 5.01986173184e-07 -3.46253205407e-09 5.00018820343e-07 -2.69496297638e-09 4.98302474244e-07 -2.03452112226e-09 4.97154383129e-07 -1.59374436853e-09 4.96818281576e-07 -1.51865225657e-09 4.97478424459e-07 -1.80087951998e-09 4.99112549601e-07 -2.36270246128e-09 5.01366739434e-07 -2.97871192555e-09 5.03893587883e-07 -3.18777804705e-09 5.06318527594e-07 -2.63102934926e-09 5.08455140019e-07 -1.10652943153e-09 5.1023836737e-07 1.24384228322e-09 5.12013950126e-07 4.16483017328e-09 5.13604769712e-07 7.01861691559e-09 5.15005705095e-07 9.65967554179e-09 5.16031137327e-07 1.1905092144e-08 5.16764975781e-07 1.37675602135e-08 5.17237535621e-07 1.52558467039e-08 5.17698426097e-07 1.64821191265e-08 5.18238478377e-07 1.74139680886e-08 5.18969138301e-07 1.80720562583e-08 5.19849799533e-07 1.84011981784e-08 5.20864340516e-07 1.83951931006e-08 5.21927446552e-07 1.80036569109e-08 5.2296249341e-07 1.721025697e-08 5.23857824736e-07 1.6005081565e-08 5.24501411573e-07 1.4426460886e-08 5.24820177864e-07 1.25581137515e-08 5.24755165908e-07 1.0502456289e-08 5.24324218986e-07 8.39013761264e-09 5.23543959268e-07 6.32362836543e-09 5.22496865319e-07 4.40992150204e-09 5.21239269765e-07 2.70809106735e-09 5.19862675661e-07 1.27121843091e-09 5.18417952416e-07 1.04550410533e-10 5.16968698136e-07 -7.97997346547e-10 5.15539815395e-07 -1.46421503275e-09 5.14150897253e-07 -1.92668555901e-09 5.12798572812e-07 -2.21873518637e-09 5.11484691637e-07 -2.37378395666e-09 5.10208529591e-07 -2.41772837268e-09 5.08981014166e-07 -2.37270505919e-09 5.07795301424e-07 -2.26089759781e-09 5.06651850097e-07 -2.09696033488e-09 5.05534230172e-07 -1.89778646725e-09 5.04440746478e-07 -1.67014141863e-09 5.03353811704e-07 -1.42595229193e-09 5.02275771839e-07 -1.16505175543e-09 5.01190373647e-07 -8.96477167304e-10 5.00104905312e-07 -6.15257570521e-10 4.99003286892e-07 -3.29789982046e-10 4.9789787868e-07 -3.25418526407e-11 4.96772670471e-07 2.68586630161e-10 4.95644148878e-07 5.82018844356e-10 4.94492810606e-07 9.00004390691e-10 4.93339972948e-07 1.22466690244e-09 4.92171130115e-07 1.55985185437e-09 4.91010594867e-07 1.90912857526e-09 4.89841313603e-07 2.28248451795e-09 4.88679544569e-07 2.67461620692e-09 4.87506005785e-07 3.09311849788e-09 4.86337397826e-07 3.52906770441e-09 4.85154001806e-07 3.99114288964e-09 4.83967592862e-07 4.46616617309e-09 4.82757161443e-07 4.96358065696e-09 4.81537600541e-07 5.46868175453e-09 4.80298068565e-07 5.99491575936e-09 4.79059792153e-07 6.52517213639e-09 4.77817764098e-07 7.07467462371e-09 4.76591524632e-07 7.62118866383e-09 4.75377328959e-07 8.18124039513e-09 4.74191704871e-07 8.72717790084e-09 4.7303341791e-07 9.2761666281e-09 4.71917109128e-07 9.79505462632e-09 4.7084337861e-07 1.03007587834e-08 4.69823548706e-07 1.07555808994e-08 4.68857258774e-07 1.11767433602e-08 4.67950632617e-07 1.15242255847e-08 4.67100143346e-07 1.18172598317e-08 4.66305643564e-07 1.20156866566e-08 4.65559076324e-07 1.21424119372e-08 4.64853372968e-07 1.21597957565e-08 4.64174991036e-07 1.20975070317e-08 4.63509452594e-07 1.19242277726e-08 4.62836896786e-07 1.16802966286e-08 4.62135191505e-07 1.13461258492e-08 4.61378964607e-07 1.09789491926e-08 4.60542356847e-07 1.05810793872e-08 4.59600471865e-07 1.02352981975e-08 4.58531986115e-07 9.96905584172e-09 4.57321262193e-07 9.88966156352e-09 4.55961889029e-07 1.00639117871e-08 4.54456575705e-07 1.06227726597e-08 4.52823876118e-07 1.16567248584e-08 4.51087697682e-07 1.3286400509e-08 4.49287184742e-07 1.5586115449e-08 4.47458291404e-07 1.85064423829e-08 4.45679401689e-07 2.21931596505e-08 4.44055700104e-07 2.66657753522e-08 4.42762458191e-07 3.19357238461e-08 4.41931653971e-07 3.79048985555e-08 4.41560441711e-07 4.42255087826e-08 5.03532076548e-08 4.41694267178e-07 8.00050648799e-08 -5.05493716428e-07 1.59155086056e-07 -8.23756298878e-07 1.85378646565e-07 -3.77335938293e-07 2.1107759718e-07 -2.88026437076e-07 2.34098484109e-07 -2.56465873811e-07 2.54128050286e-07 -2.25900424209e-07 2.73883842846e-07 -2.05490497593e-07 2.91516201632e-07 -1.84281478819e-07 3.08713115367e-07 -1.68127213654e-07 3.24414999286e-07 -1.54136492091e-07 3.39856750141e-07 -1.4220114713e-07 3.53983787165e-07 -1.32025076525e-07 3.67975802479e-07 -1.23327483885e-07 3.80783482049e-07 -1.15856790937e-07 3.93476920462e-07 -1.09435166721e-07 4.05078947285e-07 -1.03887613444e-07 4.16531613899e-07 -9.90913002093e-08 4.26986987467e-07 -9.49160831065e-08 4.37255836342e-07 -9.12827008409e-08 4.46571914162e-07 -8.80931840433e-08 4.55695951152e-07 -8.52724435004e-08 4.63946664192e-07 -8.27591701487e-08 4.71927811014e-07 -8.0504487475e-08 4.79123242789e-07 -7.84447206314e-08 4.8606009628e-07 -7.65523285323e-08 4.92263075793e-07 -7.47910677844e-08 4.98209110794e-07 -7.31284893545e-08 5.03505702747e-07 -7.15433815839e-08 5.08545646295e-07 -7.00158033664e-08 5.12998463987e-07 -6.85308551203e-08 5.17192980781e-07 -6.70697099009e-08 5.20866951696e-07 -6.56215391252e-08 5.24271879702e-07 -6.41751195135e-08 5.27205182581e-07 -6.27180332309e-08 5.29889414599e-07 -6.12393307515e-08 5.32153564682e-07 -5.97425472663e-08 5.34175988092e-07 -5.82181644148e-08 5.35850087824e-07 -5.66718252353e-08 5.37309046582e-07 -5.51068009158e-08 5.38482170668e-07 -5.35335753316e-08 5.39480221443e-07 -5.19581289051e-08 5.4026346795e-07 -5.03970098573e-08 5.40922151662e-07 -4.8860364396e-08 5.4143999832e-07 -4.73692575882e-08 5.41883131898e-07 -4.59403611257e-08 5.42237176235e-07 -4.46031070319e-08 5.42517756803e-07 -4.33860029893e-08 5.42662987435e-07 -4.23327505352e-08 5.42600133213e-07 -4.14800578218e-08 5.4220347412e-07 -4.0838067761e-08 5.41388710915e-07 -4.03362729034e-08 5.40144944074e-07 -3.98212608399e-08 5.38592958419e-07 -3.90389840819e-08 5.36888632621e-07 -3.77811298916e-08 5.35371101944e-07 -3.60305472142e-08 5.32962570646e-07 -3.40457308999e-08 5.29250318132e-07 -3.18763442176e-08 5.27750394334e-07 -2.90936211379e-08 5.27992464502e-07 -2.62138781978e-08 5.28024771369e-07 -2.38497238089e-08 5.27614700798e-07 -2.19117953596e-08 5.26799208183e-07 -2.02543412334e-08 5.25700612842e-07 -1.87603405965e-08 5.24319796088e-07 -1.73546987007e-08 5.22687481435e-07 -1.59807825172e-08 5.20859800832e-07 -1.46103590158e-08 5.18946359112e-07 -1.32445931148e-08 5.1703414364e-07 -1.19097826839e-08 5.15215366916e-07 -1.06312665494e-08 5.13536717862e-07 -9.43609036008e-09 5.12016129927e-07 -8.33465347825e-09 5.10622174577e-07 -7.32202450497e-09 5.09324669399e-07 -6.36782204491e-09 5.08101537998e-07 -5.45541211791e-09 5.06947299279e-07 -4.58305314157e-09 5.05853566306e-07 -3.77672706649e-09 5.04867535422e-07 -3.03958034607e-09 5.04080497083e-07 -2.42064770319e-09 5.03625576819e-07 -1.97964594144e-09 5.03646030741e-07 -1.79544663214e-09 5.04252398152e-07 -1.93727230496e-09 5.05426398221e-07 -2.42167981475e-09 5.07042028253e-07 -3.12651086827e-09 5.08839816444e-07 -3.84606914529e-09 5.10475585849e-07 -4.27542764306e-09 5.11751668452e-07 -4.06030840481e-09 5.12564991789e-07 -3.05221311566e-09 5.12977961414e-07 -1.15933081009e-09 5.13257993552e-07 1.36418130118e-09 5.13493972113e-07 4.16015589491e-09 5.13989552028e-07 6.96635572388e-09 5.14602406449e-07 9.49260441554e-09 5.15305883002e-07 1.16204216834e-08 5.16025182972e-07 1.33467150355e-08 5.16772943022e-07 1.46903979842e-08 5.1755879237e-07 1.57227151e-08 5.18413651985e-07 1.64528667024e-08 5.19321592179e-07 1.6910546196e-08 5.20266482177e-07 1.70799084684e-08 5.21212428189e-07 1.69612167549e-08 5.22116931758e-07 1.65279706005e-08 5.2293086492e-07 1.57752820634e-08 5.23582804614e-07 1.47049114274e-08 5.24014638041e-07 1.33502009107e-08 5.24168858849e-07 1.17720949413e-08 5.24025132904e-07 1.00456102418e-08 5.23580436806e-07 8.26561085437e-09 5.22864077125e-07 6.5083660278e-09 5.21919424143e-07 4.85891633175e-09 5.20800273457e-07 3.36369458423e-09 5.19563348301e-07 2.07455404063e-09 5.18254715415e-07 9.90247900158e-10 5.16924059471e-07 1.25082077033e-10 5.15593467714e-07 -5.4901725831e-10 5.14282574262e-07 -1.03930743865e-09 5.12989971807e-07 -1.3787897006e-09 5.11723201055e-07 -1.58229337773e-09 5.1048728377e-07 -1.67703211433e-09 5.09289950573e-07 -1.67812969668e-09 5.08128356671e-07 -1.61023090475e-09 5.06999525977e-07 -1.4831357309e-09 5.05893896193e-07 -1.31662458045e-09 5.04805586654e-07 -1.11411856485e-09 5.03724854947e-07 -8.90818996884e-10 5.02647712844e-07 -6.43949208492e-10 5.01566299745e-07 -3.86329780758e-10 5.0047961806e-07 -1.09855872391e-10 4.99380948605e-07 1.71462328738e-10 4.98273924229e-07 4.71635873603e-10 4.97152058091e-07 7.72751241901e-10 4.96022758287e-07 1.09529764713e-09 4.94872531779e-07 1.40679434779e-09 4.93721997014e-07 1.74213141316e-09 4.92557487083e-07 2.06583177664e-09 4.91404766556e-07 2.42791639769e-09 4.90241182704e-07 2.78672019624e-09 4.89087487716e-07 3.19070580136e-09 4.879178329e-07 3.5920219224e-09 4.86755305587e-07 4.04026388075e-09 4.85571891096e-07 4.48413559031e-09 4.84388612654e-07 4.97334000511e-09 4.83175856251e-07 5.45341315289e-09 4.81959908011e-07 5.97546562889e-09 4.80718823363e-07 6.48455063238e-09 4.79486349956e-07 7.03196544786e-09 4.78243797913e-07 7.56111687251e-09 4.7702509316e-07 8.1212251626e-09 4.75810503499e-07 8.65471941368e-09 4.7463255604e-07 9.20768617148e-09 4.73472090535e-07 9.72242068227e-09 4.72360791942e-07 1.02405961448e-08 4.7128009159e-07 1.07046972356e-08 4.70258963112e-07 1.11520651702e-08 4.69277226221e-07 1.15264537977e-08 4.68358947194e-07 1.18628882115e-08 4.67480471544e-07 1.21083060478e-08 4.66659744165e-07 1.22978066389e-08 4.65868705926e-07 1.23831353704e-08 4.65118736444e-07 1.2402047975e-08 4.64376995892e-07 1.231378919e-08 4.63648074632e-07 1.21620893727e-08 4.62894331572e-07 1.1917330333e-08 4.6211382385e-07 1.16339794462e-08 4.61265995428e-07 1.12993154221e-08 4.60346131021e-07 1.09863010133e-08 4.59317177108e-07 1.07076921759e-08 4.58178447353e-07 1.0555437901e-08 4.56905087515e-07 1.05683504128e-08 4.55508299803e-07 1.08670550244e-08 4.53984421047e-07 1.15187447237e-08 4.52361786188e-07 1.26524073664e-08 4.50658930726e-07 1.4337060266e-08 4.48915244524e-07 1.66689764158e-08 4.47163279877e-07 1.95740419076e-08 4.45471885014e-07 2.31912240764e-08 4.43949266696e-07 2.75138373889e-08 4.4274639357e-07 3.25208236498e-08 4.41973382525e-07 3.80959227083e-08 4.41585407499e-07 4.39054026018e-08 4.94253876376e-08 4.41621881517e-07 8.71011264655e-08 -5.95931113965e-07 1.83643235672e-07 -9.22861393532e-07 2.06856971317e-07 -4.02452234722e-07 2.2632635671e-07 -3.09713436996e-07 2.45797972358e-07 -2.77613324054e-07 2.62649698266e-07 -2.44900142319e-07 2.80501516451e-07 -2.2499635082e-07 2.96864535434e-07 -2.02766877387e-07 3.13165708417e-07 -1.85942229276e-07 3.28309662993e-07 -1.71292153185e-07 3.43411537096e-07 -1.58663397812e-07 3.57393299252e-07 -1.47780705289e-07 3.71324173479e-07 -1.38379770774e-07 3.84186255681e-07 -1.30184517424e-07 3.96948067047e-07 -1.23051632028e-07 4.08690097583e-07 -1.16778636506e-07 4.20276746116e-07 -1.1127848129e-07 4.30875992959e-07 -1.06397312271e-07 4.41255485243e-07 -1.02076702133e-07 4.50726748194e-07 -9.81937767279e-08 4.59899987839e-07 -9.47290901148e-08 4.68208598918e-07 -9.15702574851e-08 4.76221065631e-07 -8.87049401321e-08 4.83423750818e-07 -8.60551263329e-08 4.90298255582e-07 -8.36106387997e-08 4.96463839698e-07 -8.12973807424e-08 5.02304115884e-07 -7.9128061767e-08 5.07505745031e-07 -7.70407060707e-08 5.12395137004e-07 -7.50497479768e-08 5.1672070153e-07 -7.31039360934e-08 5.20745220135e-07 -7.12201890185e-08 5.24260519077e-07 -6.93541304431e-08 5.27493663759e-07 -6.75178316808e-08 5.30283760682e-07 -6.56781920657e-08 5.32795687356e-07 -6.38521793602e-08 5.34930770526e-07 -6.20092128141e-08 5.36820468159e-07 -6.01737634527e-08 5.3838929046e-07 -5.83297124386e-08 5.3974739522e-07 -5.64993458029e-08 5.40851700903e-07 -5.46758773139e-08 5.41783424291e-07 -5.2886009889e-08 5.4252329395e-07 -5.11289245646e-08 5.43132562113e-07 -4.94324980514e-08 5.43606145762e-07 -4.78000487803e-08 5.4398434888e-07 -4.62583521641e-08 5.44257649492e-07 -4.48112812065e-08 5.44423767847e-07 -4.34790863547e-08 5.44426136875e-07 -4.22572494799e-08 5.44169950131e-07 -4.11451090172e-08 5.43521269436e-07 -4.01079326842e-08 5.42367267542e-07 -3.91021135749e-08 5.40679069924e-07 -3.80504945956e-08 5.3858578686e-07 -3.68656686934e-08 5.36347201153e-07 -3.54577915668e-08 5.34186715924e-07 -3.3785362155e-08 5.32086035947e-07 -3.18556233371e-08 5.30039400498e-07 -2.97383440964e-08 5.28520949109e-07 -2.74810167731e-08 5.27611209214e-07 -2.52112086862e-08 5.26943994161e-07 -2.30952238048e-08 5.26219576763e-07 -2.1103123935e-08 5.25300266276e-07 -1.92540576239e-08 5.24162190615e-07 -1.75398768367e-08 5.22819433882e-07 -1.59272640732e-08 5.21323547064e-07 -1.43949120099e-08 5.19742836698e-07 -1.29312390181e-08 5.18156868304e-07 -1.15519151661e-08 5.16633158835e-07 -1.02669940073e-08 5.15224910333e-07 -9.09441805389e-09 5.13964315848e-07 -8.03176141211e-09 5.12852171342e-07 -7.07379715149e-09 5.11882223419e-07 -6.19000824623e-09 5.11038708561e-07 -5.36361982323e-09 5.10338721453e-07 -4.58015993293e-09 5.09785189377e-07 -3.86816236723e-09 5.09428689058e-07 -3.24589020318e-09 5.09309468026e-07 -2.74269720623e-09 5.09501231854e-07 -2.41844132664e-09 5.10037115554e-07 -2.32791470363e-09 5.10937145184e-07 -2.49387532766e-09 5.12123288867e-07 -2.92022889285e-09 5.13440522906e-07 -3.50988913371e-09 5.14663510984e-07 -4.11464716737e-09 5.15575283367e-07 -4.48156954321e-09 5.16033833449e-07 -4.39856691965e-09 5.16003677656e-07 -3.64962531358e-09 5.15708596071e-07 -2.22725693492e-09 5.15181514619e-07 -2.753599864e-10 5.14715804217e-07 2.11471359427e-09 5.14457454321e-07 4.63955527443e-09 5.14546761258e-07 7.10053518499e-09 5.14900559042e-07 9.28476136625e-09 5.15501921766e-07 1.11565237215e-08 5.16207710007e-07 1.26544992827e-08 5.17016356415e-07 1.38430026786e-08 5.17852886209e-07 1.47204437717e-08 5.18737555756e-07 1.53441159405e-08 5.19613761156e-07 1.57002600012e-08 5.20483476913e-07 1.5816116885e-08 5.21298800662e-07 1.56674053397e-08 5.22040888056e-07 1.52598746988e-08 5.22666890255e-07 1.45837256448e-08 5.23132967393e-07 1.36534296455e-08 5.23404747419e-07 1.24979564343e-08 5.23439790927e-07 1.11591498072e-08 5.23237070326e-07 9.70330104969e-09 5.22782858002e-07 8.18807433268e-09 5.22114987676e-07 6.68850210176e-09 5.21248197842e-07 5.25371595072e-09 5.20239354287e-07 3.94285796521e-09 5.19110149451e-07 2.77792535257e-09 5.17918577959e-07 1.78119488329e-09 5.16686247891e-07 9.5130749567e-10 5.15449482025e-07 2.89747180921e-10 5.142102293e-07 -2.16332919111e-10 5.12981967937e-07 -5.78410136149e-10 5.11764580185e-07 -8.14722852667e-10 5.10574585727e-07 -9.41214748654e-10 5.09409575742e-07 -9.78932451036e-10 5.08276791728e-07 -9.4140103352e-10 5.07164887474e-07 -8.46542039062e-10 5.06075824949e-07 -7.02943179165e-10 5.04994961351e-07 -5.24436388462e-10 5.03924687471e-07 -3.14150988911e-10 5.02850286825e-07 -8.26286542836e-11 5.01777084709e-07 1.71566959934e-10 5.00690261037e-07 4.39405398281e-10 4.99599774569e-07 7.25000741856e-10 4.98491155545e-07 1.02047387688e-09 4.97379572673e-07 1.33114272628e-09 4.96243998969e-07 1.64754606579e-09 4.95106214142e-07 1.96535335585e-09 4.93950146209e-07 2.28748632027e-09 4.92805094301e-07 2.61619042564e-09 4.9165116404e-07 2.96351538903e-09 4.90510201535e-07 3.32837362777e-09 4.89356388492e-07 3.71940738544e-09 4.88209890909e-07 4.12872834896e-09 4.87046683721e-07 4.5660283486e-09 4.85884998883e-07 5.01916035472e-09 4.84699589526e-07 5.49859936141e-09 4.83507461889e-07 5.9881488319e-09 4.82289887993e-07 6.50131508187e-09 4.81069972675e-07 7.01886278958e-09 4.79837636001e-07 7.55676466644e-09 4.78616989427e-07 8.09045055061e-09 4.77400070971e-07 8.63756169981e-09 4.7620698281e-07 9.16801515617e-09 4.75030939243e-07 9.70172997959e-09 4.73889039933e-07 1.02036800353e-08 4.72776751016e-07 1.06957455332e-08 4.71708161317e-07 1.11385344022e-08 4.70679200455e-07 1.15555010747e-08 4.69699151198e-07 1.190427015e-08 4.68761931511e-07 1.2210768038e-08 4.6787068064e-07 1.24323344513e-08 4.67015810631e-07 1.25988755026e-08 4.66194063234e-07 1.26697938925e-08 4.6539193041e-07 1.26805808049e-08 4.64600086422e-07 1.25958743895e-08 4.6380102705e-07 1.24589938252e-08 4.62979978904e-07 1.22438332864e-08 4.62116140956e-07 1.20050192765e-08 4.61191738064e-07 1.17314037723e-08 4.60186443683e-07 1.14944968322e-08 4.59085485141e-07 1.13066150517e-08 4.57875358467e-07 1.12545435717e-08 4.56551707398e-07 1.13757527649e-08 4.5511478293e-07 1.17786111384e-08 4.53578125115e-07 1.25299995937e-08 4.51958444172e-07 1.37375939807e-08 4.50285687311e-07 1.54764747022e-08 4.48586774075e-07 1.78115990757e-08 4.46899959553e-07 2.06946616946e-08 4.45281245788e-07 2.42123096752e-08 4.43840204609e-07 2.83762001907e-08 4.42701461055e-07 3.31036500234e-08 4.41957441478e-07 3.83151202554e-08 4.41528571068e-07 4.36553436351e-08 4.86458661242e-08 4.41455200641e-07 1.27573210782e-07 -7.27556325356e-07 2.34255337763e-07 -1.03262294729e-06 2.5156679253e-07 -4.21731351587e-07 2.61891396882e-07 -3.22358337535e-07 2.77324268178e-07 -2.94718691797e-07 2.91352784615e-07 -2.61218760622e-07 3.0729976291e-07 -2.42511116497e-07 3.22449866454e-07 -2.2019584385e-07 3.38508460622e-07 -2.03560636817e-07 3.53789129109e-07 -1.88731752297e-07 3.69386157583e-07 -1.75642063864e-07 3.83894314173e-07 -1.64210139008e-07 3.98530570172e-07 -1.54140327793e-07 4.11994329181e-07 -1.45251874383e-07 4.25467003302e-07 -1.37367559776e-07 4.37775391908e-07 -1.30361176157e-07 4.50000948789e-07 -1.24099050747e-07 4.61119137157e-07 -1.18486165059e-07 4.72086742948e-07 -1.1342583558e-07 4.81969127382e-07 -1.08847952997e-07 4.91653501438e-07 -1.04669170122e-07 5.00325446658e-07 -1.0084591531e-07 5.08717831483e-07 -9.73204796808e-08 5.16183536913e-07 -9.40455746835e-08 5.23369128191e-07 -9.09814321478e-08 5.29691990579e-07 -8.8099438439e-08 5.35732640681e-07 -8.53599804733e-08 5.41010467044e-07 -8.27466061415e-08 5.46013994123e-07 -8.02339127986e-08 5.50341027693e-07 -7.78092614279e-08 5.54403792102e-07 -7.54509375008e-08 5.57879696685e-07 -7.31482083577e-08 5.61098013848e-07 -7.0886502004e-08 5.6380173722e-07 -6.86561824911e-08 5.66275798681e-07 -6.64468208566e-08 5.68308639831e-07 -6.42608942054e-08 5.70128948296e-07 -6.20941967423e-08 5.71592609602e-07 -5.995196293e-08 5.72876076368e-07 -5.78416441977e-08 5.73872388294e-07 -5.57707841328e-08 5.7472239321e-07 -5.3752087027e-08 5.75346241785e-07 -5.17958775117e-08 5.75849274112e-07 -4.99152960765e-08 5.76166537207e-07 -4.8118028095e-08 5.76365931276e-07 -4.6413002505e-08 5.763826779e-07 -4.48007011777e-08 5.76243132477e-07 -4.32811299096e-08 5.75873297072e-07 -4.18441983682e-08 5.7526697541e-07 -4.04761690551e-08 5.74356922299e-07 -3.91483307002e-08 5.73140001149e-07 -3.78229737684e-08 5.71589824775e-07 -3.64490130242e-08 5.69753410297e-07 -3.49682915959e-08 5.67689370975e-07 -3.33393021534e-08 5.65521063167e-07 -3.15534037892e-08 5.63352062591e-07 -2.96272951121e-08 5.6129789234e-07 -2.76147340934e-08 5.59451634319e-07 -2.55702650421e-08 5.57860600645e-07 -2.35470200241e-08 5.56421333904e-07 -2.15923489497e-08 5.55052682254e-07 -1.96636634631e-08 5.53661862903e-07 -1.78007137966e-08 5.52224453996e-07 -1.60302660317e-08 5.50720455271e-07 -1.43586701915e-08 5.4919985531e-07 -1.27919415123e-08 5.47691485668e-07 -1.13490971505e-08 5.46265493532e-07 -1.00305492173e-08 5.44946110242e-07 -8.85545257319e-09 5.43777271037e-07 -7.81379689861e-09 5.42754913293e-07 -6.9007323315e-09 5.41890992167e-07 -6.08568897153e-09 5.4116717212e-07 -5.34947518506e-09 5.40603262488e-07 -4.67161031892e-09 5.4020049434e-07 -4.0622737925e-09 5.39993826071e-07 -3.54160926206e-09 5.40028720556e-07 -3.10474377291e-09 5.40292326426e-07 -2.83770621944e-09 5.40789560792e-07 -2.73221969315e-09 5.41481166341e-07 -2.8164591204e-09 5.42269820002e-07 -3.07763571683e-09 5.43036156159e-07 -3.44065403119e-09 5.43570765106e-07 -3.81613746953e-09 5.43777787197e-07 -4.00670434709e-09 5.43502743516e-07 -3.90510430591e-09 5.42865065142e-07 -3.27111703501e-09 5.41857891392e-07 -2.25808362717e-09 5.40760114908e-07 -6.92452578303e-10 5.39778919112e-07 1.17953683916e-09 5.38943526273e-07 3.22059159266e-09 5.38416592339e-07 5.30592698406e-09 5.38224692427e-07 7.31389128729e-09 5.3836694632e-07 9.12514812947e-09 5.38732139056e-07 1.06883738675e-08 5.3926152456e-07 1.19755118914e-08 5.39871645387e-07 1.30056356006e-08 5.40536960709e-07 1.37845097752e-08 5.41212169077e-07 1.43379013599e-08 5.41874962839e-07 1.46643701916e-08 5.42490592625e-07 1.47737217888e-08 5.43031237306e-07 1.46546599755e-08 5.4347025406e-07 1.43092822279e-08 5.43775242625e-07 1.37376559502e-08 5.4392129995e-07 1.29534436575e-08 5.43877193322e-07 1.19825426724e-08 5.43628899256e-07 1.08582051516e-08 5.43164388438e-07 9.63171589067e-09 5.42491967967e-07 8.34678994304e-09 5.41626818116e-07 7.06380650216e-09 5.40595681906e-07 5.82050689005e-09 5.3942804442e-07 4.66917555941e-09 5.38151363647e-07 3.61822913911e-09 5.36809015821e-07 2.70194970116e-09 5.35426172215e-07 1.9138527598e-09 5.34028945364e-07 1.27403372982e-09 5.32621311563e-07 7.6866221875e-10 5.31212357135e-07 3.99174082194e-10 5.2980813718e-07 1.45393387272e-10 5.28419869154e-07 -2.83321417021e-12 5.27050274381e-07 -6.67648982664e-11 5.25701881869e-07 -5.47586517093e-11 5.24369967733e-07 1.47902199879e-11 5.2305194186e-07 1.36968851938e-10 5.21740321493e-07 2.96583029383e-10 5.20432003775e-07 4.93072168423e-10 5.19119681339e-07 7.13558322907e-10 5.17801802306e-07 9.61969670007e-10 5.16471401208e-07 1.22476221477e-09 5.15131410111e-07 1.5114203824e-09 5.13775281353e-07 1.80486318047e-09 5.1241000843e-07 2.12117126364e-09 5.11017869995e-07 2.42349736225e-09 5.09623980763e-07 2.74474537145e-09 5.08212298497e-07 3.04408434343e-09 5.0681632075e-07 3.37880345727e-09 5.05410309336e-07 3.70384824796e-09 5.04020250226e-07 4.07883502127e-09 5.02612899038e-07 4.44837485915e-09 5.0121592513e-07 4.87075481611e-09 4.99795558729e-07 5.28611825455e-09 4.98379852414e-07 5.75419999409e-09 4.96932244483e-07 6.21123761704e-09 4.95482732807e-07 6.71791093298e-09 4.93999317858e-07 7.2083319149e-09 4.92520215178e-07 7.74384787166e-09 4.91019339393e-07 8.256304906e-09 4.89538005592e-07 8.80584019015e-09 4.88049619833e-07 9.32218985742e-09 4.86593512052e-07 9.86384187621e-09 4.85141793676e-07 1.03601357587e-08 4.83732318075e-07 1.08675088406e-08 4.82337543122e-07 1.13161518363e-08 4.8099325082e-07 1.1759859934e-08 4.79671259631e-07 1.21303420688e-08 4.78403125703e-07 1.24791474992e-08 4.77158315099e-07 1.27410516693e-08 4.7596246522e-07 1.29674075987e-08 4.74781720752e-07 1.30979230728e-08 4.73635376084e-07 1.31855007747e-08 4.72486501073e-07 1.31764699641e-08 4.71348374281e-07 1.31275882157e-08 4.70181676629e-07 1.29942517019e-08 4.68994259541e-07 1.2839934332e-08 4.67746137119e-07 1.26328795152e-08 4.66442070276e-07 1.24470264554e-08 4.65045967386e-07 1.22697671863e-08 4.63564506704e-07 1.21910220321e-08 4.61972293257e-07 1.22181497701e-08 4.60282953968e-07 1.24548614217e-08 4.58488958799e-07 1.29379248312e-08 4.56615302879e-07 1.37832246815e-08 4.54674032069e-07 1.5043175208e-08 4.52696305491e-07 1.68206550636e-08 4.50708014722e-07 1.9149856803e-08 4.48738598005e-07 2.19943854472e-08 4.46848611166e-07 2.5425548732e-08 4.45128024828e-07 2.94239949141e-08 4.43696152181e-07 3.39166434528e-08 4.42610443884e-07 3.88003172085e-08 4.41776287339e-07 4.37395658212e-08 4.82586496263e-08 4.41227507553e-07 1.54418720351e-07 -8.86425436424e-07 2.94126298711e-07 -1.17514034559e-06 2.91738938898e-07 -4.21075695111e-07 2.71545243018e-07 -3.04139482977e-07 2.72393245813e-07 -2.97006814111e-07 2.74696903839e-07 -2.65360332558e-07 2.83542817312e-07 -2.52814235705e-07 2.94719459191e-07 -2.33225685679e-07 3.07684567555e-07 -2.17907845921e-07 3.2084196456e-07 -2.03684476969e-07 3.34511189812e-07 -1.90577562076e-07 3.47548970718e-07 -1.78850448303e-07 3.60661017409e-07 -1.6830281433e-07 3.72916871197e-07 -1.588458628e-07 3.85081006889e-07 -1.50336580416e-07 3.96342502563e-07 -1.42687460107e-07 4.0743362281e-07 -1.35767671977e-07 4.17621840217e-07 -1.29508578968e-07 4.27580273897e-07 -1.23798240054e-07 4.36678401235e-07 -1.18586010524e-07 4.4548900825e-07 -1.13789692137e-07 4.53461787154e-07 -1.09369631281e-07 4.61138708398e-07 -1.05254973754e-07 4.68023702934e-07 -1.01425783671e-07 4.74583817173e-07 -9.78188698604e-08 4.8043416381e-07 -9.44103792418e-08 4.85966547569e-07 -9.11634333559e-08 4.90859565229e-07 -8.80661222155e-08 4.95457366352e-07 -8.50894619785e-08 4.99494054375e-07 -8.222488737e-08 5.03257471884e-07 -7.94475582273e-08 5.0652558752e-07 -7.67499135482e-08 5.09544683524e-07 -7.41104371539e-08 5.12138226909e-07 -7.15270283446e-08 5.14499499599e-07 -6.89869038401e-08 5.16500491457e-07 -6.64913047644e-08 5.18304228795e-07 -6.40353656183e-08 5.19806696435e-07 -6.16313638473e-08 5.21142276923e-07 -5.9275385511e-08 5.22233701268e-07 -5.69789514499e-08 5.23185688318e-07 -5.47539470171e-08 5.23936900278e-07 -5.26086240918e-08 5.24563809614e-07 -5.05518959949e-08 5.25012182132e-07 -4.85863944915e-08 5.253308599e-07 -4.67141863713e-08 5.25466291422e-07 -4.49288601204e-08 5.25440943243e-07 -4.32239019282e-08 5.25201174657e-07 -4.15828713983e-08 5.24751226303e-07 -3.99906548339e-08 5.24051019349e-07 -3.8420140103e-08 5.231127727e-07 -3.68500128043e-08 5.2192974329e-07 -3.52424489514e-08 5.20561035488e-07 -3.35572143626e-08 5.19041129782e-07 -3.17951640886e-08 5.17463398353e-07 -2.99313277248e-08 5.15871021887e-07 -2.80038275706e-08 5.14335216744e-07 -2.60274560359e-08 5.12870255431e-07 -2.40657141844e-08 5.11510096723e-07 -2.21290053685e-08 5.10204939889e-07 -2.02440839115e-08 5.08971605976e-07 -1.83709781903e-08 5.07775567334e-07 -1.65588984076e-08 5.06625922822e-07 -1.48233251137e-08 5.05522918433e-07 -1.31956843253e-08 5.0448089463e-07 -1.1696581357e-08 5.03533341216e-07 -1.03281930312e-08 5.02691391064e-07 -9.12274644432e-09 5.01984459404e-07 -8.06057867986e-09 5.01404763014e-07 -7.1490318634e-09 5.00957411721e-07 -6.35116886795e-09 5.00627688357e-07 -5.65761077089e-09 5.0042101038e-07 -5.03527733674e-09 5.00343773009e-07 -4.48892324584e-09 5.00406667273e-07 -4.01786793252e-09 5.00673757804e-07 -3.61561526443e-09 5.01050232173e-07 -3.36951236077e-09 5.01605656445e-07 -3.19613329366e-09 5.02242274537e-07 -3.17688890156e-09 5.02901154206e-07 -3.27402055494e-09 5.0349333197e-07 -3.44081597252e-09 5.03884819016e-07 -3.60898248812e-09 5.04016271502e-07 -3.6643636524e-09 5.03787713656e-07 -3.51653605112e-09 5.03327476023e-07 -3.02539348201e-09 5.02474787482e-07 -2.27053228952e-09 5.01702893827e-07 -9.79583743383e-10 5.00868956705e-07 4.11000641248e-10 5.00241405063e-07 2.04864532504e-09 4.99795179149e-07 3.75449808433e-09 4.99611644311e-07 5.48264452968e-09 4.99658236115e-07 7.12109888147e-09 4.99960895273e-07 8.63817152879e-09 5.00422532479e-07 9.9536878737e-09 5.01029230025e-07 1.10779690559e-08 5.01700728073e-07 1.19799539178e-08 5.0243796819e-07 1.26899173835e-08 5.03184940339e-07 1.31914138746e-08 5.03937021653e-07 1.35063235954e-08 5.04649389707e-07 1.36171633845e-08 5.05307317912e-07 1.35323665818e-08 5.05880631956e-07 1.32433798607e-08 5.06347100407e-07 1.27606613977e-08 5.06689568401e-07 1.20951618987e-08 5.06882459098e-07 1.12678964422e-08 5.06924434221e-07 1.03117620791e-08 5.06796917136e-07 9.25911633345e-09 5.06518866806e-07 8.15626989969e-09 5.06085671219e-07 7.0388006981e-09 5.05530756861e-07 5.95352447158e-09 5.04851664998e-07 4.92416330398e-09 5.04092648666e-07 3.975213486e-09 5.03265459799e-07 3.12087647042e-09 5.02410947848e-07 2.38319514174e-09 5.01528528106e-07 1.76754952425e-09 5.00634519839e-07 1.28118910157e-09 4.99724433539e-07 9.15341663046e-10 4.98815330509e-07 6.59815635806e-10 4.97907379097e-07 4.98867432389e-10 4.97012833519e-07 4.22179317332e-10 4.96125664827e-07 4.15429871539e-10 4.95251874325e-07 4.70412478731e-10 4.94381034417e-07 5.74983819062e-10 4.9351705032e-07 7.239537888e-10 4.92648042207e-07 9.07536326767e-10 4.91778781779e-07 1.12365879345e-09 4.90896320659e-07 1.36423221247e-09 4.90008692127e-07 1.62842183514e-09 4.89103119405e-07 1.91029035169e-09 4.88193131722e-07 2.20856668848e-09 4.87256591151e-07 2.51645628833e-09 4.8631413221e-07 2.8146465795e-09 4.85351154965e-07 3.11399575726e-09 4.84402081184e-07 3.40724805245e-09 4.83447682281e-07 3.71914215611e-09 4.82515113565e-07 4.04489726708e-09 4.81573980599e-07 4.40329978968e-09 4.80646773203e-07 4.77808804659e-09 4.79704945509e-07 5.18723875951e-09 4.7877107543e-07 5.60991732712e-09 4.77816658733e-07 6.06596010408e-09 4.76861698377e-07 6.53005641729e-09 4.75880500061e-07 7.0246822252e-09 4.74896529841e-07 7.52068761656e-09 4.7389317635e-07 8.0434650281e-09 4.72897793512e-07 8.55871863864e-09 4.71898416503e-07 9.09348946613e-09 4.70919574165e-07 9.60771713479e-09 4.69949542755e-07 1.01308056512e-08 4.69008502521e-07 1.06181104255e-08 4.68086115848e-07 1.1102256721e-08 4.67199322695e-07 1.15354555181e-08 4.66339057132e-07 1.19533275578e-08 4.65518138568e-07 1.23057284368e-08 4.64726906364e-07 1.26307048116e-08 4.63972824044e-07 1.28777103442e-08 4.63243896428e-07 1.30882616279e-08 4.62541737136e-07 1.32139241341e-08 4.61851549606e-07 1.33003250424e-08 4.6116978912e-07 1.33033225997e-08 4.60479210355e-07 1.32738410088e-08 4.59772087069e-07 1.31751189099e-08 4.59029351976e-07 1.30650139227e-08 4.58241002021e-07 1.2918195896e-08 4.57388560428e-07 1.28015682733e-08 4.56463818662e-07 1.27077926198e-08 4.55453633606e-07 1.27165029767e-08 4.54357208004e-07 1.28397813182e-08 4.53171439721e-07 1.31663253014e-08 4.51908897289e-07 1.37369086406e-08 4.50580303413e-07 1.46459998377e-08 4.49210801783e-07 1.59547455197e-08 4.4781898123e-07 1.77377643822e-08 4.46436762457e-07 2.00462043322e-08 4.45084161511e-07 2.28167983871e-08 4.43822507919e-07 2.61360767289e-08 4.42728996371e-07 2.99372435476e-08 4.41909345816e-07 3.41865551693e-08 4.41394939541e-07 3.87377491207e-08 4.41077887473e-07 4.33004787714e-08 4.74242592407e-08 4.40987195445e-07 1.9047215782e-07 -1.0821714221e-06 3.60561695226e-07 -1.34796523363e-06 3.39542575851e-07 -4.01702629049e-07 2.77503833631e-07 -2.43750454052e-07 2.62022313542e-07 -2.8284765143e-07 2.5475524475e-07 -2.59661759378e-07 2.58068501884e-07 -2.5741681935e-07 2.66711707947e-07 -2.43459387431e-07 2.77723413931e-07 -2.30244896285e-07 2.89544757318e-07 -2.17048593853e-07 3.01872709089e-07 -2.04118725672e-07 3.13823173824e-07 -1.92191030721e-07 3.25735568135e-07 -1.8123546256e-07 3.36993043482e-07 -1.71263726169e-07 3.48049795337e-07 -1.62191324401e-07 3.58396459344e-07 -1.53956038614e-07 3.68478786404e-07 -1.46447415041e-07 3.77854380824e-07 -1.39599331628e-07 3.86929928241e-07 -1.33313515209e-07 3.95304894162e-07 -1.27538991749e-07 4.03356105971e-07 -1.22191994013e-07 4.10737317792e-07 -1.17239852037e-07 4.17768554249e-07 -1.12612821869e-07 4.24162706563e-07 -1.0828463312e-07 4.30211410285e-07 -1.04190103964e-07 4.35657278232e-07 -1.00306227543e-07 4.40768770494e-07 -9.66028086578e-08 4.453466462e-07 -9.30667747239e-08 4.49622905909e-07 -8.96762457067e-08 4.534321653e-07 -8.64150010647e-08 4.56968530433e-07 -8.32641340857e-08 4.60097874869e-07 -8.02080748085e-08 4.62977713871e-07 -7.72359998652e-08 4.6550385383e-07 -7.43342891878e-08 4.67808312697e-07 -7.15018883611e-08 4.6981597272e-07 -6.87286138882e-08 4.71630352606e-07 -6.60237847704e-08 4.73195950166e-07 -6.33869381931e-08 4.74612517057e-07 -6.07955075983e-08 4.75807395226e-07 -5.83108016526e-08 4.76879963991e-07 -5.58807442721e-08 4.77765241123e-07 -5.35738653398e-08 4.78534390654e-07 -5.13349056701e-08 4.79126081162e-07 -4.92168138248e-08 4.79588262029e-07 -4.71647953525e-08 4.7986234162e-07 -4.52166045083e-08 4.79979927328e-07 -4.33172267474e-08 4.79888245498e-07 -4.14922832218e-08 4.79614208242e-07 -3.96878711006e-08 4.79119270645e-07 -3.79199553233e-08 4.78429192098e-07 -3.61420656415e-08 4.77562669855e-07 -3.4338170222e-08 4.7651670637e-07 -3.25077906035e-08 4.75374927913e-07 -3.06159582038e-08 4.7415365585e-07 -2.87066785088e-08 4.72945216887e-07 -2.67568227128e-08 4.71752224009e-07 -2.48217071291e-08 4.70632217393e-07 -2.29002705374e-08 4.69553839467e-07 -2.10292837572e-08 4.68536651041e-07 -1.91788591865e-08 4.67568032167e-07 -1.73746374363e-08 4.66680795516e-07 -1.56245113756e-08 4.65873033374e-07 -1.39725845703e-08 4.65150941462e-07 -1.24301731061e-08 4.64541747014e-07 -1.10237947083e-08 4.64031703222e-07 -9.77647215596e-09 4.63660983266e-07 -8.67640163848e-09 4.63394649278e-07 -7.73323571044e-09 4.63255713116e-07 -6.91748550124e-09 4.63205631145e-07 -6.22155016189e-09 4.63263166512e-07 -5.61219844849e-09 4.63406781495e-07 -5.08818266954e-09 4.63662226869e-07 -4.63427184833e-09 4.64040042718e-07 -4.25760749463e-09 4.64479155862e-07 -3.99013476201e-09 4.65062920763e-07 -3.75158738118e-09 4.65650340036e-07 -3.66634865931e-09 4.66237522409e-07 -3.6397324841e-09 4.6675314128e-07 -3.66109826553e-09 4.67129973478e-07 -3.68188919809e-09 4.67305365349e-07 -3.63960434376e-09 4.67250268442e-07 -3.4592477977e-09 4.66987658093e-07 -3.07464966969e-09 4.66510481671e-07 -2.45550165715e-09 4.66062837055e-07 -1.49659134878e-09 4.65446800826e-07 -4.65507953495e-10 4.65048248985e-07 9.06497781435e-10 4.64796809056e-07 2.32531231261e-09 4.64732363932e-07 3.76963117744e-09 4.64840966447e-07 5.20576235633e-09 4.65142581433e-07 6.58174496183e-09 4.65609318294e-07 7.85856797023e-09 4.66221937805e-07 8.99209270241e-09 4.66940575193e-07 9.97233954934e-09 4.67742021209e-07 1.07793668689e-08 4.68598227816e-07 1.14226429362e-08 4.69485885997e-07 1.18901537517e-08 4.70378553245e-07 1.21894374308e-08 4.71249275394e-07 1.23079336048e-08 4.72075403345e-07 1.22483417947e-08 4.728340586e-07 1.20084907702e-08 4.73507919034e-07 1.1595510758e-08 4.74079822543e-07 1.10237689611e-08 4.74537411901e-07 1.0308328664e-08 4.74872058141e-07 9.48124412122e-09 4.75078962502e-07 8.56430570283e-09 4.75163021073e-07 7.60227594394e-09 4.75128676861e-07 6.61769218572e-09 4.74989122947e-07 5.65820204756e-09 4.74745790961e-07 4.72417991047e-09 4.74432666095e-07 3.85901040573e-09 4.74065478659e-07 3.06239307157e-09 4.73670375296e-07 2.37485013459e-09 4.73248355632e-07 1.79322631103e-09 4.72805054645e-07 1.33373639155e-09 4.72340416582e-07 9.80645369698e-10 4.71865797657e-07 7.30050422406e-10 4.7138553947e-07 5.64365927986e-10 4.70907447474e-07 4.798246397e-10 4.70430616729e-07 4.60558173746e-10 4.69957724022e-07 5.03692105636e-10 4.6948401906e-07 5.94821757831e-10 4.69010241254e-07 7.33350762076e-10 4.68530240112e-07 9.06083824247e-10 4.68045046232e-07 1.11587960795e-09 4.67546996584e-07 1.34810412879e-09 4.67040896083e-07 1.61087307995e-09 4.66518088452e-07 1.88487347677e-09 4.6598853054e-07 2.18516101985e-09 4.65426795361e-07 2.46469769488e-09 4.64865710267e-07 2.75868194376e-09 4.64284337786e-07 3.0163056129e-09 4.6372828696e-07 3.30938614608e-09 4.63167521774e-07 3.58421169647e-09 4.62637040952e-07 3.91869886366e-09 4.62094577922e-07 4.24328659763e-09 4.61574997249e-07 4.63095259906e-09 4.61036462762e-07 5.00582152532e-09 4.605160051e-07 5.44306236935e-09 4.59969601175e-07 5.86311605776e-09 4.59434285007e-07 6.34290704901e-09 4.58866701678e-07 6.80008466048e-09 4.58309435406e-07 7.31284416731e-09 4.57725313439e-07 7.79646215826e-09 4.57162521506e-07 8.32846137731e-09 4.56586026943e-07 8.82115039272e-09 4.56043296198e-07 9.35052212076e-09 4.55497381248e-07 9.82759391167e-09 4.54993250981e-07 1.03272712631e-08 4.54493497869e-07 1.07618865069e-08 4.54040994544e-07 1.12053938869e-08 4.53598397032e-07 1.1572748639e-08 4.53205170605e-07 1.19361707705e-08 4.52823292085e-07 1.22138706718e-08 4.52487372897e-07 1.2476973528e-08 4.52157760777e-07 1.26488646557e-08 4.51863343331e-07 1.28010016398e-08 4.51562980252e-07 1.28632108305e-08 4.51280185331e-07 1.2908289624e-08 4.50973305581e-07 1.28743117135e-08 4.50661006901e-07 1.28371001676e-08 4.50302323294e-07 1.27456309093e-08 4.49912342061e-07 1.26805969991e-08 4.4945382622e-07 1.26052866663e-08 4.48941376462e-07 1.26090600152e-08 4.48346678099e-07 1.26756673688e-08 4.4768763734e-07 1.29007594753e-08 4.4694986756e-07 1.32892641527e-08 4.46158133277e-07 1.39449319219e-08 4.45316248245e-07 1.48972244619e-08 4.44452361801e-07 1.62459736329e-08 4.43582903063e-07 1.80294621873e-08 4.42733007336e-07 2.03071510214e-08 4.41927673783e-07 2.30214477402e-08 4.41212487608e-07 2.62225819447e-08 4.40670494956e-07 2.98690228866e-08 4.40376596064e-07 3.38853839263e-08 4.4035546612e-07 3.81590779144e-08 4.40485353403e-07 4.23988562286e-08 4.6068041686e-08 4.40764380587e-07 2.82255838341e-07 -1.37003974533e-06 4.12819456366e-07 -1.48146671107e-06 3.73221997424e-07 -3.6376602177e-07 2.68162279093e-07 -1.40236044346e-07 2.40732780104e-07 -2.56669368954e-07 2.29878827597e-07 -2.50177760648e-07 2.30315669652e-07 -2.5910872811e-07 2.38263704381e-07 -2.52822412676e-07 2.48594579251e-07 -2.41828025862e-07 2.59839874134e-07 -2.29691790614e-07 2.71421898159e-07 -2.16886210148e-07 2.82658567065e-07 -2.04693386451e-07 2.93695988195e-07 -1.93286560676e-07 3.04154901323e-07 -1.82784571838e-07 3.14313056641e-07 -1.7315861098e-07 3.23869771732e-07 -1.64363900634e-07 3.33105235539e-07 -1.56306449049e-07 3.41751475203e-07 -1.48917112185e-07 3.5006126841e-07 -1.42110693368e-07 3.57801479691e-07 -1.35821911167e-07 3.65190786212e-07 -1.2999096381e-07 3.72036268106e-07 -1.24557180529e-07 3.78521898865e-07 -1.19479510331e-07 3.84479856619e-07 -1.14712771888e-07 3.90095966954e-07 -1.10138012842e-07 3.95171483429e-07 -1.05846753963e-07 3.99931468329e-07 -1.01692840388e-07 4.0421906505e-07 -9.77940182889e-08 4.0823717192e-07 -9.39990502497e-08 4.11843276224e-07 -9.04154221945e-08 4.15210443591e-07 -8.68980876757e-08 4.18211573226e-07 -8.35543614253e-08 4.21000524269e-07 -8.0251817851e-08 4.23466948388e-07 -7.70978476603e-08 4.2575078072e-07 -7.39739031199e-08 4.27759746768e-07 -7.09820953848e-08 4.29598863134e-07 -6.80370259053e-08 4.31271739856e-07 -6.51727698417e-08 4.32725274358e-07 -6.24193839409e-08 4.34070324439e-07 -5.97078266436e-08 4.35211369362e-07 -5.71469517078e-08 4.36262573634e-07 -5.4640714034e-08 4.37124370438e-07 -5.22757371831e-08 4.37884045541e-07 -4.9965897917e-08 4.38449715824e-07 -4.77780345105e-08 4.38889928261e-07 -4.56324556919e-08 4.39124080359e-07 -4.35799272319e-08 4.39210229359e-07 -4.15483860787e-08 4.39084125959e-07 -3.95771510304e-08 4.38799285749e-07 -3.76080793534e-08 4.38340848974e-07 -3.56585735613e-08 4.37709709938e-07 -3.36985771604e-08 4.36960562791e-07 -3.1722881652e-08 4.3609005277e-07 -2.97576073292e-08 4.35189054672e-07 -2.7785741731e-08 4.34261412307e-07 -2.58383317002e-08 4.33380830014e-07 -2.39153726402e-08 4.32526657862e-07 -2.20444696628e-08 4.31738012538e-07 -2.02091329749e-08 4.30987250514e-07 -1.84185761792e-08 4.30322883513e-07 -1.66754405916e-08 4.29733000507e-07 -1.50158490465e-08 4.29251958062e-07 -1.3451301096e-08 4.28874344961e-07 -1.20220399158e-08 4.28615197917e-07 -1.07276028857e-08 4.2847024695e-07 -9.58664243008e-09 4.2843689994e-07 -8.59848750903e-09 4.28509879942e-07 -7.7503794176e-09 4.28674364037e-07 -7.02593794754e-09 4.28921909242e-07 -6.40511096705e-09 4.29244474416e-07 -5.8739436215e-09 4.29643708308e-07 -5.42032482016e-09 4.30116438658e-07 -5.04181801575e-09 4.30643926875e-07 -4.73673322225e-09 4.31265552178e-07 -4.4749387977e-09 4.31849401032e-07 -4.34152205743e-09 4.3245217224e-07 -4.20262180679e-09 4.32993093533e-07 -4.12282460777e-09 4.3343677206e-07 -4.0480363187e-09 4.33746882302e-07 -3.93592459743e-09 4.33902416671e-07 -3.73974802414e-09 4.33906546596e-07 -3.41186794533e-09 4.33790847959e-07 -2.91205950746e-09 4.33632988107e-07 -2.21417290165e-09 4.33371497359e-07 -1.37848269357e-09 4.33263000502e-07 -2.47071287299e-10 4.33196785053e-07 8.67223853962e-10 4.33285678943e-07 2.08185988262e-09 4.33540205638e-07 3.32738883035e-09 4.33923709521e-07 4.54109366777e-09 4.34458864912e-07 5.72035401298e-09 4.3511360419e-07 6.80835474491e-09 4.35895934671e-07 7.80068187436e-09 4.36764830595e-07 8.65993579672e-09 4.37720319723e-07 9.39289440069e-09 4.38723447737e-07 9.97718390337e-09 4.39766370254e-07 1.04214865382e-08 4.40813064275e-07 1.07071439135e-08 4.41847797161e-07 1.08376103295e-08 4.42845014382e-07 1.08024833247e-08 4.43787174196e-07 1.06086364362e-08 4.44661252878e-07 1.02591986619e-08 4.45449510283e-07 9.7675498143e-09 4.4614963209e-07 9.15060364598e-09 4.46745351597e-07 8.42932309068e-09 4.47245143426e-07 7.63115912805e-09 4.47638763817e-07 6.78303232412e-09 4.47943785373e-07 5.91708515192e-09 4.4814634419e-07 5.05570674618e-09 4.48273023034e-07 4.21146464049e-09 4.48330851268e-07 3.40837306254e-09 4.48356408854e-07 2.6759983661e-09 4.4834789543e-07 2.03267327304e-09 4.48317975625e-07 1.49795998457e-09 4.48255645549e-07 1.06916056158e-09 4.48171899965e-07 7.39170920711e-10 4.48067636838e-07 4.972461377e-10 4.4795611891e-07 3.36705755254e-10 4.47836522808e-07 2.48172773643e-10 4.47716985673e-07 2.25405276214e-10 4.47592455192e-07 2.59478688444e-10 4.47467758006e-07 3.45046926003e-10 4.47335612363e-07 4.74257747578e-10 4.47200167809e-07 6.43261727793e-10 4.47052344309e-07 8.45701237686e-10 4.46897495846e-07 1.07696440614e-09 4.4672628118e-07 1.33392356136e-09 4.46548310981e-07 1.60839486386e-09 4.4634422372e-07 1.8980113177e-09 4.46127287197e-07 2.16242516756e-09 4.4589079069e-07 2.42588908961e-09 4.4566736912e-07 2.66524299409e-09 4.45447376905e-07 2.92680330531e-09 4.45257013606e-07 3.19654240637e-09 4.45069571829e-07 3.51034066393e-09 4.44902647671e-07 3.83648576555e-09 4.44730616094e-07 4.20729976891e-09 4.44572947259e-07 4.58588134914e-09 4.44405473773e-07 5.00729962066e-09 4.44245572069e-07 5.43074622552e-09 4.4406914946e-07 5.89409787821e-09 4.43893737427e-07 6.35277770105e-09 4.43701353876e-07 6.84806513497e-09 4.43514175738e-07 7.33097882921e-09 4.43320838815e-07 7.84457234712e-09 4.43143914368e-07 8.33403798708e-09 4.42972995732e-07 8.84375605484e-09 4.42826521533e-07 9.31422191968e-09 4.42693915785e-07 9.79243465491e-09 4.42590232563e-07 1.02168793208e-08 4.42505710791e-07 1.06382371441e-08 4.42452139037e-07 1.09943607969e-08 4.42419835879e-07 1.13384046383e-08 4.42416822449e-07 1.16083426198e-08 4.42432383942e-07 1.18595251217e-08 4.42470157474e-07 1.20323306404e-08 4.42517619215e-07 1.21848739379e-08 4.42574431706e-07 1.22617647407e-08 4.42626624889e-07 1.23237452976e-08 4.42670904295e-07 1.2322036814e-08 4.42692348067e-07 1.23207963352e-08 4.4268576408e-07 1.22811140953e-08 4.42636494197e-07 1.22711118056e-08 4.42539905093e-07 1.22653329562e-08 4.42384644641e-07 1.2338461259e-08 4.42170809897e-07 1.24844574069e-08 4.41894248541e-07 1.2781516995e-08 4.41563471683e-07 1.32435927403e-08 4.41185245763e-07 1.39523413358e-08 4.40778954196e-07 1.49461244513e-08 4.40359072899e-07 1.63007467067e-08 4.39949406968e-07 1.80668533326e-08 4.39567585299e-07 2.0276947802e-08 4.39239380299e-07 2.28985971769e-08 4.39007183249e-07 2.59430210754e-08 4.38944781999e-07 2.93932745793e-08 4.39111772707e-07 3.31509820825e-08 4.39523674649e-07 3.71304370337e-08 4.40023370596e-07 4.10393525756e-08 4.43300147725e-08 4.40637516086e-07 1.74558433363e-07 -1.54978675327e-06 3.92521690207e-07 -1.703505626e-06 3.72554117372e-07 -3.4571404844e-07 2.43780688389e-07 -1.30289949726e-08 2.08288035116e-07 -2.2249967616e-07 2.00576409762e-07 -2.43822546283e-07 2.00649468116e-07 -2.60457590995e-07 2.09489528733e-07 -2.63044752168e-07 2.203652527e-07 -2.53924864796e-07 2.31774234775e-07 -2.4244636632e-07 2.43142909875e-07 -2.29401570934e-07 2.53954076158e-07 -2.16730654511e-07 2.64375693987e-07 -2.04694104754e-07 2.74177310429e-07 -1.93620836238e-07 2.83612667644e-07 -1.83381952595e-07 2.92477328035e-07 -1.74068885744e-07 3.01008964675e-07 -1.65446845171e-07 3.08998977327e-07 -1.57589786405e-07 3.16673131455e-07 -1.50254798963e-07 3.23820510412e-07 -1.43538987082e-07 3.30663531509e-07 -1.37212598362e-07 3.37002757996e-07 -1.31385428687e-07 3.43010024206e-07 -1.25868245546e-07 3.48667846189e-07 -1.20615878418e-07 3.53806786524e-07 -1.15708654006e-07 3.5864784852e-07 -1.1092600211e-07 3.62992972412e-07 -1.06486713482e-07 3.67116378721e-07 -1.02155227789e-07 3.70815332882e-07 -9.81150550914e-08 3.7433414888e-07 -9.41392149755e-08 3.77467277282e-07 -9.0404601674e-08 3.80444398192e-07 -8.67052525185e-08 3.83073242424e-07 -8.32111660317e-08 3.85569047205e-07 -7.97395828911e-08 3.87762184489e-07 -7.64469149499e-08 3.89830114779e-07 -7.3185749754e-08 3.91712267927e-07 -7.00637133341e-08 3.93408234188e-07 -6.70204415098e-08 3.95000414938e-07 -6.40582448592e-08 3.963695557e-07 -6.1234429933e-08 3.97669533698e-07 -5.84830638588e-08 3.98776364767e-07 -5.58616903334e-08 3.9980227638e-07 -5.33127018743e-08 4.00637342988e-07 -5.08778669922e-08 4.01366953803e-07 -4.85027334873e-08 4.01899494167e-07 -4.62168834321e-08 4.02303486507e-07 -4.39707997427e-08 4.0250819256e-07 -4.17872888025e-08 4.02575863316e-07 -3.96259069746e-08 4.02460102727e-07 -3.75033771475e-08 4.02205720009e-07 -3.53854365182e-08 4.01808751429e-07 -3.329043635e-08 4.01291374417e-07 -3.12152087388e-08 4.00688359903e-07 -2.91690751054e-08 4.00045936963e-07 -2.71637700276e-08 3.99406302826e-07 -2.52074159641e-08 3.9879347003e-07 -2.33100229765e-08 3.98218952543e-07 -2.14654437537e-08 3.97690225877e-07 -1.96755846657e-08 3.97224932289e-07 -1.79385695256e-08 3.96838919705e-07 -1.62747324007e-08 3.96550058426e-07 -1.47038759376e-08 3.96363613378e-07 -1.32488737249e-08 3.96291031733e-07 -1.19127994882e-08 3.96319723982e-07 -1.07331286843e-08 3.96457681663e-07 -9.69948109093e-09 3.96695810231e-07 -8.80752239384e-09 3.97021071836e-07 -8.04437059532e-09 3.97422806052e-07 -7.39340336951e-09 3.97890649478e-07 -6.8388067554e-09 3.98418009468e-07 -6.3668326923e-09 3.98997267002e-07 -5.9682278254e-09 3.99622187907e-07 -5.63383950498e-09 4.00289807779e-07 -5.35599362921e-09 4.00936673772e-07 -5.15151668432e-09 4.01620269866e-07 -4.93430369027e-09 4.02234630254e-07 -4.81154747128e-09 4.0279321018e-07 -4.67473674015e-09 4.03266340911e-07 -4.51852043433e-09 4.03640209142e-07 -4.31252869369e-09 4.03914339799e-07 -4.02393761334e-09 4.04104925467e-07 -3.62254180112e-09 4.04243086065e-07 -3.08625686274e-09 4.0435030052e-07 -2.40739323632e-09 4.04524454865e-07 -1.55072253483e-09 4.04658049597e-07 -6.79599005488e-10 4.04936372678e-07 4.07414035568e-10 4.05330136052e-07 1.47606953624e-09 4.05843291149e-07 2.54945399275e-09 4.06471922583e-07 3.60151368618e-09 4.07208134517e-07 4.61503771421e-09 4.08052019641e-07 5.56249289911e-09 4.08994381916e-07 6.43220440642e-09 4.10022068076e-07 7.19952704177e-09 4.11120549572e-07 7.8635364338e-09 4.12269047823e-07 8.40344091533e-09 4.13448695112e-07 8.82032209762e-09 4.1463583937e-07 9.09572584228e-09 4.15811666442e-07 9.22893394093e-09 4.1695729565e-07 9.21307785804e-09 4.18057618642e-07 9.05103133918e-09 4.19101059154e-07 8.75091393076e-09 4.20075969515e-07 8.31943363358e-09 4.20977424902e-07 7.77899091944e-09 4.21796252884e-07 7.13913507428e-09 4.22535770959e-07 6.43482909367e-09 4.23190663062e-07 5.67670540692e-09 4.2376926721e-07 4.90693170493e-09 4.24256923729e-07 4.11421443761e-09 4.24683409675e-07 3.34349295627e-09 4.2505840626e-07 2.59401871849e-09 4.2540891531e-07 1.92057603333e-09 4.25733241518e-07 1.32555927779e-09 4.2603226789e-07 8.35969236279e-10 4.26297605685e-07 4.3672043988e-10 4.26537373593e-07 1.27818041679e-10 4.2675513526e-07 -1.05543425668e-10 4.26961240972e-07 -2.62205415482e-10 4.27157270129e-07 -3.54539166006e-10 4.27349243786e-07 -3.82271085737e-10 4.27534802764e-07 -3.57632108895e-10 4.27717254055e-07 -2.80042091345e-10 4.27891974654e-07 -1.61684312747e-10 4.28061738944e-07 2.7610107522e-13 4.2821906362e-07 1.91344562602e-10 4.2836957976e-07 4.19078788649e-10 4.28503026382e-07 6.62963465206e-10 4.28631012502e-07 9.37219574711e-10 4.28720832051e-07 1.18470626247e-09 4.2881007059e-07 1.44010712926e-09 4.28874702575e-07 1.64298119737e-09 4.28971279708e-07 1.87932651921e-09 4.2906849866e-07 2.08924436302e-09 4.29209190998e-07 2.36997580822e-09 4.29344079587e-07 2.6381725704e-09 4.29512760941e-07 2.98085073103e-09 4.29666986366e-07 3.30574463032e-09 4.29850262976e-07 3.70243483566e-09 4.30013836397e-07 4.07572049966e-09 4.30200729729e-07 4.51798416428e-09 4.30360518307e-07 4.93105858892e-09 4.30538154705e-07 5.40944212949e-09 4.30687145848e-07 5.85291040156e-09 4.30858265265e-07 6.3565043404e-09 4.31009547256e-07 6.81698352771e-09 4.31193529885e-07 7.32783567472e-09 4.31367728675e-07 7.7832334813e-09 4.31581920824e-07 8.27527547122e-09 4.31792411534e-07 8.69858614461e-09 4.32046360504e-07 9.14522025068e-09 4.32300128924e-07 9.513169329e-09 4.32597691414e-07 9.89392387881e-09 4.32895658779e-07 1.01894203074e-08 4.33234118305e-07 1.04895237972e-08 4.33569733805e-07 1.07010725348e-08 4.33937909108e-07 1.09130640029e-08 4.34295248225e-07 1.10389473519e-08 4.34672480554e-07 1.11672234287e-08 4.35027106455e-07 1.12190301325e-08 4.35385713347e-07 1.12830673642e-08 4.35707727588e-07 1.12903061955e-08 4.36016046721e-07 1.13308876751e-08 4.36273599272e-07 1.13478425119e-08 4.36501018293e-07 1.14337036352e-08 4.36668079363e-07 1.15484882216e-08 4.36796091575e-07 1.1789341865e-08 4.36865933628e-07 1.21342253945e-08 4.36901386224e-07 1.26800320343e-08 4.36898288375e-07 1.34274382585e-08 4.36883280145e-07 1.44698458364e-08 4.36865205033e-07 1.58327354006e-08 4.36866024614e-07 1.75883689174e-08 4.36905398793e-07 1.975559393e-08 4.36999934359e-07 2.22923820923e-08 4.3720031089e-07 2.52260933313e-08 4.37559485773e-07 2.84895043017e-08 4.38136113377e-07 3.20491225577e-08 4.38929121477e-07 3.57656776477e-08 4.39745874576e-07 3.93271745299e-08 4.2257804368e-08 4.40650251217e-07 1.84675242342e-07 -1.74002152528e-06 3.75701719274e-07 -1.90066630984e-06 3.43596111162e-07 -3.15872477334e-07 2.04449585555e-07 1.24376744562e-07 1.61170699911e-07 -1.80616463691e-07 1.64926346522e-07 -2.48997262472e-07 1.69343056193e-07 -2.6616269518e-07 1.81330776301e-07 -2.76093959799e-07 1.93860050543e-07 -2.67713674599e-07 2.0602097102e-07 -2.55653009938e-07 2.17285591715e-07 -2.41868504651e-07 2.27861425438e-07 -2.28250025654e-07 2.37653285775e-07 -2.15533513174e-07 2.46977358157e-07 -2.03692462927e-07 2.55683724199e-07 -1.92952121088e-07 2.64053238602e-07 -1.82994016691e-07 2.71867484259e-07 -1.73966598394e-07 2.7940174323e-07 -1.65526685245e-07 2.86402781406e-07 -1.57840366453e-07 2.93147849525e-07 -1.50581870705e-07 2.99389128462e-07 -1.43933684585e-07 3.0536308888e-07 -1.37609680732e-07 3.11032941516e-07 -1.31697799005e-07 3.16217033903e-07 -1.26132586161e-07 3.211719878e-07 -1.20742531281e-07 3.25549423552e-07 -1.15718190851e-07 3.29748502931e-07 -1.10875212352e-07 3.33502448693e-07 -1.06330401177e-07 3.37130912393e-07 -1.01921152879e-07 3.40369031165e-07 -9.7753424683e-08 3.43489939164e-07 -9.3683224227e-08 3.46261591606e-07 -8.98125547332e-08 3.48924261361e-07 -8.601828903e-08 3.51285457227e-07 -8.23952938766e-08 3.53547499621e-07 -7.88416713648e-08 3.55574598494e-07 -7.54363129372e-08 3.57502278851e-07 -7.21071299628e-08 3.59269181409e-07 -6.89104580782e-08 3.60887542773e-07 -6.58106846257e-08 3.62367628791e-07 -6.28233135855e-08 3.63717884921e-07 -5.99452200961e-08 3.64947094674e-07 -5.71663670755e-08 3.66043279252e-07 -5.44846792669e-08 3.67005981367e-07 -5.18877947891e-08 3.67822117035e-07 -4.93695610432e-08 3.68490924224e-07 -4.69154299514e-08 3.69003887979e-07 -4.45185750465e-08 3.69365785506e-07 -4.21664065115e-08 3.69572330414e-07 -3.98556149232e-08 3.6964040267e-07 -3.7575053291e-08 3.69574497396e-07 -3.53287209974e-08 3.69385833856e-07 -3.31156718063e-08 3.69091877991e-07 -3.09557393253e-08 3.68732687218e-07 -2.88554868397e-08 3.68352218498e-07 -2.68214038874e-08 3.67981116669e-07 -2.48672517678e-08 3.67639021496e-07 -2.29875849811e-08 3.67334672325e-07 -2.11733407327e-08 3.67079006994e-07 -1.9423431026e-08 3.66890680687e-07 -1.77484309701e-08 3.66787381067e-07 -1.61638281483e-08 3.66776341895e-07 -1.4684167841e-08 3.66869161111e-07 -1.33186049734e-08 3.67054536933e-07 -1.20979646917e-08 3.67345876522e-07 -1.10055641379e-08 3.67724850762e-07 -1.00599733541e-08 3.68185840569e-07 -9.24921648458e-09 3.68719019829e-07 -8.55707867613e-09 3.69312563118e-07 -7.96729032331e-09 3.69957643957e-07 -7.46543178006e-09 3.70645587148e-07 -7.03947787266e-09 3.71368501538e-07 -6.6785363875e-09 3.721156585e-07 -6.37365464585e-09 3.72868276893e-07 -6.11665613025e-09 3.73640613224e-07 -5.87980876987e-09 3.74348986972e-07 -5.71954095818e-09 3.75044834661e-07 -5.51142713605e-09 3.75682745112e-07 -5.32430996227e-09 3.76258133848e-07 -5.11071673011e-09 3.76768258514e-07 -4.84619650929e-09 3.77221510999e-07 -4.50879377431e-09 3.7763427781e-07 -4.07940669895e-09 3.78031731757e-07 -3.54291700099e-09 3.78443646463e-07 -2.8923942828e-09 3.78837288924e-07 -2.16342784401e-09 3.79337541101e-07 -1.24866816372e-09 3.79849274521e-07 -3.90341673423e-10 3.80480383715e-07 5.54980615858e-10 3.81207077896e-07 1.4916031936e-09 3.82032689203e-07 2.41730373397e-09 3.82943389565e-07 3.29938097478e-09 3.83949419265e-07 4.13876889272e-09 3.85035885424e-07 4.90918710255e-09 3.86202793162e-07 5.60860517548e-09 3.8742601842e-07 6.214421815e-09 3.8869728533e-07 6.72449925307e-09 3.89990919339e-07 7.11718290526e-09 3.91293932215e-07 7.38929841079e-09 3.92586514965e-07 7.5268047144e-09 3.93854536117e-07 7.53203131825e-09 3.9508700945e-07 7.40255693014e-09 3.96270821423e-07 7.14739906813e-09 3.97403123453e-07 6.77464173028e-09 3.98471335947e-07 6.29948683971e-09 3.99479190447e-07 5.73752336609e-09 4.00416684111e-07 5.11050384469e-09 4.0129319392e-07 4.4387327676e-09 4.02091670565e-07 3.74267714854e-09 4.02825261586e-07 3.01947434333e-09 4.03500743545e-07 2.29859756298e-09 4.04151572469e-07 1.61154403493e-09 4.04777351938e-07 9.85226413281e-10 4.05387550299e-07 4.48762304041e-10 4.05965064991e-07 1.73898477058e-12 4.06512969771e-07 -3.62906014652e-10 4.07030424949e-07 -6.53330882987e-10 4.0752940719e-07 -8.73045582013e-10 4.08012016949e-07 -1.0267041087e-09 4.08487221622e-07 -1.11742430672e-09 4.08953670773e-07 -1.15057546825e-09 4.0941672339e-07 -1.13001042548e-09 4.09872411384e-07 -1.06137280073e-09 4.10324540418e-07 -9.48385368564e-10 4.1076692246e-07 -7.95779073888e-10 4.11203072051e-07 -6.09699044852e-10 4.1162592155e-07 -3.90933853879e-10 4.12041511263e-07 -1.51960183176e-10 4.12432335784e-07 1.07956381333e-10 4.12802866882e-07 3.29058204795e-10 4.13152889996e-07 5.44945876935e-10 4.13513171093e-07 7.19158261811e-10 4.13884809066e-07 9.14783297592e-10 4.14294032203e-07 1.11656361109e-09 4.14718437566e-07 1.37191059549e-09 4.15170508329e-07 1.64107830276e-09 4.1562678848e-07 1.96234823048e-09 4.16103154509e-07 2.29038846121e-09 4.16579522938e-07 2.66613761694e-09 4.17071476752e-07 3.04264662685e-09 4.17557924941e-07 3.46304668688e-09 4.1805260761e-07 3.87798725898e-09 4.18536510371e-07 4.33304731081e-09 4.19026308145e-07 4.7766091488e-09 4.19509267224e-07 5.25592918849e-09 4.20005187231e-07 5.71542457103e-09 4.2050420275e-07 6.20202728691e-09 4.21023988825e-07 6.65609212317e-09 4.2155367151e-07 7.12456325979e-09 4.22107544499e-07 7.5465290778e-09 4.22674451676e-07 7.971312449e-09 4.23265827799e-07 8.33942931495e-09 4.23870318674e-07 8.70247562914e-09 4.24496554956e-07 9.00283701154e-09 4.25132844292e-07 9.2930318093e-09 4.25784987001e-07 9.51781876071e-09 4.26440557429e-07 9.7309637609e-09 4.27102611208e-07 9.88152155434e-09 4.27758210678e-07 1.00243250051e-08 4.28408604484e-07 1.01142884157e-08 4.29040868962e-07 1.02072640552e-08 4.29655160644e-07 1.02665511342e-08 4.30239072495e-07 1.03497582786e-08 4.30792629618e-07 1.04309044998e-08 4.31305253042e-07 1.05699559668e-08 4.31779104217e-07 1.07558181784e-08 4.32208531416e-07 1.10527692202e-08 4.3260081674e-07 1.14641264641e-08 4.32957927217e-07 1.20542150082e-08 4.33294443711e-07 1.28433166611e-08 4.336211616e-07 1.38938428664e-08 4.33956503623e-07 1.52478947322e-08 4.34314390612e-07 1.69512548066e-08 4.34716786962e-07 1.90335008339e-08 4.3518226356e-07 2.14399283748e-08 4.35755853463e-07 2.41984037192e-08 4.36491435557e-07 2.72327731761e-08 4.37430677132e-07 3.05439207108e-08 4.38557687384e-07 3.39368831424e-08 4.39665346315e-07 3.71949878846e-08 3.97265775024e-08 4.4079900954e-07 -1.24520196031e-07 -1.62149731696e-06 4.91501248817e-08 -2.08088890478e-06 2.11129124726e-07 -4.80697567813e-07 1.35045631853e-07 1.98828187542e-07 9.90241981798e-08 -1.46126885277e-07 1.2486804836e-07 -2.75999077635e-07 1.40150219104e-07 -2.82307574955e-07 1.56339128531e-07 -2.93497673269e-07 1.70920091387e-07 -2.83109380213e-07 1.83260202317e-07 -2.69172992558e-07 1.94389864881e-07 -2.53890287379e-07 2.04316373657e-07 -2.39266768234e-07 2.13668330478e-07 -2.25604434023e-07 2.22264601457e-07 -2.13180071532e-07 2.30548222038e-07 -2.0175507741e-07 2.38219525202e-07 -1.91377894747e-07 2.45653664941e-07 -1.81765969778e-07 2.52528822989e-07 -1.72979359344e-07 2.59190587726e-07 -1.64762457345e-07 2.65332805684e-07 -1.57197563153e-07 2.71272839197e-07 -1.50061239605e-07 2.76808807372e-07 -1.43431259369e-07 2.82084065513e-07 -1.3716096098e-07 2.87060116789e-07 -1.31184767504e-07 2.91586101141e-07 -1.25570729073e-07 2.95758783629e-07 -1.20215831554e-07 2.99627006914e-07 -1.15129406221e-07 3.0324840119e-07 -1.10277319121e-07 3.06629964586e-07 -1.05644845073e-07 3.0979521028e-07 -1.01196830897e-07 3.12738575503e-07 -9.69251909822e-08 3.15483853833e-07 -9.28033722421e-08 3.18031076699e-07 -8.88309288344e-08 3.20407000369e-07 -8.49875752477e-08 3.22611620917e-07 -8.12763388087e-08 3.24678831434e-07 -7.76821157406e-08 3.26610573355e-07 -7.42167895459e-08 3.28421557281e-07 -7.08470737115e-08 3.30081315797e-07 -6.76213180804e-08 3.3161885913e-07 -6.45024550619e-08 3.33042796825e-07 -6.14857784402e-08 3.34344536477e-07 -5.85706538606e-08 3.3552411094e-07 -5.57465416542e-08 3.36570432651e-07 -5.30077822504e-08 3.37481821603e-07 -5.03411855556e-08 3.38250677028e-07 -4.77403255717e-08 3.38879072852e-07 -4.51932117627e-08 3.39366282254e-07 -4.26976038009e-08 3.39723305801e-07 -4.02463309975e-08 3.39954229615e-07 -3.78383933929e-08 3.40072455435e-07 -3.54779378221e-08 3.40088915421e-07 -3.31844797963e-08 3.40025387738e-07 -3.0943180668e-08 3.39911949228e-07 -2.87967661333e-08 3.39791556992e-07 -2.67509764166e-08 3.39692564407e-07 -2.48052899613e-08 3.39620669383e-07 -2.29408445074e-08 3.395878927e-07 -2.11541552921e-08 3.39608049391e-07 -1.94488505549e-08 3.39697850823e-07 -1.78352434372e-08 3.3986738305e-07 -1.63246362788e-08 3.4012621848e-07 -1.49270885409e-08 3.40468216113e-07 -1.36557226676e-08 3.40900739659e-07 -1.25051703209e-08 3.41407671946e-07 -1.15076062813e-08 3.41993930361e-07 -1.06401769381e-08 3.42648720374e-07 -9.89475476055e-09 3.43359774239e-07 -9.25771440036e-09 3.44117305722e-07 -8.71439626552e-09 3.4491253437e-07 -8.25132273167e-09 3.45737035986e-07 -7.85670275902e-09 3.46582080591e-07 -7.51961090109e-09 3.47438813538e-07 -7.22932431345e-09 3.48299886333e-07 -6.97492130743e-09 3.49130023401e-07 -6.75985864287e-09 3.4996751651e-07 -6.51674869891e-09 3.50748942014e-07 -6.33536875556e-09 3.51498452156e-07 -6.11769446762e-09 3.52206923622e-07 -5.86993646767e-09 3.52876709572e-07 -5.57627000186e-09 3.53517198775e-07 -5.22043696885e-09 3.54143324146e-07 -4.78997473553e-09 3.54771558728e-07 -4.27557697398e-09 3.55409084222e-07 -3.67648101366e-09 3.56096699807e-07 -2.97181175353e-09 3.56759124543e-07 -2.26217182098e-09 3.5750718593e-07 -1.3995964747e-09 3.58325167347e-07 -5.65407303339e-10 3.59229976067e-07 2.64430280847e-10 3.60210560847e-07 1.07518959389e-09 3.61270303877e-07 1.85575654225e-09 3.62409297926e-07 2.59999063169e-09 3.63622573174e-07 3.29278878828e-09 3.64902675169e-07 3.92915513493e-09 3.66233857211e-07 4.48687544558e-09 3.67602754929e-07 4.96065921726e-09 3.68992469151e-07 5.32819822474e-09 3.70389528012e-07 5.58438615195e-09 3.71780072172e-07 5.71796355461e-09 3.73151627252e-07 5.72786354831e-09 3.74495621458e-07 5.61712910395e-09 3.75801716788e-07 5.38777660408e-09 3.77066856889e-07 5.05577804914e-09 3.78281441278e-07 4.62412456279e-09 3.79448329254e-07 4.1206809134e-09 3.80558937087e-07 3.54885498962e-09 3.81619315549e-07 2.94490221773e-09 3.82606472528e-07 2.28843247096e-09 3.83545135888e-07 1.62097817729e-09 3.84443098888e-07 9.3975810795e-10 3.85328258973e-07 3.08354608135e-10 3.86199894697e-07 -2.67898055982e-10 3.87054390077e-07 -7.5386081723e-10 3.87876164104e-07 -1.16643517996e-09 3.88667778767e-07 -1.50472605342e-09 3.89430838871e-07 -1.78217751001e-09 3.90175459257e-07 -1.9938349993e-09 3.90904759696e-07 -2.14825720944e-09 3.91626059619e-07 -2.24190730474e-09 3.92339162498e-07 -2.28387302405e-09 3.93048490392e-07 -2.27201119068e-09 3.93751235117e-07 -2.21624178659e-09 3.94450709386e-07 -2.11347317927e-09 3.95140613596e-07 -1.97653532574e-09 3.95826248185e-07 -1.79850643127e-09 3.9649721151e-07 -1.59879588887e-09 3.97164323747e-07 -1.36531250409e-09 3.97790546911e-07 -1.16105958701e-09 3.98411514693e-07 -9.56678705595e-10 3.99004010576e-07 -8.18069293037e-10 3.99629532097e-07 -6.51811185018e-10 4.00263853967e-07 -5.18990920794e-10 4.00952009453e-07 -3.06090770478e-10 4.01645302825e-07 -1.04805466128e-10 4.02380410032e-07 1.81784210796e-10 4.03109241954e-07 4.48945994304e-10 4.03873736296e-07 7.95523467976e-10 4.0462815507e-07 1.11477246795e-09 4.05414663656e-07 1.50980089742e-09 4.06185483873e-07 1.87132570568e-09 4.06981740418e-07 2.30508147514e-09 4.07756662956e-07 2.69972487719e-09 4.08554765949e-07 3.16305433323e-09 4.09334172415e-07 3.58154608536e-09 4.10142817771e-07 4.062530686e-09 4.10940893384e-07 4.48927300081e-09 4.11774659093e-07 4.96727881308e-09 4.12603152558e-07 5.37843692503e-09 4.13469491199e-07 5.82789299082e-09 4.1433237558e-07 6.20017803498e-09 4.15231603559e-07 6.60091289073e-09 4.16126095582e-07 6.91909984178e-09 4.17052143576e-07 7.25947354425e-09 4.17969435821e-07 7.51546987619e-09 4.18910841462e-07 7.7898315309e-09 4.19837099143e-07 7.9818693831e-09 4.20777599795e-07 8.19274538657e-09 4.21694894051e-07 8.32902486398e-09 4.22615436527e-07 8.4902433512e-09 4.23504550959e-07 8.59184923719e-09 4.24385936138e-07 8.73239333665e-09 4.2522841011e-07 8.83861403035e-09 4.2605307143e-07 9.00840134433e-09 4.26833453525e-07 9.18256405225e-09 4.2758938776e-07 9.45956238177e-09 4.28302091387e-07 9.79880931875e-09 4.28991816277e-07 1.02949592001e-08 4.29650091628e-07 1.09256292332e-08 4.30298376295e-07 1.17770619917e-08 4.30940791873e-07 1.28490217504e-08 4.31595884672e-07 1.4220099645e-08 4.32276557903e-07 1.59060199743e-08 4.3300053816e-07 1.79336427691e-08 4.33793163095e-07 2.02618524069e-08 4.34691605278e-07 2.28717908843e-08 4.35758648841e-07 2.57319266555e-08 4.37013547958e-07 2.88215938104e-08 4.38446038465e-07 3.19266983951e-08 4.39797362442e-07 3.48046143676e-08 3.6873933193e-08 4.41149298659e-07 -9.69068661394e-08 -1.52781843132e-06 -2.07089819901e-07 -1.97517510849e-06 -5.82630747897e-08 -6.32067655855e-07 5.25120923721e-08 8.60046463197e-08 5.05150031494e-08 -1.45420862071e-07 9.32356606566e-08 -3.19856645143e-07 1.18648520318e-07 -3.08894886625e-07 1.37560269222e-07 -3.13148871453e-07 1.52357319802e-07 -2.99163567192e-07 1.64185114213e-07 -2.82238863907e-07 1.74424878921e-07 -2.65367221579e-07 1.83655340564e-07 -2.49571733682e-07 1.92209810893e-07 -2.35157112348e-07 2.00271543288e-07 -2.22064047516e-07 2.07894225658e-07 -2.10146913417e-07 2.15129033358e-07 -1.9923627719e-07 2.21976175172e-07 -1.89215108076e-07 2.28467410098e-07 -1.79954182662e-07 2.34596718792e-07 -1.71377718972e-07 2.40398622735e-07 -1.63384624481e-07 2.45879528398e-07 -1.5592783515e-07 2.51082036598e-07 -1.48926593627e-07 2.56059301539e-07 -1.42317308196e-07 2.60661219087e-07 -1.36114477286e-07 2.64920124794e-07 -1.30171600015e-07 2.68830671418e-07 -1.24547182423e-07 2.72483936041e-07 -1.19193978228e-07 2.75911204899e-07 -1.14098378321e-07 2.79142972515e-07 -1.09223439297e-07 2.82173024073e-07 -1.04555915624e-07 2.85018777841e-07 -1.00066946777e-07 2.87678265415e-07 -9.5750967122e-08 2.90173409193e-07 -9.15867739228e-08 2.92507064911e-07 -8.75739128887e-08 2.94701274925e-07 -8.36968846786e-08 2.96757905555e-07 -7.99551164008e-08 2.98710381332e-07 -7.63305386269e-08 3.00524993299e-07 -7.28623717439e-08 3.02231558284e-07 -6.94748616122e-08 3.03818212777e-07 -6.62178105092e-08 3.05293875056e-07 -6.30712030241e-08 3.06657742328e-07 -6.00236067354e-08 3.07902761955e-07 -5.70670671967e-08 3.0902484488e-07 -5.4191900706e-08 3.10019203608e-07 -5.13900883665e-08 3.10885262616e-07 -4.8652370862e-08 3.11624649668e-07 -4.5974391753e-08 3.12243007336e-07 -4.3351186455e-08 3.12747151164e-07 -4.07806741207e-08 3.13148866494e-07 -3.82684906443e-08 3.13459202313e-07 -3.58255566017e-08 3.13699680551e-07 -3.34357564239e-08 3.13859278802e-07 -3.11803876871e-08 3.13999707209e-07 -2.90164048361e-08 3.14147073251e-07 -2.69727685564e-08 3.14315964503e-07 -2.50332902465e-08 3.14515331638e-07 -2.31841924326e-08 3.14754176257e-07 -2.14249153137e-08 3.15045135638e-07 -1.97614352697e-08 3.15398456567e-07 -1.82015837969e-08 3.15822213367e-07 -1.67535940364e-08 3.16318191864e-07 -1.54245058054e-08 3.16888690638e-07 -1.42196174834e-08 3.1752518897e-07 -1.31572156579e-08 3.182349161e-07 -1.22102409719e-08 3.19002411694e-07 -1.14014753782e-08 3.19822769211e-07 -1.07084710329e-08 3.20687699742e-07 -1.01162921301e-08 3.21587877582e-07 -9.60988159399e-09 3.22515192535e-07 -9.1769867341e-09 3.23462029512e-07 -8.805871287e-09 3.24420950006e-07 -8.48582184164e-09 3.25384166124e-07 -8.20622981287e-09 3.26341204577e-07 -7.95753386115e-09 3.27298435074e-07 -7.71848432327e-09 3.28208930833e-07 -7.52399992744e-09 3.29112864609e-07 -7.27254694411e-09 3.29987503874e-07 -7.03315542835e-09 3.30836451191e-07 -6.7666609069e-09 3.31663248189e-07 -6.45920541055e-09 3.32476787622e-07 -6.09982731555e-09 3.3328887568e-07 -5.6796240071e-09 3.34110871404e-07 -5.19258615839e-09 3.34952631545e-07 -4.63557714461e-09 3.35794512347e-07 -4.0260747065e-09 3.36690228273e-07 -3.3065235442e-09 3.37588224585e-07 -2.61055366766e-09 3.38557622382e-07 -1.87118283656e-09 3.39600338874e-07 -1.12722565308e-09 3.40710280665e-07 -4.0789783537e-10 3.41892315915e-07 2.9342669756e-10 3.43143827184e-07 9.6419405019e-10 3.44463972954e-07 1.60141958843e-09 3.45838488431e-07 2.18713154536e-09 3.47258993188e-07 2.71269925414e-09 3.48707928884e-07 3.15477952854e-09 3.50176791472e-07 3.50585472789e-09 3.51652195514e-07 3.74920316956e-09 3.53124302141e-07 3.88347548298e-09 3.54584285079e-07 3.90189015168e-09 3.56022392717e-07 3.81029792958e-09 3.57435253974e-07 3.61076656556e-09 3.58813208082e-07 3.3151457878e-09 3.60157243058e-07 2.93076828249e-09 3.61458977542e-07 2.47663019566e-09 3.62722926046e-07 1.96373412532e-09 3.63932365473e-07 1.41170258475e-09 3.65089970488e-07 8.02128897754e-10 3.66202118941e-07 1.68420783396e-10 3.67300432283e-07 -4.58606582152e-10 3.68387702762e-07 -1.04708195335e-09 3.6947358304e-07 -1.56092395422e-09 3.70535772121e-07 -2.00043938373e-09 3.71569784387e-07 -2.37516171968e-09 3.72571396934e-07 -2.69231275138e-09 3.73550202612e-07 -2.95381773921e-09 3.74509127197e-07 -3.16017156787e-09 3.75457253425e-07 -3.31172229811e-09 3.76395375237e-07 -3.40984632858e-09 3.77329320059e-07 -3.45672056381e-09 3.78257304522e-07 -3.45497359967e-09 3.79183140043e-07 -3.40781259609e-09 3.80102630146e-07 -3.31747893787e-09 3.81018366502e-07 -3.19116524269e-09 3.81924975228e-07 -3.02639805805e-09 3.82825737295e-07 -2.83928771494e-09 3.83704555963e-07 -2.62444972418e-09 3.84557333301e-07 -2.46117039949e-09 3.85386442256e-07 -2.30502328831e-09 3.86220660098e-07 -2.20756274044e-09 3.87069863735e-07 -2.08909695512e-09 3.87965524069e-07 -1.96739554411e-09 3.8888774195e-07 -1.78204747792e-09 3.89847901736e-07 -1.58098969372e-09 3.90820458402e-07 -1.31865908094e-09 3.91820637532e-07 -1.05017801348e-09 3.92827840365e-07 -7.28414593014e-10 3.93860215187e-07 -4.08051001854e-10 3.94896534627e-07 -3.92951065246e-11 3.95952965121e-07 3.22371435414e-10 3.97006899107e-07 7.28114737168e-10 3.98075138588e-07 1.12155824508e-09 3.99138411391e-07 1.55558289293e-09 4.00217405086e-07 1.97231632095e-09 4.01296667552e-07 2.42423101882e-09 4.02397805085e-07 2.85055543749e-09 4.03504757321e-07 3.30178921466e-09 4.04636573736e-07 3.71567269331e-09 4.05775708026e-07 4.14267098589e-09 4.06938699898e-07 4.52249814133e-09 4.08106974073e-07 4.90716101766e-09 4.09294651568e-07 5.23992928561e-09 4.1048251474e-07 5.57355521827e-09 4.11682649494e-07 5.85387874866e-09 4.12875793693e-07 6.13323972515e-09 4.14072353271e-07 6.36095888326e-09 4.15253376793e-07 6.5893639187e-09 4.1642828334e-07 6.77290021055e-09 4.17579193729e-07 6.96369290748e-09 4.18715235204e-07 7.12309880242e-09 4.19820021644e-07 7.30337545972e-09 4.20902766565e-07 7.47511298777e-09 4.21949050947e-07 7.69124913658e-09 4.22968708875e-07 7.93402365446e-09 4.23951080046e-07 8.25828781128e-09 4.24908548072e-07 8.66066810188e-09 4.25836742098e-07 9.19462317116e-09 4.26751671673e-07 9.86809541051e-09 4.27656760426e-07 1.07301023068e-08 4.28571699996e-07 1.18013545228e-08 4.29504354066e-07 1.31332431776e-08 4.30473626852e-07 1.47516052947e-08 4.31497078646e-07 1.66640419255e-08 4.32597366311e-07 1.88362740508e-08 4.33819932545e-07 2.1235909702e-08 4.35218798789e-07 2.38324345988e-08 4.36808959007e-07 2.66395815358e-08 4.38557399422e-07 2.93827190885e-08 4.40166120686e-07 3.18419604226e-08 3.35786856681e-08 4.41751359045e-07 3.79009107169e-07 -1.91128155492e-06 -3.4231403769e-08 -1.56579159132e-06 -1.23040930922e-07 -5.46389334241e-07 1.75299824007e-08 -5.70276408641e-08 3.50948239595e-08 -1.65208645375e-07 7.42514212921e-08 -3.60872570311e-07 1.05498796696e-07 -3.41379489731e-07 1.24399975366e-07 -3.33787101436e-07 1.38279870996e-07 -3.14542348922e-07 1.48722447e-07 -2.9420333575e-07 1.57735188153e-07 -2.75783825208e-07 1.65933069796e-07 -2.59035212203e-07 1.7365869194e-07 -2.43968703592e-07 1.81002292775e-07 -2.30368486298e-07 1.88014895612e-07 -2.17979303291e-07 1.94680236289e-07 -2.06641312283e-07 2.01021425525e-07 -1.96191963201e-07 2.07020768782e-07 -1.86541541166e-07 2.1270894812e-07 -1.77575308954e-07 2.18077692167e-07 -1.69235401947e-07 2.23173079897e-07 -1.61429849437e-07 2.28020811887e-07 -1.54118385326e-07 2.32615760439e-07 -1.47249241216e-07 2.36952642132e-07 -1.40717441146e-07 2.4091788104e-07 -1.34546946238e-07 2.44589863643e-07 -1.28668029053e-07 2.4803015161e-07 -1.23077194288e-07 2.51284184522e-07 -1.17748191113e-07 2.54362677125e-07 -1.12658867533e-07 2.57271725302e-07 -1.07782853459e-07 2.60013133612e-07 -1.03105191636e-07 2.62596860952e-07 -9.86065752735e-08 2.65031207801e-07 -9.4277996593e-08 2.67329326695e-07 -9.01055268127e-08 2.69498818322e-07 -8.60831486808e-08 2.71556569669e-07 -8.22010216815e-08 2.73498405733e-07 -7.84627414109e-08 2.75352779493e-07 -7.48171394666e-08 2.77069335814e-07 -7.13532976218e-08 2.78689856008e-07 -6.79806356961e-08 2.80208754637e-07 -6.4711366115e-08 2.81620010263e-07 -6.15401438654e-08 2.82920869374e-07 -5.84592857352e-08 2.84107328883e-07 -5.54605471727e-08 2.85178984525e-07 -5.25358094337e-08 2.86137249744e-07 -4.96799314894e-08 2.86986742088e-07 -4.6888341361e-08 2.87733642386e-07 -4.41585062145e-08 2.88389958684e-07 -4.14934411711e-08 2.88966809374e-07 -3.89017156474e-08 2.89489950076e-07 -3.63836886717e-08 2.89936580461e-07 -3.39967464103e-08 2.90359539274e-07 -3.16627846227e-08 2.90760189052e-07 -2.94897691062e-08 2.91175157505e-07 -2.74497112274e-08 2.91611341755e-07 -2.55144068398e-08 2.92074502411e-07 -2.36758431293e-08 2.92573317141e-07 -2.19390495806e-08 2.93115776376e-07 -2.0308867022e-08 2.93709329259e-07 -1.87917995406e-08 2.94360735514e-07 -1.73947246327e-08 2.95074365969e-07 -1.6124475157e-08 2.95845332025e-07 -1.49858739313e-08 2.96676774372e-07 -1.39634288404e-08 2.97550022002e-07 -1.30934921455e-08 2.98475772479e-07 -1.23322193115e-08 2.99442913227e-07 -1.16786464165e-08 3.00443355948e-07 -1.11175474545e-08 3.01469495521e-07 -1.0636830806e-08 3.02514770764e-07 -1.02240741352e-08 3.03572720096e-07 -9.86810565078e-09 3.04637441691e-07 -9.5581246883e-09 3.05703199417e-07 -9.28368429144e-09 3.06765087719e-07 -9.03432990996e-09 3.0780570752e-07 -8.80758747821e-09 3.0884923208e-07 -8.55525402212e-09 3.09857142973e-07 -8.34520785316e-09 3.10852896539e-07 -8.09794764002e-09 3.11833083407e-07 -7.82445468138e-09 3.12801629445e-07 -7.51579548029e-09 3.13765529647e-07 -7.16290349983e-09 3.14734143006e-07 -6.75982859667e-09 3.15715320945e-07 -6.30244138031e-09 3.16711181553e-07 -5.79095038717e-09 3.17733045514e-07 -5.21754686354e-09 3.18745869874e-07 -4.62323014106e-09 3.1978777133e-07 -3.94425897888e-09 3.20884329207e-07 -3.28085857217e-09 3.2203982051e-07 -2.62473036205e-09 3.23258544089e-07 -1.97926992588e-09 3.24542772108e-07 -1.35044760516e-09 3.25891699162e-07 -7.41194142331e-10 3.27300817629e-07 -1.57724302616e-10 3.28757894305e-07 3.80669824262e-10 3.30252010083e-07 8.64211313405e-10 3.31771722725e-07 1.26940446983e-09 3.3330874918e-07 1.58860861469e-09 3.34854503761e-07 1.80828844194e-09 3.36400054905e-07 1.92453446821e-09 3.37939410968e-07 1.93670686747e-09 3.39464018518e-07 1.84366307047e-09 3.40971728039e-07 1.65685122963e-09 3.42453533099e-07 1.37502906243e-09 3.43911890733e-07 1.02109545559e-09 3.45337271324e-07 5.93254765597e-10 3.46734340744e-07 1.23242558324e-10 3.48076104075e-07 -4.16871815578e-10 3.49381577732e-07 -9.88987636189e-10 3.5065670725e-07 -1.59942682805e-09 3.51930017784e-07 -2.1771640805e-09 3.53204364673e-07 -2.71831706996e-09 3.54475487545e-07 -3.18124785784e-09 3.55721631542e-07 -3.58703430769e-09 3.56939622941e-07 -3.93531859678e-09 3.58127847568e-07 -4.23987014023e-09 3.59295121751e-07 -4.49272694568e-09 3.60444692617e-07 -4.69976048819e-09 3.61584542319e-07 -4.85409223052e-09 3.6271563483e-07 -4.96200432727e-09 3.63843341927e-07 -5.01910048635e-09 3.64965991067e-07 -5.03307041207e-09 3.66087548008e-07 -4.99963247474e-09 3.67202542903e-07 -4.92997135403e-09 3.68316536371e-07 -4.81656771192e-09 3.69419164973e-07 -4.67820765759e-09 3.70520848658e-07 -4.50262768794e-09 3.71581034729e-07 -4.35933257157e-09 3.72632174254e-07 -4.21991569166e-09 3.73648843217e-07 -4.15989363543e-09 3.74695924719e-07 -4.07233196525e-09 3.75755189853e-07 -4.02868603872e-09 3.76878952558e-07 -3.89176530819e-09 3.78018021327e-07 -3.77024002352e-09 3.79209824566e-07 -3.54766836102e-09 3.80402344899e-07 -3.34998041913e-09 3.81638570535e-07 -3.05971784241e-09 3.82871212662e-07 -2.80563922173e-09 3.84146284539e-07 -2.46419888389e-09 3.85415282972e-07 -2.16608819021e-09 3.86722327221e-07 -1.78379675209e-09 3.88017181589e-07 -1.45081439559e-09 3.89344683976e-07 -1.03637522269e-09 3.90657270789e-07 -6.75803542174e-10 3.92003303252e-07 -2.36404135884e-10 3.93338547134e-07 1.43647872576e-10 3.94711944034e-07 5.96147056293e-10 3.96078920625e-07 9.80019201701e-10 3.97485637483e-07 1.42590073803e-09 3.98886565304e-07 1.79338166638e-09 4.00324607124e-07 2.21325476614e-09 4.01753930427e-07 2.54932428298e-09 4.03213985616e-07 2.93226054292e-09 4.0465937236e-07 3.23066702328e-09 4.06126728521e-07 3.57253825109e-09 4.0757238628e-07 3.83127071248e-09 4.09030781442e-07 4.13154856143e-09 4.10460879708e-07 4.35356129436e-09 4.11895313854e-07 4.61877412419e-09 4.13296572413e-07 4.81618134695e-09 4.14695395804e-07 5.06405795733e-09 4.16057931669e-07 5.26272937309e-09 4.17412158796e-07 5.52741539302e-09 4.1872761438e-07 5.77282188103e-09 4.20028712325e-07 6.11105606119e-09 4.21289612762e-07 6.4745465997e-09 4.22532240155e-07 6.97124755856e-09 4.23738115228e-07 7.55103757197e-09 4.24927694686e-07 8.30859685856e-09 4.26092950959e-07 9.21297728304e-09 4.27253789018e-07 1.03379681939e-08 4.28413190028e-07 1.16884536968e-08 4.29588969441e-07 1.33023329753e-08 4.30802478665e-07 1.51764653403e-08 4.32076026922e-07 1.72526053803e-08 4.3347013418e-07 1.95154482911e-08 4.35046739392e-07 2.18717292648e-08 4.36845576026e-07 2.44330983247e-08 4.38785580159e-07 2.67525334855e-08 4.40576072556e-07 2.8731581501e-08 3.01168265653e-08 4.4234508287e-07 1.92644587663e-07 -2.10544365993e-06 -7.15009286576e-08 -1.30370840598e-06 -1.12229783288e-07 -5.07604895386e-07 -2.74972839733e-08 -1.43922401216e-07 2.96371912688e-08 -2.24769688362e-07 6.11747223905e-08 -3.94634033554e-07 9.76161416155e-08 -3.79828407035e-07 1.16237296029e-07 -3.53749670135e-07 1.28281585968e-07 -3.2853041417e-07 1.37057571853e-07 -3.04868980231e-07 1.44668658404e-07 -2.85098080681e-07 1.51726895805e-07 -2.67569664101e-07 1.58482594532e-07 -2.51997372372e-07 1.64999573382e-07 -2.37973153684e-07 1.71265851384e-07 -2.25195446504e-07 1.7727131538e-07 -2.13471880219e-07 1.82995502893e-07 -2.02652152916e-07 1.88440933072e-07 -1.92635507832e-07 1.93603577913e-07 -1.83327461257e-07 1.98501069173e-07 -1.7465653047e-07 2.0315044458e-07 -1.66547259262e-07 2.07583004971e-07 -1.58950298082e-07 2.1182988277e-07 -1.51802169262e-07 2.1581229599e-07 -1.45061319563e-07 2.19493252187e-07 -1.38650326421e-07 2.22909676671e-07 -1.32554869786e-07 2.26131230105e-07 -1.26753744059e-07 2.29196123856e-07 -1.21222860674e-07 2.3211636851e-07 -1.15939704109e-07 2.34890011777e-07 -1.10884759965e-07 2.37522106416e-07 -1.06038517171e-07 2.400167018e-07 -1.01385628479e-07 2.4238397656e-07 -9.69103226363e-08 2.44631322813e-07 -9.26024499138e-08 2.46769431311e-07 -8.8451209699e-08 2.48801326084e-07 -8.44471412911e-08 2.50750728234e-07 -8.05742338632e-08 2.52578891371e-07 -7.68785553053e-08 2.5432809014e-07 -7.32229834051e-08 2.55971022797e-07 -6.97259657591e-08 2.57518634933e-07 -6.63417593851e-08 2.58969437328e-07 -6.3056730577e-08 2.60320000079e-07 -5.98631180269e-08 2.61569688882e-07 -5.67535944589e-08 2.62719815886e-07 -5.37226889658e-08 2.63774155795e-07 -5.0765790484e-08 2.64739706803e-07 -4.78815008685e-08 2.65626515812e-07 -4.50687993337e-08 2.66447346556e-07 -4.23346067788e-08 2.67223490175e-07 -3.9690387591e-08 2.67952974359e-07 -3.71514119454e-08 2.68667473367e-07 -3.4689141207e-08 2.69325748091e-07 -3.24364725576e-08 2.69987803157e-07 -3.02782327245e-08 2.70659089603e-07 -2.82289923652e-08 2.71342569686e-07 -2.628558936e-08 2.72047823066e-07 -2.44487024834e-08 2.72779519391e-07 -2.27221711754e-08 2.73544727678e-07 -2.1112242202e-08 2.74351958044e-07 -1.96259501667e-08 2.75208382132e-07 -1.82689735456e-08 2.7611417894e-07 -1.7043244961e-08 2.77070174722e-07 -1.59440140508e-08 2.78059982438e-07 -1.49861900876e-08 2.79095029192e-07 -1.41269555599e-08 2.80161425935e-07 -1.33992895401e-08 2.812585159e-07 -1.27753149967e-08 2.82380127228e-07 -1.223922747e-08 2.83519677911e-07 -1.17785244751e-08 2.84671846083e-07 -1.13819862684e-08 2.85831785864e-07 -1.10385740516e-08 2.86995234927e-07 -1.07379599791e-08 2.88157907724e-07 -1.04698083802e-08 2.89315257368e-07 -1.02247276224e-08 2.90470079888e-07 -9.98731184492e-09 2.91596721405e-07 -9.77662600421e-09 2.92719333695e-07 -9.51904263807e-09 2.93829380856e-07 -9.26818605565e-09 2.94930446956e-07 -8.99408584503e-09 2.96025423368e-07 -8.68873215624e-09 2.97120352291e-07 -8.34611296108e-09 2.98222873447e-07 -7.96175711797e-09 2.99338833349e-07 -7.53346352176e-09 3.00469221086e-07 -7.06058695952e-09 3.0160715116e-07 -6.54910162098e-09 3.0276584258e-07 -5.97919118769e-09 3.03919726099e-07 -5.40919554196e-09 3.05122782739e-07 -4.80771953662e-09 3.06380054395e-07 -4.21667994582e-09 3.07696030296e-07 -3.63059720893e-09 3.09074136051e-07 -3.0528438421e-09 3.10512227854e-07 -2.48583998481e-09 3.12001964947e-07 -1.94204949217e-09 3.13534147083e-07 -1.43415467758e-09 3.15095448828e-07 -9.85592876719e-10 3.16680487033e-07 -6.06162125017e-10 3.18281328182e-07 -3.12449265415e-10 3.19892130001e-07 -1.07841910217e-10 3.21506713436e-07 -1.44632292978e-12 3.23117914177e-07 1.03355367145e-11 3.24722595897e-07 -7.4610173295e-11 3.26312966978e-07 -2.46499831861e-10 3.27888813183e-07 -5.04350251668e-10 3.2944310332e-07 -8.30415617293e-10 3.30978113318e-07 -1.22175088972e-09 3.32478130265e-07 -1.65780905303e-09 3.33939295324e-07 -2.17206617497e-09 3.35365414953e-07 -2.7251090789e-09 3.36786207692e-07 -3.29040824703e-09 3.38206288775e-07 -3.83026469649e-09 3.39639329142e-07 -4.30707793936e-09 3.41061535842e-07 -4.72166156623e-09 3.42461923957e-07 -5.08925600599e-09 3.4383203848e-07 -5.4163583919e-09 3.45178572703e-07 -5.7052028676e-09 3.46504160475e-07 -5.95237005032e-09 3.47817639482e-07 -6.15677648742e-09 3.49121019406e-07 -6.31558031205e-09 3.50420507933e-07 -6.42982274316e-09 3.51715845497e-07 -6.49851528311e-09 3.53011157972e-07 -6.52454709795e-09 3.54303646644e-07 -6.50697059663e-09 3.55595719909e-07 -6.45374097081e-09 3.56883076578e-07 -6.35872038112e-09 3.58168015097e-07 -6.24140533463e-09 3.59434626226e-07 -6.09071228671e-09 3.60673642162e-07 -6.00417570732e-09 3.61885159431e-07 -5.92298692372e-09 3.63096865566e-07 -5.91748042175e-09 3.643206179e-07 -5.88468548369e-09 3.65597298058e-07 -5.85451120771e-09 3.66909610824e-07 -5.74563645885e-09 3.68272323169e-07 -5.62473300591e-09 3.69655970682e-07 -5.42840267822e-09 3.7107651176e-07 -5.23126864788e-09 3.72509373634e-07 -4.96942692922e-09 3.73976410847e-07 -4.71660767385e-09 3.75454867073e-07 -4.40576003473e-09 3.76965929576e-07 -4.10985213461e-09 3.7848407346e-07 -3.76038487336e-09 3.800290015e-07 -3.43063914927e-09 3.81575350627e-07 -3.05079642874e-09 3.83145126276e-07 -2.69382691601e-09 3.84716199107e-07 -2.28931678416e-09 3.8631316761e-07 -1.91114376849e-09 3.87914885811e-07 -1.49108279371e-09 3.89544776781e-07 -1.10434123687e-09 3.91180065075e-07 -6.85057143914e-10 3.92841677829e-07 -3.07150098087e-10 3.94505364919e-07 9.48497156889e-11 3.96189439376e-07 4.51193709172e-10 3.97868481253e-07 8.27863516435e-10 3.99558192095e-07 1.1588477219e-09 4.01232999463e-07 1.50848656206e-09 4.02907089293e-07 1.81343303661e-09 4.04555973623e-07 2.13580642072e-09 4.06193346445e-07 2.41652276315e-09 4.0779706316e-07 2.71596942068e-09 4.09381439561e-07 2.98123427781e-09 4.10927835876e-07 3.27123300237e-09 4.12451869991e-07 3.54133846392e-09 4.13939036283e-07 3.84949870376e-09 4.15406093593e-07 4.16252550555e-09 4.16842650317e-07 4.53851412802e-09 4.18266369368e-07 4.95801789221e-09 4.19672170687e-07 5.47897653283e-09 4.21078594135e-07 6.09292274413e-09 4.22486300976e-07 6.85054292972e-09 4.23912190811e-07 7.75389175139e-09 4.25358931935e-07 8.84316232529e-09 4.26839626e-07 1.01415436767e-08 4.28362467903e-07 1.16641494889e-08 4.29938897726e-07 1.34129325827e-08 4.31583218249e-07 1.53315866893e-08 4.33333378791e-07 1.73780640417e-08 4.35263030363e-07 1.94559152627e-08 4.37423983369e-07 2.16440643699e-08 4.39653898826e-07 2.35294286003e-08 4.41716517672e-07 2.50362840913e-08 2.58578291128e-08 4.43883961245e-07 -6.39530741653e-08 -2.04457339052e-06 -1.75130469571e-07 -1.19521805318e-06 -1.86892753388e-07 -4.98404391146e-07 -9.86494201382e-08 -2.34906975619e-07 1.42729160044e-08 -3.40769785085e-07 6.6774052461e-08 -4.50043988742e-07 1.01186549925e-07 -4.16294617e-07 1.14089090897e-07 -3.69131701597e-07 1.23096594048e-07 -3.39488589422e-07 1.30142033917e-07 -3.13803583975e-07 1.3637077552e-07 -2.93041589694e-07 1.42254874325e-07 -2.7492345583e-07 1.47924336162e-07 -2.58932720228e-07 1.53425698929e-07 -2.44543852005e-07 1.58737671654e-07 -2.31446318839e-07 1.63860918459e-07 -2.19402532326e-07 1.68766558731e-07 -2.08286059309e-07 1.73463023079e-07 -1.9796721261e-07 1.77934060155e-07 -1.88385895643e-07 1.82202002485e-07 -1.79440353937e-07 1.8627257949e-07 -1.71083526497e-07 1.9018069823e-07 -1.63253683351e-07 1.93939435772e-07 -1.55904859747e-07 1.97499549872e-07 -1.48972022454e-07 2.00803287258e-07 -1.42375833819e-07 2.03892080517e-07 -1.36108008695e-07 2.06832032027e-07 -1.30132587101e-07 2.09654761472e-07 -1.2442724941e-07 2.12366299572e-07 -1.18979926814e-07 2.14963675712e-07 -1.13770431967e-07 2.17447319709e-07 -1.08784580567e-07 2.19820203521e-07 -1.03999036084e-07 2.22089051475e-07 -9.94013335123e-08 2.24260237618e-07 -9.49769422997e-08 2.26340142665e-07 -9.07144877243e-08 2.2833625048e-07 -8.66037372741e-08 2.30240500961e-07 -8.26419570864e-08 2.32086844959e-07 -7.87550177439e-08 2.3380568515e-07 -7.51096720419e-08 2.35455229675e-07 -7.15195370036e-08 2.37022885239e-07 -6.80337633646e-08 2.38503442229e-07 -6.46477397114e-08 2.39897517282e-07 -6.13563941749e-08 2.41205943363e-07 -5.81540343444e-08 2.4243351663e-07 -5.50368484172e-08 2.43586580022e-07 -5.20024444205e-08 2.44677001267e-07 -4.90527947076e-08 2.4571716047e-07 -4.61876660511e-08 2.46721053016e-07 -4.34143592371e-08 2.47705554945e-07 -4.07480661438e-08 2.48678257426e-07 -3.81866139426e-08 2.49605256312e-07 -3.58029767716e-08 2.50532798116e-07 -3.34284532668e-08 2.51432310412e-07 -3.12496032171e-08 2.52325341295e-07 -2.91823090737e-08 2.53228123709e-07 -2.72276165685e-08 2.54145861472e-07 -2.53877406415e-08 2.55085397559e-07 -2.36699521499e-08 2.56055123332e-07 -2.20805998024e-08 2.57062012708e-07 -2.06245583148e-08 2.58108945052e-07 -1.9303226527e-08 2.59195953181e-07 -1.81147802992e-08 2.60312818032e-07 -1.70563685694e-08 2.61460111497e-07 -1.61110385619e-08 2.62622664924e-07 -1.53152381113e-08 2.63814759392e-07 -1.46127465349e-08 2.65030101096e-07 -1.40055544282e-08 2.66261859213e-07 -1.34837426934e-08 2.67505385935e-07 -1.30347851516e-08 2.68756967757e-07 -1.26476628229e-08 2.7001293496e-07 -1.2311728098e-08 2.71270364375e-07 -1.20166297029e-08 2.72526439308e-07 -1.17522045921e-08 2.73778405752e-07 -1.15085510592e-08 2.75018225461e-07 -1.12809123366e-08 2.76259248811e-07 -1.10365471922e-08 2.77479167335e-07 -1.08130531162e-08 2.78695191011e-07 -1.05629723085e-08 2.79906140698e-07 -1.02926505164e-08 2.81115054871e-07 -9.99536435185e-09 2.8232639263e-07 -9.66560532468e-09 2.83546441354e-07 -9.30050351369e-09 2.84779216397e-07 -8.89917071836e-09 2.8602606502e-07 -8.46237638168e-09 2.87287522184e-07 -7.98817959923e-09 2.8854531573e-07 -7.49529934243e-09 2.8980723637e-07 -6.96795445935e-09 2.91106898205e-07 -6.43883711103e-09 2.92459004437e-07 -5.9020961666e-09 2.93865650637e-07 -5.36930803842e-09 2.95329827907e-07 -4.83505753571e-09 2.96848159942e-07 -4.30760184457e-09 2.98410513433e-07 -3.80283498529e-09 3.00006631579e-07 -3.33442265044e-09 3.01627347127e-07 -2.92548215325e-09 3.03268054675e-07 -2.58447063199e-09 3.04924282281e-07 -2.32429514927e-09 3.0659073496e-07 -2.15036238869e-09 3.08263863477e-07 -2.06456744837e-09 3.09936863441e-07 -2.0706825774e-09 3.11608461951e-07 -2.15939814263e-09 3.13270062156e-07 -2.33612473282e-09 3.1492438421e-07 -2.58026115086e-09 3.16561617316e-07 -2.89943943721e-09 3.18187101095e-07 -3.26298051661e-09 3.19771779879e-07 -3.7102747569e-09 3.21331804604e-07 -4.20045025676e-09 3.22868423694e-07 -4.74564201715e-09 3.24411620106e-07 -5.26561415233e-09 3.25965231554e-07 -5.76005816864e-09 3.27529996406e-07 -6.18361955171e-09 3.29080882624e-07 -6.5657951564e-09 3.30610342688e-07 -6.90740418015e-09 3.32112339147e-07 -7.22405122762e-09 3.33594273103e-07 -7.50466712898e-09 3.35058231823e-07 -7.75376943044e-09 3.36512668537e-07 -7.96091861787e-09 3.37958643836e-07 -8.13076052585e-09 3.39402619904e-07 -8.2560708724e-09 3.40843442346e-07 -8.34317776265e-09 3.42286178989e-07 -8.38557403971e-09 3.43725641046e-07 -8.3937273189e-09 3.45168171711e-07 -8.35750112702e-09 3.46603061075e-07 -8.29656603855e-09 3.48041713181e-07 -8.19393127614e-09 3.4943982869e-07 -8.13294612274e-09 3.5082940788e-07 -8.07459453793e-09 3.52177152901e-07 -8.11232005269e-09 3.53553975802e-07 -8.11444342462e-09 3.54937466459e-07 -8.17004492302e-09 3.5639536221e-07 -8.11211953831e-09 3.57873712361e-07 -8.07654645255e-09 3.59420108333e-07 -7.92131291759e-09 3.60972019594e-07 -7.80048862963e-09 3.62579914064e-07 -7.57059582341e-09 3.64186118245e-07 -7.38822835659e-09 3.65846928371e-07 -7.10408406722e-09 3.6750614827e-07 -6.87590219021e-09 3.69219317595e-07 -6.54996256233e-09 3.7092737386e-07 -6.28601283622e-09 3.7268430942e-07 -5.92736333841e-09 3.7443110989e-07 -5.63478698279e-09 3.76223532372e-07 -5.24870627402e-09 3.7800553709e-07 -4.93050152449e-09 3.79834581432e-07 -4.52043422869e-09 3.81655886912e-07 -4.18160929532e-09 3.83524936738e-07 -3.7567187868e-09 3.85386187696e-07 -3.40896060344e-09 3.87291667277e-07 -2.98335982409e-09 3.89185529591e-07 -2.63933472602e-09 3.9111605968e-07 -2.22330400944e-09 3.93027661523e-07 -1.88853124501e-09 3.94965035566e-07 -1.48494702774e-09 3.96874484627e-07 -1.16043057446e-09 3.98798514749e-07 -7.70840624301e-10 4.0068688863e-07 -4.57732200407e-10 4.02580477792e-07 -8.29669758605e-11 4.04433344192e-07 2.20926185775e-10 4.06284415567e-07 5.86358750557e-10 4.08092004416e-07 8.9291359816e-10 4.09891604321e-07 1.26715400163e-09 4.11645119111e-07 1.60371404596e-09 4.13383334344e-07 2.0232343761e-09 4.15072045186e-07 2.43920842201e-09 4.16737048169e-07 2.96543610884e-09 4.18351014808e-07 3.53578775536e-09 4.19937284715e-07 4.24872014859e-09 4.21481618826e-07 5.05419663915e-09 4.2300854289e-07 6.02664412075e-09 4.24515733946e-07 7.14344346401e-09 4.26032101495e-07 8.44867521256e-09 4.27580107979e-07 9.93331432424e-09 4.29187682864e-07 1.15854606063e-08 4.30891185373e-07 1.33777615126e-08 4.32742401061e-07 1.5193988521e-08 4.34839981904e-07 1.69890839462e-08 4.37324461341e-07 1.86430487428e-08 4.39902257321e-07 2.00593035374e-08 4.42424059167e-07 2.08542561638e-08 2.07540411119e-08 4.45438199759e-07 2.63532983472e-07 -2.30994919933e-06 -1.48173015786e-07 -7.85510330223e-07 -1.82262825678e-07 -4.66061713633e-07 3.27984244916e-08 -4.51581384759e-07 1.43557126113e-07 -4.52997975885e-07 1.32727294193e-07 -4.40501218211e-07 1.20381879641e-07 -4.05223700084e-07 1.21489082571e-07 -3.71033911674e-07 1.25239096413e-07 -3.44731068264e-07 1.2999558003e-07 -3.19915640131e-07 1.34696266559e-07 -2.98991900514e-07 1.39263368564e-07 -2.80600658902e-07 1.43654474653e-07 -2.64291633854e-07 1.47868407011e-07 -2.49608377173e-07 1.51926524316e-07 -2.36253312353e-07 1.55835335831e-07 -2.23984374522e-07 1.59609256228e-07 -2.12661284535e-07 1.63245490157e-07 -2.02153719895e-07 1.66752978956e-07 -1.92389786639e-07 1.70133586375e-07 -1.83274344743e-07 1.73400040699e-07 -1.74753273287e-07 1.76569448896e-07 -1.66771544424e-07 1.79653578995e-07 -1.59281761788e-07 1.82612533421e-07 -1.52206096602e-07 1.8537047703e-07 -1.45543623866e-07 1.87983884564e-07 -1.39176436635e-07 1.9050932063e-07 -1.3308803771e-07 1.92968654837e-07 -1.27270541447e-07 1.953659895e-07 -1.21709261034e-07 1.97689114102e-07 -1.16395171255e-07 1.99937601457e-07 -1.1130731366e-07 2.02107555355e-07 -1.06429064075e-07 2.04203176833e-07 -1.01742223551e-07 2.06227533884e-07 -9.72327252419e-08 2.08185585033e-07 -9.2887664908e-08 2.10076390714e-07 -8.86925359239e-08 2.11919306517e-07 -8.46293601519e-08 2.13663067925e-07 -8.07751128507e-08 2.15371946597e-07 -7.6904180195e-08 2.17000173968e-07 -7.32260593776e-08 2.18562531532e-07 -6.9656612199e-08 2.20058701273e-07 -6.61901437515e-08 2.21489789572e-07 -6.2822167638e-08 2.22859830296e-07 -5.95510320212e-08 2.24175440213e-07 -5.6373602448e-08 2.25443582218e-07 -5.32880219249e-08 2.26680738052e-07 -5.03044571061e-08 2.27894649444e-07 -4.74137365799e-08 2.290895694e-07 -4.46164555288e-08 2.30281317588e-07 -4.19499783617e-08 2.31450973757e-07 -3.93992526894e-08 2.32626922094e-07 -3.68951634802e-08 2.33723781979e-07 -3.46660712628e-08 2.3481326042e-07 -3.24622230211e-08 2.35899309697e-07 -3.03767496019e-08 2.36995414806e-07 -2.84080911148e-08 2.38108670058e-07 -2.65660377255e-08 2.3924442566e-07 -2.48554887236e-08 2.40406616766e-07 -2.32809061968e-08 2.41597408563e-07 -2.18440061011e-08 2.428164477e-07 -2.05438247787e-08 2.44059972662e-07 -1.93753154601e-08 2.45323118576e-07 -1.83352619055e-08 2.46594646361e-07 -1.74362936069e-08 2.47888393595e-07 -1.66151332264e-08 2.49195775737e-07 -1.5926712012e-08 2.50518071979e-07 -1.53326988802e-08 2.51851708587e-07 -1.48217627011e-08 2.53192367752e-07 -1.4381861082e-08 2.54537414253e-07 -1.40027012154e-08 2.55884369703e-07 -1.36737859686e-08 2.57231352875e-07 -1.33847323903e-08 2.58576288453e-07 -1.31254271463e-08 2.59917578117e-07 -1.28866328892e-08 2.61256730601e-07 -1.26553394168e-08 2.62581312641e-07 -1.24385921335e-08 2.63898825964e-07 -1.22019403431e-08 2.652127965e-07 -1.19580640291e-08 2.66524569725e-07 -1.16945724508e-08 2.67835706449e-07 -1.14064674828e-08 2.69150215632e-07 -1.10902890866e-08 2.70473157788e-07 -1.07442208935e-08 2.71808026411e-07 -1.03684304691e-08 2.73154192676e-07 -9.96326259029e-09 2.74506073913e-07 -9.53700827992e-09 2.75863769503e-07 -9.0912096103e-09 2.77217062988e-07 -8.60571240377e-09 2.78603370057e-07 -8.12109790691e-09 2.80034787212e-07 -7.62845148076e-09 2.81520517801e-07 -7.12787340768e-09 2.83058023079e-07 -6.62131415314e-09 2.84642351888e-07 -6.11952278869e-09 2.8626351683e-07 -5.63762996925e-09 2.87910179936e-07 -5.20049427037e-09 2.89577591265e-07 -4.81872442868e-09 2.91261922501e-07 -4.50741799193e-09 2.92960334158e-07 -4.27031057379e-09 2.94670089816e-07 -4.11625762378e-09 2.96386397361e-07 -4.04375389924e-09 2.98107572013e-07 -4.05570915175e-09 2.9982730758e-07 -4.14563765922e-09 3.01545423783e-07 -4.314150681e-09 3.03255720998e-07 -4.54795812014e-09 3.04960144658e-07 -4.8463192074e-09 3.06643583072e-07 -5.19547817e-09 3.08300553871e-07 -5.63143868762e-09 3.09932197029e-07 -6.11740604149e-09 3.11564836037e-07 -6.62390625539e-09 3.13204686679e-07 -7.11225309514e-09 3.14866788973e-07 -7.54315471272e-09 3.16531345439e-07 -7.92125249586e-09 3.18184392379e-07 -8.26735273607e-09 3.19814173305e-07 -8.59082796344e-09 3.21423433747e-07 -8.89349739431e-09 3.23013718441e-07 -9.17004954358e-09 3.24592572919e-07 -9.41713376357e-09 3.2616270434e-07 -9.62956712099e-09 3.27730121137e-07 -9.80645857284e-09 3.29295854596e-07 -9.94486726417e-09 3.30864107398e-07 -1.00460189066e-08 3.32433326643e-07 -1.01076719932e-08 3.34005879948e-07 -1.01354356819e-08 3.35578076116e-07 -1.01233388086e-08 3.37152399494e-07 -1.00870972362e-08 3.38711633658e-07 -1.0022560456e-08 3.40245832988e-07 -1.00223988063e-08 3.41750641608e-07 -1.00385073428e-08 3.43251470489e-07 -1.01294938293e-08 3.44760570497e-07 -1.0198822395e-08 3.46320712865e-07 -1.02587248047e-08 3.47921938163e-07 -1.023792796e-08 3.49581058419e-07 -1.01920814145e-08 3.51271576419e-07 -1.00732150631e-08 3.53006250335e-07 -9.94320701591e-09 3.54760759008e-07 -9.75374185212e-09 3.56553704318e-07 -9.56360792582e-09 3.58365416934e-07 -9.32297596266e-09 3.60216578905e-07 -9.08795489315e-09 3.62086046472e-07 -8.80831140261e-09 3.63991889568e-07 -8.53850185105e-09 3.65910958477e-07 -8.22845098011e-09 3.67861110992e-07 -7.93032151274e-09 3.69820722203e-07 -7.59376108658e-09 3.71809808614e-07 -7.26872954645e-09 3.73808774578e-07 -6.90662250277e-09 3.75837884649e-07 -6.55668592448e-09 3.7787680598e-07 -6.17406041918e-09 3.79943568943e-07 -5.80708358015e-09 3.82016305061e-07 -5.41376170387e-09 3.84110470862e-07 -5.03937219753e-09 3.86202876623e-07 -4.64228659973e-09 3.88306004225e-07 -4.26369187631e-09 3.90395747373e-07 -3.86343337375e-09 3.92482857752e-07 -3.48069724367e-09 3.94544523385e-07 -3.07879666304e-09 3.96591811454e-07 -2.69520286606e-09 3.98605128695e-07 -2.29598897113e-09 4.00597271516e-07 -1.9148451026e-09 4.02553330924e-07 -1.51919217154e-09 4.04488852245e-07 -1.13668814191e-09 4.06394301987e-07 -7.35022172603e-10 4.08287336909e-07 -3.33041968288e-10 4.1016251813e-07 1.0317912212e-10 4.12037122411e-07 5.6734441244e-10 4.13907738424e-07 1.09601077344e-09 4.15790114302e-07 1.69322846675e-09 4.17682450003e-07 2.39214670964e-09 4.19596946173e-07 3.19878384656e-09 4.21532845035e-07 4.13666123735e-09 4.23489962732e-07 5.22702502407e-09 4.25475027566e-07 6.4675186767e-09 4.27493947634e-07 7.86465141239e-09 4.29557510985e-07 9.39736556014e-09 4.31673478858e-07 1.10310084267e-08 4.338819996e-07 1.26539756175e-08 4.36219417733e-07 1.41925306868e-08 4.38873900144e-07 1.53433349272e-08 4.41452250625e-07 1.63678386462e-08 4.43901764423e-07 1.65516718719e-08 1.56831532997e-08 4.46872426571e-07 7.12920359665e-08 -1.3474086664e-06 6.15474437723e-08 -7.76476918052e-07 1.12894885044e-07 -5.18019843187e-07 1.36074739059e-07 -4.75307472245e-07 1.48097660076e-07 -4.65517225891e-07 1.43056003356e-07 -4.35905610763e-07 1.40420433637e-07 -4.02910571361e-07 1.40728086638e-07 -3.71981403944e-07 1.41418601219e-07 -3.45694715631e-07 1.4289298473e-07 -3.21767154267e-07 1.44736335019e-07 -3.01217674979e-07 1.46771464338e-07 -2.83021108152e-07 1.48936742974e-07 -2.6680700393e-07 1.51174741594e-07 -2.52193917514e-07 1.53475907759e-07 -2.38869938083e-07 1.55819772802e-07 -2.26647667145e-07 1.58211378285e-07 -2.15343992474e-07 1.6063196775e-07 -2.04872815731e-07 1.63085628633e-07 -1.95114487144e-07 1.65556395155e-07 -1.86014655849e-07 1.68044716229e-07 -1.77490276371e-07 1.70547039496e-07 -1.69501922693e-07 1.73063363985e-07 -1.61993417578e-07 1.75529000148e-07 -1.54942288065e-07 1.7792020393e-07 -1.48206346804e-07 1.80248253313e-07 -1.41815115963e-07 1.82556348097e-07 -1.3569338676e-07 1.84861157229e-07 -1.29838007976e-07 1.87157634615e-07 -1.24230056094e-07 1.89432826666e-07 -1.1887219024e-07 1.9167837441e-07 -1.13734296539e-07 1.93886410957e-07 -1.08808478387e-07 1.96057343041e-07 -1.04073116059e-07 1.98192064873e-07 -9.95166417049e-08 2.00293097672e-07 -9.51229466737e-08 2.02363481458e-07 -9.08832367026e-08 2.04386630367e-07 -8.67963678827e-08 2.06407584053e-07 -8.27546049254e-08 2.08345870133e-07 -7.89911185372e-08 2.10267357559e-07 -7.52613837913e-08 2.12154976507e-07 -7.16405936955e-08 2.14006839764e-07 -6.81271960683e-08 2.1582616538e-07 -6.47190436785e-08 2.17617885853e-07 -6.14154286861e-08 2.1938681746e-07 -5.82117190093e-08 2.21133090534e-07 -5.51018460881e-08 2.22872000218e-07 -5.21089881856e-08 2.24607318918e-07 -4.92121319625e-08 2.26344434154e-07 -4.64152738573e-08 2.28079966516e-07 -4.37474274927e-08 2.29817296513e-07 -4.11582716051e-08 2.31481137411e-07 -3.87735145799e-08 2.33152257109e-07 -3.63599941986e-08 2.34793521979e-07 -3.41510385803e-08 2.36443393924e-07 -3.20628157818e-08 2.38111121648e-07 -3.00981734645e-08 2.39799455363e-07 -2.82643840451e-08 2.41509713419e-07 -2.65668914248e-08 2.43242711072e-07 -2.50085367307e-08 2.44998311115e-07 -2.35896138206e-08 2.46775437392e-07 -2.23074400063e-08 2.48570808326e-07 -2.11593512495e-08 2.50374918055e-07 -2.01431308356e-08 2.52196135323e-07 -1.9224017294e-08 2.54013613591e-07 -1.84747139131e-08 2.55852849084e-07 -1.77968565175e-08 2.57705317739e-07 -1.72122528998e-08 2.59566839324e-07 -1.67074404853e-08 2.61433959652e-07 -1.62736240378e-08 2.63304844942e-07 -1.59002934909e-08 2.65177742724e-07 -1.55771369824e-08 2.67051417983e-07 -1.52936557809e-08 2.68924618822e-07 -1.5039694314e-08 2.70795720699e-07 -1.48048212836e-08 2.72660808245e-07 -1.4583920069e-08 2.74525081607e-07 -1.43611858849e-08 2.7638004504e-07 -1.41323930104e-08 2.78233488115e-07 -1.38943639379e-08 2.80087192251e-07 -1.36398349716e-08 2.81943422468e-07 -1.33635181405e-08 2.83805157578e-07 -1.30621817101e-08 2.85676639129e-07 -1.27349731899e-08 2.8756024202e-07 -1.23828179423e-08 2.89454566873e-07 -1.20095867515e-08 2.91355775202e-07 -1.16185240284e-08 2.93262067975e-07 -1.11868046923e-08 2.951486135e-07 -1.07942335963e-08 2.97076276412e-07 -1.03553816937e-08 2.99053675616e-07 -9.90710582231e-09 3.01087937181e-07 -9.43945267663e-09 3.03177621452e-07 -8.96551748368e-09 3.05314933633e-07 -8.49790046027e-09 3.07487825613e-07 -8.05470383324e-09 3.09687103334e-07 -7.65774543899e-09 3.11907712174e-07 -7.31711768191e-09 3.14147313483e-07 -7.04333846222e-09 3.16402242226e-07 -6.8426004372e-09 3.18670893548e-07 -6.71663172058e-09 3.20947947117e-07 -6.67053813622e-09 3.23232914046e-07 -6.69664088287e-09 3.25518180811e-07 -6.80221649095e-09 3.27806453308e-07 -6.96930330164e-09 3.30088731712e-07 -7.2085698907e-09 3.3237004286e-07 -7.49227762403e-09 3.3462019549e-07 -7.86636977379e-09 3.36854133177e-07 -8.28930017488e-09 3.39073045355e-07 -8.7778564272e-09 3.41308295811e-07 -9.24864008114e-09 3.43567728039e-07 -9.70051434711e-09 3.45854079962e-07 -1.00875768964e-08 3.48142182339e-07 -1.04422458594e-08 3.5042045837e-07 -1.0769156221e-08 3.52678947956e-07 -1.10871752794e-08 3.54922381159e-07 -1.13854775694e-08 3.57152150668e-07 -1.16677240622e-08 3.59376819165e-07 -1.19214413785e-08 3.61598222967e-07 -1.21494358707e-08 3.63823461355e-07 -1.23424651363e-08 3.66052283218e-07 -1.25051064226e-08 3.68290219666e-07 -1.2629316293e-08 3.70532600051e-07 -1.27236223819e-08 3.72785520343e-07 -1.27764819061e-08 3.75038142882e-07 -1.2805867338e-08 3.77300627002e-07 -1.27933016677e-08 3.7952360862e-07 -1.28250562993e-08 3.81737074257e-07 -1.28578568017e-08 3.83903638822e-07 -1.29956448935e-08 3.86096564002e-07 -1.30967664525e-08 3.88297364196e-07 -1.32562949938e-08 3.90578979784e-07 -1.32933971443e-08 3.9289272109e-07 -1.33502286299e-08 3.95288346411e-07 -1.32765795238e-08 3.977037424e-07 -1.32358878529e-08 4.00185994258e-07 -1.30784615974e-08 4.02675951301e-07 -1.29685343207e-08 4.0522662998e-07 -1.27519803054e-08 4.07784381236e-07 -1.25925855117e-08 4.10404070182e-07 -1.23328057417e-08 4.13031006457e-07 -1.21361733878e-08 4.15716747521e-07 -1.18432020235e-08 4.18405147028e-07 -1.16170811218e-08 4.21146909242e-07 -1.12966520263e-08 4.2388832214e-07 -1.1043497258e-08 4.26681430783e-07 -1.06958944107e-08 4.29475763283e-07 -1.04140364075e-08 4.32322397823e-07 -1.00385119485e-08 4.35171428162e-07 -9.72827487339e-09 4.38070210571e-07 -9.32827946388e-09 4.409687632e-07 -8.99462940169e-09 4.439104542e-07 -8.5760981644e-09 4.46845482611e-07 -8.22253932531e-09 4.4981268642e-07 -7.78683737836e-09 4.52763245862e-07 -7.41290349232e-09 4.55733300885e-07 -6.96093372157e-09 4.58677847023e-07 -6.56993330257e-09 4.61632417284e-07 -6.10860591661e-09 4.64557393055e-07 -5.70884984272e-09 4.67488133332e-07 -5.24715062632e-09 4.70391030266e-07 -4.8447454776e-09 4.73300598863e-07 -4.38502363586e-09 4.7618855975e-07 -3.9747439618e-09 4.79086498927e-07 -3.50340789599e-09 4.8197092717e-07 -3.05978503542e-09 4.84869846137e-07 -2.53876929507e-09 4.87765867957e-07 -2.00832374121e-09 4.90685200068e-07 -1.37461145325e-09 4.93620707023e-07 -6.89243532153e-10 4.96600415506e-07 1.16355786331e-10 4.99633476234e-07 1.00486314055e-09 5.02747920718e-07 2.0307203881e-09 5.05973885428e-07 3.15300916069e-09 5.09348272806e-07 4.37585991834e-09 5.12917441275e-07 5.68199628786e-09 5.16725352889e-07 7.0038223126e-09 5.20845510802e-07 8.26294420346e-09 5.25334970248e-07 9.32490283314e-09 5.3027851873e-07 9.86111717036e-09 5.35304787036e-07 1.02724183032e-08 5.40292274048e-07 9.78606805047e-09 8.17165218021e-09 5.4583064179e-07 3.06817607474e-07 -8.55753561041e-07 1.91544441358e-07 -6.61731191377e-07 2.16066323085e-07 -5.43009874147e-07 2.18238529115e-07 -4.77880877481e-07 2.05278695807e-07 -4.52907240174e-07 1.9288826806e-07 -4.23799008924e-07 1.84192606386e-07 -3.94570581068e-07 1.79211252612e-07 -3.67028519004e-07 1.75994925412e-07 -3.42820262561e-07 1.74426661236e-07 -3.20522813572e-07 1.73834912781e-07 -3.00946542964e-07 1.73915238638e-07 -2.83386788157e-07 1.74447485581e-07 -2.67610593731e-07 1.75308376931e-07 -2.53294051299e-07 1.76407621827e-07 -2.40203460794e-07 1.77701731432e-07 -2.28150414901e-07 1.79146253888e-07 -2.16997598211e-07 1.80721491981e-07 -2.06634386028e-07 1.82396710052e-07 -1.9697368583e-07 1.84156351144e-07 -1.87939701592e-07 1.85977737546e-07 -1.7947016595e-07 1.87853553709e-07 -1.71520930867e-07 1.89762675535e-07 -1.64041457392e-07 1.91685210861e-07 -1.56944811732e-07 1.93556323232e-07 -1.50279126971e-07 1.9542304453e-07 -1.43888024817e-07 1.97297394663e-07 -1.3777754862e-07 1.99197333279e-07 -1.31917160438e-07 2.01110955508e-07 -1.26311743437e-07 2.03032086701e-07 -1.20935892378e-07 2.04942639204e-07 -1.15784524595e-07 2.0683717798e-07 -1.10835445477e-07 2.0871038068e-07 -1.06077985695e-07 2.10564042955e-07 -1.01496581589e-07 2.12399837246e-07 -9.70799360802e-08 2.14215545575e-07 -9.28118991883e-08 2.1603262621e-07 -8.86675280807e-08 2.17791884326e-07 -8.47467392297e-08 2.19577712574e-07 -8.08080720927e-08 2.21338413131e-07 -7.70584783481e-08 2.23093471286e-07 -7.34220554326e-08 2.24843278947e-07 -6.98951744626e-08 2.26586665728e-07 -6.64740483303e-08 2.2832616221e-07 -6.3162058893e-08 2.30067513201e-07 -5.99569531656e-08 2.31811314728e-07 -5.68469944211e-08 2.33562026967e-07 -5.38582265512e-08 2.35315429536e-07 -5.09610221294e-08 2.3706894815e-07 -4.81615476687e-08 2.38816654138e-07 -4.54833684656e-08 2.40538089634e-07 -4.29242729297e-08 2.42276135242e-07 -4.0401526434e-08 2.43957314835e-07 -3.81417436967e-08 2.45653964709e-07 -3.59337701698e-08 2.47364556979e-07 -3.38429723594e-08 2.49090983199e-07 -3.18817393164e-08 2.50835480264e-07 -3.00541642036e-08 2.52597383975e-07 -2.83646507223e-08 2.54375705955e-07 -2.68150586104e-08 2.56169295414e-07 -2.54051040259e-08 2.57976126324e-07 -2.41322339314e-08 2.59789811312e-07 -2.29920446204e-08 2.61611492593e-07 -2.19739373865e-08 2.63418376181e-07 -2.11145059293e-08 2.65245042877e-07 -2.03073686135e-08 2.67072514395e-07 -1.96364188214e-08 2.6890648798e-07 -1.90547520671e-08 2.70742512414e-07 -1.85518713994e-08 2.72577056789e-07 -1.81186621193e-08 2.74408665246e-07 -1.77461357646e-08 2.76236287995e-07 -1.74244259327e-08 2.78059285339e-07 -1.71425129733e-08 2.7987667187e-07 -1.6890087106e-08 2.81688082709e-07 -1.66582039388e-08 2.83493900671e-07 -1.6435869164e-08 2.85290214234e-07 -1.62125684328e-08 2.87070721186e-07 -1.60032901536e-08 2.88850413546e-07 -1.57716046932e-08 2.90628058411e-07 -1.55232735455e-08 2.92404317476e-07 -1.52549305838e-08 2.941823169e-07 -1.49648431592e-08 2.95965570884e-07 -1.46527588878e-08 2.9775573421e-07 -1.43203526613e-08 2.99547758564e-07 -1.39697573361e-08 3.01346159033e-07 -1.3597258237e-08 3.03123274012e-07 -1.32503329158e-08 3.04904766008e-07 -1.28270075766e-08 3.06706194717e-07 -1.24210441009e-08 3.08557164537e-07 -1.19937448427e-08 3.10459002448e-07 -1.15481280954e-08 3.12409909284e-07 -1.10935726032e-08 3.1439893476e-07 -1.06462974061e-08 3.16413497161e-07 -1.02323973621e-08 3.18447473121e-07 -9.86304977658e-09 3.20497579875e-07 -9.55296116182e-09 3.22562168766e-07 -9.3054468652e-09 3.24640735882e-07 -9.12880841424e-09 3.26729894681e-07 -9.02272239636e-09 3.28830274531e-07 -8.99026208385e-09 3.30935813464e-07 -9.02759640569e-09 3.33048544867e-07 -9.13502252601e-09 3.35161140894e-07 -9.30437673972e-09 3.372788456e-07 -9.53448562025e-09 3.39381556349e-07 -9.81978694951e-09 3.41467542298e-07 -1.01923276566e-08 3.43533572482e-07 -1.06243260526e-08 3.45614713943e-07 -1.10825343725e-08 3.47715793967e-07 -1.15329207535e-08 3.49859012917e-07 -1.19312433765e-08 3.5202056793e-07 -1.22837985443e-08 3.54185571311e-07 -1.26111936549e-08 3.56336805462e-07 -1.2927522291e-08 3.58475266463e-07 -1.32367594315e-08 3.60599044534e-07 -1.35354035866e-08 3.62716054794e-07 -1.38190829943e-08 3.64827685813e-07 -1.40814765775e-08 3.66941243848e-07 -1.43198157094e-08 3.69056927496e-07 -1.45294459887e-08 3.71180402715e-07 -1.47099378878e-08 3.73308765807e-07 -1.48575232956e-08 3.75445932921e-07 -1.49751982166e-08 3.77585214312e-07 -1.5057129587e-08 3.79732181848e-07 -1.5114477695e-08 3.8185879446e-07 -1.51486078456e-08 3.8395927996e-07 -1.52386245374e-08 3.86013223262e-07 -1.53543159554e-08 3.88063299846e-07 -1.5537063281e-08 3.90105799602e-07 -1.57130017517e-08 3.9221177482e-07 -1.58669712505e-08 3.94350587354e-07 -1.59494742125e-08 3.96566887457e-07 -1.59870987261e-08 3.98810724496e-07 -1.59588562146e-08 4.01120149285e-07 -1.58997613785e-08 4.03442829698e-07 -1.57911950481e-08 4.05821038953e-07 -1.56637716601e-08 4.08207282245e-07 -1.54988751106e-08 4.10649790649e-07 -1.53228014176e-08 4.13102317116e-07 -1.51174897756e-08 4.15612117158e-07 -1.49052719927e-08 4.18129374564e-07 -1.46691348317e-08 4.206993489e-07 -1.44278770464e-08 4.23271413112e-07 -1.41654850927e-08 4.25892142447e-07 -1.38967798993e-08 4.28513028353e-07 -1.36071601855e-08 4.31182412658e-07 -1.33081688094e-08 4.3385272934e-07 -1.29880031787e-08 4.36571102395e-07 -1.26560122498e-08 4.39289235584e-07 -1.23042687336e-08 4.42051842173e-07 -1.1940923477e-08 4.44810541152e-07 -1.15599679495e-08 4.4760689423e-07 -1.11667099276e-08 4.50392004934e-07 -1.07559456508e-08 4.5320384195e-07 -1.03314401151e-08 4.55994680162e-07 -9.89132478073e-09 4.5880118447e-07 -9.44024153154e-09 4.61579715451e-07 -8.98018192413e-09 4.64367355576e-07 -8.51572259203e-09 4.67126472771e-07 -8.05067229356e-09 4.69895672235e-07 -7.58723779242e-09 4.7264530668e-07 -7.12897834387e-09 4.75416603701e-07 -6.67337243647e-09 4.7818957061e-07 -6.2216404962e-09 4.81008121947e-07 -5.76362628428e-09 4.83862682723e-07 -5.29557965706e-09 4.8679989735e-07 -4.79866240493e-09 4.89822126767e-07 -4.26762929311e-09 4.92978039134e-07 -3.68278292237e-09 4.96280981747e-07 -3.04543268341e-09 4.99773969992e-07 -2.33907783969e-09 5.03480849254e-07 -1.56148677937e-09 5.07429029278e-07 -7.17254035454e-10 5.11643372983e-07 1.74736235145e-10 5.16145578487e-07 1.09632581836e-09 5.20974260279e-07 1.99365356427e-09 5.26152518367e-07 2.76491004062e-09 5.31724914623e-07 3.31342081703e-09 5.37449390093e-07 3.41849791245e-09 5.43240175678e-07 3.19541445075e-09 5.48817297264e-07 2.22030056355e-09 1.77460283374e-10 5.54575667443e-07 3.69403975691e-07 -6.37746649232e-07 2.77333605955e-07 -5.70126064167e-07 2.49463094018e-07 -5.15553213782e-07 2.40464199156e-07 -4.69248143249e-07 2.26726212963e-07 -4.39490603572e-07 2.14679752164e-07 -4.12048151878e-07 2.06127443522e-07 -3.86157069261e-07 2.00328077259e-07 -3.61670115931e-07 1.96483131822e-07 -3.39239340759e-07 1.9422719123e-07 -3.18566887438e-07 1.93023713586e-07 -3.00031157686e-07 1.92588316472e-07 -2.83201901906e-07 1.92685820122e-07 -2.67937916492e-07 1.93170918735e-07 -2.5397964059e-07 1.93939434984e-07 -2.41164154879e-07 1.94932811891e-07 -2.29315711278e-07 1.96098668862e-07 -2.18332753043e-07 1.97408605456e-07 -2.08095330571e-07 1.98829024321e-07 -1.98539926725e-07 2.00338930419e-07 -1.89578968916e-07 2.01909261536e-07 -1.81173244992e-07 2.03531520502e-07 -1.73254612937e-07 2.05196274786e-07 -1.65779399572e-07 2.06836953795e-07 -1.58759802853e-07 2.08477617794e-07 -1.52041746337e-07 2.10102678959e-07 -1.45661130628e-07 2.11746244126e-07 -1.39556575575e-07 2.13412583781e-07 -1.33705241989e-07 2.15100081625e-07 -1.28097275752e-07 2.1679585453e-07 -1.22716778796e-07 2.18489153234e-07 -1.17552528123e-07 2.20170148676e-07 -1.12589966604e-07 2.2183782937e-07 -1.0781607237e-07 2.23493584951e-07 -1.03218918987e-07 2.25140811468e-07 -9.87852358464e-08 2.26786423757e-07 -9.45066927241e-08 2.28407365028e-07 -9.03903935021e-08 2.30067189841e-07 -8.63149929009e-08 2.31686237152e-07 -8.25054117967e-08 2.33331285342e-07 -7.87514114763e-08 2.34985583929e-07 -7.51131105583e-08 2.36647272134e-07 -7.15876025303e-08 2.38319510452e-07 -6.81738005316e-08 2.40000497762e-07 -6.48684706953e-08 2.41691703667e-07 -6.16724099984e-08 2.4339265904e-07 -5.85712288492e-08 2.45097491565e-07 -5.55851276163e-08 2.46813960714e-07 -5.26981707972e-08 2.48546677952e-07 -4.99143705625e-08 2.50280856191e-07 -4.72385173759e-08 2.52033194248e-07 -4.46602051337e-08 2.53741381547e-07 -4.22885128962e-08 2.55485574098e-07 -3.99006900448e-08 2.57223289957e-07 -3.76979751588e-08 2.58974385919e-07 -3.56177715732e-08 2.60743810903e-07 -3.36652427387e-08 2.6252960875e-07 -3.1845568061e-08 2.64329773816e-07 -3.01633782643e-08 2.66142193543e-07 -2.86205470727e-08 2.67964806839e-07 -2.72162961737e-08 2.69793924609e-07 -2.59483472514e-08 2.71626828464e-07 -2.48131674141e-08 2.73446392231e-07 -2.38131542173e-08 2.7527439873e-07 -2.289638395e-08 2.77078444584e-07 -2.21606059527e-08 2.78892290232e-07 -2.14869216845e-08 2.80705596892e-07 -2.08969786022e-08 2.82511461588e-07 -2.0385566854e-08 2.84307059212e-07 -1.99443874125e-08 2.86091729908e-07 -1.95646637741e-08 2.87865263374e-07 -1.92363191957e-08 2.89627434314e-07 -1.89487187399e-08 2.91378102512e-07 -1.869127936e-08 2.9311573031e-07 -1.84528768851e-08 2.94840905876e-07 -1.82259559262e-08 2.9654763462e-07 -1.80183347098e-08 2.98246006767e-07 -1.77763987645e-08 2.99931937613e-07 -1.75421662967e-08 3.01610558496e-07 -1.72944586957e-08 3.03283823867e-07 -1.70289027539e-08 3.04953692985e-07 -1.67437697324e-08 3.06623105732e-07 -1.64393568893e-08 3.08291966143e-07 -1.61177194603e-08 3.09961213122e-07 -1.57816269763e-08 3.11617896188e-07 -1.54410610753e-08 3.13275365292e-07 -1.50523041022e-08 3.14896032976e-07 -1.47309144793e-08 3.1655294587e-07 -1.43504365301e-08 3.18256694749e-07 -1.39377531125e-08 3.20006706918e-07 -1.35090592056e-08 3.21798907279e-07 -1.3074478326e-08 3.23620643467e-07 -1.26560122096e-08 3.25463322164e-07 -1.22736714396e-08 3.27322090597e-07 -1.19403330836e-08 3.29197123851e-07 -1.16642369552e-08 3.31087217914e-07 -1.14528493235e-08 3.32993961989e-07 -1.13069314656e-08 3.34914809472e-07 -1.12327489828e-08 3.36851816223e-07 -1.12230321211e-08 3.38799271038e-07 -1.12860465692e-08 3.40760972437e-07 -1.14051215122e-08 3.42728852191e-07 -1.15928771809e-08 3.44708508895e-07 -1.18233572429e-08 3.46667612912e-07 -1.21481635092e-08 3.48622688184e-07 -1.2523327217e-08 3.50574143753e-07 -1.29709926639e-08 3.52556337449e-07 -1.3405320769e-08 3.54577648532e-07 -1.38268251103e-08 3.56641605562e-07 -1.418798893e-08 3.58719710288e-07 -1.45232768821e-08 3.60798219497e-07 -1.48377841881e-08 3.62863779548e-07 -1.51538655599e-08 3.64918644748e-07 -1.54621577955e-08 3.66961294297e-07 -1.57681696581e-08 3.68999021834e-07 -1.60583948988e-08 3.71032140474e-07 -1.63354130509e-08 3.73067508364e-07 -1.6587927655e-08 3.75104036768e-07 -1.68198118382e-08 3.77147444491e-07 -1.70210269223e-08 3.79192353119e-07 -1.71989696636e-08 3.81244808934e-07 -1.73401536633e-08 3.83292853142e-07 -1.74612856339e-08 3.8534621794e-07 -1.75420860605e-08 3.87349916903e-07 -1.7669776281e-08 3.89333565366e-07 -1.77940732159e-08 3.91253162662e-07 -1.80277143211e-08 3.9318841991e-07 -1.8218967852e-08 3.95117192305e-07 -1.84737789333e-08 3.97122224193e-07 -1.85958678726e-08 3.99148140629e-07 -1.87398176932e-08 4.01255297766e-07 -1.87400793195e-08 4.03375658807e-07 -1.87745131349e-08 4.05565075508e-07 -1.86804867515e-08 4.07755155297e-07 -1.86360934022e-08 4.10004345999e-07 -1.84756882948e-08 4.1225026459e-07 -1.8375623307e-08 4.14555705491e-07 -1.81685967344e-08 4.16861047828e-07 -1.80289688914e-08 4.19226721645e-07 -1.7788250079e-08 4.21591095503e-07 -1.76185745347e-08 4.24011138525e-07 -1.73511598667e-08 4.2642599141e-07 -1.71551992702e-08 4.28892260401e-07 -1.68620914824e-08 4.31352938242e-07 -1.66373498695e-08 4.33864633709e-07 -1.63143314123e-08 4.36373278448e-07 -1.60544080001e-08 4.3893272579e-07 -1.56954328479e-08 4.41490235469e-07 -1.53955473243e-08 4.44096417312e-07 -1.49991387995e-08 4.46700332783e-07 -1.46591871594e-08 4.49348641285e-07 -1.42255395285e-08 4.51991351187e-07 -1.38443193057e-08 4.54670842674e-07 -1.33729060716e-08 4.57340030669e-07 -1.29525434316e-08 4.60040057912e-07 -1.24512870815e-08 4.62729849929e-07 -1.20053776346e-08 4.65450889693e-07 -1.14934558274e-08 4.6816922109e-07 -1.10433930005e-08 4.70926876633e-07 -1.05434323455e-08 4.73698120342e-07 -1.0109354167e-08 4.76525404845e-07 -9.63828928178e-09 4.7939152479e-07 -9.2293605988e-09 4.82337555423e-07 -8.78716539469e-09 4.85354735022e-07 -8.38977378918e-09 4.88482821091e-07 -7.95116348032e-09 4.91722390921e-07 -7.52939228579e-09 4.95110557498e-07 -7.05682479158e-09 4.9865615718e-07 -6.5747343995e-09 5.02389785316e-07 -6.04131585462e-09 5.06335473601e-07 -5.48119029859e-09 5.10509703692e-07 -4.88676816836e-09 5.14938043328e-07 -4.28120137195e-09 5.1964802741e-07 -3.71169281453e-09 5.24693931319e-07 -3.21439315033e-09 5.3011175516e-07 -2.92278857667e-09 5.35937991278e-07 -2.87587066887e-09 5.41860655967e-07 -3.1373334109e-09 5.47870884117e-07 -4.01510974055e-09 5.53684364269e-07 -5.52763545612e-09 -7.97142114899e-09 5.59691612971e-07 3.99039969842e-07 -5.22124011257e-07 3.32500375786e-07 -5.03987208612e-07 2.93645334276e-07 -4.77084621721e-07 2.720169375e-07 -4.47965145803e-07 2.55011269197e-07 -4.22797329401e-07 2.41483008631e-07 -3.98775518973e-07 2.31146492891e-07 -3.76207764574e-07 2.237881946e-07 -3.5444138337e-07 2.18483514373e-07 -3.34285152596e-07 2.14967337634e-07 -3.15386271305e-07 2.12718284576e-07 -2.98063686452e-07 2.11400758783e-07 -2.82144135807e-07 2.10771901972e-07 -2.67520692291e-07 2.10643644749e-07 -2.54057831077e-07 2.10906184294e-07 -2.41598564899e-07 2.11458796963e-07 -2.30045391446e-07 2.12253625858e-07 -2.19275578086e-07 2.1323182481e-07 -2.09225086976e-07 2.14368121477e-07 -1.99798808092e-07 2.15613756748e-07 -1.90953542639e-07 2.16948589702e-07 -1.82620971396e-07 2.18353489967e-07 -1.74758403531e-07 2.19791657249e-07 -1.67344338213e-07 2.21267487543e-07 -1.60279134371e-07 2.22720781695e-07 -1.53621209015e-07 2.24185770494e-07 -1.47255655044e-07 2.25674548268e-07 -1.41155074988e-07 2.2718772946e-07 -1.35317758801e-07 2.28729443402e-07 -1.29710367908e-07 2.30283022154e-07 -1.24333178642e-07 2.31839338582e-07 -1.19163015694e-07 2.33388890647e-07 -1.14195196977e-07 2.34929837503e-07 -1.09413576972e-07 2.36465217794e-07 -1.04808780295e-07 2.37999576329e-07 -1.00371675156e-07 2.39530068387e-07 -9.60869606116e-08 2.41088107073e-07 -9.19219271871e-08 2.42600821061e-07 -8.79974276631e-08 2.4417033515e-07 -8.407159347e-08 2.45738222623e-07 -8.03246867618e-08 2.47324140294e-07 -7.66996123985e-08 2.48925450769e-07 -7.31851286098e-08 2.50543361686e-07 -6.97845240868e-08 2.52175246453e-07 -6.64909388018e-08 2.5382204272e-07 -6.3308157549e-08 2.55490044455e-07 -6.02269476264e-08 2.57171981313e-07 -5.72533805297e-08 2.58872054349e-07 -5.43832640795e-08 2.60593881242e-07 -5.16161202432e-08 2.62333921491e-07 -4.89630858925e-08 2.64061174129e-07 -4.64448423479e-08 2.65836584679e-07 -4.39409205682e-08 2.67570544823e-07 -4.1701185357e-08 2.69335128718e-07 -3.95078299927e-08 2.7111597644e-07 -3.74384657351e-08 2.72913848795e-07 -3.54940373818e-08 2.74727177958e-07 -3.36820944141e-08 2.76553132441e-07 -3.20058188247e-08 2.78388708465e-07 -3.04667491274e-08 2.80230532833e-07 -2.90646475615e-08 2.8207465866e-07 -2.77974718632e-08 2.83911715537e-07 -2.66593852057e-08 2.85743179013e-07 -2.56421501655e-08 2.87538545581e-07 -2.47937688104e-08 2.89347403438e-07 -2.39770572813e-08 2.91142784541e-07 -2.32901766982e-08 2.92926849347e-07 -2.26879346854e-08 2.94695008091e-07 -2.21610422049e-08 2.96443479055e-07 -2.1704598371e-08 2.9817222579e-07 -2.13105100164e-08 2.99881770487e-07 -2.09687608721e-08 3.01572483906e-07 -2.06683952943e-08 3.03244099438e-07 -2.03985372341e-08 3.04897567474e-07 -2.01509926684e-08 3.06529329383e-07 -1.99186532099e-08 3.08148911126e-07 -1.96667748951e-08 3.09733878939e-07 -1.94604144037e-08 3.1131167752e-07 -1.92212610742e-08 3.12878252419e-07 -1.89686096128e-08 3.14433670628e-07 -1.87001345618e-08 3.15980693134e-07 -1.84150265882e-08 3.17521729073e-07 -1.81138300326e-08 3.19057738143e-07 -1.77985035179e-08 3.20583541267e-07 -1.74694147014e-08 3.22104422657e-07 -1.71283257443e-08 3.23587136818e-07 -1.683672147e-08 3.25078402909e-07 -1.64428131292e-08 3.26591434943e-07 -1.60641488913e-08 3.28145966754e-07 -1.56633627874e-08 3.29747647018e-07 -1.5245660822e-08 3.3138615004e-07 -1.48270950267e-08 3.33050583855e-07 -1.44349411457e-08 3.34734994945e-07 -1.40815305421e-08 3.36438459079e-07 -1.37814531497e-08 3.38161125875e-07 -1.35379159273e-08 3.39905758773e-07 -1.33588856635e-08 3.41671087123e-07 -1.32443704703e-08 3.43460600271e-07 -1.31972211654e-08 3.45269468915e-07 -1.32145390905e-08 3.47101462921e-07 -1.32957242187e-08 3.48948398242e-07 -1.34355665776e-08 3.50817266449e-07 -1.36313429245e-08 3.52683719168e-07 -1.38846263745e-08 3.54548082734e-07 -1.42228231473e-08 3.56403094217e-07 -1.46243611496e-08 3.58287955859e-07 -1.50528720031e-08 3.60206201783e-07 -1.54770833363e-08 3.62182597763e-07 -1.58512953185e-08 3.64190127126e-07 -1.618364574e-08 3.66210843784e-07 -1.64954222935e-08 3.68223534004e-07 -1.68031357571e-08 3.70227262663e-07 -1.71121433595e-08 3.72217066266e-07 -1.74212754717e-08 3.74199482879e-07 -1.77268498658e-08 3.76173944984e-07 -1.80228574133e-08 3.78147446749e-07 -1.83058550487e-08 3.80119157132e-07 -1.85703161847e-08 3.82095134706e-07 -1.88147755157e-08 3.84071773686e-07 -1.90344071124e-08 3.86053810973e-07 -1.92301630162e-08 3.88033022203e-07 -1.93963860574e-08 3.90016898134e-07 -1.95401644406e-08 3.91971843025e-07 -1.96678022796e-08 3.93893886154e-07 -1.98448688881e-08 3.95751865312e-07 -2.00529271445e-08 3.97595303027e-07 -2.0319280075e-08 3.9941346672e-07 -2.05835519314e-08 4.01290098375e-07 -2.08146173803e-08 4.03187255595e-07 -2.09756447276e-08 4.05159067229e-07 -2.10792809339e-08 4.07148546583e-07 -2.11181188497e-08 4.09203589964e-07 -2.11138234435e-08 4.11264146462e-07 -2.10622735893e-08 4.13378198097e-07 -2.09803970037e-08 4.15488311777e-07 -2.08643969455e-08 4.17647593072e-07 -2.07268519818e-08 4.19803553343e-07 -2.05654580205e-08 4.22011057754e-07 -2.03885540292e-08 4.24216478044e-07 -2.01948731202e-08 4.26471329769e-07 -1.99886373282e-08 4.28720151632e-07 -1.97697744518e-08 4.31013198282e-07 -1.95380163899e-08 4.33296821742e-07 -1.92945183759e-08 4.35622607455e-07 -1.90348935534e-08 4.37940155614e-07 -1.87620458495e-08 4.40301081749e-07 -1.84675803562e-08 4.42656469758e-07 -1.81570143873e-08 4.45056139601e-07 -1.78212418152e-08 4.47453290968e-07 -1.7469401479e-08 4.49896145257e-07 -1.70918520848e-08 4.52339827391e-07 -1.66989833176e-08 4.54829097468e-07 -1.62796932072e-08 4.57320359278e-07 -1.58467256511e-08 4.59855933779e-07 -1.53902881577e-08 4.62396223805e-07 -1.49279098963e-08 4.6498314547e-07 -1.4451890779e-08 4.67582371798e-07 -1.39831335629e-08 4.70235261913e-07 -1.35139678049e-08 4.72913189774e-07 -1.30662397339e-08 4.7565688389e-07 -1.26302041107e-08 4.78443947249e-07 -1.2226447086e-08 4.81313983488e-07 -1.18398701616e-08 4.84250867782e-07 -1.14870686725e-08 4.87293094419e-07 -1.11450085736e-08 4.90432702782e-07 -1.08274190221e-08 4.93707429264e-07 -1.05059632197e-08 4.9711900341e-07 -1.01970754563e-08 5.00703876867e-07 -9.87451440669e-09 5.04474377116e-07 -9.56076862433e-09 5.08468350956e-07 -9.24681955411e-09 5.1270340307e-07 -8.95305893414e-09 5.1720912078e-07 -8.70059864288e-09 5.22029368316e-07 -8.54498967838e-09 5.27205979438e-07 -8.54426413618e-09 5.32791487817e-07 -8.78406492883e-09 5.38784044465e-07 -9.32376738544e-09 5.44975875199e-07 -1.00711609836e-08 5.51184190612e-07 -1.16020358003e-08 5.57225870562e-07 -1.36972635836e-08 -1.65147311116e-08 5.63549072447e-07 4.25919020119e-07 -4.49352442137e-07 3.72476223289e-07 -4.50886333185e-07 3.33920878055e-07 -4.38839864084e-07 3.07182506001e-07 -4.21533645974e-07 2.86922557788e-07 -4.02805830996e-07 2.71351385784e-07 -3.83509707993e-07 2.59339785304e-07 -3.64329405692e-07 2.50181714112e-07 -3.45733980411e-07 2.43377839498e-07 -3.27806142392e-07 2.38455588387e-07 -3.10790256898e-07 2.34965518924e-07 -2.9487214819e-07 2.3258915253e-07 -2.80014261269e-07 2.31044896588e-07 -2.66201929734e-07 2.30142108399e-07 -2.53344753429e-07 2.29726556932e-07 -2.41367645558e-07 2.29702461146e-07 -2.30179509881e-07 2.29981525069e-07 -2.19712341863e-07 2.30515848403e-07 -2.09888409383e-07 2.31246302632e-07 -2.00654545761e-07 2.32132510708e-07 -1.91954491919e-07 2.33139420626e-07 -1.83729872766e-07 2.3423156401e-07 -1.75955646646e-07 2.35411114131e-07 -1.68573489143e-07 2.3660600234e-07 -1.61621709137e-07 2.37842653527e-07 -1.54957435742e-07 2.39104434872e-07 -1.48613772629e-07 2.40396227883e-07 -1.42546351924e-07 2.41734485578e-07 -1.36723342114e-07 2.43103483938e-07 -1.31134643226e-07 2.44499656135e-07 -1.25763727769e-07 2.45903371755e-07 -1.20603068404e-07 2.47309556346e-07 -1.15639130549e-07 2.48714088856e-07 -1.10858310229e-07 2.50121189127e-07 -1.0625449704e-07 2.51535602498e-07 -1.01815498925e-07 2.52967869796e-07 -9.75353335233e-08 2.54378233487e-07 -9.34342556266e-08 2.55855277975e-07 -8.93626740748e-08 2.57304098535e-07 -8.55569553485e-08 2.58793272354e-07 -8.18183317693e-08 2.60307680723e-07 -7.8207204394e-08 2.61842879107e-07 -7.47084029626e-08 2.63399640079e-07 -7.13273774029e-08 2.64979084845e-07 -6.80554700734e-08 2.66579084617e-07 -6.48925562454e-08 2.68203372592e-07 -6.18351046869e-08 2.69850342824e-07 -5.88839977463e-08 2.71522627863e-07 -5.60380670851e-08 2.73220651452e-07 -5.33004831598e-08 2.74932862317e-07 -5.06722784817e-08 2.76689593698e-07 -4.81235013762e-08 2.78396529394e-07 -4.58065737301e-08 2.80169640706e-07 -4.34568243714e-08 2.81938246952e-07 -4.12874688524e-08 2.8372583388e-07 -3.92340993302e-08 2.85532149893e-07 -3.73024581564e-08 2.87353796799e-07 -3.54989187656e-08 2.8918706172e-07 -3.38280764252e-08 2.91028131029e-07 -3.22915986491e-08 2.92872677617e-07 -3.08893563241e-08 2.94715807281e-07 -2.96180552284e-08 2.96550110937e-07 -2.84793195238e-08 2.98353140866e-07 -2.74780549136e-08 3.00162623952e-07 -2.65355437914e-08 3.01930629261e-07 -2.57821324322e-08 3.03697161937e-07 -2.50755447068e-08 3.05445398059e-07 -2.44497208042e-08 3.07166302205e-07 -2.39000414432e-08 3.08858295272e-07 -2.34209526423e-08 3.10522372174e-07 -2.30050131867e-08 3.12159906184e-07 -2.26423429525e-08 3.13771745642e-07 -2.2322131613e-08 3.15358533719e-07 -2.20341554097e-08 3.16918062018e-07 -2.17664972383e-08 3.18457278391e-07 -2.15071736526e-08 3.19955219106e-07 -2.12917268099e-08 3.21445726904e-07 -2.10186399271e-08 3.22911305839e-07 -2.07668002133e-08 3.24360668309e-07 -2.05049175996e-08 3.2579605951e-07 -2.02297005673e-08 3.272192762e-07 -1.99397646612e-08 3.28632607108e-07 -1.96360799886e-08 3.30037051148e-07 -1.93197659656e-08 3.3143142569e-07 -1.89988705478e-08 3.3280119486e-07 -1.8687707457e-08 3.34180842483e-07 -1.83031846451e-08 3.355209385e-07 -1.80178248703e-08 3.36906737415e-07 -1.76490624481e-08 3.38338360774e-07 -1.72604149623e-08 3.39814048702e-07 -1.68584321466e-08 3.41322530231e-07 -1.64694522911e-08 3.42857249544e-07 -1.61111692034e-08 3.44413687287e-07 -1.57995361231e-08 3.45994417906e-07 -1.55400400517e-08 3.47599528284e-07 -1.53421728057e-08 3.49233149583e-07 -1.52047959632e-08 3.50894102935e-07 -1.51353644188e-08 3.52586002487e-07 -1.51252991787e-08 3.54303823076e-07 -1.51831852504e-08 3.56050743324e-07 -1.52926532691e-08 3.57818513532e-07 -1.54658413735e-08 3.59610519922e-07 -1.5677733283e-08 3.6139209865e-07 -1.59827232436e-08 3.63178870676e-07 -1.63354027711e-08 3.64970642009e-07 -1.67614089681e-08 3.66803593564e-07 -1.71733496315e-08 3.68687309024e-07 -1.75724869826e-08 3.70625248597e-07 -1.79119359281e-08 3.72585840533e-07 -1.82282839749e-08 3.74551649036e-07 -1.85279215648e-08 3.76506456813e-07 -1.88354486172e-08 3.78450783054e-07 -1.91426740904e-08 3.80381345197e-07 -1.9457406205e-08 3.82304488311e-07 -1.97663836427e-08 3.84219463104e-07 -2.00733915401e-08 3.86133120909e-07 -2.03660185053e-08 3.88044078375e-07 -2.06487073373e-08 3.89958741844e-07 -2.09097134601e-08 3.9187196553e-07 -2.11562538956e-08 3.93790154433e-07 -2.13733735116e-08 3.9570170641e-07 -2.15764936409e-08 3.9761562342e-07 -2.17446113725e-08 3.9947543311e-07 -2.1961555099e-08 4.01306577315e-07 -2.21728792371e-08 4.03061094001e-07 -2.24927251561e-08 4.04818567624e-07 -2.27642839207e-08 4.06558260071e-07 -2.30966870529e-08 4.08366452588e-07 -2.32866772267e-08 4.10187324028e-07 -2.34945121316e-08 4.12081967159e-07 -2.35490213078e-08 4.1398247497e-07 -2.36339868488e-08 4.1594585607e-07 -2.35823664052e-08 4.17903699777e-07 -2.35766154338e-08 4.19911455746e-07 -2.34483285425e-08 4.21904716835e-07 -2.33759848008e-08 4.23942031966e-07 -2.31923254656e-08 4.25965667308e-07 -2.30723062375e-08 4.28034358794e-07 -2.28500781962e-08 4.30091060187e-07 -2.26962094916e-08 4.32189661101e-07 -2.24465485265e-08 4.34273196476e-07 -2.22666014998e-08 4.36392637288e-07 -2.19941766502e-08 4.38494940794e-07 -2.17890257884e-08 4.40630904376e-07 -2.14923111427e-08 4.42753211806e-07 -2.12569524571e-08 4.44911354203e-07 -2.09283333023e-08 4.47061747396e-07 -2.06534226498e-08 4.49251564625e-07 -2.02856624391e-08 4.51441579382e-07 -1.99678621479e-08 4.53677229132e-07 -1.95615575051e-08 4.55922645954e-07 -1.92026308186e-08 4.58218951286e-07 -1.87599697872e-08 4.60532071875e-07 -1.83630008923e-08 4.62899577824e-07 -1.78911604058e-08 4.65291690602e-07 -1.74690854272e-08 4.67744590949e-07 -1.69881456968e-08 4.70233722121e-07 -1.65662502083e-08 4.72793458189e-07 -1.61055569934e-08 4.75404269199e-07 -1.57137607771e-08 4.78098229182e-07 -1.53032244745e-08 4.80861382739e-07 -1.49674082579e-08 4.8372281857e-07 -1.46279330664e-08 4.86674574079e-07 -1.43590428035e-08 4.89742250401e-07 -1.40918868665e-08 4.92925283152e-07 -1.38811617486e-08 4.96246716115e-07 -1.36723649978e-08 4.99715950539e-07 -1.35043446869e-08 5.03355819921e-07 -1.334418601e-08 5.07186320318e-07 -1.32192116197e-08 5.11230159601e-07 -1.31366815029e-08 5.15513965303e-07 -1.31074976939e-08 5.20061140495e-07 -1.31842484316e-08 5.24915377034e-07 -1.34031350898e-08 5.30107518724e-07 -1.3853279092e-08 5.35686877105e-07 -1.45748327661e-08 5.41654131375e-07 -1.56531983196e-08 5.47899928597e-07 -1.6951521477e-08 5.54087344204e-07 -1.9066026287e-08 5.60146995262e-07 -2.17595680071e-08 -2.50910388627e-08 5.6660206086e-07 4.50363390278e-07 -3.98404859751e-07 4.0634482932e-07 -4.07130320129e-07 3.70775776206e-07 -4.03643808532e-07 3.4307538235e-07 -3.94089390792e-07 3.21114913649e-07 -3.81205314099e-07 3.03852137542e-07 -3.66461124101e-07 2.90094784773e-07 -3.51077023211e-07 2.7943081579e-07 -3.35298066943e-07 2.7108249302e-07 -3.19837466868e-07 2.64742893685e-07 -3.047906762e-07 2.59980105378e-07 -2.90386707163e-07 2.56462639958e-07 -2.76743769183e-07 2.53910415059e-07 -2.63853451947e-07 2.52117863825e-07 -2.51747056742e-07 2.50922585067e-07 -2.40338820565e-07 2.50204483788e-07 -2.29629658909e-07 2.4987269763e-07 -2.19519213171e-07 2.49857959569e-07 -2.10009413593e-07 2.50095003046e-07 -2.01007098441e-07 2.50538169672e-07 -1.92506979369e-07 2.51128134313e-07 -1.84431497358e-07 2.51849834512e-07 -1.76768445243e-07 2.5265162117e-07 -1.69512151306e-07 2.53558395038e-07 -1.62555383385e-07 2.54493693343e-07 -1.55990910165e-07 2.55491146958e-07 -1.49692772202e-07 2.56541593994e-07 -1.43664503943e-07 2.57650802496e-07 -1.37872078457e-07 2.58808294487e-07 -1.32312603884e-07 2.60002456309e-07 -1.26964940299e-07 2.61215664191e-07 -1.21827001211e-07 2.62443369824e-07 -1.16877371975e-07 2.63676378779e-07 -1.12112017287e-07 2.64922349001e-07 -1.07520194296e-07 2.66185910671e-07 -1.03098551767e-07 2.67458170351e-07 -9.88320918455e-08 2.68787168096e-07 -9.46790191549e-08 2.70070756869e-07 -9.07811168531e-08 2.71437012269e-07 -8.6895176763e-08 2.72818509118e-07 -8.31808953915e-08 2.74229135021e-07 -7.95937704058e-08 2.75670734767e-07 -7.61216047544e-08 2.77138108662e-07 -7.27641441823e-08 2.78633310395e-07 -6.95189104352e-08 2.80156757552e-07 -6.63830139783e-08 2.81709717688e-07 -6.33540109996e-08 2.83292424213e-07 -6.04320899882e-08 2.84906461886e-07 -5.7617253087e-08 2.86550693222e-07 -5.49092434927e-08 2.88233560112e-07 -5.23098336465e-08 2.89898014051e-07 -4.98584081996e-08 2.91642087686e-07 -4.7402062318e-08 2.93349800011e-07 -4.5195167551e-08 2.95095659954e-07 -4.30439094261e-08 2.96863838397e-07 -4.10035617581e-08 2.986495217e-07 -3.90846943134e-08 3.00450975132e-07 -3.72918163796e-08 3.02264550001e-07 -3.56279937603e-08 3.04085542583e-07 -3.40949392959e-08 3.05909580271e-07 -3.26919352059e-08 3.07729241691e-07 -3.14194431491e-08 3.09530225285e-07 -3.02721044312e-08 3.113243694e-07 -2.92298268001e-08 3.13061561995e-07 -2.8370707323e-08 3.14817255321e-07 -2.75164321634e-08 3.16542486924e-07 -2.67888641458e-08 3.18240211918e-07 -2.61376084899e-08 3.19903241222e-07 -2.55613920705e-08 3.21529492441e-07 -2.50553390398e-08 3.23121074799e-07 -2.46117832053e-08 3.24680280752e-07 -2.42229520994e-08 3.26208352375e-07 -2.38772625717e-08 3.27705690643e-07 -2.35637349378e-08 3.29174946912e-07 -2.32758615764e-08 3.30605670523e-07 -2.30125013202e-08 3.32025869932e-07 -2.27113725266e-08 3.33395526805e-07 -2.24815308939e-08 3.34754501431e-07 -2.22153430674e-08 3.36096187108e-07 -2.19407327375e-08 3.37420972415e-07 -2.16552901941e-08 3.3873173566e-07 -2.13588663716e-08 3.40031558931e-07 -2.10515865716e-08 3.4132102133e-07 -2.07370351294e-08 3.42592251221e-07 -2.04173192349e-08 3.43868467647e-07 -2.00764104266e-08 3.45093024731e-07 -1.98205800804e-08 3.46360577393e-07 -1.94264758243e-08 3.47646878498e-07 -1.9068402769e-08 3.48981959512e-07 -1.86912643454e-08 3.50358433817e-07 -1.83107436181e-08 3.51766804386e-07 -1.79516350133e-08 3.53200368627e-07 -1.76292297842e-08 3.54660342853e-07 -1.73575242624e-08 3.5614676849e-07 -1.71401928297e-08 3.57664540097e-07 -1.69833290332e-08 3.59212621885e-07 -1.68884608988e-08 3.60796528986e-07 -1.68572101967e-08 3.62411215832e-07 -1.68871779146e-08 3.64061352826e-07 -1.69745253661e-08 3.65736641423e-07 -1.7117556419e-08 3.67444939538e-07 -1.73089946894e-08 3.69155505312e-07 -1.75581388501e-08 3.708711055e-07 -1.78820462369e-08 3.72578672373e-07 -1.82691297132e-08 3.74322971783e-07 -1.8677794004e-08 3.7610586887e-07 -1.90819817194e-08 3.77955781991e-07 -1.94335529559e-08 3.79842608058e-07 -1.97440350089e-08 3.81746562191e-07 -2.00346147628e-08 3.83642161955e-07 -2.0325538132e-08 3.85527534961e-07 -2.06226390132e-08 3.87395506351e-07 -2.09274958671e-08 3.89252775767e-07 -2.12370364582e-08 3.91097334094e-07 -2.1547160182e-08 3.92936815e-07 -2.18541737345e-08 3.94769505003e-07 -2.21533011778e-08 3.96602955538e-07 -2.2442615615e-08 3.98433293534e-07 -2.27174394426e-08 4.00267250685e-07 -2.29765314626e-08 4.02095397885e-07 -2.32159979239e-08 4.03928605612e-07 -2.34376417734e-08 4.05728319385e-07 -2.36553009476e-08 4.07494859034e-07 -2.39115303717e-08 4.09183863851e-07 -2.42063142963e-08 4.10852281646e-07 -2.45427687102e-08 4.12477514332e-07 -2.48839601822e-08 4.1415809347e-07 -2.51727134251e-08 4.15844521278e-07 -2.53958727293e-08 4.17603603632e-07 -2.55411536351e-08 4.19365010634e-07 -2.56268491045e-08 4.21189641646e-07 -2.5649853586e-08 4.2300594409e-07 -2.56320074881e-08 4.24873368694e-07 -2.55645994206e-08 4.26720711981e-07 -2.54698814922e-08 4.28608694551e-07 -2.53344438671e-08 4.30471825339e-07 -2.51829534667e-08 4.32374677586e-07 -2.49984474594e-08 4.34255200526e-07 -2.48074798315e-08 4.36175769356e-07 -2.45891445343e-08 4.38073278555e-07 -2.43714920571e-08 4.40006724508e-07 -2.41289912165e-08 4.41914220728e-07 -2.3890810016e-08 4.43854643097e-07 -2.36269670767e-08 4.45771008308e-07 -2.33684244887e-08 4.47723394828e-07 -2.30804895629e-08 4.49658963824e-07 -2.27948474161e-08 4.51636368783e-07 -2.24742269011e-08 4.53606261428e-07 -2.21538367603e-08 4.55626374134e-07 -2.17977921516e-08 4.57651913309e-07 -2.14439552332e-08 4.59738309245e-07 -2.10558766154e-08 4.6184250686e-07 -2.0672662352e-08 4.64015346887e-07 -2.02578418396e-08 4.66216109316e-07 -1.98544468862e-08 4.68493486127e-07 -1.94282227109e-08 4.70811483865e-07 -1.90265884617e-08 4.73217102007e-07 -1.86167453872e-08 4.75678703256e-07 -1.8247683189e-08 4.7824025698e-07 -1.78861684594e-08 4.80874253281e-07 -1.75806115709e-08 4.8362095368e-07 -1.72950816015e-08 4.86457040293e-07 -1.70752577245e-08 4.89418473479e-07 -1.68791424325e-08 4.92486600893e-07 -1.67490813745e-08 4.9569352481e-07 -1.66387638888e-08 4.99028052731e-07 -1.6591041533e-08 5.02521780279e-07 -1.65626261793e-08 5.06176192267e-07 -1.65996269893e-08 5.10022454284e-07 -1.66736960979e-08 5.14071072571e-07 -1.68466170566e-08 5.18349312923e-07 -1.71088152004e-08 5.22882459501e-07 -1.75360939818e-08 5.2770100342e-07 -1.81708721818e-08 5.32847467921e-07 -1.90828739527e-08 5.38360199251e-07 -2.03387886445e-08 5.44273022287e-07 -2.19770516521e-08 5.50507747579e-07 -2.39443911809e-08 5.56690644057e-07 -2.66521725819e-08 5.62795687369e-07 -2.99793590067e-08 -3.39733298886e-08 5.69384692542e-07 4.74779218986e-07 -3.59695877273e-07 4.37896305075e-07 -3.70719446243e-07 4.05917295992e-07 -3.71930580262e-07 3.78946560176e-07 -3.6758406983e-07 3.5669252149e-07 -3.59221009703e-07 3.38317900954e-07 -3.48599838352e-07 3.23440677017e-07 -3.36425931384e-07 3.11309106706e-07 -3.23609819284e-07 3.01589687939e-07 -3.10512638366e-07 2.93905982373e-07 -2.97401950971e-07 2.87840972905e-07 -2.84656018488e-07 2.83155668076e-07 -2.72265881679e-07 2.79513414724e-07 -2.60472628329e-07 2.76769967874e-07 -2.49157668225e-07 2.74684936465e-07 -2.38477491577e-07 2.73199788461e-07 -2.28262780409e-07 2.7214026021e-07 -2.18649033097e-07 2.7149801194e-07 -2.09454092345e-07 2.71135958296e-07 -2.00798363876e-07 2.71058406111e-07 -1.92502072058e-07 2.71157138327e-07 -1.8463909061e-07 2.71408824733e-07 -1.77127074743e-07 2.71824554063e-07 -1.69947747633e-07 2.72304297518e-07 -1.63171683996e-07 2.7290941623e-07 -1.56639671871e-07 2.73579914559e-07 -1.5043413852e-07 2.74338767302e-07 -1.44453469894e-07 2.75170461232e-07 -1.38727932782e-07 2.76072071251e-07 -1.33200872246e-07 2.77020429686e-07 -1.27908038267e-07 2.78007593827e-07 -1.22795240955e-07 2.79016457749e-07 -1.17890275161e-07 2.80042098401e-07 -1.13147068992e-07 2.81088590376e-07 -1.08582415303e-07 2.82164962964e-07 -1.04181701208e-07 2.83284048885e-07 -9.99369517893e-08 2.84383801842e-07 -9.58903062409e-08 2.85585989634e-07 -9.18625495935e-08 2.86768843007e-07 -8.80880283542e-08 2.8801276857e-07 -8.43971339337e-08 2.89293103775e-07 -8.08310908327e-08 2.90606607405e-07 -7.73858402466e-08 2.91952661145e-07 -7.40593972882e-08 2.93332684561e-07 -7.08461774274e-08 2.94746966562e-07 -6.77434249615e-08 2.96196540836e-07 -6.47493741404e-08 2.97681936765e-07 -6.18635245577e-08 2.9920411725e-07 -5.90857662821e-08 3.00764167575e-07 -5.64187601092e-08 3.02346083778e-07 -5.38589178675e-08 3.03991718841e-07 -5.13726214282e-08 3.05593193429e-07 -4.9113873077e-08 3.0727364884e-07 -4.68336930409e-08 3.0896257364e-07 -4.47069522239e-08 3.10671768229e-07 -4.26907915814e-08 3.12402153044e-07 -4.07904268612e-08 3.14150012643e-07 -3.90111106461e-08 3.15911073941e-07 -3.73561612769e-08 3.17680852976e-07 -3.58276585416e-08 3.19453287388e-07 -3.44249911571e-08 3.21220156372e-07 -3.31469018063e-08 3.22976863611e-07 -3.19920111959e-08 3.24687296751e-07 -3.0979020286e-08 3.26418099558e-07 -2.99954260686e-08 3.2809621968e-07 -2.91970141132e-08 3.29766229375e-07 -2.84386096423e-08 3.31402243863e-07 -2.77577630481e-08 3.32995781145e-07 -2.71506898324e-08 3.34547189243e-07 -2.66142496755e-08 3.36059050751e-07 -2.6141442536e-08 3.37535709252e-07 -2.57226019156e-08 3.38978751411e-07 -2.53486580909e-08 3.40389153691e-07 -2.50101498651e-08 3.41763471674e-07 -2.46943027818e-08 3.43117070912e-07 -2.43828323259e-08 3.44411061544e-07 -2.41406329449e-08 3.45705123498e-07 -2.38283124833e-08 3.46968388927e-07 -2.35460668097e-08 3.48212801537e-07 -2.32590048309e-08 3.49441192373e-07 -2.29638182649e-08 3.50655571445e-07 -2.26597926331e-08 3.51858517418e-07 -2.23477903275e-08 3.53049028658e-07 -2.20300008986e-08 3.54234073341e-07 -2.17109736614e-08 3.55386313655e-07 -2.14173741116e-08 3.56577849326e-07 -2.10243071472e-08 3.57734618237e-07 -2.07494634738e-08 3.5894851578e-07 -2.04013511507e-08 3.60210949428e-07 -2.00387148869e-08 3.61508159951e-07 -1.96878281229e-08 3.62834716504e-07 -1.93646997869e-08 3.6418598677e-07 -1.90879420932e-08 3.6556587982e-07 -1.88603203029e-08 3.66974530001e-07 -1.86924971398e-08 3.68416328185e-07 -1.8581710059e-08 3.69890785434e-07 -1.85372426596e-08 3.71402665246e-07 -1.85492972652e-08 3.72947913411e-07 -1.86248920298e-08 3.74527536582e-07 -1.87485809509e-08 3.76134602784e-07 -1.89300973724e-08 3.77768405882e-07 -1.91467718817e-08 3.79394321938e-07 -1.94477827774e-08 3.81024017001e-07 -1.97889090008e-08 3.82658408061e-07 -2.01968539945e-08 3.84335166646e-07 -2.05871069506e-08 3.86066665556e-07 -2.09605679194e-08 3.87855887645e-07 -2.12726819544e-08 3.89669367704e-07 -2.15609259428e-08 3.91486493763e-07 -2.18339500176e-08 3.93288993548e-07 -2.21182692749e-08 3.95075915401e-07 -2.24073769021e-08 3.96843248925e-07 -2.27110095724e-08 3.98597206908e-07 -2.30171175078e-08 4.00336926565e-07 -2.33312652131e-08 4.02069612196e-07 -2.36405338062e-08 4.03793944364e-07 -2.39509629824e-08 4.0551760871e-07 -2.42502365661e-08 4.07236573884e-07 -2.45461016766e-08 4.0895763235e-07 -2.48230293485e-08 4.10671394657e-07 -2.50942765047e-08 4.12385273652e-07 -2.53426150494e-08 4.14047418765e-07 -2.56385699796e-08 4.15674087142e-07 -2.59302050777e-08 4.17218805223e-07 -2.63206732441e-08 4.18753351419e-07 -2.6661149885e-08 4.2026331016e-07 -2.70516069615e-08 4.21831754708e-07 -2.72956209597e-08 4.23408266453e-07 -2.75457451606e-08 4.25048668636e-07 -2.76377350265e-08 4.26689706974e-07 -2.77487344505e-08 4.28383782871e-07 -2.77199092352e-08 4.30069332774e-07 -2.77250259368e-08 4.31795492773e-07 -2.7605815578e-08 4.33502640224e-07 -2.75293616621e-08 4.35239067628e-07 -2.73413609235e-08 4.36952662742e-07 -2.72035040515e-08 4.38693950856e-07 -2.69665507899e-08 4.40416163869e-07 -2.67862268304e-08 4.42166364643e-07 -2.65178365554e-08 4.43898759023e-07 -2.63101072947e-08 4.45655438715e-07 -2.60224915282e-08 4.47393584296e-07 -2.57955634729e-08 4.49153350795e-07 -2.54939833109e-08 4.50898788649e-07 -2.52498509415e-08 4.52669675398e-07 -2.49328832799e-08 4.54435536526e-07 -2.4665424682e-08 4.56233338347e-07 -2.43243681753e-08 4.5803731876e-07 -2.40267851827e-08 4.59883496953e-07 -2.3660006976e-08 4.6175195218e-07 -2.33356189259e-08 4.6367613921e-07 -2.29489571566e-08 4.6563826825e-07 -2.26038805515e-08 4.67666302584e-07 -2.22051626911e-08 4.69745017355e-07 -2.18506442775e-08 4.7189964321e-07 -2.14569749632e-08 4.74119641746e-07 -2.11160900336e-08 4.76428021247e-07 -2.07559298609e-08 4.78817929133e-07 -2.04596052039e-08 4.81308792062e-07 -2.01650898723e-08 4.83897038036e-07 -1.99433614007e-08 4.86597604972e-07 -1.97419889575e-08 4.89410490645e-07 -1.96156275281e-08 4.92345269281e-07 -1.95213569243e-08 4.9540634985e-07 -1.94952336012e-08 4.98598361154e-07 -1.95085182511e-08 5.01932702545e-07 -1.95827314094e-08 5.05414072451e-07 -1.97092965538e-08 5.09064884338e-07 -1.99005957271e-08 5.12893006417e-07 -2.01765332362e-08 5.16924512735e-07 -2.05586482264e-08 5.21170144269e-07 -2.1100935677e-08 5.25667337117e-07 -2.18378208208e-08 5.30439480435e-07 -2.28684893352e-08 5.3554087606e-07 -2.42147988893e-08 5.41018449132e-07 -2.59926884139e-08 5.46916191488e-07 -2.81942538004e-08 5.53167625446e-07 -3.08382474147e-08 5.59406815945e-07 -3.41762640646e-08 5.6558598851e-07 -3.81830335085e-08 -4.28726348316e-08 5.7228529316e-07 5.00856985077e-07 -3.28684234747e-07 4.69599743637e-07 -3.39794084902e-07 4.40838132156e-07 -3.4362587369e-07 4.15436326709e-07 -3.42507302102e-07 3.93424705974e-07 -3.37655544669e-07 3.74733942332e-07 -3.30231106589e-07 3.58971820946e-07 -3.21082656868e-07 3.45797207799e-07 -3.10845267133e-07 3.34933676589e-07 -2.99929640747e-07 3.25917389195e-07 -2.88828998728e-07 3.18671045619e-07 -2.77631237708e-07 3.12730419982e-07 -2.66682098826e-07 3.0803841858e-07 -2.55933216637e-07 3.04196320732e-07 -2.45615910021e-07 3.01219820642e-07 -2.35613197563e-07 2.98788528504e-07 -2.26086131742e-07 2.96982202341e-07 -2.16912151549e-07 2.95541440184e-07 -2.0820950582e-07 2.94561003056e-07 -1.99843697768e-07 2.93844715595e-07 -1.91883561516e-07 2.93392629259e-07 -1.84238228144e-07 2.93133505918e-07 -1.76932295123e-07 2.93015049757e-07 -1.69973507594e-07 2.93093446233e-07 -1.63245171982e-07 2.93248150165e-07 -1.56899586768e-07 2.93562813342e-07 -1.50731554153e-07 2.93956357225e-07 -1.44877289068e-07 2.94477335912e-07 -1.39173239321e-07 2.95055868754e-07 -1.33759154025e-07 2.95729733465e-07 -1.28477483608e-07 2.964303046e-07 -1.23465279479e-07 2.97194451985e-07 -1.18570449217e-07 2.97972038427e-07 -1.13903656752e-07 2.98786634979e-07 -1.09385439278e-07 2.99643266874e-07 -1.05034694789e-07 3.00524764367e-07 -1.00833778089e-07 3.01495140801e-07 -9.67369121988e-08 3.02432638917e-07 -9.28936663332e-08 3.03472477919e-07 -8.90788542755e-08 3.04543637218e-07 -8.54235312519e-08 3.05657987875e-07 -8.18931226211e-08 3.06813327912e-07 -7.84848674261e-08 3.08007719571e-07 -7.51946614744e-08 3.09242129742e-07 -7.201946152e-08 3.10517066381e-07 -6.89555982891e-08 3.11832245026e-07 -6.60018687832e-08 3.13188131751e-07 -6.31574823297e-08 3.14585054349e-07 -6.04226627831e-08 3.16025283313e-07 -5.77918729034e-08 3.17514190252e-07 -5.52724171998e-08 3.18988861266e-07 -5.29044923895e-08 3.20566128162e-07 -5.05202389548e-08 3.22118473381e-07 -4.83609709402e-08 3.23715413673e-07 -4.62574292987e-08 3.25335595488e-07 -4.42637132439e-08 3.2697647421e-07 -4.23841852085e-08 3.2863686476e-07 -4.06221889549e-08 3.30312474857e-07 -3.89812086024e-08 3.31999372951e-07 -3.74600870929e-08 3.33690358111e-07 -3.60615877088e-08 3.35378633e-07 -3.47832949123e-08 3.37042745827e-07 -3.36251289117e-08 3.38712267035e-07 -3.25522061727e-08 3.40319284199e-07 -3.16628375192e-08 3.41953276269e-07 -3.07697929105e-08 3.43549827799e-07 -2.99876898881e-08 3.45107051411e-07 -2.92796296518e-08 3.46618319399e-07 -2.86452062932e-08 3.48084765322e-07 -2.80802514395e-08 3.49510658925e-07 -2.75753473067e-08 3.50900178089e-07 -2.71264900272e-08 3.52255701252e-07 -2.67232884123e-08 3.53577781802e-07 -2.63542270379e-08 3.54871306735e-07 -2.60136076563e-08 3.56114802047e-07 -2.57113026981e-08 3.57358297647e-07 -2.53589209145e-08 3.5854497725e-07 -2.50912799822e-08 3.59723141532e-07 -2.47930308787e-08 3.60884799349e-07 -2.44913791211e-08 3.62029500958e-07 -2.41852853629e-08 3.63160822326e-07 -2.38737651383e-08 3.64280748849e-07 -2.35576752473e-08 3.65390775075e-07 -2.32403556145e-08 3.66481568175e-07 -2.29222639921e-08 3.67591938516e-07 -2.25774021113e-08 3.68651974155e-07 -2.23347882459e-08 3.69776012004e-07 -2.19544153548e-08 3.7092740774e-07 -2.16126719098e-08 3.72117563858e-07 -2.12721978678e-08 3.73340877289e-07 -2.09508839204e-08 3.74587056409e-07 -2.06657906126e-08 3.75859426611e-07 -2.04285189692e-08 3.77157548885e-07 -2.02449979161e-08 3.78487704849e-07 -2.01175377243e-08 3.79846936935e-07 -2.00516899083e-08 3.81243243993e-07 -2.00464156619e-08 3.82672380376e-07 -2.01015371631e-08 3.84139835872e-07 -2.02083254582e-08 3.85633187079e-07 -2.03704278642e-08 3.87161593156e-07 -2.05743348117e-08 3.88690430032e-07 -2.0835392699e-08 3.90224828367e-07 -2.11496013679e-08 3.91743936142e-07 -2.15230954682e-08 3.93298318161e-07 -2.19061898362e-08 3.94889309158e-07 -2.22822462594e-08 3.965499908e-07 -2.26015474035e-08 3.9824740344e-07 -2.28794894933e-08 3.99960612762e-07 -2.31356052974e-08 4.01660687317e-07 -2.33940230029e-08 4.03345387828e-07 -2.36608626222e-08 4.05005590607e-07 -2.39412445403e-08 4.06648996266e-07 -2.42322657984e-08 4.08272663719e-07 -2.45330245522e-08 4.09885712009e-07 -2.48393551326e-08 4.11485454155e-07 -2.51489054431e-08 4.13081519436e-07 -2.54586707904e-08 4.14669998923e-07 -2.57661201994e-08 4.16260181512e-07 -2.60680717794e-08 4.17842149472e-07 -2.63635919654e-08 4.19430417608e-07 -2.6649397347e-08 4.20985238801e-07 -2.69478048623e-08 4.22512806319e-07 -2.72724161256e-08 4.23955618198e-07 -2.76434236616e-08 4.25376820952e-07 -2.80329343651e-08 4.2674125052e-07 -2.84352811857e-08 4.28161099125e-07 -2.8763649044e-08 4.29575659883e-07 -2.90352100065e-08 4.31064314153e-07 -2.9205740376e-08 4.32544007868e-07 -2.93245200439e-08 4.3408746788e-07 -2.93575885441e-08 4.35612900443e-07 -2.93578274965e-08 4.37191902494e-07 -2.92856190049e-08 4.38743388002e-07 -2.91938035332e-08 4.40335739169e-07 -2.90385128109e-08 4.41892047782e-07 -2.88748514981e-08 4.43482987843e-07 -2.86568538879e-08 4.45039277049e-07 -2.84420809353e-08 4.466317241e-07 -2.81821784524e-08 4.48193452981e-07 -2.79362763746e-08 4.4979077847e-07 -2.76525412705e-08 4.51357808924e-07 -2.73906571791e-08 4.52957494484e-07 -2.70941855048e-08 4.54528559846e-07 -2.68239155325e-08 4.56134334393e-07 -2.65196037264e-08 4.57720113045e-07 -2.62418110331e-08 4.59347634131e-07 -2.5925584541e-08 4.60966178521e-07 -2.56323402903e-08 4.62635443407e-07 -2.52981252152e-08 4.64310857294e-07 -2.49886276916e-08 4.66051630328e-07 -2.46411348845e-08 4.67817718567e-07 -2.43231685874e-08 4.69663553764e-07 -2.39706875264e-08 4.71550007909e-07 -2.36540319395e-08 4.73526927128e-07 -2.33098785823e-08 4.75558825057e-07 -2.3012939922e-08 4.77693386103e-07 -2.27013682057e-08 4.79899387554e-07 -2.24526258693e-08 4.82220969173e-07 -2.22047569614e-08 4.8463006383e-07 -2.20353368683e-08 4.87166019563e-07 -2.18805177651e-08 4.8980386741e-07 -2.18162736593e-08 4.9257754499e-07 -2.17744776019e-08 4.9546537845e-07 -2.1828596819e-08 4.9849580966e-07 -2.19059342977e-08 5.01651509682e-07 -2.20814398985e-08 5.04958147328e-07 -2.22844638776e-08 5.08408491814e-07 -2.25950833833e-08 5.12030519899e-07 -2.29552520322e-08 5.15829426006e-07 -2.34555821816e-08 5.1982699597e-07 -2.4074988411e-08 5.24038012906e-07 -2.49179763678e-08 5.28490223717e-07 -2.60078997849e-08 5.33222254901e-07 -2.74594232649e-08 5.38281433439e-07 -2.93008066012e-08 5.43739721339e-07 -3.16353290367e-08 5.49633083753e-07 -3.44719175891e-08 5.55898512266e-07 -3.78209571599e-08 5.62183949924e-07 -4.18618251824e-08 5.68412479163e-07 -4.65644064491e-08 -5.19201630625e-08 5.75211372465e-07 5.29433189026e-07 -3.02625635028e-07 5.02378279135e-07 -3.13114613838e-07 4.76569017221e-07 -3.1813611462e-07 4.5283055757e-07 -3.19098947107e-07 4.31568760354e-07 -3.16711932068e-07 4.12882496552e-07 -3.11868629435e-07 3.96651401934e-07 -3.05185904596e-07 3.8275402302e-07 -2.9721425271e-07 3.70836661307e-07 -2.88425605561e-07 3.60825323638e-07 -2.79081916997e-07 3.52351406252e-07 -2.69511735077e-07 3.45318848173e-07 -2.59859069612e-07 3.39400664625e-07 -2.50312979965e-07 3.3453158522e-07 -2.40939958318e-07 3.30468635899e-07 -2.31775312772e-07 3.27139669719e-07 -2.22922384141e-07 3.24398805951e-07 -2.14332500143e-07 3.22193316271e-07 -2.06102216472e-07 3.20441396632e-07 -1.98146421376e-07 3.19070204671e-07 -1.90522734756e-07 3.17980312215e-07 -1.83184515317e-07 3.17103988798e-07 -1.76147677509e-07 3.1648602238e-07 -1.69339034751e-07 3.15961883994e-07 -1.62891446447e-07 3.15709672117e-07 -1.56577644688e-07 3.15520550096e-07 -1.50623932103e-07 3.15567116283e-07 -1.4477202637e-07 3.15647391143e-07 -1.39260156282e-07 3.15928541946e-07 -1.33835327767e-07 3.16211250035e-07 -1.28726858933e-07 3.1665185777e-07 -1.23698239137e-07 3.17079695252e-07 -1.18968967948e-07 3.1759257264e-07 -1.14331218367e-07 3.18132338381e-07 -1.09899612076e-07 3.18728401621e-07 -1.05597305892e-07 3.19400133367e-07 -1.01453502252e-07 3.20066073891e-07 -9.74926715745e-08 3.20864775751e-07 -9.35743979033e-08 3.21668506723e-07 -8.98580010703e-08 3.22540391144e-07 -8.62411889003e-08 3.23462887718e-07 -8.27480476172e-08 3.24431623938e-07 -7.93800300675e-08 3.25447105019e-07 -7.61323594366e-08 3.26509643886e-07 -7.30004578079e-08 3.27617762478e-07 -6.9981030367e-08 3.2877150385e-07 -6.70730063932e-08 3.29970461977e-07 -6.42751995345e-08 3.31218169857e-07 -6.15848970781e-08 3.3251218646e-07 -5.90073094851e-08 3.33832696741e-07 -5.65380288984e-08 3.35245477877e-07 -5.41208922066e-08 3.36613385811e-07 -5.19287512877e-08 3.38078296215e-07 -4.97160858879e-08 3.39551571594e-07 -4.76478032776e-08 3.41047816919e-07 -4.56869878338e-08 3.42568943463e-07 -4.38360723871e-08 3.44111040119e-07 -4.2097687718e-08 3.45672313332e-07 -4.04734609337e-08 3.47245817455e-07 -3.89651621875e-08 3.48827126664e-07 -3.75721751235e-08 3.50403692223e-07 -3.62926634994e-08 3.51977787762e-07 -3.51269951906e-08 3.53504892781e-07 -3.40990794675e-08 3.55073116497e-07 -3.30864941775e-08 3.56593681267e-07 -3.22367845453e-08 3.58100530664e-07 -3.14287502285e-08 3.59565780835e-07 -3.06946456272e-08 3.60981759542e-07 -3.00339242077e-08 3.62354386495e-07 -2.94386068526e-08 3.63684770853e-07 -2.8907315725e-08 3.64980957673e-07 -2.84305892019e-08 3.66246259356e-07 -2.80007530224e-08 3.67481791793e-07 -2.76083029774e-08 3.68678888328e-07 -2.72434573076e-08 3.69863728128e-07 -2.68802602756e-08 3.70981143823e-07 -2.66033721708e-08 3.72109115486e-07 -2.62556985762e-08 3.73207538119e-07 -2.59403559369e-08 3.74288513525e-07 -2.56275854961e-08 3.75354969276e-07 -2.53117649639e-08 3.76408061747e-07 -2.49932039434e-08 3.77449017203e-07 -2.4671255107e-08 3.78477271188e-07 -2.43475769274e-08 3.79503662131e-07 -2.40282111689e-08 3.80496580677e-07 -2.37423714897e-08 3.81549085122e-07 -2.33433497811e-08 3.82572535628e-07 -2.30733698695e-08 3.83653366115e-07 -2.27444657661e-08 3.8476823415e-07 -2.24262530372e-08 3.8590572114e-07 -2.21350133935e-08 3.87061964901e-07 -2.18897265956e-08 3.88241559814e-07 -2.16929429099e-08 3.89446961163e-07 -2.15528580967e-08 3.90680670888e-07 -2.14690412161e-08 3.91943535622e-07 -2.14497516734e-08 3.93241179794e-07 -2.14878218791e-08 3.94574082332e-07 -2.1584982619e-08 3.9593916916e-07 -2.17326471933e-08 3.97333447323e-07 -2.19338698686e-08 3.98751259447e-07 -2.21733890634e-08 4.00166795382e-07 -2.24768403449e-08 4.01577838776e-07 -2.28106714033e-08 4.02990410021e-07 -2.3191011873e-08 4.04439655115e-07 -2.35496960821e-08 4.05944132335e-07 -2.38848661158e-08 4.07506692694e-07 -2.41586603497e-08 4.0909340067e-07 -2.440602148e-08 4.10680131687e-07 -2.46385306785e-08 4.12247873659e-07 -2.48826561545e-08 4.13794093802e-07 -2.51352412477e-08 4.15315168063e-07 -2.54069165584e-08 4.16817139297e-07 -2.56882026213e-08 4.18299874373e-07 -2.59859469907e-08 4.19770434189e-07 -2.62884499648e-08 4.21228371485e-07 -2.66021290771e-08 4.22681822144e-07 -2.69152314087e-08 4.24128345937e-07 -2.7236312881e-08 4.25574328885e-07 -2.75522537894e-08 4.27014884415e-07 -2.78720566567e-08 4.28454140119e-07 -2.81872384726e-08 4.29853461084e-07 -2.85451423984e-08 4.31215290918e-07 -2.89074332603e-08 4.32501142459e-07 -2.93455764065e-08 4.33764355558e-07 -2.97406752761e-08 4.35004473802e-07 -3.01643216169e-08 4.3629229281e-07 -3.04516808472e-08 4.37591751531e-07 -3.07251443174e-08 4.38944833793e-07 -3.08485743013e-08 4.40301356069e-07 -3.09694351471e-08 4.41700174183e-07 -3.09581823705e-08 4.43095250834e-07 -3.09577170503e-08 4.44522798464e-07 -3.08407562489e-08 4.45938296068e-07 -3.0741739119e-08 4.47373147591e-07 -3.05399421421e-08 4.48788061083e-07 -3.03628382326e-08 4.50215729094e-07 -3.00979142543e-08 4.5162548492e-07 -2.98658266987e-08 4.5304948734e-07 -2.95614306232e-08 4.5446077111e-07 -2.92974611312e-08 4.55886342089e-07 -2.89752112085e-08 4.5730140836e-07 -2.86974784553e-08 4.5872836639e-07 -2.83716575698e-08 4.60148137048e-07 -2.80907288627e-08 4.61582748575e-07 -2.77690339648e-08 4.63020535219e-07 -2.74879737443e-08 4.64480846094e-07 -2.71671979853e-08 4.65956009052e-07 -2.68791561808e-08 4.67463078007e-07 -2.65538145524e-08 4.69001370579e-07 -2.62595854126e-08 4.70587829446e-07 -2.59367649152e-08 4.72226917927e-07 -2.56459365508e-08 4.73929989549e-07 -2.53360371202e-08 4.75702368789e-07 -2.50601467611e-08 4.77550281281e-07 -2.47780868025e-08 4.7948272455e-07 -2.45366853582e-08 4.81503684264e-07 -2.43069614712e-08 4.83625978486e-07 -2.41281670312e-08 4.85850010034e-07 -2.39808641895e-08 4.88190959152e-07 -2.38936809762e-08 4.90644266602e-07 -2.38560299316e-08 4.93227563013e-07 -2.38824678254e-08 4.95930329041e-07 -2.39717864299e-08 4.98773191438e-07 -2.41217618879e-08 5.01739393995e-07 -2.43438832594e-08 5.0485370817e-07 -2.46232145856e-08 5.08097156136e-07 -2.49905615954e-08 5.1150291854e-07 -2.54259302961e-08 5.1505774443e-07 -2.59831531344e-08 5.18802371779e-07 -2.66521491678e-08 5.22724586508e-07 -2.75243336379e-08 5.26867208963e-07 -2.86223137108e-08 5.31237809541e-07 -3.00744074677e-08 5.35900108457e-07 -3.1921338669e-08 5.40896923887e-07 -3.42712020014e-08 5.46319833557e-07 -3.71646684102e-08 5.52208100524e-07 -4.06558859568e-08 5.58495395204e-07 -4.47344725902e-08 5.6484644608e-07 -4.95280523849e-08 5.71167163579e-07 -5.50339167228e-08 -6.10214150266e-08 5.7813757306e-07 5.60988014247e-07 -2.80039569772e-07 5.37146302398e-07 -2.89535799479e-07 5.13748543427e-07 -2.95001531731e-07 4.91606358891e-07 -2.97174935498e-07 4.71181625539e-07 -2.965356889e-07 4.52724887362e-07 -2.93635016017e-07 4.36271730038e-07 -2.88982266445e-07 4.21776559543e-07 -2.82982127292e-07 4.09103878236e-07 -2.76022995158e-07 3.98128953647e-07 -2.68366009247e-07 3.88662850391e-07 -2.60302023377e-07 3.80557454772e-07 -2.51981631148e-07 3.73586973889e-07 -2.43619596822e-07 3.67719108157e-07 -2.35196177302e-07 3.62609539928e-07 -2.26947238893e-07 3.58354049856e-07 -2.18762017507e-07 3.54637606462e-07 -2.1086170744e-07 3.516017376e-07 -2.03104221909e-07 3.49013254793e-07 -1.95645989624e-07 3.46901487205e-07 -1.8839976727e-07 3.45089057637e-07 -1.81417863765e-07 3.43593529599e-07 -1.746710892e-07 3.42268581903e-07 -1.68188515924e-07 3.41277518364e-07 -1.61862389079e-07 3.40370975593e-07 -1.55840701259e-07 3.3979846153e-07 -1.49934138842e-07 3.39268781041e-07 -1.44328314666e-07 3.39022184026e-07 -1.38835720461e-07 3.38791042364e-07 -1.33622943829e-07 3.38786898077e-07 -1.28515394317e-07 3.38759802514e-07 -1.23695374359e-07 3.38916214923e-07 -1.18947249796e-07 3.39070427314e-07 -1.14465627023e-07 3.39331701805e-07 -1.10070676793e-07 3.39633740264e-07 -1.05878561965e-07 3.40001006659e-07 -1.01788239619e-07 3.40476920556e-07 -9.78311020009e-08 3.40965297721e-07 -9.40557449227e-08 3.41556276435e-07 -9.03555633864e-08 3.42195861961e-07 -8.67925810078e-08 3.42890550512e-07 -8.33503159559e-08 3.4364263498e-07 -8.00366699875e-08 3.44449546625e-07 -7.68376983066e-08 3.45310834646e-07 -7.37581219989e-08 3.46224469048e-07 -7.07879719135e-08 3.47188663006e-07 -6.79330907878e-08 3.48204590916e-07 -6.51844009087e-08 3.49270863824e-07 -6.25478790975e-08 3.50387911777e-07 -6.001244015e-08 3.51577361901e-07 -5.75782994043e-08 3.52747469416e-07 -5.5300328337e-08 3.54050040338e-07 -5.30009938324e-08 3.55327931072e-07 -5.08995053971e-08 3.56650110271e-07 -4.88677347732e-08 3.57999458454e-07 -4.69411857758e-08 3.59373700108e-07 -4.51213365468e-08 3.60771659742e-07 -4.34115155488e-08 3.62191312246e-07 -4.18092452699e-08 3.63626713565e-07 -4.03182558584e-08 3.65073125741e-07 -3.89337764765e-08 3.66519280691e-07 -3.76637785747e-08 3.67947122267e-07 -3.64994005791e-08 3.69399265313e-07 -3.5407560967e-08 3.70801842077e-07 -3.44817721377e-08 3.72241816247e-07 -3.35614918378e-08 3.73641435505e-07 -3.273000856e-08 3.74995479482e-07 -3.1980480051e-08 3.76304173779e-07 -3.12901603322e-08 3.77567786934e-07 -3.06784223598e-08 3.78794069419e-07 -3.01166205609e-08 3.79988998825e-07 -2.96157663517e-08 3.81156314831e-07 -2.91626326282e-08 3.82294986284e-07 -2.87456987254e-08 3.83411514597e-07 -2.83606587524e-08 3.84473875519e-07 -2.80264113527e-08 3.85551812179e-07 -2.76365499533e-08 3.86572948471e-07 -2.73320339615e-08 3.87588159588e-07 -2.70042953825e-08 3.885900244e-07 -2.66774372376e-08 3.89575153819e-07 -2.6351197464e-08 3.90546996918e-07 -2.60231173207e-08 3.91505506296e-07 -2.5694713803e-08 3.92452014909e-07 -2.53710628504e-08 3.93378239589e-07 -2.50480395452e-08 3.94339008504e-07 -2.46878887483e-08 3.9523957785e-07 -2.44471170571e-08 3.96221696184e-07 -2.40684878288e-08 3.97215919969e-07 -2.37478668515e-08 3.98233932375e-07 -2.34486829662e-08 3.99266620127e-07 -2.3188728327e-08 4.00316421211e-07 -2.29732367143e-08 4.0138489509e-07 -2.28127490969e-08 4.02479317728e-07 -2.27058668336e-08 4.03596503095e-07 -2.26627758432e-08 4.04744944165e-07 -2.26778667021e-08 4.05925038806e-07 -2.27556644917e-08 4.07142189596e-07 -2.2886420866e-08 4.08386087963e-07 -2.30757985431e-08 4.09664224848e-07 -2.33052343031e-08 4.10948517969e-07 -2.35892159416e-08 4.12242669535e-07 -2.39079386476e-08 4.13518616814e-07 -2.42651931735e-08 4.14824527601e-07 -2.46120095481e-08 4.16163187732e-07 -2.49469520229e-08 4.17572800135e-07 -2.52238170569e-08 4.19020574666e-07 -2.54600917912e-08 4.20483851691e-07 -2.56724744735e-08 4.21930883451e-07 -2.58867266496e-08 4.23358488197e-07 -2.61090702078e-08 4.24756475754e-07 -2.63488434021e-08 4.26133509912e-07 -2.66033152278e-08 4.27486160004e-07 -2.68753628323e-08 4.2882435978e-07 -2.71603469764e-08 4.30144672609e-07 -2.74590617347e-08 4.31458506576e-07 -2.77655785354e-08 4.32761315546e-07 -2.80808607798e-08 4.34063146438e-07 -2.8401410738e-08 4.35355170103e-07 -2.87297027481e-08 4.36654146509e-07 -2.90591713015e-08 4.37924547003e-07 -2.94120189243e-08 4.39177816954e-07 -2.97861781187e-08 4.40350724047e-07 -3.02081349914e-08 4.41502705045e-07 -3.06280349199e-08 4.42590532307e-07 -3.10632801782e-08 4.43731384278e-07 -3.14121022929e-08 4.44861093904e-07 -3.17124165688e-08 4.46064629866e-07 -3.18983902293e-08 4.47253288585e-07 -3.20380342666e-08 4.48504090526e-07 -3.20761379376e-08 4.49731448786e-07 -3.20847386637e-08 4.51012270528e-07 -3.20031856579e-08 4.52263958505e-07 -3.19036787082e-08 4.53557305108e-07 -3.17218721002e-08 4.54811948102e-07 -3.15328474e-08 4.56096615211e-07 -3.1271505676e-08 4.57339767083e-07 -3.10160216312e-08 4.58611559655e-07 -3.07005813148e-08 4.59847524983e-07 -3.04053908625e-08 4.61114534513e-07 -3.00625829022e-08 4.62350888423e-07 -2.97532806647e-08 4.63617818102e-07 -2.94050794426e-08 4.64856867475e-07 -2.90992728678e-08 4.66127003762e-07 -2.87595419735e-08 4.6737779877e-07 -2.84679312776e-08 4.68667368609e-07 -2.81424565756e-08 4.69950181019e-07 -2.78638259997e-08 4.71280156941e-07 -2.75466746706e-08 4.72617026768e-07 -2.72757072718e-08 4.74014459048e-07 -2.6968571738e-08 4.75440189881e-07 -2.67137565357e-08 4.76946010225e-07 -2.64278880733e-08 4.78501251645e-07 -2.6201926371e-08 4.80151021904e-07 -2.59506100736e-08 4.81865888455e-07 -2.57697928443e-08 4.83687605453e-07 -2.55735310023e-08 4.85590704607e-07 -2.54620738889e-08 4.87613968776e-07 -2.5348147277e-08 4.89734493815e-07 -2.53339481185e-08 4.91986112377e-07 -2.53290491183e-08 4.94347663865e-07 -2.54357811851e-08 4.96847288587e-07 -2.55588516231e-08 4.9946582456e-07 -2.58001868432e-08 5.02225565085e-07 -2.60594420917e-08 5.05109975374e-07 -2.64408636723e-08 5.08136867438e-07 -2.68451401825e-08 5.11296244142e-07 -2.73853188052e-08 5.14607849186e-07 -2.79718945356e-08 5.18074966049e-07 -2.87306746693e-08 5.21720695895e-07 -2.96000053491e-08 5.25551141626e-07 -3.07345591602e-08 5.29589639721e-07 -3.21266777543e-08 5.33865539878e-07 -3.39594598232e-08 5.38429547261e-07 -3.62526698528e-08 5.43351381262e-07 -3.91397249556e-08 5.48716446667e-07 -4.26528252948e-08 5.54584893446e-07 -4.68405714363e-08 5.60892251019e-07 -5.17282939815e-08 5.6728583374e-07 -5.73351827084e-08 5.73754861796e-07 -6.36798712012e-08 -7.04552023562e-08 5.80939926012e-07 5.95785133294e-07 -2.59918967264e-07 5.74333237154e-07 -2.68372157372e-07 5.52955890018e-07 -2.73793464409e-07 5.3221805663e-07 -2.76656486511e-07 5.12695610455e-07 -2.77164528961e-07 4.94570943766e-07 -2.75731532811e-07 4.78089249271e-07 -2.72652880957e-07 4.63169284348e-07 -2.68298393076e-07 4.49880562624e-07 -2.62916319167e-07 4.380484548e-07 -2.56787595679e-07 4.27669558016e-07 -2.50110582436e-07 4.18492576105e-07 -2.43093188693e-07 4.10599740035e-07 -2.35825462446e-07 4.03619911976e-07 -2.2845690923e-07 3.97630165541e-07 -2.21060866266e-07 3.92310976918e-07 -2.13693286598e-07 3.87759898531e-07 -2.06444219287e-07 3.83769848595e-07 -1.99287889801e-07 3.80379478293e-07 -1.92333762019e-07 3.77451854129e-07 -1.85503720941e-07 3.74894940787e-07 -1.7894834139e-07 3.72663739339e-07 -1.72514127296e-07 3.7074185186e-07 -1.66333824929e-07 3.69029126026e-07 -1.60296014365e-07 3.67630515486e-07 -1.54472535509e-07 3.66403308741e-07 -1.48797384717e-07 3.65438539601e-07 -1.43340923778e-07 3.64617671983e-07 -1.38030702119e-07 3.64011634491e-07 -1.32930909812e-07 3.6347870273e-07 -1.2798082352e-07 3.63149472565e-07 -1.23194526234e-07 3.62829535663e-07 -1.18619612762e-07 3.62694573062e-07 -1.1415364401e-07 3.6256488568e-07 -1.09884058164e-07 3.62576804431e-07 -1.05719888925e-07 3.62634826696e-07 -1.01724909788e-07 3.62772152301e-07 -9.78805791714e-08 3.63028772137e-07 -9.41083850116e-08 3.63330451485e-07 -9.0515190424e-08 3.63709150907e-07 -8.70030204014e-08 3.64141748465e-07 -8.3651159097e-08 3.64650089571e-07 -8.03811495043e-08 3.65214539273e-07 -7.72597152196e-08 3.65850370832e-07 -7.42221157552e-08 3.66536523972e-07 -7.132396841e-08 3.67287688219e-07 -6.85125163711e-08 3.68088792304e-07 -6.58301561541e-08 3.68953990105e-07 -6.32367209303e-08 3.69876649654e-07 -6.07652936709e-08 3.7083388996e-07 -5.839408983e-08 3.71908523297e-07 -5.60750650997e-08 3.72947961203e-07 -5.39532258123e-08 3.74077349435e-07 -5.18551726949e-08 3.75222311713e-07 -4.98799885434e-08 3.76395229646e-07 -4.80008207827e-08 3.77596282564e-07 -4.62256451057e-08 3.78826528868e-07 -4.45471674833e-08 3.80079161605e-07 -4.29763613441e-08 3.81354357082e-07 -4.15010489882e-08 3.82638083228e-07 -4.01364868331e-08 3.83926091144e-07 -3.88629642363e-08 3.8522137551e-07 -3.76967640285e-08 3.86483803386e-07 -3.66471781045e-08 3.8780983767e-07 -3.56288750971e-08 3.89108944392e-07 -3.47016363958e-08 3.90374928289e-07 -3.38784121565e-08 3.91612271861e-07 -3.30765075969e-08 3.9278738402e-07 -3.24007637173e-08 3.93939680132e-07 -3.17363821921e-08 3.95042498983e-07 -3.11682455903e-08 3.96120508937e-07 -3.06562100839e-08 3.97180097913e-07 -3.01890823729e-08 3.98217994812e-07 -2.97617048819e-08 3.99219033939e-07 -2.93662048571e-08 4.00221567421e-07 -2.89697208987e-08 4.01155705053e-07 -2.86653747767e-08 4.02108443444e-07 -2.83058733677e-08 4.0303401653e-07 -2.79664212233e-08 4.03943204179e-07 -2.76332908809e-08 4.04838530874e-07 -2.7293130713e-08 4.05718042571e-07 -2.69581841586e-08 4.06581284606e-07 -2.66194731651e-08 4.07428054887e-07 -2.62830620162e-08 4.08279196762e-07 -2.59475400711e-08 4.09085705113e-07 -2.56586333543e-08 4.09971979042e-07 -2.52427948583e-08 4.10817653657e-07 -2.49462200747e-08 4.11705349026e-07 -2.46219987925e-08 4.1260765066e-07 -2.43353345932e-08 4.135189221e-07 -2.40944491558e-08 4.14440594995e-07 -2.3906993103e-08 4.15382660763e-07 -2.37742563428e-08 4.16343965053e-07 -2.37029090596e-08 4.17330835888e-07 -2.36927008292e-08 4.1834446363e-07 -2.37457887234e-08 4.19394167589e-07 -2.38599064457e-08 4.20475064713e-07 -2.40341023147e-08 4.21591155982e-07 -2.42592260175e-08 4.22730292072e-07 -2.45314027634e-08 4.23883538766e-07 -2.48533159641e-08 4.2503958742e-07 -2.51916634102e-08 4.26199375665e-07 -2.55503404866e-08 4.27385045261e-07 -2.58743371176e-08 4.28624901639e-07 -2.61655612319e-08 4.29924189197e-07 -2.63969381812e-08 4.3125118366e-07 -2.65998956229e-08 4.32577131853e-07 -2.67876846978e-08 4.33882141474e-07 -2.69832558004e-08 4.35160152168e-07 -2.71889474958e-08 4.36409531919e-07 -2.74146863643e-08 4.37634902675e-07 -2.7656312099e-08 4.38837933401e-07 -2.79199310839e-08 4.40023553185e-07 -2.8197909878e-08 4.41194171799e-07 -2.8493211595e-08 4.42355944117e-07 -2.87960197716e-08 4.4350793322e-07 -2.91147952273e-08 4.44653528462e-07 -2.94415639954e-08 4.45794765237e-07 -2.9782231311e-08 4.46932464306e-07 -3.01320163679e-08 4.48043557675e-07 -3.0516782452e-08 4.49121041098e-07 -3.09181391383e-08 4.50137861506e-07 -3.13683424543e-08 4.51119827232e-07 -3.17847684582e-08 4.52082132885e-07 -3.22061948482e-08 4.53077789015e-07 -3.25119292159e-08 4.54091064872e-07 -3.2786614978e-08 4.55145597387e-07 -3.29296515435e-08 4.56208758361e-07 -3.30487713229e-08 4.57300556283e-07 -3.30506677174e-08 4.58394329709e-07 -3.30370112435e-08 4.59508907985e-07 -3.29199196947e-08 4.60620693075e-07 -3.27896403393e-08 4.61740967715e-07 -3.25699024174e-08 4.6284866376e-07 -3.23417339934e-08 4.63953031293e-07 -3.20416091255e-08 4.65042029974e-07 -3.17420463305e-08 4.66126559206e-07 -3.13906240579e-08 4.67201979997e-07 -3.10504228951e-08 4.68276195543e-07 -3.06788364171e-08 4.6934807348e-07 -3.03272867463e-08 4.70419482723e-07 -2.99614388838e-08 4.71492869025e-07 -2.9619688855e-08 4.72567463933e-07 -2.9277115546e-08 4.73654453736e-07 -2.89592757181e-08 4.7475170482e-07 -2.86482269617e-08 4.75875005329e-07 -2.83548829208e-08 4.7701703838e-07 -2.80691630869e-08 4.78198605088e-07 -2.77959945438e-08 4.79413180926e-07 -2.75380479715e-08 4.80690461769e-07 -2.7295064884e-08 4.82022103126e-07 -2.70787899787e-08 4.83439546102e-07 -2.68797400402e-08 4.84926435489e-07 -2.67203499429e-08 4.8651581966e-07 -2.65826984819e-08 4.88187219238e-07 -2.65007912431e-08 4.89977778554e-07 -2.64483757749e-08 4.91863414532e-07 -2.64693490672e-08 4.93883525751e-07 -2.65271665911e-08 4.96008424789e-07 -2.66739025041e-08 4.98279038307e-07 -2.68601302513e-08 5.00659166346e-07 -2.7146423683e-08 5.03191784431e-07 -2.74683721157e-08 5.0583381461e-07 -2.78983609208e-08 5.08631065907e-07 -2.8359671841e-08 5.11535979237e-07 -2.89442944406e-08 5.14600800065e-07 -2.95741609129e-08 5.17781773747e-07 -3.03642640355e-08 5.21142143827e-07 -3.12460476591e-08 5.24644491101e-07 -3.23647202536e-08 5.28348812573e-07 -3.36880986158e-08 5.32227406606e-07 -3.54194658627e-08 5.36361125167e-07 -3.75794237643e-08 5.40767309249e-07 -4.03643008646e-08 5.45561668194e-07 -4.37707075466e-08 5.50812683655e-07 -4.79514641925e-08 5.56607082712e-07 -5.285788341e-08 5.62895785904e-07 -5.8619341819e-08 5.69287252543e-07 -6.51526344663e-08 5.75895630354e-07 -7.23942744458e-08 -8.02194355695e-08 5.83378808834e-07 5.31903886073e-07 -2.44713700109e-07 5.15613365069e-07 -2.52322470406e-07 4.99149574917e-07 -2.5749774085e-07 4.82990016524e-07 -2.60659755662e-07 4.67475805278e-07 -2.61775386075e-07 4.5286627626e-07 -2.61275734573e-07 4.39298460073e-07 -2.59214599884e-07 4.26848104612e-07 -2.56029288969e-07 4.15537732358e-07 -2.51752849046e-07 4.05331005099e-07 -2.46799306017e-07 3.96196520049e-07 -2.41149773227e-07 3.88061372725e-07 -2.35164188747e-07 3.80923050144e-07 -2.28742761167e-07 3.74544182347e-07 -2.22282548451e-07 3.69005354783e-07 -2.1554116749e-07 3.63984229742e-07 -2.08967611738e-07 3.59700054652e-07 -2.02200629506e-07 3.55827838844e-07 -1.9568829538e-07 3.52597200887e-07 -1.8906419647e-07 3.49653386164e-07 -1.8277421418e-07 3.47218893861e-07 -1.76428208199e-07 3.449599981e-07 -1.70442322872e-07 3.43107790314e-07 -1.64419961883e-07 3.41383834009e-07 -1.58742358448e-07 3.40019662727e-07 -1.53034483053e-07 3.38757713484e-07 -1.47664121471e-07 3.37814821514e-07 -1.42279641617e-07 3.36954368519e-07 -1.37222168703e-07 3.36356061456e-07 -1.32162143638e-07 3.3582126339e-07 -1.2740737594e-07 3.35443871592e-07 -1.22695260618e-07 3.35174757833e-07 -1.18218476433e-07 3.35005034271e-07 -1.13825317237e-07 3.34924837724e-07 -1.09646101474e-07 3.34932143491e-07 -1.05548571048e-07 3.35001663899e-07 -1.01657707584e-07 3.35213845185e-07 -9.7808735388e-08 3.35447560071e-07 -9.4190900852e-08 3.35815304676e-07 -9.05998119906e-08 3.36188012701e-07 -8.72230622091e-08 3.36678126635e-07 -8.38781121415e-08 3.37187105145e-07 -8.07254310167e-08 3.37804558201e-07 -7.76145484688e-08 3.38445137293e-07 -7.46794995375e-08 3.39178587836e-07 -7.17989925273e-08 3.39940089434e-07 -6.90761267691e-08 3.40782551695e-07 -6.64183809003e-08 3.41661468507e-07 -6.39000552321e-08 3.42610593423e-07 -6.14594925363e-08 3.43629064844e-07 -5.91294878601e-08 3.44656987352e-07 -5.69419857682e-08 3.45785512485e-07 -5.47925744358e-08 3.4692143614e-07 -5.27868137558e-08 3.48097079957e-07 -5.08634835958e-08 3.49298992832e-07 -4.90425985789e-08 3.50534089255e-07 -4.73049090113e-08 3.51793158487e-07 -4.56750217232e-08 3.5308581081e-07 -4.41240936871e-08 3.54393404795e-07 -4.26883301502e-08 3.55726064474e-07 -4.1325753511e-08 3.57060085866e-07 -4.00847588316e-08 3.58399576567e-07 -3.89117182944e-08 3.59764782329e-07 -3.78322416615e-08 3.61153291582e-07 -3.68073102004e-08 3.62516810758e-07 -3.59125168019e-08 3.63904872601e-07 -3.50050571032e-08 3.65200181951e-07 -3.42779767605e-08 3.66517490974e-07 -3.35203400025e-08 3.67757466734e-07 -3.29022138309e-08 3.68981498545e-07 -3.23370504251e-08 3.70195697531e-07 -3.18250233079e-08 3.71398260379e-07 -3.13570511273e-08 3.72582944724e-07 -3.09243385817e-08 3.73757331187e-07 -3.05155615578e-08 3.74887009576e-07 -3.01698173763e-08 3.76040171541e-07 -2.97811924591e-08 3.77162592629e-07 -2.94307808546e-08 3.78272312097e-07 -2.90898292041e-08 3.79377506196e-07 -2.87287790917e-08 3.80461195803e-07 -2.83897453586e-08 3.81538442507e-07 -2.80327630525e-08 3.82597269262e-07 -2.76912022619e-08 3.8365035374e-07 -2.73429844058e-08 3.84682143967e-07 -2.70112551545e-08 3.85759949422e-07 -2.66203487101e-08 3.8678270645e-07 -2.63384731666e-08 3.8785654344e-07 -2.59833756917e-08 3.8892973765e-07 -2.56811400038e-08 3.90010653624e-07 -2.54115638676e-08 3.91099564776e-07 -2.51981519824e-08 3.92198742402e-07 -2.50312210627e-08 3.93315520478e-07 -2.49328947054e-08 3.94451619488e-07 -2.48858080863e-08 3.95611731536e-07 -2.49160669716e-08 3.96799289056e-07 -2.50013363799e-08 3.98022608732e-07 -2.51605783291e-08 3.99279947038e-07 -2.5365928579e-08 4.00572729447e-07 -2.56364568293e-08 4.01886090977e-07 -2.59514198086e-08 4.03229268247e-07 -2.62963752038e-08 4.04572138805e-07 -2.66643864384e-08 4.05949775347e-07 -2.70055614483e-08 4.07351053744e-07 -2.72959562223e-08 4.08814748663e-07 -2.7531372275e-08 4.10319926667e-07 -2.773143679e-08 4.11845374099e-07 -2.79062469666e-08 4.13359170241e-07 -2.80790792764e-08 4.14854252262e-07 -2.82568001054e-08 4.16320097173e-07 -2.84504769848e-08 4.17764651693e-07 -2.86619063501e-08 4.19185618823e-07 -2.88958472619e-08 4.20592115947e-07 -2.91499675791e-08 4.21981194723e-07 -2.9423717181e-08 4.23364279986e-07 -2.97108391115e-08 4.24735928925e-07 -3.00132881315e-08 4.26104484736e-07 -3.03290575975e-08 4.27461600616e-07 -3.0660481698e-08 4.28824780543e-07 -3.10046091379e-08 4.30168735409e-07 -3.1373819774e-08 4.31507939161e-07 -3.17593827999e-08 4.32787243958e-07 -3.21930445621e-08 4.34052453807e-07 -3.2603205332e-08 4.35257190546e-07 -3.30284846136e-08 4.36505993938e-07 -3.33615366583e-08 4.37742636192e-07 -3.3661330768e-08 4.39047660613e-07 -3.38434261864e-08 4.4033904578e-07 -3.3990532325e-08 4.41686917148e-07 -3.40271875808e-08 4.43012562681e-07 -3.40387744989e-08 4.44386020268e-07 -3.39465281619e-08 4.45735218267e-07 -3.38346683954e-08 4.47122582586e-07 -3.36242877628e-08 4.48477949429e-07 -3.34022151788e-08 4.49856534628e-07 -3.30925262391e-08 4.51195896331e-07 -3.27848814566e-08 4.52551153718e-07 -3.24052711795e-08 4.53870506499e-07 -3.20449716677e-08 4.55207666154e-07 -3.16301614644e-08 4.56517398391e-07 -3.12527977149e-08 4.578480419e-07 -3.08366077703e-08 4.59157851775e-07 -3.0472693938e-08 4.60489263163e-07 -3.00804474404e-08 4.61807658682e-07 -2.97511375037e-08 4.6315488691e-07 -2.93999334083e-08 4.64504014093e-07 -2.91163459134e-08 4.65891968773e-07 -2.88079825077e-08 4.67294386974e-07 -2.85643878952e-08 4.68745239919e-07 -2.82936693525e-08 4.70228705037e-07 -2.80930683123e-08 4.71780921973e-07 -2.78709344832e-08 4.73392204004e-07 -2.77293813589e-08 4.75092983291e-07 -2.75722000022e-08 4.76872318139e-07 -2.75065668604e-08 4.78754739536e-07 -2.74327547711e-08 4.80731247338e-07 -2.74637377748e-08 4.82823909382e-07 -2.74955530909e-08 4.85025726582e-07 -2.76458930538e-08 4.87354683273e-07 -2.78043367549e-08 4.89803806025e-07 -2.80919110515e-08 4.92385713736e-07 -2.83899978646e-08 4.95093443913e-07 -2.88226314912e-08 4.97934135195e-07 -2.9263244328e-08 5.00901666916e-07 -2.98415422006e-08 5.03998670064e-07 -3.04284581543e-08 5.07222304005e-07 -3.11677472814e-08 5.10576176203e-07 -3.19398302615e-08 5.14067665131e-07 -3.29060349014e-08 5.17710134552e-07 -3.39658784448e-08 5.21519523777e-07 -3.53076052639e-08 5.25505110786e-07 -3.68802737017e-08 5.29691092444e-07 -3.89351347262e-08 5.34118141377e-07 -4.14865115704e-08 5.38854382136e-07 -4.47675668154e-08 5.43999304752e-07 -4.87641803769e-08 5.49659721556e-07 -5.36460116798e-08 5.55918002234e-07 -5.93419859884e-08 5.62725331437e-07 -6.60836396449e-08 5.69711806388e-07 -7.35421194361e-08 5.7700906782e-07 -8.18788038836e-08 -9.0931500225e-08 5.85540915565e-07 6.42395176412e-07 -2.28257255179e-07 6.24889110958e-07 -2.34854469928e-07 6.06849619151e-07 -2.39847921145e-07 5.89231815091e-07 -2.42963342655e-07 5.71819475465e-07 -2.4470819979e-07 5.55440480902e-07 -2.44802570469e-07 5.39704697905e-07 -2.43833126497e-07 5.25296591615e-07 -2.41546266809e-07 5.11692121659e-07 -2.38543932185e-07 4.99483671579e-07 -2.34554595149e-07 4.88068626637e-07 -2.30151950558e-07 4.78042356892e-07 -2.25038216927e-07 4.68680790552e-07 -2.19784526257e-07 4.60608384622e-07 -2.14025996065e-07 4.52947989752e-07 -2.08350364702e-07 4.46432434686e-07 -2.02306732437e-07 4.40224842767e-07 -1.96450380292e-07 4.35028914392e-07 -1.90331446293e-07 4.30054309809e-07 -1.84484450671e-07 4.25955571215e-07 -1.78463840919e-07 4.21964311375e-07 -1.72770653587e-07 4.18710693822e-07 -1.66956401778e-07 4.15484886103e-07 -1.6148257143e-07 4.12890857933e-07 -1.55915572393e-07 4.10299293912e-07 -1.50680544736e-07 4.08264760472e-07 -1.45377143337e-07 4.06221518107e-07 -1.40397199327e-07 4.04673902684e-07 -1.3537089001e-07 4.03097443656e-07 -1.30662674197e-07 4.01913392729e-07 -1.25929129344e-07 4.00709339095e-07 -1.2148650867e-07 3.99816737259e-07 -1.1704960108e-07 3.98912304174e-07 -1.12880337068e-07 3.98266718124e-07 -1.08728865643e-07 3.97599514992e-07 -1.04822587433e-07 3.97181492247e-07 -1.00937356626e-07 3.96746171022e-07 -9.72834011284e-08 3.96551576038e-07 -9.36497508628e-08 3.96323477392e-07 -9.02351533263e-08 3.96289487584e-07 -8.68527988533e-08 3.96236411089e-07 -8.36651639589e-08 3.96354133545e-07 -8.05169456849e-08 3.96471041899e-07 -7.75436845485e-08 3.96731417713e-07 -7.46229273962e-08 3.97003420979e-07 -7.18592305628e-08 3.97392907698e-07 -6.91595209937e-08 3.97809132758e-07 -6.65976483726e-08 3.98320304705e-07 -6.41129507714e-08 3.98887121621e-07 -6.17479483944e-08 3.99505962387e-07 -5.94881240486e-08 4.00223256748e-07 -5.73054164185e-08 4.00960063824e-07 -5.5258288639e-08 4.01763900644e-07 -5.32913868177e-08 4.02591714622e-07 -5.14289618543e-08 4.03463098221e-07 -4.96486377304e-08 4.04350440637e-07 -4.79720094602e-08 4.0528891683e-07 -4.63685807482e-08 4.06233842293e-07 -4.48739916923e-08 4.07229934093e-07 -4.34472362156e-08 4.0821426126e-07 -4.21342764077e-08 4.09239304408e-07 -4.08800709265e-08 4.10244449939e-07 -3.97351082739e-08 4.11314962703e-07 -3.86352093996e-08 4.12350346742e-07 -3.76495719998e-08 4.13463330846e-07 -3.66762503997e-08 4.14454760398e-07 -3.58657315379e-08 4.15499740258e-07 -3.50532740493e-08 4.16439125428e-07 -3.43682590627e-08 4.17357645556e-07 -3.37527170468e-08 4.1825834006e-07 -3.31872409459e-08 4.19149413006e-07 -3.26759472032e-08 4.20033020932e-07 -3.22083537237e-08 4.20909444318e-07 -3.17529207545e-08 4.21741973897e-07 -3.13554290466e-08 4.22589137732e-07 -3.09364905828e-08 4.23404195467e-07 -3.05682571498e-08 4.24208401774e-07 -3.01968480176e-08 4.25009446047e-07 -2.98152591183e-08 4.2577330733e-07 -2.94581719914e-08 4.26535300603e-07 -2.90837131623e-08 4.27265234908e-07 -2.87244390113e-08 4.27985387212e-07 -2.83522928996e-08 4.28675450671e-07 -2.79904513474e-08 4.29384294482e-07 -2.76106871206e-08 4.30044173099e-07 -2.72893667377e-08 4.3075045195e-07 -2.69115626167e-08 4.31426618353e-07 -2.65988439503e-08 4.3211649984e-07 -2.62962291924e-08 4.32799611787e-07 -2.60514806568e-08 4.3349418274e-07 -2.5835515289e-08 4.34187462e-07 -2.5699768077e-08 4.34907409484e-07 -2.55963171941e-08 4.35631789859e-07 -2.55918703796e-08 4.36392193571e-07 -2.56256381687e-08 4.37170307859e-07 -2.57581801985e-08 4.37998067458e-07 -2.59206576242e-08 4.38849085476e-07 -2.61826485855e-08 4.39745780229e-07 -2.64717367573e-08 4.40669252552e-07 -2.68273621716e-08 4.41620254488e-07 -2.7189368618e-08 4.42597387111e-07 -2.75702464862e-08 4.43614638679e-07 -2.78619876718e-08 4.44652900489e-07 -2.81649749818e-08 4.4574483411e-07 -2.83782537753e-08 4.46871961417e-07 -2.85557410047e-08 4.4800231878e-07 -2.87124085823e-08 4.49113312844e-07 -2.88673460669e-08 4.50193628563e-07 -2.90252972329e-08 4.51239952972e-07 -2.920147217e-08 4.52258259337e-07 -2.93943917324e-08 4.53251511199e-07 -2.96168728897e-08 4.5422569269e-07 -2.9857530693e-08 4.55183134271e-07 -3.0121768238e-08 4.56130239829e-07 -3.03965007237e-08 4.57064923028e-07 -3.06931329472e-08 4.57989063152e-07 -3.09995047333e-08 4.5890327019e-07 -3.1328205181e-08 4.59813972666e-07 -3.16708010961e-08 4.60712884096e-07 -3.20373902975e-08 4.61584976234e-07 -3.24307061322e-08 4.62425601826e-07 -3.28321608286e-08 4.63224289244e-07 -3.32274061817e-08 4.64010243421e-07 -3.35866398902e-08 4.64809006863e-07 -3.38773960898e-08 4.65634615758e-07 -3.41151272129e-08 4.66487790349e-07 -3.42678889703e-08 4.6736127407e-07 -3.43674147259e-08 4.68249734527e-07 -3.43876764987e-08 4.69150367954e-07 -3.43536081997e-08 4.70058625643e-07 -3.42468804033e-08 4.70976409681e-07 -3.40803648271e-08 4.71891596634e-07 -3.38511006618e-08 4.72806079008e-07 -3.35638259527e-08 4.73702331331e-07 -3.32322040697e-08 4.74589085431e-07 -3.28530302491e-08 4.7545074973e-07 -3.24535539626e-08 4.76305932515e-07 -3.20210327329e-08 4.77139207148e-07 -3.15939591024e-08 4.7797541918e-07 -3.11479196558e-08 4.78794684814e-07 -3.07315454804e-08 4.79625064814e-07 -3.03060400202e-08 4.80440854872e-07 -2.99295073109e-08 4.81277279123e-07 -2.95494072293e-08 4.82108509795e-07 -2.92336842464e-08 4.82977646496e-07 -2.89138176926e-08 4.83852780298e-07 -2.86614141217e-08 4.8477828035e-07 -2.8395729595e-08 4.85718464854e-07 -2.81998478273e-08 4.86727960421e-07 -2.7990352384e-08 4.87773480371e-07 -2.78647081311e-08 4.88917855632e-07 -2.77292563117e-08 4.90119785425e-07 -2.76923407043e-08 4.91441689681e-07 -2.76494808606e-08 4.92834310336e-07 -2.77200905791e-08 4.94363396378e-07 -2.77901529884e-08 4.95975150767e-07 -2.79888690208e-08 4.97738644214e-07 -2.81913631224e-08 4.99593360997e-07 -2.85343873421e-08 5.016097474e-07 -2.88800607334e-08 5.0371899925e-07 -2.93728567816e-08 5.05993041901e-07 -2.98604462524e-08 5.08354439914e-07 -3.04978461502e-08 5.10877087408e-07 -3.112109572e-08 5.1347637883e-07 -3.19031509378e-08 5.16230814397e-07 -3.2681595087e-08 5.1905640873e-07 -3.36575856265e-08 5.22041796159e-07 -3.46807300192e-08 5.25113567002e-07 -3.59769254141e-08 5.28362499487e-07 -3.74280488661e-08 5.31715038269e-07 -3.92949051939e-08 5.3526738954e-07 -4.15704762445e-08 5.38996861823e-07 -4.45565258801e-08 5.43047512697e-07 -4.82643465179e-08 5.47487750082e-07 -5.29233341516e-08 5.52494070908e-07 -5.85048079112e-08 5.58120709062e-07 -6.50879432034e-08 5.64327621969e-07 -7.28417928945e-08 5.70767114628e-07 -8.13312998838e-08 5.77627217501e-07 -9.10246766535e-08 -1.01502605269e-07 5.86144790768e-07 7.75288717912e-07 -2.1028775191e-07 7.56017414268e-07 -2.16218034604e-07 7.37096186139e-07 -2.2063271323e-07 7.17488092916e-07 -2.23901215843e-07 6.98872789859e-07 -2.25773157486e-07 6.80169376047e-07 -2.26619223306e-07 6.62878509075e-07 -2.26254279511e-07 6.45868350924e-07 -2.25068913249e-07 6.30461439537e-07 -2.22908813641e-07 6.15511345716e-07 -2.20150217206e-07 6.02189445838e-07 -2.16649443034e-07 5.89375112146e-07 -2.12759364772e-07 5.78150969212e-07 -2.08339591134e-07 5.67323329734e-07 -2.03731298115e-07 5.57922393962e-07 -1.987625102e-07 5.4883455884e-07 -1.93729788892e-07 5.41026849111e-07 -1.88458990464e-07 5.33451331573e-07 -1.83223064577e-07 5.27016255187e-07 -1.77849147197e-07 5.20735346667e-07 -1.72583032781e-07 5.1543723708e-07 -1.6725156584e-07 5.10218103965e-07 -1.62069194039e-07 5.05830903999e-07 -1.56868456377e-07 5.01480118482e-07 -1.51833046051e-07 4.97848017631e-07 -1.46809504592e-07 4.94233290963e-07 -1.41958746015e-07 4.91248612164e-07 -1.37142885607e-07 4.88271660422e-07 -1.32504705977e-07 4.85842640629e-07 -1.27922439405e-07 4.83390766928e-07 -1.23525017911e-07 4.81391197723e-07 -1.19195941547e-07 4.79371723524e-07 -1.15043536553e-07 4.77732584666e-07 -1.1096605676e-07 4.76073802484e-07 -1.07054887313e-07 4.74733206763e-07 -1.03223128345e-07 4.73393932752e-07 -9.95412734359e-08 4.72346427199e-07 -9.59429078871e-08 4.71308000983e-07 -9.24898434012e-08 4.70506630678e-07 -8.91291404037e-08 4.6971418872e-07 -8.59048804648e-08 4.69119044754e-07 -8.27718652251e-08 4.68548932594e-07 -7.97635033227e-08 4.68145049223e-07 -7.68480629441e-08 4.67778047851e-07 -7.40486433379e-08 4.67546844472e-07 -7.13443032472e-08 4.67364833629e-07 -6.87473709448e-08 4.67290560597e-07 -6.62473391325e-08 4.67281579803e-07 -6.38467496091e-08 4.67353710648e-07 -6.15469218301e-08 4.67520172929e-07 -5.93381675672e-08 4.67733970029e-07 -5.72429111598e-08 4.68042957043e-07 -5.52330323881e-08 4.68393332235e-07 -5.33224723877e-08 4.68800968353e-07 -5.15091614769e-08 4.69231460498e-07 -4.97844310791e-08 4.69717022808e-07 -4.81530562091e-08 4.70218768181e-07 -4.66004997838e-08 4.70774316165e-07 -4.51431078737e-08 4.7133478594e-07 -4.37568645885e-08 4.71938552949e-07 -4.2467867194e-08 4.72531325374e-07 -4.12398763861e-08 4.73170783588e-07 -4.01061670804e-08 4.73803719702e-07 -3.90215902609e-08 4.74499243854e-07 -3.80286571253e-08 4.75129981685e-07 -3.71073590293e-08 4.75782806636e-07 -3.62751654413e-08 4.7637265688e-07 -3.54998895319e-08 4.76901166338e-07 -3.48410715597e-08 4.77421432066e-07 -3.42009576229e-08 4.77912888777e-07 -3.36442835704e-08 4.78409325965e-07 -3.31221106916e-08 4.78923877491e-07 -3.26065603353e-08 4.79375154954e-07 -3.21570757711e-08 4.79843216931e-07 -3.17035160617e-08 4.80264032655e-07 -3.13048031382e-08 4.80692637078e-07 -3.0893121739e-08 4.81102901631e-07 -3.04954092004e-08 4.81477319892e-07 -3.01111178405e-08 4.81837608301e-07 -2.97237803996e-08 4.82164787538e-07 -2.93383580522e-08 4.82471956544e-07 -2.89445662435e-08 4.82742831742e-07 -2.85491019006e-08 4.83001891161e-07 -2.81473071619e-08 4.83220062735e-07 -2.77596035806e-08 4.8346145625e-07 -2.73562605321e-08 4.83656649024e-07 -2.70018032921e-08 4.83866092185e-07 -2.66544200448e-08 4.84046751049e-07 -2.63529538748e-08 4.84240850037e-07 -2.60790596069e-08 4.84404973287e-07 -2.5877159939e-08 4.8460391705e-07 -2.57109964746e-08 4.84780272678e-07 -2.56377954513e-08 4.85005614962e-07 -2.56097148701e-08 4.85223218536e-07 -2.56791441783e-08 4.85506991632e-07 -2.57937006531e-08 4.85793878229e-07 -2.60144896199e-08 4.86155476456e-07 -2.62722523354e-08 4.86534968416e-07 -2.66121673607e-08 4.86980402534e-07 -2.69738128204e-08 4.87440890239e-07 -2.73804798079e-08 4.87992256559e-07 -2.77177391327e-08 4.88516418166e-07 -2.81303313826e-08 4.89129425926e-07 -2.8400495931e-08 4.89757884854e-07 -2.86465876049e-08 4.90408771278e-07 -2.88307275913e-08 4.9104957725e-07 -2.89818911493e-08 4.91661771669e-07 -2.91120111985e-08 4.92228179162e-07 -2.92483792927e-08 4.92757260037e-07 -2.93909474968e-08 4.93248361318e-07 -2.95682053995e-08 4.93716985815e-07 -2.97620292243e-08 4.94160187411e-07 -2.99929745262e-08 4.94591959393e-07 -3.02313275014e-08 4.9500572077e-07 -3.0501348405e-08 4.95409679425e-07 -3.07704078119e-08 4.95791888241e-07 -3.10740957999e-08 4.96170366743e-07 -3.13765240901e-08 4.96533849786e-07 -3.17190369309e-08 4.96890848605e-07 -3.20618186022e-08 4.97222237326e-07 -3.24447074025e-08 4.97539599394e-07 -3.27926126634e-08 4.97798126597e-07 -3.31311867753e-08 4.98079256635e-07 -3.33994328641e-08 4.9835017309e-07 -3.36492604444e-08 4.98677900982e-07 -3.38100262678e-08 4.99001976556e-07 -3.39442586924e-08 4.99372587264e-07 -3.39848691059e-08 4.9973028675e-07 -3.39944457326e-08 5.00121958984e-07 -3.390755377e-08 5.0049963967e-07 -3.37834736273e-08 5.00900966024e-07 -3.35605706033e-08 5.01281854242e-07 -3.33021777692e-08 5.01667398981e-07 -3.2953520891e-08 5.02020299484e-07 -3.25835513702e-08 5.02362529201e-07 -3.21427865709e-08 5.0267031534e-07 -3.17023896995e-08 5.02965850325e-07 -3.12147339407e-08 5.03236475917e-07 -3.07506263281e-08 5.03500611206e-07 -3.02612276877e-08 5.0375218418e-07 -2.98166661043e-08 5.04001943969e-07 -2.93639639302e-08 5.04248613143e-07 -2.8972187841e-08 5.04499934916e-07 -2.85840883513e-08 5.04765323844e-07 -2.82704835043e-08 5.05050760905e-07 -2.79642890929e-08 5.05366901804e-07 -2.77325011698e-08 5.05711291951e-07 -2.74989587759e-08 5.06098281526e-07 -2.73380803715e-08 5.06527905539e-07 -2.7178626567e-08 5.0702643355e-07 -2.71045676133e-08 5.07594831433e-07 -2.70404089985e-08 5.08258555291e-07 -2.70757700513e-08 5.09009838218e-07 -2.71254772432e-08 5.09871307607e-07 -2.72884521156e-08 5.10832078737e-07 -2.7469976569e-08 5.11915079248e-07 -2.77781143468e-08 5.13107251021e-07 -2.81061022882e-08 5.14429405654e-07 -2.85693042385e-08 5.15864149482e-07 -2.90469719131e-08 5.1742910771e-07 -2.96625847174e-08 5.19102350063e-07 -3.02814523234e-08 5.20898978664e-07 -3.10375718325e-08 5.22793351286e-07 -3.17876704577e-08 5.24799693353e-07 -3.26837236224e-08 5.26893273533e-07 -3.35907425793e-08 5.29093168911e-07 -3.46898775611e-08 5.31384846827e-07 -3.58610625411e-08 5.33795952276e-07 -3.73095332676e-08 5.36317223708e-07 -3.89446313511e-08 5.38963036373e-07 -4.10225924112e-08 5.41737901293e-07 -4.35703323493e-08 5.44695592598e-07 -4.69082124319e-08 5.47924264978e-07 -5.10794805627e-08 5.51570569917e-07 -5.63443951703e-08 5.55784008518e-07 -6.26600515417e-08 5.60659819257e-07 -7.01261150082e-08 5.66069647104e-07 -7.88226809543e-08 5.71714494658e-07 -8.8453670116e-08 5.77898740691e-07 -9.92849319434e-08 -1.11538035585e-07 5.85885665068e-07 9.3516251635e-07 -1.90947963402e-07 9.15043080944e-07 -1.96092473531e-07 8.94327230012e-07 -2.00092859953e-07 8.73663704389e-07 -2.03219612375e-07 8.53001829979e-07 -2.05264864513e-07 8.32878574256e-07 -2.06497317776e-07 8.13212272903e-07 -2.0674377101e-07 7.9440316429e-07 -2.06302802808e-07 7.76337708277e-07 -2.05017862743e-07 7.59290673406e-07 -2.03197608461e-07 7.43140261593e-07 -2.00687524181e-07 7.28058317268e-07 -1.97801935723e-07 7.13920583691e-07 -1.94383609023e-07 7.00786090668e-07 -1.90740189085e-07 6.8854546969e-07 -1.8669445964e-07 6.77214197263e-07 -1.82542380984e-07 6.66702392706e-07 -1.78098377051e-07 6.56984606958e-07 -1.73646065862e-07 6.48009000407e-07 -1.689909409e-07 6.39711325396e-07 -1.64402347371e-07 6.32062196253e-07 -1.59678777297e-07 6.24972800035e-07 -1.55071073224e-07 6.18446344507e-07 -1.50375529582e-07 6.12381887322e-07 -1.45826546828e-07 6.06811158661e-07 -1.41225324714e-07 6.01624696914e-07 -1.36789708707e-07 5.96878183278e-07 -1.32329226679e-07 5.92457035747e-07 -1.28046453166e-07 5.88420404286e-07 -1.23764385769e-07 5.8465249755e-07 -1.1966824997e-07 5.81202441896e-07 -1.15593027569e-07 5.7797062964e-07 -1.11700824882e-07 5.75015138169e-07 -1.07840385152e-07 5.72238705509e-07 -1.041566069e-07 5.69708662798e-07 -1.00511874442e-07 5.67331203657e-07 -9.70340615647e-08 5.65190841664e-07 -9.36006908489e-08 5.63187520041e-07 -9.0328519448e-08 5.61388962936e-07 -8.71108265261e-08 5.59704404779e-07 -8.40454859978e-08 5.58201156661e-07 -8.10391570783e-08 5.56799900225e-07 -7.81747698336e-08 5.55561652709e-07 -7.53736872574e-08 5.5441569162e-07 -7.27048278341e-08 5.53415724114e-07 -7.01036939084e-08 5.5250110049e-07 -6.76244328382e-08 5.51716421009e-07 -6.52182744717e-08 5.51013016496e-07 -6.29228987992e-08 5.50425969176e-07 -6.07067664858e-08 5.49921509263e-07 -5.85890620073e-08 5.49522440326e-07 -5.65593425751e-08 5.49213953777e-07 -5.46168849726e-08 5.48966331151e-07 -5.27815776254e-08 5.4880187792e-07 -5.10178767593e-08 5.48659422529e-07 -4.93700110197e-08 5.48606905176e-07 -4.77719544565e-08 5.48548167519e-07 -4.62990405001e-08 5.48589407972e-07 -4.48559327657e-08 5.48593880721e-07 -4.35485051525e-08 5.48702019595e-07 -4.2252546528e-08 5.4874451863e-07 -4.11001007881e-08 5.48902097711e-07 -3.99424037652e-08 5.48991137518e-07 -3.8935328149e-08 5.49184593955e-07 -3.79227929545e-08 5.49273001952e-07 -3.70661648042e-08 5.49443029314e-07 -3.62055384124e-08 5.49457604195e-07 -3.54966629184e-08 5.49526256124e-07 -3.47764963555e-08 5.49500659386e-07 -3.41682157963e-08 5.4950570658e-07 -3.35697799296e-08 5.49539801379e-07 -3.30032824284e-08 5.49512912015e-07 -3.24915684523e-08 5.49495905203e-07 -3.20052697937e-08 5.49425459317e-07 -3.15592038334e-08 5.49366968969e-07 -3.11197891153e-08 5.49280069676e-07 -3.06995505175e-08 5.49166738673e-07 -3.02922136299e-08 5.49024017276e-07 -2.98862390848e-08 5.48849958104e-07 -2.94777010613e-08 5.48643876607e-07 -2.90594334396e-08 5.48397870597e-07 -2.86311803423e-08 5.48114493634e-07 -2.81923133382e-08 5.47786870768e-07 -2.77474371405e-08 5.47438490597e-07 -2.73017968815e-08 5.47050163386e-07 -2.68729674905e-08 5.4665190119e-07 -2.64585827263e-08 5.46223595384e-07 -2.60733630045e-08 5.45784061154e-07 -2.57252989775e-08 5.45310690784e-07 -2.5431576161e-08 5.44842093714e-07 -2.51911106167e-08 5.44355838386e-07 -2.50227862191e-08 5.43892153485e-07 -2.49193094335e-08 5.43429896108e-07 -2.48980618445e-08 5.43009321938e-07 -2.49529965707e-08 5.42606959156e-07 -2.5100858923e-08 5.42269954514e-07 -2.53159428863e-08 5.4197084128e-07 -2.5616158476e-08 5.4174698636e-07 -2.59761980569e-08 5.41567270701e-07 -2.63861078516e-08 5.41500544843e-07 -2.6794743121e-08 5.41415606574e-07 -2.72799124633e-08 5.41478452984e-07 -2.76425258073e-08 5.41534730886e-07 -2.80091733292e-08 5.41640218761e-07 -2.82754787552e-08 5.41745805656e-07 -2.84647667613e-08 5.41822162442e-07 -2.85968360158e-08 5.41845161116e-07 -2.87012196335e-08 5.41816571211e-07 -2.87901262294e-08 5.41729123292e-07 -2.89038847994e-08 5.41613007098e-07 -2.90291429657e-08 5.41459649816e-07 -2.92060433995e-08 5.41300001712e-07 -2.93933352964e-08 5.41115045438e-07 -2.96224849538e-08 5.40931669273e-07 -2.98428074785e-08 5.40713619765e-07 -3.01095606121e-08 5.40499548487e-07 -3.03552264111e-08 5.40251747434e-07 -3.06576597004e-08 5.40017557329e-07 -3.09342675938e-08 5.39751923688e-07 -3.1275696718e-08 5.39505895524e-07 -3.15565642046e-08 5.39206523082e-07 -3.18637860635e-08 5.38902696902e-07 -3.20932709865e-08 5.3857998341e-07 -3.23166488079e-08 5.38299234802e-07 -3.24694659745e-08 5.38029087347e-07 -3.26132969225e-08 5.37803332833e-07 -3.26809554723e-08 5.37578348468e-07 -3.27254800408e-08 5.37385171938e-07 -3.26781152644e-08 5.37183008069e-07 -3.25986156688e-08 5.37007713476e-07 -3.24074601498e-08 5.36811728316e-07 -3.21846319271e-08 5.36629911745e-07 -3.18422447788e-08 5.36405555373e-07 -3.14853256538e-08 5.36178020299e-07 -3.10199651473e-08 5.3589277229e-07 -3.05692650894e-08 5.35600642333e-07 -3.00320344019e-08 5.35251830116e-07 -2.95426186841e-08 5.34906167145e-07 -2.89875905201e-08 5.34512760476e-07 -2.85106292793e-08 5.34136702512e-07 -2.79842887709e-08 5.33720723286e-07 -2.75622159278e-08 5.33333661031e-07 -2.71003987297e-08 5.32915380061e-07 -2.67643564205e-08 5.32547114004e-07 -2.63965307524e-08 5.32166318844e-07 -2.61685053829e-08 5.31854526744e-07 -2.58994455745e-08 5.31536567258e-07 -2.57631848204e-08 5.31296419111e-07 -2.55757271093e-08 5.31062592817e-07 -2.55297449433e-08 5.3093541482e-07 -2.54422650074e-08 5.30842881136e-07 -2.55149826243e-08 5.30886979427e-07 -2.55512386643e-08 5.30980998484e-07 -2.57624976591e-08 5.31228134403e-07 -2.5938741367e-08 5.31533327196e-07 -2.63036695298e-08 5.3200460954e-07 -2.6634533421e-08 5.32538975112e-07 -2.71625774709e-08 5.33246375223e-07 -2.76499474893e-08 5.34012878052e-07 -2.83339526017e-08 5.34949256987e-07 -2.89631601342e-08 5.35930456713e-07 -2.97826031054e-08 5.3706795187e-07 -3.05309017512e-08 5.38226903115e-07 -3.14652674485e-08 5.39519900415e-07 -3.2328873234e-08 5.40810910867e-07 -3.3405494096e-08 5.42219210757e-07 -3.44680024694e-08 5.43620531615e-07 -3.58167919368e-08 5.45138684347e-07 -3.72597700265e-08 5.46650857889e-07 -3.90996173456e-08 5.48256223444e-07 -4.12268016132e-08 5.49854772829e-07 -4.4047058133e-08 5.51590746512e-07 -4.75912406166e-08 5.53486751119e-07 -5.22416317127e-08 5.55791940867e-07 -5.80466051216e-08 5.58612860196e-07 -6.51654172905e-08 5.62159830323e-07 -7.35637789588e-08 5.66199925754e-07 -8.33106141258e-08 5.70591187997e-07 -9.4193281809e-08 5.75507677621e-07 -1.0643931538e-07 -1.20451084321e-07 5.82442431975e-07 1.12905816102e-06 -1.70034032326e-07 1.10800868425e-06 -1.74277121212e-07 1.08504774611e-06 -1.77949264495e-07 1.06327632704e-06 -1.80711673735e-07 1.04014499885e-06 -1.82921087354e-07 1.01859317801e-06 -1.84241362374e-07 9.96129062388e-07 -1.85048919041e-07 9.75517883591e-07 -1.8503416512e-07 9.5432595188e-07 -1.8458654801e-07 9.35142474828e-07 -1.83411378047e-07 9.15604432589e-07 -1.8190232129e-07 8.98130607606e-07 -1.79776255446e-07 8.80433556505e-07 -1.77421981082e-07 8.64762891372e-07 -1.74560125284e-07 8.48927208869e-07 -1.7156549396e-07 8.35023384514e-07 -1.68163401434e-07 8.20974665971e-07 -1.64713710575e-07 8.08722772939e-07 -1.6094739037e-07 7.96327489165e-07 -1.57204151262e-07 7.85572898611e-07 -1.53221579763e-07 7.74668498047e-07 -1.49314918754e-07 7.65239163406e-07 -1.45230505829e-07 7.55658103949e-07 -1.41257929126e-07 7.47391246201e-07 -1.37157084552e-07 7.38979763145e-07 -1.33192152441e-07 7.31731282013e-07 -1.29139556682e-07 7.24353870823e-07 -1.25238232843e-07 7.17999585138e-07 -1.21283751592e-07 7.11531048305e-07 -1.17490739324e-07 7.05950924942e-07 -1.13673506433e-07 7.00266073731e-07 -1.10022166666e-07 6.95342288182e-07 -1.0636883516e-07 6.90331316234e-07 -1.02879601291e-07 6.85970009385e-07 -9.94052304602e-08 6.81548039814e-07 -9.6088667088e-08 6.77680904824e-07 -9.27999881718e-08 6.73786800803e-07 -8.96605650867e-08 6.70367245554e-07 -8.65603914841e-08 6.66945184174e-07 -8.36012726994e-08 6.63922183683e-07 -8.06906083478e-08 6.60917765519e-07 -7.79119551297e-08 6.5824755836e-07 -7.51891702536e-08 6.55616508533e-07 -7.25890805332e-08 6.53261711532e-07 -7.0051453371e-08 6.50966905958e-07 -6.76268266893e-08 6.48893900123e-07 -6.52711232368e-08 6.46904087708e-07 -6.30181209698e-08 6.45082958448e-07 -6.08406747512e-08 6.43372911748e-07 -5.87543569604e-08 6.41779918907e-07 -5.67509249609e-08 6.40331819531e-07 -5.48272800487e-08 6.38949888912e-07 -5.29973202608e-08 6.37732430032e-07 -5.12381456304e-08 6.36515097967e-07 -4.95815120533e-08 6.35480061917e-07 -4.79818293043e-08 6.34388152316e-07 -4.64899429104e-08 6.33499075654e-07 -4.50404826929e-08 6.3250457527e-07 -4.37033700598e-08 6.31726936025e-07 -4.23961999506e-08 6.30803417962e-07 -4.12050166205e-08 6.30102536411e-07 -4.00338414439e-08 6.29234693965e-07 -3.89806722572e-08 6.28589956769e-07 -3.79432520422e-08 6.27761715817e-07 -3.70262986106e-08 6.27116595342e-07 -3.61276686169e-08 6.26278552976e-07 -3.53435647113e-08 6.25547984343e-07 -3.45745570249e-08 6.2466762412e-07 -3.38986288829e-08 6.23843207849e-07 -3.32368475107e-08 6.23006793054e-07 -3.2624841255e-08 6.22167270598e-07 -3.20548081181e-08 6.21300559392e-07 -3.15302911157e-08 6.20415675789e-07 -3.1037468635e-08 6.19509455385e-07 -3.05728093961e-08 6.18596417007e-07 -3.01252532701e-08 6.17651912114e-07 -2.96934998058e-08 6.1668610093e-07 -2.92640067485e-08 6.1568064016e-07 -2.88317876937e-08 6.14641447797e-07 -2.8387225133e-08 6.13554742422e-07 -2.79271753752e-08 6.12416740821e-07 -2.74503467343e-08 6.11222941274e-07 -2.69575157598e-08 6.09967773686e-07 -2.64538858325e-08 6.08666503914e-07 -2.59469910649e-08 6.07312498439e-07 -2.54489118224e-08 6.05928178948e-07 -2.49715855732e-08 6.04499708429e-07 -2.45270672853e-08 6.03040381535e-07 -2.41321609094e-08 6.01545935246e-07 -2.37918163689e-08 6.00038362493e-07 -2.35212095239e-08 5.98520668201e-07 -2.33188996674e-08 5.97008527537e-07 -2.32016886946e-08 5.9550793881e-07 -2.31687875194e-08 5.94036063889e-07 -2.32288576536e-08 5.92609393582e-07 -2.33765474162e-08 5.91235086445e-07 -2.36264827271e-08 5.89935293834e-07 -2.39632044945e-08 5.88724268992e-07 -2.43734395201e-08 5.87624331095e-07 -2.48373457754e-08 5.86574392191e-07 -2.53574520541e-08 5.85701559156e-07 -2.58254870856e-08 5.84862164206e-07 -2.63059328166e-08 5.84126549329e-07 -2.6677129728e-08 5.83412602712e-07 -2.69502427985e-08 5.82671292641e-07 -2.71275628323e-08 5.81863773404e-07 -2.72327360804e-08 5.80987307616e-07 -2.7277968177e-08 5.80013634893e-07 -2.73167705216e-08 5.78994852238e-07 -2.73450628754e-08 5.77908898207e-07 -2.74315113737e-08 5.7682633079e-07 -2.75509727368e-08 5.75704713485e-07 -2.77054898622e-08 5.74606134206e-07 -2.78738197452e-08 5.73460210384e-07 -2.80740042428e-08 5.72338545278e-07 -2.82720174785e-08 5.7115563155e-07 -2.849785104e-08 5.70001713348e-07 -2.87201646789e-08 5.68791527268e-07 -2.89615933653e-08 5.67612552041e-07 -2.91924418156e-08 5.66406971134e-07 -2.94488431038e-08 5.65209639752e-07 -2.96439069051e-08 5.63967281974e-07 -2.98234483847e-08 5.62725993372e-07 -2.99727833509e-08 5.61509962655e-07 -3.0100079198e-08 5.60324833352e-07 -3.01964141216e-08 5.59163763801e-07 -3.02556158518e-08 5.58025418694e-07 -3.02676309854e-08 5.56894252801e-07 -3.02199022692e-08 5.55781458968e-07 -3.0098392598e-08 5.54659194334e-07 -2.98993153218e-08 5.53547035662e-07 -2.96118606404e-08 5.52398599226e-07 -2.92490456502e-08 5.51239740847e-07 -2.88091533808e-08 5.50018088039e-07 -2.83165059184e-08 5.48773930147e-07 -2.7776599841e-08 5.47459291457e-07 -2.72165882845e-08 5.46128974961e-07 -2.66432193045e-08 5.44735250855e-07 -2.6078496772e-08 5.43341344607e-07 -2.5527298446e-08 5.41895023566e-07 -2.50084327543e-08 5.40463188031e-07 -2.45267074513e-08 5.38986722142e-07 -2.40928170175e-08 5.37539835441e-07 -2.3714268253e-08 5.36068037705e-07 -2.33990574252e-08 5.34651837957e-07 -2.31524234022e-08 5.33227126196e-07 -2.29577812668e-08 5.31863236408e-07 -2.28167217822e-08 5.30492964483e-07 -2.27121030979e-08 5.29193209214e-07 -2.26715592317e-08 5.2791173445e-07 -2.26813068547e-08 5.26732122966e-07 -2.27768488534e-08 5.25597359956e-07 -2.29315747622e-08 5.24579495353e-07 -2.31821535928e-08 5.23616330294e-07 -2.34931377123e-08 5.22774969444e-07 -2.39106576649e-08 5.21994775735e-07 -2.43866966331e-08 5.21337100378e-07 -2.49741795151e-08 5.20740372283e-07 -2.56074705325e-08 5.20256010048e-07 -2.63457504917e-08 5.19820494733e-07 -2.7110140033e-08 5.19474970455e-07 -2.79671098749e-08 5.19155088152e-07 -2.88311346048e-08 5.18891645822e-07 -2.97783290227e-08 5.18622950951e-07 -3.07350454691e-08 5.18374113483e-07 -3.18048939281e-08 5.1809661165e-07 -3.29512764878e-08 5.17815973632e-07 -3.42929543814e-08 5.17500367176e-07 -3.5820140551e-08 5.17154227323e-07 -3.76485693333e-08 5.16728653416e-07 -3.9860103335e-08 5.16214577134e-07 -4.27115217151e-08 5.15644211283e-07 -4.64252282761e-08 5.15117787494e-07 -5.12970017166e-08 5.14825318412e-07 -5.75367896171e-08 5.14903728577e-07 -6.51730754499e-08 5.15558474315e-07 -7.43443049842e-08 5.16642567e-07 -8.49782174321e-08 5.18006929244e-07 -9.6997262024e-08 5.19757449452e-07 -1.10550259958e-07 -1.26048880279e-07 5.23668885459e-07 1.36477319909e-06 -1.4715551548e-07 1.3406445286e-06 -1.50770489988e-07 1.31711431051e-06 -1.53861132774e-07 1.2922617511e-06 -1.56407018749e-07 1.26832821368e-06 -1.58427274334e-07 1.24349734287e-06 -1.59901934026e-07 1.21985719512e-06 -1.6086464277e-07 1.19567947044e-06 -1.61310473555e-07 1.17289092035e-06 -1.6128770901e-07 1.14984946222e-06 -1.60799401151e-07 1.12831821269e-06 -1.59903751082e-07 1.1067403781e-06 -1.58608705286e-07 1.08671832631e-06 -1.56976650299e-07 1.06678707932e-06 -1.55016152732e-07 1.04839517199e-06 -1.52789667193e-07 1.03017883993e-06 -1.50304460112e-07 1.01343775704e-06 -1.47621324623e-07 9.96918116352e-07 -1.44745110122e-07 9.81774480621e-07 -1.41732974952e-07 9.66871200014e-07 -1.38585985509e-07 9.5322570919e-07 -1.35355839474e-07 9.3982638881e-07 -1.32039553315e-07 9.27560829505e-07 -1.28682818474e-07 9.15541446941e-07 -1.25279455663e-07 9.04533609536e-07 -1.21869632152e-07 8.93769171553e-07 -1.18445386396e-07 8.83899736408e-07 -1.15041711389e-07 8.74267159651e-07 -1.11649841656e-07 8.65418573724e-07 -1.0829989586e-07 8.56794591687e-07 -1.04982818564e-07 8.48849481712e-07 -1.01723779738e-07 8.41114351913e-07 -9.85134674124e-08 8.33963205322e-07 -9.53726144248e-08 8.27010102472e-07 -9.22916108503e-08 8.2055958882e-07 -8.92874390438e-08 8.14300312189e-07 -8.63500876621e-08 8.08475834333e-07 -8.34938078077e-08 8.0283841556e-07 -8.07083072835e-08 7.97577037253e-07 -7.80060575409e-08 7.92498039383e-07 -7.53766204271e-08 7.87743155992e-07 -7.28313246339e-08 7.83166160262e-07 -7.03598110518e-08 7.78866854193e-07 -6.79724444751e-08 7.74741535821e-07 -6.56592341768e-08 7.70851875466e-07 -6.34291011854e-08 7.67133694856e-07 -6.1273264838e-08 7.63613074187e-07 -5.91986764059e-08 7.60263339667e-07 -5.71985076418e-08 7.57078072945e-07 -5.52769341794e-08 7.54064595742e-07 -5.34304625965e-08 7.51186614837e-07 -5.16598234918e-08 7.48478089413e-07 -4.99654076131e-08 7.45873294889e-07 -4.83435609134e-08 7.43424958176e-07 -4.67980570817e-08 7.41048644892e-07 -4.53201622694e-08 7.38813025103e-07 -4.39172715115e-08 7.36623218731e-07 -4.25768766657e-08 7.34555838556e-07 -4.13099585926e-08 7.32513034133e-07 -4.01010076764e-08 7.30572412308e-07 -3.89634924821e-08 7.28639123479e-07 -3.78803587001e-08 7.26786978021e-07 -3.68661579039e-08 7.24931343295e-07 -3.59033547913e-08 7.23125880633e-07 -3.50075635988e-08 7.21298688382e-07 -3.41610930265e-08 7.1948820798e-07 -3.33769633119e-08 7.1762643419e-07 -3.26378096422e-08 7.15762941375e-07 -3.19484369347e-08 7.13890907417e-07 -3.1294022122e-08 7.12029281563e-07 -3.06901130911e-08 7.10155225806e-07 -3.01210718753e-08 7.08275434109e-07 -2.95964254362e-08 7.0638194949e-07 -2.90966003168e-08 7.04483466466e-07 -2.86265603439e-08 7.02574348619e-07 -2.81664711613e-08 7.00646014641e-07 -2.77185931687e-08 6.98695200146e-07 -2.726289183e-08 6.9670635229e-07 -2.67980862816e-08 6.94676626006e-07 -2.63090662677e-08 6.92586026173e-07 -2.57962472125e-08 6.90429614312e-07 -2.52547055087e-08 6.88194606317e-07 -2.46896606653e-08 6.85876023655e-07 -2.41093297602e-08 6.8348011456e-07 -2.3522602579e-08 6.81008883995e-07 -2.29467048894e-08 6.78484837929e-07 -2.23925634275e-08 6.75893340828e-07 -2.18827520501e-08 6.73265489312e-07 -2.14246992007e-08 6.7058692508e-07 -2.10359099236e-08 6.67902923176e-07 -2.07222724501e-08 6.6519386432e-07 -2.04948212797e-08 6.62499980179e-07 -2.03575180863e-08 6.59812887793e-07 -2.03116683105e-08 6.57166652343e-07 -2.03710354579e-08 6.5456166892e-07 -2.05446925431e-08 6.52044358824e-07 -2.08348250041e-08 6.4963446338e-07 -2.1243448113e-08 6.47368199794e-07 -2.17575844269e-08 6.45236033816e-07 -2.23506456825e-08 6.4329967839e-07 -2.29671123331e-08 6.41493488545e-07 -2.35889351017e-08 6.39881585344e-07 -2.41206126085e-08 6.38360791984e-07 -2.45472606891e-08 6.36866981893e-07 -2.48395289088e-08 6.35303849672e-07 -2.50024555328e-08 6.33653747599e-07 -2.50319207176e-08 6.31852733316e-07 -2.49880788197e-08 6.29955286817e-07 -2.4881708804e-08 6.27932907905e-07 -2.48143562029e-08 6.25871203598e-07 -2.48088740857e-08 6.23798513784e-07 -2.47940424247e-08 6.21721679766e-07 -2.48725046152e-08 6.19641544336e-07 -2.49505019366e-08 6.17550671097e-07 -2.50999526346e-08 6.15448953458e-07 -2.52185346682e-08 6.13318103777e-07 -2.54089534945e-08 6.1118962503e-07 -2.55230363555e-08 6.09012534403e-07 -2.57292004124e-08 6.06863178963e-07 -2.58718926415e-08 6.04725452316e-07 -2.60367238838e-08 6.02567676893e-07 -2.61448762355e-08 6.00361928361e-07 -2.62820715333e-08 5.98168418864e-07 -2.63576125358e-08 5.95968110137e-07 -2.64730411373e-08 5.93820567469e-07 -2.65204733679e-08 5.9167763654e-07 -2.65926461675e-08 5.89576816745e-07 -2.6567308623e-08 5.87465583066e-07 -2.65344179055e-08 5.85381535488e-07 -2.6361409861e-08 5.83267451989e-07 -2.61569555482e-08 5.81157943317e-07 -2.57897505662e-08 5.78984862256e-07 -2.53981014262e-08 5.76785866266e-07 -2.48558665778e-08 5.74493554832e-07 -2.43241479907e-08 5.72161526962e-07 -2.3674819635e-08 5.69731073502e-07 -2.30829802973e-08 5.67271397794e-07 -2.24087847562e-08 5.64724879288e-07 -2.18291607635e-08 5.62167445073e-07 -2.11879813865e-08 5.59536788476e-07 -2.0672707688e-08 5.56913301326e-07 -2.01142428237e-08 5.54225234441e-07 -1.97042791119e-08 5.5156095163e-07 -1.92612750601e-08 5.48853770765e-07 -1.89951394539e-08 5.46203459659e-07 -1.8706209038e-08 5.43525536902e-07 -1.85840865063e-08 5.40905528499e-07 -1.84043697517e-08 5.38246433378e-07 -1.83757089278e-08 5.35649440714e-07 -1.82911661364e-08 5.33034712702e-07 -1.83889546699e-08 5.30516004142e-07 -1.84490594941e-08 5.28002897399e-07 -1.87079996234e-08 5.255990828e-07 -1.89289409307e-08 5.23203750046e-07 -1.93560952512e-08 5.20921385404e-07 -1.97456802571e-08 5.18647747772e-07 -2.03476855819e-08 5.16487339309e-07 -2.09039851047e-08 5.14329554982e-07 -2.16631585578e-08 5.12272909003e-07 -2.23547349203e-08 5.10200744435e-07 -2.32291248717e-08 5.08202938738e-07 -2.40116920358e-08 5.06159653251e-07 -2.49543031739e-08 5.04147423826e-07 -2.57888953424e-08 5.0204905271e-07 -2.67803075655e-08 4.99928706618e-07 -2.77009174985e-08 4.9768720093e-07 -2.88474842185e-08 4.95378084099e-07 -3.00254529989e-08 4.92925376894e-07 -3.15374452528e-08 4.90334801156e-07 -3.31902411957e-08 4.87500953931e-07 -3.53549431219e-08 4.84409646643e-07 -3.80237319522e-08 4.8106693415e-07 -4.17737663496e-08 4.77578325696e-07 -4.66672661985e-08 4.74156263972e-07 -5.32663451573e-08 4.70931305387e-07 -6.13045418967e-08 4.68185364318e-07 -7.12598746693e-08 4.6592263773e-07 -8.29347248423e-08 4.63994557481e-07 -9.63910384866e-08 4.62574364087e-07 -1.11547505215e-07 -1.29273259871e-07 4.63965524779e-07 1.64915000469e-06 -1.22234613935e-07 1.62267743167e-06 -1.25138748814e-07 1.59740159861e-06 -1.27677408582e-07 1.57012823653e-06 -1.29835082446e-07 1.54427244146e-06 -1.31621608702e-07 1.51680124497e-06 -1.33019158194e-07 1.49093994426e-06 -1.34043951232e-07 1.4638157201e-06 -1.34689150487e-07 1.43844725486e-06 -1.34979383279e-07 1.41212364817e-06 -1.34915707754e-07 1.38764673672e-06 -1.34528726839e-07 1.36247206984e-06 -1.33825173953e-07 1.33917897482e-06 -1.32838817719e-07 1.31539490425e-06 -1.31580217454e-07 1.29347591886e-06 -1.30084173195e-07 1.27122952579e-06 -1.28362946903e-07 1.25078761178e-06 -1.26450618066e-07 1.23014567666e-06 -1.24359910903e-07 1.21121294751e-06 -1.2212296269e-07 1.19217869094e-06 -1.19752128451e-07 1.17473336586e-06 -1.17276185677e-07 1.15726492808e-06 -1.14706526884e-07 1.14125233413e-06 -1.1206755612e-07 1.12527945522e-06 -1.09369991716e-07 1.11062175742e-06 -1.06633148405e-07 1.09605438492e-06 -1.03867541718e-07 1.08266077135e-06 -1.01087304363e-07 1.06939577557e-06 -9.83038228205e-08 1.05716484507e-06 -9.55261032595e-08 1.04509066211e-06 -9.27665278759e-08 1.03391933963e-06 -9.00293342281e-08 1.02292403982e-06 -8.73272640527e-08 1.01271154211e-06 -8.46606970875e-08 1.00268822722e-06 -8.20413562543e-08 9.93342730979e-07 -7.9467596643e-08 9.84194505801e-07 -7.6948661758e-08 9.75633929974e-07 -7.44830567869e-08 9.67275740477e-07 -7.20767470631e-08 9.59428568547e-07 -6.97299801357e-08 9.51786465704e-07 -6.74446145133e-08 9.44588875226e-07 -6.52235001794e-08 9.37597621261e-07 -6.30644220535e-08 9.3098997068e-07 -6.09728627619e-08 9.24590590036e-07 -5.89428483475e-08 9.18516648685e-07 -5.69819996084e-08 9.12655939824e-07 -5.50824846043e-08 9.07065521649e-07 -5.32521381166e-08 9.01698984377e-07 -5.14841860771e-08 8.96549414643e-07 -4.978448433e-08 8.91637734324e-07 -4.81489999847e-08 8.86891992864e-07 -4.65784362513e-08 8.8239465649e-07 -4.50734108733e-08 8.78010139911e-07 -4.3629415e-08 8.73876572863e-07 -4.22514648803e-08 8.69806897787e-07 -4.09297321819e-08 8.6598170182e-07 -3.96743532475e-08 8.62178899237e-07 -3.84722666096e-08 8.58606326434e-07 -3.73356856544e-08 8.55024581289e-07 -3.62493937534e-08 8.51648825202e-07 -3.52251077753e-08 8.48241392836e-07 -3.4248519311e-08 8.45007788101e-07 -3.3327730109e-08 8.4172738155e-07 -3.24516350599e-08 8.38580192326e-07 -3.1624769889e-08 8.35375383832e-07 -3.08405766674e-08 8.32264356653e-07 -3.00997348872e-08 8.29087567503e-07 -2.94019627533e-08 8.25980462782e-07 -2.87423460789e-08 8.22830228083e-07 -2.8124595026e-08 8.19747233496e-07 -2.75423474794e-08 8.16627762607e-07 -2.69987527404e-08 8.13566012899e-07 -2.64862562132e-08 8.10477288357e-07 -2.6001012459e-08 8.07436669182e-07 -2.55360667099e-08 8.04375679788e-07 -2.50806811713e-08 8.01337113455e-07 -2.46260946193e-08 7.98271362993e-07 -2.41566707449e-08 7.95187048132e-07 -2.36622198669e-08 7.9204998428e-07 -2.31293646805e-08 7.88842804022e-07 -2.25507320704e-08 7.85546162593e-07 -2.19247283238e-08 7.82136341715e-07 -2.12590802884e-08 7.78613653847e-07 -2.05635893291e-08 7.74968664242e-07 -1.98628709184e-08 7.71216471644e-07 -1.91659663919e-08 7.67370411942e-07 -1.8510937358e-08 7.63435622863e-07 -1.78976285894e-08 7.59450835265e-07 -1.73680528168e-08 7.55413357672e-07 -1.69122610385e-08 7.51377057347e-07 -1.65656560248e-08 7.4732236552e-07 -1.62990507693e-08 7.43300103582e-07 -1.61458632995e-08 7.39276144794e-07 -1.60758075825e-08 7.35296145719e-07 -1.61348656976e-08 7.31371215007e-07 -1.63208392555e-08 7.27551475359e-07 -1.66854738219e-08 7.23901886091e-07 -1.72452576796e-08 7.20479478708e-07 -1.79642779857e-08 7.17309507611e-07 -1.8824162361e-08 7.14420317429e-07 -1.97030644227e-08 7.11837605248e-07 -2.05672946257e-08 7.09505105713e-07 -2.13082010557e-08 7.07331854644e-07 -2.18925352064e-08 7.05181081637e-07 -2.22379151256e-08 7.02941130437e-07 -2.2343898972e-08 7.00514477239e-07 -2.22238024849e-08 6.97884372538e-07 -2.19430163131e-08 6.95018019224e-07 -2.16114155854e-08 6.91957355262e-07 -2.13228217918e-08 6.8896703482e-07 -2.09823546105e-08 6.85836697217e-07 -2.08841652244e-08 6.82808311036e-07 -2.0773784882e-08 6.79684250895e-07 -2.08047722601e-08 6.76672331701e-07 -2.08290509536e-08 6.73534856641e-07 -2.09671313823e-08 6.70528794785e-07 -2.10285756515e-08 6.67362646466e-07 -2.11948330006e-08 6.64304725625e-07 -2.12548780288e-08 6.61171233579e-07 -2.13672264633e-08 6.581074079e-07 -2.14140414713e-08 6.54978410597e-07 -2.14717574359e-08 6.5183894703e-07 -2.14815648523e-08 6.4861978782e-07 -2.15477653195e-08 6.45460431564e-07 -2.15882333119e-08 6.42284802651e-07 -2.16753756231e-08 6.39190842563e-07 -2.1711233645e-08 6.36073456915e-07 -2.17459733923e-08 6.33022006723e-07 -2.16687252673e-08 6.29915042348e-07 -2.15367594481e-08 6.26843857165e-07 -2.12493830113e-08 6.23671846758e-07 -2.08876932651e-08 6.20489510855e-07 -2.037375003e-08 6.1715949046e-07 -1.9811818268e-08 6.13783894772e-07 -1.91357946131e-08 6.10241961471e-07 -1.84621206265e-08 6.06654035664e-07 -1.77280671517e-08 6.02914112693e-07 -1.70466118808e-08 5.99147003922e-07 -1.63395358515e-08 5.95247333316e-07 -1.57096933808e-08 5.91339856146e-07 -1.50824543931e-08 5.8731955226e-07 -1.45601998703e-08 5.83303680277e-07 -1.40553942121e-08 5.791911865e-07 -1.36681520617e-08 5.751129977e-07 -1.33332156073e-08 5.70981718215e-07 -1.31372456165e-08 5.66902381187e-07 -1.29662066572e-08 5.62761564189e-07 -1.2878679514e-08 5.58648733774e-07 -1.27863881468e-08 5.54467952548e-07 -1.27844923565e-08 5.50333896699e-07 -1.28264150472e-08 5.46172588142e-07 -1.29876204951e-08 5.42081787258e-07 -1.32076705706e-08 5.37974835275e-07 -1.3541811255e-08 5.33934410372e-07 -1.39344035632e-08 5.29879126218e-07 -1.44450713172e-08 5.25886359976e-07 -1.5013702027e-08 5.218793803e-07 -1.56935359787e-08 5.17924248784e-07 -1.64121322381e-08 5.13942969966e-07 -1.72162312461e-08 5.09988271541e-07 -1.80311106964e-08 5.05980930923e-07 -1.89033467183e-08 5.01960312888e-07 -1.97572631295e-08 4.97842187954e-07 -2.06444036488e-08 4.93654640024e-07 -2.15053889388e-08 4.89309805053e-07 -2.24312108414e-08 4.84839524353e-07 -2.34075785468e-08 4.80153237439e-07 -2.45418927244e-08 4.75297818025e-07 -2.58379323441e-08 4.70131666311e-07 -2.73556347064e-08 4.64651114299e-07 -2.92003496607e-08 4.58684206928e-07 -3.16689071383e-08 4.52375473766e-07 -3.51530369189e-08 4.45708727243e-07 -3.99801975706e-08 4.39077867951e-07 -4.66765068345e-08 4.32513994282e-07 -5.4961639629e-08 4.26488632836e-07 -6.55236751938e-08 4.20986472137e-07 -7.81678333995e-08 4.15983633199e-07 -9.30349145598e-08 4.11435028395e-07 -1.09547488139e-07 -1.2975394034e-07 4.10277642182e-07 1.99643823423e-06 -9.48513339838e-08 1.96710988348e-06 -9.70474461088e-08 1.9396122326e-06 -9.90320940567e-08 1.90948079874e-06 -1.00734828984e-07 1.88129032299e-06 -1.02216694669e-07 1.85081862486e-06 -1.03407863131e-07 1.82238191275e-06 -1.04371363519e-07 1.79201627629e-06 -1.05043251261e-07 1.76374731724e-06 -1.05492375175e-07 1.73387714832e-06 -1.05661740921e-07 1.70613990555e-06 -1.05622966122e-07 1.67710467722e-06 -1.05321492826e-07 1.65020128951e-06 -1.0483408931e-07 1.62226402391e-06 -1.04108724695e-07 1.59642793896e-06 -1.03224931137e-07 1.56979304276e-06 -1.02128306129e-07 1.54519158594e-06 -1.00903459008e-07 1.51999194817e-06 -9.94941263938e-08 1.49673245633e-06 -9.79885224151e-08 1.47305275323e-06 -9.63264476269e-08 1.4511927699e-06 -9.45989174296e-08 1.42906546259e-06 -9.27441873162e-08 1.40861948348e-06 -9.08512673963e-08 1.38804087057e-06 -8.88577571401e-08 1.36898632027e-06 -8.68479542331e-08 1.34991302991e-06 -8.47632856812e-08 1.33219774611e-06 -8.26803430617e-08 1.31456112225e-06 -8.05461536199e-08 1.29811570043e-06 -7.84288111949e-08 1.28182814191e-06 -7.62837815066e-08 1.26657689112e-06 -7.4167740448e-08 1.25154521818e-06 -7.20444609889e-08 1.23741259363e-06 -6.99573694376e-08 1.22353977255e-06 -6.78805742699e-08 1.21044919429e-06 -6.58428618761e-08 1.19763984794e-06 -6.38291828672e-08 1.18551779254e-06 -6.18562674947e-08 1.17368050946e-06 -5.99186731085e-08 1.16245477929e-06 -5.80231381712e-08 1.15150656867e-06 -5.61706124234e-08 1.1411062527e-06 -5.43616050262e-08 1.13097046372e-06 -5.25997754786e-08 1.12132350698e-06 -5.08836958603e-08 1.11193268795e-06 -4.9215530879e-08 1.10296756058e-06 -4.75970906613e-08 1.09426823595e-06 -4.6024383816e-08 1.08592546394e-06 -4.45078741055e-08 1.0778730072e-06 -4.30366926134e-08 1.07010337971e-06 -4.1623964524e-08 1.06265950981e-06 -4.02577426787e-08 1.05541428982e-06 -3.89446523484e-08 1.04852327314e-06 -3.76868098518e-08 1.0417477272e-06 -3.64708788843e-08 1.03535410358e-06 -3.53234170112e-08 1.02899614645e-06 -3.4204003631e-08 1.02303337537e-06 -3.3171800921e-08 1.017052259e-06 -3.21485229754e-08 1.01145923636e-06 -3.12310983779e-08 1.00581323546e-06 -3.02996005503e-08 1.00051885995e-06 -2.94887101109e-08 9.95160925089e-07 -2.86416379575e-08 9.90098012968e-07 -2.79173672448e-08 9.8497336918e-07 -2.71424955127e-08 9.80071522744e-07 -2.64853748262e-08 9.75124213378e-07 -2.57731209757e-08 9.70324204765e-07 -2.51715398161e-08 9.65506536905e-07 -2.45226720716e-08 9.60777690192e-07 -2.39740596844e-08 9.56059910861e-07 -2.33970638327e-08 9.51415823786e-07 -2.28983217983e-08 9.46791660635e-07 -2.23951915406e-08 9.42254509498e-07 -2.19416994978e-08 9.37733092145e-07 -2.14953016192e-08 9.33300525639e-07 -2.10793478543e-08 9.28885231017e-07 -2.06604127773e-08 9.24536507402e-07 -2.0250566153e-08 9.20205400589e-07 -1.98036767162e-08 9.15879385409e-07 -1.93310265778e-08 9.11543608561e-07 -1.8774869837e-08 9.071134891e-07 -1.81444621078e-08 9.02600460422e-07 -1.74164921136e-08 8.97902628157e-07 -1.6596245442e-08 8.93054332704e-07 -1.57417625664e-08 8.88006098024e-07 -1.48154474533e-08 8.82778128379e-07 -1.39668877474e-08 8.7740877149e-07 -1.30763484073e-08 8.71884613113e-07 -1.23760398219e-08 8.66354565064e-07 -1.16741941506e-08 8.60725334835e-07 -1.12096779354e-08 8.55214305039e-07 -1.0750375247e-08 8.496244025e-07 -1.05396827519e-08 8.44189410375e-07 -1.02897429743e-08 8.386492652e-07 -1.02217322928e-08 8.33181885894e-07 -1.01540303424e-08 8.27656992911e-07 -1.03248064952e-08 8.22243567785e-07 -1.07709519755e-08 8.17133606424e-07 -1.15692742153e-08 8.12344692461e-07 -1.27479171391e-08 8.0819655273e-07 -1.40479631653e-08 8.04473828875e-07 -1.5552235411e-08 8.0137120861e-07 -1.69322889103e-08 7.98644983133e-07 -1.81707544645e-08 7.96264049329e-07 -1.90281545241e-08 7.93863508587e-07 -1.94695342112e-08 7.91320737837e-07 -1.93933309629e-08 7.88392599069e-07 -1.89143021259e-08 7.85009789579e-07 -1.81591441625e-08 7.81157592142e-07 -1.73252988062e-08 7.77291826951e-07 -1.64700709749e-08 7.72983298734e-07 -1.59979118269e-08 7.68931838217e-07 -1.54604186101e-08 7.64768751465e-07 -1.52203434245e-08 7.60717836595e-07 -1.5155506368e-08 7.56612248069e-07 -1.51858032373e-08 7.52644913941e-07 -1.52877188964e-08 7.48596936109e-07 -1.53999638978e-08 7.44635505055e-07 -1.54974361416e-08 7.40585154981e-07 -1.55421203769e-08 7.36563912842e-07 -1.55603009003e-08 7.32535782064e-07 -1.54788950502e-08 7.28439621156e-07 -1.54088149387e-08 7.24244900584e-07 -1.53037476103e-08 7.19993706335e-07 -1.52786896817e-08 7.15734486257e-07 -1.52799004423e-08 7.11507401719e-07 -1.53718709434e-08 7.07319367171e-07 -1.54377396652e-08 7.03161403684e-07 -1.55026905308e-08 6.9900969781e-07 -1.54330276321e-08 6.94833228666e-07 -1.52780038154e-08 6.90604862793e-07 -1.49228736406e-08 6.86279133019e-07 -1.44673627385e-08 6.8183100404e-07 -1.38229616825e-08 6.77222703818e-07 -1.31229516183e-08 6.72448448184e-07 -1.2292983335e-08 6.67496753146e-07 -1.14748055297e-08 6.62390154576e-07 -1.06018910709e-08 6.57134407346e-07 -9.80335163969e-09 6.51756873262e-07 -8.9837986987e-09 6.46253854217e-07 -8.25506888618e-09 6.40656212767e-07 -7.53151962436e-09 6.34958626924e-07 -6.93390045345e-09 6.29184436684e-07 -6.34954303581e-09 6.23322003927e-07 -5.9007244313e-09 6.17429743952e-07 -5.5173830988e-09 6.11515173448e-07 -5.31073902626e-09 6.05599490225e-07 -5.12121556014e-09 5.9963448662e-07 -5.01047734254e-09 5.93624953813e-07 -4.86887371677e-09 5.87537625004e-07 -4.8188060597e-09 5.81438981363e-07 -4.80640018284e-09 5.75313026677e-07 -4.94655997457e-09 5.69208370361e-07 -5.11809268311e-09 5.63081600768e-07 -5.43594602014e-09 5.56969654915e-07 -5.77649058667e-09 5.50834335546e-07 -6.27217690352e-09 5.44712332308e-07 -6.79068794949e-09 5.3856750076e-07 -7.45603295164e-09 5.32428129032e-07 -8.11362204265e-09 5.26250609321e-07 -8.88879151171e-09 5.20052876849e-07 -9.61061969924e-09 5.13785146127e-07 -1.04267918911e-08 5.07454486606e-07 -1.11403583565e-08 5.00999359337e-07 -1.19268079524e-08 4.94417239297e-07 -1.25850402703e-08 4.8763638814e-07 -1.33512795998e-08 4.8066730393e-07 -1.40764758666e-08 4.73423828489e-07 -1.49924658194e-08 4.6595290644e-07 -1.60258214084e-08 4.58079827573e-07 -1.7223504442e-08 4.49783041715e-07 -1.87529805729e-08 4.40844384195e-07 -2.07498410881e-08 4.31465437228e-07 -2.40457298574e-08 4.21557740079e-07 -2.86153596558e-08 4.11691469119e-07 -3.56045726151e-08 4.01759965357e-07 -4.41471496588e-08 3.92455220404e-07 -5.56154193356e-08 3.83587623113e-07 -6.94049715611e-08 3.75453458678e-07 -8.61741250164e-08 3.67389225516e-07 -1.0416885043e-07 -1.27579479177e-07 3.63373256072e-07 1.45763862872e-06 -7.65466784044e-08 1.43782229054e-06 -7.84406289101e-08 1.4200918e-06 -7.99129547115e-08 1.39973901992e-06 -8.14454402983e-08 1.38146216366e-06 -8.25533582966e-08 1.36082050055e-06 -8.37090192242e-08 1.34226980787e-06 -8.44372249775e-08 1.32158690157e-06 -8.52073117146e-08 1.3029823085e-06 -8.55513793896e-08 1.28248379301e-06 -8.59360003726e-08 1.26407023885e-06 -8.59041914691e-08 1.24395746512e-06 -8.59223489709e-08 1.22591227764e-06 -8.55362850609e-08 1.20635428526e-06 -8.52138972106e-08 1.18885818376e-06 -8.45049435295e-08 1.1699977706e-06 -8.38798214783e-08 1.15316480019e-06 -8.2885912175e-08 1.13511873185e-06 -8.19951960784e-08 1.11905194867e-06 -8.07622089877e-08 1.10191539798e-06 -7.96503654176e-08 1.08666204871e-06 -7.82267351753e-08 1.07049993198e-06 -7.69328332995e-08 1.05608783909e-06 -7.53658772131e-08 1.04093090661e-06 -7.39300569011e-08 1.02734933355e-06 -7.22610354473e-08 1.01319636543e-06 -7.07173470237e-08 1.00042755754e-06 -6.89853934508e-08 9.87256120313e-07 -6.73699653607e-08 9.75271106376e-07 -6.5610793088e-08 9.63044775523e-07 -6.39566673274e-08 9.5181785637e-07 -6.22030299217e-08 9.40489913507e-07 -6.05407007617e-08 9.299896344e-07 -5.88141799323e-08 9.19502225083e-07 -5.71647120637e-08 9.09698712385e-07 -5.54784891626e-08 8.99990490106e-07 -5.38595253927e-08 8.90851527239e-07 -5.22228525533e-08 8.81859665609e-07 -5.06467964485e-08 8.73352250222e-07 -4.90662899427e-08 8.65011509993e-07 -4.75435583668e-08 8.57096122623e-07 -4.60233851818e-08 8.49340136219e-07 -4.45633303989e-08 8.41976117545e-07 -4.31071797052e-08 8.34744705965e-07 -4.17193109541e-08 8.27895537858e-07 -4.03308808106e-08 8.21154235843e-07 -3.90223645769e-08 8.14771917132e-07 -3.77125888887e-08 8.08517409362e-07 -3.64820750365e-08 8.02551063316e-07 -3.52622145439e-08 7.9678134884e-07 -3.41013723399e-08 7.91157021002e-07 -3.29823765233e-08 7.85851329989e-07 -3.18875141261e-08 7.80518722605e-07 -3.0880556537e-08 7.75646762535e-07 -2.98581346814e-08 7.70560270905e-07 -2.89733008565e-08 7.6609758356e-07 -2.80245979929e-08 7.61240144333e-07 -2.72663660978e-08 7.57151551693e-07 -2.63932528015e-08 7.52513801791e-07 -2.57521412175e-08 7.48731188089e-07 -2.49534311106e-08 7.44325449532e-07 -2.44022606627e-08 7.40771996917e-07 -2.36749570346e-08 7.36594789933e-07 -2.31866297013e-08 7.33203396907e-07 -2.25117774678e-08 7.29240678564e-07 -2.20560837953e-08 7.2594511698e-07 -2.14314194838e-08 7.22183229676e-07 -2.09990719574e-08 7.18934715393e-07 -2.04392946555e-08 7.15382839368e-07 -2.00291045468e-08 7.12170657689e-07 -1.95484908594e-08 7.08829510149e-07 -1.91640505611e-08 7.05703590409e-07 -1.8755285153e-08 7.0253801954e-07 -1.84106927584e-08 6.9954859071e-07 -1.80548833491e-08 6.96546022476e-07 -1.77384654468e-08 6.93732446211e-07 -1.73857006028e-08 6.90896970061e-07 -1.70647266451e-08 6.88234528273e-07 -1.66497256958e-08 6.8554395887e-07 -1.61810182173e-08 6.82878934964e-07 -1.55415773998e-08 6.8015272112e-07 -1.47456768654e-08 6.77199969934e-07 -1.38108434513e-08 6.74222730981e-07 -1.27151344423e-08 6.70803190678e-07 -1.16587630338e-08 6.67513978885e-07 -1.04863527695e-08 6.63679698231e-07 -9.53293390507e-09 6.60176061505e-07 -8.51704246523e-09 6.56232275695e-07 -7.8161464216e-09 6.52737194695e-07 -7.16758859774e-09 6.48883594771e-07 -6.87425892733e-09 6.45554394674e-07 -6.55253803847e-09 6.41948183511e-07 -6.44524059417e-09 6.3859531793e-07 -6.1481251768e-09 6.3487544664e-07 -5.91714951054e-09 6.31032627666e-07 -5.79085155946e-09 6.27127595763e-07 -6.15934473234e-09 6.23396969403e-07 -7.23844094057e-09 6.20369225075e-07 -8.83894110252e-09 6.17677933162e-07 -1.09841523514e-08 6.15853708944e-07 -1.29835681861e-08 6.14556039758e-07 -1.50533973027e-08 6.13836970332e-07 -1.68008622081e-08 6.13370244968e-07 -1.80217457998e-08 6.12943595919e-07 -1.84539331422e-08 6.12180163406e-07 -1.80922540798e-08 6.10891370463e-07 -1.70636045521e-08 6.090099236e-07 -1.56687296198e-08 6.06668058022e-07 -1.42080887892e-08 6.03790265635e-07 -1.30271922297e-08 6.01184590856e-07 -1.17846167023e-08 5.98343247686e-07 -1.13810752861e-08 5.95517836578e-07 -1.11404946808e-08 5.92888480987e-07 -1.10419365724e-08 5.90263965537e-07 -1.11588147469e-08 5.87811536958e-07 -1.1277363859e-08 5.85330606685e-07 -1.14820432299e-08 5.82955187444e-07 -1.15656821687e-08 5.80490384044e-07 -1.16448857725e-08 5.78089915435e-07 -1.15444385882e-08 5.75583968314e-07 -1.14305386119e-08 5.73068512143e-07 -1.11730638882e-08 5.70372285352e-07 -1.09876000103e-08 5.67667675337e-07 -1.0816317617e-08 5.6490456061e-07 -1.08437908004e-08 5.62253505165e-07 -1.0917326707e-08 5.59613559041e-07 -1.10980375815e-08 5.57085312601e-07 -1.11672112169e-08 5.54524412387e-07 -1.11943207666e-08 5.52010376344e-07 -1.09679275576e-08 5.49385102565e-07 -1.0645196148e-08 5.46734242085e-07 -1.00441798751e-08 5.43900420807e-07 -9.38011808916e-09 5.40979381865e-07 -8.50591009982e-09 5.37843195122e-07 -7.63467583565e-09 5.34606095945e-07 -6.64307071315e-09 5.31179671446e-07 -5.74994061704e-09 5.2768859084e-07 -4.80838836057e-09 5.240474971e-07 -4.00512993502e-09 5.2036094866e-07 -3.14358207004e-09 5.16549145429e-07 -2.4614476911e-09 5.12719187465e-07 -1.75365389787e-09 5.08779492439e-07 -1.24123662156e-09 5.04824213352e-07 -6.85401021184e-10 5.00812350122e-07 -4.20126452904e-10 4.96867476595e-07 -1.66118789379e-10 4.92905824956e-07 -1.32240911204e-10 4.88965488888e-07 5.85391611186e-11 4.84959424502e-07 7.14198793272e-11 4.80932960446e-07 2.41581798489e-10 4.76865677124e-07 9.74783190954e-11 4.72849638865e-07 6.1381626236e-11 4.68820748393e-07 -2.96033465743e-10 4.64839914824e-07 -5.03565872441e-10 4.60837507832e-07 -1.03608021015e-09 4.56875807424e-07 -1.41970151769e-09 4.52896328911e-07 -2.14291687098e-09 4.48956648675e-07 -2.69182029819e-09 4.44995732595e-07 -3.56329836608e-09 4.41061121744e-07 -4.20138927177e-09 4.3708208334e-07 -5.13557478385e-09 4.33103438662e-07 -5.78333458904e-09 4.29042003591e-07 -6.69643244069e-09 4.2493094426e-07 -7.2636985433e-09 4.20677503007e-07 -8.07927179362e-09 4.1629270513e-07 -8.5501340727e-09 4.11710804638e-07 -9.3722218333e-09 4.06892008885e-07 -9.89365210272e-09 4.01856981479e-07 -1.09422075484e-08 3.9640114905e-07 -1.15639413817e-08 3.90539772078e-07 -1.28923423323e-08 3.83889890034e-07 -1.419472195e-08 3.76815995179e-07 -1.72849980306e-08 3.68981798115e-07 -2.12437235885e-08 3.61232642117e-07 -2.84213480002e-08 3.53159578659e-07 -3.66732997647e-08 3.45793857768e-07 -4.88084338457e-08 3.38597080087e-07 -6.31479469914e-08 3.32485225387e-07 -8.15894432005e-08 3.25829776868e-07 -1.0037031953e-07 -1.26310560811e-07 3.23936407175e-07 1.27069290047e-06 -6.16996438492e-08 1.25637972236e-06 -6.30351744937e-08 1.23994705816e-06 -6.44250191241e-08 1.22507810205e-06 -6.55138309871e-08 1.20828753831e-06 -6.66369540313e-08 1.19305832625e-06 -6.74517477363e-08 1.17610455612e-06 -6.82861105215e-08 1.16072971761e-06 -6.88062927038e-08 1.14378626669e-06 -6.93407933193e-08 1.12842101468e-06 -6.95636886104e-08 1.11164224351e-06 -6.98004482558e-08 1.09646493922e-06 -6.97285931389e-08 1.0799823369e-06 -6.9679767436e-08 1.06510862757e-06 -6.93342105606e-08 1.04904279627e-06 -6.90231811965e-08 1.03461216916e-06 -6.84277882089e-08 1.01907764794e-06 -6.78812022882e-08 1.00515940501e-06 -6.70728418553e-08 9.90265880023e-07 -6.63192985002e-08 9.76945770818e-07 -6.53299246656e-08 9.62775382684e-07 -6.43986182735e-08 9.50059899914e-07 -6.32655327526e-08 9.36660287976e-07 -6.2187916495e-08 9.24578077426e-07 -6.09433899296e-08 9.11968081413e-07 -5.97526110202e-08 9.00504909248e-07 -5.84338039165e-08 8.88687878574e-07 -5.71619670948e-08 8.77858800252e-07 -5.57996364758e-08 8.66827574808e-07 -5.44780350591e-08 8.56620627782e-07 -5.31025872947e-08 8.46354875544e-07 -5.17614080334e-08 8.3676908998e-07 -5.03920270388e-08 8.27235704864e-07 -4.90503125878e-08 8.18250578674e-07 -4.76961715531e-08 8.09403790338e-07 -4.63643168264e-08 8.01002937084e-07 -4.50297942429e-08 7.92791016884e-07 -4.37164957714e-08 7.84946266849e-07 -4.24088466151e-08 7.77314611232e-07 -4.11240219581e-08 7.69997823509e-07 -3.98483652631e-08 7.62884951619e-07 -3.86023495611e-08 7.56060683446e-07 -3.73631820697e-08 7.49402221335e-07 -3.61659864725e-08 7.43037846954e-07 -3.49699541804e-08 7.36790790912e-07 -3.382956486e-08 7.30844983026e-07 -3.2688715819e-08 7.25004994446e-07 -3.16060578715e-08 7.19439760576e-07 -3.0531162995e-08 7.14011110438e-07 -2.95094569184e-08 7.08773428423e-07 -2.85116902143e-08 7.0374559627e-07 -2.75564402643e-08 6.98788380648e-07 -2.66457560603e-08 6.9413001771e-07 -2.57642209183e-08 6.89418577378e-07 -2.49502793597e-08 6.85107886105e-07 -2.4150648285e-08 6.8062038216e-07 -2.34416900986e-08 6.7664053601e-07 -2.27264327052e-08 6.7238181943e-07 -2.21112444941e-08 6.68682975001e-07 -2.14777709411e-08 6.64656292238e-07 -2.09413700245e-08 6.61176218718e-07 -2.03910785836e-08 6.57386588095e-07 -1.99218689425e-08 6.54116242633e-07 -1.94075948059e-08 6.50544796063e-07 -1.89846368938e-08 6.47415044931e-07 -1.85071819677e-08 6.44044426075e-07 -1.81057377661e-08 6.41010852208e-07 -1.76703694033e-08 6.37836289316e-07 -1.7291867159e-08 6.34881974642e-07 -1.69105953011e-08 6.31904654021e-07 -1.6562000959e-08 6.29064151335e-07 -1.62407239766e-08 6.26262994771e-07 -1.59433647169e-08 6.23571328723e-07 -1.56677356802e-08 6.20960968043e-07 -1.53686851083e-08 6.18469490098e-07 -1.512819135e-08 6.16035136422e-07 -1.49284456072e-08 6.13799283458e-07 -1.47184588623e-08 6.11654993988e-07 -1.45019216268e-08 6.09668170604e-07 -1.41428692631e-08 6.07716324924e-07 -1.3575674252e-08 6.05667249884e-07 -1.27295973216e-08 6.03510721971e-07 -1.15896627551e-08 6.00981345683e-07 -1.02985208447e-08 5.98351841182e-07 -8.87135680806e-09 5.95281448991e-07 -7.55589679375e-09 5.92226454477e-07 -6.20471577245e-09 5.88914047715e-07 -5.06913285115e-09 5.85663630782e-07 -4.19652213644e-09 5.82402581648e-07 -3.59173604234e-09 5.79383285525e-07 -3.30613504901e-09 5.76509667191e-07 -3.28518680612e-09 5.73933460205e-07 -3.22754743758e-09 5.71247380782e-07 -2.85586323838e-09 5.68163407127e-07 -2.07632062214e-09 5.64480140644e-07 -1.33006536248e-09 5.60474510742e-07 -1.35304148966e-09 5.56814093556e-07 -2.71396831435e-09 5.53737842892e-07 -5.27005977219e-09 5.51782421382e-07 -7.8378489903e-09 5.50366217139e-07 -1.09793355858e-08 5.49785335855e-07 -1.38921558505e-08 5.49875559503e-07 -1.63731205255e-08 5.50351830852e-07 -1.8011144803e-08 5.50758003076e-07 -1.84168219569e-08 5.50642850331e-07 -1.7555395906e-08 5.49728500592e-07 -1.57367031905e-08 5.47963222369e-07 -1.35115260093e-08 5.45504427834e-07 -1.13295607032e-08 5.42894168034e-07 -9.38401173426e-09 5.39698543973e-07 -8.50157958461e-09 5.36911517486e-07 -7.35745746521e-09 5.34187647933e-07 -7.0308771058e-09 5.31591527855e-07 -7.01247948804e-09 5.29160861235e-07 -7.19525208902e-09 5.26846154054e-07 -7.44955059193e-09 5.2464102675e-07 -7.69726130022e-09 5.22465644579e-07 -7.83998502005e-09 5.20302048652e-07 -7.86684711768e-09 5.18103467644e-07 -7.71908228849e-09 5.15865515813e-07 -7.45384343628e-09 5.13497422627e-07 -7.02453925234e-09 5.10983079705e-07 -6.6273618194e-09 5.08372647498e-07 -6.32937708949e-09 5.05786553596e-07 -6.32964891089e-09 5.03290297293e-07 -6.4750517427e-09 5.00913825775e-07 -6.75069140693e-09 4.98618453364e-07 -6.93272034504e-09 4.96391077843e-07 -6.99660469585e-09 4.94140853925e-07 -6.79545014164e-09 4.9187221887e-07 -6.36998568795e-09 4.89497476334e-07 -5.70294717405e-09 4.87020817918e-07 -4.88002429153e-09 4.84389394226e-07 -3.89282543697e-09 4.81614436753e-07 -2.8776012755e-09 4.78681951937e-07 -1.77040458683e-09 4.75643426478e-07 -7.74299134141e-10 4.72495484776e-07 2.37834193487e-10 4.69290806348e-07 1.111105804e-09 4.65985610774e-07 2.0377096799e-09 4.62650394215e-07 2.78902976324e-09 4.59243141543e-07 3.53796856308e-09 4.55822884362e-07 4.1023812513e-09 4.5231307419e-07 4.70760101247e-09 4.48855761822e-07 4.99085667156e-09 4.45419869562e-07 5.21854754926e-09 4.42090058919e-07 5.20823468125e-09 4.38706343842e-07 5.42511592705e-09 4.35364068404e-07 5.42182818501e-09 4.31901559349e-07 5.66265505393e-09 4.28519902542e-07 5.54552094237e-09 4.25100914113e-07 5.5178997468e-09 4.21788446111e-07 5.21193270048e-09 4.1842433616e-07 5.02863189853e-09 4.15152645832e-07 4.54506279364e-09 4.11820292077e-07 4.20320751969e-09 4.08586959753e-07 3.50837367984e-09 4.05290885616e-07 3.01186038491e-09 4.02094124847e-07 2.17229803528e-09 3.98819116683e-07 1.60141884403e-09 3.95622940447e-07 7.30110788603e-10 3.92323324328e-07 1.62264316287e-10 3.89067349425e-07 -6.50644881957e-10 3.85657941999e-07 -1.11030989243e-09 3.82233968251e-07 -1.78241564746e-09 3.78567769461e-07 -2.08304359725e-09 3.74839283754e-07 -2.74659919361e-09 3.70740486566e-07 -2.98569127939e-09 3.66581763807e-07 -3.91885113112e-09 3.61824835203e-07 -4.01329975519e-09 3.56781852275e-07 -5.26775370012e-09 3.5068246985e-07 -5.62602389004e-09 3.44264344933e-07 -8.83251543725e-09 3.36713160518e-07 -1.18860158765e-08 3.29377923082e-07 -1.96340865719e-08 3.21273379878e-07 -2.74352070941e-08 3.14021672009e-07 -4.07750278325e-08 3.06437527757e-07 -5.54638513828e-08 3.00407871048e-07 -7.68096071662e-08 2.93042060261e-07 -9.57442333955e-08 -1.26089055096e-07 2.90900580698e-07 1.11193084157e-06 -4.90564311987e-08 1.09888259379e-06 -5.03395587044e-08 1.08619950454e-06 -5.14879985412e-08 1.07283016766e-06 -5.24468060592e-08 1.05979310806e-06 -5.33732470705e-08 1.04620203489e-06 -5.41130130275e-08 1.0329775562e-06 -5.48202615587e-08 1.01930436058e-06 -5.53289633357e-08 1.00600954978e-06 -5.58033312613e-08 9.92373430121e-07 -5.60688693696e-08 9.79152407651e-07 -5.63035254554e-08 9.65662762715e-07 -5.63287823147e-08 9.52598171522e-07 -5.6335480003e-08 9.39353782059e-07 -5.61301558701e-08 9.2655449121e-07 -5.59285661661e-08 9.13657661641e-07 -5.55138902822e-08 9.01190153858e-07 -5.51310793888e-08 8.88733789372e-07 -5.45305696197e-08 8.76692970544e-07 -5.3981349588e-08 8.64748584665e-07 -5.32228936461e-08 8.53177571377e-07 -5.25240398087e-08 8.4178096435e-07 -5.16385893599e-08 8.30728325346e-07 -5.08159936913e-08 8.19906026948e-07 -4.98366631393e-08 8.09388982552e-07 -4.89226123921e-08 7.99155434392e-07 -4.78789719294e-08 7.89200631195e-07 -4.69016612601e-08 7.79571478196e-07 -4.58208200581e-08 7.70192865861e-07 -4.48051343134e-08 7.61166002139e-07 -4.37162909798e-08 7.52379193585e-07 -4.26832112349e-08 7.43949676671e-07 -4.15994431501e-08 7.35740995358e-07 -4.05589948835e-08 7.27876162422e-07 -3.9473463031e-08 7.20213925661e-07 -3.84204781167e-08 7.12869141569e-07 -3.73293318881e-08 7.05719790178e-07 -3.62738104377e-08 6.98862559334e-07 -3.51972646431e-08 6.92208001789e-07 -3.41520434756e-08 6.85801060351e-07 -3.31004534391e-08 6.79608753118e-07 -3.20694152555e-08 6.73603886233e-07 -3.10452407287e-08 6.678209236e-07 -3.00367712454e-08 6.62179587591e-07 -2.9041686821e-08 6.56748507806e-07 -2.80728333744e-08 6.51459195934e-07 -2.71143759149e-08 6.46364182701e-07 -2.61968171651e-08 6.41411352473e-07 -2.52967504543e-08 6.36647607832e-07 -2.44369956437e-08 6.32015527515e-07 -2.3614745338e-08 6.27567127756e-07 -2.2796370211e-08 6.23211952745e-07 -2.2056983128e-08 6.19036698125e-07 -2.13009983123e-08 6.14929502726e-07 -2.0653292149e-08 6.11006735331e-07 -1.99675743723e-08 6.07129563933e-07 -1.94134456189e-08 6.03470497598e-07 -1.87868128362e-08 5.99807394758e-07 -1.83216693363e-08 5.96391720116e-07 -1.77473893926e-08 5.92902025165e-07 -1.73601058937e-08 5.89697713568e-07 -1.68110995997e-08 5.86454996414e-07 -1.64520691254e-08 5.83400236158e-07 -1.6019782111e-08 5.80359363333e-07 -1.56751348266e-08 5.77466658987e-07 -1.52874435518e-08 5.74565080909e-07 -1.49799548989e-08 5.71808534678e-07 -1.46285051401e-08 5.69038390711e-07 -1.43502029935e-08 5.66411974816e-07 -1.40294731848e-08 5.63775603099e-07 -1.37730740581e-08 5.61262025924e-07 -1.35021948862e-08 5.58780686325e-07 -1.32795309279e-08 5.56465251276e-07 -1.29992282829e-08 5.54100448648e-07 -1.28520795399e-08 5.51877015921e-07 -1.26359713644e-08 5.49761142842e-07 -1.25497329316e-08 5.47799602971e-07 -1.25587715097e-08 5.46086644659e-07 -1.257672289e-08 5.44591094807e-07 -1.24647113237e-08 5.43214764663e-07 -1.20272739457e-08 5.41796836828e-07 -1.11269789756e-08 5.40117317461e-07 -9.77488502437e-09 5.38106492086e-07 -8.07559474503e-09 5.35671933728e-07 -6.31666864007e-09 5.33002368845e-07 -4.62596249534e-09 5.30088623964e-07 -3.05350195487e-09 5.26951345762e-07 -1.67202905376e-09 5.23906023822e-07 -5.63700160292e-10 5.20809769813e-07 -1.29437635753e-10 5.18003918277e-07 -9.99533173976e-11 5.15649455424e-07 -5.00243078261e-10 5.13814998211e-07 -8.6967452799e-10 5.11938845689e-07 -4.04843582553e-10 5.09236906655e-07 1.28284475135e-09 5.0527991521e-07 3.29750248446e-09 5.00461700914e-07 4.13253753022e-09 4.96069990222e-07 2.28021265982e-09 4.93263804451e-07 -1.44218009909e-09 4.91015743851e-07 -5.64152161904e-09 4.90011344684e-07 -9.22557352214e-09 4.89945673443e-07 -1.31671809753e-08 4.90766348912e-07 -1.66061658443e-08 4.92148546724e-07 -1.8843285121e-08 4.93375340798e-07 -1.91342328043e-08 4.93774304644e-07 -1.74626579855e-08 4.93039881487e-07 -1.45258458807e-08 4.91257692106e-07 -1.12000697456e-08 4.88734848469e-07 -8.16404589623e-09 4.85524092711e-07 -5.95786815838e-09 4.82763951421e-07 -3.88288224544e-09 4.79655957668e-07 -3.68838416377e-09 4.76892096662e-07 -3.42949609598e-09 4.74363849772e-07 -3.65568181789e-09 4.72093891202e-07 -3.97731418458e-09 4.69971699417e-07 -4.44368215553e-09 4.68015727382e-07 -4.77808468409e-09 4.66091549073e-07 -5.02154143876e-09 4.64216098314e-07 -5.00971160353e-09 4.62280881946e-07 -4.86647407225e-09 4.60334329409e-07 -4.45793317184e-09 4.58173226473e-07 -3.88230873951e-09 4.5585407234e-07 -3.21513645247e-09 4.5337289362e-07 -2.83658797041e-09 4.51002581986e-07 -2.82904134443e-09 4.48743042568e-07 -3.15358767846e-09 4.46702773624e-07 -3.56856316019e-09 4.4475920967e-07 -3.9268084288e-09 4.42941185514e-07 -4.07669487587e-09 4.41100594291e-07 -3.9136713589e-09 4.39251647494e-07 -3.44985896093e-09 4.3730072348e-07 -2.76666162476e-09 4.35264081792e-07 -1.83311196041e-09 4.33063948606e-07 -8.31862213249e-10 4.30758560072e-07 3.19009959687e-10 4.28274478875e-07 1.44975896104e-09 4.25745962797e-07 2.53026447055e-09 4.23098110472e-07 3.52774719459e-09 4.204584311e-07 4.42774087011e-09 4.17696461719e-07 5.35755168816e-09 4.14963396706e-07 6.11397105121e-09 4.12141964461e-07 6.83550910573e-09 4.09362517045e-07 7.36893604501e-09 4.06450812554e-07 7.98639322642e-09 4.0365729684e-07 8.18486327784e-09 4.00868836347e-07 8.31386242717e-09 3.98277358927e-07 8.14724490655e-09 3.95566054759e-07 8.36828511732e-09 3.92985009555e-07 8.24005715199e-09 3.90201177644e-07 8.56382846019e-09 3.87565770667e-07 8.30464047364e-09 3.84858748523e-07 8.28955300081e-09 3.82306743714e-07 7.83888541545e-09 3.79649179595e-07 7.68235375041e-09 3.77140177494e-07 7.06089504084e-09 3.74495618091e-07 6.75085167606e-09 3.72023223547e-07 5.90330960101e-09 3.69399933355e-07 5.44367717518e-09 3.66957376778e-07 4.44417785981e-09 3.64344388635e-07 3.92368937201e-09 3.61890709152e-07 2.90504628093e-09 3.5924474047e-07 2.40092416669e-09 3.56723945663e-07 1.46508941013e-09 3.53963386575e-07 1.10608902509e-09 3.51280118021e-07 3.62534545118e-10 3.48252892951e-07 2.5960194543e-10 3.45285573833e-07 -4.26332872193e-10 3.41795332085e-07 -2.79025429321e-10 3.38425965875e-07 -1.19885730735e-09 3.34210555215e-07 -5.56724593199e-10 3.29952536947e-07 -1.61678106366e-09 3.24199622237e-07 -8.75416161268e-10 3.18411342744e-07 -3.90320564445e-09 3.10911080054e-07 -5.65784730723e-09 3.03912820357e-07 -1.36547206539e-08 2.95469545394e-07 -2.0231788586e-08 2.88228889281e-07 -3.43934278671e-08 2.79793235177e-07 -4.8413855148e-08 2.73758454039e-07 -7.22567599887e-08 2.65198454068e-07 -9.02866286299e-08 -1.23431244479e-07 2.62271893911e-07 9.73745612821e-07 -3.99954099252e-08 9.6280389571e-07 -4.00825547865e-08 9.52547090666e-07 -4.06808749392e-08 9.40958158946e-07 -4.15365177769e-08 9.30350520495e-07 -4.22261606468e-08 9.18562091086e-07 -4.29787837469e-08 9.07794385017e-07 -4.35023195947e-08 8.95933036943e-07 -4.40688936118e-08 8.8510053234e-07 -4.43970611475e-08 8.73250558768e-07 -4.47669954091e-08 8.62450137804e-07 -4.48956180582e-08 8.50684456434e-07 -4.50718526414e-08 8.40004291645e-07 -4.50043821292e-08 8.28375688526e-07 -4.50026302809e-08 8.17894964133e-07 -4.47521413045e-08 8.06473873428e-07 -4.45879574525e-08 7.96248333897e-07 -4.41788617271e-08 7.85134309214e-07 -4.38683393663e-08 7.75219011805e-07 -4.3332576991e-08 7.64521879026e-07 -4.28818256572e-08 7.54951172743e-07 -4.22438854516e-08 7.44738901425e-07 -4.16704044217e-08 7.35541894675e-07 -4.0953447229e-08 7.25850451788e-07 -4.02896938663e-08 7.17051152264e-07 -3.95185939285e-08 7.07897636472e-07 -3.87875861773e-08 6.99524349147e-07 -3.79847871863e-08 6.90928527801e-07 -3.72087096894e-08 6.82999174697e-07 -3.63963235313e-08 6.74976640624e-07 -3.5592499643e-08 6.6750650751e-07 -3.4782052877e-08 6.60042108522e-07 -3.39694860113e-08 6.5302444076e-07 -3.31523672068e-08 6.46078659972e-07 -3.23197076806e-08 6.39488239326e-07 -3.14594474421e-08 6.33003230239e-07 -3.06016100864e-08 6.26809206345e-07 -2.97352506567e-08 6.20774030045e-07 -2.88812817334e-08 6.14980256991e-07 -2.80294908956e-08 6.09377208867e-07 -2.71861783779e-08 6.03964908456e-07 -2.63398059652e-08 5.98735093069e-07 -2.55037039378e-08 5.93668774022e-07 -2.46563706725e-08 5.88738037598e-07 -2.38406761796e-08 5.83986425332e-07 -2.30082394301e-08 5.79342676534e-07 -2.22352148234e-08 5.74882798532e-07 -2.14498891299e-08 5.70545849671e-07 -2.07185930377e-08 5.66359741635e-07 -1.99599368578e-08 5.62362982356e-07 -1.9247830683e-08 5.58389471154e-07 -1.85929118053e-08 5.54668707826e-07 -1.79153623899e-08 5.50881841849e-07 -1.7342462695e-08 5.47399418094e-07 -1.67288261497e-08 5.43792920795e-07 -1.62486447204e-08 5.40557781248e-07 -1.56951298957e-08 5.37130870804e-07 -1.52991218913e-08 5.34124852612e-07 -1.47907613892e-08 5.3086705337e-07 -1.44511164508e-08 5.2806849969e-07 -1.3934100975e-08 5.24973875147e-07 -1.36745383228e-08 5.22242882474e-07 -1.32167340559e-08 5.19428073303e-07 -1.29025507242e-08 5.16801880322e-07 -1.25794449162e-08 5.14132924929e-07 -1.23312318471e-08 5.11634500189e-07 -1.20659509658e-08 5.09115703732e-07 -1.18468855051e-08 5.06737556656e-07 -1.16031195601e-08 5.04362976916e-07 -1.13855215783e-08 5.02089143041e-07 -1.11551278799e-08 4.99850862438e-07 -1.09433424701e-08 4.97740958247e-07 -1.07547963855e-08 4.95563888966e-07 -1.06274698565e-08 4.93576444974e-07 -1.03131779599e-08 4.91488376331e-07 -1.03043775817e-08 4.89548086116e-07 -1.04162367959e-08 4.87845687e-07 -1.0690719395e-08 4.86483613481e-07 -1.1072095225e-08 4.85494811817e-07 -1.13457510343e-08 4.84748578565e-07 -1.11589833646e-08 4.83976954767e-07 -1.02481153043e-08 4.82882008476e-07 -8.56512876929e-09 4.81221262613e-07 -6.30972511659e-09 4.78962965483e-07 -3.9217726106e-09 4.76340095097e-07 -1.87800493574e-09 4.73455223287e-07 -1.83904778487e-11 4.70361701002e-07 1.80652370873e-09 4.67013395077e-07 2.87127298542e-09 4.63863604352e-07 3.42341065385e-09 4.60975507405e-07 3.11125218801e-09 4.58855236118e-07 1.99808958344e-09 4.57816767278e-07 5.67220245062e-10 4.56989602083e-07 9.01775168899e-10 4.54697059146e-07 4.12345289636e-09 4.50153237343e-07 8.38162646657e-09 4.43773421411e-07 1.11107377608e-08 4.38338702254e-07 8.37319046375e-09 4.3544489874e-07 1.65227715785e-09 4.34097529592e-07 -3.01045674983e-09 4.33437897738e-07 -8.2212866332e-09 4.34091044567e-07 -1.34901366545e-08 4.35831984076e-07 -1.80864580396e-08 4.38343708741e-07 -2.11614492581e-08 4.40547138296e-07 -2.11988020373e-08 4.41481093587e-07 -1.83008753158e-08 4.40899476501e-07 -1.38883928002e-08 4.39050847119e-07 -9.32664297662e-09 4.36331737162e-07 -5.45931071531e-09 4.33366905764e-07 -2.44199272312e-09 4.29872159146e-07 -1.2095001879e-09 4.27112695646e-07 2.77288884912e-11 4.24483877525e-07 1.1246621802e-10 4.22232333242e-07 -3.75472474284e-10 4.20235096217e-07 -9.46248542968e-10 4.18492971318e-07 -1.62530409603e-09 4.16910056409e-07 -2.10998715594e-09 4.15402304383e-07 -2.38891477301e-09 4.13920831091e-07 -2.37006485935e-09 4.12431589457e-07 -2.12549091663e-09 4.10911039187e-07 -1.65835566668e-09 4.0914481252e-07 -7.05685928011e-10 4.07112915388e-07 2.24652025559e-10 4.04907954755e-07 8.75108647509e-10 4.0285565673e-07 7.13643490486e-10 4.00989085943e-07 2.94663891267e-10 3.993995864e-07 -4.23642567676e-10 3.97945302555e-07 -9.04002040258e-10 3.96645608417e-07 -1.20264339703e-09 3.95330233046e-07 -1.04445730711e-09 3.93986476662e-07 -4.6150720628e-10 3.92579498324e-07 2.89496280263e-10 3.91044771827e-07 1.36758712701e-09 3.89406725184e-07 2.4865906021e-09 3.87623950475e-07 3.69354655781e-09 3.85704904023e-07 4.9768573187e-09 3.83743331442e-07 6.03356629443e-09 3.81700868442e-07 7.11676356245e-09 3.7968875031e-07 7.97380712995e-09 3.77558925907e-07 9.00394760646e-09 3.75484419624e-07 9.74434381783e-09 3.73327269124e-07 1.05213445437e-08 3.71244483441e-07 1.10347764763e-08 3.68984907345e-07 1.17615228277e-08 3.66889984248e-07 1.19012229621e-08 3.64789248028e-07 1.20218965839e-08 3.62966369461e-07 1.16769384681e-08 3.6094438094e-07 1.20403647338e-08 3.59134236773e-07 1.17660581645e-08 3.57009704094e-07 1.22868479955e-08 3.55115566321e-07 1.19961489734e-08 3.53076702493e-07 1.20226836146e-08 3.51252991223e-07 1.16317207452e-08 3.49229982224e-07 1.1558535161e-08 3.47422993397e-07 1.09651987969e-08 3.45367115556e-07 1.08056184467e-08 3.43568892008e-07 9.92721835499e-09 3.41486668053e-07 9.66824376642e-09 3.39679401068e-07 8.6341705341e-09 3.37558262666e-07 8.33896920983e-09 3.35690557532e-07 7.32639209062e-09 3.33487658433e-07 7.04434626032e-09 3.31506562601e-07 6.14393565928e-09 3.29144597781e-07 6.01462995533e-09 3.26974963028e-07 5.30128379456e-09 3.24302660745e-07 5.50834250536e-09 3.21857637037e-07 4.76094462106e-09 3.18672937729e-07 5.43760800017e-09 3.15862516514e-07 4.25510027555e-09 3.1189710739e-07 5.93828581376e-09 3.08204653702e-07 4.35462404044e-09 3.02528797709e-07 6.93326493964e-09 2.97192045858e-07 3.04980955001e-09 2.8945724203e-07 3.43558373276e-09 2.82627572286e-07 -5.75907109983e-09 2.73471790434e-07 -1.03662052537e-08 2.66068657162e-07 -2.64891289977e-08 2.56240692288e-07 -3.88129671098e-08 2.49951209446e-07 -6.72979619358e-08 2.39665194616e-07 -8.29845484583e-08 -1.21152866292e-07 2.35296465263e-07 8.56185508672e-07 -2.4272458596e-08 8.45325309479e-07 -2.92780973443e-08 8.3563517951e-07 -3.10706899651e-08 8.26168733656e-07 -3.21393960332e-08 8.16705889907e-07 -3.28140766186e-08 8.07166698349e-07 -3.34981444027e-08 7.97623849089e-07 -3.39533048139e-08 7.87992737405e-07 -3.44642789169e-08 7.78394582094e-07 -3.47522196152e-08 7.68735682928e-07 -3.50974622447e-08 7.59147530121e-07 -3.52205178811e-08 7.49524660911e-07 -3.54041047206e-08 7.39992244183e-07 -3.53692741633e-08 7.30457571213e-07 -3.5402313914e-08 7.21052195429e-07 -3.52137310032e-08 7.11650485835e-07 -3.51192383495e-08 7.02447137583e-07 -3.48028896724e-08 6.93258445236e-07 -3.46175219292e-08 6.84363625573e-07 -3.42040173664e-08 6.75476030449e-07 -3.39393780584e-08 6.66941987112e-07 -3.34082219181e-08 6.58387144786e-07 -3.3056099612e-08 6.50224214785e-07 -3.2457897917e-08 6.42043367286e-07 -3.20380096864e-08 6.34268865542e-07 -3.13923674225e-08 6.26476045215e-07 -3.09217575406e-08 6.19101194412e-07 -3.0247314298e-08 6.11715237583e-07 -2.97420431656e-08 6.04754150381e-07 -2.90510073998e-08 5.97791400902e-07 -2.85193179772e-08 5.91239126633e-07 -2.78341382908e-08 5.84719748907e-07 -2.72902557015e-08 5.78587802927e-07 -2.66236482174e-08 5.72548050077e-07 -2.60212496389e-08 5.66774626314e-07 -2.53359199119e-08 5.61102925907e-07 -2.46981627516e-08 5.55670261662e-07 -2.40219418072e-08 5.50379239085e-07 -2.33887996967e-08 5.45309754743e-07 -2.27247861474e-08 5.4040437738e-07 -2.20728580339e-08 5.3566869135e-07 -2.1401077798e-08 5.31105930752e-07 -2.07122799579e-08 5.26649188603e-07 -2.00256766212e-08 5.22364944513e-07 -1.93116255477e-08 5.18146051679e-07 -1.86272777413e-08 5.14103825408e-07 -1.79248690963e-08 5.10132949125e-07 -1.72641529466e-08 5.06373521712e-07 -1.65351007751e-08 5.02646396148e-07 -1.59213368051e-08 4.99069732553e-07 -1.52592280311e-08 4.95607592545e-07 -1.46466585905e-08 4.92181143048e-07 -1.40896565289e-08 4.88890213793e-07 -1.3559706143e-08 4.85639362708e-07 -1.30932634125e-08 4.82537141651e-07 -1.2647996308e-08 4.79462467128e-07 -1.22670837557e-08 4.76550396835e-07 -1.18918981954e-08 4.73667157383e-07 -1.15692280717e-08 4.70970882783e-07 -1.12272649482e-08 4.68171088559e-07 -1.09919490196e-08 4.65631779913e-07 -1.05501020855e-08 4.63007421838e-07 -1.03399553061e-08 4.60478594434e-07 -1.0094567198e-08 4.58037772307e-07 -9.87582168482e-09 4.55662794831e-07 -9.68872370215e-09 4.53377630541e-07 -9.53081766303e-09 4.51159982083e-07 -9.37825824354e-09 4.49028964407e-07 -9.22586765486e-09 4.46948124871e-07 -9.05468300266e-09 4.44938932214e-07 -8.87621676725e-09 4.42947985092e-07 -8.68165060999e-09 4.40994636879e-07 -8.5603480268e-09 4.39177714657e-07 -8.34751748314e-09 4.37131050603e-07 -8.31722363356e-09 4.3517735179e-07 -8.13307835088e-09 4.33280929951e-07 -8.35752838886e-09 4.31611856253e-07 -8.8943047531e-09 4.30381352269e-07 -9.73095620607e-09 4.29705086547e-07 -1.05706106247e-08 4.29440816635e-07 -1.08011627109e-08 4.2921303885e-07 -9.93045016716e-09 4.28584171818e-07 -7.84798849084e-09 4.27177428261e-07 -4.80012679303e-09 4.2484308097e-07 -1.48151978168e-09 4.22164423041e-07 9.44292136166e-10 4.1956682975e-07 2.77848080531e-09 4.16594691999e-07 4.88960775484e-09 4.13657279143e-07 6.32698806016e-09 4.10707138096e-07 6.57393083897e-09 4.08083561366e-07 5.93074940783e-09 4.06388248178e-07 3.91805055086e-09 4.06846652706e-07 3.75296843808e-10 4.07971266121e-07 1.29598813623e-10 4.06470028152e-07 5.93232713492e-09 4.01365992163e-07 1.37974022454e-08 3.92414959004e-07 2.03234501816e-08 3.85256367215e-07 1.57847721437e-08 3.84190800556e-07 3.31188772486e-09 3.83722020004e-07 -2.91122033461e-09 3.84186277971e-07 -8.34936318241e-09 3.8581613501e-07 -1.48403507294e-08 3.88584932322e-07 -2.06678643675e-08 3.92525470593e-07 -2.49839482742e-08 3.95872444656e-07 -2.44568015888e-08 3.97218422121e-07 -1.95429443313e-08 3.96646870557e-07 -1.3205091668e-08 3.94732151128e-07 -7.26000213253e-09 3.91974916152e-07 -2.46745830175e-09 3.88591776856e-07 8.83540635784e-10 3.85479057435e-07 3.22626797314e-09 3.82521738563e-07 2.98833288713e-09 3.79978970599e-07 2.7234413211e-09 3.77977971857e-07 1.82464105449e-09 3.76355407767e-07 8.37741341747e-10 3.75076469962e-07 -9.98405984685e-11 3.7401229415e-07 -8.69807315077e-10 3.7299226106e-07 -1.10854606378e-09 3.72036543069e-07 -1.2049408965e-09 3.71065350977e-07 -8.57303830859e-10 3.70182005195e-07 -5.11859465064e-10 3.68879746407e-07 9.49978176211e-10 3.67300015695e-07 2.0835481627e-09 3.6540139057e-07 3.1271572092e-09 3.63836884797e-07 2.56326413624e-09 3.62407475328e-07 2.12671859674e-09 3.61387091117e-07 9.22235997443e-10 3.60457899061e-07 4.10574130479e-10 3.59712919624e-07 -1.49675217214e-10 3.58962980147e-07 4.00116718375e-11 3.58092656029e-07 7.18155952878e-10 3.57242805279e-07 1.42114937499e-09 3.56196300125e-07 2.65676026281e-09 3.55107573105e-07 3.72834808307e-09 3.53851575726e-07 5.0213477087e-09 3.5245920989e-07 6.39520421495e-09 3.51057688271e-07 7.36953067678e-09 3.49585575485e-07 8.53065067961e-09 3.48174967846e-07 9.22225421536e-09 3.46636255229e-07 1.04032856154e-08 3.45170873015e-07 1.09632447154e-08 3.43633235633e-07 1.18519111717e-08 3.4217971396e-07 1.21357724623e-08 3.40508987981e-07 1.310605771e-08 3.3902385561e-07 1.29301248177e-08 3.37525211931e-07 1.31694583529e-08 3.36373549964e-07 1.23292008868e-08 3.34930350488e-07 1.3077397083e-08 3.33776296812e-07 1.23003744851e-08 3.32202669868e-07 1.33067545506e-08 3.3089883554e-07 1.25531236997e-08 3.29419609576e-07 1.29054858884e-08 3.28155789607e-07 1.21091478898e-08 3.26623674496e-07 1.24357575952e-08 3.25339446121e-07 1.13658616808e-08 3.23682610709e-07 1.17192108434e-08 3.22355367627e-07 1.02526775652e-08 3.20575219551e-07 1.06111560301e-08 3.19157018982e-07 8.93528826982e-09 3.17238503104e-07 9.31887938623e-09 3.15657166441e-07 7.6723611285e-09 3.13556585827e-07 8.09018854193e-09 3.11766409223e-07 6.56863833116e-09 3.09415561173e-07 7.18629560199e-09 3.07387537432e-07 5.82865191919e-09 3.04650883051e-07 6.96211512328e-09 3.02370317927e-07 5.43243951838e-09 2.99057480992e-07 7.4437460807e-09 2.96491333154e-07 5.22770898425e-09 2.92332751098e-07 8.9677058155e-09 2.88995380629e-07 6.18223182019e-09 2.82950526539e-07 1.16518647977e-08 2.77924533891e-07 6.24796087376e-09 2.69526005759e-07 1.0272855656e-08 2.62729563885e-07 -9.7372230419e-10 2.52364346462e-07 -1.37652151307e-09 2.4471871559e-07 -2.06734557811e-08 2.32800456621e-07 -2.81203074958e-08 2.26144825084e-07 -6.30732615262e-08 2.1326220046e-07 -7.2488182088e-08 -1.16780372745e-07 2.07281043839e-07 7.4575572365e-07 -3.86854657598e-08 7.43488838126e-07 -2.67830588171e-08 7.36349262833e-07 -2.4464263512e-08 7.28889240901e-07 -2.43515058025e-08 7.20501852958e-07 -2.4851961938e-08 7.12641134211e-07 -2.52641980752e-08 7.04081636333e-07 -2.57549855671e-08 6.96088735734e-07 -2.60611434544e-08 6.87462935052e-07 -2.64243069387e-08 6.79402084258e-07 -2.65999821497e-08 6.70761235245e-07 -2.68364042748e-08 6.62690859421e-07 -2.68811397705e-08 6.54079110008e-07 -2.69946989244e-08 6.46073300815e-07 -2.69143944774e-08 6.3754114602e-07 -2.69268712422e-08 6.29669652397e-07 -2.67405804697e-08 6.21288564097e-07 -2.6683605726e-08 6.13620476432e-07 -2.64325420323e-08 6.0546810925e-07 -2.63310370179e-08 5.98094464234e-07 -2.59720788098e-08 5.90212519398e-07 -2.57927704751e-08 5.83103718511e-07 -2.53359843052e-08 5.75548687326e-07 -2.50945704014e-08 5.68722460761e-07 -2.46022232993e-08 5.61527367754e-07 -2.43094377779e-08 5.54992724606e-07 -2.37938946393e-08 5.48163061309e-07 -2.34662982903e-08 5.41942955222e-07 -2.29423909807e-08 5.35502364545e-07 -2.25867920766e-08 5.29600570874e-07 -2.20657741151e-08 5.2357401061e-07 -2.16983430716e-08 5.18017208455e-07 -2.12138569495e-08 5.12482124118e-07 -2.08239297372e-08 5.07265578968e-07 -2.03452427974e-08 5.02118548006e-07 -1.99140283166e-08 4.97187939587e-07 -1.94768136913e-08 4.92369700342e-07 -1.90628912099e-08 4.87765576944e-07 -1.86171984805e-08 4.83316114076e-07 -1.81717343323e-08 4.79045791529e-07 -1.76897312107e-08 4.7494264081e-07 -1.71820494799e-08 4.70967975064e-07 -1.66411098427e-08 4.67149020824e-07 -1.60614848184e-08 4.63410471467e-07 -1.54637819229e-08 4.59812312676e-07 -1.4836257131e-08 4.56279547753e-07 -1.42122707773e-08 4.52929165802e-07 -1.35639010414e-08 4.49542823992e-07 -1.29601490256e-08 4.46377947743e-07 -1.22607760027e-08 4.43232791676e-07 -1.17381558002e-08 4.40186287414e-07 -1.12327760464e-08 4.37212580388e-07 -1.0766291416e-08 4.34316652197e-07 -1.03386091184e-08 4.31500229055e-07 -9.95918876229e-09 4.28772782673e-07 -9.62633582918e-09 4.26129411137e-07 -9.33554826648e-09 4.23578042875e-07 -9.07802317028e-09 4.21116656161e-07 -8.84223996069e-09 4.1869709577e-07 -8.61897518038e-09 4.16432804438e-07 -8.32013363299e-09 4.1399369529e-07 -8.22352058705e-09 4.11719888631e-07 -7.88945275077e-09 4.0946280023e-07 -7.69451913461e-09 4.07262291545e-07 -7.52435880392e-09 4.05117307797e-07 -7.40367960306e-09 4.0307058566e-07 -7.32741659826e-09 4.01103253088e-07 -7.27497352442e-09 3.99249407411e-07 -7.20664808796e-09 3.97440774189e-07 -7.10865301578e-09 3.95715203843e-07 -6.96736562561e-09 3.93941088483e-07 -6.76387514966e-09 3.92258131749e-07 -6.63820163603e-09 3.90509423457e-07 -6.64494012899e-09 3.88915002597e-07 -6.30589218755e-09 3.87167331444e-07 -6.35235813128e-09 3.85636904074e-07 -6.8182430584e-09 3.84484848664e-07 -7.76390461955e-09 3.84038477994e-07 -9.32473408535e-09 3.84548095967e-07 -1.11302746093e-08 3.85868441257e-07 -1.21820805136e-08 3.87421378101e-07 -1.15434257886e-08 3.8851586592e-07 -9.00563239588e-09 3.88532865349e-07 -4.85377402147e-09 3.86813523089e-07 2.26943924405e-10 3.84274638649e-07 3.50279057323e-09 3.82175773291e-07 4.88980003411e-09 3.79236360914e-07 8.01619229409e-09 3.75595372162e-07 9.97589965321e-09 3.71642547114e-07 1.06404103306e-08 3.67523654424e-07 1.03614286501e-08 3.64033608075e-07 7.56006218884e-09 3.65061519659e-07 -4.09719512894e-10 3.68242644305e-07 -2.8384173392e-09 3.67114899425e-07 7.25899771564e-09 3.61293843903e-07 1.98774785281e-08 3.47800949713e-07 3.40073972224e-08 3.37624025054e-07 2.63976355556e-08 3.40800533023e-07 1.91668755957e-10 3.43472799157e-07 -5.02848068515e-09 3.45494419249e-07 -1.05954828954e-08 3.4825818786e-07 -1.77933628172e-08 3.5172017924e-07 -2.43833174194e-08 3.57077201196e-07 -3.05881201044e-08 3.61359114611e-07 -2.90746885657e-08 3.62602777998e-07 -2.11576802884e-08 3.61724768309e-07 -1.27792834917e-08 3.59684012669e-07 -5.70733791374e-09 3.5686248502e-07 -1.68439135333e-10 3.53581182944e-07 3.89946435524e-09 3.50175852717e-07 5.67144863573e-09 3.47735147862e-07 5.40272610412e-09 3.45844890042e-07 4.81223526072e-09 3.44501879805e-07 3.23638539634e-09 3.43645108255e-07 1.97109484384e-09 3.43031787482e-07 6.08969203491e-10 3.42758665047e-07 -3.27205782929e-10 3.42266745082e-07 -5.26793377034e-10 3.41974733318e-07 -6.32216983215e-10 3.41479083879e-07 -2.57365569231e-10 3.41325320498e-07 1.02580736622e-11 3.40285854386e-07 2.20049628266e-09 3.39082838789e-07 3.86880699465e-09 3.37231017246e-07 5.27724753252e-09 3.36141395193e-07 4.3670477039e-09 3.34949096554e-07 3.82809273426e-09 3.34462798804e-07 2.23014277598e-09 3.33901343248e-07 1.64489481751e-09 3.33625790951e-07 8.59874461373e-10 3.33347929446e-07 1.13006285793e-09 3.32805045481e-07 1.90000861243e-09 3.32426540586e-07 2.69651371471e-09 3.31675051391e-07 4.06022667405e-09 3.31019696821e-07 5.15568051846e-09 3.30129854971e-07 6.5384012177e-09 3.29118961047e-07 8.02090746556e-09 3.28146601796e-07 8.94093100906e-09 3.27086915416e-07 1.01334091378e-08 3.26155600986e-07 1.07408762966e-08 3.25038651053e-07 1.20205902481e-08 3.24040061903e-07 1.25310194511e-08 3.22912572351e-07 1.34611198678e-08 3.21924812876e-07 1.3700200402e-08 3.20589530047e-07 1.48320885394e-08 3.19517923541e-07 1.456797896e-08 3.1832952594e-07 1.47787701761e-08 3.17649802232e-07 1.37208252656e-08 3.16465226819e-07 1.46807672282e-08 3.15763630816e-07 1.37363704117e-08 3.14408762412e-07 1.49958595465e-08 3.13483755696e-07 1.41403415113e-08 3.12222510869e-07 1.45708001127e-08 3.11298021735e-07 1.38219264406e-08 3.09890766194e-07 1.42860209752e-08 3.08908908522e-07 1.32601123202e-08 3.07254854276e-07 1.38299517952e-08 3.06171263484e-07 1.23685139463e-08 3.04261856769e-07 1.30236095616e-08 3.02981115612e-07 1.13612259902e-08 3.00798508755e-07 1.2086036809e-08 2.99215297063e-07 1.04904455922e-08 2.96715089852e-07 1.12480056116e-08 2.94794529433e-07 9.78107861237e-09 2.91926193516e-07 1.0712603633e-08 2.89716573167e-07 9.36054719508e-09 2.86381151844e-07 1.08310820266e-08 2.83992183586e-07 9.18426088221e-09 2.8004384016e-07 1.1704172021e-08 2.77549044177e-07 9.22215732896e-09 2.72766295008e-07 1.39820435728e-08 2.69741419874e-07 1.08302002056e-08 2.6295992442e-07 1.7968068843e-08 2.58308178721e-07 1.21261983005e-08 2.48856678101e-07 1.82915193606e-08 2.42177160517e-07 6.71306105205e-09 2.30032892595e-07 8.60125627335e-09 2.22216672622e-07 -1.15550835546e-08 2.07270960782e-07 -1.6924181811e-08 2.00210803063e-07 -5.46699984708e-08 1.83289347727e-07 -6.25352946856e-08 -1.07773094275e-07 1.76435027969e-07 6.62310147653e-07 1.62215016801e-08 6.44183553752e-07 -8.9630456653e-09 6.35229837234e-07 -1.55400191694e-08 6.28049460149e-07 -1.72532080313e-08 6.21129659245e-07 -1.80169359704e-08 6.14335397464e-07 -1.84778330053e-08 6.0741101386e-07 -1.89108921459e-08 6.00543112218e-07 -1.92016917466e-08 5.93553811767e-07 -1.9494196247e-08 5.86629960401e-07 -1.96742449407e-08 5.79624929776e-07 -1.98531437408e-08 5.72692608135e-07 -1.99352772386e-08 5.65708053042e-07 -2.00123244077e-08 5.58818847608e-07 -2.00022417115e-08 5.5191036573e-07 -1.99867793338e-08 5.45100470448e-07 -1.99037232827e-08 5.38286348422e-07 -1.9820394713e-08 5.31564920375e-07 -1.9691417087e-08 5.24960955571e-07 -1.95392467117e-08 5.18390677443e-07 -1.93591060152e-08 5.12038967717e-07 -1.90961918871e-08 5.05629993865e-07 -1.88624231871e-08 4.99480778036e-07 -1.85526615451e-08 4.9331831274e-07 -1.82897124207e-08 4.87400158729e-07 -1.79568711788e-08 4.81482734868e-07 -1.76750376198e-08 4.75804302208e-07 -1.7337382596e-08 4.70160235947e-07 -1.70517042853e-08 4.64741234615e-07 -1.67126129039e-08 4.59373408373e-07 -1.64238429877e-08 4.54213887381e-07 -1.61027938347e-08 4.49171027799e-07 -1.58271725027e-08 4.44328452923e-07 -1.55128626382e-08 4.39571955993e-07 -1.52159825289e-08 4.34967897542e-07 -1.49223286461e-08 4.30462133803e-07 -1.47386052157e-08 4.26107100937e-07 -1.44537096147e-08 4.21877895396e-07 -1.42257060058e-08 4.1780511057e-07 -1.38913121882e-08 4.13864579486e-07 -1.35787140119e-08 4.10068520337e-07 -1.31898223613e-08 4.06401221632e-07 -1.27739960839e-08 4.02856204566e-07 -1.23288577166e-08 3.99429816569e-07 -1.1807916908e-08 3.96101236576e-07 -1.13243224486e-08 3.92897303873e-07 -1.07248083514e-08 3.8976478326e-07 -1.02411329324e-08 3.86787608065e-07 -9.56476296975e-09 3.83853644128e-07 -9.15868719835e-09 3.81117964709e-07 -8.74920183418e-09 3.78498214279e-07 -8.39439701891e-09 3.75986009448e-07 -8.07584767359e-09 3.73589242782e-07 -7.79201076628e-09 3.71308641578e-07 -7.55290497485e-09 3.69147634705e-07 -7.35277925622e-09 3.67093689423e-07 -7.19174092503e-09 3.65149045707e-07 -7.0489039907e-09 3.63305443092e-07 -6.91321263064e-09 3.61576281764e-07 -6.76776701009e-09 3.59808512646e-07 -6.66728414298e-09 3.58181867538e-07 -6.38568864401e-09 3.56479158301e-07 -6.27121580707e-09 3.54859629656e-07 -6.11209122854e-09 3.53312898757e-07 -6.02752029487e-09 3.51872639607e-07 -5.96553909576e-09 3.50571157827e-07 -6.05677527306e-09 3.49419876235e-07 -6.08720379883e-09 3.48429336625e-07 -6.24012301696e-09 3.47553431527e-07 -6.1656884448e-09 3.46843334629e-07 -6.28418550771e-09 3.46167681474e-07 -6.0068035531e-09 3.4549297387e-07 -6.02609850865e-09 3.44718101077e-07 -5.710722469e-09 3.43587645856e-07 -5.37900533872e-09 3.42299010577e-07 -5.10528466662e-09 3.40891586939e-07 -5.50807503357e-09 3.39538999216e-07 -6.52649284626e-09 3.38803230343e-07 -8.7075348085e-09 3.39179764989e-07 -1.16263591609e-08 3.40724831092e-07 -1.38400660518e-08 3.42654587646e-07 -1.35867620406e-08 3.43996221842e-07 -1.04402381857e-08 3.44061707807e-07 -4.9933807259e-09 3.41035729885e-07 3.2029817573e-09 3.35929569488e-07 8.56608510584e-09 3.32924173523e-07 7.90254247375e-09 3.28822355593e-07 1.21697895287e-08 3.24264557572e-07 1.46781238709e-08 3.19790953558e-07 1.54077163525e-08 3.15335937247e-07 1.46368621435e-08 3.11163572151e-07 1.18564183952e-08 3.16912663778e-07 -6.26563937345e-09 3.27869198965e-07 -1.38667487481e-08 3.29142934493e-07 6.05453805978e-09 3.24842396717e-07 2.38757817794e-08 3.04073510221e-07 5.48989805675e-08 2.88149184874e-07 4.21725106484e-08 3.01643809869e-07 -1.30851871034e-08 3.11859387066e-07 -1.6012768764e-08 3.17252704127e-07 -1.62767065244e-08 3.21362722404e-07 -2.21503351609e-08 3.24924385731e-07 -2.81994661967e-08 3.32204328355e-07 -3.81679122027e-08 3.3855455369e-07 -3.57806909413e-08 3.40990782485e-07 -2.39803971727e-08 3.41331957802e-07 -1.35556639873e-08 3.40366465183e-07 -5.18849821258e-09 3.37863921819e-07 1.90200442272e-09 3.33839853142e-07 7.44627785071e-09 3.29446622768e-07 1.00808193857e-08 3.25967555221e-07 8.2792440198e-09 3.23368727304e-07 6.49451917232e-09 3.21286122516e-07 4.88431674902e-09 3.20050967523e-07 2.49563582332e-09 3.18956513537e-07 1.31116457475e-09 3.18568214946e-07 -5.77679260653e-10 3.17806487805e-07 -1.27862539596e-10 3.17747278539e-07 -1.16448502462e-09 3.17399364391e-07 -6.8680430516e-11 3.18000754531e-07 -1.12970312617e-09 3.17194965133e-07 3.06893516123e-09 3.16490451998e-07 4.01511727313e-09 3.1474324593e-07 7.05209323394e-09 3.14306235686e-07 4.22661853775e-09 3.13357353236e-07 4.83605655103e-09 3.13430333505e-07 1.81467752564e-09 3.13159306335e-07 1.76335810213e-09 3.13249860577e-07 5.86564987204e-10 3.13318259991e-07 6.14905186396e-10 3.12914373307e-07 2.21278669041e-09 3.12853915038e-07 2.31023372102e-09 3.12188618062e-07 4.53584684796e-09 3.11753860122e-07 5.13256939186e-09 3.10948826496e-07 6.848848302e-09 3.10028366626e-07 8.36025921454e-09 3.09157985156e-07 9.11572773755e-09 3.08206650684e-07 1.04070449759e-08 3.07418820676e-07 1.0749434371e-08 3.06419432466e-07 1.22177460752e-08 3.05556563403e-07 1.25284292501e-08 3.04575801406e-07 1.35822982244e-08 3.03764681353e-07 1.35534740625e-08 3.02535813382e-07 1.5024682307e-08 3.0160745771e-07 1.43637359322e-08 3.00532279475e-07 1.49200024868e-08 3.00078966238e-07 1.30342424122e-08 2.9898859924e-07 1.48409157984e-08 2.98533635782e-07 1.29449613434e-08 2.9727514059e-07 1.4999402083e-08 2.96542648151e-07 1.34499250313e-08 2.95359563294e-07 1.44614637777e-08 2.94585989099e-07 1.31792513522e-08 2.93143102163e-07 1.44498002982e-08 2.9227605877e-07 1.25795049111e-08 2.90456335003e-07 1.43472935194e-08 2.89442840529e-07 1.16734936615e-08 2.87247538931e-07 1.38525021036e-08 2.85966629303e-07 1.08088333237e-08 2.83404724719e-07 1.3178347658e-08 2.8174171722e-07 1.02156141035e-08 2.78790094045e-07 1.26097693839e-08 2.76734266723e-07 9.77971841373e-09 2.73356474968e-07 1.24117530799e-08 2.71018574362e-07 9.48870674939e-09 2.67121846086e-07 1.3068455613e-08 2.64695339834e-07 9.23744325549e-09 2.60121499097e-07 1.48531304664e-08 2.57715958104e-07 9.1928750654e-09 2.52235352021e-07 1.87204510979e-08 2.49462212428e-07 1.12592216663e-08 2.41734712858e-07 2.4865581339e-08 2.3730568708e-07 1.35175796769e-08 2.26461687112e-07 2.80760110668e-08 2.19693883734e-07 9.90991545223e-09 2.05320930652e-07 2.26049862795e-08 1.9716482791e-07 -6.99207281393e-09 1.78558587949e-07 2.66372938493e-09 1.70978975982e-07 -5.1751712326e-08 1.48929014492e-07 -3.93256263629e-08 -1.06940833113e-07 1.42745212194e-07 5.91809028187e-07 -4.24622454038e-08 5.98789377695e-07 -1.60156554355e-08 5.9444407835e-07 -1.13394897239e-08 5.88650205433e-07 -1.15126490199e-08 5.82576482049e-07 -1.20410999773e-08 5.76296119156e-07 -1.23903215523e-08 5.69998904209e-07 -1.2762345383e-08 5.63550946109e-07 -1.29595940943e-08 5.57118639109e-07 -1.32194924547e-08 5.50594017739e-07 -1.33328884423e-08 5.44114642449e-07 -1.35088161142e-08 5.37580961432e-07 -1.35580784767e-08 5.31121132796e-07 -1.36579572969e-08 5.24639164933e-07 -1.36415185312e-08 5.18253022156e-07 -1.3665424529e-08 5.11857038567e-07 -1.35966572885e-08 5.05569761686e-07 -1.35610391349e-08 4.99325194e-07 -1.34632663308e-08 4.93237925006e-07 -1.33944189785e-08 4.87321104066e-07 -1.32731315492e-08 4.81543742186e-07 -1.31564149245e-08 4.75888817808e-07 -1.30075164073e-08 4.70374510477e-07 -1.28586108956e-08 4.65016235131e-07 -1.26917788504e-08 4.59800588423e-07 -1.25291786043e-08 4.54733933571e-07 -1.2356501907e-08 4.4982146311e-07 -1.21946889946e-08 4.4507670675e-07 -1.20255124643e-08 4.40480652741e-07 -1.18656344412e-08 4.36041762723e-07 -1.17014106305e-08 4.31774788944e-07 -1.15590262804e-08 4.27707948059e-07 -1.14188692589e-08 4.23789035471e-07 -1.12837324062e-08 4.20090329821e-07 -1.10716068913e-08 4.16474378885e-07 -1.11576330098e-08 4.13194376135e-07 -1.09863607724e-08 4.09947392832e-07 -1.10612018991e-08 4.06983747666e-07 -1.08465910284e-08 4.04078753549e-07 -1.07735192614e-08 4.01371051562e-07 -1.05131134559e-08 3.98741992895e-07 -1.02576821072e-08 3.96184914551e-07 -9.93883831988e-09 3.93706731312e-07 -9.47217494063e-09 3.91139760576e-07 -9.08306649459e-09 3.88645105544e-07 -8.39598410564e-09 3.85913078653e-07 -7.95386537619e-09 3.83260344064e-07 -7.11564867053e-09 3.80251628538e-07 -6.60216889268e-09 3.77248877603e-07 -5.95565391877e-09 3.74145995766e-07 -5.49559419587e-09 3.70921331322e-07 -5.07347781927e-09 3.67568731332e-07 -4.67199071896e-09 3.64104822483e-07 -4.32179877391e-09 3.60568801982e-07 -4.03574585604e-09 3.57006347574e-07 -3.8331109123e-09 3.53471831654e-07 -3.71432119299e-09 3.50020250103e-07 -3.66832693577e-09 3.46706010723e-07 -3.67054602146e-09 3.43539801612e-07 -3.70406878795e-09 3.40577768194e-07 -3.74266444109e-09 3.37769680452e-07 -3.8555565332e-09 3.35248935763e-07 -3.86534284684e-09 3.32920430758e-07 -3.96000779731e-09 3.30770042965e-07 -3.92920832374e-09 3.2860206032e-07 -3.96304358434e-09 3.26526518954e-07 -3.92543666165e-09 3.24360707822e-07 -4.11809661093e-09 3.22245280347e-07 -3.96542942621e-09 3.19540497676e-07 -3.72438213169e-09 3.1647515263e-07 -2.96984058675e-09 3.12733947058e-07 -2.62419612601e-09 3.09245408125e-07 -2.24444317416e-09 3.0577420475e-07 -2.62528346902e-09 3.03311676589e-07 -2.94169005933e-09 3.0194188725e-07 -3.8500033355e-09 3.00907494958e-07 -4.60065399222e-09 3.00819246736e-07 -6.59082763403e-09 3.03126969915e-07 -1.12020014934e-08 3.08276030906e-07 -1.69874870749e-08 3.1624329141e-07 -2.20339833654e-08 3.24756324272e-07 -2.23371322986e-08 3.30717410346e-07 -1.6639314897e-08 3.32787757501e-07 -7.2881605514e-09 3.26113901007e-07 9.64640278796e-09 3.1200414544e-07 2.24892797033e-08 3.07043858607e-07 1.27254088621e-08 3.04818262267e-07 1.43073699207e-08 3.02640851555e-07 1.70744239664e-08 2.99680855272e-07 1.65454873852e-08 2.96815358816e-07 1.93683326106e-08 2.89540718237e-07 1.81895624384e-08 3.05243612362e-07 -2.11964627203e-08 3.33498982652e-07 -4.18313009999e-08 3.31421579662e-07 7.28697546391e-09 3.17696888058e-07 3.83986803443e-08 2.70526230895e-07 1.00591134918e-07 2.29837661271e-07 8.41615353521e-08 2.44460422606e-07 -2.94865935109e-08 2.66300554716e-07 -3.87436492294e-08 2.76447452958e-07 -2.77656433541e-08 2.81245397057e-07 -2.80967736929e-08 2.80882157885e-07 -2.92458031267e-08 2.8237071729e-07 -4.10829323361e-08 2.83948228856e-07 -3.8822316563e-08 2.85057081151e-07 -2.64147572926e-08 2.87190477458e-07 -1.71155912948e-08 2.9041275421e-07 -9.84205178336e-09 2.92865625841e-07 -1.98354879371e-09 2.93208469024e-07 5.72947064988e-09 2.92273555163e-07 9.66066305495e-09 2.9168169362e-07 5.97596732188e-09 2.92094117848e-07 6.29586120535e-09 2.91167878241e-07 3.4192182203e-09 2.9120809587e-07 2.87204113017e-09 2.89883300008e-07 4.76123196511e-10 2.89827576988e-07 -1.28507917089e-10 2.88268985703e-07 -7.34476252147e-10 2.88371770638e-07 -7.17288002299e-10 2.87217052265e-07 -1.52775562882e-09 2.88857807812e-07 -1.51807749216e-09 2.87689627354e-07 1.53948746506e-09 2.88069944483e-07 5.76046034335e-09 2.85819753343e-07 6.50253369909e-09 2.86452428469e-07 5.85014365549e-09 2.85192595031e-07 4.2483238672e-09 2.86050263891e-07 2.65220851763e-09 2.85910575375e-07 1.54668718184e-09 2.86430160156e-07 2.25363386019e-10 2.87220599611e-07 9.44274877679e-10 2.86990609473e-07 1.056358425e-09 2.87862081772e-07 2.60465173282e-09 2.87512523481e-07 3.43270737675e-09 2.87896412711e-07 4.78657715285e-09 2.87612004216e-07 6.37551836825e-09 2.8728840256e-07 8.05449388856e-09 2.8703029327e-07 8.97582821361e-09 2.86636629126e-07 9.99622063794e-09 2.86454939165e-07 1.05591841718e-08 2.85951000408e-07 1.18802119218e-08 2.85589920683e-07 1.23818149785e-08 2.85026909167e-07 1.3169363313e-08 2.84641062122e-07 1.34517513272e-08 2.83629417077e-07 1.47465060817e-08 2.82972601802e-07 1.45455181319e-08 2.81925325111e-07 1.43068707926e-08 2.81776720814e-07 1.32614710709e-08 2.80597843444e-07 1.40955988672e-08 2.80446560472e-07 1.33609723456e-08 2.79120193978e-07 1.4487453846e-08 2.78613245685e-07 1.36655724767e-08 2.77374969222e-07 1.39234209411e-08 2.76840010676e-07 1.34461282748e-08 2.75222947053e-07 1.38634993098e-08 2.74648381779e-07 1.32954093059e-08 2.72481924638e-07 1.38204526643e-08 2.7174602616e-07 1.29595929821e-08 2.69027391604e-07 1.36338539678e-08 2.67904972497e-07 1.26574333019e-08 2.646327859e-07 1.34941267715e-08 2.62905293653e-07 1.26147304344e-08 2.59020320816e-07 1.3529729232e-08 2.56663727657e-07 1.27109009368e-08 2.52130673743e-07 1.37071178371e-08 2.49415831468e-07 1.29220542423e-08 2.44227340092e-07 1.42555649343e-08 2.41643780028e-07 1.32300123498e-08 2.35780458668e-07 1.54810028244e-08 2.33732887536e-07 1.40899894218e-08 2.27179951035e-07 1.88526912959e-08 2.2553225574e-07 1.77098094549e-08 2.16801065127e-07 2.49797824324e-08 2.13975574828e-07 2.23043215718e-08 2.01761113034e-07 2.9290356502e-08 1.96531219178e-07 2.247370904e-08 1.79662401487e-07 2.55527890631e-08 1.72921194548e-07 1.06023463211e-08 1.49596769049e-07 4.40961818135e-09 1.43697934135e-07 -2.73329411777e-08 1.14478122527e-07 -4.18579401556e-08 -7.73206700029e-08 1.12438151258e-07 4.69610908705e-07 1.66514396376e-08 4.58291874208e-07 -4.72154912348e-09 4.55266396521e-07 -7.99574979578e-09 4.51070411737e-07 -7.62485661531e-09 4.46824889611e-07 -7.57718513108e-09 4.4204165866e-07 -7.88531636872e-09 4.37511638879e-07 -7.96336533181e-09 4.32629321385e-07 -8.28259782958e-09 4.27991289829e-07 -8.31790541901e-09 4.23073108476e-07 -8.5601514453e-09 4.18378206891e-07 -8.55817991265e-09 4.13450238511e-07 -8.72612970503e-09 4.08721342563e-07 -8.67919271871e-09 4.03789157213e-07 -8.7647447862e-09 3.99030112633e-07 -8.67098693659e-09 3.94087455439e-07 -8.6797785218e-09 3.89285524622e-07 -8.55758826106e-09 3.84346220874e-07 -8.53261434214e-09 3.7956688364e-07 -8.41058884718e-09 3.74787900278e-07 -8.33099727123e-09 3.70043144565e-07 -8.20564578656e-09 3.65255224823e-07 -8.08362746129e-09 3.60478538199e-07 -7.94346304443e-09 3.55720862281e-07 -7.80610110912e-09 3.50998253068e-07 -7.66611145404e-09 3.46302493196e-07 -7.53787497711e-09 3.41672174848e-07 -7.41269167251e-09 3.37101091791e-07 -7.29828281187e-09 3.326009289e-07 -7.18489197461e-09 3.28160559937e-07 -7.08595199038e-09 3.23819741868e-07 -7.00604663052e-09 3.1959620421e-07 -6.9371795912e-09 3.15500190379e-07 -6.80491729087e-09 3.11339401156e-07 -6.89376240047e-09 3.07495681462e-07 -6.81125736314e-09 3.03604676253e-07 -6.92813394407e-09 2.99995941866e-07 -6.84809280508e-09 2.96380956097e-07 -6.90051843328e-09 2.93016629428e-07 -6.82096661124e-09 2.8977393294e-07 -6.7791559082e-09 2.86742333196e-07 -6.70237301226e-09 2.83974172166e-07 -6.56388206299e-09 2.8138411547e-07 -6.48467080751e-09 2.79200482829e-07 -6.24733790362e-09 2.77183421539e-07 -6.16413767896e-09 2.75690316146e-07 -5.89293276132e-09 2.74409509036e-07 -5.77954970861e-09 2.73572101225e-07 -5.60706494718e-09 2.73122113594e-07 -5.56243267203e-09 2.73174470056e-07 -5.51028684367e-09 2.73603860113e-07 -5.47539637923e-09 2.74348033898e-07 -5.43980241489e-09 2.75353289314e-07 -5.39610929372e-09 2.76555834936e-07 -5.34105482124e-09 2.77872005347e-07 -5.27270918697e-09 2.79202062941e-07 -5.18822673839e-09 2.80458479574e-07 -5.08492881202e-09 2.81580793661e-07 -4.96200093455e-09 2.82506135467e-07 -4.81493627691e-09 2.83131616465e-07 -4.61530384025e-09 2.83412343009e-07 -4.30594370425e-09 2.83227978731e-07 -4.08499835708e-09 2.82790393826e-07 -3.87082468874e-09 2.82212058808e-07 -3.74102731022e-09 2.81659622264e-07 -3.65674252277e-09 2.81149944701e-07 -3.73473533432e-09 2.80879002782e-07 -3.98436042261e-09 2.81087101126e-07 -4.46187393624e-09 2.82179515861e-07 -4.90441349697e-09 2.84299081939e-07 -5.40464231318e-09 2.87610408567e-07 -6.10401573547e-09 2.91667549528e-07 -6.66421210849e-09 2.95377682165e-07 -6.87763435954e-09 2.99344746028e-07 -7.42375627891e-09 3.03504895051e-07 -8.24337446842e-09 3.05248162425e-07 -6.53405157822e-09 3.06701137931e-07 -8.27063201057e-09 3.09809696487e-07 -1.46126175271e-08 3.12985397094e-07 -2.05428052778e-08 3.16146800032e-07 -2.56443442974e-08 3.15928312274e-07 -2.26499225298e-08 3.09791327236e-07 -1.10946936447e-08 3.02610926077e-07 -8.09159509054e-10 2.88314345336e-07 2.30201295251e-08 2.70495222769e-07 3.93321664031e-08 2.87041472545e-07 -4.45128457895e-09 3.01341809269e-07 -8.23340727889e-11 3.09785620899e-07 7.31629154984e-09 3.17780479376e-07 7.38920551533e-09 3.27617128811e-07 9.90620136054e-09 3.33305574214e-07 1.24394776749e-08 3.22108502285e-07 -9.66616007751e-09 3.00967683019e-07 -2.08936229639e-08 2.9888632685e-07 9.15339660848e-09 3.16919119364e-07 1.97566073648e-08 3.54551915795e-07 6.22822767908e-08 3.70901496697e-07 6.75445222663e-08 3.36570112111e-07 3.33134678683e-09 3.07791193454e-07 -1.188655995e-08 2.9439955294e-07 -1.61704328995e-08 2.84681010168e-07 -2.00755491619e-08 2.71979023833e-07 -1.85500140054e-08 2.55434009931e-07 -2.66602175068e-08 2.3817623912e-07 -2.36940627451e-08 2.22380580422e-07 -1.27051565874e-08 2.10534170088e-07 -7.59690402721e-09 2.04734230821e-07 -6.54626611303e-09 2.03658616466e-07 -3.62739234151e-09 2.0549203739e-07 1.06090545006e-09 2.08013972355e-07 3.74489371766e-09 2.10005663272e-07 -2.01443616548e-09 2.14094220145e-07 -7.63120820223e-10 2.14917010234e-07 -3.21393997353e-09 2.16417286676e-07 -9.02387715345e-10 2.1475237619e-07 -4.24723429206e-09 2.14500046447e-07 -2.24936755245e-09 2.11265799447e-07 -5.07473719227e-09 2.10005594492e-07 -1.86866103171e-09 2.07112886839e-07 -8.40272367818e-09 2.11116569575e-07 -5.81917158535e-09 2.11967272027e-07 -8.93239594172e-09 2.14857352273e-07 5.28650043517e-09 2.12616090492e-07 1.07361128817e-09 2.1429677387e-07 6.35988065898e-09 2.12655902229e-07 1.65661498079e-09 2.13943720965e-07 3.083851478e-09 2.13511819998e-07 2.6360692659e-10 2.1406387553e-07 -9.2769001929e-10 2.15116850147e-07 -2.46979600946e-10 2.14860792945e-07 -1.88824075123e-09 2.16382595008e-07 7.24303112444e-10 2.16408175157e-07 -3.10270613552e-10 2.17646272677e-07 1.5036148125e-09 2.18007468616e-07 2.88564969712e-09 2.18502036352e-07 4.59238726377e-09 2.1914641206e-07 5.58724231163e-09 2.19676945765e-07 6.2595039439e-09 2.20540543747e-07 7.03984227818e-09 2.21067550415e-07 7.97796956523e-09 2.2180339459e-07 8.74034766966e-09 2.22261156716e-07 9.11804614087e-09 2.22956592065e-07 9.85403855323e-09 2.2281200267e-07 1.06476961203e-08 2.23016539076e-07 1.11472422247e-08 2.22482813431e-07 1.03159637817e-08 2.23008060104e-07 1.03647863262e-08 2.22165474107e-07 1.01431725205e-08 2.226949665e-07 1.07518836902e-08 2.21629936927e-07 1.04334374019e-08 2.21646750982e-07 1.05640681749e-08 2.20625129936e-07 9.79499485028e-09 2.20696620479e-07 1.02789026166e-08 2.19331154389e-07 9.50293910672e-09 2.1958860854e-07 1.02915520019e-08 2.17753705714e-07 9.26438512106e-09 2.18091152654e-07 1.0220145045e-08 2.15834828272e-07 9.09134223504e-09 2.15984081027e-07 1.01948051847e-08 2.13338215522e-07 9.15483787217e-09 2.13050775691e-07 1.03846845242e-08 2.09972535369e-07 9.42876452389e-09 2.09232065935e-07 1.06499471588e-08 2.05653743161e-07 9.64076589513e-09 2.04781187587e-07 1.10086847231e-08 2.00686931713e-07 9.7942980166e-09 2.00357974608e-07 1.15513322137e-08 1.95827668346e-07 1.02708338797e-08 1.96781457494e-07 1.30454878396e-08 1.92214144122e-07 1.3172672575e-08 1.94836989214e-07 1.79083162174e-08 1.8866017696e-07 1.82175208756e-08 1.91083589514e-07 2.37283677783e-08 1.81426603883e-07 2.28302847129e-08 1.81561896283e-07 2.75626664482e-08 1.65828280309e-07 2.22114030784e-08 1.63261778495e-07 2.30882634256e-08 1.3675153784e-07 3.36795948044e-09 1.32979076123e-07 -3.50871346297e-09 9.55103537736e-08 -4.48205028646e-08 -4.49574982605e-08 9.50373560852e-08 5.24653893795e-07 -2.14989391907e-08 5.24275141585e-07 -3.9465474189e-09 5.1861677778e-07 -2.4216091983e-09 5.14435500046e-07 -3.12740238885e-09 5.10079062676e-07 -3.25437433957e-09 5.05873816491e-07 -3.19106813626e-09 5.01316774946e-07 -3.23706114598e-09 4.96818226042e-07 -3.22654598486e-09 4.92092196945e-07 -3.32729359809e-09 4.87417940453e-07 -3.33145840456e-09 4.82586857928e-07 -3.41754203333e-09 4.77820104609e-07 -3.42209597355e-09 4.7295811586e-07 -3.49091850256e-09 4.68182467292e-07 -3.49521042719e-09 4.63375572769e-07 -3.54889267475e-09 4.58671059556e-07 -3.55744703709e-09 4.53985153589e-07 -3.63626975667e-09 4.49425175444e-07 -3.6978976137e-09 4.45016659089e-07 -3.76820776252e-09 4.40781630664e-07 -3.81251618168e-09 4.36668347608e-07 -3.85497139786e-09 4.32663024631e-07 -3.90276125074e-09 4.28807439674e-07 -3.93280179812e-09 4.25110754167e-07 -3.95653768291e-09 4.21566339587e-07 -3.9763821904e-09 4.18169004033e-07 -3.99678350244e-09 4.14929445522e-07 -4.01030802551e-09 4.11840397566e-07 -4.02353156797e-09 4.08889910733e-07 -4.03935052867e-09 4.06072902979e-07 -4.06428303226e-09 4.03430248407e-07 -4.0975658401e-09 4.00982687144e-07 -4.12933465751e-09 3.98608427654e-07 -4.24416100246e-09 3.96393464676e-07 -4.34071510231e-09 3.94323920569e-07 -4.37395002693e-09 3.92408294202e-07 -4.38472349984e-09 3.90596055019e-07 -4.36897558836e-09 3.88848801939e-07 -4.35333971203e-09 3.87153097594e-07 -4.27330731824e-09 3.85436350347e-07 -4.1716327589e-09 3.83679242143e-07 -3.99872247717e-09 3.81794552171e-07 -3.78637083506e-09 3.79742153163e-07 -3.50997479488e-09 3.7744337706e-07 -3.17142868254e-09 3.74829262278e-07 -2.83443039849e-09 3.71885488072e-07 -2.43700404614e-09 3.68503042143e-07 -2.09913689241e-09 3.6467156643e-07 -1.75733612397e-09 3.60440721294e-07 -1.38700032418e-09 3.55919252867e-07 -9.49264097353e-10 3.51090249427e-07 -6.05825523637e-10 3.46008887886e-07 -3.74088766223e-10 3.40773459788e-07 -2.39865951265e-10 3.35508233723e-07 -2.04589112022e-10 3.3034700745e-07 -2.77381176083e-10 3.25416591156e-07 -4.60328435859e-10 3.20827684969e-07 -7.30996243308e-10 3.16665328213e-07 -1.0620449517e-09 3.12996236841e-07 -1.44344385986e-09 3.09889085591e-07 -1.83148893887e-09 3.07317282759e-07 -2.26435753017e-09 3.05150959748e-07 -2.71280299521e-09 3.03331497846e-07 -2.89492930586e-09 3.01672661815e-07 -2.88863450025e-09 3.00043155886e-07 -2.74774823032e-09 2.98333539882e-07 -2.66423636729e-09 2.96435864218e-07 -2.66464103485e-09 2.94090128065e-07 -2.66647308489e-09 2.90933682116e-07 -2.32026250689e-09 2.86529900197e-07 -1.67391823318e-09 2.80940484332e-07 -1.39348761378e-09 2.74660456339e-07 -1.54215393048e-09 2.6713917744e-07 -1.24540746221e-09 2.58652030561e-07 -7.28783571539e-10 2.5050052146e-07 -1.29972187685e-09 2.37033571712e-07 5.8509768107e-09 2.2353373981e-07 4.27661038949e-09 2.11030380908e-07 -3.01061858282e-09 1.97293515776e-07 -7.74617766219e-09 1.85991991636e-07 -1.53393366867e-08 1.76278098773e-07 -1.40296474123e-08 1.76827663091e-07 -1.28030365412e-08 1.87649682721e-07 -1.29519846335e-08 2.09413452117e-07 -3.40274952634e-10 2.16809093362e-07 3.03178139976e-08 2.1506647402e-07 -3.70216189405e-09 2.19306769374e-07 -4.98900109384e-09 2.26542572197e-07 -1.62600879361e-09 2.32361554725e-07 -3.73390660694e-10 2.39614986295e-07 2.9868298322e-09 2.4780258866e-07 4.03641651676e-09 2.43891584651e-07 -5.66522906275e-09 2.33169044194e-07 -1.02179184119e-08 2.384495807e-07 3.46829719156e-09 2.4962770513e-07 8.18656750672e-09 2.798180952e-07 3.13582882253e-08 3.10451160478e-07 3.67082836294e-08 3.10698537384e-07 2.13978284168e-09 3.0593393534e-07 -8.17428833867e-09 2.93808097399e-07 -5.04367605292e-09 2.7412958116e-07 -1.31972152915e-09 2.53818863222e-07 7.56380696931e-10 2.2849237273e-07 -2.43660387416e-09 2.05661790267e-07 -2.22699111692e-09 1.89131126593e-07 2.19723952406e-09 1.73197440038e-07 6.27603617952e-09 1.56886714019e-07 7.30396849191e-09 1.46237382839e-07 4.14895021752e-09 1.45324841266e-07 -1.25723098598e-09 1.49010567196e-07 -4.32256789175e-09 1.49107476072e-07 -9.28102532942e-09 1.52525655849e-07 -8.59483141073e-09 1.52411538476e-07 -1.02242385865e-08 1.56125345863e-07 -8.4844271459e-09 1.54464624097e-07 -1.04512571257e-08 1.56158094901e-07 -8.17027728829e-09 1.50254286528e-07 -8.43647054784e-09 1.48798247851e-07 -4.98345253418e-09 1.37132844189e-07 -8.20509648259e-09 1.3807980206e-07 -9.03838661696e-09 1.26558481548e-07 -8.37714165358e-09 1.2976687406e-07 3.31920613182e-09 1.21535323936e-07 -8.99779210611e-11 1.25089965067e-07 4.54606153507e-09 1.20992347851e-07 1.01972586253e-10 1.22900602182e-07 2.91895588421e-09 1.20781743976e-07 -3.66964203224e-10 1.19712251776e-07 -1.2938349239e-09 1.1944922041e-07 -8.5357804821e-10 1.16479807431e-07 -5.06569035518e-09 1.16863029401e-07 -1.37958774319e-09 1.15195220583e-07 -6.94203583103e-09 1.15704889235e-07 -4.42850132623e-09 1.14898219604e-07 -3.54442247623e-09 1.14776989403e-07 -2.08294482967e-09 1.15151730671e-07 -9.92096405098e-10 1.15554730214e-07 -1.00974608131e-09 1.1665403385e-07 1.04666364384e-10 1.17580017382e-07 9.88802919665e-11 1.19075125853e-07 1.10816849519e-09 1.20294742758e-07 7.09468975193e-10 1.22128969569e-07 1.94514280382e-09 1.23122753118e-07 1.41684820424e-09 1.24843818029e-07 2.92476342547e-09 1.2536170745e-07 1.23392240071e-09 1.27353252939e-07 3.37518919486e-09 1.27514347634e-07 1.14360269425e-09 1.29632454546e-07 4.14150231331e-09 1.2944540145e-07 1.2855074155e-09 1.30729012559e-07 3.13329959246e-09 1.30376188125e-07 7.99914826036e-10 1.31698381581e-07 2.85141657741e-09 1.30960435382e-07 2.50121215487e-11 1.32667897004e-07 3.08535980687e-09 1.31488010193e-07 -7.61833867666e-10 1.33514581333e-07 3.28573359905e-09 1.32051797713e-07 -1.21970619421e-09 1.34156124564e-07 3.36171296282e-09 1.32559417478e-07 -1.24382742344e-09 1.34506787663e-07 3.41811377769e-09 1.32748060371e-07 -1.05603181067e-09 1.34462000208e-07 3.4991602993e-09 1.32357576307e-07 -1.17334205697e-09 1.34246959741e-07 3.74716154604e-09 1.31789044743e-07 -2.00217714702e-09 1.34907290456e-07 4.35185232853e-09 1.32574453529e-07 -3.32483028991e-09 1.38510989207e-07 6.16503957727e-09 1.3781469915e-07 -2.53844340983e-09 1.48229413211e-07 1.11231886894e-08 1.47788881276e-07 -1.71331260685e-09 1.60707225699e-07 1.58852028147e-08 1.58406551789e-07 7.67701687576e-11 1.71123755675e-07 2.19280990845e-08 1.62538515742e-07 1.64442678065e-09 1.72027051551e-07 2.76466762439e-08 1.45637941812e-07 -1.15425691734e-08 1.48843654939e-07 2.19870070911e-08 9.74380898523e-08 -5.28613767667e-08 5.52943300928e-09 9.36173013751e-08 3.15721657629e-07 3.11810528593e-07 3.09488658788e-07 3.06405888262e-07 3.03328598506e-07 3.00277708435e-07 2.97262120556e-07 2.9421305039e-07 2.91110167262e-07 2.87965668954e-07 2.84765371129e-07 2.81527938416e-07 2.78235186831e-07 2.74909917767e-07 2.71527679082e-07 2.68099094669e-07 2.64566427838e-07 2.60964205986e-07 2.57302396677e-07 2.53589573058e-07 2.49805465229e-07 2.45962345277e-07 2.42086239394e-07 2.38184860809e-07 2.3425955056e-07 2.3031952069e-07 2.2637279964e-07 2.22417494673e-07 2.18446206355e-07 2.1446634321e-07 2.10481003195e-07 2.06435305933e-07 2.02275177502e-07 1.98065347344e-07 1.93871412875e-07 1.89714521945e-07 1.85590264219e-07 1.81512837796e-07 1.77519746829e-07 1.73640976496e-07 1.69928746538e-07 1.66416015703e-07 1.63161444574e-07 1.60195056119e-07 1.57533404746e-07 1.55188813871e-07 1.53109228311e-07 1.5132989284e-07 1.49953078861e-07 1.49018656037e-07 1.48413176942e-07 1.48021718895e-07 1.47750501765e-07 1.47504801009e-07 1.47177021022e-07 1.46657726765e-07 1.45861445999e-07 1.4472630666e-07 1.43201003766e-07 1.41247950972e-07 1.38786147572e-07 1.35864185586e-07 1.32766748117e-07 1.29700475558e-07 1.26793945807e-07 1.2398999395e-07 1.211917258e-07 1.1838951533e-07 1.15912760557e-07 1.14029774297e-07 1.12376577979e-07 1.10387680234e-07 1.0870616609e-07 1.07690534728e-07 1.06129471911e-07 1.11711252699e-07 1.15743271529e-07 1.12520856201e-07 1.04582609299e-07 8.90599698091e-08 7.48574688822e-08 6.18897593513e-08 4.87760957688e-08 4.82807427457e-08 7.84680511264e-08 7.4689976978e-08 6.94802722272e-08 6.75331954026e-08 6.72162258472e-08 7.01682048419e-08 7.42166652517e-08 6.85510819982e-08 5.8283824302e-08 6.17157054499e-08 6.98117389664e-08 1.01159108823e-07 1.37780091673e-07 1.398276199e-07 1.31568264996e-07 1.26450681737e-07 1.25053592932e-07 1.25729789337e-07 1.23196295837e-07 1.20858821189e-07 1.22920026418e-07 1.29039315929e-07 1.36166208545e-07 1.40124476851e-07 1.38638313061e-07 1.33896319723e-07 1.2440303587e-07 1.15420804604e-07 1.05036745649e-07 9.61630288613e-08 8.55582557391e-08 7.69744103211e-08 6.84009106417e-08 6.29609583951e-08 5.47261743113e-08 4.52561686403e-08 3.69801121996e-08 3.98415110036e-08 3.9869210062e-08 4.40953279752e-08 4.43089689541e-08 4.70676003606e-08 4.66114082745e-08 4.52833442027e-08 4.40295585989e-08 3.88723337719e-08 3.69456818423e-08 2.96467514186e-08 2.4734411921e-08 2.07508234013e-08 1.82859665431e-08 1.68803890515e-08 1.55358752265e-08 1.52482264748e-08 1.50154253626e-08 1.57403078509e-08 1.61414472907e-08 1.76702199888e-08 1.87739916747e-08 2.12854324489e-08 2.22945023906e-08 2.52640901764e-08 2.62174558546e-08 2.99547988005e-08 3.09884651827e-08 3.37377434476e-08 3.43012802166e-08 3.67533162101e-08 3.65783435934e-08 3.92473085271e-08 3.83176906948e-08 4.1188584152e-08 3.98158926681e-08 4.27775380948e-08 4.13791144519e-08 4.44109240611e-08 4.31957102441e-08 4.63089542303e-08 4.49874468399e-08 4.8330851199e-08 4.62250515349e-08 5.01487895624e-08 4.68080608257e-08 5.25548784317e-08 5.01155333245e-08 6.07497549904e-08 5.91647007041e-08 7.44847376481e-08 7.47266646411e-08 9.60365533811e-08 9.79808277344e-08 1.24807374017e-07 1.13826164003e-07 1.34718552476e-07 8.27069454479e-08 8.74472873968e-08 1.2950468901e-07 1.58875156036e-08 9.77473164443e-08 3.17851607967e-08 7.17942685489e-08 2.62173904579e-08 4.93752543801e-08 2.33158907843e-08 3.62623512571e-08 1.39909427073e-08 2.73794807093e-08 1.08385197264e-08 1.6372101425e-08 1.25314227128e-08 4.50887819854e-10 1.88219568176e-08 -2.96983278182e-08 3.23099213994e-08 -7.08402738613e-08 4.398568588e-08 -2.18324659699e-08 -4.56919866558e-08 -1.77437283962e-08 -4.70541304679e-09 2.66009224546e-08 -4.43777099835e-08 1.44142154871e-07 -1.17369141764e-07 4.04956035896e-07 -2.55692210056e-07 9.26921149087e-07 -5.13980244698e-07 1.59382208944e-06 -6.53734124227e-07 2.30510797951e-07 1.37959184781e-06 -1.10883005823e-06 1.34107937021e-06 -2.36908943694e-06 1.27071777777e-06 -4.36285095753e-06 1.96216609387e-06 -7.8854687367e-06 3.50322454287e-06 -1.40102974056e-05 6.03110559407e-06 -2.08444655367e-05 6.82119745497e-06 -5.19556034084e-05 4.28260081626e-07 -6.7569153913e-09 4.53649010942e-07 6.12848826737e-09 4.67830151031e-07 1.17842081278e-08 4.77455314448e-07 1.3891021064e-08 4.85740575986e-07 5.74324492971e-09 4.91291433161e-07 6.16784840791e-09 4.9427344912e-07 9.95366486712e-09 4.96647274391e-07 1.79419303398e-08 4.94877832305e-07 3.46551241295e-08 4.87730500204e-07 5.17996118707e-08 4.90181554772e-07 -4.83572373731e-08 4.11017656151e-07 6.89693089248e-08 3.68139998283e-07 -9.20023242125e-09 3.36553001142e-07 -9.43780439817e-08 3.47706516841e-07 -2.72963244786e-07 4.8147248487e-07 -6.46875016287e-07 8.49355479043e-07 -1.00429909833e-06 1.10390740803e-06 1.16797045434e-06 2.03176829483e-06 4.90537365165e-07 2.66731280994e-06 7.5514319639e-07 3.30418135726e-06 1.4767070813e-06 3.77284719222e-06 3.22294450353e-06 3.60270237076e-06 6.38584026924e-06 2.45616789149e-06 8.20836577728e-06 -5.65327486731e-05 2.90869049314e-07 1.74487651226e-08 2.81426710726e-07 1.58083025246e-08 2.73003939932e-07 2.06059250052e-08 2.70648992293e-07 1.71588477213e-08 2.69333755257e-07 7.94688828407e-09 2.73168837553e-07 4.08935025035e-09 2.81919364839e-07 2.65963299802e-09 2.99012729392e-07 3.44908464961e-09 3.25971984244e-07 9.82264638115e-09 3.59519647682e-07 2.11979567351e-08 3.15277045146e-07 -5.88107721667e-10 2.89334579859e-07 9.66326777719e-08 2.39158119654e-07 4.35835149892e-08 1.53446622282e-07 -3.31558990313e-09 -2.24959011069e-09 -1.10818294764e-07 -2.81794524271e-07 -3.59306730707e-07 -5.5651783401e-07 -7.239321585e-07 8.51323163669e-07 -2.47332259838e-07 2.27972460231e-06 -9.58706623242e-07 3.59483905939e-06 -6.16706626462e-07 5.39878144019e-06 -3.98643411686e-07 8.16703974163e-06 3.24990122247e-07 1.24964815921e-05 1.92354226175e-06 1.7169303547e-05 3.39663862749e-06 -1.3933612039e-05 4.34842199141e-07 1.6424118558e-10 4.51834675907e-07 -1.15303282422e-09 4.66357691738e-07 6.19918460169e-09 4.78940691706e-07 5.15465209593e-09 4.85090723021e-07 2.27453157842e-09 4.90318178267e-07 1.64050889929e-10 4.94791722467e-07 -8.81757246061e-10 5.01204669768e-07 -9.65290224065e-10 5.09592687439e-07 2.57040087101e-09 5.16480163316e-07 1.5561004515e-08 4.61636305163e-07 5.42774440267e-08 4.82754840426e-07 7.09151921646e-08 4.63476014041e-07 5.64125543326e-08 4.14675326306e-07 3.82349581202e-08 3.07028612927e-07 -8.86552115677e-09 7.81433609667e-08 -1.31119962867e-07 -2.12362205789e-07 -4.22218613353e-07 7.3051638123e-07 -1.15925108766e-06 1.13526467415e-06 -1.30408756312e-06 1.75890038837e-06 -1.15548626244e-06 2.69126580715e-06 -1.22315945258e-06 4.33778514643e-06 -1.20586369789e-06 7.28366969511e-06 -9.08172867701e-07 1.05271322608e-05 2.87586617784e-07 1.83355871506e-05 4.34055903982e-07 -1.17356449134e-08 4.37066685439e-07 -3.90735039614e-09 4.41278480701e-07 2.42108077067e-09 4.45710986073e-07 1.67658290046e-09 4.46564311774e-07 2.34866620039e-09 4.47485636863e-07 1.02368028995e-09 4.4864221145e-07 -5.2431776963e-10 4.51782468835e-07 -1.42988665128e-09 4.55735024005e-07 8.81434253411e-10 4.60840679535e-07 1.37462729841e-08 4.4792304829e-07 7.1078365924e-08 4.88750864758e-07 3.29009648726e-08 5.09723175404e-07 4.02210349523e-08 5.15270091042e-07 3.9216660204e-08 4.91050032394e-07 2.30136807457e-08 3.98392358374e-07 -3.25178964181e-08 2.37808665032e-07 -2.6166120167e-07 5.02641738692e-07 -1.4381801334e-06 3.62516992532e-07 -1.19943212785e-06 4.16261403263e-07 -1.27337978342e-06 5.7649638645e-07 -1.47681943651e-06 1.01019626935e-06 -1.76805166818e-06 1.98941089566e-06 -2.03411952646e-06 2.92841078996e-06 -7.68656628512e-07 2.93912988052e-05 4.3379923407e-07 -1.38190887691e-08 4.35847181423e-07 -5.83898025316e-09 4.38614586385e-07 -8.09554953813e-11 4.41112311316e-07 -6.73188379728e-11 4.4177430589e-07 2.36853273029e-09 4.42157842509e-07 2.13553726577e-09 4.41985055204e-07 8.08845358896e-10 4.42937595647e-07 -1.7178823287e-10 4.43922322777e-07 1.27815088493e-09 4.48193334752e-07 1.11813436209e-08 4.59234112499e-07 6.07535336082e-08 4.87946788436e-07 1.89062385009e-09 5.15861219164e-07 9.63659103986e-09 5.40289671526e-07 1.29088372766e-08 5.56658348078e-07 6.67153204362e-09 5.49114572212e-07 -2.18423839936e-08 4.94288680343e-07 -1.99758694852e-07 3.85179725616e-07 -1.31909705489e-06 1.32265059612e-07 -9.33899805448e-07 -4.89774195976e-08 -1.08865036818e-06 -2.35691959335e-07 -1.29795960518e-06 -4.25691420534e-07 -1.62625902423e-06 -5.71257867728e-07 -1.96793488934e-06 -8.70808750032e-07 -5.48720410574e-07 2.77156711648e-05 4.36487923938e-07 -1.42401134237e-08 4.37928655936e-07 -7.0824964085e-09 4.39931551292e-07 -1.69492085749e-09 4.4135278789e-07 -5.81524118269e-10 4.42098637724e-07 2.50998173592e-09 4.4272752657e-07 3.23984151517e-09 4.42553016759e-07 2.48566497418e-09 4.4330968296e-07 1.77447427356e-09 4.43999516694e-07 2.95498906308e-09 4.4880997441e-07 1.00074018822e-08 4.68679188267e-07 4.50931655535e-08 4.84330696757e-07 -1.00591669964e-08 5.07995698259e-07 -8.71554768642e-09 5.36267271678e-07 -8.49855655612e-09 5.69109587657e-07 -1.99904942813e-08 6.03303380907e-07 -5.34265276413e-08 6.08027497734e-07 -2.0875423448e-07 3.66843567146e-07 -1.09570647729e-06 1.42782262531e-07 -7.42080591417e-07 -9.60095404289e-08 -9.05159347576e-07 -3.92547771466e-07 -1.07263581252e-06 -8.18443460433e-07 -1.29232534458e-06 -1.42010055162e-06 -1.4537610664e-06 -2.09110703889e-06 7.24821921046e-08 2.10117999052e-05 4.38211678795e-07 -1.44250925335e-08 4.39035237163e-07 -7.82414976104e-09 4.4033332678e-07 -2.72667047216e-09 4.41201693684e-07 -6.90525422563e-10 4.4200318312e-07 2.39312544642e-09 4.43047673112e-07 3.66170901455e-09 4.43330039463e-07 3.34618331319e-09 4.44578685087e-07 2.70499197968e-09 4.45821390996e-07 3.10655172897e-09 4.51250527303e-07 6.58761104472e-09 4.71919678673e-07 2.6026905582e-08 4.80306814014e-07 -1.82656793351e-08 4.98522342854e-07 -2.52419806075e-08 5.25472646534e-07 -3.14224730125e-08 5.62529904011e-07 -4.99171558873e-08 6.10632851756e-07 -9.33602400764e-08 6.37731422106e-07 -2.31362679026e-07 3.83742208355e-07 -8.51392967898e-07 2.10571402438e-07 -6.04479681092e-07 -1.57716677727e-08 -7.5325274075e-07 -3.16761971897e-07 -8.96823129076e-07 -7.82745020868e-07 -1.02633231618e-06 -1.47471934315e-06 -1.03431630476e-06 -2.08922113517e-06 4.17334707405e-07 1.33982145197e-05 4.39202070965e-07 -1.41513272869e-08 4.39562535842e-07 -8.06461088611e-09 4.40361673316e-07 -3.20093607119e-09 4.41013232374e-07 -5.05308320837e-10 4.41829654911e-07 2.3914002283e-09 4.43199918184e-07 3.94433748313e-09 4.43958335052e-07 4.06040583431e-09 4.45774079848e-07 3.61520723053e-09 4.47665502626e-07 3.66843638536e-09 4.53483648255e-07 4.6862193658e-09 4.71872715688e-07 1.21095287683e-08 4.77486972733e-07 -1.997023808e-08 4.91598403195e-07 -3.44109247758e-08 5.15623134815e-07 -4.98760768219e-08 5.50819676835e-07 -8.20500598929e-08 5.98156921037e-07 -1.41404559434e-07 6.27308815856e-07 -2.6765595167e-07 4.06443467645e-07 -6.45937902524e-07 2.76465294017e-07 -4.92001211117e-07 8.45611053642e-08 -5.94198462798e-07 -1.80179915787e-07 -6.52494922955e-07 -6.02675871161e-07 -6.39641345316e-07 -1.22423780728e-06 -3.98846487446e-07 -1.64428695739e-06 8.66970180812e-07 6.84481883559e-06 4.39760244441e-07 -1.35964083268e-08 4.39746454539e-07 -8.02669136911e-09 4.40194833101e-07 -3.41690428138e-09 4.40773839891e-07 -3.70830266494e-10 4.41581004025e-07 2.20667636045e-09 4.43171952216e-07 3.73427636236e-09 4.44340691933e-07 3.97145321909e-09 4.46690644428e-07 3.39532692536e-09 4.49170494286e-07 2.55436842126e-09 4.55218709865e-07 8.79685193833e-10 4.70735555654e-07 -1.07215948249e-09 4.75775690365e-07 -2.33014322099e-08 4.87168291264e-07 -4.1800903334e-08 5.07815510501e-07 -6.33916429464e-08 5.38658645558e-07 -1.02624126734e-07 5.79192757036e-07 -1.71404824637e-07 6.02245029631e-07 -2.88396405229e-07 4.25708741038e-07 -4.88356544831e-07 3.27836827185e-07 -4.48152921801e-07 1.7355235967e-07 -5.45308607499e-07 -4.43406858544e-08 -5.99075867189e-07 -3.95250518913e-07 -5.42159815206e-07 -8.96194419895e-07 -2.26883059037e-07 -1.12215578009e-06 7.62912045727e-07 1.54851776967e-06 4.40050630307e-07 -1.27104861001e-08 4.39731101014e-07 -7.6422230773e-09 4.39918885881e-07 -3.3211203539e-09 4.40461509755e-07 -1.33977651571e-10 4.4124726618e-07 2.16381550502e-09 4.42970645242e-07 3.58538042915e-09 4.44457747547e-07 3.93990523903e-09 4.47235366238e-07 3.37376823228e-09 4.50156008923e-07 2.14705650275e-09 4.56287718525e-07 -1.15952470337e-09 4.69307466802e-07 -9.52611120045e-09 4.7459858273e-07 -2.50023453986e-08 4.84302666384e-07 -4.74780938644e-08 5.01862497893e-07 -7.83115339951e-08 5.27845774505e-07 -1.27997294943e-07 5.6047452067e-07 -2.08914786147e-07 5.76459446819e-07 -3.11741201283e-07 4.39911247648e-07 -3.58416185869e-07 3.64419755718e-07 -3.77484410102e-07 2.42474822966e-07 -4.13268816078e-07 6.81449877523e-08 -4.0736103334e-07 -2.13064415587e-07 -2.03681519755e-07 -5.98634011428e-07 2.4237240165e-07 -6.8987966164e-07 1.00082637338e-06 -2.30265744988e-06 4.40093869463e-07 -1.16603063355e-08 4.39509445841e-07 -7.06705767163e-09 4.39487898514e-07 -3.07842867279e-09 4.39993538524e-07 4.57758578949e-11 4.40762900354e-07 1.97990632068e-09 4.42584478661e-07 3.09865869851e-09 4.44336944188e-07 3.26232799024e-09 4.47482276078e-07 2.37847375412e-09 4.50726051421e-07 2.60404407053e-10 4.56843019131e-07 -4.83986173029e-09 4.67962730285e-07 -1.79417338679e-08 4.73528045814e-07 -2.85598024991e-08 4.82019874543e-07 -5.22811296169e-08 4.9691489289e-07 -8.63048531578e-08 5.18317361357e-07 -1.4083610905e-07 5.44333581133e-07 -2.25216447599e-07 5.55241134117e-07 -3.21344532107e-07 4.50530589787e-07 -2.7118626408e-07 3.91869384238e-07 -3.59502368859e-07 2.95697274074e-07 -4.097291304e-07 1.59947686756e-07 -3.95405126268e-07 -6.12811117882e-08 -2.03445128671e-07 -3.51113317132e-07 2.77963838653e-07 -3.74021728718e-07 7.27250105382e-07 -5.30713521489e-06 4.3997544998e-07 -1.03519398059e-08 4.3916603273e-07 -6.23120081069e-09 4.38970745206e-07 -2.62646022867e-09 4.39428462872e-07 3.10936721515e-10 4.40188757648e-07 1.88888734826e-09 4.42083014527e-07 2.69073387329e-09 4.44049781303e-07 2.71641130954e-09 4.47476748839e-07 1.69147337204e-09 4.50931930845e-07 -7.04647918902e-10 4.56957143945e-07 -6.73476957063e-09 4.66703880487e-07 -2.3210147959e-08 4.72345540508e-07 -3.10107909173e-08 4.79972796598e-07 -5.72128580248e-08 4.92513092236e-07 -9.79388120129e-08 5.0995813936e-07 -1.60527911784e-07 5.30781187683e-07 -2.52157693115e-07 5.39369327159e-07 -3.36710603986e-07 4.59181276706e-07 -1.92061711035e-07 4.1323509267e-07 -3.01915695184e-07 3.38716100241e-07 -3.04092026488e-07 2.35177799077e-07 -2.33566153052e-07 6.54197180371e-08 6.63074968261e-08 -1.5167415669e-07 6.49411246819e-07 -1.61460143838e-07 9.32756085181e-07 -7.43536032636e-06 4.39703600875e-07 -8.91530229445e-09 4.38690734771e-07 -5.23874518888e-09 4.38340385226e-07 -2.05145713474e-09 4.387433315e-07 6.0199690698e-10 4.39507996952e-07 1.71694406821e-09 4.41483262248e-07 2.08513326805e-09 4.43653698301e-07 1.69092221064e-09 4.47351335023e-07 2.55464221889e-10 4.50964939324e-07 -2.94925882101e-09 4.56852124427e-07 -1.00591150952e-08 4.65538041066e-07 -2.92839987951e-08 4.70911193597e-07 -3.50540122899e-08 4.77664304206e-07 -6.14502233638e-08 4.87983779125e-07 -1.03669015881e-07 5.01768195106e-07 -1.68357386489e-07 5.18668537903e-07 -2.60842807696e-07 5.27257847933e-07 -3.41500188599e-07 4.68255665576e-07 -1.40596300674e-07 4.35200011817e-07 -2.92475998944e-07 3.81034943152e-07 -3.11755961604e-07 3.09926602059e-07 -2.39846165941e-07 1.90176794185e-07 2.44408866637e-08 3.89711050779e-08 6.12916775266e-07 9.56066035497e-09 7.04309438479e-07 -9.1412357936e-06 4.39353856805e-07 -7.27186686666e-09 4.38158515537e-07 -4.07147381974e-09 4.37674425061e-07 -1.34819545191e-09 4.38020817128e-07 9.00495142061e-10 4.38806516759e-07 1.51869075373e-09 4.40858533154e-07 1.38799876323e-09 4.43229029991e-07 6.59705298903e-10 4.4716542825e-07 -1.08596508785e-09 4.5093317494e-07 -4.4270962275e-09 4.56655325868e-07 -1.18502726974e-08 4.64353549088e-07 -3.27943758854e-08 4.69265976911e-07 -3.6932750686e-08 4.75119974606e-07 -6.50463555848e-08 4.83128736681e-07 -1.10465385972e-07 4.93152268013e-07 -1.80205791446e-07 5.06104330016e-07 -2.77930035497e-07 5.15798828329e-07 -3.56046365854e-07 4.79081026828e-07 -1.05451868702e-07 4.60706691026e-07 -2.63079878539e-07 4.2978041732e-07 -2.63661481798e-07 3.94326150914e-07 -1.51893929702e-07 3.32006082226e-07 1.49091020051e-07 2.53094582698e-07 8.33014351144e-07 1.96438533752e-07 8.91520779422e-07 -1.00456349246e-05 4.38945168668e-07 -5.52119307849e-09 4.3758080226e-07 -2.77311182014e-09 4.36971654751e-07 -5.23876301769e-10 4.37278205686e-07 1.28653568761e-09 4.38100657505e-07 1.35588766287e-09 4.40259229458e-07 7.15949709884e-10 4.42850475481e-07 -5.43411420735e-10 4.47084995336e-07 -2.75823135139e-09 4.51061123953e-07 -6.70549897786e-09 4.56651668297e-07 -1.45876902787e-08 4.63215835781e-07 -3.70597157741e-08 4.67458572676e-07 -4.07051931113e-08 4.7228344809e-07 -6.90575785334e-08 4.77601090528e-07 -1.1455940909e-07 4.83175797407e-07 -1.83596180712e-07 4.91075435654e-07 -2.81156092058e-07 5.01291207995e-07 -3.59376032157e-07 4.93571089725e-07 -9.16221794075e-08 4.94903391298e-07 -2.66115e-07 4.93989521693e-07 -2.73975216829e-07 5.04306112357e-07 -1.80794883466e-07 5.1836291317e-07 8.05492535228e-08 5.40555011959e-07 7.12302347222e-07 4.8081284064e-07 8.05494955447e-07 -1.01811995524e-05 4.38539248967e-07 -3.66029686833e-09 4.37022056479e-07 -1.33828977551e-09 4.36307753243e-07 2.49959027816e-10 4.36599686513e-07 1.61236278684e-09 4.37481784278e-07 8.6284379313e-10 4.39756864816e-07 -2.00040522572e-10 4.42601993471e-07 -2.29983077729e-09 4.47174974618e-07 -4.79428753704e-09 4.51474385279e-07 -9.14384423732e-09 4.56982060685e-07 -1.65130688243e-08 4.62047369916e-07 -3.83826343688e-08 4.65667017569e-07 -4.14318838234e-08 4.69327786039e-07 -6.92254672102e-08 4.71470314056e-07 -1.14086268842e-07 4.71411184003e-07 -1.81481716042e-07 4.71892389727e-07 -2.81348567529e-07 4.80404303998e-07 -3.69164983401e-07 5.12507074788e-07 -1.27781595212e-07 5.40230934239e-07 -3.06619595577e-07 5.7834687627e-07 -3.23403792212e-07 6.48346022801e-07 -2.67708339589e-07 7.62865719529e-07 -3.65757342929e-08 9.29530169821e-07 5.54621180728e-07 9.14489298271e-07 8.45482496777e-07 -8.85386115176e-06 4.38192333148e-07 -1.66753307768e-09 4.36499122982e-07 9.22828190006e-11 4.35736654886e-07 1.22935254615e-09 4.36006705016e-07 1.8634614004e-09 4.37025420122e-07 6.86603212e-10 4.39387638886e-07 -1.04644733941e-09 4.42594283183e-07 -3.59080269653e-09 4.47567547616e-07 -6.74658084136e-09 4.5241562426e-07 -1.12761143861e-08 4.57986563848e-07 -1.8292929506e-08 4.60994737882e-07 -3.8746324951e-08 4.64167352498e-07 -4.43743913636e-08 4.66462848925e-07 -7.30398218011e-08 4.64797485324e-07 -1.15721008746e-07 4.57356074767e-07 -1.79668833295e-07 4.46766105729e-07 -2.75887456159e-07 4.49213979167e-07 -3.70342412277e-07 5.36250111028e-07 -1.98728949245e-07 5.98899589749e-07 -3.27399498129e-07 6.87182303337e-07 -3.41463554467e-07 8.35422888989e-07 -3.09776248391e-07 1.08187241571e-06 -1.46663967247e-07 1.45342605659e-06 3.27874930264e-07 1.56543493755e-06 8.78060672649e-07 -5.48495339908e-06 4.37927990157e-07 3.55451918503e-10 4.3611221723e-07 1.50126938535e-09 4.35285565718e-07 2.07614564759e-09 4.35630790729e-07 1.78482507445e-09 4.36763855619e-07 5.63578682877e-11 4.39265170606e-07 -2.50738026624e-09 4.42845153644e-07 -5.84229389195e-09 4.48345117976e-07 -9.98039302624e-09 4.53952154267e-07 -1.48480527004e-08 4.59803105773e-07 -2.08732917253e-08 4.60028893048e-07 -3.57100175131e-08 4.63148842722e-07 -4.46356294852e-08 4.64012172675e-07 -7.0799086767e-08 4.57810934192e-07 -1.0637443444e-07 4.41148135951e-07 -1.60520075564e-07 4.14858210493e-07 -2.47479838573e-07 4.04512404325e-07 -3.59512383171e-07 5.64026258616e-07 -3.63136354977e-07 6.69557908975e-07 -4.48068134855e-07 8.19366882146e-07 -5.1487237178e-07 1.06331410796e-06 -5.76423322054e-07 1.4733625476e-06 -5.81408883481e-07 2.11632090125e-06 -3.18656393032e-07 2.46997934546e-06 5.06752784599e-07 5.8431850185e-07 4.37794441926e-07 2.33867629774e-09 4.35902791502e-07 3.07890724761e-09 4.34990007033e-07 2.89181773978e-09 4.35496620734e-07 1.79555623558e-09 4.36703952191e-07 -4.82797722238e-10 4.39361930909e-07 -3.50851559038e-09 4.43309749341e-07 -7.75051567993e-09 4.49448271437e-07 -1.26537321921e-08 4.56086284366e-07 -1.78809694491e-08 4.62655514227e-07 -2.23705656704e-08 4.59441476732e-07 -2.83548037901e-08 4.63228781616e-07 -4.67975272004e-08 4.62734011438e-07 -7.10593548815e-08 4.51572873621e-07 -9.93722038154e-08 4.24163113246e-07 -1.41416607924e-07 3.77178276494e-07 -2.12289128935e-07 3.44855825638e-07 -3.35327191338e-07 5.90154421598e-07 -5.97987854523e-07 7.42294956059e-07 -5.49634966878e-07 9.5949793632e-07 -6.37445268357e-07 1.30755151932e-06 -7.88718858418e-07 1.89938052968e-06 -9.71340121941e-07 2.86054887012e-06 -1.05302212269e-06 3.58544206987e-06 6.50297155116e-08 1.01097423129e-05 4.37856780881e-07 4.27639650748e-09 4.35857659387e-07 4.48967155826e-09 4.34902313243e-07 3.50026259137e-09 4.35572552549e-07 1.27137683747e-09 4.36834978709e-07 -1.49685803726e-09 4.39572363829e-07 -5.16308408604e-09 4.4386232951e-07 -1.07554127063e-08 4.50642806329e-07 -1.69291521689e-08 4.58572884763e-07 -2.3418041454e-08 4.66433970911e-07 -2.67154563283e-08 4.59570107947e-07 -1.82221115052e-08 4.65138349494e-07 -5.01706584175e-08 4.63678424466e-07 -6.82860181074e-08 4.48066268021e-07 -8.30487732826e-08 4.10001642212e-07 -1.05362025922e-07 3.39369653108e-07 -1.43959394268e-07 2.74956007147e-07 -2.73361554299e-07 6.0383151594e-07 -9.27802842036e-07 7.95082997718e-07 -7.31493269584e-07 1.06875091542e-06 -8.97156142401e-07 1.50457672803e-06 -1.17138698822e-06 2.2546493585e-06 -1.65067960822e-06 3.52160829433e-06 -2.17448697974e-06 4.72316542279e-06 -1.00716632565e-06 2.28742924937e-05 4.38131225958e-07 6.33846304787e-09 4.36000351876e-07 5.9548923004e-09 4.34982375529e-07 4.42712971761e-09 4.35735887034e-07 6.67224512582e-10 4.36946941035e-07 -1.99237051459e-09 4.39594204886e-07 -6.5469819515e-09 4.44070326932e-07 -1.32175194998e-08 4.51277327691e-07 -2.10850639187e-08 4.60611785812e-07 -2.89287503494e-08 4.70648360629e-07 -3.11732771211e-08 4.61620422587e-07 -3.44582241373e-09 4.70435057698e-07 -5.39109949509e-08 4.69303739286e-07 -6.24509874639e-08 4.5200875747e-07 -6.22815034485e-08 4.07850748821e-07 -5.92105304682e-08 3.17241744653e-07 -5.51649809567e-08 2.13735738084e-07 -1.76105119672e-07 5.8104067491e-07 -1.30719700028e-06 7.77768731323e-07 -9.44430178737e-07 1.05967302035e-06 -1.20170050931e-06 1.50633310164e-06 -1.66868285977e-06 2.29456495454e-06 -2.4973540352e-06 3.68907390518e-06 -3.68651545219e-06 5.3298472645e-06 -2.73191105589e-06 3.7097272482e-05 4.3870451362e-07 8.09602087179e-09 4.36523738422e-07 7.26232312879e-09 4.35317384075e-07 5.06691433233e-09 4.35975169821e-07 -1.22753734076e-10 4.36826521073e-07 -2.69742778736e-09 4.39132517831e-07 -7.95953721415e-09 4.43235413797e-07 -1.59841040069e-08 4.50195031413e-07 -2.55281446261e-08 4.60367371783e-07 -3.63351614265e-08 4.73287302612e-07 -4.0052448801e-08 4.67237860971e-07 6.01411624822e-09 4.80547971391e-07 -6.53423899148e-08 4.82755373851e-07 -6.40766510228e-08 4.71802204866e-07 -5.31999732343e-08 4.35910906356e-07 -2.74750968204e-08 3.46952663107e-07 2.69020171272e-08 2.13939407466e-07 -4.92500650092e-08 4.87169423517e-07 -1.57775546139e-06 6.07559147319e-07 -1.04409055604e-06 7.73937374874e-07 -1.31141889551e-06 1.04078270656e-06 -1.84055521609e-06 1.55117075477e-06 -2.82797314672e-06 2.56543521929e-06 -4.46932829689e-06 4.23276243585e-06 -4.09683799045e-06 4.76614361208e-05 4.39334112598e-07 9.81839954245e-09 4.37132661911e-07 8.78052330264e-09 4.35679269827e-07 6.12990255118e-09 4.35690211033e-07 3.74247176473e-11 4.35954398151e-07 -2.48969433532e-09 4.37500075101e-07 -8.28322771289e-09 4.40251269504e-07 -1.69761321561e-08 4.45150768442e-07 -2.75914941889e-08 4.53740932387e-07 -4.10730987135e-08 4.68402879118e-07 -4.92464453153e-08 4.76453558297e-07 4.37227899172e-09 4.92875509772e-07 -7.44734039521e-08 5.04304034715e-07 -6.71491478883e-08 5.16823339365e-07 -5.55785217337e-08 5.23279852728e-07 -2.30329422553e-08 4.97766441175e-07 6.34679960637e-08 3.94952418221e-07 5.68020769984e-08 3.02171076619e-07 -1.50936563068e-06 1.9551325013e-07 -1.00627787838e-06 9.58660907304e-09 -1.25852019037e-06 -2.69790065284e-07 -1.76415276381e-06 -6.66235600413e-07 -2.73986421505e-06 -1.11140764607e-06 -4.44213017417e-06 -6.04652803016e-07 -5.08609740887e-06 4.27383173624e-05 4.40939136972e-07 1.12786637353e-08 4.38820951936e-07 9.77753138403e-09 4.37250638505e-07 7.0565674412e-09 4.35721283524e-07 1.21284659635e-09 4.35503475494e-07 -2.10436916782e-09 4.36021074229e-07 -8.10055039355e-09 4.36259722989e-07 -1.57619157929e-08 4.36268662734e-07 -2.52953073055e-08 4.37365413276e-07 -3.89257384124e-08 4.46117073718e-07 -5.41841817181e-08 4.82435944755e-07 -2.8426990021e-08 4.92663274495e-07 -8.29237563558e-08 5.1944146776e-07 -9.3266453279e-08 5.77182955675e-07 -1.14800031329e-07 6.7999457952e-07 -1.28932225065e-07 8.39667467764e-07 -1.01545538504e-07 9.39682861806e-07 -4.96853021944e-08 1.12784659431e-07 -6.82026254192e-07 -4.2658231702e-07 -4.51223208946e-07 -1.26284804407e-06 -3.72437127744e-07 -2.55609445106e-06 -3.80700532829e-07 -4.7266895867e-06 -3.98776689543e-07 -8.27108731091e-06 -6.67155275633e-07 -1.11971084903e-05 -1.86441103123e-06 6.38475513828e-06 4.42895978639e-07 1.23800060163e-08 4.41659400492e-07 9.97493895235e-09 4.41156103657e-07 7.17117417205e-09 4.38524583442e-07 3.74461397992e-09 4.39439761615e-07 -2.38998138267e-09 4.40275530447e-07 -7.7461251453e-09 4.39132335788e-07 -1.24364005447e-08 4.34140244816e-07 -1.70059302558e-08 4.22537838388e-07 -2.29239507433e-08 4.10713721535e-07 -3.69755908188e-08 4.74706866714e-07 -8.70593212601e-08 4.63844401943e-07 -6.70763995332e-08 5.01530010141e-07 -1.26661588191e-07 6.00370507111e-07 -2.09624468393e-07 8.15382827404e-07 -3.40351930677e-07 1.24738748453e-06 -5.27561664424e-07 1.76591685622e-06 -5.61498083202e-07 1.49220664161e-07 9.31382457259e-07 -9.02493353652e-07 5.75362681864e-07 -2.37534037956e-06 1.04289819216e-06 -4.64918276213e-06 1.80935308858e-06 -8.65187269451e-06 3.4582699136e-06 -1.5681026144e-05 6.15331455025e-06 -2.34013846853e-05 5.54088034307e-06 -6.43750140706e-05 4.439104634e-07 1.37338601822e-08 4.42524089004e-07 1.03009055484e-08 4.42459891385e-07 6.52046837421e-09 4.3972036125e-07 6.23969854481e-09 4.41754424106e-07 -4.24258355297e-09 4.43817634477e-07 -8.97040471828e-09 4.44520857554e-07 -1.16577271501e-08 4.41149607284e-07 -1.1160520798e-08 4.26438974435e-07 -5.23305085398e-09 3.97985627989e-07 -5.0963107369e-09 4.56718798068e-07 -1.43293426715e-07 4.3698271999e-07 -4.55691838552e-08 4.68796781325e-07 -1.5833758421e-07 5.54023476087e-07 -2.94340101851e-07 7.60713266084e-07 -5.48505739808e-07 1.23238573571e-06 -1.00080654673e-06 1.92433484115e-06 -1.25657855552e-06 4.1987632703e-07 2.4293888968e-06 -6.69783605944e-07 1.67529568561e-06 -1.89389624503e-06 2.2802666681e-06 -3.73055829479e-06 3.71502349391e-06 -6.96215381718e-06 6.78333468589e-06 -1.2737124555e-05 1.21075129568e-05 -1.97276653508e-05 1.27314053808e-05 -0.000120787638918 5.4407971614e-07 1.39679174869e-08 5.4368476128e-07 9.82382208784e-09 5.44213023246e-07 5.45911071272e-09 5.44012284176e-07 6.54918642788e-09 5.45885578831e-07 -5.52788340079e-09 5.48305833079e-07 -9.88775103024e-09 5.50577427299e-07 -1.14370272316e-08 5.52421420217e-07 -9.3316385933e-09 5.54177024419e-07 -2.32935514948e-09 5.60565366326e-07 -6.78474937962e-09 5.86028690253e-07 -1.64817690433e-07 5.93983307972e-07 -5.20457294723e-08 6.06128597003e-07 -1.71426899308e-07 6.14596110624e-07 -3.0801744399e-07 5.95736458018e-07 -5.37714454894e-07 4.92250152463e-07 -9.0436533709e-07 2.48473872287e-07 -1.01038358896e-06 3.79112869484e-07 2.3193968447e-06 6.49814099813e-07 1.4447578727e-06 1.07928708183e-06 1.92707898968e-06 1.9695147141e-06 2.92954592232e-06 3.92873963465e-06 4.97920819368e-06 8.01124734302e-06 8.17158052023e-06 1.34759765401e-05 7.3566285353e-06 -8.18952839921e-05 5.53186345653e-07 1.3789164013e-08 5.52108767511e-07 9.76471060742e-09 5.51672364989e-07 5.33299822797e-09 5.55461421337e-07 2.58470114806e-09 5.56108491382e-07 -5.70940460316e-09 5.59308829924e-07 -1.2020601076e-08 5.6658623239e-07 -1.67685575708e-08 5.81165287925e-07 -2.12935485914e-08 6.09777814041e-07 -2.78528730311e-08 6.51404634644e-07 -4.56683412659e-08 5.98382179488e-07 -1.09584296153e-07 6.35064689371e-07 -8.79826071339e-08 5.98691644721e-07 -1.33898076908e-07 4.83018459696e-07 -1.92598261181e-07 1.96876257855e-07 -2.50973576099e-07 -4.19697068716e-07 -2.88109082736e-07 -1.2325860079e-06 -2.01732120953e-07 7.71372033189e-07 3.12962308318e-07 2.15983655628e-06 4.99839889943e-08 4.00279649046e-06 9.66584193677e-08 6.90198054639e-06 6.00536578112e-08 1.20691607992e-05 -1.11804262259e-07 2.10506074063e-05 -6.94461723126e-07 3.04547903097e-05 -1.90245314752e-06 6.27372763556e-06 5.58200411687e-07 1.37662972442e-08 5.57110239247e-07 9.80141977233e-09 5.57186985533e-07 4.87729983557e-09 5.62835127391e-07 -3.06069087365e-09 5.64875365721e-07 -6.91823404963e-09 5.69927718719e-07 -1.54468604597e-08 5.80645618125e-07 -2.4676599676e-08 5.99307159051e-07 -3.59873463239e-08 6.28010031808e-07 -5.17985831735e-08 6.55758154577e-07 -6.83428605238e-08 5.78471039326e-07 -2.85354746618e-08 6.00664487445e-07 -1.08028369198e-07 5.47326453754e-07 -8.22934822758e-08 4.12283192195e-07 -6.38006263595e-08 1.4439131918e-07 4.79390057143e-09 -3.17848507535e-07 1.5953542455e-07 -7.39865833101e-07 2.15878126945e-07 1.11340208088e-06 -1.52291407712e-06 2.21905895411e-06 -9.99172391574e-07 3.71477909823e-06 -1.28661794525e-06 5.85175492925e-06 -1.906958921e-06 9.25203915486e-06 -3.24604161496e-06 1.43675754242e-05 -5.50900480788e-06 1.78453083747e-05 -5.09275811367e-06 5.76579122018e-05 5.62016819933e-07 1.35818417155e-08 5.6146903494e-07 9.31486389827e-09 5.62297678437e-07 3.46435087583e-09 5.66572543735e-07 -7.30622554763e-09 5.70008102349e-07 -9.74227584653e-09 5.75208712093e-07 -1.91957354677e-08 5.83920014688e-07 -3.1196154796e-08 5.95927195797e-07 -4.51245625658e-08 6.08169396401e-07 -6.10315938646e-08 6.10322538465e-07 -6.78243826734e-08 5.6588487368e-07 1.75891671744e-08 5.62759144996e-07 -1.0357012683e-07 5.31980211079e-07 -5.12647627633e-08 4.64083876134e-07 4.02521293692e-09 3.60490743614e-07 1.06823183378e-07 2.48144185447e-07 2.6852404484e-07 2.71634637214e-07 1.88672140975e-07 9.70698841338e-07 -2.22911759778e-06 1.33889334782e-06 -1.36409449069e-06 1.82806581181e-06 -1.76155118256e-06 2.43481469724e-06 -2.46416281593e-06 3.19560693598e-06 -3.91650520822e-06 3.88081757002e-06 -6.05874000542e-06 2.87910850395e-06 -3.92919215412e-06 6.46584406543e-05 5.65424662967e-07 1.3121143448e-08 5.65317194605e-07 8.52613688216e-09 5.66204259156e-07 2.05975508672e-09 5.67915943986e-07 -8.83322141714e-09 5.71066041087e-07 -1.21629448289e-08 5.74688713843e-07 -2.11972350948e-08 5.7907904587e-07 -3.31112698668e-08 5.83024088414e-07 -4.56707690622e-08 5.83095292312e-07 -5.67559267323e-08 5.7589816132e-07 -5.58283113058e-08 5.74345541342e-07 2.46976651325e-08 5.6142716916e-07 -8.5721691719e-08 5.58230628114e-07 -4.37221952573e-08 5.55918931687e-07 6.93933066249e-09 5.73315920249e-07 8.44837296514e-08 6.53554315687e-07 1.76333538557e-07 8.14803982555e-07 1.30313703347e-08 6.19861452911e-07 -2.04225089268e-06 4.96320302501e-07 -1.23757286899e-06 3.06953241865e-07 -1.53420830297e-06 -2.04906561659e-08 -2.07509506803e-06 -6.70554202162e-07 -3.1241547337e-06 -1.96939443143e-06 -4.58495659553e-06 -3.96249669503e-06 -1.73214173393e-06 5.07175767163e-05 5.68658886327e-07 1.22281305872e-08 5.68708934658e-07 7.40330692461e-09 5.69339215565e-07 1.00584934124e-09 5.6932484841e-07 -8.71549710915e-09 5.71339758312e-07 -1.32899883004e-08 5.73295128196e-07 -2.15579781638e-08 5.74653527112e-07 -3.21514176099e-08 5.74460776767e-07 -4.268235582e-08 5.71135536677e-07 -5.05911047352e-08 5.66424712511e-07 -4.87180384026e-08 5.87401940257e-07 5.44248828601e-09 5.77398058627e-07 -7.48693619093e-08 5.87213656494e-07 -5.44488485773e-08 6.13859289211e-07 -2.2221780374e-08 6.71853009839e-07 1.94670493429e-08 7.86757471581e-07 5.39608018488e-08 9.05576600962e-07 -1.14203974441e-07 3.77572413991e-07 -1.51474138869e-06 8.41278181062e-08 -9.17306530871e-07 -3.35045710304e-07 -1.06776303651e-06 -9.4490437629e-07 -1.34261019508e-06 -1.94082732303e-06 -1.97497502354e-06 -3.50456727177e-06 -2.75732918717e-06 -4.82016362219e-06 -2.00687093101e-07 3.38413342146e-05 5.71721594125e-07 1.12854372902e-08 5.71813389629e-07 6.2934589754e-09 5.72263431178e-07 2.52859096261e-10 5.71809011442e-07 -8.16146375366e-09 5.72840353237e-07 -1.35327813232e-08 5.73815521952e-07 -2.13128341985e-08 5.73930343836e-07 -3.04504723801e-08 5.72726802894e-07 -3.9067471883e-08 5.70329701139e-07 -4.50524465375e-08 5.70167086098e-07 -4.3756912618e-08 5.94140733893e-07 -1.19510985744e-08 5.90022060483e-07 -6.14851711254e-08 6.00869033707e-07 -5.42644698449e-08 6.30455799654e-07 -4.08531247584e-08 6.85287071372e-07 -2.88936257915e-08 7.69327848617e-07 -3.47016084845e-08 8.09578082189e-07 -1.74596926487e-07 2.93815255718e-07 -1.0413353739e-06 1.07872080396e-08 -7.04390671261e-07 -3.95321426096e-07 -7.47619728002e-07 -9.70174080853e-07 -8.68579676906e-07 -1.84801154535e-06 -1.18518682133e-06 -3.04761451225e-06 -1.608804102e-06 -3.3848639733e-06 1.0413964173e-07 2.06431239729e-05 5.74727600308e-07 1.01010694481e-08 5.74905101834e-07 5.20880869002e-09 5.75292900375e-07 -5.05703886933e-10 5.75086576782e-07 -7.57381314077e-09 5.75617472962e-07 -1.30692704252e-08 5.76259611938e-07 -2.02767576079e-08 5.76062321852e-07 -2.80841276647e-08 5.74946077642e-07 -3.55474256705e-08 5.74017550311e-07 -4.17528307181e-08 5.76447494463e-07 -4.43506989523e-08 5.9580842673e-07 -3.01169978797e-08 5.94714020872e-07 -6.13739384207e-08 6.0188832085e-07 -6.3929925311e-08 6.26247768355e-07 -7.33486352499e-08 6.68964800683e-07 -8.20471218876e-08 7.21213363348e-07 -1.01410997644e-07 7.11066996531e-07 -1.71095163518e-07 2.92936855107e-07 -6.08217567612e-07 6.83741857164e-08 -4.33923916921e-07 -2.75358631927e-07 -2.80167015501e-07 -7.62605962652e-07 -2.18236436521e-07 -1.48488665125e-06 -1.57312676325e-07 -2.35947640102e-06 -4.26431615433e-07 -2.05370234799e-06 1.77038322354e-07 1.11890370411e-05 5.77896052261e-07 8.71170946819e-09 5.78278282031e-07 3.99591509727e-09 5.78801842153e-07 -1.38980288989e-09 5.78800611457e-07 -7.27961975411e-09 5.79317780877e-07 -1.30093424779e-08 5.79981780073e-07 -2.00001388819e-08 5.7961743687e-07 -2.6631085795e-08 5.78319380477e-07 -3.28130603997e-08 5.77466353138e-07 -3.85791576165e-08 5.7998453004e-07 -4.28289268593e-08 5.96880193227e-07 -4.01128559785e-08 5.9377723877e-07 -4.78596937589e-08 5.97782137261e-07 -5.46479084558e-08 6.20798436254e-07 -8.13240225323e-08 6.62276334308e-07 -1.13585508804e-07 7.1366051966e-07 -1.53668304495e-07 7.02731805423e-07 -1.84445862932e-07 3.02246985432e-07 -2.64659017941e-07 9.92803416951e-08 -3.26697848759e-07 -2.48545366942e-07 -6.4896866635e-08 -7.42209947844e-07 1.36665845456e-07 -1.49853092575e-06 4.29850207967e-07 -2.41282839774e-06 4.04366067896e-07 -2.05836108714e-06 -2.7393215033e-07 1.07801757171e-06 5.81149752389e-07 6.95707198594e-09 5.81902050735e-07 2.36245196419e-09 5.82788433984e-07 -2.32814298466e-09 5.82673141906e-07 -6.61438332163e-09 5.83546124164e-07 -1.27043979713e-08 5.84277361108e-07 -1.91125618224e-08 5.83468979546e-07 -2.39535440335e-08 5.81148456717e-07 -2.85624392387e-08 5.78406972971e-07 -3.42038932678e-08 5.78596236103e-07 -4.20295933797e-08 6.00186554999e-07 -6.25613308281e-08 5.90836104663e-07 -4.11422054157e-08 5.96438654324e-07 -6.80585230117e-08 6.26765634545e-07 -1.22254885868e-07 6.84787388982e-07 -1.89543523949e-07 7.73638564716e-07 -2.55871443015e-07 8.11642354149e-07 -2.23254357352e-07 2.8140071335e-07 2.93736461811e-07 9.31363768591e-09 4.20318642872e-08 -4.53589609546e-07 5.44453126855e-07 -1.10346909859e-06 1.0563596499e-06 -2.13987602994e-06 1.78964987516e-06 -3.53655808741e-06 2.24172559011e-06 -3.77293827832e-06 3.08739167151e-07 -1.40669880521e-05 5.84188848716e-07 4.6937910182e-09 5.85594970414e-07 5.10920989313e-11 5.87055597315e-07 -3.9148424618e-09 5.86719567636e-07 -6.10052681863e-09 5.88149455019e-07 -1.35821614936e-08 5.88753490358e-07 -1.92217445609e-08 5.87102551148e-07 -2.17217439976e-08 5.8291615072e-07 -2.34759858858e-08 5.76567434253e-07 -2.63517280343e-08 5.72328699612e-07 -3.45502928964e-08 6.04353173695e-07 -8.93323245702e-08 5.89354030134e-07 -1.87326783804e-08 6.03729177286e-07 -7.37576726758e-08 6.48209810357e-07 -1.58913614654e-07 7.33336459307e-07 -2.7222785897e-07 8.78403970579e-07 -4.09423543716e-07 9.86023682191e-07 -3.56528248127e-07 2.33966383165e-07 1.00605935414e-06 -1.99450433741e-07 4.30965405069e-07 -8.48673561593e-07 1.1555498906e-06 -1.73228978487e-06 1.95357714134e-06 -3.14979850034e-06 3.23438833319e-06 -5.19240923145e-06 4.47550169634e-06 -6.37952703973e-06 1.65849777525e-06 -3.63120221791e-05 5.87285973107e-07 1.44080184757e-09 5.89707851485e-07 -2.92183872275e-09 5.92114742696e-07 -6.15352723841e-09 5.92289030632e-07 -5.41129936265e-09 5.94270218135e-07 -1.42707195006e-08 5.9445171083e-07 -1.79084580542e-08 5.91952170325e-07 -1.75843277275e-08 5.86144146508e-07 -1.63388729294e-08 5.76446066368e-07 -1.57585061971e-08 5.6710615612e-07 -2.59261225628e-08 6.04094083425e-07 -1.28759847429e-07 5.94287042178e-07 -1.57435348842e-08 6.21080933328e-07 -1.10229642825e-07 6.74053260516e-07 -2.28467329381e-07 7.67664705403e-07 -3.8257961021e-07 9.30096627305e-07 -5.84773188631e-07 1.06097756333e-06 -4.77743361908e-07 2.14604728229e-07 1.90531152044e-06 -3.85213225837e-07 1.13366170112e-06 -1.1294812176e-06 2.10283660752e-06 -2.08543623303e-06 3.15949804274e-06 -3.57547337695e-06 5.11842649186e-06 -5.7244357629e-06 6.97984845105e-06 -7.48205691868e-06 3.79959004049e-06 -5.9193113093e-05 5.89205382511e-07 -3.08120690565e-09 5.92664991895e-07 -6.99119013623e-09 5.96356003945e-07 -1.00636112733e-08 5.98898892179e-07 -7.66152284006e-09 6.01369578057e-07 -1.65900343445e-08 6.01566692179e-07 -1.78902198357e-08 5.99861043024e-07 -1.58866830749e-08 5.95795885201e-07 -1.20044558357e-08 5.88759331184e-07 -8.06234370452e-09 5.80529188052e-07 -1.60465042117e-08 5.97373504868e-07 -1.43537301201e-07 6.09938147783e-07 -2.59108101723e-08 6.35690661006e-07 -1.37103652201e-07 6.64763971991e-07 -2.60236770841e-07 6.96226215323e-07 -4.27054200446e-07 7.379557287e-07 -6.43541477164e-07 7.27689920574e-07 -4.91062089835e-07 3.01700738226e-07 2.32108544165e-06 -1.74588932433e-07 1.66295649896e-06 -6.06852588636e-07 2.63696567415e-06 -1.04604910394e-06 3.8631137804e-06 -1.63528181623e-06 6.01633228123e-06 -2.23917738188e-06 8.17369014651e-06 -2.87248974763e-06 4.95262409253e-06 -6.49102268771e-05 5.90072578596e-07 -8.37199919218e-09 5.94104506383e-07 -1.13179201219e-08 5.98580350615e-07 -1.39001089142e-08 6.04877265493e-07 -1.27593785285e-08 6.07896151003e-07 -1.81457955431e-08 6.09941366278e-07 -1.83917349654e-08 6.12234673972e-07 -1.68029431114e-08 6.15648747483e-07 -1.44219838498e-08 6.22996607883e-07 -1.5694690044e-08 6.32677164455e-07 -2.76389879912e-08 6.01305213302e-07 -1.17411842034e-07 6.31183389704e-07 -6.41101554202e-08 6.20203142581e-07 -1.38906093525e-07 5.76126656419e-07 -2.30982831805e-07 4.5666388201e-07 -3.22283720375e-07 2.15108169947e-07 -4.05137327222e-07 -1.19900506362e-07 -1.31897598355e-07 5.13004052385e-07 1.75115571329e-06 7.72498723359e-07 1.51395029262e-06 1.20571392281e-06 2.3682462219e-06 1.99522091206e-06 3.27589344168e-06 3.39991862294e-06 4.87644559136e-06 6.01515732007e-06 5.76270864117e-06 8.39932142241e-06 2.73223743689e-06 -3.72513234264e-05 5.87399412735e-07 -1.44623296201e-08 5.92507755404e-07 -1.71129261247e-08 5.9799097562e-07 -1.95187715483e-08 6.07415385674e-07 -2.2305662657e-08 6.12835549256e-07 -2.3685013825e-08 6.19289397539e-07 -2.52949825472e-08 6.27112853906e-07 -2.50740646951e-08 6.37949609939e-07 -2.57341642789e-08 6.56857163772e-07 -3.43574929388e-08 6.78961581201e-07 -4.96260731272e-08 6.08569074403e-07 -4.72419502859e-08 6.0864257227e-07 -6.74287879712e-08 5.42029851536e-07 -8.2327202539e-08 4.29531844101e-07 -1.34473572668e-07 2.04114866412e-07 -1.26334625362e-07 -1.78736378862e-07 -5.25599281576e-08 -5.93713941444e-07 2.5741559708e-07 8.43770874674e-07 3.29251067545e-07 1.92785650804e-06 5.7700692891e-07 3.04177871516e-06 1.50556974298e-06 4.73113670543e-06 2.09388526895e-06 7.35508291053e-06 2.85979033252e-06 1.158932301e-05 2.49507143655e-06 1.51294733983e-05 9.61193347664e-08 5.68145358028e-06 5.28176186148e-07 -1.98029061262e-08 5.34351089832e-07 -2.29438163929e-08 5.4179337179e-07 -2.56844177253e-08 5.5193266999e-07 -3.05034971445e-08 5.61242567952e-07 -3.09913190154e-08 5.72009190855e-07 -3.40764465646e-08 5.83147125995e-07 -3.46565308774e-08 5.93713356004e-07 -3.56343017631e-08 6.00859977049e-07 -4.25983115561e-08 5.90318162249e-07 -4.27204880341e-08 5.32691058404e-07 3.97785499933e-09 4.91616548387e-07 -3.56431422641e-08 4.24787599339e-07 -2.58465688793e-08 3.46680096408e-07 -6.54580711329e-08 2.38106957345e-07 -2.14660234173e-08 1.82017317991e-07 1.75877985952e-08 3.18860073063e-07 1.59818420339e-07 1.08939642795e-06 -3.73138008239e-07 1.69830768657e-06 3.66516488439e-08 2.25114011051e-06 1.02165674961e-06 3.08802667693e-06 1.30420357756e-06 4.04915769699e-06 1.90874079192e-06 5.10994162701e-06 1.328039945e-06 4.59208215501e-06 3.87400604587e-07 1.60371952325e-05 4.6898182106e-07 -2.59867213456e-08 4.76760353863e-07 -3.13393472737e-08 4.85897909789e-07 -3.52384839753e-08 4.9546348606e-07 -4.02956999209e-08 5.06014077176e-07 -4.2071950915e-08 5.16242691037e-07 -4.50488371425e-08 5.24044611034e-07 -4.32102353566e-08 5.26969684946e-07 -3.95154108454e-08 5.21511685019e-07 -3.65867713599e-08 4.99154274853e-07 -2.11185992657e-08 4.89848312433e-07 1.11229677269e-08 4.56424158367e-07 -1.05108569068e-08 4.36841100703e-07 -2.83820457405e-08 4.35629306788e-07 -9.53440908626e-08 4.479305214e-07 -8.9221558156e-08 5.90083144353e-07 -1.76266679589e-07 8.76946457243e-07 -1.66376624875e-07 7.265573749e-07 -1.92995702225e-07 6.60736432742e-07 3.72965316726e-07 4.69102132032e-07 1.64831508607e-06 3.48225744639e-07 2.25314381255e-06 -1.59094313912e-07 3.41952713802e-06 -1.26087852788e-06 3.91704183107e-06 -3.76190538165e-06 4.38686885383e-06 5.37194732916e-06 4.15389232314e-07 -3.13110816984e-08 4.23050573654e-07 -3.81439882384e-08 4.31810328587e-07 -4.17390717215e-08 4.41091552275e-07 -4.66444151822e-08 4.50916080064e-07 -4.88643578846e-08 4.59544018634e-07 -5.08048117864e-08 4.64939918723e-07 -4.64075381517e-08 4.65446209256e-07 -3.87937143328e-08 4.61621636143e-07 -3.43371790078e-08 4.51372069828e-07 -1.45481070573e-08 4.62618613915e-07 -6.86127784293e-09 4.55943781185e-07 -1.12444993502e-08 4.65873919167e-07 -4.25018215589e-08 4.92168047419e-07 -1.21979175074e-07 5.06706118628e-07 -8.99466489474e-08 5.86490230701e-07 -2.26665851363e-07 6.61018150102e-07 -1.822942567e-07 3.1999642472e-07 2.11157703462e-07 1.16767517463e-07 5.63466991024e-07 -2.18974700497e-07 1.940356482e-06 -4.40275630276e-07 2.26152125089e-06 -9.27642605817e-07 3.65168238925e-06 -1.59087510864e-06 3.98185525878e-06 -2.94768843709e-06 5.13568938536e-06 -1.05563111665e-06 3.67972852057e-07 -3.72712636385e-08 3.7414543968e-07 -4.52123446982e-08 3.81347736301e-07 -4.95728126362e-08 3.90964660735e-07 -5.66726086961e-08 4.00202796914e-07 -5.87061959955e-08 4.08958110781e-07 -6.05718292951e-08 4.15565062967e-07 -5.35086351504e-08 4.18869967387e-07 -4.37496589603e-08 4.2251670534e-07 -3.6369332395e-08 4.22341824934e-07 -1.63966437325e-08 4.20690043107e-07 -8.94379125861e-09 4.26001244065e-07 -2.97595972159e-08 4.31142083778e-07 -8.13081378273e-08 4.40950648112e-07 -1.75389214713e-07 4.01225598695e-07 -1.29767742415e-07 3.66754592699e-07 -2.61420854141e-07 2.65842185166e-07 -1.32134914502e-07 2.46055444752e-07 2.65921295553e-07 2.91208551079e-07 9.00074122822e-07 2.39092245252e-07 2.56270147859e-06 4.52691699585e-07 3.10932065571e-06 6.91575353532e-07 4.70362267095e-06 1.39970174935e-06 5.11993010975e-06 1.90912859288e-06 6.60601909674e-06 8.60070308751e-06 3.28076524367e-07 -4.11652736188e-08 3.32181412566e-07 -4.72618083855e-08 3.37320061889e-07 -5.12813044283e-08 3.46916851983e-07 -6.12283151236e-08 3.55474000912e-07 -6.29522340002e-08 3.65210813338e-07 -6.53957250749e-08 3.74042969271e-07 -5.90947612231e-08 3.80995811229e-07 -4.79563408531e-08 3.90082738616e-07 -4.64644635618e-08 3.92278746339e-07 -2.10588835251e-08 3.69450561501e-07 9.00956611707e-09 3.68367389212e-07 -2.96594417108e-08 3.5088923932e-07 -6.1028057348e-08 3.32950595268e-07 -1.40762417548e-07 2.47885723765e-07 -1.8362259091e-08 1.58553172941e-07 -1.18603048544e-07 3.07849062513e-08 5.96469611158e-08 3.95226287643e-07 -5.35693606981e-08 7.75870086455e-07 4.45250379351e-07 1.08251922595e-06 2.04292652833e-06 1.75534520934e-06 2.07384355983e-06 2.63242147657e-06 3.21922923289e-06 4.32205653563e-06 2.59379680086e-06 6.00014840513e-06 3.83948823881e-06 2.70518952261e-05 2.9479334276e-07 -4.67889203051e-08 2.96661140389e-07 -5.01015318544e-08 2.99450626568e-07 -5.46522835315e-08 3.08122987824e-07 -6.99651597878e-08 3.15367858103e-07 -7.05089436976e-08 3.25487517157e-07 -7.64945167963e-08 3.35798619253e-07 -6.9437534011e-08 3.44422354622e-07 -5.96199432231e-08 3.55722024065e-07 -5.57276096437e-08 3.54680100721e-07 -2.50053457678e-08 3.19461423249e-07 3.81525433891e-08 3.05564080508e-07 -3.21716663735e-08 2.64470210814e-07 -5.92132589688e-08 2.29055769075e-07 -1.47685901593e-07 1.29291542343e-07 -3.33854277134e-09 6.12718876991e-08 -1.10727076319e-07 2.7530101776e-08 5.45225757983e-08 5.79294263715e-07 -5.73145731598e-07 1.16735042965e-06 2.61128182707e-07 1.67157223447e-06 2.04885536259e-06 2.54765896909e-06 2.17315673547e-06 3.59022827155e-06 3.30233712438e-06 5.35457380136e-06 2.41054373363e-06 7.03018238124e-06 3.92490068221e-06 4.69228378927e-05 2.66230192209e-07 -5.02692851771e-08 2.66373938566e-07 -4.79430191454e-08 2.67042738979e-07 -5.10020602805e-08 2.74541775019e-07 -7.1719664951e-08 2.79673990489e-07 -7.0265628257e-08 2.89276738104e-07 -8.03720958766e-08 2.99215211792e-07 -7.49327245326e-08 3.07345038236e-07 -6.39405231749e-08 3.17607501654e-07 -6.57511565328e-08 3.12002064566e-07 -1.98654941427e-08 2.77178344935e-07 7.09231000787e-08 2.55568668103e-07 -6.84547927626e-09 2.01735640328e-07 5.57027167294e-09 1.66165394599e-07 -8.77137214436e-08 8.01298762029e-08 1.2082982107e-07 7.71657855821e-08 -4.9930598078e-08 1.76116306585e-07 2.26554791879e-08 6.80877501594e-07 -1.05104846721e-06 1.26874692783e-06 -4.6321313828e-07 1.7413085746e-06 1.30436732241e-06 2.51319852995e-06 9.02908624419e-07 3.2625711627e-06 1.84735693892e-06 4.34327132968e-06 3.06564874851e-07 5.11580940041e-06 1.97456383388e-06 5.731368076e-05 2.39170212914e-07 -5.64511578724e-08 2.38511451321e-07 -4.79517014464e-08 2.37737115744e-07 -5.02506845888e-08 2.4445537084e-07 -7.72053436519e-08 2.4712526075e-07 -7.22835614434e-08 2.55308843384e-07 -8.8628861403e-08 2.63336308284e-07 -8.16741496977e-08 2.68629761155e-07 -7.31948314235e-08 2.76198850175e-07 -7.10297384317e-08 2.66571151488e-07 -1.87207994491e-08 2.42007887899e-07 8.71908653137e-08 2.24214440485e-07 -5.51894719035e-09 1.73131277182e-07 2.10055983119e-08 1.55708010491e-07 -9.68902778047e-08 9.99517306138e-08 1.10822429979e-07 1.70076708661e-07 -1.44346672417e-07 3.71812364523e-07 -1.78855692744e-07 6.55695929098e-07 -1.30656674672e-06 1.05851318788e-06 -5.60256820599e-07 1.29963996932e-06 1.32972829936e-06 1.74109540928e-06 1.00627721925e-06 1.91320194215e-06 2.21883548553e-06 1.94351610574e-06 9.47017108668e-07 1.44496463768e-06 3.32538223087e-06 5.68327212194e-05 2.10103315325e-07 -5.85808287469e-08 2.10067054763e-07 -4.66908438328e-08 2.09082618495e-07 -4.39347034258e-08 2.16029689267e-07 -7.82608122442e-08 2.16433472211e-07 -6.63455554403e-08 2.23049699315e-07 -8.89595996944e-08 2.28174454215e-07 -8.1539954549e-08 2.29728552139e-07 -6.93778741497e-08 2.336861749e-07 -7.37260735869e-08 2.22063620929e-07 -4.84680888841e-09 2.11140782601e-07 9.88777164842e-08 2.07070926998e-07 4.63384207769e-09 1.720375163e-07 7.24001151437e-08 1.84217952918e-07 -8.15772768397e-08 1.63922046032e-07 1.75022721565e-07 2.87600584226e-07 -2.12935742106e-07 5.22912124662e-07 -3.52730086307e-07 5.28514553641e-07 -1.28805565925e-06 6.52383453919e-07 -8.54162355075e-07 5.69100024842e-07 1.11384587607e-06 5.96561612196e-07 4.22981562684e-07 1.56933459001e-07 1.87435156156e-06 -7.63318728873e-07 7.85083961828e-07 -2.2828982454e-06 3.54608375601e-06 4.57660857035e-05 1.75384302171e-07 -6.21856442872e-08 1.78175156023e-07 -4.54101663291e-08 1.7788295014e-07 -4.36821844491e-08 1.86260989656e-07 -7.85836295134e-08 1.84794251793e-07 -6.31035123592e-08 1.9015793128e-07 -8.84620041878e-08 1.92551027185e-07 -7.92187233676e-08 1.90221583164e-07 -6.83346367516e-08 1.91477479192e-07 -7.00928914767e-08 1.79579987114e-07 -2.13306907782e-09 1.80058599127e-07 8.74233983065e-08 1.92831836698e-07 -1.20186091826e-08 1.77556518987e-07 5.90857563277e-08 2.21046173901e-07 -1.12256948996e-07 2.2883091622e-07 1.23476813927e-07 3.770443836e-07 -3.15340595536e-07 5.8139308003e-07 -4.9822347804e-07 3.59744535822e-07 -1.05666130653e-06 2.40317473966e-07 -5.62203814483e-07 -1.31397227217e-07 1.36730008788e-06 -4.42781921567e-07 7.8860728404e-07 -1.3195418473e-06 2.50171113906e-06 -2.77151047826e-06 1.95569697519e-06 -4.67775350664e-06 5.09882192402e-06 3.05116982636e-05 1.34338581771e-07 -5.07089300098e-08 1.41778309193e-07 -5.38249818165e-08 1.42278803645e-07 -3.38396977365e-08 1.52635720807e-07 -8.22692644546e-08 1.49595344905e-07 -4.9552333557e-08 1.5384812102e-07 -8.51971199724e-08 1.53687601022e-07 -7.22836144729e-08 1.48033698694e-07 -5.56069535732e-08 1.47239481233e-07 -6.87457393376e-08 1.35990969129e-07 1.23654279895e-08 1.42023012378e-07 8.75616122962e-08 1.6639664496e-07 -3.35704137515e-08 1.649762525e-07 9.01957702622e-08 2.29712814036e-07 -1.54614200181e-07 2.51793909892e-07 1.6953106935e-07 3.98616718825e-07 -4.15834566739e-07 5.40793641758e-07 -5.9394814251e-07 2.13850652486e-07 -6.83981962726e-07 -1.6703857055e-08 -5.9399967318e-07 -5.3062993321e-07 1.62122499537e-06 -9.96602624728e-07 5.65103306164e-07 -2.02350780058e-06 2.76516242495e-06 -3.50303706204e-06 2.203597502e-06 -5.14781626374e-06 5.4169904911e-06 1.61120680705e-05 9.2700808517e-08 -5.14482131253e-08 1.04600033726e-07 -4.10218214072e-08 1.0124542303e-07 -4.22588012732e-08 1.13056027118e-07 -6.56569118241e-08 1.06829850235e-07 -4.77721238174e-08 1.09615955649e-07 -6.74462617921e-08 1.06720607404e-07 -5.81303141865e-08 9.76355845618e-08 -4.66955716031e-08 9.55413054026e-08 -4.92105311112e-08 8.42978079004e-08 7.60094904877e-09 8.92491638213e-08 5.54072625956e-08 1.1655907289e-07 -3.13108601739e-08 1.1578800131e-07 2.89268006777e-08 1.87659510302e-07 -1.31512358458e-07 2.04738828544e-07 4.72450971059e-08 3.33673790967e-07 -3.58936097394e-07 4.16355324204e-07 -5.08695671961e-07 1.04521088228e-07 -4.59053889656e-07 -7.33849716555e-08 -8.95434784771e-08 -5.55675622826e-07 1.4238316277e-06 -9.59608291027e-07 9.67562194657e-07 -1.85507741828e-06 2.6008052693e-06 -2.96850174855e-06 2.65244130289e-06 -3.96300113353e-06 5.1317825656e-06 6.50087410664e-06 6.67170462334e-08 -4.51520944423e-08 7.85959659602e-08 -2.36624411902e-08 6.75200769294e-08 -3.53647670926e-08 7.779741962e-08 -3.74374062038e-08 6.80246925813e-08 -3.4056016161e-08 6.93572353229e-08 -3.88746237519e-08 6.4602812127e-08 -3.4777544924e-08 5.33650731722e-08 -2.92196985636e-08 5.0346168365e-08 -2.50541682696e-08 3.84157814898e-08 5.47863439285e-09 3.84995542755e-08 3.35291940202e-08 5.9961482348e-08 -1.26708442173e-08 4.88432295785e-08 1.1049603412e-09 1.11465429766e-07 -6.53246574917e-08 1.07247245121e-07 -5.74769812163e-09 2.0465013386e-07 -2.10449509052e-07 2.37298137612e-07 -3.29217173096e-07 -4.62160615873e-09 -2.94079391666e-07 -4.53177163824e-08 8.12447588486e-08 -3.89725323297e-07 8.160549556e-07 -5.99110104317e-07 6.67672420413e-07 -1.19476320251e-06 1.52061280377e-06 -1.77578179796e-06 1.72311525419e-06 -2.06676421852e-06 3.20279659398e-06 1.80881573303e-06 5.87033698185e-08 -4.51055172099e-08 7.01413200591e-08 8.09579019724e-09 5.2116654669e-08 -2.19427431103e-08 6.07265835137e-08 8.25570953719e-09 4.85497285764e-08 -1.5171669841e-08 5.03743759385e-08 1.522362337e-09 4.63128134615e-08 -4.05318878582e-09 3.57660190092e-08 -9.52555693532e-09 3.51761279892e-08 5.01693206302e-09 2.51640303841e-08 -3.63747880447e-09 2.4154584801e-08 4.77474902651e-09 4.26188920314e-08 2.37093320204e-08 1.97378293636e-08 -2.76167115206e-08 7.39292807496e-08 5.37085474391e-08 4.28212060016e-08 -4.88037054117e-08 1.10417922835e-07 4.61415360772e-08 9.82989065574e-08 -3.97937053489e-08 -1.10237194702e-07 -1.85214166528e-07 -2.92412081283e-08 1.62293530298e-07 -2.63789440904e-07 -1.48212940047e-07 -3.00251057275e-07 6.56826948433e-08 -6.47175638059e-07 -1.89216691431e-07 -8.00219211532e-07 4.28157820725e-08 -5.90824824201e-07 3.33828276327e-07 1.2896017781e-07 4.31819254593e-08 5.11911242609e-08 3.00356418901e-08 3.83737123732e-08 2.36992095682e-08 2.55070786238e-08 2.15404457201e-08 1.2274002883e-08 1.71417793992e-08 1.32916562717e-08 1.84158160548e-08 4.18279453097e-08 1.50905757031e-08 6.84587369623e-08 2.09532270763e-08 6.80843707844e-08 2.79749824507e-08 -1.56779783473e-07 2.5800744977e-09 -1.46998080025e-07 -8.51817531617e-08 -2.77408756687e-07 -2.38420311939e-07 9.48229490769e-08 ) ; boundaryField { inlet { type calculated; value nonuniform List<scalar> 30 ( -3.18840601719e-07 -3.41724895702e-07 -3.66251674699e-07 -3.9253882556e-07 -4.2071269624e-07 -4.5090870319e-07 -4.832719821e-07 -5.179580856e-07 -5.5513373086e-07 -5.9497760089e-07 -6.3768120344e-07 -5.7408342934e-07 -6.9981553901e-07 -8.5308469748e-07 -1.03992189442e-06 -1.26767898861e-06 -1.54531799624e-06 -1.8837637376e-06 -2.2963337173e-06 -1.6810704931e-06 -1.4634568647e-06 -1.2740131979e-06 -1.1090929071e-06 -9.65521455e-07 -8.405352466e-07 -7.317284323e-07 -6.37006599e-07 -5.545464535e-07 -4.827607275e-07 -4.202676233e-07 ) ; } outlet { type calculated; value nonuniform List<scalar> 57 ( 3.10727040343e-05 7.15560522233e-06 -2.5489241323e-05 -2.16680875576e-05 -8.18586757438e-06 7.76934863946e-07 4.5856413294e-06 5.40571052802e-06 4.92469574373e-06 4.04047919774e-06 3.20731638735e-06 2.53816206761e-06 2.0508245951e-06 1.63107856222e-06 1.1808456664e-06 5.34881510088e-07 -4.04474418058e-07 -1.76585928331e-06 -3.6097884256e-06 -5.82249646122e-06 -7.98729186418e-06 -8.93050969253e-06 -6.22720203052e-06 4.11482544325e-06 2.52679722908e-05 4.72318525694e-05 3.67861992448e-05 -2.53994307528e-05 -5.7630629879e-05 -3.347149847e-05 -4.03363156091e-06 9.99440336128e-06 1.21878232252e-05 9.74740469335e-06 7.53653656416e-06 7.99193314925e-06 1.15587640894e-05 1.59307174092e-05 1.55559501209e-05 3.0393107978e-06 -1.91616879071e-05 -2.74969841135e-05 -5.83548745888e-06 7.51594278314e-06 3.13083386276e-06 -6.78308034046e-06 -1.28999710903e-05 -1.19861678188e-05 -5.80033778736e-06 2.16291783175e-06 8.20710426828e-06 1.03429388531e-05 8.7818959895e-06 5.35487062115e-06 2.23696802085e-06 6.26655832975e-07 2.23783126887e-07 ) ; } upperWall { type calculated; value uniform 0; } lowerWall { type calculated; value uniform 0; } frontAndBack { type empty; value nonuniform 0(); } } // ************************************************************************* //
47a254600b76b8a2c4d8f1d5f24a57a4a9ca785f
5bde5141efd4173d567a147e87d8c9ea90c9d63c
/plugins/clouds/CloudData.cpp
2ec5183935e7a334ef8b5192914e1d3bdc1b67ff
[]
no_license
StefanReinhardt/framework
d2221851c143b3ffbab66077c1f2818884a5695b
4b64af6ef84f33b128a3f1ea55bfbf8d76fb0eda
refs/heads/master
2021-01-18T13:59:46.756529
2013-09-06T15:54:32
2013-09-06T15:54:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,205
cpp
CloudData.cpp
#include "CloudData.h" #include <QFile> #include <qstringlist.h> #include <core/Core.h> CloudData::CloudData( Parameters parms ) : SimObject() { m_useSoudingFile = false; m_p = parms; initialize(); reset(); } CloudData::CloudData() : SimObject() { initialize(); reset(); } void CloudData::initialize() { m_diff = 0.0000f; // diffusion m_visc = 0.000000000f; // viscosity m_res = m_p.res; //Constants m_rd = 287; // specific gas constant for dry air ( J/[kg K] ) m_p0 = 101325.0f; // standard pressure at sea level (Pa) m_gravity = 9.81f; // gravitational acceleration (m/s²) m_lh = 2501000; // Latent heat of vaporization of water 2501(kJ/kg) 2501000(J/kg) m_cp = 1003.5; // specific heat capacity 1003.5 J/(kg K) dry air m_cellSize = (m_p.maxAlt-m_p.minAlt)/m_res.y; //expansion of a cell in meter; ScalarField::Ptr density = std::make_shared<ScalarField>(); density->resize(m_res); density->localToWorld(math::V3f(2,2,1)); density->fill(0.0f); density->fill(33.3f,math::Box3f(0.4f,0.1f,0.4f,0.6f,0.4f,0.6f)); addSubData("density", density); VectorField::Ptr velocity = std::make_shared<VectorField>( VectorField::FACE ); velocity->resize(m_res); //velocity->setBound( math::Box3f( math::V3f(-0.51f), math::V3f(0.51f) ) ); //velocity->fill( math::V3f(1.0f, 1.0f, 1.0f) ); addSubData("velocity", velocity); velocity->getScalarField(0)->fill(0.0f); velocity->getScalarField(0)->fill(0.0f,math::Box3f(0.2f,0.1f,0.4f,0.8f,0.4f,0.6f)); velocity->getScalarField(1)->fill(0.0f); velocity->getScalarField(1)->fill(0.0f,math::Box3f(0.4f,0.1f,0.4f,0.6f,0.4f,0.6f)); velocity->getScalarField(2)->fill(0.0f); velocity->getScalarField(2)->fill(0.0f,math::Box3f(0.4f,0.1f,0.4f,0.6f,0.4f,0.6f)); // read sounding if(m_useSoudingFile) { QFile file(core::expand("$HERE/sounding.txt")); if (file.open(QFile::ReadOnly)) { char buf[1024]; for(int i=1; !file.atEnd(); i++) { qint64 lineLength = file.readLine(buf, sizeof(buf)); if (lineLength != -1 && i>6) { QString line = QString::fromUtf8(buf); QStringList lineList = line.split(' ', QString::SkipEmptyParts); if(lineList[0].toFloat()) { qDebug()<< lineList[0]; m_sndPRES.push_back(lineList[0].toFloat()); m_sndHGHT.push_back(lineList[1].toFloat()); m_sndTEMP.push_back(lineList[2].toFloat()); m_sndDWPT.push_back(lineList[3].toFloat()); m_sndRELH.push_back(lineList[4].toFloat()); m_sndMIXR.push_back(lineList[5].toFloat()); } else break; // Stop after value list ended (skip additional station info) } } } } } void CloudData::reset() { ScalarField::Ptr pt = std::make_shared<ScalarField>(); pt->resize(m_res); addSubData("pt", pt); ScalarField::Ptr qv = std::make_shared<ScalarField>(); qv->resize(m_res); addSubData("qv", qv); ScalarField::Ptr qc = std::make_shared<ScalarField>(); qc->resize(m_res); addSubData("qc", qc); qDebug() << "reset Cloud Data"; // Initialize //************************************************************ // absolute Temp lookup and absolute Pressure lookup in Pa with Barometric Formula for(int y= 0; y<m_res.y; y++){ float alt = ( (float)y / (float)m_res.y ) * (m_p.maxAlt-m_p.minAlt) + m_p.minAlt; m_tLut.push_back( absTemp(alt) ); m_pLut.push_back( absPressure(alt) ); } // potential temp =(abs Temp * exner) for(int k= 0; k<m_res.z; k++) for(int i= 0; i<m_res.x; i++) for(int j= 0; j<m_res.y; j++) { pt->lvalue(i,j,k)= potTemp(m_tLut[j], m_pLut[j] ); } m_pt0 = pt->lvalue(0,0,0); //Saturation vapor mixing ratio and water vapor mixing ratio for(int j= 0; j<m_res.y; j++) { for(int i= 0; i<m_res.x; i++) for(int k= 0; k<m_res.z; k++) { float alt = ( (float)j / (float)m_res.y ) * (m_p.maxAlt-m_p.minAlt) + m_p.minAlt; if(m_useSoudingFile) qv->lvalue(i,j,k) = 0.001f*(soundingValue(m_sndMIXR, alt) * 100.0f) / soundingValue(m_sndRELH, alt); // qvs = (100% * qv) / humidity% convert g/kg to kg/kg else qv->lvalue(i,j,k) = qvs(m_tLut[j], m_pLut[j]) * m_p.hum; } m_qv0Lut.push_back(qv->lvalue(0,j,0)); } m_qv1 = qv->lvalue(0,m_res.y-1,0); //************************************************************ // Initialize Cloud Control Data //************************************************************ m_cv = 0.001f; m_kp = 0.06f; m_ki = 0.15f; ScalarField::Ptr geoPot = std::make_shared<ScalarField>(); geoPot->resize(m_res); addSubData( "geoPot", geoPot ); // initialize ground gain fields for (int i=0; i<m_res.x; i++) { m_hc.push_back(0.0f); m_htar.push_back(math::max(0.0f, float(sin(i*0.05+30))) * 33 + 55); m_Kp.push_back(m_kp * m_htar[i]/m_res.y ); m_Ki.push_back(m_ki * m_htar[i]/m_res.y ); } // geometric Potential field for( int k=0;k<m_res.z; ++k ) for( int j=0;j<m_res.y; ++j ) for( int i=0;i<m_res.x; ++i ) { if(j<m_htar[i]) geoPot->lvalue(i,j,k) = 1.0f; else geoPot->lvalue(i,j,k) = 0; } // Blur the geometric pot field float a = 0.1f * m_res.x * m_res.y; for( int steps =0; steps<5; ++steps ) for( int k=0; k<m_res.z; ++k ) for( int j=1;j<m_res.y-1;++j ) for( int i=0;i<m_res.x-0;++i ) { geoPot->lvalue(i,j,k) = ( geoPot->lvalue(i,j,k)+ a*( geoPot->lvalue(i-1,j,k) + geoPot->lvalue(i+1,j,k) + geoPot->lvalue(i,j-1,k) + geoPot->lvalue(i,j+1,k) )) / (1+4*a); } for( int j=0;j<m_res.y;++j ) { geoPot->lvalue(0,j,0) = geoPot->lvalue(1,j,0); geoPot->lvalue(m_res.x-1,j,0) = geoPot->lvalue(m_res.x-2,j,0); } ScalarField::Ptr geoPotForce = std::make_shared<ScalarField>(); geoPotForce->resize(m_res); addSubData( "geoPotForce", geoPotForce ); // multiply matrix on for( int k=0; k<m_res.z; ++k ) for( int j=2;j<m_res.y-2;++j ) for( int i=2;i<m_res.x-2;++i ) { geoPotForce->lvalue(i,j,k) =( geoPot->lvalue(i,j,k) - geoPot->lvalue(i-1,j,k) ); // staggered x force } //************************************************************ // END - Initialize Cloud Control Data //************************************************************ } float CloudData::getTimestep() { return m_p.dt; } math::V3i CloudData::getResolution() { return m_p.res; } void CloudData::resize(math::V3i size) { m_res = size; } void CloudData::setTimestep(float timestep) { m_p.dt=timestep; } // ========Settings for b // 0=NeumannBounds || 1=vel_x || 2=vel_y || 3=vel_z || 4=potentialTemperature || 5=waterVapor || 6=cloudWater void CloudData::setBounds(int b, ScalarField::Ptr f) { math::V3i res = f->getResolution(); switch ( b ) { // ___________________________________ // Neumann Boundaries case 0: qDebug() << "setBounds with b=0 (Neumann) res = "<< res.x; for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k)= f->lvalue(1,j,k); f->lvalue(res.x-1,j,k)= f->lvalue(res.x-2,j,k); } for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k)= f->lvalue(i,1,k); f->lvalue(i,res.y-1,k) = f->lvalue(i,res.y-2,k); } for( int j=0;j<res.y;++j ) for( int i=0;i<res.x;++i ) { f->lvalue(i,j,0) = f->lvalue(i,j,1); f->lvalue(i,j,res.z-1) = f->lvalue(i,j,res.z-2); } break; // ___________________________________ // x Velocity case 1: qDebug() << "setBounds with b=1 (vel_x)"; // sides = user defined wind for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k) = m_p.wind; f->lvalue(1,j,k) = m_p.wind; f->lvalue(res.x-1,j,k) = m_p.wind; f->lvalue(res.x-2,j,k) = m_p.wind; } // bottom = noslip // top = free slip for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { //f->lvalue(i,0,k)=0; f->lvalue(i,0,k)=-f->lvalue(i,1,k); f->lvalue(i,res.y-1,k)=f->lvalue(i,res.y-2,k); } // backFront = free slip for( int j=0;j<res.y;++j ) for( int i=0;i<res.x;++i ) { f->lvalue(i,j,0) = f->lvalue(i,j,1); f->lvalue(i,j,res.z-1) = f->lvalue(i,j,res.z-2); } break; // ___________________________________ // y Velocity case 2: qDebug() << "setBounds with b=2 (vel_y)"; // sides = zero for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k)= 0; f->lvalue(res.x-1,j,k)= 0; } // bottom = noslip // top = free slip for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k) = 0; f->lvalue(i,1,k) = 0; f->lvalue(i,res.y-1,k) = 0; f->lvalue(i,res.y-2,k) = 0; } // frontBack = zero for( int j=0;j<res.y;++j ) for( int i=0;i<res.x;++i ) { f->lvalue(i,j,0)= 0; f->lvalue(i,j,res.z-1)= 0; } break; // ___________________________________ // z Velocity case 3: qDebug() << "setBounds with b=3 (vel_z)"; // sides = wind for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k) = 0; f->lvalue(res.x-1,j,k) = 0; } // bottom = noslip // top = free slip for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k)=-f->lvalue(i,1,k); f->lvalue(i,res.y-1,k)=f->lvalue(i,res.y-2,k); } // frontBack = free slip for( int j=0;j<res.y;++j ) for( int i=0;i<res.x;++i ) { f->lvalue(i,j,0)=0; f->lvalue(i,j,1)=0; f->lvalue(i,j,res.z-1)=0; f->lvalue(i,j,res.z-2)=0; } break; case 4: { float pt_trav=0; float pt0 = m_tLut[0]*pow(100/m_pLut[0], 0.286); float pty = m_tLut[res.y-1]*pow(100/m_pLut[res.y-1], 0.286); qDebug() << "setBounds with b=4 (pt)"; // Sides for( int j=0;j<res.y;++j ) { pt_trav=m_tLut[j]*pow(100/m_pLut[j], 0.286); for( int k=0;k<res.z;++k ) { f->lvalue(0,j,k) = pt_trav; f->lvalue(res.x-1,j,k) = f->lvalue(0,j,k); } } // top bottom for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k) = pt0; f->lvalue(i,res.y-1,k) = pty; } // frontBack for( int j=0;j<res.y;++j ) for( int i=0;i<res.x;++i ) { f->lvalue(i,j,0) = f->lvalue(0,j,0) ; f->lvalue(i,j,res.z-1) = f->lvalue(i,j,0); } } break; case 5: qDebug() << "setBounds with b=5 (qv)"; // sides = periodic for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k) = 13370.1337f; f->lvalue(res.x-1,j,k) = 13370.1337f; } // bottom = noise // top = 0 for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { //f->lvalue(i,0,k) = 0; //f->lvalue(i,res.y-1,k) = 0; } // frontBack = periodic? for( int j=0;j<res.y;++j ) for( int i=0;i<res.x;++i ) { //f->lvalue(i,j,0) = tLut.at(j)*pow(100/pLut.at(j), 0.286); //f->lvalue(i,j,res.z-1) = tLut.at(j)*pow(100/pLut.at(j), 0.286); } break; case 6: qDebug() << "setBounds with b=6 (qc)"; // sides = 0 for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k) = 0; f->lvalue(res.x-1,j,k) = 0; } // bottom = 0 // top = 0 for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k) = 0; f->lvalue(i,res.y-1,k) = 0; } // frontBack = periodic? for( int j=0;j<res.y;++j ) for( int i=0;i<res.x;++i ) { f->lvalue(i,j,0) = 0; f->lvalue(i,j,res.z-1) = 0; } break; default: qCritical() << "wrong Boundary settings. b="<<b; break; } // set corner values f->lvalue(0,0,0)= ( f->lvalue(1,0,0) + f->lvalue(0,1,0) + f->lvalue(0,0,1))/3; f->lvalue(res.x-1,0,0)= ( f->lvalue(res.x-2,0,0) + f->lvalue(res.x-1,1,0) + f->lvalue(res.x-1,0,1))/3; f->lvalue(0,res.y-1,0)= ( f->lvalue(1,res.y-1,0) + f->lvalue(0,res.y-2,0) + f->lvalue(0,res.y-1,1) )/3; f->lvalue(res.x-1,res.y-1,0)= ( f->lvalue(res.x-2,res.y-1,0) + f->lvalue(res.x-1,res.y-2,0) + f->lvalue(res.x-1,res.y-1,1) )/3; f->lvalue(0,0,res.z-1)= ( f->lvalue(1,0,res.z-1) + f->lvalue(0,1,res.z-1) + f->lvalue(0,0,res.z-2))/3; f->lvalue(res.x-1,0,res.z-1)= ( f->lvalue(res.x-2,0,res.z-1) + f->lvalue(res.x-1,1,res.z-1) + f->lvalue(res.x-1,0,res.z-2))/3; f->lvalue(0,res.y-1,res.z-1)= ( f->lvalue(1,res.y-1,res.z-1) + f->lvalue(0,res.y-2,res.z-1) + f->lvalue(0,res.y-1,res.z-2) )/3; f->lvalue(res.x-1,res.y-1,res.z-1)= ( f->lvalue(res.x-2,res.y-1,res.z-1) + f->lvalue(res.x-1,res.y-2,res.z-1) + f->lvalue(res.x-1,res.y-1,res.z-2) )/3; } void CloudData::setBounds2D(int b, ScalarField::Ptr f) { math::V3i res = f->getResolution(); int k=0; switch ( b ) { // ___________________________________ // Neumann Boundaries case 0: qDebug() << "setBounds with b=0 (Neumann) res = "<< res.x; for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k)= f->lvalue(1,j,k); f->lvalue(res.x-1,j,k)= f->lvalue(res.x-2,j,k); } for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k)= f->lvalue(i,1,k); f->lvalue(i,res.y-1,k) = f->lvalue(i,res.y-2,k); } break; // ___________________________________ // x Velocity case 1: qDebug() << "setBounds with b=1 (vel_x)"; // sides = user defined wind for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k) = 0; f->lvalue(1,j,k) = 0; f->lvalue(res.x-1,j,k) = 0; f->lvalue(res.x-2,j,k) = 0; } // bottom = noslip // top = free slip //for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k)= - f->lvalue(i,1,k); f->lvalue(i,res.y-1,k)= 0.0f;//f->lvalue(i,res.y-2,k); } break; // ___________________________________ // y Velocity case 2: qDebug() << "setBounds with b=2 (vel_y)"; // sides = zero //for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k)= -f->lvalue(1,j,k); f->lvalue(res.x-1,j,k)= -f->lvalue(res.x-2,j,k); } // bottom = noslip // top = free slip //for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k) = 0.0f; f->lvalue(i,1,k) = 0.0f; f->lvalue(i,res.y-1,k) = math::max(0.0f,f->lvalue(i,res.y-3,k)); f->lvalue(i,res.y-2,k) = math::max(0.0f,f->lvalue(i,res.y-3,k)); } break; // ___________________________________ // z Velocity case 3: qDebug() << "setBounds with b=3 (vel_z)"; break; case 4: qDebug() << "setBounds with b=4 (pt)"; // sides = wind for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k) = (float) (m_tLut[j] * ( pow( m_p0/m_pLut[j] , 0.286))); f->lvalue(res.x-1,j,k) = f->lvalue(0,j,k); } // bottom = noslip // top = free slip for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k) = potTemp(m_tLut[0], m_pLut[0]); f->lvalue(i,res.y-1,k) = potTemp(m_tLut[res.y-1], m_pLut[res.y-1]); } break; // ___________________________________ // Water Vapor case 5: { qDebug() << "setBounds with b=5 (qv)"; // sides = periodic for( int j=0;j<res.y;++j ) { float qv= qvs(m_tLut[j], m_pLut[j]) * m_p.hum; for( int k=0;k<res.z;++k ) { f->lvalue(0,j,k) = qv; f->lvalue(res.x-1,j,k) = qv; } } // bottom = noise // top = 0 for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { //f->lvalue(i,0,k) = 33.3f; f->lvalue(i,res.y-1,k) = m_qv1; } // frontBack = periodic? for( int j=0;j<res.y;++j ) for( int i=0;i<res.x;++i ) { //f->lvalue(i,j,0) = tLut.at(j)*pow(100/pLut.at(j), 0.286); //f->lvalue(i,j,res.z-1) = tLut.at(j)*pow(100/pLut.at(j), 0.286); } } break; // ___________________________________ // Cloud Water case 6: qDebug() << "setBounds with b=5 (qc)"; // sides = 0 for( int k=0;k<res.z;++k ) for( int j=0;j<res.y;++j ) { f->lvalue(0,j,k) = 0; f->lvalue(res.x-1,j,k) = 0; } // bottom = 0 // top = 0 for( int k=0;k<res.z;++k ) for( int i=0;i<res.x;++i ) { f->lvalue(i,0,k) = 0; f->lvalue(i,res.y-1,k) = 0; } break; default: qCritical() << "wrong Boundary settings. b="<<b; break; } // ___________________________________ // set corner values f->lvalue(0,0,0)=( f->lvalue(1,0,0) + f->lvalue(0,1,0) )/2; f->lvalue(res.x-1,0,0)=( f->lvalue(res.x-2,0,0) + f->lvalue(res.x-1,1,0) )/2; f->lvalue(0,res.y-1,0)=( f->lvalue(1,res.y-1,0) + f->lvalue(0,res.y-2,0) )/2; f->lvalue(res.x-1,res.y-1,0)=( f->lvalue(res.x-2,res.y-1,0) + f->lvalue(res.x-1,res.y-2,0) )/2; } float CloudData::absPressure(float alt) { if(m_useSoudingFile) return soundingValue(m_sndPRES, alt) * 100; // hPa in Pa else return m_p0* pow(( 1- ( (alt*m_p.tlr)/m_p.t0 ) ),(m_gravity/(m_p.tlr*m_rd)) ) ; } float CloudData::absTemp(float alt) { if(m_useSoudingFile) return soundingValue(m_sndTEMP, alt) + 273.15f; // C in K else return m_p.t0 - alt * m_p.tlr; } float CloudData::potTemp(float absT, float absP) { return (float) (absT * ( pow( m_p0/absP , 0.286))); } float CloudData::potTempToTemp(float pt, float absP) { return pt*pow(absP/m_p0,0.286f); } float CloudData::qvs(float t, float p) { // t in K | p in Pa | qs in kg/kg // old //return (float) ( (380/p) * exp( (17.67*(t-273.15)) / (t-273.15+243.5))) ; // new return (RD/RV) * (pvs(t) /( p-(1-RD/RV)*pvs(t) ) ); // saturation mixing ratio } float CloudData::pvs(float t) { return 610.78f * exp( 17.27f * (t-273.16f)/(t-35.86f) ); // Pressure at saturation } float CloudData::soundingValue(std::vector<float> snd, float alt) { int i = 0; for(auto it = m_sndHGHT.begin(); it != m_sndHGHT.end(); it++ , i++) { if(m_sndHGHT[i]>alt) break; } if(i-1 < 0) return snd[0]; //hPa in Pa else { float h1 = m_sndHGHT[i]; float h0 = m_sndHGHT[math::max(0,i-1)]; float dist = abs(h1-h0); float w1 = 1-(abs(h1-alt) / dist); float w0 = 1-(abs(alt-h0) / dist); return snd[i]* w1 + snd[math::max(0,i-1)]* w0; // interpolation } }
83becc07e5cc127f37aa81511faff19c2ee6c505
77247678956e02f6e2668f42222f44b7a5518596
/src/Basket.cpp
96a4bb9ff63450f568fa7800d3441679d3b85383
[ "MIT" ]
permissive
FedericoCoppo/salesTaxes
b350a92d2d5a287b63cbac49866a868ce01dcec8
79283744732a053d2e0032bbb64c4278bf6076ae
refs/heads/main
2023-01-13T21:28:03.449324
2020-11-19T09:46:46
2020-11-19T09:46:46
312,568,377
0
0
null
null
null
null
UTF-8
C++
false
false
1,052
cpp
Basket.cpp
/******************************************************************************* File : Basket.cpp Date : 13/11/2020 Author : Federico Coppo Description : Basket class: it represents a shopping card ready for the receipt *******************************************************************************/ // Include #include "Basket.h" // Constructor Basket::Basket(string nameStr) { name = nameStr; } // Destructor Basket::~Basket(void) { // Clear the basket list productList.clear(); } // Add a new product object to shopping basket void Basket::AddProductToBasket(GenericProduct * pt) { if (pt) { productList.push_back(pt); } } // Clear the basket list void Basket::ClearProductFromBasket() { productList.clear(); } // Get the product at specific index GenericProduct * Basket::GetProduct (int idx) { if (idx < GetBasketSize()) { list<GenericProduct *>::iterator it = productList.begin(); for(int i = 0; i < idx; i++) { ++it; } return *it; } else { return NULL; } }
98b6b029af50897c435eb9dac25153bd9af9793a
2d90b897854a3251f4e38c2f6f6f8871070fa2f3
/main2.cpp
c0b24daeb16864de3a525a4dcf3b4a5e28e13e6f
[]
no_license
LvGuangzu/C-homework
fbfe933d5475c2c920e205d3893eb19794df1845
fffccc1f56bccedb13462fbb149b65fa1a432305
refs/heads/master
2022-02-22T22:10:23.102222
2019-09-20T11:49:44
2019-09-20T11:49:44
208,951,182
0
0
null
null
null
null
GB18030
C++
false
false
3,073
cpp
main2.cpp
#include <iostream> #include <stdlib.h> #include <stdio.h> #include <math.h> using namespace std; void solveroot(); void Triangleproblem(); void judge(); void solveroot() { double der; double m, n; cout << "Please enter the coefficients of the equation you want to calculate in the order of a, b, c." << endl; double a, b, c; cin >> a; cin >> b; cin >> c; der = b * b - 4 * a*c; int boolist; if (der == 0) //表示有两个相同的根 { boolist = 1; } else if (der < 0) //表示有两个非有理数的根 { boolist = 0; } else //表示有两个不同的根 { boolist = 2; } switch (boolist) { case 0: der = -der; m = (-b) / (2 * a); n = sqrt(der) / (2 * a); cout << "The equation has two complex roots" << endl; printf("x1=%.3f+%.3fi x2=%.3f-%.3fi", m, n, m, n); break; case 1: m = (-b) / (2 * a); n = sqrt(der) / (2 * a); cout << "The equation has two identical roots" << endl; printf("x1=%.3f x2=%.3f", m + n, m - n); break; case 2: m = (-b) / (2 * a); n = sqrt(der) / (2 * a); cout << "The equation has two different roots" << endl; printf("x1=%.3f x2=%.3f", m + n, m - n); break; } } void Triangleproblem() { double a, b, c; double s; double fai; double number; cout << "Please enter the side length of the three sides of the triangle" << endl; cin >> a >> b >> c; fai = (a + b + c) / 2; number = fai * (fai - a)*(fai - b)*(fai - c); s = sqrt(number); cout << "The area of the triangle is:" << s << endl; } void judge() { int year, day; int sum, boolist; int month; cout << "Please enter today's date in the format of year-month-date" << endl; cin >> year; getchar(); cin >> month; getchar(); cin >> day; getchar(); switch (month) { case 1:sum = 0; break; case 2:sum = 31; break; case 3:sum = 59; break; case 4:sum = 90; break; case 5:sum = 120; break; case 6:sum = 151; break; case 7:sum = 181; break; case 8:sum = 212; break; case 9:sum = 243; break; case 10:sum = 273; break; case 11:sum = 304; break; case 12:sum = 334; break; default:cout << "data error" << endl; break; } sum = sum + day; if (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0)) { boolist = 1; } if (boolist == 1 && month > 2) { sum = sum + 1; } cout << "As of today, this year has passed a total of " << sum << "days."; int a, b; a = sum / 7; b = sum - a * 7; cout << "The week is" << a << "and the day is" << b << endl; } int main() { int w; cout << "The program can complete three tasks" << endl; cout << "The task one finds the root of the quadratic equation" << endl; cout << "The task two knows the three sides of the triangle to find the area" << endl; cout << "The task three judges today according to the date." << endl; cout << "Please enter the action you want to take" << endl; cin >> w; switch (w) { case 1:solveroot(); break; case 2:Triangleproblem(); break; case 3:judge(); break; } return 0; }
d9012af2c4eb34eb97ffa23d2ba2e10805a4b533
b0dd7779c225971e71ae12c1093dc75ed9889921
/libs/spirit/example/qi/display_attribute_type.cpp
af7be3819a46a22e3ab0ee3ad6cc3365e57afa33
[ "LicenseRef-scancode-warranty-disclaimer", "BSL-1.0" ]
permissive
blackberry/Boost
6e653cd91a7806855a162347a5aeebd2a8c055a2
fc90c3fde129c62565c023f091eddc4a7ed9902b
refs/heads/1_48_0-gnu
2021-01-15T14:31:33.706351
2013-06-25T16:02:41
2013-06-25T16:02:41
2,599,411
244
154
BSL-1.0
2018-10-13T18:35:09
2011-10-18T14:25:18
C++
UTF-8
C++
false
false
761
cpp
display_attribute_type.cpp
// Copyright (c) 2001-2010 Hartmut Kaiser // // 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) // This example implements a simple utility allowing to print the attribute // type as it is exposed by an arbitrary Qi parser expression. Just insert // your expression below, compile and run this example to see what Qi is // seeing! #include "display_attribute_type.hpp" namespace qi = boost::spirit::qi; int main() { tools::display_attribute_of_parser( std::cerr, // put the required output stream here qi::int_ >> qi::double_ // put your parser expression here ); return 0; }
2a38d26a7df694c21a6384f1bb10fd77f9d900e3
fef0bf62b0635630d3419824ae37f195fddb84ec
/trunk/app/srs_figure_app_st_socket.cpp
1ab1055f13370915a0d0ce97b6df0a3605d1a711
[ "Apache-2.0" ]
permissive
hu-ping/srs-figure
215f9357c52cc135d7d8c8ac8935c4b5d07a3c73
940fc0fc31ce42d823707a8252535d19de1d0301
refs/heads/master
2021-01-15T17:08:02.607891
2016-05-09T06:57:49
2016-05-09T06:57:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,634
cpp
srs_figure_app_st_socket.cpp
// // #include <srs_figure_app_st_socket.hpp> #include <srs_figure_app_log.h> using namespace srs_figure_st_socket; static const long MAX_LENGTH_OF_QUEUE_TO_SOCKET = 1000; #define TIME_OUT_LIMIT 1000000L * 30 SrsFiTcpServerSocket::SrsFiTcpServerSocket() { conn_fd = NULL; ip_port = 0; } SrsFiTcpServerSocket::~SrsFiTcpServerSocket() { closeConnection(); } long SrsFiTcpServerSocket::initialize(std::string ip, int port) { int ret = RESULT_OK; if (ip.empty()) { srs_figure_log::getInstance()->log("warning", "", "ip is empty, so chose a random port"); } if (port < 2 || port > 65535) { srs_figure_log::getInstance()->log("warning", "", "the port is beyound limit"); return RESULT_ERROR; } ip_address = ip; ip_port = port; // initialize the socket int server_socket = socket(AF_INET, SOCK_STREAM, 0); if ((ret = server_socket) == -1) { srs_figure_log::getInstance()->log("error", "", "create socket failed,ret=%d", ret); return ret; } // local ip struct sockaddr_in sockad; sockad.sin_family = AF_INET; sockad.sin_port = htons((uint16_t)ip_port); sockad.sin_addr.s_addr = htonl(INADDR_ANY); // bind socket if ((ret = bind(server_socket, (const sockaddr*)&sockad, sizeof(sockad))) < 0) { srs_figure_log::getInstance()->log("error", "", "bind the socket failed, ret=%d", ret); return ret; } // listen if ((ret = listen(server_socket, MAX_LENGTH_OF_QUEUE_TO_SOCKET)) < 0) { srs_figure_log::getInstance()->log("error", "", "listen socket failed, ret=%d", ret); return ret; } // st if ((conn_fd = st_netfd_open(server_socket)) == NULL) { srs_figure_log::getInstance()->log("error", "", "st open socket failed"); return RESULT_ERROR; } if (st_netfd_serialize_accept(conn_fd) < 0) { srs_figure_log::getInstance()->log("error", "", "accept socket failed"); return RESULT_ERROR; } return ret; } long SrsFiTcpServerSocket::sendMsg(const char* pMsg, size_t msgLength) { int ret = 0; if (pMsg == NULL || msgLength < 1) { srs_figure_log::getInstance()->log("trace", "", "the data to be sent is empty"); return 0; } return st_write(conn_fd, pMsg, (int)msgLength, ST_UTIME_NO_TIMEOUT); } long SrsFiTcpServerSocket::recvMsg(char* pMsg, size_t msgLength) { return st_read(conn_fd, pMsg, msgLength, TIME_OUT_LIMIT); } long SrsFiTcpServerSocket::closeConnection() { if (conn_fd != NULL) { st_netfd_close(conn_fd); conn_fd = NULL; } return RESULT_OK; }
a62a964ac30362e8bf05f1a92368ad5fbae8bb2c
0621aabcfeac5e4a08d49aa3f791fe46f366a734
/doc/Programs/OOExamples/MatrixVectorClass/WithTemplates/vectortemplates.h
27bdc31a7b4e2cb789e57229cbec37e7cef10dba
[ "CC0-1.0" ]
permissive
CompPhysics/ComputationalPhysics
16341df05a7094ea6442c98466a704249c7085dc
be73eb8bbb989a69fb27e87d7d2686451e7e81f9
refs/heads/master
2022-03-20T17:41:39.981703
2022-03-04T17:36:23
2022-03-04T17:36:23
48,985,734
287
146
CC0-1.0
2020-12-04T12:55:37
2016-01-04T09:01:24
null
UTF-8
C++
false
false
3,895
h
vectortemplates.h
// Vector class with templates #ifndef _vectorclass #define _vectorclass #include <cmath> #include <iostream> #include <sstream> #include <iomanip> #include <cstdlib> using namespace std; template<class T> class Vector{ private: int dimension; T *data; public: Vector(); Vector(int dim); Vector(const Vector<T>& v); ~Vector(); int Dimension() const; void Normalize(); T VectorNorm1(); T VectorNorm2(); T VectorNormInf(); T MaxMod(); T ElementofMaxMod(); int MaxModindex(); T operator()(const int i) const; T& operator()(const int i); void Print() const; // overloading the equality operator, here as a template function defned below const Vector<T> operator=(const Vector<T>& v); // overloading the binary operator, here as a friend function friend Vector<T> operator+(const Vector<T>& v1, const Vector<T>& v2){ int min_dim = (v1.Dimension()<v2.Dimension())?v1.Dimension():v2.Dimension(); Vector x(min_dim); for(int i=0;i < min_dim;i++) x(i) = v1(i) + v2(i); return x; }; // You can now define many more functions }; #endif template <class T> void Vector<T>::Print() const{ cout << endl; cout << "[ "; if(dimension>0) cout << data[0]; for(int i=1;i<dimension;i++) cout << "; " << data[i]; cout << " ]" << endl; } template <class T> Vector<T>::Vector(){ dimension = 0; data = NULL; // change to c++11 nullptr later } template <class T> Vector<T>::Vector(int dim){ dimension = dim; data = new T[dimension]; for(int i=0;i<dimension;i++) data[i] = 0.0; } template <class T> Vector<T>::Vector(const Vector &v){ dimension = v.Dimension(); data = new T[dimension]; for(int i=0;i<dimension;i++) data[i] = v.data[i]; } template <class T> Vector<T>::~Vector(){ dimension = 0; delete[] data; data = NULL; // change to c++11 nullptr } template <class T> int Vector<T>::Dimension() const{ return(dimension); } template <class T> T Vector<T>::VectorNorm1(){ T sum = 0.0; for(int i=0; i < dimension;i++) sum += fabs(data[i]); return(sum); } template <class T> T Vector<T>::VectorNorm2(){ T sum = 0.0; for(int i=0;i < dimension;i++) sum += data[i]*data[i]; return(sqrt(sum)); } template <class T> void Vector<T>::Normalize(){ T tmp = 1.0/VectorNorm2(); for(int i=0;i<dimension;i++) data[i] = data[i]*tmp; } template <class T> T Vector<T>::VectorNormInf(){ T maxval = 0.0, tmp; for(int i=0;i<dimension;i++){ tmp = fabs(data[i]); maxval = (maxval > tmp)?maxval:tmp; } return(maxval); } template <class T> T Vector<T>::MaxMod(){ T maxm = -1.0e+10; for(int i=0; i<dimension; i++) maxm = (maxm > fabs(data[i]))?maxm:fabs(data[i]); return maxm; } template <class T> T Vector<T>::ElementofMaxMod(){ return(data[MaxModindex()]); } template <class T> int Vector<T>::MaxModindex(){ T maxm = -1.0e+10; int maxmindex = 0; for(int i=0; i<dimension; i++){ if(maxm<fabs(data[i])){ maxm = fabs(data[i]); maxmindex = i; } } return maxmindex; } template <class T> T Vector<T>::operator()(const int i) const{ if(i>=0 && i<dimension) return data[i]; cerr << "Vector::Invalid index " << i << " for Vector of dimension " << dimension << endl; return(0); } template <class T> T& Vector<T>::operator()(const int i){ if(i>=0 && i<dimension) return data[i]; cerr << "Vector::Invalid index " << i << " for Vector of dimension " << dimension << endl; return(data[0]); } template <class T> const Vector<T> Vector<T>::operator=(const Vector<T>& v){ dimension = v.Dimension(); for(int i=0;i<dimension;i++) data[i] = v.data[i]; return *this; };
a25b53a242fb5ad0f58e1462a3d1e55ddd4b39b9
eeed4cfbb20d9243c808ad25e5237c52fe6a6db6
/3/step_3_1_11/src/node.cpp
4828f5ab4219b038b95a68e86df13c74594f1b23
[]
no_license
danil-tolkachev/stepik-ros
e9a77d911f473e896c333f58e43c6d4c59bef95a
3b4ccc1f6c691897c1e98f136e4d8dd34c93fc4b
refs/heads/master
2021-04-25T19:38:19.616832
2018-06-22T07:08:30
2018-06-22T07:08:30
108,755,001
0
0
null
null
null
null
UTF-8
C++
false
false
1,073
cpp
node.cpp
#include <ros/ros.h> #include <visualization_msgs/Marker.h> #include <geometry_msgs/Point.h> class Point2Marker { public: Point2Marker() { sub = nh.subscribe("/input", 1000, &Point2Marker::callback, this); pub = nh.advertise<visualization_msgs::Marker>("/output", 10, true); counter = 0; } void callback(const geometry_msgs::Point &pt) { visualization_msgs::Marker mrk; mrk.header.frame_id = "/point_on_map"; mrk.header.stamp = ros::Time::now(); mrk.ns = "there_is_point"; mrk.id = counter; mrk.action = visualization_msgs::Marker::ADD; mrk.type = visualization_msgs::Marker::POINTS; mrk.scale.x = 0.5; mrk.scale.y = 0.5; mrk.color.r = 1.0; mrk.color.g = 0.0; mrk.color.b = 0.0; mrk.color.a = 1.0; mrk.points.push_back(pt); pub.publish(mrk); counter++; } private: ros::NodeHandle nh; ros::Publisher pub; ros::Subscriber sub; int counter; }; int main(int argc, char **argv) { ros::init(argc, argv, "point2marker"); Point2Marker object; ros::spin(); return 0; }
7b8115fa9da3827b983b57a8da61562b9d9e6371
c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64
/Engine/Source/ThirdParty/PhysX/APEX_1.4/shared/general/HACD/src/dgGoogol.cpp
666ed0ec9516167fcf6f3d372ed1380ca39214a7
[ "MIT", "LicenseRef-scancode-proprietary-license" ]
permissive
windystrife/UnrealEngine_NVIDIAGameWorks
c3c7863083653caf1bc67d3ef104fb4b9f302e2a
b50e6338a7c5b26374d66306ebc7807541ff815e
refs/heads/4.18-GameWorks
2023-03-11T02:50:08.471040
2022-01-13T20:50:29
2022-01-13T20:50:29
124,100,479
262
179
MIT
2022-12-16T05:36:38
2018-03-06T15:44:09
C++
UTF-8
C++
false
false
9,828
cpp
dgGoogol.cpp
/* Copyright (c) <2003-2011> <Julio Jerez, Newton Game Dynamics> * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software * in a product, an acknowledgment in the product documentation would be * appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * * 3. This notice may not be removed or altered from any source distribution. */ #include "dgGoogol.h" #include <string.h> dgGoogol::dgGoogol(void) :m_sign(0) ,m_exponent(0) { memset (m_mantissa, 0, sizeof (m_mantissa)); } dgGoogol::dgGoogol(double value) :m_sign(0) ,m_exponent(0) { int32_t exp; double mantissa = fabs (frexp(value, &exp)); m_exponent = int16_t (exp); m_sign = (value >= 0) ? 0 : 1; memset (m_mantissa, 0, sizeof (m_mantissa)); m_mantissa[0] = (uint64_t (double (uint64_t(1)<<62) * mantissa)); // it looks like GCC have problems with this // HACD_ASSERT (m_mantissa[0] >= 0); } dgGoogol::~dgGoogol(void) { } double dgGoogol::GetAproximateValue() const { double mantissa = (double(1.0f) / double (uint64_t(1)<<62)) * double (m_mantissa[0]); mantissa = ldexp(mantissa, m_exponent) * (m_sign ? double (-1.0f) : double (1.0f)); return mantissa; } void dgGoogol::NegateMantissa (uint64_t* const mantissa) const { uint64_t carrier = 1; for (int32_t i = DG_GOOGOL_SIZE - 1; i >= 0; i --) { uint64_t a = ~mantissa[i] + carrier; if (a) { carrier = 0; } mantissa[i] = a; } } void dgGoogol::CopySignedMantissa (uint64_t* const mantissa) const { memcpy (mantissa, m_mantissa, sizeof (m_mantissa)); if (m_sign) { NegateMantissa (mantissa); } } void dgGoogol::ShiftRightMantissa (uint64_t* const mantissa, int32_t bits) const { uint64_t carrier = 0; if (int64_t (mantissa[0]) < int64_t (0)) { carrier = uint64_t (-1); } while (bits >= 64) { for (int32_t i = DG_GOOGOL_SIZE - 2; i >= 0; i --) { mantissa[i + 1] = mantissa[i]; } mantissa[0] = carrier; bits -= 64; } if (bits > 0) { carrier <<= (64 - bits); for (int32_t i = 0; i < DG_GOOGOL_SIZE; i ++) { uint64_t a = mantissa[i]; mantissa[i] = (a >> bits) | carrier; carrier = a << (64 - bits); } } } int32_t dgGoogol::LeadinZeros (uint64_t a) const { #define dgCOUNTBIT(mask,add) \ { \ uint64_t test = a & mask; \ n += test ? 0 : add; \ a = test ? test : (a & ~mask); \ } int32_t n = 0; dgCOUNTBIT (0xffffffff00000000LL, 32); dgCOUNTBIT (0xffff0000ffff0000LL, 16); dgCOUNTBIT (0xff00ff00ff00ff00LL, 8); dgCOUNTBIT (0xf0f0f0f0f0f0f0f0LL, 4); dgCOUNTBIT (0xccccccccccccccccLL, 2); dgCOUNTBIT (0xaaaaaaaaaaaaaaaaLL, 1); return n; } int32_t dgGoogol::NormalizeMantissa (uint64_t* const mantissa) const { // HACD_ASSERT((mantissa[0] & 0x8000000000000000ULL) == 0); int32_t bits = 0; if(int64_t (mantissa[0] * 2) < 0) { bits = 1; ShiftRightMantissa (mantissa, 1); } else { while (!mantissa[0] && bits > (-64 * DG_GOOGOL_SIZE)) { bits -= 64; for (int32_t i = 1; i < DG_GOOGOL_SIZE; i ++) { mantissa[i - 1] = mantissa[i]; } mantissa[DG_GOOGOL_SIZE - 1] = 0; } if (bits > (-64 * DG_GOOGOL_SIZE)) { int32_t n = LeadinZeros (mantissa[0]) - 2; uint64_t carrier = 0; for (int32_t i = DG_GOOGOL_SIZE-1; i >= 0; i --) { uint64_t a = mantissa[i]; mantissa[i] = (a << n) | carrier; carrier = a >> (64 - n); } bits -= n; } } return bits; } uint64_t dgGoogol::CheckCarrier (uint64_t a, uint64_t b) const { return (uint64_t)(((uint64_t (-1) - b) < a) ? 1 : 0); } dgGoogol dgGoogol::operator+ (const dgGoogol &A) const { dgGoogol tmp; if (m_mantissa[0] && A.m_mantissa[0]) { uint64_t mantissa0[DG_GOOGOL_SIZE]; uint64_t mantissa1[DG_GOOGOL_SIZE]; uint64_t mantissa[DG_GOOGOL_SIZE]; CopySignedMantissa (mantissa0); A.CopySignedMantissa (mantissa1); int32_t exponetDiff = m_exponent - A.m_exponent; int32_t exponent = m_exponent; if (exponetDiff > 0) { ShiftRightMantissa (mantissa1, exponetDiff); } else if (exponetDiff < 0) { exponent = A.m_exponent; ShiftRightMantissa (mantissa0, -exponetDiff); } uint64_t carrier = 0; for (int32_t i = DG_GOOGOL_SIZE - 1; i >= 0; i --) { uint64_t m0 = mantissa0[i]; uint64_t m1 = mantissa1[i]; mantissa[i] = m0 + m1 + carrier; carrier = CheckCarrier (m0, m1) | CheckCarrier (m0 + m1, carrier); } int8_t sign = 0; if (int64_t (mantissa[0]) < 0) { sign = 1; NegateMantissa (mantissa); } int32_t bits = NormalizeMantissa (mantissa); if (bits <= (-64 * DG_GOOGOL_SIZE)) { tmp.m_sign = 0; tmp.m_exponent = 0; } else { tmp.m_sign = sign; tmp.m_exponent = int16_t (exponent + bits); } memcpy (tmp.m_mantissa, mantissa, sizeof (m_mantissa)); } else if (A.m_mantissa[0]) { tmp = A; } else { tmp = *this; } return tmp; } dgGoogol dgGoogol::operator- (const dgGoogol &A) const { dgGoogol tmp (A); tmp.m_sign = !tmp.m_sign; return *this + tmp; } void dgGoogol::ExtendeMultiply (uint64_t a, uint64_t b, uint64_t& high, uint64_t& low) const { uint64_t bLow = b & 0xffffffff; uint64_t bHigh = b >> 32; uint64_t aLow = a & 0xffffffff; uint64_t aHigh = a >> 32; uint64_t l = bLow * aLow; uint64_t c1 = bHigh * aLow; uint64_t c2 = bLow * aHigh; uint64_t m = c1 + c2; uint64_t carrier = CheckCarrier (c1, c2) << 32; uint64_t h = bHigh * aHigh + carrier; uint64_t ml = m << 32; uint64_t ll = l + ml; uint64_t mh = (m >> 32) + CheckCarrier (l, ml); HACD_ASSERT ((mh & ~0xffffffff) == 0); uint64_t hh = h + mh; low = ll; high = hh; } void dgGoogol::ScaleMantissa (uint64_t* const dst, uint64_t scale) const { uint64_t carrier = 0; for (int32_t i = DG_GOOGOL_SIZE - 1; i >= 0; i --) { if (m_mantissa[i]) { uint64_t low; uint64_t high; ExtendeMultiply (scale, m_mantissa[i], high, low); uint64_t acc = low + carrier; carrier = CheckCarrier (low, carrier); HACD_ASSERT (CheckCarrier (carrier, high) == 0); carrier += high; dst[i + 1] = acc; } else { dst[i + 1] = carrier; carrier = 0; } } dst[0] = carrier; } dgGoogol dgGoogol::operator* (const dgGoogol &A) const { HACD_ASSERT((m_mantissa[0] & 0x8000000000000000ULL) == 0); HACD_ASSERT((A.m_mantissa[0] & 0x8000000000000000ULL) == 0); if (m_mantissa[0] && A.m_mantissa[0]) { uint64_t mantissaAcc[DG_GOOGOL_SIZE * 2]; memset (mantissaAcc, 0, sizeof (mantissaAcc)); for (int32_t i = DG_GOOGOL_SIZE - 1; i >= 0; i --) { uint64_t a = m_mantissa[i]; if (a) { uint64_t mantissaScale[2 * DG_GOOGOL_SIZE]; memset (mantissaScale, 0, sizeof (mantissaScale)); A.ScaleMantissa (&mantissaScale[i], a); uint64_t carrier = 0; for (int32_t j = 2 * DG_GOOGOL_SIZE - 1; j >= 0; j --) { uint64_t m0 = mantissaAcc[j]; uint64_t m1 = mantissaScale[j]; mantissaAcc[j] = m0 + m1 + carrier; carrier = CheckCarrier (m0, m1) | CheckCarrier (m0 + m1, carrier); } } } uint64_t carrier = 0; int32_t bits = LeadinZeros (mantissaAcc[0]) - 2; for (int32_t i = 2 * DG_GOOGOL_SIZE - 1; i >= 0; i --) { uint64_t a = mantissaAcc[i]; mantissaAcc[i] = (a << bits) | carrier; carrier = a >> (64 - bits); } int32_t exp = m_exponent + A.m_exponent - (bits - 2); dgGoogol tmp; tmp.m_sign = m_sign ^ A.m_sign; tmp.m_exponent = int16_t (exp); memcpy (tmp.m_mantissa, mantissaAcc, sizeof (m_mantissa)); return tmp; } return dgGoogol(0.0); } dgGoogol dgGoogol::operator/ (const dgGoogol &A) const { dgGoogol tmp (1.0 / A.GetAproximateValue()); dgGoogol two (2.0); tmp = tmp * (two - A * tmp); tmp = tmp * (two - A * tmp); uint64_t copy[DG_GOOGOL_SIZE]; bool test = true; int passes = 0; do { passes ++; memcpy (copy, tmp.m_mantissa, sizeof (tmp.m_mantissa)); tmp = tmp * (two - A * tmp); test = true; for (int32_t i = 0; test && (i < DG_GOOGOL_SIZE); i ++) { test = (copy[i] == tmp.m_mantissa[i]); } } while (!test || (passes > (2 * DG_GOOGOL_SIZE))); HACD_ASSERT (passes <= (2 * DG_GOOGOL_SIZE)); return (*this) * tmp; } dgGoogol dgGoogol::operator+= (const dgGoogol &A) { *this = *this + A; return *this; } dgGoogol dgGoogol::operator-= (const dgGoogol &A) { *this = *this - A; return *this; } dgGoogol dgGoogol::Floor () const { if (m_exponent < 1) { return dgGoogol (0.0); } int32_t bits = m_exponent + 2; int32_t start = 0; while (bits >= 64) { bits -= 64; start ++; } dgGoogol tmp (*this); for (int32_t i = DG_GOOGOL_SIZE - 1; i > start; i --) { tmp.m_mantissa[i] = 0; } uint64_t mask = uint64_t(-1) << (64 - bits); tmp.m_mantissa[start] &= mask; if (m_sign) { HACD_ASSERT (0); } return tmp; } #ifdef _DEBUG void dgGoogol::ToString (char* const string) const { dgGoogol tmp (*this); dgGoogol base (10.0); //char aaaa[256]; double a = tmp.GetAproximateValue(); while (tmp.GetAproximateValue() > 1.0) { tmp = tmp/base; } a = tmp.GetAproximateValue(); int32_t index = 0; // tmp.m_exponent = 1; while (tmp.m_mantissa[0]) { //double xxx = tmp.GetAproximateValue(); //double xxx1 = digit.GetAproximateValue(); //double m = floor (a); //a = a - m; //a = a * 10; //aaaa[index] = char (m) + '0'; tmp = tmp * base; dgGoogol digit (tmp.Floor()); tmp -= digit; double val = digit.GetAproximateValue(); string[index] = char (val) + '0'; index ++; } string[index] = 0; } #endif
d53aa6385d5f28933249337e29f4e018aa9dec94
bbe94ef5ed5084721327831c48ce5b851ca8fe19
/c++/src/problem_23.cpp
09ebec3cc7da41c6027ed01c6b0d29c28c69619c
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mk12/euler
7f8329453f3012a9110604ef6ea17d3b6ac360a0
17dce67ea875e9091d4b086f37c5c244b6fed272
refs/heads/main
2021-12-23T14:27:04.383579
2021-11-14T02:07:40
2021-11-14T02:07:40
17,093,829
2
1
null
null
null
null
UTF-8
C++
false
false
1,163
cpp
problem_23.cpp
// Copyright 2016 Mitchell Kember. Subject to the MIT License. // Project Euler: Problem 23 // Non-abundant sums #include "common.hpp" #include <vector> namespace problem_23 { long solve() { typedef std::vector<bool>::size_type sz_t; // Build a lookup table and a sequence of ascending abundant numbers. This // method is about ten times faster than using std::map. constexpr long limit = 28124; std::vector<bool> table(static_cast<sz_t>(limit), false); std::vector<long> abundant_numbers; for (long i = 1; i < limit; ++i) { const bool abundant = common::sum_proper_divisors(i) > i; table[static_cast<sz_t>(i)] = abundant; if (abundant) { abundant_numbers.push_back(i); } } // Add up numbers that aren't the sum of any two abundant numbers. long total = 0; for (long i = 1; i < limit; ++i) { // Find out if any two abundant numbers sum to i. bool is_sum = false; const long half = i / 2; for (const long n : abundant_numbers) { if (n > half) { break; } if (table[static_cast<sz_t>(i - n)]) { is_sum = true; break; } } if (!is_sum) { total += i; } } return total; } } // namespace problem_23
c6dd54e9051dac44072c373fae2e925756347ad8
59381b99d07c953df6dec7479d22dbd16a22ff60
/src/FrameBuffer.cpp
e7dde159560e429cf82a18a712d8b8ce28a77752
[]
no_license
lewellen/proceduralEnvironment
1842eddfd5dd34407344cc7012f951ae1e2a3aad
c77d16d2e2ab9413ea5b8c5d6739f6276e88d9c7
refs/heads/master
2021-01-20T02:11:21.678703
2017-04-25T16:17:57
2017-04-25T16:17:57
89,381,787
0
0
null
null
null
null
UTF-8
C++
false
false
2,973
cpp
FrameBuffer.cpp
#include <cstdio> #include <stdexcept> #include "OpenGL.h" #include "FrameBuffer.h" FrameBuffer::FrameBuffer(int width, int height, GLenum colorAttachment, GLenum depthAttachment) { if (colorAttachment == GL_NONE && depthAttachment == GL_NONE) throw new std::invalid_argument("colorAttachment and depthAttachment cannot both be equal to GL_NONE."); this->width = width; this->height = height; this->colorAttachment = colorAttachment; this->depthAttachment = depthAttachment; this->colorTexture = 0; this->depthTexture = 0; // 2015-06-24 GEL Portions of this code were adapated from Example 36 and // YouTube video "Series OpenGL Water Tutorial 1-5: X" by "ThinMatrix" // https://www.youtube.com/watch?v=21UsMuFTN0k. And from the following // OpenGL tutorial https://open.gl/framebuffers. if (colorAttachment != GL_NONE) { // Initialize an empty texture that will be filled in with the rendered scene. glGenTextures(1, &colorTexture); glBindTexture(GL_TEXTURE_2D, colorTexture); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, NULL); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); } if (depthAttachment != GL_NONE) { glGenTextures(1, &depthTexture); glBindTexture(GL_TEXTURE_2D, depthTexture); glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT32, width, height, 0, GL_DEPTH_COMPONENT, GL_FLOAT, NULL); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_DEPTH_TEXTURE_MODE, GL_INTENSITY); } // Create the buffer that will be used in place of the regular buffer when // rendering the scene. glGenFramebuffers(1, &frameBuffer); glBindFramebuffer(GL_FRAMEBUFFER, frameBuffer); if (colorAttachment != GL_NONE) { glFramebufferTexture2D(GL_FRAMEBUFFER, colorAttachment, GL_TEXTURE_2D, colorTexture, 0); glDrawBuffer(colorAttachment); } if (depthAttachment != GL_NONE) glFramebufferTexture2D(GL_FRAMEBUFFER, depthAttachment, GL_TEXTURE_2D, depthTexture, 0); if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) throw new std::runtime_error("Failed to allocate frame buffer."); } FrameBuffer::~FrameBuffer() { if (depthAttachment != GL_NONE) glDeleteTextures(1, &depthTexture); if (colorAttachment != GL_NONE) glDeleteTextures(1, &colorTexture); glDeleteFramebuffers(1, &frameBuffer); } void FrameBuffer::Begin() { glBindTexture(GL_TEXTURE_2D, colorTexture); glBindFramebuffer(GL_FRAMEBUFFER, frameBuffer); glViewport(0, 0, width, height); } GLuint FrameBuffer::ColorTexture() { return this->colorTexture; } GLuint FrameBuffer::DepthTexture() { return this->depthTexture; } void FrameBuffer::End() { glBindFramebuffer(GL_FRAMEBUFFER, GL_NONE); }
ae64f1f06641a7a4a2ccc624890a24abf07170d2
591d6598e689101db3aedea8e3c5c727797c6ede
/problems/2719_陶陶摘苹果.cpp
9526eacd876d58611c21313a37fea657eb1d5dfb
[]
no_license
shenghuanjie/poj
b5e58a60bbb752d33a7a1ccb661a16ef2c156313
31f26ae797c3c400320bfe2e3df66fec0ecbea42
refs/heads/master
2020-08-16T02:39:46.010127
2019-10-22T01:05:09
2019-10-22T01:05:09
215,444,374
0
0
null
null
null
null
UTF-8
C++
false
false
1,388
cpp
2719_陶陶摘苹果.cpp
/* 2719: 陶陶摘苹果 http://bailian.openjudge.cn/practice/2719/ 描述 陶陶家的院子里有一棵苹果树,每到秋天树上就会结出10个苹果。苹果成熟的时候,陶陶就会跑去摘苹果。陶陶有个30厘米高的板凳,当她不能直接用手摘到苹果的时候,就会踩到板凳上再试试。现在已知10个苹果到地面的高度,以及陶陶把手伸直的时候能够达到的最大高度,请帮陶陶算一下她能够摘到的苹果的数目。假设她碰到苹果,苹果就会掉下来。 输入 输入包括两行数据。第一行包含10个100到200之间(包括100和200)的整数(以厘米为单位)分别表示10个苹果到地面的高度,两个相邻的整数之间用一个空格隔开。第二行只包括一个100到120之间(包含100和120)的整数(以厘米为单位),表示陶陶把手伸直的时候能够达到的最大高度。 输出 输出文件包括一行,这一行只包含一个整数,表示陶陶能够摘到的苹果的数目。 样例输入 100 200 150 140 129 134 167 198 200 111 110 样例输出 5 来源 计算概论化学学院期末考试 */ #include<iostream> using namespace std; int main() { int apple[11],*i,h,count=0; for(i=apple+1;i<=apple+10;i++) cin>>*i; cin>>h; h+=30; i--; while(i>apple) { if(*i<=h)count++; i--; } cout<<count<<endl; return 0; }
a391a8b22d869dade9bcede6e42c86c13b3b3b6a
65549d29e1595c26a57b2137c0c1c77ac4ae142b
/B-BOS Backup/backup/Part 10/OS/include/hardwarecommunication/pci.h
fb224718ab32357b2c28a391662470917e79fbb9
[]
no_license
Bradon-Barfuss/B-BOS-Bradon-Barfuss-Operating-System
05bfb42ad044ca4a30b45a4478d8d7f883c5f6cf
9556266fd85782bbc64fa4a05dae30f9b9a9aa26
refs/heads/master
2023-03-05T18:12:25.656689
2023-02-24T19:10:55
2023-02-24T19:10:55
262,191,622
0
0
null
null
null
null
UTF-8
C++
false
false
2,708
h
pci.h
#ifndef __OS__HARDWARECOMMUNICATION__PCI_H #define __OS__HARDWARECOMMUNICATION__PCI_H #include <common/types.h> #include <drivers/driver.h> #include <hardwarecommunication/port.h> #include <hardwarecommunication/interrupt.h> namespace OS{ namespace hardwarecommunication{ //this class will store all the data we get from the PCI class PeripheralComponentInterconnectDeviceDescriptor{ public: OS::common::uint32_t portBase;//the number for the port from the PCI controller OS::common::uint32_t interrupt;//the number for the interrupt OS::common::uint16_t bus;//store the bus information OS::common::uint16_t device;//store the device information OS::common::uint16_t function;//store the function information //store the information we get from the driver OS::common::uint16_t vendor_id; OS::common::uint16_t device_id; OS::common::uint8_t class_id; OS::common::uint8_t subclass_id; OS::common::uint8_t interface_id; OS::common::uint8_t revision; void GetDeviceDescriptor(OS::common::uint16_t, OS::common::uint16_t, OS::common::uint16_t); PeripheralComponentInterconnectDeviceDescriptor(); ~PeripheralComponentInterconnectDeviceDescriptor(); }; class PeripheralComponentInterconnectController{ Port32Bit dataPort; Port32Bit commandPort; public: PeripheralComponentInterconnectController(); ~PeripheralComponentInterconnectController(); //The read function will get the bus, device, and function information, and the offset of the information we want to access OS::common::uint32_t Read(OS::common::uint16_t bus, OS::common::uint16_t device, OS::common::uint16_t function, OS::common::uint32_t registeroffset); //the write function similar to the read function, but you are pushing the value you want to write void Write(OS::common::uint16_t bus, OS::common::uint16_t device, OS::common::uint16_t function, OS::common::uint32_t registeroffset, OS::common::uint32_t value); //check if a device has a function bool DeviceHadFunction(OS::common::uint16_t bus, OS::common::uint16_t device); void SelectDrivers(OS::drivers::DriverManager* driverManager);//a method to get the drivers by going through all the buses, drivers, and functions. and look for the class, subclass, vendor, device ID's. And put these drivers in the Driver manager PeripheralComponentInterconnectDeviceDescriptor GetDeviceDescriptor(OS::common::uint16_t bus, OS::common::uint16_t device, OS::common::uint16_t function);//get the description of a device, depending on the bus, device and function }; } } #endif
cba9ed96bd362e835d5c9089f9f2778bb9b41d28
01553d07828278cab0c77da9c1f6b6c3dc87f7c2
/spojsolutions/CTRICK-20987475-src.cpp
f4af59b550b3111f045f6d5a3f31617aba3021d7
[]
no_license
alphaWizard/competitive-coding
d6f0e01a2643947c0aa79af45687fbcb9d0fa24f
95bb20b13cc1b06028451904c4aa8c076f5fb5c4
refs/heads/master
2021-05-05T01:29:47.856903
2018-04-08T13:31:06
2018-04-08T13:31:06
119,661,782
3
1
null
null
null
null
UTF-8
C++
false
false
395
cpp
CTRICK-20987475-src.cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int t; cin>>t; while(t--) { int n; cin>>n; vector<int> v(n); for(int i=0;i<n;++i) v[i]=i+1; for(int j=n-1;j>=0;j--) { int ctrev=j+1; ctrev=ctrev%(n-j); rotate(v.begin()+j, v.begin()+n-ctrev, v.end()); } for(int i=0;i<n;++i) cout<<v[i]<<" "; cout<<endl; } return 0; }
f185a0ab1e4d9bb535494f0073a396686e46078c
88c717c15b2ea4d10728ed44fa756c786d737fd9
/src/server/include/StartCommand.h
ee959ebb58bbe93f56df3b2cb159122f83676e9c
[]
no_license
alexkartun/Client-Server-Reversi
dc6691eabcd8a55920cddc6f49716465eac8bd18
745bd5168ff01f112a9962d8f5989d324ead3c47
refs/heads/master
2021-09-04T06:21:14.008056
2018-01-16T17:02:00
2018-01-16T17:02:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
823
h
StartCommand.h
/* * StartCommand.h */ #ifndef STARTCOMMAND_H_ #define STARTCOMMAND_H_ #include "AbstractCommand.h" class StartCommand: public AbstractCommand { public: StartCommand(Lobby *lobby): AbstractCommand(lobby) { } void execute(string args, int client_socket) { string message; string game_to_add = args; // game name. char buffer[LEN]; memset(buffer, '\0', sizeof(buffer)); bool status = lobby->addNewGame(game_to_add, client_socket); // add new game to map. if (status) { // only if status is true. strcpy(buffer, "1"); write(client_socket, buffer, LEN); lobby->updateSocketStatus(client_socket, waiting); // update the status of player } else { // to waiting. strcpy(buffer, "-1"); write(client_socket, buffer, LEN); } } }; #endif /* STARTCOMMAND_H_ */