blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e9592098b15692159f9ebf619750a46713585b80 | bd57e8411bfd1dd07d0b7b09d2e80029b1af4066 | /SCRambl/utils.h | b497ef57e58840886c4f11c23660761f6d36957b | [
"MIT"
] | permissive | indirivacua/SCRambl | a80d8b911cc177ee5f70ec01b8605ec96d5c5860 | cf6eb64272b4126094c77a720c2402ed47822a50 | refs/heads/master | 2021-12-08T04:23:30.100043 | 2016-02-09T01:24:05 | 2016-02-09T01:24:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,728 | h | /**********************************************************/
// SCRambl Advanced SCR Compiler/Assembler
// This program is distributed freely under the MIT license
// (See the LICENSE file provided
// or copy at http://opensource.org/licenses/MIT)
/**********************************************************/
#pragma once
#include <vector>
#include <assert.h>
#include <algorithm>
#include <functional>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef _WIN32
#include <Windows.h>
#endif
namespace SCRambl
{
template<class T>
inline T * szncpy(T *out, const char *src, size_t size);
}
#define ASSERT(expr) do{assert(expr);}while(0)
#ifdef _WIN32
#define BREAK() do{__debugbreak();}while(0)
#else
#define BREAK() if(0)
#endif
#if (_MSC_VER <= 1800)
#define NOTHROW
#else
#define NOTHROW nothrow
#endif
#include "utils/hash.h"
#include "utils/utf8.h"
#include "utils/ansi.h"
#include "utils/key.h"
#include "utils/map.h"
#include "utils/function_traits.h"
#include "utils/xml.h"
namespace SCRambl {
union VersionStruct
{
struct {
uint32_t Major : 8;
uint32_t Minor : 8;
uint32_t Beta : 8;
uint32_t Alpha : 8;
};
uint32_t VersionLong;
VersionStruct() : VersionLong(0) { }
VersionStruct(uint32_t v) : VersionLong(v) { }
VersionStruct(uint8_t major, uint8_t minor, uint8_t beta = 0, uint8_t alpha = 0) : Alpha(alpha), Beta(beta), Minor(minor), Major(major) { }
inline bool operator==(const VersionStruct& v) const { return VersionLong == v.VersionLong; }
inline bool operator!=(const VersionStruct& v) const { return !(*this == v); }
inline bool operator>(const VersionStruct& v) const { return Major > v.Major || Minor > v.Minor || Beta > v.Beta || Alpha > v.Alpha; }
inline bool operator<(const VersionStruct& v) const { return Major < v.Major || Minor < v.Minor || Beta < v.Beta || Alpha < v.Alpha; }
inline bool operator>=(const VersionStruct& v) const { return !(*this < v); }
inline bool operator<=(const VersionStruct& v) const { return !(*this > v); }
// Will get the shortest possible version string (omitting unnecessary .0) e.g. 1.0.0.0 == 1, 1.0.2.0 = 1.0.2, 0.0.0.0 = 0
std::string GetString() const;
};
extern const VersionStruct SCRamblVersion;
// for merging vectors, without duplicates, through remove_copy_if, etc.
template<typename T>
struct VectorContainPred {
const std::vector<T>& vec;
VectorContainPred(const std::vector<T>& v) : vec(v) { }
inline bool operator()(T v) {
return vec.end() != std::find(vec.begin(), vec.end(), v);
}
};
// index-based vector reference (won't invalidate when vector grows - could point to something unexpected)
template<typename T, typename TIt = size_t>
class VecRef {
public:
using Vec = std::vector<T>;
VecRef() = default;
VecRef(const VecRef&) = default;
VecRef(std::nullptr_t) : VecRef() { }
VecRef(Vec* vec) : VecRef(*vec)
{ }
VecRef(Vec& vec) : VecRef(vec, vec.size())
{ }
template<typename TIndex>
VecRef(Vec* vec, TIndex index) : VecRef(*vec, index)
{ }
template<typename TIndex>
VecRef(Vec& vec, TIndex index) : m_Vector(&vec), m_Index(index < 0 ? vec.size() + index : index)
{ }
virtual ~VecRef() { }
inline T& operator*() const { return *Ptr(); }
inline T* operator->() const { return Ptr(); }
inline operator bool() const { return OK(); }
inline bool operator==(const T& v) const { return Ptr() == v.Ptr(); }
inline bool operator!=(const T& v) const { return !(*this == v); }
inline bool OK() const {
return m_Vector != nullptr && m_Index < m_Vector->size();
}
inline T* Ptr() const {
return OK() ? &(*m_Vector)[m_Index] : nullptr;
}
inline T& Get() const {
return m_Vector.at(m_Index);
}
inline TIt Index() const { return m_Index; }
private:
Vec* m_Vector = nullptr;
TIt m_Index = 0;
};
// vector indexes - like iterators, except you know where they are quicker
template<typename T, typename TKey = size_t, typename TCont = std::vector<T>, typename TIt = TCont::const_iterator>
class VecIndex {
public:
using ValType = T;
using Vector = TCont;
using IndexType = TKey;
VecIndex() = default;
VecIndex(IndexType index, Vector& vec) : m_Vector(&vec), m_Index(index < 0 ? vec.size() + index : index)
{ }
VecIndex(TIt it, Vector& vec) : m_Vector(&vec), m_Index(it != vec.end() ? std::distance<TIt>(std::begin(vec), it) : vec.size())
{ }
VecIndex(Vector& vec, IndexType index) : m_Vector(&vec), m_Index(index < 0 ? vec.size() + index : index)
{ }
VecIndex(Vector& vec, TIt it) : m_Vector(&vec), m_Index(it != vec.end() ? std::distance<TIt>(std::begin(vec), it) : vec.size())
{ }
virtual ~VecIndex() { }
inline VecIndex& operator=(TIt it) {
*this = std::distance(std::begin(m_Vector), it);
return *this;
}
inline VecIndex& operator=(IndexType i) {
m_Index = i;
return *this;
}
inline VecIndex& operator++() {
Increase();
return *this;
}
inline VecIndex operator++(int) {
auto v = *this;
++(*this);
return v;
}
inline VecIndex& operator--() {
Decrease();
}
inline VecIndex operator--(int) {
auto v = *this;
--(*this);
return v;
}
inline VecIndex& operator+=(IndexType n) {
Increase(n);
return *this;
}
inline VecIndex& operator-=(IndexType n) {
Decrease(n);
return *this;
}
inline VecIndex operator+(IndexType n) const {
auto v = *this;
v.Increase(n);
return v;
}
inline VecIndex operator-(IndexType n) const {
auto v = *this;
v.Decrease(n);
return v;
}
inline ValType& operator*() const { return *Ptr(); }
inline ValType* operator->() const { return Ptr(); }
inline bool operator==(const ValType& v) const { return Ptr() == v.Ptr(); }
inline bool operator!=(const ValType& v) const { return !(*this == v); }
inline operator bool() const { return OK(); }
inline bool OK() const {
return m_Vector != nullptr && m_Index < m_Vector->size();
}
inline ValType* Ptr() const {
return OK() ? &(*m_Vector)[m_Index] : nullptr;
}
inline ValType& Get() const {
return m_Vector->at(m_Index);
}
inline IndexType Index() const { return m_Index; }
private:
inline void Increase(size_t i = 1) {
if (m_Vector) {
if ((m_Index + i) >= m_Vector->size())
m_Index = m_Vector->size();
else
m_Index += i;
}
else m_Index = 0;
}
inline void Decrease(size_t i = 1) {
if (m_Vector && i < m_Index)
m_Index -= i;
else
m_Index = 0;
}
Vector* m_Vector = nullptr;
IndexType m_Index = 0;
};
class line {
std::string str;
public:
operator std::string() const { return str; }
friend std::istream & operator>>(std::istream &is, line &l)
{
std::getline(is, l.str);
return is;
}
};
static size_t tokenize(std::vector<std::string>& out, std::string str) {
auto it = str.begin();
size_t n = 0;
for (auto end = std::find_if(it, str.end(), IsSpace); end != str.end(); end = std::find_if(it, str.end(), IsSpace)) {
std::string tok(it, end);
if (tok.empty()) continue;
out.emplace_back(tok);
++n;
}
return n;
}
// returns how long the strings match for (in bytes, not time - but that would be cool)
static inline size_t lengthcompare(const std::string& a, const std::string& b) {
size_t l = 0;
while (a.length() > l && b.length() > l && a[l] == b[l]) ++l;
return l;
}
// makes your string real lazy
static inline std::string tolower(std::string str) {
std::transform(str.begin(), str.end(), str.begin(), [](int c){ return std::tolower(c); });
return str;
}
// makes your string real shouty
static inline std::string toupper(std::string str) {
std::transform(str.begin(), str.end(), str.begin(), [](int c){ return std::toupper(c); });
return str;
}
// trim from start
static inline std::string <rim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
return s;
}
// trim from end
static inline std::string &rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
return s;
}
// trim from both ends (ltrim + rtrim, nothing special)
static inline std::string &trim(std::string &s)
{
return ltrim(rtrim(s));
}
// copies while predicate returns true
template<class InputIt, class UnaryPredicate>
std::string strcpy_while(InputIt first, InputIt last, UnaryPredicate pred) {
std::string str;
while (first != last && pred(*first)) {
str += *first++;
}
return str;
}
// strncpy + zero-terminate last character
template<class T>
inline T* szncpy(T *out, const char *src, size_t size)
{
strncpy(out, src, size);
out[size - 1] = 0;
return out;
}
template<typename T>
inline T BytesToBits(T v) {
return v * 8;
}
template<typename T>
inline T BitsToBytes(T v) {
return (v / 8) + (v % 8 ? 1 : 0);
}
template<typename T>
inline T BitsToByteBits(T v) {
return BytesToBits(BitsToBytes(v));
}
// I can't stress how often I've needed a program to be aware of the number of bits its data used...
template<typename T>
inline size_t CountBitOccupation(T N) {
size_t r = 1;
while (N >>= 1) r++;
return r;
}
// can magically turn an arbitrary number into a number representing the amount of data in bytes the prior number used up
template<typename T>
inline size_t CountByteOccupation(T v) {
size_t n = CountBitOccupation<T>(v);
return (n / 8) + (n % 8 ? 1 : 0);
}
// Returns the pos of the 'ext' part of "any.path/file.ext", or npos if no extension is found
inline size_t GetFilePathExtensionPos(const std::string& path) {
for (size_t i = path.length(); i; --i) {
if (path[i] == '.') {
return i + 1;
}
if (path[i] == '\\' || path[i] == '//')
break;
}
return std::string::npos;
}
inline std::string GetFilePathExtension(const std::string& path) {
return path.substr(GetFilePathExtensionPos(path));
}
#ifdef _WIN32
inline uint64_t JoinInt32(uint32_t high, uint32_t low)
{
ULARGE_INTEGER li;
li.HighPart = high;
li.LowPart = low;
return li.QuadPart;
}
inline uint64_t GetTime()
{
SYSTEMTIME st;
FILETIME ft;
GetSystemTime(&st);
SystemTimeToFileTime(&st, &ft);
return JoinInt32(ft.dwHighDateTime, ft.dwLowDateTime);
}
inline uint64_t GetFileModifiedTime(FILE *hFile)
{
BY_HANDLE_FILE_INFORMATION fi;
GetFileInformationByHandle(hFile, &fi);
return JoinInt32(fi.ftLastWriteTime.dwHighDateTime, fi.ftLastWriteTime.dwLowDateTime);
}
inline uint64_t GetFileModifiedTime(const char *szPath)
{
WIN32_FILE_ATTRIBUTE_DATA fi;
GetFileAttributesEx(widen(szPath).c_str(), GetFileExInfoStandard, &fi);
return JoinInt32(fi.ftLastWriteTime.dwHighDateTime, fi.ftLastWriteTime.dwLowDateTime);
}
#endif
} | [
"the_zone@hotmail.co.uk"
] | the_zone@hotmail.co.uk |
5c2ed4b4da5da41f0390dd50b8e9073b965f084e | 4b3c29d33aa05f837de60e460a51b9085b6a816e | /P314-3.cpp | f6151fac43dc8f5c599b94d2fae23a0cd8fd0b96 | [] | no_license | lyMeiSEU/Data-Structures-Homework | 2f5f79b73aa742ff128d9a7226dae29e15a2e92f | 8220e8f74a9bbc64cef6b8f3756cf1a8a600bf30 | refs/heads/master | 2020-04-01T16:36:12.458562 | 2019-01-07T13:08:37 | 2019-01-07T13:08:37 | 153,388,988 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,082 | cpp | #include<iostream>
using namespace std;
#define HeapSize 10
class Sets {
public:
Sets(int p[]) {
n = (sizeof(p) / sizeof(int)) + 1;
parent = new int[n];
for (int i = 0; i < sizeof(p) / sizeof(int); ++i) {
parent[i] = p[i];
}
}
Sets(int sz = HeapSize) {
n = sz;
parent = new int[sz];
for (int i = 0; i < n; ++i) {
parent[i] = -1;
}
}
void SimpleUnion(int i, int j) {
parent[i] = j;
}
int SimpleFind(int i) {
while (parent[i] >= 0) {
i = parent[i];
}
return i;
}
void WeightUnion(int i, int j) {
int temp = parent[i] + parent[j];
if (i > j) {
parent[i] = j;
parent[j]=temp;
}
else {
parent[j] = i;
parent[i] = temp;
}
}
int CollospingFind(int i) {
int r;
for (r = i; parent[r] >= 0; r = parent[r]);//Find root;
while (i != r) {
int s = parent[i];
parent[i] = r;
i = s;
}
return r;
}
private:
int *parent;
int n;
};
int main() {
int a[] = { 1,2,3,4,5,6 };
int b[] = { 7,8,9,10,11 };
Sets *A = new Sets(a);
Sets *B = new Sets(b);
A->WeightUnion(7,8);
cout << A->CollospingFind(9) << endl;
} | [
"213173625@seu.edu.cn"
] | 213173625@seu.edu.cn |
1076a6e1ad98ac3050d1d4258404c2469516d5fd | d80c8a7d82ec3784d0c77e9546b097ee532e6413 | /src/qt/sendmessagesentry.cpp | 4343e7fa3c6a418b5d7b3ea3889c203e7e722fac | [
"MIT",
"OpenSSL"
] | permissive | padima1/Intermodal-Coin | 4892e7459d8ab21e8bc79bd8604fa9cdee72c40c | 0b35bef33c6613adad7c58fcf0faa5785e2c1a2c | refs/heads/master | 2020-03-18T05:18:11.893544 | 2018-05-21T18:55:55 | 2018-05-21T18:55:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,227 | cpp | #include "sendmessagesentry.h"
#include "ui_sendmessagesentry.h"
#include "guiutil.h"
#include "addressbookpage.h"
#include "walletmodel.h"
#include "messagemodel.h"
#include "optionsmodel.h"
#include "addresstablemodel.h"
#include "smessage.h"
#include <QApplication>
#include <QClipboard>
SendMessagesEntry::SendMessagesEntry(QWidget *parent) :
QFrame(parent),
ui(new Ui::SendMessagesEntry),
model(0)
{
ui->setupUi(this);
#ifdef Q_OS_MAC
ui->sendToLayout->setSpacing(4);
#endif
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
ui->sendTo->setPlaceholderText(tr("Enter a IntermodalCoin address (e.g. SXZ1DpQPXqAq5pWGFjLgsAsxoSRM23cbNK)"));
ui->publicKey->setPlaceholderText(tr("Enter the public key for the address above, it is not in the blockchain"));
ui->messageText->setErrorText(tr("You cannot send a blank message!"));
#endif
setFocusPolicy(Qt::TabFocus);
setFocusProxy(ui->sendTo);
GUIUtil::setupAddressWidget(ui->sendTo, this);
}
SendMessagesEntry::~SendMessagesEntry()
{
delete ui;
}
void SendMessagesEntry::on_pasteButton_clicked()
{
// Paste text from clipboard into recipient field
ui->sendTo->setText(QApplication::clipboard()->text());
}
void SendMessagesEntry::on_PubkeyPasteButton_clicked()
{
// Paste text from clipboard into recipient field
ui->publicKey->setText(QApplication::clipboard()->text());
}
void SendMessagesEntry::on_addressBookButton_clicked()
{
if(!model)
return;
AddressBookPage dlg(AddressBookPage::ForSending, AddressBookPage::SendingTab, this);
dlg.setModel(model->getWalletModel()->getAddressTableModel());
if(dlg.exec())
{
ui->sendTo->setText(dlg.getReturnValue());
if(ui->publicKey->text() == "")
ui->publicKey->setFocus();
else
ui->messageText->setFocus();
}
}
void SendMessagesEntry::on_sendTo_textChanged(const QString &address)
{
if(!model)
return;
QString pubkey;
QString sendTo = address;
if(model->getAddressOrPubkey(sendTo, pubkey))
{
ui->publicKey->setText(pubkey);
}
else
{
ui->publicKey->show();
ui->publicKeyLabel->show();
}
// Fill in label from address book, if address has an associated label
QString associatedLabel = model->getWalletModel()->getAddressTableModel()->labelForAddress(address);
if(!associatedLabel.isEmpty())
ui->addAsLabel->setText(associatedLabel);
}
void SendMessagesEntry::setModel(MessageModel *model)
{
this->model = model;
//clear();
}
void SendMessagesEntry::loadRow(int row)
{
if(model->data(model->index(row, model->Type, QModelIndex()), Qt::DisplayRole).toString() == MessageModel::Received)
ui->sendTo->setText(model->data(model->index(row, model->FromAddress, QModelIndex()), Qt::DisplayRole).toString());
else
ui->sendTo->setText(model->data(model->index(row, model->ToAddress, QModelIndex()), Qt::DisplayRole).toString());
}
void SendMessagesEntry::setRemoveEnabled(bool enabled)
{
ui->deleteButton->setEnabled(enabled);
}
void SendMessagesEntry::clear()
{
ui->sendTo->clear();
ui->addAsLabel->clear();
ui->messageText->clear();
ui->sendTo->setFocus();
}
void SendMessagesEntry::on_deleteButton_clicked()
{
emit removeEntry(this);
}
bool SendMessagesEntry::validate()
{
// Check input validity
bool retval = true;
if(ui->messageText->toPlainText() == "")
{
ui->messageText->setValid(false);
retval = false;
}
if(!ui->sendTo->hasAcceptableInput() || (!model->getWalletModel()->validateAddress(ui->sendTo->text())))
{
ui->sendTo->setValid(false);
retval = false;
}
if(ui->publicKey->text() == "")
{
ui->publicKey->setValid(false);
ui->publicKey->show();
retval = false;
}
return retval;
}
SendMessagesRecipient SendMessagesEntry::getValue()
{
SendMessagesRecipient rv;
rv.address = ui->sendTo->text();
rv.label = ui->addAsLabel->text();
rv.pubkey = ui->publicKey->text();
rv.message = ui->messageText->toPlainText();
return rv;
}
QWidget *SendMessagesEntry::setupTabChain(QWidget *prev)
{
QWidget::setTabOrder(prev, ui->sendTo);
QWidget::setTabOrder(ui->sendTo, ui->addressBookButton);
QWidget::setTabOrder(ui->addressBookButton, ui->pasteButton);
QWidget::setTabOrder(ui->pasteButton, ui->deleteButton);
QWidget::setTabOrder(ui->deleteButton, ui->addAsLabel);
QWidget::setTabOrder(ui->addAsLabel, ui->publicKey);
QWidget::setTabOrder(ui->publicKey, ui->messageText);
return ui->messageText;
}
void SendMessagesEntry::setValue(const SendMessagesRecipient &value)
{
ui->sendTo->setText(value.address);
ui->addAsLabel->setText(value.label);
ui->publicKey->setText(value.pubkey);
ui->messageText->setPlainText(value.message);
}
bool SendMessagesEntry::isClear()
{
return ui->sendTo->text().isEmpty();
}
void SendMessagesEntry::setFocus()
{
ui->sendTo->setFocus();
}
| [
"37194729+Intermodalcoin@users.noreply.github.com"
] | 37194729+Intermodalcoin@users.noreply.github.com |
dbc233ba0fe35e21df422080dc432e31e20c9348 | 21c9a61c287a8a63525ec473d56d43d30cce872e | /Core/src/SkeletonAnimation/InterpolationTransformTimeLine_Types.cpp | 7f06b5afbd0879c8bf16e501711428284edd447f | [] | no_license | lazarev-pv/robot-game | 444242166766bc4753e170177522f6286ae46df5 | f4f22f2f2f7da51c07eb3b148d844fbd187fe867 | refs/heads/master | 2021-01-10T09:17:15.792534 | 2015-10-01T16:57:54 | 2015-10-01T16:57:54 | 43,508,571 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373 | cpp | #include <ChibiEngine/SkeletonAnimation/InterpolationTransformTimeLine_Types.h>
#include <ChibiEngine/SkeletonAnimation/EventTransformTimeLine_Types.h>
using namespace glm;
const glm::vec2 game::MOVE_DEFAULT_VALUE(0,0);
const glm::quat game::ROTATE_DEFAULT_VALUE(1,0,0,0);
const glm::vec2 game::SCALE_DEFAULT_VALUE(1,1);
const std::string game::EVENT_DEFAULT_VALUE("");
| [
"lazarev.p.v@gmail.com"
] | lazarev.p.v@gmail.com |
2666e6168266523c5d20c502ff1173100c7532a8 | dd07992b73261436174e493ba6bf9cdd46d3297a | /samples/ball/NxTileSprite.h | 481c2d3856ff71bfb093abb0f253388d7a9ece1a | [
"Apache-2.0"
] | permissive | doyaGu/nxlib | d898473ef5c9357cdbcf1acc3c400dcfe7c179ff | bfb07fc7357e80e40f0a4678fd295e3ef9de1c0a | refs/heads/master | 2022-04-08T14:05:00.387618 | 2020-03-05T02:39:37 | 2020-03-05T02:39:37 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,317 | h | // NxTileSprite.h: CNxTileSprite クラスのインターフェイス
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_NXTILESPRITE_H__13072461_65E0_11D4_8835_0000E842F190__INCLUDED_)
#define AFX_NXTILESPRITE_H__13072461_65E0_11D4_8835_0000E842F190__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#include <NxDraw/NxSurfaceSprite.h>
class CNxTileSprite : public CNxSurfaceSprite
{
public:
CNxTileSprite(CNxSprite* pParent, CNxSurface* pSurface = NULL, const RECT* lpRect = NULL);
virtual ~CNxTileSprite();
void SetSrcOrg(int x, int y);
void GetSrcOrg(LPPOINT lpPoint) const;
void OffsetSrcOrg(int nXOffset, int nYOffset);
virtual void SetSrcRect(const RECT* lpSrcRect = NULL);
void GetSrcRect(LPRECT lpSrcRect) const;
virtual CNxSurface* SetSrcSurface(CNxSurface* pSurface, const RECT* lpRect = NULL);
protected:
virtual BOOL Draw(CNxSurface* pSurface, const RECT* lpRect) const;
private:
RECT m_rcSrc;
POINT m_ptOrg;
};
inline void CNxTileSprite::GetSrcRect(LPRECT lpSrcRect) const {
*lpSrcRect = m_rcSrc; }
inline void CNxTileSprite::GetSrcOrg(LPPOINT lpPoint) const {
*lpPoint = m_ptOrg; }
#endif // !defined(AFX_NXTILESPRITE_H__13072461_65E0_11D4_8835_0000E842F190__INCLUDED_)
| [
"noreply@github.com"
] | doyaGu.noreply@github.com |
c0e1741176672d453e47a89d3397a407cfeec01b | 362ce01e7ddb6a5b94a4c69f5e0ae71c2d960b3a | /src/DoodadRTree.h | efb5bd89ed5c504f1c5ad424846f3bed57132b73 | [
"BSD-2-Clause"
] | permissive | nathanmentley/EssexEngineLibIsoMap | 351dd559a448394dc9b360228aa9c900d41cdede | 59fe0db6d139647eb9675365c269c8d166d631a7 | refs/heads/master | 2021-03-22T04:26:33.238856 | 2018-05-12T16:54:50 | 2018-05-12T16:54:50 | 103,860,015 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,403 | h | /*
* Essex Engine
*
* Copyright (C) 2018 Nathan Mentley - All Rights Reserved
* You may use, distribute and modify this code under the
* terms of the BSD license.
*
* You should have received a copy of the BSD license with
* this file. If not, please visit: https://github.com/nathanmentley/EssexEngine
*/
#pragma once
#include <math.h>
#include <vector>
#include <EssexEngineCore/RStarTree.h>
#include <EssexEngineCore/WeakPointer.h>
#include <EssexEngineLibIsoMap/MapDoodad.h>
const int MIN_WORLD_DOODAD_SIZE = 64;
const int MAX_WORLD_DOODAD_SIZE = 65536;
namespace EssexEngine{
namespace Libs{
namespace IsoMap{
typedef RStarTree<MapDoodad*, 2, MIN_WORLD_DOODAD_SIZE, MAX_WORLD_DOODAD_SIZE> DoodadRTree;
struct DoodadRTreeVisitor {
struct DoodadDataNode {
WeakPointer<MapDoodad> doodad;
RStarBoundingBox<2> box;
};
int count;
bool ContinueVisiting;
std::vector<DoodadDataNode> data;
DoodadRTreeVisitor() : count(0), ContinueVisiting(true), data(std::vector<DoodadDataNode>()) {};
void operator()(const DoodadRTree::Leaf * const leaf)
{
DoodadDataNode tuple = DoodadDataNode();
tuple.doodad = leaf->leaf;
tuple.box = leaf->bound;
data.push_back(tuple);
count++;
}
};
}}};
| [
"nathanmentley@gmail.com"
] | nathanmentley@gmail.com |
a9ebf14ae06ae7108591abc5c9785460c0502348 | 9e5979f0336e6b8432b0f4c23f7b9145d863a2d5 | /Array/Rotate Array.cpp | fab273beaec579dec62fd7b99a9fd16d9db5b30f | [] | no_license | akarshjoice/Competitive-Coding | fc179ae37c02090c8e3d258d4b306679947e1da6 | d705d366df7c0fae40562987ad75820a46b71e09 | refs/heads/main | 2023-06-10T04:39:07.834888 | 2021-06-16T02:51:11 | 2021-06-16T02:51:11 | 330,808,538 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,938 | cpp | // Question:
/*
Given an unsorted array arr[] of size N, rotate it by D elements in the counter-clockwise direction.
Example 1:
Input:
N = 5, D = 2
arr[] = {1,2,3,4,5}
Output: 3 4 5 1 2
Explanation: 1 2 3 4 5 when rotated
by 2 elements, it becomes 3 4 5 1 2.
Example 2:
Input:
N = 10, D = 3
arr[] = {2,4,6,8,10,12,14,16,18,20}
Output: 8 10 12 14 16 18 20 2 4 6
Explanation: 2 4 6 8 10 12 14 16 18 20
when rotated by 3 elements, it becomes
8 10 12 14 16 18 20 2 4 6.
Your Task:
Complete the function rotateArr() which takes the array, D and N as input parameters and rotates the array by D elements. The array must be modified in-place without using extra space.
Expected Time Complexity: O(N)
Expected Auxiliary Space: O(1)
Constraints:
1 <= N <= 107
1 <= D <= N
0 <= arr[i] <= 105
*/
// Code:
// { Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
void reverse(int a[],int start,int end) {
int n = end - start ;
int tmp;
int j = end;
for(int i=start;i<=start + ((end - start)/2);i++) {
tmp = a[i];
a[i] = a[j];
a[j] = tmp;
j--;
}
}
void rotateArr(int a[], int d, int n){
reverse(a,0,d-1);
reverse(a,d,n-1);
reverse(a,0,n-1);
}
// { Driver Code Starts.
int main() {
int t;
//taking testcases
cin >> t;
while(t--){
int n, d;
//input n and d
cin >> n >> d;
int arr[n];
//inserting elements in the array
for(int i = 0; i < n; i++){
cin >> arr[i];
}
//calling rotateArr() function
rotateArr(arr, d,n);
//printing the elements of the array
for(int i =0;i<n;i++){
cout << arr[i] << " ";
}
cout << endl;
}
return 0;
} // } Driver Code Ends | [
"noreply@github.com"
] | akarshjoice.noreply@github.com |
016361b6092fbf7d6625287ee2bde5da0e135255 | d2650b73a3d64ec4c0614b08a4b0ba7370b7327a | /cpp/dynamic-programming/sequence-hab.cpp | ec33f2c460a057f7caa88c94efaab1903932aa25 | [] | no_license | jodnddus/nojam | 1fdf90805be8ea8bdfad5030f5ac39bc5b08d89f | a2e646ab06bc81f89bd451faea1da6231547de05 | refs/heads/master | 2020-05-18T07:57:21.808166 | 2019-08-15T10:05:53 | 2019-08-15T10:05:53 | 184,280,261 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 429 | cpp | // https://www.acmicpc.net/problem/1912
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
int N, MAX=-1000;
scanf("%d", &N);
vector<int> c(N, 0);
vector<int> d(N, 0);
for (int i=0; i<N; i++)
scanf("%d", &c[i]);
d[0] = c[0];
for (int i=1; i<N; i++)
{
d[i] = max(d[i-1] + c[i], c[i]);
MAX = max(MAX, d[i]);
}
MAX = max(MAX, d[0]);
printf("%d\n", MAX);
return 0;
}
| [
"lockhost23@gmail.com"
] | lockhost23@gmail.com |
11568b75e1dbe28d70c8136b59ff3cc36e148d8f | 1650248808c35bd5f460f6b2af687958d9b9bcd3 | /src/client/ParticleTexture.h | 89ac5b4987ac9ceda302ea5b894173fe4a370330 | [
"Zlib"
] | permissive | Sondro/spear | bf7e424c29091600e30991119e339186319daaaf | 727f41fa5197f9681337d1ff37ea63c44708f0d4 | refs/heads/master | 2023-03-25T02:30:09.418017 | 2021-01-09T16:00:12 | 2021-01-09T16:00:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 402 | h | #pragma once
#include "sp/Asset.h"
#include "sp/Renderer.h"
namespace cl {
struct ParticleTexture : sp::Asset
{
static sp::AssetType SelfType;
using PropType = sp::NoAssetProps;
sg_image image;
static sg_pixel_format pixelFormat;
static sg_image defaultImage;
// Lifecycle
static void globalInit();
static void globalCleanup();
};
using ParticleTextureRef = sp::Ref<ParticleTexture>;
}
| [
"samuli.1995@hotmail.com"
] | samuli.1995@hotmail.com |
95513b3863279dad2abe4075ed51feea70b4ced4 | 8dadb9c657008f1944f0fc233b8e2c3e2fe7423f | /Library/Il2cppBuildCache/Android/armeabi-v7a/il2cppOutput/UnityEngine.InputLegacyModule_Attr.cpp | 3b28f979a7b4882a0e5a16ee14d9ac17f2f7314c | [] | no_license | sohay19/Treasure | 6b43954c2a0fbcbec26a60b1412ca5068bf03c6d | 2af22901156a07a247b1c194d6ef70b188710993 | refs/heads/master | 2023-07-28T10:08:36.351773 | 2021-09-12T11:05:46 | 2021-09-12T11:05:46 | 404,665,647 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 99,044 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// System.Runtime.CompilerServices.CompilationRelaxationsAttribute
struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF;
// System.Diagnostics.DebuggableAttribute
struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B;
// UnityEngine.Bindings.FreeFunctionAttribute
struct FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03;
// System.Runtime.CompilerServices.InternalsVisibleToAttribute
struct InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C;
// UnityEngine.Bindings.NativeHeaderAttribute
struct NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C;
// UnityEngine.Bindings.NativeThrowsAttribute
struct NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137;
// UnityEngine.Scripting.RequiredByNativeCodeAttribute
struct RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20;
// System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80;
// System.String
struct String_t;
// UnityEngine.UnityEngineModuleAssembly
struct UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Runtime.CompilerServices.CompilationRelaxationsAttribute
struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::m_relaxations
int32_t ___m_relaxations_0;
public:
inline static int32_t get_offset_of_m_relaxations_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF, ___m_relaxations_0)); }
inline int32_t get_m_relaxations_0() const { return ___m_relaxations_0; }
inline int32_t* get_address_of_m_relaxations_0() { return &___m_relaxations_0; }
inline void set_m_relaxations_0(int32_t value)
{
___m_relaxations_0 = value;
}
};
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Runtime.CompilerServices.InternalsVisibleToAttribute
struct InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String System.Runtime.CompilerServices.InternalsVisibleToAttribute::_assemblyName
String_t* ____assemblyName_0;
// System.Boolean System.Runtime.CompilerServices.InternalsVisibleToAttribute::_allInternalsVisible
bool ____allInternalsVisible_1;
public:
inline static int32_t get_offset_of__assemblyName_0() { return static_cast<int32_t>(offsetof(InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C, ____assemblyName_0)); }
inline String_t* get__assemblyName_0() const { return ____assemblyName_0; }
inline String_t** get_address_of__assemblyName_0() { return &____assemblyName_0; }
inline void set__assemblyName_0(String_t* value)
{
____assemblyName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____assemblyName_0), (void*)value);
}
inline static int32_t get_offset_of__allInternalsVisible_1() { return static_cast<int32_t>(offsetof(InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C, ____allInternalsVisible_1)); }
inline bool get__allInternalsVisible_1() const { return ____allInternalsVisible_1; }
inline bool* get_address_of__allInternalsVisible_1() { return &____allInternalsVisible_1; }
inline void set__allInternalsVisible_1(bool value)
{
____allInternalsVisible_1 = value;
}
};
// UnityEngine.Bindings.NativeHeaderAttribute
struct NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String UnityEngine.Bindings.NativeHeaderAttribute::<Header>k__BackingField
String_t* ___U3CHeaderU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CHeaderU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C, ___U3CHeaderU3Ek__BackingField_0)); }
inline String_t* get_U3CHeaderU3Ek__BackingField_0() const { return ___U3CHeaderU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CHeaderU3Ek__BackingField_0() { return &___U3CHeaderU3Ek__BackingField_0; }
inline void set_U3CHeaderU3Ek__BackingField_0(String_t* value)
{
___U3CHeaderU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CHeaderU3Ek__BackingField_0), (void*)value);
}
};
// UnityEngine.Bindings.NativeMethodAttribute
struct NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String UnityEngine.Bindings.NativeMethodAttribute::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_0;
// System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<IsThreadSafe>k__BackingField
bool ___U3CIsThreadSafeU3Ek__BackingField_1;
// System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<IsFreeFunction>k__BackingField
bool ___U3CIsFreeFunctionU3Ek__BackingField_2;
// System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<ThrowsException>k__BackingField
bool ___U3CThrowsExceptionU3Ek__BackingField_3;
// System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<HasExplicitThis>k__BackingField
bool ___U3CHasExplicitThisU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CNameU3Ek__BackingField_0)); }
inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; }
inline void set_U3CNameU3Ek__BackingField_0(String_t* value)
{
___U3CNameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CIsThreadSafeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CIsThreadSafeU3Ek__BackingField_1)); }
inline bool get_U3CIsThreadSafeU3Ek__BackingField_1() const { return ___U3CIsThreadSafeU3Ek__BackingField_1; }
inline bool* get_address_of_U3CIsThreadSafeU3Ek__BackingField_1() { return &___U3CIsThreadSafeU3Ek__BackingField_1; }
inline void set_U3CIsThreadSafeU3Ek__BackingField_1(bool value)
{
___U3CIsThreadSafeU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CIsFreeFunctionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CIsFreeFunctionU3Ek__BackingField_2)); }
inline bool get_U3CIsFreeFunctionU3Ek__BackingField_2() const { return ___U3CIsFreeFunctionU3Ek__BackingField_2; }
inline bool* get_address_of_U3CIsFreeFunctionU3Ek__BackingField_2() { return &___U3CIsFreeFunctionU3Ek__BackingField_2; }
inline void set_U3CIsFreeFunctionU3Ek__BackingField_2(bool value)
{
___U3CIsFreeFunctionU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CThrowsExceptionU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CThrowsExceptionU3Ek__BackingField_3)); }
inline bool get_U3CThrowsExceptionU3Ek__BackingField_3() const { return ___U3CThrowsExceptionU3Ek__BackingField_3; }
inline bool* get_address_of_U3CThrowsExceptionU3Ek__BackingField_3() { return &___U3CThrowsExceptionU3Ek__BackingField_3; }
inline void set_U3CThrowsExceptionU3Ek__BackingField_3(bool value)
{
___U3CThrowsExceptionU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CHasExplicitThisU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CHasExplicitThisU3Ek__BackingField_4)); }
inline bool get_U3CHasExplicitThisU3Ek__BackingField_4() const { return ___U3CHasExplicitThisU3Ek__BackingField_4; }
inline bool* get_address_of_U3CHasExplicitThisU3Ek__BackingField_4() { return &___U3CHasExplicitThisU3Ek__BackingField_4; }
inline void set_U3CHasExplicitThisU3Ek__BackingField_4(bool value)
{
___U3CHasExplicitThisU3Ek__BackingField_4 = value;
}
};
// UnityEngine.Bindings.NativeThrowsAttribute
struct NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Boolean UnityEngine.Bindings.NativeThrowsAttribute::<ThrowsException>k__BackingField
bool ___U3CThrowsExceptionU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CThrowsExceptionU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137, ___U3CThrowsExceptionU3Ek__BackingField_0)); }
inline bool get_U3CThrowsExceptionU3Ek__BackingField_0() const { return ___U3CThrowsExceptionU3Ek__BackingField_0; }
inline bool* get_address_of_U3CThrowsExceptionU3Ek__BackingField_0() { return &___U3CThrowsExceptionU3Ek__BackingField_0; }
inline void set_U3CThrowsExceptionU3Ek__BackingField_0(bool value)
{
___U3CThrowsExceptionU3Ek__BackingField_0 = value;
}
};
// UnityEngine.Scripting.RequiredByNativeCodeAttribute
struct RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String UnityEngine.Scripting.RequiredByNativeCodeAttribute::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_0;
// System.Boolean UnityEngine.Scripting.RequiredByNativeCodeAttribute::<Optional>k__BackingField
bool ___U3COptionalU3Ek__BackingField_1;
// System.Boolean UnityEngine.Scripting.RequiredByNativeCodeAttribute::<GenerateProxy>k__BackingField
bool ___U3CGenerateProxyU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20, ___U3CNameU3Ek__BackingField_0)); }
inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; }
inline void set_U3CNameU3Ek__BackingField_0(String_t* value)
{
___U3CNameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3COptionalU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20, ___U3COptionalU3Ek__BackingField_1)); }
inline bool get_U3COptionalU3Ek__BackingField_1() const { return ___U3COptionalU3Ek__BackingField_1; }
inline bool* get_address_of_U3COptionalU3Ek__BackingField_1() { return &___U3COptionalU3Ek__BackingField_1; }
inline void set_U3COptionalU3Ek__BackingField_1(bool value)
{
___U3COptionalU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CGenerateProxyU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20, ___U3CGenerateProxyU3Ek__BackingField_2)); }
inline bool get_U3CGenerateProxyU3Ek__BackingField_2() const { return ___U3CGenerateProxyU3Ek__BackingField_2; }
inline bool* get_address_of_U3CGenerateProxyU3Ek__BackingField_2() { return &___U3CGenerateProxyU3Ek__BackingField_2; }
inline void set_U3CGenerateProxyU3Ek__BackingField_2(bool value)
{
___U3CGenerateProxyU3Ek__BackingField_2 = value;
}
};
// System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::m_wrapNonExceptionThrows
bool ___m_wrapNonExceptionThrows_0;
public:
inline static int32_t get_offset_of_m_wrapNonExceptionThrows_0() { return static_cast<int32_t>(offsetof(RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80, ___m_wrapNonExceptionThrows_0)); }
inline bool get_m_wrapNonExceptionThrows_0() const { return ___m_wrapNonExceptionThrows_0; }
inline bool* get_address_of_m_wrapNonExceptionThrows_0() { return &___m_wrapNonExceptionThrows_0; }
inline void set_m_wrapNonExceptionThrows_0(bool value)
{
___m_wrapNonExceptionThrows_0 = value;
}
};
// UnityEngine.UnityEngineModuleAssembly
struct UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// UnityEngine.Bindings.FreeFunctionAttribute
struct FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 : public NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866
{
public:
public:
};
// System.Diagnostics.DebuggableAttribute/DebuggingModes
struct DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8
{
public:
// System.Int32 System.Diagnostics.DebuggableAttribute/DebuggingModes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Diagnostics.DebuggableAttribute
struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Diagnostics.DebuggableAttribute/DebuggingModes System.Diagnostics.DebuggableAttribute::m_debuggingModes
int32_t ___m_debuggingModes_0;
public:
inline static int32_t get_offset_of_m_debuggingModes_0() { return static_cast<int32_t>(offsetof(DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B, ___m_debuggingModes_0)); }
inline int32_t get_m_debuggingModes_0() const { return ___m_debuggingModes_0; }
inline int32_t* get_address_of_m_debuggingModes_0() { return &___m_debuggingModes_0; }
inline void set_m_debuggingModes_0(int32_t value)
{
___m_debuggingModes_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Void System.Runtime.CompilerServices.InternalsVisibleToAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9 (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * __this, String_t* ___assemblyName0, const RuntimeMethod* method);
// System.Void UnityEngine.UnityEngineModuleAssembly::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEngineModuleAssembly__ctor_m76C129AC6AA438BE601F5279EE9EB599BEF90AF9 (UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::set_WrapNonExceptionThrows(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void System.Diagnostics.DebuggableAttribute::.ctor(System.Diagnostics.DebuggableAttribute/DebuggingModes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550 (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * __this, int32_t ___modes0, const RuntimeMethod* method);
// System.Void UnityEngine.Bindings.NativeHeaderAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeHeaderAttribute__ctor_m0E83F29C5939F185D6E90541591802EB2845FD76 (NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C * __this, String_t* ___header0, const RuntimeMethod* method);
// System.Void UnityEngine.Bindings.FreeFunctionAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FreeFunctionAttribute__ctor_mE37D1E356F51A379B44C570574608DC3E49E0DB0 (FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void UnityEngine.Bindings.NativeThrowsAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751 (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Scripting.RequiredByNativeCodeAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5 (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * __this, const RuntimeMethod* method);
static void UnityEngine_InputLegacyModule_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[0];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x37"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[1];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x53\x75\x62\x73\x79\x73\x74\x65\x6D\x2E\x52\x65\x67\x69\x73\x74\x72\x61\x74\x69\x6F\x6E"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[2];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x35"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[3];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x54\x65\x73\x74\x73\x2E\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[4];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x34"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[5];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x32"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[6];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x73\x2E\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[7];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x73\x2E\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B\x2E\x54\x65\x73\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[8];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x50\x65\x72\x66\x6F\x72\x6D\x61\x6E\x63\x65\x54\x65\x73\x74\x73\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x52\x75\x6E\x6E\x65\x72\x2E\x54\x65\x73\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[9];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x73\x2E\x41\x6C\x6C\x49\x6E\x31\x52\x75\x6E\x6E\x65\x72"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[10];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x54\x69\x6D\x65\x6C\x69\x6E\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[11];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x41\x73\x73\x65\x6D\x62\x6C\x79\x2D\x43\x53\x68\x61\x72\x70\x2D\x74\x65\x73\x74\x61\x62\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[12];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x41\x73\x73\x65\x6D\x62\x6C\x79\x2D\x43\x53\x68\x61\x72\x70\x2D\x66\x69\x72\x73\x74\x70\x61\x73\x73\x2D\x74\x65\x73\x74\x61\x62\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[13];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x70\x61\x74\x69\x61\x6C\x54\x72\x61\x63\x6B\x69\x6E\x67"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[14];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x47\x6F\x6F\x67\x6C\x65\x41\x52\x2E\x55\x6E\x69\x74\x79\x4E\x61\x74\x69\x76\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[15];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x57\x69\x6E\x64\x6F\x77\x73\x4D\x52\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[16];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x32\x44\x2E\x53\x70\x72\x69\x74\x65\x2E\x45\x64\x69\x74\x6F\x72"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[17];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x32\x44\x2E\x53\x70\x72\x69\x74\x65\x2E\x45\x64\x69\x74\x6F\x72\x54\x65\x73\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[18];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x35"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[19];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x2E\x42\x75\x69\x6C\x64\x65\x72\x2E\x45\x64\x69\x74\x6F\x72"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[20];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x34"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[21];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x32"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[22];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x39"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[23];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x30"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[24];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x31"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[25];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x32"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[26];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x33"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[27];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x34"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[28];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x35"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[29];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x36"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[30];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x37"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[31];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x38"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[32];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x39"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[33];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x30"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[34];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x31"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[35];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x32"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[36];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x33"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[37];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x34"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[38];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x31"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[39];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x33"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[40];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x38"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[41];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x64\x69\x74\x6F\x72\x2E\x55\x49\x42\x75\x69\x6C\x64\x65\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[42];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[43];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x6E\x64\x72\x6F\x69\x64\x4A\x4E\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[44];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x6E\x69\x6D\x61\x74\x69\x6F\x6E\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[45];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x75\x64\x69\x6F\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[46];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x44\x69\x72\x65\x63\x74\x6F\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[47];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x44\x53\x50\x47\x72\x61\x70\x68\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[48];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x47\x72\x69\x64\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[49];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x63\x72\x65\x65\x6E\x43\x61\x70\x74\x75\x72\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[50];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x52\x75\x6E\x74\x69\x6D\x65\x49\x6E\x69\x74\x69\x61\x6C\x69\x7A\x65\x4F\x6E\x4C\x6F\x61\x64\x4D\x61\x6E\x61\x67\x65\x72\x49\x6E\x69\x74\x69\x61\x6C\x69\x7A\x65\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[51];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x72\x6F\x66\x69\x6C\x65\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[52];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x68\x79\x73\x69\x63\x73\x32\x44\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[53];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x47\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[54];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x61\x72\x74\x69\x63\x6C\x65\x53\x79\x73\x74\x65\x6D\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[55];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x68\x79\x73\x69\x63\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[56];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x4A\x53\x4F\x4E\x53\x65\x72\x69\x61\x6C\x69\x7A\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[57];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x49\x6E\x70\x75\x74\x4C\x65\x67\x61\x63\x79\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[58];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x49\x6D\x61\x67\x65\x43\x6F\x6E\x76\x65\x72\x73\x69\x6F\x6E\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[59];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x48\x6F\x74\x52\x65\x6C\x6F\x61\x64\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[60];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x63\x63\x65\x73\x73\x69\x62\x69\x6C\x69\x74\x79\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[61];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x2E\x42\x75\x69\x6C\x64\x65\x72\x2E\x45\x64\x69\x74\x6F\x72\x54\x65\x73\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[62];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[63];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x68\x61\x72\x65\x64\x49\x6E\x74\x65\x72\x6E\x61\x6C\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[64];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x47\x61\x6D\x65\x4F\x62\x6A\x65\x63\x74\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[65];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x2E\x45\x64\x69\x74\x6F\x72"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[66];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x2E\x45\x64\x69\x74\x6F\x72\x54\x65\x73\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[67];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x4E\x65\x74\x77\x6F\x72\x6B\x69\x6E\x67\x2E\x54\x72\x61\x6E\x73\x70\x6F\x72\x74"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[68];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x75\x63\x67\x2E\x51\x6F\x53"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[69];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x45\x6E\x74\x69\x74\x69\x65\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[70];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x43\x6F\x6C\x6C\x65\x63\x74\x69\x6F\x6E\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[71];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x43\x6F\x72\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[72];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x31"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[73];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x33"), NULL);
}
{
UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF * tmp = (UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF *)cache->attributes[74];
UnityEngineModuleAssembly__ctor_m76C129AC6AA438BE601F5279EE9EB599BEF90AF9(tmp, NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[75];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x74\x72\x65\x61\x6D\x69\x6E\x67\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[76];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x70\x72\x69\x74\x65\x4D\x61\x73\x6B\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * tmp = (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF *)cache->attributes[77];
CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B(tmp, 8LL, NULL);
}
{
RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * tmp = (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 *)cache->attributes[78];
RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C(tmp, NULL);
RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline(tmp, true, NULL);
}
{
DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * tmp = (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B *)cache->attributes[79];
DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550(tmp, 263LL, NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[80];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[81];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x6F\x72\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[82];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x4C\x6F\x63\x61\x6C\x69\x7A\x61\x74\x69\x6F\x6E\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[83];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x70\x72\x69\x74\x65\x53\x68\x61\x70\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[84];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[85];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x57\x57\x57\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[86];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x54\x65\x73\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[87];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x44\x65\x70\x6C\x6F\x79\x6D\x65\x6E\x74\x54\x65\x73\x74\x73\x2E\x53\x65\x72\x76\x69\x63\x65\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[88];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x42\x75\x72\x73\x74\x2E\x45\x64\x69\x74\x6F\x72"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[89];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x42\x75\x72\x73\x74"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[90];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[91];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x73\x74\x52\x75\x6E\x6E\x65\x72"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[92];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x75\x72\x63\x68\x61\x73\x69\x6E\x67"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[93];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x64\x76\x65\x72\x74\x69\x73\x65\x6D\x65\x6E\x74\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[94];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x36"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[95];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x41\x6E\x61\x6C\x79\x74\x69\x63\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[96];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x6C\x6F\x75\x64\x2E\x53\x65\x72\x76\x69\x63\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[97];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x54\x65\x73\x74\x73\x2E\x55\x6E\x69\x74\x79\x41\x6E\x61\x6C\x79\x74\x69\x63\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[98];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x6C\x6F\x75\x64"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[99];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x53\x35\x56\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[100];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x53\x35\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[101];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x53\x34\x56\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[102];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x53\x34\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[103];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x58\x62\x6F\x78\x4F\x6E\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[104];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x77\x69\x74\x63\x68\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[105];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x56\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[106];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[107];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x65\x72\x66\x6F\x72\x6D\x61\x6E\x63\x65\x52\x65\x70\x6F\x72\x74\x69\x6E\x67\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[108];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x72\x61\x73\x68\x52\x65\x70\x6F\x72\x74\x69\x6E\x67\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[109];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[110];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x58\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[111];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x4E\x65\x74\x77\x6F\x72\x6B\x69\x6E\x67"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[112];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x41\x73\x73\x65\x74\x42\x75\x6E\x64\x6C\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[113];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x6E\x61\x6C\x79\x74\x69\x63\x73"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[114];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x75\x62\x73\x79\x73\x74\x65\x6D\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[115];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x54\x65\x73\x74\x73\x2E\x54\x69\x6D\x65\x6C\x69\x6E\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[116];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x4E\x45\x54\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[117];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x41\x6E\x61\x6C\x79\x74\x69\x63\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[118];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x4E\x61\x74\x69\x76\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[119];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x78\x74\x43\x6F\x72\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[120];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x49\x6E\x70\x75\x74\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[121];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x49\x4D\x47\x55\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[122];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[123];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x6C\x6F\x74\x68\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[124];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x73\x73\x65\x74\x42\x75\x6E\x64\x6C\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[125];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x57\x69\x6E\x64\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[126];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x56\x69\x64\x65\x6F\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[127];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x56\x65\x68\x69\x63\x6C\x65\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[128];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x75\x62\x73\x74\x61\x6E\x63\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[129];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x54\x65\x78\x74\x75\x72\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[130];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x41\x75\x64\x69\x6F\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[131];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[132];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x54\x65\x73\x74\x50\x72\x6F\x74\x6F\x63\x6F\x6C\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[133];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x43\x75\x72\x6C\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[134];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x43\x6F\x6E\x6E\x65\x63\x74\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[135];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6D\x62\x72\x61\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[136];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[137];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x69\x6C\x65\x6D\x61\x70\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[138];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x78\x74\x52\x65\x6E\x64\x65\x72\x69\x6E\x67\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[139];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x72\x72\x61\x69\x6E\x50\x68\x79\x73\x69\x63\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[140];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x72\x72\x61\x69\x6E\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[141];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x4C\x53\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
{
InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[142];
InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x56\x46\x58\x4D\x6F\x64\x75\x6C\x65"), NULL);
}
}
static void Touch_tDEFED247540BCFA4AD452F1D37EEF4E09B4ACD8C_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C * tmp = (NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C *)cache->attributes[0];
NativeHeaderAttribute__ctor_m0E83F29C5939F185D6E90541591802EB2845FD76(tmp, il2cpp_codegen_string_new_wrapper("\x52\x75\x6E\x74\x69\x6D\x65\x2F\x49\x6E\x70\x75\x74\x2F\x49\x6E\x70\x75\x74\x42\x69\x6E\x64\x69\x6E\x67\x73\x2E\x68"), NULL);
}
}
static void CameraRaycastHelper_t2EB434C1BA2F4B7011FE16E77A471188901F1913_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C * tmp = (NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C *)cache->attributes[0];
NativeHeaderAttribute__ctor_m0E83F29C5939F185D6E90541591802EB2845FD76(tmp, il2cpp_codegen_string_new_wrapper("\x52\x75\x6E\x74\x69\x6D\x65\x2F\x43\x61\x6D\x65\x72\x61\x2F\x43\x61\x6D\x65\x72\x61\x2E\x68"), NULL);
}
}
static void CameraRaycastHelper_t2EB434C1BA2F4B7011FE16E77A471188901F1913_CustomAttributesCacheGenerator_CameraRaycastHelper_RaycastTry_m8AA2714ED46E79851C77B83A3916C515D7280FD1(CustomAttributesCache* cache)
{
{
FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 * tmp = (FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 *)cache->attributes[0];
FreeFunctionAttribute__ctor_mE37D1E356F51A379B44C570574608DC3E49E0DB0(tmp, il2cpp_codegen_string_new_wrapper("\x43\x61\x6D\x65\x72\x61\x53\x63\x72\x69\x70\x74\x69\x6E\x67\x3A\x3A\x52\x61\x79\x63\x61\x73\x74\x54\x72\x79"), NULL);
}
}
static void CameraRaycastHelper_t2EB434C1BA2F4B7011FE16E77A471188901F1913_CustomAttributesCacheGenerator_CameraRaycastHelper_RaycastTry2D_mAA0B0BAC7BE8A2F640A236BB6655EB47E5408C9D(CustomAttributesCache* cache)
{
{
FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 * tmp = (FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 *)cache->attributes[0];
FreeFunctionAttribute__ctor_mE37D1E356F51A379B44C570574608DC3E49E0DB0(tmp, il2cpp_codegen_string_new_wrapper("\x43\x61\x6D\x65\x72\x61\x53\x63\x72\x69\x70\x74\x69\x6E\x67\x3A\x3A\x52\x61\x79\x63\x61\x73\x74\x54\x72\x79\x32\x44"), NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C * tmp = (NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C *)cache->attributes[0];
NativeHeaderAttribute__ctor_m0E83F29C5939F185D6E90541591802EB2845FD76(tmp, il2cpp_codegen_string_new_wrapper("\x52\x75\x6E\x74\x69\x6D\x65\x2F\x49\x6E\x70\x75\x74\x2F\x49\x6E\x70\x75\x74\x42\x69\x6E\x64\x69\x6E\x67\x73\x2E\x68"), NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetKeyInt_mCBF4A2379EF913E589DFF4AE9C9407D0AC6B4E4D(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetKeyUpInt_mBF5453011D089E0D585F38D8BC72AB743CE243BE(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetKeyDownInt_mEAC027107792507CA7F0B1DFBEA4E6289CDCCCBA(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetAxisRaw_mC07AC23FD8D04A69CDB07C6399C93FFFAEB0FC5B(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetButton_m95EE8314087068F3AA9CEF3C3F6A246D55C4734C(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetButtonDown_m2001112EBCA3D5C7B0344EF62C896667F7E67DDF(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetButtonUp_m15AA6B42BD0DDCC7802346E49F30653D750260DD(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetMouseButton_m27BF2DDBF38A38787B83A13D3E6F0F88F7C834C1(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetMouseButtonDown_m466D81FDCC87C9CB07557B39DCB435EB691F1EF3(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetMouseButtonUp_m2BA562F8C4FE8364EEC93970093E776371DF4022(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetTouch_m6A2A31482B1A7D018C3AAC188C02F5D14500C81F(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_get_mousePresent_mBCACCE1C97E146FF46C7AE7FFE693F7BAB4E4FE5(CustomAttributesCache* cache)
{
{
FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 * tmp = (FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 *)cache->attributes[0];
FreeFunctionAttribute__ctor_mE37D1E356F51A379B44C570574608DC3E49E0DB0(tmp, il2cpp_codegen_string_new_wrapper("\x47\x65\x74\x4D\x6F\x75\x73\x65\x50\x72\x65\x73\x65\x6E\x74"), NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_get_touchCount_mE1A06AB1973E3456AE398B3CC5105F27CC7335D6(CustomAttributesCache* cache)
{
{
FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 * tmp = (FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 *)cache->attributes[0];
FreeFunctionAttribute__ctor_mE37D1E356F51A379B44C570574608DC3E49E0DB0(tmp, il2cpp_codegen_string_new_wrapper("\x47\x65\x74\x54\x6F\x75\x63\x68\x43\x6F\x75\x6E\x74"), NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_get_touchSupported_mE5B2F5199B4CC16D89AD2C3125B5CB38F4B4867B(CustomAttributesCache* cache)
{
{
FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 * tmp = (FreeFunctionAttribute_tBB3B939D760190FEC84762F1BA94B99672613D03 *)cache->attributes[0];
FreeFunctionAttribute__ctor_mE37D1E356F51A379B44C570574608DC3E49E0DB0(tmp, il2cpp_codegen_string_new_wrapper("\x49\x73\x54\x6F\x75\x63\x68\x53\x75\x70\x70\x6F\x72\x74\x65\x64"), NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A____mousePosition_PropertyInfo(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A____mouseScrollDelta_PropertyInfo(CustomAttributesCache* cache)
{
{
NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 * tmp = (NativeThrowsAttribute_tF59F2833BDD09C6C89298E603D5C3A598CC08137 *)cache->attributes[0];
NativeThrowsAttribute__ctor_m7FD0B7887043A2A47C39D7029EF5B8C713E08751(tmp, NULL);
}
}
static void SendMouseEvents_tCF069F9DE53C8E51B7AF505FC52F79DB84D81437_CustomAttributesCacheGenerator_SendMouseEvents_SetMouseMoved_mEC659144183FB490A2E1F12112C8F08569A511CD(CustomAttributesCache* cache)
{
{
RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
}
}
static void SendMouseEvents_tCF069F9DE53C8E51B7AF505FC52F79DB84D81437_CustomAttributesCacheGenerator_SendMouseEvents_DoSendMouseEvents_m21561D473C27F19BA9CDBC53B4A13D40DDFBE785(CustomAttributesCache* cache)
{
{
RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
}
}
IL2CPP_EXTERN_C const CustomAttributesCacheGenerator g_UnityEngine_InputLegacyModule_AttributeGenerators[];
const CustomAttributesCacheGenerator g_UnityEngine_InputLegacyModule_AttributeGenerators[25] =
{
Touch_tDEFED247540BCFA4AD452F1D37EEF4E09B4ACD8C_CustomAttributesCacheGenerator,
CameraRaycastHelper_t2EB434C1BA2F4B7011FE16E77A471188901F1913_CustomAttributesCacheGenerator,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator,
CameraRaycastHelper_t2EB434C1BA2F4B7011FE16E77A471188901F1913_CustomAttributesCacheGenerator_CameraRaycastHelper_RaycastTry_m8AA2714ED46E79851C77B83A3916C515D7280FD1,
CameraRaycastHelper_t2EB434C1BA2F4B7011FE16E77A471188901F1913_CustomAttributesCacheGenerator_CameraRaycastHelper_RaycastTry2D_mAA0B0BAC7BE8A2F640A236BB6655EB47E5408C9D,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetKeyInt_mCBF4A2379EF913E589DFF4AE9C9407D0AC6B4E4D,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetKeyUpInt_mBF5453011D089E0D585F38D8BC72AB743CE243BE,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetKeyDownInt_mEAC027107792507CA7F0B1DFBEA4E6289CDCCCBA,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetAxisRaw_mC07AC23FD8D04A69CDB07C6399C93FFFAEB0FC5B,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetButton_m95EE8314087068F3AA9CEF3C3F6A246D55C4734C,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetButtonDown_m2001112EBCA3D5C7B0344EF62C896667F7E67DDF,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetButtonUp_m15AA6B42BD0DDCC7802346E49F30653D750260DD,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetMouseButton_m27BF2DDBF38A38787B83A13D3E6F0F88F7C834C1,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetMouseButtonDown_m466D81FDCC87C9CB07557B39DCB435EB691F1EF3,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetMouseButtonUp_m2BA562F8C4FE8364EEC93970093E776371DF4022,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_GetTouch_m6A2A31482B1A7D018C3AAC188C02F5D14500C81F,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_get_mousePresent_mBCACCE1C97E146FF46C7AE7FFE693F7BAB4E4FE5,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_get_touchCount_mE1A06AB1973E3456AE398B3CC5105F27CC7335D6,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_get_touchSupported_mE5B2F5199B4CC16D89AD2C3125B5CB38F4B4867B,
SendMouseEvents_tCF069F9DE53C8E51B7AF505FC52F79DB84D81437_CustomAttributesCacheGenerator_SendMouseEvents_SetMouseMoved_mEC659144183FB490A2E1F12112C8F08569A511CD,
SendMouseEvents_tCF069F9DE53C8E51B7AF505FC52F79DB84D81437_CustomAttributesCacheGenerator_SendMouseEvents_DoSendMouseEvents_m21561D473C27F19BA9CDBC53B4A13D40DDFBE785,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A____mousePosition_PropertyInfo,
Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A_CustomAttributesCacheGenerator_Input_t763D9CAB93E5035D6CE4D185D9B64D7F3F47202A____mouseScrollDelta_PropertyInfo,
UnityEngine_InputLegacyModule_CustomAttributesCacheGenerator,
};
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_m_wrapNonExceptionThrows_0(L_0);
return;
}
}
| [
"84175668+sohay19@users.noreply.github.com"
] | 84175668+sohay19@users.noreply.github.com |
70702d3a42a6f91bceaa489b984fd90f1bcb1623 | 6a72396fda41b742fd199c988987e3f90cdc0b44 | /AtCoderBeginnerContest/ABC148/ABC148_B.cpp | 7af1877e756ac5afa3f1583886da5582614f3638 | [
"MIT"
] | permissive | XXQ2/AtCoder_Cpp | df916a8454624bee799cec397c0fc41387a59192 | d436553333031498845c0f35c68a5f37092b04db | refs/heads/master | 2021-01-02T18:10:21.778015 | 2020-05-26T00:39:47 | 2020-05-26T00:39:47 | 239,737,187 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 582 | cpp | #include <bits/stdc++.h>
#define forn(i, n) for (int i = 0; i < (int)(n); ++i)
#define for1(i, n) for (int i = 1; i <= (int)(n); ++i)
#define fore(i, l, r) for (int i = (int)(l); i <= (int)(r); ++i)
#define ford(i, n) for (int i = (int)(n) - 1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define PI 3.141592653589793
using namespace std;
using ll = long long;
using ld = long double;
int main(){
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int n;
string s, t;
cin >> n >> s >> t;
forn(i, n){
cout << s[i] << t[i];
}
cout << endl;
} | [
"asbo0502@gmail.com"
] | asbo0502@gmail.com |
e9f18853c00226aee60ff84c31838830a10b6ed0 | 10ffc88adb8757b70e555e5091563714a28cb464 | /souki/number.h | b2978fcbea217c7304c56f99e54b9d6803cef1c8 | [] | no_license | TaichiNikaido/3DTeamGame | 2647e77393baf0e591d12365850c405caddfa80c | e7ef052834ee2961a882cb18164203789b40f4d4 | refs/heads/master | 2023-03-19T12:50:32.420818 | 2021-03-18T18:36:57 | 2021-03-18T18:36:57 | 344,369,196 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,390 | h | //================================================
//
// 数字表示処理 [number.h]
// Author : 佐藤颯紀
//
//================================================
#ifndef _NUMBER_H_
#define _NUMBER_H_
#include "main.h"
//================================================
//マクロ定義
//================================================
#define NUMBER_TYPE (2) // 数字の種類
//================================================
//クラス宣言
//================================================
class CNumber
{
public:
typedef enum
{
NUMBERTYPE_NONE = -1,
NUMBERTYPE_DAIYA,
NUMBERTYPE_MEAT,
NUMBERTYPE_MAX
}NUMBERTYPE;
CNumber();
~CNumber();
static HRESULT Load(void);
static void Unload(void);
static CNumber *Create(D3DXVECTOR3 pos, D3DXVECTOR3 size, NUMBERTYPE type);
HRESULT Init(D3DXVECTOR3 pos, D3DXVECTOR3 size, NUMBERTYPE type);
void Uninit(void);
void Update(void);
void Draw(void);
void SetNumber(int nNumber);
D3DXVECTOR3 GetPosition(void) { return m_pos; }
D3DXVECTOR3 GetSize(void) { return m_size; }
private:
static LPDIRECT3DTEXTURE9 m_apTexture[NUMBER_TYPE];
LPDIRECT3DVERTEXBUFFER9 m_pVtxBuff;
NUMBERTYPE m_type;
D3DXVECTOR3 m_pos; //ポリゴンの位置
D3DXVECTOR3 m_size; //ポリゴンのサイズ
int m_nNumber; //ナンバー
};
#endif // ! _NUMBER_H_
| [
"miwa6421@gmail.com"
] | miwa6421@gmail.com |
430fbac2c13a71ec35ee5c7bc00e1a7673be635a | 27515c7b60b71f4fabf86c1e080b66d6b10cca03 | /J04/ex00/main.cpp | a8cdf9c55bd631651e13fcebe7b13d500582c597 | [] | no_license | bvan-dyc/CPPPool | ff6e4a054385c6506f8bdf1d0fb5ea9758982bbf | 67057d3717b4794dfe2729bc0966e52f32563006 | refs/heads/master | 2021-05-08T22:36:38.304435 | 2018-02-28T13:11:09 | 2018-02-28T13:11:09 | 119,678,302 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 278 | cpp | #include "Sorcerer.hpp"
#include "Victim.hpp"
#include "Peon.hpp"
int main(void)
{
Sorcerer robert("Robert", "the Magnificent");
Victim jim("Jimmy");
Peon joe("Joe");
std::cout << robert << jim << joe;
robert.polymorph(jim);
robert.polymorph(joe);
return 0;
}
| [
"bvan-dyc@student.42.fr"
] | bvan-dyc@student.42.fr |
b2c8701b3ed1ba619205319ceb26061fed2f9fe3 | 3ecce7ff41b6416df296c34d7a0f720e936310f1 | /SklepGui/core/Bill.cpp | 12a565a3f8cd87681f52b3ac3dfca12eb9e9a487 | [] | no_license | KonradKacperDomian/CashRegisterSimulator | 6606db906d87ccb6b659ec4b9637cec057c416a7 | 45016c4586d2778bd5fbdcad4f1d878301bd0a4c | refs/heads/master | 2023-03-31T04:30:54.430361 | 2020-06-23T21:00:43 | 2020-06-23T21:00:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,427 | cpp | #include "Bill.h"
#include "TakeTime.h"
#include "TaxesCounter.h"
#include <string>
#include <iomanip>
#include "ProductListManager.h"
#include "DailyRaport.h"
#include "vatTax.h"
Bill::Bill(int billNumber)
{
TakeTime timeOfBill;
numberOfBill = billNumber;
this->dateOfBill = timeOfBill.hourMinutes;
}
Bill::Bill()
{
TakeTime timeOfBill;
numberOfBill = 0;
this->dateOfBill = timeOfBill.hourMinutes;
}
Bill::~Bill()
{
}
void Bill::addProductToBill(int ID, int numberOfThings)
{
Product newRecordOnBill;
ProductListManager productList;
newRecordOnBill.price = productList.listOfProduct.at(ID - 1).price;
newRecordOnBill.productID = productList.listOfProduct.at(ID - 1).productID;
newRecordOnBill.PTU = productList.listOfProduct.at(ID - 1).PTU;
newRecordOnBill.productName = productList.listOfProduct.at(ID - 1).productName;
for (int j = 0; j < numberOfThings; j++)
listOfProductBuyByConsumer.push_back(newRecordOnBill);
}
std::string Bill::displayRekordOfBill()
{
double toPay = 0;
std::string textOfRecord = "Bill Number: ";
textOfRecord += std::to_string(numberOfBill);
textOfRecord += "\n";
textOfRecord+="ID Price PTU Name \n";
for (auto element : listOfProductBuyByConsumer)
{
textOfRecord += element.display();
toPay += element.price;
}
textOfRecord += "To Pay :";
std::string toPaytext= std::to_string(toPay);
int lenghtOfString=0;
while (toPaytext[lenghtOfString] != '.')
lenghtOfString++;
textOfRecord += toPaytext.substr(0,lenghtOfString+3);
return textOfRecord;
}
void Bill::taxesCounter()
{
TaxesCounter *tax = new VatTax;
vat = tax->Tax(listOfProductBuyByConsumer);
}
void Bill::printBillForCustomer()
{
taxesCounter();
double toPay = 0;
TakeTime timeOfBill;
std::string fileName;
fileName = std::to_string(numberOfBill);
fileName += ".txt";
std::ofstream bill;
bill.open(fileName.c_str(), std::ios::out | std::ios::out);
bill << "Shop SP. Z.O.O\nUL.JanII 324\n02-273 Warsaw\n";
bill << "\n" << "Bill Number: " << numberOfBill << "\n" << "Date of Bill: " << fileName << "\n" << "Produts List:\n";
for (auto element : listOfProductBuyByConsumer)
{
bill << " " << element.productID << " " << element.productName << " " << element.PTU << " " << element.price << " " << "\n";
toPay += element.price;
}
bill << "To Pay: " << toPay<<"\n";
bill << "Taxes: " <<std::fixed << std::setprecision(2)<<vat;
bill.close();
}
| [
"k.domian@stud.elka.pw.edu.pl"
] | k.domian@stud.elka.pw.edu.pl |
9892ab0f327c430649adefa33f1552f7ba82e5a6 | 3d7f40a09ca2a6f58c81877b2f9985e8fabe0d66 | /C++/Week 2/Classwork/menu0.cpp | 4dc1ed460a7815fd9c82632902cf0c1545204dd9 | [] | no_license | mkieft/Computing | 36dbd36ba7ef4c1e3c606d5f05ad81559b756562 | ecabc32ca501a60d62b5e9cb68d5c6a2b7033af1 | refs/heads/master | 2022-12-05T03:48:10.173132 | 2020-08-25T18:15:38 | 2020-08-25T18:15:38 | 290,288,258 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 655 | cpp | /// File: week2/whileDice1.cpp MM
/// roll die til first 5 or 6
#include <iostream>
using namespace std;
#include <ctime>
#include <cstdlib> // for random
void game();
int main() {
int option;
srand(time(0));
cout << "\nMenu: 1. Help\n"
<< "2. Game\n"
<< "0. Exit\n";
cout << "Option? ";
cin >> option;
switch (option) {
case 1: cout << " no help\n"; break;
case 2: game(); break;
case 0: cout << " Bye\n"; break;
case 4: cout << " four\n"; break;
default: cout << "bad input (0, 1, 2)";
} //switch
return 0;
}//main
void game () {
cout << rand() % 6 +1 << endl;
}
| [
"45219678+mkieft@users.noreply.github.com"
] | 45219678+mkieft@users.noreply.github.com |
212089c935a90f671be8e3b299cca2ccbc4f0364 | 27c24223df7bc52457810995a2ebd9d3520965f2 | /day14.cpp | dadf8d763e18b9f5c99366ca982e6d23504f4705 | [] | no_license | Row/advent-of-code-2015 | 7b96be1866e5a187ffd69b75b810434b0200a9a7 | 1f1f34f31294ae8fbd1ea010f260cc3d3a6dc717 | refs/heads/master | 2020-09-25T23:42:38.074439 | 2016-09-04T21:51:39 | 2016-09-04T21:51:39 | 67,369,822 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,296 | cpp | //
// day14.cpp
// advent-of-code
//
// --- Day 14: Reindeer Olympics ---
// This year is the Reindeer Olympics! Reindeer can fly at high speeds, but must rest occasionally to recover their energy. Santa would like to know which of his reindeer is fastest, and so he has them race.
// Reindeer can only either be flying (always at their top speed) or resting (not moving at all), and always spend whole seconds in either state.
// For example, suppose you have the following Reindeer:
// Comet can fly 14 km/s for 10 seconds, but then must rest for 127 seconds.
// Dancer can fly 16 km/s for 11 seconds, but then must rest for 162 seconds.
// After one second, Comet has gone 14 km, while Dancer has gone 16 km. After ten seconds, Comet has gone 140 km, while Dancer has gone 160 km. On the eleventh second, Comet begins resting (staying at 140 km), and Dancer continues on for a total distance of 176 km. On the 12th second, both reindeer are resting. They continue to rest until the 138th second, when Comet flies for another ten seconds. On the 174th second, Dancer flies for another 11 seconds.
// In this example, after the 1000th second, both reindeer are resting, and Comet is in the lead at 1120 km (poor Dancer has only gotten 1056 km by that point). So, in this situation, Comet would win (if the race ended at 1000 seconds).
// Given the descriptions of each reindeer (in your puzzle input), after exactly 2503 seconds, what distance has the winning reindeer traveled?
// Your puzzle answer was 2660.
// --- Part Two ---
// Seeing how reindeer move in bursts, Santa decides he's not pleased with the old scoring system.
// Instead, at the end of each second, he awards one point to the reindeer currently in the lead. (If there are multiple reindeer tied for the lead, they each get one point.) He keeps the traditional 2503 second time limit, of course, as doing otherwise would be entirely ridiculous.
// Given the example reindeer from above, after the first second, Dancer is in the lead and gets one point. He stays in the lead until several seconds into Comet's second burst: after the 140th second, Comet pulls into the lead and gets his first point. Of course, since Dancer had been in the lead for the 139 seconds before that, he has accumulated 139 points by the 140th second.
// After the 1000th second, Dancer has accumulated 689 points, while poor Comet, our old champion, only has 312. So, with the new scoring system, Dancer would win (if the race ended at 1000 seconds).
// Again given the descriptions of each reindeer (in your puzzle input), after exactly 2503 seconds, how many points does the winning reindeer have?
// Your puzzle answer was 1256.
#include <stdio.h>
#include <fstream>
#include <iostream>
#include <string>
#include <cassert>
#include <regex>
#include <iterator>
int main()
{
std::ifstream file("day14.txt");
std::string str;
std::regex reg(".*? can fly (\\d+) km/s for (\\d+) seconds, but then must rest for (\\d+) seconds.");
assert(std::regex_match("Vixen can fly 19 km/s for 7 seconds, but then must rest for 124 seconds.", reg));
std::vector<short> speed;
std::vector<short> speedInterval;
std::vector<short> restInterval;
while (std::getline(file, str))
{
std::smatch m;
if (std::regex_search(str, m, reg)) {
speed.push_back(std::stoi(m[1]));
speedInterval.push_back(std::stoi(m[2]));
restInterval.push_back(std::stoi(m[3]));
} else {
assert(false);
}
}
short numberOfReindeers = speed.size();
int seconds = 2503;
std::vector<int> positions(numberOfReindeers);
std::vector<short> points(numberOfReindeers);
for (auto s = 0; s < seconds; ++s) {
for (int i = 0; i < numberOfReindeers; ++i) {
if (speedInterval[i] > s % (speedInterval[i] + restInterval[i])) {
positions[i] += speed[i];
}
}
auto max = std::max_element(positions.begin(), positions.end());
for (int i = 0; i < positions.size(); ++i) {
if (*max == positions[i]) {
points[i]++;
}
}
}
auto max = std::max_element(points.begin(), points.end());
printf("Winning reindeer has %d points\n", *max);
}
| [
"jon@powha.net"
] | jon@powha.net |
c62628045d6d6bca99a873cdb3ced5d8a13788c4 | d0ba6c4eab5e357323f57c82e508a99954a674a0 | /Ardupilot/TurnOn_Motors/TurnOn_Motors.ino | b79ddc5def1011ed9083383467dad2b665c5b870 | [] | no_license | EduardoCibernetica/Turn_on_Drone_with_RFID | c8f7232e522b6ae985f5f95d490c09aeb3729dba | 24f85e9bda48c96b2bbdae658ab3ed1c8d3ce622 | refs/heads/master | 2021-01-23T02:16:05.950836 | 2017-03-24T18:07:50 | 2017-03-24T18:07:50 | 85,980,711 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,785 | ino |
#include <AP_Common.h>
#include <AP_Math.h>
#include <AP_Param.h>
#include <AP_Progmem.h>
#include <AP_ADC.h>
#include <AP_InertialSensor.h>
#include <AP_HAL.h>
#include <AP_HAL_AVR.h>
const AP_HAL::HAL& hal = AP_HAL_AVR_APM2; // Hardware abstraction layer
void setup()
{
hal.rcout->set_freq(0xF, 490);
hal.rcout->enable_mask(0xFF);
}
/*
Tabla de entradas
0 - > 1500 ApagarS
150 -> 1200 Incremento
222 -> 1777 Encender
254 -> 2040 Decremento
*/
void loop()
{
int16_t x;
uint16_t rcthroff = 900;
uint16_t rcthr = 1100;
x = hal.rcin->read(6);
hal.console->printf_P(PSTR("%d \r\n"),x);
//*********Off*********
if(x > 1470 && x < 1520)
{
hal.console->printf_P(PSTR("OFF\n"),"");
hal.rcout->write(0, rcthroff);
hal.rcout->write(1, rcthroff);
hal.rcout->write(2, rcthroff);
hal.rcout->write(3, rcthroff);
rcthr = 1100;
}
//*****Incremento****
if (x > 2000 && x < 2100)
{
hal.console->printf_P(PSTR("INCREMENTO\n"),"");
hal.rcout->write(0, rcthr);
hal.rcout->write(1, rcthr);
hal.rcout->write(2, rcthr);
hal.rcout->write(3, rcthr);
if(rcthr<1800){
rcthr = rcthr + 10;
}
else{rcthr = 1100;}
}
//*******ON************
if (x > 1600 && x < 1800)
{
hal.console->printf_P(PSTR("ENCENDIDO\n"),"");
hal.rcout->write(0, rcthr);
hal.rcout->write(1, rcthr);
hal.rcout->write(2, rcthr);
hal.rcout->write(3, rcthr);
}
//******DECREMENTO********
if (x > 1190 && x < 1250)
{
hal.console->printf_P(PSTR("DECREMENTO\n"),"");
hal.rcout->write(0, rcthr);
hal.rcout->write(1, rcthr);
hal.rcout->write(2, rcthr);
hal.rcout->write(3, rcthr);
rcthr = rcthr - 10 ;
}
}
AP_HAL_MAIN();
| [
"luis.valtierra@gsi.mx"
] | luis.valtierra@gsi.mx |
5e4d9fa1d197f20581d87e578c3d1b8690695aff | 83f78c63720941e4c38fc93b128db7cec95d9222 | /实验六/实验六.cpp | 054a5c25a63f0dff054f1709c2859c6b0e23e2b8 | [] | no_license | Ppsyche/dataStructure | de6d0e1c892d169748f6b7df3e75a5e769e4fd6c | 0e3b4ef59fe4387f70b64e7ee83479d81d498c69 | refs/heads/master | 2021-06-20T13:15:08.177137 | 2017-07-07T05:29:34 | 2017-07-07T05:29:34 | 96,501,442 | 1 | 1 | null | null | null | null | GB18030 | C++ | false | false | 4,805 | cpp | #include<iostream>
using namespace std;
#define MAX 100
int t=-1,w=1,c=1;
typedef struct BTN
{
int a[4];
struct BTN *nf,*nfl,*nfy,*nfb;
}BTN,*BT;
typedef struct
{
BT *b;
int front;
int rear;
}SS;
SS S;
BT bt[10]={NULL};
void nf(BT T,BT st[],int z);
int panduan1(BT &T,BT ct[],int n);
int panduan2(BT &T);
void shuchu(BT st[]);
int panduan3(BT Q,int z);
int panduan4(BT Q);
void chushihua(SS &S);
void main()
{
int xz=1;
while(xz)
{
cout<<"请选择遍历方法:"<<endl;
cout<<"1.深度优先"<<endl;
cout<<"2.广度优先"<<endl;
cout<<"0.退出"<<endl;
cin>>xz;
if(xz==1)
{
BT T=new BTN;
BT st[100]= {NULL};
T->a[0]=0;
T->a[1]=0;
T->a[2]=0;
T->a[3]=0;
st[++t]=T;
nf(T->nf,st,0);
nf(T->nfl,st,1);
nf(T->nfy,st,2);
nf(T->nfb,st,3);
}
else if(xz==2)
{
int e=0;
chushihua(S);
BT B=new BTN;
B->a[0]=0;
B->a[1]=0;
B->a[2]=0;
B->a[3]=0;
bt[0]=B;
S.b[S.rear]=B;
S.rear++;
while(S.rear!=S.front)
{
e=0;
e=panduan3(B->nf,0);
if(e==1)
goto GOTO;
e=panduan3(B->nfl,1);
if(e==1)
goto GOTO;
e=panduan3(B->nfy,2);
if(e==1)
goto GOTO;
e=panduan3(B->nfb,3);
GOTO: if(e==0)
S.front++;
}
shuchu(bt);
}
}
return;
}
void nf(BT T,BT st[],int z)
{
int n=t;
T=new BTN;
BT p=st[n];
n--;
T->a[0]=p->a[0];
T->a[1]=p->a[1];
T->a[2]=p->a[2];
T->a[3]=p->a[3];
if(T->a[0]==0)
{
T->a[0]=1;
if(z==1)
{
if(T->a[1]==0)
T->a[1]=1;
else
return;
}
if(z==2)
{
if(T->a[2]==0)
T->a[2]=1;
else
return;
}
if(z==3)
{
if(T->a[3]==0)
T->a[3]=1;
else
return;
}
}
else if(T->a[0]==1)
{
T->a[0]=0;
if(z==1)
{
if(T->a[1]==1)
T->a[1]=0;
else
return;
}
if(z==2)
{
if(T->a[2]==1)
T->a[2]=0;
else
return;
}
if(z==3)
{
if(T->a[3]==1)
T->a[3]=0;
else
return;
}
}
int q=panduan1(T,st,n);
if(q==0)
return;
else
{
if(T->a[0]+T->a[1]+T->a[2]+T->a[3]==4)
{
st[++t]=T;
shuchu(st);
t--;
return;
}
q=panduan2(T);
if(q==0)
return;
st[++t]=T;
nf(T->nf,st,0);
nf(T->nfl,st,1);
nf(T->nfy,st,2);
nf(T->nfb,st,3);
t--;
}
}
int panduan1(BT &T,BT ct[],int n)
{
BT p;
while(n>=0)
{
p=ct[n--];
if(T->a[0]==p->a[0]&&T->a[1]==p->a[1]&&T->a[2]==p->a[2]&&T->a[3]==p->a[3])
return 0;
}
return 1;
}
int panduan2(BT &T)
{
if((T->a[1]==T->a[2]&&T->a[0]!=T->a[1])||(T->a[2]==T->a[3]&&T->a[0]!=T->a[2]))
return 0;
return 1;
}
void shuchu(BT st[])
{
cout<<"方案"<<w<<":"<<endl;
cout<<" ————————————————————————————"<<endl;
cout<<"| 步骤 | 南岸 | 北岸 |"<<endl;
cout<<" ————————————————————————————"<<endl;
for(int i=0;st[i]!=NULL;i++)
{
BT p=st[i];
cout<<"| "<<i<<" | ";
if(p->a[0]==0)
cout<<"农夫 ";
else
cout<<" ";
if(p->a[1]==0)
cout<<"狼 ";
else
cout<<" ";
if(p->a[2]==0)
cout<<"羊 ";
else
cout<<" ";
if(p->a[3]==0)
cout<<"白菜 | ";
else
cout<<" | ";
if(p->a[0]==1)
cout<<"农夫 ";
else
cout<<" ";
if(p->a[1]==1)
cout<<"狼 ";
else
cout<<" ";
if(p->a[2]==1)
cout<<"羊 ";
else
cout<<" ";
if(p->a[3]==1)
cout<<"白菜 |"<<endl;
else
cout<<" |"<<endl;
cout<<" ————————————————————————————"<<endl;
}
w++;
}
int panduan3(BT Q,int z)
{
BT B=S.b[S.front];
Q=new BTN;
Q->a[0]=B->a[0];
Q->a[1]=B->a[1];
Q->a[2]=B->a[2];
Q->a[3]=B->a[3];
if(Q->a[0]==0)
{
Q->a[0]=1;
if(z==1)
{
if(Q->a[1]==0)
Q->a[1]=1;
else
return 0;
}
if(z==2)
{
if(Q->a[2]==0)
Q->a[2]=1;
else
return 0;
}
if(z==3)
{
if(Q->a[3]==0)
Q->a[3]=1;
else
return 0;
}
}
else if(Q->a[0]==1)
{
Q->a[0]=0;
if(z==1)
{
if(Q->a[1]==1)
Q->a[1]=0;
else
return 0;
}
if(z==2)
{
if(Q->a[2]==1)
Q->a[2]=0;
else
return 0;
}
if(z==3)
{
if(Q->a[3]==1)
Q->a[3]=0;
else
return 0;
}
}
int q=panduan4(Q);
if(q==0)
return 0;
else
{
q=panduan2(Q);
if(q==0)
return 0;
}
S.front++;
S.b[S.rear]=Q;
S.rear++;
bt[c]=Q;
c++;
return 1;
}
int panduan4(BT Q)
{
for(int i=0;i<c;i++)
{
BT p=bt[i];
if(Q->a[0]==p->a[0]&&Q->a[1]==p->a[1]&&Q->a[2]==p->a[2]&&Q->a[3]==p->a[3])
return 0;
}
return 1;
}
void chushihua(SS &S)
{
S.b=new BT[MAX];
if(!S.b)
cout<<"失败!";
S.front=S.rear=0;
}
| [
"15145032896@163.com"
] | 15145032896@163.com |
a0a4fd4182b6092f7a4f422665a260b84fd815a5 | 33eab256de2307c19b6a92e9f92bef94cec16aa0 | /208A.cpp | de094080f619891f9fc6e67fc0127d830a52736c | [] | no_license | latteprog/Codeforces | 6856357e7d51c0d4346dd1eb8fb3b45507786451 | 1873c5167cd2834eda2ba14eaeed9fdac5ee6ec2 | refs/heads/master | 2021-01-09T23:35:16.047481 | 2016-11-30T18:19:34 | 2016-11-30T18:19:34 | 73,215,513 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,283 | cpp | /**************************************************
WhatTheFua
Anan Schuett
arnan_s@msn.com
**************************************************/
#define BL for(int K = 1; K <= T; K++)
#define F first
#define INF 2147483647
#define LNF 8000000000000000000
#define P107 1000000007
#define P109 1000000009
#define PB push_back
#define PF push_front
#define I insert
#define E erase
#define S second
#define db double
#define ll long long int
#define mp make_pair
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <deque>
#include <functional>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
using namespace std;
char str[210];
int main()
{
int i;
bool pt = 0,ptd = 0;
scanf("%s",str);
for(i = 0; str[i] != 0; i++)
{
if(str[i] == 'W' && str[i + 1] == 'U' && str[i + 2] == 'B')
{
i += 2;
pt = 1;
continue;
}
if(ptd == 0)
{
pt = 0;
ptd = 1;
} else {
if(pt == 1)
{
printf(" ");
pt = 0;
}
}
printf("%c",str[i]);
}
} | [
"arnan_s@msn.com"
] | arnan_s@msn.com |
5116aacc5961bdca9d743d6d70b2910ffab7be98 | 6cfcec94a215981d26a60c7b5e8b65e1da45660a | /initial.h | 2e70d25eca5d1781b0e06f74194ad06fa1608f0e | [] | no_license | gun7992/send_arp | f85432924336623dc914fbe6a184c0a69a245e5b | a73c8cdc933e0264c0501bf5fd867c9f5f9154fb | refs/heads/master | 2021-06-21T23:53:31.236153 | 2021-03-10T01:30:04 | 2021-03-10T01:30:04 | 200,410,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,734 | h | #pragma once
#include <iostream>
#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <net/if.h>
#include <unistd.h>
#include <pcap.h>
#include <stdint.h>
#include "headers.h"
#define REQUEST 0x0001
#define REPLY 0x0002
#define RARP_REQ 0x0003
#define RARP_RES 0x0004
void get_my_mac(uint8_t* smac, char* iface)
{
int fd;
struct ifreq ifr;
char *mac;
fd = socket(AF_INET, SOCK_DGRAM, 0);
ifr.ifr_addr.sa_family = AF_INET;
strncpy((char *)ifr.ifr_name , (const char *)iface , IFNAMSIZ-1);
ioctl(fd, SIOCGIFHWADDR, &ifr);
close(fd);
mac = (char *)ifr.ifr_hwaddr.sa_data;
for(int i=0; i<6; i++) smac[i] = mac[i];
}
u_char* make_arp(int opcode, uint8_t* source_mac, uint8_t* destination_mac, uint8_t* sender_mac, uint8_t* sender_ip, uint8_t* target_mac, uint8_t* target_ip)
{
u_char* packet = (u_char*)malloc(128);
struct ethernet_hdr eth;
struct arp_hdr arp;
int i = 0;
memcpy(eth.ether_dmac, destination_mac,6);
memcpy(eth.ether_smac, source_mac, 6);
memcpy(arp.S_hardware_addr, sender_mac, 6);
memcpy(arp.T_hardware_addr, target_mac, 6);
for(i = 0; i < 4; i++)
{
arp.S_protocol_addr[i] = sender_ip[i];
arp.T_protocol_addr[i] = target_ip[i];
}
arp.Opcode = htons(opcode);
eth.ether_type = htons(0x0806);
arp.hardware_type = htons(0x0001);
arp.protocol_type = htons(0x0800);
arp.H_add_len = 0x06;
arp.P_add_len = 0x04;
memcpy(packet, ð, 14);
memcpy(packet+14, &arp, 28);
return packet;
}
| [
"gun7992@gmail.com"
] | gun7992@gmail.com |
a3a83b285237c686900528b03839e0c1f3faf749 | 91b01a32feaebb06d0ac3e6c32a09e2b6e043745 | /core.math/includes/core.math/matrix/operations/MatrixInversion.h | 7053370dbcf9c59bac830e4ad7373a34d97a05ef | [
"MIT"
] | permissive | toeb/cpp.core | 4c5a58f247079351ffe61dbe846be2acba6bc9a9 | 84c782b1e0919dd598c3c19c8e5c71f27453ebf2 | refs/heads/master | 2021-01-23T12:48:05.043451 | 2015-03-20T09:43:26 | 2015-03-20T09:43:26 | 32,568,867 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 466 | h | #pragma once
#include <core.math/core.math.h>
NS_BEGIN(CORE_MATH_NAMESPACE)
enum MatrixProperty{
Default = 0,
PositiveDefinite=1,
PositiveSemidefinite=2,
Diagonal=3,
Symmetric=4
};
template<typename InvertedMatrixType, typename OriginalMatrixType, MatrixProperty props=Default>
class MatrixInversion{
public:
static void operation(InvertedMatrixType & inv, const OriginalMatrixType & orig){
}
};
NS_END(CORE_MATH_NAMESPACE)
| [
"becker.tobi@gmai.com"
] | becker.tobi@gmai.com |
ec6972b90b5735d5d6199a7afa523732b2e42869 | 192f639939307313737969763ccbdbaa68352317 | /func/demo/time.cpp | ecf7dccf8e13976ae4e5dcce7e92ae781263eea6 | [
"Apache-2.0"
] | permissive | mkvoya/faasm | 90f0fee34377266ce162f1583b7ddd21a43f30f6 | 6d85a5507a2ce10fcd0c486251e1d26c0e013e28 | refs/heads/master | 2022-12-28T23:22:28.128943 | 2020-10-21T18:53:24 | 2020-10-21T18:53:24 | 306,117,491 | 0 | 0 | Apache-2.0 | 2020-10-21T18:45:48 | 2020-10-21T18:45:46 | null | UTF-8 | C++ | false | false | 326 | cpp | #include "faasm/faasm.h"
#include "faasm/time.h"
#include <stdio.h>
FAASM_MAIN_FUNC() {
double secs = faasm::getSecondsSinceEpoch();
size_t strLen = 8 + sizeof(double);
char str[strLen];
sprintf(str, "Seconds: %.3f", secs);
auto output = BYTES(str);
faasmSetOutput(output, strLen);
return 0;
} | [
"noreply@github.com"
] | mkvoya.noreply@github.com |
2d119eef7fe277782569131429eab4695e59c859 | fe14c4e61d410fe18ea66a785b5b345b69a222e4 | /NetmfPkg/Library/UefiCppEntryPoint/TestCpp/TestCpp.cpp | db6230bc4817bb4856a8b99d13363b4560f362bc | [] | no_license | RastusZhang/UefiNetmf | 3ebd3e29feedd7d7476975340fffcd7018d1efc5 | 0ca8dcf121e299ebd0a837fcee4057b5695ad6ed | refs/heads/master | 2023-01-11T05:45:44.905528 | 2020-11-13T09:21:29 | 2020-11-13T09:21:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,002 | cpp | /** @file
Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
#ifdef __cplusplus
extern "C" {
#endif
#include <Uefi.h>
#include <Library/UefiLib.h>
#include <Library/DebugLib.h>
#ifdef __cplusplus
}
#endif
class TestClass {
private:
UINTN Member1;
UINTN *Addr;
public:
TestClass()
{
DEBUG ((EFI_D_INFO, "TestClass - 0x%x\n", Member1));
Member1 = 1;
Addr = new UINTN;
}
~TestClass()
{
Member1 = 0;
delete Addr;
DEBUG ((EFI_D_INFO, "TestClass(D) - 0x%x\n", Member1));
}
VOID
SetNumber (
IN UINTN Number
)
{
DEBUG ((EFI_D_INFO, "SetNumber - 0x%x\n", Number));
Member1 = Number;
}
UINTN
GetNumber (
VOID
)
{
DEBUG ((EFI_D_INFO, "GetNumber - 0x%x\n", Member1));
return Member1;
}
};
typedef class TestClass TestClass;
TestClass testClass;
TestClass testClass2;
UINTN DummySymbol;
EFI_STATUS
EFIAPI
MainEntryPoint (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
#if 1
UINTN *Ptr;
UINTN *Array;
Ptr = new UINTN;
Array = new UINTN[100];
*Ptr = 5;
delete Ptr;
delete[] Array;
Print ((CHAR16 *)L"Number - 0x%x\n", testClass.GetNumber ());
testClass.SetNumber (2);
Print ((CHAR16 *)L"Number - 0x%x\n", testClass.GetNumber ());
Print ((CHAR16 *)L"Number - 0x%x\n", testClass2.GetNumber ());
testClass2.SetNumber (3);
Print ((CHAR16 *)L"Number - 0x%x\n", testClass2.GetNumber ());
#endif
return EFI_SUCCESS;
}
| [
"jiewen.yao@intel.com"
] | jiewen.yao@intel.com |
f300db451b0309567ace1f283ffbbae2f3c6c4e0 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14061/function14061_schedule_13/function14061_schedule_13.cpp | 4d2dfbd1260b6578c932091982b82172813462c2 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,065 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function14061_schedule_13");
constant c0("c0", 512), c1("c1", 256), c2("c2", 512);
var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i100("i100", 2, c0 - 2), i101("i101", 2, c1 - 2), i102("i102", 2, c2 - 2), i01("i01"), i02("i02"), i03("i03"), i04("i04");
input input0("input0", {i0, i1, i2}, p_int32);
computation comp0("comp0", {i100, i101, i102}, (input0(i100, i101, i102) - input0(i100 + 1, i101, i102) + input0(i100 + 2, i101, i102) - input0(i100 - 1, i101, i102) - input0(i100 - 2, i101, i102)));
comp0.tile(i101, i102, 128, 32, i01, i02, i03, i04);
comp0.parallelize(i100);
buffer buf00("buf00", {512, 256, 512}, p_int32, a_input);
buffer buf0("buf0", {512, 256, 512}, p_int32, a_output);
input0.store_in(&buf00);
comp0.store_in(&buf0);
tiramisu::codegen({&buf00, &buf0}, "../data/programs/function14061/function14061_schedule_13/function14061_schedule_13.o");
return 0;
} | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
817e68e73dd86fa4b3cf5dab8540e308bf713ea1 | 22d9640edca14b31280fae414f188739a82733e4 | /Code/VTK/include/vtk-5.2/vtkExtractCTHPart.h | 27fa82f27de065ba41c0cc3171ce0f74008b3abd | [] | no_license | tack1/Casam | ad0a98febdb566c411adfe6983fcf63442b5eed5 | 3914de9d34c830d4a23a785768579bea80342f41 | refs/heads/master | 2020-04-06T03:45:40.734355 | 2009-06-10T14:54:07 | 2009-06-10T14:54:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,879 | h | /*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkExtractCTHPart.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkExtractCTHPart - Generates surface of an CTH volume fraction.
// .SECTION Description
// vtkExtractCTHPart is a filter that is specialized for creating
// visualization of a CTH simulation. First it converts the cell data
// to point data. It contours the selected volume fraction at a value
// of 0.5. The user has the option of clipping the part with a plane.
// Clipped surfaces of the part are generated.
#ifndef __vtkExtractCTHPart_h
#define __vtkExtractCTHPart_h
#include "vtkMultiBlockDataSetAlgorithm.h"
class vtkAppendPolyData;
class vtkBoundingBox;
class vtkClipPolyData;
class vtkContourFilter;
class vtkCutter;
class vtkDataArray;
class vtkDataSet;
class vtkDataSetSurfaceFilter;
class vtkDoubleArray;
class vtkExtractCTHPartInternal;
class vtkImageData;
class vtkInformationDoubleVectorKey;
class vtkCompositeDataSet;
class vtkMultiProcessController;
class vtkPlane;
class vtkPolyData;
class vtkRectilinearGrid;
class vtkUniformGrid;
class vtkUnsignedCharArray;
//#define EXTRACT_USE_IMAGE_DATA 1
class VTK_PARALLEL_EXPORT vtkExtractCTHPart : public vtkMultiBlockDataSetAlgorithm
{
public:
vtkTypeRevisionMacro(vtkExtractCTHPart,vtkMultiBlockDataSetAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// key to record the bounds of the hierarchical dataset.
static vtkInformationDoubleVectorKey *BOUNDS();
// Description:
// Construct object with initial range (0,1) and single contour value
// of 0.0.
static vtkExtractCTHPart *New();
// Description:
// Names of cell volume fraction arrays to extract.
void RemoveDoubleVolumeArrayNames();
void RemoveFloatVolumeArrayNames();
void RemoveUnsignedCharVolumeArrayNames();
int GetNumberOfVolumeArrayNames();
const char* GetVolumeArrayName(int idx);
// for backwards compatibility
void RemoveAllVolumeArrayNames();
// Description
// Names of cell volume fraction arrays to extract.
// Each of the volume fraction arrays must be of the same type.
// These three methods enforce that on input, removing any prior arrays
// of the wrong type whenever a new array is added.
void AddDoubleVolumeArrayName(char* arrayName);
void AddFloatVolumeArrayName(char* arrayName);
void AddUnsignedCharVolumeArrayName(char* arrayName);
//for backwards compatibility
void AddVolumeArrayName(char* arrayName);
// Description:
// Set, get or maninpulate the implicit clipping plane.
void SetClipPlane(vtkPlane *clipPlane);
vtkGetObjectMacro(ClipPlane, vtkPlane);
// Description:
// Look at clip plane to compute MTime.
unsigned long GetMTime();
// Description:
// Set the controller used to coordinate parallel processing.
void SetController(vtkMultiProcessController* controller);
// Description:
// Return the controller used to coordinate parallel processing. By default,
// it is the global controller.
vtkGetObjectMacro(Controller,vtkMultiProcessController);
// Description:
// Set and get the volume fraction surface value. This value should be
// between 0 and 1
vtkSetClampMacro(VolumeFractionSurfaceValue, double, 0.0, 1.0);
vtkGetMacro(VolumeFractionSurfaceValue, double);
protected:
vtkExtractCTHPart();
~vtkExtractCTHPart();
virtual int RequestInformation(vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector);
virtual int RequestData(vtkInformation *, vtkInformationVector **,
vtkInformationVector *);
// Description:
// the input is a hierarchy of vtkUniformGrid or one level of
// vtkRectilinearGrid. The output is a hierarchy of vtkPolyData.
// Description:
// Compute the bounds over the composite dataset, some sub-dataset
// can be on other processors.
void ComputeBounds(vtkCompositeDataSet *input,
int processNumber,
int numProcessors);
void ExecutePart(const char *arrayName,
vtkCompositeDataSet *input,
vtkAppendPolyData *appendSurface,
vtkAppendPolyData *append,
float minProgress,
float maxProgress);
void ExecutePartOnUniformGrid(const char *arrayName,
#ifdef EXTRACT_USE_IMAGE_DATA
vtkImageData *input,
#else
vtkUniformGrid *input,
#endif
vtkAppendPolyData *appendSurface,
vtkAppendPolyData *append,
float minProgress,
float maxProgress);
void ExecutePartOnRectilinearGrid(const char *arrayName,
vtkRectilinearGrid *input,
vtkAppendPolyData *appendSurface,
vtkAppendPolyData *append,
float minProgress,
float maxProgress);
void ExecuteCellDataToPointData(vtkDataArray *cellVolumeFraction,
vtkDoubleArray *pointVolumeFraction,
int *dims,
float minProgress,
float maxProgress,
int reportProgress);
virtual int FillInputPortInformation(int port,
vtkInformation *info);
void CreateInternalPipeline();
void DeleteInternalPipeline();
// Description:
// Append quads for faces of the block that actually on the bounds
// of the hierarchical dataset. Deals with ghost cells.
// Return true if the output is not empty.
int ExtractUniformGridSurface(
#ifdef EXTRACT_USE_IMAGE_DATA
vtkImageData *input,
#else
vtkUniformGrid *input,
#endif
vtkPolyData *output);
// Description:
// Append quads for faces of the block that actually on the bounds
// of the hierarchical dataset. Deals with ghost cells.
// Return true if the output is not empty.
int ExtractRectilinearGridSurface(vtkRectilinearGrid *input,
vtkPolyData *output);
void ExecuteFaceQuads(vtkDataSet *input,
vtkPolyData *output,
int maxFlag,
int originExtents[3],
int ext[6],
int aAxis,
int bAxis,
int cAxis);
// Description:
// Is block face on axis0 (either min or max depending on the maxFlag)
// composed of only ghost cells?
// \pre valid_axis0: axis0>=0 && axis0<=2
int IsGhostFace(int axis0,
int maxFlag,
int dims[3],
vtkUnsignedCharArray *ghostArray);
vtkPlane *ClipPlane;
vtkExtractCTHPartInternal* Internals;
// Internal Pipeline elements
vtkDoubleArray *PointVolumeFraction;
#ifdef EXTRACT_USE_IMAGE_DATA
vtkImageData *Data;
#else
vtkUniformGrid *Data;
#endif
vtkContourFilter *Contour;
vtkAppendPolyData *Append2;
vtkClipPolyData *Clip1;
vtkCutter *Cut;
vtkClipPolyData *Clip2;
vtkPolyData *PolyData;
vtkPolyData *RPolyData;
vtkPolyData *SurfacePolyData;
vtkRectilinearGrid *RData;
vtkContourFilter *RContour;
vtkAppendPolyData *RAppend2;
vtkClipPolyData *RClip1;
vtkCutter *RCut;
vtkClipPolyData *RClip2;
void EvaluateVolumeFractionType(vtkRectilinearGrid* rg,
vtkCompositeDataSet* input);
int VolumeFractionType;
double VolumeFractionSurfaceValue;
double VolumeFractionSurfaceValueInternal;
int OverwriteVolumeFractionSurfaceValue;
vtkBoundingBox *Bounds; // Whole bounds (dataset over all the processors)
vtkMultiProcessController *Controller;
private:
vtkExtractCTHPart(const vtkExtractCTHPart&); // Not implemented.
void operator=(const vtkExtractCTHPart&); // Not implemented.
};
#endif
| [
"nnsmit@9b22acdf-97ab-464f-81e2-08fcc4a6931f"
] | nnsmit@9b22acdf-97ab-464f-81e2-08fcc4a6931f |
09f991cdb0adcf26e5e9e18311d6a0c88832386e | c6ee9dd637b9698b74b3ea08783ba19edece3ffb | /Demo.cpp | bfd917291930fe7279f352020f4fc30b0ce79c88 | [] | no_license | chimarry/ConwayGameOfLife | 732bd159997d0841b56cd4849df5c7619709107a | 97f7ea8d75756eed321dc94ebb92a54a527e15ec | refs/heads/master | 2023-02-16T01:35:44.418198 | 2021-01-09T13:32:41 | 2021-01-09T13:32:41 | 327,843,972 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 202 | cpp | #pragma warning(disable : 4996)
#include <iostream>
#include <CL\cl.hpp>
#include <vector>
#include "ConwayGameOfLifeExecutor.h"
int main() {
ConwayGameOfLifeExecutor executor;
executor.simulate();
} | [
"marija.vanja.novakovic@gmail.com"
] | marija.vanja.novakovic@gmail.com |
b14c06e67273b397b8f9f88eef31222a42293578 | 766d3903bf3bd2fc54d26e3eb6850095e9690117 | /src/Event.cpp | 17548c905ba346668ecdb649cc72d8ec42ccc5b3 | [] | no_license | HelloUSTC114/TimeStampProcess | b2d525ebefd4b723013cf5a5ad83385fae1247b1 | 1abbb10ce872d9cca1e6deab970d107f20d440a4 | refs/heads/master | 2023-04-29T15:04:32.318593 | 2023-04-24T05:20:17 | 2023-04-24T05:20:17 | 298,754,632 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,610 | cpp | #include "Event.h"
ClassImp(Track);
ClassImp(T0Data);
ClassImp(Event);
Track::Track(UChar_t mac5, UShort_t chg[32], UInt_t ts0, UInt_t ts1, UInt_t ts0_ref, UInt_t ts1_ref)
{
fMac5 = mac5;
memcpy(fChg, chg, sizeof(UShort_t) * 32);
fTs0 = ts0;
fTs1 = ts1;
fTs0_ref = ts0_ref;
fTs1_ref = ts1_ref;
fTime.SetTime(ts0, 0);
}
void Track::SetStampOffset(Int_t offset)
{
fTime.fOffset = offset;
}
void T0Data::SetStampOffset(Int_t offset)
{
fTime.fOffset = offset;
}
ifstream &operator>>(ifstream &is, T0Data &t0Data)
{
is >> t0Data.fEventNum >> t0Data.fT1 >> t0Data.fT2 >> t0Data.fTOT1 >> t0Data.fTOT2;
}
ostream &operator<<(ostream &os, const Event &a)
{
os << "TimeStam: " << a.fTime.fTimeStamp - a.fTime.fOffset << endl;
return os;
}
TTree *&Event::GetCurrentTree()
{
static TTree *currentTree = NULL;
return currentTree;
}
Event::Event(Track *track)
{
// Generate Event from a track data, just asign this track to the event, and set t0 data as null pointer.
fTracks.Add(track);
fNTracks = 1;
fTime = track->fTime;
fValid = 1;
}
Event::Event(T0Data *t0)
{
fT0Data.Add(t0);
fNT0Data = 1;
fTime = t0->fTime;
fValid = 1;
}
Event &Event::GenerateFromTrack(Track *track)
{
Clear();
fTracks.Add(track);
fNTracks = 1;
fTime = track->fTime;
fValid = 1;
return *this;
}
Event &Event::GenerateFromT0Data(T0Data *t0Data)
{
Clear();
fT0Data.Add(t0Data);
fNT0Data = 1;
fTime = t0Data->fTime;
fValid = 1;
return *this;
}
Event::~Event()
{
Clear();
}
void Event::Clear()
{
if (!fValid)
return;
fTime.ClearStamp();
// Clear tracker data
for (int i = 0; i < fTracks.GetEntries(); i++)
{
delete fTracks[i];
}
fTracks.Clear(); // Also call Track::Clear
fNTracks = 0;
// Clear T0 Data;
for (int i = 0; i < fT0Data.GetEntries(); i++)
{
delete fT0Data[i];
}
fT0Data.Clear();
fNT0Data = 0;
fValid = 0;
}
void Event::TransferEvent(Event &event, TTree *tree)
{
FillEvent(tree);
Clear();
MergeEvent(event);
}
bool Event::MergeEvent(Event &event)
{
if (fValid)
{
if (!(fTime == event.fTime))
{
return false;
}
}
// Merge time stamp, this can be handled by TimeStamp itself
cout << "fTime: " << fTime.fAvergeCount << '\t' << fTime.fTimeStamp - fTime.fOffset << endl;
fTime = event.fTime;
cout << "fTime: " << fTime.fAvergeCount << '\t' << fTime.fTimeStamp - fTime.fOffset << endl;
// Merge T0
for (int i = 0; i < event.fT0Data.GetEntries(); i++)
{
fT0Data.Add(event.fT0Data[i]);
}
fNT0Data += event.fNT0Data;
fValid |= event.fValid;
// Merge fTracks
for (int i = 0; i < event.fTracks.GetEntries(); i++)
{
fTracks.Add(event.fTracks[i]);
}
fNTracks += event.fNTracks;
// Clear management of event
event.fTracks.Clear();
event.fNTracks = 0;
event.fT0Data.Clear();
event.fNT0Data = 0;
event.fValid = 0;
event.fTime.ClearStamp();
return true;
}
Int_t Event::FillEvent(TTree *tree)
{
if (!fValid)
{
return -1;
}
if (!gFile->IsWritable())
{
return -1;
}
if (!tree)
{
return -1;
}
auto branch = tree->GetBranch("Event");
if (!branch)
{
return -1;
}
auto pEvent = (Event *)branch->GetAddress();
auto tEvent = this;
branch->SetAddress(&tEvent);
auto rvalue = tree->Fill();
branch->SetAddress(&pEvent);
return rvalue;
} | [
"liangzheng1021@163.com"
] | liangzheng1021@163.com |
0c248904e3a66e767ed376058eee9e9c6a48faf3 | 64dccd45009486beb7c7f9595bfaa16f9442dc05 | /BaseLib/win/patch_util.cpp | 0f8522ccb202e8e937efe88ac277452c0f47a47f | [] | no_license | xjyu007/BaseLib | cbb2d1baa32012a0bce1a33579336b8f93e722f2 | 46985fd2551f9e16619f361559c5a8c3a08c6ec5 | refs/heads/master | 2020-07-16T10:27:18.854060 | 2019-10-18T08:25:25 | 2019-10-18T08:25:25 | 205,770,219 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,357 | cpp | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "win/patch_util.h"
#include "logging.h"
namespace base::win::internal
{
DWORD ModifyCode(void* destination, const void* source, int length)
{
if ((NULL == destination) || (NULL == source) || (0 == length)) {
NOTREACHED();
return ERROR_INVALID_PARAMETER;
}
// Change the page protection so that we can write.
MEMORY_BASIC_INFORMATION memory_info;
DWORD error = NO_ERROR;
DWORD old_page_protection = 0;
if (!VirtualQuery(destination, &memory_info, sizeof(memory_info))) {
error = GetLastError();
return error;
}
DWORD is_executable = (PAGE_EXECUTE | PAGE_EXECUTE_READ |
PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_WRITECOPY) &
memory_info.Protect;
if (VirtualProtect(destination, length,
is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE,
&old_page_protection)) {
// Write the data.
CopyMemory(destination, source, length);
// Restore the old page protection.
error = ERROR_SUCCESS;
VirtualProtect(destination, length, old_page_protection,
&old_page_protection);
}
else {
error = GetLastError();
}
return error;
}
} // namespace bsae
| [
"xjyu_007@hotmail.com"
] | xjyu_007@hotmail.com |
694396e2fdfc63f102defcb13980ad346d58f383 | bdcb90d603d722d0ddfe3c1dd69e815133f14d51 | /opae-libs/tests/opae-c/test_hostif_c.cpp | 37be0b1ee4a694a043bf22b0f926e2c86b1bd3b4 | [
"BSD-3-Clause",
"MIT"
] | permissive | r-rojo/opae-sdk | 181a52c44d46c403bbaee92e3946ff4dc7bc50ea | 0615a4965ba99c1e11828c8a833c07bef933cb92 | refs/heads/master | 2021-05-11T08:53:35.126186 | 2020-12-16T00:23:05 | 2020-12-16T00:23:05 | 118,062,318 | 0 | 0 | NOASSERTION | 2020-12-09T18:35:21 | 2018-01-19T01:53:59 | C++ | UTF-8 | C++ | false | false | 4,646 | cpp | // Copyright(c) 2018, Intel Corporation
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of Intel Corporation nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
extern "C" {
#include <json-c/json.h>
#include <uuid/uuid.h>
#include "opae_int.h"
}
#include <opae/fpga.h>
#include <linux/ioctl.h>
#include <array>
#include <cstdlib>
#include <cstdarg>
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "gtest/gtest.h"
#include "mock/test_system.h"
using namespace opae::testing;
class hostif_c_p : public ::testing::TestWithParam<std::string> {
protected:
hostif_c_p() : tokens_{{nullptr, nullptr}} {}
virtual void SetUp() override {
ASSERT_TRUE(test_platform::exists(GetParam()));
platform_ = test_platform::get(GetParam());
system_ = test_system::instance();
system_->initialize();
system_->prepare_syfs(platform_);
filter_ = nullptr;
ASSERT_EQ(fpgaInitialize(NULL), FPGA_OK);
ASSERT_EQ(fpgaGetProperties(nullptr, &filter_), FPGA_OK);
ASSERT_EQ(fpgaPropertiesSetObjectType(filter_, FPGA_ACCELERATOR), FPGA_OK);
num_matches_ = 0;
ASSERT_EQ(fpgaEnumerate(&filter_, 1, tokens_.data(), tokens_.size(),
&num_matches_), FPGA_OK);
EXPECT_GT(num_matches_, 0);
accel_ = nullptr;
ASSERT_EQ(fpgaOpen(tokens_[0], &accel_, 0), FPGA_OK);
}
virtual void TearDown() override {
EXPECT_EQ(fpgaDestroyProperties(&filter_), FPGA_OK);
if (accel_) {
EXPECT_EQ(fpgaClose(accel_), FPGA_OK);
accel_ = nullptr;
}
for (auto &t : tokens_) {
if (t) {
EXPECT_EQ(fpgaDestroyToken(&t), FPGA_OK);
t = nullptr;
}
}
fpgaFinalize();
system_->finalize();
}
std::array<fpga_token, 2> tokens_;
fpga_properties filter_;
fpga_handle accel_;
test_platform platform_;
uint32_t num_matches_;
test_system *system_;
};
/**
* @test assign_to_ifc
* @brief Test: fpgaAssignToInterface
* @details fpgaAssignToInterface is currently unsupported,<br>
* and returns FPGA_NOT_SUPPORTED.<br>
*/
TEST_P(hostif_c_p, assign_to_ifc) {
EXPECT_EQ(fpgaAssignToInterface(accel_, tokens_[0],
0, 0), FPGA_NOT_SUPPORTED);
}
/**
* @test release_from_ifc
* @brief Test: fpgaReleaseFromInterface
* @details fpgaReleaseFromInterface is currently unsupported,<br>
* and returns FPGA_NOT_SUPPORTED.<br>
*/
TEST_P(hostif_c_p, release_from_ifc) {
EXPECT_EQ(fpgaReleaseFromInterface(accel_, tokens_[0]),
FPGA_NOT_SUPPORTED);
}
INSTANTIATE_TEST_CASE_P(hostif_c, hostif_c_p,
::testing::ValuesIn(test_platform::platforms({})));
class hostif_c_mock_p : public hostif_c_p{
protected:
hostif_c_mock_p() {};
};
/**
* @test assign_port
* @brief Test: fpgaAssignPortToInterface
* @details When fpgaAssignPortToInterface is called with valid params,<br>
* then the fn returns FPGA_OK.<br>
*/
TEST_P(hostif_c_mock_p, assign_port) {
EXPECT_EQ(fpgaAssignPortToInterface(accel_, 0,
0, 0), FPGA_OK);
}
INSTANTIATE_TEST_CASE_P(hostif_c, hostif_c_mock_p,
::testing::ValuesIn(test_platform::mock_platforms({})));
| [
"tim.whisonant@intel.com"
] | tim.whisonant@intel.com |
aec53170355a583cb514a77db6e2b9fbafed80c0 | 1cd87b5c7c05efc43d0ed751b729b618dfbeac5e | /subject/8_1952560_安江涛.cpp | 4abc00d6cf8926e7c044a393ccfc4e111b116508 | [] | no_license | AnJT/Course-design-of-data-structure | 7823e3b749155e962a44cfae8c86ed2c9f312b9e | 327f1c5f9e8ea4f88f80e510fbb40e9298792f31 | refs/heads/main | 2023-02-10T08:28:36.427850 | 2021-01-06T04:59:31 | 2021-01-06T04:59:31 | 304,854,671 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,892 | cpp | #include<unordered_map>
#include<iostream>
#include<string>
#include<algorithm>
#include"../H/Vector.h"
#include<map>
#include<cstring>
#include<vector>
#include<limits.h>
const int maxn = 1e2;
const int INF = 1e9 + 7;
struct edge {
edge(std::string f,std::string t,int d){
from=f;to=t;dist=d;
}
edge(){from=to=" ";dist=INF;}
std::string from;
std::string to;
int dist = 0;
bool operator < (const edge& rhs)const {
return dist < rhs.dist;
}
};
bool cinClear(){
if(std::cin.good())
return true;
std::cout<<"Input errors, please re-enter:";
std::cin.clear();
std::cin.ignore();
return false;
}
class System {
public:
std::string find(std::string x) {
return _par[x] == x ? x : _par[x] = find(_par[x]);
}
void prim(std::string str);
void initializeVertex();
void addEdge();
void print();
bool exist(std::string str);
private:
int _size=0;
bool _flag;//是否进行了操作C
bool _exist;//是否存在最小生成树
std::vector<std::string> _vertex;//顶点集
std::vector<edge> _path;//存路径
std::unordered_map<std::string, int> _map;//映射
int _graph[maxn][maxn];
bool _visit[maxn];//判断顶点有没有访问过
std::map<std::string, std::string> _par;
};
bool System::exist(std::string str){
auto i=_vertex.begin();
while(i!=_vertex.end()){
if(*i==str)
return true;
i++;
}
return false;
}
void System::initializeVertex() {
_par.clear();
_flag=false;
_exist=false;
_vertex.clear();//清空顶点
_map.clear();//清空映射
std::cout << "Please enter the number of vertices:";
int num;
std::string str;
std::cin >> num;
while(!cinClear()||num<2){
if(num<2)
std::cout<<"Input errors, please re-enter:";
std::cin>>num;
}
_size=num;
std::cout << "Please enter the name of each vertex in turn:" << '\n';
for (int i = 0; i < num; i++) {
std::cin >> str;
while(!cinClear())
std::cin>>str;
_vertex.push_back(str);
_map[str] = i;
_par[str]=str;
}
for(int i=0;i<_size;i++)
for(int j=0;j<_size;j++)
_graph[i][j]=INF;
std::cout << '\n';
}
void System::addEdge() {
edge e;
while (true) {
std::cout << "Please enter two vertices and edges:";
std::cin >> e.from >> e.to >> e.dist;
if (e.from == "?" && e.to == "?" && e.dist == 0)
break;
_graph[_map[e.from]][_map[e.to]]=e.dist;
_graph[_map[e.to]][_map[e.from]]=e.dist;
_par[find(e.from)]=find(e.to);
}
std::cout << '\n';
}
void System::prim(std::string str) {
_flag=true;
for(int i=0;i<_size-1;i++){
if(find(_vertex[i])!=find(_vertex[i+1])){
_exist=false;
return;
}
}
int cur=_map[str];
_path.clear();
for(int i=0;i<_size;i++)
_visit[i]=false;
_visit[cur]=false;
int index=cur;
int dist[maxn]={0};
for(int i=0;i<_size;i++)
dist[i]=_graph[cur][i];
for(int i=1;i<_size;i++){
int minor=INF;
for(int j=0;j<_size;j++){
if(!_visit[j]&&dist[j]<minor){
minor=dist[j];
index=j;
}
}
_visit[index]=true;
_path.push_back(edge(_vertex[cur],_vertex[index],minor));
for(int j=0;j<_size;j++){
if(!_visit[j]&&dist[j]>_graph[index][j])
dist[j]=_graph[index][j];
}
cur=index;
}
_exist=true;
}
void System::print() {
if(!_flag){
std::cout<<"Please enter operation C to generate a minimum spanning tree!"<<'\n';
return;
}
if(!_exist){
std::cout<<"No minimum spanning tree!"<<'\n';
return;
}
std::cout << "The vertices and edges of the minimum spanning tree are:" << '\n' << '\n';
for (int i = 0; i < _path.size(); i++) {
std::cout << _path[i].from << "-<" << _path[i].dist << ">->" << _path[i].to;
std::cout << " ";
}
std::cout << '\n';
}
void solve() {
std::string str[7];
str[0]="** Power grid cost simulation system **";
str[1]="======================================================";
str[2]="** A---Create grid vertex **";
str[3]="** B---Add the edge of the grid **";
str[4]="** C---Build a minimum spanning tree **";
str[5]="** D---Show minimum spanning tree **";
str[6]="** E---exit the program **";
for(int i=0;i<7;i++)
std::cout<<str[i]<<'\n';
System sys;
std::string num;
while (true) {
std::cout << "Please enter operation:";
std::cin >> num;
while(!cinClear())
std::cin>>num;
if (num == "A") {
sys.initializeVertex();
}
else if (num == "B") {
sys.addEdge();
}
else if (num == "C") {
std::cout << "Please enter the starting vertex:";
std::string str;
std::cin >> str;
while(!sys.exist(str)){
std::cout<<"The grid vertex set does not exist"<<str<<",please enter again:";
std::cin>>str;
}
sys.prim(str);
std::cout << "Generate Prim minimum spanning tree!" << '\n' << '\n';
}
else if (num == "D") {
sys.print();
}
else if (num == "E")
break;
else
std::cout<<"Input error!"<<'\n';
}
}
int main() {
solve();
}
| [
"57489474+1952560@users.noreply.github.com"
] | 57489474+1952560@users.noreply.github.com |
d77349092edb121e5b2663ab4f95d86d198e990f | 10c14c1e7783e2e7976b8eb813cfdcaa7bb04cdd | /algoritmika/lab1/dtim1806_L1_8.cpp | d72eb3ba6b82a27c726deb4ae36441082c69d51c | [] | no_license | demeter4444/uni | d8d077ae7773f6b4da5057177e8abf31c7a05f20 | a87bc30e7cef557030e726dd2032d349421d2b62 | refs/heads/master | 2022-04-14T21:39:19.891433 | 2020-04-14T12:05:21 | 2020-04-14T12:05:21 | 255,591,867 | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 2,383 | cpp | //Demeter Tamás
//511/2
//Számítsuk ki, hány napot éltünk a mai nappal bezárólag!
#include <stdio.h>
//elso megoldas
//hasznaljuk azt az informaciot,hogy szokoeveket ertelmezve egy ev 365.242199 nap-bol al --> egy honap 30.4368499 nap, atlagosan
//nem egy teljesen tokeletes megoldas, de sokkal tobb olyan parameter letezik ami ezt megakadalyozza
//pl szuletesi ora,perc,masodperc viszonyitasa az aktualisokkal, bizonyos esetekben eleg hogy a "nap"-ot megtolja 1-el
//(y2*365.242199 + m2*30.4368499 + d2) - (y1*365.242199 + m1*30.4368499 + d1)
void avg() {
int y1, m1, d1;
printf("1.year? \n"); scanf_s("%d", &y1);
printf("1.month? (1-12) \n"); scanf_s("%d", &m1); //elso datum y/m/d
printf("1.day? (1-31) \n "); scanf_s("%d", &d1);
int y2, m2, d2;
printf("\n 2.year? \n"); scanf_s("%d", &y2);
printf("2.month? (1-12) \n"); scanf_s("%d", &m2); //masodik(jelen) datum y/m/d
printf("2.day? (1-31) \n"); scanf_s("%d", &d2);
double s = (y2*365.242199 + m2 * 30.4368499 + d2) - (y1*365.242199 + m1 * 30.4368499 + d1);
printf("\n %f", s);
system("PAUSE>>VOID");
}
int szamol(int y, int m, int d) {
int i;
long int s = 0;
for (i = 1; i < y; i++) {
if (i % 4 != 0) { s = s + 365; }
else if (i % 100 != 0) { s = s + 366; }
else if (i % 400 != 0) { s = s + 365; }
else { s = s + 366; }
}
for (i = 1; i < m; i++) {
if (i <= 7) {
if (i == 2) {
if (y % 4 != 0) s = s + 28;
else if (y % 100 != 0) s = s + 29;
else if (y % 400 != 0) s = s + 28;
else s = s + 29;
}
else if (i % 2 == 0) s = s + 30;
else s = s + 31;
}
else if (i % 2 == 0) s = s + 31;
else s = s + 30;
}
s = s + d;
return s;
}
//masodik megoldas
//ertelmezzuk algoritmus szerint a szokoeveket, es szamoljuk a napokat
void alg() {
int y1, m1, d1;
printf("1.year? \n"); scanf_s("%d", &y1);
printf("1.month? (1-12) \n"); scanf_s("%d", &m1); //elso datum y/m/d
printf("1.day? (1-31) \n "); scanf_s("%d", &d1);
int y2, m2, d2;
printf("\n 2.year? \n"); scanf_s("%d", &y2);
printf("2.month? (1-12) \n"); scanf_s("%d", &m2); //masodik(jelen) datum y/m/d
printf("2.day? (1-31) \n"); scanf_s("%d", &d2);
printf("\n eredmeny: %d nap", szamol(y2,m2,d2)-szamol(y1,m1,d1));
system("PAUSE>>VOID");
}
main() {
//avg();
alg();
} | [
"noreply@github.com"
] | demeter4444.noreply@github.com |
e2bc41699990a47eb0e5556703ce00ae8714c94c | a64eeba4575eee849b459dab9c7000350ee636f1 | /mediapipe/tasks/cc/vision/face_detector/face_detector.cc | a21b6edcfb279e07b228bb5a1e6dc2f3fe00a607 | [
"Apache-2.0",
"dtoa"
] | permissive | google/mediapipe | 0b6b56aff8bacc7b680c205f0788f1b49dd33f5e | 007824594bf1d07c7c1467df03a43886f8a4b3ad | refs/heads/master | 2023-09-01T16:11:21.218234 | 2023-09-01T11:55:21 | 2023-09-01T11:57:34 | 191,820,100 | 23,940 | 5,164 | Apache-2.0 | 2023-09-14T09:01:36 | 2019-06-13T19:16:41 | C++ | UTF-8 | C++ | false | false | 8,591 | cc | /* Copyright 2023 The MediaPipe Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "mediapipe/tasks/cc/vision/face_detector/face_detector.h"
#include "mediapipe/framework/api2/builder.h"
#include "mediapipe/framework/formats/detection.pb.h"
#include "mediapipe/tasks/cc/components/containers/detection_result.h"
#include "mediapipe/tasks/cc/core/utils.h"
#include "mediapipe/tasks/cc/vision/core/base_vision_task_api.h"
#include "mediapipe/tasks/cc/vision/core/vision_task_api_factory.h"
#include "mediapipe/tasks/cc/vision/face_detector/proto/face_detector_graph_options.pb.h"
namespace mediapipe {
namespace tasks {
namespace vision {
namespace face_detector {
namespace {
using FaceDetectorGraphOptionsProto =
::mediapipe::tasks::vision::face_detector::proto::FaceDetectorGraphOptions;
constexpr char kFaceDetectorGraphTypeName[] =
"mediapipe.tasks.vision.face_detector.FaceDetectorGraph";
constexpr char kImageTag[] = "IMAGE";
constexpr char kImageInStreamName[] = "image_in";
constexpr char kImageOutStreamName[] = "image_out";
constexpr char kNormRectTag[] = "NORM_RECT";
constexpr char kNormRectStreamName[] = "norm_rect_in";
constexpr char kDetectionsTag[] = "DETECTIONS";
constexpr char kDetectionsStreamName[] = "detections";
constexpr int kMicroSecondsPerMilliSecond = 1000;
// Creates a MediaPipe graph config that contains a subgraph node of
// "mediapipe.tasks.vision.face_detector.FaceDetectorGraph". If the task is
// running in the live stream mode, a "FlowLimiterCalculator" will be added to
// limit the number of frames in flight.
CalculatorGraphConfig CreateGraphConfig(
std::unique_ptr<FaceDetectorGraphOptionsProto> options,
bool enable_flow_limiting) {
api2::builder::Graph graph;
auto& subgraph = graph.AddNode(kFaceDetectorGraphTypeName);
subgraph.GetOptions<FaceDetectorGraphOptionsProto>().Swap(options.get());
graph.In(kImageTag).SetName(kImageInStreamName);
graph.In(kNormRectTag).SetName(kNormRectStreamName);
subgraph.Out(kDetectionsTag).SetName(kDetectionsStreamName) >>
graph.Out(kDetectionsTag);
subgraph.Out(kImageTag).SetName(kImageOutStreamName) >> graph.Out(kImageTag);
if (enable_flow_limiting) {
return tasks::core::AddFlowLimiterCalculator(
graph, subgraph, {kImageTag, kNormRectTag}, kDetectionsTag);
}
graph.In(kImageTag) >> subgraph.In(kImageTag);
graph.In(kNormRectTag) >> subgraph.In(kNormRectTag);
return graph.GetConfig();
}
// Converts the user-facing FaceDetectorOptions struct to the internal
// FaceDetectorGraphOptions proto.
std::unique_ptr<FaceDetectorGraphOptionsProto>
ConvertFaceDetectorGraphOptionsProto(FaceDetectorOptions* options) {
auto options_proto = std::make_unique<FaceDetectorGraphOptionsProto>();
auto base_options_proto = std::make_unique<tasks::core::proto::BaseOptions>(
tasks::core::ConvertBaseOptionsToProto(&(options->base_options)));
options_proto->mutable_base_options()->Swap(base_options_proto.get());
options_proto->mutable_base_options()->set_use_stream_mode(
options->running_mode != core::RunningMode::IMAGE);
options_proto->set_min_detection_confidence(
options->min_detection_confidence);
options_proto->set_min_suppression_threshold(
options->min_suppression_threshold);
return options_proto;
}
} // namespace
absl::StatusOr<std::unique_ptr<FaceDetector>> FaceDetector::Create(
std::unique_ptr<FaceDetectorOptions> options) {
auto options_proto = ConvertFaceDetectorGraphOptionsProto(options.get());
tasks::core::PacketsCallback packets_callback = nullptr;
if (options->result_callback) {
auto result_callback = options->result_callback;
packets_callback =
[=](absl::StatusOr<tasks::core::PacketMap> status_or_packets) {
if (!status_or_packets.ok()) {
Image image;
result_callback(status_or_packets.status(), image,
Timestamp::Unset().Value());
return;
}
if (status_or_packets.value()[kImageOutStreamName].IsEmpty()) {
return;
}
Packet image_packet = status_or_packets.value()[kImageOutStreamName];
if (status_or_packets.value()[kDetectionsStreamName].IsEmpty()) {
Packet empty_packet =
status_or_packets.value()[kDetectionsStreamName];
result_callback(
{FaceDetectorResult()}, image_packet.Get<Image>(),
empty_packet.Timestamp().Value() / kMicroSecondsPerMilliSecond);
return;
}
Packet detections_packet =
status_or_packets.value()[kDetectionsStreamName];
result_callback(
components::containers::ConvertToDetectionResult(
detections_packet.Get<std::vector<mediapipe::Detection>>()),
image_packet.Get<Image>(),
detections_packet.Timestamp().Value() /
kMicroSecondsPerMilliSecond);
};
}
return core::VisionTaskApiFactory::Create<FaceDetector,
FaceDetectorGraphOptionsProto>(
CreateGraphConfig(
std::move(options_proto),
options->running_mode == core::RunningMode::LIVE_STREAM),
std::move(options->base_options.op_resolver), options->running_mode,
std::move(packets_callback));
}
absl::StatusOr<FaceDetectorResult> FaceDetector::Detect(
mediapipe::Image image,
std::optional<core::ImageProcessingOptions> image_processing_options) {
ASSIGN_OR_RETURN(NormalizedRect norm_rect,
ConvertToNormalizedRect(image_processing_options, image,
/*roi_allowed=*/false));
ASSIGN_OR_RETURN(
auto output_packets,
ProcessImageData(
{{kImageInStreamName, MakePacket<Image>(std::move(image))},
{kNormRectStreamName,
MakePacket<NormalizedRect>(std::move(norm_rect))}}));
if (output_packets[kDetectionsStreamName].IsEmpty()) {
return {FaceDetectorResult()};
}
return components::containers::ConvertToDetectionResult(
output_packets[kDetectionsStreamName]
.Get<std::vector<mediapipe::Detection>>());
}
absl::StatusOr<FaceDetectorResult> FaceDetector::DetectForVideo(
mediapipe::Image image, uint64_t timestamp_ms,
std::optional<core::ImageProcessingOptions> image_processing_options) {
ASSIGN_OR_RETURN(NormalizedRect norm_rect,
ConvertToNormalizedRect(image_processing_options, image,
/*roi_allowed=*/false));
ASSIGN_OR_RETURN(
auto output_packets,
ProcessVideoData(
{{kImageInStreamName,
MakePacket<Image>(std::move(image))
.At(Timestamp(timestamp_ms * kMicroSecondsPerMilliSecond))},
{kNormRectStreamName,
MakePacket<NormalizedRect>(std::move(norm_rect))
.At(Timestamp(timestamp_ms * kMicroSecondsPerMilliSecond))}}));
if (output_packets[kDetectionsStreamName].IsEmpty()) {
return {FaceDetectorResult()};
}
return components::containers::ConvertToDetectionResult(
output_packets[kDetectionsStreamName]
.Get<std::vector<mediapipe::Detection>>());
}
absl::Status FaceDetector::DetectAsync(
mediapipe::Image image, uint64_t timestamp_ms,
std::optional<core::ImageProcessingOptions> image_processing_options) {
ASSIGN_OR_RETURN(NormalizedRect norm_rect,
ConvertToNormalizedRect(image_processing_options, image,
/*roi_allowed=*/false));
return SendLiveStreamData(
{{kImageInStreamName,
MakePacket<Image>(std::move(image))
.At(Timestamp(timestamp_ms * kMicroSecondsPerMilliSecond))},
{kNormRectStreamName,
MakePacket<NormalizedRect>(std::move(norm_rect))
.At(Timestamp(timestamp_ms * kMicroSecondsPerMilliSecond))}});
}
} // namespace face_detector
} // namespace vision
} // namespace tasks
} // namespace mediapipe
| [
"copybara-worker@google.com"
] | copybara-worker@google.com |
456a0ae1a2147a3b99c1d82c33b33965fc62dc22 | a05abfdf10b048bdc8025a8417213710eff4e66b | /SaleApp/OA/OAChecker.h | 1ea7b8dc9aa28a59b44453fc6782f6106d22f263 | [] | no_license | GetUserNameByNetwork/PMXE7 | 40900a89091f5f435f7e5b467456f9c0fc119701 | b6a6f03be291a9c330003ca8bb01f233986c65f2 | refs/heads/master | 2022-06-16T17:50:27.418813 | 2020-05-03T08:04:31 | 2020-05-03T08:04:31 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 5,541 | h | //---------------------------------------------------------------------------
#ifndef OACheckerH
#define OACheckerH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include "BaseListForm.h"
#include "StartAndEndDate.h"
#include <FMX.ActnList.hpp>
#include <FMX.Edit.hpp>
#include <FMX.Grid.hpp>
#include <FMX.Layouts.hpp>
#include <FMX.ListBox.hpp>
#include <FMX.Memo.hpp>
#include <FMX.Objects.hpp>
#include <FMX.StdCtrls.hpp>
#include <FMX.TabControl.hpp>
#include <FMX.Types.hpp>
#include <System.Actions.hpp>
#include <System.Rtti.hpp>
#include <Data.Bind.Components.hpp>
#include <Data.Bind.DBScope.hpp>
#include <Data.Bind.EngExt.hpp>
#include <Fmx.Bind.DBEngExt.hpp>
#include <Fmx.Bind.Editors.hpp>
#include <System.Bindings.Outputs.hpp>
#include "DetailBaseForm.h"
#include <FMX.Controls.Presentation.hpp>
//---------------------------------------------------------------------------
class TfrmOAChecker : public TfrmBaseListForm
{
__published: // IDE-managed Components
TTabControl *tcOAControl;
TTabItem *tabTask;
TTabItem *tabSearch;
TToolBar *tbTask;
TButton *btCheck;
TButton *btSearch;
TActionList *OAActionList;
TAction *CheckAction;
TAction *SearchAction;
TAction *SearchOkAction;
TToolBar *tbSearch;
TButton *btOk;
TStringGrid *TaskStringGrid;
TStringColumn *wtWorkTitleColumn;
TStringColumn *wtNameColumn;
TStringColumn *wtStatusColumn;
TStringColumn *wtReceiverColumn;
TStringColumn *wtCreateTimeColumn;
TStringColumn *wtOperaterColumn;
TStringColumn *wtResultsColumn;
TStringColumn *wtFinishTimeColumn;
TStringColumn *wtStepColumn;
TTabControl *tcTaskControl;
TTabItem *tabCheck;
TTabItem *tabTaskLog;
TTabItem *tabflowChart;
TLabel *lbTaskDes;
TMemo *mmFlowMnDtlRemark;
TLabel *lbTaskComment;
TEdit *edFlowMnDtlComments;
TLabel *lbTastResult;
TComboBox *cbFlowMnDtlResults;
TLabel *lbWorkTitle;
TLabel *lbWorkTitleText;
TStringGrid *TaskLogStringGrid;
TStringColumn *TaskLogNum;
TStringColumn *FlowTaskLogTaskNameColumn;
TStringColumn *FlowTaskLogDateColumn;
TStringColumn *FlowTaskLogOperationColumn;
TStringColumn *FlowTaskLogUserNameColumn;
TStringColumn *FlowTaskLogInfoColumn;
TLabel *lbBillType;
TLabel *lbTaskStatus;
TComboBox *cbBillType;
TComboBox *cbTaskStatus;
TLabel *lbBillTitle;
TEdit *edBillTitle;
TStartAndEndDateFrame *StartAndEndDateFrame1;
TBindSourceDB *TaskLogBindSourceDB;
TBindSourceDB *TaskBindSourceDB;
TBindingsList *DetailBindingsList;
TBindGridLink *TaskBindGridLink;
TBindLink *FlowMnDtlCommentsBindLink;
TBindLink *FlowMnDtlRemarkBindLink;
TBindLink *FlowMnDtlResultsBindLink;
TBindGridLink *TaskLogBindGridLink;
TBindLink *WorkTitleTextBindLink;
TButton *btClose;
TTabItem *tabWork;
TLabel *lbWorkflowContent;
TMemo *mmWorkflowContent;
TLabel *lbWorkflowLeve;
TComboBox *cbWorkflowLeve;
TLabel *lbWorkflowStatus;
TComboBox *cbWorkflowStatus;
TLabel *lbCreator;
TLabel *lbCreatorName;
TLabel *lbTaskTitle;
TLabel *lbTaskTitleText;
TBindLink *TaskTitleTextBindLink;
TBindLink *CreatorNameBindLink;
TBindLink *WorkflowContentBindLink;
TBindLink *WorkflowLeveBindLink;
TBindLink *WorkflowStatusBindLink;
TButton *btBack;
TToolBar *OATopToolBar;
TLabel *Label1;
TButton *btOpenBill;
TAction *OpenbillAction;
TScrollBox *FlowScrollBox;
TLayout *FlowLayout;
TImage *WorkflowImage;
TListBox *TaskListBox;
TListBoxItem *TaskListBoxItem1;
TListBoxItem *TaskListBoxItem2;
TListBoxItem *TaskListBoxItem3;
TListBoxItem *TaskListBoxItem4;
TListBox *FlowMainListBox;
TListBoxItem *TaskListBoxItem5;
TListBoxItem *TaskListBoxItem6;
TListBoxItem *TaskListBoxItem7;
TListBoxItem *TaskListBoxItem8;
TListBoxItem *TaskListBoxItem9;
void __fastcall tcTaskControlChange(TObject *Sender);
void __fastcall SearchActionExecute(TObject *Sender);
void __fastcall SearchOkActionExecute(TObject *Sender);
void __fastcall CheckActionExecute(TObject *Sender);
void __fastcall btCloseClick(TObject *Sender);
void __fastcall btBackClick(TObject *Sender);
void __fastcall TaskTitleTextBindLinkAssignedValue(TObject *Sender, TBindingAssignValueRec &AssignValueRec,
const TValue &Value);
void __fastcall cbFlowMnDtlResultsClosePopup(TObject *Sender);
void __fastcall OpenbillActionExecute(TObject *Sender);
void __fastcall FlowLayoutGesture(TObject *Sender, const TGestureEventInfo &EventInfo,
bool &Handled);
private: // User declarations
void __fastcall SetOptCtrlStatus(int status); //ÖØÔØÐ麯Êý£¬ÉèÖô°Ìå״̬
void __fastcall TaskStringGridSelectedRowChanged();
void __fastcall FillBillTypeItems();
String __fastcall GetOtherConditon();
void __fastcall LoadTaskData();
void __fastcall LoadTaskLogData();
void __fastcall ShowFlowChart();
TClientDataSet *TaskDefListDs;
TZClientQuery *TaskQuery;
TZClientQuery *TaskLogQuery;
String TaskSelected;
TWorkFlowExec FOnBeforWorkFlowExec;
double HWScale;
int FLastDistance ;
bool FlowChartUpdate;
bool TaskLogUpdate;
public: // User declarations
__property TWorkFlowExec OnBeforWorkFlowExec = {read=FOnBeforWorkFlowExec, write=FOnBeforWorkFlowExec};
__fastcall TfrmOAChecker(TComponent* Owner,TClientBroker * clBroker,int ModuleCode,String Param);
virtual __fastcall ~TfrmOAChecker();
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmOAChecker *frmOAChecker;
//---------------------------------------------------------------------------
#endif
| [
"zhanws@vip.163.com"
] | zhanws@vip.163.com |
66992f2be1200d0a33071d6de7d4a17014f783d8 | cb80a8562d90eb969272a7ff2cf52c1fa7aeb084 | /inletTest7/0.194/U | f5085807a794e308dbe18b81d0864cb420ea14c3 | [] | no_license | mahoep/inletCFD | eb516145fad17408f018f51e32aa0604871eaa95 | 0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2 | refs/heads/main | 2023-08-30T22:07:41.314690 | 2021-10-14T19:23:51 | 2021-10-14T19:23:51 | 314,657,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 253,854 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.194";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
10108
(
(66.3663 -0.00485871 -1.02464e-19)
(66.3667 0.00536134 2.52105e-19)
(66.3664 -0.00540672 1.46295e-20)
(66.366 0.00225366 -1.44083e-19)
(66.3647 -0.00228495 0)
(66.3614 -0.000212778 2.32958e-19)
(66.3475 -0.00329869 -4.72121e-19)
(66.3068 -0.00930217 0)
(66.2288 -0.0199073 -7.054e-19)
(66.123 -0.0318465 7.35767e-19)
(66.0016 -0.0434249 -1.19314e-20)
(65.8752 -0.0534583 0)
(65.7473 -0.0621308 -3.06691e-21)
(65.6181 -0.069706 -1.54469e-21)
(65.4863 -0.076568 3.88624e-22)
(65.3503 -0.0829271 0)
(65.209 -0.0889077 0)
(65.0619 -0.0945508 0)
(64.9087 -0.0998632 0)
(64.7496 -0.104844 0)
(64.5848 -0.109501 0)
(64.4145 -0.113848 0)
(64.2392 -0.117901 0)
(64.0589 -0.121677 0)
(63.874 -0.125184 0)
(63.6847 -0.128429 0)
(63.4914 -0.13141 0)
(63.2944 -0.134122 0)
(63.0939 -0.136559 0)
(62.8905 -0.138712 0)
(62.6844 -0.14057 0)
(62.476 -0.142125 0)
(62.2659 -0.143367 0)
(62.0543 -0.144287 0)
(61.8419 -0.144878 0)
(61.6289 -0.145132 0)
(61.4158 -0.145048 0)
(61.2032 -0.144604 0)
(60.9914 -0.143809 0)
(60.7809 -0.142671 0)
(60.5723 -0.141171 0)
(60.3658 -0.139309 0)
(60.1621 -0.13708 0)
(59.9615 -0.134477 0)
(59.7645 -0.131488 0)
(59.5715 -0.128099 0)
(59.383 -0.124295 0)
(59.1995 -0.12006 0)
(59.0214 -0.115388 0)
(58.8491 -0.110274 0)
(58.6827 -0.104707 0)
(58.5219 -0.0986194 0)
(58.3657 -0.091806 0)
(58.2125 -0.0838915 0)
(58.061 -0.0742093 6.3722e-21)
(57.9124 -0.0621477 2.54451e-20)
(57.7743 -0.0477582 2.52818e-19)
(57.6635 -0.0332465 -9.98879e-20)
(57.5986 -0.0219799 0)
(57.5811 -0.0159806 -3.25259e-19)
(57.591 -0.0136289 0)
(57.6092 -0.0129631 8.24456e-19)
(57.6269 -0.0120463 3.314e-18)
(57.6347 -0.00868235 2.59462e-18)
(57.6377 -0.00506464 -5.89299e-18)
(57.6237 -0.00950836 2.04123e-18)
(57.5784 -0.0171991 0)
(57.4903 -0.0305975 0)
(57.3508 -0.0600756 4.84518e-19)
(57.1139 -0.086445 -1.37414e-18)
(56.8246 -0.103246 0)
(55.735 -0.151352 0)
(55.0337 -0.123323 0)
(56.8302 -0.162977 0)
(57.1775 -0.142834 -1.35231e-18)
(57.2195 -0.168917 3.92932e-18)
(56.7663 -0.184206 0)
(54.3097 -0.119546 0)
(53.6017 -0.107808 0)
(56.6741 -0.178077 7.2801e-19)
(57.2486 -0.169455 7.57339e-20)
(57.2462 -0.166463 -9.09424e-19)
(56.5497 -0.164359 -3.74491e-19)
(52.9823 -0.0948849 -4.57841e-19)
(52.3793 -0.0824493 4.22155e-19)
(56.3868 -0.149978 1.10266e-20)
(57.2128 -0.160515 5.86502e-19)
(57.1547 -0.157349 -3.00376e-19)
(56.2181 -0.140321 -1.14003e-20)
(51.8375 -0.0743024 0)
(51.3284 -0.06758 3.39411e-21)
(56.0301 -0.129898 0)
(57.083 -0.152126 3.00475e-19)
(56.9998 -0.149133 0)
(55.8523 -0.12359 4.57877e-20)
(50.8566 -0.062694 -3.4695e-21)
(50.427 -0.0579014 0)
(55.6697 -0.116995 -4.58426e-20)
(56.9074 -0.14615 0)
(56.8047 -0.142843 0)
(55.4821 -0.111312 0)
(50.0203 -0.0537547 0)
(49.6447 -0.0497883 0)
(55.2932 -0.105585 5.77053e-21)
(56.7008 -0.140163 0)
(56.5838 -0.137013 3.06999e-19)
(55.1032 -0.101381 -3.75337e-19)
(49.2817 -0.0470348 0)
(48.9445 -0.0440451 0)
(54.9135 -0.0970959 0)
(56.4695 -0.134922 0)
(56.3442 -0.132348 0)
(54.7251 -0.0936523 0)
(48.6168 -0.0418946 0)
(48.307 -0.0398109 0)
(54.5346 -0.090697 0)
(56.221 -0.130744 0)
(56.0825 -0.128401 0)
(54.3403 -0.0879396 0)
(47.9981 -0.038242 0)
(47.7066 -0.0362377 0)
(54.1476 -0.0854065 0)
(55.9507 -0.127565 0)
(55.8076 -0.125846 0)
(53.955 -0.0837727 0)
(47.4191 -0.0354868 0)
(47.1454 -0.0337447 0)
(53.7637 -0.0816511 0)
(55.6717 -0.125235 0)
(55.5227 -0.123771 0)
(53.5706 -0.0803803 0)
(46.8724 -0.0332755 0)
(46.6106 -0.0317529 0)
(53.3787 -0.0787004 0)
(55.3815 -0.12357 0)
(55.2268 -0.122492 0)
(53.1844 -0.0778517 0)
(46.3484 -0.0315693 0)
(46.0959 -0.0302221 0)
(52.9914 -0.0765358 0)
(55.0806 -0.122657 0)
(54.9204 -0.121883 0)
(52.7956 -0.0760135 0)
(45.8419 -0.0302599 0)
(45.5961 -0.0290337 0)
(52.6008 -0.0749712 0)
(54.7692 -0.122341 0)
(54.6034 -0.121819 0)
(52.403 -0.0747142 0)
(45.3481 -0.0292488 0)
(45.1072 -0.0281092 0)
(52.2059 -0.073885 0)
(54.4471 -0.122522 0)
(54.2756 -0.122223 0)
(52.0055 -0.0738536 0)
(44.8636 -0.0284731 0)
(44.6261 -0.0274001 0)
(51.8057 -0.0732037 0)
(54.1141 -0.123155 0)
(53.9369 -0.12308 0)
(51.6023 -0.0733807 0)
(44.3854 -0.0278962 0)
(44.15 -0.0268834 0)
(51.3991 -0.072907 0)
(53.7698 -0.124269 0)
(53.5865 -0.124421 0)
(51.192 -0.0732825 0)
(43.9108 -0.0275013 0)
(43.6763 -0.02654 0)
(50.9849 -0.0729731 0)
(53.4135 -0.125868 0)
(53.2237 -0.126246 0)
(50.7734 -0.0735358 0)
(43.4373 -0.0272703 0)
(43.2024 -0.0263518 0)
(50.5616 -0.0733733 0)
(53.0443 -0.127939 0)
(52.8475 -0.128531 0)
(50.345 -0.0741093 0)
(42.9626 -0.0271849 0)
(42.7263 -0.0262967 0)
(50.128 -0.0740684 0)
(52.6613 -0.130437 0)
(52.4571 -0.131237 0)
(49.9058 -0.0749673 0)
(42.4847 -0.0272244 0)
(42.246 -0.0263653 0)
(49.6827 -0.075051 0)
(52.2635 -0.133368 0)
(52.0513 -0.134381 0)
(49.4542 -0.0761093 0)
(42.0015 -0.0273833 0)
(41.7596 -0.0265562 0)
(49.2245 -0.076329 0)
(51.8498 -0.136767 0)
(51.6291 -0.13798 0)
(48.9889 -0.0775344 0)
(41.5113 -0.0276575 0)
(41.2651 -0.0268544 0)
(48.7518 -0.0778738 0)
(51.419 -0.140596 0)
(51.1891 -0.141998 0)
(48.5085 -0.0792153 0)
(41.0122 -0.0280328 0)
(40.761 -0.0272536 0)
(48.2633 -0.0796763 0)
(50.9698 -0.144851 0)
(50.7302 -0.146453 0)
(48.0115 -0.0811556 0)
(40.5026 -0.0285084 0)
(40.2454 -0.0277556 0)
(47.7574 -0.0817463 0)
(50.5011 -0.14956 0)
(50.2511 -0.151376 0)
(47.4964 -0.0833681 0)
(39.9807 -0.0290877 0)
(39.7167 -0.0283648 0)
(47.2328 -0.0840992 0)
(50.0114 -0.154759 0)
(49.7502 -0.156802 0)
(46.9617 -0.0858687 0)
(39.4447 -0.029774 0)
(39.1731 -0.0290826 0)
(46.6875 -0.0867477 0)
(49.4992 -0.160475 0)
(49.226 -0.162757 0)
(46.4055 -0.088669 0)
(38.8928 -0.0305684 0)
(38.6124 -0.0299096 0)
(46.1199 -0.089706 0)
(48.9627 -0.166739 0)
(48.6766 -0.169271 0)
(45.8261 -0.0917842 0)
(38.323 -0.031473 0)
(38.0329 -0.0308488 0)
(45.528 -0.0929898 0)
(48.4003 -0.173583 0)
(48.1004 -0.176378 0)
(45.2213 -0.0952301 0)
(37.7332 -0.0324912 0)
(37.4324 -0.0319038 0)
(44.9098 -0.0966139 0)
(47.8099 -0.18104 0)
(47.4951 -0.184105 0)
(44.5892 -0.0990183 0)
(37.1213 -0.0336256 0)
(36.8088 -0.0330746 0)
(44.2632 -0.100584 0)
(47.1894 -0.189124 0)
(46.8588 -0.192448 0)
(43.9275 -0.103145 0)
(36.4853 -0.0348723 0)
(36.16 -0.034353 0)
(43.5859 -0.104883 0)
(46.5369 -0.197809 0)
(46.1894 -0.201353 0)
(43.2341 -0.107578 0)
(35.8231 -0.0362178 0)
(35.484 -0.035721 0)
(42.876 -0.109468 0)
(45.8504 -0.207019 0)
(45.4851 -0.210746 0)
(42.5073 -0.112277 0)
(35.1329 -0.037648 0)
(34.7793 -0.0371692 0)
(42.1318 -0.114309 0)
(45.1281 -0.216695 0)
(44.7443 -0.220584 0)
(41.7454 -0.117217 0)
(34.4133 -0.0391476 0)
(34.0445 -0.0386801 0)
(41.3517 -0.119381 0)
(44.3685 -0.226799 0)
(43.9654 -0.230829 0)
(40.9467 -0.122376 0)
(33.6628 -0.0407055 0)
(33.2783 -0.0402456 0)
(40.5342 -0.12466 0)
(43.57 -0.237289 0)
(43.1469 -0.24142 0)
(40.11 -0.12772 0)
(32.8804 -0.0423107 0)
(32.4797 -0.0418492 0)
(39.678 -0.130099 0)
(42.7313 -0.248075 0)
(42.2876 -0.252238 0)
(39.2342 -0.133186 0)
(32.0652 -0.0439396 0)
(31.648 -0.0434596 0)
(38.7822 -0.135612 0)
(41.8514 -0.259002 0)
(41.387 -0.263092 0)
(38.3186 -0.138666 0)
(31.2169 -0.0455537 0)
(30.7833 -0.0450303 0)
(37.8468 -0.141074 0)
(40.93 -0.269837 0)
(40.4448 -0.273705 0)
(37.3634 -0.144013 0)
(30.3359 -0.0470968 0)
(29.8866 -0.0464963 0)
(36.8723 -0.14631 0)
(39.9675 -0.28026 0)
(39.4623 -0.283711 0)
(36.3701 -0.149027 0)
(29.4239 -0.0484934 0)
(28.9603 -0.0477722 0)
(35.8608 -0.151089 0)
(38.9656 -0.289845 0)
(38.4417 -0.292618 0)
(35.3414 -0.153441 0)
(28.4841 -0.0496479 0)
(28.0085 -0.0487509 0)
(34.816 -0.155108 0)
(37.9273 -0.298027 0)
(37.3871 -0.299789 0)
(34.2819 -0.156911 0)
(27.5214 -0.0504403 0)
(27.0372 -0.0492908 0)
(33.7436 -0.157981 0)
(36.8579 -0.304091 0)
(36.3049 -0.304432 0)
(33.1987 -0.15901 0)
(26.5435 -0.0507129 0)
(26.0554 -0.0492373 0)
(32.6523 -0.159251 0)
(35.7651 -0.307181 0)
(35.2041 -0.305598 0)
(32.1019 -0.159224 0)
(25.5607 -0.0502884 0)
(25.0754 -0.0483651 0)
(31.5539 -0.158287 0)
(34.6595 -0.306225 0)
(34.0975 -0.302375 0)
(31.0055 -0.156982 0)
(24.5873 -0.0489705 0)
(24.113 -0.0465238 0)
(30.4639 -0.154574 0)
(33.5556 -0.300368 0)
(33.0008 -0.293803 0)
(29.9264 -0.151745 0)
(23.6406 -0.0466154 0)
(23.1872 -0.0435731 0)
(29.4012 -0.14761 0)
(32.4706 -0.288628 0)
(31.9328 -0.278817 0)
(28.8853 -0.143024 0)
(22.7411 -0.0430576 0)
(22.3199 -0.0393615 0)
(28.3878 -0.136976 0)
(31.425 -0.270056 0)
(30.9154 -0.256695 0)
(27.9055 -0.130479 0)
(21.9119 -0.0381755 0)
(21.535 -0.0338014 0)
(27.4484 -0.122413 0)
(30.4418 -0.244129 0)
(29.9726 -0.227271 0)
(27.0122 -0.114026 0)
(21.1776 -0.0319623 0)
(20.8572 -0.0269716 0)
(26.6083 -0.103988 0)
(29.5454 -0.211144 0)
(29.1287 -0.191448 0)
(26.2306 -0.0940566 0)
(20.5618 -0.0246493 0)
(20.3083 -0.0191793 0)
(25.8911 -0.0823519 0)
(28.7593 -0.172107 0)
(28.4054 -0.150283 0)
(25.582 -0.0715224 0)
(20.0836 -0.0165255 0)
(19.9036 -0.0108648 0)
(25.3151 -0.0590565 0)
(28.1027 -0.129117 0)
(27.8186 -0.107067 -7.79195e-20)
(25.0805 -0.0481142 0)
(19.7537 -0.00829591 0)
(19.6478 -0.00277858 0)
(24.8893 -0.0356755 0)
(27.5868 -0.0856114 7.78392e-20)
(27.3745 -0.064657 -7.79301e-20)
(24.7296 -0.0254924 0)
(19.5709 -0.000530709 0)
(19.5347 0.00491321 0)
(24.6119 -0.0140983 0)
(27.2132 -0.0445112 7.78494e-20)
(27.0696 -0.0253269 -7.79368e-20)
(24.5222 -0.00426514 0)
(19.5249 0.00670935 0)
(19.5572 0.0114107 0)
(24.4731 0.00651717 0)
(26.9696 -0.00700327 7.78545e-20)
(26.8896 0.00767645 0)
(24.4393 0.0127922 0)
(19.6066 0.0125167 0)
(19.6875 0.0156482 0)
(24.4486 0.0214598 0)
(26.8461 0.0227055 0)
(26.8245 0.0330027 0)
(24.4639 0.025245 0)
(19.7761 0.0155922 0)
(19.8889 0.0174779 0)
(24.5206 0.032486 0)
(26.8304 0.0444967 0)
(26.8519 0.0515174 -7.79361e-20)
(24.5766 0.0347821 0)
(20.0038 0.0165512 0)
(20.1361 0.017876 0)
(24.6663 0.0393455 0)
(26.8942 0.0587421 7.7851e-20)
(26.9451 0.0621828 -7.79319e-20)
(24.7487 0.0396834 0)
(20.2651 0.0165097 0)
(20.4049 0.0173909 0)
(24.8577 0.0423044 0)
(27.0111 0.0661824 7.78475e-20)
(27.0809 0.0671239 0)
(24.9548 0.041346 0)
(20.5377 0.0157811 0)
(20.6767 0.0162876 0)
(25.0732 0.0424807 0)
(27.1612 0.0686697 0)
(27.2417 0.0678617 0)
(25.1763 0.0406783 0)
(20.8062 0.0145701 0)
(20.9391 0.0149064 0)
(25.2972 0.0410184 0)
(27.3293 0.0680664 0)
(27.415 0.0663686 0)
(25.401 0.038807 0)
(21.0615 0.0132139 0)
(21.1857 0.0134527 0)
(25.5202 0.0386475 0)
(27.5056 0.0656398 0)
(27.5926 0.0634333 0)
(25.6213 0.0362467 0)
(21.2992 0.0118167 0)
(21.4134 0.0120339 0)
(25.7361 0.035916 0)
(27.6829 0.062368 0)
(27.7692 0.0601136 0)
(25.8329 0.0337214 0)
(21.5178 0.010635 0)
(21.6223 0.0106882 0)
(25.9423 0.0331365 0)
(27.8578 0.0587802 0)
(27.942 0.0565097 0)
(26.034 0.0311978 0)
(21.718 0.00955316 0)
(21.8152 0.00979092 -5.63887e-20)
(26.1392 0.0307978 0)
(28.0292 0.05522 0)
(28.1109 0.0528641 0)
(26.2259 0.0285613 0)
(21.9033 0.00841379 5.63321e-20)
(21.9916 0.00884622 -5.62749e-20)
(26.3247 0.0284647 -3.73294e-19)
(28.1942 0.0517568 3.10836e-19)
(28.2727 0.0492989 -7.73651e-20)
(26.4062 0.0262263 9.28189e-20)
(22.0725 0.0074914 1.11716e-19)
(22.1532 0.00789906 -5.58295e-20)
(26.4994 0.0264597 -9.25405e-20)
(28.3525 0.0487004 7.7019e-20)
(28.4277 0.047012 -6.06199e-19)
(26.5824 0.0254511 3.60182e-19)
(22.2293 0.0079256 4.32554e-19)
(22.3202 0.00860823 -8.78867e-19)
(26.6694 0.0256988 1.81735e-19)
(28.5164 0.0477974 -1.50719e-19)
(28.6086 0.0471634 -4.33539e-19)
(26.7697 0.0265787 -1.71822e-19)
(22.4099 0.010038 0)
(22.5331 0.0111364 -2.21412e-19)
(26.8782 0.0261644 -7.24903e-19)
(28.7132 0.0463098 3.54233e-18)
(28.8081 0.0497358 -5.71258e-19)
(26.9876 0.02746 -6.81128e-19)
(22.6365 0.0102832 -2.0254e-19)
(22.7088 0.0123223 -4.79325e-19)
(27.0762 0.0308197 0)
(28.8947 0.0549528 1.25988e-18)
(29.033 0.0524022 -5.03129e-18)
(27.2232 0.0349788 0)
(22.8882 0.00863662 8.95036e-19)
(23.0458 0.0186721 0)
(27.3665 0.0307172 8.15795e-19)
(29.1557 0.05039 -7.63165e-19)
(30.9358 0.0883242 9.95785e-19)
(32.0192 0.111106 -6.12737e-20)
(32.759 0.121746 0)
(33.2357 0.136891 0)
(33.611 0.178498 0)
(34.0571 0.202631 8.23999e-19)
(34.3833 0.211806 -8.68662e-19)
(34.7057 0.223851 1.03058e-19)
(34.9595 0.225776 -5.15486e-20)
(35.2012 0.228581 0)
(35.401 0.227397 0)
(35.5923 0.225269 0)
(35.7532 0.220828 0)
(35.9089 0.214487 0)
(36.0371 0.205575 8.55576e-19)
(36.1575 0.195217 -2.61315e-18)
(36.2489 0.182484 1.82914e-18)
(36.3224 0.167538 0)
(36.354 0.145033 -9.93328e-19)
(36.3224 0.108716 -3.11832e-17)
(36.1955 0.0779404 7.21024e-17)
(36.0324 0.0466151 0)
(35.836 0.0172428 0)
(35.1623 0.0014415 1.16822e-17)
(33.5715 0.011787 0)
(31.9377 0.0436464 0)
(27.4463 -0.108596 7.93286e-18)
(26.9595 -0.268223 -1.05241e-17)
(31.4946 -0.145179 -7.05181e-17)
(33.1346 -0.184069 7.23615e-21)
(31.6352 -0.567428 2.95973e-17)
(28.8001 -0.442133 2.7319e-17)
(21.8865 -0.394344 0)
(22.9717 -0.0212786 -5.0616e-18)
(29.8263 -0.102907 1.47652e-17)
(32.564 -0.184643 -7.01397e-18)
(32.6137 -0.0301908 -3.11651e-18)
(29.8446 -0.0291555 -2.91738e-18)
(22.6388 -0.0205668 0)
(22.7055 -0.0104024 0)
(29.9511 -0.0036791 -1.79214e-18)
(32.7213 0.00764047 0)
(32.6617 0.0124302 0)
(29.87 0.00459157 9.10523e-19)
(22.5216 -0.00199718 1.38372e-19)
(22.6488 -0.000629871 3.78319e-25)
(29.9666 0.0119325 0)
(32.7327 0.0245865 -3.00426e-18)
(32.6974 0.0212105 7.56525e-19)
(29.8949 0.0121559 -9.2093e-19)
(22.5446 0.00282895 2.73998e-25)
(22.6868 0.00139669 -2.34801e-18)
(30.0095 0.0177249 -3.01535e-25)
(32.7775 0.0315844 -1.5144e-18)
(32.7574 0.0263026 1.53215e-18)
(30.0063 0.0150289 -9.15164e-19)
(22.5979 0.0043839 -9.74829e-19)
(22.7508 0.00620798 3.77622e-25)
(30.1317 0.0193636 0)
(32.8519 0.0328186 -1.53002e-18)
(32.8475 0.0308483 1.52379e-18)
(30.107 0.0213588 0)
(22.7728 0.0104884 2.7063e-25)
(22.9278 0.00712678 -1.39237e-19)
(30.2388 0.0219705 0)
(32.947 0.0360089 -1.52329e-18)
(32.9473 0.0342495 1.52346e-18)
(30.2437 0.0230597 0)
(22.958 0.0102141 0)
(23.113 0.0074611 0)
(30.3775 0.0229532 0)
(33.0485 0.0376956 -1.52298e-18)
(33.052 0.0357157 1.52315e-18)
(30.3863 0.0239536 0)
(23.1482 0.0105764 0)
(23.3071 0.00798242 0)
(30.5228 0.0241971 0)
(33.1551 0.0396264 -1.52266e-18)
(33.1627 0.0375179 1.52281e-18)
(30.5359 0.0250425 0)
(23.3479 0.0110027 0)
(23.5105 0.0084534 0)
(30.6749 0.0253009 0)
(33.2675 0.0413817 -1.52231e-18)
(33.2784 0.0391158 1.52247e-18)
(30.6919 0.0260385 0)
(23.5564 0.0113817 0)
(23.7233 0.00901862 0)
(30.8338 0.0266795 0)
(33.3851 0.0434726 -1.52196e-18)
(33.4003 0.041211 1.52211e-18)
(30.8556 0.0273296 0)
(23.7755 0.0118601 0)
(23.9468 0.00953282 0)
(31.0007 0.0279649 0)
(33.5093 0.0454914 0)
(33.5286 0.0431963 0)
(31.0274 0.0285691 0)
(24.005 0.01231 0)
(24.1815 0.0102029 0)
(31.1763 0.0296614 0)
(33.6401 0.0481727 -1.5212e-18)
(33.6648 0.0458829 1.52134e-18)
(31.2089 0.0301798 0)
(24.2472 0.0128786 0)
(24.4295 0.0108349 0)
(31.3623 0.0313626 0)
(33.7797 0.0508752 0)
(33.8098 0.0486882 0)
(31.4016 0.0319084 0)
(24.5032 0.0134678 0)
(24.6924 0.0116718 0)
(31.5606 0.033629 0)
(33.9285 0.0544991 -1.52035e-18)
(33.9656 0.0523497 -1.52047e-18)
(31.6078 0.034112 0)
(24.776 0.014206 0)
(24.9733 0.0125389 0)
(31.7736 0.0361031 0)
(34.0893 0.0584493 1.51836e-18)
(34.1343 0.0567027 -1.52153e-18)
(31.8306 0.0367916 0)
(25.0686 0.0150964 0)
(25.2765 0.0137668 0)
(32.0054 0.0395466 0)
(34.2644 0.0639618 -1.51942e-18)
(34.3196 0.0623968 1.5195e-18)
(32.0745 0.0402862 0)
(25.3872 0.0162814 0)
(25.6085 0.0152458 0)
(32.2608 0.0436909 0)
(34.4579 0.0705028 -1.5189e-18)
(34.525 0.0698359 1.51896e-18)
(32.345 0.0450163 0)
(25.739 0.0179873 0)
(25.9784 0.0175736 0)
(32.5462 0.0497351 0)
(34.6736 0.0796408 -1.51837e-18)
(34.7556 0.0798801 1.51838e-18)
(32.6494 0.0515964 0)
(26.1361 0.020417 0)
(26.3996 0.0206384 0)
(32.869 0.0577246 0)
(34.9161 0.0918058 -1.51779e-18)
(35.0173 0.0948261 1.51774e-18)
(32.9981 0.0615685 0)
(26.5974 0.0246478 0)
(26.9016 0.0260472 0)
(33.2466 0.0699045 0)
(35.197 0.110246 -1.51718e-18)
(35.3252 0.116119 1.517e-18)
(33.4122 0.0756376 0)
(27.1625 0.0319215 0)
(27.5296 0.0355037 0)
(33.7002 0.0871866 0)
(35.5308 0.138667 -1.51645e-18)
(35.6932 0.151128 1.51608e-18)
(33.9125 0.0957555 0)
(27.8833 0.0472458 0)
(28.3695 0.0561708 0)
(34.2734 0.108787 0)
(35.9533 0.1857 -1.51552e-18)
(36.2172 0.224527 -1.52125e-18)
(34.6239 0.126021 0)
(28.9288 0.0968715 0)
(29.6081 0.218902 2.21757e-18)
(35.1005 0.261698 -1.83539e-18)
(36.557 0.382516 0)
(36.7955 0.624424 0)
(35.4295 0.5122 -3.67675e-18)
(30.1621 0.47346 8.88471e-18)
(30.6574 0.768737 0)
(35.7132 0.860128 0)
(36.9724 0.96738 0)
(36.971 1.33007 1.67401e-22)
(35.742 1.27174 7.23556e-18)
(30.8878 1.18265 -1.76523e-17)
(31.0745 1.44305 0)
(35.7357 1.57373 0)
(36.9039 1.64056 0)
(36.7861 1.91544 -1.17345e-17)
(35.6785 1.85182 1.41341e-17)
(31.2064 1.70699 0)
(31.3489 1.96942 0)
(35.5835 2.12748 0)
(36.6469 2.18543 1.15707e-17)
(36.4496 2.44352 0)
(35.4522 2.3981 0)
(31.4117 2.21942 3.30383e-17)
(31.4455 2.43 3.28824e-17)
(35.2971 2.6208 -2.73067e-17)
(36.238 2.6674 3.49992e-19)
(35.9938 2.87484 -3.36473e-17)
(35.0988 2.83793 2.73215e-17)
(31.4521 2.6544 5.07208e-19)
(31.5085 2.83873 3.14858e-17)
(34.9357 3.01671 -2.65419e-17)
(35.7618 3.06774 0)
(35.4682 3.29499 -2.28864e-17)
(34.6778 3.27382 2.70123e-17)
(31.4814 3.11758 -1.00008e-18)
(31.4516 3.33739 -2.99276e-17)
(34.4196 3.47764 -7.94709e-19)
(35.1449 3.49368 2.2191e-17)
(34.7785 3.68674 2.46752e-17)
(34.1164 3.66569 2.14788e-17)
(31.425 3.55917 -2.65303e-17)
(31.4346 3.77503 1.72189e-17)
(33.8091 3.86061 -3.91387e-17)
(34.3781 3.89526 1.17349e-17)
(33.868 4.03143 1.15092e-16)
(33.379 4.04962 2.06773e-18)
(31.4322 3.95221 9.53229e-18)
(29.1805 3.92676 0)
(32.3055 4.06256 -5.5774e-18)
(33.2353 4.05072 0)
(33.1781 4.34115 2.62069e-17)
(32.4886 4.33599 -2.89309e-17)
(29.8046 4.10627 3.95818e-17)
(29.6155 4.35989 -3.50702e-17)
(32.177 4.57353 2.75895e-17)
(32.802 4.54422 -2.35365e-17)
(32.3069 4.72607 3.40817e-19)
(31.7653 4.78883 8.45723e-19)
(29.4172 4.62043 -1.04108e-18)
(29.1295 4.8544 6.09001e-17)
(31.2777 4.97033 -7.89188e-19)
(31.7408 4.89491 -1.79323e-17)
(31.0444 5.06105 1.66673e-17)
(30.6627 5.17376 -1.78972e-17)
(28.7754 5.13919 1.87456e-18)
(28.3074 5.43931 -6.80048e-18)
(29.8983 5.40095 -5.14185e-18)
(30.196 5.23143 7.7203e-18)
(29.1235 5.19051 -1.42294e-17)
(28.8954 5.46625 0)
(27.7695 5.59052 8.65132e-17)
(25.6413 5.37422 1.01911e-16)
(27.5813 5.60135 1.41957e-18)
(28.1378 5.62178 1.29246e-18)
(27.2938 5.56041 0)
(26.7936 5.79894 -1.02467e-18)
(25.2373 5.75917 8.12666e-17)
(24.1602 6.00879 0)
(25.541 5.89188 0)
(25.9127 5.57756 0)
(24.1803 5.6834 4.44531e-17)
(23.9736 6.17141 -3.64964e-17)
(22.994 6.47073 5.70543e-17)
(21.7201 6.59997 1.12047e-17)
(22.0566 6.00142 -1.89828e-17)
(22.0858 5.31241 -1.62802e-17)
(20.4173 5.86073 -5.54853e-17)
(20.1555 6.30343 5.01081e-17)
(19.3942 6.58696 -1.77806e-18)
(17.6437 6.50611 1.34701e-18)
(18.0421 5.86575 0)
(18.3025 5.03542 5.24304e-17)
(15.4501 3.707 7.39821e-17)
(15.3814 5.25946 1.26802e-17)
(15.3975 6.77967 -6.94012e-17)
(10.2369 4.60135 1.78359e-16)
(9.87227 1.95312 -1.60848e-16)
(10.3612 -0.369519 7.28391e-18)
(7.41979 -3.24505 5.70534e-17)
(6.56075 -0.546148 -1.5938e-16)
(6.21531 2.42919 1.00587e-16)
(-5.32547 -12.7913 -1.90229e-16)
(-2.6326 -14.7566 0)
(1.39166 -16.6185 -9.78637e-17)
(2.84746 -33.7887 0)
(-1.62277 -34.4554 4.5495e-17)
(-5.64218 -36.4292 -5.95109e-17)
(16.3331 -50.5486 0)
(20.0446 -46.8223 8.55186e-17)
(19.5342 -45.706 -1.4287e-16)
(36.5398 -44.8507 8.99257e-17)
(37.351 -44.9466 -1.03899e-16)
(34.2905 -47.1528 1.72019e-16)
(39.3819 -39.9351 0)
(43.4144 -37.7339 -1.87843e-17)
(41.9747 -39.6192 0)
(46.4025 -35.9384 0)
(46.6059 -34.4086 0)
(42.7294 -33.4585 -8.77348e-17)
(42.7286 -29.7749 1.5168e-16)
(46.9081 -30.5041 -1.11663e-16)
(47.4873 -31.9428 0)
(47.2381 -28.8145 -8.46409e-17)
(46.2048 -27.2549 1.91721e-16)
(41.7648 -26.4458 -1.08021e-16)
(43.1231 -24.9935 8.92362e-18)
(47.0667 -27.0491 0)
(48.0066 -28.4971 0)
(47.8676 -26.3745 -2.64466e-18)
(46.5432 -25.1091 0)
(42.3799 -23.3604 -8.93648e-17)
(40.9823 -21.8251 -1.09825e-16)
(45.2245 -23.3554 -5.39868e-17)
(46.9523 -24.4322 4.24419e-17)
(47.668 -25.042 -7.82411e-17)
(46.3322 -23.9257 2.42989e-17)
(42.4491 -21.7862 2.88748e-18)
(41.6992 -20.9057 0)
(45.712 -22.7906 -1.75653e-17)
(47.3024 -23.8356 1.04192e-17)
(46.2222 -22.6229 2.09263e-17)
(44.4273 -21.6176 5.88396e-18)
(40.4078 -19.7642 1.04652e-16)
(41.836 -20.2446 9.34084e-17)
(45.6515 -22.3578 7.63256e-17)
(47.03 -23.3265 -1.13669e-16)
(46.5336 -22.6422 -1.02217e-17)
(44.9377 -21.6917 0)
(40.9915 -19.687 0)
(39.6567 -19.088 1.05708e-16)
(43.5596 -20.8687 -4.61836e-17)
(45.4456 -21.6031 -5.64895e-17)
(46.1873 -22.5288 -1.31569e-16)
(44.7977 -21.7078 0)
(41.1582 -19.7197 0)
(40.4898 -19.3402 0)
(44.2324 -21.2579 0)
(45.797 -22.121 -8.12283e-17)
(44.7773 -21.2803 0)
(42.9874 -20.5206 0)
(39.265 -18.7173 -1.04966e-16)
(40.6878 -19.6151 -1.77136e-16)
(44.1706 -21.5221 2.97518e-16)
(45.5257 -22.2339 -1.94369e-20)
(45.1805 -22.0376 0)
(43.6806 -21.2292 -1.04512e-16)
(40.1075 -19.3451 1.44372e-16)
(38.941 -18.8774 0)
(42.4939 -20.6483 -5.63236e-18)
(44.2278 -21.3394 0)
(45.0119 -22.2738 1.26094e-16)
(43.7005 -21.598 -1.47244e-16)
(40.3452 -19.7373 2.63994e-16)
(39.7201 -19.4744 -1.41817e-16)
(43.1938 -21.3493 1.07749e-16)
(44.6599 -22.1447 -5.01254e-18)
(43.7319 -21.607 1.00123e-17)
(42.0058 -20.9483 -9.01224e-17)
(38.5319 -19.1297 2.02839e-16)
(40.0219 -20.0804 2.52166e-16)
(43.2917 -21.9276 -1.29119e-16)
(44.5729 -22.5429 0)
(44.2968 -22.5575 0)
(42.8606 -21.7935 -1.34338e-17)
(39.4877 -19.9036 8.97875e-18)
(38.4034 -19.5859 1.00074e-16)
(41.7805 -21.4187 0)
(43.4479 -22.0575 0)
(44.3073 -22.9558 0)
(43.0623 -22.3551 -1.29992e-16)
(39.8558 -20.5036 2.55277e-16)
(39.3277 -20.3628 1.13018e-17)
(42.6292 -22.2779 -1.3561e-17)
(44.0432 -23.0245 8.07242e-17)
(43.2427 -22.5439 0)
(41.6045 -21.8949 5.72865e-18)
(38.2827 -20.0267 4.8788e-22)
(39.6863 -20.9977 -9.1815e-17)
(42.8612 -22.8802 1.40977e-17)
(44.0934 -23.456 -1.27547e-16)
(43.8373 -23.5833 0)
(42.4397 -22.8186 -1.37768e-17)
(39.1577 -20.8581 0)
(38.0825 -20.6383 0)
(41.3876 -22.582 8.76968e-17)
(43.036 -23.2094 -1.24189e-16)
(43.9656 -24.1085 0)
(42.7694 -23.5625 4.86031e-18)
(39.6481 -21.677 0)
(39.168 -21.5294 0)
(42.3265 -23.4364 0)
(43.7569 -24.2016 0)
(42.8681 -23.9947 -5.52666e-18)
(41.3537 -23.1344 0)
(38.1449 -20.9157 -1.14647e-16)
(39.5483 -22.3461 -3.0668e-16)
(42.7268 -24.2822 1.83191e-16)
(43.8956 -24.761 -6.93933e-17)
(43.3832 -24.5142 -7.94282e-18)
(42.0131 -23.849 -9.62564e-18)
(38.8776 -21.9497 0)
(40.0256 -22.963 0)
(43.05 -24.89 -1.69944e-17)
(44.2198 -25.4068 1.1893e-16)
(44.0543 -25.7199 4.9346e-18)
(42.7458 -25.052 1.19497e-16)
(39.7504 -23.0612 -7.58715e-17)
(39.0135 -22.7393 9.93624e-18)
(41.9927 -24.6353 -5.74636e-18)
(43.4558 -25.2763 -4.58651e-17)
(44.3057 -26.0886 6.12903e-17)
(43.1655 -25.522 -1.44601e-17)
(40.1535 -23.5592 7.75483e-17)
(39.647 -23.6485 9.59006e-18)
(42.6682 -25.7552 1.42943e-17)
(44.0855 -26.4358 0)
(43.3786 -26.2108 4.42558e-17)
(41.9738 -25.348 -9.32946e-17)
(38.9944 -23.0545 2.28989e-16)
(40.2493 -24.3919 3.07603e-16)
(43.3548 -26.4325 -1.77957e-16)
(44.4612 -26.927 0)
(43.9566 -26.6885 0)
(42.6131 -25.9869 -4.82763e-18)
(39.5222 -23.9573 -8.78585e-17)
(40.6921 -25.2611 -5.20418e-18)
(43.5739 -27.2059 4.27022e-18)
(44.7318 -27.6364 0)
(44.7234 -28.0051 0)
(43.506 -27.3317 0)
(40.68 -25.3741 0)
(39.989 -24.9643 4.77675e-22)
(42.8352 -26.8537 -1.83255e-16)
(44.2002 -27.5229 7.85179e-17)
(45.0458 -28.3669 -6.6822e-17)
(43.9198 -27.8068 5.20499e-18)
(40.8921 -25.7519 0)
(40.1249 -25.6528 1.77491e-16)
(43.1209 -27.7772 -9.43319e-18)
(44.4914 -28.4123 7.80999e-18)
(45.4752 -29.2737 -6.9705e-18)
(44.3929 -28.8487 0)
(41.5996 -26.9348 5.16629e-18)
(41.5407 -26.953 -1.43679e-16)
(44.3114 -28.8801 0)
(45.4739 -29.5843 -7.90882e-17)
(44.9168 -29.0784 1.30562e-16)
(43.5748 -28.3455 2.27167e-21)
(40.7452 -26.436 1.08262e-16)
(41.6171 -27.5295 -1.97698e-16)
(44.5027 -29.5417 -1.04435e-17)
(45.6163 -30.0145 -4.44882e-18)
(45.2026 -30.1069 0)
(43.9377 -29.477 9.42924e-18)
(41.1088 -27.4492 0)
(42.5902 -28.6051 1.03242e-17)
(45.2518 -30.455 1.34922e-16)
(46.2243 -30.8823 -1.10822e-16)
(46.2204 -31.1466 8.41603e-17)
(45.1334 -30.426 -3.32604e-18)
(42.4379 -28.5325 -1.50955e-16)
(41.5713 -28.0876 -2.16622e-16)
(44.3188 -30.0064 9.97954e-17)
(45.633 -30.7296 -8.83868e-17)
(46.3831 -31.6897 1.33797e-17)
(45.2944 -31.2854 -1.68093e-16)
(42.5455 -29.3396 1.99225e-16)
(42.194 -29.1986 0)
(44.9012 -31.1285 -4.79793e-18)
(46.0682 -31.7594 -1.5816e-17)
(47.0659 -32.5015 0)
(46.1452 -32.0625 2.1557e-17)
(43.5149 -30.2038 1.78075e-16)
(43.2827 -30.0779 -9.11618e-18)
(45.9678 -32.0081 -1.3602e-17)
(47.0229 -32.7529 0)
(46.4502 -32.4077 -4.25705e-17)
(45.147 -31.6776 -9.6474e-17)
(42.3925 -29.6773 1.10853e-16)
(43.438 -30.8979 -1.90651e-16)
(46.186 -32.9026 2.68648e-16)
(47.2014 -33.2987 -1.27905e-16)
(46.9158 -33.3354 1.12902e-16)
(45.7881 -32.6847 -8.76834e-17)
(43.0562 -30.6926 -1.18305e-17)
(44.3654 -31.7628 1.8149e-16)
(46.9683 -33.6506 -1.73837e-17)
(47.8592 -34.0601 -1.42985e-17)
(47.8411 -34.3028 -6.62466e-17)
(46.8601 -33.5765 1.3763e-17)
(44.1335 -31.5984 1.43589e-16)
(43.0993 -31.4488 -1.19377e-16)
(45.9124 -33.3324 4.74047e-20)
(47.3284 -33.906 -9.7772e-17)
(48.0538 -34.9279 0)
(47.0798 -34.4632 -1.7529e-16)
(44.3895 -32.3521 1.28664e-17)
(43.8955 -32.2266 -6.18296e-18)
(46.654 -34.287 5.07512e-18)
(47.7775 -34.9296 0)
(48.7966 -35.667 -1.27642e-16)
(47.9244 -35.2534 1.30218e-16)
(45.2494 -33.2811 -1.75928e-17)
(44.7889 -32.9404 -7.22434e-17)
(47.4577 -34.8807 9.14556e-17)
(48.5063 -35.5518 0)
(49.2696 -36.2795 1.2423e-16)
(48.3528 -35.8204 1.51578e-16)
(45.6998 -33.7994 -1.7019e-16)
(45.3942 -33.882 -5.68142e-21)
(47.9793 -36.0229 -1.70045e-17)
(49.1252 -36.7136 6.55836e-17)
(48.6046 -36.5964 -7.61711e-17)
(47.4837 -35.6983 1.04944e-16)
(44.9504 -33.3428 0)
(45.9009 -34.7344 -1.97776e-16)
(48.7523 -36.8082 1.77832e-16)
(49.6883 -37.1689 -1.88421e-17)
(49.3424 -37.121 -1.10288e-16)
(48.2431 -36.3692 8.24516e-17)
(45.5225 -34.2922 -6.23016e-18)
(46.5197 -35.2144 -5.94877e-18)
(49.2726 -37.3481 4.41961e-22)
(50.1485 -37.8139 1.2031e-16)
(49.7702 -37.843 -6.84655e-17)
(48.6645 -37.1617 7.41808e-17)
(45.9418 -34.9944 -1.80274e-16)
(47.1205 -36.2071 2.87981e-21)
(49.6993 -38.2189 1.36842e-16)
(50.5928 -38.5682 1.18813e-16)
(50.6611 -38.9766 0)
(49.6048 -38.3047 0)
(47.0891 -36.2591 0)
(46.7018 -35.4915 0)
(49.2185 -37.7947 -9.31852e-17)
(50.2252 -38.7577 8.76341e-17)
(51.2124 -39.311 -1.91569e-17)
(50.2738 -38.9334 7.2361e-17)
(47.3534 -36.8143 2.26273e-16)
(46.904 -36.2935 -3.15967e-16)
(49.6587 -38.4819 9.29747e-17)
(50.7731 -39.2752 1.71505e-17)
(51.5439 -40.0823 0)
(50.6216 -39.7182 0)
(47.9229 -37.5736 0)
(47.6304 -37.3702 0)
(50.2521 -39.4426 0)
(51.2828 -40.1206 7.89716e-18)
(52.2194 -40.7993 -1.48605e-16)
(51.3894 -40.4236 1.51147e-16)
(48.7635 -38.3978 -1.72509e-16)
(48.3923 -38.1171 -5.4924e-18)
(50.9818 -40.1181 6.75417e-17)
(51.9697 -40.781 -1.04314e-16)
(52.7407 -41.3886 1.11022e-16)
(51.9516 -40.972 -1.3199e-16)
(49.4405 -38.9976 -1.56801e-17)
(49.148 -38.8471 9.14069e-18)
(51.6577 -40.8879 -3.40984e-18)
(52.6771 -41.6427 0)
(52.0915 -41.6024 0)
(51.0488 -40.6354 1.24322e-17)
(48.5223 -38.1987 0)
(49.2592 -39.8132 2.14546e-16)
(52.1693 -41.8893 -1.9541e-16)
(53.1281 -42.1638 1.90202e-17)
(52.82 -42.2464 -7.7488e-17)
(51.768 -41.4679 1.57186e-17)
(49.073 -39.3361 2.00741e-16)
(50.2334 -40.2988 1.98547e-16)
(52.9739 -42.4282 5.00242e-18)
(53.7416 -42.8311 -1.39822e-16)
(53.4636 -42.7432 0)
(52.4878 -42.0352 -9.6372e-18)
(49.7769 -39.9109 -1.82059e-16)
(50.7145 -40.7767 -5.75101e-18)
(53.4444 -42.9573 1.51008e-16)
(54.2684 -43.3878 -1.40113e-16)
(53.9298 -43.5013 1.48419e-17)
(52.8795 -42.8125 0)
(50.1999 -40.5873 0)
(51.4727 -41.8085 0)
(53.9997 -43.845 0)
(54.8159 -44.175 1.37432e-17)
(54.9471 -44.544 -1.51715e-17)
(53.9644 -43.8574 1.08672e-16)
(51.4437 -41.7797 -2.91229e-16)
(51.0259 -41.1165 2.32857e-16)
(53.5444 -43.4248 9.83377e-17)
(54.5429 -44.3556 -8.10463e-17)
(55.568 -44.8649 -7.04438e-17)
(54.6886 -44.4876 -7.72912e-17)
(51.8036 -42.3506 -3.00606e-18)
(51.3622 -41.7955 6.29567e-18)
(54.1095 -44.0377 -1.55083e-17)
(55.1734 -44.8445 -6.82255e-17)
(55.9659 -45.5577 4.89146e-17)
(55.1063 -45.161 4.97831e-18)
(52.3584 -42.909 -1.99747e-16)
(51.9553 -42.7122 5.87939e-18)
(54.6284 -44.9334 2.31237e-16)
(55.6689 -45.6473 -4.74973e-17)
(56.6816 -46.3321 1.25932e-16)
(55.8833 -45.9761 -1.52947e-16)
(53.2299 -43.8563 -5.83669e-18)
(52.8965 -43.568 1.79693e-16)
(55.5047 -45.6426 -4.61213e-18)
(56.4779 -46.3304 -7.64629e-18)
(57.3276 -46.9287 2.26372e-17)
(56.5437 -46.5517 4.58966e-18)
(53.9398 -44.4884 0)
(53.5504 -44.22 1.65734e-16)
(56.1235 -46.292 -1.31405e-16)
(57.0882 -46.9705 -6.50109e-17)
(57.9542 -47.5635 -2.01356e-17)
(57.1927 -47.1942 -1.56477e-16)
(54.6868 -45.1821 3.32185e-16)
(54.5321 -45.0956 -1.39271e-16)
(57.0518 -47.1979 2.20874e-16)
(58.0148 -47.9061 -6.48585e-17)
(57.5947 -47.7337 1.1791e-16)
(56.5749 -46.8274 -1.88302e-16)
(54.0513 -44.5009 1.02685e-16)
(54.8723 -45.7866 2.2719e-16)
(57.7049 -47.9357 -1.59548e-16)
(58.5752 -48.2796 -1.87361e-17)
(58.2611 -48.3493 1.70518e-17)
(57.2237 -47.5796 1.54965e-16)
(54.5054 -45.3362 -2.16648e-16)
(55.6641 -46.3458 1.52019e-17)
(58.4436 -48.5765 0)
(59.2103 -48.9548 -6.54338e-17)
(58.9729 -48.9286 -6.36297e-17)
(58.0014 -48.1981 -7.23041e-17)
(55.2451 -45.9689 1.7722e-16)
(56.3032 -46.8826 1.87946e-16)
(59.0866 -49.1266 4.77801e-18)
(59.8574 -49.5241 0)
(59.5753 -49.559 -6.13238e-17)
(58.5713 -48.8382 -9.28548e-18)
(55.8243 -46.5759 -1.86933e-16)
(56.9801 -47.7127 1.87002e-16)
(59.6827 -49.8876 -1.47581e-16)
(60.489 -50.2171 0)
(60.3219 -50.2852 -5.82593e-17)
(59.3709 -49.5958 -7.05039e-17)
(56.677 -47.4225 3.48701e-16)
(57.8795 -48.5008 1.57778e-16)
(60.4681 -50.5614 1.65298e-17)
(61.2264 -50.8855 0)
(61.4124 -51.2495 1.64402e-16)
(60.5316 -50.5334 -1.14077e-16)
(57.8546 -48.3837 0)
(57.2369 -48.0299 -3.48289e-18)
(59.9464 -50.1602 -6.07526e-18)
(61.1351 -50.9141 -5.30978e-17)
(61.9715 -51.6017 0)
(61.1763 -51.1213 -5.4779e-18)
(58.4202 -48.7726 3.24158e-18)
(57.7604 -48.4404 1.9619e-16)
(60.6228 -50.8293 5.10676e-18)
(61.6848 -51.5776 -8.44938e-18)
(62.6787 -52.2792 -5.66257e-17)
(61.8798 -51.8862 1.51336e-16)
(59.0384 -49.5373 1.50222e-17)
(58.607 -49.269 -1.16879e-17)
(61.4385 -51.5943 7.60917e-17)
(62.4605 -52.3239 -6.26874e-17)
(63.5047 -52.9575 0)
(62.7452 -52.5955 0)
(59.9284 -50.33 1.86294e-16)
(59.5377 -49.9374 -1.79265e-16)
(62.3629 -52.1742 0)
(63.331 -52.8885 0)
(64.1794 -53.4789 7.4894e-17)
(63.394 -53.1044 1.82827e-17)
(60.5819 -50.8567 0)
(60.1809 -50.5603 0)
(62.971 -52.8175 -9.18455e-17)
(63.9569 -53.539 -1.43779e-17)
(64.9121 -54.15 0)
(64.1582 -53.8127 4.10754e-18)
(61.4765 -51.6672 0)
(61.4347 -51.564 1.43806e-16)
(64.1387 -53.7621 -2.14125e-16)
(65.1062 -54.4847 1.64434e-16)
(64.7212 -54.2419 -5.35192e-18)
(63.6952 -53.2413 0)
(60.9582 -50.7748 2.22853e-16)
(61.7337 -52.1352 2.14496e-16)
(64.8277 -54.4138 -8.76358e-17)
(65.7403 -54.7611 6.98849e-17)
(65.4141 -54.8334 6.37229e-17)
(64.3295 -53.9853 -5.14206e-18)
(61.3798 -51.5733 3.15768e-18)
(62.6649 -52.6523 -3.05032e-18)
(65.6637 -55.0345 1.63704e-16)
(66.4583 -55.4322 -1.42938e-16)
(66.2344 -55.4484 -1.1085e-16)
(65.206 -54.6485 -8.2132e-17)
(62.2243 -52.2432 1.88686e-16)
(63.5122 -53.3975 0)
(66.4887 -55.7346 -4.79641e-18)
(67.2886 -56.0678 -1.5701e-17)
(67.1405 -56.049 7.67461e-17)
(66.1458 -55.2879 -6.50219e-17)
(63.1955 -52.9862 0)
(64.4369 -54.0056 0)
(67.3727 -56.281 1.47338e-16)
(68.1674 -56.6464 -1.96818e-16)
(68.0014 -56.6748 6.5247e-17)
(67.0056 -55.925 -7.05783e-17)
(64.0579 -53.6166 0)
(65.3622 -54.7442 1.63671e-16)
(68.1765 -56.9332 0)
(68.9694 -57.262 6.03516e-17)
(69.1921 -57.6571 -4.97271e-18)
(68.2706 -56.8909 1.10902e-16)
(65.3199 -54.5775 1.28219e-20)
(64.5811 -54.3148 -1.11908e-16)
(67.5795 -56.5646 9.08137e-17)
(68.9327 -57.3257 1.59222e-17)
(69.9324 -58.1274 8.75425e-17)
(69.1029 -57.6676 -8.75126e-17)
(66.2128 -55.1963 -1.30555e-17)
(65.6344 -54.84 -1.87591e-16)
(68.7259 -57.2926 1.63381e-16)
(69.7944 -58.0593 -8.433e-18)
(70.9675 -58.6901 -1.36625e-16)
(70.1871 -58.2631 1.56397e-16)
(67.0891 -55.8121 0)
(66.5573 -55.3941 3.66991e-16)
(69.6907 -57.8613 -1.51758e-16)
(70.7592 -58.6616 0)
(71.8456 -59.3286 6.17748e-17)
(71.0039 -58.9607 -1.50548e-16)
(67.9084 -56.5285 5.79845e-18)
(67.519 -56.1678 -1.78524e-16)
(70.6047 -58.5686 2.18881e-16)
(71.6689 -59.3491 -6.01785e-17)
(72.7605 -60.0232 0)
(71.9232 -59.6912 1.45603e-16)
(68.8932 -57.3508 -1.79009e-16)
(68.6063 -57.0541 -1.64489e-16)
(71.6387 -59.38 1.38881e-16)
(72.6669 -60.1233 0)
(73.8307 -60.7095 -9.30004e-17)
(73.0485 -60.4023 1.46809e-16)
(70.1569 -58.2253 -1.67378e-16)
(70.248 -58.0645 4.47636e-18)
(73.2684 -60.325 -1.33188e-17)
(74.1954 -61.0669 -9.89422e-18)
(73.9931 -60.5644 -8.44708e-17)
(72.7005 -59.7389 -5.98134e-18)
(69.5679 -57.5033 1.08492e-16)
(70.9371 -58.2295 -3.01551e-18)
(74.0315 -60.7798 1.79414e-16)
(74.8841 -61.2774 9.22642e-17)
(74.6368 -61.1988 -8.39175e-17)
(73.499 -60.387 2.49468e-16)
(70.2044 -57.7939 -1.95598e-16)
(71.6511 -58.9929 -2.06955e-16)
(74.9121 -61.5646 -1.47521e-17)
(75.7788 -61.9423 0)
(75.6328 -62.0713 -5.45984e-17)
(74.5074 -61.248 9.51302e-18)
(71.2387 -58.7073 1.16603e-17)
(72.9958 -60.0855 1.86663e-16)
(76.1804 -62.4726 -1.51833e-20)
(77.0034 -62.763 -1.92451e-16)
(77.0191 -62.736 0)
(75.989 -61.9829 0)
(72.7855 -59.6873 1.7913e-16)
(74.2695 -60.5282 1.78619e-16)
(77.4635 -62.846 -1.44984e-16)
(78.2466 -63.2475 -5.94241e-17)
(78.0973 -63.2407 0)
(77.0208 -62.4568 0)
(73.7807 -60.0841 1.68391e-16)
(75.1969 -61.1645 0)
(78.3058 -63.4584 1.60566e-17)
(79.1752 -63.8062 0)
(79.4947 -64.3561 -1.63787e-20)
(78.4494 -63.5264 9.15886e-17)
(75.251 -61.0618 -1.45016e-16)
(74.7503 -60.5966 6.82854e-18)
(77.9915 -63.121 -5.84857e-18)
(79.3162 -64.0685 -5.12856e-18)
(80.53 -64.7781 4.43551e-18)
(79.5621 -64.3615 -1.62833e-16)
(76.2123 -61.7609 2.15863e-16)
(75.7776 -61.5145 -1.09175e-16)
(79.2175 -64.1261 -4.93315e-18)
(80.4172 -64.9469 -6.50045e-17)
(82.0713 -65.5303 0)
(81.3131 -65.1645 4.74055e-18)
(77.9272 -62.7055 1.1633e-17)
(77.4986 -62.0835 -1.12267e-17)
(80.9853 -64.4864 0)
(82.0474 -65.3016 0)
(83.1098 -65.792 -1.47304e-17)
(82.2164 -65.3616 0)
(78.7248 -62.8714 0)
(78.1944 -62.4222 1.69269e-16)
(81.6762 -64.9791 4.29181e-18)
(82.8436 -65.8393 -4.23203e-17)
(84.0941 -66.5195 3.7898e-21)
(83.1931 -66.1752 -1.33066e-16)
(79.8754 -63.7476 1.0077e-17)
(80.0157 -63.6968 -8.89262e-18)
(83.4333 -66.2805 -3.27663e-18)
(84.5468 -67.1097 4.86882e-18)
(84.424 -66.8258 -9.29805e-17)
(83.0603 -65.8617 1.00827e-16)
(79.5729 -63.1993 2.21759e-16)
(81.3462 -64.4973 2.05e-16)
(84.9532 -66.9925 -7.43954e-17)
(85.9093 -67.3374 1.61548e-16)
(85.8226 -67.2022 4.90834e-17)
(84.663 -66.2795 -9.41819e-17)
(80.9896 -63.7439 9.7677e-17)
(82.6677 -64.764 0)
(86.3667 -67.3052 4.73167e-18)
(87.2439 -67.7363 0)
(87.0564 -67.7159 1.1961e-16)
(85.8479 -66.8139 -7.28158e-17)
(82.1479 -64.2143 -1.73769e-16)
(83.8186 -65.4851 5.49505e-18)
(87.4435 -67.9944 1.78038e-17)
(88.4261 -68.3467 0)
(88.3427 -68.5802 -5.5631e-17)
(87.1266 -67.7287 -1.70278e-17)
(83.5011 -65.1654 -1.03826e-17)
(85.4695 -66.6309 1.65789e-16)
(88.9318 -68.9881 -1.09786e-16)
(89.8653 -69.2224 4.11461e-21)
(90.627 -69.9886 -7.13592e-17)
(89.5022 -69.2899 -1.2818e-17)
(85.9737 -66.7931 -1.50783e-16)
(85.9417 -66.1356 1.09284e-16)
(89.5061 -68.5247 -8.53671e-17)
(90.8003 -69.471 -1.48647e-17)
(92.3032 -69.8336 4.29119e-18)
(91.4233 -69.3168 -5.10345e-18)
(87.6823 -66.7808 3.07091e-18)
(86.9016 -66.127 -9.23557e-17)
(90.7953 -68.7713 7.54108e-17)
(92.0725 -69.6835 0)
(93.4806 -70.314 -1.462e-17)
(92.4908 -69.9301 0)
(88.674 -67.3204 0)
(88.2308 -67.0216 -1.66871e-16)
(92.088 -69.6976 0)
(93.371 -70.5553 1.38742e-17)
(95.0477 -71.2507 1.26804e-17)
(94.0626 -71.0116 0)
(90.4194 -68.5827 0)
(90.8611 -68.7052 1.38193e-16)
(94.6008 -71.2923 -1.02055e-16)
(95.8221 -72.0457 -8.53727e-17)
(95.9746 -71.7471 4.97896e-18)
(94.5646 -70.8125 0)
(90.7834 -68.2272 -2.18589e-16)
(93.131 -69.0138 3.10052e-18)
(97.0468 -71.5528 -1.01924e-17)
(97.8679 -71.9935 6.44999e-17)
(97.815 -71.5696 6.2465e-17)
(96.5876 -70.6579 9.47811e-18)
(92.4111 -68.0848 0)
(93.9467 -69.0287 -1.10483e-17)
(98.0486 -71.6495 0)
(99.1127 -72.0577 -1.45885e-17)
(98.9152 -72.318 1.38246e-17)
(97.5498 -71.3937 -1.10715e-21)
(93.4425 -68.6651 -7.33559e-17)
(95.9685 -70.3895 -3.07065e-16)
(99.7703 -72.8177 1.39371e-16)
(100.77 -73.0479 0)
(101.653 -73.9047 6.97917e-17)
(100.381 -73.1216 -2.13634e-16)
(96.4067 -70.5329 1.39226e-16)
(96.3215 -70.3042 -1.13525e-16)
(100.287 -72.9253 8.85672e-17)
(101.818 -73.8463 4.82505e-18)
(104.114 -73.9833 4.12885e-18)
(103.282 -73.5824 0)
(99.2622 -71.1546 1.93962e-16)
(98.63 -70.1892 -1.83967e-16)
(102.983 -72.6281 4.52063e-18)
(104.209 -73.5316 -5.91312e-17)
(105.643 -73.8651 0)
(104.625 -73.4204 -1.32573e-16)
(100.43 -70.9383 -4.98742e-18)
(100.181 -70.6465 1.31681e-17)
(104.625 -73.4313 0)
(105.999 -74.358 -7.65278e-17)
(105.836 -74.1987 7.93364e-17)
(103.981 -73.2335 -4.54161e-20)
(99.4772 -70.4316 -1.12779e-16)
(102.445 -72.0362 -1.92921e-16)
(106.751 -74.7373 1.50953e-16)
(107.899 -75.0286 -6.73351e-17)
(108.328 -75.6437 -7.51964e-18)
(106.922 -74.8471 9.21846e-18)
(102.449 -72.2114 0)
(106.376 -73.1479 1.51795e-16)
(110.473 -75.3494 -1.6209e-17)
(111.142 -75.6665 1.11598e-16)
(112.241 -75.5468 -7.65331e-17)
(111.127 -74.6568 -9.063e-17)
(106.522 -72.4645 1.53844e-16)
(105.571 -71.1791 9.57196e-17)
(110.432 -73.6526 -9.02952e-17)
(112.016 -74.8542 0)
(113.631 -75.4064 1.67419e-17)
(112.329 -75.0015 0)
(107.492 -72.4015 3.00867e-18)
(107.008 -72.024 1.79343e-16)
(111.901 -74.8361 0)
(113.528 -75.8524 -7.49544e-18)
(116.03 -76.5329 -1.98458e-17)
(114.912 -76.5195 1.30061e-16)
(110.503 -74.2451 0)
(112.057 -74.4784 0)
(116.645 -76.7612 0)
(117.892 -77.3685 9.65595e-18)
(118.709 -76.0157 7.9549e-17)
(117.319 -74.8998 -1.81975e-16)
(112.525 -72.9243 1.10136e-16)
(114.575 -73.0951 9.01449e-18)
(119.529 -75.579 0)
(120.585 -76.187 -1.66559e-17)
(120.403 -76.157 1.4768e-17)
(118.802 -75.1539 7.18602e-17)
(113.592 -72.4193 -1.00214e-16)
(116.632 -73.9749 1.57174e-16)
(121.381 -76.4463 -1.25559e-16)
(122.556 -76.6705 0)
(123.74 -77.7 0)
(122.11 -76.8952 -3.13434e-18)
(117.102 -74.1517 0)
(117.734 -74.2208 0)
(122.594 -77.0805 9.34505e-17)
(124.365 -78.1167 -7.59601e-17)
(128.207 -77.4996 -6.42734e-17)
(127.503 -77.0855 0)
(122.64 -74.8673 -1.16192e-17)
(121.951 -73.4715 1.07353e-17)
(127.339 -75.5513 0)
(128.632 -76.5288 0)
(130.501 -76.55 -1.22376e-17)
(129.397 -76.0632 0)
(124.318 -73.8381 -6.60492e-17)
(124.136 -73.53 1.21582e-16)
(129.529 -76.0937 -9.62133e-17)
(131.159 -77.0161 7.59165e-17)
(131.467 -77.3082 8.74419e-18)
(129.448 -76.1748 -8.03052e-17)
(123.972 -73.4278 9.45577e-17)
(129.713 -76.3673 1.71201e-16)
(133.988 -77.9154 -1.48288e-16)
(134.976 -77.5658 0)
(137.892 -77.1227 -7.96089e-17)
(136.998 -76.4978 1.16617e-16)
(132.055 -75.6733 -4.2779e-18)
(131.542 -73.33 -1.02053e-16)
(137.259 -74.3202 7.18593e-17)
(138.603 -75.5384 8.97575e-18)
(140.618 -75.5034 -1.80802e-16)
(139.48 -74.9963 1.37506e-16)
(134.008 -73.2672 0)
(133.859 -72.877 2.11551e-18)
(139.956 -75.1349 -1.00653e-16)
(141.646 -75.9731 8.43421e-17)
(142.269 -76.1998 0)
(140.067 -75.4206 -5.16423e-18)
(133.897 -73.1431 9.37625e-17)
(141.199 -74.8941 -1.64263e-16)
(145.883 -76.1026 1.55313e-16)
(146.523 -75.9533 0)
(149.806 -74.9147 7.30778e-17)
(148.985 -73.889 -1.13852e-16)
(143.262 -73.4474 0)
(142.17 -71.2457 9.99225e-17)
(148.82 -72.0475 -4.1155e-17)
(150.393 -73.3511 -5.38747e-17)
(152.773 -73.1986 1.14236e-16)
(151.625 -72.8433 -4.97798e-17)
(145.613 -71.3283 8.87653e-17)
(146.409 -71.432 -6.35276e-18)
(152.839 -73.1825 8.76858e-17)
(154.702 -73.5425 -7.68071e-17)
(156.176 -73.3188 -8.85872e-18)
(154.588 -71.932 -5.06733e-18)
(148.407 -70.0261 -3.01586e-18)
(155.272 -68.61 7.95436e-17)
(160.989 -70.2757 1.3309e-16)
(161.119 -71.343 -1.1071e-16)
(163.401 -70.0348 7.40297e-17)
(162.023 -68.898 0)
(154.928 -67.4176 0)
(154.361 -66.6716 0)
(161.882 -68.2827 4.29426e-17)
(164.056 -69.3397 -3.74003e-17)
(168.186 -68.5781 0)
(167.558 -69.1031 1.11055e-17)
(162.845 -69.0248 -9.03808e-18)
(166.509 -66.4789 -5.25751e-17)
(172.435 -64.6319 7.06422e-17)
(172.654 -65.9501 -1.24548e-16)
(175.209 -63.3082 -4.37638e-17)
(174.079 -61.5413 3.35487e-18)
(166.398 -63.322 7.22148e-17)
(165.342 -61.2306 -8.90331e-17)
(174.032 -60.2224 8.18615e-17)
(176.005 -61.8283 2.14303e-18)
(179.89 -60.5145 -1.08303e-16)
(179.666 -60.4578 1.26287e-16)
(174.634 -61.4285 7.01552e-17)
(177.831 -57.4757 3.33602e-18)
(184.33 -54.2109 -5.25247e-17)
(184.197 -56.47 9.73631e-17)
(186.873 -52.849 3.74743e-17)
(186.09 -50.5222 -4.38054e-17)
(177.059 -53.7553 5.55966e-17)
(178.657 -51.4174 -7.00398e-17)
(188.534 -48.5114 -8.9068e-19)
(189.908 -49.709 0)
(191.223 -43.6452 -5.45333e-18)
(189.53 -40.5852 -2.43363e-18)
(179.625 -43.8656 2.80945e-18)
(185.17 -38.8279 -1.07395e-17)
(193.186 -38.5206 1.76498e-18)
(193.839 -40.8414 2.97569e-18)
(195.003 -34.5631 0)
(194.14 -32.8006 0)
(185.24 -35.2283 6.40111e-18)
(184.654 -28.2878 -1.75575e-18)
(194.778 -23.9605 0)
(196.145 -27.95 2.03512e-17)
(196.498 -21.6661 -2.39381e-18)
(194.57 -16.6366 0)
(181.882 -21.5038 1.78978e-18)
(177.493 -13.9786 -1.50485e-17)
(192.284 -8.63276 1.17957e-17)
(195.189 -14.7935 9.77728e-18)
(191.297 -8.63731 4.84958e-18)
(187.119 -2.06778 2.73602e-18)
(168.468 -7.23186 -3.15291e-18)
(155.175 -4.04795 -5.55071e-20)
(177.722 0.0648781 2.24293e-19)
(183.572 -5.18729 2.98656e-19)
(175.465 -4.43954 0)
(168.311 -0.132636 0)
(142.469 -2.88375 0)
(133.736 -2.29856 0)
(161.455 -0.466546 -8.96939e-20)
(169.734 -4.14401 0)
(165.612 -3.71276 0)
(156.355 -0.596803 8.91812e-20)
(127.074 -1.82499 0)
(121.181 -1.47343 4.3967e-19)
(151.501 -0.640511 -1.07506e-18)
(161.8 -3.21085 7.39561e-19)
(158.477 -2.7756 1.63381e-18)
(147.256 -0.631402 -1.08093e-18)
(115.833 -1.16512 4.41695e-19)
(111.159 -0.958117 0)
(143.151 -0.643015 -7.20923e-19)
(155.29 -2.46592 -5.94353e-19)
(152.617 -2.19856 5.97232e-19)
(139.698 -0.621264 7.23771e-19)
(107.074 -0.766649 0)
(103.494 -0.65157 0)
(136.258 -0.630248 7.24793e-19)
(149.905 -2.00503 -1.79307e-18)
(147.589 -1.81457 1.79966e-18)
(133.33 -0.598139 -7.27862e-19)
(100.228 -0.531355 0)
(97.2879 -0.465453 0)
(130.3 -0.604104 -7.28591e-19)
(145.131 -1.68232 -6.00262e-19)
(143.038 -1.53298 6.02708e-19)
(127.731 -0.559188 7.30635e-19)
(94.5882 -0.377837 0)
(92.1401 -0.34123 0)
(125.047 -0.551995 7.31104e-19)
(140.75 -1.42085 -1.8086e-18)
(138.854 -1.27252 1.81408e-18)
(122.829 -0.488734 -7.33459e-19)
(89.917 -0.270395 0)
(87.9283 -0.250233 0)
(120.501 -0.478808 -7.33744e-19)
(136.783 -1.1836 -6.04768e-19)
(135.109 -1.06093 6.06865e-19)
(118.628 -0.413502 7.35158e-19)
(86.1378 -0.192266 0)
(84.5375 -0.185055 0)
(116.618 -0.405734 7.35232e-19)
(133.212 -0.990103 -1.8202e-18)
(131.713 -0.872596 1.82464e-18)
(115.04 -0.336756 -7.37042e-19)
(83.1049 -0.134642 0)
(81.8335 -0.136012 0)
(113.308 -0.337161 -7.36995e-19)
(130.004 -0.825175 6.08001e-19)
(128.683 -0.726879 1.21955e-18)
(111.986 -0.270824 0)
(80.7005 -0.0918926 0)
(79.692 -0.100295 0)
(110.486 -0.27834 0)
(127.115 -0.695042 0)
(125.927 -0.59932 1.832e-18)
(109.365 -0.20948 -7.39255e-19)
(78.8009 -0.0580672 0)
(78.0164 -0.0690657 0)
(108.066 -0.222183 -7.38998e-19)
(124.516 -0.581901 6.10274e-19)
(123.465 -0.494186 1.22365e-18)
(107.116 -0.151068 0)
(77.3799 -0.0318886 0)
(76.7768 -0.0466637 0)
(105.991 -0.171212 0)
(122.18 -0.484628 0)
(121.263 -0.397087 1.83676e-18)
(105.188 -0.109005 -7.40485e-19)
(76.3557 -0.0104203 0)
(75.892 -0.0271257 0)
(104.216 -0.132116 -7.40227e-19)
(120.111 -0.395612 6.11838e-19)
(119.34 -0.315211 1.22591e-18)
(103.575 -0.0745709 0)
(75.6395 0.00645366 0)
(75.2844 -0.0136807 0)
(102.734 -0.1027 0)
(118.295 -0.322501 0)
(117.661 -0.243544 1.8393e-18)
(102.206 -0.0477967 -7.41058e-19)
(75.1541 0.017604 0)
(74.8805 -0.00421714 0)
(101.479 -0.0791912 -7.40854e-19)
(116.732 -0.259148 6.12778e-19)
(116.225 -0.18499 1.22716e-18)
(101.08 -0.0253824 0)
(74.8432 0.0257141 0)
(74.6353 0.00198484 0)
(100.456 -0.0599701 0)
(115.386 -0.205607 0)
(114.994 -0.134102 1.84057e-18)
(100.141 -0.00867382 -7.41257e-19)
(74.6646 0.0299719 0)
(74.5079 0.00672247 0)
(99.6087 -0.0424123 -7.41087e-19)
(114.256 -0.155592 6.1326e-19)
(113.967 -0.0945058 1.22768e-18)
(99.397 0.0045578 0)
(74.59 0.0327052 0)
(74.4737 0.00951809 0)
(98.9437 -0.0283524 0)
(113.303 -0.115336 0)
(113.104 -0.0602497 1.841e-18)
(98.794 0.0147082 -7.41193e-19)
(74.5925 0.0333901 0)
(74.5045 0.0108026 0)
(98.4079 -0.01742 -7.41053e-19)
(112.518 -0.0818115 6.13459e-19)
(112.398 -0.0316761 1.22776e-18)
(98.3374 0.0241858 0)
(74.6515 0.0340005 0)
(74.5906 0.011927 0)
(98.0131 -0.00666799 0)
(111.871 -0.0515747 0)
(111.821 -0.0082891 1.84087e-18)
(97.9876 0.0306893 -7.4096e-19)
(74.7607 0.0331749 0)
(74.7163 0.0116649 0)
(97.7127 0.000235068 -7.40842e-19)
(111.355 -0.0291394 6.13464e-19)
(111.361 0.0118221 1.22755e-18)
(97.7477 0.0374182 0)
(74.9012 0.0329299 0)
(74.8754 0.0121834 0)
(97.5199 0.00844552 0)
(110.94 -0.00705277 0)
(110.997 0.0273553 1.84039e-18)
(97.5854 0.0414694 -7.40618e-19)
(75.0755 0.0316943 0)
(75.0594 0.011441 0)
(97.3932 0.0127689 -7.40509e-19)
(110.624 0.0075445 6.13354e-19)
(110.721 0.0413975 1.22714e-18)
(97.5045 0.046249 0)
(75.2674 0.0312604 0)
(75.2663 0.0121113 0)
(97.3492 0.0198325 0)
(110.382 0.0236978 0)
(110.516 0.0507959 1.83968e-18)
(97.4791 0.0476802 -7.40214e-19)
(75.4841 0.029452 0)
(75.4874 0.0109046 0)
(97.3487 0.0232848 -8.33459e-19)
(110.213 0.0324237 6.14328e-19)
(110.388 0.0620257 -1.83922e-18)
(97.5137 0.0515973 4.62715e-19)
(75.7084 0.0286864 3.37987e-19)
(75.7222 0.0122415 1.1242e-19)
(97.4113 0.0282292 7.38154e-19)
(110.109 0.0451365 -6.11841e-19)
(110.292 0.0653606 1.83886e-18)
(97.5863 0.0507261 -7.39775e-19)
(75.9505 0.027283 0)
(75.9669 0.0113051 0)
(97.4997 0.0296286 -7.39687e-19)
(110.041 0.0479768 6.12894e-19)
(110.242 0.0730111 1.22605e-18)
(97.6996 0.0534796 0)
(76.1956 0.0268496 0)
(76.2217 0.0121134 0)
(97.634 0.0343275 0)
(110.01 0.0579886 0)
(110.227 0.0745303 1.83798e-18)
(97.8374 0.0526914 -7.39321e-19)
(76.4564 0.0253499 0)
(76.4835 0.0119892 0)
(97.7835 0.0341409 -7.39246e-19)
(110.017 0.0574197 6.12612e-19)
(110.246 0.0804447 1.22545e-18)
(98.0068 0.0546586 0)
(76.7157 0.0247276 0)
(76.7479 0.0124866 0)
(97.9662 0.0379093 0)
(110.049 0.0654927 0)
(110.287 0.0793922 1.83707e-18)
(98.1871 0.0531126 -7.38874e-19)
(76.9836 0.0233489 0)
(77.0154 0.0122445 0)
(98.1534 0.0366823 -7.38807e-19)
(110.106 0.0623869 6.1232e-19)
(110.351 0.0838156 1.22484e-18)
(98.3895 0.0545726 0)
(77.2469 0.0229145 0)
(77.2823 0.0126894 0)
(98.3652 0.0397035 0)
(110.18 0.0689373 0)
(110.43 0.0804221 1.83618e-18)
(98.5948 0.0519376 -7.38446e-19)
(77.5151 0.0213914 0)
(77.5486 0.0112103 0)
(98.5728 0.0363447 -7.38385e-19)
(110.271 0.0631085 6.1203e-19)
(110.524 0.0835303 1.22426e-18)
(98.8137 0.0533328 0)
(77.7763 0.0214996 0)
(77.8081 0.0120018 0)
(98.7934 0.0390359 0)
(110.369 0.0683387 0)
(110.624 0.0796013 1.83534e-18)
(99.0258 0.0501788 -7.38047e-19)
(78.035 0.0200311 0)
(78.0674 0.0104696 0)
(99.0057 0.0351852 -7.38012e-19)
(110.482 0.0621683 6.11777e-19)
(110.737 0.0801386 1.22372e-18)
(99.2485 0.0505649 0)
(78.2889 0.0199795 0)
(78.3152 0.0108102 0)
(99.2253 0.0364957 0)
(110.593 0.0645551 0)
(110.848 0.0757499 1.83456e-18)
(99.4562 0.0471646 -7.37686e-19)
(78.5313 0.0183911 0)
(78.5555 0.00930345 0)
(99.4313 0.0328777 -7.37674e-19)
(110.714 0.0589232 6.1154e-19)
(110.968 0.0755014 1.22322e-18)
(99.6718 0.0471988 0)
(78.7659 0.0182314 0)
(78.7856 0.00952733 0)
(99.6447 0.033508 0)
(110.833 0.0601708 0)
(111.085 0.0705899 1.83387e-18)
(99.8704 0.0434036 -7.37371e-19)
(78.9901 0.0166373 0)
(79.0055 0.00808167 0)
(99.84 0.0296892 -7.37371e-19)
(110.958 0.0542675 6.11322e-19)
(111.206 0.0696559 1.22281e-18)
(100.072 0.0431246 0)
(79.2032 0.0165255 0)
(79.2142 0.00814552 0)
(100.039 0.02982 7.369e-19)
(111.078 0.0542004 -6.11436e-19)
(111.324 0.0648846 1.83329e-18)
(100.257 0.0395556 -7.37102e-19)
(79.4056 0.014968 0)
(79.4111 0.00666459 0)
(100.22 0.0261509 -7.37102e-19)
(111.201 0.0483626 -6.11114e-19)
(111.444 0.0632045 6.11221e-19)
(100.443 0.0388871 7.36646e-19)
(79.5945 0.0146433 0)
(79.5948 0.00660239 0)
(100.404 0.0260934 7.36647e-19)
(111.318 0.0479341 -1.83373e-18)
(111.558 0.0592994 1.83276e-18)
(100.613 0.0359692 -7.36865e-19)
(79.7725 0.0133259 0)
(79.7688 0.00528775 0)
(100.571 0.0229063 -7.36864e-19)
(111.439 0.0427806 -6.10932e-19)
(111.676 0.0578143 6.11052e-19)
(100.786 0.0353361 7.36422e-19)
(79.9397 0.0129885 0)
(79.9311 0.0051918 0)
(100.741 0.0227658 7.36422e-19)
(111.552 0.0423853 -1.8332e-18)
(111.787 0.0542604 1.83227e-18)
(100.942 0.0325876 -7.36653e-19)
(80.0964 0.0117695 0)
(80.0836 0.00400935 0)
(100.895 0.0198628 -7.3665e-19)
(111.669 0.0377412 -6.10764e-19)
(111.9 0.0527845 6.10896e-19)
(101.102 0.0320324 7.3622e-19)
(80.2429 0.0115131 0)
(80.226 0.00396865 0)
(101.052 0.0197388 7.36219e-19)
(111.777 0.0373358 -1.83272e-18)
(112.006 0.0496182 1.83182e-18)
(101.245 0.0295389 -7.36461e-19)
(80.3805 0.0104438 0)
(80.3598 0.00294057 0)
(101.192 0.0171588 -7.36457e-19)
(111.888 0.03317 -6.1061e-19)
(112.114 0.0482351 6.10753e-19)
(101.392 0.0291103 7.36038e-19)
(80.5091 0.0102756 0)
(80.485 0.00295688 0)
(101.337 0.0170984 7.36034e-19)
(111.991 0.0328727 -1.83228e-18)
(112.214 0.0454709 1.83141e-18)
(101.523 0.0267863 -7.36288e-19)
(80.6302 0.00931144 0)
(80.6025 0.00200859 0)
(101.464 0.0146259 -7.36282e-19)
(112.096 0.0291541 -6.10469e-19)
(112.316 0.0442355 6.1062e-19)
(101.658 0.026395 7.35873e-19)
(80.7429 0.00922006 0)
(80.7121 0.0020454 0)
(101.596 0.0144428 7.35868e-19)
(112.192 0.0289178 -1.83187e-18)
(112.409 0.0416578 1.83102e-18)
(101.777 0.0244783 -7.3613e-19)
(80.8492 0.00849857 0)
(80.8156 0.0012419 0)
(101.712 0.0122306 -7.36122e-19)
(112.29 0.0253601 -6.10338e-19)
(112.504 0.0405363 6.10498e-19)
(101.899 0.024304 7.35722e-19)
(80.9489 0.00850439 0)
(80.9127 0.00131371 0)
(101.833 0.0122303 7.35716e-19)
(112.379 0.0253367 -1.83149e-18)
(112.591 0.0385451 1.83067e-18)
(102.007 0.0227405 -7.35985e-19)
(81.043 0.00777045 0)
(81.0039 0.000433551 0)
(101.938 0.0103883 -7.35976e-19)
(112.471 0.0224033 -6.10219e-19)
(112.679 0.0373085 6.10387e-19)
(102.119 0.0225205 7.35583e-19)
(81.1309 0.00779269 0)
(81.0896 0.000413058 0)
(102.047 0.0102829 7.35575e-19)
(112.553 0.0222314 -1.83115e-18)
(112.759 0.0352628 1.83035e-18)
(102.216 0.0210305 -7.35852e-19)
(81.2144 0.00725855 0)
(81.1706 -0.000292269 0)
(102.142 0.00858705 -7.35841e-19)
(112.638 0.0194461 -6.10109e-19)
(112.841 0.0341927 6.10284e-19)
(102.318 0.0210101 7.35455e-19)
(81.2925 0.00747471 0)
(81.2467 -9.94984e-05 0)
(102.242 0.00869447 7.35446e-19)
(112.714 0.0194364 -1.83083e-18)
(112.915 0.0323837 1.83006e-18)
(102.406 0.0196681 -7.35729e-19)
(81.3664 0.00705889 0)
(81.318 -0.000593511 0)
(102.327 0.00723373 -7.35718e-19)
(112.792 0.0168987 -6.10008e-19)
(112.99 0.0311765 6.10189e-19)
(102.498 0.0192858 7.35338e-19)
(81.4346 0.00698175 0)
(81.3847 -0.000539452 0)
(102.417 0.00715882 7.35328e-19)
(112.862 0.0167567 -1.83054e-18)
(113.058 0.0294177 1.82979e-18)
(102.576 0.017942 -7.35617e-19)
(81.4995 0.00652851 0)
(81.4472 -0.00102681 0)
(102.493 0.00575931 -7.35605e-19)
(112.933 0.0143051 -6.09915e-19)
(113.127 0.0283106 6.10102e-19)
(102.659 0.0176357 7.35231e-19)
(81.5591 0.00647089 0)
(81.5055 -0.000938933 0)
(102.575 0.00578305 7.3522e-19)
(112.996 0.014336 -1.83027e-18)
(113.188 0.0268063 1.82954e-18)
(102.729 0.016439 -7.35514e-19)
(81.616 0.00607297 0)
(81.5603 -0.00137351 0)
(102.642 0.00452074 -7.35502e-19)
(113.062 0.012115 -6.09829e-19)
(113.251 0.025868 6.10023e-19)
(102.805 0.0162374 7.35132e-19)
(81.6683 0.00605734 0)
(81.6116 -0.00125834 0)
(102.716 0.00462385 7.3512e-19)
(113.119 0.0122888 -1.83002e-18)
(113.307 0.0246336 1.8293e-18)
(102.867 0.0151904 -7.35419e-19)
(81.7185 0.00571654 0)
(81.6601 -0.00163315 0)
(102.777 0.00351401 -7.35405e-19)
(113.18 0.0103169 -6.0975e-19)
(113.365 0.0238455 6.09948e-19)
(102.936 0.0150936 7.3504e-19)
(81.7649 0.00574136 0)
(81.7058 -0.00149067 0)
(102.844 0.003696 7.35027e-19)
(113.232 0.0106244 -1.82979e-18)
(113.416 0.0228088 1.82909e-18)
(102.992 0.0141615 -7.35329e-19)
(81.8098 0.00544274 0)
(81.7493 -0.00183284 0)
(102.899 0.00267786 -7.35315e-19)
(113.288 0.00879659 -6.09676e-19)
(113.47 0.0220754 6.09877e-19)
(103.055 0.0141078 7.34953e-19)
(81.8516 0.0054811 0)
(81.7905 -0.00168645 0)
(102.961 0.00288367 7.34939e-19)
(113.336 0.0091489 -1.82958e-18)
(113.517 0.0211651 1.82888e-18)
(103.106 0.013245 -7.35245e-19)
(81.8921 0.00520367 0)
(81.8297 -0.00201131 0)
(103.011 0.00192253 -7.3523e-19)
(113.388 0.00741394 -6.09606e-19)
(113.567 0.0204777 6.0981e-19)
(103.164 0.0132219 7.34871e-19)
(81.9298 0.00525026 0)
(81.8669 -0.0018537 0)
(103.068 0.00216405 7.34857e-19)
(113.432 0.00783564 -1.82937e-18)
(113.611 0.0196932 1.82869e-18)
(103.21 0.0124289 -7.35165e-19)
(81.9664 0.00499614 0)
(81.9024 -0.00215734 0)
(103.112 0.00126705 -7.3515e-19)
(113.48 0.00620915 -6.09539e-19)
(113.657 0.0190492 6.09748e-19)
(103.263 0.0124354 7.34794e-19)
(82.0004 0.00505182 0)
(81.936 -0.00200578 0)
(103.165 0.00150748 7.34779e-19)
(113.521 0.00663164 -1.82918e-18)
(113.697 0.0183577 1.8285e-18)
(103.305 0.0116883 -7.3509e-19)
(82.0336 0.00481143 0)
(81.9681 -0.00229642 0)
(103.205 0.000653696 -7.35074e-19)
(113.566 0.00507275 -6.09477e-19)
(113.74 0.0177343 -6.09681e-19)
(103.354 0.0117138 7.3472e-19)
(82.0643 0.00486958 0)
(81.9984 -0.00213853 0)
(103.254 0.000918207 7.34704e-19)
(113.603 0.00554632 -1.82899e-18)
(113.777 0.0171305 6.09441e-19)
(103.392 0.0110151 -7.35018e-19)
(82.0943 0.00464407 0)
(82.0274 -0.00241556 0)
(103.29 0.000108326 -7.35001e-19)
(113.644 0.00406109 6.09425e-19)
(113.816 0.0165225 0)
(103.437 0.0110549 0)
(82.122 0.00470543 0)
(82.0548 -0.00226896 0)
(103.335 0.000357922 0)
(113.678 0.00450593 0)
(113.85 0.0159679 6.09385e-19)
(103.471 0.0103786 -7.3495e-19)
(82.1491 0.00448471 0)
(82.0809 -0.00253744 0)
(103.368 -0.000423818 -7.34933e-19)
(113.717 0.00306339 6.09368e-19)
(113.887 0.0153488 0)
(103.512 0.0104212 0)
(82.1739 0.00454403 0)
(82.1053 -0.00239535 0)
(103.408 -0.00017889 0)
(113.747 0.00350035 0)
(113.917 0.0148519 6.09333e-19)
(103.542 0.00977533 -7.34885e-19)
(82.1981 0.00433296 0)
(82.1285 -0.00265428 0)
(103.438 -0.00092745 -7.34867e-19)
(113.783 0.00211208 6.09315e-19)
(113.951 0.0142979 0)
(103.58 0.00985505 0)
(82.2201 0.00440346 0)
(82.1503 -0.00249207 0)
(103.475 -0.000630113 0)
(113.81 0.00265011 0)
(113.979 0.0139229 6.09283e-19)
(103.607 0.00927886 -7.34823e-19)
(82.2417 0.0042182 0)
(82.1712 -0.00272522 0)
(103.501 -0.00130841 -7.34805e-19)
(113.843 0.00138321 6.09264e-19)
(114.01 0.0134635 0)
(103.642 0.00941653 0)
(82.2616 0.00430988 0)
(82.1909 -0.00255364 0)
(103.535 -0.00097414 0)
(113.868 0.00198154 0)
(114.035 0.0132208 6.09235e-19)
(103.666 0.00891056 -7.34764e-19)
(82.2814 0.00414745 0)
(82.2102 -0.00275932 0)
(103.559 -0.00157009 -7.34745e-19)
(113.899 0.000860666 6.09215e-19)
(114.064 0.0129242 0)
(103.699 0.00914041 0)
(82.2999 0.00426915 0)
(82.2288 -0.00255038 0)
(103.591 -0.00113154 0)
(113.922 0.00165317 0)
(114.088 0.012867 6.09188e-19)
(103.722 0.00873969 -7.34705e-19)
(82.3189 0.00414355 0)
(82.2474 -0.00272361 0)
(103.614 -0.00162833 -7.34686e-19)
(113.952 0.000712064 6.09167e-19)
(114.117 0.0127685 0)
(103.753 0.00907705 0)
(82.3372 0.00430104 0)
(82.2662 -0.00248111 0)
(103.645 -0.00108822 0)
(113.975 0.00169004 0)
(114.14 0.0128949 6.0914e-19)
(103.776 0.00877653 -7.34647e-19)
(82.3568 0.00420819 0)
(82.2856 -0.00262035 0)
(103.668 -0.00148332 -7.34628e-19)
(114.004 0.00093608 6.09119e-19)
(114.169 0.0129565 0)
(103.808 0.00920606 0)
(82.3762 0.00439468 0)
(82.3057 -0.0023617 0)
(103.7 -0.000876114 0)
(114.028 0.00203184 0)
(114.194 0.0132204 6.09092e-19)
(103.831 0.00897569 -7.34586e-19)
(82.3973 0.00432041 0)
(82.327 -0.00248406 0)
(103.724 -0.00120443 -7.34568e-19)
(114.059 0.00140558 6.09071e-19)
(114.225 0.0134136 0)
(103.865 0.0094729 0)
(82.4188 0.0045229 0)
(82.3494 -0.00220669 0)
(103.758 -0.000530042 0)
(114.085 0.00263783 0)
(114.251 0.0137084 6.09041e-19)
(103.89 0.00926108 -7.34524e-19)
(82.4424 0.00445029 0)
(82.3732 -0.00236131 0)
(103.784 -0.000932381 -7.34505e-19)
(114.117 0.00186604 6.09021e-19)
(114.284 0.0135278 0)
(103.926 0.00955766 0)
(82.4662 0.00457222 0)
(82.3974 -0.0021888 0)
(103.82 -0.000511306 0)
(114.145 0.00265866 0)
(114.312 0.0135099 6.0899e-19)
(103.952 0.00914765 -7.3446e-19)
(82.4909 0.004416 0)
(82.4217 -0.00241737 0)
(103.846 -0.00109882 -7.34441e-19)
(114.178 0.00156441 6.08969e-19)
(114.344 0.0129403 0)
(103.988 0.00922536 0)
(82.5143 0.00445272 0)
(82.4451 -0.00232461 0)
(103.882 -0.000879413 0)
(114.205 0.00201058 0)
(114.371 0.0127028 6.0894e-19)
(104.013 0.00868054 -7.34399e-19)
(82.5374 0.00423963 0)
(82.4673 -0.00258179 0)
(103.906 -0.00155124 -7.34379e-19)
(114.237 0.000781578 6.08919e-19)
(114.402 0.0123773 0)
(104.046 0.0088824 0)
(82.5587 0.00431482 0)
(82.4882 -0.00255467 0)
(103.939 -0.000927552 0)
(114.262 0.00206298 0)
(114.428 0.0126006 0)
(104.078 0.00890628 0)
(82.5801 0.00425992 0)
(82.5086 -0.00143038 0)
(103.971 -0.000501667 -7.33684e-19)
(114.295 0.000731185 6.09101e-19)
(114.459 0.0116092 6.08868e-19)
(104.101 0.0084026 -7.33978e-19)
(82.6232 0.00496113 0)
(82.5514 -0.00239124 0)
(103.996 -0.00201755 0)
(114.33 0.00109899 0)
(114.512 0.012974 6.08592e-19)
(104.138 0.00800392 7.33309e-19)
(82.6384 0.00365839 0)
(82.5632 -0.00280929 0)
(104.044 -0.00221626 7.31606e-19)
(114.381 0.000444527 -6.06823e-19)
(114.583 0.0115885 1.3623e-18)
(104.207 0.00722565 0)
(82.6946 0.003906 0)
(82.6148 -0.00233991 0)
(104.124 -0.00224084 -3.62628e-19)
(114.471 0.00156674 7.5355e-19)
(114.724 0.020187 0)
(104.319 0.0108809 -9.13068e-20)
(82.7688 0.00539355 2.22809e-19)
(82.7027 0.00110994 -1.09948e-19)
(104.279 0.006579 1.70241e-24)
(114.637 0.0220309 -3.01312e-19)
(114.935 0.08174 0)
(104.492 0.0360705 0)
(82.8776 0.0152439 0)
(82.9948 0.0266501 4.63492e-19)
(104.64 0.0555898 3.82496e-19)
(115.142 0.137058 -1.27778e-18)
(116.188 0.206046 6.25404e-18)
(105.361 0.0950422 -4.11067e-22)
(83.7403 0.0487483 -2.10808e-18)
(84.8148 0.0980181 0)
(106.467 0.170378 8.35186e-18)
(117.544 0.28222 -1.69098e-17)
(118.633 0.258273 0)
(107.61 0.180702 -1.74476e-18)
(86.0013 0.101295 2.11779e-18)
(129.589 0.290565 0)
(135.893 0.105179 -3.97069e-18)
(137.756 0.0810533 0)
(138.821 0.394423 -1.70975e-17)
(141.944 0.44312 6.96417e-18)
(143.469 0.24134 0)
(144.563 0.055764 1.74163e-17)
(145.544 0.269701 0)
(147.56 0.2974 -8.35831e-17)
(148.832 0.207906 1.74357e-17)
(150.329 0.0148794 1.91875e-17)
(151.504 -0.0502544 2.88541e-18)
(152.364 -0.0440357 -3.23159e-18)
(153.025 -0.0271693 -6.4765e-19)
(153.514 -0.00982861 8.41218e-19)
(153.878 0.00441739 -1.02235e-19)
(154.147 0.0151637 1.51025e-19)
(154.348 0.0227512 -6.2055e-21)
(154.5 0.0280485 6.12971e-21)
(154.616 0.0315135 -1.21027e-20)
(154.706 0.0334618 1.19326e-20)
(154.778 0.03416 0)
(154.835 0.033805 -9.22426e-20)
(154.882 0.0325363 2.26397e-19)
(154.92 0.0304054 6.15601e-19)
(154.95 0.0275448 -6.9588e-19)
(154.975 0.0240959 1.33799e-18)
(154.995 0.0201512 -1.73086e-18)
(155.009 0.0157466 7.84414e-24)
(155.019 0.0110989 7.485e-19)
(155.024 0.00655982 0)
(155.027 0.00215842 5.05723e-20)
(155.031 0.00229822 -4.40164e-20)
(155.032 0.00257103 -7.08274e-19)
(155.033 0.00284238 6.28601e-19)
(155.035 0.00325966 0)
(155.037 0.0035919 -7.55639e-20)
(155.038 0.00400037 0)
(155.038 0.00434324 0)
(155.036 0.00467619 0)
(155.033 0.00491485 3.78862e-20)
(155.028 0.00502907 -3.99367e-20)
(155.019 0.00493708 0)
(155.008 0.00455392 0)
(154.993 0.00376532 0)
(154.975 0.00243892 0)
(154.955 0.000412535 0)
(154.936 -0.00253094 0)
(154.916 -0.00672226 0)
(154.89 -0.0115775 0)
(154.85 -0.0161677 0)
(154.796 -0.0196893 0)
(154.733 -0.0223272 0)
(154.661 -0.0247001 0)
(154.583 -0.0273261 0)
(154.497 -0.0303835 0)
(154.402 -0.0338824 0)
(154.296 -0.0377914 0)
(154.179 -0.0421358 0)
(154.049 -0.0470064 0)
(153.903 -0.0525237 0)
(153.74 -0.0588015 0)
(153.555 -0.0659299 0)
(153.348 -0.0739766 0)
(153.114 -0.0830104 0)
(152.851 -0.0930959 0)
(152.556 -0.104277 0)
(152.224 -0.116682 0)
(151.852 -0.130365 0)
(151.436 -0.145477 0)
(150.972 -0.162056 0)
(150.454 -0.180211 0)
(149.88 -0.199922 0)
(149.243 -0.221365 0)
(148.54 -0.244386 0)
(147.765 -0.268931 0)
(146.916 -0.294944 0)
(145.989 -0.322012 0)
(144.982 -0.350146 0)
(143.893 -0.378974 0)
(142.721 -0.408068 0)
(141.467 -0.437388 0)
(140.135 -0.466162 0)
(138.724 -0.49405 0)
(137.242 -0.520734 0)
(135.692 -0.545772 0)
(134.082 -0.568919 0)
(132.417 -0.5898 0)
(130.705 -0.608276 0)
(128.953 -0.624061 0)
(127.17 -0.637188 0)
(125.363 -0.647427 0)
(123.54 -0.65531 -4.14592e-22)
(121.708 -0.66061 0)
(119.875 -0.663417 0)
(118.045 -0.663846 0)
(116.226 -0.662059 0)
(114.423 -0.658227 0)
(112.641 -0.65254 0)
(110.884 -0.645201 0)
(109.155 -0.636421 0)
(107.458 -0.626384 0)
(105.797 -0.615259 0)
(104.172 -0.602984 0)
(102.585 -0.589747 0)
(101.04 -0.575966 0)
(99.5353 -0.561528 0)
(98.0735 -0.546801 0)
(96.654 -0.531654 0)
(95.2782 -0.516419 0)
(93.945 -0.500963 0)
(92.6554 -0.485615 0)
(91.4084 -0.470026 0)
(90.2035 -0.454549 0)
(89.0409 -0.439317 0)
(87.9192 -0.424159 0)
(86.8383 -0.4093 0)
(85.7968 -0.394591 0)
(84.7946 -0.380235 0)
(83.8301 -0.366087 0)
(82.903 -0.352376 4.19787e-22)
(82.0118 -0.338883 0)
(81.1561 -0.325695 0)
(80.3346 -0.312837 0)
(79.5465 -0.300313 0)
(78.7907 -0.288128 0)
(78.0664 -0.276285 0)
(77.3726 -0.264769 0)
(76.7083 -0.253582 0)
(76.0726 -0.242733 0)
(75.4647 -0.232213 0)
(74.8836 -0.222015 0)
(74.3284 -0.212133 0)
(73.7984 -0.202561 0)
(73.2926 -0.193291 0)
(72.8104 -0.184317 0)
(72.3509 -0.17563 0)
(71.9134 -0.167222 0)
(71.497 -0.159085 0)
(71.1013 -0.151208 0)
(70.7253 -0.143585 0)
(70.3686 -0.136203 -4.14142e-22)
(70.0305 -0.129055 3.30864e-21)
(69.7103 -0.122135 -2.88934e-21)
(69.4075 -0.115425 0)
(69.1216 -0.108915 -4.11273e-22)
(68.8521 -0.1026 0)
(68.5984 -0.0964695 0)
(68.3601 -0.0905101 0)
(68.1367 -0.0847112 0)
(67.9279 -0.0790617 0)
(67.7333 -0.07355 0)
(67.5525 -0.0681638 0)
(67.3853 -0.0628909 0)
(67.2313 -0.0577185 0)
(67.0903 -0.0526327 0)
(66.9622 -0.0476175 0)
(66.8467 -0.0426502 0)
(66.7438 -0.0376942 0)
(66.6535 -0.0326904 1.51486e-21)
(66.576 -0.0275638 0)
(66.5116 -0.0222192 0)
(66.4604 -0.0167175 0)
(66.4215 -0.0111734 0)
(66.394 -0.00640911 -2.74363e-19)
(66.3777 -0.00236375 1.46282e-19)
(66.3709 -0.00280993 1.14936e-19)
(66.3689 0.00225598 -3.12656e-25)
(66.3675 -0.00496262 -4.22531e-19)
(66.3672 0.00134025 2.03817e-19)
(66.3662 -0.00351921 -2.24779e-19)
(66.3635 -0.00417871 6.93622e-19)
(66.3526 -0.0118047 0)
(66.3188 -0.0271281 -8.26219e-19)
(66.2511 -0.0513785 6.13487e-19)
(66.1518 -0.0835233 3.2251e-19)
(66.0327 -0.119417 -3.30356e-19)
(65.9054 -0.155285 -5.22629e-21)
(65.7755 -0.189457 -2.37004e-20)
(65.6445 -0.221616 1.98684e-20)
(65.5111 -0.251939 0)
(65.3739 -0.280642 0)
(65.2315 -0.307848 0)
(65.0831 -0.333577 0)
(64.9288 -0.357801 -3.3918e-22)
(64.7684 -0.380488 0)
(64.6024 -0.401613 0)
(64.431 -0.421184 3.42243e-22)
(64.2544 -0.439236 0)
(64.073 -0.455813 0)
(63.887 -0.470966 0)
(63.6966 -0.484739 0)
(63.5022 -0.497172 -3.45408e-22)
(63.304 -0.508291 0)
(63.1024 -0.518117 0)
(62.8978 -0.526662 0)
(62.6905 -0.533928 -2.77548e-21)
(62.481 -0.539918 2.77716e-21)
(62.2696 -0.544623 0)
(62.0568 -0.548037 -2.78102e-21)
(61.843 -0.550144 -4.15205e-25)
(61.6286 -0.550929 -4.14516e-25)
(61.4142 -0.550374 -4.12777e-25)
(61.2002 -0.548474 2.78437e-21)
(60.987 -0.545151 0)
(60.7751 -0.540383 -2.7851e-21)
(60.565 -0.534193 -3.95945e-25)
(60.3571 -0.526517 -3.89283e-25)
(60.1518 -0.517309 -3.81601e-25)
(59.9496 -0.50652 2.78171e-21)
(59.751 -0.494084 0)
(59.5563 -0.479934 0)
(59.366 -0.463999 0)
(59.1806 -0.446211 0)
(59.0006 -0.426512 0)
(58.8264 -0.404846 2.76489e-21)
(58.6578 -0.381122 -2.75965e-21)
(58.4945 -0.355162 0)
(58.3349 -0.326599 4.40106e-20)
(58.1771 -0.294834 -8.78882e-20)
(58.0198 -0.259204 1.26129e-19)
(57.8655 -0.219728 -8.75339e-20)
(57.7259 -0.17876 0)
(57.6223 -0.141863 -1.27972e-18)
(57.572 -0.114996 3.89496e-18)
(57.569 -0.0994777 -2.05384e-18)
(57.5902 -0.0910259 4.20264e-18)
(57.6162 -0.0850852 -3.64446e-18)
(57.6376 -0.082157 0)
(57.6471 -0.0869241 -1.28622e-17)
(57.646 -0.124791 -7.51096e-19)
(57.6322 -0.145129 2.02708e-19)
(57.5702 -0.163581 3.32565e-19)
(57.579 -0.16803 0)
(57.5747 -0.170843 0)
(57.5581 -0.173914 5.73906e-20)
(57.5319 -0.17605 -6.12474e-20)
(57.4964 -0.176851 3.61581e-21)
(57.4535 -0.178126 0)
(57.4029 -0.178253 0)
(57.347 -0.179751 0)
(57.285 -0.179889 2.32105e-19)
(57.2161 -0.180851 0)
(57.1387 -0.180906 0)
(57.0582 -0.182293 0)
(56.9729 -0.18271 0)
(56.8844 -0.183971 0)
(56.7903 -0.184544 0)
(56.6933 -0.186015 0)
(56.5909 -0.186975 0)
(56.4858 -0.188682 0)
(56.3754 -0.189971 0)
(56.2625 -0.191878 0)
(56.1443 -0.193459 0)
(56.0237 -0.195538 0)
(55.8979 -0.197407 0)
(55.7699 -0.199671 0)
(55.6364 -0.201859 0)
(55.5008 -0.204403 0)
(55.3597 -0.206934 0)
(55.2164 -0.20978 0)
(55.0673 -0.212674 0)
(54.9159 -0.215817 -2.33035e-19)
(54.7585 -0.219086 0)
(54.5988 -0.222483 0)
(54.4329 -0.226146 0)
(54.2645 -0.229858 0)
(54.0897 -0.233932 0)
(53.9121 -0.238035 0)
(53.7278 -0.242491 0)
(53.5405 -0.246943 -2.3327e-19)
(53.3462 -0.25177 0)
(53.1488 -0.256595 0)
(52.9441 -0.261818 0)
(52.7359 -0.267059 0)
(52.5201 -0.272707 0)
(52.3006 -0.278408 0)
(52.0732 -0.284505 2.33473e-19)
(51.8416 -0.290707 0)
(51.6017 -0.297278 0)
(51.3573 -0.304026 0)
(51.1042 -0.311098 0)
(50.8462 -0.318445 0)
(50.579 -0.326046 0)
(50.3064 -0.334042 0)
(50.0242 -0.342189 2.33719e-19)
(49.736 -0.350864 0)
(49.4378 -0.359539 0)
(49.1331 -0.368888 0)
(48.818 -0.378022 0)
(48.4959 -0.387999 0)
(48.1631 -0.397519 0)
(47.8228 -0.408099 0)
(47.4715 -0.417967 0)
(47.1123 -0.429144 0)
(46.7419 -0.439318 0)
(46.3631 -0.451076 0)
(45.9727 -0.461476 0)
(45.5737 -0.473756 0)
(45.163 -0.484246 0)
(44.7432 -0.496925 0)
(44.3118 -0.507304 0)
(43.8712 -0.52019 0)
(43.4192 -0.530177 0)
(42.958 -0.543002 0)
(42.4857 -0.552225 0)
(42.0047 -0.564618 0)
(41.5133 -0.572585 0)
(41.014 -0.584057 0)
(40.5055 -0.590142 0)
(39.9902 -0.600092 0)
(39.4675 -0.603528 0)
(38.9399 -0.611277 0)
(38.4073 -0.610877 0)
(37.8725 -0.614531 0)
(37.3357 -0.609682 0)
(36.8002 -0.608141 0)
(36.2663 -0.598316 0)
(35.7379 -0.591127 0)
(35.2153 -0.575526 0)
(34.7032 -0.562088 0)
(34.2018 -0.539942 0)
(33.7164 -0.519604 0)
(33.2471 -0.490413 0)
(32.7998 -0.461867 0)
(32.3733 -0.42709 0)
(31.9748 -0.39185 0)
(31.6016 -0.353302 0)
(31.2607 -0.31378 -2.35227e-19)
(30.9475 -0.273866 0)
(30.6697 -0.232427 0)
(30.4199 -0.193816 0)
(30.2065 -0.153165 0)
(30.019 -0.118687 0)
(29.8667 -0.0815571 0)
(29.7371 -0.051739 0)
(29.6409 -0.0192384 0)
(29.5594 0.00356871 0)
(29.5107 0.029891 0)
(29.4689 0.0451774 0)
(29.4588 0.0643578 0)
(29.4479 0.0728904 0)
(29.4661 0.0863225 0)
(29.4782 0.0903106 0)
(29.5163 0.0984378 -2.35321e-19)
(29.5446 0.0993617 -2.35677e-19)
(29.5956 0.103752 0)
(29.6348 0.102464 -2.35665e-19)
(29.6939 0.10419 0)
(29.7397 0.101557 -2.3577e-19)
(29.8033 0.102461 0)
(29.8531 0.099042 -2.35758e-19)
(29.9192 0.0993891 -2.35274e-19)
(29.9712 0.0952299 0)
(30.0394 0.0951233 0)
(30.0925 0.0912916 0)
(30.1602 0.0909261 0)
(30.213 0.0868789 0)
(30.2792 0.0867796 -2.3316e-19)
(30.3321 0.083872 -9.20594e-19)
(30.4012 0.0857634 6.81693e-19)
(30.4616 0.0828233 1.76901e-18)
(30.553 0.0841919 -2.61815e-18)
(30.6357 0.089648 1.92525e-18)
(30.7074 0.0965114 -2.05126e-18)
(30.7973 0.0934855 2.8951e-18)
(31.9625 0.119456 5.55382e-20)
(32.7241 0.123592 8.18326e-19)
(32.6966 0.124448 -6.87963e-25)
(31.917 0.124563 2.03753e-18)
(31.8743 0.120751 -5.03569e-18)
(32.6736 0.122343 5.52906e-18)
(32.6486 0.12754 -2.50277e-17)
(31.8143 0.1124 0)
(31.7202 0.11035 0)
(32.5403 0.134896 2.51421e-17)
(33.2138 0.164286 -4.53119e-18)
(33.16 0.140372 3.03765e-18)
(33.1771 0.128065 -6.76526e-18)
(33.2033 0.129057 -1.58905e-18)
(33.5712 0.182566 9.82675e-20)
(33.5225 0.186738 9.51483e-20)
(33.4452 0.182278 7.74388e-19)
(34.037 0.217863 -7.82302e-19)
(34.0354 0.216415 0)
(34.0439 0.208921 -1.97439e-19)
(34.371 0.213414 1.97887e-19)
(34.3552 0.216382 -1.55189e-18)
(34.3213 0.217171 1.98986e-18)
(34.1619 0.218285 3.68074e-18)
(34.1223 0.231848 -1.29981e-18)
(33.1356 0.179722 -1.25874e-18)
(32.5794 0.144415 4.08554e-18)
(31.7048 0.115806 -2.56949e-18)
(31.6353 0.115685 -6.55454e-19)
(32.468 0.142932 2.703e-17)
(32.5128 0.150417 2.72516e-17)
(31.6198 0.121195 4.40825e-19)
(31.5553 0.121281 3.54929e-18)
(32.4073 0.148582 -3.43716e-18)
(33.0784 0.180822 -5.18286e-18)
(33.0308 0.180645 5.23273e-18)
(32.4551 0.154839 -3.43983e-18)
(31.5394 0.126561 3.55618e-18)
(31.475 0.126006 0)
(32.3505 0.152115 -2.75748e-17)
(32.402 0.156119 0)
(31.4608 0.130384 0)
(31.3982 0.128991 0)
(32.2991 0.152492 2.75767e-17)
(32.9894 0.178502 -5.24712e-18)
(32.9551 0.173353 5.25352e-18)
(32.3556 0.154531 0)
(31.3873 0.133085 2.22648e-19)
(31.3277 0.130871 2.78646e-19)
(32.2552 0.150146 -2.75786e-17)
(32.3174 0.149759 -2.75736e-17)
(31.3213 0.13366 -5.56656e-20)
(31.2658 0.130396 2.78664e-19)
(32.2204 0.144168 2.75804e-17)
(32.9291 0.163518 4.85336e-23)
(32.9123 0.145973 -5.65427e-23)
(32.2895 0.140208 2.75755e-17)
(31.2653 0.131397 -5.56692e-20)
(31.2156 0.126295 2.78681e-19)
(32.197 0.132344 -2.75821e-17)
(32.2744 0.122836 -2.75773e-17)
(31.2224 0.124461 -5.56727e-20)
(31.1815 0.115851 2.78696e-19)
(32.1892 0.11188 2.75836e-17)
(32.9073 0.116292 7.05249e-23)
(32.9202 0.0708144 5.25271e-18)
(32.2786 0.0940669 0)
(31.1995 0.110015 1.67027e-19)
(31.1717 0.0971817 0)
(32.2052 0.0795207 -2.75847e-17)
(32.3098 0.0506546 -2.75803e-17)
(31.2047 0.0860135 0)
(31.1947 0.066652 0)
(32.2531 0.0303679 2.75852e-17)
(32.9595 0.00523195 1.15784e-22)
(33.0361 -0.0885423 -1.57193e-22)
(32.3778 -0.0132841 2.75812e-17)
(31.2499 0.0485865 0)
(31.264 0.0196619 0)
(32.3434 -0.0418619 -2.75849e-17)
(32.4948 -0.103356 -2.75814e-17)
(31.3479 -0.00759225 0)
(31.3954 -0.0481949 0)
(32.4918 -0.140294 2.75835e-17)
(33.1642 -0.216258 2.17862e-22)
(33.3615 -0.380815 -2.7183e-22)
(32.6813 -0.221837 2.75808e-17)
(31.5178 -0.0844902 0)
(31.6065 -0.132026 0)
(32.7177 -0.264061 -2.75807e-17)
(32.9501 -0.367866 -2.75789e-17)
(31.7735 -0.178117 0)
(31.913 -0.232084 0)
(33.0356 -0.411916 2.75764e-17)
(33.6444 -0.581912 3.40727e-22)
(34.0288 -0.812374 -4.21804e-22)
(33.3178 -0.537079 2.75757e-17)
(32.1307 -0.286287 0)
(32.3294 -0.344749 0)
(33.4597 -0.577122 -2.75702e-17)
(33.7955 -0.719826 -2.75707e-17)
(32.6024 -0.403942 0)
(32.8639 -0.46371 0)
(33.9977 -0.749241 0)
(34.5255 -1.05911 5.25155e-18)
(35.1375 -1.30469 -5.25162e-18)
(34.3872 -0.903569 2.75639e-17)
(33.1931 -0.523647 2.22606e-19)
(33.5164 -0.581148 0)
(34.649 -0.916224 0)
(35.0879 -1.0751 3.45058e-18)
(33.8987 -0.637267 -3.56253e-18)
(34.2784 -0.689332 3.56177e-18)
(35.4043 -1.06684 -3.44951e-18)
(35.8583 -1.53116 0)
(36.6735 -1.72507 0)
(35.8874 -1.22381 3.44927e-18)
(34.7076 -0.737838 -3.56138e-18)
(35.1351 -0.779682 3.56043e-18)
(36.2511 -1.19154 -3.44791e-18)
(36.7644 -1.34164 3.44776e-18)
(35.6018 -0.817612 -3.56006e-18)
(36.0665 -0.852246 3.55896e-18)
(37.1621 -1.28829 -3.44618e-18)
(37.5621 -1.87916 0)
(38.5018 -1.98801 0)
(37.6987 -1.42857 3.44608e-18)
(36.5597 -0.879901 -3.55857e-18)
(37.0488 -0.90419 3.5574e-18)
(38.1216 -1.35516 -3.44436e-18)
(38.6712 -1.48467 3.44426e-18)
(37.5594 -0.921742 -3.55699e-18)
(38.063 -0.936174 3.55578e-18)
(39.1097 -1.3942 -3.44246e-18)
(39.4711 -2.05606 0)
(40.4537 -2.08726 2.55883e-21)
(39.6638 -1.51254 3.44237e-18)
(38.5822 -0.944516 -3.54841e-18)
(39.0917 -0.950534 3.54717e-18)
(40.1093 -1.40863 -3.44724e-18)
(40.6606 -1.51602 3.44713e-18)
(39.6123 -0.951086 -3.54675e-18)
(40.1208 -0.950798 3.54548e-18)
(41.1052 -1.40305 -3.43858e-18)
(41.4352 -2.08653 -2.55905e-21)
(42.4039 -2.05942 0)
(41.6483 -1.50048 3.43844e-18)
(40.6361 -0.94546 -3.55199e-18)
(41.1372 -0.940096 3.55073e-18)
(42.0864 -1.38198 -3.43663e-18)
(42.617 -1.47058 3.43642e-18)
(41.6418 -0.930537 -3.55027e-18)
(42.1298 -0.92021 3.54905e-18)
(43.0449 -1.34853 -3.4347e-18)
(43.3509 -2.01185 0)
(44.2693 -1.94981 0)
(43.5592 -1.42905 3.43441e-18)
(42.6205 -0.907534 -3.54855e-18)
(43.0923 -0.893612 3.54739e-18)
(43.9733 -1.30608 -3.43279e-18)
(44.4692 -1.3795 3.43241e-18)
(43.5664 -0.878911 -3.54685e-18)
(44.0197 -0.862481 3.54576e-18)
(44.8672 -1.25763 -3.43092e-18)
(45.1543 -1.87803 0)
(46.0029 -1.80022 0)
(45.3431 -1.32485 3.43044e-18)
(44.4755 -0.846619 -3.54518e-18)
(44.9089 -0.828551 3.54417e-18)
(45.7238 -1.20558 -3.42907e-18)
(46.1789 -1.26735 3.4285e-18)
(45.3453 -0.812189 -3.54355e-18)
(45.7582 -0.793161 3.54261e-18)
(46.5413 -1.15175 -3.42727e-18)
(46.8131 -1.71926 0)
(47.5843 -1.63727 2.55215e-21)
(46.9754 -1.20873 3.4266e-18)
(46.1747 -0.776782 -3.53503e-18)
(46.5669 -0.757315 3.53418e-18)
(47.3194 -1.09752 -3.43218e-18)
(47.7324 -1.15024 3.43142e-18)
(46.9635 -0.741261 -3.53348e-18)
(47.3352 -0.72175 3.5327e-18)
(48.0581 -1.04389 -3.42378e-18)
(48.3165 -1.55578 -2.55238e-21)
(49.0102 -1.47592 0)
(48.4505 -1.0928 3.42292e-18)
(47.7122 -0.706253 -3.53887e-18)
(48.0638 -0.686974 3.53818e-18)
(48.7581 -0.991577 -3.42209e-18)
(49.1304 -1.03701 3.42113e-18)
(48.4216 -0.672167 -3.53739e-18)
(48.7539 -0.653298 3.53677e-18)
(49.4206 -0.940976 -3.42043e-18)
(49.6665 -1.39856 0)
(50.2866 -1.32417 0)
(49.7734 -0.983204 3.41938e-18)
(49.093 -0.639236 -3.53595e-18)
(49.4066 -0.620871 3.5354e-18)
(50.0467 -0.892262 -3.41881e-18)
(50.3807 -0.931471 3.41766e-18)
(49.7277 -0.607558 -3.53454e-18)
(50.0234 -0.589762 3.53407e-18)
(50.6379 -0.845488 -3.41721e-18)
(50.8718 -1.25285 0)
(51.4233 -1.18467 2.5477e-21)
(50.9537 -0.881845 6.65836e-21)
(50.3272 -0.577195 0)
(50.6056 -0.560075 0)
(51.1952 -0.800793 -6.65886e-21)
(51.4934 -0.834608 6.65513e-21)
(50.8927 -0.548327 0)
(51.1548 -0.532017 3.31076e-18)
(51.7199 -0.758501 -3.41406e-18)
(51.9421 -1.11993 -2.54775e-21)
(52.4298 -1.05908 -5.21489e-18)
(52.0015 -0.790139 3.41264e-18)
(51.426 -0.521182 -3.53048e-18)
(51.6726 -0.505742 3.5302e-18)
(52.2139 -0.718831 2.38356e-17)
(52.4795 -0.748492 3.411e-18)
(51.9288 -0.49582 -3.52917e-18)
(52.161 -0.481241 3.52895e-18)
(52.6788 -0.681736 -3.41096e-18)
(52.8882 -1.00208 0)
(53.3188 -0.948689 2.54493e-21)
(52.9294 -0.709527 6.64557e-21)
(52.4031 -0.472177 0)
(52.6218 -0.458418 0)
(53.1163 -0.647053 -6.6466e-21)
(53.3527 -0.673044 6.64237e-21)
(52.8504 -0.450143 0)
(53.0564 -0.437153 3.30605e-18)
(53.528 -0.614596 -3.40783e-18)
(53.7233 -0.898587 -2.54476e-21)
(54.1028 -0.851501 -5.20907e-18)
(53.7507 -0.638847 3.40604e-18)
(53.2724 -0.4296 -3.52528e-18)
(53.4665 -0.417332 3.5252e-18)
(53.9153 -0.584185 2.37916e-17)
(54.1249 -0.606749 3.40434e-18)
(53.6705 -0.410442 -3.52397e-18)
(53.8533 -0.398852 3.52393e-18)
(54.2794 -0.555655 -3.40458e-18)
(54.4588 -0.807179 2.54268e-21)
(54.7923 -0.765374 -5.06098e-25)
(54.4765 -0.576586 6.63244e-21)
(54.0458 -0.392563 0)
(54.218 -0.381581 0)
(54.6214 -0.528841 -6.63377e-21)
(54.8066 -0.54815 6.62892e-21)
(54.3996 -0.375827 2.20074e-19)
(54.5617 -0.365397 3.52131e-18)
(54.9425 -0.503537 -3.40111e-18)
(55.1046 -0.725787 -2.5416e-21)
(55.3964 -0.688072 -5.2026e-18)
(55.1162 -0.52121 3.39888e-18)
(54.7328 -0.360122 -3.51989e-18)
(54.8852 -0.350226 3.51995e-18)
(55.2434 -0.479575 2.37427e-17)
(55.4058 -0.495632 3.3969e-18)
(55.0462 -0.345434 -3.51845e-18)
(55.1894 -0.336177 3.51854e-18)
(55.5247 -0.456943 -3.39732e-18)
(55.6683 -0.652 2.53941e-21)
(55.9211 -0.617643 -3.82546e-25)
(55.6764 -0.47148 6.61738e-21)
(55.3408 -0.331928 0)
(55.4752 -0.323046 0)
(55.7877 -0.435597 -6.61882e-21)
(55.9289 -0.448788 6.61307e-21)
(55.6174 -0.319274 2.19706e-19)
(55.7435 -0.310662 3.5155e-18)
(56.033 -0.415598 -3.39305e-18)
(56.1553 -0.585278 -2.53781e-21)
(56.3718 -0.55486 -5.19447e-18)
(56.1639 -0.42753 3.3902e-18)
(55.8766 -0.307269 -3.51372e-18)
(55.9947 -0.299131 3.51385e-18)
(56.261 -0.396937 2.36824e-17)
(56.382 -0.407525 0)
(56.119 -0.296053 0)
(56.2294 -0.288441 3.51207e-18)
(56.4724 -0.379349 -3.04335e-17)
(56.5714 -0.525922 5.19448e-18)
(56.7545 -0.497926 -2.70736e-25)
(56.5836 -0.388453 0)
(56.3451 -0.285613 0)
(56.4479 -0.27849 3.51013e-18)
(56.6674 -0.362494 -3.37852e-18)
(56.7691 -0.36997 0)
(56.5551 -0.275834 0)
(56.6504 -0.268969 3.50801e-18)
(56.8465 -0.346018 -3.03782e-17)
(56.9213 -0.470375 5.1859e-18)
(57.0718 -0.442951 -2.13853e-25)
(56.9386 -0.351784 0)
(56.7491 -0.266384 0)
(56.8367 -0.259751 3.50565e-18)
(57.0094 -0.32976 -3.37161e-18)
(57.0917 -0.333755 0)
(56.9266 -0.257194 0)
(57.0065 -0.250845 3.50297e-18)
(57.1558 -0.313691 -3.03071e-17)
(57.2057 -0.415406 5.17789e-18)
(57.3227 -0.387757 -1.55271e-25)
(57.2282 -0.315981 0)
(57.0875 -0.24833 0)
(57.1593 -0.242338 3.49989e-18)
(57.2853 -0.297961 -3.36244e-18)
(57.3478 -0.298664 0)
(57.2311 -0.239918 0)
(57.2947 -0.234246 3.49626e-18)
(57.3979 -0.28257 -3.02087e-17)
(57.4228 -0.359909 5.1637e-18)
(57.5071 -0.331246 0)
(57.4507 -0.281495 0)
(57.3573 -0.231607 0)
(57.413 -0.225562 3.49185e-18)
(57.4943 -0.266226 -3.34896e-18)
(57.5376 -0.262155 3.00583e-17)
(57.467 -0.222188 -3.48711e-18)
(57.5125 -0.216253 -2.17881e-19)
(57.5725 -0.248368 1.30435e-20)
(57.575 -0.300926 -5.14265e-18)
(57.6228 -0.268883 1.02258e-17)
(57.6033 -0.241868 -2.33347e-17)
(57.5525 -0.212402 -3.48047e-18)
(57.586 -0.205527 2.71563e-20)
(57.6279 -0.228634 -2.66893e-17)
(57.6471 -0.219821 1.55378e-19)
(57.6144 -0.200626 1.82734e-25)
(57.6367 -0.194181 -3.43094e-18)
(57.6623 -0.207355 2.96337e-17)
(57.6512 -0.234077 -4.10472e-18)
(57.6633 -0.194091 3.69593e-18)
(57.6709 -0.195404 -2.62243e-17)
(57.6523 -0.187375 -1.07544e-19)
(57.6611 -0.179242 5.34354e-20)
(57.6758 -0.181481 0)
(57.6727 -0.16423 0)
(57.6614 -0.168661 0)
(57.6518 -0.158031 2.90321e-18)
(57.6625 -0.147392 -3.08251e-18)
(57.6605 -0.145003 4.69694e-18)
(57.6387 -0.138876 0)
(57.6326 -0.198874 -1.83946e-18)
(57.6182 -0.254092 3.18034e-19)
(57.5921 -0.305245 -2.43973e-19)
(57.5514 -0.353968 8.23347e-20)
(57.4949 -0.401493 0)
(57.4232 -0.448324 0)
(57.3364 -0.494337 0)
(57.234 -0.539965 0)
(57.1159 -0.585373 0)
(56.9823 -0.630576 0)
(56.8333 -0.676032 0)
(56.6686 -0.722405 0)
(56.4878 -0.770299 0)
(56.2904 -0.820243 0)
(56.0756 -0.8727 0)
(55.8427 -0.928007 0)
(55.5908 -0.986161 0)
(55.3194 -1.04701 0)
(55.0279 -1.11093 0)
(54.7153 -1.17843 0)
(54.3804 -1.24991 0)
(54.022 -1.32571 0)
(53.639 -1.40614 0)
(53.2302 -1.49155 2.65195e-21)
(52.794 -1.58236 -2.65238e-21)
(52.3292 -1.67908 0)
(51.8344 -1.78176 0)
(51.3078 -1.88871 2.65686e-21)
(50.7475 -1.99896 -2.65708e-21)
(50.1521 -2.11312 2.65936e-21)
(49.5196 -2.2314 -2.65947e-21)
(48.8487 -2.35336 0)
(48.1381 -2.47804 0)
(47.3871 -2.6039 2.66419e-21)
(46.5953 -2.72873 1.14223e-24)
(45.7628 -2.84955 -2.66522e-21)
(44.8908 -2.96243 0)
(43.9811 -3.06235 2.66882e-21)
(43.0375 -3.14296 1.23575e-24)
(42.0662 -3.19633 -2.66967e-21)
(41.0757 -3.21302 0)
(40.0776 -3.18422 0)
(39.0874 -3.10265 0)
(38.1263 -2.95903 0)
(37.2196 -2.73591 -2.67568e-21)
(36.3925 -2.44133 2.6758e-21)
(35.6705 -2.09299 0)
(35.0754 -1.71425 0)
(34.6177 -1.33199 0)
(34.2917 -0.973061 0)
(34.0796 -0.658144 0)
(33.9579 -0.399555 4.28545e-20)
(33.9017 -0.196595 -4.28762e-20)
(33.8868 -0.0479031 0)
(33.8936 0.0540386 4.2855e-20)
(33.9135 0.123356 -1.49538e-25)
(33.9422 0.169714 -8.57272e-20)
(33.9735 0.198612 4.28523e-20)
(34.0044 0.215179 -4.28514e-20)
(34.0348 0.223898 -4.27657e-20)
(34.0645 0.228385 8.5069e-20)
(34.0929 0.231323 0)
(34.7767 0.245767 1.71053e-19)
(34.7926 0.239694 -1.65845e-19)
(34.8096 0.2243 -1.25515e-18)
(34.7059 0.226274 -1.99566e-18)
(34.7024 0.229743 1.50854e-18)
(34.7028 0.227252 -2.48179e-19)
(34.9537 0.227282 4.96284e-20)
(34.945 0.228714 4.86564e-20)
(34.9264 0.227061 0)
(35.2104 0.231781 0)
(35.2056 0.233373 0)
(35.2031 0.230985 0)
(35.4009 0.229177 0)
(35.3971 0.231149 0)
(35.387 0.231097 0)
(35.2993 0.232346 -3.94734e-20)
(35.2962 0.248456 4.18846e-20)
(35.6998 0.247739 4.19104e-20)
(35.6915 0.231099 4.70116e-18)
(35.6119 0.229677 -1.55271e-18)
(35.6042 0.229899 1.31361e-18)
(35.5985 0.227366 1.98916e-19)
(35.7585 0.222955 -1.99637e-19)
(35.7599 0.225669 4.87262e-20)
(35.7565 0.227084 -2.59354e-17)
(35.9429 0.2197 2.01088e-19)
(35.9308 0.21927 -1.9572e-19)
(35.9208 0.216705 0)
(36.0495 0.207278 0)
(36.0569 0.209707 1.97103e-18)
(36.0604 0.21253 -2.42474e-18)
(36.0166 0.220105 1.57433e-18)
(36.0365 0.236988 -1.66417e-19)
(36.0528 0.25134 2.57466e-19)
(35.7046 0.260334 0)
(35.2907 0.258224 0)
(35.2814 0.266023 0)
(34.7582 0.24887 4.34757e-20)
(34.7356 0.249059 -4.37635e-20)
(34.7082 0.244667 0)
(35.2465 0.274424 0)
(35.2672 0.271831 0)
(35.7026 0.284316 0)
(35.7059 0.272417 0)
(36.0661 0.266731 8.71903e-20)
(36.0757 0.283909 0)
(36.0801 0.303545 0)
(35.6927 0.29559 0)
(35.6729 0.305117 0)
(35.2166 0.271426 0)
(34.675 0.232705 0)
(34.6346 0.208773 0)
(35.174 0.258769 0)
(35.1144 0.229653 0)
(34.5869 0.167157 0)
(34.5319 0.0981745 0)
(35.0336 0.172216 0)
(35.4857 0.281134 0)
(35.5789 0.306191 0)
(35.6377 0.310398 0)
(36.0565 0.352696 -4.3934e-20)
(36.0758 0.326376 4.3949e-20)
(36.444 0.331803 0)
(36.4261 0.298066 -4.30809e-20)
(36.403 0.27237 -4.30065e-20)
(36.3772 0.251921 1.71222e-19)
(36.3493 0.234848 -1.68894e-19)
(36.3189 0.219509 -1.31008e-18)
(36.2835 0.202536 8.67377e-18)
(36.2155 0.200964 -2.67693e-17)
(36.1956 0.199742 3.57406e-18)
(36.1779 0.197141 -4.13136e-19)
(36.272 0.183729 0)
(36.2884 0.186222 -4.79519e-18)
(36.301 0.190709 -2.26676e-17)
(36.4129 0.164466 -1.59322e-18)
(36.3831 0.166696 3.15012e-18)
(36.3551 0.166645 0)
(36.3863 0.139779 8.19274e-19)
(36.4158 0.14009 5.93324e-18)
(36.4435 0.145922 -3.15449e-17)
(36.469 0.1576 1.36799e-17)
(36.5225 0.172395 -5.08213e-18)
(36.4644 0.137757 0)
(36.4307 0.124786 -2.55323e-17)
(36.4073 0.123841 -2.4142e-17)
(36.3871 0.114622 0)
(36.3612 0.104613 0)
(36.3315 0.0964404 0)
(36.0783 0.0411276 1.25265e-17)
(36.0671 0.0405982 3.41065e-18)
(35.9398 0.00966446 -3.15963e-18)
(35.2361 -0.121386 -1.16861e-17)
(34.0427 -0.315203 1.16314e-17)
(34.6643 -0.143598 7.08754e-18)
(35.64 -0.0436769 -2.83626e-17)
(35.6642 0.0136609 0)
(34.8208 -0.0248864 -8.6907e-18)
(34.9041 0.0211869 -2.11699e-18)
(35.7694 0.046455 0)
(36.0942 0.0670745 -5.13039e-18)
(36.1128 0.0781595 5.57427e-18)
(35.7852 0.0627642 -3.74411e-18)
(35.7132 0.0490539 -2.95391e-17)
(34.8664 0.0284713 2.16861e-18)
(34.9146 0.0393813 5.47592e-18)
(34.8893 0.0357294 -5.00311e-18)
(35.7328 0.0572944 -2.70409e-17)
(35.8109 0.0695495 4.3557e-18)
(36.1363 0.0856717 -6.04161e-18)
(36.1596 0.0909326 -5.5535e-18)
(36.205 0.098961 -8.09039e-19)
(36.2442 0.103691 6.52135e-18)
(36.4892 0.139788 2.65852e-17)
(36.5255 0.151906 0)
(36.5722 0.187305 1.6297e-18)
(36.6209 0.203986 4.85032e-18)
(36.6705 0.224578 0)
(36.7212 0.252564 5.27864e-18)
(36.735 0.207655 -2.84689e-17)
(36.698 0.189385 0)
(36.6601 0.184132 0)
(36.6235 0.169371 0)
(36.5906 0.166651 -2.65685e-17)
(36.554 0.153746 -1.88234e-18)
(36.3394 0.114125 1.63878e-18)
(36.2942 0.10995 6.54484e-18)
(35.9903 0.0884708 -3.56003e-17)
(35.9054 0.0761925 0)
(35.9366 0.0840112 -3.55098e-17)
(35.8524 0.0726908 -1.23827e-19)
(35.8902 0.0801473 -3.94504e-18)
(35.8068 0.0680119 0)
(35.8446 0.0743715 3.14751e-17)
(35.7636 0.0628739 2.69992e-17)
(34.9348 0.0420061 4.63418e-18)
(34.9527 0.0446988 -2.79146e-18)
(35.0011 0.0498462 4.21814e-19)
(34.9896 0.046151 -5.63998e-19)
(35.0615 0.0531663 5.08176e-18)
(35.0528 0.0499916 -5.64791e-19)
(35.1264 0.0559252 5.08095e-18)
(35.1206 0.0523584 -5.64701e-19)
(35.1951 0.0588354 5.08011e-18)
(35.1913 0.0553526 -5.65521e-19)
(35.9606 0.0804951 0)
(36.0435 0.09222 -3.16031e-17)
(36.0189 0.084118 3.16879e-17)
(35.2693 0.0579591 -5.64512e-19)
(35.267 0.0616129 5.65272e-19)
(35.346 0.0648938 5.64257e-19)
(36.103 0.0969757 0)
(36.3932 0.120952 0)
(36.444 0.125627 4.95529e-23)
(36.1626 0.101154 -3.15652e-17)
(36.0803 0.0886659 0)
(35.3485 0.0612414 -5.65326e-19)
(35.4266 0.0680651 0)
(35.4356 0.0645225 0)
(36.1451 0.0932108 3.16969e-17)
(36.2285 0.107137 -3.95191e-18)
(36.5018 0.134079 -6.55504e-18)
(36.5589 0.14056 0)
(36.6219 0.151853 1.63919e-18)
(36.6869 0.161379 0)
(36.7793 0.217638 0)
(36.8174 0.242097 0)
(36.7725 0.294164 0)
(36.8227 0.359897 0)
(36.4509 0.377621 0)
(36.4337 0.440994 0)
(36.0108 0.381377 0)
(35.9197 0.405528 -4.39044e-20)
(35.7605 0.401866 4.38922e-20)
(35.3473 0.213488 0)
(34.9277 0.0693876 0)
(34.4677 -0.011533 0)
(34.4049 -0.17716 0)
(34.7937 -0.0979753 0)
(34.6458 -0.360555 0)
(34.3708 -0.421445 0)
(34.3925 -0.760683 0)
(34.5369 -0.763699 0)
(34.6295 -0.611381 0)
(34.9012 -0.185351 0)
(35.155 0.070585 0)
(35.5143 0.323362 7.79315e-24)
(35.1645 0.111597 9.6836e-24)
(34.7208 -0.305335 7.53373e-24)
(34.7615 0.167076 2.5714e-19)
(35.4086 0.520663 1.28397e-19)
(35.8794 0.640557 -1.15188e-23)
(36.1894 0.613578 -4.29713e-20)
(36.3619 0.525496 -4.30153e-20)
(36.8445 0.645873 -5.18541e-18)
(36.861 0.466769 0)
(37.0211 0.393331 1.04422e-19)
(36.9768 0.335456 -1.04549e-19)
(36.9113 0.2974 0)
(36.8706 0.261302 0)
(36.8347 0.193356 0)
(36.7575 0.177589 6.55096e-18)
(36.5321 0.140548 -3.55269e-17)
(36.4486 0.122119 0)
(36.447 0.12863 0)
(36.3649 0.112873 -3.94847e-18)
(36.3698 0.120716 -3.95273e-18)
(36.2868 0.105162 0)
(36.2958 0.112693 0)
(36.2138 0.0989455 3.16049e-17)
(35.5251 0.0686481 -5.6511e-19)
(35.515 0.0721866 5.07638e-18)
(35.6065 0.0763855 0)
(35.6238 0.0731888 0)
(35.7072 0.0819356 5.07423e-18)
(35.7268 0.0787676 5.08384e-18)
(35.813 0.087946 -5.63478e-19)
(35.8412 0.0856271 5.64935e-19)
(35.9307 0.0963146 5.07183e-18)
(35.9635 0.0941484 -5.64596e-19)
(36.5403 0.133728 0)
(36.6239 0.15305 0)
(36.64 0.148633 0)
(36.1008 0.105325 -5.63531e-19)
(36.0574 0.105842 5.64301e-19)
(36.2 0.119462 5.63228e-19)
(36.7258 0.172339 0)
(36.9174 0.219358 0)
(37.0126 0.249547 0)
(36.8379 0.195341 0)
(36.7514 0.168435 0)
(36.251 0.119712 -5.64275e-19)
(36.3556 0.136499 5.63967e-19)
(36.4213 0.14082 3.94226e-18)
(36.874 0.196327 -3.94898e-18)
(36.9666 0.232281 -3.9413e-18)
(37.117 0.29906 0)
(37.2526 0.370632 0)
(37.1048 0.475667 0)
(37.1476 0.585619 0)
(37.2019 0.78682 2.66697e-17)
(37.5251 0.726112 -9.10687e-23)
(37.3957 0.495122 6.54575e-18)
(37.3217 0.370072 0)
(37.1998 0.301809 0)
(37.1236 0.28514 0)
(37.0201 0.237424 0)
(36.6203 0.169878 -5.63862e-19)
(36.5372 0.162337 5.06576e-18)
(36.7538 0.199789 5.63539e-19)
(36.8657 0.215222 -5.62676e-19)
(37.0379 0.257682 5.61761e-19)
(37.2206 0.313338 -3.94319e-18)
(37.4413 0.432574 -2.75988e-17)
(37.5703 0.577554 -3.14815e-17)
(37.6569 0.777312 2.73221e-17)
(37.5791 0.682825 4.35544e-18)
(37.4299 0.461828 0)
(37.6677 0.979272 1.40058e-19)
(37.6952 0.99889 4.90185e-19)
(37.5217 1.09015 6.49704e-18)
(37.128 0.983528 0)
(36.6671 0.911835 0)
(36.2392 1.14234 -8.16201e-20)
(35.5422 1.20073 -5.43602e-18)
(34.5961 1.01195 -3.69516e-23)
(34.6906 1.94448 3.9626e-19)
(35.3053 2.00846 0)
(35.8889 1.80953 2.58544e-17)
(36.3364 1.74952 4.07976e-19)
(36.7066 1.46769 0)
(36.982 1.29895 0)
(37.3507 1.48839 -2.00659e-19)
(37.0251 1.85777 9.88419e-20)
(36.5761 2.17526 -1.94363e-19)
(36.7957 2.35216 -9.49358e-19)
(37.0236 2.22682 4.79385e-19)
(37.249 1.95265 4.79837e-19)
(37.4183 1.78678 -4.83965e-19)
(37.5651 1.501 -7.78571e-18)
(37.6525 1.29411 -3.35248e-17)
(37.6358 1.31044 -5.56762e-19)
(37.5473 1.60574 9.37906e-18)
(37.4009 1.87081 5.46604e-19)
(37.2294 2.12823 -4.85612e-18)
(37.0037 2.37069 5.33331e-19)
(36.7661 2.58586 0)
(36.4927 2.78266 6.26281e-18)
(36.5232 2.595 0)
(36.2484 2.68259 -1.88832e-18)
(36.0351 2.42889 -2.38212e-18)
(35.369 2.64364 -7.4041e-19)
(34.6087 2.75415 5.74648e-18)
(33.6981 2.81011 -8.7851e-18)
(33.8923 2.02486 2.77822e-18)
(33.1176 1.81422 -2.56287e-17)
(33.3669 0.407338 -8.32696e-22)
(34.0574 -0.580905 -3.44384e-19)
(34.3284 -1.0508 3.07665e-19)
(34.4464 -1.27429 0)
(34.5219 -1.31144 0)
(34.5052 -1.18222 0)
(34.7483 -1.67439 0)
(34.6438 -1.964 4.43819e-20)
(34.9566 -2.69252 1.68585e-23)
(35.1512 -2.21127 0)
(35.7275 -2.74589 0)
(35.5112 -3.40636 4.02831e-25)
(35.1335 -4.04927 6.69774e-20)
(34.6178 -3.06309 -2.67321e-19)
(34.4227 -2.11609 0)
(34.0989 -2.07796 -7.06782e-19)
(34.1282 -3.33817 1.33341e-19)
(34.6068 -4.75309 4.46676e-20)
(35.5783 -5.97827 -4.19921e-20)
(35.9919 -4.94784 4.60989e-24)
(36.2841 -4.04045 0)
(36.4683 -3.21948 0)
(37.3387 -3.60267 0)
(37.2435 -4.55073 1.11143e-20)
(38.3142 -4.91653 -8.33989e-21)
(38.293 -3.88928 0)
(39.307 -4.07894 0)
(39.4324 -5.1472 -1.42138e-24)
(39.5141 -6.31906 5.59396e-21)
(38.2833 -6.07531 5.59939e-21)
(37.0804 -5.62985 1.11985e-20)
(36.8369 -6.83668 -2.80439e-21)
(38.2063 -7.34314 0)
(39.5763 -7.58191 0)
(40.8929 -7.62475 -4.47873e-20)
(40.7242 -6.40812 0)
(40.5573 -5.25492 -2.77795e-21)
(40.3558 -4.17756 0)
(41.4037 -4.20043 0)
(41.6592 -5.26265 0)
(42.7241 -5.19522 0)
(42.4316 -4.16402 0)
(43.4272 -4.08241 0)
(43.7443 -5.07343 0)
(44.0508 -6.0811 0)
(43.0025 -6.25977 0)
(41.8914 -6.37765 0)
(42.1355 -7.5297 0)
(43.2953 -7.34103 0)
(44.3717 -7.09103 0)
(45.369 -6.80321 0)
(45.0354 -5.86217 0)
(44.7148 -4.91281 0)
(44.3834 -3.96744 0)
(45.2972 -3.82904 0)
(45.6335 -4.72598 0)
(46.5002 -4.52286 0)
(46.1667 -3.6751 0)
(46.9912 -3.51198 0)
(47.3164 -4.31099 0)
(47.6277 -5.0967 0)
(46.8206 -5.36029 0)
(45.9577 -5.61816 0)
(46.293 -6.49431 0)
(47.1499 -6.17612 0)
(47.9458 -5.85683 0)
(48.2849 -6.60294 0)
(47.5049 -6.98193 0)
(46.6591 -7.36661 0)
(45.739 -7.74957 0)
(44.7343 -8.11952 0)
(43.6337 -8.45945 0)
(42.4255 -8.74391 0)
(41.1001 -8.93463 4.4829e-20)
(39.6545 -8.97571 0)
(38.1012 -8.78191 -4.48661e-20)
(36.485 -8.2441 -1.79361e-19)
(34.9271 -7.18789 -7.15216e-19)
(33.7074 -5.50449 0)
(33.237 -3.46458 0)
(33.4771 -1.81305 -6.9555e-19)
(32.1362 -1.06651 1.3071e-18)
(31.4988 -3.39952 -7.02828e-19)
(32.0313 -6.5366 0)
(29.0252 -7.71266 0)
(28.0858 -2.3795 -4.23381e-18)
(29.7455 -0.521806 0)
(31.1506 0.781807 -4.23257e-19)
(32.0911 1.55866 2.99832e-17)
(31.7604 2.54233 -2.94322e-18)
(32.7558 2.74547 5.89965e-18)
(32.8136 3.42423 0)
(33.3297 3.49077 0)
(33.8649 3.3846 3.06714e-17)
(34.3234 3.4082 -2.91556e-17)
(34.7957 3.2326 -3.28132e-18)
(35.194 3.20778 3.54638e-18)
(35.5878 2.99679 -3.73421e-18)
(35.9165 2.92758 2.28212e-17)
(35.8898 3.16718 -2.04674e-18)
(36.2163 2.96415 -2.0625e-18)
(35.5428 3.3417 0)
(35.1402 3.50104 -1.49401e-17)
(34.716 3.64842 3.03137e-18)
(34.2343 3.80356 6.65613e-18)
(33.7872 3.83698 -3.82062e-18)
(33.2613 3.9257 4.20514e-18)
(33.1539 4.31259 -8.70364e-18)
(33.6198 4.15779 -4.52184e-18)
(33.8948 3.99916 -3.22131e-17)
(32.6055 4.43097 6.26607e-18)
(32.7057 3.97423 -7.69082e-18)
(32.0759 4.02842 9.58037e-18)
(32.1969 3.4845 -2.81561e-17)
(31.6177 3.34963 1.66938e-18)
(30.9302 3.25479 8.27912e-19)
(30.6877 3.9165 -7.72179e-19)
(31.4166 4.00692 -3.28966e-18)
(31.2802 4.60264 0)
(31.9895 4.54025 1.89743e-18)
(30.4573 4.60008 0)
(29.5689 4.49143 3.07094e-18)
(29.9614 3.63471 3.89924e-18)
(30.3016 2.95025 -2.76639e-17)
(30.6076 1.90222 5.9195e-18)
(29.0477 0.483835 0)
(28.034 2.32087 -6.35492e-18)
(29.424 2.71933 0)
(29.0556 3.25068 -3.39432e-18)
(28.5409 4.07977 3.41152e-18)
(27.8793 4.91484 -8.80527e-18)
(28.8619 4.98408 -3.28397e-19)
(26.4847 4.78479 0)
(27.3568 3.75578 2.96635e-17)
(25.909 3.48187 0)
(24.774 4.5155 0)
(23.2067 3.98935 0)
(24.7122 2.61814 -2.66391e-17)
(25.7745 0.473917 7.78272e-18)
(24.186 -3.42427 2.54664e-17)
(22.1867 -1.03286 2.57876e-17)
(23.2378 1.1438 -1.69957e-18)
(21.5067 2.5106 1.79066e-18)
(19.856 -0.0694886 3.18853e-18)
(18.8958 -4.00961 -3.08257e-18)
(21.5764 -4.33302 -2.69042e-17)
(21.9644 -7.45758 -8.82167e-19)
(24.9266 -7.80725 -6.6418e-18)
(27.419 -12.78 0)
(30.4691 -15.0355 -2.6427e-18)
(25.4259 -13.6173 6.63033e-18)
(23.2751 -11.0041 1.08042e-20)
(21.6723 -11.5525 8.81435e-19)
(19.473 -8.37892 8.05666e-19)
(15.7512 -9.49852 -2.7601e-18)
(14.8423 -2.43785 -3.46081e-19)
(16.7272 1.49651 -1.82119e-17)
(19.4028 3.67483 -2.58213e-17)
(21.4548 4.72278 2.82142e-18)
(9.61856 -3.58529 0)
(10.7934 -11.8113 0)
(16.3412 -16.6386 -2.83154e-17)
(18.4925 -14.2424 -2.3946e-17)
(21.9714 -19.0313 1.42687e-17)
(30.0011 -22.1264 -2.00186e-18)
(23.6072 -25.9159 -4.52522e-18)
(13.6575 -22.7372 1.58885e-17)
(6.6441 -19.0753 3.07764e-17)
(8.89367 -32.4472 1.15609e-17)
(17.8217 -30.0443 -9.27383e-18)
(23.7395 -37.5813 6.88703e-18)
(20.8923 -42.6557 1.12002e-17)
(35.3213 -43.0921 -3.62996e-17)
(33.1407 -38.5714 1.73495e-17)
(30.8864 -33.3697 -4.47529e-18)
(36.7617 -28.0915 -3.31472e-18)
(38.7646 -33.0366 -7.39585e-18)
(39.0376 -37.9041 2.74192e-17)
(41.463 -40.4955 2.969e-18)
(45.7987 -36.6529 3.74633e-18)
(46.9785 -35.139 3.36496e-19)
(48.6899 -31.9627 -5.54991e-18)
(48.7946 -29.309 -6.54612e-18)
(49.4678 -29.0876 3.75083e-18)
(49.5005 -27.2657 -8.27526e-19)
(48.7716 -25.6615 2.11809e-17)
(49.576 -25.9895 0)
(49.0712 -24.8962 0)
(48.1579 -23.8377 -1.58112e-17)
(49.0018 -24.3549 7.60515e-18)
(48.2868 -23.7136 0)
(47.293 -22.9603 4.65579e-17)
(48.2428 -23.5493 1.5114e-18)
(47.5538 -23.1355 2.44e-17)
(46.6015 -22.5903 -4.87105e-17)
(47.6363 -23.2491 5.93145e-18)
(46.9484 -23.0344 -1.59533e-18)
(46.0371 -22.6066 -4.0373e-17)
(47.0876 -23.2473 7.84545e-19)
(46.4287 -23.1163 -8.01462e-19)
(45.5533 -22.8351 1.26219e-18)
(46.6851 -23.5058 0)
(46.0686 -23.4882 -6.35926e-18)
(45.2552 -23.2425 0)
(46.3863 -23.8796 -7.40921e-19)
(45.8092 -23.9185 -2.58945e-17)
(45.0238 -23.7214 3.59607e-17)
(46.185 -24.41 4.47605e-18)
(45.6215 -24.5069 2.02394e-22)
(44.8543 -24.3598 2.61958e-18)
(46.0154 -24.9951 1.53662e-18)
(45.4959 -25.0892 -5.12751e-18)
(44.739 -24.9531 1.98642e-17)
(45.895 -25.6134 3.23809e-18)
(45.1248 -25.6373 -2.37878e-17)
(46.2722 -26.2437 -1.13239e-17)
(45.7808 -26.4715 6.36994e-18)
(45.1399 -26.3391 -1.03934e-17)
(46.31 -27.0132 5.4511e-18)
(45.8463 -27.2707 1.37376e-17)
(45.2162 -27.1411 -1.70214e-17)
(46.2937 -27.764 -3.23548e-18)
(45.5951 -27.8206 0)
(46.8659 -28.4893 2.39004e-18)
(46.4615 -28.7621 3.94569e-19)
(45.8666 -28.5984 2.13906e-17)
(46.9301 -29.2332 0)
(46.2379 -29.4532 0)
(47.4017 -30.0422 1.36909e-18)
(47.0224 -30.3112 2.54907e-17)
(46.4182 -30.1942 -1.07208e-17)
(47.4598 -30.825 5.39647e-18)
(46.875 -31.0542 -7.71153e-18)
(48.0809 -31.6465 -3.98247e-18)
(47.7659 -31.8987 -2.80475e-17)
(47.1692 -31.8471 5.31537e-18)
(48.225 -32.4555 -4.23279e-18)
(47.6841 -32.6791 3.91856e-18)
(48.7249 -33.2105 -5.53621e-18)
(48.4233 -33.4678 3.14701e-18)
(47.8864 -33.4411 3.32126e-17)
(48.8825 -34.016 1.59148e-18)
(48.4204 -34.214 -1.40207e-17)
(49.5117 -34.7605 8.27838e-18)
(49.2791 -35.0209 2.42765e-17)
(48.7656 -35.0286 3.13829e-18)
(49.7934 -35.5868 -8.0384e-18)
(49.3383 -35.7834 1.25504e-17)
(50.354 -36.287 -5.62723e-18)
(49.8981 -36.448 -2.61503e-17)
(50.8416 -36.9481 -6.61309e-19)
(50.5292 -37.3376 -8.11922e-19)
(50.1251 -37.3438 2.10705e-18)
(51.0849 -37.8559 -4.07767e-19)
(50.7017 -37.9461 1.71057e-17)
(51.5674 -38.4242 -2.90233e-18)
(51.1358 -38.6737 -2.68697e-17)
(52.1778 -39.1857 2.69709e-18)
(52.0226 -39.5499 -9.77199e-18)
(51.6601 -39.5144 -2.25291e-17)
(52.5785 -40.0024 4.19284e-22)
(52.1194 -40.163 0)
(53.078 -40.6631 0)
(52.6963 -40.8969 0)
(53.5838 -41.3332 0)
(53.2276 -41.519 1.50284e-17)
(54.0695 -41.9275 3.4017e-19)
(53.8927 -42.2492 0)
(53.4891 -42.3279 -1.42386e-18)
(54.4415 -42.7722 7.52049e-18)
(54.1559 -42.9136 8.78319e-18)
(55.0878 -43.3595 -1.2022e-17)
(54.7716 -43.4977 4.05976e-18)
(55.6206 -43.945 1.40647e-18)
(55.2667 -44.2536 1.87364e-18)
(56.2851 -44.6848 0)
(56.2324 -45.0496 8.05318e-18)
(55.9474 -45.0489 -2.79536e-18)
(56.8447 -45.4786 -1.61626e-18)
(56.4803 -45.6365 4.36435e-21)
(57.4023 -46.1001 2.90247e-18)
(57.0847 -46.3957 0)
(58.0186 -46.7967 0)
(57.7594 -46.9985 -7.70091e-18)
(58.6592 -47.3683 5.27475e-18)
(58.3804 -47.6478 1.43489e-17)
(59.2831 -48.0019 0)
(59.2111 -48.3783 0)
(58.9302 -48.4205 -1.112e-17)
(59.8384 -48.8325 -6.49547e-18)
(59.5964 -49.0153 2.59462e-17)
(60.4856 -49.4022 -5.96778e-18)
(60.2589 -49.5916 8.19279e-18)
(61.1932 -50.0149 -4.27591e-18)
(60.9152 -50.2678 1.57084e-17)
(61.8288 -50.6498 2.80676e-18)
(61.6138 -50.9406 0)
(62.6073 -51.2968 0)
(62.6474 -51.6878 -2.68828e-17)
(62.4651 -51.689 1.30292e-17)
(63.349 -52.0991 3.96547e-19)
(63.0886 -52.3361 -1.69152e-17)
(64.0771 -52.7471 7.15604e-19)
(63.872 -52.9986 -3.97728e-18)
(64.8061 -53.3479 0)
(64.6051 -53.5318 -7.65434e-18)
(65.5171 -53.8808 -4.60376e-18)
(65.2925 -54.2009 1.4333e-17)
(66.2424 -54.5159 1.28038e-18)
(66.2951 -54.8858 -2.55534e-17)
(66.0716 -54.9002 2.78686e-18)
(67.024 -55.28 -3.26284e-18)
(66.8239 -55.4712 -1.73686e-17)
(67.7936 -55.8528 -3.00619e-18)
(67.646 -56.0839 1.65155e-17)
(68.6829 -56.4793 5.77427e-18)
(68.5457 -56.6838 1.58451e-17)
(69.5043 -57.0227 -2.75172e-18)
(69.3571 -57.3005 -1.65675e-17)
(70.4595 -57.6486 1.30413e-18)
(70.5672 -58.0956 0)
(70.4389 -58.1453 0)
(71.49 -58.5495 1.60168e-18)
(71.3574 -58.7314 5.31595e-19)
(72.414 -59.117 -3.6138e-19)
(72.2673 -59.3502 1.59727e-17)
(73.3064 -59.7231 -1.37843e-18)
(73.1513 -60.0218 1.91345e-18)
(74.2723 -60.3702 -1.3138e-18)
(74.1816 -60.7156 0)
(75.2923 -61.0053 0)
(75.4912 -61.3867 0)
(75.4018 -61.3112 -2.21157e-17)
(76.396 -61.7143 1.61928e-18)
(76.2127 -61.9535 0)
(77.3553 -62.3634 7.40001e-18)
(77.3058 -62.7189 2.64337e-17)
(78.5808 -63.0827 -4.24331e-18)
(78.6033 -63.2483 1.1634e-17)
(79.6621 -63.5482 8.05298e-18)
(79.6022 -63.8253 3.58803e-18)
(80.8055 -64.1478 -1.92095e-21)
(81.0309 -64.7349 -3.08797e-17)
(81.0056 -64.8171 0)
(82.2229 -65.1874 3.07791e-18)
(82.2923 -65.5027 -4.08882e-18)
(83.5601 -65.775 -2.07348e-18)
(83.5882 -65.8222 -3.81259e-18)
(84.6294 -66.1262 5.2981e-18)
(84.4984 -66.5283 3.95635e-17)
(85.7409 -66.8705 7.81753e-18)
(86.0905 -67.3987 1.19151e-17)
(86.2174 -67.3901 -2.11257e-17)
(87.4574 -67.6629 3.9979e-19)
(87.5808 -67.7518 -1.88546e-17)
(88.874 -68.0702 7.13761e-18)
(88.8669 -68.3176 -1.54314e-17)
(90.1404 -68.667 -2.98785e-18)
(90.2039 -69.147 4.94572e-17)
(91.7494 -69.3945 1.48706e-19)
(92.3509 -70.0115 1.80452e-17)
(92.6657 -69.8818 0)
(93.8954 -70.1069 -7.38193e-19)
(93.9637 -70.2892 -7.79907e-18)
(95.3736 -70.6299 4.56723e-18)
(95.4302 -71.1664 8.71396e-19)
(97.0052 -71.4428 7.68711e-20)
(97.6447 -72.0977 2.42765e-17)
(98.0835 -71.9939 -2.08356e-17)
(99.4274 -72.1264 3.01794e-18)
(99.6595 -72.0439 -1.18798e-17)
(100.981 -72.3504 -2.66956e-18)
(101.112 -72.9392 -1.40738e-17)
(102.922 -73.2168 2.46181e-18)
(103.714 -73.9201 0)
(104.264 -73.935 0)
(105.716 -74.0251 0)
(106.132 -73.8808 1.49399e-17)
(107.436 -74.0791 0)
(108.064 -74.6553 1.25008e-17)
(108.278 -74.921 2.36272e-17)
(110.219 -75.2054 1.52478e-18)
(111.125 -75.5105 -3.05266e-17)
(112.95 -75.4872 3.27205e-18)
(114.147 -75.5218 1.76959e-17)
(114.245 -75.3917 0)
(115.879 -75.6858 6.23474e-18)
(116.253 -76.3091 -3.82072e-17)
(118.349 -76.4763 0)
(119.92 -76.939 1.25594e-17)
(120.892 -76.2806 5.25026e-18)
(122.491 -76.355 4.73318e-21)
(122.997 -76.5147 3.75051e-18)
(125.132 -76.558 -3.14545e-21)
(126.542 -77.4419 -5.21469e-18)
(127.905 -77.4288 1.86606e-17)
(129.734 -77.2902 7.18502e-18)
(130.898 -76.5695 -7.21174e-18)
(132.404 -76.452 3.7735e-18)
(133.748 -76.8844 -2.662e-17)
(134.849 -77.1703 1.14009e-18)
(137.331 -76.9241 6.74444e-19)
(139.795 -76.4983 5.99782e-18)
(140.93 -75.5597 1.88811e-17)
(142.631 -75.3993 0)
(144.445 -75.6197 -1.22165e-17)
(146.02 -75.6636 0)
(148.745 -75.286 2.79132e-18)
(151.75 -74.285 -9.18134e-18)
(153.019 -73.1567 -3.3412e-17)
(154.933 -72.7276 4.31191e-18)
(157.523 -72.5205 -3.04269e-18)
(160.113 -71.5071 -4.64472e-18)
(162.324 -70.9427 7.86353e-18)
(165.657 -69.3997 -2.32122e-17)
(167.647 -68.1493 8.80282e-18)
(169.838 -67.1033 -5.44085e-18)
(174.016 -64.6199 1.56453e-17)
(176.967 -62.3547 6.96323e-18)
(179.185 -60.2115 -1.79716e-17)
(180.975 -59.0479 1.04913e-17)
(184.971 -55.136 -2.07106e-17)
(187.854 -51.3635 0)
(190.832 -47.616 0)
(193.29 -41.7473 -1.85075e-17)
(192.552 -40.4144 5.6907e-18)
(195.044 -33.7962 -4.04746e-20)
(195.82 -27.6195 -1.17805e-17)
(196.085 -20.6671 -3.60186e-18)
(195.096 -13.8413 -1.8039e-18)
(192.367 -6.7997 -3.65605e-18)
(186.969 -3.11137 -2.37433e-18)
(180.534 -2.27382 4.46814e-19)
(175.775 -2.48271 0)
(172.134 -2.47152 0)
(169.058 -2.25605 0)
(166.37 -1.93229 -4.49812e-19)
(163.976 -1.81572 4.05032e-18)
(161.962 -1.69693 -4.5162e-19)
(160.04 -1.68061 -3.16517e-18)
(158.409 -1.62753 -4.52818e-19)
(156.721 -1.60831 -3.17337e-18)
(155.324 -1.58684 3.18505e-18)
(153.794 -1.54307 4.54595e-19)
(152.609 -1.46291 -4.55299e-19)
(151.25 -1.39736 -3.19097e-18)
(150.261 -1.34554 3.20013e-18)
(149.026 -1.282 4.56764e-19)
(148.193 -1.20129 -4.57171e-19)
(147.065 -1.14002 0)
(146.359 -1.07867 3.2117e-18)
(145.301 -1.02357 0)
(144.695 -0.945877 -4.58665e-19)
(143.704 -0.891452 0)
(143.192 -0.836054 -4.59698e-19)
(142.251 -0.78925 -3.68207e-18)
(141.804 -0.717957 -4.59893e-19)
(140.914 -0.674187 0)
(140.527 -0.618787 -4.60791e-19)
(139.679 -0.586909 -3.69109e-18)
(139.338 -0.526234 -4.60883e-19)
(138.529 -0.497823 0)
(138.236 -0.449371 -4.61698e-19)
(137.462 -0.430479 -3.69853e-18)
(137.207 -0.378812 -4.61714e-19)
(136.47 -0.361235 0)
(136.259 -0.31631 -4.62461e-19)
(135.553 -0.301338 -3.70467e-18)
(135.376 -0.261318 -4.62409e-19)
(134.697 -0.248089 0)
(134.558 -0.209963 -4.6309e-19)
(133.911 -0.196781 -3.70963e-18)
(133.803 -0.168448 -4.62976e-19)
(133.177 -0.15815 0)
(133.103 -0.126768 3.24845e-18)
(132.507 -0.115484 0)
(132.459 -0.0961764 -4.63429e-19)
(131.882 -0.0884044 0)
(131.865 -0.0627645 3.25119e-18)
(131.315 -0.0540369 0)
(131.321 -0.0408516 3.24961e-18)
(130.786 -0.0357854 -3.7184e-18)
(130.822 -0.0118039 4.64296e-19)
(130.31 -0.00591861 0)
(130.363 0.00184218 -4.64044e-19)
(129.865 0.00294931 0)
(129.941 0.0242303 -4.6453e-19)
(129.471 0.0277528 -3.72055e-18)
(129.565 0.0324689 -4.64235e-19)
(129.103 0.0313458 0)
(129.216 0.0516817 3.25601e-18)
(128.779 0.0532408 0)
(128.906 0.0550577 -4.64366e-19)
(128.475 0.0517699 0)
(128.62 0.0711546 -4.64793e-19)
(128.213 0.0703233 -3.72236e-18)
(128.369 0.0701025 -4.64445e-19)
(127.966 0.0646582 0)
(128.136 0.0815468 -4.64848e-19)
(127.755 0.0783004 -3.72272e-18)
(127.933 0.0794433 -4.64481e-19)
(127.56 0.0731 0)
(127.751 0.0863191 -4.64869e-19)
(127.394 0.0806124 -3.72284e-18)
(127.589 0.0826996 -4.64488e-19)
(127.239 0.0760783 0)
(127.446 0.087832 -4.64866e-19)
(127.112 0.0804954 -3.72276e-18)
(127.322 0.0833218 -4.64475e-19)
(126.993 0.0758267 0)
(127.213 0.0877033 -4.64844e-19)
(126.899 0.0796007 -3.72251e-18)
(127.121 0.0831037 3.2512e-18)
(126.809 0.0746405 -3.25435e-18)
(127.039 0.086483 3.25676e-18)
(126.74 0.0777064 4.64844e-19)
(126.97 0.0814545 -4.64397e-19)
(126.675 0.0719707 -3.25398e-18)
(126.912 0.0833126 3.2564e-18)
(126.627 0.0738514 4.64788e-19)
(126.863 0.0781925 -4.64343e-19)
(126.581 0.0683155 -3.25357e-18)
(126.823 0.0794612 3.256e-18)
(126.549 0.0696591 4.64728e-19)
(126.789 0.0745415 -4.64285e-19)
(126.518 0.0643666 -3.25314e-18)
(126.762 0.0753217 3.25558e-18)
(126.499 0.0654413 4.64666e-19)
(126.741 0.0708246 -4.64225e-19)
(126.48 0.0605329 -3.2527e-18)
(126.725 0.0713558 3.25516e-18)
(126.471 0.0615499 4.64604e-19)
(126.713 0.0668681 -4.64165e-19)
(126.46 0.0565283 -3.25227e-18)
(126.706 0.0669848 3.25473e-18)
(126.459 0.0574313 4.64543e-19)
(126.701 0.0629184 -4.64105e-19)
(126.455 0.052709 -3.25184e-18)
(126.7 0.0627598 -4.6446e-19)
(126.459 0.0532926 -3.25433e-18)
(126.701 0.058697 -4.64047e-19)
(126.46 0.0486753 -3.25142e-18)
(126.705 0.0583931 -4.64402e-19)
(126.469 0.0491291 -3.25391e-18)
(126.709 0.0545641 -4.6399e-19)
(126.474 0.0447348 -3.25102e-18)
(126.716 0.0541028 -4.64346e-19)
(126.485 0.0450017 -3.25352e-18)
(126.724 0.0503356 -4.63935e-19)
(126.492 0.0405683 -3.25063e-18)
(126.733 0.0496611 3.25314e-18)
(126.506 0.040864 4.64313e-19)
(126.742 0.0462833 -4.63883e-19)
(126.514 0.0367285 -3.25026e-18)
(126.753 0.0457464 -4.64242e-19)
(126.529 0.037345 -3.25278e-18)
(126.764 0.0428819 -4.63832e-19)
(126.539 0.033533 -3.2499e-18)
(126.776 0.0424327 -4.64192e-19)
(126.555 0.0343614 -3.25243e-18)
(126.788 0.0399687 -4.63784e-19)
(126.567 0.0307384 -3.24956e-18)
(126.802 0.0394366 -4.64144e-19)
(126.584 0.0316237 -3.25209e-18)
(126.815 0.037265 -4.63737e-19)
(126.596 0.0281261 -3.24923e-18)
(126.83 0.036587 3.25177e-18)
(126.614 0.0290041 4.64117e-19)
(126.844 0.034704 -4.63691e-19)
(126.627 0.0257164 -3.24891e-18)
(126.859 0.0340746 -4.64054e-19)
(126.645 0.0267377 -3.25145e-18)
(126.873 0.0324343 -4.63648e-19)
(126.658 0.0235196 -3.2486e-18)
(126.889 0.0316555 3.59948e-18)
(126.676 0.0244991 6.96049e-19)
(126.903 0.0302271 3.59301e-18)
(126.69 0.0214436 0)
(126.919 0.0294853 0)
(126.708 0.0225245 -3.59917e-18)
(126.933 0.0282103 3.5927e-18)
(126.721 0.0194932 0)
(126.949 0.0273662 0)
(126.739 0.0205608 -3.59887e-18)
(126.963 0.0262412 3.5924e-18)
(126.751 0.0176384 0)
(126.978 0.0253833 3.59856e-18)
(126.769 0.0187584 2.3196e-19)
(126.991 0.0245055 3.59211e-18)
(126.781 0.0160851 0)
(127.006 0.0238488 0)
(126.798 0.0174382 -3.59829e-18)
(127.019 0.0232226 3.59183e-18)
(126.81 0.0149778 0)
(127.033 0.0227294 3.598e-18)
(126.826 0.0165124 2.31924e-19)
(127.047 0.0224133 3.59156e-18)
(126.839 0.0144124 0)
(127.062 0.0222688 3.59773e-18)
(126.856 0.0162714 2.31907e-19)
(127.076 0.0222677 3.59129e-18)
(126.87 0.0144842 0)
(127.093 0.0224759 0)
(126.889 0.0166861 -3.59747e-18)
(127.11 0.0227319 3.59101e-18)
(126.905 0.0151097 0)
(127.129 0.0231314 3.59717e-18)
(126.927 0.0175181 1.15936e-19)
(127.148 0.0235803 0)
(126.946 0.0157086 0)
(127.17 0.0232634 0)
(126.97 0.0175244 -3.71293e-18)
(127.192 0.0233275 0)
(126.991 0.015089 0)
(127.215 0.0221885 0)
(127.016 0.0162985 0)
(127.237 0.0219566 0)
(127.036 0.013862 0)
(127.262 0.0214063 0)
(127.064 0.015908 0)
(127.283 0.0213384 0)
(127.086 0.0129316 0)
(127.317 0.0215149 0)
(127.123 0.0158656 -1.15636e-19)
(127.358 0.0205864 -3.46715e-19)
(127.167 0.00738791 3.69346e-18)
(127.425 0.013151 -4.5883e-19)
(127.252 0.00148154 -3.88864e-18)
(127.544 0.0137071 0)
(127.382 0.0101145 3.75466e-18)
(127.689 0.0663488 -1.86208e-18)
(127.517 0.126349 -1.92048e-18)
(128.2 0.237637 6.12682e-18)
(128.816 0.311972 -4.18729e-18)
(135.568 0.164852 1.03912e-17)
(135.479 0.233585 -3.7676e-17)
(137.734 0.339387 -2.12346e-18)
(134.696 0.159347 -1.47724e-17)
(134.902 0.122054 4.2215e-18)
(136.914 0.256442 1.38933e-17)
(134.183 0.0608459 -3.14245e-17)
(134.507 0.0506409 2.05814e-18)
(136.026 0.147544 5.05855e-18)
(133.969 0.0265664 2.93129e-18)
(134.294 0.0253279 0)
(135.744 0.0885126 -9.40041e-18)
(133.797 0.0109176 2.38195e-17)
(134.134 0.00779463 0)
(135.342 0.0351183 -1.39195e-18)
(133.761 0.0100012 0)
(134.113 0.00341054 0)
(135.421 0.0203727 2.12185e-18)
(133.701 0.00267081 -2.737e-17)
(134.053 -0.00510999 0)
(135.245 0.00243647 -3.57181e-19)
(133.697 0.00328405 0)
(134.055 -0.00410919 0)
(135.333 0.00406405 -3.58754e-19)
(133.661 0.000321469 0)
(134.018 -0.00729427 -2.74056e-17)
(135.211 -0.00206964 1.14607e-17)
(133.665 0.00272291 -2.73919e-17)
(134.025 -0.00426803 -2.73832e-17)
(135.298 0.00416603 5.80451e-18)
(133.635 0.000873616 0)
(133.993 -0.0064133 0)
(135.189 -0.000370345 5.76493e-18)
(133.64 0.00336073 -2.40177e-17)
(134.002 -0.00387236 -2.73886e-17)
(135.278 0.00532906 5.76272e-18)
(133.612 0.000495952 0)
(133.973 -0.00756447 0)
(135.174 -0.000809684 0)
(133.621 0.00213131 0)
(133.986 -0.00542512 -3.0872e-17)
(135.266 0.00376175 5.72129e-18)
(133.596 -0.001515 0)
(133.961 -0.0105435 -3.42343e-18)
(135.167 -0.00337635 5.80951e-18)
(133.611 -0.000365428 -2.3896e-17)
(133.978 -0.00799623 -2.75192e-17)
(135.263 0.000719027 5.76682e-18)
(133.589 -0.00347516 0)
(133.957 -0.0127535 -3.42363e-18)
(135.168 -0.00644702 5.7673e-18)
(133.607 -0.00194625 -2.74024e-17)
(133.978 -0.00989509 -3.08755e-17)
(135.268 -0.00216334 5.76704e-18)
(133.589 -0.00468311 0)
(133.96 -0.014239 -3.42381e-18)
(135.176 -0.00885887 5.76748e-18)
(133.61 -0.00276556 -2.74039e-17)
(133.983 -0.0109215 -3.08771e-17)
(135.279 -0.0040638 5.76724e-18)
(133.594 -0.00507013 0)
(133.967 -0.014794 -3.42398e-18)
(135.188 -0.0101442 5.76765e-18)
(133.616 -0.00271203 -2.38999e-17)
(133.992 -0.0109796 -2.75235e-17)
(135.293 -0.0048459 5.76742e-18)
(133.602 -0.00463218 0)
(133.978 -0.0145008 -3.42415e-18)
(135.205 -0.0104419 5.76782e-18)
(133.627 -0.00196253 -2.74069e-17)
(134.005 -0.0103631 -3.08802e-17)
(135.312 -0.00471375 5.76758e-18)
(133.614 -0.00375005 0)
(133.993 -0.0138833 -3.42432e-18)
(135.225 -0.0100164 5.76797e-18)
(133.64 -0.00093484 -2.39025e-17)
(134.021 -0.00938349 -2.75262e-17)
(135.334 -0.00403009 5.76774e-18)
(133.629 -0.0026146 0)
(134.011 -0.0130193 -3.4245e-18)
(135.249 -0.00927162 5.76811e-18)
(133.658 0.000241378 -2.39038e-17)
(134.041 -0.0083477 -2.75276e-17)
(135.361 -0.00326413 5.76788e-18)
(133.648 -0.00154034 0)
(134.033 -0.0123838 -3.42467e-18)
(135.278 -0.00885247 0)
(133.679 0.0011962 0)
(134.066 -0.00762061 -3.43165e-18)
(135.392 -0.00300775 0)
(133.672 -0.000697279 3.42735e-18)
(134.061 -0.012078 0)
(135.312 -0.00889339 0)
(133.706 0.00199739 3.43052e-18)
(134.097 -0.00703215 0)
(135.43 -0.00314557 0)
(133.702 8.95372e-05 3.42754e-18)
(134.095 -0.0118701 0)
(135.353 -0.00922785 0)
(133.74 0.00274638 0)
(134.135 -0.006574 -3.43197e-18)
(135.475 -0.00348282 0)
(133.739 0.000782571 3.42771e-18)
(134.136 -0.0118657 0)
(135.402 -0.00978098 0)
(133.781 0.00341219 3.43087e-18)
(134.18 -0.00619536 0)
(135.528 -0.00406203 0)
(133.784 0.0014204 3.42788e-18)
(134.186 -0.0119763 0)
(135.46 -0.01056 0)
(133.831 0.00402166 3.43102e-18)
(134.235 -0.00593082 0)
(135.59 -0.00483509 0)
(133.838 0.00198706 3.42803e-18)
(134.246 -0.0122528 0)
(135.527 -0.0115688 0)
(133.89 0.00458138 3.43117e-18)
(134.3 -0.00570924 0)
(135.662 -0.00584861 0)
(133.902 0.00270288 3.42816e-18)
(134.316 -0.0123507 0)
(135.605 -0.0128097 0)
(133.96 0.005449 0)
(134.375 -0.00524973 -3.43246e-18)
(135.745 -0.00706282 0)
(133.977 0.00372618 3.42828e-18)
(134.397 -0.0123166 0)
(135.694 -0.0141386 0)
(134.041 0.00652182 3.4314e-18)
(134.462 -0.00469271 0)
(135.84 -0.00822172 0)
(134.064 0.00481196 3.42837e-18)
(134.49 -0.0123039 0)
(135.795 -0.0151935 0)
(134.135 0.00738851 3.43147e-18)
(134.563 -0.00449743 0)
(135.949 -0.00925045 0)
(134.165 0.00541621 3.42843e-18)
(134.599 -0.0128016 0)
(135.912 -0.0169762 0)
(134.244 0.00796639 3.43151e-18)
(134.679 -0.00464599 0)
(136.072 -0.0108981 0)
(134.281 0.00566008 3.42845e-18)
(134.724 -0.0139459 0)
(136.044 -0.0199036 0)
(134.37 0.00803429 0)
(134.813 -0.00550184 -3.43252e-18)
(136.213 -0.0136786 0)
(134.417 0.00537365 3.42841e-18)
(134.868 -0.0157841 0)
(136.196 -0.0235738 0)
(134.517 0.00764451 0)
(134.969 -0.00683161 -3.43241e-18)
(136.374 -0.017115 0)
(134.574 0.00465149 3.42831e-18)
(135.035 -0.0182884 0)
(136.368 -0.0281442 0)
(134.686 0.00660547 0)
(135.147 -0.00899039 -3.43222e-18)
(136.557 -0.0214842 0)
(134.756 0.00305594 3.42813e-18)
(135.227 -0.0219426 0)
(136.565 -0.0338642 0)
(134.881 0.00466217 0)
(135.352 -0.0122298 -3.43194e-18)
(136.765 -0.0270105 0)
(134.965 0.00032458 3.42785e-18)
(135.447 -0.0270898 0)
(136.788 -0.0411198 0)
(135.106 0.00138174 0)
(135.587 -0.0170202 -3.43157e-18)
(137.001 -0.0341342 0)
(135.205 -0.00388962 3.42747e-18)
(135.698 -0.0339417 0)
(137.04 -0.0504303 0)
(135.364 -0.00357449 0)
(135.855 -0.0239443 -3.43107e-18)
(137.267 -0.0436101 1.44108e-18)
(135.481 -0.0110643 3.42698e-18)
(135.986 -0.0449246 -3.42394e-18)
(137.326 -0.0629739 0)
(135.661 -0.013232 3.42972e-18)
(136.163 -0.0358157 0)
(137.569 -0.0564084 0)
(135.798 -0.022246 0)
(136.315 -0.0594464 0)
(137.648 -0.0787091 0)
(136 -0.025976 3.429e-18)
(136.513 -0.0513441 0)
(137.91 -0.0725973 0)
(136.16 -0.036517 0)
(136.689 -0.077424 0)
(138.012 -0.0988845 0)
(136.387 -0.0416868 3.4281e-18)
(136.911 -0.07119 0)
(138.293 -0.0941155 0)
(136.574 -0.0560894 0)
(137.115 -0.101435 0)
(138.42 -0.125645 0)
(136.827 -0.0633197 3.42698e-18)
(137.359 -0.0973094 0)
(138.723 -0.122112 0)
(137.042 -0.0821041 0)
(137.598 -0.132892 0)
(138.881 -0.159337 0)
(137.329 -0.0918275 3.42563e-18)
(137.869 -0.130517 0)
(139.207 -0.157885 0)
(137.573 -0.114321 0)
(138.141 -0.170822 0)
(139.398 -0.199991 0)
(137.895 -0.127132 0)
(138.447 -0.171046 -3.42466e-18)
(139.754 -0.19944 0)
(138.177 -0.153071 0)
(138.755 -0.215432 0)
(139.981 -0.245561 0)
(138.535 -0.170615 3.42207e-18)
(139.099 -0.220816 0)
(140.37 -0.249702 -5.75526e-18)
(138.861 -0.201242 2.73619e-17)
(139.45 -0.270558 0)
(140.64 -0.301803 0)
(139.262 -0.224939 0)
(139.84 -0.283131 0)
(141.067 -0.312667 0)
(139.638 -0.261762 3.41318e-18)
(140.238 -0.339302 2.3911e-17)
(141.387 -0.37207 -5.75023e-18)
(140.089 -0.291979 0)
(140.68 -0.358785 -3.41805e-18)
(141.859 -0.389857 0)
(140.521 -0.336122 0)
(141.134 -0.423855 0)
(142.237 -0.459331 0)
(141.03 -0.375144 0)
(141.638 -0.453024 -3.41509e-18)
(142.764 -0.486536 0)
(141.531 -0.428956 0)
(142.159 -0.529184 0)
(143.214 -0.568801 0)
(142.109 -0.479111 3.41018e-18)
(142.737 -0.570436 0)
(143.809 -0.6077 0)
(142.691 -0.544456 0)
(143.339 -0.659947 0)
(144.346 -0.703913 0)
(143.354 -0.609378 3.40582e-18)
(144.011 -0.717893 0)
(145.026 -0.758194 0)
(144.036 -0.690789 0)
(144.711 -0.82638 0)
(145.673 -0.874113 0)
(144.804 -0.773923 3.40077e-18)
(145.501 -0.905308 0)
(146.464 -0.948562 0)
(145.611 -0.874843 0)
(146.327 -1.03679 0)
(147.251 -1.09052 0)
(146.511 -0.986878 3.39491e-18)
(147.26 -1.14463 0)
(148.183 -1.18828 0)
(147.474 -1.11924 0)
(148.247 -1.31032 0)
(149.151 -1.35893 0)
(148.546 -1.26881 3.3879e-18)
(149.37 -1.45964 0)
(150.279 -1.48012 0)
(149.719 -1.44555 0)
(150.579 -1.67151 0)
(151.507 -1.67674 -1.42682e-18)
(151.022 -1.63992 0)
(151.958 -1.86371 -3.04476e-17)
(152.919 -1.80155 5.70507e-18)
(152.468 -1.86325 0)
(153.459 -2.12513 0)
(154.482 -2.00424 5.68779e-18)
(154.079 -2.14035 -2.69262e-17)
(155.192 -2.42697 -3.37323e-18)
(156.256 -2.20656 0)
(155.938 -2.4992 3.35855e-18)
(157.146 -2.86004 0)
(158.344 -2.68003 5.66731e-18)
(158.064 -2.89499 -2.6815e-17)
(159.471 -3.28632 -3.35991e-18)
(160.77 -3.03581 0)
(160.554 -3.35814 3.34198e-18)
(162.076 -3.84241 0)
(163.561 -3.65575 7.09844e-18)
(163.318 -3.92102 -2.33641e-17)
(165.046 -4.50518 -2.67101e-17)
(166.66 -4.24211 5.59866e-18)
(166.541 -4.77665 -3.32194e-18)
(168.685 -5.64748 0)
(170.561 -5.12113 -4.35887e-20)
(170.857 -6.12265 0)
(173.967 -7.29398 1.03315e-19)
(176.399 -6.30453 6.15042e-22)
(177.49 -7.22355 -1.03807e-19)
(181.743 -8.24288 -4.12905e-19)
(183.365 -8.99104 -5.47835e-18)
(186.857 -8.89934 2.79517e-17)
(189.994 -12.4215 3.19966e-17)
(187.347 -15.6538 -1.0989e-17)
(191.675 -17.3043 2.62102e-17)
(192.677 -22.4551 0)
(187.709 -25.0361 0)
(192.786 -28.2814 -4.74069e-18)
(192.404 -33.1362 8.95207e-18)
(186.146 -34.0809 5.86786e-18)
(190.291 -39.4586 -1.73434e-17)
(188.5 -43.3194 0)
(189.744 -45.6273 0)
(186.612 -49.4138 0)
(184.926 -47.9864 -7.28713e-19)
(182.403 -42.0669 3.99646e-18)
(178.244 -40.6115 -2.63063e-17)
(172.875 -33.4997 9.61097e-18)
(181.384 -33.0972 -2.50732e-17)
(182.011 -27.0339 -2.29132e-17)
(174.979 -23.4711 4.8704e-18)
(181.712 -19.9679 3.72599e-19)
(179.434 -14.5074 -4.18797e-19)
(173.81 -14.2932 7.62463e-20)
(174.78 -11.1547 4.65776e-20)
(170.747 -9.45386 0)
(169.195 -9.9866 4.80412e-21)
(167.338 -9.04159 0)
(164.437 -7.68036 -1.5481e-18)
(163.815 -7.98461 0)
(162.118 -7.16512 4.70106e-20)
(159.909 -5.96516 0)
(159.888 -6.24857 0)
(158.401 -5.44908 0)
(156.863 -4.53489 0)
(157.232 -4.63609 0)
(155.814 -4.12971 0)
(154.462 -3.48317 1.51461e-18)
(155.193 -3.49661 0)
(153.697 -3.20081 0)
(152.6 -2.73603 0)
(153.489 -2.75239 0)
(152.048 -2.55484 0)
(151.121 -2.20254 0)
(152.04 -2.23084 0)
(150.698 -2.08237 0)
(149.893 -1.804 0)
(150.812 -1.83619 0)
(149.565 -1.71881 0)
(148.856 -1.49203 0)
(149.777 -1.52425 0)
(148.604 -1.4279 0)
(147.971 -1.2402 0)
(148.9 -1.27374 0)
(147.782 -1.1917 0)
(147.212 -1.03444 0)
(148.154 -1.06939 0)
(147.075 -0.998031 9.54128e-20)
(146.554 -0.865032 -9.53694e-20)
(147.517 -0.90135 0)
(146.463 -0.838003 0)
(145.982 -0.724647 0)
(146.969 -0.762276 0)
(145.931 -0.705241 0)
(145.484 -0.608455 0)
(146.497 -0.646817 0)
(145.468 -0.594943 0)
(145.048 -0.511704 0)
(146.089 -0.551139 0)
(145.061 -0.502995 0)
(144.666 -0.430872 0)
(145.735 -0.472019 0)
(144.705 -0.426774 0)
(144.329 -0.364393 0)
(145.426 -0.406072 0)
(144.393 -0.363872 0)
(144.032 -0.308968 0)
(145.156 -0.350715 0)
(144.116 -0.311409 9.56104e-20)
(143.768 -0.262587 -9.56036e-20)
(144.918 -0.304383 0)
(143.87 -0.267325 0)
(143.533 -0.223684 0)
(144.707 -0.265474 0)
(143.652 -0.229682 -1.5308e-18)
(143.324 -0.190859 0)
(144.521 -0.232566 0)
(143.457 -0.197098 0)
(143.138 -0.162229 0)
(144.355 -0.204591 0)
(143.283 -0.169234 0)
(142.97 -0.13784 0)
(144.206 -0.180725 0)
(143.127 -0.145231 0)
(142.82 -0.116681 0)
(144.073 -0.160164 0)
(142.986 -0.124384 0)
(142.684 -0.0983063 0)
(143.952 -0.142346 0)
(142.859 -0.106373 0)
(142.562 -0.0824389 0)
(143.843 -0.126769 0)
(142.744 -0.0906749 0)
(142.451 -0.0686634 0)
(143.744 -0.112688 0)
(142.641 -0.0771214 0)
(142.35 -0.0568026 0)
(143.653 -0.0999611 0)
(142.545 -0.0652919 0)
(142.258 -0.0464396 0)
(143.568 -0.0887466 0)
(142.458 -0.0544549 0)
(142.173 -0.0368872 0)
(143.491 -0.0791334 0)
(142.377 -0.0447473 0)
(142.096 -0.0286654 0)
(143.42 -0.0709644 0)
(142.304 -0.0366819 0)
(142.025 -0.0220336 0)
(143.355 -0.0640261 0)
(142.238 -0.0299748 0)
(141.962 -0.0165418 0)
(143.296 -0.0580231 0)
(142.177 -0.0242861 0)
(141.904 -0.0118974 0)
(143.241 -0.0526981 0)
(142.123 -0.0193902 0)
(141.852 -0.00797815 0)
(143.192 -0.04779 0)
(142.073 -0.0151857 0)
(141.805 -0.00474889 -4.78507e-20)
(143.147 -0.0431718 -4.97739e-18)
(142.029 -0.0117096 2.45663e-17)
(141.762 -0.00259225 -4.78512e-20)
(143.106 -0.0389446 -4.97748e-18)
(141.988 -0.0095343 2.45666e-17)
(141.723 -0.00107209 -4.78517e-20)
(143.066 -0.0349873 -4.97757e-18)
(141.949 -0.00739948 2.45669e-17)
(141.686 0.00075379 -4.78521e-20)
(143.028 -0.0305403 -4.97763e-18)
(141.913 -0.0045522 2.45671e-17)
(141.652 0.0036888 -4.78524e-20)
(142.993 -0.0251025 -4.97768e-18)
(141.88 -0.000412014 2.45673e-17)
(141.621 0.00814782 -4.78526e-20)
(142.961 -0.0183712 -4.9376e-18)
(141.851 0.0054976 2.45674e-17)
(141.595 0.0145086 -4.78526e-20)
(142.935 -0.0106584 -3.88752e-20)
(141.829 0.0132017 -4.78691e-20)
(141.576 0.0220075 9.57004e-20)
(142.921 -0.0028544 0)
(141.815 0.0211571 0)
(141.567 0.0281636 0)
(142.924 0.00909699 3.87403e-19)
(141.814 0.0286672 -9.56378e-20)
(141.573 0.031759 4.78402e-20)
(142.953 0.0293586 -6.14726e-18)
(141.829 0.0338422 2.44545e-17)
(141.593 0.0354751 2.43896e-17)
(143.023 0.0627059 -3.62272e-18)
(141.864 0.0442436 -7.57116e-19)
(141.647 0.0540373 -2.22898e-17)
(143.211 0.116309 4.66478e-18)
(141.968 0.0828286 3.33959e-18)
(141.837 0.115035 0)
(143.661 0.183895 0)
(142.271 0.177509 7.0613e-18)
(142.152 0.253829 -6.56883e-18)
(144.579 0.252682 -3.92289e-18)
(142.883 0.307186 -1.09241e-17)
(142.994 0.295151 1.07582e-17)
(144.475 0.1474 -1.3625e-17)
(144.776 0.249652 3.08373e-17)
(148.126 0.255451 0)
(150.023 0.0673541 6.65524e-18)
(151.328 -0.00145983 -5.87097e-18)
(151.273 0.0304227 -3.6166e-19)
(149.912 0.0901923 -1.39786e-18)
(147.834 0.227174 0)
(147.642 0.176521 -6.22065e-18)
(147.546 0.119897 1.26306e-18)
(147.51 0.0639752 -3.2189e-19)
(149.791 0.0380342 -6.5669e-19)
(149.806 0.0630827 6.46294e-19)
(149.844 0.0842619 5.85002e-18)
(151.25 0.0400121 2.49418e-19)
(151.238 0.0344834 -1.22714e-18)
(151.235 0.0223684 6.6262e-19)
(152.228 0.0107652 -4.14857e-20)
(152.228 0.0164352 6.97222e-19)
(152.231 0.0160707 -4.17654e-20)
(152.24 0.00461756 0)
(152.269 -0.0195567 -3.68956e-18)
(152.964 -0.0150164 1.39031e-18)
(153.474 -0.00414307 1.55015e-18)
(153.848 0.00619949 9.48967e-20)
(153.836 0.00887793 3.46965e-19)
(153.46 0.00224416 -1.75933e-18)
(152.946 -0.00105995 1.42846e-18)
(152.938 0.00743666 0)
(152.935 0.00940099 -6.53849e-19)
(152.934 0.00689839 1.65489e-19)
(153.443 0.00787422 -1.23407e-19)
(153.447 0.00934292 0)
(153.452 0.00749186 0)
(153.828 0.0118073 -8.15827e-20)
(153.821 0.012846 0)
(153.814 0.0114507 -4.0821e-20)
(154.088 0.0165757 -5.05427e-21)
(154.096 0.0179623 0)
(154.105 0.0176512 0)
(154.113 0.0163036 8.5636e-20)
(154.124 0.0155777 -4.66716e-20)
(154.329 0.022981 0)
(154.484 0.0283768 0)
(154.604 0.0320333 0)
(154.597 0.0323445 0)
(154.477 0.0283375 2.08411e-20)
(154.32 0.022962 -1.05679e-19)
(154.312 0.0235527 1.99447e-20)
(154.303 0.0235332 0)
(154.295 0.0223173 4.99671e-21)
(154.452 0.0279641 0)
(154.461 0.028809 0)
(154.469 0.0287787 -2.46029e-20)
(154.591 0.0329979 2.42413e-21)
(154.583 0.0333505 0)
(154.575 0.0330387 0)
(154.672 0.0372397 0)
(154.68 0.0369201 0)
(154.686 0.0360861 -7.15445e-21)
(154.692 0.035042 0)
(154.697 0.03423 0)
(154.771 0.0351845 0)
(154.83 0.0350662 0)
(154.878 0.0340166 -4.09461e-20)
(154.876 0.0362146 -1.5201e-19)
(154.827 0.0368905 1.55265e-19)
(154.767 0.0365251 3.96044e-20)
(154.762 0.0380161 -2.81224e-20)
(154.757 0.0393981 0)
(154.75 0.0403815 0)
(154.813 0.0423502 0)
(154.819 0.0407301 0)
(154.824 0.038808 -7.36094e-20)
(154.873 0.0384957 7.21473e-20)
(154.87 0.0408904 -7.13133e-20)
(154.865 0.0430705 0)
(154.908 0.0424836 -3.52297e-20)
(154.911 0.0398617 1.39581e-19)
(154.914 0.0371123 -2.47032e-19)
(154.916 0.0345505 -3.71302e-20)
(154.917 0.032189 6.379e-19)
(154.95 0.0295958 -5.44187e-19)
(154.976 0.0260902 -9.07315e-19)
(154.996 0.0218126 9.03083e-19)
(154.996 0.0239692 1.26094e-23)
(154.975 0.0283997 5.63606e-19)
(154.949 0.0319363 -2.17162e-19)
(154.947 0.0346581 4.12931e-19)
(154.946 0.0376116 0)
(154.943 0.0405226 1.37335e-19)
(154.973 0.0370995 -3.99704e-19)
(154.974 0.0340883 2.64236e-19)
(154.975 0.0311014 -5.3528e-19)
(154.997 0.0264408 -1.04754e-18)
(154.996 0.029261 1.03085e-18)
(154.996 0.0321409 2.59429e-19)
(155.014 0.0257637 -5.18117e-19)
(155.014 0.0232726 -1.0328e-18)
(155.013 0.0208472 1.69801e-23)
(155.012 0.0187802 -8.38549e-19)
(155.012 0.0170265 3.0001e-19)
(155.022 0.0119851 -1.11928e-18)
(155.028 0.00704526 1.34754e-18)
(155.029 0.00777783 0)
(155.023 0.0132369 4.41798e-19)
(155.024 0.014764 1.1058e-18)
(155.025 0.0165939 0)
(155.026 0.0184693 0)
(155.033 0.0109509 7.14827e-20)
(155.032 0.00982091 0)
(155.03 0.0086983 0)
(155.034 0.0121028 5.37987e-19)
(155.027 0.0203435 3.3799e-20)
(155.014 0.0282266 0)
(154.995 0.0349507 0)
(154.97 0.039977 6.71642e-20)
(154.94 0.0432153 -6.92609e-20)
(154.904 0.0447837 -3.55526e-20)
(154.86 0.0448145 0)
(154.807 0.0434158 0)
(154.743 0.0406893 0)
(154.664 0.0367539 0)
(154.566 0.0317685 0)
(154.443 0.0259613 0)
(154.285 0.0196699 0)
(154.08 0.0133791 0)
(153.808 0.00774395 -2.06915e-20)
(153.439 0.00356712 2.08481e-20)
(152.933 0.00165588 0)
(152.228 0.00276282 4.20465e-20)
(151.235 0.00891861 1.67918e-19)
(149.789 0.014226 -8.31786e-20)
(147.5 0.0249917 -8.14609e-20)
(147.496 0.00322278 0)
(147.493 -0.00925331 0)
(147.494 -0.0181865 0)
(149.788 -0.0276281 0)
(149.789 -0.018562 0)
(149.79 -0.00481663 -8.3724e-20)
(151.237 -0.00444343 0)
(151.236 -0.0165737 0)
(151.234 -0.0277138 -4.23702e-20)
(151.233 -0.0375165 4.23689e-20)
(149.787 -0.0355306 0)
(147.501 -0.0276582 0)
(147.511 -0.0379372 0)
(147.523 -0.0482653 0)
(147.536 -0.0585 0)
(149.804 -0.0634541 0)
(149.796 -0.0537527 0)
(149.79 -0.0443166 0)
(151.234 -0.0475561 0)
(151.237 -0.059009 0)
(151.243 -0.0715884 0)
(152.225 -0.0743151 0)
(152.222 -0.0604453 0)
(152.221 -0.0487711 0)
(152.223 -0.0383405 0)
(152.226 -0.0279347 0)
(152.228 -0.0173584 0)
(152.229 -0.00689768 2.11725e-20)
(152.931 -0.0060674 -1.05576e-20)
(152.927 -0.0153563 0)
(152.923 -0.0257324 0)
(153.421 -0.0212151 0)
(153.428 -0.0113831 0)
(153.434 -0.0030284 -1.05011e-20)
(153.8 0.00199977 0)
(153.792 -0.00554032 0)
(153.783 -0.0147553 0)
(153.774 -0.0256421 4.17824e-20)
(153.415 -0.032443 0)
(152.919 -0.0369594 0)
(152.915 -0.0488824 0)
(152.912 -0.0616609 0)
(152.911 -0.0761974 0)
(153.396 -0.0748934 0)
(153.402 -0.0592724 0)
(153.408 -0.0451092 0)
(153.764 -0.0383161 7.27883e-25)
(153.754 -0.0529347 6.96392e-25)
(153.745 -0.0696335 -4.1787e-20)
(153.737 -0.0885573 0)
(153.392 -0.0926743 0)
(152.912 -0.0931305 0)
(152.231 -0.0897807 0)
(151.25 -0.084783 0)
(149.813 -0.0731331 0)
(147.55 -0.0687246 0)
(147.567 -0.0789025 0)
(147.586 -0.0895835 0)
(147.609 -0.101172 0)
(149.855 -0.107442 9.88418e-25)
(149.838 -0.0948923 -4.1966e-20)
(149.824 -0.0835347 0)
(151.26 -0.098552 0)
(151.272 -0.11367 0)
(151.289 -0.130427 0)
(151.309 -0.14911 0)
(149.877 -0.121443 4.19637e-20)
(147.635 -0.113967 0)
(147.665 -0.128317 0)
(147.7 -0.144574 0)
(147.741 -0.163112 0)
(149.971 -0.17516 0)
(149.934 -0.154968 0)
(149.903 -0.137181 0)
(151.335 -0.170052 0)
(151.365 -0.193644 0)
(151.401 -0.220307 0)
(152.364 -0.249536 0)
(152.331 -0.21828 0)
(152.303 -0.190506 0)
(152.281 -0.16577 0)
(152.262 -0.14368 0)
(152.249 -0.123917 0)
(152.238 -0.106185 0)
(152.916 -0.112384 0)
(152.922 -0.13348 0)
(152.931 -0.156597 0)
(153.394 -0.162774 0)
(153.391 -0.1365 0)
(153.39 -0.113102 0)
(153.73 -0.110053 0)
(153.724 -0.134677 0)
(153.721 -0.16274 0)
(153.72 -0.194322 0)
(153.4 -0.191999 0)
(152.944 -0.182438 0)
(152.961 -0.211382 0)
(152.983 -0.243852 0)
(153.01 -0.280299 0)
(153.441 -0.302021 0)
(153.423 -0.261017 0)
(153.41 -0.224495 0)
(153.722 -0.229898 0)
(153.726 -0.269998 0)
(153.735 -0.314848 0)
(153.747 -0.36498 0)
(153.464 -0.347972 0)
(153.042 -0.321245 0)
(152.404 -0.284762 0)
(151.443 -0.25051 0)
(150.013 -0.198151 4.19524e-20)
(147.787 -0.184366 0)
(147.839 -0.208747 0)
(147.899 -0.236488 0)
(147.967 -0.268005 0)
(150.187 -0.288403 0)
(150.12 -0.254212 4.19294e-20)
(150.063 -0.224344 -8.38815e-20)
(151.492 -0.284768 0)
(151.549 -0.323768 0)
(151.615 -0.368269 0)
(151.691 -0.419224 0)
(150.263 -0.327743 0)
(148.046 -0.30405 0)
(148.136 -0.345548 0)
(148.24 -0.393552 0)
(148.36 -0.449394 0)
(150.569 -0.488154 0)
(150.452 -0.426257 0)
(150.351 -0.373299 0)
(151.777 -0.477946 0)
(151.876 -0.545844 0)
(151.99 -0.624795 0)
(152.917 -0.714255 0)
(152.811 -0.624331 0)
(152.719 -0.546798 0)
(152.637 -0.479562 0)
(152.566 -0.42099 0)
(152.504 -0.369697 0)
(152.45 -0.324559 0)
(153.081 -0.367327 0)
(153.127 -0.419374 0)
(153.181 -0.478279 0)
(153.567 -0.523444 0)
(153.526 -0.457744 0)
(153.492 -0.399567 0)
(153.763 -0.421209 0)
(153.785 -0.484629 0)
(153.812 -0.556192 0)
(153.844 -0.637004 0)
(153.615 -0.59779 0)
(153.243 -0.54522 0)
(153.313 -0.621617 0)
(153.394 -0.709325 0)
(153.486 -0.810489 0)
(153.809 -0.889334 0)
(153.736 -0.778589 0)
(153.671 -0.682163 0)
(153.883 -0.728219 0)
(153.929 -0.832159 0)
(153.982 -0.951418 0)
(154.043 -1.08884 0)
(153.893 -1.01716 0)
(153.59 -0.927678 0)
(153.037 -0.818886 0)
(152.12 -0.716927 0)
(150.704 -0.560776 0)
(148.5 -0.514649 0)
(148.661 -0.591163 0)
(148.848 -0.681292 0)
(149.065 -0.787688 0)
(151.248 -0.866329 0)
(151.04 -0.747085 0)
(150.86 -0.646213 0)
(152.269 -0.824699 0)
(152.439 -0.951125 0)
(152.635 -1.09959 0)
(152.859 -1.27412 0)
(151.489 -1.00745 0)
(149.317 -0.913319 0)
(149.611 -1.06167 0)
(149.953 -1.23783 0)
(150.353 -1.44804 0)
(152.462 -1.60933 0)
(152.09 -1.37318 0)
(151.767 -1.17465 0)
(153.116 -1.47953 0)
(153.411 -1.72165 0)
(153.749 -2.0074 0)
(154.492 -2.26276 0)
(154.197 -1.94566 0)
(153.937 -1.67619 0)
(153.708 -1.44667 0)
(153.506 -1.2509 0)
(153.329 -1.08378 0)
(153.174 -0.940981 0)
(153.709 -1.06384 0)
(153.843 -1.22238 0)
(153.995 -1.40713 0)
(154.222 -1.53794 0)
(154.098 -1.33766 0)
(153.989 -1.1654 0)
(154.113 -1.249 0)
(154.195 -1.43538 0)
(154.289 -1.65115 0)
(154.395 -1.90085 0)
(154.361 -1.77157 0)
(154.168 -1.6228 0)
(154.362 -1.87511 0)
(154.581 -2.17078 0)
(154.827 -2.51765 0)
(154.888 -2.73027 0)
(154.693 -2.36297 0)
(154.518 -2.04464 0)
(154.516 -2.18656 0)
(154.65 -2.5123 0)
(154.793 -2.88283 0)
(154.615 -2.99001 0)
(154.527 -2.61154 0)
(154.438 -2.28131 0)
(154.356 -1.99375 0)
(154.28 -1.74021 0)
(154.213 -1.51463 0)
(154.158 -1.31608 0)
(154.113 -1.14437 0)
(154.075 -0.997669 0)
(154.043 -0.870579 0)
(154.016 -0.759533 0)
(153.993 -0.662025 0)
(153.975 -0.576022 0)
(153.961 -0.499898 0)
(153.952 -0.432354 0)
(153.946 -0.372331 0)
(153.943 -0.318862 0)
(153.944 -0.271236 0)
(153.947 -0.228753 0)
(153.952 -0.191017 0)
(153.96 -0.157761 0)
(153.969 -0.128535 0)
(153.979 -0.102805 0)
(153.99 -0.0802737 0)
(154.003 -0.0607172 -4.13457e-20)
(154.015 -0.0438277 8.59791e-25)
(154.027 -0.029356 8.74443e-25)
(154.039 -0.0170716 4.13605e-20)
(154.051 -0.00677354 0)
(154.061 0.00169188 0)
(154.071 0.00840416 0)
(154.276 0.0154794 0)
(154.265 0.00965477 0)
(154.253 0.00207341 0)
(154.409 0.0111631 0)
(154.422 0.0177443 0)
(154.433 0.0226114 0)
(154.556 0.0293166 0)
(154.545 0.0254656 0)
(154.533 0.0199688 0)
(154.519 0.0125431 0)
(154.396 0.00263805 -4.02188e-20)
(154.24 -0.00742467 0)
(154.227 -0.0190454 0)
(154.212 -0.0330294 0)
(154.198 -0.0496553 0)
(154.35 -0.0373881 0)
(154.366 -0.0213295 0)
(154.381 -0.00809401 4.01825e-20)
(154.504 0.00286632 0)
(154.488 -0.00941463 0)
(154.471 -0.0246714 0)
(154.57 -0.0121444 0)
(154.588 0.00213838 0)
(154.604 0.0133171 0)
(154.619 0.021824 0)
(154.632 0.0280717 0)
(154.644 0.0324331 0)
(154.655 0.0352329 0)
(154.734 0.040097 0)
(154.724 0.0383501 0)
(154.713 0.0351415 0)
(154.78 0.0409031 0)
(154.791 0.0429817 0)
(154.799 0.043712 0)
(154.853 0.0459181 2.27842e-21)
(154.846 0.0461255 0)
(154.836 0.0451072 0)
(154.825 0.0424467 0)
(154.768 0.0370843 0)
(154.7 0.0301103 0)
(154.686 0.0228383 0)
(154.67 0.0128538 0)
(154.652 -0.000343756 0)
(154.721 0.0102481 0)
(154.739 0.0223096 0)
(154.754 0.0310631 0)
(154.812 0.0376386 0)
(154.797 0.030094 0)
(154.78 0.0191571 0)
(154.761 0.0041227 0)
(154.702 -0.00573386 0)
(154.633 -0.0172821 0)
(154.551 -0.0299879 0)
(154.453 -0.0433004 0)
(154.333 -0.0566137 0)
(154.183 -0.0692228 0)
(154.168 -0.0920559 0)
(154.154 -0.118447 0)
(154.14 -0.148736 0)
(154.282 -0.13682 0)
(154.298 -0.105988 0)
(154.316 -0.0793667 0)
(154.434 -0.0657086 0)
(154.415 -0.092271 0)
(154.396 -0.123346 0)
(154.377 -0.159307 0)
(154.266 -0.172234 0)
(154.128 -0.183337 0)
(154.117 -0.222535 0)
(154.107 -0.266696 0)
(154.1 -0.316402 0)
(154.224 -0.30962 0)
(154.236 -0.258175 0)
(154.25 -0.212547 0)
(154.359 -0.200482 0)
(154.341 -0.247291 0)
(154.324 -0.300203 0)
(154.409 -0.289924 0)
(154.429 -0.235564 0)
(154.449 -0.187647 0)
(154.469 -0.145706 0)
(154.49 -0.109329 0)
(154.511 -0.0781726 0)
(154.531 -0.0518564 0)
(154.613 -0.0384974 0)
(154.591 -0.0644788 0)
(154.569 -0.0956617 0)
(154.637 -0.0831457 0)
(154.659 -0.0518991 0)
(154.681 -0.0262581 0)
(154.74 -0.0157226 0)
(154.718 -0.0410536 0)
(154.695 -0.0724178 0)
(154.671 -0.110261 0)
(154.614 -0.120438 0)
(154.547 -0.132451 0)
(154.525 -0.175216 0)
(154.503 -0.224332 0)
(154.481 -0.280264 0)
(154.543 -0.271992 0)
(154.567 -0.214527 0)
(154.59 -0.16413 0)
(154.646 -0.154862 0)
(154.622 -0.206364 0)
(154.598 -0.26489 0)
(154.646 -0.25789 0)
(154.671 -0.199266 0)
(154.695 -0.147219 0)
(154.72 -0.102019 0)
(154.744 -0.0637685 0)
(154.768 -0.032354 0)
(154.79 -0.00736231 0)
(154.811 0.0118104 0)
(154.83 0.0259234 0)
(154.847 0.0357886 0)
(154.861 0.0422009 0)
(154.874 0.0458913 0)
(154.884 0.0475052 0)
(154.892 0.047585 0)
(154.898 0.0465665 -2.22544e-21)
(154.936 0.0455029 -3.46798e-20)
(154.931 0.0471524 3.88767e-20)
(154.923 0.0478314 0)
(154.957 0.0457961 -1.03982e-21)
(154.963 0.0445923 -4.18463e-21)
(154.967 0.0425457 0)
(154.993 0.0375301 3.26787e-20)
(154.99 0.039693 0)
(154.984 0.041145 1.00955e-21)
(154.977 0.0414806 -1.25153e-21)
(154.949 0.0457195 2.57971e-22)
(154.914 0.0470948 0)
(154.903 0.0443754 0)
(154.889 0.0389854 0)
(154.873 0.0301349 0)
(154.909 0.0314667 -3.21567e-20)
(154.925 0.0393141 -3.24502e-20)
(154.938 0.043793 3.27435e-20)
(154.967 0.0401606 0)
(154.955 0.0365169 0)
(154.939 0.0297563 0)
(154.963 0.0252392 0)
(154.978 0.0307202 0)
(154.99 0.0335471 0)
(154.999 0.0344176 2.9862e-21)
(155.006 0.033914 -6.4282e-20)
(155.01 0.0324991 1.98416e-19)
(155.013 0.0305208 -1.62786e-19)
(155.026 0.0221012 -2.70163e-19)
(155.024 0.0236459 2.64575e-19)
(155.021 0.024785 -8.33485e-21)
(155.029 0.0148664 8.83106e-21)
(155.033 0.0141473 2.84914e-19)
(155.034 0.0131831 -8.57876e-19)
(155.024 0.0151907 -2.18489e-21)
(155.015 0.025262 2.06275e-21)
(155.006 0.0247246 0)
(154.994 0.0227319 0)
(154.979 0.0187462 0)
(154.989 0.0113468 0)
(155.004 0.0137328 0)
(155.015 0.014903 0)
(154.971 0.00734781 0)
(154.961 0.0121397 0)
(154.944 0.0163093 0)
(154.921 0.0189947 0)
(154.891 0.0193478 3.18212e-20)
(154.854 0.0169557 0)
(154.833 -0.00144501 0)
(154.811 -0.0258981 0)
(154.787 -0.0570439 0)
(154.823 -0.05162 0)
(154.847 -0.0214116 0)
(154.87 0.00201505 0)
(154.9 0.00329182 0)
(154.877 -0.018254 0)
(154.854 -0.0464042 0)
(154.832 -0.0815566 0)
(154.799 -0.0889434 0)
(154.762 -0.0952418 0)
(154.738 -0.140401 0)
(154.714 -0.19215 0)
(154.69 -0.249338 0)
(154.728 -0.234871 0)
(154.753 -0.182485 0)
(154.776 -0.133072 0)
(154.81 -0.122468 0)
(154.784 -0.166187 0)
(154.748 -0.208335 0)
(154.75 -0.16712 3.61535e-20)
(154.799 -0.138626 -3.44386e-20)
(154.834 -0.105253 0)
(154.859 -0.0707507 0)
(154.88 -0.039775 2.89283e-20)
(154.902 -0.0153645 -3.5327e-24)
(154.924 0.00306753 -2.98407e-20)
(154.941 0.00219988 0)
(154.919 -0.0118878 0)
(154.899 -0.0309531 0)
(154.911 -0.019763 0)
(154.93 -0.00749949 0)
(154.951 0.00126622 0)
(154.887 -0.0343565 0)
(154.877 -0.0548156 0)
(154.846 -0.079646 0)
(154.802 -0.101049 0)
(154.743 -0.117683 0)
(154.736 -0.0684538 0)
(154.799 -0.0599558 0)
(154.85 -0.0486247 0)
(154.665 -0.0758723 0)
(154.673 -0.131432 0)
(154.685 -0.190405 -3.72265e-20)
(154.697 -0.245586 0)
(154.692 -0.286576 0)
(154.665 -0.310062 0)
(154.622 -0.322902 0)
(154.573 -0.330489 0)
(154.52 -0.336853 0)
(154.46 -0.343554 0)
(154.39 -0.35138 0)
(154.309 -0.359878 0)
(154.212 -0.367554 0)
(154.095 -0.37238 0)
(154.092 -0.435297 0)
(154.092 -0.50604 0)
(154.094 -0.585784 0)
(154.188 -0.588984 0)
(154.195 -0.506088 0)
(154.203 -0.432704 0)
(154.294 -0.427093 0)
(154.28 -0.502956 0)
(154.267 -0.588813 0)
(154.254 -0.686265 0)
(154.183 -0.68307 0)
(154.099 -0.676058 0)
(154.108 -0.778996 0)
(154.119 -0.896768 0)
(154.134 -1.03198 0)
(154.177 -1.05458 0)
(154.178 -0.91362 0)
(154.18 -0.790488 0)
(154.241 -0.797078 0)
(154.23 -0.922852 0)
(154.22 -1.06369 0)
(154.264 -1.0581 0)
(154.281 -0.92256 0)
(154.297 -0.798843 0)
(154.316 -0.687125 0)
(154.334 -0.587423 0)
(154.353 -0.49898 0)
(154.371 -0.420702 0)
(154.438 -0.414854 0)
(154.416 -0.494981 0)
(154.394 -0.584733 0)
(154.449 -0.578709 0)
(154.473 -0.489956 -3.43933e-20)
(154.496 -0.409423 3.46452e-20)
(154.549 -0.403056 0)
(154.525 -0.481551 0)
(154.498 -0.564633 0)
(154.463 -0.651686 0)
(154.425 -0.673841 0)
(154.372 -0.684385 0)
(154.352 -0.792706 0)
(154.329 -0.909807 0)
(154.296 -1.03812 0)
(154.295 -0.996924 -3.93492e-20)
(154.355 -0.882569 3.82139e-20)
(154.397 -0.775126 0)
(154.412 -0.740038 0)
(154.342 -0.830997 0)
(154.253 -0.928699 0)
(154.149 -1.03776 0)
(154.217 -1.12102 0)
(154.249 -1.17799 0)
(154.242 -1.20818 0)
(154.212 -1.21904 0)
(154.179 -1.21404 0)
(154.15 -1.18769 0)
(154.171 -1.36554 0)
(154.204 -1.56436 0)
(154.245 -1.78997 0)
(154.205 -1.81476 0)
(154.197 -1.58641 0)
(154.186 -1.38933 0)
(154.203 -1.39206 0)
(154.186 -1.58863 0)
(154.158 -1.80926 0)
(154.116 -2.0541 0)
(154.206 -2.07189 0)
(154.288 -2.04866 0)
(154.328 -2.34306 0)
(154.359 -2.673 0)
(154.378 -3.04151 0)
(154.129 -3.02938 0)
(154.171 -2.67528 0)
(154.196 -2.35735 0)
(154.057 -2.32527 0)
(153.98 -2.62716 0)
(153.883 -2.96454 0)
(153.638 -2.85711 0)
(153.782 -2.53754 0)
(153.905 -2.25271 0)
(154.009 -1.99782 0)
(154.094 -1.76835 0)
(154.16 -1.56122 0)
(154.208 -1.37512 0)
(154.184 -1.33163 0)
(154.1 -1.50255 0)
(153.998 -1.69338 0)
(153.875 -1.58961 0)
(154.006 -1.41413 0)
(154.12 -1.25882 0)
(154.03 -1.16206 0)
(153.895 -1.30418 0)
(153.744 -1.46572 0)
(153.574 -1.64798 0)
(153.727 -1.78732 0)
(153.877 -1.90646 0)
(153.736 -2.14493 0)
(153.576 -2.41258 0)
(153.392 -2.71323 0)
(153.149 -2.53864 -4.19636e-20)
(153.366 -2.25901 0)
(153.558 -2.00955 0)
(153.381 -1.85252 0)
(153.163 -2.08142 0)
(152.915 -2.33713 0)
(152.694 -2.11096 0)
(152.97 -1.88194 0)
(153.213 -1.6762 0)
(153.428 -1.49176 0)
(153.617 -1.32685 0)
(153.785 -1.18013 0)
(153.934 -1.05067 0)
(154.067 -0.937622 0)
(154.187 -0.839739 0)
(154.294 -0.75487 0)
(154.389 -0.679488 0)
(154.467 -0.608612 0)
(154.526 -0.537488 0)
(154.568 -0.464753 0)
(154.597 -0.392337 0)
(154.632 -0.372276 0)
(154.586 -0.431902 0)
(154.52 -0.487666 0)
(154.491 -0.417968 0)
(154.574 -0.377246 0)
(154.642 -0.334377 0)
(154.629 -0.277655 0)
(154.548 -0.30745 0)
(154.458 -0.338811 0)
(154.359 -0.374469 0)
(154.396 -0.461004 0)
(154.438 -0.541927 0)
(154.342 -0.599326 0)
(154.235 -0.664376 0)
(154.118 -0.73999 0)
(154.056 -0.633111 0)
(154.18 -0.566881 0)
(154.293 -0.50992 0)
(154.252 -0.415839 0)
(154.135 -0.463676 0)
(154.004 -0.518591 0)
(153.962 -0.397774 -7.93194e-20)
(154.099 -0.355632 8.30756e-24)
(154.221 -0.318558 7.25006e-24)
(154.331 -0.285993 6.35496e-24)
(154.432 -0.257577 5.58198e-24)
(154.524 -0.232959 4.88154e-24)
(154.609 -0.211264 7.56571e-20)
(154.594 -0.145094 0)
(154.509 -0.160498 0)
(154.415 -0.17829 0)
(154.406 -0.103695 0)
(154.5 -0.0930754 0)
(154.586 -0.0838299 0)
(154.301 -0.115627 0)
(154.313 -0.19856 0)
(154.199 -0.221404 0)
(154.072 -0.247144 0)
(153.931 -0.27629 0)
(153.912 -0.160785 0)
(154.056 -0.143872 0)
(154.186 -0.128936 0)
(153.75 -0.180018 0)
(153.772 -0.309396 0)
(153.808 -0.445641 -1.10121e-23)
(153.858 -0.581251 0)
(153.919 -0.709382 0)
(153.988 -0.827842 0)
(153.844 -0.928951 0)
(153.682 -1.044 0)
(153.499 -1.17369 0)
(153.392 -1.00547 0)
(153.589 -0.894875 0)
(153.764 -0.796421 0)
(153.693 -0.652349 0)
(153.507 -0.732568 0)
(153.297 -0.822589 0)
(153.059 -0.923142 0)
(153.168 -1.12907 0)
(153.292 -1.3189 0)
(153.057 -1.48085 0)
(152.792 -1.66112 0)
(152.491 -1.86147 0)
(152.308 -1.58963 0)
(152.63 -1.41987 0)
(152.915 -1.26677 0)
(152.791 -1.03507 0)
(152.489 -1.15936 0)
(152.15 -1.29713 0)
(152.022 -0.991019 4.11312e-20)
(152.376 -0.886394 -4.10024e-20)
(152.69 -0.791804 2.17728e-23)
(152.97 -0.706502 1.91208e-23)
(153.219 -0.6298 1.67338e-23)
(153.44 -0.561106 1.45937e-23)
(153.635 -0.499892 8.02964e-20)
(153.593 -0.346949 0)
(153.391 -0.389341 0)
(153.163 -0.436905 0)
(153.13 -0.254142 0)
(153.361 -0.226505 0)
(153.567 -0.201853 0)
(152.869 -0.284973 0)
(152.907 -0.489993 0)
(152.619 -0.549002 0)
(152.295 -0.614438 0)
(151.931 -0.686825 0)
(151.877 -0.399136 0)
(152.246 -0.357205 0)
(152.575 -0.319252 0)
(151.463 -0.445311 0)
(151.524 -0.766667 0)
(151.625 -1.10655 3.15049e-23)
(151.768 -1.44944 0)
(151.946 -1.77759 0)
(152.152 -2.08378 0)
(152.382 -2.36569 0)
(152.632 -2.62227 0)
(152.901 -2.85157 4.20886e-20)
(153.182 -3.05083 0)
(153.471 -3.21641 0)
(153.765 -3.34319 0)
(154.069 -3.42541 0)
(154.383 -3.45493 0)
(154.694 -3.42092 0)
(154.948 -3.31049 0)
(155.105 -3.15251 0)
(155.101 -2.92499 0)
(154.826 -2.6368 0)
(154.135 -2.3456 0)
(152.893 -1.89112 4.18161e-20)
(150.82 -1.70012 0)
(151.366 -2.0041 0)
(152.007 -2.37239 0)
(152.762 -2.82012 0)
(154.633 -3.12438 4.17951e-20)
(153.966 -2.6341 4.69398e-23)
(153.39 -2.22847 -8.36087e-20)
(154.577 -2.74664 0)
(155.082 -3.22424 0)
(155.657 -3.79613 0)
(156.3 -4.48802 0)
(155.404 -3.72322 0)
(153.653 -3.36605 0)
(154.698 -4.04005 0)
(155.891 -4.89451 0)
(157.223 -6.00744 -4.06427e-20)
(158.271 -6.61585 4.16692e-20)
(157.22 -5.42334 -4.16103e-20)
(156.274 -4.47078 0)
(156.995 -5.33763 0)
(157.741 -6.37302 0)
(158.657 -7.56042 0)
(158.584 -7.99256 0)
(157.738 -6.87503 0)
(157.138 -5.8501 0)
(156.602 -4.96654 0)
(156.094 -4.22563 0)
(155.625 -3.6025 0)
(155.202 -3.07858 0)
(155.405 -3.40065 0)
(155.744 -3.95267 0)
(156.107 -4.60002 0)
(155.843 -4.865 0)
(155.585 -4.2012 0)
(155.337 -3.63722 0)
(155.107 -3.80688 0)
(155.255 -4.37876 0)
(155.396 -5.02288 0)
(155.551 -5.73074 0)
(156.1 -5.62728 0)
(156.484 -5.36082 0)
(156.888 -6.24486 0)
(157.391 -7.2211 0)
(158.088 -8.27576 0)
(157.138 -8.50014 0)
(156.777 -7.36961 0)
(156.39 -6.46059 0)
(155.732 -6.52711 0)
(155.874 -7.47842 0)
(155.907 -8.67713 0)
(155.839 -10.0757 0)
(157.288 -10.0287 0)
(158.745 -9.68209 0)
(159.74 -9.23302 0)
(160.072 -8.80815 0)
(159.691 -7.96329 0)
(158.826 -7.42235 4.0716e-20)
(161.266 -9.01999 0)
(164.944 -10.6823 0)
(168.332 -13.5688 -5.03034e-21)
(166.118 -15.1305 -8.30862e-20)
(164.575 -11.3977 4.15318e-20)
(161.999 -9.34046 0)
(161.854 -10.3024 0)
(163.168 -12.8649 0)
(163.64 -16.3534 0)
(163.568 -20.2133 0)
(166.551 -19.9386 8.30318e-20)
(169.891 -18.8833 0)
(170.036 -25.5337 -1.60273e-19)
(168.442 -32.3479 0)
(164.675 -38.7072 -9.73462e-19)
(168.006 -42.1768 5.48726e-18)
(175.485 -45.1798 -2.39519e-17)
(177.804 -48.2979 -1.32944e-18)
(182.8 -50.7124 1.45776e-18)
(183.692 -52.9457 1.38281e-18)
(180.308 -55.8327 -3.37194e-18)
(178.947 -54.3566 2.14493e-18)
(176.363 -56.2977 -7.45532e-19)
(177.096 -57.6272 -1.36562e-18)
(177.706 -60.7611 7.1703e-18)
(174.33 -62.5009 5.18862e-18)
(173.509 -58.8258 0)
(169.45 -60.3888 -3.5547e-18)
(171.935 -59.1087 0)
(172.56 -52.8672 -2.68897e-18)
(170.044 -50.5403 3.01919e-18)
(166.099 -53.2356 2.47e-20)
(167.613 -55.65 -1.07392e-20)
(161.819 -57.0276 -2.57504e-17)
(162.809 -62.807 5.00841e-18)
(163.734 -66.3323 -1.46678e-18)
(163.435 -68.2538 1.038e-21)
(166.561 -67.4583 7.0305e-19)
(166.601 -65.782 2.25593e-17)
(170.952 -64.18 0)
(160.238 -68.0203 0)
(159.243 -71.0626 -5.52284e-18)
(156.491 -71.0511 2.71067e-17)
(157.074 -67.915 -4.67461e-18)
(153.539 -71.8799 1.4461e-18)
(153.023 -73.0372 2.20611e-18)
(150.593 -73.2116 7.08251e-19)
(148.15 -72.4087 7.44177e-19)
(146.431 -74.5881 9.76054e-18)
(144.235 -74.1204 2.56739e-17)
(145.831 -71.6904 -1.64148e-20)
(148.092 -72.0655 -2.58391e-17)
(151.409 -68.4535 3.262e-19)
(151.317 -71.7546 0)
(151.55 -65.8551 0)
(155.846 -58.1306 5.80114e-18)
(157.831 -64.2517 0)
(159.504 -56.7096 2.65453e-17)
(161.572 -48.7929 -4.92424e-18)
(155.006 -52.7202 -1.67987e-19)
(153.59 -47.1486 -1.33019e-18)
(159.446 -43.7447 9.86849e-19)
(156.803 -39.5033 -5.84879e-19)
(161.242 -35.4362 8.37635e-20)
(164.537 -30.4341 -4.14732e-20)
(166.189 -25.0613 9.6487e-23)
(162.82 -24.256 0)
(160.962 -28.5169 0)
(157.964 -32.4948 -1.25962e-19)
(154.985 -29.8461 -4.24253e-20)
(157.731 -26.6155 -5.3284e-21)
(159.663 -23.1612 0)
(160.735 -19.7845 0)
(161.144 -16.656 0)
(161.157 -13.694 0)
(160.739 -11.0903 0)
(159.036 -11.6547 0)
(159.027 -13.9406 0)
(158.75 -16.4001 0)
(156.525 -15.8783 0)
(157.037 -13.7513 0)
(157.256 -11.8081 0)
(155.633 -11.6241 0)
(155.21 -13.3432 0)
(154.518 -15.2242 0)
(153.498 -17.2326 0)
(155.627 -18.1889 0)
(158.058 -19.0609 0)
(156.787 -21.9066 0)
(154.875 -24.768 5.31543e-21)
(152.36 -27.4549 0)
(150.096 -25.2827 0)
(152.414 -23.0128 0)
(154.266 -20.6061 0)
(152.102 -19.304 0)
(150.316 -21.3528 0)
(148.16 -23.2898 0)
(145.689 -25.041 0)
(147.391 -27.3117 0)
(149.357 -29.8202 0)
(151.606 -32.6356 4.25277e-20)
(154.118 -35.8411 -4.25392e-20)
(149.772 -38.4084 0)
(151.766 -42.4434 0)
(146.556 -44.377 0)
(147.593 -49.0949 -1.69269e-19)
(147.988 -54.6555 -4.43484e-21)
(147.159 -60.3088 4.91753e-18)
(147.708 -65.8318 0)
(147.336 -68.4418 -3.59284e-19)
(142.883 -67.1817 0)
(140.945 -71.1925 4.89545e-18)
(140.061 -73.8849 -4.79749e-18)
(139.15 -75.2279 6.94091e-19)
(141.122 -75.4869 -5.79337e-18)
(141.931 -74.4036 2.71573e-19)
(137.238 -74.3225 1.46801e-18)
(135.594 -76.1085 -6.67662e-19)
(133.861 -75.4618 -2.29577e-17)
(135.53 -73.3799 -1.22639e-20)
(132.159 -75.3676 2.20842e-17)
(131.209 -76.3026 -2.74678e-18)
(129.838 -75.593 -3.44803e-19)
(128.263 -76.82 6.0003e-18)
(126.785 -75.9261 -2.62586e-18)
(128.4 -74.5347 -2.36598e-17)
(127.212 -73.504 5.85353e-19)
(128.799 -74.1497 2.51368e-17)
(131.905 -72.3758 0)
(130.76 -74.6002 1.81669e-19)
(133.228 -70.3564 0)
(138.867 -65.7019 -9.88058e-19)
(137.286 -70.695 -2.41239e-17)
(142.412 -66.2067 7.94878e-20)
(140.763 -61.0316 -1.66146e-19)
(134.525 -60.2476 0)
(131.908 -64.7229 6.16267e-18)
(130.53 -69.1281 -2.69662e-17)
(129.281 -71.1307 0)
(126.392 -69.3047 1.57385e-18)
(124.111 -72.1964 -6.7149e-19)
(122.232 -73.8999 0)
(119.981 -75.6349 -2.24561e-18)
(121.393 -76.2782 -1.43815e-17)
(123.133 -75.023 4.5842e-18)
(124.285 -75.7758 2.87888e-18)
(125.427 -75.1552 -3.01776e-18)
(123.67 -74.6879 -1.57295e-18)
(118.895 -75.0039 -7.23421e-19)
(117.653 -75.4745 -1.80351e-19)
(116.864 -74.6904 1.51896e-18)
(115.348 -75.2889 5.84744e-18)
(114.258 -74.8291 0)
(113.142 -74.1021 -1.53218e-18)
(112.053 -74.7372 -2.91957e-18)
(111.217 -73.8558 0)
(109.547 -74.5363 8.65688e-18)
(108.701 -73.8012 2.38671e-17)
(110.742 -72.7969 -4.75793e-18)
(111.823 -73.549 1.61469e-18)
(115.085 -72.775 0)
(115.856 -73.7793 -1.51061e-18)
(116.435 -73.5245 1.62887e-18)
(119.612 -72.3646 -1.32294e-18)
(117.911 -74.1255 -1.60088e-18)
(117.477 -70.5951 -1.57851e-18)
(115.681 -68.3852 4.62359e-18)
(112.657 -71.458 -2.39921e-17)
(110.624 -70.2546 -9.46092e-20)
(108.938 -71.3463 -4.63142e-18)
(107.37 -72.5515 2.44666e-17)
(106.449 -73.0356 -1.04732e-18)
(105.081 -73.5852 3.52707e-19)
(104.331 -72.8042 -3.92112e-18)
(105.794 -72.1037 1.49248e-18)
(105.501 -71.04 -2.9209e-19)
(106.443 -71.8256 0)
(103.675 -71.9953 0)
(102.617 -72.2936 0)
(102.148 -71.5078 0)
(100.636 -71.9734 -2.73733e-18)
(100.015 -71.4203 0)
(98.9337 -71.837 0)
(98.4271 -71.1201 2.63084e-18)
(99.4643 -70.7566 -2.87688e-18)
(102 -70.4664 -4.35369e-18)
(102.88 -71.3003 2.51441e-17)
(103.801 -69.5589 6.7784e-19)
(106.051 -67.9889 -2.62708e-17)
(107.576 -69.7911 -3.24004e-19)
(109.081 -68.624 2.55958e-17)
(111.491 -65.729 -4.98211e-18)
(106.963 -67.1871 0)
(105.13 -65.7859 -2.54272e-20)
(102.162 -67.9836 0)
(100.583 -68.8531 -3.34357e-19)
(98.9577 -69.9196 2.98068e-18)
(98.0891 -70.2928 -2.73015e-18)
(96.7919 -70.5899 1.31027e-18)
(96.3832 -69.9019 0)
(95.2471 -70.07 8.58523e-19)
(94.8743 -69.4786 -2.27766e-18)
(93.5403 -69.7853 0)
(93.0077 -69.1126 0)
(92.5421 -68.426 -2.43937e-17)
(91.5895 -68.6206 1.73986e-19)
(91.3356 -67.915 -2.39683e-17)
(90.0078 -68.1148 2.40156e-18)
(89.6152 -67.5509 2.50294e-17)
(88.7504 -67.6633 -6.11046e-18)
(88.5024 -67.1146 0)
(87.1929 -67.3301 -1.10913e-17)
(86.806 -66.7426 -6.76711e-18)
(88.6373 -66.2714 -1.20116e-18)
(86.719 -66.1833 0)
(85.8019 -66.2417 -3.44696e-19)
(85.7047 -65.6571 1.74219e-18)
(84.6226 -65.7288 -6.86189e-19)
(84.4203 -65.1657 0)
(83.4751 -65.2303 0)
(83.2901 -64.6782 1.43672e-18)
(82.131 -64.7536 6.60149e-18)
(81.868 -64.1327 6.72658e-19)
(81.6237 -63.5659 2.29136e-17)
(80.8307 -63.6156 0)
(80.7476 -63.068 0)
(79.6242 -63.1295 -2.7661e-18)
(79.4324 -62.59 -2.51219e-17)
(78.6146 -62.5539 4.51381e-18)
(78.5937 -62.0014 -6.32962e-18)
(77.3948 -61.9201 0)
(77.2403 -61.4864 0)
(76.4209 -61.4765 1.06269e-21)
(76.3446 -61.0065 -1.41244e-18)
(77.1696 -60.9658 0)
(78.9464 -61.2524 0)
(79.3199 -61.9724 0)
(81.0369 -62.2496 5.01907e-18)
(81.4335 -62.9582 0)
(83.3199 -63.1387 -5.91195e-18)
(83.0904 -63.9895 -4.58935e-18)
(83.7829 -63.8684 0)
(85.6496 -64.0331 8.99427e-19)
(85.5061 -64.9771 -4.55989e-18)
(86.1691 -64.8127 -2.12228e-17)
(87.9379 -64.9321 1.34588e-18)
(86.4773 -65.518 2.23339e-17)
(89.4093 -64.4331 -2.44067e-17)
(93.1912 -64.1029 1.46009e-20)
(93.5043 -66.1858 -1.5548e-18)
(91.3786 -67.0439 2.84949e-19)
(89.1774 -66.9849 0)
(92.0467 -67.7849 0)
(94.5069 -67.7221 1.23323e-17)
(94.4696 -68.6743 -7.57633e-19)
(95.2016 -68.4885 -1.67317e-18)
(97.4047 -68.4357 -8.37755e-18)
(95.7947 -69.1988 2.88495e-17)
(97.6075 -69.4701 1.49296e-18)
(98.2388 -69.2091 -3.29506e-18)
(95.9611 -67.0264 -1.60713e-18)
(98.9078 -65.2109 4.67086e-18)
(94.6097 -65.63 -3.50562e-21)
(99.5061 -67.2623 -2.91873e-17)
(100.503 -66.6194 2.87411e-17)
(102.111 -63.2039 -1.35028e-18)
(99.5289 -60.4496 0)
(96.3755 -62.4942 -1.05166e-20)
(94.2645 -59.6455 0)
(91.1045 -61.1919 1.00773e-17)
(88.667 -62.9435 -2.41912e-17)
(87.3771 -63.5174 3.78386e-19)
(86.6594 -62.0128 -1.62073e-18)
(84.825 -62.6882 2.14139e-21)
(83.9258 -61.3824 4.82191e-18)
(82.6936 -61.84 -1.80598e-18)
(82.1151 -60.4657 -2.54314e-17)
(80.3676 -60.9577 6.85341e-19)
(79.608 -59.6761 1.58204e-18)
(78.4126 -59.9443 1.36326e-18)
(77.0283 -60.3558 -7.68227e-19)
(76.3403 -60.4438 -7.04888e-19)
(75.3602 -60.4396 1.345e-18)
(75.3089 -59.9095 1.66524e-19)
(74.4091 -59.8608 -3.43837e-19)
(74.4135 -59.3686 2.85317e-18)
(73.4061 -59.2823 0)
(73.3504 -58.8176 1.38745e-18)
(72.5116 -58.7405 0)
(72.4946 -58.318 -2.97684e-18)
(71.5361 -58.2299 1.51941e-18)
(71.443 -57.7413 2.76126e-18)
(71.3592 -57.2711 2.03825e-17)
(70.606 -57.196 2.88884e-18)
(70.6717 -56.7673 0)
(69.5987 -56.6393 2.8313e-18)
(69.5293 -56.2151 -2.82472e-18)
(68.8251 -56.1126 1.76885e-21)
(68.904 -55.7044 -3.22455e-18)
(67.9088 -55.517 2.95123e-18)
(67.8629 -55.1448 -6.28992e-18)
(67.1394 -55.0411 6.22448e-18)
(67.1716 -54.6275 -1.42627e-18)
(67.8865 -54.7017 1.51395e-18)
(69.3051 -55.1283 -3.59715e-18)
(69.5496 -55.7203 2.70254e-17)
(71.0944 -56.1844 5.02889e-18)
(71.3457 -56.7798 -2.54066e-17)
(72.6935 -57.1462 -1.14595e-17)
(72.4344 -57.7959 -2.36091e-18)
(73.0351 -57.7599 -8.41304e-19)
(74.6473 -58.1191 7.62537e-18)
(74.364 -58.8337 2.03934e-17)
(74.9983 -58.7814 -5.44655e-17)
(76.4077 -59.0857 7.31707e-18)
(75.1163 -59.3636 1.55e-18)
(76.2346 -59.8694 1.91938e-19)
(76.8348 -59.7592 -2.54284e-17)
(75.7244 -57.9054 -4.90787e-18)
(78.265 -56.9445 -4.72468e-18)
(75.3339 -56.6158 1.71878e-18)
(74.2838 -56.9383 2.406e-21)
(74.6413 -55.2405 0)
(72.1488 -56.0426 8.03478e-19)
(71.9287 -54.789 2.72866e-17)
(70.8678 -55.0508 -1.5975e-18)
(71.309 -53.4284 -1.41734e-17)
(68.9231 -53.9975 1.78634e-17)
(67.8646 -54.2267 -1.55977e-18)
(67.2625 -54.1956 2.14142e-18)
(66.4205 -54.0496 -1.35325e-18)
(66.4572 -53.6625 0)
(65.7318 -53.522 -6.86311e-19)
(65.8234 -53.1414 0)
(64.9854 -52.9593 -3.53076e-18)
(65.0292 -52.5705 1.37492e-18)
(64.2901 -52.3767 4.40631e-18)
(64.3611 -52.0408 0)
(63.4828 -51.8511 -7.54227e-19)
(63.4522 -51.4457 6.86822e-19)
(63.4572 -51.0334 2.49045e-17)
(62.8014 -50.9074 -8.94116e-20)
(62.961 -50.5224 -2.49084e-17)
(62.0368 -50.3019 6.51435e-23)
(62.1042 -49.9384 2.7041e-17)
(61.4477 -49.7359 -6.07262e-18)
(61.6493 -49.3969 7.98793e-18)
(60.6795 -49.1186 -1.4723e-18)
(60.7331 -48.7772 -6.19373e-18)
(60.0375 -48.5996 6.20332e-18)
(60.184 -48.206 2.84326e-18)
(60.8999 -48.3432 -3.30941e-18)
(62.2059 -48.8909 3.59529e-18)
(62.3191 -49.4604 -2.66663e-17)
(63.49 -49.9412 -3.00726e-19)
(63.6153 -50.5279 0)
(64.8949 -50.9677 -8.07517e-18)
(64.4224 -51.5911 2.57806e-17)
(65.061 -51.5778 -2.75221e-17)
(66.2968 -51.9803 3.63912e-21)
(65.8847 -52.6856 2.48642e-17)
(66.4897 -52.6373 -2.67398e-17)
(67.7335 -53.0739 9.60166e-18)
(66.4011 -53.2162 0)
(67.3016 -53.7554 -2.59376e-17)
(67.8999 -53.6898 2.98424e-17)
(68.8003 -52.9668 2.55743e-17)
(68.494 -51.847 -8.11723e-19)
(67.5554 -51.9632 -3.78452e-19)
(67.3537 -50.8604 3.25903e-18)
(65.9996 -50.9257 -1.40848e-18)
(65.6381 -49.919 3.07712e-17)
(64.7343 -49.9753 -4.38715e-18)
(64.6044 -48.9518 3.20561e-18)
(63.287 -48.938 1.38292e-18)
(63.0215 -47.9376 -7.96744e-19)
(62.1311 -47.912 2.74396e-18)
(60.971 -47.9167 1.74362e-18)
(60.3809 -47.8161 -7.09728e-19)
(59.5637 -47.6008 0)
(59.7146 -47.2459 -3.34617e-19)
(58.958 -47.0383 0)
(59.158 -46.6995 0)
(58.3017 -46.4265 0)
(58.4569 -46.098 7.00026e-19)
(57.7231 -45.834 -5.97384e-18)
(57.9075 -45.5738 1.50153e-18)
(57.0827 -45.2955 -4.61127e-18)
(57.1768 -44.944 3.49937e-19)
(57.3027 -44.6009 2.7822e-18)
(56.62 -44.3513 -2.93732e-18)
(56.8919 -44.1019 -8.02698e-19)
(55.916 -43.7277 -2.899e-18)
(56.0598 -43.4535 3.30679e-18)
(55.4018 -43.1881 9.61595e-18)
(55.7011 -42.9646 0)
(54.7291 -42.5749 -1.53145e-18)
(54.8565 -42.2394 -1.55812e-18)
(56.3413 -42.626 -7.23959e-18)
(55.2151 -41.946 3.39107e-18)
(54.4924 -41.6748 -3.24455e-18)
(54.8074 -41.4134 -1.46613e-18)
(53.9839 -41.0588 0)
(54.2637 -40.8187 2.11325e-18)
(53.5092 -40.4472 7.49757e-19)
(53.7937 -40.2447 0)
(52.9185 -39.8684 3.8744e-18)
(53.1142 -39.5733 7.0643e-19)
(54.0877 -39.9542 0)
(54.762 -39.5731 -6.05989e-19)
(54.7475 -40.0681 0)
(55.7464 -40.7183 9.98115e-18)
(54.4222 -40.5058 -1.60372e-18)
(55.1023 -41.1385 -2.42375e-17)
(55.7123 -41.2276 -3.03894e-17)
(56.4605 -41.761 1.87035e-18)
(55.4089 -41.6502 1.17561e-18)
(58.5037 -41.6816 1.03901e-18)
(57.7005 -42.8869 -1.60986e-18)
(57.503 -43.7541 2.53722e-18)
(56.3564 -43.0799 2.79725e-17)
(57.5505 -44.2284 8.62511e-19)
(58.5169 -44.7997 0)
(58.0597 -45.2243 0)
(58.643 -45.2969 -1.74098e-18)
(59.7765 -45.8908 1.53723e-17)
(58.4954 -45.7355 -2.41585e-17)
(59.321 -46.3492 -2.45809e-17)
(59.907 -46.4141 -2.76666e-17)
(60.8538 -46.91 -9.82738e-18)
(59.7554 -46.8551 2.53967e-17)
(60.4911 -47.4297 2.55777e-17)
(61.0502 -47.4552 -1.72287e-18)
(62.1347 -46.9727 -3.31819e-18)
(62.7537 -45.5196 -5.96382e-18)
(63.0904 -46.7604 8.65274e-19)
(65.1586 -47.4026 -4.73272e-18)
(65.5745 -48.6877 2.42222e-17)
(67.8227 -49.2422 -5.97685e-18)
(68.3346 -50.5448 2.61251e-17)
(70.6223 -50.8978 -5.09699e-18)
(73.0572 -50.346 3.39891e-19)
(73.7947 -52.7883 0)
(76.2929 -52.0229 6.84962e-19)
(77.2403 -54.4641 -1.36657e-18)
(79.8231 -53.5487 6.87435e-19)
(80.9647 -56.0321 6.79503e-19)
(82.2182 -58.5534 -1.23363e-20)
(79.0714 -58.3293 5.23127e-17)
(78.0384 -58.7303 3.28508e-18)
(83.1663 -59.9721 -3.07844e-17)
(86.5842 -60.0408 4.75045e-18)
(87.6956 -61.4593 -2.76449e-17)
(85.0274 -57.4763 6.79707e-19)
(87.8119 -56.1518 6.84354e-19)
(89.5057 -58.711 -1.37364e-18)
(92.3274 -57.1035 0)
(90.4216 -54.6229 -8.69696e-19)
(92.8637 -52.9626 2.18436e-19)
(94.9491 -55.3156 0)
(97.158 -57.7567 0)
(99.7822 -55.6862 4.34942e-20)
(102.395 -58.1434 -3.43956e-19)
(105.244 -60.7508 3.47451e-19)
(108.402 -63.3644 2.72015e-18)
(111.373 -60.4149 -1.02218e-18)
(114.928 -62.7405 0)
(118.947 -65.256 -1.32708e-18)
(123.993 -67.236 -3.44174e-18)
(121.343 -70.7625 1.55072e-18)
(118.177 -69.7071 1.66943e-18)
(126.743 -68.3056 2.70047e-17)
(126.901 -63.4596 0)
(129.23 -59.2029 0)
(124.25 -57.5181 0)
(121.889 -61.4673 0)
(117.687 -59.2858 -1.71146e-19)
(119.88 -55.7498 0)
(115.935 -53.9935 0)
(113.871 -57.2454 1.71481e-19)
(110.359 -55.1517 8.67437e-20)
(107.995 -58.0154 -3.43765e-19)
(104.94 -55.6855 4.35017e-20)
(102.157 -53.4515 -4.34487e-20)
(104.283 -51.0747 0)
(107.178 -53.0883 -2.16427e-20)
(109.124 -50.3902 -1.90566e-20)
(112.366 -52.1927 -4.88479e-20)
(114.051 -49.1932 5.43101e-21)
(117.633 -50.709 0)
(121.612 -52.1779 0)
(125.988 -53.508 0)
(130.75 -54.6084 1.71036e-19)
(135.963 -55.2133 0)
(141.79 -55.4628 0)
(141.88 -50.0915 1.68946e-19)
(141.432 -45.5048 4.28094e-20)
(140.672 -41.4117 -4.28228e-20)
(145.224 -40.2338 0)
(143.821 -36.5646 -4.81191e-20)
(147.816 -34.8774 4.29035e-20)
(146.014 -31.7834 0)
(142.472 -33.3217 5.35908e-21)
(138.848 -34.4499 0)
(139.773 -37.7382 0)
(135.779 -38.4602 0)
(136.241 -42.0437 0)
(136.518 -45.9777 0)
(136.48 -50.3368 0)
(131.533 -50.0672 -1.7171e-19)
(127.024 -49.4515 0)
(122.866 -48.5651 0)
(123.692 -45.0283 0)
(127.641 -45.6119 -4.3043e-20)
(131.913 -45.9602 4.32294e-20)
(132.012 -42.239 0)
(128.02 -42.1008 0)
(124.279 -41.7114 0)
(124.685 -38.6132 0)
(128.206 -38.8327 0)
(131.91 -38.802 0)
(131.683 -35.6305 0)
(135.23 -35.204 0)
(134.65 -32.2373 0)
(137.949 -31.4875 0)
(141.223 -30.4265 0)
(144.4 -29.0349 0)
(142.973 -26.5553 0)
(140.086 -27.807 0)
(137.097 -28.7896 0)
(134.067 -29.5137 0)
(131.041 -29.9988 0)
(131.382 -32.7063 0)
(128.185 -32.9294 0)
(128.246 -35.7781 0)
(124.944 -35.6918 0)
(125.086 -32.9408 0)
(125.141 -30.3476 0)
(128.057 -30.2679 0)
(127.884 -27.7724 0)
(130.682 -27.4791 0)
(133.501 -26.9978 0)
(136.306 -26.3127 0)
(139.06 -25.411 0)
(141.714 -24.2903 0)
(144.212 -22.9594 0)
(146.5 -21.4408 0)
(148.527 -19.7745 0)
(150.253 -18.0158 0)
(151.661 -16.2298 0)
(152.758 -14.4808 0)
(153.573 -12.8196 0)
(154.151 -11.2785 0)
(154.531 -9.87706 0)
(154.76 -8.63146 0)
(154.873 -7.52162 0)
(154.911 -6.5549 0)
(154.907 -5.74758 0)
(154.867 -5.06016 0)
(154.815 -4.44982 0)
(154.761 -3.90518 0)
(154.373 -3.91941 0)
(154.344 -4.44141 0)
(154.3 -5.03277 0)
(153.759 -4.945 0)
(153.887 -4.37494 0)
(153.989 -3.8718 0)
(153.625 -3.76982 0)
(153.457 -4.25081 0)
(153.256 -4.79415 0)
(153.013 -5.40893 0)
(153.598 -5.59667 0)
(154.231 -5.7161 0)
(154.12 -6.49971 0)
(153.954 -7.39527 0)
(153.704 -8.41968 0)
(152.747 -8.11812 0)
(153.112 -7.17644 0)
(153.388 -6.33814 0)
(152.715 -6.10159 0)
(152.344 -6.87701 0)
(151.883 -7.73713 0)
(151.102 -7.28818 0)
(151.643 -6.5085 0)
(152.093 -5.7989 0)
(152.469 -5.15898 0)
(152.784 -4.58587 0)
(153.05 -4.07508 0)
(153.277 -3.62061 0)
(152.94 -3.42938 0)
(152.661 -3.85315 0)
(152.337 -4.3267 0)
(151.917 -4.02306 0)
(152.291 -3.59027 0)
(152.617 -3.20089 0)
(152.311 -2.93933 0)
(151.945 -3.29137 0)
(151.527 -3.68086 0)
(151.05 -4.10986 0)
(151.486 -4.50222 0)
(151.96 -4.8542 0)
(151.518 -5.43868 0)
(151.001 -6.08165 0)
(150.394 -6.78255 0)
(149.754 -6.23029 0)
(150.415 -5.60611 0)
(150.989 -5.02971 0)
(150.506 -4.57956 0)
(149.886 -5.08992 0)
(149.18 -5.63951 0)
(148.379 -6.22519 0)
(148.994 -6.89907 0)
(149.684 -7.53833 0)
(150.454 -8.13526 0)
(151.312 -8.67986 0)
(152.268 -9.16057 0)
(153.338 -9.56473 0)
(152.825 -10.8305 0)
(152.132 -12.2063 0)
(151.226 -13.672 0)
(149.894 -12.8152 0)
(150.867 -11.5237 0)
(151.65 -10.2992 0)
(150.609 -9.69965 0)
(149.755 -10.7866 0)
(148.731 -11.9233 0)
(147.522 -13.089 0)
(148.71 -14.1495 0)
(150.078 -15.1987 0)
(148.668 -16.7453 0)
(146.995 -18.2633 0)
(145.072 -19.7043 0)
(143.836 -18.059 0)
(145.675 -16.8084 0)
(147.304 -15.4929 0)
(146.122 -14.2577 0)
(144.531 -15.4001 0)
(142.759 -16.4873 0)
(141.818 -14.9751 0)
(143.533 -14.0299 0)
(145.091 -13.0377 0)
(146.484 -12.021 0)
(147.71 -11.0029 0)
(148.773 -10.0047 0)
(149.684 -9.04389 0)
(148.859 -8.34323 0)
(147.905 -9.18881 0)
(146.813 -10.0624 0)
(146.023 -9.10697 0)
(147.137 -8.34649 0)
(148.125 -7.60706 0)
(147.476 -6.84205 0)
(146.461 -7.48329 0)
(145.331 -8.14015 0)
(144.082 -8.80239 0)
(144.779 -9.87608 0)
(145.575 -10.9493 0)
(144.19 -11.8323 0)
(142.661 -12.6929 0)
(140.993 -13.5134 0)
(140.27 -12.093 0)
(141.897 -11.3836 0)
(143.402 -10.6399 0)
(142.714 -9.4587 0)
(141.23 -10.0973 0)
(139.636 -10.7067 0)
(139.082 -9.3481 0)
(140.648 -8.83023 0)
(142.115 -8.28717 0)
(143.475 -7.72862 0)
(144.727 -7.16418 0)
(145.869 -6.60296 0)
(146.904 -6.05334 0)
(147.836 -5.52254 0)
(148.669 -5.01642 0)
(149.412 -4.53934 0)
(150.071 -4.09422 0)
(150.655 -3.68263 0)
(151.17 -3.30495 0)
(151.626 -2.96056 0)
(152.027 -2.64808 0)
(151.769 -2.32958 0)
(151.336 -2.60078 0)
(150.849 -2.89867 0)
(150.566 -2.46361 0)
(151.08 -2.21351 0)
(151.538 -1.98515 0)
(151.34 -1.61713 0)
(150.86 -1.80116 0)
(150.324 -2.00238 0)
(149.726 -2.22096 0)
(149.99 -2.73604 0)
(150.301 -3.22415 0)
(149.684 -3.57747 0)
(148.993 -3.95806 0)
(148.22 -4.36436 0)
(147.832 -3.68399 0)
(148.629 -3.34726 0)
(149.346 -3.03081 0)
(149.061 -2.45668 0)
(148.322 -2.70921 0)
(147.506 -2.97726 0)
(147.25 -2.25808 0)
(148.081 -2.05729 -4.17052e-20)
(148.835 -1.86758 4.1676e-20)
(149.518 -1.68994 4.1574e-20)
(150.133 -1.52506 -4.1524e-20)
(150.686 -1.37309 0)
(151.182 -1.23372 -4.13301e-20)
(151.069 -0.854362 0)
(150.562 -0.950337 0)
(149.997 -1.05485 0)
(149.916 -0.612205 0)
(150.488 -0.551655 0)
(151.002 -0.496105 0)
(149.282 -0.677653 0)
(149.37 -1.16798 0)
(148.677 -1.28965 0)
(147.912 -1.4196 0)
(147.071 -1.55698 0)
(146.964 -0.902194 0)
(147.81 -0.822976 0)
(148.582 -0.747959 0)
(146.039 -0.985152 0)
(146.151 -1.70093 0)
(146.339 -2.46884 0)
(146.608 -3.25898 0)
(146.95 -4.03875 0)
(147.36 -4.79375 0)
(146.407 -5.24246 0)
(145.356 -5.70557 0)
(144.204 -6.17715 0)
(143.757 -5.17564 0)
(144.916 -4.78898 0)
(145.979 -4.40842 0)
(145.623 -3.55175 0)
(144.55 -3.8523 0)
(143.386 -4.15736 0)
(142.132 -4.46264 0)
(142.504 -5.563 0)
(142.951 -6.65038 0)
(141.597 -7.11792 0)
(140.146 -7.57231 0)
(138.603 -8.00607 0)
(138.194 -6.67106 0)
(139.718 -6.31669 0)
(141.156 -5.94528 0)
(140.79 -4.76343 0)
(139.362 -5.05543 0)
(137.854 -5.33459 0)
(137.588 -4.01438 -4.21575e-20)
(139.086 -3.80696 4.21942e-20)
(140.505 -3.58977 0)
(141.843 -3.36617 -4.19982e-20)
(143.097 -3.13931 8.84667e-23)
(144.264 -2.91199 4.19847e-20)
(145.344 -2.68763 0)
(145.15 -1.85016 0)
(144.065 -2.00295 0)
(142.895 -2.15766 0)
(142.774 -1.248 0)
(143.946 -1.15903 0)
(145.033 -1.07111 0)
(141.521 -1.33673 0)
(141.641 -2.31203 0)
(140.306 -2.46429 0)
(138.892 -2.61197 0)
(137.403 -2.75296 0)
(137.292 -1.58984 0)
(138.776 -1.50887 0)
(140.188 -1.42408 0)
(135.739 -1.66597 0)
(135.845 -2.88551 0)
(136.02 -4.20895 0)
(136.271 -5.59646 0)
(136.591 -7.00357 0)
(136.975 -8.4127 0)
(137.424 -9.83275 0)
(137.94 -11.2764 0)
(138.53 -12.7549 0)
(139.201 -14.2773 0)
(139.962 -15.8528 0)
(140.826 -17.4939 0)
(141.808 -19.212 0)
(142.928 -21.0263 0)
(140.603 -22.1973 0)
(138.139 -23.197 0)
(135.578 -24.0169 0)
(134.91 -21.8723 0)
(137.312 -21.1319 0)
(139.623 -20.242 0)
(138.753 -18.3991 0)
(136.569 -19.1879 0)
(134.299 -19.8528 0)
(131.972 -20.3901 0)
(132.45 -22.4611 0)
(132.96 -24.6561 0)
(130.318 -25.1212 0)
(127.683 -25.4234 0)
(125.077 -25.5772 0)
(125.133 -27.8973 0)
(122.445 -27.8741 0)
(122.311 -30.2638 0)
(122.101 -32.7739 0)
(121.791 -35.4157 0)
(121.362 -38.2012 0)
(120.789 -41.1384 0)
(120.033 -44.2378 0)
(119.001 -47.4496 0)
(115.456 -46.2021 0)
(112.232 -44.9078 0)
(110.801 -47.6505 -2.72152e-21)
(107.829 -46.0985 5.45155e-21)
(106.169 -48.609 -5.44995e-21)
(103.464 -46.8614 5.4613e-21)
(101.636 -49.125 -5.45896e-21)
(99.6072 -51.3132 0)
(97.3768 -53.3864 1.80765e-22)
(95.1464 -51.1671 -8.74284e-20)
(97.2628 -49.248 0)
(95.1075 -47.2673 0)
(93.0924 -49.04 0)
(90.9343 -50.7083 8.76733e-20)
(88.6387 -52.2508 -1.31192e-19)
(86.2129 -53.6628 0)
(83.6505 -54.9384 -6.90212e-19)
(82.3104 -52.4862 0)
(84.6953 -51.3018 8.74707e-20)
(86.9775 -49.9918 -4.39997e-20)
(89.1472 -48.5554 0)
(91.1976 -47.0085 5.48297e-21)
(93.1229 -45.3687 -5.48592e-21)
(94.9189 -43.6494 0)
(96.9757 -45.41 0)
(99.2072 -47.235 5.46516e-21)
(100.981 -45.1509 -5.46885e-21)
(98.6948 -43.4854 0)
(96.5834 -41.8671 0)
(98.1165 -40.0362 0)
(100.265 -41.5133 0)
(102.586 -43.0199 0)
(105.099 -44.5514 0)
(106.548 -42.2215 0)
(109.276 -43.5747 0)
(110.525 -41.0644 0)
(113.439 -42.1938 0)
(116.61 -43.2682 0)
(117.522 -40.4122 0)
(114.454 -39.5384 0)
(111.594 -38.5891 0)
(108.934 -37.5828 0)
(107.823 -39.8923 0)
(105.312 -38.6971 0)
(104.027 -40.8631 0)
(101.69 -39.5105 0)
(99.518 -38.1719 0)
(100.791 -36.2849 0)
(102.973 -37.4915 0)
(104.121 -35.4695 0)
(106.447 -36.5381 0)
(107.446 -34.398 0)
(109.896 -35.3048 0)
(112.504 -36.1623 0)
(115.288 -36.9559 0)
(118.238 -37.642 0)
(118.799 -34.9887 0)
(115.965 -34.4459 0)
(113.273 -33.796 0)
(113.909 -31.5007 0)
(116.513 -32.027 0)
(119.242 -32.4591 0)
(119.58 -30.0408 0)
(116.954 -29.7024 0)
(114.44 -29.2688 0)
(112.033 -28.7535 0)
(111.43 -30.8863 0)
(110.723 -33.0705 0)
(108.318 -32.2869 0)
(106.046 -31.4612 0)
(105.143 -33.4565 0)
(102.975 -32.4929 0)
(101.942 -34.3886 0)
(99.8966 -33.3042 0)
(98.7514 -35.0855 0)
(97.4937 -36.8524 0)
(96.12 -38.5932 0)
(94.6278 -40.2977 0)
(93.0173 -41.9533 0)
(91.2898 -43.5484 0)
(89.448 -45.0694 0)
(87.4959 -46.5037 0)
(85.4378 -47.8404 4.40198e-20)
(83.281 -49.0624 0)
(81.035 -50.1612 0)
(78.7075 -51.1441 -1.74349e-19)
(77.6549 -48.8732 1.75036e-19)
(75.3946 -49.6626 3.46254e-19)
(74.5412 -47.5059 0)
(72.3638 -48.1663 0)
(70.1256 -48.7422 0)
(69.5421 -46.6034 3.48453e-19)
(67.3594 -47.0422 -3.21249e-23)
(66.9412 -44.9455 1.38709e-18)
(64.8543 -45.2595 6.89213e-19)
(64.5608 -43.2349 -6.92707e-19)
(62.5622 -43.4507 0)
(60.5402 -43.6181 0)
(58.4209 -43.8958 1.62388e-18)
(58.7058 -42.818 -1.72154e-18)
(59.8274 -44.9671 0)
(60.807 -44.8163 0)
(60.6448 -45.9486 2.637e-17)
(60.4439 -41.6077 -5.13085e-19)
(60.3974 -39.6548 1.02528e-18)
(58.5264 -39.6519 -1.27817e-18)
(56.7362 -39.9814 8.14562e-19)
(55.903 -39.8524 -7.59022e-19)
(56.0987 -39.0242 -1.63001e-18)
(54.9204 -38.7767 2.10195e-18)
(53.8093 -38.4712 -1.20997e-18)
(52.2296 -38.0452 0)
(51.4722 -37.7001 0)
(51.8441 -37.3866 7.25976e-19)
(52.6365 -37.7127 0)
(52.8962 -37.4469 1.57676e-18)
(52.2472 -37.1591 -1.4565e-18)
(51.3493 -36.7324 1.40608e-18)
(51.7243 -36.5438 -1.39177e-18)
(50.8707 -36.0959 -7.41157e-19)
(51.2621 -35.9308 -3.02013e-18)
(50.2544 -35.4477 3.10865e-18)
(50.5355 -35.2259 -6.43164e-18)
(50.8375 -35.009 2.85665e-17)
(50.0441 -34.6015 -4.62755e-18)
(50.552 -34.5037 8.14679e-19)
(49.3875 -33.9313 -1.50654e-18)
(49.6776 -33.6896 -2.38272e-17)
(51.4262 -34.3531 4.8346e-18)
(50.2571 -33.4759 3.82079e-19)
(49.3662 -33.0303 7.44202e-19)
(49.8786 -32.9048 1.48776e-18)
(48.8207 -32.3744 6.35919e-18)
(49.2228 -32.1878 1.73939e-19)
(49.6397 -32.0045 -1.78338e-18)
(48.7584 -31.5125 2.23791e-18)
(49.4013 -31.4841 -2.5532e-17)
(48.0911 -30.8274 1.47898e-18)
(48.4856 -30.6285 -5.42292e-18)
(50.4428 -31.4231 4.8032e-18)
(50.2236 -31.7646 1.68829e-18)
(51.2949 -32.6038 5.22777e-18)
(50.387 -32.7555 -1.60369e-18)
(51.1105 -32.9965 -4.79918e-21)
(51.8648 -33.7076 -6.34892e-18)
(50.6244 -33.3034 0)
(53.9184 -34.0425 0)
(52.4366 -32.9817 -1.1633e-22)
(52.7489 -32.3547 -1.6188e-18)
(51.8275 -31.9854 1.4877e-18)
(52.3904 -31.4494 -2.87743e-17)
(51.1384 -30.9439 -5.23756e-18)
(49.6703 -30.3698 2.34478e-17)
(48.8228 -29.8768 0)
(47.6115 -29.2634 0)
(48.1051 -29.1382 -2.82558e-18)
(49.4215 -29.8158 2.88107e-17)
(50.4099 -29.8387 -1.02567e-17)
(50.2111 -30.1553 -2.22163e-22)
(48.5863 -29.0771 -2.45013e-18)
(47.6551 -28.5127 0)
(48.378 -28.6028 0)
(46.9932 -27.8531 -6.2254e-18)
(47.4419 -27.7299 -6.14704e-18)
(49.4917 -28.699 3.66012e-18)
(48.1876 -27.6688 -3.97627e-19)
(47.1168 -27.0835 -5.30982e-18)
(47.742 -27.0136 -3.58022e-18)
(48.5496 -27.11 5.07967e-18)
(47.1397 -26.326 5.65678e-18)
(47.7315 -26.3738 0)
(46.722 -25.7252 3.26397e-18)
(47.384 -25.7412 -7.68802e-19)
(48.4536 -26.352 7.90292e-19)
(49.7459 -27.3327 0)
(49.3947 -27.5272 -1.80477e-18)
(50.2496 -28.3708 1.50028e-18)
(48.71 -27.6309 8.10582e-19)
(52.456 -29.1287 -5.94469e-18)
(51.0914 -27.9685 0)
(51.6294 -27.6988 8.06057e-19)
(50.634 -27.1527 4.96711e-18)
(48.9864 -26.4059 -1.21427e-18)
(48.0996 -25.8506 2.66472e-18)
(46.8371 -25.1252 1.54533e-18)
(47.4629 -25.1889 -1.42799e-18)
(48.08 -25.2822 -3.1586e-17)
(47.061 -24.5874 6.21944e-18)
(47.754 -24.6678 -7.50126e-19)
(48.802 -25.3329 1.57045e-18)
(49.9338 -26.2761 6.14384e-18)
(48.8199 -25.9947 1.60426e-18)
(49.5986 -26.3867 -3.01694e-17)
(50.6974 -26.2371 -1.89566e-18)
(49.3521 -25.4704 -2.67285e-17)
(48.5128 -24.8741 -7.52392e-19)
(47.2746 -24.1239 6.04026e-18)
(47.9484 -24.2982 0)
(48.6016 -24.5089 0)
(47.6188 -23.8041 0)
(48.3437 -24.0528 -2.32784e-19)
(49.3311 -24.7225 2.48978e-17)
(50.3715 -25.5462 -9.99248e-18)
(49.2625 -25.1205 0)
(49.9738 -25.5518 5.96916e-17)
(51.4927 -26.218 1.21305e-18)
(52.6159 -27.0691 5.85444e-18)
(51.4509 -27.0243 -2.66688e-17)
(52.3133 -27.4058 0)
(53.2473 -28.2884 1.27554e-18)
(53.8291 -27.6371 -1.20817e-18)
(54.8344 -28.0387 1.50812e-22)
(54.4403 -28.7704 -3.41151e-19)
(53.928 -29.6973 6.85305e-19)
(53.3832 -30.8331 7.18141e-18)
(53.2737 -31.6261 3.47419e-18)
(54.3979 -32.5429 -1.2761e-18)
(55.9153 -32.8532 1.37049e-18)
(55.5956 -34.3499 -1.37059e-18)
(55.3486 -35.9664 1.07624e-17)
(53.4364 -35.8387 -4.9737e-18)
(52.418 -35.5108 -1.53556e-17)
(51.3004 -34.7268 -2.62368e-18)
(51.6453 -35.7266 2.50552e-17)
(52.3467 -35.9334 2.72731e-17)
(53.2696 -36.6458 -3.71339e-18)
(51.9645 -36.286 4.02855e-18)
(52.6061 -36.9468 0)
(53.2355 -37.096 2.6345e-17)
(54.1458 -37.7082 1.38519e-18)
(54.5113 -36.9742 -2.6763e-17)
(55.412 -36.9663 0)
(56.8784 -37.8587 4.78905e-18)
(57.0054 -38.941 1.75027e-18)
(55.0208 -37.9203 -2.73686e-17)
(57.0319 -36.1483 -2.76017e-18)
(58.703 -36.2588 0)
(58.6522 -37.9126 1.39185e-18)
(60.3753 -37.9265 3.4856e-19)
(60.3389 -36.3028 0)
(61.9508 -36.2797 0)
(62.0796 -37.8899 0)
(62.216 -39.6011 0)
(62.376 -41.483 -3.46535e-19)
(64.2691 -41.3006 -1.75375e-19)
(64.0046 -39.4762 -1.76146e-19)
(65.7685 -39.2624 -4.97223e-20)
(66.1286 -41.0515 5.28512e-23)
(66.5246 -42.9455 1.75163e-19)
(68.4545 -42.5792 -1.76394e-19)
(68.9858 -44.5387 3.50302e-19)
(70.9828 -44.0459 0)
(71.6561 -46.0627 7.01785e-19)
(73.7155 -45.4401 4.4053e-20)
(75.7299 -44.7262 -4.41211e-20)
(76.6661 -46.7519 0)
(78.7371 -45.892 1.10071e-20)
(79.8471 -47.9657 5.49246e-21)
(81.9689 -46.9383 -5.50573e-21)
(80.7458 -44.9226 -1.42096e-23)
(79.6039 -43.0035 0)
(77.6951 -43.9134 0)
(76.7222 -42.0276 5.52113e-21)
(74.853 -42.7923 2.75577e-20)
(72.9383 -43.4653 -3.30752e-20)
(72.2125 -41.5831 3.86924e-20)
(70.3512 -42.1259 1.10355e-20)
(69.7651 -40.3 4.42652e-20)
(67.9615 -40.7197 4.42329e-20)
(67.5081 -38.959 4.98273e-20)
(69.2214 -38.5677 -4.42345e-20)
(70.9051 -38.092 0)
(71.5361 -39.7922 -3.3144e-20)
(73.2708 -39.2004 -1.10564e-20)
(74.0349 -40.9511 -5.52669e-21)
(75.8142 -40.2343 0)
(77.5457 -39.4349 0)
(78.5391 -41.1754 0)
(80.2981 -40.2391 0)
(81.4492 -42.003 0)
(82.6843 -43.8539 -1.10164e-20)
(84.0112 -45.7955 -3.29589e-20)
(85.966 -44.5526 -5.50812e-21)
(84.546 -42.6933 0)
(83.2251 -40.9186 0)
(81.9941 -39.2243 0)
(80.845 -37.6054 0)
(79.224 -38.5571 0)
(78.2192 -36.9515 0)
(76.6168 -37.7762 0)
(74.9658 -38.5272 0)
(74.1712 -36.9014 0)
(72.5563 -37.5353 0)
(71.8855 -35.9503 0)
(70.3137 -36.4763 0)
(68.7131 -36.9258 0)
(67.087 -37.2949 -5.53425e-20)
(65.4379 -37.5802 -1.2648e-23)
(63.768 -37.7785 1.10443e-20)
(63.5475 -36.1761 0)
(65.1281 -35.9883 5.53881e-20)
(64.8353 -34.48 -3.87623e-20)
(63.3409 -34.6611 -5.53991e-21)
(61.8334 -34.7602 0)
(60.3125 -34.7752 1.76967e-19)
(58.774 -34.7076 -5.2748e-19)
(57.2041 -34.5666 2.42772e-18)
(57.3928 -33.1051 -6.99829e-19)
(58.8508 -33.2742 -8.82523e-20)
(58.9246 -31.9626 0)
(57.5728 -31.808 0)
(56.2172 -31.5627 1.39579e-18)
(54.849 -31.2439 -2.78136e-18)
(55.2291 -30.1092 -6.95014e-19)
(56.4832 -30.418 -1.75849e-19)
(56.7039 -29.3981 8.82208e-20)
(55.5714 -29.1357 3.49845e-19)
(55.8324 -28.3168 3.5125e-19)
(56.8529 -28.4918 -2.20939e-20)
(57.8953 -28.5764 -2.21484e-20)
(57.8452 -29.561 -3.26991e-23)
(57.7298 -30.6329 1.32758e-19)
(58.9792 -30.7539 4.43331e-20)
(58.9968 -29.6326 -4.43484e-20)
(58.9588 -28.5797 0)
(60.0449 -28.5118 0)
(60.1594 -29.6207 0)
(60.2302 -30.7845 0)
(60.2705 -32.022 5.54107e-21)
(60.2931 -33.3483 7.75794e-20)
(61.723 -33.3322 1.66335e-20)
(63.1429 -33.2321 -5.54575e-21)
(64.5545 -33.0518 0)
(64.2791 -31.6968 0)
(62.9456 -31.8827 0)
(61.6099 -31.993 -5.54719e-21)
(61.4835 -30.7316 0)
(61.3343 -29.5339 0)
(61.1541 -28.3831 0)
(62.2843 -28.2026 0)
(62.522 -29.3809 0)
(62.741 -30.6029 0)
(64.0028 -30.4062 0)
(63.7208 -29.1699 0)
(63.4313 -27.9766 0)
(64.5892 -27.7078 0)
(64.9267 -28.9056 0)
(65.2664 -30.1473 0)
(65.609 -31.4411 0)
(65.9573 -32.7956 0)
(66.3161 -34.2188 0)
(66.6909 -35.7171 -1.1079e-20)
(68.2348 -35.3657 0)
(67.7818 -33.8818 0)
(67.3493 -32.4691 0)
(68.7274 -32.0763 0)
(69.2293 -33.4737 0)
(69.7567 -34.9386 0)
(71.2534 -34.4396 0)
(70.6557 -32.9981 0)
(70.0883 -31.621 0)
(69.5477 -30.3027 0)
(68.247 -30.7407 0)
(66.9329 -31.1211 0)
(66.5288 -29.8309 0)
(66.1352 -28.5917 0)
(65.7516 -27.3975 0)
(66.912 -27.0467 0)
(67.3404 -28.2309 0)
(67.7853 -29.4607 0)
(69.0311 -29.0386 0)
(68.5371 -27.8241 0)
(68.0645 -26.6553 0)
(67.6134 -25.5286 0)
(66.5006 -25.904 0)
(65.3795 -26.2426 0)
(64.2557 -26.5466 0)
(63.1364 -26.8163 0)
(62.0286 -27.053 0)
(60.9403 -27.2576 0)
(59.8785 -27.4279 0)
(58.8486 -27.5589 0)
(57.8533 -27.6417 0)
(56.8925 -27.666 4.42546e-20)
(55.9661 -27.6201 1.32203e-19)
(55.0726 -27.48 1.74725e-19)
(54.1937 -27.2347 -6.82541e-19)
(53.2524 -26.9237 5.10294e-18)
(52.0025 -26.3243 -2.57689e-17)
(51.2383 -25.8156 7.04379e-19)
(49.9057 -25.0034 0)
(49.1342 -24.4301 3.16821e-18)
(48.0558 -23.703 7.53217e-19)
(48.7834 -24.077 -1.40866e-18)
(49.4441 -24.4731 2.22269e-17)
(48.5976 -23.8058 4.4775e-18)
(49.2983 -24.3222 3.21215e-18)
(50.1015 -24.9567 -3.329e-18)
(50.8872 -25.4961 -6.12267e-18)
(49.8945 -24.8486 -3.16207e-18)
(50.5039 -25.2933 0)
(51.4406 -26.1373 1.51456e-18)
(50.6076 -25.4524 1.61196e-18)
(50.0395 -24.9643 3.03583e-18)
(49.2224 -24.3354 -1.54225e-18)
(49.8912 -25.062 0)
(50.4177 -25.8589 0)
(49.8516 -25.423 -1.58593e-18)
(50.2825 -26.4854 1.51888e-18)
(50.7464 -26.8665 2.30502e-17)
(51.3064 -26.6699 -3.75556e-18)
(50.6536 -25.652 -4.05083e-18)
(51.0298 -26.0924 -8.99675e-19)
(51.746 -26.9772 2.41281e-17)
(52.6182 -26.7557 4.79348e-18)
(51.9064 -26.1122 -2.65101e-17)
(52.4766 -26.567 -2.96043e-17)
(53.5283 -26.9157 -2.75204e-18)
(53.3619 -26.9812 2.73736e-18)
(52.4193 -27.4209 -1.27652e-18)
(51.6723 -27.6632 -1.60097e-18)
(51.2953 -27.9137 2.80764e-18)
(50.8984 -27.6876 3.97097e-19)
(50.5907 -27.6154 0)
(50.1646 -27.5151 0)
(50.1077 -29.0677 0)
(49.7137 -30.6745 0)
(49.1837 -31.3655 6.09252e-18)
(48.0032 -33.5579 -2.92043e-18)
(48.5765 -32.5534 -2.18335e-17)
(50.0293 -29.995 6.17879e-18)
(50.4933 -28.6637 -2.36798e-17)
(50.5968 -28.8484 2.59395e-17)
(47.8827 -31.333 -1.40004e-17)
(47.3479 -33.2844 2.64201e-17)
(46.3787 -34.7205 0)
(44.3164 -37.0656 2.63844e-18)
(41.7906 -35.5513 -4.90403e-18)
(44.441 -33.9592 2.99529e-22)
(43.499 -32.3308 1.62798e-17)
(45.4229 -33.1168 3.27672e-17)
(43.4291 -28.8509 -7.82834e-18)
(45.3485 -30.6521 2.81823e-17)
(49.6868 -28.8982 1.21278e-18)
(50.7166 -28.7849 -3.32748e-18)
(50.9617 -28.508 1.74088e-18)
(47.5641 -27.4354 1.40936e-18)
(47.0406 -24.4219 0)
(43.8251 -24.5505 6.93519e-19)
(39.8115 -23.1767 1.55571e-18)
(36.1822 -19.5067 -3.46871e-19)
(35.4066 -15.3044 1.05173e-18)
(35.5767 -12.2578 -8.94041e-23)
(36.0195 -9.99105 5.36924e-19)
(33.8783 -8.81296 2.13289e-18)
(32.4856 -11.2079 1.4283e-18)
(38.0182 -10.4768 1.34417e-19)
(39.807 -10.541 -8.96994e-20)
(40.124 -12.3026 0)
(38.0598 -12.507 0)
(38.4409 -14.9223 7.10573e-19)
(40.7452 -14.2454 0)
(41.8527 -16.2752 0)
(39.5306 -17.6974 3.53571e-19)
(41.9101 -20.1851 -1.76527e-19)
(43.6029 -18.0824 8.9093e-20)
(45.6869 -19.295 -2.2266e-20)
(44.7413 -21.5215 -1.40621e-22)
(47.1682 -21.8896 -2.66649e-19)
(47.5956 -19.8875 2.23014e-19)
(48.1208 -18.1988 5.58262e-20)
(46.5489 -17.5279 -1.11584e-20)
(44.9541 -16.4706 5.58533e-21)
(43.5706 -15.0646 -4.47372e-20)
(42.548 -13.4783 4.47466e-20)
(41.8518 -11.8793 -1.11952e-20)
(41.3972 -10.3537 0)
(42.8034 -10.0223 0)
(44.0507 -9.61108 0)
(45.1641 -9.16024 0)
(45.6831 -10.1976 0)
(44.5785 -10.7796 0)
(43.3163 -11.3516 1.11987e-20)
(44.0138 -12.6975 0)
(45.2462 -11.9358 0)
(46.3083 -11.2083 0)
(47.2413 -10.5204 0)
(46.6625 -9.62402 0)
(46.1651 -8.69436 0)
(47.0715 -8.22852 0)
(47.8977 -7.77191 0)
(48.6548 -7.33002 0)
(49.0615 -8.03037 0)
(48.3361 -8.53666 0)
(47.5409 -9.06866 0)
(48.0735 -9.87324 0)
(48.8245 -9.26575 0)
(49.5084 -8.69612 0)
(49.9963 -9.31905 0)
(49.3634 -9.94773 0)
(48.6702 -10.6262 0)
(47.9039 -11.3608 0)
(47.0463 -12.1598 0)
(46.0704 -13.0334 0)
(44.9349 -13.9953 0)
(46.0775 -15.1482 -3.62475e-24)
(47.0411 -14.0142 0)
(47.8869 -13.0157 0)
(48.8014 -13.7468 0)
(48.11 -14.8288 0)
(47.3595 -16.0689 -1.67635e-20)
(48.667 -16.7369 -1.11663e-20)
(49.216 -15.4636 0)
(49.7563 -14.3436 0)
(50.2779 -13.3446 0)
(49.4394 -12.785 0)
(48.6422 -12.1217 0)
(49.3256 -11.3118 0)
(49.9499 -10.572 0)
(50.5245 -9.89194 0)
(51.0924 -10.4101 0)
(50.5798 -11.1313 0)
(50.0304 -11.9188 0)
(50.7765 -12.4434 0)
(51.2511 -11.6236 0)
(51.702 -10.8726 0)
(52.3551 -11.2813 0)
(51.9629 -12.051 0)
(51.5585 -12.8889 0)
(51.1448 -13.806 0)
(50.7276 -14.8166 0)
(50.3166 -15.9385 0)
(49.9212 -17.1865 0)
(49.554 -18.5722 -2.23325e-20)
(49.2681 -20.132 -1.1159e-19)
(49.169 -21.9309 7.80263e-20)
(49.3928 -23.9957 7.1045e-19)
(50.0884 -26.1639 -2.11513e-18)
(51.4544 -27.4444 0)
(52.6881 -26.522 0)
(53.6229 -25.8604 -8.82197e-20)
(54.1349 -26.6474 0)
(54.3127 -26.9646 0)
(55.0959 -26.9861 -2.62933e-19)
(54.8915 -26.3698 1.76342e-19)
(54.4823 -25.3905 1.77427e-19)
(54.0205 -24.1477 -8.89772e-20)
(52.9739 -24.5963 2.22205e-20)
(51.7461 -25.2393 1.77339e-19)
(51.1319 -23.5507 -1.78096e-19)
(50.8359 -21.8469 -1.11517e-20)
(50.7688 -20.2432 6.27779e-24)
(52.1096 -20.2662 2.23077e-20)
(52.2211 -21.6848 0)
(52.4955 -23.1461 -4.45449e-20)
(53.6589 -22.8278 2.50577e-20)
(53.4249 -21.5113 0)
(53.3068 -20.2256 -1.34403e-24)
(54.4155 -20.1645 -2.78358e-21)
(54.5307 -21.3616 -1.11265e-20)
(54.728 -22.5856 1.11259e-20)
(55.0089 -23.8231 -2.22319e-20)
(55.3598 -25.0363 2.2213e-20)
(55.7044 -26.1128 -4.43298e-20)
(55.9248 -26.9435 1.76682e-19)
(56.7939 -26.8298 2.218e-23)
(56.566 -25.8671 -4.43507e-20)
(56.2699 -24.7528 0)
(57.2146 -24.5157 2.77562e-21)
(57.4761 -25.6416 0)
(57.7068 -26.6851 0)
(58.6652 -26.5201 0)
(58.4327 -25.4311 0)
(58.1915 -24.3069 -2.77757e-21)
(57.9717 -23.1844 0)
(56.9735 -23.3662 0)
(55.9875 -23.5726 0)
(55.7575 -22.3936 -2.78081e-21)
(55.5863 -21.2344 0)
(55.4745 -20.1008 0)
(56.5034 -20.0339 0)
(56.6156 -21.1196 0)
(56.7727 -22.2312 0)
(57.7838 -22.0834 0)
(57.63 -21.0078 0)
(57.5114 -19.9591 0)
(57.4279 -18.9405 0)
(56.4354 -18.9794 0)
(55.4201 -19.0013 0)
(54.3754 -19.0068 0)
(53.2847 -18.9868 2.78431e-21)
(52.1203 -18.9154 -2.78673e-21)
(50.8747 -18.7821 0)
(51.1024 -17.4726 0)
(51.39 -16.2808 0)
(51.7029 -15.1853 0)
(52.6723 -15.4655 0)
(52.4313 -16.5203 0)
(52.2344 -17.6636 2.78565e-21)
(53.3372 -17.8041 0)
(53.4556 -16.6977 0)
(53.6299 -15.6741 0)
(53.8376 -14.7222 0)
(52.9336 -14.4846 0)
(52.0322 -14.1815 0)
(52.3712 -13.2627 0)
(52.7122 -12.4184 0)
(53.0501 -11.6392 0)
(53.7805 -11.9497 0)
(53.4927 -12.7313 0)
(53.2086 -13.574 0)
(54.0612 -13.8304 0)
(54.2944 -12.9949 0)
(54.5351 -12.2156 0)
(55.3021 -12.4393 0)
(55.1055 -13.2123 0)
(54.9153 -14.0327 0)
(54.7367 -14.9047 0)
(54.5844 -15.8384 0)
(54.4698 -16.8368 0)
(54.3979 -17.8963 0)
(55.4173 -17.9438 0)
(55.4578 -16.9321 0)
(55.5339 -15.967 0)
(56.4609 -16.0527 0)
(56.4191 -16.9857 0)
(56.4088 -17.9619 0)
(57.3781 -17.9558 0)
(57.3591 -17.0083 0)
(57.3675 -16.1004 0)
(57.3991 -15.2332 0)
(56.5275 -15.1639 0)
(55.6372 -15.0521 0)
(55.7644 -14.191 0)
(55.9123 -13.3829 0)
(56.0706 -12.6206 0)
(56.8324 -12.7609 0)
(56.7157 -13.5168 0)
(56.6135 -14.3176 0)
(57.4496 -14.4063 0)
(57.5154 -13.6184 0)
(57.5934 -12.869 0)
(58.3457 -12.9443 0)
(58.302 -13.6818 0)
(58.2707 -14.4558 0)
(58.2547 -15.267 0)
(58.2569 -16.1159 0)
(58.2802 -17.0022 0)
(58.3276 -17.9249 0)
(58.4013 -18.8821 0)
(58.5032 -19.8718 0)
(58.6341 -20.8912 0)
(58.7937 -21.9383 0)
(58.981 -23.0124 0)
(59.1945 -24.112 0)
(59.4285 -25.2275 0)
(59.6657 -26.3375 0)
(60.7011 -26.1388 0)
(60.454 -25.0225 0)
(60.2162 -23.9185 0)
(61.2493 -23.7166 0)
(61.4998 -24.8077 0)
(61.7631 -25.9216 0)
(62.8425 -25.6829 0)
(62.5575 -24.5763 0)
(62.2874 -23.4989 0)
(62.0352 -22.4527 0)
(61.0171 -22.6543 0)
(59.9976 -22.8387 0)
(59.8015 -21.7867 0)
(59.6289 -20.763 0)
(59.4809 -19.7678 0)
(60.4452 -19.6437 0)
(60.6142 -20.618 0)
(60.8051 -21.6215 0)
(61.8022 -21.4374 0)
(61.589 -20.4523 0)
(61.3962 -19.4969 0)
(62.3336 -19.3256 0)
(62.5521 -20.263 0)
(62.7904 -21.2307 0)
(63.0481 -22.2293 0)
(63.3247 -23.2596 4.43589e-20)
(63.6196 -24.3227 -2.32564e-23)
(63.931 -25.4185 -4.43725e-20)
(65.0214 -25.1247 0)
(64.68 -24.0423 0)
(64.3568 -22.9946 0)
(65.3796 -22.7016 0)
(65.7336 -23.733 0)
(66.1074 -24.8001 0)
(67.1839 -24.4414 0)
(66.7761 -23.3916 0)
(66.3899 -22.3781 0)
(66.0252 -21.399 0)
(65.0458 -21.7042 0)
(64.0525 -21.9805 0)
(63.7676 -20.9987 0)
(63.5023 -20.0482 0)
(63.2568 -19.1284 0)
(64.165 -18.9044 0)
(64.4384 -19.8067 0)
(64.732 -20.7397 0)
(65.6816 -20.4525 0)
(65.3591 -19.5376 0)
(65.0573 -18.6534 0)
(64.7759 -17.7992 0)
(63.9116 -18.0325 0)
(63.0311 -18.2388 0)
(62.1352 -18.4185 0)
(61.2243 -18.5717 0)
(60.2985 -18.6994 0)
(59.3577 -18.8023 0)
(59.259 -17.8684 0)
(59.1836 -16.9675 0)
(59.1298 -16.1009 0)
(59.987 -16.056 0)
(60.0704 -16.9046 0)
(60.1738 -17.786 0)
(61.0729 -17.6772 0)
(60.9415 -16.8139 0)
(60.8291 -15.9823 0)
(60.7345 -15.1825 0)
(59.9221 -15.2406 0)
(59.0956 -15.2691 0)
(59.0787 -14.4726 0)
(59.0768 -13.7111 0)
(59.0879 -12.9842 0)
(59.8205 -12.9934 0)
(59.8406 -13.7095 0)
(59.8739 -14.4585 0)
(60.6563 -14.4147 0)
(60.5931 -13.6784 0)
(60.5432 -12.9735 0)
(61.2556 -12.9257 0)
(61.3339 -13.619 0)
(61.4259 -14.3423 0)
(61.533 -15.0961 0)
(61.6564 -15.8805 0)
(61.7972 -16.6958 0)
(61.9566 -17.5418 0)
(62.8249 -17.3795 0)
(62.6378 -16.5504 0)
(62.469 -15.7512 0)
(63.2667 -15.5951 0)
(63.463 -16.3781 0)
(63.6777 -17.1905 0)
(64.5146 -16.9747 0)
(64.2725 -16.1793 0)
(64.0492 -15.4126 0)
(63.8436 -14.6743 0)
(63.0879 -14.8412 0)
(62.3175 -14.982 0)
(62.1825 -14.2425 0)
(62.0627 -13.5323 0)
(61.9569 -12.851 0)
(62.6468 -12.7504 0)
(62.779 -13.4193 0)
(62.9257 -14.1161 0)
(63.655 -13.9639 0)
(63.4823 -13.2809 0)
(63.3246 -12.6249 0)
(63.1808 -11.9953 0)
(62.528 -12.1088 0)
(61.8641 -12.198 0)
(61.1897 -12.2618 0)
(60.5053 -12.2993 0)
(59.8119 -12.3094 0)
(59.11 -12.291 0)
(58.3996 -12.242 0)
(57.6811 -12.1591 0)
(56.9604 -12.0466 0)
(56.2343 -11.9002 0)
(55.5046 -11.7131 0)
(54.7792 -11.4877 0)
(54.0676 -11.2229 0)
(53.3818 -10.9176 0)
(52.7335 -10.5709 0)
(52.1299 -10.181 0)
(51.5721 -9.74581 0)
(51.0565 -9.26369 0)
(50.5784 -8.73484 0)
(50.1357 -8.16215 0)
(49.7274 -7.55056 0)
(49.352 -6.90601 0)
(49.0066 -6.2344 0)
(48.6861 -5.54207 0)
(48.3825 -4.83321 0)
(48.0838 -4.09603 0)
(47.771 -3.3446 0)
(48.5069 -3.17666 0)
(48.8047 -3.88212 0)
(49.4817 -3.67222 0)
(49.2002 -3.01089 0)
(49.8524 -2.84924 0)
(50.1171 -3.4684 0)
(50.3689 -4.0784 0)
(49.7497 -4.3217 0)
(49.0887 -4.57393 0)
(49.3758 -5.23562 0)
(50.0193 -4.93993 0)
(50.6202 -4.65649 0)
(51.182 -4.38612 0)
(50.949 -3.84523 0)
(50.7134 -3.2721 0)
(50.4655 -2.69297 0)
(51.0411 -2.54303 0)
(51.2732 -3.08441 0)
(51.7986 -2.90631 0)
(51.5808 -2.40019 0)
(52.0874 -2.26451 0)
(52.292 -2.73854 0)
(52.4798 -3.21147 0)
(52.0025 -3.4117 0)
(51.4928 -3.6229 0)
(51.7074 -4.12914 0)
(52.1987 -3.88548 0)
(52.6579 -3.65472 0)
(53.0869 -3.43619 0)
(52.9264 -3.02147 0)
(52.7552 -2.58017 0)
(52.5646 -2.1355 0)
(53.0138 -2.01315 0)
(53.1894 -2.42967 0)
(53.5961 -2.28677 0)
(53.4352 -1.89753 0)
(53.8298 -1.78826 0)
(53.9762 -2.15129 0)
(54.0984 -2.50706 0)
(53.734 -2.66953 0)
(53.3438 -2.84092 0)
(53.4878 -3.22912 0)
(53.8623 -3.0329 0)
(54.212 -2.84699 0)
(54.5384 -2.67085 0)
(54.4384 -2.35313 0)
(54.3311 -2.02293 0)
(54.1988 -1.68495 0)
(54.5433 -1.5872 0)
(54.6618 -1.90128 0)
(54.9695 -1.78592 0)
(54.8642 -1.49465 0)
(55.1628 -1.4069 0)
(55.2553 -1.67646 0)
(55.3246 -1.93787 0)
(55.0504 -2.06901 0)
(54.7554 -2.20728 0)
(54.8427 -2.50393 0)
(55.126 -2.34565 0)
(55.3896 -2.19545 0)
(55.4538 -2.43725 0)
(55.2014 -2.60596 0)
(54.9299 -2.78369 0)
(54.6383 -2.97113 0)
(54.3255 -3.16896 0)
(53.9903 -3.3779 0)
(53.6314 -3.59864 0)
(53.2472 -3.83194 0)
(52.8359 -4.07865 0)
(52.3956 -4.33963 0)
(51.9241 -4.61566 0)
(51.4193 -4.90738 0)
(50.8785 -5.21519 0)
(50.2986 -5.53924 0)
(49.6761 -5.87926 0)
(49.9965 -6.50149 0)
(50.5942 -6.1171 0)
(51.1498 -5.75283 0)
(51.4386 -6.26577 0)
(50.9103 -6.66913 0)
(50.3416 -7.09706 0)
(50.7142 -7.66155 0)
(51.2501 -7.19208 0)
(51.748 -6.75159 0)
(52.2119 -6.33804 0)
(51.9302 -5.88576 0)
(51.6672 -5.40827 0)
(52.1497 -5.08274 0)
(52.6001 -4.77542 0)
(53.0206 -4.48537 0)
(53.2164 -4.87299 0)
(52.8167 -5.19068 0)
(52.3887 -5.52783 0)
(52.6447 -5.94952 0)
(53.0492 -5.58424 0)
(53.4273 -5.2405 0)
(53.6591 -5.58755 0)
(53.3028 -5.95544 0)
(52.9224 -6.34676 0)
(52.5161 -6.76357 0)
(52.0817 -7.20809 0)
(51.6163 -7.68286 0)
(51.1166 -8.19069 0)
(51.5511 -8.68111 0)
(52.0126 -8.13921 0)
(52.4443 -7.63385 0)
(52.8434 -8.02885 0)
(52.4451 -8.56042 0)
(52.0221 -9.13117 0)
(52.536 -9.54127 0)
(52.9215 -8.94734 0)
(53.2874 -8.39428 0)
(53.6349 -7.87796 0)
(53.2189 -7.53253 0)
(52.8489 -7.16155 0)
(53.2287 -6.7193 0)
(53.5855 -6.30448 0)
(53.921 -5.91479 0)
(54.224 -6.224 0)
(53.9078 -6.63279 0)
(53.5732 -7.06813 0)
(53.965 -7.39491 0)
(54.2786 -6.94213 0)
(54.5767 -6.51703 0)
(54.8601 -6.11733 0)
(54.523 -5.83959 0)
(54.2366 -5.54816 0)
(53.9931 -5.24124 0)
(53.781 -4.91671 0)
(53.59 -4.57347 0)
(53.4135 -4.21157 0)
(53.7805 -3.95297 0)
(54.1234 -3.70855 0)
(54.4435 -3.47735 0)
(54.5699 -3.77139 0)
(54.2653 -4.02386 0)
(53.9391 -4.29084 0)
(54.1118 -4.61136 0)
(54.4212 -4.32303 0)
(54.7104 -4.05042 0)
(54.9805 -3.79231 0)
(54.8541 -3.53237 0)
(54.7422 -3.25847 0)
(55.0206 -3.05107 0)
(55.2795 -2.85429 0)
(55.5199 -2.6673 0)
(55.5939 -2.88607 0)
(55.3652 -3.09065 0)
(55.1189 -3.30578 0)
(55.2326 -3.54761 0)
(55.4676 -3.31527 0)
(55.6866 -3.09436 0)
(55.8133 -3.29561 0)
(55.6009 -3.53092 0)
(55.3744 -3.77869 0)
(55.1327 -4.03986 0)
(54.8749 -4.31548 0)
(54.5997 -4.6067 0)
(54.3062 -4.91481 0)
(54.5336 -5.20276 0)
(54.8132 -4.8769 0)
(55.0766 -4.56911 0)
(55.3273 -4.81412 0)
(55.0736 -5.13629 0)
(54.8058 -5.4776 0)
(55.1296 -5.74101 0)
(55.386 -5.38628 0)
(55.63 -5.05154 0)
(55.8622 -4.73532 0)
(55.5678 -4.50969 0)
(55.3249 -4.27805 0)
(55.559 -4.00251 0)
(55.78 -3.74145 0)
(55.9889 -3.4939 0)
(56.2187 -3.69109 0)
(56.0127 -3.94925 0)
(55.796 -4.22178 0)
(56.0833 -4.43633 0)
(56.2938 -4.15335 0)
(56.4941 -3.88529 0)
(56.6847 -3.6311 0)
(56.4146 -3.44636 0)
(56.1866 -3.25901 0)
(56.0126 -3.07193 0)
(55.8903 -2.88401 0)
(55.8059 -2.69116 0)
(55.7424 -2.48928 0)
(55.6877 -2.27688 0)
(55.6344 -2.05285 0)
(55.5791 -1.81351 0)
(55.52 -1.57258 0)
(55.4401 -1.32345 0)
(55.6971 -1.24351 0)
(55.7642 -1.47402 0)
(55.9902 -1.3801 0)
(55.9348 -1.16604 0)
(56.1544 -1.09191 0)
(56.1998 -1.29021 0)
(56.2343 -1.47841 0)
(56.0331 -1.5846 0)
(55.8149 -1.69578 0)
(55.861 -1.91738 0)
(56.0699 -1.78831 0)
(56.2615 -1.66457 0)
(56.4364 -1.54536 0)
(56.4188 -1.37629 0)
(56.3928 -1.20418 0)
(56.3565 -1.02141 0)
(56.5416 -0.954156 0)
(56.5692 -1.12168 0)
(56.7294 -1.04221 0)
(56.7104 -0.889575 0)
(56.8633 -0.827093 0)
(56.8737 -0.965238 0)
(56.8748 -1.09019 0)
(56.7388 -1.1826 0)
(56.5869 -1.27782 0)
(56.5953 -1.43019 0)
(56.7385 -1.31866 0)
(56.8667 -1.21038 0)
(56.9805 -1.10511 0)
(56.9954 -1.00021 0)
(57.0026 -0.890083 0)
(57.0009 -0.766031 0)
(57.1237 -0.705546 0)
(57.1166 -0.81563 0)
(57.2163 -0.740643 0)
(57.2317 -0.644947 0)
(57.3251 -0.584289 0)
(57.3027 -0.666004 0)
(57.2734 -0.739217 0)
(57.1929 -0.825528 0)
(57.1007 -0.912299 0)
(57.0804 -1.00289 0)
(57.1678 -0.903547 0)
(57.2436 -0.805535 0)
(57.3086 -0.708516 0)
(57.3421 -0.653215 0)
(57.376 -0.591679 0)
(57.4041 -0.523474 0)
(57.4692 -0.462147 1.03944e-20)
(57.4367 -0.517304 0)
(57.4854 -0.442653 -2.02635e-20)
(57.5205 -0.400146 -1.02848e-20)
(57.5587 -0.337245 3.40255e-24)
(57.5229 -0.367678 -1.97735e-20)
(57.4844 -0.39555 0)
(57.4466 -0.481255 0)
(57.3996 -0.567252 0)
(57.3641 -0.612675 0)
(57.4113 -0.518293 0)
(57.4519 -0.42573 0)
(57.4511 -0.463937 0)
(57.4012 -0.560571 0)
(57.3477 -0.660826 0)
(57.2886 -0.764354 0)
(57.2225 -0.870762 0)
(57.1478 -0.979759 0)
(57.0628 -1.09145 0)
(56.9664 -1.20645 0)
(56.8578 -1.32504 0)
(56.736 -1.44728 0)
(56.6003 -1.57336 0)
(56.4499 -1.70358 0)
(56.2842 -1.83838 0)
(56.1024 -1.97832 0)
(55.9038 -2.12418 0)
(55.9478 -2.31947 0)
(56.1366 -2.15707 0)
(56.3095 -2.00129 0)
(56.349 -2.15687 0)
(56.1825 -2.32727 0)
(56.0018 -2.50513 0)
(56.0799 -2.68348 0)
(56.2563 -2.49211 0)
(56.4206 -2.30931 0)
(56.5739 -2.13457 0)
(56.5023 -1.99336 0)
(56.4674 -1.85141 0)
(56.6111 -1.70688 0)
(56.7417 -1.56731 0)
(56.8601 -1.43251 0)
(56.8936 -1.54027 0)
(56.7734 -1.68527 0)
(56.6433 -1.83626 0)
(56.7174 -1.96748 0)
(56.8522 -1.80775 0)
(56.9793 -1.6552 0)
(57.1253 -1.77982 0)
(56.9903 -1.93857 0)
(56.8486 -2.10523 0)
(56.6995 -2.28018 0)
(56.5423 -2.46382 0)
(56.376 -2.65664 0)
(56.1998 -2.85915 0)
(56.374 -3.03602 0)
(56.5519 -2.82423 0)
(56.7209 -2.62296 0)
(56.9467 -2.78429 0)
(56.7782 -2.99377 0)
(56.6009 -3.2142 0)
(56.8657 -3.38982 0)
(57.0375 -3.16052 0)
(57.2002 -2.94232 0)
(57.3539 -2.73436 0)
(57.1066 -2.58496 0)
(56.8818 -2.43157 0)
(57.0348 -2.24945 0)
(57.1803 -2.07596 0)
(57.3183 -1.91053 0)
(57.5359 -2.04041 0)
(57.4012 -2.21374 0)
(57.2581 -2.39502 0)
(57.4987 -2.53585 0)
(57.6346 -2.34603 0)
(57.7619 -2.16419 0)
(57.8807 -1.9897 0)
(57.6621 -1.87438 0)
(57.4487 -1.75255 0)
(57.2537 -1.6286 0)
(57.0998 -1.50968 0)
(57.0051 -1.40121 0)
(56.9674 -1.30239 0)
(57.0645 -1.17699 0)
(57.1526 -1.05621 0)
(57.2331 -0.939781 0)
(57.299 -1.01972 0)
(57.2067 -1.14109 0)
(57.1091 -1.26817 0)
(57.2143 -1.37109 0)
(57.3233 -1.23916 0)
(57.427 -1.11339 0)
(57.5252 -0.993109 0)
(57.3868 -0.903727 0)
(57.3077 -0.827598 0)
(57.3777 -0.719742 0)
(57.4441 -0.616313 0)
(57.5081 -0.517224 0)
(57.6259 -0.584183 0)
(57.5501 -0.686514 0)
(57.4705 -0.792793 0)
(57.6175 -0.877644 0)
(57.7036 -0.766295 0)
(57.7835 -0.658061 0)
(57.957 -0.73125 0)
(57.8789 -0.847393 0)
(57.7938 -0.96614 0)
(57.7006 -1.08851 0)
(57.5996 -1.2152 0)
(57.4912 -1.34693 0)
(57.3758 -1.48449 0)
(57.5713 -1.60141 0)
(57.6858 -1.45646 0)
(57.792 -1.31697 0)
(57.9891 -1.41377 0)
(57.8887 -1.56169 0)
(57.7797 -1.71501 0)
(57.9909 -1.82194 0)
(58.0928 -1.66034 0)
(58.1866 -1.5043 0)
(58.2724 -1.35326 0)
(58.0809 -1.27067 0)
(57.8897 -1.18224 0)
(57.9787 -1.05166 0)
(58.0593 -0.924575 0)
(58.1329 -0.799998 0)
(58.3084 -0.863914 0)
(58.2395 -0.99657 0)
(58.1643 -1.13183 0)
(58.3503 -1.20666 0)
(58.4207 -1.06377 0)
(58.4853 -0.923589 0)
(58.6661 -0.979579 0)
(58.6054 -1.12677 0)
(58.5393 -1.27675 0)
(58.4664 -1.43051 0)
(58.3862 -1.58884 0)
(58.2987 -1.75235 0)
(58.2036 -1.92162 0)
(58.101 -2.09724 0)
(57.9905 -2.27981 0)
(57.872 -2.46993 0)
(57.7452 -2.66823 0)
(57.6099 -2.87541 0)
(57.4659 -3.09219 0)
(57.313 -3.31938 0)
(57.151 -3.55782 0)
(56.9797 -3.80841 0)
(56.7989 -4.07212 0)
(56.6085 -4.34996 0)
(56.4081 -4.64303 0)
(56.1976 -4.95248 0)
(55.9765 -5.2796 0)
(55.7446 -5.62574 0)
(55.5015 -5.99242 0)
(55.2466 -6.38128 0)
(54.9796 -6.79419 0)
(54.7001 -7.23317 0)
(54.4074 -7.70055 0)
(54.1012 -8.19896 0)
(53.7811 -8.73139 0)
(53.4466 -9.30134 0)
(53.0974 -9.91291 0)
(53.705 -10.2474 0)
(54.0186 -9.62312 0)
(54.3218 -9.04037 0)
(54.8997 -9.32023 0)
(54.6289 -9.91242 0)
(54.351 -10.5453 0)
(55.0233 -10.8065 0)
(55.2648 -10.1683 0)
(55.502 -9.56939 0)
(55.7336 -9.00671 0)
(55.1624 -8.76514 0)
(54.614 -8.49521 0)
(54.8952 -7.98428 0)
(55.1653 -7.50465 0)
(55.4242 -7.05372 0)
(55.8972 -7.29277 0)
(55.6616 -7.75404 0)
(55.4165 -8.24401 0)
(55.9587 -8.47736 0)
(56.1765 -7.97879 0)
(56.3867 -7.50868 0)
(56.8853 -7.69992 0)
(56.7016 -8.17727 0)
(56.512 -8.68272 0)
(56.3171 -9.21837 0)
(56.1176 -9.78657 0)
(55.9146 -10.3898 0)
(55.7097 -11.0309 0)
(56.4013 -11.219 0)
(56.57 -10.5771 0)
(56.7389 -9.97135 0)
(57.3621 -10.1244 0)
(57.2262 -10.731 0)
(57.0923 -11.371 0)
(57.7773 -11.4875 0)
(57.88 -10.85 0)
(57.9848 -10.2462 0)
(58.0904 -9.67339 0)
(57.498 -9.55093 0)
(56.9063 -9.39963 0)
(57.071 -8.85953 0)
(57.2323 -8.349 0)
(57.3894 -7.8661 0)
(57.8979 -8.00752 0)
(57.7667 -8.4943 0)
(57.6332 -9.00817 0)
(58.1973 -9.12951 0)
(58.3039 -8.6139 0)
(58.4097 -8.12486 0)
(58.514 -7.66069 0)
(58.026 -7.54618 0)
(57.542 -7.40902 0)
(57.0627 -7.24871 0)
(56.589 -7.06494 0)
(56.1234 -6.85798 0)
(55.6723 -6.62922 0)
(55.9096 -6.22908 0)
(56.1363 -5.85147 0)
(56.3526 -5.4947 0)
(56.7452 -5.69341 0)
(56.5474 -6.06003 0)
(56.3401 -6.44767 0)
(56.7831 -6.64566 0)
(56.9691 -6.2491 0)
(57.1469 -5.87368 0)
(57.3167 -5.51794 0)
(56.9338 -5.34632 0)
(56.5588 -5.15725 0)
(56.755 -4.83773 0)
(56.9416 -4.53486 0)
(57.1187 -4.24744 0)
(57.4459 -4.40892 0)
(57.284 -4.70529 0)
(57.1133 -5.01737 0)
(57.4785 -5.18053 0)
(57.6325 -4.86021 0)
(57.7789 -4.55583 0)
(58.118 -4.68821 0)
(57.987 -4.99951 0)
(57.8496 -5.32693 0)
(57.7057 -5.67162 0)
(57.555 -6.03478 0)
(57.3976 -6.41773 0)
(57.2335 -6.82187 0)
(57.6895 -6.97614 0)
(57.832 -6.56588 0)
(57.9691 -6.17677 0)
(58.3889 -6.2999 0)
(58.2718 -6.69383 0)
(58.1507 -7.10879 0)
(58.6164 -7.22023 0)
(58.7164 -6.80193 0)
(58.8139 -6.40444 0)
(58.9085 -6.02661 0)
(58.502 -5.92575 0)
(58.1008 -5.80748 0)
(58.2272 -5.45675 0)
(58.3481 -5.12338 0)
(58.4638 -4.80626 0)
(58.816 -4.91003 0)
(58.7156 -5.23196 0)
(58.6109 -5.57017 0)
(59 -5.66728 0)
(59.0884 -5.32528 0)
(59.1736 -4.99951 0)
(59.5354 -5.07464 0)
(59.4655 -5.40333 0)
(59.3934 -5.74816 0)
(59.3191 -6.11019 0)
(59.2428 -6.49061 0)
(59.1648 -6.89051 0)
(59.0854 -7.31085 0)
(59.005 -7.75308 0)
(58.9238 -8.2189 0)
(58.8424 -8.70861 0)
(58.762 -9.22365 0)
(58.682 -9.76636 0)
(58.6039 -10.3382 0)
(58.5306 -10.9395 0)
(58.4622 -11.5737 0)
(59.1411 -11.6306 0)
(59.1793 -11.002 0)
(59.2237 -10.4031 0)
(59.8392 -10.4413 0)
(59.8226 -11.0345 0)
(59.8131 -11.6568 0)
(60.478 -11.655 0)
(60.4598 -11.0399 0)
(60.4495 -10.4529 0)
(60.446 -9.89301 0)
(59.8614 -9.87645 0)
(59.2729 -9.83359 0)
(59.325 -9.29284 0)
(59.3805 -8.7785 0)
(59.4389 -8.28897 0)
(59.9537 -8.33724 0)
(59.9194 -8.82526 0)
(59.8882 -9.3382 0)
(60.4483 -9.35904 0)
(60.4556 -8.84989 0)
(60.4669 -8.36484 0)
(60.9775 -8.37063 0)
(60.9882 -8.85203 0)
(61.0039 -9.3567 0)
(61.0256 -9.88551 0)
(61.054 -10.4394 0)
(61.0901 -11.0195 0)
(61.1349 -11.6267 0)
(61.783 -11.5726 0)
(61.7126 -10.9742 0)
(61.6516 -10.4019 0)
(62.2415 -10.3411 0)
(62.3264 -10.9049 0)
(62.4216 -11.4939 0)
(63.0499 -11.3914 0)
(62.9309 -10.8125 0)
(62.8228 -10.2579 0)
(62.7248 -9.72691 0)
(62.1659 -9.80171 0)
(61.5992 -9.85484 0)
(61.5544 -9.33206 0)
(61.5163 -8.83269 0)
(61.4843 -8.35585 0)
(61.9863 -8.32115 0)
(62.0391 -8.79258 0)
(62.0987 -9.28581 0)
(62.636 -9.21864 0)
(62.5555 -8.73232 0)
(62.4826 -8.26713 0)
(62.4167 -7.8222 0)
(61.9396 -7.87061 0)
(61.4575 -7.9005 0)
(60.9711 -7.91136 0)
(60.4814 -7.90261 0)
(59.9896 -7.8732 0)
(59.4976 -7.82346 0)
(59.5562 -7.38106 0)
(59.6154 -6.95992 0)
(59.6744 -6.55864 0)
(60.1074 -6.6084 0)
(60.067 -7.00981 0)
(60.0272 -7.43107 0)
(60.4988 -7.46153 0)
(60.5187 -7.04114 0)
(60.5403 -6.6407 0)
(60.5626 -6.25879 0)
(60.1475 -6.22588 0)
(59.7325 -6.17658 0)
(59.7896 -5.81285 0)
(59.8456 -5.46617 0)
(59.9003 -5.13545 0)
(60.2672 -5.18201 0)
(60.2276 -5.51394 0)
(60.1875 -5.86151 0)
(60.5859 -5.89432 0)
(60.6104 -5.54644 0)
(60.6352 -5.21423 0)
(61.0033 -5.23248 0)
(60.9933 -5.56418 0)
(60.9846 -5.91157 0)
(60.9775 -6.27532 0)
(60.9722 -6.65597 0)
(60.969 -7.05479 0)
(60.9685 -7.47299 0)
(61.4353 -7.46563 0)
(61.4171 -7.05043 0)
(61.4025 -6.65402 0)
(61.8301 -6.63548 0)
(61.8621 -7.02861 0)
(61.8984 -7.44003 0)
(62.357 -7.3967 0)
(62.303 -6.98983 0)
(62.2541 -6.60075 0)
(62.2099 -6.22863 0)
(61.802 -6.25971 0)
(61.3909 -6.27539 0)
(61.382 -5.91352 0)
(61.3754 -5.56769 0)
(61.3707 -5.23714 0)
(61.7368 -5.22821 0)
(61.7557 -5.55684 0)
(61.7773 -5.90042 0)
(62.1698 -5.87262 0)
(62.1335 -5.53199 0)
(62.1007 -5.20598 0)
(62.0709 -4.89379 0)
(61.7203 -4.9137 0)
(61.3678 -4.921 0)
(61.0141 -4.91539 0)
(60.66 -4.89677 0)
(60.3061 -4.865 0)
(59.9534 -4.81981 0)
(59.6029 -4.76116 0)
(59.2554 -4.689 0)
(58.9121 -4.60337 0)
(58.5742 -4.50434 0)
(58.2427 -4.39199 0)
(57.9179 -4.26632 0)
(57.5995 -4.12717 0)
(57.2865 -3.97439 0)
(57.4453 -3.71468 0)
(57.5952 -3.46736 0)
(57.7367 -3.23153 0)
(58.0118 -3.35981 0)
(57.8821 -3.60353 0)
(57.7448 -3.85902 0)
(58.0497 -3.99067 0)
(58.1746 -3.72795 0)
(58.2927 -3.47725 0)
(58.4043 -3.23773 0)
(58.1341 -3.12703 0)
(57.8698 -3.00635 0)
(57.9949 -2.79105 0)
(58.1122 -2.58488 0)
(58.2221 -2.38716 0)
(58.4587 -2.48661 0)
(58.3573 -2.69116 0)
(58.2492 -2.9044 0)
(58.5096 -3.00859 0)
(58.6087 -2.78906 0)
(58.7018 -2.5784 0)
(58.9516 -2.66246 0)
(58.8669 -2.87859 0)
(58.7768 -3.10371 0)
(58.6814 -3.33859 0)
(58.5804 -3.58402 0)
(58.4737 -3.84082 0)
(58.3612 -4.10984 0)
(58.6794 -4.21664 0)
(58.7796 -3.9422 0)
(58.8748 -3.68012 0)
(59.1752 -3.76538 0)
(59.0917 -4.03197 0)
(59.004 -4.311 0)
(59.3338 -4.39281 0)
(59.4089 -4.10999 0)
(59.4806 -3.83963 0)
(59.5489 -3.58088 0)
(59.2546 -3.51036 0)
(58.9651 -3.42953 0)
(59.0505 -3.18961 0)
(59.1313 -2.95955 0)
(59.2073 -2.73857 0)
(59.4683 -2.8065 0)
(59.4011 -3.03171 0)
(59.3299 -3.26607 0)
(59.6138 -3.33289 0)
(59.6753 -3.09488 0)
(59.7335 -2.86603 0)
(59.7883 -2.64556 0)
(59.5315 -2.58964 0)
(59.2788 -2.52592 0)
(59.031 -2.45459 0)
(58.7891 -2.37589 0)
(58.5536 -2.29006 0)
(58.3246 -2.19723 0)
(58.42 -2.01446 0)
(58.5085 -1.83823 0)
(58.5903 -1.66791 0)
(58.8002 -1.74174 0)
(58.7242 -1.91829 0)
(58.6421 -2.10084 0)
(58.8706 -2.18082 0)
(58.9463 -1.99251 0)
(59.0165 -1.81025 0)
(59.0809 -1.63335 0)
(58.87 -1.57055 0)
(58.6652 -1.5029 0)
(58.7335 -1.34251 0)
(58.7953 -1.18591 0)
(58.8523 -1.03212 0)
(59.0442 -1.08117 0)
(58.9912 -1.24119 0)
(58.9336 -1.40399 0)
(59.1395 -1.46105 0)
(59.1927 -1.29246 0)
(59.2416 -1.1266 0)
(59.444 -1.16822 0)
(59.3994 -1.33953 0)
(59.3509 -1.51348 0)
(59.2973 -1.69107 0)
(59.2385 -1.8732 0)
(59.1745 -2.06068 0)
(59.1053 -2.25424 0)
(59.3456 -2.32084 0)
(59.4079 -2.12257 0)
(59.4656 -1.93037 0)
(59.6971 -1.98155 0)
(59.6459 -2.17794 0)
(59.5907 -2.38038 0)
(59.8397 -2.43269 0)
(59.8876 -2.22663 0)
(59.9322 -2.02658 0)
(59.9732 -1.83174 0)
(59.7441 -1.79041 0)
(59.5186 -1.74348 0)
(59.5669 -1.56108 0)
(59.6107 -1.38222 0)
(59.6507 -1.20591 0)
(59.8613 -1.23958 0)
(59.8258 -1.42043 0)
(59.787 -1.60369 0)
(60.0105 -1.64122 0)
(60.0444 -1.45407 0)
(60.0753 -1.26919 0)
(60.2921 -1.29471 0)
(60.2659 -1.48309 0)
(60.237 -1.6736 0)
(60.2052 -1.86737 0)
(60.1704 -2.06538 0)
(60.1326 -2.26853 0)
(60.0919 -2.47765 0)
(60.0484 -2.69355 0)
(60.0022 -2.91703 0)
(59.9532 -3.1489 0)
(59.9015 -3.38994 0)
(59.847 -3.64095 0)
(59.7899 -3.90274 0)
(59.7302 -4.17611 0)
(59.6678 -4.46195 0)
(60.0048 -4.51839 0)
(60.0545 -4.23029 0)
(60.1023 -3.95462 0)
(60.4168 -3.99527 0)
(60.381 -4.27252 0)
(60.344 -4.56212 0)
(60.6845 -4.59321 0)
(60.7088 -4.30284 0)
(60.7328 -4.02475 0)
(60.7563 -3.75801 0)
(60.4515 -3.7295 0)
(60.1482 -3.69049 0)
(60.1921 -3.43711 0)
(60.2339 -3.19369 0)
(60.2737 -2.95942 0)
(60.5474 -2.99316 0)
(60.5168 -3.22922 0)
(60.4848 -3.4744 0)
(60.7792 -3.50181 0)
(60.8013 -3.25549 0)
(60.8226 -3.01824 0)
(61.0989 -3.03468 0)
(61.0867 -3.27253 0)
(61.0745 -3.51934 0)
(61.062 -3.77591 0)
(61.0494 -4.04301 0)
(61.0371 -4.32143 0)
(61.0254 -4.61196 0)
(61.3661 -4.61838 0)
(61.3657 -4.32837 0)
(61.3663 -4.05027 0)
(61.6824 -4.04676 0)
(61.6933 -4.32374 0)
(61.7059 -4.61248 0)
(62.0439 -4.59465 0)
(62.0195 -4.30779 0)
(61.9973 -4.03252 0)
(61.9772 -3.76812 0)
(61.673 -3.78085 0)
(61.3677 -3.78344 0)
(61.3698 -3.52712 0)
(61.3725 -3.2804 0)
(61.3755 -3.04255 0)
(61.6519 -3.04192 0)
(61.6579 -3.2792 0)
(61.6649 -3.52526 0)
(61.959 -3.51387 0)
(61.9425 -3.26902 0)
(61.9276 -3.03284 0)
(61.9141 -2.80458 0)
(61.6468 -2.81267 0)
(61.3788 -2.81282 0)
(61.1107 -2.80502 0)
(60.8431 -2.78926 0)
(60.5764 -2.76543 0)
(60.3114 -2.73352 0)
(60.3469 -2.51517 0)
(60.3801 -2.30356 0)
(60.4112 -2.09787 0)
(60.654 -2.12401 0)
(60.6298 -2.33168 0)
(60.6039 -2.54521 0)
(60.8626 -2.56775 0)
(60.881 -2.35288 0)
(60.8984 -2.14379 0)
(60.9146 -1.93961 0)
(60.6764 -1.92133 0)
(60.4398 -1.89724 0)
(60.466 -1.70079 0)
(60.4898 -1.50748 0)
(60.5114 -1.31614 0)
(60.7327 -1.33348 0)
(60.7157 -1.52722 0)
(60.697 -1.72275 0)
(60.9295 -1.73948 0)
(60.9432 -1.54233 0)
(60.9556 -1.34682 0)
(61.1797 -1.35619 0)
(61.1718 -1.55282 0)
(61.1631 -1.75097 0)
(61.1538 -1.95209 0)
(61.1438 -2.15721 0)
(61.1333 -2.36717 0)
(61.1222 -2.5828 0)
(61.3823 -2.59041 0)
(61.386 -2.37451 0)
(61.3899 -2.16424 0)
(61.636 -2.165 0)
(61.6389 -2.37499 0)
(61.6425 -2.59062 0)
(61.9021 -2.58347 0)
(61.8913 -2.36873 0)
(61.8817 -2.15957 0)
(61.8732 -1.95509 0)
(61.6336 -1.95974 0)
(61.3936 -1.95875 0)
(61.3973 -1.75723 0)
(61.4009 -1.55868 0)
(61.4044 -1.36156 0)
(61.6294 -1.36286 0)
(61.6302 -1.55982 0)
(61.6316 -1.75829 0)
(61.8657 -1.7543 0)
(61.8592 -1.55639 0)
(61.854 -1.36013 0)
(61.85 -1.16282 0)
(61.629 -1.16486 0)
(61.4077 -1.16355 0)
(61.1867 -1.15892 0)
(60.9666 -1.15099 3.29445e-22)
(60.7476 -1.1397 0)
(60.5303 -1.12496 0)
(60.315 -1.10672 0)
(60.1023 -1.08495 0)
(59.8924 -1.05964 0)
(59.6859 -1.03077 0)
(59.4832 -0.998333 0)
(59.2848 -0.962383 0)
(59.0912 -0.922998 0)
(58.9031 -0.8803 0)
(58.7207 -0.834419 0)
(58.5436 -0.785412 0)
(58.3708 -0.733134 0)
(58.2 -0.677126 0)
(58.029 -0.616753 0)
(57.8587 -0.552008 1.30657e-21)
(57.699 -0.485184 0)
(57.5714 -0.422438 0)
(57.4995 -0.371457 5.01996e-21)
(57.488 -0.335823 -2.40931e-21)
(57.5146 -0.311521 0)
(57.5509 -0.292513 1.90177e-19)
(57.5853 -0.27303 7.82225e-19)
(57.6035 -0.207041 1.19359e-18)
(57.5719 -0.217736 -1.44288e-19)
(57.585 -0.147735 4.36732e-18)
(57.6141 -0.141171 -2.25032e-18)
(57.5572 -0.159403 -2.2537e-18)
(57.5389 -0.231568 -1.79362e-20)
(57.5208 -0.251267 -3.55205e-20)
(57.5495 -0.176919 6.50289e-19)
(57.5882 -0.207631 -6.42345e-19)
(57.5464 -0.28476 -4.95783e-21)
(57.6318 -0.332796 0)
(57.6839 -0.251113 0)
(57.822 -0.301249 -4.13723e-20)
(57.7663 -0.390126 -4.10044e-20)
(57.9256 -0.449241 3.72922e-20)
(57.979 -0.351341 4.92764e-20)
(58.1404 -0.397963 6.4922e-22)
(58.0915 -0.505387 -6.4362e-22)
(58.2573 -0.557222 0)
(58.3018 -0.440402 0)
(58.4644 -0.479103 0)
(58.4235 -0.605023 0)
(58.5924 -0.649445 0)
(58.6302 -0.514724 0)
(58.8009 -0.547653 0)
(58.7659 -0.690889 0)
(58.9449 -0.729473 0)
(58.9773 -0.578038 0)
(59.1593 -0.605907 0)
(59.1297 -0.76516 0)
(59.3198 -0.797876 0)
(59.3468 -0.631261 0)
(59.539 -0.654112 0)
(59.5148 -0.827563 0)
(59.7141 -0.854205 0)
(59.7357 -0.6745 0)
(59.9363 -0.692482 0)
(59.9173 -0.877814 0)
(60.1239 -0.898427 0)
(60.1403 -0.708126 0)
(60.3473 -0.721497 0)
(60.3334 -0.916096 0)
(60.5455 -0.930875 0)
(60.557 -0.732666 0)
(60.7688 -0.741701 2.62682e-21)
(60.7597 -0.942816 0)
(60.9755 -0.951918 -3.24794e-22)
(60.9823 -0.748604 -3.82464e-25)
(61.1971 -0.753376 -2.6269e-21)
(61.1926 -0.958258 0)
(61.4105 -0.961953 0)
(61.4127 -0.756127 0)
(61.6286 -0.756932 0)
(61.6288 -0.963037 0)
(61.8469 -0.96152 0)
(61.8445 -0.755798 0)
(62.0599 -0.752736 -2.62304e-21)
(62.0644 -0.957394 0)
(62.0704 -1.15746 0)
(62.078 -1.35351 0)
(62.0877 -1.54855 0)
(62.0991 -1.74526 0)
(62.1121 -1.94474 0)
(62.1265 -2.14792 0)
(62.1427 -2.35574 0)
(62.1606 -2.56908 0)
(62.1803 -2.78874 0)
(62.202 -3.01546 0)
(62.2257 -3.25 0)
(62.2515 -3.49308 0)
(62.2796 -3.74542 0)
(62.3102 -4.00774 0)
(62.3434 -4.28073 0)
(62.3796 -4.5651 0)
(62.4189 -4.86153 0)
(62.4616 -5.17074 0)
(62.5081 -5.49347 0)
(62.5586 -5.83048 0)
(62.6137 -6.1825 0)
(62.6737 -6.55027 0)
(62.739 -6.93454 0)
(62.8102 -7.33613 0)
(62.8878 -7.75581 0)
(62.9724 -8.19437 0)
(63.0647 -8.65258 0)
(63.1654 -9.13125 0)
(63.2751 -9.63116 0)
(63.3947 -10.1531 0)
(63.5251 -10.6977 0)
(63.6671 -11.2659 0)
(63.8216 -11.8582 0)
(63.9897 -12.4753 0)
(64.1721 -13.118 0)
(64.3701 -13.7866 0)
(64.5844 -14.4819 0)
(64.816 -15.2043 0)
(65.0659 -15.9544 0)
(65.3348 -16.7325 0)
(65.6235 -17.5391 0)
(65.9327 -18.375 0)
(66.263 -19.2405 0)
(66.6148 -20.1366 0)
(66.9887 -21.0641 0)
(67.3849 -22.0241 0)
(67.804 -23.0182 0)
(68.2467 -24.0485 0)
(68.7131 -25.1161 0)
(69.204 -26.2234 0)
(69.7199 -27.3729 0)
(70.2616 -28.5674 0)
(70.8304 -29.8105 0)
(71.4281 -31.1063 0)
(72.0575 -32.4588 0)
(72.7218 -33.8722 0)
(73.4248 -35.3516 0)
(74.9283 -34.6837 0)
(75.7462 -36.1943 0)
(77.2772 -35.418 0)
(78.7605 -34.5758 0)
(79.7691 -36.0571 0)
(81.2626 -35.0984 0)
(82.404 -36.5858 0)
(83.6221 -38.1368 0)
(84.9259 -39.7567 0)
(86.3246 -41.4492 0)
(87.8279 -43.2185 -5.49905e-21)
(89.5919 -41.8037 0)
(88.0156 -40.1302 0)
(86.5474 -38.5245 0)
(88.0857 -37.2301 0)
(89.6146 -38.7465 0)
(91.2541 -40.3196 0)
(92.8113 -38.7775 0)
(91.1187 -37.3054 0)
(89.5379 -35.8805 0)
(88.059 -34.5033 0)
(86.6577 -35.7698 0)
(85.1778 -36.9831 0)
(83.8971 -35.5033 0)
(82.696 -34.0803 0)
(81.5689 -32.7137 0)
(80.1922 -33.673 0)
(79.1854 -32.3046 0)
(77.8122 -33.1564 0)
(76.392 -33.9509 0)
(75.5584 -32.5467 0)
(74.158 -33.2402 0)
(73.4309 -31.8587 0)
(72.7429 -30.5356 0)
(74.0287 -29.9118 0)
(74.772 -31.2016 0)
(76.0772 -30.4905 0)
(76.9194 -31.7958 0)
(78.2373 -30.9906 0)
(79.5093 -30.1353 0)
(80.5083 -31.3993 0)
(81.7783 -30.4454 0)
(82.8879 -31.703 0)
(84.0662 -33.0078 0)
(85.321 -34.3636 0)
(86.6733 -33.173 0)
(85.371 -31.8869 0)
(84.1468 -30.6458 0)
(82.9929 -29.4469 0)
(81.9042 -28.2892 0)
(80.7324 -29.2337 0)
(79.7451 -28.0659 0)
(78.5667 -28.9193 0)
(77.3431 -29.7285 0)
(76.4986 -28.5155 0)
(75.2817 -29.2374 0)
(74.5292 -28.0336 0)
(73.3251 -28.6738 0)
(72.0909 -29.2669 0)
(71.472 -28.0488 0)
(70.8843 -26.8781 0)
(70.3258 -25.7516 0)
(71.426 -25.2404 0)
(72.026 -26.341 0)
(72.6583 -27.4845 0)
(73.8167 -26.8764 0)
(73.1415 -25.7629 0)
(72.5013 -24.6908 0)
(73.5486 -24.1039 0)
(74.2276 -25.1453 0)
(74.9439 -26.2263 0)
(75.6999 -27.3489 0)
(76.8342 -26.6218 0)
(77.6763 -27.7488 0)
(78.812 -26.9402 0)
(79.9034 -26.0925 0)
(80.8759 -27.1716 0)
(81.9572 -26.2397 0)
(83.0229 -27.3058 0)
(84.15 -28.4079 0)
(85.3436 -29.5469 0)
(86.6084 -30.723 0)
(87.9523 -31.9384 0)
(89.3802 -33.1914 0)
(90.902 -34.4844 0)
(92.5254 -35.8162 0)
(94.2611 -37.1863 0)
(95.6036 -35.5568 0)
(93.835 -34.2885 0)
(92.177 -33.0495 0)
(93.364 -31.5824 0)
(95.0486 -32.7305 0)
(96.841 -33.8993 0)
(97.975 -32.2233 0)
(96.167 -31.1513 0)
(94.4635 -30.0924 0)
(92.8568 -29.0497 0)
(91.7789 -30.4581 0)
(90.6202 -31.841 0)
(89.1565 -30.6654 0)
(87.7771 -29.5212 0)
(86.4768 -28.4109 0)
(87.5456 -27.2425 0)
(88.8764 -28.2869 0)
(90.2856 -29.3593 0)
(91.34 -28.0268 0)
(89.9061 -27.025 0)
(88.5496 -26.0463 0)
(89.4886 -24.8265 0)
(90.8664 -25.7404 0)
(92.3202 -26.6727 0)
(93.8553 -27.621 0)
(95.4774 -28.5831 0)
(97.1934 -29.5563 0)
(99.0097 -30.5358 0)
(100.934 -31.5166 0)
(101.869 -29.7308 0)
(103.899 -30.6058 0)
(104.72 -28.7341 0)
(106.841 -29.4904 0)
(109.076 -30.2118 0)
(109.731 -28.1767 0)
(107.537 -27.5491 0)
(105.446 -26.8828 0)
(106.084 -25.0556 0)
(108.141 -25.6408 0)
(110.291 -26.1856 0)
(112.537 -26.679 0)
(114.878 -27.1069 0)
(117.31 -27.4606 0)
(119.834 -27.7223 0)
(120.017 -25.501 0)
(122.516 -25.5979 0)
(122.54 -23.4225 0)
(124.986 -23.3713 0)
(127.464 -23.2017 0)
(129.959 -22.9018 0)
(129.61 -20.8013 0)
(127.237 -21.091 0)
(124.872 -21.2667 0)
(124.74 -19.253 0)
(127.007 -19.0777 0)
(129.275 -18.8033 0)
(131.527 -18.4245 0)
(133.743 -17.9384 0)
(135.903 -17.3447 0)
(137.983 -16.6469 0)
(137.299 -14.9713 0)
(135.305 -15.585 0)
(133.237 -16.1115 0)
(132.779 -14.3583 0)
(134.77 -13.8949 0)
(136.692 -13.3584 0)
(136.155 -11.7973 0)
(134.293 -12.2622 0)
(132.367 -12.6661 0)
(130.391 -13.0057 0)
(130.737 -14.7452 0)
(131.116 -16.5472 0)
(128.957 -16.8917 0)
(126.779 -17.1464 0)
(124.598 -17.3153 0)
(124.449 -15.4478 -4.33569e-20)
(126.558 -15.2882 8.67752e-20)
(128.658 -15.0548 -4.34191e-20)
(128.379 -13.2802 0)
(126.345 -13.4896 0)
(124.299 -13.6359 0)
(122.254 -13.7221 0)
(122.343 -15.537 0)
(122.423 -17.4036 0)
(122.486 -19.3364 0)
(122.528 -21.3375 0)
(120.221 -21.3133 0)
(120.142 -23.3679 0)
(117.799 -23.2199 0)
(117.587 -25.303 0)
(115.234 -25.0186 0)
(115.521 -22.9906 0)
(115.749 -21.0216 0)
(117.958 -21.2046 0)
(118.07 -19.2577 0)
(120.26 -19.3353 0)
(120.269 -17.4174 0)
(118.144 -17.3639 0)
(116.055 -17.2497 0)
(115.925 -19.1124 0)
(113.829 -18.9079 0)
(113.6 -20.7735 0)
(113.313 -22.6923 0)
(112.961 -24.6614 0)
(110.771 -24.2389 0)
(108.664 -23.767 0)
(106.64 -23.2544 0)
(107.122 -21.4802 0)
(109.111 -21.9275 0)
(111.175 -22.3345 0)
(111.511 -20.4714 0)
(109.489 -20.1224 0)
(107.534 -19.7333 0)
(107.883 -18.0134 0)
(109.805 -18.3511 0)
(111.788 -18.6521 0)
(112.013 -16.8669 0)
(114.01 -17.0818 0)
(114.149 -15.2975 -4.36025e-20)
(116.148 -15.436 1.20624e-22)
(118.185 -15.526 1.24477e-22)
(120.253 -15.5614 4.35781e-20)
(120.219 -13.7521 0)
(118.202 -13.7299 0)
(116.21 -13.6603 0)
(114.251 -13.5478 0)
(112.329 -13.3976 0)
(112.191 -15.1163 0)
(110.279 -14.8988 0)
(110.067 -16.6104 0)
(108.175 -16.3191 0)
(108.415 -14.6491 0)
(108.611 -13.0013 0)
(110.448 -13.214 0)
(110.58 -11.5515 0)
(112.434 -11.7051 0)
(114.324 -11.8295 0)
(116.247 -11.9205 0)
(118.199 -11.9739 0)
(120.172 -11.9863 0)
(122.159 -11.9538 0)
(124.152 -11.8732 0)
(126.145 -11.7415 0)
(128.122 -11.5567 0)
(130.078 -11.3171 0)
(131.998 -11.023 0)
(133.87 -10.6755 0)
(135.683 -10.2773 0)
(135.271 -8.78602 0)
(133.499 -9.12138 0)
(131.672 -9.41523 0)
(131.387 -7.82715 0)
(133.178 -7.58513 0)
(134.916 -7.30952 0)
(134.619 -5.83765 0)
(132.908 -6.05492 0)
(131.146 -6.24622 0)
(129.343 -6.41042 0)
(129.552 -8.03346 0)
(129.798 -9.66522 0)
(127.89 -9.87022 0)
(125.959 -10.0299 0)
(124.012 -10.1455 0)
(123.883 -8.43482 0)
(125.791 -8.33714 0)
(127.683 -8.20371 0)
(127.505 -6.54637 0)
(125.645 -6.65388 0)
(123.768 -6.73282 0)
(123.672 -5.06076 -4.25035e-20)
(125.525 -5.00073 1.16623e-22)
(127.362 -4.91979 1.17176e-22)
(129.176 -4.81773 1.17137e-22)
(130.957 -4.69451 4.24341e-20)
(132.696 -4.55107 0)
(134.387 -4.38864 0)
(134.224 -3.00731 0)
(132.546 -3.1176 0)
(130.822 -3.21486 0)
(130.741 -1.85605 0)
(132.457 -1.7998 0)
(134.126 -1.73619 0)
(128.985 -1.90459 0)
(129.057 -3.29834 0)
(127.26 -3.36775 0)
(125.44 -3.42321 0)
(123.603 -3.46454 0)
(123.56 -2.00146 3.88128e-22)
(125.387 -1.97755 0)
(127.199 -1.9452 0)
(121.724 -2.01744 0)
(121.758 -3.4921 0)
(121.811 -5.10046 -4.26597e-20)
(121.884 -6.78452 0)
(121.969 -8.4978 0)
(122.062 -10.2183 0)
(120.116 -10.2501 0)
(118.181 -10.2438 0)
(116.264 -10.2026 0)
(116.268 -8.49577 0)
(118.154 -8.52606 0)
(120.057 -8.52743 0)
(120 -6.81012 0)
(118.124 -6.81098 0)
(116.262 -6.78918 0)
(114.419 -6.74609 0)
(114.403 -8.43947 0)
(114.372 -10.13 0)
(112.51 -10.0293 0)
(110.681 -9.90291 0)
(108.889 -9.75416 0)
(108.767 -11.3722 0)
(106.997 -11.1708 0)
(106.821 -12.7638 0)
(106.603 -14.3721 -4.38316e-20)
(106.339 -15.9985 0)
(106.021 -17.6449 0)
(105.646 -19.3119 0)
(105.207 -21.0001 0)
(104.699 -22.7094 0)
(104.116 -24.4391 0)
(103.454 -26.1877 0)
(102.707 -27.9528 0)
(100.796 -27.1549 0)
(99.9483 -28.8445 0)
(98.1302 -27.9535 0)
(96.408 -27.0632 0)
(97.2574 -25.5357 0)
(98.9812 -26.3473 0)
(99.7499 -24.7425 0)
(101.557 -25.4719 0)
(102.236 -23.7993 0)
(102.837 -22.1394 0)
(101.054 -21.5508 0)
(100.44 -23.1429 0)
(98.7237 -22.4756 0)
(98.0285 -24.0052 0)
(96.3885 -23.2647 0)
(95.6193 -24.7247 0)
(94.7756 -26.1782 0)
(93.227 -25.3017 0)
(91.7578 -24.4371 0)
(90.3628 -23.5869 0)
(91.1722 -22.3311 0)
(92.5808 -23.1193 0)
(94.0616 -23.918 0)
(94.8256 -22.5249 0)
(93.3365 -21.79 0)
(91.9171 -21.0622 0)
(90.5633 -20.3433 0)
(89.8308 -21.5548 0)
(89.0366 -22.7519 0)
(88.181 -23.9316 0)
(87.2642 -25.0908 0)
(86.2865 -26.2258 0)
(85.2482 -27.3328 0)
(84.0867 -26.2873 0)
(82.9874 -25.2738 0)
(81.946 -24.2919 0)
(80.9486 -25.2087 0)
(79.9932 -24.2117 0)
(78.9829 -25.0506 0)
(77.9292 -25.8549 0)
(77.0932 -24.8082 0)
(76.0369 -25.5362 0)
(75.2816 -24.4899 0)
(74.5655 -23.4811 0)
(75.5497 -22.8242 0)
(76.301 -23.7985 0)
(77.2838 -23.0731 0)
(78.1107 -24.0446 0)
(79.0875 -23.2477 0)
(80.0221 -22.42 0)
(80.9587 -23.3408 0)
(81.8781 -22.4407 0)
(82.8944 -23.345 0)
(83.9653 -24.277 0)
(85.0946 -25.2373 0)
(86.0458 -24.1594 0)
(84.89 -23.2528 0)
(83.7926 -22.3709 0)
(82.7503 -21.5139 0)
(81.7595 -20.6816 0)
(80.9131 -21.5639 0)
(79.9963 -20.7139 0)
(79.1329 -21.5286 0)
(78.2283 -22.3157 0)
(77.4127 -21.4147 0)
(76.4993 -22.1348 0)
(75.7548 -21.2284 0)
(74.837 -21.8838 0)
(73.8864 -22.5082 0)
(72.9047 -23.1001 0)
(71.8941 -23.6578 0)
(70.8567 -24.1804 0)
(69.7954 -24.6667 0)
(69.2919 -23.621 0)
(68.8144 -22.612 0)
(68.362 -21.6386 0)
(69.3192 -21.2219 0)
(69.8044 -22.173 -4.42574e-20)
(70.3166 -23.1586 4.4285e-20)
(71.3181 -22.6619 0)
(70.7719 -21.701 0)
(70.2543 -20.7741 0)
(69.7642 -19.8797 0)
(68.86 -20.3042 0)
(67.9342 -20.6992 0)
(67.53 -19.7918 0)
(67.1489 -18.9155 0)
(66.7903 -18.0693 0)
(67.6289 -17.7366 0)
(68.0156 -18.5626 0)
(68.4257 -19.4182 0)
(69.3003 -19.0161 0)
(68.8617 -18.1823 0)
(68.4474 -17.3774 0)
(69.2448 -16.9922 0)
(69.686 -17.7751 0)
(70.1524 -18.5861 0)
(70.6453 -19.4261 0)
(71.1656 -20.2961 0)
(71.7148 -21.1978 0)
(72.2939 -22.1319 0)
(73.242 -21.5692 0)
(72.6311 -20.6635 0)
(72.0513 -19.7886 0)
(72.9098 -19.2526 0)
(73.519 -20.0994 0)
(74.1606 -20.9757 0)
(75.0479 -20.3525 0)
(74.377 -19.5068 0)
(73.7399 -18.6893 0)
(73.1351 -17.8997 0)
(72.3321 -18.4352 0)
(71.5018 -18.9443 0)
(70.9808 -18.129 0)
(70.4873 -17.3417 0)
(70.02 -16.5817 0)
(70.7718 -16.1466 0)
(71.2643 -16.883 0)
(71.784 -17.6456 0)
(72.5609 -17.1368 0)
(72.0161 -16.3998 0)
(71.4992 -15.6879 0)
(71.0091 -15.0004 0)
(70.3052 -15.4356 0)
(69.5778 -15.848 0)
(68.828 -16.2365 0)
(68.0566 -16.6006 0)
(67.2648 -16.9394 0)
(66.4534 -17.2524 0)
(66.1377 -16.4641 0)
(65.8423 -15.7038 0)
(65.5665 -14.9709 0)
(66.3002 -14.7128 0)
(66.6013 -15.4281 0)
(66.9225 -16.1701 0)
(67.6884 -15.851 0)
(67.3419 -15.128 0)
(67.0161 -14.4309 0)
(66.7102 -13.7591 0)
(66.0183 -14.0237 0)
(65.3095 -14.2648 0)
(65.0702 -13.5851 0)
(64.8478 -12.9312 0)
(64.6414 -12.3024 0)
(65.2791 -12.107 0)
(65.5087 -12.7213 0)
(65.7548 -13.36 0)
(66.4231 -13.1121 0)
(66.1541 -12.4892 0)
(65.9021 -11.8898 0)
(66.5097 -11.6516 0)
(66.7833 -12.2354 0)
(67.0745 -12.842 0)
(67.3843 -13.4718 0)
(67.7136 -14.1256 0)
(68.0633 -14.8039 0)
(68.4345 -15.5073 0)
(69.1598 -15.1399 0)
(68.7648 -14.4567 0)
(68.3919 -13.7978 0)
(69.0501 -13.4483 0)
(69.4454 -14.0871 0)
(69.8634 -14.7494 0)
(70.5445 -14.3366 0)
(70.1043 -13.696 0)
(69.6875 -13.0778 0)
(69.2929 -12.4815 0)
(68.6765 -12.8322 0)
(68.04 -13.1626 0)
(67.7083 -12.5505 0)
(67.3956 -11.9609 0)
(67.1012 -11.3931 0)
(67.6759 -11.1151 0)
(67.9903 -11.6662 0)
(68.3236 -12.2384 0)
(68.9197 -11.9065 0)
(68.5666 -11.3523 0)
(68.2329 -10.8184 0)
(68.7715 -10.5037 0)
(69.1237 -11.02 0)
(69.4957 -11.5556 0)
(69.8885 -12.1111 0)
(70.3031 -12.6871 0)
(70.7406 -13.2841 0)
(71.202 -13.9026 0)
(71.6885 -14.5432 0)
(72.2012 -15.2065 0)
(72.7414 -15.8931 0)
(73.3103 -16.6037 0)
(73.9094 -17.3391 0)
(74.5401 -18.1 0)
(75.2038 -18.8869 0)
(75.9024 -19.701 0)
(76.6382 -20.5435 0)
(77.4858 -19.831 0)
(78.2883 -20.6659 0)
(79.1249 -19.8904 0)
(79.9214 -19.0901 0)
(80.8175 -19.8738 0)
(81.5952 -19.0104 0)
(82.5602 -19.7757 0)
(83.5741 -20.5631 0)
(84.6399 -21.3726 0)
(85.7606 -22.2041 0)
(86.9398 -23.0572 0)
(87.7758 -21.9339 0)
(86.5765 -21.1339 0)
(85.4351 -20.3527 0)
(86.1773 -19.3136 0)
(87.3367 -20.0449 0)
(88.5535 -20.7923 0)
(89.2722 -19.6353 0)
(88.0405 -18.9397 0)
(86.8653 -18.2576 0)
(85.7439 -17.59 0)
(85.0722 -18.599 0)
(84.3485 -19.5907 0)
(83.3137 -18.8484 0)
(82.3279 -18.1258 0)
(81.3885 -17.423 0)
(80.6764 -18.267 0)
(79.8016 -17.5453 0)
(79.0687 -18.3301 0)
(78.2963 -19.0926 0)
(77.5083 -18.32 0)
(76.723 -19.0229 0)
(75.9981 -18.2414 0)
(75.3092 -17.4857 0)
(76.0459 -16.8479 0)
(76.7587 -17.5717 0)
(77.4846 -16.8792 0)
(78.2572 -17.5933 0)
(78.9683 -16.845 0)
(79.64 -16.0766 0)
(80.4933 -16.74 0)
(81.1419 -15.9159 0)
(82.0558 -16.56 0)
(83.014 -17.2219 0)
(84.0186 -17.9016 0)
(84.6735 -16.9375 0)
(83.6519 -16.3005 0)
(82.6766 -15.6794 0)
(81.7456 -15.0744 0)
(80.8569 -14.4855 0)
(80.2701 -15.2897 0)
(79.4384 -14.6811 0)
(78.8264 -15.4324 0)
(78.1744 -16.1657 0)
(77.4185 -15.5073 0)
(76.7495 -16.1878 0)
(76.0497 -15.5183 0)
(75.3677 -16.1471 0)
(74.6539 -16.7545 0)
(74.0312 -16.0475 0)
(73.4393 -15.364 0)
(72.8769 -14.7033 0)
(73.5255 -14.1794 0)
(74.109 -14.8135 0)
(74.7226 -15.4692 0)
(75.3835 -14.8701 0)
(74.7494 -14.2428 0)
(74.146 -13.6359 0)
(74.7374 -13.074 0)
(75.3594 -13.6532 0)
(76.0127 -14.2516 0)
(76.6986 -14.8695 0)
(77.3125 -14.202 0)
(78.0514 -14.8077 0)
(78.6455 -14.0905 0)
(79.1988 -13.3563 0)
(80.0084 -13.9126 0)
(80.5341 -13.129 0)
(81.398 -13.6657 0)
(82.3025 -14.217 0)
(83.2492 -14.7828 0)
(84.2401 -15.3631 0)
(85.2772 -15.9575 0)
(86.3625 -16.5656 0)
(87.4984 -17.1868 0)
(88.6873 -17.8202 0)
(89.9317 -18.465 0)
(91.2343 -19.1197 0)
(92.5979 -19.783 0)
(94.0254 -20.4528 0)
(95.52 -21.1268 0)
(97.085 -21.8022 0)
(97.7111 -20.3389 0)
(99.3462 -20.949 0)
(99.899 -19.4279 0)
(101.597 -19.9683 0)
(103.366 -20.4941 0)
(103.826 -18.8645 0)
(102.073 -18.3968 0)
(100.385 -17.9136 0)
(98.7626 -17.4193 0)
(98.2694 -18.8775 0)
(96.7063 -18.3209 0)
(96.1462 -19.7245 0)
(94.6485 -19.1091 0)
(93.2154 -18.4956 0)
(93.7707 -17.2021 0)
(95.2075 -17.7615 0)
(95.7045 -16.4117 0)
(97.2029 -16.9176 0)
(97.639 -15.5159 0)
(99.1941 -15.9657 0)
(100.809 -16.4072 0)
(102.485 -16.837 0)
(104.222 -17.251 0)
(104.56 -15.6537 0)
(102.838 -15.2893 0)
(101.174 -14.9093 0)
(101.486 -13.4202 0)
(103.138 -13.7536 0)
(104.843 -14.0723 4.37873e-20)
(105.079 -12.5054 0)
(103.388 -12.2297 0)
(101.748 -11.9397 0)
(100.159 -11.6388 0)
(99.8879 -13.0752 0)
(99.5678 -14.5174 0)
(98.018 -14.1169 0)
(96.5241 -13.7106 0)
(96.1423 -15.061 0)
(94.7028 -14.6034 0)
(94.2657 -15.9043 0)
(92.8845 -15.3978 0)
(92.3936 -16.6452 0)
(91.8441 -17.8864 0)
(90.5321 -17.2835 0)
(89.277 -16.6885 0)
(88.0763 -16.1028 0)
(88.5991 -15.0074 0)
(89.81 -15.5463 0)
(91.0741 -16.0927 0)
(91.5591 -14.8941 0)
(90.2875 -14.3951 0)
(89.0681 -13.902 0)
(87.8988 -13.4161 0)
(87.4394 -14.4772 0)
(86.9276 -15.5275 0)
(85.8289 -14.9634 0)
(84.7781 -14.4112 0)
(83.773 -13.8715 0)
(84.2478 -12.9467 0)
(85.2657 -13.4462 0)
(86.3289 -13.9565 0)
(86.778 -12.9384 0)
(85.7038 -12.4695 0)
(84.6746 -12.0101 0)
(85.0549 -11.0624 0)
(86.0941 -11.4822 0)
(87.1778 -11.9102 0)
(88.3075 -12.3458 0)
(89.4849 -12.7882 0)
(90.7115 -13.2365 0)
(91.9889 -13.6894 0)
(93.3188 -14.1456 0)
(93.6995 -12.89 0)
(95.085 -13.3009 0)
(95.4158 -11.9977 0)
(96.8536 -12.3615 0)
(98.344 -12.7214 0)
(98.6212 -11.3294 0)
(97.1347 -11.0139 0)
(95.699 -10.6944 0)
(94.3134 -10.3726 0)
(94.0299 -11.6322 0)
(92.6947 -11.2665 0)
(92.3665 -12.4798 0)
(91.0844 -12.0718 0)
(89.8521 -11.6673 0)
(90.1724 -10.5406 0)
(91.4093 -10.9022 0)
(91.6893 -9.72856 0)
(92.9771 -10.0502 0)
(93.2174 -8.83051 0)
(94.554 -9.1108 0)
(95.9387 -9.39012 0)
(97.3719 -9.66703 0)
(98.8541 -9.93991 0)
(100.385 -10.2069 0)
(101.966 -10.4659 0)
(103.595 -10.7146 0)
(105.272 -10.9505 0)
(105.428 -9.40144 0)
(107.138 -9.58613 0)
(107.247 -7.99984 0)
(108.983 -8.13697 0)
(110.756 -8.25764 0)
(112.564 -8.35923 3.3333e-22)
(112.6 -6.68383 -4.25272e-20)
(110.81 -6.60459 -9.72087e-23)
(109.053 -6.51066 -9.38518e-23)
(109.101 -4.90318 -8.57113e-20)
(110.846 -4.97279 9.78913e-23)
(112.622 -5.03096 1.01102e-22)
(114.425 -5.07626 1.04171e-22)
(116.25 -5.10723 1.0705e-22)
(118.094 -5.12247 1.09681e-22)
(119.949 -5.12066 8.52859e-20)
(119.911 -3.50643 0)
(118.07 -3.50827 0)
(116.239 -3.49844 0)
(116.231 -2.02146 0)
(118.053 -2.027 0)
(119.886 -2.02582 0)
(114.425 -2.00971 0)
(114.426 -3.47786 0)
(112.634 -3.44748 0)
(110.868 -3.40833 0)
(109.132 -3.36137 0)
(109.149 -1.94276 0)
(110.879 -1.96979 0)
(112.639 -1.9923 0)
(107.45 -1.91171 0)
(107.429 -3.30752 0)
(107.39 -4.82345 -9.11865e-23)
(107.331 -6.40361 -9.04335e-23)
(105.647 -6.28531 4.22478e-20)
(105.552 -7.84869 0)
(103.899 -7.68609 0)
(103.764 -9.20311 0)
(102.145 -8.9936 0)
(102.29 -7.51362 0)
(102.403 -6.02114 0)
(104.004 -6.15741 0)
(104.081 -4.63945 -8.58818e-20)
(105.716 -4.73512 8.58282e-20)
(105.761 -3.24781 0)
(104.131 -3.18315 0)
(102.54 -3.11415 0)
(102.486 -4.53754 4.29361e-20)
(100.933 -4.43073 -4.30175e-20)
(100.844 -5.87827 -3.30926e-22)
(100.725 -7.33315 3.34971e-22)
(100.573 -8.77456 0)
(99.0473 -8.54827 0)
(97.5694 -8.31656 0)
(96.1389 -8.08102 0)
(96.3036 -6.75978 0)
(97.7313 -6.9548 3.35301e-22)
(99.205 -7.14637 0)
(99.3298 -5.73014 0)
(97.86 -5.57797 -3.31255e-22)
(96.435 -5.42288 0)
(96.5333 -4.08977 0)
(97.956 -4.20589 0)
(99.4223 -4.31995 4.29845e-20)
(99.4841 -2.96582 0)
(100.992 -3.04142 0)
(101.025 -1.75753 0)
(102.572 -1.79941 0)
(104.16 -1.83931 0)
(105.786 -1.87697 0)
(99.5197 -1.71396 0)
(98.0575 -1.66916 0)
(98.0204 -2.88814 0)
(96.5993 -2.80865 0)
(96.6373 -1.62335 0)
(95.2612 -1.57687 0)
(95.222 -2.72805 0)
(95.1547 -3.97196 0)
(95.055 -5.26581 0)
(94.922 -6.5625 0)
(94.7557 -7.84308 0)
(93.4192 -7.60397 0)
(92.1289 -7.3648 0)
(91.928 -8.55047 0)
(90.685 -8.27176 0)
(90.4489 -9.4088 0)
(89.2549 -9.09197 0)
(88.9827 -10.1827 0)
(88.6679 -11.2676 0)
(87.5306 -10.8735 0)
(86.4387 -10.4858 0)
(85.3908 -10.1052 0)
(85.6849 -9.13974 0)
(86.7403 -9.48156 0)
(87.8391 -9.82941 0)
(88.1062 -8.77891 0)
(87.0016 -8.47035 0)
(85.94 -8.16688 0)
(86.1587 -7.18665 0)
(87.2256 -7.45214 0)
(88.3348 -7.72187 0)
(89.4877 -7.9953 0)
(89.6843 -6.88993 0)
(90.8842 -7.12652 0)
(91.0495 -5.96711 0)
(92.2954 -6.16529 0)
(93.586 -6.36403 0)
(93.7199 -5.10763 0)
(92.4292 -4.94911 0)
(91.1826 -4.79089 0)
(89.9796 -4.63355 0)
(89.8477 -5.77017 0)
(88.6893 -5.57508 0)
(88.5283 -6.65573 0)
(87.4152 -6.42453 0)
(86.3442 -6.1968 0)
(86.4989 -5.19241 0)
(87.5733 -5.38235 0)
(87.7011 -4.3234 0)
(88.8193 -4.47757 0)
(88.918 -3.37967 0)
(90.0795 -3.49692 0)
(91.2833 -3.61517 0)
(92.5302 -3.73402 0)
(93.8206 -3.85308 0)
(93.8884 -2.6472 0)
(92.5982 -2.56568 0)
(91.3512 -2.48422 0)
(91.3907 -1.43589 0)
(92.6378 -1.48272 0)
(93.9276 -1.52986 0)
(90.186 -1.38921 0)
(90.1468 -2.40312 0)
(88.9846 -2.32267 0)
(87.8639 -2.24304 0)
(87.7982 -3.26375 0)
(86.7192 -3.14948 -4.31496e-20)
(86.6241 -4.17138 0)
(85.5874 -4.02181 0)
(85.4651 -5.00564 0)
(85.3141 -5.97298 0)
(85.1332 -6.92587 0)
(84.9201 -7.86899 0)
(84.6717 -8.80446 0)
(84.3854 -9.73225 0)
(84.0586 -10.6513 0)
(83.6888 -11.5606 0)
(83.2735 -12.4586 0)
(82.8118 -13.3445 -4.41186e-20)
(81.893 -12.8305 -4.12019e-23)
(81.0146 -12.33 4.40924e-20)
(80.1753 -11.8431 0)
(79.7091 -12.6071 0)
(78.9211 -12.0998 0)
(78.426 -12.816 0)
(77.8892 -13.5172 0)
(77.1678 -12.9611 0)
(76.6083 -13.6148 0)
(75.9371 -13.0459 0)
(75.2976 -12.4948 0)
(75.8243 -11.8996 0)
(76.48 -12.422 0)
(76.9854 -11.7828 0)
(77.6888 -12.2916 0)
(78.1688 -11.6072 0)
(78.6067 -10.9088 0)
(79.373 -11.3692 0)
(79.7817 -10.6253 0)
(80.5971 -11.0657 0)
(81.4499 -11.5181 0)
(82.3416 -11.9825 0)
(82.7447 -11.1215 0)
(81.8406 -10.693 0)
(80.9758 -10.2754 0)
(80.1484 -9.86889 0)
(79.3569 -9.47327 0)
(79.0023 -10.1972 0)
(78.2575 -9.78119 0)
(77.8748 -10.4616 0)
(77.4507 -11.129 0)
(76.7655 -10.6652 0)
(76.3144 -11.2895 0)
(75.6746 -10.8114 0)
(75.1993 -11.3937 0)
(74.6884 -11.9614 0)
(74.1451 -12.5135 0)
(73.5719 -13.0489 0)
(72.9707 -13.5664 0)
(72.3426 -14.0648 0)
(71.8352 -13.448 0)
(71.3534 -12.8523 0)
(70.8962 -12.2772 0)
(71.4662 -11.8488 0)
(71.9422 -12.4016 0)
(72.4433 -12.974 0)
(73.0257 -12.4814 0)
(72.5063 -11.9329 0)
(72.0124 -11.403 0)
(71.5429 -10.8912 0)
(71.014 -11.3151 0)
(70.4624 -11.7221 0)
(70.0509 -11.1865 0)
(69.6608 -10.6699 0)
(69.291 -10.1719 0)
(69.7908 -9.8237 0)
(70.1774 -10.303 0)
(70.5848 -10.8 0)
(71.0968 -10.397 0)
(70.673 -9.92005 0)
(70.2705 -9.4599 0)
(70.7296 -9.08133 0)
(71.1471 -9.5219 0)
(71.5863 -9.97837 0)
(72.0483 -10.4512 0)
(72.534 -10.9407 0)
(73.0446 -11.4473 0)
(73.5812 -11.9714 0)
(74.1081 -11.4452 0)
(73.5555 -10.9458 0)
(73.0293 -10.4629 0)
(73.4956 -9.97095 0)
(74.0362 -10.4296 0)
(74.6037 -10.9038 0)
(75.0647 -10.3483 0)
(74.4833 -9.89984 0)
(73.9293 -9.46581 0)
(73.4015 -9.04589 0)
(72.9808 -9.52739 0)
(72.5285 -9.99618 0)
(72.0518 -9.54519 0)
(71.5983 -9.10958 0)
(71.167 -8.68899 0)
(71.58 -8.28403 0)
(72.024 -8.68426 0)
(72.4906 -9.0986 0)
(72.8989 -8.63977 0)
(72.4204 -8.24714 0)
(71.9648 -7.86769 0)
(72.317 -7.44103 0)
(72.7832 -7.79921 0)
(73.2729 -8.16963 0)
(73.7872 -8.55259 0)
(74.3271 -8.94838 0)
(74.8938 -9.35727 0)
(75.4882 -9.77954 0)
(76.1117 -10.2154 0)
(76.5091 -9.60649 0)
(77.176 -10.0276 0)
(77.5461 -9.37723 0)
(77.8768 -8.71495 0)
(78.6001 -9.08864 0)
(78.9044 -8.38484 0)
(79.6721 -8.73802 0)
(80.4746 -9.10112 0)
(81.313 -9.47404 0)
(82.189 -9.85678 0)
(83.1039 -10.2494 0)
(83.4213 -9.36727 0)
(82.4969 -9.01057 0)
(81.611 -8.66234 0)
(81.872 -7.84143 0)
(82.7666 -8.15507 0)
(83.6993 -8.47613 0)
(83.9407 -7.57708 0)
(83.0007 -7.29146 0)
(82.0987 -7.01229 0)
(81.2341 -6.73999 0)
(81.0151 -7.53566 0)
(80.7627 -8.32301 0)
(79.9503 -7.99247 0)
(79.1727 -7.67081 0)
(78.4287 -7.35805 0)
(78.1702 -8.04157 0)
(77.4684 -7.70816 0)
(77.1857 -8.35213 0)
(76.8667 -8.98517 0)
(76.2181 -8.60487 0)
(75.8727 -9.19823 0)
(75.2658 -8.80256 0)
(74.6871 -8.41925 0)
(75.0091 -7.87885 0)
(75.5993 -8.23616 0)
(75.8958 -7.6586 0)
(76.5258 -8.00006 0)
(76.7979 -7.38451 0)
(77.0369 -6.75908 0)
(77.7171 -7.05416 0)
(77.9344 -6.39108 0)
(78.6547 -6.66536 0)
(79.4074 -6.94755 0)
(80.1939 -7.23766 0)
(80.4053 -6.4745 0)
(79.6112 -6.21594 0)
(78.8507 -5.96435 0)
(78.1227 -5.71974 0)
(77.4262 -5.48208 0)
(77.2456 -6.12467 0)
(76.5871 -5.86607 0)
(76.387 -6.47272 0)
(76.1574 -7.07052 0)
(75.5461 -6.76605 0)
(75.2946 -7.32759 0)
(74.7213 -7.00684 0)
(74.4464 -7.53271 0)
(74.1356 -8.04808 0)
(73.6101 -7.68878 0)
(73.1097 -7.34109 0)
(72.6334 -7.00474 0)
(72.9133 -6.55907 0)
(73.3995 -6.87307 0)
(73.9102 -7.19754 0)
(74.1748 -6.69615 0)
(73.6541 -6.39532 0)
(73.1582 -6.1041 0)
(73.3713 -5.64 0)
(73.8764 -5.90812 0)
(74.4065 -6.18503 0)
(74.9628 -6.47095 0)
(75.1738 -5.92571 0)
(75.7663 -6.19498 0)
(75.9579 -5.61519 0)
(76.1235 -5.02743 0)
(76.7602 -5.25134 0)
(76.9086 -4.62874 0)
(77.5813 -4.83153 0)
(78.2844 -5.04035 0)
(79.019 -5.25522 0)
(79.7862 -5.47616 0)
(80.587 -5.70316 0)
(81.4224 -5.93615 0)
(82.2934 -6.17503 0)
(83.2018 -6.41983 0)
(84.148 -6.67018 0)
(84.3239 -5.75341 0)
(83.3726 -5.53831 0)
(82.4589 -5.32789 0)
(82.5974 -4.4667 0)
(83.5153 -4.64264 0)
(84.4709 -4.82235 0)
(84.5901 -3.8749 0)
(83.6312 -3.73091 0)
(82.71 -3.59019 0)
(81.8249 -3.45252 0)
(81.7162 -4.29508 0)
(81.5824 -5.12248 0)
(80.7413 -4.92206 0)
(79.9349 -4.72674 0)
(79.1621 -4.53657 0)
(79.2818 -3.80505 0)
(80.0594 -3.96414 0)
(80.8705 -4.12751 0)
(80.9755 -3.31813 0)
(80.1605 -3.18709 0)
(79.379 -3.05946 0)
(79.4532 -2.31131 0)
(80.2376 -2.40757 0)
(81.0555 -2.50638 0)
(81.9077 -2.60772 0)
(82.7954 -2.71163 4.31229e-20)
(83.7193 -2.8179 -4.31631e-20)
(84.6806 -2.9264 0)
(85.6802 -3.03701 4.31187e-20)
(85.7436 -2.0868 0)
(86.7838 -2.16433 0)
(86.8215 -1.25178 2.51429e-20)
(87.902 -1.29699 -2.51752e-20)
(89.0235 -1.3428 0)
(85.7806 -1.20737 0)
(84.7787 -1.16348 0)
(84.7425 -2.01093 0)
(83.7795 -1.93656 0)
(82.8538 -1.8638 0)
(82.888 -1.07826 -3.92926e-22)
(83.8147 -1.12049 0)
(81.9973 -1.03706 0)
(81.9643 -1.7927 0)
(81.1101 -1.72316 0)
(80.2903 -1.65532 0)
(79.5039 -1.58922 0)
(79.5334 -0.919392 0)
(80.321 -0.957606 0)
(81.142 -0.996829 0)
(78.7782 -0.882191 0)
(78.7498 -1.52487 0)
(78.7012 -2.21762 0)
(78.63 -2.93525 0)
(78.5366 -3.65026 0)
(78.4217 -4.35158 0)
(77.7129 -4.17177 0)
(77.0345 -3.99712 0)
(76.3856 -3.82757 0)
(76.2654 -4.43192 0)
(75.6507 -4.241 0)
(75.5153 -4.81027 0)
(75.3571 -5.37191 0)
(74.7837 -5.13612 0)
(74.6085 -5.66478 0)
(74.0695 -5.41201 0)
(73.5559 -5.16722 0)
(73.7152 -4.68639 0)
(74.2367 -4.90766 0)
(74.3804 -4.39575 0)
(74.9346 -4.59975 0)
(75.0635 -4.05589 0)
(75.1727 -3.50357 0)
(75.7653 -3.66308 0)
(75.8611 -3.0739 0)
(76.4862 -3.21163 0)
(77.1398 -3.35357 0)
(77.8229 -3.49977 0)
(77.9124 -2.81447 0)
(77.2253 -2.69712 0)
(76.5678 -2.58317 0)
(75.9388 -2.47259 0)
(75.3376 -2.36533 0)
(75.2637 -2.94033 0)
(74.6931 -2.81084 0)
(74.6067 -3.34897 0)
(74.503 -3.87649 0)
(73.9682 -3.70268 0)
(73.8518 -4.19813 0)
(73.348 -4.00677 0)
(73.2183 -4.47214 0)
(73.0667 -4.93023 0)
(72.8905 -5.38046 0)
(72.6863 -5.82225 0)
(72.4506 -6.25528 0)
(72.1801 -6.67946 0)
(71.8733 -7.09482 0)
(71.5313 -7.50111 0)
(71.1575 -7.89757 0)
(70.7567 -8.28305 0)
(70.3329 -8.65627 0)
(69.8883 -9.0161 0)
(69.4242 -9.36158 0)
(68.9407 -9.69193 0)
(68.4383 -10.0064 0)
(67.9175 -10.3042 0)
(67.3792 -10.5846 0)
(66.824 -10.8467 0)
(66.2528 -11.0899 0)
(65.6663 -11.3134 0)
(65.0651 -11.5165 0)
(64.45 -11.6983 0)
(64.2726 -11.1182 0)
(64.1085 -10.5614 0)
(63.9565 -10.0273 0)
(64.5074 -9.8814 0)
(64.6801 -10.4043 0)
(64.8657 -10.9491 0)
(65.4457 -10.7594 0)
(65.2394 -10.2272 0)
(65.0467 -9.71604 0)
(64.8666 -9.22538 0)
(64.3467 -9.3797 0)
(63.816 -9.51519 0)
(63.6861 -9.02433 0)
(63.5659 -8.55401 0)
(63.4548 -8.10348 0)
(63.9291 -7.99507 0)
(64.0583 -8.43723 0)
(64.1973 -8.89854 0)
(64.6983 -8.75455 0)
(64.5412 -8.30289 0)
(64.3944 -7.86973 0)
(64.85 -7.72806 0)
(65.0137 -8.15161 0)
(65.1883 -8.59302 0)
(65.3747 -9.05293 0)
(65.5735 -9.53195 0)
(65.7856 -10.0307 0)
(66.0117 -10.5499 0)
(66.5632 -10.3211 0)
(66.3179 -9.81567 0)
(66.0873 -9.32984 0)
(66.5873 -9.1104 0)
(66.8358 -9.58275 0)
(67.0995 -10.0739 0)
(67.6197 -9.80912 0)
(67.3383 -9.33269 0)
(67.0728 -8.87435 0)
(66.8221 -8.43357 0)
(66.3532 -8.65633 0)
(65.8705 -8.86302 0)
(65.6667 -8.41461 0)
(65.4752 -7.98403 0)
(65.2953 -7.57066 0)
(65.7295 -7.39815 0)
(65.925 -7.80078 0)
(66.1327 -8.21999 0)
(66.5856 -8.0098 0)
(66.3624 -7.60251 0)
(66.1519 -7.21114 0)
(65.9534 -6.83515 0)
(65.5453 -7.01152 0)
(65.1262 -7.17391 0)
(64.6966 -7.32173 0)
(64.2573 -7.4544 0)
(63.8089 -7.57135 0)
(63.3521 -7.67201 0)
(63.2571 -7.25884 0)
(63.1693 -6.86324 0)
(63.088 -6.48446 0)
(63.4963 -6.40378 0)
(63.5931 -6.77641 0)
(63.6971 -7.16537 0)
(64.1292 -7.05623 0)
(64.0096 -6.67455 0)
(63.8979 -6.30869 0)
(63.7935 -5.95798 0)
(63.4062 -6.04675 0)
(63.0127 -6.12174 0)
(62.9431 -5.77436 0)
(62.8786 -5.44162 0)
(62.8188 -5.1228 0)
(63.1717 -5.0625 0)
(63.2444 -5.3768 0)
(63.3224 -5.70465 0)
(63.6959 -5.62176 0)
(63.6047 -5.29938 0)
(63.5195 -4.99018 0)
(63.8616 -4.90621 0)
(63.9589 -5.20975 0)
(64.0628 -5.52609 0)
(64.1737 -5.85586 0)
(64.292 -6.19968 0)
(64.4182 -6.55818 0)
(64.5529 -6.93198 0)
(64.9674 -6.79315 0)
(64.8182 -6.4278 0)
(64.678 -6.07724 0)
(65.0552 -5.94185 0)
(65.2088 -6.28394 0)
(65.372 -6.64031 0)
(65.7661 -6.474 0)
(65.5895 -6.12714 0)
(65.4231 -5.79403 0)
(65.2662 -5.47413 0)
(64.9107 -5.61346 0)
(64.5463 -5.74087 0)
(64.4226 -5.4181 0)
(64.3065 -5.10833 0)
(64.1973 -4.81098 0)
(64.5262 -4.70488 0)
(64.6466 -4.99554 0)
(64.7746 -5.29821 0)
(65.1183 -5.1669 0)
(64.9789 -4.87181 0)
(64.8476 -4.58832 0)
(65.161 -4.46173 0)
(65.3027 -4.73758 0)
(65.4529 -5.02463 0)
(65.6122 -5.32337 0)
(65.7809 -5.63431 0)
(65.9597 -5.95796 0)
(66.149 -6.29483 0)
(66.3495 -6.64542 0)
(66.5619 -7.01027 0)
(66.7867 -7.38987 0)
(67.0246 -7.78475 0)
(67.2765 -8.19543 0)
(67.543 -8.62242 0)
(67.8249 -9.06623 0)
(68.123 -9.52738 0)
(68.6088 -9.22949 0)
(68.2946 -8.78412 0)
(67.9971 -8.35533 0)
(68.4345 -8.07379 0)
(68.7469 -8.48709 0)
(69.0765 -8.9162 0)
(69.5256 -8.58822 0)
(69.1814 -8.17582 0)
(68.8549 -7.77848 0)
(68.5452 -7.39575 0)
(68.1385 -7.67585 0)
(67.7155 -7.94263 0)
(67.4491 -7.54553 0)
(67.197 -7.16354 0)
(66.9586 -6.79618 0)
(67.3413 -6.56952 0)
(67.5927 -6.92418 0)
(67.8582 -7.2928 0)
(68.2516 -7.02721 0)
(67.9733 -6.6724 0)
(67.7095 -6.33091 0)
(68.0631 -6.0809 0)
(68.3387 -6.4088 0)
(68.6292 -6.74936 0)
(68.9354 -7.10298 0)
(69.258 -7.47007 0)
(69.598 -7.85105 0)
(69.9559 -8.24631 0)
(70.3667 -7.89137 0)
(69.9959 -7.5136 0)
(69.6436 -7.14935 0)
(70.0098 -6.81736 0)
(70.3733 -7.16457 0)
(70.7556 -7.52453 0)
(71.1187 -7.14708 0)
(70.7262 -6.80529 0)
(70.3529 -6.47543 0)
(69.9978 -6.15719 0)
(69.6641 -6.48255 0)
(69.3088 -6.79825 0)
(68.9909 -6.45992 0)
(68.6889 -6.13397 0)
(68.4023 -5.82004 0)
(68.7266 -5.54904 0)
(69.0233 -5.84874 0)
(69.3356 -6.15979 0)
(69.6602 -5.85026 0)
(69.3391 -5.55432 0)
(69.0338 -5.26907 0)
(68.7435 -4.9942 0)
(68.4448 -5.26035 0)
(68.1303 -5.51772 0)
(67.8019 -5.76525 0)
(67.4597 -6.0023 0)
(67.1034 -6.22838 0)
(66.7331 -6.44296 0)
(66.52 -6.10338 0)
(66.3184 -5.77698 0)
(66.1279 -5.46325 0)
(66.4635 -5.28142 0)
(66.6651 -5.58479 0)
(66.8782 -5.90029 0)
(67.223 -5.68613 0)
(66.9989 -5.38197 0)
(66.7868 -5.08939 0)
(66.586 -4.80796 0)
(66.2728 -4.98973 0)
(65.948 -5.16172 0)
(65.7779 -4.87191 0)
(65.6173 -4.59335 0)
(65.4657 -4.32555 0)
(65.7611 -4.18028 0)
(65.9221 -4.43961 0)
(66.0925 -4.70928 0)
(66.396 -4.53728 0)
(66.2163 -4.2769 0)
(66.0464 -4.02642 0)
(66.321 -3.86449 0)
(66.4993 -4.10573 0)
(66.6878 -4.35641 0)
(66.887 -4.61693 0)
(67.0975 -4.88767 0)
(67.3197 -5.16903 0)
(67.5543 -5.46143 0)
(67.8723 -5.22664 0)
(67.6277 -4.94642 0)
(67.3958 -4.67667 0)
(67.6823 -4.45679 0)
(67.9232 -4.71458 0)
(68.1772 -4.98232 0)
(68.4677 -4.72938 0)
(68.2055 -4.47431 0)
(67.9565 -4.22866 0)
(67.7201 -3.99211 0)
(67.4537 -4.20858 0)
(67.1761 -4.41702 0)
(66.968 -4.16709 0)
(66.7711 -3.9265 0)
(66.5847 -3.6949 0)
(66.8379 -3.51793 0)
(67.0321 -3.7395 0)
(67.2372 -3.9696 0)
(67.4958 -3.76433 0)
(67.2831 -3.545 0)
(67.0816 -3.33377 0)
(66.8908 -3.13033 0)
(66.6543 -3.30455 0)
(66.4085 -3.47193 0)
(66.1525 -3.63232 0)
(65.8859 -3.78544 0)
(65.609 -3.93085 0)
(65.3226 -4.06805 0)
(65.0274 -4.19656 0)
(64.724 -4.31591 0)
(64.413 -4.42568 0)
(64.0949 -4.52546 0)
(63.7703 -4.61487 0)
(63.4398 -4.69353 0)
(63.104 -4.76108 0)
(62.7634 -4.81719 0)
(62.7121 -4.52408 0)
(62.6645 -4.24279 0)
(62.6205 -3.97264 0)
(62.9276 -3.92746 0)
(62.9822 -4.19422 0)
(63.0409 -4.47188 0)
(63.3654 -4.40878 0)
(63.2958 -4.1353 0)
(63.2309 -3.87246 0)
(63.1703 -3.61965 0)
(62.8767 -3.67096 0)
(62.5796 -3.71297 0)
(62.5418 -3.46308 0)
(62.5069 -3.2223 0)
(62.4746 -2.98992 0)
(62.7448 -2.95639 0)
(62.7855 -3.18609 0)
(62.8294 -3.42406 0)
(63.1138 -3.37624 0)
(63.0611 -3.14158 0)
(63.0122 -2.91504 0)
(63.2762 -2.86608 0)
(63.3331 -3.08898 0)
(63.3942 -3.31985 0)
(63.4597 -3.55929 0)
(63.5298 -3.80791 0)
(63.6048 -4.06632 0)
(63.6848 -4.3351 0)
(63.9987 -4.25119 0)
(63.9085 -3.98759 0)
(63.8239 -3.7341 0)
(64.1125 -3.65135 0)
(64.2064 -3.89946 0)
(64.3065 -4.15739 0)
(64.6076 -4.05406 0)
(64.4981 -3.80225 0)
(64.3951 -3.55997 0)
(64.2984 -3.32669 0)
(64.0243 -3.41251 0)
(63.7446 -3.49015 0)
(63.6704 -3.25515 0)
(63.6011 -3.02853 0)
(63.5364 -2.80972 0)
(63.7922 -2.74619 0)
(63.8644 -2.96048 0)
(63.9417 -3.1824 0)
(64.2077 -3.10191 0)
(64.1227 -2.8851 0)
(64.0433 -2.67575 0)
(63.9693 -2.47333 0)
(63.725 -2.53897 0)
(63.4762 -2.59811 0)
(63.2233 -2.65052 0)
(62.9668 -2.69597 0)
(62.7072 -2.73428 0)
(62.4449 -2.76526 0)
(62.4176 -2.54757 0)
(62.3926 -2.33613 0)
(62.37 -2.13016 0)
(62.6117 -2.10641 0)
(62.6407 -2.31003 0)
(62.6725 -2.51906 0)
(62.9249 -2.48371 0)
(62.8864 -2.27755 0)
(62.8512 -2.07678 0)
(62.8193 -1.88057 0)
(62.5855 -1.90738 0)
(62.3496 -1.92881 0)
(62.3314 -1.73115 0)
(62.315 -1.53626 0)
(62.301 -1.34306 0)
(62.5224 -1.3288 0)
(62.5408 -1.51956 0)
(62.562 -1.71206 0)
(62.7906 -1.68809 0)
(62.7645 -1.49851 0)
(62.7419 -1.31074 0)
(62.9591 -1.28893 0)
(62.986 -1.47318 0)
(63.0167 -1.65935 0)
(63.0505 -1.8485 0)
(63.088 -2.04139 0)
(63.1293 -2.23885 0)
(63.1744 -2.44166 0)
(63.4204 -2.39311 0)
(63.3689 -2.1941 0)
(63.3217 -2.00039 0)
(63.5519 -1.95394 0)
(63.6049 -2.14346 0)
(63.6626 -2.33826 0)
(63.9004 -2.2773 0)
(63.8368 -2.08712 0)
(63.7782 -1.90221 0)
(63.7249 -1.7219 0)
(63.5037 -1.76902 0)
(63.2788 -1.81127 0)
(63.24 -1.62592 0)
(63.2046 -1.44362 0)
(63.1736 -1.26339 0)
(63.3851 -1.23419 0)
(63.4201 -1.40993 0)
(63.46 -1.58792 0)
(63.6765 -1.54545 0)
(63.6322 -1.3722 0)
(63.5931 -1.20137 0)
(63.7974 -1.16501 0)
(63.8404 -1.33053 0)
(63.889 -1.49866 0)
(63.942 -1.67006 0)
(64.0003 -1.84536 0)
(64.0642 -2.0253 0)
(64.1336 -2.21047 0)
(64.2086 -2.40142 0)
(64.2892 -2.59865 0)
(64.3756 -2.80266 0)
(64.4679 -3.01395 0)
(64.5664 -3.233 0)
(64.6713 -3.4603 0)
(64.7829 -3.69634 0)
(64.9015 -3.9416 0)
(65.1876 -3.82039 0)
(65.0604 -3.58209 0)
(64.9406 -3.35271 0)
(65.2024 -3.23758 0)
(65.33 -3.45993 0)
(65.4655 -3.69087 0)
(65.7342 -3.55352 0)
(65.5911 -3.33029 0)
(65.4561 -3.11532 0)
(65.3289 -2.90823 0)
(65.0822 -3.02339 0)
(64.8279 -3.13178 0)
(64.7219 -2.91885 0)
(64.6226 -2.71347 0)
(64.5295 -2.51517 0)
(64.7638 -2.4256 0)
(64.8632 -2.61783 0)
(64.9692 -2.81695 0)
(65.2093 -2.70862 0)
(65.0969 -2.51609 0)
(64.9915 -2.33027 0)
(65.2121 -2.22953 0)
(65.3231 -2.40865 0)
(65.4414 -2.59427 0)
(65.5672 -2.78673 0)
(65.701 -2.9864 0)
(65.8428 -3.19365 0)
(65.9932 -3.40883 0)
(66.242 -3.25723 0)
(66.0848 -3.05046 0)
(65.9364 -2.85128 0)
(66.1623 -2.71029 0)
(66.3169 -2.90105 0)
(66.4808 -3.09903 0)
(66.7104 -2.93436 0)
(66.54 -2.74555 0)
(66.3793 -2.5636 0)
(66.2278 -2.38821 0)
(66.0166 -2.52644 0)
(65.7966 -2.65934 0)
(65.6649 -2.47433 0)
(65.5411 -2.29592 0)
(65.425 -2.12379 0)
(65.6296 -2.01345 0)
(65.7505 -2.17831 0)
(65.8794 -2.34921 0)
(66.0853 -2.21913 0)
(65.9513 -2.05608 0)
(65.8257 -1.89881 0)
(65.7082 -1.7471 0)
(65.5164 -1.85437 0)
(65.3163 -1.95763 0)
(65.1083 -2.05655 0)
(64.893 -2.15075 0)
(64.6709 -2.23985 0)
(64.4426 -2.3235 0)
(64.3617 -2.138 0)
(64.2868 -1.9582 0)
(64.2177 -1.78361 0)
(64.4301 -1.71714 0)
(64.5041 -1.88605 0)
(64.5844 -2.06014 0)
(64.8011 -1.97716 0)
(64.7159 -1.8091 0)
(64.6372 -1.64619 0)
(64.5652 -1.48797 0)
(64.3625 -1.55291 0)
(64.1546 -1.61367 0)
(64.0972 -1.44768 0)
(64.0445 -1.28504 0)
(63.9976 -1.12518 0)
(64.1934 -1.08197 0)
(64.2441 -1.23584 0)
(64.3008 -1.39267 0)
(64.4995 -1.3338 0)
(64.4389 -1.18309 0)
(64.3846 -1.0355 0)
(64.5709 -0.985876 0)
(64.6286 -1.12694 0)
(64.6928 -1.27126 0)
(64.7623 -1.41907 0)
(64.8385 -1.57099 0)
(64.9215 -1.72763 0)
(65.0115 -1.88937 0)
(65.2149 -1.79711 0)
(65.1206 -1.64195 0)
(65.0334 -1.49185 0)
(65.2215 -1.40909 0)
(65.3124 -1.55243 0)
(65.4107 -1.70078 0)
(65.5986 -1.6007 0)
(65.4966 -1.45942 0)
(65.4022 -1.32305 0)
(65.3155 -1.19139 0)
(65.138 -1.27047 0)
(64.9534 -1.34648 0)
(64.8803 -1.20527 0)
(64.8129 -1.0676 0)
(64.7518 -0.933278 0)
(64.927 -0.877905 0)
(64.9911 -1.0053 0)
(65.0616 -1.13609 0)
(65.2362 -1.06403 0)
(65.1629 -0.940318 0)
(65.096 -0.820004 0)
(65.2586 -0.759835 0)
(65.3281 -0.872938 0)
(65.4037 -0.989364 0)
(65.4857 -1.1095 0)
(65.5755 -1.23399 0)
(65.6732 -1.36314 0)
(65.7788 -1.49709 0)
(65.8924 -1.63597 0)
(66.0142 -1.77997 0)
(66.1445 -1.92927 0)
(66.2835 -2.08409 0)
(66.4314 -2.24466 0)
(66.5886 -2.41122 0)
(66.7554 -2.58403 0)
(66.9319 -2.76339 0)
(67.1186 -2.94958 0)
(67.3157 -3.14291 0)
(67.5236 -3.34368 0)
(67.7426 -3.55218 0)
(67.9732 -3.76872 0)
(68.2158 -3.99358 0)
(68.4711 -4.22705 0)
(68.7395 -4.46939 0)
(69.0218 -4.72088 0)
(69.3187 -4.98179 0)
(69.6309 -5.25238 0)
(69.9593 -5.53294 0)
(70.3046 -5.82372 0)
(70.6678 -6.12502 0)
(71.0496 -6.43711 0)
(71.4512 -6.76028 0)
(71.749 -6.36497 0)
(71.339 -6.06098 0)
(70.9492 -5.76721 0)
(71.1949 -5.40244 0)
(71.5923 -5.67723 0)
(72.0106 -5.96142 0)
(72.2375 -5.54955 0)
(71.8109 -5.28572 0)
(71.4056 -5.0305 0)
(71.0208 -4.78364 0)
(70.8174 -5.13677 0)
(70.5788 -5.4834 0)
(70.2269 -5.20926 0)
(69.8924 -4.94454 0)
(69.5747 -4.68898 0)
(69.7962 -4.39186 0)
(70.1189 -4.63174 0)
(70.459 -4.87996 0)
(70.6558 -4.54486 0)
(70.3097 -4.31389 0)
(69.9816 -4.09049 0)
(70.1341 -3.78407 0)
(70.4681 -3.99027 0)
(70.8207 -4.20332 0)
(71.1928 -4.42349 0)
(71.585 -4.65104 0)
(71.9982 -4.88622 0)
(72.4331 -5.12928 0)
(72.6012 -4.70084 0)
(72.1584 -4.47883 0)
(71.7375 -4.264 0)
(71.8671 -3.86968 0)
(72.295 -4.06397 0)
(72.7452 -4.26473 0)
(72.8681 -3.82149 0)
(72.4113 -3.64214 0)
(71.9768 -3.46856 0)
(71.5639 -3.30056 0)
(71.4605 -3.68165 0)
(71.3379 -4.0561 0)
(70.9588 -3.85492 0)
(70.5994 -3.6602 0)
(70.2591 -3.47172 0)
(70.362 -3.15305 0)
(70.7086 -3.32356 0)
(71.0746 -3.49969 0)
(71.1718 -3.13797 0)
(70.7998 -2.98059 0)
(70.4472 -2.82823 0)
(70.1134 -2.6807 0)
(70.034 -2.98795 0)
(69.9371 -3.2892 0)
(69.8181 -3.58447 0)
(69.671 -3.87439 0)
(69.49 -4.16008 0)
(69.2728 -4.44234 0)
(68.9859 -4.20439 0)
(68.7132 -3.97489 0)
(68.4539 -3.75363 0)
(68.6623 -3.51116 0)
(68.9239 -3.71992 0)
(69.1996 -3.93617 0)
(69.3768 -3.66536 0)
(69.0983 -3.46316 0)
(68.8347 -3.26762 0)
(68.5852 -3.07854 0)
(68.4138 -3.3097 0)
(68.2073 -3.5404 0)
(67.9727 -3.33498 0)
(67.7496 -3.13716 0)
(67.5375 -2.94669 0)
(67.7396 -2.74764 0)
(67.9532 -2.92808 0)
(68.1777 -3.11539 0)
(68.3487 -2.89579 0)
(68.1246 -2.71927 0)
(67.9119 -2.54888 0)
(68.0468 -2.35248 0)
(68.2581 -2.51207 0)
(68.482 -2.67691 0)
(68.7192 -2.84709 0)
(68.9707 -3.02274 0)
(69.2371 -3.20405 0)
(69.5193 -3.39121 0)
(69.6329 -3.1124 0)
(69.3458 -2.94107 0)
(69.0752 -2.77495 0)
(69.1558 -2.52263 0)
(69.4315 -2.67298 0)
(69.724 -2.828 0)
(69.7979 -2.5378 0)
(69.4999 -2.39929 0)
(69.219 -2.26498 0)
(68.9546 -2.13464 0)
(68.8964 -2.37671 0)
(68.8204 -2.6138 0)
(68.5807 -2.45738 0)
(68.3555 -2.30551 0)
(68.144 -2.15802 0)
(68.2105 -1.96309 0)
(68.4244 -2.09717 0)
(68.6528 -2.23497 0)
(68.7063 -2.00803 0)
(68.4735 -1.8849 0)
(68.2559 -1.76503 0)
(68.2877 -1.5623 0)
(68.5097 -1.66764 0)
(68.747 -1.77587 0)
(69 -1.8872 0)
(69.2692 -2.00184 0)
(69.555 -2.11999 0)
(69.858 -2.24184 0)
(70.1787 -2.36759 0)
(70.5177 -2.4974 0)
(70.8756 -2.63147 0)
(71.2531 -2.76995 0)
(71.6508 -2.91302 0)
(72.0694 -3.06085 0)
(72.5097 -3.21357 0)
(72.9724 -3.37136 0)
(73.4583 -3.53435 0)
(73.5512 -3.05407 0)
(74.0665 -3.19917 0)
(74.1483 -2.68537 0)
(74.2146 -2.16058 0)
(74.7631 -2.26135 0)
(74.8165 -1.70911 0)
(75.3939 -1.7876 0)
(75.9981 -1.86854 0)
(76.63 -1.95199 0)
(77.2905 -2.03796 0)
(77.9806 -2.12651 0)
(78.0272 -1.46228 0)
(77.3351 -1.40146 0)
(76.6725 -1.3424 0)
(76.6973 -0.77669 0)
(77.3611 -0.810847 0)
(78.0544 -0.84601 0)
(76.0622 -0.743536 3.13585e-21)
(76.0386 -1.28507 0)
(75.4323 -1.22946 0)
(74.8529 -1.17553 0)
(74.2994 -1.12326 0)
(74.265 -1.63306 0)
(73.7387 -1.55937 0)
(73.6911 -2.06296 0)
(73.6285 -2.56383 0)
(73.1329 -2.44612 0)
(73.0601 -2.91357 0)
(72.5922 -2.77754 0)
(72.1469 -2.64586 0)
(72.211 -2.22184 0)
(72.6607 -2.33216 0)
(72.7159 -1.87687 0)
(73.1918 -1.96841 0)
(73.2365 -1.488 0)
(73.267 -1.02359 0)
(73.7711 -1.07263 0)
(73.79 -0.620687 0)
(74.3195 -0.649971 0)
(74.8742 -0.680194 0)
(75.4547 -0.711371 -3.13251e-21)
(73.2848 -0.592324 0)
(72.8031 -0.564858 0)
(72.7864 -0.976098 0)
(72.7579 -1.4189 0)
(72.3019 -1.352 0)
(72.2627 -1.78825 0)
(71.8313 -1.70247 0)
(71.7832 -2.11506 0)
(71.7233 -2.51841 0)
(71.3208 -2.39506 0)
(70.9385 -2.27565 0)
(70.5759 -2.16005 0)
(70.6234 -1.81479 0)
(70.9901 -1.91165 0)
(71.3764 -2.0117 0)
(71.4211 -1.61943 0)
(71.0314 -1.53906 0)
(70.6614 -1.46124 0)
(70.6899 -1.10512 0)
(71.0625 -1.16387 0)
(71.4549 -1.22455 0)
(71.8678 -1.28724 0)
(71.8926 -0.885614 0)
(72.3285 -0.930122 0)
(72.344 -0.538266 0)
(71.907 -0.512524 0)
(71.4912 -0.487605 0)
(71.4778 -0.842531 0)
(71.0836 -0.800826 0)
(70.7092 -0.760451 0)
(70.7204 -0.44013 0)
(71.0958 -0.463483 0)
(70.3641 -0.417518 3.87396e-22)
(70.354 -0.721357 0)
(70.3365 -1.04824 0)
(70.3105 -1.3859 0)
(70.2759 -1.72101 0)
(70.2323 -2.04812 0)
(69.907 -1.93971 0)
(69.5996 -1.83465 0)
(69.3094 -1.7328 0)
(69.3414 -1.45683 0)
(69.6354 -1.54215 0)
(69.9467 -1.63017 0)
(69.9781 -1.31292 0)
(69.6636 -1.24222 0)
(69.3664 -1.17368 0)
(69.0861 -1.10721 0)
(69.0642 -1.37407 0)
(69.0359 -1.634 0)
(68.7786 -1.53807 0)
(68.5371 -1.44484 0)
(68.3109 -1.35413 0)
(68.3281 -1.13974 0)
(68.558 -1.21566 0)
(68.8032 -1.29372 0)
(68.822 -1.04269 0)
(68.5737 -0.980009 0)
(68.3408 -0.919062 0)
(68.3497 -0.695859 0)
(68.585 -0.74185 0)
(68.8357 -0.789152 0)
(69.1021 -0.837853 0)
(69.3849 -0.888026 0)
(69.6846 -0.939765 0)
(70.0015 -0.993145 0)
(70.0173 -0.683494 0)
(69.6986 -0.64681 3.53462e-22)
(69.3973 -0.611252 0)
(69.4044 -0.353838 0)
(69.7067 -0.374403 -7.72246e-22)
(70.0265 -0.395619 0)
(69.1189 -0.333889 3.84609e-22)
(69.1128 -0.576767 0)
(68.8447 -0.543305 -2.81226e-21)
(68.5924 -0.510799 2.80515e-21)
(68.3555 -0.479205 0)
(68.3587 -0.277471 0)
(68.5966 -0.295744 0)
(68.8498 -0.314535 0)
(68.1358 -0.25969 0)
(68.1335 -0.448454 0)
(68.1294 -0.651099 0)
(68.1229 -0.859727 0)
(68.1133 -1.0658 0)
(68.0997 -1.26574 0)
(68.0806 -1.4596 0)
(68.0528 -1.64817 0)
(68.0107 -1.83252 0)
(67.9454 -2.01481 0)
(67.847 -2.19809 0)
(67.7098 -2.38457 0)
(67.5363 -2.5739 0)
(67.3359 -2.76334 0)
(67.1444 -2.58685 0)
(66.9629 -2.41695 0)
(66.791 -2.25336 0)
(66.984 -2.0912 0)
(67.1589 -2.24588 0)
(67.3429 -2.40671 0)
(67.5176 -2.22628 0)
(67.3346 -2.07396 0)
(67.1603 -1.92751 0)
(66.9944 -1.78685 0)
(66.8182 -1.94243 0)
(66.6286 -2.09581 0)
(66.4755 -1.94403 0)
(66.3315 -1.79776 0)
(66.1965 -1.65678 0)
(66.3738 -1.52915 0)
(66.5131 -1.66166 0)
(66.6613 -1.79934 0)
(66.8365 -1.65181 0)
(66.6867 -1.52221 0)
(66.545 -1.39783 0)
(66.7036 -1.26536 0)
(66.8439 -1.38259 0)
(66.9913 -1.50512 0)
(67.1459 -1.63303 0)
(67.3081 -1.76632 0)
(67.4786 -1.90496 0)
(67.6579 -2.0489 0)
(67.7588 -1.87583 0)
(67.5832 -1.74111 0)
(67.4176 -1.61075 0)
(67.4877 -1.46086 0)
(67.6501 -1.58144 0)
(67.8242 -1.70533 0)
(67.8639 -1.53409 0)
(67.6886 -1.42262 0)
(67.5262 -1.31363 0)
(67.376 -1.20707 0)
(67.3359 -1.34371 0)
(67.2612 -1.4849 0)
(67.1128 -1.36376 0)
(66.9717 -1.24751 0)
(66.8372 -1.13632 0)
(66.9337 -1.01524 0)
(67.06 -1.12058 0)
(67.1937 -1.23018 0)
(67.2371 -1.10303 0)
(67.1085 -1.00173 0)
(66.9891 -0.903492 0)
(66.8777 -0.808767 0)
(66.8139 -0.914504 0)
(66.709 -1.03029 0)
(66.5703 -1.15331 0)
(66.4115 -1.27845 0)
(66.2432 -1.40159 0)
(66.0702 -1.52087 0)
(65.9525 -1.38987 0)
(65.8432 -1.26361 0)
(65.7421 -1.14199 0)
(65.9033 -1.04685 0)
(66.0081 -1.16057 0)
(66.1213 -1.27878 0)
(66.2862 -1.16384 0)
(66.1693 -1.05383 0)
(66.061 -0.948252 0)
(65.9612 -0.847037 0)
(65.8071 -0.937569 0)
(65.6492 -1.02494 0)
(65.5644 -0.912242 0)
(65.4865 -0.80329 0)
(65.4147 -0.6976 0)
(65.565 -0.633406 0)
(65.6391 -0.731298 0)
(65.7193 -0.832557 0)
(65.8702 -0.750019 0)
(65.7872 -0.65677 0)
(65.7105 -0.567106 0)
(65.8531 -0.498276 0)
(65.9325 -0.579447 0)
(66.0185 -0.664402 0)
(66.1125 -0.753249 0)
(66.2151 -0.846386 0)
(66.3258 -0.944008 0)
(66.4443 -1.04626 0)
(66.5868 -0.929461 0)
(66.4707 -0.833762 0)
(66.361 -0.74309 0)
(66.4877 -0.64268 0)
(66.5912 -0.728031 0)
(66.6999 -0.818689 0)
(66.7732 -0.718059 0)
(66.6746 -0.631877 0)
(66.5811 -0.550701 0)
(66.4924 -0.474954 0)
(66.3895 -0.562714 0)
(66.2583 -0.657319 0)
(66.1631 -0.57624 0)
(66.0753 -0.499426 0)
(65.9936 -0.426714 -2.58561e-21)
(66.1294 -0.353364 -2.57392e-21)
(66.2109 -0.418333 0)
(66.2973 -0.488058 0)
(66.4083 -0.404889 0)
(66.3286 -0.340396 0)
(66.252 -0.281491 2.03939e-20)
(66.3479 -0.216578 1.99752e-20)
(66.4145 -0.27132 0)
(66.4833 -0.332087 2.52955e-21)
(66.5562 -0.398513 0)
(66.634 -0.470318 0)
(66.7174 -0.546897 0)
(66.8072 -0.627534 0)
(66.9046 -0.711537 0)
(67.0108 -0.798285 0)
(67.1269 -0.887278 0)
(67.254 -0.978172 0)
(67.393 -1.07079 0)
(67.5446 -1.16511 0)
(67.7095 -1.26123 0)
(67.888 -1.35933 0)
(67.9031 -1.17948 0)
(67.7208 -1.09513 0)
(67.5524 -1.01246 0)
(67.555 -0.854177 0)
(67.727 -0.923198 0)
(67.913 -0.993675 0)
(67.9195 -0.801882 0)
(67.7304 -0.745393 0)
(67.5552 -0.690117 0)
(67.3937 -0.635894 0)
(67.3967 -0.786404 0)
(67.3977 -0.931254 0)
(67.2562 -0.851301 0)
(67.1277 -0.772466 0)
(67.0114 -0.694712 0)
(67.002 -0.58849 0)
(67.1205 -0.65375 0)
(67.252 -0.719665 0)
(67.2457 -0.582544 0)
(67.1111 -0.529869 0)
(66.9895 -0.477661 0)
(66.978 -0.363657 0)
(67.1024 -0.402818 0)
(67.2398 -0.44236 0)
(67.3904 -0.482458 0)
(67.5545 -0.523261 0)
(67.7321 -0.564897 0)
(67.9237 -0.607477 0)
(67.9261 -0.41849 0)
(67.7329 -0.389252 0)
(67.5536 -0.360673 0)
(67.5529 -0.208943 0)
(67.7332 -0.225462 0)
(67.9274 -0.242366 0)
(67.3861 -0.192768 0)
(67.3878 -0.332684 0)
(67.2353 -0.305206 0)
(67.0959 -0.27815 0)
(66.9695 -0.251402 0)
(66.9644 -0.145882 0)
(67.0921 -0.161289 0)
(67.2326 -0.176899 0)
(66.8496 -0.130603 0)
(66.856 -0.224818 0)
(66.8667 -0.324681 0)
(66.8809 -0.425737 0)
(66.8959 -0.523808 0)
(66.9066 -0.618164 0)
(66.8124 -0.543148 0)
(66.7277 -0.470196 0)
(66.6514 -0.400029 0)
(66.6455 -0.335237 2.42213e-21)
(66.7186 -0.396743 0)
(66.8017 -0.45979 0)
(66.7849 -0.373994 0)
(66.701 -0.322493 0)
(66.6284 -0.271555 -1.18944e-21)
(66.5663 -0.22182 -3.84814e-20)
(66.5814 -0.276091 -1.19432e-21)
(66.5822 -0.333501 0)
(66.5194 -0.27144 2.44916e-21)
(66.4616 -0.214442 1.94513e-20)
(66.4069 -0.163228 3.84397e-20)
(66.4304 -0.121924 -7.24552e-20)
(66.4754 -0.168484 -9.26293e-20)
(66.5251 -0.220231 -4.70789e-21)
(66.5135 -0.174188 3.64363e-20)
(66.4686 -0.129653 3.5384e-20)
(66.43 -0.0895765 1.32108e-23)
(66.4188 -0.0623925 3.91911e-19)
(66.4535 -0.0947257 -3.13581e-19)
(66.4956 -0.1306 -6.81959e-20)
(66.5469 -0.168494 7.98071e-20)
(66.6089 -0.207395 -6.0135e-21)
(66.6825 -0.246585 6.12834e-21)
(66.7683 -0.285698 2.48726e-21)
(66.7554 -0.198216 -2.64024e-21)
(66.6675 -0.171398 3.89949e-21)
(66.5923 -0.144222 -4.32916e-20)
(66.5813 -0.0841773 -5.5203e-20)
(66.6579 -0.0999236 9.88196e-21)
(66.7474 -0.115337 0)
(66.5175 -0.0679716 4.27069e-20)
(66.5296 -0.116737 1.92982e-19)
(66.4786 -0.08934 -4.60925e-19)
(66.4381 -0.062888 2.86626e-19)
(66.4067 -0.0390378 -4.88009e-19)
(66.3982 -0.0204495 -5.57454e-19)
(66.4271 -0.0351228 -3.00254e-19)
(66.4665 -0.0514303 3.25153e-19)
(66.3799 -0.00994117 4.43778e-19)
(66.3851 -0.0202322 6.53201e-19)
(66.3925 -0.0360706 2.34182e-19)
(66.3979 -0.0563799 0)
(66.3904 -0.0827526 -1.40003e-19)
(66.3559 -0.119623 -2.25681e-19)
(66.2851 -0.169357 3.92365e-20)
(66.1807 -0.229356 5.00672e-21)
(66.055 -0.294125 1.13709e-20)
(65.9201 -0.358994 2.22069e-21)
(65.7823 -0.421769 -2.54414e-21)
(65.6426 -0.482065 -3.1878e-22)
(65.4997 -0.540186 0)
(65.3521 -0.59648 0)
(65.1985 -0.65103 0)
(65.0386 -0.703633 0)
(64.8723 -0.754018 0)
(64.7001 -0.801977 0)
(64.5223 -0.847319 0)
(64.3393 -0.889892 0)
(64.1513 -0.929587 0)
(63.9588 -0.966323 0)
(63.7619 -1.00004 0)
(63.561 -1.0307 0)
(63.3564 -1.05826 0)
(63.1484 -1.08271 0)
(62.9373 -1.10401 0)
(62.7236 -1.12216 0)
(62.5076 -1.13712 0)
(62.2898 -1.1489 0)
(62.2809 -0.950676 0)
(62.2742 -0.747756 3.88299e-25)
(62.4871 -0.740874 2.62021e-21)
(62.496 -0.941392 0)
(62.7092 -0.929557 0)
(62.6981 -0.732099 0)
(62.9069 -0.721429 0)
(62.9201 -0.915179 0)
(63.1284 -0.898261 0)
(63.113 -0.708865 0)
(63.3161 -0.694394 0)
(63.3337 -0.8788 0)
(63.5355 -0.856788 0)
(63.5157 -0.677998 0)
(63.7117 -0.659655 0)
(63.7336 -0.83222 0)
(63.9278 -0.805089 0)
(63.9036 -0.639334 0)
(64.0912 -0.617003 0)
(64.1176 -0.775392 0)
(64.3028 -0.743136 0)
(64.2742 -0.592627 0)
(64.4524 -0.56618 0)
(64.4832 -0.708343 0)
(64.6584 -0.67106 0)
(64.6254 -0.537653 0)
(64.7931 -0.507065 0)
(64.8282 -0.63137 0)
(64.9921 -0.589394 0)
(64.9551 -0.474479 0)
(65.111 -0.440016 0)
(65.1499 -0.545276 0)
(65.3013 -0.499276 0)
(65.2606 -0.403796 0)
(65.4043 -0.36591 0)
(65.4467 -0.451613 0)
(65.5871 -0.40226 3.13047e-22)
(65.5429 -0.326375 2.5216e-21)
(65.6778 -0.285063 -1.13004e-20)
(65.724 -0.350994 0)
(65.8591 -0.29752 3.111e-22)
(65.8106 -0.24174 5.25042e-20)
(65.9419 -0.196331 -3.48048e-20)
(65.9922 -0.241898 3.83956e-20)
(66.1194 -0.185464 -4.90808e-20)
(66.0696 -0.149606 0)
(66.1856 -0.104218 2.69487e-19)
(66.2305 -0.131885 5.03028e-25)
(66.3124 -0.086754 0)
(66.2775 -0.0650422 -2.93336e-19)
(66.335 -0.0365322 7.95396e-19)
(66.3584 -0.0540817 8.07404e-19)
(66.3749 -0.0325103 -4.6991e-19)
(66.3606 -0.0185291 -4.39244e-19)
(66.3676 -0.00865621 -6.18388e-19)
(66.3761 -0.0179726 -3.94504e-19)
(66.3734 -0.00918892 -3.06632e-19)
(66.3686 -0.00336975 2.10288e-19)
(66.3685 -0.00375451 -1.47331e-19)
(66.372 -0.00328796 3.7989e-19)
(52.8957 -34.8434 3.23146e-18)
(53.9059 -34.9572 -2.77844e-17)
(51.5617 -30.376 3.3517e-18)
(52.2232 -29.7651 2.96838e-17)
(51.193 -29.4498 1.62337e-18)
(49.212 -28.9393 -2.72787e-17)
(48.2026 -29.9187 1.48439e-18)
(49.2107 -30.4674 7.5618e-19)
(51.9738 -38.2918 0)
(53.0164 -38.7536 0)
(52.6101 -38.9379 0)
(53.3441 -39.2796 1.59323e-18)
(53.7462 -38.9213 -1.68827e-18)
(56.7159 -40.8538 -4.02023e-19)
(64.9653 -52.1343 0)
(73.1547 -58.3141 -1.59285e-18)
(90.207 -65.7297 2.37468e-17)
(84.0619 -64.5508 0)
(107.031 -73.7283 0)
(108.047 -73.3655 0)
(137.372 -73.8505 -2.2689e-17)
(159.59 -67.617 -2.34221e-17)
(137.664 0.183471 0)
(137.845 0.354174 7.47503e-19)
(57.5412 -0.158952 -1.11363e-19)
(57.5991 -0.131207 -4.77209e-18)
(57.6228 -0.103424 2.67556e-17)
(57.6042 -0.0761652 0)
(57.5608 -0.108416 1.58332e-18)
(57.4907 -0.14827 0)
(57.4294 -0.122984 -9.56216e-19)
(57.382 -0.0882502 0)
(57.504 -0.0535316 0)
(57.5227 -0.0767704 -6.45677e-18)
(57.5846 -0.0489419 2.7566e-17)
(57.6395 -0.0417358 1.06386e-17)
(57.6247 -0.0223475 -3.15244e-17)
(57.5825 -0.0328678 0)
(57.6392 -0.0158421 -1.11391e-17)
(57.6333 -0.0411771 -3.82416e-18)
(57.6129 -0.0440909 -1.42588e-18)
(57.591 -0.0474561 0)
(57.5769 -0.053122 8.56653e-24)
(57.5887 -0.0649571 0)
(57.6479 -0.0857782 -1.86813e-19)
(57.7564 -0.113808 1.42265e-19)
(57.8958 -0.143583 -2.14609e-19)
(58.047 -0.170854 -5.97248e-21)
(58.201 -0.194401 0)
(58.3559 -0.214668 0)
(58.5132 -0.232453 0)
(58.6748 -0.248367 0)
(58.8419 -0.262775 0)
(59.0147 -0.275864 0)
(59.1934 -0.287717 0)
(59.3775 -0.29839 0)
(59.5666 -0.307933 0)
(59.7601 -0.316397 0)
(59.9576 -0.323834 0)
(60.1587 -0.330289 0)
(60.3629 -0.335801 0)
(60.5698 -0.3404 0)
(60.779 -0.344109 0)
(60.9899 -0.346959 0)
(61.2022 -0.348951 0)
(61.4152 -0.350091 0)
(61.6287 -0.350412 0)
(61.8421 -0.349916 0)
(62.0551 -0.348618 0)
(62.267 -0.346531 0)
(62.4775 -0.343669 0)
(62.6863 -0.340043 0)
(62.8927 -0.335662 0)
(63.0965 -0.330536 0)
(63.2973 -0.324672 0)
(63.4947 -0.318069 3.76694e-22)
(63.6883 -0.310725 0)
(63.8779 -0.302629 0)
(64.0631 -0.293761 0)
(64.2437 -0.28409 0)
(64.4194 -0.273579 -3.7332e-22)
(64.5899 -0.262183 0)
(64.755 -0.249858 0)
(64.9145 -0.236569 3.70039e-22)
(65.068 -0.222294 0)
(65.2155 -0.207021 0)
(65.357 -0.190729 0)
(65.4934 -0.173347 -3.63062e-22)
(65.6257 -0.154705 1.44299e-21)
(65.7555 -0.13453 2.86486e-21)
(65.8842 -0.112488 1.81528e-19)
(66.0111 -0.0884968 -5.25343e-19)
(66.1315 -0.0632939 3.48038e-19)
(66.2352 -0.0393392 -6.62376e-19)
(66.3096 -0.019978 4.58714e-23)
(66.3487 -0.00749713 4.58203e-19)
(66.3621 -0.00333977 0)
(66.3651 -3.73737e-06 0)
)
;
boundaryField
{
bottomEmptyFaces
{
type empty;
}
topEmptyFaces
{
type empty;
}
inlet
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
70
(
(66.366 0 0)
(66.3647 0 0)
(66.3614 0 0)
(66.3475 0 0)
(66.3068 0 0)
(66.2288 0 0)
(66.123 0 0)
(66.0016 0 0)
(65.8752 0 0)
(65.7473 0 0)
(65.6181 0 0)
(65.4863 0 0)
(65.3503 0 0)
(65.209 0 0)
(65.0619 0 0)
(64.9087 0 0)
(64.7496 0 0)
(64.5848 0 0)
(64.4145 0 0)
(64.2392 0 0)
(64.0589 0 0)
(63.874 0 0)
(63.6847 0 0)
(63.4914 0 0)
(63.2944 0 0)
(63.0939 0 0)
(62.8905 0 0)
(62.6844 0 0)
(62.476 0 0)
(62.2659 0 0)
(62.0543 0 0)
(61.8419 0 0)
(61.6289 0 0)
(61.4158 0 0)
(61.2032 0 0)
(60.9914 0 0)
(60.7809 0 0)
(60.5723 0 0)
(60.3658 0 0)
(60.1621 0 0)
(59.9615 0 0)
(59.7645 0 0)
(59.5715 0 0)
(59.383 0 0)
(59.1995 0 0)
(59.0214 0 0)
(58.8491 0 0)
(58.6827 0 0)
(58.5219 0 0)
(58.3657 0 0)
(58.2125 0 0)
(58.061 0 0)
(57.9124 0 0)
(57.7743 0 0)
(57.6635 0 0)
(57.5986 0 0)
(57.5811 0 0)
(57.591 0 0)
(57.6092 0 0)
(57.6269 0 0)
(57.6377 0 0)
(57.6347 0 0)
(57.6237 0 0)
(57.5784 0 0)
(57.4903 0 0)
(57.3508 0 0)
(66.3664 0 0)
(55.735 0 0)
(56.8246 0 0)
(57.1139 0 0)
)
;
}
outlet
{
type zeroGradient;
}
walls
{
type fixedValue;
value uniform (0 0 0);
}
rightWall
{
type zeroGradient;
}
symmetryLine
{
type symmetryPlane;
}
}
// ************************************************************************* //
| [
"mhoeper3234@gmail.com"
] | mhoeper3234@gmail.com | |
2ddf2c6eab3674e675d0408440f778da6c620d0a | 0ab83725e2b65397f2b6258bd63e3df4f781af4f | /动态规划/思想巧妙/BZOJ 1042 [HAOI2008]硬币购物 容斥原理背包.cpp | 9e6cf7bccb3f8e834947fcb7ed590295bd89bdde | [] | no_license | ailyanlu1/ACM-14 | 422ba583916bedbe294453697e085f8fe56109d4 | 7bab8918818e3b78c2796d93b99ee1cff67317cf | refs/heads/master | 2020-06-23T07:24:31.348924 | 2013-11-05T09:25:41 | 2013-11-05T09:25:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,526 | cpp | /*
分析:
背包問題的另一種寫法。如果對於每個詢問都進行一次多重背包會TLE。
假設dp[i]表示四種硬幣不受限制的情況下的方案數,則方程如下:
dp[i] = sigma(dp[i-c[j]]),c[j]<=i
爲了避免重複計算,我們需要以j作為階段劃分。
對於每個問題,我們可以先算出價值為sum的方案數,然後-第一種硬幣超過
限制的數-第二種硬幣超過限制的數-第三種硬幣超過限制的數-第四種硬幣
超過限制的數+第一第二種超過限制的數....
很顯然,價值為sum的方案數為 dp[sum]
以下若下標為負數,方案數為0
第i種硬幣超過限制的數為 dp[sum-ci*(di+1)]
第i第j種超過限制的數為 dp[sum-ci*(di+1)-cj*(dj+1)]
所以我們可以用容斥原理進行求解。
*/
#include <set>
#include <map>
#include <cmath>
#include <queue>
#include <stack>
#include <string>
#include <vector>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define lx(x) (x<<1)
#define rx(x) (x<<1|1)
#define debug puts("here")
#define rep(i,n) for(int i=0;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define REP(i,a,b) for(int i=a;i<=b;i++)
#define foreach(i,vec) for(unsigned i=0;i<vec.size();i++)
#define pb push_back
#define RD(n) scanf("%d",&n)
#define RD2(x,y) scanf("%d%d",&x,&y)
#define RD3(x,y,z) scanf("%d%d%d",&x,&y,&z)
#define RD4(x,y,z,w) scanf("%d%d%d%d",&x,&y,&z,&w)
/******** program ********************/
const int MAXN = 100005;
ll dp[MAXN+1];
int a[5],c[5],sum,tot;
ll cc(int x){
return x>=0 ? dp[x] : 0;
}
ll rc(){
ll ans = 0;
rep(i,16){
ll tmp = 0;
int ok = 0;
rep(j,4)
if(i&(1<<j)){
ok ^= 1;
tmp += ll(a[j]+1)*c[j];
}
tmp = cc(sum-tmp);
if(ok)
ans += tmp;
else
ans -= tmp;
}
return -ans;
}
int main(){
#ifndef ONLINE_JUDGE
freopen("sum.in","r",stdin);
//freopen("sum.out","w",stdout);
#endif
rep(i,4)
RD(c[i]);
RD(tot);
dp[0] = 1;
rep(j,4)
rep1(i,MAXN)
if(i>=c[j])
dp[i] += dp[i-c[j]];
while(tot--){
rep(i,4)
RD(a[i]);
RD(sum);
cout<<rc()<<endl;
}
return 0;
}
| [
"545883134@qq.com"
] | 545883134@qq.com |
eede786449d3e49c3f8f438e6d73b39f7513a672 | c24b88037eb5b73a039ca7f9dd20264049759e04 | /ocpl_ros/include/ocpl_ros/rviz.h | aa96ebd28e430372d73fc4c8b19388b77845188a | [
"MIT"
] | permissive | JeroenDM/ocpl | 573f20aa4d1b21eefa823f4313bfa2913472e217 | f42bc1f53d673933868d8c64cded00520c7b6f1f | refs/heads/main | 2023-09-03T03:52:18.127627 | 2021-10-22T15:10:51 | 2021-10-22T15:10:51 | 323,396,968 | 0 | 0 | MIT | 2021-01-25T16:05:10 | 2020-12-21T16:56:25 | C++ | UTF-8 | C++ | false | false | 777 | h | /** Rviz wrapper
*
* Collect code I often use to visualize stuff in rviz.
* Not really super extra useful compared to the existing visual tools class,
* but I like it this way.
*
* */
#pragma once
#include <moveit_visual_tools/moveit_visual_tools.h>
namespace ocpl
{
typedef Eigen::Isometry3d Transform;
struct Rviz
{
Rviz(const std::string& base_link_name = "world");
/** \brief The visual tools ptr is public so others can visualize things freely using the same instance. **/
moveit_visual_tools::MoveItVisualToolsPtr visual_tools_;
/** \brief visualize a 3D pose in rviz using red-green-blue axes. **/
void plotPose(const Transform& pose);
/** \brief Delete all markers and pull the trigger. **/
void clear();
};
} // namespace ocpl
| [
"jeroendemaeyer@live.be"
] | jeroendemaeyer@live.be |
f72f4e5daa751e8129a2afcf064e5a1fa08956e2 | d09945668f19bb4bc17087c0cb8ccbab2b2dd688 | /atcoder/arc051-100/arc054/c.cpp | ec7b9e5a0ba3b82996b248d5ab463f26ab121d19 | [] | no_license | kmjp/procon | 27270f605f3ae5d80fbdb28708318a6557273a57 | 8083028ece4be1460150aa3f0e69bdb57e510b53 | refs/heads/master | 2023-09-04T11:01:09.452170 | 2023-09-03T15:25:21 | 2023-09-03T15:25:21 | 30,825,508 | 23 | 2 | null | 2023-08-18T14:02:07 | 2015-02-15T11:25:23 | C++ | UTF-8 | C++ | false | false | 1,288 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------
const int MAT=402;
int mat[MAT][MAT];
int gf2_rank(int A[MAT][MAT],int n) { /* input */
int i,j,k;
FOR(i,n) {
int be=i,mi=n+1;
for(j=i;j<n;j++) {
FOR(k,n) if(A[j][k]) break;
if(k<mi) be=j,mi=k;
}
if(mi>=n) break;
FOR(j,n) swap(A[i][j],A[be][j]);
FOR(j,n) if(i!=j&&A[j][mi]) {
FOR(k,n) A[j][k] ^= A[i][k];
}
}
return i;
}
int N;
string S[303];
void solve() {
int i,j,k,l,r,x,y; string s;
cin>>N;
FOR(y,N) {
cin>>S[y];
FOR(x,N) mat[y][x]=S[y][x]=='1';
}
if(gf2_rank(mat,N)<N) cout<<"Even"<<endl;
else cout<<"Odd"<<endl;
}
int main(int argc,char** argv){
string s;int i;
if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
FOR(i,argc-1) s+=argv[i+1],s+='\n';
FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
solve(); return 0;
}
| [
"kmjp@users.noreply.github.com"
] | kmjp@users.noreply.github.com |
49cf4ca2d573011ec8689e75a5770bce35780bfb | babb754e41adc329a823e6fdbe04d384ee20448d | /QvtkData/QvtkPolyDataActor2D.cpp | 629fbefccf07ffb722554ada6c8b42a27c61d744 | [] | no_license | wuzhuobin/QvtkUtil | 15679ff0b6a11a8a72a2b42d3335a6591634a56c | a15d9a454a82c1221db436d0c1a5b025a6c4049a | refs/heads/master | 2021-06-03T20:15:58.680820 | 2021-01-28T01:36:31 | 2021-01-28T01:36:31 | 130,037,280 | 2 | 2 | null | 2021-01-28T01:36:32 | 2018-04-18T09:22:15 | C++ | UTF-8 | C++ | false | false | 9,781 | cpp | // me
#include "QvtkPolyDataActor2D.h"
#include "QvtkScene.h"
#include "QvtkData.h"
#include "QvtkPolyData.h"
// vtk
#include <vtkBox.h>
#include <vtkClipPolyData.h>
#include <vtkPlane.h>
#include <vtkCutter.h>
#include <vtkStripper.h>
#include <vtkTriangleFilter.h>
#include <vtkPolyDataMapper.h>
#include <vtkPolyData.h>
#include <vtkActor.h>
#include <vtkProperty.h>
#include <vtkInformationVector.h>
#include <vtkInformation.h>
#include <vtkTransform.h>
#include <vtkNew.h>
#include <vtkMatrix4x4.h>
#include <vtkPassThroughFilter.h>
// qt
#include <QDomElement>
#include <QDebug>
class vtkStripperPolygon : public vtkStripper
{
public :
static vtkStripperPolygon* New() { return new vtkStripperPolygon; }
vtkTypeMacro(vtkStripperPolygon, vtkStripper);
protected:
// Usual data generation method
virtual int RequestData(
vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector) VTK_OVERRIDE {
int returnValue = Superclass::RequestData(request, inputVector, outputVector);
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
vtkPolyData *output = vtkPolyData::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
output->SetPolys(output->GetLines());
return returnValue;
}
};
namespace Q {
namespace vtk{
Q_VTK_DATA_CPP(PolyDataActor2D);
PolyDataActor2D::PolyDataActor2D()
{
this->box = vtkSmartPointer<vtkBox>::New();
this->clipper = vtkSmartPointer<vtkClipPolyData>::New();
this->clipper->SetClipFunction(this->box);
this->clipper->InsideOutOn();
//this->transFilter = vtkSmartPointer<vtkTransformPolyDataFilter>::New();
this->plane = vtkSmartPointer<vtkPlane>::New();
this->cutfilter = vtkSmartPointer<vtkCutter>::New();
this->cutfilter->SetCutFunction(this->plane);
this->cutfilter->SetInputConnection(this->clipper->GetOutputPort());
this->boundaryStrip = vtkSmartPointer<vtkStripperPolygon>::New();
this->boundaryStrip->SetInputConnection(this->cutfilter->GetOutputPort());
this->triFilter = vtkSmartPointer<vtkTriangleFilter>::New();
this->triFilter->SetInputConnection(this->boundaryStrip->GetOutputPort());
this->mapper = vtkSmartPointer<vtkPolyDataMapper>::New();
this->mapper->SetInputConnection(triFilter->GetOutputPort());
//this->mapper->ScalarVisibilityOff();
//this->mapper->SetScalarMaterialModeToAmbient();
//this->mapper->SetScalarMaterialModeToAmbientAndDiffuse();
//this->mapper->SetScalarMaterialModeToDefault();
//this->mapper->SetScalarVisibility(false);
vtkActor* actor = vtkActor::New();
actor->SetMapper(this->mapper);
this->setProp(actor);
//Qvtk_DATA_CREATE_PROPERTIES_ARRAY_ATTRIBUTES_MACRO(double, HoverColor, HOVER_COLOR, HOVER_COLOR_RGB, 3);
//Qvtk_DATA_CREATE_PROPERTIES_ARRAY_ATTRIBUTES_MACRO(double, SelectedColor, SELECTED_COLOR, SELECTED_COLOR_RGB, 3);
//Qvtk_DATA_CREATE_PROPERTIES_ARRAY_ATTRIBUTES_MACRO(double, IdleColor, IDLE_COLOR, IDLE_COLOR_RGB, 3);
//Qvtk_DATA_CREATE_PROPERTIES_ATTRIBUTES_MACRO(double, Opacity, OPACITY, 1);
// this->PropState = this->createAttribute(PROP_STATE_STRING, IDLE, false);
// this->setIdleColor(0.8, 0.4, 0.4);
// this->setHoverColor(0.4, 0.8, 0.8);
// this->setSelectedColor(1, 0, 0);
}
PolyDataActor2D::~PolyDataActor2D()
{
setRenderDataSet(nullptr);
}
void PolyDataActor2D::printSelf() const
{
PlanarProp::printSelf();
// Qvtk_PRINT_PROPERTY_VECTOR("Hover Color", HoverColor, 3);
//Qvtk_PRINT_PROPERTY_VECTOR("Idle Color", IdleColor, 3);
//Qvtk_PRINT_PROPERTY_VECTOR("Selected Color", SelectedColor, 3);
//qDebug() << "Opacity:\t" << this->Opacity;
// qDebug() << "Pickable:\t" << this->pickable;
}
//void PolyDataActor2D::setBasePolyData(PolyData* inPD)
//{
// this->basePDUniqueName = inPD->getUniqueName();
//
// this->setRenderDataSet(inPD);
//
// this->initializeProp();
//}
//PolyData* PolyDataActor2D::getBasePolyData()
//{
// PolyData *castedptr = dynamic_cast<PolyData *>(this->getRenderDataSet());
// if (NULL != castedptr)
// {
// return (PolyData*)this->getRenderDataSet();
// }
// else
// {
// qCritical() << "Data set cannot be casted to polydata!";
// return nullptr;
//// }
//}
//
//void PolyDataActor2D::readXML(const QDomElement& xml, QString directoryPath /*= QString()*/)
//{
// PlanarProp::readXML(xml, directoryPath);
//
// setPickable(static_cast<bool>(xml.attribute(PICKABLE).toInt()));
// setOpacity(xml.attribute(OPACITY).toDouble());
// setHoverColor(csvStringToValues<double>(xml.attribute(HOVER_COLOR)));
// setHoverColor(csvStringToValues<double>(xml.attribute(SELECTED_COLOR)));
// setHoverColor(csvStringToValues<double>(xml.attribute(IDLE_COLOR)));
//
// /* Load polydata */
// PolyData* basePD = (PolyData*)QvtkScene::getCurrentScene()
// ->getDataByUniqueName(xml.attribute(BASE_QvtkPOLYDATA_UNIQUE_NAME));
// if (!basePD)
// {
// qWarning() << "Cannot load base polydata from current scene!";
// }
// else
// {
// this->setRenderDataSet(basePD);
// }
//}
//
//void PolyDataActor2D::writeXML(QDomElement& xml, QString directoryPath /*= QString()*/) const
//{
// PlanarProp::writeXML(xml, directoryPath);
//
// xml.setAttribute(BASE_QvtkPOLYDATA_UNIQUE_NAME, ((PolyData*)this->getRenderDataSet())->getUniqueName());
// xml.setAttribute(PICKABLE, getPickable());
// xml.setAttribute(OPACITY, getOpacity());
// xml.setAttribute(HOVER_COLOR, Qvtk_QVARIANTLIST_3_TO_CSV_STRING(getAttributes(HoverColor)));
// xml.setAttribute(SELECTED_COLOR, Qvtk_QVARIANTLIST_3_TO_CSV_STRING(getAttributes(SelectedColor)));
// xml.setAttribute(HOVER_COLOR, Qvtk_QVARIANTLIST_3_TO_CSV_STRING(getAttributes(IdleColor)));
//
//}
void PolyDataActor2D::reset()
{
PlanarProp::reset();
//
//this->setIdleColor(0.8, 0.4, 0.4);
//this->setHoverColor(0.4, 0.8, 0.8);
}
void PolyDataActor2D::setPlanarNormal(double x, double y, double z)
{
PlanarProp::setPlanarNormal(x, y, z);
// normal does not need translate
double _normal[4] = { x, y, z, 1 };
//vtkNew<vtkMatrix4x4> rotation;
//vtkMatrix4x4::Invert(getProp()->GetMatrix(), (rotation.GetPointer()));
////rotation->DeepCopy(getProp()->GetMatrix());
//rotation->SetElement(0, 3, 0);
//rotation->SetElement(1, 3, 0);
//rotation->SetElement(2, 3, 0);
//rotation->MultiplyPoint(_normal, _normal);
this->plane->SetNormal(_normal);
//if (this->getRenderDataSet()) {
// double _normal[3];
// qDebug() << "world: ";
// qDebug() << normal[0];
// qDebug() << normal[1];
// qDebug() << normal[2];
// /*this->getRenderDataSet()->*/worldCoordinateToDataSetCoordinate(normal, _normal);
// this->plane->SetNormal(_normal);
// qDebug() << "dataset: ";
// qDebug() << -normal[0];
// qDebug() << -normal[1];
// qDebug() << -normal[2];
//}
}
void PolyDataActor2D::setPlanarOrigin(double x, double y, double z)
{
PlanarProp::setPlanarOrigin(x, y, z);
double _origin[4] = { x, y, z, 1 };
// origin does not need rotate
//vtkNew<vtkMatrix4x4> translation;
//translation->SetElement(0, 3, -getProp()->GetMatrix()->GetElement(0, 3));
//translation->SetElement(1, 3, -getProp()->GetMatrix()->GetElement(1, 3));
//translation->SetElement(2, 3, -getProp()->GetMatrix()->GetElement(2, 3));
//translation->MultiplyPoint(_origin, _origin);
this->plane->SetOrigin(_origin);
//if (this->getRenderDataSet()) {
// double _origin[3];
// /*this->getRenderDataSet()->*/worldCoordinateToDataSetCoordinate(origin, _origin);
// this->plane->SetOrigin(_origin);
//}
//this->clipper->GetOutput()->Print(cout);
//this->cutfilter->GetOutput()->Print(cout);
//this->boundaryStrip->GetOutput()->Print(cout);
//this->boundaryStrip->GetOutput()->Print(cout);
}
void PolyDataActor2D::setDisplayRegion(const double region[6])
{
PlanarProp::setDisplayRegion(region);
//this->box->set
//this->box->SetBounds(region);
if (this->getRenderDataSet()) {
double _region[6];
/*this->getRenderDataSet()->*/worldRegionToDataSetRegion(region, _region);
this->box->SetBounds(_region);
}
}
vtkActor * PolyDataActor2D::getActor() const
{
return vtkActor::SafeDownCast(this->getProp());
}
void PolyDataActor2D::propMatrixUpdate()
{
vtkNew<vtkTransform> transform;
transform->SetMatrix(this->getProp()->GetMatrix());
//vtkNew<vtkTransform> transform2;
//transform->Inverse();
this->plane->SetTransform(transform.GetPointer());
//this->box->SetTransform(transform.GetPointer());
PlanarProp::propMatrixUpdate();
}
void PolyDataActor2D::setRenderDataSet(DataSet * data)
{
if (this->getRenderDataSet() == data) {
return;
}
// nullptr to remove connection
if (this->getRenderDataSet()) {
//this->plane->SetTransform(static_cast<vtkTransform*>(nullptr));
this->clipper->SetInputConnection(nullptr);
PolyData* polydata = qobject_cast<PolyData*>(this->getRenderDataSet());
if (polydata) {
disconnect(polydata, &PolyData::colorChanged,
this, &PolyDataActor2D::setColor);
}
}
PlanarProp::setRenderDataSet(data);
if(this->getRenderDataSet())
{
//this->plane->SetTransform(this->getProp()->GetUserTransform());
this->clipper->SetInputConnection(data->getOutputPort());
PolyData* polydata = qobject_cast<PolyData*>(data);
if (!polydata) {
qCritical() << "data is not PolyData";
}
else {
double rgb[3];
polydata->getColor(rgb);
setColor(rgb);
connect(polydata, &PolyData::colorChanged,
this, &PolyDataActor2D::setColor);
}
}
}
void PolyDataActor2D::setOpacity(double opacity)
{
if (getActor()) {
getActor()->GetProperty()->SetOpacity(opacity);
}
}
void PolyDataActor2D::setColor(const double rgb[3])
{
if (getActor()) {
getActor()->GetProperty()->SetColor(rgb[0], rgb[1], rgb[2]);
}
}
}
} | [
"jiejin2022@163.com"
] | jiejin2022@163.com |
646ba78b4b4f2c3a19940eb7e25bdc107a757108 | b303693c03a5623916689350cc9108dca22a9b1a | /FactoryPattern/FactoryPattern/FactoryMethod/FruitePizza.h | 6ea43f8825abad19739b47bce167c30c9648a9b8 | [] | no_license | BigFinger/HeadFirst | 17f51ce1b2b080aadd0e3b8e9416d7f282145a52 | 43589cd3581a60be1074f3001e66595e19a9b765 | refs/heads/master | 2021-05-07T22:19:14.571034 | 2019-05-19T02:59:22 | 2019-05-19T02:59:22 | 109,197,403 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 163 | h | #pragma once
#include "FactoryMethod/Pizza.h"
namespace FactoryMethod{
class FruitePizza:public Pizza{
public:
FruitePizza(PIZZATYPE type):Pizza(type){}
};
} | [
"youzhen.yz@alibaba-inc.com"
] | youzhen.yz@alibaba-inc.com |
7ace7e5fb757f3c929cbc86bc4b65d1a48c5f563 | c1c1aa16d58eea64584484eebda0f888e20d7c55 | /moses/src/RuleTable/PhraseDictionaryFuzzyMatch.h | 8679bdd1c3bcb838b25c9e682d29e0d2a6a39fd8 | [] | no_license | wlin12/mosesdecoder | 4fac02fff81fb27b222b96162cbe91009ced8627 | 92b15c103fa542a19789c043d47b629d2563bad8 | refs/heads/master | 2021-01-15T21:03:24.008359 | 2012-09-02T11:14:32 | 2012-09-02T11:14:32 | 5,650,311 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,878 | h | /***********************************************************************
Moses - statistical machine translation system
Copyright (C) 2006-2011 University of Edinburgh
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
***********************************************************************/
#pragma once
#include "PhraseDictionary.h"
#include "PhraseDictionaryNodeSCFG.h"
#include "PhraseDictionarySCFG.h"
#include "InputType.h"
#include "NonTerminal.h"
#include "RuleTable/Trie.h"
#include "fuzzy-match/FuzzyMatchWrapper.h"
namespace Moses
{
class PhraseDictionaryNodeSCFG;
/** Implementation of a SCFG rule table in a trie. Looking up a rule of
* length n symbols requires n look-ups to find the TargetPhraseCollection.
*/
class PhraseDictionaryFuzzyMatch : public PhraseDictionary
{
friend std::ostream& operator<<(std::ostream&, const PhraseDictionaryFuzzyMatch&);
friend class RuleTableLoader;
public:
PhraseDictionaryFuzzyMatch(size_t numScoreComponents,
PhraseDictionaryFeature* feature);
bool Load(const std::vector<FactorType> &input
, const std::vector<FactorType> &output
, const std::string &initStr
, const std::vector<float> &weight
, size_t tableLimit,
const LMList& languageModels,
const WordPenaltyProducer* wpProducer);
const PhraseDictionaryNodeSCFG &GetRootNode(const InputType &source) const;
ChartRuleLookupManager *CreateRuleLookupManager(
const InputType &,
const ChartCellCollection &);
void InitializeForInput(InputType const& inputSentence);
void CleanUp(const InputType& source);
virtual const TargetPhraseCollection *GetTargetPhraseCollection(const Phrase& src) const
{
assert(false);
}
virtual DecodeType GetDecodeType() const
{
assert(false);
}
TO_STRING();
protected:
TargetPhraseCollection &GetOrCreateTargetPhraseCollection(PhraseDictionaryNodeSCFG &rootNode
, const Phrase &source
, const TargetPhrase &target
, const Word &sourceLHS);
PhraseDictionaryNodeSCFG &GetOrCreateNode(PhraseDictionaryNodeSCFG &rootNode
, const Phrase &source
, const TargetPhrase &target
, const Word &sourceLHS);
void SortAndPrune(PhraseDictionaryNodeSCFG &rootNode);
PhraseDictionaryNodeSCFG &GetRootNode(const InputType &source);
std::map<long, PhraseDictionaryNodeSCFG> m_collection;
std::vector<std::string> m_config;
const std::vector<FactorType> *m_input, *m_output;
const LMList *m_languageModels;
const WordPenaltyProducer *m_wpProducer;
const std::vector<float> *m_weight;
tmmt::FuzzyMatchWrapper *m_FuzzyMatchWrapper;
};
} // namespace Moses
| [
"fishandfrolick@gmail.com"
] | fishandfrolick@gmail.com |
d0b7506ac8ea32aa1e33b44add58f8c3815a5437 | 3f85f03f43d4c83018d512960b434a473a0784e7 | /TopAmazonQuestions/DesignAnExpressionTreeWithEvaluateFunction.cpp | bbc81e957008e24f790855ce3bedd8b34a55e3cf | [] | no_license | saubhik/ctci | e7f96c67cf7e0acbefdc7c90fb22b113221d4a94 | adcbcb49f5c9b14e2cf07d6046962a5e5faec9ba | refs/heads/main | 2023-08-20T06:18:27.977911 | 2021-09-22T01:32:16 | 2021-09-22T01:32:16 | 371,275,995 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,154 | cpp | #include <stack>
#include <string>
#include <vector>
/**
* This is the interface for the expression tree Node.
* You should not remove it, and you can define some classes to implement it.
*/
class Node {
public:
virtual ~Node() {}
virtual int evaluate() const = 0;
};
class NumNode : public Node {
public:
NumNode(int val): _val (val) {}
int evaluate() const;
private:
int _val;
};
int NumNode::evaluate() const {
return _val;
}
class OpNode : public Node {
public:
OpNode(Node* left, Node* right) : _left(left), _right(right) {}
~OpNode();
protected:
Node* const _left;
Node* const _right;
};
OpNode::~OpNode() {
delete _left;
delete _right;
}
class AddOpNode : public OpNode {
public:
AddOpNode(Node* left, Node* right): OpNode(left, right) {}
int evaluate() const;
};
int AddOpNode::evaluate() const {
return _left->evaluate() + _right->evaluate();
}
class SubtractOpNode : public OpNode {
public:
SubtractOpNode(Node* left, Node* right): OpNode(left, right) {}
int evaluate() const;
};
int SubtractOpNode::evaluate() const {
return _left->evaluate() - _right->evaluate();
}
class MultiplyOpNode : public OpNode {
public:
MultiplyOpNode(Node* left, Node* right): OpNode(left, right) {}
int evaluate() const;
};
int MultiplyOpNode::evaluate() const {
return _left->evaluate() * _right->evaluate();
}
class DivideOpNode : public OpNode {
public:
DivideOpNode(Node* left, Node* right): OpNode(left, right) {}
int evaluate() const;
};
int DivideOpNode::evaluate() const {
return _left->evaluate() / _right->evaluate();
}
/**
* This is the TreeBuilder class.
* You can treat it as the driver code that takes the postinfix input
* and returns the expression tree represnting it as a Node.
*/
class TreeBuilder {
private:
Node* node_create(std::string op, Node* left, Node* right) {
switch (op[0]) {
case '+': return new AddOpNode(left, right);
case '-': return new SubtractOpNode(left, right);
case '*': return new MultiplyOpNode(left, right);
case '/': return new DivideOpNode(left, right);
default: return nullptr;
}
}
int to_int(std::string &x) {
int ret = 0;
for (char ch : x) {
ret = ret * 10 + (ch - '0');
}
return ret;
}
public:
/*
* Create stack of nodes.
* Pop two nodes when you encounter operator. Push the result.
*/
Node* buildTree(std::vector<std::string>& postfix) {
std::stack<Node*> st;
for (auto &token : postfix) {
if (isdigit(token[0])) {
st.push(new NumNode(to_int(token)));
} else {
Node* right = st.top(); st.pop();
Node* left = st.top(); st.pop();
st.push(node_create(token, left, right));
}
}
return st.top();
}
};
/**
* Your TreeBuilder object will be instantiated and called as such:
* TreeBuilder* obj = new TreeBuilder();
* Node* expTree = obj->buildTree(postfix);
* int ans = expTree->evaluate();
*/
| [
"saubhik.mukherjee@gmail.com"
] | saubhik.mukherjee@gmail.com |
4a7e1da841d1527805b9795b3bf7c4f1ec829069 | cf3a137d90a84ad694bc3e22948086a5e5359d34 | /test/pudge-wars/UserInputProxyTest.cpp | 0e0b7c63f48128393fc418d07dd887c3e4436293 | [] | no_license | Orangeyness/pudge-wars | fcdf96ab328835a3f7638e99ea84aa915695276a | e2a80dad8382c31d501a950a37e79c04b0815722 | refs/heads/master | 2020-04-13T00:14:06.458072 | 2014-07-16T08:19:37 | 2014-07-16T08:19:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,338 | cpp | #include "UserInputProxy.cpp"
#include "gtest/gtest.h"
#include <cmath>
#include <allegro5/allegro.h>
#define _AL_KEYBOARD_STATE_INI(STATE) \
memset(STATE, 0, sizeof(ALLEGRO_KEYBOARD_STATE))
#define _AL_KEYBOARD_STATE_KEY_DOWN(STATE, KEYCODE) \
(((STATE).__key_down__internal__[(KEYCODE) / 32] & (1 << ((KEYCODE) % 32)))\
? true : false)
#define _AL_KEYBOARD_STATE_SET_KEY_DOWN(STATE, KEYCODE) \
do { \
int kc = (KEYCODE); \
(STATE).__key_down__internal__[kc / 32] |= (1 << (kc % 32)); \
} while (0)
#define _AL_KEYBOARD_STATE_CLEAR_KEY_DOWN(STATE, KEYCODE) \
do { \
int kc = (KEYCODE); \
(STATE).__key_down__internal__[kc / 32] &= ~(1 << (kc % 32)); \
} while (0)
/*
TEST(UserInputProxy, NoMoveDirection) {
ALLEGRO_KEYBOARD_STATE kbState;
ALLEGRO_MOUSE_STATE mState;
_AL_KEYBOARD_STATE_INI(&kbState);
UserInputProxy uip;
uip.update(&kbState, &mState);
ASSERT_FALSE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, 0);
ASSERT_EQ(uip.moveDirection().y, 0);
}
TEST(UserInputProxy, ArrowKeyDirections) {
ALLEGRO_KEYBOARD_STATE kbState;
ALLEGRO_MOUSE_STATE mState;
_AL_KEYBOARD_STATE_INI(&kbState);
UserInputProxy uip;
// Up
_AL_KEYBOARD_STATE_SET_KEY_DOWN(kbState, ALLEGRO_KEY_UP);
uip.update(&kbState, &mState);
ASSERT_TRUE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, 0);
ASSERT_EQ(uip.moveDirection().y, -1);
// Up Left
_AL_KEYBOARD_STATE_SET_KEY_DOWN(kbState, ALLEGRO_KEY_LEFT);
uip.update(&kbState, &mState);
ASSERT_TRUE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, -1.0/sqrt(2));
ASSERT_EQ(uip.moveDirection().y, -1.0/sqrt(2));
// Left
_AL_KEYBOARD_STATE_CLEAR_KEY_DOWN(kbState, ALLEGRO_KEY_UP);
uip.update(&kbState, &mState);
ASSERT_TRUE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, -1.0);
ASSERT_EQ(uip.moveDirection().y, 0);
// Down Left
_AL_KEYBOARD_STATE_SET_KEY_DOWN(kbState, ALLEGRO_KEY_DOWN);
uip.update(&kbState, &mState);
ASSERT_TRUE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, -1.0/sqrt(2));
ASSERT_EQ(uip.moveDirection().y, 1.0/sqrt(2));
// Down
_AL_KEYBOARD_STATE_CLEAR_KEY_DOWN(kbState, ALLEGRO_KEY_LEFT);
uip.update(&kbState, &mState);
ASSERT_TRUE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, 0);
ASSERT_EQ(uip.moveDirection().y, 1.0);
// Down Right
_AL_KEYBOARD_STATE_SET_KEY_DOWN(kbState, ALLEGRO_KEY_RIGHT);
uip.update(&kbState, &mState);
ASSERT_TRUE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, 1.0/sqrt(2));
ASSERT_EQ(uip.moveDirection().y, 1.0/sqrt(2));
// Right
_AL_KEYBOARD_STATE_CLEAR_KEY_DOWN(kbState, ALLEGRO_KEY_DOWN);
uip.update(&kbState, &mState);
ASSERT_TRUE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, 1.0);
ASSERT_EQ(uip.moveDirection().y, 0);
// Up Right
_AL_KEYBOARD_STATE_SET_KEY_DOWN(kbState, ALLEGRO_KEY_UP);
uip.update(&kbState, &mState);
ASSERT_TRUE(uip.hasMoveDirection());
ASSERT_EQ(uip.moveDirection().x, 1.0/sqrt(2));
ASSERT_EQ(uip.moveDirection().y, -1.0/sqrt(2));
}*/
| [
"reuben_bell@hotmail.com"
] | reuben_bell@hotmail.com |
f1ca5424e44c3a70bb817f9c23e4cffb1173e3a8 | d7b52e8598aac836d941186fb5d55f09ee84aa2e | /bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.cpp | d9bd7bd9ab84a3001e1beab8a83ba9bb45c8e8bc | [] | no_license | Greentwip/external | 1ac9d88ff328d7b2c07aad665a22610263da61e7 | 9ab80480e53c2c826f0d859a69df2d56a1181bbd | refs/heads/master | 2022-11-15T10:53:08.060618 | 2020-07-11T21:59:42 | 2020-07-11T21:59:42 | 278,929,872 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | cpp | version https://git-lfs.github.com/spec/v1
oid sha256:f378532015ec13bd5c270eb5c8496be5acf9ea3bf6da57e443d36c4460b5ab97
size 8822
| [
"vjlopezcarrillo@gmail.com"
] | vjlopezcarrillo@gmail.com |
01d1c7227f401ea8f95812350cbd254d631bdb1a | 94a859bf4168ceba1a33db3b1507df8f7a6ef4b5 | /tests/button_test.cc | 52ace16796a865d1e6b04fa80a972d22f67cac31 | [] | no_license | jlivshots/epidemic-simulator | c295f07345893cda6273fa9ebc900698452c6f93 | 21cdb406af67cbb74e2cee51275541941212e897 | refs/heads/main | 2023-01-25T05:22:46.301063 | 2020-12-10T02:04:43 | 2020-12-10T02:04:43 | 320,467,695 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,234 | cc | #include <core/button.h>
#include <catch2/catch.hpp>
TEST_CASE("Button with dimensions 10 X 15") {
epidemic_simulator::Button button(glm::vec2(10, 15));
SECTION("Playing status is false by default") {
REQUIRE_FALSE(button.IsPlaying());
}
SECTION("Clicking outside of the button does not change playing status") {
button.ClickMouse(glm::vec2(654, 465));
REQUIRE_FALSE(button.IsPlaying());
}
SECTION("Clicking outside of the button for ClickMouse() returns false") {
REQUIRE_FALSE(button.ClickMouse(glm::vec2(654, 465)));
}
SECTION(
"Clicking inside the button inverts playing status from false to true") {
button.SetPlayingStatus(false);
button.ClickMouse(glm::vec2(2, 3));
REQUIRE(button.IsPlaying());
}
SECTION(
"Clicking inside the button inverts playing status from true to false") {
button.SetPlayingStatus(true);
button.ClickMouse(glm::vec2(2, 3));
REQUIRE_FALSE(button.IsPlaying());
}
SECTION("Clicking inside the button for ClickMouse() returns true") {
REQUIRE(button.ClickMouse(glm::vec2(2, 3)));
}
SECTION(
"Clicking on the button edge inverts playing status from true to false") {
button.SetPlayingStatus(true);
button.ClickMouse(glm::vec2(8, 15));
REQUIRE_FALSE(button.IsPlaying());
}
SECTION(
"Clicking on the button edge inverts playing status from false to true") {
button.SetPlayingStatus(false);
button.ClickMouse(glm::vec2(0, 15));
REQUIRE(button.IsPlaying());
}
SECTION("Clicking on the button edge for ClickMouse() returns true") {
REQUIRE(button.ClickMouse(glm::vec2(8, 15)));
}
}
TEST_CASE("Button with dimensions 5 X 10") {
epidemic_simulator::Button button(glm::vec2(5, 10));
SECTION("Playing status is false by default") {
REQUIRE_FALSE(button.IsPlaying());
}
SECTION("Clicking outside of the button does not change playing status") {
button.ClickMouse(glm::vec2(654, 465));
REQUIRE_FALSE(button.IsPlaying());
}
SECTION("Clicking outside of the button for ClickMouse() returns false") {
REQUIRE_FALSE(button.ClickMouse(glm::vec2(654, 465)));
}
SECTION(
"Clicking inside the button inverts playing status from false to true") {
button.SetPlayingStatus(false);
button.ClickMouse(glm::vec2(2, 3));
REQUIRE(button.IsPlaying());
}
SECTION(
"Clicking inside the button inverts playing status from true to false") {
button.SetPlayingStatus(true);
button.ClickMouse(glm::vec2(2, 3));
REQUIRE_FALSE(button.IsPlaying());
}
SECTION("Clicking inside the button for ClickMouse() returns true") {
REQUIRE(button.ClickMouse(glm::vec2(2, 3)));
}
SECTION(
"Clicking on the button edge inverts playing status from true to false") {
button.SetPlayingStatus(true);
button.ClickMouse(glm::vec2(2, 10));
REQUIRE_FALSE(button.IsPlaying());
}
SECTION(
"Clicking on the button edge inverts playing status from false to true") {
button.SetPlayingStatus(false);
button.ClickMouse(glm::vec2(1, 10));
REQUIRE(button.IsPlaying());
}
SECTION("Clicking on the button edge for ClickMouse() returns true") {
REQUIRE(button.ClickMouse(glm::vec2(0, 2)));
}
} | [
"jlivshots@gmail.com"
] | jlivshots@gmail.com |
871bb3ad2f5bbc440d024f2a51976430cdde09b0 | f6e673c25b8f325baed7a5b8cc86c68932d7f3e8 | /Practica/PaxHeaders.2000/rellotge.hh | 1e0b21d5c3cdc02a2b1d26b9a5d663a862b063f6 | [] | no_license | carlotacb/PRO2 | a327084eef3beb60b9c78a53fe3993264a808d63 | 815111f1db6c3f69f79e1d70245a10dd6018efbd | refs/heads/master | 2021-05-15T23:03:16.384517 | 2017-10-17T06:39:07 | 2017-10-17T06:39:07 | 106,867,642 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 60 | hh | 30 atime=1431905265.867524392
30 ctime=1431803997.626270216
| [
"carkbra@gmail.com"
] | carkbra@gmail.com |
709941decdda10b400f464c082a6e82753a7275a | e98e505de1a1a3542189125ef4bdde147f9c77cd | /mojo/public/cpp/bindings/lib/binding_state.h | ca7d5a11b73adf2c9a086d42d94fa0a69e5f2104 | [
"BSD-3-Clause"
] | permissive | jesonlay/chromium | b98fca219ab71d230df9a758252058a18e075a06 | 292532fedbb55d68a83b46c106fd04849a47571d | refs/heads/master | 2022-12-16T15:25:13.723395 | 2017-03-20T14:36:34 | 2017-03-20T15:37:49 | 158,929,892 | 0 | 0 | NOASSERTION | 2018-11-24T11:32:20 | 2018-11-24T11:32:19 | null | UTF-8 | C++ | false | false | 4,161 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_BINDING_STATE_H_
#define MOJO_PUBLIC_CPP_BINDINGS_LIB_BINDING_STATE_H_
#include <memory>
#include <string>
#include <utility>
#include "base/bind.h"
#include "base/callback.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/memory/ref_counted.h"
#include "base/single_thread_task_runner.h"
#include "mojo/public/cpp/bindings/bindings_export.h"
#include "mojo/public/cpp/bindings/connection_error_callback.h"
#include "mojo/public/cpp/bindings/filter_chain.h"
#include "mojo/public/cpp/bindings/interface_endpoint_client.h"
#include "mojo/public/cpp/bindings/interface_id.h"
#include "mojo/public/cpp/bindings/interface_ptr.h"
#include "mojo/public/cpp/bindings/interface_ptr_info.h"
#include "mojo/public/cpp/bindings/interface_request.h"
#include "mojo/public/cpp/bindings/lib/multiplex_router.h"
#include "mojo/public/cpp/bindings/message_header_validator.h"
#include "mojo/public/cpp/bindings/scoped_interface_endpoint_handle.h"
#include "mojo/public/cpp/system/core.h"
namespace mojo {
namespace internal {
class MOJO_CPP_BINDINGS_EXPORT BindingStateBase {
public:
BindingStateBase();
~BindingStateBase();
void AddFilter(std::unique_ptr<MessageReceiver> filter);
bool HasAssociatedInterfaces() const;
void PauseIncomingMethodCallProcessing();
void ResumeIncomingMethodCallProcessing();
bool WaitForIncomingMethodCall(
MojoDeadline deadline = MOJO_DEADLINE_INDEFINITE);
void Close();
void CloseWithReason(uint32_t custom_reason, const std::string& description);
void set_connection_error_handler(const base::Closure& error_handler) {
DCHECK(is_bound());
endpoint_client_->set_connection_error_handler(error_handler);
}
void set_connection_error_with_reason_handler(
const ConnectionErrorWithReasonCallback& error_handler) {
DCHECK(is_bound());
endpoint_client_->set_connection_error_with_reason_handler(error_handler);
}
bool is_bound() const { return !!router_; }
MessagePipeHandle handle() const {
DCHECK(is_bound());
return router_->handle();
}
void EnableNestedDispatch(bool enabled);
void FlushForTesting();
void EnableTestingMode();
protected:
void BindInternal(ScopedMessagePipeHandle handle,
scoped_refptr<base::SingleThreadTaskRunner> runner,
const char* interface_name,
std::unique_ptr<MessageReceiver> request_validator,
bool passes_associated_kinds,
bool has_sync_methods,
MessageReceiverWithResponderStatus* stub,
uint32_t interface_version);
scoped_refptr<internal::MultiplexRouter> router_;
std::unique_ptr<InterfaceEndpointClient> endpoint_client_;
};
template <typename Interface, typename ImplRefTraits>
class BindingState : public BindingStateBase {
public:
using ImplPointerType = typename ImplRefTraits::PointerType;
explicit BindingState(ImplPointerType impl) {
stub_.set_sink(std::move(impl));
}
~BindingState() { Close(); }
void Bind(ScopedMessagePipeHandle handle,
scoped_refptr<base::SingleThreadTaskRunner> runner) {
BindingStateBase::BindInternal(
std::move(handle), runner, Interface::Name_,
base::MakeUnique<typename Interface::RequestValidator_>(),
Interface::PassesAssociatedKinds_, Interface::HasSyncMethods_, &stub_,
Interface::Version_);
}
InterfaceRequest<Interface> Unbind() {
endpoint_client_.reset();
InterfaceRequest<Interface> request =
MakeRequest<Interface>(router_->PassMessagePipe());
router_ = nullptr;
return request;
}
Interface* impl() { return ImplRefTraits::GetRawPointer(&stub_.sink()); }
private:
typename Interface::template Stub_<ImplRefTraits> stub_;
DISALLOW_COPY_AND_ASSIGN(BindingState);
};
} // namesapce internal
} // namespace mojo
#endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_BINDING_STATE_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
9c1c24a924a2447e3657d529b58438a5d7f5bdc7 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_2463486_0/C++/Aerodonkey/C-small-0.cc | d9cba0498f860c9ca39a4e0f763a32b76e15c0fe | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,329 | cc | #include <algorithm>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <math.h>
bool IsPalindrome(long long n) {
std::ostringstream oss;
oss << n;
std::string str = oss.str();
std::string::size_type len = str.length();
for (std::string::size_type i = 0; i < len / 2; i++) {
if (str[i] != str[len - 1 - i]) {
return false;
}
}
return true;
}
std::vector<long long> ComputeFairAndSquareNumbers(long long right) {
std::vector<long long> fsns;
for (long long n = 1; n * n <= right; n++) {
if (IsPalindrome(n) && IsPalindrome(n * n)) {
fsns.push_back(n * n);
}
}
return fsns;
}
int main() {
std::ios_base::sync_with_stdio(false);
int numCases;
std::cin >> numCases;
std::vector<long long> fsns = ComputeFairAndSquareNumbers(100000000000000LL);
for (int caseNum = 1; caseNum <= numCases; caseNum++) {
long long left, right;
std::cin >> left >> right;
std::vector<long long>::size_type leftIndex = std::lower_bound(fsns.begin(), fsns.end(), left) - fsns.begin();
std::vector<long long>::size_type rightIndex = std::upper_bound(fsns.begin(), fsns.end(), right) - fsns.begin();
long long number = static_cast<long long>(rightIndex - leftIndex);
std::cout << "Case #" << caseNum << ": " << number << std::endl;
}
}
| [
"eewestman@gmail.com"
] | eewestman@gmail.com |
3e6ff028678127f720e0bcad6983d7c135252672 | 6b01f24e25105643066989031fa763e303c6436d | /maya/Workshop2017/include/HelloWorldArgsCmd.h | fe4f9f43277a83ffda507e45e5f88ce602dd25b1 | [
"MIT"
] | permissive | smoi23/sandbox | 0d38a5a7b6d98f8ff29d32faf8ca7dd4cf459f9b | 4d02a509c82b2ec3712f91bbc86cc5df37174396 | refs/heads/master | 2019-07-28T19:24:14.162881 | 2018-02-06T14:37:20 | 2018-02-06T14:37:20 | 29,189,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 784 | h | /*
* HelloWorldArgs.h
*
* Created on: Jul 10, 2017
* Author: Andreas Schuster (smoi)
*/
#pragma once
#ifndef INCLUDE_HELLOWORLDARGSCMD_H_
#define INCLUDE_HELLOWORLDARGSCMD_H_
#include <maya/MPxCommand.h>
#include <maya/MArgList.h>
#include <maya/MStatus.h>
#include <maya/MSelectionList.h>
class HelloWorldArgs : public MPxCommand
{
public:
HelloWorldArgs();
~HelloWorldArgs();
static MSyntax newSyntax();
MStatus doIt(const MArgList &args);
MStatus redoIt();
MStatus undoIt();
bool isUndoable() const;
static void* creator();
public:
static MString s_name;
private:
MStatus parseArgs(const MArgList &args);
private:
bool m_doHelp;
double m_size;
MSelectionList m_selection;
MSelectionList m_myselected;
};
#endif /* INCLUDE_HELLOWORLDARGSCMD_H_ */
| [
"smoi@blechfisch.de"
] | smoi@blechfisch.de |
116c3cfae9ee7f8333b85058d3f4cebed93a4a6e | 10377d9a5b1e2d451d07bb64d3981e936e1035d7 | /include/NumCpp/Functions/deleteIndices.hpp | dd000627b9427ade9687ed9d26572a6c2a697c12 | [
"MIT"
] | permissive | faichele/NumCpp | 03ac79cde618d6dfe08c3352fff7d235527a130f | 7c8fc50fbe44b80eaa105f0f9258120abddfcec2 | refs/heads/master | 2020-12-29T16:25:21.426391 | 2020-01-20T05:23:34 | 2020-01-20T05:23:34 | 238,668,660 | 0 | 0 | MIT | 2020-02-06T11:02:13 | 2020-02-06T11:02:12 | null | UTF-8 | C++ | false | false | 6,977 | hpp | /// @file
/// @author David Pilger <dpilger26@gmail.com>
/// [GitHub Repository](https://github.com/dpilger26/NumCpp)
/// @version 1.2
///
/// @section License
/// Copyright 2019 David Pilger
///
/// Permission is hereby granted, free of charge, to any person obtaining a copy of this
/// software and associated documentation files(the "Software"), to deal in the Software
/// without restriction, including without limitation the rights to use, copy, modify,
/// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
/// permit persons to whom the Software is furnished to do so, subject to the following
/// conditions :
///
/// The above copyright notice and this permission notice shall be included in all copies
/// or substantial portions of the Software.
///
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
/// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
/// PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
/// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
/// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
/// DEALINGS IN THE SOFTWARE.
///
/// @section Description
/// Functions for working with NdArrays
///
#pragma once
#include "NumCpp/Core/Error.hpp"
#include "NumCpp/Core/Shape.hpp"
#include "NumCpp/Core/Slice.hpp"
#include "NumCpp/Functions/unique.hpp"
#include "NumCpp/NdArray.hpp"
#include <string>
#include <vector>
namespace nc
{
//============================================================================
// Method Description:
/// Return a new array with sub-arrays along an axis deleted.
///
/// @param inArray
/// @param inArrayIdxs
/// @param inAxis (Optional, default NONE) if none the indices will be applied to the flattened array
/// @return
/// NdArray
///
template<typename dtype>
NdArray<dtype> deleteIndices(const NdArray<dtype>& inArray, const NdArray<uint32>& inArrayIdxs, Axis inAxis = Axis::NONE)
{
// make sure that the indices are unique first
NdArray<uint32> indices = unique(inArrayIdxs);
switch (inAxis)
{
case Axis::NONE:
{
std::vector<dtype> values;
for (uint32 i = 0; i < inArray.size(); ++i)
{
if (indices.contains(i).item())
{
continue;
}
values.push_back(inArray[i]);
}
return NdArray<dtype>(values);
}
case Axis::ROW:
{
const Shape inShape = inArray.shape();
if (indices.max().item() >= inShape.rows)
{
THROW_INVALID_ARGUMENT_ERROR("input index value is greater than the number of rows in the array.");
}
const uint32 numNewRows = inShape.rows - indices.size();
NdArray<dtype> returnArray(numNewRows, inShape.cols);
uint32 rowCounter = 0;
for (uint32 row = 0; row < inShape.rows; ++row)
{
if (indices.contains(row).item())
{
continue;
}
for (uint32 col = 0; col < inShape.cols; ++col)
{
returnArray(rowCounter, col) = inArray(row, col);
}
++rowCounter;
}
return returnArray;
}
case Axis::COL:
{
const Shape inShape = inArray.shape();
if (indices.max().item() >= inShape.cols)
{
THROW_INVALID_ARGUMENT_ERROR("input index value is greater than the number of cols in the array.");
}
const uint32 numNewCols = inShape.cols - indices.size();
NdArray<dtype> returnArray(inShape.rows, numNewCols);
for (uint32 row = 0; row < inShape.rows; ++row)
{
uint32 colCounter = 0;
for (uint32 col = 0; col < inShape.cols; ++col)
{
if (indices.contains(col).item())
{
continue;
}
returnArray(row, colCounter++) = inArray(row, col);
}
}
return returnArray;
}
default:
{
// this isn't actually possible, just putting this here to get rid
// of the compiler warning.
return NdArray<dtype>(0);
}
}
}
//============================================================================
// Method Description:
/// Return a new array with sub-arrays along an axis deleted.
///
/// @param inArray
/// @param inIndicesSlice
/// @param inAxis (Optional, default NONE) if none the indices will be applied to the flattened array
/// @return
/// NdArray
///
template<typename dtype>
NdArray<dtype> deleteIndices(const NdArray<dtype>& inArray, const Slice& inIndicesSlice, Axis inAxis = Axis::NONE)
{
Slice sliceCopy(inIndicesSlice);
switch (inAxis)
{
case Axis::NONE:
{
sliceCopy.makePositiveAndValidate(inArray.size());
break;
}
case Axis::ROW:
{
sliceCopy.makePositiveAndValidate(inArray.shape().cols);
break;
}
case Axis::COL:
{
sliceCopy.makePositiveAndValidate(inArray.shape().rows);
break;
}
}
std::vector<uint32> indices;
for (uint32 i = static_cast<uint32>(sliceCopy.start); i < static_cast<uint32>(sliceCopy.stop); i += sliceCopy.step)
{
indices.push_back(i);
}
return deleteIndices(inArray, NdArray<uint32>(indices), inAxis);
}
//============================================================================
// Method Description:
/// Return a new array with sub-arrays along an axis deleted.
///
/// @param inArray
/// @param inIndex
/// @param inAxis (Optional, default NONE) if none the indices will be applied to the flattened array
/// @return
/// NdArray
///
template<typename dtype>
NdArray<dtype> deleteIndices(const NdArray<dtype>& inArray, uint32 inIndex, Axis inAxis = Axis::NONE)
{
NdArray<uint32> inIndices = { inIndex };
return deleteIndices(inArray, inIndices, inAxis);
}
}
| [
"dpilger26@gmail.com"
] | dpilger26@gmail.com |
12130d7a6ccebbb8875f845fef0722854ca18f6e | 3f3e9283587c9e6fe3d6bd6d2ce1c16d1fca6218 | /base/src/InstructionConstraint.cc | 31fa4bc36be3c48264848f4e8f240089ddc35260 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | nujgnayuf/force-riscv | 5deedc074e130d467e4204ab51e4d28fc89af989 | 4c1e837263c80145359eb48e3cd62766c13f9cc4 | refs/heads/master | 2022-10-17T18:09:11.118800 | 2020-06-13T23:26:17 | 2020-06-13T23:26:17 | 272,687,985 | 0 | 1 | null | 2020-06-16T11:18:55 | 2020-06-16T11:18:55 | null | UTF-8 | C++ | false | false | 3,179 | cc | //
// Copyright (C) [2020] Futurewei Technologies, Inc.
//
// FORCE-RISCV is licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR
// FIT FOR A PARTICULAR PURPOSE.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include <InstructionConstraint.h>
#include <Choices.h>
#include <InstructionStructure.h>
#include <Generator.h>
#include <ChoicesModerator.h>
#include <GenException.h>
#include <Instruction.h>
#include <Constraint.h>
#include <Operand.h>
#include <GenRequest.h>
#include <ResourceDependence.h>
#include <Log.h>
using namespace std;
namespace Force {
InstructionConstraint::InstructionConstraint(const InstructionConstraint& rOther)
: mpInstructionRequest(rOther.mpInstructionRequest), mpHotResource(rOther.mpHotResource)
{
LOG(fail) << "InstructionConstraint copy constructor not meant to be called." << endl;
FAIL("calling-instruction-constraint-copy-constructor-unexpectedly");
}
InstructionConstraint::~InstructionConstraint()
{
mpInstructionRequest = nullptr;
delete mpHotResource; // delete if not null
}
void InstructionConstraint::Setup(const Generator& gen, const Instruction& instr, const InstructionStructure& instructionStruct)
{
mpHotResource = gen.GetDependenceInstance()->CreateHotResource();
}
BranchInstructionConstraint::~BranchInstructionConstraint()
{
mpBranchOperand = nullptr;
}
void BranchInstructionConstraint::Setup(const Generator& gen, const Instruction& instr, const InstructionStructure& instructionStruct)
{
InstructionConstraint::Setup(gen, instr, instructionStruct);
mpBranchOperand = instr.FindOperandType<BranchOperand>();
if (nullptr == mpBranchOperand) {
LOG(fail) << "{BranchInstructionConstraint::Setup} BranchOperand not found." << endl;
FAIL("branch-operand-not-found");
}
}
BranchInstructionConstraint::BranchInstructionConstraint(const BranchInstructionConstraint& rOther)
: InstructionConstraint(rOther), mpBranchOperand(nullptr)
{
}
LoadStoreInstructionConstraint::~LoadStoreInstructionConstraint()
{
mpLoadStoreOperand = nullptr;
}
void LoadStoreInstructionConstraint::Setup(const Generator& gen, const Instruction& instr, const InstructionStructure& instructionStruct)
{
InstructionConstraint::Setup(gen, instr, instructionStruct);
mpLoadStoreOperand = instr.FindOperandType<LoadStoreOperand>();
if (nullptr == mpLoadStoreOperand) {
LOG(fail) << "{LoadStoreInstructionConstraint::Setup} LoadStoreOperand not found." << endl;
FAIL("load-store-operand-not-found");
}
}
LoadStoreInstructionConstraint::LoadStoreInstructionConstraint(const LoadStoreInstructionConstraint& rOther)
: InstructionConstraint(rOther), mpLoadStoreOperand(nullptr)
{
}
}
| [
"jwang1@futurewei.com"
] | jwang1@futurewei.com |
88397638e6eec250a628ce6034bd3c3f718fb213 | 26a2ac17474978c2d838187cbf57d684b7250e07 | /ch09/ex9_27.cpp | 92034c24550fcd61f988c51d6a99c368ecacba8d | [] | no_license | Huangtuzhi/CppPrimer | ab2d0b7881f4c5cf402cbd2310119e8c723a5911 | f8594341c9865a9b2c22bc997690ddffac58e383 | refs/heads/master | 2016-09-05T17:04:42.576479 | 2015-05-24T14:17:00 | 2015-05-24T14:17:00 | 32,782,742 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 549 | cpp | #include <vector>
#include <string>
#include <list>
#include <iostream>
#include <forward_list>
using namespace std;
bool rmOddNumber(forward_list<int>& list)
{
forward_list<int>::iterator pre = list.before_begin();
forward_list<int>::iterator curr = list.begin();
for(curr;curr!=list.end();)
{
if(*curr % 2)
{
curr = list.erase_after(pre);
}
else
{
pre = curr;
curr++;
}
}
return true;
}
int main()
{
forward_list<int> ele = {1, 2, 3, 4, 5, 0, 1, 2, 3, 9};
rmOddNumber(ele);
for(auto &i: ele)
cout<<i<<endl;
}
| [
"heying1991@gmail.com"
] | heying1991@gmail.com |
5a1ddf18ea2f511476d1b21147bb4241aa635b8e | e69fb3786ca884e9f4949854f1d68e9833b0cb11 | /647.回文子串.cpp | 7973f890c97facc3a2006062f2cd0177c69b145c | [] | no_license | YangfeiLiu/LeeCode | fe39f7bd142925cf6e126dbaad3436668997c694 | 8e518ffff8f7f8a74d20240b64557c906af80faf | refs/heads/master | 2022-12-11T06:42:58.813220 | 2020-09-13T02:44:58 | 2020-09-13T02:44:58 | 288,401,511 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,498 | cpp | /*
* @lc app=leetcode.cn id=647 lang=cpp
*
* [647] 回文子串
*/
// @lc code=start
class Solution {
public:
/*
//暴力,时间复杂度是O(n^2logn)
int countSubstrings(string s) {
int len = s.length();
if(len < 2) return len;
int cnt = len;
for(int i = 0; i < len - 1; i++){
for(int j = i + 1; j < len; j++){
if(fun(s, i, j)) cnt++;
}
}
return cnt;
}
bool fun(string s, int i, int j){
while(i < j){
if(s[i] != s[j]) return false;
else{
i++;
j--;
}
}
return true;
}
*/
//动态规划方法
int countSubstrings(string s) {
int len = s.length();
if(len < 2) return len;
int cnt = 0;
vector<vector<bool>> dp(len, vector<bool>(len, false));
for(int j = 0; j < len; j++){
for(int i = 0; i <= j; i++){
if(i == j){ // 只有一个字符
dp[i][j] = true;
cnt++;
}
if(j - i == 1 && s[i] == s[j]){ // 两个字符,且相等
dp[i][j] = true;
cnt++;
}
if(j - i > 1 && s[i] == s[j] && dp[i+1][j-1]){ // 多于两个字符
dp[i][j] = true;
cnt++;
}
}
}
return cnt;
}
};
// @lc code=end
| [
"gentleman_lyf@163.com"
] | gentleman_lyf@163.com |
c0b20934bc1fb3c45c8f2bbacdff4dc943104a1f | 9e42255b4e4bfa3f3a83be729a8612dc0b2dc1eb | /src/GlobalConfig.cpp | 98caf00a9f14f315d3d39db7a946ab1aaa2d19d6 | [] | no_license | brian-kelley/Magnate | 69abcfb1e4d01da59070a2b2718ace6d7631d26e | d9f18f94a95c67932f23cd132391bf5878b314f2 | refs/heads/master | 2021-03-27T19:52:53.759746 | 2017-03-05T21:05:47 | 2017-03-05T21:05:47 | 61,687,786 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 150 | cpp | #include "GlobalConfig.h"
const int GlobalConfig::WORLD_SIZE = 257;
const int GlobalConfig::WINDOW_W = 640;
const int GlobalConfig::WINDOW_H = 480;
| [
"brian.honda11@gmail.com"
] | brian.honda11@gmail.com |
a31718bfa34de0fb6dba37a03b143146ce17d694 | cdba8cfd0256a0159068bc9ea525c60f3764b6ef | /UnnamedRPG/Source/UnnamedRPG/QuestSystem/QuestObjective.cpp | 0594ad755f799e265a5dedfdae226b6ccdb7f715 | [] | no_license | JNecov75/Sellsword | 8e871a772152a940efda084ee2fea2ecd6d2b55e | d3b22d04d85c136a13f0f0c762ffdc4dd99fce27 | refs/heads/master | 2021-01-10T16:27:50.468934 | 2015-12-12T18:31:17 | 2015-12-12T18:31:17 | 47,864,234 | 1 | 0 | null | 2015-12-12T15:19:01 | 2015-12-12T04:31:43 | null | UTF-8 | C++ | false | false | 859 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "UnnamedRPG.h"
#include "QuestObjective.h"
FQuestObjective::FQuestObjective() : _Handler(nullptr), _ObjectiveStatus(EQuestStatus::NotStarted)
{
}
void FQuestObjective::Init()
{
if (ObjectiveType == EQuestObjectiveTypes::EnterArea
|| ObjectiveType == EQuestObjectiveTypes::LeaveArea)
{
_Handler = new CQuestObjectiveHandlerArea(TargetTag, ObjectiveType == EQuestObjectiveTypes::EnterArea);
}
_ObjectiveStatus = EQuestStatus::InProgress;
}
void FQuestObjective::RecieveGameEvent(class CGameEvent& event)
{
check(_Handler && "It seems you haven't called Init");
_Handler->RecieveGameEvent(event);
if (_Handler->IsObjectiveCompleted())
{
_ObjectiveStatus = EQuestStatus::Finished;
delete _Handler; // we don't need it anymore
_Handler = nullptr;
}
}
| [
"alademm@gmail.com"
] | alademm@gmail.com |
1d7ba2338d67e4c5cd159680c41ce6dce7364b12 | 0c0d2baaf1925196c8963bea3c57347341ef6ba1 | /lineagehw/livedisplay/MixedDisplayModes.h | 8db5fd569c0185ee71d2520b855e3fabec3cf7b0 | [] | no_license | LineageOS/android_device_oneplus_oneplus3 | 87566b55349f89833722eb1f87aea385a3a60341 | e975bda0561217fae2a342c2e8c1848b3e3cf370 | refs/heads/lineage-18.1 | 2023-06-09T19:00:49.941566 | 2021-12-05T07:09:06 | 2021-12-05T07:09:06 | 75,635,972 | 244 | 419 | null | 2022-10-02T20:07:05 | 2016-12-05T15:02:55 | C++ | UTF-8 | C++ | false | false | 1,853 | h | /*
* Copyright (C) 2019-2020 The LineageOS Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <livedisplay/sdm/DisplayModes.h>
namespace vendor {
namespace lineage {
namespace livedisplay {
namespace V2_0 {
namespace sdm {
class MixedDisplayModes : public DisplayModes {
public:
explicit MixedDisplayModes(std::shared_ptr<SDMController> controller);
// Methods from ::vendor::lineage::livedisplay::V2_0::IDisplayModes follow.
Return<bool> setDisplayMode(int32_t modeID, bool makeDefault) override;
private:
int32_t active_mode_id_;
std::vector<DisplayMode> getDisplayModesQDCM();
std::vector<DisplayMode> getDisplayModesSysfs();
int32_t getCurrentDisplayModeId();
int32_t getDefaultDisplayModeId();
int32_t getDefaultDisplayModeIdQDCM();
bool setModeState(int32_t modeId, bool on);
bool saveInitialDisplayMode();
// Methods from ::vendor::lineage::livedisplay::V2_0::sdm::DisplayModes follow.
std::vector<DisplayMode> getDisplayModesInternal() override;
DisplayMode getCurrentDisplayModeInternal() override;
DisplayMode getDefaultDisplayModeInternal() override;
DISALLOW_IMPLICIT_CONSTRUCTORS(MixedDisplayModes);
};
} // namespace sdm
} // namespace V2_0
} // namespace livedisplay
} // namespace lineage
} // namespace vendor
| [
"dianlujitao@lineageos.org"
] | dianlujitao@lineageos.org |
d048ab813f79b0e6ef001924b5b3e859f9c5a67b | bad16eb9b35971135f8fc055b40d87006621d2de | /playground/2020/cf1436/D.cc | 3c70a40a2ef6e32777f63d93274fea26c1e77d8a | [] | no_license | ymd45921/HUST-ACM-training | 1e1c47e40d419987731e047f493d614f0220346b | 1976e8351c0ba445ad8bfe0124dd88215d768cc8 | refs/heads/master | 2023-06-12T13:52:31.974586 | 2021-07-14T14:30:49 | 2021-07-14T14:30:49 | 317,748,883 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,303 | cc | /**
*
* 这个树形…… 还真不算难(
* 首先要想到市民是尽可能平均分配的,强盗抓大头
* 如果子树更优,那么一定会更新答案==
*
* 日常爆 int 不用 long long(
*/
#include <bits/stdc++.h>
using namespace std;
using longs = long long;
using uint = unsigned;
using ulongs = unsigned long long;
using longd = long double;
#define eprintf(x...) fprintf(stderr, x)
#define var(x) ""#x" = " << x
#define lll __int128
#define minimize(a, b) (a = min(a, b))
#define maximize(a, b) (a = max(a, b))
void print(__int128 x)
{
if (x < 0) { putchar('-'); x = -x; }
static char str[40]; int cnt = 0;
while (x > 9) { str[cnt ++] = (x % 10) ^ 48; x /= 10;}
str[cnt ++] = x ^ 48;
while (cnt --) putchar(str[cnt]);
}
template <class T>
void println(T x) {puts(to_string(x).c_str());}
void println(const char *s) {puts(s);}
void println(const char ch)
{putchar(ch), putchar('\n');}
void println(const lll x)
{lll xx = x; print(xx), putchar('\n');}
static class Scanner
{
template<class T>
inline T read()
{
T x = 0; int f = 0, ch = getchar();
while (!isdigit(ch)) ch == '-' && (f = !f), ch = getchar();
while (isdigit(ch)) x = x * 10 + ch - 48, ch = getchar();
return f ? -x : x;
}
public:
template <class T>
void operator()(T &x){x = read<T>();}
template <class T, class... Ts>
void operator()(T &x, Ts &... y)
{(*this)(x), (*this)(y...);}
void operator()(char *x){scanf("%s", x);}
void operator()(char &x){x = getchar();}
int nextInt() {return read<int>();}
longs nextLongs() {return read<longs>();}
lll nextInt128() {return read<lll>();}
char nextChar() {return getchar();}
} scanner;
const int N = 2e5 + 5, M = N;
int a[N];
longs lvs[N], sum[N];
struct edge
{
int u, v, w, next;
edge() = default;
edge(int u, int v, int w, int next)
: u(u), v(v), w(w), next(next) {}
};
namespace FWS
{
int head[N], deg[N];
int tot;
edge ee[M * 2];
void init(int n = N - 1)
{
memset(head, -1, sizeof(int) * (n + 1));
memset(deg, 0, sizeof(int) * (n + 1));
tot = 0;
}
void addEdge(int u, int v, int w = 1)
{
ee[tot] = edge(u, v, w, head[u]);
head[u] = tot ++; ++ deg[u];
}
template <class fun>
void forEach(int u, const fun process)
{
for (auto c = head[u];
c != -1;
c = ee[c].next)
process(ee[c]);
}
}
longs dfsCount(int u)
{
using namespace FWS;
if (!deg[u]) return lvs[u] = 1, sum[u] = a[u];
lvs[u] = 0, sum[u] = a[u];
longs ans = 0;
forEach(u, [&](const edge &e)
{
auto tmp = dfsCount(e.v);
lvs[u] += lvs[e.v];
sum[u] += sum[e.v];
maximize(ans, tmp);
});
return max(ans, sum[u] / lvs[u] + bool(sum[u] % lvs[u]));
}
int main()
{
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
#if 0
freopen("in.txt", "r", stdin);
#endif
int n = scanner.nextInt();
FWS::init(n);
for (int v = 2; v <= n; ++ v)
FWS::addEdge(scanner.nextInt(), v);
for (int i = 1; i <= n; ++ i)
a[i] = scanner.nextInt();
longs ans = dfsCount(1);;
println(ans);
return 0;
}
| [
"ymd45921@163.com"
] | ymd45921@163.com |
1d8f7aa4ca9203a86d4c447cb6f9a39e56472c69 | adec2460d6c440ceca87c319645bea27aff23c67 | /Calculator/Expression.h | 62f4acf47998a8262c48dead16535c3ac07229ab | [] | no_license | Trompowsky/Calculator | 88bea261f24561d0e23630483e1bf110ac57fdee | af1830ef8fa60531ad6ec1ecd8643502ecbd859c | refs/heads/master | 2020-12-24T18:41:31.170378 | 2016-04-22T00:33:21 | 2016-04-22T00:33:21 | 56,814,010 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 422 | h | #ifndef EXPRESSION_H_INCLUDED
#define EXPRESSION_H_INCLUDED
#include <vector>
#include <iostream>
using namespace std;
class Expression{
public:
Expression(string Exp);
~Expression();
float eval();
string printnum();
string printop();
float Left();
float Right();
bool Emp();
int pos;
int n_pos;
int xpos;
string input;
string spl;
};
#endif // EXPRESSION_H_INCLUDED
| [
"ali.gh.abdulla@gmail.com"
] | ali.gh.abdulla@gmail.com |
f39d1904c3aadd594a4dbe81a3da9e349ce06cc6 | 721ecafc8ab45066f3661cbde2257f6016f5b3a8 | /csacademy/bits/postivie-xor.cpp | 05bfb715ddb11f1d141907b4e2b5902960df4015 | [] | no_license | dr0pdb/competitive | 8651ba9722ec260aeb40ef4faf5698e6ebd75d4b | fd0d17d96f934d1724069c4e737fee37a5874887 | refs/heads/master | 2022-04-08T02:14:39.203196 | 2020-02-15T19:05:38 | 2020-02-15T19:05:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,908 | cpp | #include<bits/stdc++.h>
#define ABS(a) ((a < 0) ? ((-1)*(a)) : (a))
#define F(i,a,b) for(long long i = (long long)(a); i < (long long)(b); i++)
#define RF(i,a,b) for(long long i = (long long)(a); i >= (long long)(b); i--)
#define MIN3(a,b,c) (a)<(b)?((a)<(c)?(a):(c)):((b)<(c)?(b):(c))
#define MAX(a,b) (a)>(b)?(a):(b)
#define MIN2(a,b) (a)<(b)?(a):(b)
#define SIEVELIM 10000000+10
#define coud(a,b) cout<<fixed << setprecision((b)) << (a)
using namespace std;
typedef pair<int, int> ii;
typedef pair<int, ii> iii;
typedef vector<ii> vii;
typedef vector<int> vi;
typedef long long ll;
#define ull unsigned long long
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll,ll> pll;
inline int nextint(){ int temporary; scanf("%d",&temporary); return temporary; }
inline ll nextll(){ ll temporary; scanf("%lld",&temporary); return temporary; }
inline double nextdouble(){double temporary; scanf("%lf",&temporary); return temporary;}
ll gcd(ll a, ll b) { return b == 0 ? a : gcd(b, a % b); }
ll lcm(ll a, ll b) { return a * (b / gcd(a, b)); }
ll leftChild(ll p ){return p<<1;}
ll rightChild(ll p ){return (p<<1)+1;}
inline ll mid(ll l, ll r){ return (l+r)/2;}
const ll MOD = 1000000007;
const ll INF = 1e9+5;
const double eps = 1e-7;
const double PI = acos(-1.0);
#define deb(x ) cerr << #x << " here "<< x;
#define endl "\n"
#define pb push_back
#define mp make_pair
#define all(cc) (cc).begin(),(cc).end()
inline bool is_palindrome(const string& s){ return std::equal(s.begin(), s.end(), s.rbegin()); }
template<typename T > void modulize(T & a, const T & b) { if (a >= b) { a %= b; } }
ll mulmod(ll a, ll b, ll m) { ll q = (ll)(((ld)a*(ld)b) / (ld)m); ll r = a*b - q*m; if (r>m)r %= m; if (r<0)r += m; return r; }
template <typename T, typename S>T expo(T e, S n) { T x = 1, p = e; while (n) { if (n & 1)x = x*p; p = p*p; n >>= 1; }return x; }
template <typename T>T power(T e, T n, T & m) { T x = 1, p = e; while (n) { if (n & 1)x = mod(x*p, m); p = mod(p*p, m); n >>= 1; }return x; }
template <typename T>T powerL(T e, T n, T & m) { T x = 1, p = e; while (n) { if (n & 1)x = mulmod(x, p, m); p = mulmod(p, p, m); n >>= 1; }return x; }
template <typename T> T InverseEuler(T a, T & m) { return (a == 1 ? 1 : power(a, m - 2, m)); }
inline int two(int n) { return 1 << n; }
inline void set_bit(int & n, int b) { n |= two(b); }
inline void unset_bit(int & n, int b) { n &= ~two(b); }
/*----------------------------------------------------------------------*/
int main(){
std::ios::sync_with_stdio(false);cin.tie(NULL); cout.tie(NULL);
int n;
cin>>n;
int arr[n];
int xors = 0;
F(i, 0, n){
cin>>arr[i];
xors ^= arr[i];
}
if (xors)
{
cout<<n;
return 0;
}
int u = 0, v= n-1;
while(!arr[u]){
u++;
}
while(!arr[v]){
v--;
}
cout << n - min(u + 1, n - v) << '\n';
return 0;
}/*
*/
| [
"saurav007tiwary@gmail.com"
] | saurav007tiwary@gmail.com |
90b01375389df970772bf779ad570f9bfdeff5c5 | d35b0bd401bcc2089fcabb1d0d2fd298b8cc1941 | /GDAL/include/xercesc/util/NetAccessors/WinSock/BinHTTPURLInputStream.hpp | cd5e6b6f93f417c19b7436ebe3cd0b356b46f20e | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"Zlib"
] | permissive | hex-hex/ZxLib | 9bad09c8190d4458a84279c02b6e5070201a9c7b | 286d4f48217b38920cf81404774617915ea99874 | refs/heads/master | 2021-07-23T04:28:29.255180 | 2016-10-17T07:41:01 | 2016-10-17T07:41:01 | 71,088,540 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,287 | hpp | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* $Id: BinHTTPURLInputStream.hpp 568078 2007-08-21 11:43:25Z amassari $
*/
#if !defined(BINHTTPURLINPUTSTREAM_HPP)
#define BINHTTPURLINPUTSTREAM_HPP
#include <xercesc/util/XMLURL.hpp>
#include <xercesc/util/XMLExceptMsgs.hpp>
#include <xercesc/util/BinInputStream.hpp>
#include <xercesc/util/Mutexes.hpp>
#include <xercesc/util/XMLNetAccessor.hpp>
//
// This class implements the BinInputStream interface specified by the XML
// parser.
//
struct hostent;
struct sockaddr;
XERCES_CPP_NAMESPACE_BEGIN
class XMLUTIL_EXPORT BinHTTPURLInputStream : public BinInputStream
{
public :
BinHTTPURLInputStream(const XMLURL& urlSource, const XMLNetHTTPInfo* httpInfo=0);
~BinHTTPURLInputStream();
unsigned int curPos() const;
unsigned int readBytes
(
XMLByte* const toFill
, const unsigned int maxToRead
);
static void Cleanup();
private :
// -----------------------------------------------------------------------
// Unimplemented constructors and operators
// -----------------------------------------------------------------------
BinHTTPURLInputStream(const BinHTTPURLInputStream&);
BinHTTPURLInputStream& operator=(const BinHTTPURLInputStream&);
// -----------------------------------------------------------------------
// Private data members
//
// fSocketHandle
// The socket representing the connection to the remote file.
// We deliberately did not define the type to be SOCKET, so as to
// avoid bringing in any Windows header into this file.
// fBytesProcessed
// Its a rolling count of the number of bytes processed off this
// input stream.
// fBuffer
// Holds the http header, plus the first part of the actual
// data. Filled at the time the stream is opened, data goes
// out to user in response to readBytes().
// fBufferPos, fBufferEnd
// Pointers into fBuffer, showing start and end+1 of content
// that readBytes must return.
// -----------------------------------------------------------------------
MemoryManager* fMemoryManager;
unsigned int fSocketHandle;
unsigned int fBytesProcessed;
char fBuffer[4000];
char * fBufferEnd;
char * fBufferPos;
static bool fInitialized;
static XMLMutex* fInitMutex;
static void Initialize(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
inline static hostent* gethostbyname(const char* name);
inline static unsigned long inet_addr(const char* cp);
inline static hostent* gethostbyaddr(const char* addr,int len,int type);
inline static unsigned short htons(unsigned short hostshort);
inline static unsigned int socket(int af,int type,int protocol);
inline static int connect(unsigned int s,const sockaddr* name,int namelen);
inline static int send(unsigned int s,const char* buf,int len,int flags);
inline static int recv(unsigned int s,char* buf,int len,int flags);
inline static int shutdown(unsigned int s,int how);
inline static int closesocket(unsigned int socket);
friend class SocketJanitor;
};
inline unsigned int BinHTTPURLInputStream::curPos() const
{
return fBytesProcessed;
}
XERCES_CPP_NAMESPACE_END
#endif // BINHTTPURLINPUTSTREAM_HPP
| [
"noreply@github.com"
] | hex-hex.noreply@github.com |
340d18b3e428485b6bf17ee14d79965f36c3a388 | 5b1dd812023bbc62fd0efe8856c1f80a881383c1 | /lecture_4/exercise_3.cpp | 733778ace7d538ed8460148c307597bc456c29d0 | [] | no_license | oskarski/pjc_cw | e5bff228bc95d3e11b2c24c72c1b2165ab6c16d8 | 38b3a0a86ecb0ce3e15538d266deb9a23993b3c2 | refs/heads/master | 2023-02-24T12:32:25.950485 | 2021-01-09T11:08:50 | 2021-01-09T11:08:50 | 305,766,907 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,224 | cpp | #include <iostream>
#include <cmath>
#include <vector>
using namespace std;
template<typename T>
vector<size_t> smallSum3(const vector<T> &input_vector) {
vector<size_t> output_vector(3);
T smallest_abs_sum = abs(input_vector.at(0) + input_vector.at(1) + input_vector.at(2));
for (int i = 0; i < input_vector.size(); i++) {
for (int j = 0; j < input_vector.size(); j++) {
for (int k = 0; k < input_vector.size(); k++) {
T sum = abs(input_vector.at(i) + input_vector.at(j) + input_vector.at(k));
if (sum < smallest_abs_sum && i != j && i != k && j != k) {
smallest_abs_sum = sum;
output_vector.clear();
output_vector.push_back(i);
output_vector.push_back(j);
output_vector.push_back(k);
}
}
}
}
return output_vector;
}
int exercise_3() {
vector<int> a{2, -13, 3, 6, 4, 5, -14, 1, -15};
auto r = smallSum3(a);
printf("Sum=%d for elements "
"a[%u]=%d, a[%u]=%d, a[%u]=%d\n",
a[r[0]] + a[r[1]] + a[r[2]],
r[0], a[r[0]], r[1], a[r[1]], r[2], a[r[2]]);
return 0;
}; | [
"oskar.kupski@gmail.com"
] | oskar.kupski@gmail.com |
66d11d442ee80fe7c0fc74aa825caff24090b01d | 4c6d33d33b1b42b394110c8d97fa2fd0f2a01bfe | /Src/TitleScene.cpp | 25f98f0b2c5471633475226ab6065f486c40bfbe | [
"MIT"
] | permissive | tn-mai/OpenGL3D2018 | 191efb113ef564a6646f23a5a85c991220430d17 | 39f93ee123794fbd805ab395d9356c1968bead80 | refs/heads/master | 2020-03-30T02:21:41.912517 | 2019-08-20T05:35:52 | 2019-08-20T05:35:52 | 150,627,813 | 1 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,806 | cpp | /**
* @file TitleScene.h
*/
#include "TitleScene.h"
#include <glm/gtc/matrix_transform.hpp>
/**
* 初期化.
*/
bool TitleScene::Initialize()
{
std::vector<std::string> modelList;
modelList.push_back("Res/Plane.obj");
if (!meshList.Allocate(modelList)) {
return false;
}
progSimple.Reset(Shader::BuildFromFile("Res/Simple.vert", "Res/Simple.frag"));
texLogo.Reset(Texture::LoadImage2D("Res/TitleLogo.tga"));
texBackGround.Reset(Texture::LoadImage2D("Res/TItleBack.tga"));
return true;
}
/**
* 入力の処理.
*/
void TitleScene::ProcessInput()
{
GLFWEW::Window& window = GLFWEW::Window::Instance();
if (window.IsKeyDown(GLFW_KEY_ENTER)) {
NextScene("MainGame");
}
}
/**
* 状態の更新.
*/
void TitleScene::Update()
{
// 座標変換行列を作成する.
// const glm::mat4x4 matProj = glm::perspective(glm::radians(45.0f), 800.0f / 600.0f, 0.1f, 500.0f);
const glm::mat4x4 matProj = glm::ortho(0.0f, 800.0f, 0.0f, 600.0f, 1.0f, 500.0f);
const glm::mat4x4 matView = glm::lookAt(glm::vec3(0, 0, 100), glm::vec3(0, 0, 0), glm::vec3(0, 1, 0));
progSimple.SetViewProjectionMatrix(matProj * matView);
}
/**
* 描画.
*/
void TitleScene::Render()
{
glEnable(GL_DEPTH_TEST);
glEnable(GL_CULL_FACE);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glClearColor(0.1f, 0.3f, 0.5f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
progSimple.Use();
meshList.BindVertexArray();
progSimple.BindTexture(0, texBackGround.Get());
progSimple.Draw(meshList[0], glm::vec3(400, 300, -1), glm::vec3(0), glm::vec3(400, 300, 1));
progSimple.BindTexture(0, texLogo.Get());
progSimple.Draw(meshList[0], glm::vec3(400, 300, 0), glm::vec3(0), glm::vec3(400, 300, 1));
}
/**
* 終了.
*/
void TitleScene::Finalize()
{
}
| [
"rabitfiver@gmail.com"
] | rabitfiver@gmail.com |
1ce0bd2fece732d5bb2220d18110cc4789888f0d | 7fca73b8b2c41ae60c7428ca69ace83214fc0f2a | /algorithms/C++/Euler Toient Theorem/toient.cpp | dab931e284a7640ab2a48e0def435542641e5e5f | [
"Apache-2.0"
] | permissive | akash19jain/Algorithms | e849842364f47d4c44117693ca28ddb147747de0 | 0fcb6c3c6a625232281c8c05c6ce44da3c8323f8 | refs/heads/master | 2023-01-03T17:04:41.731439 | 2020-10-29T05:57:50 | 2020-10-29T05:57:50 | 212,042,970 | 0 | 0 | Apache-2.0 | 2019-10-01T08:04:44 | 2019-10-01T08:04:43 | null | UTF-8 | C++ | false | false | 875 | cpp | #include<bits/stdc++.h>
using namespace std;
// O(sqrtN)
// what we are doind is -> result = result*(1-1/p)
int phi(int n){
int result = n;
for(int i=2; i*i<=n; i++){
if(n%i == 0){
while(n%i == 0){
n = n/i;
}
result -= result/i;
}
}
if(n>1)
result -= result/n;
return result;
}
//Euler's Toient Function from 1 to n
vector<int> phi_1ton(int n){
vector<int> phi(n+1);
for(int i=0; i<=n; i++){
phi[i] = i;
}
for(int i=2; i<n; i++){
if(phi[i] = i){
for(int j=i; j<=n; j++){
phi[j] -= phi[j]/i;
}
}
}
return phi;
}
int main(){
cout << "Testing phi: " << "\n";
int t;
cin >> t;
vector<int> v(t);
for(int i=0; i<t; i++){
int num;
cin >> num;
v[i] = num;
}
for(int i:v) cout << "phi(" << i << "): " << phi(i) << "\n";
cout << "\n";
cout << "Testing phi_1ton: " << "\n";
for(int i:phi_1ton(t)) cout << i << " ";
} | [
"noreply@github.com"
] | akash19jain.noreply@github.com |
7cee6882c74bab744674622033929cdb0f4f8f1f | 4e9aa6d8635d6bfcbaeecbb9420ebdc4c4489fba | /ARXTest/cadtest/MineGECmds/PropertyDataDlg2.h | ea0ac95f6cf428a34205d62a0ef00c68b6e8b3b8 | [] | no_license | softwarekid/myexercise | 4daf73591917c8ba96f81e620fd2c353323a1ae5 | 7bea007029c4c656c49490a69062648797084117 | refs/heads/master | 2021-01-22T11:47:01.421922 | 2014-03-15T09:47:41 | 2014-03-15T09:47:41 | 18,024,710 | 0 | 3 | null | null | null | null | GB18030 | C++ | false | false | 889 | h | #pragma once
#include "afxcmn.h"
#include "resource.h"
#include "ListCtrlEx.h"
class PropertyDataDlg2 : public CDialog
{
DECLARE_DYNAMIC(PropertyDataDlg2)
public:
PropertyDataDlg2(CWnd* pParent = NULL); // 标准构造函数
virtual ~PropertyDataDlg2();
// 对话框数据
enum { IDD = IDD_PROPERTY_DLG2 };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
// 关联图元
void setMineGE(const AcDbObjectId& objId);
// 添加字段
void addField(const CString& field);
// 是否显示全部数据
void showAllData(bool bFlag);
public:
AcDbObjectId m_objId; // 图元id
AcStringArray m_fields; // 要显示的字段
bool m_showAll; // 是否显示全部数据(默认true)
CListCtrlEx m_propertyDataList;
afx_msg void OnBnClickedOk();
virtual BOOL OnInitDialog();
};
| [
"anheihb03dlj@163.com"
] | anheihb03dlj@163.com |
c2ecfd0509717f62eb9deb5900b703059a904353 | 249b89bffe7f6f493866d4b0a559f7819dc8e896 | /heap1.cpp | bae9b617eed37345c14c60e0f24d06612d877148 | [] | no_license | arpitarik/heap | 0ab2529d9220f15ca1f0432b6aa8f08c5aca2b18 | e3420d230f62617d2955f98fc323bbedac2dfc68 | refs/heads/master | 2020-05-09T10:47:11.602520 | 2019-04-12T17:50:05 | 2019-04-12T17:50:05 | 181,057,545 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,683 | cpp | #include<iostream>
using namespace std;
//create node
class Node{
public:
int data;
Node*parent;
Node*left;
Node*right;
//constructor and this time temp->data=value == Node*temp(value)
Node(int value){
data=value;
parent=NULL;
left=NULL;
right=NULL;
}
};
//create class
class BiST{
public:
Node*root;
BiST(){root=NULL;}
//things to do
//insert
void insert(int value){
insert2(root,value);
}
void insert2(Node*curr,int value){
//no root
if(curr==NULL){root=new Node(value);}
//root exist but data is less then root
else if(value<curr->data){
//pass to next one or create and add
if(curr->left==NULL){
curr->left=new Node(value);
curr->left->parent=curr;
}
//else pass
else{insert2(curr->left,value);}
}
//root exist but data is more then root
else{
//same create or pass to next one
if(curr->right==NULL){
curr->right=new Node(value);
curr->right->parent=curr;
}
else{insert2(curr->right,value);}
}
}
//Display
//inorder (left,root,right)
void Displayin(){displayin(root);cout<<endl;}
void displayin(Node*curr){
//if empty tree
if(root==NULL){cout<<"there is nothing to print"<<endl;}
else{
//go left and left..print
//come back print..go right
//..print right
if(curr==NULL)return;
else{
//if below code didn't get try to wright
displayin(curr->left);
cout<<curr->data<<",";
displayin(curr->right);
}
}
}
//count all the elments
int count(){cout<<ct(root)<<endl;}
int ct(Node*curr){
int s=0;
if(curr==NULL){return 0;}
else{s=ct(curr->left)+1+ct(curr->right);}
return s;
}
//node search
//simple can be understand
Node* Search(int value){
search(root,value);
}
Node* search(Node* curr,int value){
if(value==curr->data or curr==NULL)return curr;
else{
if(value>curr->data){
search(curr->right,value);
}
else search(curr->left,value);
}
}
//find min from given node
Node* findmin(int value){
fn(Search(value));
}
Node* fn(Node*curr){
if(curr->left==NULL){return curr;}
else fn(curr->left);
}
// int rangeSearch(int k1, int k2) ->range search: given two values k1 and k2, print all the elements (or keys) x in
int rangeSearch(int k1,int k2){
//for printing remains same as display but cout inside the if condition and also count++
cout<<disnct(root,k1,k2,10)<<endl;
}
int disnct(Node*curr,int k1,int k2,int count){
//if empty tree
if(root==NULL){cout<<"tree is empty"<<endl;}
else if(curr==NULL) return count;
else {
disnct(curr->left,k1,k2,count);
if(k1<=curr->data and curr->data<=k2){
count++;
cout<<curr->data<<",";
}
disnct(curr->right,k1,k2,count);
}
return count;
}
//time for calculate height of a tree or subtree
//go to the every leaf and count also with it
//put max of all counts
int height(int value){
int maxh=0;
Node*curr=Search(value);
cout<<ht(curr,maxh)<<endl;
}
int ht(Node * curr,int maxh){
if(curr==NULL)return 0;
else{
//maxh=max(ht(curr->left),ht(curr->right))+1;
if(ht(curr->left,maxh)<ht(curr->right,maxh))maxh=ht(curr->right,maxh)+1;
else maxh=ht(curr->left,maxh)+1;
}
return maxh;
}
};
int main(){
BiST b1;
b1.insert(40);
b1.insert(20);
b1.insert(60);
b1.insert(10);
b1.insert(30);
b1.insert(50);
b1.insert(70);
b1.insert(65);
b1.insert(75);
b1.insert(5);
b1.insert(15);
b1.insert(25);
b1.insert(35);
b1.insert(45);
b1.insert(55);
b1.insert(1);
b1.insert(54);
b1.insert(53);
b1.insert(52);
b1.insert(51);
b1.insert(65);
b1.insert(32);
b1.insert(33);
b1.insert(68);
b1.Displayin();
//b1.height(40);
//b1.count();
b1.rangeSearch(50,60);
return 0;
}
| [
"noreply@github.com"
] | arpitarik.noreply@github.com |
6fa796820ae8153dfbc9ee04e48986b4836ecfbf | 680d9b3a49693438388d00a7d688f0021138e257 | /src/notes_database.cc | d09a43f855cc5081d00541fa4dba7e785c6122e6 | [] | no_license | nthjelme/nodejs-domino | 4853773d9e9cd34c1e33b654f95dfedd8123e006 | a3ec53131a51b455b8db9e9412f460a6e9b715ce | refs/heads/master | 2020-04-07T04:50:02.852830 | 2019-06-25T06:25:54 | 2019-06-25T06:25:54 | 55,603,999 | 16 | 8 | null | 2017-01-28T08:48:49 | 2016-04-06T12:30:10 | C++ | UTF-8 | C++ | false | false | 4,277 | cc | #include "notes_database.h"
#include "DataHelper.h"
#include <iostream>
#include <map>
#include <iterator>
#include <vector>
#include <nsfdb.h>
#include <nif.h>
#include <nsfnote.h>
#include <osmem.h>
#include <osmisc.h>
#include <ctime>
#include <stdio.h>
NAN_METHOD(openDatabase) {
v8::String::Utf8Value val(info[0]->ToString());
std::string dbName (*val);
STATUS error = NOERROR; /* return status from API calls */
char *error_text = (char *) malloc(sizeof(char) * 200);
DBHANDLE db_handle; /* handle of source database */
if (error = NSFDbOpen(dbName.c_str(), &db_handle)) {
DataHelper::GetAPIError(error,error_text);
printf("error: %s", error_text);
}
USHORT dh = (USHORT) db_handle;
Local<Number> retval = Nan::New((double) dh);
info.GetReturnValue().Set(retval);
}
NAN_METHOD(getDatabaseName) {
double value = info[0]->NumberValue();
STATUS error = NOERROR; /* return status from API calls */
char *error_text = (char *) malloc(sizeof(char) * 200);
DBHANDLE db_handle; /* handle of source database */
char title[NSF_INFO_SIZE] = ""; /* database title */
unsigned short db_h = (unsigned short) value;
db_handle = (DHANDLE)db_h;
char buffer[NSF_INFO_SIZE] = ""; /* database info buffer */
if (error = NSFDbInfoGet (db_handle, buffer))
{
NSFDbClose (db_handle);
}
NSFDbInfoParse (buffer, INFOPARSE_TITLE, title, NSF_INFO_SIZE - 1);
info.GetReturnValue().Set(
Nan::New<String>(title).ToLocalChecked());
}
NAN_METHOD(closeDatabase) {
DBHANDLE db_handle; /* handle of source database */
double value = info[0]->NumberValue();
unsigned short db_h = (unsigned short) value;
db_handle = (DHANDLE)db_h;
NSFDbClose (db_handle);
}
NAN_METHOD(replicationSummary) {
STATUS error = NOERROR; /* return status from API calls */
DBHANDLE db_handle; /* handle of source database */
DHANDLE hReplHist;
REPLHIST_SUMMARY ReplHist;
REPLHIST_SUMMARY *pReplHist;
char szTimedate[MAXALPHATIMEDATE+1];
WORD wLen;
DWORD dwNumEntries, i;
char *pServerName; /* terminating NULL not included */
char szServerName[MAXUSERNAME + 1];
char *pFileName; /* includes terminating NULL */
char szDirection[10]; /* NEVER, SEND, RECEIVE */
Local<Array> replicaRes = New<Array>();
double value = info[0]->NumberValue();
unsigned short db_h = (unsigned short) value;
db_handle = (DHANDLE)db_h;
error = NSFDbGetReplHistorySummary (db_handle, 0, &hReplHist, &dwNumEntries);
if (error)
{
printf("error getting replica history\n");
}
pReplHist = OSLock (REPLHIST_SUMMARY, hReplHist);
for (i = 0; i < dwNumEntries; i++)
{
ReplHist = pReplHist[i];
error = ConvertTIMEDATEToText (NULL, NULL, &(ReplHist.ReplicationTime),
szTimedate, MAXALPHATIMEDATE, &wLen);
if (error)
{
OSUnlock (hReplHist);
OSMemFree (hReplHist);
}
szTimedate[wLen] = '\0';
if (ReplHist.Direction == DIRECTION_NEVER)
strcpy (szDirection, "NEVER");
else if (ReplHist.Direction == DIRECTION_SEND)
strcpy (szDirection, "SEND");
else if (ReplHist.Direction == DIRECTION_RECEIVE)
strcpy (szDirection, "RECEIVE");
else
strcpy (szDirection, "");
pServerName = NSFGetSummaryServerNamePtr (pReplHist, i);
strncpy (szServerName, pServerName, ReplHist.ServerNameLength);
szServerName[ReplHist.ServerNameLength] = '\0';
/* FileName will be NULL terminated */
pFileName = NSFGetSummaryFileNamePtr (pReplHist, i);
Local<Object> resDoc = Nan::New<Object>();
Nan::Set(resDoc, New<v8::String>("date").ToLocalChecked(), New<v8::String>(szTimedate).ToLocalChecked());
Nan::Set(resDoc, New<v8::String>("database").ToLocalChecked(), New<v8::String>(pFileName).ToLocalChecked());
Nan::Set(resDoc, New<v8::String>("server").ToLocalChecked(), New<v8::String>(szServerName).ToLocalChecked());
Nan::Set(resDoc, New<v8::String>("direction").ToLocalChecked(), New<v8::String>(szDirection).ToLocalChecked());
Nan::Set(replicaRes, i, resDoc);
}
OSUnlock (hReplHist);
OSMemFree (hReplHist);
info.GetReturnValue().Set(replicaRes);
} | [
"nhjelme@gmail.com"
] | nhjelme@gmail.com |
6fb462fdb97a4ee081ab756e630ac20bb6c7c93f | 1cb289f37bf81ecda0d943864eb5937a9487ce50 | /Left_Parenthesis_Command.cpp | c1e0bf1a19ab4eade339cdf3860df0a0250a0bca | [] | no_license | arvindnair/aooadassign3 | 3d9295079e7d815bffbdc6895cff0c78a5806f6f | 082b39d06f2205ddfaed98e2bfe42f5f260e33f3 | refs/heads/master | 2020-12-04T00:28:16.374466 | 2016-08-31T23:51:39 | 2016-08-31T23:51:39 | 67,081,745 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | cpp | // Honor Pledge:
//
// I pledge that I have neither given nor received any help
// on this assignment.
#include <string> // for printing std::string definition.
#include <iostream> // for printing I/O messages.
#include <stdexcept> // for throwing exceptions.
#include <cstring> // for size_t definition.
#include <exception> // for throwing run_time error and logic_error exceptions.
#include <cstdlib> // for printing exception message.
#include "Expr_Command.h" // for Expression Command.
#include "Left_Parenthesis_Command.h" // for Left Parenthesis Command.
#include "Stack.h" // for stack definition.
//
// Left_Parenthesis_Command
//
Left_Parenthesis_Command::Left_Parenthesis_Command (void)
{}
//
// ~Left_Parenthesis_Command
//
Left_Parenthesis_Command::~Left_Parenthesis_Command (void)
{}
//
// execute
//
bool Left_Parenthesis_Command::execute (Stack <int> & s)
{
// return true if successful.
return true;
}
//
// token_type
//
std::string Left_Parenthesis_Command::token_type (void) const
{
// return string of (
return "(";
}
//
// stack_precedence_number
//
int Left_Parenthesis_Command::stack_precedence_number (void) const
{
// return int value 3
return 3;
} | [
"arvnair@iupui.edu"
] | arvnair@iupui.edu |
de9e8bed52e17cf44c166bc7bec7557f03330d65 | 3a320e53c3cc7d651ecfeb854d8366895517d20a | /Lab6/graphics.h | 3aced2820d494bf4476c0311bb385e40467057a9 | [] | no_license | CChongQ/Programming-Fundamentals | 2bfb1af94999cbf526a86e435019d6bc5969502f | 01da19594bdd2d535854b518fcd8089feb3f0626 | refs/heads/master | 2023-03-18T10:39:14.390769 | 2021-03-16T16:54:43 | 2021-03-16T16:54:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,687 | h | #ifndef GRAPHICS_H
#define GRAPHICS_H
#include <iostream>
#include <string>
#include "easygl_constants.h"
using namespace std;
// Set X11 by default, if neither NO_GRAPHICS nor WIN32 are defined
#ifndef NO_GRAPHICS
#ifndef WIN32
#ifndef X11
#define X11
#endif
#endif // !WIN32
#endif // !NO_GRAPHICS
/* Graphics.h
* Originally written by Vaughn Betz (vaughn@eecg.utoronto.ca)
* Win32 port by Paul Leventis (leventi@eecg.utoronto.ca)
* Enhanced version by William Chow (chow@eecg.utoronto.ca)
* Minor updates by Guy Lemieux (lemieux@ece.ubc.ca)
* More updates by Vaughn Betz to make win32 cleaner and more robust.
* More updates and code cleanup by Long Yu Wang (longyu.wang@mail.utoronto.ca)
*/
/******* Constants and enums ******************************************/
/* Data structure below is for debugging. Lets you get a bunch
* of info about the low-level graphics state.
* xmult, ymult: world to pixel coordinate multiplier for screen
* ps_xmult, ps_ymult: world to pixel coordinate multiplier for postscript
* xleft, xright, ytop, yleft: current world coordinates of user-graphics display corners
* top_width, top_height: size (in pixels) of top-level window
*/
typedef struct {
float xmult, ymult;
float ps_xmult, ps_ymult;
float xleft, xright, ytop, ybot;
int top_width, top_height;
} t_report;
/************** ESSENTIAL FUNCTIONS ******************/
/* This is the main routine for the graphics. When event_loop is
* called, it will continue executing until the Proceed button is
* pressed.
* Whenever the graphics need to be redrawn, drawscreen will be called;
* you must pass in a function pointer to a routine you write that can
* draw the picture you want.
* You can also pass in event handlers for user input if you wish.
* act_on_mouse_button() will be called whenever the user left-clicks
* in the graphics area.
* act_on_keypress() and act_on_mousemove() will be called whenever a
* keyboard key is pressed or the mouse is moved, respectively, in the
* graphics area. You can turn keypress input and mouse_move input
* on or off using the set_mouse_move_input () and set_keypress_input ()
* functions (default for both: off).
*/
void event_loop (void (*act_on_mousebutton) (float x, float y, t_event_buttonPressed button_info),
void (*act_on_mousemove) (float x, float y),
void (*act_on_keypress) (char key_pressed),
void (*drawscreen) (void));
/* Opens up the graphics; the window will have window_name in its
* title bar and the specified background colour.
* Known bug: can't re-open graphics after closing them on Win32.
*/
void init_graphics (const char *window_name, int cindex_background);
/* Sets world coordinates of the graphics window so that the
* upper-left corner has virtual coordinate (xl, yt) and the
* bottom-right corner has virtual coordinate (xr, yb).
* Call this function before you call event_loop. Do not call it
* in your drawscreen () callback function, since it will undo any
* panning or zooming the user has done.
*/
void init_world (float xl, float yt, float xr, float yb);
/* Closes the graphics */
void close_graphics (void);
/* Changes the status bar message to msg. */
void update_message (const char *msg);
/* Creates a button on the menu bar below the button with text
* prev_button_text. The button will have text button_text,
* and when clicked will call function button_func.
* button_func is a function that accepts a void function as
* an argument; this argument is set to the drawscreen routine
* as passed into the event loop.
*/
void create_button (const char *prev_button_text , const char *button_text,
void (*button_func) (void (*drawscreen) (void)));
/* Destroys the button with the given text; i.e. removes it from
* the display.
*/
void destroy_button (const char *button_text);
/*************** PostScript Routines *****************/
/* Opens file for postscript commands and initializes it. All subsequent
* drawing commands go to this file until close_postscript is called.
* You can generate postscript output by explicitly calling
* this routine, and then calling drawscreen. More commonly you'll
* just click on the "PostScript" button though, and that button
* calls this routine and drawscreen to generate a postscript file
* that exactly matches the graphics area display on the screen.
*/
int init_postscript (const char *fname); /* Returns 1 if successful */
/* Closes file and directs output to screen again. */
void close_postscript (void);
/*************** DRAWING ROUTINES ******************/
/* Clears the screen. Should normally be the first call in your
* screen redrawing function.
*/
void clearscreen (void);
/* The following routines draw to SCREEN if disp_type = SCREEN
* and to a PostScript file if disp_type = POSTSCRIPT
*/
/* Set the current draw colour to the supplied colour index from color_types */
void setcolor (int cindex);
/* Set the color with a string instead of an enumerated constant */
void setcolor_by_name (string cname);
/* Get the current color */
int getcolor(void);
/* Sets the line style to the specified line_style */
void setlinestyle (int linestyle);
/* Sets the line width in pixels (for screen output) or points (1/72 of an inch)
* for PostScript output. A value of 0 means thinnest possible line.
*/
void setlinewidth (int linewidth);
/* Sets the font size, in points. 72 points is 1 inch high. I allow
* fonts from 1 to 24 points in size; change MAX_FONT_SIZE if you want
* bigger fonts still.
*/
void setfontsize (int pointsize);
/* Draws a line from (x1, y1) to (x2, y2) in world coordinates */
void drawline (float x1, float y1, float x2, float y2);
/* Draws a rectangle from (x1, y1) to (x2, y2) in world coordinates, using
* the current line style, colour and width.
*/
void drawrect (float x1, float y1, float x2, float y2);
/* Draws a filled rectangle with the specified corners, in world coordinates. */
void fillrect (float x1, float y1, float x2, float y2);
/* Draws a filled polygon */
void fillpoly (t_point *points, int npoints);
/* Draw or fill a circular arc or elliptical arc. Angles in degrees.
* startang is measured from positive x-axis of Window.
* A positive angextent means a counterclockwise arc; a negative
* angextent means clockwise.
*/
void drawarc (float xcen, float ycen, float rad, float startang,
float angextent);
void fillarc (float xcen, float ycen, float rad, float startang,
float angextent);
void drawellipticarc (float xc, float yc, float radx, float rady, float startang, float angextent);
void fillellipticarc (float xc, float yc, float radx, float rady, float startang, float angextent);
/* boundx specifies horizontal bounding box. If text won't fit in
* the space specified by boundx (world coordinates) the text isn't drawn.
* That avoids text going everywhere for high zoom levels.
* If you always want the text to display (even if it overwrites lots of
* stuff at high zoom levels), just specify a huge boundx.
*/
void drawtext (float xc, float yc, const char *text, float boundx);
/* Control what buttons are active (default: all enabled) and
* whether mouse movements and keypresses are sent to callback
* functions (default: disabled).
*/
void set_mouse_move_input (bool turn_on);
void set_keypress_input (bool turn_on);
void enable_or_disable_button (int ibutton, bool enabled);
/*************** ADVANCED FUNCTIONS *****************/
/* Normal users shouldn't have to use draw_message. Should only be
* useful if using non-interactive graphics and you want to redraw
* yourself because of an expose. i
*/
void draw_message (void);
/* Empties event queue. Can be useful with non-interactive graphics to make
* sure things display.
*/
void flushinput (void);
/* DRAW_NORMAL is the default mode (overwrite, also known as copy_pen).
* Can use DRAW_XOR for fast rubber-banding.
*/
enum e_draw_mode {DRAW_NORMAL = 0, DRAW_XOR};
void set_draw_mode (enum e_draw_mode draw_mode);
/* Change the text on a button.
*/
void change_button_text(const char *button_text, const char *new_button_text);
/* For debugging only. Get window size etc. */
void report_structure(t_report*);
/**************** Extra functions available only in WIN32. *******/
#ifdef WIN32
/* VB: TODO: make functions below work in X11 as well.
*/
/* MW: Draw beizer curve. Currently not used, but saving for possible use
* in the future.
*/
void win32_drawcurve(t_point *points, int npoints);
void win32_fillcurve(t_point *points, int npoints);
#endif // WIN32
#endif // GRAPHICS_H | [
"noreply@github.com"
] | CChongQ.noreply@github.com |
75bdebd49c0c3e087139bb81de40cea5a0307f38 | 635cb95f31b066700103b48f8f6ae65002d67ff4 | /include/util/server_config.h | 85f775c4720166ba9142cc97fdd7874ab1bd5f0d | [] | no_license | pesiwang/vcs | de625f522af3fe31f18104e89ae46b3818965297 | 3e69d1309f74dab4d5f47ae3232c6db6616327a0 | refs/heads/master | 2020-05-21T01:59:21.717780 | 2017-03-20T10:23:15 | 2017-03-20T10:23:15 | 84,554,713 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 943 | h | #ifndef _UTIL_SERVER_CONFIG_H
#define _UTIL_SERVER_CONFIG_H
#include <string>
#include <map>
#include "json/json.h"
class ServerConfig
{
public:
void load(const char* configFile);
int getIntValue(const std::string& key) const;
const std::string& getStrValue(const std::string& key) const;
double getDoubleValue(const std::string& key) const;
bool getBoolValue(const std::string& key) const;
void setIntValue(const std::string& key, int value);
void setStrValue(const std::string& key, const std::string& value);
void setDoubleValue(const std::string& key, double value);
void setBoolValue(const std::string& key, bool value);
private:
std::map<std::string, int> _map2Int;
std::map<std::string, std::string> _map2Str;
std::map<std::string, bool> _map2Bool;
std::map<std::string, double> _map2Double;
private:
void _travel(std::string prefix, Json::Value& root);
void _add(const std::string& key, Json::Value val);
};
#endif
| [
"wanglei6@yy.com"
] | wanglei6@yy.com |
dd6499faeaa150379a894049dd47fd8412a4c637 | 2b6263485f7b45d048387744f82198abe3230505 | /VS/Arduino.VC/Laser/Laser.cpp | 2d56602b25e2949f46c3b75dcf4a38402b894a33 | [] | no_license | unkaMoMo/CNCStepper | b7338ae368ab670b24c69b28c4d3e3f826857bd6 | 672206dc37b775dcd07a49dc926b39b6900f9a53 | refs/heads/master | 2020-04-01T00:21:36.099052 | 2018-09-23T20:41:16 | 2018-09-23T20:41:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,583 | cpp | ////////////////////////////////////////////////////////
/*
This file is part of CNCLib - A library for stepper motors.
Copyright (c) 2013-2018 Herbert Aitenbichler
CNCLib 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.
CNCLib 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.
http://www.gnu.org/licenses/
*/
////////////////////////////////////////////////////////
#include "stdafx.h"
#include <math.h>
#include "..\MsvcStepper\MsvcStepper.h"
#include "..\..\..\sketch\Laser\Laser\MyControl.h"
CSerial Serial;
static void setup();
static void loop();
static void Idle();
CMsvcStepper MyStepper;
class CStepper& Stepper = MyStepper;
int _tmain(int /* argc */, _TCHAR* /* argv */ [])
{
digitalReadEvent = [](short pin)
{
switch (pin)
{
case KILL_PIN: return KILL_PIN_ON;
case HOLD_PIN: return HIGH;
}
return DIGITALREADNOVALUE;
};
setup();
while (!CGCodeParserBase::_exit)
{
loop();
}
MyStepper.EndTest();
}
void setup()
{
MyStepper.DelayOptimization = false;
MyStepper.UseSpeedSign = true;
MyStepper.CacheSize = 50000;
MyStepper.InitTest("LaserCNC.csv");
Serial.SetIdle(Idle);
}
void loop()
{
Control.Run();
}
static void Idle()
{
MyStepper.HandleIdle();
}
| [
"h.aitenbichler@eduhi.at"
] | h.aitenbichler@eduhi.at |
021372455f89bdb63fc3f563cf1af05ef002b381 | c7bb17447090c359eb9ce240c58189bc934a19a2 | /ouzel/audio/coreaudio/CAAudioDevice.cpp | 1178c8d8f95fb2ec2347c7a8e63db688f5eae930 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | jaccen2007/ouzel | f06ee604c250d19f6ab23e4414b097ebbbd1e013 | 6981f79f6ddf5fb93d4cacf6e6357383a0cf7d2f | refs/heads/master | 2022-01-08T15:04:10.811120 | 2019-07-19T12:35:16 | 2019-07-19T12:35:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,387 | cpp | // Copyright 2015-2019 Elviss Strazdins. All rights reserved.
#include "core/Setup.h"
#if OUZEL_COMPILE_COREAUDIO
#include <system_error>
#include "CAAudioDevice.hpp"
#include "core/Engine.hpp"
#include "utils/Log.hpp"
#if TARGET_OS_IOS || TARGET_OS_TV
# include <objc/message.h>
# include <objc/NSObjCRuntime.h>
extern "C" id const AVAudioSessionCategoryAmbient;
#elif TARGET_OS_MAC
static OSStatus deviceListChanged(AudioObjectID, UInt32, const AudioObjectPropertyAddress*, void*)
{
// TODO: implement
return 0;
}
static OSStatus deviceUnplugged(AudioObjectID, UInt32, const AudioObjectPropertyAddress*, void*)
{
// TODO: implement
return noErr;
}
#endif
static OSStatus outputCallback(void* inRefCon,
AudioUnitRenderActionFlags*,
const AudioTimeStamp*,
UInt32, UInt32,
AudioBufferList* ioData)
{
ouzel::audio::coreaudio::AudioDevice* audioDevice = static_cast<ouzel::audio::coreaudio::AudioDevice*>(inRefCon);
try
{
audioDevice->outputCallback(ioData);
}
catch (const std::exception& e)
{
ouzel::engine->log(ouzel::Log::Level::Error) << e.what();
return -1;
}
return noErr;
}
namespace ouzel
{
namespace audio
{
namespace coreaudio
{
class ErrorCategory final: public std::error_category
{
public:
const char* name() const noexcept final
{
return "CoreAudio";
}
std::string message(int condition) const final
{
switch (condition)
{
case kAudio_UnimplementedError: return "kAudio_UnimplementedError";
case kAudio_FileNotFoundError: return "kAudio_FileNotFoundError";
case kAudio_FilePermissionError: return "kAudio_FilePermissionError";
case kAudio_TooManyFilesOpenError: return "kAudio_TooManyFilesOpenError";
case kAudio_BadFilePathError: return "kAudio_BadFilePathError";
case kAudio_ParamError: return "kAudio_ParamError";
case kAudio_MemFullError: return "kAudio_MemFullError";
default: return "Unknown error (" + std::to_string(condition) + ")";
}
}
};
const ErrorCategory errorCategory {};
AudioDevice::AudioDevice(uint32_t initBufferSize,
uint32_t initSampleRate,
uint16_t initChannels,
const std::function<void(uint32_t frames,
uint16_t channels,
uint32_t sampleRate,
std::vector<float>& samples)>& initDataGetter):
audio::AudioDevice(Driver::CoreAudio, initBufferSize, initSampleRate, initChannels, initDataGetter)
{
OSStatus result;
#if TARGET_OS_IOS || TARGET_OS_TV
id audioSession = reinterpret_cast<id (*)(Class, SEL)>(&objc_msgSend)(objc_getClass("AVAudioSession"), sel_getUid("sharedInstance")); // [AVAudioSession sharedInstance]
if (!reinterpret_cast<BOOL (*)(id, SEL, id, id)>(&objc_msgSend)(audioSession, sel_getUid("setCategory:error:"), AVAudioSessionCategoryAmbient, nil)) // [audioSession setCategory:AVAudioSessionCategoryAmbient error:nil]
throw std::runtime_error("Failed to set audio session category");
id currentRoute = reinterpret_cast<id (*)(id, SEL)>(&objc_msgSend)(audioSession, sel_getUid("currentRoute")); // [audioSession currentRoute]
id outputs = reinterpret_cast<id (*)(id, SEL)>(&objc_msgSend)(currentRoute, sel_getUid("outputs")); // [currentRoute outputs]
NSUInteger count = reinterpret_cast<NSUInteger (*)(id, SEL)>(&objc_msgSend)(outputs, sel_getUid("count")); // [outputs count]
NSUInteger maxChannelCount = 0;
for (NSUInteger outputIndex = 0; outputIndex < count; ++outputIndex)
{
id output = reinterpret_cast<id (*)(id, SEL, NSUInteger)>(&objc_msgSend)(outputs, sel_getUid("objectAtIndex:"), outputIndex); // [outputs objectAtIndex:outputIndex]
id channels = reinterpret_cast<id (*)(id, SEL)>(&objc_msgSend)(output, sel_getUid("channels")); // [output channels]
NSUInteger channelCount = reinterpret_cast<NSUInteger (*)(id, SEL)>(&objc_msgSend)(channels, sel_getUid("count")); // [channels count]
if (channelCount > maxChannelCount)
maxChannelCount = channelCount;
}
if (channels > maxChannelCount)
channels = static_cast<uint16_t>(maxChannelCount);
#elif TARGET_OS_MAC
static constexpr AudioObjectPropertyAddress deviceListAddress = {
kAudioHardwarePropertyDevices,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster
};
if ((result = AudioObjectAddPropertyListener(kAudioObjectSystemObject, &deviceListAddress, deviceListChanged, this)) != noErr)
throw std::system_error(result, errorCategory, "Failed to add CoreAudio property listener");
static constexpr AudioObjectPropertyAddress defaultDeviceAddress = {
kAudioHardwarePropertyDefaultOutputDevice,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster
};
UInt32 size = sizeof(AudioDeviceID);
if ((result = AudioObjectGetPropertyData(kAudioObjectSystemObject, &defaultDeviceAddress,
0, nullptr, &size, &deviceId)) != noErr)
throw std::system_error(result, errorCategory, "Failed to get CoreAudio output device");
static constexpr AudioObjectPropertyAddress aliveAddress = {
kAudioDevicePropertyDeviceIsAlive,
kAudioDevicePropertyScopeOutput,
kAudioObjectPropertyElementMaster
};
UInt32 alive = 0;
size = sizeof(alive);
if ((result = AudioObjectGetPropertyData(deviceId, &aliveAddress, 0, nullptr, &size, &alive)) != noErr)
throw std::system_error(result, errorCategory, "Failed to get CoreAudio device status");
if (!alive)
throw std::system_error(result, errorCategory, "Requested CoreAudio device is not alive");
static constexpr AudioObjectPropertyAddress hogModeAddress = {
kAudioDevicePropertyHogMode,
kAudioDevicePropertyScopeOutput,
kAudioObjectPropertyElementMaster
};
pid_t pid = 0;
size = sizeof(pid);
if ((result = AudioObjectGetPropertyData(deviceId, &hogModeAddress, 0, nullptr, &size, &pid)) != noErr)
throw std::system_error(result, errorCategory, "Failed to check if CoreAudio device is in hog mode");
if (pid != -1)
throw std::runtime_error("Requested CoreAudio device is being hogged");
static constexpr AudioObjectPropertyAddress nameAddress = {
kAudioObjectPropertyName,
kAudioDevicePropertyScopeOutput,
kAudioObjectPropertyElementMaster
};
CFStringRef tempStringRef = nullptr;
size = sizeof(CFStringRef);
if ((result = AudioObjectGetPropertyData(deviceId, &nameAddress,
0, nullptr, &size, &tempStringRef)) != noErr)
throw std::system_error(result, errorCategory, "Failed to get CoreAudio device name");
if (tempStringRef)
{
std::string name;
if (const char* deviceName = CFStringGetCStringPtr(tempStringRef, kCFStringEncodingUTF8))
name = deviceName;
else
{
CFIndex stringLength = CFStringGetLength(tempStringRef);
std::vector<char> temp(static_cast<size_t>(CFStringGetMaximumSizeForEncoding(stringLength, kCFStringEncodingUTF8)) + 1);
if (CFStringGetCString(tempStringRef, temp.data(), static_cast<CFIndex>(temp.size()), kCFStringEncodingUTF8))
for (auto i = temp.begin(); i != temp.end() && *i; ++i)
name.push_back(*i);
}
CFRelease(tempStringRef);
engine->log(Log::Level::Info) << "Using " << name << " for audio";
}
#endif
AudioComponentDescription desc;
desc.componentType = kAudioUnitType_Output;
#if TARGET_OS_IOS || TARGET_OS_TV
desc.componentSubType = kAudioUnitSubType_RemoteIO;
#elif TARGET_OS_MAC
desc.componentSubType = kAudioUnitSubType_DefaultOutput;
#endif
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
desc.componentFlags = 0;
desc.componentFlagsMask = 0;
audioComponent = AudioComponentFindNext(nullptr, &desc);
if (!audioComponent)
throw std::runtime_error("Failed to find requested CoreAudio component");
#if TARGET_OS_MAC && !TARGET_OS_IOS && !TARGET_OS_TV
if ((result = AudioObjectAddPropertyListener(deviceId, &aliveAddress, deviceUnplugged, this)) != noErr)
throw std::system_error(result, errorCategory, "Failed to add CoreAudio property listener");
#endif
if ((result = AudioComponentInstanceNew(audioComponent, &audioUnit)) != noErr)
throw std::system_error(result, errorCategory, "Failed to create CoreAudio component instance");
#if TARGET_OS_MAC && !TARGET_OS_IOS && !TARGET_OS_TV
if ((result = AudioUnitSetProperty(audioUnit,
kAudioOutputUnitProperty_CurrentDevice,
kAudioUnitScope_Global, 0,
&deviceId,
sizeof(AudioDeviceID))) != noErr)
throw std::system_error(result, errorCategory, "Failed to set CoreAudio unit property");
#endif
constexpr AudioUnitElement bus = 0;
AudioStreamBasicDescription streamDescription;
streamDescription.mSampleRate = sampleRate;
streamDescription.mFormatID = kAudioFormatLinearPCM;
streamDescription.mFormatFlags = kLinearPCMFormatFlagIsFloat;
streamDescription.mChannelsPerFrame = channels;
streamDescription.mFramesPerPacket = 1;
streamDescription.mBitsPerChannel = sizeof(float) * 8;
streamDescription.mBytesPerFrame = streamDescription.mBitsPerChannel * streamDescription.mChannelsPerFrame / 8;
streamDescription.mBytesPerPacket = streamDescription.mBytesPerFrame * streamDescription.mFramesPerPacket;
streamDescription.mReserved = 0;
sampleFormat = SampleFormat::Float32;
sampleSize = sizeof(float);
if ((result = AudioUnitSetProperty(audioUnit,
kAudioUnitProperty_StreamFormat,
kAudioUnitScope_Input, bus, &streamDescription, sizeof(streamDescription))) != noErr)
{
engine->log(Log::Level::Warning) << "Failed to set CoreAudio unit stream format to float, error: " << result;
streamDescription.mFormatFlags = kLinearPCMFormatFlagIsPacked | kAudioFormatFlagIsSignedInteger;
streamDescription.mBitsPerChannel = sizeof(int16_t) * 8;
streamDescription.mBytesPerFrame = streamDescription.mBitsPerChannel * streamDescription.mChannelsPerFrame / 8;
streamDescription.mBytesPerPacket = streamDescription.mBytesPerFrame * streamDescription.mFramesPerPacket;
if ((result = AudioUnitSetProperty(audioUnit,
kAudioUnitProperty_StreamFormat,
kAudioUnitScope_Input, bus, &streamDescription, sizeof(streamDescription))) != noErr)
throw std::system_error(result, errorCategory, "Failed to set CoreAudio unit stream format");
sampleFormat = SampleFormat::SInt16;
sampleSize = sizeof(int16_t);
}
AURenderCallbackStruct callback;
callback.inputProc = ::outputCallback;
callback.inputProcRefCon = this;
if ((result = AudioUnitSetProperty(audioUnit,
kAudioUnitProperty_SetRenderCallback,
kAudioUnitScope_Input, bus, &callback, sizeof(callback))) != noErr)
throw std::system_error(result, errorCategory, "Failed to set CoreAudio unit output callback");
#if TARGET_OS_MAC && !TARGET_OS_IOS && !TARGET_OS_TV
UInt32 inIOBufferFrameSize = 512;
if ((result = AudioUnitSetProperty(audioUnit,
kAudioDevicePropertyBufferFrameSize,
kAudioUnitScope_Global,
0,
&inIOBufferFrameSize, sizeof(UInt32))) != noErr)
throw std::system_error(result, errorCategory, "Failed to set CoreAudio buffer size");
#endif
if ((result = AudioUnitInitialize(audioUnit)) != noErr)
throw std::system_error(result, errorCategory, "Failed to initialize CoreAudio unit");
}
AudioDevice::~AudioDevice()
{
if (audioUnit)
{
AudioOutputUnitStop(audioUnit);
AURenderCallbackStruct callback;
callback.inputProc = nullptr;
callback.inputProcRefCon = nullptr;
constexpr AudioUnitElement bus = 0;
AudioUnitSetProperty(audioUnit,
kAudioUnitProperty_SetRenderCallback,
kAudioUnitScope_Input, bus, &callback, sizeof(callback));
AudioComponentInstanceDispose(audioUnit);
}
#if TARGET_OS_MAC && !TARGET_OS_IOS && !TARGET_OS_TV
static constexpr AudioObjectPropertyAddress deviceListAddress = {
kAudioHardwarePropertyDevices,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster
};
AudioObjectRemovePropertyListener(kAudioObjectSystemObject, &deviceListAddress, deviceListChanged, this);
if (deviceId)
{
static constexpr AudioObjectPropertyAddress aliveAddress = {
kAudioDevicePropertyDeviceIsAlive,
kAudioDevicePropertyScopeOutput,
kAudioObjectPropertyElementMaster
};
AudioObjectRemovePropertyListener(deviceId, &aliveAddress, deviceUnplugged, this);
}
#endif
}
void AudioDevice::start()
{
OSStatus result;
if ((result = AudioOutputUnitStart(audioUnit)) != noErr)
throw std::system_error(result, errorCategory, "Failed to start CoreAudio output unit");
}
void AudioDevice::stop()
{
OSStatus result;
if ((result = AudioOutputUnitStop(audioUnit)) != noErr)
throw std::system_error(result, errorCategory, "Failed to stop CoreAudio output unit");
}
void AudioDevice::outputCallback(AudioBufferList* ioData)
{
for (UInt32 i = 0; i < ioData->mNumberBuffers; ++i)
{
AudioBuffer& buffer = ioData->mBuffers[i];
getData(buffer.mDataByteSize / (sampleSize * channels), data);
std::copy(data.begin(), data.end(), static_cast<uint8_t*>(buffer.mData));
}
}
} // namespace coreaudio
} // namespace audio
} // namespace ouzel
#endif
| [
"elviss@elviss.lv"
] | elviss@elviss.lv |
282a58cc0d3e6ad9a2793d58dbc5cb824ec86f2b | 6c5d618691d02faf1c1dafc5d27397fbc4d65df4 | /ch7/Exercise/uva11214/main.cpp | 08fcb42ad09b26e3cbc8b6d8d9fe666b2f7ebb26 | [] | no_license | zenmiao7/AOAPC | 1df23232d5f2e371bb74f4ba00fed70fad6fe902 | 0940159c017b77402252856f35d74fb7a7cecff7 | refs/heads/master | 2023-06-06T23:53:50.755520 | 2018-08-09T16:09:49 | 2018-08-09T16:09:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,454 | cpp | #include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
int n, m, kase = 0;
int vis[4][30]; //行、列,主对角线、副对角线
int map[10][10];
bool in(){
cin >> n;
if(n == 0) return false;
cin >> m;
char ch;
memset(map,0, sizeof(map));
for(int i=0;i < n;++i)
for(int j=0;j < m;++j){
cin >> ch;
if(ch == 'X')
map[i][j] = 1;
}
return true;
}
bool judge(){
for(int i=0;i < n;++i){
for(int j=0;j < m;++j){
if(map[i][j] == 1 && !vis[0][i] && !vis[1][j] && !vis[2][i+j] && !vis[3][n+j-i]){
return false;
}
}
}
return true;
}
bool DFS(int d, int cur, int maxd){
if(d == maxd){
return judge();
}
int ok = 0;
for(;cur < n *m;++cur){
int r = cur / m, c = cur % m;
int ta = vis[0][r], tb = vis[1][c], tc = vis[2][r+c], td = vis[3][n+c-r];
vis[0][r] = 1; vis[1][c] = 1; vis[2][r+c] = 1; vis[3][n+c-r] = 1;
if(DFS(d+1,cur,maxd)){ok = 1;break;}
vis[0][r] = ta; vis[1][c] = tb; vis[2][r+c] = tc; vis[3][n+c-r] = td;
}
return ok;
}
int main() {
while(in()){
for(int maxd=0;;++maxd){
memset(vis,0,sizeof(vis));
if(DFS(0,0,maxd)){
printf("Case %d: %d\n",++kase,maxd);
break;
}
}
}
return 0;
} | [
"blacksmith96@yahoo.com"
] | blacksmith96@yahoo.com |
c61f12db94c2a5cdb42a1a0cd4a18f79a3d7ec22 | 083b3f5b0d23c269c6a9ff1ea413e70fb799a497 | /Leetcode Challenge/08_August_2020/C++/Week 4/2_Stream of Charcaters.cpp | d4ee526db9e3994d111ebd456350a66c21af8cb4 | [] | no_license | HectorIGH/Competitive-Programming | b2e02dff140d9ebb06c646f7be0b53ea0afe90c9 | 467058c63e8a7e76805feebe3020bac4d20516a6 | refs/heads/master | 2022-12-31T18:32:46.824626 | 2020-10-16T20:38:33 | 2020-10-16T20:38:33 | 279,733,136 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,800 | cpp | //Implement the StreamChecker class as follows:
//
//StreamChecker(words): Constructor, init the data structure with the given words.
//query(letter): returns true if and only if for some k >= 1, the last k characters queried (in order from oldest to newest, including this letter just queried) spell one of the words in the given list.
//
//
//Example:
//
//StreamChecker streamChecker = new StreamChecker(["cd","f","kl"]); // init the dictionary.
//streamChecker.query('a'); // return false
//streamChecker.query('b'); // return false
//streamChecker.query('c'); // return false
//streamChecker.query('d'); // return true, because 'cd' is in the wordlist
//streamChecker.query('e'); // return false
//streamChecker.query('f'); // return true, because 'f' is in the wordlist
//streamChecker.query('g'); // return false
//streamChecker.query('h'); // return false
//streamChecker.query('i'); // return false
//streamChecker.query('j'); // return false
//streamChecker.query('k'); // return false
//streamChecker.query('l'); // return true, because 'kl' is in the wordlist
//
//
//Note:
//
//1 <= words.length <= 2000
//1 <= words[i].length <= 2000
//Words will only consist of lowercase English letters.
//Queries will only consist of lowercase English letters.
//The number of queries is at most 40000.
// Hide Hint #1
//Put the words into a trie, and manage a set of pointers within that trie.
class TrieNode {
public:
bool endNode;
unordered_map<char, TrieNode*> children;
TrieNode() {
endNode = false;
}
};
class StreamChecker {
public:
TrieNode* root;
string s = "";
StreamChecker(vector<string>& words) {
root = new TrieNode();
for(string word: words) {
TrieNode* current = root;
reverse(word.begin(), word.end());
for(char l : word) {
if(current->children.count(l)) {
current = current->children[l];
} else {
current->children[l] = new TrieNode();
current = current->children[l];
}
}
current->endNode = true;
}
}
bool query(char letter) {
s += letter;
TrieNode* node = root;
for(int i = s.size() - 1; i >= 0 && node != nullptr; i--) {
char c = s[i];
node = node->children[c];
if (node != nullptr && node->endNode) {
return true;
}
}
return false;
}
};
/**
* Your StreamChecker object will be instantiated and called as such:
* StreamChecker* obj = new StreamChecker(words);
* bool param_1 = obj->query(letter);
*/ | [
"HectorIGH@users.noreply.github.com"
] | HectorIGH@users.noreply.github.com |
6a3ef1fab17c2fbce87daae0904b2065b90d823f | 8020ba999df6a02f547654ad3a64fddee8671941 | /mq135_AirQuality/mq135_AirQuality.ino | 64efc872cdc2fd015c8165fc4ff8cef4196db5db | [] | no_license | MautassimAshrafAli/Pollution | dd5be5382954c0cb21977bdb28a8389825af82af | 162a2d1c8f225aa5411c7666214946d1f6bbc756 | refs/heads/master | 2023-03-07T18:10:00.876167 | 2021-02-16T02:56:56 | 2021-02-16T02:56:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,342 | ino | /*
* Atmospheric CO Level..............400ppm
* Average indoor co.............350-450ppm
* Maxiumum acceptable co...........1000ppm
* Dangerous co levels.............>2000ppm
* to convert ppm to % -----> ppm / 10000
*/
#include <LiquidCrystal.h> //Header file for LCD
const int rs = 13, en = 12, d4 = 11, d5 = 10, d6 = 9, d7 = 8;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
int buz = 5; //buzzer connected to pin 5
int led = 6; //led connected to pin 6
const int MQ5sensor = A0; //output of mq5 connected to A0 pin of Arduino
const int MQ135sensor = A1; //output of mq135 connected to A1 pin of Arduino
word ppm1,ppm2;
void setup() {
pinMode (led,OUTPUT); // led is connected as output from Arduino
Serial.begin (9600); //begin serial communication with baud rate of 9600
lcd.clear(); // clear lcd
// set up the LCD's number of columns and rows:
pinMode(6,OUTPUT);
lcd.begin (16,2); // consider 16,2 lcd
}
void loop() {
ppm1 = analogRead(MQ5sensor); //read MQ5 analog outputs at a0 and store it in ppm
ppm2 = analogRead(MQ135sensor);
Serial.print("Air Quality: "); //print message in serail monitor
Serial.println(ppm2); //print value of ppm in serial monitor
Serial.print("Gas Saturat: "); //print message in serail monitor
Serial.println(ppm1); //print value of ppm in serial monitor
lcd.setCursor(0,0); // set cursor of lcd to 0st row and 0st column
lcd.print("Air Quality: "); // print message on lcd0
lcd.print(ppm2); // print value of MQ135
lcd.setCursor(0,1);
lcd.print("Gas Saturat: "); // print message on lcd0
lcd.print(ppm1); // print value of MQ5
if (ppm1 > 2000) // check is ppm is greater than threshold or not
{
lcd.setCursor(1,1); //jump here if ppm is greater than threshold
lcd.print("AQ Level HIGH");
tone(led,1000,200); //blink led with turn on time 1000mS, turn off time 200mS
digitalWrite(buz,HIGH); //Turn ON Buzzer
}
else
{
digitalWrite(led,LOW); //jump here if ppm is not greater than threshold and turn off LED
digitalWrite(buz,LOW); //Turn off Buzzer
lcd.setCursor(1,1);
lcd.print ("AQ Level Good");
}
delay (500);
}
| [
"mutassimashraf8@gmail.com"
] | mutassimashraf8@gmail.com |
2e0859280f39f0836d14b9c22393ab2dafeafc03 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_old_hunk_4538.cpp | 6e64fefc715fbaf86bca6185df95c469779e47e0 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 557 | cpp | h2_proxy_request_done *done)
{
if (!h2_proxy_ihash_empty(session->streams)) {
cleanup_iter_ctx ctx;
ctx.session = session;
ctx.done = done;
ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, session->c, APLOGNO(03366)
"h2_proxy_session(%s): terminated, %d streams unfinished",
session->id, (int)h2_proxy_ihash_count(session->streams));
h2_proxy_ihash_iter(session->streams, done_iter, &ctx);
h2_proxy_ihash_clear(session->streams);
}
}
| [
"993273596@qq.com"
] | 993273596@qq.com |
3f62639ab3a914e0ec6b1d94c687877a0f484536 | fcdea24e6466d4ec8d7798555358a9af8acf9b35 | /Engine/mrayOIS/mrayOISInputManager.cpp | 160c6d3869cbf665c8d25319e1a4486629c91a83 | [] | no_license | yingzhang536/mrayy-Game-Engine | 6634afecefcb79c2117cecf3e4e635d3089c9590 | 6b6fcbab8674a6169e26f0f20356d0708620b828 | refs/heads/master | 2021-01-17T07:59:30.135446 | 2014-11-30T16:10:54 | 2014-11-30T16:10:54 | 27,630,181 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,977 | cpp |
#include "stdafx.h"
#include "mrayOISInputManager.h"
#include <EventMemoryManager.h>
#include <MouseEvent.h>
#include <KeyboardEvent.h>
#include <JoystickEvent.h>
#include <EventQueue.h>
#include <TraceManager.h>
#include <StringConverter.h>
#include <LogManager.h>
#include <sstream>
#include <CJoysticController.h>
#include <CMouseController.h>
#include <CKeyboardController.h>
#include <RenderWindow.h>
namespace mray{
class OISEventHandler:public OIS::MouseListener,public OIS::JoyStickListener,public OIS::KeyListener
{
mrayOISInputManager*m_mngr;
public:
OISEventHandler(mrayOISInputManager*mngr){
m_mngr=mngr;
}
bool keyPressed( const OIS::KeyEvent &arg ) {
GCPtr<KeyboardEvent>e=EventMemoryManager::getInstance().createEvent(ET_Keyboard);
e->press=true;
e->shift=m_mngr->getOISKeyboard()->isModifierDown(OIS::Keyboard::Shift);//(arg.key==OIS::KC_LSHIFT || arg.key==OIS::KC_RSHIFT);
if(e->shift){
e->lshift=(arg.key==OIS::KC_LSHIFT );
}
e->alt=m_mngr->getOISKeyboard()->isModifierDown(OIS::Keyboard::Alt);//(arg.key==OIS::KC_LMENU || arg.key==OIS::KC_RMENU);
if(e->alt){
e->lalt=(arg.key==OIS::KC_LMENU );
}
e->ctrl=m_mngr->getOISKeyboard()->isModifierDown(OIS::Keyboard::Ctrl);//(arg.key==OIS::KC_LCONTROL || arg.key==OIS::KC_RCONTROL);
if(e->ctrl){
e->lctrl=(arg.key==OIS::KC_LCONTROL );
}
// ToAscii(wParam,lParam,keys,&keyAsc,0);
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
e->Char=( mchar)arg.text;
e->key=(EKEY_CODE)arg.key;
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool keyReleased( const OIS::KeyEvent &arg ) {
GCPtr<KeyboardEvent>e=EventMemoryManager::getInstance().createEvent(ET_Keyboard);
e->press=false;
e->shift=(arg.key==OIS::KC_LSHIFT || arg.key==OIS::KC_RSHIFT);
if(e->shift){
e->lshift=(arg.key==OIS::KC_LSHIFT );
}
e->alt=(arg.key==OIS::KC_LMENU || arg.key==OIS::KC_RMENU);
if(e->alt){
e->lalt=(arg.key==OIS::KC_LMENU );
}
e->ctrl=(arg.key==OIS::KC_LCONTROL || arg.key==OIS::KC_RCONTROL);
if(e->ctrl){
e->lctrl=(arg.key==OIS::KC_LCONTROL );
}
// ToAscii(wParam,lParam,keys,&keyAsc,0);
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
e->Char=( mchar)arg.text;
e->key=(EKEY_CODE)arg.key;
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool mouseMoved( const OIS::MouseEvent &arg ) {
GCPtr<MouseEvent>e=EventMemoryManager::getInstance().createEvent(ET_Mouse);
e->event=MET_MOVED;
const OIS::MouseState& s = arg.state;
e->pos.set(s.X.abs,s.Y.abs);
e->rel.set(s.X.rel,s.Y.rel);
e->MouseWheel=s.Z.abs;
e->MouseWheelRel=s.Z.rel;
e->vpSize.set(s.width,s.height);
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool mousePressed( const OIS::MouseEvent &arg, OIS::MouseButtonID id ) {
GCPtr<MouseEvent>e=EventMemoryManager::getInstance().createEvent(ET_Mouse);
switch(id){
case OIS::MB_Left:
e->event=MET_LEFTDOWN;
break;
case OIS::MB_Right:
e->event=MET_RIGHTDOWN;
break;
case OIS::MB_Middle:
e->event=MET_MIDDLEDOWN;
break;
}
const OIS::MouseState& s = arg.state;
e->pos.set(s.X.abs,s.Y.abs);
e->rel.set(s.X.rel,s.Y.rel);
e->MouseWheel=s.Z.abs;
e->MouseWheelRel=s.Z.rel;
e->vpSize.set(s.width,s.height);
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool mouseReleased( const OIS::MouseEvent &arg, OIS::MouseButtonID id ) {
GCPtr<MouseEvent>e=EventMemoryManager::getInstance().createEvent(ET_Mouse);
switch(id){
case OIS::MB_Left:
e->event=MET_LEFTUP;
break;
case OIS::MB_Right:
e->event=MET_RIGHTUP;
break;
case OIS::MB_Middle:
e->event=MET_MIDDLEUP;
break;
}
const OIS::MouseState& s = arg.state;
e->pos.set(s.X.abs,s.Y.abs);
e->rel.set(s.X.rel,s.Y.rel);
e->MouseWheel=s.Z.abs;
e->MouseWheelRel=s.Z.rel;
e->vpSize.set(s.width,s.height);
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool buttonPressed( const OIS::JoyStickEvent &arg, int button ) {
GCPtr<JoystickEvent>e=EventMemoryManager::getInstance().createEvent(ET_Joystick);
e->event=JET_BUTTON_PRESSED;
e->button=button;
e->id=m_mngr->getCurrentCaptureJoystick();
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool buttonReleased( const OIS::JoyStickEvent &arg, int button ) {
GCPtr<JoystickEvent>e=EventMemoryManager::getInstance().createEvent(ET_Joystick);
e->event=JET_BUTTON_RELEASED;
e->button=button;
e->id=m_mngr->getCurrentCaptureJoystick();
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool axisMoved( const OIS::JoyStickEvent &arg, int axis )
{
GCPtr<JoystickEvent>e=EventMemoryManager::getInstance().createEvent(ET_Joystick);
e->event=JET_AXIS_MOVED;
OIS::Axis a= arg.state.mAxes[axis];
//if(a.abs>2500 || a.abs<-2500)
e->axis.abs=(a.abs/32768.0f);
// else
// e->axis.abs=0;
e->axis.rel=a.rel;
e->axis.absOnly=a.absOnly;
e->axisIndex=axis;
e->id=m_mngr->getCurrentCaptureJoystick();
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool povMoved( const OIS::JoyStickEvent &arg, int pov )
{
GCPtr<JoystickEvent>e=EventMemoryManager::getInstance().createEvent(ET_Joystick);
e->event=JET_AXIS_MOVED;
OIS::Pov p= arg.state.mPOV[pov];
e->pov.direction=p.direction;
e->povIndex=pov;
e->id=m_mngr->getCurrentCaptureJoystick();
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
bool vector3Moved( const OIS::JoyStickEvent &arg, int index)
{
GCPtr<JoystickEvent>e=EventMemoryManager::getInstance().createEvent(ET_Joystick);
e->event=JET_AXIS_MOVED;
OIS::Vector3 v= arg.state.mVectors[index];
e->vector.x=v.x;
e->vector.y=v.y;
e->vector.z=v.z;
e->vectorIndex=index;
e->id=m_mngr->getCurrentCaptureJoystick();
e->SetOwnerRenderWindow(m_mngr->GetRenderWindow());
if(EventQueue::isExist())
EventQueue::getInstance().pushEvent(e);
return true;
}
};
mrayOISInputManager::mrayOISInputManager(InputCreationPack&pack){
traceFunction(eEngine);
m_currentJoystick=0;
OIS::ParamList pl;
m_renderWindow=pack.Wnd;
if(!m_renderWindow)
gLogManager.log("mrayOISInputManager() - Fatal Error: Trying to create InputManager without window",ELL_ERROR);
m_renderWindow->SetInputManager(this);
m_mouse=0;
m_keyboard=0;
gLogManager.startSection(mT("OIS Input Manager"));
std::ostringstream wnd;
size_t hWnd;
m_renderWindow->GetCustomParam("WINDOW",&hWnd);
wnd << (size_t)hWnd;
pl.insert(std::make_pair( std::string("WINDOW"), wnd.str() ));
if(pack.createMouse){
pl.insert(std::make_pair(std::string("w32_mouse"), std::string("DISCL_FOREGROUND" )));
if(pack.exclusiveMouse)
pl.insert(std::make_pair(std::string("w32_mouse"), std::string("DISCL_EXCLUSIVE")));
else
pl.insert(std::make_pair(std::string("w32_mouse"), std::string("DISCL_NONEXCLUSIVE")));
}
if(pack.createKeyboard){
pl.insert(std::make_pair(std::string("w32_keyboard"), std::string("DISCL_FOREGROUND" )));
if(pack.exclusiveKeyboard)
pl.insert(std::make_pair(std::string("w32_keyboard"), std::string("DISCL_EXCLUSIVE")));
else
pl.insert(std::make_pair(std::string("w32_keyboard"), std::string("DISCL_NONEXCLUSIVE")));
}
if(pack.createJoystic){
pl.insert(std::make_pair(std::string("w32_joystick"), std::string("DISCL_FOREGROUND" )));
if(pack.exclusiveJoystic)
pl.insert(std::make_pair(std::string("w32_joystick"), std::string("DISCL_EXCLUSIVE")));
else
pl.insert(std::make_pair(std::string("w32_joystick"), std::string("DISCL_NONEXCLUSIVE")));
}
try
{
m_inputManagerOIS = OIS::InputManager::createInputSystem(pl);
m_inputManagerOIS->enableAddOnFactory(OIS::InputManager::AddOn_All);
m_oisHandler=new OISEventHandler(this);
unsigned int v = m_inputManagerOIS->getVersionNumber();
core::string str= mT("OIS Version: ") ;
str+=core::StringConverter::toString((int)(v>>16 ));
str+= mT(".") ;
str+= core::StringConverter::toString((int)((v>>8) & 0x000000FF));
str+= mT(".") ;
str+= core::StringConverter::toString((int)(v & 0x000000FF));
gLogManager.log(mT("Verion Name:")+core::StringConverter::toString(m_inputManagerOIS->getVersionName().c_str()),ELL_INFO);
gLogManager.log(str.c_str(),ELL_INFO);
m_mouse=new controllers::CMouseController();
m_keyboard=new controllers::CKeyboardController();
if(pack.createMouse){
m_mouseOIS = (OIS::Mouse*)m_inputManagerOIS->createInputObject( OIS::OISMouse, pack.bufferedMouse );
m_mouseOIS->setEventCallback( (OIS::MouseListener*)m_oisHandler );
const OIS::MouseState &ms = m_mouseOIS->getMouseState();
ms.width = pack.WinSize.x;
ms.height = pack.WinSize.y;
}
if(pack.createKeyboard){
m_keyboardOIS = (OIS::Keyboard*)m_inputManagerOIS->createInputObject( OIS::OISKeyboard, pack.bufferedKeyboard );
m_keyboardOIS->setEventCallback( (OIS::KeyListener*)m_oisHandler );
}
if(pack.createJoystic){
int numSticks = m_inputManagerOIS->getNumberOfDevices(OIS::OISJoyStick);
m_joysticsOIS.resize(numSticks);
m_joystics.resize(numSticks);
for( int i = 0; i < numSticks; ++i )
{
m_joysticsOIS[i] = (OIS::JoyStick*)m_inputManagerOIS->createInputObject( OIS::OISJoyStick, pack.bufferedJoystic );
m_joysticsOIS[i]->setEventCallback( (OIS::JoyStickListener*)m_oisHandler );
controllers::CJoysticController*js = new controllers::CJoysticController();
js->m_buttons.resize(m_joysticsOIS[i]->getJoyStickState().mButtons.size());
js->m_Axis.resize(m_joysticsOIS[i]->getJoyStickState().mAxes.size());
js->m_Vectors.resize(m_joysticsOIS[i]->getJoyStickState().mVectors.size());
m_joystics[i]=js;
m_joystics[i]->reset();
}
}
}
catch (std::exception& e)
{
core::string w;
core::char_to_string(e.what(),w);
gLogManager.log(w,ELL_ERROR);
}
if(EventQueue::isExist()){
std::set<uint> eventSet;
eventSet.insert(ET_ResizeEvent.ID());
eventSet.insert(ET_Mouse.ID());
eventSet.insert(ET_Keyboard.ID());
eventSet.insert(ET_Joystick.ID());
EventQueue::getInstance().addEventHandler(this,eventSet);
}
gLogManager.endSection(1);
gLogManager.flush();
}
mrayOISInputManager::~mrayOISInputManager(){
traceFunction(eEngine);
if(m_renderWindow)
m_renderWindow->SetInputManager(0);
if(EventQueue::isExist()){
EventQueue::getInstance().removeEventHandler(this);
}
if (m_mouse)
delete m_mouse;
if (m_keyboard)
delete m_keyboard;
for (int i = 0; i < m_joystics.size(); ++i)
delete m_joystics[i];
m_joystics.clear();
delete m_oisHandler;
if(!m_inputManagerOIS)
return;
if(m_mouseOIS){
m_inputManagerOIS->destroyInputObject(m_mouseOIS);
m_mouseOIS=0;
}
if(m_keyboardOIS){
m_inputManagerOIS->destroyInputObject(m_keyboardOIS);
m_keyboardOIS=0;
}
for(int i=0;i<m_joysticsOIS.size();++i){
m_inputManagerOIS->destroyInputObject(m_joysticsOIS[i]);
}
m_joysticsOIS.clear();
OIS::InputManager::destroyInputSystem(m_inputManagerOIS);
m_inputManagerOIS=0;
}
OIS::Mouse* mrayOISInputManager::getOISMouse(){
return m_mouseOIS;
}
OIS::Keyboard* mrayOISInputManager::getOISKeyboard(){
return m_keyboardOIS;
}
OIS::JoyStick* mrayOISInputManager::getOISJoystick(int i){
if(i>=m_joystics.size())return 0;
return m_joysticsOIS[i];
}
int mrayOISInputManager::getCurrentCaptureJoystick()
{
return m_currentJoystick;
}
controllers::IMouseController* mrayOISInputManager::getMouse(){
return m_mouse;
}
controllers::IKeyboardController* mrayOISInputManager::getKeyboard(){
return m_keyboard;
}
controllers::IJoysticController* mrayOISInputManager::getJoystick(int i){
if(i>=m_joystics.size())return 0;
return m_joystics[i];
}
int mrayOISInputManager::getNumberOfJoysticks(){
return m_joystics.size();
}
void mrayOISInputManager::onEvent(Event*event){
if(event->getType()==ET_Joystick)
{
JoystickEvent*e=dynamic_cast<JoystickEvent*>(event);
switch(e->event){
case JET_BUTTON_PRESSED:
m_joystics[e->id]->setButtonState(e->button,true);
break;
case JET_BUTTON_RELEASED:
m_joystics[e->id]->setButtonState(e->button,false);
break;
case JET_AXIS_MOVED:
m_joystics[e->id]->setAxisState(e->axisIndex,e->axis);
break;
case JET_POV_MOVED:
m_joystics[e->id]->setPovState(e->povIndex,e->pov);
break;
case JET_VECTOR3_MOVED:
m_joystics[e->id]->setVectorState(e->vectorIndex,e->vector);
break;
}
}else if(event->getType()== ET_Mouse)
{
MouseEvent*e=dynamic_cast<MouseEvent*>(event);
math::vector3di newPos(e->pos.x,e->pos.y,e->MouseWheel);
m_mouse->setPos(newPos);
switch(e->event){
case MET_LEFTDOWN:
m_mouse->setPressed(controllers::EMB_Left,true);
break;
case MET_LEFTUP:
m_mouse->setPressed(controllers::EMB_Left,false);
break;
case MET_RIGHTDOWN:
m_mouse->setPressed(controllers::EMB_Right,true);
break;
case MET_RIGHTUP:
m_mouse->setPressed(controllers::EMB_Right,false);
break;
case MET_MIDDLEDOWN:
m_mouse->setPressed(controllers::EMB_Middle,true);
break;
case MET_MIDDLEUP:
m_mouse->setPressed(controllers::EMB_Middle,false);
break;
}
}
else if(event->getType()==ET_Keyboard)
{
KeyboardEvent*e=dynamic_cast<KeyboardEvent*>(event);
m_keyboard->setAltState(e->alt,e->lalt);
m_keyboard->setCtrlState(e->ctrl,e->lctrl);
m_keyboard->setShiftState(e->shift,e->lshift);
m_keyboard->setKeyState(e->key,e->Char,e->press);
}
else if(event->getType()==ET_ResizeEvent)
{
OnWindowSizeChange(m_renderWindow->GetSize().x,m_renderWindow->GetSize().y);
}
}
void mrayOISInputManager::capture(){
if(m_mouseOIS){
m_mouse->setDPos(0);
m_mouseOIS->capture();
}
if(m_keyboardOIS){
m_keyboardOIS->capture();
}
for(m_currentJoystick=0;m_currentJoystick<m_joysticsOIS.size();m_currentJoystick++){
m_joysticsOIS[m_currentJoystick]->capture();
}
}
void mrayOISInputManager::OnWindowSizeChange(int x,int y)
{
if(m_mouseOIS){
m_mouseOIS->getMouseState().width=x;
m_mouseOIS->getMouseState().height=y;
}
}
} | [
"mrayyamen@gmail.com"
] | mrayyamen@gmail.com |
7b8cb9d30e722b6a2c24f4dc24c5695528aa6de8 | adbca08eb9f4f8a96968817a07611dae010777b4 | /DSPX_engine.h | defb8241c9a19523ad6c40d0d3da707ec08aa8c1 | [
"MIT"
] | permissive | marcoStocchi/DSPX_Fast_wavelet_transform_assisted_predictors_of_streaming_time_series | 8d891970d8172eb8a59dd3823275465b4748b2d9 | 26ea4135805961e3fdae9e899c2148874998de22 | refs/heads/master | 2021-01-19T21:33:56.680568 | 2017-04-25T15:58:15 | 2017-04-25T15:58:15 | 88,669,328 | 10 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 15,231 | h | // Copyright (c) <2016> <Marco Stocchi, UNICA>
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#pragma once
#define M01 "theorem failed, not enough history dwts"
#define M02 "neuralnet failed, not enough history dwts"
//
// FWT assisted inference engine for streaming datasets
// tobedone:
//
namespace predictor_system
{
typedef ann::real_type real_type;
typedef ann::real_vector_type real_vector_type;
typedef ann::real_matrix_type real_matrix_type;
typedef fwt::shift_variance_theorem shift_variance_theorem;
typedef ann::general_multi_layer_perceptron<
ann::hyperbolic_tangent, ann::input_layer,
ann::perceptron_layer,
ann::output_layer> m1lp_type; // single hidden layer MLP
typedef ann::general_multi_layer_perceptron<
ann::hyperbolic_tangent, ann::input_layer,
ann::perceptron_layer,
ann::perceptron_layer,
ann::perceptron_layer,
ann::output_layer> m3lp_type; // triple hidden layer MLP
template <class matrix_type>
class predictor
{// abstract class for virtual predictors
protected:
typedef typename matrix_type::value_type::value_type value_type;
public:
virtual ~predictor() {}
virtual auto predict(const matrix_type& _M, size_t i) ->value_type = 0;
virtual void update(const matrix_type& _M, size_t i) = 0;
};
namespace /*...predictors*/
{
template <class matrix_type, class _PredictorT>
class predictor_spec /*undef*/;
template <class matrix_type>
class predictor_spec <matrix_type, m1lp_type> : public predictor <matrix_type>
{// specialization for single hidden layer perceptron networks
public:
template <class... sizes>
predictor_spec(sizes... i)
: _mlp(i...)
, _Last_sdFcst(0.0)
, _MaxErr(0) // lazy set
, _MinErr(0) // ...
{
}
~predictor_spec() {}
void set_mlp_learningrate(const value_type& _Lrate)
{// set mlp learning rate param
_mlp.set_learning_rate(_Lrate);
}
void set_mlp_mM_errors(const value_type& M, const value_type& m)
{// set min max errors to mlp retraining purposes
_MaxErr=M; _MinErr =m;
}
virtual auto predict /*throws*/(const matrix_type& _M, size_t i) ->value_type
{// use first differences
// cache hist and input sizes
const size_t _history_size(_M.size()), _input_size(_mlp.input_size());
// precheck this...
if (_input_size + 1 > _history_size) throw std::exception(M02);
// find indeces...
const size_t _vecbeg(_history_size - _input_size), _vecend(_history_size);
// allocate input for first differences of the source series
std::vector<value_type> _dinput(_input_size);
// extract first differences
for (size_t z=0, vi=_vecbeg, ve=_vecend; vi<ve; ++vi, ++z) _dinput[z] = _M[vi][i] - _M[vi - 1][i];
// test mlp with input
const value_type _sdFcst = network_test_single(_mlp, _dinput);
// invert sigmoid
const value_type _dFcst = ann::hyperbolic_tangent::invert(_sdFcst);
// store last 1stdiff sigmoided result
_Last_sdFcst = _sdFcst; // value used in the next update()
// revert from 1st differences to real value
const value_type _Fcst = _dFcst + _M[_vecend - 1][i];
return _Fcst;
}
virtual void update(const matrix_type& _M, size_t i)
{// last coefficient already updated
// cache hist and input sizes
const size_t _history_size(_M.size()), _input_size(_mlp.input_size());
// precheck this...
if (_input_size + 1 > _history_size) throw std::exception(M02);
// find indeces...
const size_t _vecbeg(_history_size - _input_size), _vecend(_history_size);
// allocate input for first differences of the source series
std::vector<value_type> _dinput(_input_size);
// extract first differences
for (size_t z = 0, vi = _vecbeg, ve = _vecend; vi < ve; ++vi, ++z) _dinput[z] = _M[vi][i] - _M[vi - 1][i];
// cache actual last 1st diff value
const value_type _dActual(*_dinput.crbegin());
// get sigmoided actual value
const value_type _sdActual = ann::hyperbolic_tangent::execute(_dActual);
// get sigmoided last prediction error
const value_type _Err = _Last_sdFcst - _sdActual;
// train network if minErr has been violated
network_train_single(_mlp, _dinput, _Err, _MaxErr, _MinErr, _sdActual);
}
private:
m1lp_type _mlp; // neural network
value_type _Last_sdFcst; // depot
value_type _MaxErr;
value_type _MinErr;
};
template <class matrix_type>
class predictor_spec <matrix_type, shift_variance_theorem> : public predictor <matrix_type>
{// specialization for theorem coefficients transposition
public:
predictor_spec(const shift_variance_theorem& _Th)
: _Theorem(_Th)
{}
~predictor_spec() {}
virtual auto predict /*throws*/(const matrix_type& _M, size_t i) ->value_type
{
const size_t _backsteps(_Theorem.back_steps(i)), _history_size(_M.size());
// precheck this...
if (_history_size < _backsteps + 1) throw std::exception(M01);
// return ritish column transposed coefficient...
return _M[_history_size - _backsteps][i + 1];
}
virtual void update(const matrix_type& _M, size_t i) {/*donothing*/ }
private:
const shift_variance_theorem& _Theorem;
};
// develop other predictor_spec here...
}
template <class matrix_type>
class predictor_container
{// wrapper object to hold virtual predictor objects
typedef typename matrix_type::value_type::value_type value_type;
typedef predictor <matrix_type> predictor;
typedef predictor_spec<matrix_type, m1lp_type> neural_predictor_type;
typedef predictor_spec<matrix_type, shift_variance_theorem> theorem_predictor_type;
// ... import other predictor_spec specialization types here
public:
typedef predictor predictor_type;
predictor_container(const shift_variance_theorem& _Th)
{
_default_create_predictors(_Th);
}
~predictor_container()
{
_destroy_predictors();
}
predictor* operator[] (const size_t& i) const { return _Prd.at(i); }
private:
void _default_create_predictors(const shift_variance_theorem& _Th)
{
for (size_t i = 0; i < _Th.source_size(); ++i)
{
if (_Th.is_SVT_coefficient(i)) _Prd[i] = new theorem_predictor_type(_Th);
else // MLP, SOM/SOL, SVM, compound, etc.
{// e.g. Daub4 -> 5 6 7 - 13 14 15 - 29 30 31 - 61 62 63 - 126 127
const size_t __NEURALINPUTSIZE = 8;
neural_predictor_type* ptr =
new neural_predictor_type(__NEURALINPUTSIZE , 2*__NEURALINPUTSIZE , 1);
//const value_type _MaxErr(.0001), _MinErr(.00001);
const value_type _MaxErr(.01), _MinErr(.000001);
ptr->set_mlp_learningrate(0.1);
ptr->set_mlp_mM_errors(_MaxErr, _MinErr);
_Prd[i] = ptr;
}
}
}
void _destroy_predictors()
{
for (auto I = _Prd.begin(), E = _Prd.end(); I != E; ++I)
{
safe_delete(I->second);
}
}
std::map<size_t, predictor*> _Prd; // mapped predictors
};
template <class FWT_type>
class engine
{
typedef real_type value_type;
typedef real_vector_type vector_type;
typedef real_matrix_type matrix_type;
typedef FWT_type transformer_type;
typedef fwt::shift_variance_theorem theorem_type;
typedef predictor_container<matrix_type> predictor_container_type;
typedef predictor_container_type::predictor_type predictor_type;
public:
engine(const size_t& _DWTInputSz)
: _InputSz(_DWTInputSz)
, _DWT()
, _Theorem(_DWTInputSz, _DWT.size()/2)
, _Transforms()
, _Forecasts()
, _Sources()
, _Inverted()
, _Predictors(_Theorem) // creates predictors
, _Fcst(source_size()) // allocate
, _Inv(source_size()) // ...
{
}
~engine()
{}
bool trained() const {return _Forecasts.size()==_Transforms.size();} // predictors trained
auto source_size() const ->size_t {return _InputSz;}
auto history_size() const ->size_t {return _Transforms.size();}
auto minQ_size() const ->size_t {return _InputSz;}
auto predict()->value_type
{
// perform reduced FWT using the SVT theorem
_reduce_predict();
// get a reference to the crystal
vector_type& _Out = *(--_Forecasts.end());
// perform inverse DWT on it
_DWT.invert(&_Out[0], &_Inv[0], source_size());
// trim excess forecast vector from the storage
if (_Forecasts.size() > minQ_size()) _Forecasts.erase(_Forecasts.begin());
// store inverse DWT (forecasted series)
_Inverted.push_back(_Inv);
// trim...
if (_Inverted.size() > minQ_size()) _Inverted.erase(_Inverted.begin());
// return last element of the inverted DWT
return *_Inv.crbegin();
}
template <class _Init>
auto predict(const _Init& _Beg, const _Init& _End)->value_type
{
// perform reduced FWT using the SVT theorem
_reduce_predict();
// get a reference to the crystal
vector_type& _Out = *(--_Forecasts.end());
// optimize crystal
_optimize(_Beg, _End, _Out);
// inverse DWT
_DWT.invert(&_Out[0], &_Inv[0], source_size());
// trim excess forecast vector from the storage
if (_Forecasts.size() > minQ_size()) _Forecasts.erase(_Forecasts.begin());
// store inverse DWT (forecasted series)
_Inverted.push_back(_Inv);
// trim...
if (_Inverted.size() > minQ_size()) _Inverted.erase(_Inverted.begin());
// return last element of the inverted DWT
return *_Inv.crbegin();
}
template <class _Init>
auto update(const _Init& _Beg, const _Init& _End)
{// push-pop a new value in the source queue, transform and store the new DWT
// pattern discrete wavelet transform
_full_transform(_Beg, _End);
// not enough history in Q...
if (history_size() <= minQ_size()) return;
// trim excess vector in Q front...
_Transforms.erase(_Transforms.begin());
// for each ordinal
for (size_t i = 0; i < source_size(); ++i)
{
// retrieve pointer to predictor
predictor_type* ptr = _Predictors[i];
// retrain predictor
ptr->update(_Transforms, i);
}
}
// diagnostic outputs
void dump_engine_diagnose(std::ostream& s) const
{
_dump_nonSVT_coefficients(s, _InputSz);
}
void dump_lastrow_diagnose(std::ostream& s) const
{
const size_t _Ordinal(_Forecasts.size()-1);
for (size_t i=0; i<_Transforms[_Ordinal].size(); ++i)
s << _Transforms[_Ordinal][i] << "\t" << _Forecasts[_Ordinal][i] << "\t\t";
s << "\n";
}
void dump_lastrow_nonSVT_diagnose(std::ostream& s) const
{
const size_t _LastRow(_Forecasts.size()-1);
for (size_t i=0; i<_Transforms[_LastRow].size(); ++i)
if (!_Theorem.is_SVT_coefficient(i))
s << _Transforms[_LastRow][i] << "\t" << _Forecasts[_LastRow][i] << "\t\t";
s << "\n";
}
private:
template <class _Init>
void _optimize(const _Init& _Beg, const _Init& _End, vector_type& _Out)
{
const size_t SZ = source_size();
vector_type _CSrc(SZ), _CFcst1(SZ), _CFcst2(SZ);
std::copy(_Beg, _End, _CSrc.begin());
const value_type _Delta = 2.0;
_CSrc[_CSrc.size() - 1] = _CSrc[_CSrc.size() - 2] - _Delta;
_DWT.transform(&_CSrc[0], &_CFcst1[0], SZ); // fwd transform 1
_CSrc[_CSrc.size() - 1] = _CSrc[_CSrc.size() - 2] ; // repeat last known series value
_DWT.transform(&_CSrc[0], &_CFcst2[0], SZ); // fwd transform 2
std::map<size_t, value_type> alphas, betas, xs; // linear equation, Y=alpha*X +beta
for (size_t i = 0; i < SZ; ++i)
{// find slope and intersection
if (!_Theorem.is_SVT_coefficient(i))
{
alphas[i] = (_CFcst2[i] - _CFcst1[i]) / _Delta;
betas[i] = _CFcst2[i];
}
}
for (size_t i = 0; i < SZ; ++i)
{// find Xs for each coefficient
if (!_Theorem.is_SVT_coefficient(i))
{
xs[i] /*create*/ = (_Out[i] - betas.at(i))/ alphas.at(i);
}
}
// filter outlier xs values
real_vector_type VX;
for (auto XI=xs.cbegin(), XE=xs.cend(); XI!=XE;++XI)
if (std::abs(XI->second)<2) VX.push_back(XI->second);
// find aritmetic mean of filtered Xs
real_type X(ann::mean(VX));
// optimize non-SVT coefficients...
for (size_t i = 0; i < SZ; ++i)
{
if (!_Theorem.is_SVT_coefficient(i))
{
_Out[i]= alphas[i]* X + betas[i];
}
}
}
void _reduce_predict()
{// forecast a new DWT crystal
_Forecasts.push_back(vector_type(source_size()));
vector_type& _Out = *(--_Forecasts.end());
// for each ordinal
for (size_t i = 0; i < source_size(); ++i)
{
// test predictor and store forecasted DWT coefficient
_Out[i] = _Predictors[i]->predict(_Transforms, i);
}
}
template <class _Init>
void _full_transform(const _Init& _Beg, const _Init& _End)
{// save a new DWT crystal into matrix Q
_Transforms.push_back(vector_type(source_size()));
vector_type& _Out = *(--_Transforms.end());
_DWT.transform(_Beg._Ptr, &_Out[0], source_size());
}
void _dump_nonSVT_coefficients(std::ostream& s, const size_t& _Srcsize) const
{
s << "variant coeff. ordinals: ";
for (size_t i = 0; i < _Srcsize; ++i)
{
if (!_Theorem.is_SVT_coefficient(i))
s << i << " ";
}
s << "\n";
}
size_t _InputSz; // e.g. 128
transformer_type _DWT; // wavelet transform object
theorem_type _Theorem; // Theorem object
matrix_type _Transforms; // transforms history (matrix Q)
matrix_type _Forecasts; // forecasted transforms history
matrix_type _Sources; // actual pattern history
matrix_type _Inverted; // inverted transforms of forecasts, history
predictor_container_type _Predictors; // predictor container wrapper and factory
vector_type _Fcst; // depot vector
vector_type _Inv; // depot vector
};
} | [
"noreply@github.com"
] | marcoStocchi.noreply@github.com |
0bf7bf120912267dd9f108060af2ecb99cae3d65 | f81124e4a52878ceeb3e4b85afca44431ce68af2 | /re110_2/37/phi | b22bf1ec06679cf1092679481a8f45840ea6ba5e | [] | no_license | chaseguy15/coe-of2 | 7f47a72987638e60fd7491ee1310ee6a153a5c10 | dc09e8d5f172489eaa32610e08e1ee7fc665068c | refs/heads/master | 2023-03-29T16:59:14.421456 | 2021-04-06T23:26:52 | 2021-04-06T23:26:52 | 355,040,336 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 928,328 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "37";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
79480
(
-7.46597e-07
7.42091e-07
4.50636e-09
-2.87539e-06
2.11485e-06
1.39415e-08
-6.33524e-06
3.43571e-06
2.41382e-08
-1.10731e-05
4.70283e-06
3.50403e-08
-1.70336e-05
5.91392e-06
4.65751e-08
-2.41595e-05
7.06723e-06
5.86684e-08
-3.23922e-05
8.16143e-06
7.12505e-08
-4.16721e-05
9.19568e-06
8.42629e-08
-5.19394e-05
1.01696e-05
9.76664e-08
-6.3134e-05
1.10832e-05
1.11449e-07
-7.51966e-05
1.1937e-05
1.25634e-07
-8.80689e-05
1.2732e-05
1.40281e-07
-0.000101694
1.34694e-05
1.55491e-07
-0.000116016
1.41508e-05
1.71408e-07
-0.000130982
1.47779e-05
1.88212e-07
-0.000146541
1.53529e-05
2.06114e-07
-0.000162645
1.58784e-05
2.25351e-07
-0.000179249
1.63578e-05
2.46173e-07
-0.000196313
1.67955e-05
2.68838e-07
-0.000213805
1.71982e-05
2.93599e-07
-0.000231701
1.75749e-05
3.20697e-07
-0.00024999
1.79386e-05
3.50357e-07
-0.000268679
1.83069e-05
3.82787e-07
-0.0002878
1.87029e-05
4.18172e-07
-0.000307413
1.91558e-05
4.56682e-07
-0.000327611
1.97002e-05
4.98471e-07
-0.000348529
2.03737e-05
5.43683e-07
-0.000370333
2.12116e-05
5.92446e-07
-0.000393222
2.22446e-05
6.44856e-07
2.3524e-05
7.00999e-07
-0.000417447
-7.41212e-07
1.4833e-06
-2.85516e-06
4.2288e-06
-6.29144e-06
6.872e-06
-1.09976e-05
9.40902e-06
-1.69189e-05
1.18352e-05
-2.39984e-05
1.41467e-05
-3.21777e-05
1.63408e-05
-4.13977e-05
1.84156e-05
-5.15982e-05
2.03701e-05
-6.27194e-05
2.22044e-05
-7.47018e-05
2.39193e-05
-8.74866e-05
2.55168e-05
-0.000101016
2.69991e-05
-0.000115235
2.83695e-05
-0.000130088
2.96314e-05
-0.000145525
3.07891e-05
-0.000161494
3.18477e-05
-0.00017795
3.28138e-05
-0.000194851
3.36963e-05
-0.00021216
3.45079e-05
-0.000229852
3.52665e-05
-0.000247911
3.59973e-05
-0.000266339
3.67352e-05
-0.000285162
3.75262e-05
-0.000304435
3.84286e-05
-0.000324247
3.9512e-05
-0.000344727
4.08535e-05
-0.000366041
4.25255e-05
-0.000388388
4.45916e-05
4.71567e-05
-0.000412021
-7.30476e-07
2.21378e-06
-2.8148e-06
6.31313e-06
-6.20405e-06
1.02612e-05
-1.0847e-05
1.4052e-05
-1.66899e-05
1.7678e-05
-2.36766e-05
2.11334e-05
-3.17493e-05
2.44136e-05
-4.08491e-05
2.75154e-05
-5.09162e-05
3.04372e-05
-6.18904e-05
3.31785e-05
-7.37117e-05
3.57407e-05
-8.6321e-05
3.8126e-05
-9.96597e-05
4.03378e-05
-0.000113671
4.23804e-05
-0.000128298
4.42587e-05
-0.000143487
4.59785e-05
-0.000159187
4.75469e-05
-0.000175346
4.8973e-05
-0.000191918
5.0269e-05
-0.000208863
5.14525e-05
-0.000226146
5.2549e-05
-0.000243743
5.35946e-05
-0.000261648
5.464e-05
-0.000279874
5.57529e-05
-0.000298466
5.70205e-05
-0.000317503
5.85485e-05
-0.000337105
6.04556e-05
-0.000357435
6.28556e-05
-0.000378693
6.58492e-05
6.96e-05
-0.000401136
-7.14574e-07
2.92835e-06
-2.755e-06
8.35355e-06
-6.07445e-06
1.35807e-05
-1.06235e-05
1.86011e-05
-1.63498e-05
2.34043e-05
-2.31985e-05
2.7982e-05
-3.11124e-05
3.23276e-05
-4.00332e-05
3.64361e-05
-4.99009e-05
4.03049e-05
-6.06554e-05
4.3933e-05
-7.2236e-05
4.73213e-05
-8.45824e-05
5.04725e-05
-9.76349e-05
5.33903e-05
-0.000111334
5.60798e-05
-0.000125622
5.85467e-05
-0.000140442
6.07977e-05
-0.000155736
6.28409e-05
-0.000171449
6.46868e-05
-0.00018753
6.63495e-05
-0.000203927
6.785e-05
-0.000220597
6.92189e-05
-0.000237504
7.05014e-05
-0.000254625
7.17614e-05
-0.000271959
7.3087e-05
-0.000289532
7.45932e-05
-0.000307407
7.6423e-05
-0.000325691
7.87404e-05
-0.000344543
8.17072e-05
-0.000364162
8.54682e-05
9.02547e-05
-0.000384817
-6.93782e-07
3.62213e-06
-2.67673e-06
1.03365e-05
-5.9047e-06
1.68087e-05
-1.03305e-05
2.30269e-05
-1.59037e-05
2.89775e-05
-2.25706e-05
3.46489e-05
-3.02752e-05
4.00322e-05
-3.89595e-05
4.51204e-05
-4.85637e-05
4.99092e-05
-5.90272e-05
5.43965e-05
-7.02886e-05
5.85827e-05
-8.22861e-05
6.247e-05
-9.49582e-05
6.60624e-05
-0.000108243
6.93647e-05
-0.000122079
7.23829e-05
-0.000136405
7.51237e-05
-0.000151159
7.75951e-05
-0.00016628
7.98072e-05
-0.000181705
8.17747e-05
-0.000197374
8.35193e-05
-0.00021323
8.50744e-05
-0.000229219
8.64908e-05
-0.000245301
8.7843e-05
-0.00026145
8.92361e-05
-0.000277669
9.0812e-05
-0.000293997
9.27515e-05
-0.000310526
9.52692e-05
-0.000327403
9.85837e-05
-0.00034483
0.000102895
0.000108517
-0.000363092
-6.6846e-07
4.29059e-06
-2.58129e-06
1.22493e-05
-5.6975e-06
1.99249e-05
-9.97251e-06
2.73019e-05
-1.53578e-05
3.43628e-05
-2.18015e-05
4.10926e-05
-2.92485e-05
4.74792e-05
-3.76411e-05
5.3513e-05
-4.69197e-05
5.91877e-05
-5.70229e-05
6.44997e-05
-6.78881e-05
6.9448e-05
-7.94521e-05
7.4034e-05
-9.16506e-05
7.82609e-05
-0.000104419
8.2133e-05
-0.000117691
8.56555e-05
-0.000131402
8.8834e-05
-0.000145482
9.16749e-05
-0.000159861
9.41867e-05
-0.000174468
9.63819e-05
-0.00018923
9.82806e-05
-0.000204071
9.99155e-05
-0.000218919
0.000101339
-0.000233707
0.000102632
-0.000248384
0.000103912
-0.000262918
0.000105347
-0.00027732
0.000107154
-0.000291655
0.000109604
-0.000306057
0.000112986
-0.000320731
0.000117569
0.000123772
-0.000335986
-6.39051e-07
4.92965e-06
-2.47027e-06
1.40805e-05
-5.45613e-06
2.29107e-05
-9.55486e-06
3.14007e-05
-1.47202e-05
3.95281e-05
-2.09017e-05
4.72741e-05
-2.80453e-05
5.46228e-05
-3.60937e-05
6.15615e-05
-4.4987e-05
6.8081e-05
-5.46629e-05
7.41756e-05
-6.50574e-05
7.98424e-05
-7.61047e-05
8.50813e-05
-8.7738e-05
8.98941e-05
-9.98886e-05
9.42836e-05
-0.000112486
9.82532e-05
-0.000125458
0.000101806
-0.000138729
0.000104946
-0.00015222
0.000107677
-0.000165847
0.000110009
-0.000179521
0.000111954
-0.000193148
0.000113543
-0.000206633
0.000114824
-0.000219879
0.000115878
-0.000232798
0.000116832
-0.000245322
0.000117871
-0.000257421
0.000119252
-0.000269123
0.000121306
-0.000280546
0.000124408
-0.000291894
0.000128917
0.000135387
-0.000303509
-6.06066e-07
5.53571e-06
-2.34552e-06
1.582e-05
-5.18445e-06
2.57497e-05
-9.08394e-06
3.53001e-05
-1.39999e-05
4.44441e-05
-1.98834e-05
5.31576e-05
-2.66811e-05
6.14205e-05
-3.43359e-05
6.92163e-05
-4.27872e-05
7.65324e-05
-5.19716e-05
8.33599e-05
-6.18228e-05
8.96936e-05
-7.22726e-05
9.55312e-05
-8.32504e-05
0.000100872
-9.46832e-05
0.000105716
-0.000106495
0.000110065
-0.000118607
0.000113918
-0.000130934
0.000117273
-0.000143387
0.000120131
-0.000155869
0.000122491
-0.000168274
0.00012436
-0.000180489
0.000125757
-0.000192388
0.000126723
-0.000203843
0.000127333
-0.000214725
0.000127713
-0.000224917
0.000128063
-0.000234337
0.000128672
-0.000242969
0.000129938
-0.0002509
0.000132339
-0.000258333
0.00013635
0.000142696
-0.000265642
-5.70086e-07
6.1058e-06
-2.20912e-06
1.7459e-05
-4.88677e-06
2.84273e-05
-8.56687e-06
3.89802e-05
-1.32073e-05
4.90845e-05
-1.87604e-05
5.87106e-05
-2.51733e-05
6.78334e-05
-3.23885e-05
7.64316e-05
-4.03446e-05
8.44884e-05
-4.89761e-05
9.19914e-05
-5.82145e-05
9.8932e-05
-6.79879e-05
0.000105305
-7.82216e-05
0.000111106
-8.88372e-05
0.000116332
-9.97525e-05
0.00012098
-0.00011088
0.000125045
-0.000122127
0.00012852
-0.000133392
0.000131395
-0.000144562
0.000133661
-0.000155515
0.000135313
-0.000166113
0.000136355
-0.000176203
0.000136813
-0.000185618
0.000136747
-0.000194181
0.000136277
-0.000201721
0.000135603
-0.00020809
0.000135042
-0.000213211
0.000135059
-0.000217128
0.000136256
-0.000220035
0.000139257
0.000144982
-0.000222322
-5.31743e-07
6.63754e-06
-2.06335e-06
1.89906e-05
-4.56783e-06
3.09318e-05
-8.01147e-06
4.24239e-05
-1.23538e-05
5.34268e-05
-1.75478e-05
6.39047e-05
-2.35408e-05
7.38264e-05
-3.02745e-05
8.31653e-05
-3.76856e-05
9.18995e-05
-4.57065e-05
0.000100012
-5.42652e-05
0.000107491
-6.32858e-05
0.000114325
-7.26883e-05
0.000120508
-8.23882e-05
0.000126032
-9.22958e-05
0.000130888
-0.000102315
0.000135065
-0.000112342
0.000138547
-0.000122263
0.000141316
-0.00013195
0.000143348
-0.000141261
0.000144624
-0.000150033
0.000145127
-0.000158082
0.000144862
-0.0001652
0.000143865
-0.000171159
0.000142236
-0.000175723
0.000140166
-0.000178667
0.000137987
-0.000179832
0.000136224
-0.000179204
0.000135628
-0.000176951
0.000137004
0.000141465
-0.000173434
-4.91713e-07
7.12925e-06
-1.91062e-06
2.04095e-05
-4.23268e-06
3.32538e-05
-7.42607e-06
4.56173e-05
-1.14514e-05
5.74521e-05
-1.62618e-05
6.87152e-05
-2.1804e-05
7.93686e-05
-2.80182e-05
8.93794e-05
-3.48387e-05
9.87201e-05
-4.21947e-05
0.000107368
-5.001e-05
0.000115306
-5.82036e-05
0.000122519
-6.66893e-05
0.000128994
-7.53754e-05
0.000134718
-8.41635e-05
0.000139676
-9.29475e-05
0.000143849
-0.000101612
0.000147211
-0.000110027
0.000149732
-0.000118051
0.000151372
-0.000125519
0.000152092
-0.000132244
0.000151851
-0.000138007
0.000150625
-0.000142559
0.000148418
-0.000145617
0.000145294
-0.000146871
0.00014142
-0.000146008
0.000137124
-0.000142764
0.00013298
-0.000137042
0.000129906
-0.000128992
0.000128955
0.000131284
-0.000118812
-4.507e-07
7.57995e-06
-1.75349e-06
2.17123e-05
-3.88657e-06
3.53869e-05
-6.81935e-06
4.855e-05
-1.05127e-05
6.11454e-05
-1.49193e-05
7.31218e-05
-1.99842e-05
8.44335e-05
-2.56452e-05
9.50404e-05
-3.18335e-05
0.000104908
-3.84739e-05
0.000114009
-4.54852e-05
0.000122317
-5.278e-05
0.000129814
-6.02648e-05
0.000136479
-6.78389e-05
0.000142292
-7.5394e-05
0.000147231
-8.28123e-05
0.000151267
-8.99644e-05
0.000154363
-9.67062e-05
0.000156473
-0.000102875
0.000157541
-0.000108286
0.000157503
-0.000112724
0.000156289
-0.000115937
0.000153838
-0.000117632
0.000150112
-0.000117466
0.000145128
-0.000115053
0.000139008
-0.00010998
0.000132051
-0.000101857
0.000124857
-9.04496e-05
0.000118498
-7.59844e-05
0.000114489
0.000113685
-5.83859e-05
-4.09423e-07
7.98938e-06
-1.5945e-06
2.28974e-05
-3.53484e-06
3.73273e-05
-6.20013e-06
5.12153e-05
-9.55055e-06
6.44958e-05
-1.35372e-05
7.71084e-05
-1.81027e-05
8.89989e-05
-2.31813e-05
0.000100119
-2.86999e-05
0.000110427
-3.4578e-05
0.000119887
-4.07277e-05
0.000128467
-4.70541e-05
0.00013614
-5.34545e-05
0.000142879
-5.98182e-05
0.000148656
-6.60247e-05
0.000153438
-7.19423e-05
0.000157185
-7.74261e-05
0.000159847
-8.23139e-05
0.000161361
-8.64227e-05
0.00016165
-8.95425e-05
0.000160623
-9.14298e-05
0.000158176
-9.1798e-05
0.000154206
-9.03085e-05
0.000148623
-8.65605e-05
0.00014138
-8.00865e-05
0.000132534
-7.03643e-05
0.000122328
-5.68606e-05
0.000111353
-3.9096e-05
0.000100734
-1.69207e-05
9.2314e-05
8.99756e-05
6.7892e-06
-3.68596e-07
8.35797e-06
-1.43623e-06
2.3965e-05
-3.18278e-06
3.90738e-05
-5.57709e-06
5.36096e-05
-8.57753e-06
6.74963e-05
-1.21324e-05
8.06634e-05
-1.61806e-05
9.30471e-05
-2.06519e-05
0.00010459
-2.54674e-05
0.000115242
-3.05396e-05
0.000124959
-3.5773e-05
0.0001337
-4.10632e-05
0.00014143
-4.62968e-05
0.000148113
-5.13504e-05
0.000153709
-5.60894e-05
0.000158177
-6.03657e-05
0.000161461
-6.40157e-05
0.000163497
-6.68563e-05
0.000164202
-6.86805e-05
0.000163474
-6.92511e-05
0.000161193
-6.8293e-05
0.000157218
-6.54828e-05
0.000151396
-6.0436e-05
0.000143576
-5.26929e-05
0.000133637
-4.17055e-05
0.000121546
-2.68364e-05
0.000107459
-7.39616e-06
9.19131e-05
1.72437e-05
7.60938e-05
4.73506e-05
6.2207e-05
5.52516e-05
8.20746e-05
-3.28909e-07
8.68688e-06
-1.28112e-06
2.49173e-05
-2.83546e-06
4.06282e-05
-4.95858e-06
5.57328e-05
-7.60568e-06
7.01434e-05
-1.0721e-05
8.37787e-05
-1.42382e-05
9.65644e-05
-1.80811e-05
0.000108433
-2.21635e-05
0.000119325
-2.63898e-05
0.000129185
-3.06545e-05
0.000137965
-3.48421e-05
0.000145618
-3.8826e-05
0.000152097
-4.24681e-05
0.000157351
-4.56164e-05
0.000161325
-4.81034e-05
0.000163948
-4.97431e-05
0.000165137
-5.03274e-05
0.000164786
-4.9621e-05
0.000162768
-4.7355e-05
0.000158927
-4.32186e-05
0.000153082
-3.68479e-05
0.000145025
-2.78106e-05
0.000134539
-1.5588e-05
0.000121414
4.46605e-07
0.000105512
2.10425e-05
8.68634e-05
4.70635e-05
6.58921e-05
7.93577e-05
4.37995e-05
0.00011839
2.31746e-05
9.81983e-06
0.000163822
-2.91005e-07
8.97789e-06
-1.13144e-06
2.57577e-05
-2.49754e-06
4.19943e-05
-4.35223e-06
5.75875e-05
-6.64601e-06
7.24371e-05
-9.31742e-06
8.64501e-05
-1.22936e-05
9.95405e-05
-1.54905e-05
0.00011163
-1.88131e-05
0.000122648
-2.21557e-05
0.000132528
-2.5401e-05
0.00014121
-2.84199e-05
0.000148637
-3.10705e-05
0.000154747
-3.31964e-05
0.000159477
-3.46252e-05
0.000162754
-3.51659e-05
0.000164489
-3.46057e-05
0.000164577
-3.27061e-05
0.000162887
-2.91979e-05
0.00015926
-2.37743e-05
0.000153504
-1.60829e-05
0.00014539
-5.71302e-06
0.000134656
7.81902e-06
0.000121007
2.5092e-05
0.000104141
4.68073e-05
8.37963e-05
7.38219e-05
5.98488e-05
0.000107164
3.25495e-05
0.00014794
3.02409e-06
0.000197002
-2.58874e-05
-4.74044e-05
0.000254226
-2.55458e-07
9.23334e-06
-9.89191e-07
2.64914e-05
-2.17311e-06
4.31782e-05
-3.76467e-06
5.9179e-05
-5.70797e-06
7.43804e-05
-7.93418e-06
8.86763e-05
-1.0362e-05
0.000101968
-1.2898e-05
0.000114166
-1.54364e-05
0.000125186
-1.78591e-05
0.000134951
-2.00348e-05
0.000143386
-2.18184e-05
0.00015042
-2.30492e-05
0.000155978
-2.35497e-05
0.000159978
-2.31227e-05
0.000162327
-2.15491e-05
0.000162915
-1.85836e-05
0.000161611
-1.39514e-05
0.000158254
-7.34184e-06
0.00015265
1.59737e-06
0.000144564
1.32694e-05
0.000133718
2.81392e-05
0.000119786
4.67494e-05
0.000102396
6.97422e-05
8.11485e-05
9.78917e-05
5.56467e-05
0.000132148
2.55924e-05
0.000173688
-8.99072e-06
0.000223881
-4.71683e-05
0.000283983
-8.59894e-05
-0.000117769
0.000354347
-2.22746e-07
9.45609e-06
-8.56023e-07
2.71247e-05
-1.86546e-06
4.41876e-05
-3.20117e-06
6.05147e-05
-4.79897e-06
7.59782e-05
-6.58077e-06
9.04581e-05
-8.45503e-06
0.000103843
-1.03168e-05
0.000116028
-1.20474e-05
0.000126917
-1.35141e-05
0.000136417
-1.45692e-05
0.000144441
-1.50482e-05
0.000150899
-1.47687e-05
0.000155699
-1.35277e-05
0.000158737
-1.10988e-05
0.000159898
-7.22896e-06
0.000159045
-1.63457e-06
0.000156017
6.00351e-06
0.000150616
1.60454e-05
0.000142608
2.88991e-05
0.000131711
4.50286e-05
0.000117589
6.49645e-05
9.98499e-05
8.93183e-05
7.80426e-05
0.000118803
5.16637e-05
0.000154265
2.0185e-05
0.000196733
-1.68755e-05
0.0002475
-5.97575e-05
0.000308164
-0.000107833
0.000380386
-0.000158211
-0.000202676
0.000465293
-1.93224e-07
9.64931e-06
-7.33105e-07
2.76646e-05
-1.57687e-06
4.50314e-05
-2.66526e-06
6.16031e-05
-3.92375e-06
7.72367e-05
-5.26303e-06
9.17974e-05
-6.57916e-06
0.000105159
-7.75351e-06
0.000117202
-8.65226e-06
0.000127815
-9.12549e-06
0.00013689
-9.00579e-06
0.000144321
-8.10645e-06
0.00015
-6.21911e-06
0.000153811
-3.11085e-06
0.000155628
1.47924e-06
0.000155308
7.84406e-06
0.000152681
1.63132e-05
0.000147548
2.72582e-05
0.000139671
4.10987e-05
0.000128768
5.83089e-05
0.0001145
7.94262e-05
9.64716e-05
0.00010506
7.42165e-05
0.000135902
4.71998e-05
0.000172748
1.48176e-05
0.000216519
-2.3586e-05
0.000268311
-6.86669e-05
0.000329489
-0.000120935
0.000401816
-0.00018016
0.000487294
-0.00024369
-0.0003035
0.000588118
-1.67097e-07
9.81641e-06
-6.21051e-07
2.81185e-05
-1.30842e-06
4.57187e-05
-2.15837e-06
6.24531e-05
-3.08392e-06
7.81623e-05
-3.9823e-06
9.26958e-05
-4.73498e-06
0.000105911
-5.2073e-06
0.000117674
-5.24759e-06
0.000127856
-4.68589e-06
0.000136329
-3.33193e-06
0.000142967
-9.7285e-07
0.000147641
2.62994e-06
0.000150208
7.74432e-06
0.000150514
1.46717e-05
0.00014838
2.37517e-05
0.0001436
3.53679e-05
0.000135931
4.99533e-05
0.000125086
6.79974e-05
0.000110724
9.00526e-05
9.24453e-05
0.000116742
6.97823e-05
0.000148767
4.21917e-05
0.000186915
9.05117e-06
0.000232075
-3.03418e-05
0.000285247
-7.67588e-05
0.000347586
-0.000131006
0.000420485
-0.000193834
0.000505777
-0.000265452
0.000605673
-0.000343586
-0.000421479
0.000723653
-1.44397e-07
9.96081e-06
-5.19823e-07
2.8494e-05
-1.05976e-06
4.62587e-05
-1.67951e-06
6.30728e-05
-2.27734e-06
7.87601e-05
-2.73472e-06
9.31531e-05
-2.91609e-06
0.000106093
-2.66816e-06
0.000117427
-1.81854e-06
0.000127006
-1.73989e-07
0.000134684
2.48216e-06
0.000140311
6.39327e-06
0.00014373
1.1833e-05
0.000144769
1.91098e-05
0.000143237
2.85722e-05
0.000138918
4.0614e-05
0.000131559
5.56811e-05
0.000120864
7.42777e-05
0.000106489
9.69736e-05
8.80279e-05
0.000124411
6.50082e-05
0.00015731
3.6883e-05
0.000196477
3.02481e-06
0.000242807
-3.72785e-05
0.000297288
-8.48231e-05
0.000361009
-0.00014048
0.000435173
-0.00020517
0.000521157
-0.000279817
0.000620754
-0.00036505
0.000736189
-0.000459021
-0.000557577
0.000872287
-1.24959e-07
1.00858e-05
-4.28652e-07
2.87977e-05
-8.28992e-07
4.6659e-05
-1.22499e-06
6.34688e-05
-1.49778e-06
7.90329e-05
-1.51058e-06
9.31659e-05
-1.10821e-06
0.00010569
-1.15865e-07
0.000116434
1.66253e-06
0.000125228
4.44724e-06
0.0001319
8.48554e-06
0.000136273
1.40558e-05
0.000138159
2.14723e-05
0.000137352
3.10902e-05
0.000133619
4.3312e-05
0.000126696
5.85939e-05
0.000116277
7.74529e-05
0.000102005
0.000100474
8.34681e-05
0.000128317
6.01849e-05
0.000161723
3.16018e-05
0.000201521
-2.91501e-06
0.000248629
-4.40828e-05
0.000304053
-9.27031e-05
0.000368888
-0.000149657
0.000444303
-0.000215895
0.000531537
-0.000292404
0.000631912
-0.000380192
0.000747059
-0.000480196
0.000879
-0.000590963
-0.000712302
0.00103373
-1.08404e-07
1.01942e-05
-3.45975e-07
2.90352e-05
-6.1248e-07
4.69255e-05
-7.88162e-07
6.36445e-05
-7.34524e-07
7.89792e-05
-2.93854e-07
9.27253e-05
7.11356e-07
0.000104685
2.4805e-06
0.000114665
5.23719e-06
0.000122471
9.23231e-06
0.000127904
1.47483e-05
0.000130757
2.21039e-05
0.000130804
3.16598e-05
0.000127796
4.38247e-05
0.000121454
5.90627e-05
0.000111458
7.79003e-05
9.74391e-05
0.000100934
7.89713e-05
0.000128839
5.55633e-05
0.000162373
2.66507e-05
0.000202385
-8.41019e-06
0.000249816
-5.03452e-05
0.000305695
-9.99627e-05
0.000371141
-0.000158148
0.000447337
-0.000225854
0.000535517
-0.000304076
0.00063693
-0.000393817
0.000752796
-0.000496058
0.000884453
-0.000611853
0.00103356
-0.000740068
-0.000885482
0.00120674
-9.41303e-08
1.02883e-05
-2.69406e-07
2.92105e-05
-4.04841e-07
4.7061e-05
-3.59329e-07
6.3599e-05
2.79821e-08
7.85919e-05
9.3803e-07
9.18152e-05
2.57421e-06
0.000103049
5.16382e-06
0.000112075
8.96154e-06
0.000118673
1.42536e-05
0.000122612
2.13624e-05
0.000123648
3.06528e-05
0.000121513
4.25383e-05
0.000115911
5.74884e-05
0.000106504
7.60362e-05
9.29104e-05
9.87867e-05
7.46886e-05
0.000126424
5.13336e-05
0.00015972
2.22674e-05
0.000199538
-1.31665e-05
0.000246834
-5.57064e-05
0.00030266
-0.000106171
0.000368153
-0.000165455
0.000444518
-0.000234514
0.000533006
-0.000314341
0.000634868
-0.000405938
0.000751308
-0.000510256
0.000883396
-0.000628146
0.00103203
-0.000760483
0.00119844
-0.000906485
-0.001076
0.00138896
-8.13082e-08
1.03696e-05
-1.95729e-07
2.93249e-05
-1.98946e-07
4.70642e-05
7.41845e-08
6.33259e-05
8.0922e-07
7.78569e-05
2.21416e-06
9.04103e-05
4.52076e-06
0.000100742
7.98802e-06
0.000108608
1.2906e-05
0.000113755
1.9601e-05
0.000115917
2.8441e-05
0.000114808
3.9843e-05
0.000110111
5.42799e-05
0.000101474
7.22892e-05
8.84951e-05
9.44807e-05
7.07189e-05
0.000121545
4.76243e-05
0.000154261
1.8618e-05
0.0001935
-1.69717e-05
0.000240231
-5.98977e-05
0.000295517
-0.000110993
0.000360509
-0.000171163
0.000436426
-0.000241373
0.000524531
-0.000322619
0.000626085
-0.000415895
0.000742292
-0.000522145
0.000874222
-0.000642187
0.00102272
-0.000776646
0.00118808
-0.000925845
0.00137126
-0.00108966
-0.00128149
0.00157675
-6.88922e-08
1.04385e-05
-1.20908e-07
2.93769e-05
1.4365e-08
4.69289e-05
5.27994e-07
6.28122e-05
1.63405e-06
7.67508e-05
3.56993e-06
8.84744e-05
6.59967e-06
9.77127e-05
1.10179e-05
0.00010419
1.71546e-05
0.000107618
2.53811e-05
0.000107691
3.61169e-05
0.000104072
4.98373e-05
9.6391e-05
6.7082e-05
8.42293e-05
8.84628e-05
6.71143e-05
0.000114673
4.45086e-05
0.000146495
1.58028e-05
0.000184803
-1.96907e-05
0.000230572
-6.27409e-05
0.000284871
-0.000114196
0.000348854
-0.000174976
0.000423747
-0.000246056
0.000510816
-0.000328442
0.000611325
-0.000423127
0.000726474
-0.000531044
0.000857322
-0.000652993
0.00100469
-0.000789555
0.00116909
-0.000941049
0.0013501
-0.00110685
0.0015486
-0.00128817
-0.00149807
0.00176518
-5.56671e-08
1.04942e-05
-4.03543e-08
2.93616e-05
2.44617e-07
4.66439e-05
1.02019e-06
6.20367e-05
2.53055e-06
7.52405e-05
5.04611e-06
8.59588e-05
8.86693e-06
9.38919e-05
1.43275e-05
9.87294e-05
2.18025e-05
0.000100143
3.1714e-05
9.77795e-05
4.45387e-05
9.12477e-05
6.08168e-05
8.01129e-05
8.11607e-05
6.38855e-05
0.000106263
4.20117e-05
0.000136906
1.3866e-05
0.000173964
-2.12555e-05
0.000218411
-6.41375e-05
0.000271314
-0.000115644
0.000333828
-0.00017671
0.000407175
-0.000248323
0.000492617
-0.000331498
0.00059141
-0.000427235
0.000704744
-0.000536461
0.000833661
-0.000659962
0.000978962
-0.000798294
0.00114108
-0.000951676
0.00132005
-0.00112002
0.00151468
-0.00130147
0.00172602
-0.00149951
-0.00172026
0.00194821
-4.02217e-08
1.05344e-05
5.12876e-08
2.92701e-05
5.04209e-07
4.6191e-05
1.57117e-06
6.09697e-05
3.53018e-06
7.32815e-05
6.68794e-06
8.28011e-05
1.13844e-05
8.91955e-05
1.79982e-05
9.21156e-05
2.69541e-05
9.11876e-05
3.873e-05
8.60036e-05
5.3866e-05
7.61117e-05
7.2973e-05
6.10059e-05
9.67416e-05
4.01168e-05
0.00012595
1.28033e-05
0.00016147
-2.16538e-05
0.000204269
-6.40547e-05
0.00025541
-0.000115278
0.00031604
-0.000176274
0.000387373
-0.000248043
0.000470659
-0.000331609
0.00056714
-0.000427979
0.000677987
-0.000538082
0.000804221
-0.000662695
0.000946616
-0.000802358
0.00110559
-0.000957267
0.00128107
-0.00112716
0.00147242
-0.00131137
0.00167781
-0.00150686
0.00189809
-0.00171979
-0.00194112
0.00211894
-2.10392e-08
1.05554e-05
1.5973e-07
2.90893e-05
8.05288e-07
4.55455e-05
2.20267e-06
5.95723e-05
4.66663e-06
7.08175e-05
8.54369e-06
7.8924e-05
1.42176e-05
8.35215e-05
2.21162e-05
8.4217e-05
3.27186e-05
8.05851e-05
4.65646e-05
7.21577e-05
6.42626e-05
5.84137e-05
8.64994e-05
3.87691e-05
0.000114048
1.25685e-05
0.000147773
-2.09214e-05
0.000188634
-6.25149e-05
0.000237684
-0.000113105
0.00029606
-0.000173654
0.000364962
-0.000245176
0.000445624
-0.000328705
0.00053927
-0.000425254
0.000647044
-0.000535754
0.000769941
-0.000660978
0.000908703
-0.000801457
0.00106372
-0.000957372
0.00123491
-0.00112846
0.00142162
-0.00131387
0.00162248
-0.00151223
0.00183533
-0.0017197
0.00205898
-0.00194344
-0.00215229
0.00227014
3.46363e-09
1.0552e-05
2.9094e-07
2.88019e-05
1.16084e-06
4.46756e-05
2.93726e-06
5.77959e-05
5.97469e-06
6.77801e-05
1.0663e-05
7.42357e-05
1.7434e-05
7.67505e-05
2.67688e-05
7.48823e-05
3.92062e-05
6.81477e-05
5.53523e-05
5.60116e-05
7.58887e-05
3.78772e-05
0.000101581
1.30765e-05
0.000133286
-1.91362e-05
0.000171952
-5.95876e-05
0.00021862
-0.000109183
0.000274413
-0.000168898
0.000340515
-0.000239756
0.000418143
-0.000322803
0.000508496
-0.000419058
0.000612695
-0.000529454
0.000731704
-0.000654762
0.000866228
-0.000795503
0.00101662
-0.000951845
0.00118275
-0.00112351
0.00136397
-0.00130967
0.00155901
-0.00150891
0.00176589
-0.00171911
0.00198279
-0.0019366
0.00220428
-0.00216493
-0.00234531
0.0023973
3.48718e-08
1.05171e-05
4.50857e-07
2.83859e-05
1.58386e-06
4.35426e-05
3.79751e-06
5.55822e-05
7.48905e-06
6.40885e-05
1.30953e-05
6.86294e-05
2.10998e-05
6.8746e-05
3.20414e-05
6.39407e-05
4.6523e-05
5.3666e-05
6.52208e-05
3.73138e-05
8.88925e-05
1.42055e-05
0.000118384
-1.64148e-05
0.000154632
-5.53842e-05
0.000198663
-0.000103619
0.000251583
-0.000162104
0.000314561
-0.000231875
0.000388792
-0.000313987
0.000475456
-0.000409467
0.00057565
-0.000519252
0.000690309
-0.000644113
0.000820107
-0.000784561
0.000965355
-0.000940751
0.00112589
-0.00111238
0.00130101
-0.00129862
0.00148937
-0.00149804
0.00168909
-0.00170863
0.00189764
-0.00192767
0.00211347
-0.00215243
0.00233093
-0.00238239
-0.00258861
0.00257423
7.47334e-08
1.04424e-05
6.45283e-07
2.78153e-05
2.08692e-06
4.21009e-05
4.80522e-06
5.28639e-05
9.24307e-06
5.96507e-05
1.58875e-05
6.1985e-05
2.52775e-05
5.93559e-05
3.80136e-05
5.12047e-05
5.47659e-05
3.69137e-05
7.62836e-05
1.57961e-05
0.000103401
-1.29119e-05
0.000137041
-5.00552e-05
0.000178216
-9.65583e-05
0.000228013
-0.000153416
0.000287583
-0.000221674
0.000358104
-0.000302396
0.000440735
-0.000396619
0.000536555
-0.000505287
0.000646476
-0.000629173
0.000771151
-0.000768788
0.000910864
-0.000924274
0.00106543
-0.00109531
0.00123409
-0.00128104
0.00141547
-0.00148
0.00160758
-0.00169015
0.00180791
-0.00190895
0.00201355
-0.00213332
0.00222205
-0.00236092
0.00242868
-0.00258902
-0.00280452
0.00264459
1.24492e-07
1.03179e-05
8.79633e-07
2.70602e-05
2.68177e-06
4.02988e-05
5.98065e-06
4.95651e-05
1.12675e-05
5.43639e-05
1.90825e-05
5.417e-05
3.00237e-05
4.84148e-05
4.47556e-05
3.64728e-05
6.40183e-05
1.7651e-05
8.86341e-05
-8.81966e-06
0.000119512
-4.37895e-05
0.000157645
-8.81889e-05
0.000204107
-0.00014302
0.000260028
-0.000209337
0.000326568
-0.000288214
0.000404871
-0.000380699
0.000496
-0.000487747
0.000600855
-0.000610142
0.000720077
-0.000748396
0.000853941
-0.000902652
0.00100225
-0.00107258
0.00116423
-0.0012573
0.0013385
-0.00145531
0.00152302
-0.00166453
0.00171522
-0.00188235
0.00191209
-0.00210582
0.00211046
-0.00233169
0.00230725
-0.00255772
0.00249883
-0.00278059
-0.00299449
0.00268879
1.8545e-07
1.01324e-05
1.15879e-06
2.60869e-05
3.37893e-06
3.80786e-05
7.34182e-06
4.56022e-05
1.35894e-05
4.81163e-05
2.27178e-05
4.50416e-05
3.5386e-05
3.57465e-05
5.23251e-05
1.95337e-05
7.43449e-05
-4.36878e-06
0.000102339
-3.68138e-05
0.000137285
-7.8735e-05
0.000180235
-0.00013114
0.000232304
-0.000195089
0.000294636
-0.000271668
0.00036836
-0.000361938
0.000454528
-0.000466868
0.000554038
-0.000587257
0.000667531
-0.000723635
0.000795288
-0.000876153
0.00093712
-0.00104448
0.00109227
-0.00122773
0.00125937
-0.00142439
0.00143638
-0.00163233
0.00162074
-0.00184888
0.00180939
-0.002071
0.00199909
-0.00229552
0.00218663
-0.00251923
0.002369
-0.00274009
0.00254329
-0.00295488
-0.00316247
0.00271127
2.58737e-07
9.87368e-06
1.48695e-06
2.48586e-05
4.18744e-06
3.53781e-05
8.90403e-06
4.08856e-05
1.62314e-05
4.0789e-05
2.68234e-05
3.44496e-05
4.14019e-05
2.1168e-05
6.07641e-05
1.71437e-07
8.57883e-05
-2.93929e-05
0.000117434
-6.84593e-05
0.000156736
-0.000118037
0.00020479
-0.000179194
0.000262726
-0.000253024
0.00033166
-0.000340603
0.000412643
-0.00044292
0.000506573
-0.000560797
0.000614104
-0.000694788
0.000735538
-0.000845069
0.000870716
-0.00101133
0.00101892
-0.00119269
0.00117881
-0.00138762
0.00134841
-0.00159399
0.00152515
-0.00180907
0.00170604
-0.00202977
0.00188783
-0.00225279
0.00206727
-0.00247496
0.00224145
-0.0026934
0.00240782
-0.00290647
0.00256446
-0.00311152
-0.00331038
0.00271237
3.45289e-07
9.52839e-06
1.8676e-06
2.33363e-05
5.11461e-06
3.21311e-05
1.06794e-05
3.53208e-05
1.92108e-05
3.22576e-05
3.14215e-05
2.22389e-05
4.80962e-05
4.49328e-06
7.00971e-05
-2.18295e-05
9.83657e-05
-5.76615e-05
0.000133918
-0.000104012
0.000177833
-0.000161952
0.000231224
-0.000232585
0.000295202
-0.000317001
0.000370812
-0.000416214
0.000458966
-0.000531074
0.000560339
-0.00066217
0.000675269
-0.000809717
0.000803642
-0.000973442
0.000944799
-0.00115249
0.00109746
-0.00134535
0.00125972
-0.00154988
0.00142907
-0.00176334
0.00160256
-0.00198256
0.00177697
-0.00220419
0.0019491
-0.00242492
0.00211601
-0.00264187
0.00227531
-0.0028527
0.0024252
-0.00305637
0.00256476
-0.00325107
-0.00344054
0.00269493
4.45848e-07
9.08255e-06
2.30341e-06
2.14788e-05
6.16595e-06
2.82686e-05
1.26767e-05
2.88101e-05
2.25393e-05
2.2395e-05
3.65253e-05
8.25281e-06
5.54809e-05
-1.44623e-05
8.0329e-05
-4.66776e-05
0.000112067
-8.93994e-05
0.000151754
-0.0001437
0.000200492
-0.000210689
0.000259382
-0.000291475
0.000329474
-0.000387093
0.000411692
-0.000498433
0.000506745
-0.000626127
0.000615016
-0.000770441
0.000736455
-0.000931156
0.000870478
-0.00110747
0.00101589
-0.0012979
0.00117087
-0.00150033
0.001333
-0.00171201
0.00149938
-0.00192972
0.00166686
-0.00215004
0.00183225
-0.00236958
0.00199264
-0.0025853
0.0021456
-0.00279483
0.00228947
-0.00299657
0.00242329
-0.00319018
0.00254703
-0.00337482
-0.0035553
0.0026618
5.60961e-07
8.52159e-06
2.79628e-06
1.92434e-05
7.34511e-06
2.37198e-05
1.49011e-05
2.1254e-05
2.62225e-05
1.10736e-05
4.21386e-05
-7.6633e-06
6.35534e-05
-3.5877e-05
9.1444e-05
-7.45682e-05
0.000126852
-0.000124807
0.000170863
-0.000187711
0.000224573
-0.000264399
0.000289036
-0.000355938
0.000365195
-0.000463253
0.000453796
-0.000587033
0.000555278
-0.000727609
0.000669668
-0.000884831
0.000796476
-0.00105796
0.000934613
-0.0012456
0.00108236
-0.00144565
0.00123739
-0.00165537
0.00139692
-0.00187153
0.00155782
-0.00209062
0.00171694
-0.00230917
0.00187137
-0.00252401
0.00201868
-0.00273261
0.00215714
-0.00293329
0.00228584
-0.00312528
0.00240463
-0.00330897
0.00251424
-0.00348442
-0.00365699
0.00261592
6.91003e-07
7.83058e-06
3.34734e-06
1.65871e-05
8.6539e-06
1.84132e-05
1.73543e-05
1.25536e-05
3.02602e-05
-1.8323e-06
4.82556e-05
-2.56586e-05
7.22966e-05
-5.99181e-05
0.000103405
-0.000105677
0.000142652
-0.000164054
0.000191124
-0.000236183
0.000249883
-0.000323157
0.000319892
-0.000425947
0.000401937
-0.000545298
0.000496524
-0.00068162
0.000603765
-0.00083485
0.000723278
-0.00100434
0.000854096
-0.00118878
0.000994624
-0.00138613
0.00114266
-0.00159369
0.00129551
-0.00180821
0.00145011
-0.00202614
0.00160336
-0.00224387
0.00175233
-0.00245813
0.00189453
-0.00266621
0.00202819
-0.00286626
0.00215231
-0.00305741
0.00226672
-0.00323969
0.00237194
-0.0034142
0.00246924
-0.00358172
-0.00374774
0.00255999
8.36184e-07
6.9944e-06
3.95702e-06
1.34663e-05
1.00923e-05
1.22779e-05
2.00345e-05
2.61148e-06
3.46459e-05
-1.64437e-05
5.48604e-05
-4.58732e-05
8.16786e-05
-8.67363e-05
0.000116154
-0.000140152
0.000159366
-0.000207266
0.000212378
-0.000289195
0.000276177
-0.000386956
0.000351592
-0.000501362
0.000439197
-0.000632903
0.000539201
-0.000781624
0.000651341
-0.00094699
0.000774785
-0.00112779
0.000908085
-0.00132208
0.00104918
-0.00152722
0.00119547
-0.00173998
0.001344
-0.00195674
0.00149169
-0.00217382
0.00163559
-0.00238777
0.00177317
-0.00259571
0.00190254
-0.00279559
0.00202262
-0.00298634
0.00213312
-0.0031679
0.00223451
-0.00334107
0.00232782
-0.00350751
0.00241462
-0.00366852
-0.00382945
0.00249633
9.9657e-07
5.99783e-06
4.62503e-06
9.83781e-06
1.16587e-05
5.24424e-06
2.29362e-05
-8.66601e-06
3.93667e-05
-3.28743e-05
6.19274e-05
-6.84338e-05
9.16521e-05
-0.000116461
0.000129609
-0.000178109
0.000176864
-0.00025452
0.000234423
-0.000346754
0.000303159
-0.000455693
0.000383718
-0.00058192
0.000476409
-0.000725595
0.000581098
-0.000886313
0.000697103
-0.00106299
0.000823135
-0.00125382
0.000957288
-0.00145623
0.0010971
-0.00166704
0.00123971
-0.00188259
0.00138207
-0.00209911
0.00152123
-0.00231298
0.00165458
-0.00252112
0.00178013
-0.00272127
0.00189667
-0.00291212
0.00200376
-0.00309343
0.00210174
-0.00326589
0.00219157
-0.00343091
0.00227463
-0.00359056
0.00235259
-0.00374649
-0.00390368
0.00242682
1.17208e-06
4.82575e-06
5.35041e-06
5.65948e-06
1.33494e-05
-2.7547e-06
2.60504e-05
-2.1367e-05
4.44037e-05
-5.12277e-05
6.94207e-05
-9.34508e-05
0.000102155
-0.000149195
0.000143669
-0.000219623
0.000194987
-0.000305838
0.000257022
-0.00040879
0.000330491
-0.000529162
0.000415807
-0.000667236
0.000512968
-0.000822756
0.000621455
-0.000994799
0.000740154
-0.00118169
0.000867331
-0.001381
0.00100068
-0.00158958
0.00113745
-0.0018038
0.00127464
-0.00201979
0.0014093
-0.00223376
0.00153875
-0.00244243
0.00166088
-0.00264325
0.00177431
-0.0028347
0.00187846
-0.00301627
0.0019735
-0.00318848
0.00206028
-0.00335266
0.00214007
-0.0035107
0.0022144
-0.00366489
0.00228496
-0.00381705
-0.00397167
0.00235295
1.3625e-06
3.46325e-06
6.13149e-06
8.90487e-07
1.5159e-05
-1.17822e-05
2.93644e-05
-3.55724e-05
4.97315e-05
-7.15948e-05
7.72942e-05
-0.000121013
0.000113109
-0.000185009
0.000158209
-0.000264724
0.000213547
-0.000361176
0.000279905
-0.000475148
0.000357797
-0.000607054
0.00044736
-0.000756799
0.000548241
-0.000923638
0.000659516
-0.00110607
0.000779641
-0.00130182
0.000906482
-0.00150784
0.00103742
-0.00172052
0.00116953
-0.00193592
0.00129986
-0.00215011
0.00142566
-0.00235956
0.0015447
-0.00256146
0.00165542
-0.00275397
0.00175705
-0.00293633
0.0018496
-0.00310882
0.00193375
-0.00327263
0.00201068
-0.00342959
0.00208185
-0.00358187
0.00214881
-0.00373185
0.00221313
-0.00388137
-0.00403438
0.00227584
1.56744e-06
1.8958e-06
6.96582e-06
-4.50789e-06
1.70804e-05
-2.18967e-05
3.28618e-05
-5.13538e-05
5.5318e-05
-9.4051e-05
8.54914e-05
-0.000151187
0.000124421
-0.000223939
0.000173087
-0.00031339
0.000232332
-0.000420421
0.00030277
-0.000545585
0.000384671
-0.000688955
0.000477856
-0.000849984
0.000581596
-0.00102738
0.000694555
-0.00121903
0.000814793
-0.00142206
0.000939844
-0.00163289
0.00106688
-0.00184756
0.00119297
-0.002062
0.00131529
-0.00227244
0.00143149
-0.00247576
0.00153983
-0.0026698
0.00163933
-0.00285348
0.00172982
-0.00302681
0.00181178
-0.00319078
0.00188627
-0.00334712
0.00195466
-0.00349798
0.00201848
-0.00364569
0.00207919
-0.00379257
0.0021382
-0.00394038
-0.00409251
0.00219633
1.78635e-06
1.09451e-07
7.85017e-06
-1.05717e-05
1.9104e-05
-3.31506e-05
3.6522e-05
-6.87718e-05
6.11244e-05
-0.000118653
9.39457e-05
-0.000184008
0.000135985
-0.000265979
0.000188139
-0.000365543
0.000251108
-0.000483391
0.000325296
-0.000619773
0.000410693
-0.000774352
0.000506774
-0.000946065
0.000612423
-0.00113303
0.000725912
-0.00133252
0.000844955
-0.0015411
0.00096685
-0.00175479
0.00108869
-0.0019694
0.00120763
-0.00218094
0.00132117
-0.00238598
0.0014274
-0.00258199
0.00152512
-0.00276752
0.00161392
-0.00294228
0.00169411
-0.003107
0.00176658
-0.00326326
0.00183261
-0.00341315
0.00189365
-0.00355902
0.00195119
-0.00370323
0.00200656
-0.00384794
0.00206095
-0.00399477
-0.00414658
0.00211501
2.01842e-06
-1.90897e-06
8.78035e-06
-1.73336e-05
2.12185e-05
-4.55887e-05
4.03204e-05
-8.78737e-05
6.7105e-05
-0.000145438
0.00010258
-0.000219483
0.000147681
-0.000311079
0.000203187
-0.00042105
0.000269624
-0.000549827
0.000347147
-0.000697297
0.000435438
-0.000862643
0.000533607
-0.00104423
0.000640159
-0.00123958
0.000753014
-0.00144538
0.000869615
-0.0016577
0.000987126
-0.0018723
0.00110268
-0.00208496
0.00121367
-0.00229193
0.00131799
-0.0024903
0.0014142
-0.00267821
0.00150167
-0.00285499
0.00158049
-0.00302109
0.00165135
-0.00317787
0.00171543
-0.00332733
0.0017741
-0.00347182
0.00182883
-0.00361375
0.00188097
-0.00375537
0.00193169
-0.00389866
0.00198199
-0.00404506
-0.00419691
0.00203232
2.2627e-06
-4.17168e-06
9.75125e-06
-2.48222e-05
2.34098e-05
-5.92473e-05
4.4228e-05
-0.000108692
7.32076e-05
-0.000174418
0.000111308
-0.000257584
0.000159374
-0.000359145
0.000218039
-0.000479714
0.000287615
-0.000619403
0.000367983
-0.000777665
0.000458489
-0.000953149
0.000557883
-0.00114363
0.000664312
-0.00134601
0.000775402
-0.00155647
0.000888418
-0.00177072
0.0010005
-0.00198438
0.00110895
-0.0021934
0.00121147
-0.00239445
0.00130641
-0.00258524
0.00139285
-0.00276466
0.00147066
-0.00293279
0.00154032
-0.00309075
0.00160285
-0.0032404
0.00165956
-0.00338404
0.00171187
-0.00352412
0.00176113
-0.00366301
0.00180857
-0.00380281
0.00185517
-0.00394526
0.00190172
-0.00409162
-0.00424375
0.00194856
2.5179e-06
-6.68958e-06
1.07567e-05
-3.30609e-05
2.56619e-05
-7.41525e-05
4.82119e-05
-0.000131242
7.93736e-05
-0.000205579
0.000120036
-0.000298247
0.000170924
-0.000410033
0.000232493
-0.000541283
0.000304814
-0.000691725
0.000387468
-0.000860318
0.000479457
-0.00104514
0.00057918
-0.00124335
0.000684474
-0.0014513
0.000792743
-0.00166474
0.000901171
-0.00187915
0.00100699
-0.0020902
0.00110775
-0.00229416
0.00120155
-0.00248826
0.00128723
-0.00267091
0.00136435
-0.00284178
0.0014332
-0.00300164
0.0014946
-0.00315215
0.00154975
-0.00329555
0.00160002
-0.00343431
0.00164678
-0.00357088
0.00169127
-0.00370751
0.00173454
-0.00384607
0.0017774
-0.00398812
0.00182047
-0.00413468
-0.00428723
0.00186395
2.78246e-06
-9.47203e-06
1.17893e-05
-4.20678e-05
2.79561e-05
-9.03193e-05
5.22349e-05
-0.000155521
8.55383e-05
-0.000238883
0.000128661
-0.000341369
0.00018218
-0.000463552
0.000246344
-0.000605447
0.000320957
-0.000766338
0.000405283
-0.000944644
0.000497986
-0.00113784
0.000597143
-0.00134251
0.000700337
-0.0015545
0.000804836
-0.00176923
0.000907844
-0.00198215
0.00100677
-0.00218913
0.00109951
-0.0023869
0.0011846
-0.00257335
0.00126133
-0.00274764
0.00132971
-0.00291016
0.00139037
-0.0030623
0.00144438
-0.00320616
0.00149302
-0.0033442
0.00153766
-0.00347895
0.00157956
-0.00361279
0.00161982
-0.00374776
0.00165932
-0.00388557
0.0016987
-0.00402751
0.00173845
-0.00417443
-0.00432744
0.00177866
3.05453e-06
-1.25266e-05
1.28408e-05
-5.18541e-05
3.02716e-05
-0.00010775
5.62563e-05
-0.000181506
9.16327e-05
-0.000274259
0.000137076
-0.000386812
0.000192989
-0.000519465
0.000259388
-0.000671846
0.00033579
-0.000842741
0.000421138
-0.00102999
0.000513773
-0.00123048
0.000611495
-0.00144023
0.000711701
-0.0016547
0.000811614
-0.00186915
0.000908548
-0.00207909
0.00100018
-0.00228076
0.00108479
-0.0024715
0.00116134
-0.0026499
0.00122958
-0.00281588
0.00128989
-0.00297047
0.00134315
-0.00311557
0.00139058
-0.00325358
0.00143349
-0.00338711
0.00147317
-0.00351863
0.00151075
-0.00365037
0.00154719
-0.0037842
0.0015832
-0.00392158
0.00161929
-0.0040636
0.00165582
-0.00421095
-0.00436443
0.00169281
3.332e-06
-1.58586e-05
1.3902e-05
-6.2424e-05
3.25856e-05
-0.000126434
6.02325e-05
-0.000209152
9.75839e-05
-0.000311611
0.000145171
-0.000434399
0.000203198
-0.000577493
0.000271427
-0.000740074
0.000349077
-0.000920391
0.000434775
-0.00111569
0.000526571
-0.00132227
0.000622041
-0.0015357
0.000718473
-0.00175113
0.00081313
-0.0019638
0.000903519
-0.00216948
0.000987645
-0.00236489
0.00106418
-0.00254804
0.00113254
-0.00271826
0.00119284
-0.00287618
0.00124577
-0.00302339
0.00129239
-0.00316219
0.00133397
-0.00329517
0.00137181
-0.00342494
0.00140708
-0.0035539
0.00144078
-0.00368407
0.0014737
-0.00381712
0.00150642
-0.0039543
0.00153934
-0.00409652
0.00157271
-0.00424432
-0.00439822
0.0016065
3.61246e-06
-1.9471e-05
1.49624e-05
-7.37739e-05
3.48737e-05
-0.000146345
6.41173e-05
-0.000238396
0.000103317
-0.00035081
0.000152836
-0.000483918
0.000212659
-0.000637315
0.000282276
-0.000809691
0.000360608
-0.000998723
0.000445984
-0.00120107
0.0005362
-0.00141249
0.000628673
-0.00162817
0.000720661
-0.00184312
0.000809546
-0.00205269
0.000893094
-0.00225302
0.00096967
-0.00244147
0.00103836
-0.00261672
0.00109896
-0.00277887
0.00115193
-0.00292914
0.00119815
-0.00306962
0.00123883
-0.00320286
0.00127521
-0.00333156
0.00130853
-0.00345826
0.00133982
-0.00358519
0.00136996
-0.00371421
0.00139959
-0.00384675
0.00142916
-0.00398388
0.00145899
-0.00412634
0.00148923
-0.00427456
-0.00442882
0.00151982
3.89327e-06
-2.33643e-05
1.60111e-05
-8.58918e-05
3.71099e-05
-0.000167444
6.78635e-05
-0.00026915
0.000108756
-0.000391703
0.000159964
-0.000535126
0.000221229
-0.000698581
0.000291767
-0.000880229
0.000370204
-0.00107716
0.000454599
-0.00128546
0.000542546
-0.00150044
0.000631366
-0.00171699
0.000718367
-0.00193012
0.000801114
-0.00213544
0.000877681
-0.00232959
0.00094681
-0.00251059
0.00100797
-0.00267789
0.00106133
-0.00283222
0.00110756
-0.00297538
0.00114774
-0.0031098
0.00118308
-0.0032382
0.00121482
-0.00336329
0.00124406
-0.0034875
0.00127173
-0.00361286
0.00129854
-0.00374102
0.00132503
-0.00387323
0.00135155
-0.0040104
0.00137832
-0.00415311
0.00140545
-0.00430169
-0.00445622
0.00143285
4.17158e-06
-2.75359e-05
1.70365e-05
-9.87567e-05
3.92677e-05
-0.000189675
7.14232e-05
-0.000301305
0.000113828
-0.000434108
0.00016645
-0.000587748
0.000228782
-0.000760912
0.000299756
-0.000951204
0.000377725
-0.00115513
0.000460511
-0.00136825
0.000545562
-0.00158549
0.000630175
-0.0018016
0.000711769
-0.00201172
0.000788155
-0.00221182
0.000857737
-0.00239917
0.000919635
-0.00257249
0.000973676
-0.00273193
0.0010203
-0.00287885
0.0010604
-0.00301548
0.00109512
-0.00314452
0.00112568
-0.00326876
0.00115323
-0.00339084
0.00117876
-0.00351302
0.00120305
-0.00363716
0.00122672
-0.00376469
0.00125017
-0.00389669
0.00127369
-0.00403392
0.00129743
-0.00417685
0.00132145
-0.00432571
-0.00448041
0.00134565
4.4444e-06
-3.19803e-05
1.80268e-05
-0.000112339
4.13205e-05
-0.000212969
7.47494e-05
-0.000334734
0.000118461
-0.00047782
0.000172201
-0.000641487
0.000235202
-0.000823913
0.000306124
-0.00102213
0.000383066
-0.00123207
0.00046366
-0.00144884
0.000545266
-0.00166709
0.00062522
-0.00188156
0.000701114
-0.00208761
0.000771039
-0.00228175
0.000833746
-0.00246188
0.00088871
-0.00262746
0.00093607
-0.00277929
0.0009765
-0.00291928
0.00101102
-0.00305
0.00104081
-0.00317431
0.00106705
-0.003295
0.00109078
-0.00341457
0.00111287
-0.00353511
0.00113399
-0.00365828
0.00115463
-0.00378533
0.00117512
-0.00391718
0.00119568
-0.00405447
0.0012164
-0.00419757
0.00123731
-0.00434662
-0.00450139
0.00125829
4.70861e-06
-3.66889e-05
1.89698e-05
-0.0001266
4.32416e-05
-0.00023724
7.77969e-05
-0.000369289
0.00012259
-0.000522613
0.000177131
-0.000696029
0.000240394
-0.000887176
0.00031078
-0.00109251
0.000386164
-0.00130745
0.000464039
-0.00152672
0.000541732
-0.00174479
0.00061668
-0.00195651
0.000686693
-0.00215763
0.000750166
-0.00234522
0.000806195
-0.00251791
0.000854577
-0.00267584
0.000895716
-0.00282043
0.000930461
-0.00295402
0.00095991
-0.00307945
0.000985231
-0.00319963
0.00100752
-0.00331729
0.00102773
-0.00343478
0.0010466
-0.00355398
0.00106469
-0.00367637
0.0010824
-0.00380303
0.00109997
-0.00393476
0.00111758
-0.00407208
0.00113528
-0.00421528
0.00115308
-0.00436442
-0.00451916
0.00117084
4.96109e-06
-4.165e-05
1.98538e-05
-0.000141493
4.50056e-05
-0.000262392
8.05231e-05
-0.000404807
0.000126154
-0.000568244
0.000181168
-0.000751043
0.000244284
-0.000950292
0.000313663
-0.00116189
0.000386997
-0.00138079
0.000461686
-0.0016014
0.000535085
-0.00181818
0.000604779
-0.0020262
0.000668831
-0.00222168
0.000725952
-0.00240234
0.000775561
-0.00256752
0.000817744
-0.00271802
0.00085312
-0.0028558
0.000882656
-0.00298356
0.000907483
-0.00310428
0.000928726
-0.00322087
0.000947394
-0.00333596
0.000964318
-0.0034517
0.000980131
-0.0035698
0.000995292
-0.00369153
0.00101011
-0.00381785
0.0010248
-0.00394945
0.00103947
-0.00408674
0.00105415
-0.00422996
0.00106883
-0.00437909
-0.00453369
0.00108337
5.19872e-06
-4.68487e-05
2.06671e-05
-0.000156961
4.65885e-05
-0.000288314
8.28895e-05
-0.000441108
0.000129101
-0.000614456
0.000184253
-0.000806194
0.000246817
-0.00101286
0.000314743
-0.00122982
0.000385579
-0.00145162
0.000456684
-0.00167251
0.00052549
-0.00188699
0.000589774
-0.00209048
0.000647873
-0.00227978
0.000698808
-0.00245327
0.0007423
-0.00261101
0.00077868
-0.0027544
0.00080873
-0.00288585
0.000833492
-0.00300832
0.00085409
-0.00312487
0.000871583
-0.00323837
0.000886881
-0.00335126
0.000900702
-0.00346552
0.000913578
-0.00358267
0.000925882
-0.00370383
0.000937862
-0.00382983
0.000949674
-0.00396126
0.0009614
-0.00409847
0.000973061
-0.00424162
0.000984612
-0.00439064
-0.00454501
0.000995924
5.41846e-06
-5.22672e-05
2.1399e-05
-0.000172942
4.79682e-05
-0.000314883
8.4862e-05
-0.000478002
0.000131389
-0.000660984
0.00018634
-0.000861145
0.000247961
-0.00107448
0.000314017
-0.00129587
0.000381958
-0.00151957
0.000449149
-0.0017397
0.000513145
-0.00195099
0.000571945
-0.00214928
0.000624168
-0.002332
0.000669135
-0.00249824
0.000706837
-0.00264871
0.000737805
-0.00278537
0.000762939
-0.00291099
0.000783316
-0.0030287
0.000800022
-0.00314158
0.000814037
-0.00325238
0.000826166
-0.00336339
0.000837025
-0.00347638
0.000847052
-0.0035927
0.000856548
-0.00371333
0.000865707
-0.00383899
0.00087465
-0.0039702
0.000883436
-0.00410726
0.000892068
-0.00425025
0.00090049
-0.00439907
-0.0045531
0.00090858
5.61743e-06
-5.78846e-05
2.20393e-05
-0.000189364
4.91251e-05
-0.000341969
8.64117e-05
-0.000515288
0.000132984
-0.000707556
0.000187402
-0.000915563
0.000247705
-0.00113478
0.000311511
-0.00135968
0.000376213
-0.00158427
0.000439228
-0.00180272
0.00049827
-0.00201003
0.00055158
-0.00220259
0.000598062
-0.00237848
0.000637315
-0.0025375
0.000669562
-0.00268096
0.000695494
-0.0028113
0.000716088
-0.00293158
0.000732419
-0.00304503
0.000745519
-0.00315468
0.000756278
-0.00326314
0.000765398
-0.00337251
0.000773399
-0.00348438
0.00078064
-0.00359994
0.00078736
-0.00372005
0.000793712
-0.00384535
0.000799787
-0.00397628
0.000805628
-0.0041131
0.000811224
-0.00425585
0.000816516
-0.00440436
-0.00455797
0.000821388
5.79297e-06
-6.36775e-05
2.25792e-05
-0.00020615
5.00426e-05
-0.000369432
8.75159e-05
-0.000552762
0.000133862
-0.000753902
0.000187424
-0.000969124
0.000246059
-0.00119341
0.000307274
-0.0014209
0.000368447
-0.00164544
0.000427088
-0.00186136
0.0004811
-0.00206404
0.000528974
-0.00225047
0.000569891
-0.0024194
0.000603703
-0.00257131
0.000630828
-0.00270808
0.000652077
-0.00283255
0.000668466
-0.00294797
0.000681048
-0.00305761
0.000690781
-0.00316441
0.000698461
-0.00327082
0.000704696
-0.00337874
0.000709918
-0.0034896
0.000714417
-0.00360444
0.000718382
-0.00372401
0.000721932
-0.0038489
0.000725138
-0.00397948
0.000728026
-0.00411599
0.000730583
-0.00425841
0.000732742
-0.00440652
-0.00455963
0.0007344
5.94262e-06
-6.96202e-05
2.30109e-05
-0.000223218
5.07067e-05
-0.000397128
8.81573e-05
-0.000590212
0.00013401
-0.000799755
0.000186406
-0.00102152
0.000243051
-0.00125006
0.000301377
-0.00147922
0.000358786
-0.00170285
0.000412914
-0.00191548
0.000461874
-0.002113
0.000504413
-0.00229301
0.000539971
-0.00245496
0.000568624
-0.00259996
0.000590949
-0.00273041
0.000607839
-0.00284944
0.000620323
-0.00296046
0.000629406
-0.0030667
0.00063597
-0.00317098
0.000640715
-0.00327557
0.000644159
-0.00338219
0.000646659
-0.0034921
0.000648447
-0.00360623
0.00064967
-0.00372524
0.00065042
-0.00384965
0.000650751
-0.00397981
0.000650682
-0.00411592
0.000650193
-0.00425792
0.000649218
-0.00440554
-0.00455807
0.000647666
6.06427e-06
-7.56844e-05
2.33278e-05
-0.000240482
5.11073e-05
-0.000424907
8.83254e-05
-0.00062743
0.000133423
-0.000844853
0.000184363
-0.00107246
0.000238725
-0.00130442
0.000293906
-0.0015344
0.000347367
-0.00175631
0.000396899
-0.00196502
0.000440835
-0.00215694
0.000478175
-0.00233035
0.000508599
-0.00248538
0.000532374
-0.00262374
0.000550202
-0.00274824
0.000563028
-0.00286227
0.000571867
-0.00296929
0.000577666
-0.00307249
0.000581221
-0.00317453
0.000583144
-0.00327749
0.000583871
-0.00338291
0.000583692
-0.00349192
0.000582789
-0.00360532
0.000581278
-0.00372373
0.000579227
-0.00384759
0.000576678
-0.00397726
0.000573644
-0.00411288
0.000570103
-0.00425438
0.000565992
-0.00440143
-0.00455332
0.000561236
6.15612e-06
-8.18406e-05
2.3525e-05
-0.000257851
5.12372e-05
-0.00045262
8.80156e-05
-0.000664209
0.000132109
-0.000888946
0.00018132
-0.00112167
0.000233141
-0.00135624
0.000284963
-0.00158622
0.000334341
-0.00180569
0.000379239
-0.00200991
0.000418219
-0.00219592
0.000450523
-0.00236265
0.000476045
-0.0025109
0.000495216
-0.00264291
0.00050883
-0.00276185
0.000517856
-0.00287129
0.000523276
-0.00297471
0.000525969
-0.00307519
0.000526646
-0.00317521
0.000525836
-0.00327668
0.000523901
-0.00338098
0.000521074
-0.0034891
0.000517497
-0.00360175
0.000513254
-0.00371948
0.0005084
-0.00384274
0.000502967
-0.00397183
0.000496962
-0.00410688
0.000490363
-0.00424778
0.000483112
-0.00439418
-0.00454536
0.000475158
6.21671e-06
-8.80573e-05
2.35989e-05
-0.000275233
5.10927e-05
-0.000480113
8.7229e-05
-0.000700345
0.00013008
-0.000931797
0.000177316
-0.00116891
0.00022637
-0.00140529
0.000274661
-0.00163452
0.000319863
-0.00185089
0.00036013
-0.00205018
0.000394253
-0.00223004
0.0004217
-0.0023901
0.000442557
-0.00253176
0.000457386
-0.00265774
0.000467045
-0.00277151
0.000472503
-0.00287675
0.000474697
-0.00297691
0.000474433
-0.00307492
0.000472339
-0.00317311
0.000468866
-0.00327321
0.000464312
-0.00337643
0.000458861
-0.00348364
0.000452618
-0.0035955
0.000445648
-0.00371251
0.000437989
-0.00383508
0.000429665
-0.00396351
0.000420683
-0.0040979
0.000411018
-0.00423811
0.000400622
-0.00438378
-0.00453421
0.00038947
6.24496e-06
-9.43022e-05
2.35474e-05
-0.000292536
5.06735e-05
-0.000507239
8.59726e-05
-0.000735644
0.000127359
-0.000973183
0.000172398
-0.00121395
0.00021849
-0.00145139
0.000263117
-0.00167914
0.00030409
-0.00189186
0.000339765
-0.00208586
0.000369154
-0.00225943
0.000391934
-0.00241288
0.000408357
-0.00254818
0.00041909
-0.00266847
0.000425026
-0.00277745
0.000427121
-0.00287885
0.000426255
-0.00297604
0.000423157
-0.00307182
0.000418378
-0.00316833
0.000412298
-0.00326713
0.000405158
-0.00336929
0.000397101
-0.00347559
0.000388202
-0.00358661
0.000378507
-0.00370282
0.000368041
-0.00382462
0.000356821
-0.00395229
0.000344852
-0.00408593
0.000332113
-0.00422537
0.000318562
-0.00437023
-0.00451984
0.000304192
6.24017e-06
-0.000100542
2.337e-05
-0.000309665
4.99822e-05
-0.000533852
8.42581e-05
-0.00076992
0.000123974
-0.0010129
0.000166618
-0.00125659
0.00020959
-0.00149436
0.000250454
-0.00172001
0.000287181
-0.00192859
0.000318328
-0.002117
0.000343122
-0.00228422
0.00036143
-0.00243119
0.000373643
-0.00256039
0.000380506
-0.00267533
0.000382932
-0.00277987
0.000381842
-0.00287776
0.000378055
-0.00297226
0.000372226
-0.003066
0.000364831
-0.00316094
0.000356188
-0.00325848
0.000346489
-0.00335959
0.000335841
-0.00346494
0.000324295
-0.00357506
0.000311878
-0.0036904
0.000298606
-0.00381134
0.000284489
-0.00393817
0.000269523
-0.00407096
0.000253689
-0.00420954
0.000236965
-0.00435351
-0.0045022
0.000219327
6.202e-06
-0.000106744
2.30671e-05
-0.00032653
4.90243e-05
-0.000559809
8.21018e-05
-0.000802998
0.000119961
-0.00105076
0.000160038
-0.00129667
0.000199759
-0.00153408
0.000236795
-0.00175704
0.000269286
-0.00196108
0.000295993
-0.00214371
0.000316343
-0.00230457
0.000330373
-0.00244522
0.00033859
-0.00256861
0.000341793
-0.00267854
0.000340894
-0.00277897
0.000336773
-0.00287363
0.000330184
-0.00296567
0.000321708
-0.00305752
0.000311755
-0.00315099
0.000300585
-0.00324731
0.00028835
-0.00334735
0.000275124
-0.00345171
0.00026094
-0.00356088
0.00024581
-0.00367527
0.000229739
-0.00379527
0.000212729
-0.00392116
0.000194768
-0.004053
0.000175821
-0.00419059
0.00015586
-0.00433355
-0.00448124
0.000134896
6.13046e-06
-0.000112875
2.2641e-05
-0.000343041
4.78079e-05
-0.000584976
7.95239e-05
-0.000834714
0.000115359
-0.00108659
0.000152721
-0.00133403
0.000189091
-0.00157045
0.000222263
-0.00179021
0.000250554
-0.00198937
0.000272925
-0.00216608
0.000288989
-0.00232064
0.000298931
-0.00245516
0.000303352
-0.00257303
0.000303084
-0.00267827
0.000299026
-0.00277491
0.000292008
-0.00286662
0.000282716
-0.00295637
0.000271664
-0.00304647
0.000259199
-0.00313852
0.000245534
-0.00323365
0.000230782
-0.0033326
0.000214993
-0.00343592
0.000198182
-0.00354407
0.000180348
-0.00365744
0.000161489
-0.00377641
0.000141604
-0.00390127
0.000120681
-0.00403208
9.86766e-05
-0.00416859
7.53498e-05
-0.00431022
-0.00445668
5.07919e-05
6.0259e-06
-0.000118901
2.20947e-05
-0.00035911
4.63433e-05
-0.000609224
7.65477e-05
-0.000864918
0.000110209
-0.00112025
0.000144735
-0.00136856
0.000177679
-0.00160339
0.000206976
-0.00181951
0.000231124
-0.00201352
0.000249275
-0.00218423
0.000261213
-0.00233258
0.000267252
-0.0024612
0.000268063
-0.00257384
0.000264496
-0.0026747
0.000257425
-0.00276784
0.000247625
-0.00285682
0.000235716
-0.00294447
0.000222146
-0.0030329
0.000207209
-0.00312358
0.000191074
-0.00321751
0.000173823
-0.00331535
0.000155485
-0.00341759
0.000136059
-0.00352464
0.000115534
-0.00363691
9.38993e-05
-0.00375478
7.11539e-05
-0.00387853
4.73004e-05
-0.00400822
2.23962e-05
-0.00414369
-3.42442e-06
-0.0042844
-0.00442793
-3.2174e-05
5.88899e-06
-0.00012479
2.14324e-05
-0.000374653
4.46428e-05
-0.000632435
7.3199e-05
-0.000893474
0.000104557
-0.00115161
0.000136148
-0.00140015
0.000165617
-0.00163286
0.00019105
-0.00184494
0.000211127
-0.0020336
0.000225182
-0.00219829
0.000233155
-0.00234055
0.000235465
-0.00246351
0.000232839
-0.00257122
0.000226129
-0.00266799
0.000216173
-0.00275789
0.000203689
-0.00284433
0.000189235
-0.00293001
0.000173199
-0.00301686
0.000155823
-0.00310621
0.000137241
-0.00319893
0.00011751
-0.00329562
9.66385e-05
-0.00339671
7.46127e-05
-0.00350261
5.14095e-05
-0.00361371
2.70106e-05
-0.00373038
1.41038e-06
-0.00385293
-2.53604e-05
-0.00398145
-5.3307e-05
-0.00411574
-8.27263e-05
-0.00425498
-0.0043976
-0.000113056
5.72067e-06
-0.00013051
2.06593e-05
-0.000389592
4.27202e-05
-0.000654496
6.95058e-05
-0.00092026
9.84494e-05
-0.00118056
0.000127027
-0.00142872
0.000152994
-0.00165883
0.000174593
-0.00186654
0.000190685
-0.00204969
0.000200774
-0.00220838
0.000204938
-0.00234471
0.000203686
-0.00246226
0.000197781
-0.00256531
0.000188067
-0.00265828
0.000175339
-0.00274516
0.000160258
-0.00282925
0.000143321
-0.00291307
0.00012486
-0.0029984
0.000105077
-0.00308643
8.40706e-05
-0.00317792
6.18768e-05
-0.00327342
3.84879e-05
-0.00337333
1.38774e-05
-0.003478
-1.1986e-05
-0.00358784
-3.91259e-05
-0.00370324
-6.75455e-05
-0.00382451
-9.72309e-05
-0.00395177
-0.000128193
-0.00408478
-0.000160478
-0.00422269
-0.00436427
-0.000193814
5.52211e-06
-0.000136033
1.97812e-05
-0.000403851
4.05907e-05
-0.000675305
6.54971e-05
-0.000945166
9.19337e-05
-0.00120699
0.000117441
-0.00145423
0.000139897
-0.00168129
0.000157708
-0.00188435
0.000169909
-0.00206189
0.000176164
-0.00221463
0.000176673
-0.00234522
0.000172016
-0.0024576
0.000162977
-0.00255627
0.000150383
-0.00264568
0.000134982
-0.00272976
0.00011738
-0.00281165
9.80128e-05
-0.00289371
7.71663e-05
-0.00297756
5.5002e-05
-0.00306426
3.15921e-05
-0.00315451
6.95251e-06
-0.00324878
-1.8933e-05
-0.00334744
-4.61057e-05
-0.00345083
-7.4609e-05
-0.00355934
-0.000104475
-0.00367337
-0.000135709
-0.00379328
-0.000168292
-0.00391918
-0.000202205
-0.00405086
-0.000237414
-0.00418749
-0.00432781
-0.000273869
5.29475e-06
-0.000141327
1.88047e-05
-0.000417361
3.82702e-05
-0.000694771
6.12028e-05
-0.000968099
8.50569e-05
-0.00123085
0.000107455
-0.00147663
0.000126409
-0.00170024
0.000140491
-0.00189844
0.000148904
-0.0020703
0.000151457
-0.00221718
0.000148457
-0.00234222
0.000140541
-0.00244968
0.000128501
-0.00254423
0.000113138
-0.00263032
9.51534e-05
-0.00271177
7.50944e-05
-0.00279159
5.33457e-05
-0.00287196
3.01465e-05
-0.00295436
5.62506e-06
-0.00303974
-2.01641e-05
-0.00312872
-4.72244e-05
-0.00322172
-7.55892e-05
-0.00331908
-0.000105306
-0.00342111
-0.000136427
-0.00352822
-0.000168996
-0.00364081
-0.000203025
-0.00375925
-0.000238489
-0.00388372
-0.000275339
-0.00401401
-0.000313528
-0.0041493
-0.00428827
-0.000353067
5.04016e-06
-0.000146367
1.77367e-05
-0.000430057
3.57754e-05
-0.000712809
5.66533e-05
-0.000988977
7.78655e-05
-0.00125206
9.71319e-05
-0.0014959
0.000112608
-0.00171572
0.000123029
-0.00190886
0.00012776
-0.00207503
0.000126744
-0.00221617
0.000120377
-0.00233585
0.000109336
-0.00243864
9.4417e-05
-0.00252931
7.6386e-05
-0.00261229
5.58951e-05
-0.00269128
3.34378e-05
-0.00276913
9.34842e-06
-0.00284787
-1.61702e-05
-0.00292884
-4.30188e-05
-0.00301289
-7.1169e-05
-0.00310057
-0.000100633
-0.00319226
-0.000131454
-0.00328826
-0.000163689
-0.00338888
-0.000197403
-0.00349451
-0.00023265
-0.00360556
-0.00026945
-0.00372245
-0.000307776
-0.00384539
-0.000347559
-0.00397423
-0.000388738
-0.00410812
-0.00424568
-0.000431327
4.76007e-06
-0.000151128
1.65845e-05
-0.000441882
3.31232e-05
-0.000729348
5.18787e-05
-0.00100773
7.04049e-05
-0.00127058
8.65329e-05
-0.00151202
9.85668e-05
-0.00172775
0.000105405
-0.0019157
0.000106564
-0.00207619
0.000102107
-0.00221171
9.25056e-05
-0.00232625
7.84686e-05
-0.00242461
6.07799e-05
-0.00251162
4.01712e-05
-0.00259168
1.72436e-05
-0.00266835
-7.56022e-06
-0.00274433
-3.39483e-05
-0.00282148
-6.17576e-05
-0.00290103
-9.09128e-05
-0.00298374
-0.0001214
-0.00307009
-0.000153244
-0.00316042
-0.000186496
-0.003255
-0.000221223
-0.00335415
-0.000257501
-0.00345823
-0.000295396
-0.00356766
-0.000334941
-0.0036829
-0.000376109
-0.00380422
-0.000418817
-0.00393152
-0.00046298
-0.00406395
-0.00420008
-0.000508588
4.45632e-06
-0.000155584
1.53558e-05
-0.000452781
3.03308e-05
-0.000744323
4.69086e-05
-0.00102431
6.27187e-05
-0.00128639
7.57146e-05
-0.00152502
8.4353e-05
-0.00173639
8.76914e-05
-0.00191903
8.53899e-05
-0.00207389
7.76179e-05
-0.00220394
6.49096e-05
-0.00231354
4.79933e-05
-0.00240769
2.76365e-05
-0.00249127
4.53113e-06
-0.00256858
-2.07687e-05
-0.00264305
-4.78697e-05
-0.00271723
-7.65235e-05
-0.00279283
-0.000106595
-0.00287096
-0.000138031
-0.0029523
-0.000170832
-0.00303729
-0.000205032
-0.00312622
-0.000240689
-0.00321935
-0.000277878
-0.00331696
-0.000316687
-0.00341942
-0.000357196
-0.00352716
-0.000399454
-0.00364064
-0.000443439
-0.00376024
-0.000489057
-0.00388591
-0.000536191
-0.00401682
-0.00415147
-0.000584794
4.13085e-06
-0.000159715
1.40582e-05
-0.000462709
2.74153e-05
-0.00075768
4.1772e-05
-0.00103867
5.48488e-05
-0.00129947
6.47308e-05
-0.0015349
7.00292e-05
-0.00174169
6.99563e-05
-0.00191896
6.43057e-05
-0.00206824
5.33403e-05
-0.00219297
3.76453e-05
-0.00229785
1.7959e-05
-0.002388
-4.97323e-06
-0.00246833
-3.04993e-05
-0.00254305
-5.8115e-05
-0.00261544
-8.74709e-05
-0.00268787
-0.000118355
-0.00276194
-0.000150661
-0.00283865
-0.000184353
-0.00291861
-0.000219443
-0.0030022
-0.000255973
-0.00308969
-0.000294006
-0.00318131
-0.000333625
-0.00327734
-0.000374928
-0.00337812
-0.000418013
-0.00348407
-0.000462945
-0.00359571
-0.000509717
-0.00371347
-0.000558225
-0.0038374
-0.000608315
-0.00396673
-0.0040999
-0.000659887
3.78563e-06
-0.0001635
1.26994e-05
-0.000471622
2.43933e-05
-0.000769374
3.64968e-05
-0.00105077
4.68348e-05
-0.00130981
5.36314e-05
-0.0015417
5.56528e-05
-0.00174371
5.22606e-05
-0.00191557
4.33711e-05
-0.00205935
2.93296e-05
-0.00217893
1.0762e-05
-0.00227928
-1.15929e-05
-0.00236565
-3.70149e-05
-0.00244291
-6.48945e-05
-0.00251517
-9.47725e-05
-0.00258556
-0.000126342
-0.0026563
-0.000159424
-0.00272886
-0.000193935
-0.00280414
-0.000229857
-0.00288269
-0.000267211
-0.00296484
-0.000306043
-0.00305085
-0.000346423
-0.00314093
-0.000388439
-0.00323533
-0.000432197
-0.00333436
-0.000477812
-0.00343846
-0.000525374
-0.00354815
-0.000574893
-0.00366395
-0.000626266
-0.00378603
-0.000679294
-0.0039137
-0.00404539
-0.000733809
3.42265e-06
-0.000166923
1.12872e-05
-0.000479487
2.12813e-05
-0.000779368
3.11101e-05
-0.0010606
3.87145e-05
-0.00131741
4.24631e-05
-0.00154545
4.12761e-05
-0.00174252
3.46579e-05
-0.00190895
2.26379e-05
-0.00204733
5.63739e-06
-0.00216193
-1.56976e-05
-0.00225795
-4.06268e-05
-0.00234072
-6.84601e-05
-0.00241508
-9.86298e-05
-0.002485
-0.000130721
-0.00255347
-0.000164464
-0.00262256
-0.000199711
-0.00269361
-0.0002364
-0.00276745
-0.000274525
-0.00284456
-0.000314115
-0.00292525
-0.000355223
-0.00300975
-0.000397919
-0.00309824
-0.000442295
-0.00319095
-0.000488466
-0.00328819
-0.000536562
-0.00339036
-0.0005867
-0.00349801
-0.00063892
-0.00361173
-0.000693123
-0.00373182
-0.000749069
-0.00385776
-0.00398795
-0.000806501
3.04391e-06
-0.000169967
9.82899e-06
-0.000486272
1.80951e-05
-0.000787634
2.56376e-05
-0.00106814
3.05235e-05
-0.0013223
3.12708e-05
-0.00154619
2.695e-05
-0.0017382
1.71863e-05
-0.00189919
2.16792e-06
-0.00203231
-1.7696e-05
-0.00214207
-4.16976e-05
-0.00223395
-6.91127e-05
-0.0023133
-9.92838e-05
-0.00238491
-0.000131685
-0.0024526
-0.000165941
-0.00251921
-0.000201821
-0.00258668
-0.000239201
-0.00265623
-0.000278039
-0.00272861
-0.000318339
-0.00280426
-0.000360138
-0.00288345
-0.000403492
-0.00296639
-0.000448472
-0.00305326
-0.000495173
-0.00314425
-0.000543713
-0.00323965
-0.000594238
-0.00333983
-0.000646892
-0.00344536
-0.000701752
-0.00355687
-0.000758742
-0.00367483
-0.000817584
-0.00379891
-0.00392763
-0.000877907
2.65141e-06
-0.000172618
8.3322e-06
-0.000491953
1.48497e-05
-0.000794152
2.01028e-05
-0.00107339
2.22934e-05
-0.00132449
2.00921e-05
-0.00154399
1.27285e-05
-0.00173084
1.33974e-08
-0.00188647
-1.80099e-05
-0.00201429
-4.06369e-05
-0.00211944
-6.72083e-05
-0.00220737
-9.70257e-05
-0.00228349
-0.000129465
-0.00235247
-0.000164041
-0.00241802
-0.000200419
-0.00248284
-0.000238397
-0.0025487
-0.000277878
-0.00261675
-0.000318834
-0.00268766
-0.000361282
-0.00276181
-0.000405261
-0.00283947
-0.000450832
-0.00292082
-0.000498065
-0.00300602
-0.000547053
-0.00309526
-0.000597919
-0.00318878
-0.000650817
-0.00328694
-0.00070592
-0.00339026
-0.00076335
-0.00349944
-0.000823074
-0.00361511
-0.000884784
-0.0037372
-0.00386444
-0.000947975
2.24729e-06
-0.000174866
6.80406e-06
-0.00049651
1.15596e-05
-0.000798907
1.45278e-05
-0.00107636
1.40527e-05
-0.00132402
8.95979e-06
-0.0015389
-1.37137e-06
-0.00172051
-1.71294e-05
-0.00187071
-3.78927e-05
-0.00199353
-6.31559e-05
-0.00209418
-9.22038e-05
-0.00217833
-0.000124344
-0.00225135
-0.000158986
-0.00231783
-0.000195684
-0.00238133
-0.000234138
-0.00244438
-0.000274179
-0.00250866
-0.000315728
-0.0025752
-0.000358772
-0.00264461
-0.000403336
-0.00271725
-0.000449467
-0.00279334
-0.000497223
-0.00287307
-0.000546678
-0.00295657
-0.000597921
-0.00304402
-0.00065107
-0.00313563
-0.000706288
-0.00323172
-0.000763768
-0.00333278
-0.000823686
-0.00343952
-0.000886074
-0.00355272
-0.000950623
-0.00367266
-0.00379842
-0.00101665
1.83459e-06
-0.0001767
5.25214e-06
-0.000499927
8.23892e-06
-0.000801894
8.9351e-06
-0.00107706
5.83463e-06
-0.00132091
-2.08081e-06
-0.00153098
-1.53467e-05
-0.00170724
-3.39111e-05
-0.00185215
-5.7404e-05
-0.00197003
-8.52203e-05
-0.00206636
-0.000116658
-0.00214689
-0.000151047
-0.00221696
-0.00018783
-0.00228104
-0.000226598
-0.00234256
-0.000267087
-0.00240389
-0.000309152
-0.0024666
-0.000352736
-0.00253162
-0.000397836
-0.00259951
-0.000444487
-0.0026706
-0.000492737
-0.00274509
-0.00054265
-0.00282315
-0.000594295
-0.00290492
-0.00064776
-0.00299056
-0.000703156
-0.00308024
-0.000760641
-0.00317423
-0.000820427
-0.00327299
-0.000882743
-0.0033772
-0.000947711
-0.00348775
-0.00101505
-0.00360531
-0.0037296
-0.00108387
1.41854e-06
-0.000178119
3.68408e-06
-0.000502193
4.9013e-06
-0.000803111
3.34712e-06
-0.0010755
-2.33619e-06
-0.00131523
-1.30457e-05
-0.00152028
-2.91015e-05
-0.00169119
-5.04108e-05
-0.00183084
-7.65262e-05
-0.00194392
-0.000106806
-0.00203608
-0.000140552
-0.00211314
-0.000177118
-0.00218039
-0.000215983
-0.00224218
-0.000256772
-0.00230177
-0.000299254
-0.00236141
-0.000343306
-0.00242254
-0.000388889
-0.00248604
-0.000436013
-0.00255239
-0.000484717
-0.0026219
-0.000535056
-0.00269475
-0.000587093
-0.00277112
-0.000640899
-0.00285112
-0.000696555
-0.0029349
-0.000754165
-0.00302263
-0.000813877
-0.00311452
-0.000875904
-0.00321096
-0.000940521
-0.00331259
-0.00100796
-0.00342031
-0.00107805
-0.00353523
-0.003658
-0.00114965
9.97114e-07
-0.000179116
2.10521e-06
-0.000503301
1.55768e-06
-0.000802564
-2.22538e-06
-0.00107172
-1.04635e-05
-0.00130699
-2.38559e-05
-0.00150688
-4.26342e-05
-0.00167241
-6.6597e-05
-0.00180688
-9.52387e-05
-0.00191528
-0.000127894
-0.00200343
-0.000163869
-0.00207717
-0.000202545
-0.00214172
-0.000243433
-0.00220129
-0.000286195
-0.00225901
-0.000330627
-0.00231698
-0.000376629
-0.00237654
-0.000424176
-0.00243849
-0.000473288
-0.00250328
-0.000524011
-0.00257117
-0.000576404
-0.00264236
-0.000630534
-0.00271699
-0.00068647
-0.00279518
-0.00074429
-0.00287708
-0.000804089
-0.00296283
-0.000865997
-0.00305261
-0.000930212
-0.00314675
-0.00099704
-0.00324576
-0.00106685
-0.0033505
-0.00113962
-0.00346246
-0.00358352
-0.0012141
5.72312e-07
-0.000179688
5.09365e-07
-0.000503238
-1.78557e-06
-0.000800269
-7.77248e-06
-0.00106573
-1.84887e-05
-0.00129628
-3.45046e-05
-0.00149087
-5.59206e-05
-0.00165099
-8.24453e-05
-0.00178035
-0.000113521
-0.0018842
-0.000148465
-0.00196848
-0.000186593
-0.00203904
-0.000227313
-0.002101
-0.00027017
-0.00215843
-0.000314857
-0.00221432
-0.000361196
-0.00227064
-0.000409108
-0.00232863
-0.000458582
-0.00238902
-0.000509646
-0.00245221
-0.000562353
-0.00251846
-0.000616765
-0.00258795
-0.000672953
-0.0026608
-0.000730987
-0.00273715
-0.000790945
-0.00281712
-0.000852912
-0.00290086
-0.000916998
-0.00298853
-0.000983372
-0.00308037
-0.00105234
-0.00317679
-0.00112441
-0.00327843
-0.00119984
-0.00338704
-0.00350614
-0.00127722
8.82191e-08
-0.000179776
-1.08062e-06
-0.000502069
-5.11078e-06
-0.000796239
-1.32596e-05
-0.00105759
-2.64049e-05
-0.00128313
-4.49709e-05
-0.0014723
-6.89391e-05
-0.00162702
-9.7935e-05
-0.00175136
-0.000131355
-0.00185078
-0.000168505
-0.00193133
-0.000208713
-0.00199883
-0.000251414
-0.0020583
-0.000296185
-0.00211366
-0.000342748
-0.00216776
-0.000390951
-0.00222244
-0.000440733
-0.00227885
-0.000492095
-0.00233765
-0.000545073
-0.00239923
-0.000599726
-0.00246381
-0.000656119
-0.00253155
-0.000714328
-0.00260259
-0.000774427
-0.00267705
-0.000836495
-0.00275505
-0.000900614
-0.00283674
-0.000966876
-0.00292226
-0.00103541
-0.00301184
-0.0011065
-0.0031057
-0.00118072
-0.00320421
-0.0012586
-0.00330916
-0.0034259
-0.00133883
-3.23108e-07
-0.000179453
-2.66281e-06
-0.000499729
-8.40996e-06
-0.000790491
-1.86802e-05
-0.00104732
-3.41952e-05
-0.00126762
-5.52358e-05
-0.00145126
-8.16704e-05
-0.00160059
-0.000113048
-0.00171998
-0.000148726
-0.0018151
-0.000188002
-0.00189206
-0.000230218
-0.00195661
-0.000274838
-0.00201368
-0.000321468
-0.00206703
-0.00036986
-0.00211936
-0.000419884
-0.00217241
-0.000471495
-0.00222724
-0.000524704
-0.00228445
-0.000579556
-0.00234438
-0.000636113
-0.00240726
-0.000694447
-0.00247322
-0.000754636
-0.0025424
-0.000816762
-0.00261492
-0.000880907
-0.00269091
-0.000947158
-0.00277049
-0.0010156
-0.00285382
-0.00108635
-0.00294109
-0.00115963
-0.00303243
-0.0012359
-0.00312794
-0.00131568
-0.00322938
-0.0033416
-0.00139998
-7.48687e-07
-0.000178705
-4.23499e-06
-0.000496243
-1.16743e-05
-0.000783052
-2.40219e-05
-0.00103497
-4.18438e-05
-0.0012498
-6.5282e-05
-0.00142782
-9.40975e-05
-0.00157177
-0.000127769
-0.00168631
-0.00016562
-0.00177725
-0.000206943
-0.00185073
-0.000251099
-0.00191246
-0.000297576
-0.0019672
-0.000346013
-0.0020186
-0.000396186
-0.00206919
-0.000447986
-0.00212061
-0.000501382
-0.00217384
-0.000556396
-0.00222943
-0.000613079
-0.0022877
-0.000671498
-0.00234884
-0.000731729
-0.00241299
-0.000793854
-0.00248028
-0.00085796
-0.00255082
-0.000924138
-0.00262473
-0.000992485
-0.00270214
-0.0010631
-0.0027832
-0.00113612
-0.00286807
-0.00121172
-0.00295682
-0.00129033
-0.00304933
-0.00137333
-0.00314638
-0.00325623
-0.0014587
-1.18252e-06
-0.000177522
-5.79446e-06
-0.000491631
-1.48947e-05
-0.000773952
-2.92722e-05
-0.00102059
-4.93361e-05
-0.00122973
-7.5094e-05
-0.00140206
-0.000106205
-0.00154066
-0.000142084
-0.00165043
-0.000182024
-0.00173731
-0.00022532
-0.00180744
-0.000271347
-0.00186643
-0.000319623
-0.00191892
-0.000369812
-0.00196841
-0.000421718
-0.00201729
-0.000475247
-0.00206708
-0.000530385
-0.0021187
-0.00058716
-0.00217266
-0.00064563
-0.00222923
-0.000705865
-0.0022886
-0.000767946
-0.00235091
-0.000831958
-0.00241626
-0.000897992
-0.00248478
-0.000966145
-0.00255658
-0.00103652
-0.00263176
-0.00110925
-0.00271048
-0.00118449
-0.00279283
-0.00126246
-0.00287885
-0.00134307
-0.00296873
-0.00142581
-0.00306364
-0.00316257
-0.00151947
-1.61337e-06
-0.000175909
-7.33507e-06
-0.000485909
-1.80632e-05
-0.000763224
-3.44201e-05
-0.00100423
-5.66592e-05
-0.00120749
-8.4658e-05
-0.00137407
-0.00011798
-0.00150734
-0.000155981
-0.00161243
-0.00019793
-0.00169536
-0.000243123
-0.00176225
-0.000290956
-0.0018186
-0.000340971
-0.00186891
-0.00039286
-0.00191652
-0.000446449
-0.0019637
-0.000501662
-0.00201187
-0.000558495
-0.00206187
-0.000616986
-0.00211417
-0.000677196
-0.00216902
-0.0007392
-0.0022266
-0.000803081
-0.00228703
-0.000868928
-0.00235042
-0.000936834
-0.00241688
-0.0010069
-0.00248651
-0.00107923
-0.00255943
-0.00115396
-0.00263575
-0.00123124
-0.00271555
-0.00131119
-0.0027989
-0.00139382
-0.0028861
-0.00147989
-0.00297757
-0.00307116
-0.0015713
-2.03916e-06
-0.00017387
-8.85219e-06
-0.000479096
-2.11725e-05
-0.000750903
-3.94552e-05
-0.000985951
-6.3801e-05
-0.00118315
-9.39615e-05
-0.0013439
-0.00012941
-0.00147189
-0.000169449
-0.00157239
-0.000213329
-0.00165148
-0.000260347
-0.00171523
-0.00030992
-0.00176902
-0.000361616
-0.00181721
-0.000415152
-0.00186298
-0.000470374
-0.00190847
-0.000527223
-0.00195502
-0.000585704
-0.00200339
-0.000645863
-0.00205401
-0.000707765
-0.00210712
-0.000771489
-0.00216287
-0.000837119
-0.0022214
-0.000904747
-0.00228279
-0.000974468
-0.00234716
-0.00104638
-0.0024146
-0.0011206
-0.00248521
-0.00119726
-0.0025591
-0.00127647
-0.00263633
-0.00135836
-0.00271701
-0.00144309
-0.00280137
-0.00153129
-0.00288938
-0.0029795
-0.00162295
-2.45878e-06
-0.000171411
-1.0342e-05
-0.000471213
-2.42158e-05
-0.00073703
-4.43686e-05
-0.000965799
-7.07508e-05
-0.00115676
-0.000102994
-0.00131166
-0.000140486
-0.0014344
-0.000182481
-0.00153039
-0.000228213
-0.00160575
-0.000276985
-0.00166646
-0.000328234
-0.00171777
-0.000381552
-0.00176389
-0.000436681
-0.00180785
-0.000493486
-0.00185167
-0.000551922
-0.00189659
-0.000612004
-0.00194331
-0.000673782
-0.00199223
-0.000737327
-0.00204357
-0.000802718
-0.00209748
-0.000870045
-0.00215407
-0.000939399
-0.00221344
-0.00101088
-0.00227568
-0.00108458
-0.00234089
-0.00116062
-0.00240917
-0.00123912
-0.0024806
-0.00132019
-0.00255526
-0.00140396
-0.00263325
-0.0014906
-0.00271472
-0.00158043
-0.00279955
-0.00288669
-0.00167323
-2.87121e-06
-0.00016854
-1.18013e-05
-0.000462283
-2.71872e-05
-0.000721644
-4.91518e-05
-0.000943834
-7.74992e-05
-0.00112842
-0.000111745
-0.00127742
-0.000151197
-0.00139495
-0.000195068
-0.00148652
-0.000242575
-0.00155824
-0.000293031
-0.001616
-0.000345893
-0.00166491
-0.000400776
-0.00170901
-0.000457445
-0.00175118
-0.000515781
-0.00179333
-0.000575754
-0.00183661
-0.000637387
-0.00188167
-0.000700735
-0.00192888
-0.00076587
-0.00197844
-0.000832878
-0.00203047
-0.000901847
-0.0020851
-0.000972871
-0.00214241
-0.00104605
-0.0022025
-0.00112148
-0.00226546
-0.00119928
-0.00233137
-0.00127955
-0.00240033
-0.00136242
-0.0024724
-0.00144799
-0.00254767
-0.00153642
-0.00262629
-0.00162787
-0.0027081
-0.00279238
-0.00172219
-3.27546e-06
-0.000165264
-1.32266e-05
-0.000452332
-3.00808e-05
-0.000704789
-5.37972e-05
-0.000920118
-8.40374e-05
-0.00109818
-0.000120206
-0.00124125
-0.000161537
-0.00135362
-0.000207202
-0.00144086
-0.00025641
-0.00150903
-0.000308482
-0.00156393
-0.000362894
-0.0016105
-0.000419284
-0.00165262
-0.000477438
-0.00169303
-0.000537255
-0.00173352
-0.000598714
-0.00177515
-0.000661846
-0.00181854
-0.000726712
-0.00186402
-0.000793387
-0.00191176
-0.000861958
-0.0019619
-0.000932514
-0.00201455
-0.00100515
-0.00206978
-0.00107997
-0.00212768
-0.00115707
-0.00218836
-0.00123656
-0.00225188
-0.00131855
-0.00231834
-0.00140314
-0.0023878
-0.00149046
-0.00246036
-0.00158062
-0.00253612
-0.00167373
-0.00261499
-0.0026964
-0.00176971
-3.67054e-06
-0.000161594
-1.46149e-05
-0.000441387
-3.28915e-05
-0.000686513
-5.8298e-05
-0.000894711
-9.03576e-05
-0.00106612
-0.000128369
-0.00120324
-0.000171498
-0.00131049
-0.00021888
-0.00139348
-0.000269714
-0.0014582
-0.000323333
-0.00151031
-0.000379232
-0.0015546
-0.000437072
-0.00159478
-0.000496657
-0.00163345
-0.000557901
-0.00167227
-0.000620795
-0.00171226
-0.000685376
-0.00175396
-0.000751707
-0.00179768
-0.000819869
-0.0018436
-0.000889947
-0.00189183
-0.000962035
-0.00194246
-0.00103623
-0.00199558
-0.00111263
-0.00205129
-0.00119133
-0.00210965
-0.00127245
-0.00217076
-0.0013561
-0.0022347
-0.00144237
-0.00230153
-0.00153137
-0.00237135
-0.00162323
-0.00244427
-0.00171802
-0.0025202
-0.00259871
-0.00181571
-4.05553e-06
-0.000157538
-1.59636e-05
-0.000429479
-3.56144e-05
-0.000666862
-6.26478e-05
-0.000867678
-9.64529e-05
-0.00103231
-0.000136228
-0.00116346
-0.000181074
-0.00126564
-0.000230094
-0.00134446
-0.000282482
-0.00140581
-0.000337582
-0.00145521
-0.000394906
-0.00149728
-0.000454138
-0.00153555
-0.000515099
-0.00157248
-0.000577718
-0.00160965
-0.000641993
-0.00164798
-0.000707969
-0.00168799
-0.000775713
-0.00172994
-0.000845307
-0.00177401
-0.000916839
-0.00182029
-0.000990402
-0.00186889
-0.00106609
-0.00191989
-0.00114402
-0.00197336
-0.00122427
-0.0020294
-0.00130696
-0.00208807
-0.0013922
-0.00214946
-0.00148009
-0.00221364
-0.00157073
-0.00228071
-0.00166424
-0.00235076
-0.0017607
-0.00242374
-0.0024993
-0.00186011
-4.42953e-06
-0.000153108
-1.72698e-05
-0.000416639
-3.82451e-05
-0.000645887
-6.68408e-05
-0.000839082
-0.000102317
-0.000996836
-0.000143776
-0.001122
-0.000190259
-0.00121916
-0.000240841
-0.00129387
-0.000294712
-0.00135194
-0.000351224
-0.0013987
-0.000409913
-0.00143859
-0.000470478
-0.00147498
-0.00053276
-0.0015102
-0.000596699
-0.00154571
-0.000662303
-0.00158238
-0.000729621
-0.00162067
-0.000798724
-0.00166084
-0.000869694
-0.00170303
-0.000942623
-0.00174736
-0.00101761
-0.00179391
-0.00109474
-0.00184276
-0.00117413
-0.00189398
-0.00125587
-0.00194765
-0.00134007
-0.00200386
-0.00142685
-0.00206269
-0.0015163
-0.00212419
-0.00160853
-0.00218848
-0.00170365
-0.00225564
-0.00180175
-0.00232564
-0.00239819
-0.00190286
-4.79171e-06
-0.000148317
-1.85312e-05
-0.0004029
-4.07795e-05
-0.000623638
-7.08717e-05
-0.00080899
-0.000107944
-0.000959763
-0.000151009
-0.00107894
-0.00019905
-0.00117112
-0.000251117
-0.00124181
-0.000306399
-0.00129666
-0.000364259
-0.00134084
-0.00042425
-0.0013786
-0.000486091
-0.00141314
-0.000549638
-0.00144666
-0.000614843
-0.00148051
-0.000681721
-0.0015155
-0.000750326
-0.00155206
-0.000820732
-0.00159043
-0.000893024
-0.00163074
-0.000967293
-0.00167309
-0.00104364
-0.00171757
-0.00112215
-0.00176424
-0.00120294
-0.00181319
-0.00128612
-0.00186448
-0.00137177
-0.00191821
-0.00146003
-0.00197443
-0.00155098
-0.00203324
-0.00164475
-0.00209471
-0.00174143
-0.00215896
-0.00184114
-0.00222593
-0.00229541
-0.00194391
-5.14129e-06
-0.000143175
-1.97454e-05
-0.000388296
-4.32139e-05
-0.00060017
-7.47359e-05
-0.000777468
-0.000113329
-0.00092117
-0.00015792
-0.00103435
-0.000207441
-0.0011216
-0.000260919
-0.00118833
-0.000317541
-0.00124004
-0.000376683
-0.00128169
-0.000437915
-0.00131737
-0.000500974
-0.00135008
-0.00056573
-0.0013819
-0.000632145
-0.00141409
-0.000700243
-0.0014474
-0.00077008
-0.00148223
-0.000841733
-0.00151878
-0.000915289
-0.00155719
-0.000990842
-0.00159754
-0.00106849
-0.00163992
-0.00114833
-0.0016844
-0.00123047
-0.00173105
-0.00131501
-0.00177994
-0.00140206
-0.00183116
-0.00149173
-0.00188476
-0.00158413
-0.00194083
-0.00167937
-0.00199947
-0.00177757
-0.00206077
-0.00187883
-0.00212467
-0.00219102
-0.00198322
-5.47754e-06
-0.000137698
-2.09105e-05
-0.000372863
-4.55447e-05
-0.000575536
-7.84291e-05
-0.000744583
-0.000118467
-0.000881132
-0.000164506
-0.000988308
-0.000215429
-0.00107067
-0.000270244
-0.00113351
-0.000328136
-0.00118214
-0.000388495
-0.00122133
-0.000450907
-0.00125496
-0.000515126
-0.00128586
-0.000581034
-0.00131599
-0.000648603
-0.00134652
-0.000717864
-0.00137814
-0.000788876
-0.00141121
-0.00086172
-0.00144593
-0.000936484
-0.00148242
-0.00101326
-0.00152076
-0.00109215
-0.00156103
-0.00117326
-0.0016033
-0.00125668
-0.00164763
-0.00134253
-0.00169409
-0.00143091
-0.00174277
-0.00152194
-0.00179373
-0.00161573
-0.00184705
-0.00171239
-0.00190281
-0.00181204
-0.00196112
-0.0019148
-0.00202191
-0.00208508
-0.00202074
-5.79977e-06
-0.000131898
-2.20244e-05
-0.000356638
-4.77689e-05
-0.000549791
-8.19471e-05
-0.000710405
-0.000123355
-0.000839724
-0.000170763
-0.0009409
-0.000223011
-0.00101842
-0.000279089
-0.00107744
-0.000338183
-0.00112305
-0.000399694
-0.00115982
-0.000463224
-0.00119142
-0.000528543
-0.00122055
-0.000595546
-0.00124899
-0.000664214
-0.00127786
-0.000734581
-0.00130778
-0.000806712
-0.00133908
-0.000880689
-0.00137196
-0.000956601
-0.00140651
-0.00103454
-0.00144282
-0.00111462
-0.00148096
-0.00119693
-0.00152099
-0.00128157
-0.00156298
-0.00136867
-0.001607
-0.00145832
-0.00165312
-0.00155065
-0.0017014
-0.00164576
-0.00175193
-0.00174378
-0.00180479
-0.00184482
-0.00186007
-0.00194901
-0.00191771
-0.00197766
-0.00205644
-6.10737e-06
-0.000125791
-2.30853e-05
-0.00033966
-4.98836e-05
-0.000522993
-8.52866e-05
-0.000675002
-0.000127988
-0.000797023
-0.000176687
-0.000892201
-0.000230184
-0.000964928
-0.000287451
-0.00102017
-0.000347678
-0.00106282
-0.000410277
-0.00109722
-0.000474865
-0.00112684
-0.000541225
-0.00115419
-0.000609265
-0.00118095
-0.000678974
-0.00120815
-0.00075039
-0.00123636
-0.000823583
-0.00126589
-0.000898634
-0.00129691
-0.000975636
-0.00132951
-0.00105469
-0.00136377
-0.00113588
-0.00139976
-0.00121933
-0.00143754
-0.00130514
-0.00147717
-0.00139342
-0.00151872
-0.00148428
-0.00156226
-0.00157784
-0.00160785
-0.00167421
-0.00165556
-0.00177352
-0.00170549
-0.00187589
-0.0017577
-0.00198145
-0.00181215
-0.00186882
-0.00209029
-6.39974e-06
-0.000119391
-2.40917e-05
-0.000321968
-5.18862e-05
-0.000495198
-8.84443e-05
-0.000638444
-0.000132363
-0.000753104
-0.000182276
-0.000842288
-0.000236945
-0.000910258
-0.00029533
-0.000961784
-0.000356622
-0.00100153
-0.000420244
-0.0010336
-0.000485828
-0.00106125
-0.000553171
-0.00108684
-0.000622189
-0.00111193
-0.000692881
-0.00113746
-0.000765289
-0.00116395
-0.000839484
-0.0011917
-0.000915551
-0.00122084
-0.000993583
-0.00125148
-0.00107368
-0.00128368
-0.00115594
-0.0013175
-0.00124047
-0.00135301
-0.00132738
-0.00139026
-0.00141677
-0.00142932
-0.00150878
-0.00147025
-0.0016035
-0.00151312
-0.00170107
-0.00155799
-0.0018016
-0.00160495
-0.00190523
-0.00165407
-0.00201209
-0.0017053
-0.00175864
-0.00212227
-6.67634e-06
-0.000112715
-2.5042e-05
-0.000303602
-5.37741e-05
-0.000466466
-9.14172e-05
-0.000600801
-0.000136477
-0.000708044
-0.000187527
-0.000791239
-0.000243293
-0.000854492
-0.000302723
-0.000902353
-0.000365012
-0.000939244
-0.000429593
-0.000969021
-0.000496111
-0.000994734
-0.000564377
-0.00101858
-0.000634316
-0.00104199
-0.000705932
-0.00106584
-0.000779273
-0.00109061
-0.000854411
-0.00111656
-0.000931434
-0.00114382
-0.00101044
-0.00117247
-0.00109152
-0.0012026
-0.00117478
-0.00123424
-0.00126032
-0.00126746
-0.00134827
-0.00130232
-0.00143872
-0.00133887
-0.0015318
-0.00137717
-0.00162763
-0.0014173
-0.00172632
-0.0014593
-0.00182801
-0.00150326
-0.00193283
-0.00154925
-0.00204091
-0.00159722
-0.0016472
-0.00215235
-6.93666e-06
-0.000105778
-2.59348e-05
-0.000284604
-5.55453e-05
-0.000436856
-9.42027e-05
-0.000562144
-0.000140328
-0.000661918
-0.000192437
-0.00073913
-0.000249225
-0.000797704
-0.000309629
-0.000841949
-0.000372847
-0.000876027
-0.000438323
-0.000903545
-0.000505715
-0.000927342
-0.000574843
-0.000949449
-0.000645644
-0.00097119
-0.000718125
-0.00099336
-0.000792339
-0.0010164
-0.000868361
-0.00104053
-0.00094628
-0.0010659
-0.00102619
-0.00109256
-0.00110819
-0.0011206
-0.00119239
-0.00115004
-0.00127889
-0.00118096
-0.0013678
-0.0012134
-0.00145925
-0.00124743
-0.00155334
-0.00128308
-0.00165019
-0.00132044
-0.00174995
-0.00135955
-0.00185272
-0.00140049
-0.00195865
-0.00144332
-0.00206788
-0.00148799
-0.00153457
-0.00218051
-7.18025e-06
-9.85978e-05
-2.67689e-05
-0.000265016
-5.71977e-05
-0.000406427
-9.67983e-05
-0.000522543
-0.000143913
-0.000614804
-0.000197004
-0.00068604
-0.000254739
-0.000739968
-0.000316047
-0.000780642
-0.000380126
-0.000811947
-0.000446434
-0.000837238
-0.000514637
-0.000859139
-0.000584568
-0.000879517
-0.00065617
-0.000899588
-0.000729458
-0.000920073
-0.000804485
-0.00094137
-0.000881331
-0.000963689
-0.000960084
-0.000987145
-0.00104084
-0.00101181
-0.0011237
-0.00103773
-0.00120877
-0.00106497
-0.00129616
-0.00109357
-0.00138598
-0.00112358
-0.00147835
-0.00115506
-0.00157338
-0.00118805
-0.0016712
-0.00122262
-0.00177194
-0.00125881
-0.00187572
-0.0012967
-0.0019827
-0.00133635
-0.002093
-0.0013777
-0.00142083
-0.00220674
-7.40668e-06
-9.11911e-05
-2.7543e-05
-0.000244879
-5.87296e-05
-0.00037524
-9.9202e-05
-0.000482071
-0.00014723
-0.000566776
-0.000201226
-0.000632043
-0.000259835
-0.00068136
-0.000321975
-0.000718502
-0.000386849
-0.000747072
-0.000453923
-0.000770164
-0.000522877
-0.000790185
-0.00059355
-0.000808844
-0.000665894
-0.000827244
-0.000739928
-0.000846039
-0.000815708
-0.000865589
-0.000893316
-0.000886081
-0.000972842
-0.00090762
-0.00105438
-0.000930268
-0.00113804
-0.000954077
-0.00122392
-0.000979093
-0.00131213
-0.00100536
-0.00140279
-0.00103293
-0.00149601
-0.00106184
-0.00159191
-0.00109215
-0.00169063
-0.0011239
-0.00179228
-0.00115715
-0.00189701
-0.00119198
-0.00200495
-0.00122841
-0.00211624
-0.00126641
-0.00130606
-0.002231
-7.61556e-06
-8.35756e-05
-2.82562e-05
-0.000224239
-6.01392e-05
-0.000343357
-0.000101412
-0.000440798
-0.000150276
-0.000517912
-0.000205102
-0.000577217
-0.00026451
-0.000621952
-0.000327412
-0.0006556
-0.000393015
-0.00068147
-0.000460792
-0.000702387
-0.000530433
-0.000720544
-0.000601788
-0.000737489
-0.000674814
-0.000754219
-0.000749533
-0.00077132
-0.000826006
-0.000789115
-0.000904314
-0.000807773
-0.00098455
-0.000827384
-0.00106681
-0.000848007
-0.0011512
-0.000869689
-0.00123782
-0.000892469
-0.00132679
-0.000916392
-0.00141822
-0.000941498
-0.00151223
-0.000967832
-0.00160894
-0.000995439
-0.00170847
-0.00102436
-0.00181097
-0.00105466
-0.00191656
-0.00108639
-0.00202539
-0.00111958
-0.00213759
-0.0011542
-0.00119035
-0.0022533
-7.80654e-06
-7.5769e-05
-2.89075e-05
-0.000203138
-6.14252e-05
-0.00031084
-0.000103426
-0.000398798
-0.000153051
-0.000468287
-0.00020863
-0.000521637
-0.000268764
-0.000561818
-0.000332357
-0.000592007
-0.000398622
-0.000615205
-0.000467039
-0.00063397
-0.000537306
-0.000650277
-0.000609281
-0.000665514
-0.000682927
-0.000680573
-0.000758271
-0.000695977
-0.000835375
-0.000712011
-0.000914322
-0.000728825
-0.000995205
-0.000746501
-0.00107812
-0.00076509
-0.00116318
-0.000784632
-0.00125048
-0.000805167
-0.00134014
-0.000826732
-0.00143227
-0.000849366
-0.001527
-0.000873107
-0.00162444
-0.000897998
-0.00172473
-0.000924079
-0.00182799
-0.000951397
-0.00193437
-0.000980008
-0.002044
-0.00100995
-0.00215704
-0.00104117
-0.00107378
-0.00227361
-7.97931e-06
-6.77897e-05
-2.9496e-05
-0.000181621
-6.25862e-05
-0.000277749
-0.000105243
-0.000356141
-0.000155552
-0.000417978
-0.000211809
-0.00046538
-0.000272595
-0.000501032
-0.000336811
-0.000527791
-0.00040367
-0.000548345
-0.000472662
-0.000564978
-0.000543494
-0.000579445
-0.000616028
-0.000592979
-0.000690234
-0.000606367
-0.000766141
-0.00062007
-0.000843814
-0.000634338
-0.000923337
-0.000649302
-0.0010048
-0.000665034
-0.00108832
-0.000681579
-0.00117397
-0.000698974
-0.00126189
-0.000717253
-0.00135217
-0.00073645
-0.00144494
-0.000756598
-0.00154031
-0.000777735
-0.00163841
-0.000799895
-0.00173938
-0.000823116
-0.00184333
-0.000847441
-0.00195042
-0.000872919
-0.00206079
-0.000899578
-0.00217457
-0.000927384
-0.000956434
-0.00229192
-8.13359e-06
-5.96561e-05
-3.0021e-05
-0.000159734
-6.3621e-05
-0.000244149
-0.000106861
-0.000312901
-0.000157779
-0.00036706
-0.000214637
-0.000408521
-0.000276002
-0.000439667
-0.000340771
-0.000463023
-0.000408159
-0.000480957
-0.000477663
-0.000495474
-0.000548995
-0.000508112
-0.000622028
-0.000519947
-0.000696731
-0.000531663
-0.00077314
-0.000543661
-0.00085132
-0.000556157
-0.000931357
-0.000569265
-0.00101334
-0.000583046
-0.00109738
-0.00059754
-0.00118358
-0.00061278
-0.00127204
-0.000628794
-0.00136288
-0.000645612
-0.00145621
-0.000663265
-0.00155216
-0.000681785
-0.00165085
-0.000701202
-0.00175242
-0.000721551
-0.00185699
-0.000742868
-0.00196471
-0.000765196
-0.00207573
-0.00078856
-0.00219018
-0.000812929
-0.000838397
-0.00230822
-8.26912e-06
-5.1387e-05
-3.04818e-05
-0.000137521
-6.45287e-05
-0.000210102
-0.00010828
-0.00026915
-0.000159729
-0.00031561
-0.000217114
-0.000351136
-0.000278986
-0.000377796
-0.000344237
-0.000397772
-0.000412088
-0.000413106
-0.000482039
-0.000425523
-0.000553811
-0.00043634
-0.000627279
-0.000446479
-0.00070242
-0.000456523
-0.000779268
-0.000466813
-0.000857893
-0.000477533
-0.000938379
-0.000488778
-0.00102082
-0.000500603
-0.00110532
-0.000513039
-0.00119199
-0.000526115
-0.00128093
-0.000539856
-0.00137225
-0.000554288
-0.00146608
-0.000569436
-0.00156254
-0.000585329
-0.00166175
-0.000601993
-0.00176384
-0.000619457
-0.00186896
-0.000637752
-0.00197723
-0.000656917
-0.00208882
-0.000676971
-0.00220386
-0.000697889
-0.000719755
-0.00232251
-8.38568e-06
-4.30013e-05
-3.08778e-05
-0.000115029
-6.53083e-05
-0.000175672
-0.000109497
-0.000224961
-0.000161403
-0.000263704
-0.000219239
-0.000293301
-0.000281544
-0.000315491
-0.000347209
-0.000332107
-0.000415456
-0.000344859
-0.000485791
-0.000355188
-0.00055794
-0.000364192
-0.000631782
-0.000372637
-0.000707297
-0.000381008
-0.000784523
-0.000389587
-0.000863529
-0.000398527
-0.000944402
-0.000407906
-0.00102724
-0.000417767
-0.00111214
-0.00042814
-0.00119921
-0.000439046
-0.00128855
-0.000450507
-0.0013803
-0.000462545
-0.00147455
-0.000475181
-0.00157144
-0.000488438
-0.0016711
-0.000502339
-0.00177364
-0.000516908
-0.00187922
-0.000532172
-0.00198798
-0.000548161
-0.00210006
-0.000564892
-0.0022156
-0.000582344
-0.000600592
-0.00233477
-8.4831e-06
-3.45182e-05
-3.12086e-05
-9.23032e-05
-6.59591e-05
-0.000140922
-0.000110513
-0.000180407
-0.000162799
-0.000211418
-0.00022101
-0.00023509
-0.000283677
-0.000252824
-0.000349686
-0.000266097
-0.000418264
-0.000276282
-0.000488919
-0.000284532
-0.000561381
-0.000291729
-0.000635536
-0.000298483
-0.000711363
-0.00030518
-0.000788904
-0.000312047
-0.000868228
-0.000319202
-0.000949424
-0.00032671
-0.00103259
-0.000334605
-0.00111782
-0.000342909
-0.00120522
-0.00035164
-0.00129491
-0.000360816
-0.00138701
-0.000370454
-0.00148162
-0.000380571
-0.00157887
-0.000391185
-0.00167889
-0.000402315
-0.00178182
-0.000413981
-0.00188779
-0.000426202
-0.00199694
-0.000439006
-0.00210943
-0.000452404
-0.0022254
-0.00046638
-0.000480995
-0.00234499
-8.56122e-06
-2.5957e-05
-3.14737e-05
-6.93908e-05
-6.64804e-05
-0.000105915
-0.000111327
-0.00013556
-0.000163917
-0.000158829
-0.000222428
-0.000176578
-0.000285384
-0.000189869
-0.000351669
-0.000199812
-0.00042051
-0.000207441
-0.000491421
-0.000213621
-0.000564135
-0.000219015
-0.000638539
-0.000224079
-0.000714617
-0.000229102
-0.00079241
-0.000234254
-0.000871989
-0.000239623
-0.000953443
-0.000245257
-0.00103687
-0.000251181
-0.00112236
-0.000257412
-0.00121004
-0.000263965
-0.0013
-0.00027085
-0.00139238
-0.000278083
-0.00148727
-0.000285675
-0.00158481
-0.000293641
-0.00168514
-0.000301994
-0.00178837
-0.000310749
-0.00189465
-0.000319922
-0.00200412
-0.000329532
-0.00211694
-0.000339588
-0.00223324
-0.000350078
-0.000361049
-0.00235319
-8.61992e-06
-1.73371e-05
-3.16728e-05
-4.63379e-05
-6.68719e-05
-7.07157e-05
-0.000111938
-9.04936e-05
-0.000164756
-0.000106011
-0.000223492
-0.000117842
-0.000286664
-0.000126698
-0.000353156
-0.000133321
-0.000422195
-0.000138401
-0.000493298
-0.000142518
-0.000566201
-0.000146112
-0.000640792
-0.000149487
-0.000717058
-0.000152837
-0.00079504
-0.000156272
-0.00087481
-0.000159852
-0.000956458
-0.000163609
-0.00104008
-0.00016756
-0.00112577
-0.000171716
-0.00121365
-0.000176086
-0.00130382
-0.000180679
-0.00139641
-0.000185502
-0.00149151
-0.000190566
-0.00158928
-0.000195879
-0.00168982
-0.00020145
-0.00179328
-0.00020729
-0.00189979
-0.000213408
-0.00200951
-0.000219818
-0.00212257
-0.000226526
-0.00223913
-0.000233523
-0.000240842
-0.00235933
-8.6591e-06
-8.67798e-06
-3.18056e-05
-2.31914e-05
-6.7133e-05
-3.53883e-05
-0.000112345
-4.52812e-05
-0.000165315
-5.30407e-05
-0.000224202
-5.89555e-05
-0.000287518
-6.33816e-05
-0.000354147
-6.66912e-05
-0.000423318
-6.923e-05
-0.000494549
-7.12875e-05
-0.000567578
-7.30836e-05
-0.000642294
-7.4771e-05
-0.000718685
-7.64457e-05
-0.000796793
-7.81634e-05
-0.000876692
-7.99539e-05
-0.000958468
-8.18328e-05
-0.00104222
-8.38087e-05
-0.00112805
-8.5887e-05
-0.00121606
-8.80725e-05
-0.00130637
-9.03692e-05
-0.00139909
-9.27817e-05
-0.00149434
-9.53142e-05
-0.00159225
-9.79713e-05
-0.00169295
-0.000100758
-0.00179656
-0.000103678
-0.00190323
-0.000106738
-0.0020131
-0.000109944
-0.00212633
-0.000113299
-0.00224305
-0.000116798
-0.000120459
-0.00236343
-8.6787e-06
7.16281e-10
-3.18721e-05
2.04182e-09
-6.72637e-05
3.25969e-09
-0.000112549
4.32921e-09
-0.000165595
5.22839e-09
-0.000224557
5.95351e-09
-0.000287945
6.51658e-09
-0.000354643
6.94112e-09
-0.00042388
7.25685e-09
-0.000495175
7.49435e-09
-0.000568266
7.68074e-09
-0.000643045
7.83714e-09
-0.000719499
7.97815e-09
-0.00079767
8.11266e-09
-0.000877633
8.24542e-09
-0.000959474
8.37856e-09
-0.00104329
8.51283e-09
-0.00112919
8.64827e-09
-0.00121727
8.78467e-09
-0.00130765
8.92168e-09
-0.00140044
9.05889e-09
-0.00149576
9.19586e-09
-0.00159374
9.33208e-09
-0.00169451
9.46705e-09
-0.0017982
9.60022e-09
-0.00190494
9.731e-09
-0.0020149
9.85879e-09
-0.00212821
9.98295e-09
-0.00224501
1.01025e-08
1.02144e-08
-0.00236548
-8.6787e-06
8.67942e-06
-3.18721e-05
2.31955e-05
-6.72637e-05
3.53948e-05
-0.000112549
4.52899e-05
-0.000165595
5.30511e-05
-0.000224557
5.89674e-05
-0.000287945
6.33946e-05
-0.000354643
6.67051e-05
-0.00042388
6.92446e-05
-0.000495175
7.13024e-05
-0.000568266
7.3099e-05
-0.000643045
7.47866e-05
-0.000719499
7.64616e-05
-0.00079767
7.81796e-05
-0.000877632
7.99704e-05
-0.000959474
8.18496e-05
-0.00104329
8.38257e-05
-0.00112919
8.59043e-05
-0.00121727
8.809e-05
-0.00130765
9.03871e-05
-0.00140044
9.27998e-05
-0.00149576
9.53325e-05
-0.00159374
9.79899e-05
-0.00169451
0.000100777
-0.0017982
0.000103697
-0.00190494
0.000106758
-0.0020149
0.000109964
-0.00212821
0.000113319
-0.00224501
0.000116819
0.00012048
-0.00236548
-8.65909e-06
1.73385e-05
-3.18056e-05
4.6342e-05
-6.7133e-05
7.07222e-05
-0.000112345
9.05022e-05
-0.000165315
0.000106021
-0.000224202
0.000117854
-0.000287518
0.000126711
-0.000354147
0.000133334
-0.000423318
0.000138416
-0.000494549
0.000142533
-0.000567578
0.000146127
-0.000642294
0.000149503
-0.000718685
0.000152853
-0.000796793
0.000156288
-0.000876692
0.000159869
-0.000958468
0.000163626
-0.00104222
0.000167577
-0.00112805
0.000171733
-0.00121606
0.000176104
-0.00130637
0.000180696
-0.00139909
0.00018552
-0.00149434
0.000190585
-0.00159225
0.000195898
-0.00169295
0.000201469
-0.00179656
0.000207309
-0.00190323
0.000213428
-0.0020131
0.000219838
-0.00212633
0.000226546
-0.00224305
0.000233543
0.000240862
-0.00236343
-8.61991e-06
2.59584e-05
-3.16728e-05
6.93948e-05
-6.68718e-05
0.000105921
-0.000111938
0.000135568
-0.000164756
0.000158839
-0.000223492
0.00017659
-0.000286664
0.000189882
-0.000353156
0.000199826
-0.000422195
0.000207455
-0.000493298
0.000213636
-0.0005662
0.00021903
-0.000640792
0.000224094
-0.000717057
0.000229118
-0.00079504
0.00023427
-0.00087481
0.000239639
-0.000956458
0.000245273
-0.00104008
0.000251198
-0.00112577
0.00025743
-0.00121365
0.000263982
-0.00130382
0.000270868
-0.00139641
0.000278101
-0.00149151
0.000285694
-0.00158928
0.00029366
-0.00168982
0.000302013
-0.00179328
0.000310768
-0.00189979
0.000319942
-0.00200951
0.000329552
-0.00212257
0.000339608
-0.00223913
0.000350098
0.00036107
-0.00235933
-8.56121e-06
3.45196e-05
-3.14736e-05
9.23073e-05
-6.64804e-05
0.000140928
-0.000111327
0.000180415
-0.000163917
0.000211429
-0.000222428
0.000235101
-0.000285383
0.000252837
-0.000351668
0.000266111
-0.00042051
0.000276296
-0.000491421
0.000284547
-0.000564135
0.000291744
-0.000638539
0.000298498
-0.000714617
0.000305196
-0.000792409
0.000312063
-0.000871989
0.000319219
-0.000953442
0.000326727
-0.00103687
0.000334622
-0.00112236
0.000342926
-0.00121004
0.000351658
-0.0013
0.000360834
-0.00139238
0.000370472
-0.00148727
0.000380589
-0.00158481
0.000391204
-0.00168514
0.000402334
-0.00178837
0.000414
-0.00189465
0.000426222
-0.00200412
0.000439026
-0.00211694
0.000452424
-0.00223324
0.0004664
0.000481016
-0.00235319
-8.48309e-06
4.30027e-05
-3.12085e-05
0.000115033
-6.5959e-05
0.000175678
-0.000110513
0.00022497
-0.000162799
0.000263715
-0.00022101
0.000293313
-0.000283677
0.000315504
-0.000349686
0.000332121
-0.000418263
0.000344874
-0.000488918
0.000355202
-0.000561381
0.000364207
-0.000635535
0.000372652
-0.000711363
0.000381024
-0.000788904
0.000389603
-0.000868228
0.000398543
-0.000949423
0.000407922
-0.00103259
0.000417784
-0.00111782
0.000428157
-0.00120522
0.000439064
-0.00129491
0.000450525
-0.001387
0.000462563
-0.00148162
0.0004752
-0.00157887
0.000488457
-0.00167889
0.000502358
-0.00178182
0.000516927
-0.00188779
0.000532191
-0.00199694
0.000548181
-0.00210943
0.000564913
-0.0022254
0.000582365
0.000600613
-0.00234499
-8.38567e-06
5.13884e-05
-3.08778e-05
0.000137525
-6.53082e-05
0.000210109
-0.000109497
0.000269159
-0.000161403
0.000315621
-0.000219239
0.000351148
-0.000281544
0.000377809
-0.000347209
0.000397785
-0.000415456
0.000413121
-0.000485791
0.000425538
-0.00055794
0.000436356
-0.000631782
0.000446494
-0.000707297
0.000456539
-0.000784523
0.000466829
-0.000863529
0.000477549
-0.000944402
0.000488795
-0.00102724
0.00050062
-0.00111214
0.000513056
-0.0011992
0.000526132
-0.00128855
0.000539874
-0.0013803
0.000554306
-0.00147455
0.000569455
-0.00157144
0.000585348
-0.00167109
0.000602012
-0.00177364
0.000619476
-0.00187922
0.000637772
-0.00198798
0.000656937
-0.00210006
0.000676992
-0.0022156
0.000697909
0.000719775
-0.00233477
-8.2691e-06
5.96575e-05
-3.04817e-05
0.000159737
-6.45286e-05
0.000244156
-0.000108279
0.000312909
-0.000159729
0.00036707
-0.000217114
0.000408533
-0.000278985
0.00043968
-0.000344237
0.000463037
-0.000412087
0.000480972
-0.000482039
0.000495489
-0.000553811
0.000508128
-0.000627279
0.000519963
-0.000702419
0.000531679
-0.000779267
0.000543677
-0.000857892
0.000556174
-0.000938379
0.000569282
-0.00102082
0.000583063
-0.00110532
0.000597558
-0.00119199
0.000612797
-0.00128093
0.000628812
-0.00137225
0.00064563
-0.00146608
0.000663284
-0.00156254
0.000681804
-0.00166175
0.000701221
-0.00176384
0.00072157
-0.00186896
0.000742887
-0.00197723
0.000765216
-0.00208882
0.00078858
-0.00220386
0.00081295
0.000838418
-0.00232251
-8.13357e-06
6.77911e-05
-3.00209e-05
0.000181625
-6.36209e-05
0.000277756
-0.000106861
0.000356149
-0.000157778
0.000417988
-0.000214637
0.000465392
-0.000276002
0.000501045
-0.00034077
0.000527805
-0.000408158
0.00054836
-0.000477662
0.000564993
-0.000548995
0.000579461
-0.000622027
0.000592995
-0.000696731
0.000606383
-0.00077314
0.000620086
-0.00085132
0.000634354
-0.000931357
0.000649319
-0.00101334
0.000665051
-0.00109738
0.000681596
-0.00118358
0.000698992
-0.00127204
0.000717271
-0.00136287
0.000736468
-0.00145621
0.000756617
-0.00155216
0.000777753
-0.00165085
0.000799914
-0.00175242
0.000823136
-0.00185699
0.000847461
-0.00196471
0.000872939
-0.00207573
0.000899598
-0.00219018
0.000927404
0.000956455
-0.00230822
-7.97929e-06
7.57703e-05
-2.94959e-05
0.000203141
-6.25861e-05
0.000310846
-0.000105243
0.000398806
-0.000155552
0.000468297
-0.000211809
0.000521649
-0.000272594
0.000561831
-0.00033681
0.00059202
-0.00040367
0.000615219
-0.000472662
0.000633985
-0.000543493
0.000650292
-0.000616027
0.000665529
-0.000690233
0.000680589
-0.00076614
0.000695993
-0.000843813
0.000712028
-0.000923337
0.000728842
-0.0010048
0.000746518
-0.00108831
0.000765107
-0.00117397
0.00078465
-0.00126189
0.000805185
-0.00135217
0.00082675
-0.00144494
0.000849384
-0.00154031
0.000873126
-0.00163841
0.000898017
-0.00173937
0.000924098
-0.00184333
0.000951417
-0.00195042
0.000980028
-0.00206079
0.00100997
-0.00217457
0.00104119
0.0010738
-0.00229192
-7.80652e-06
8.35769e-05
-2.89074e-05
0.000224242
-6.14251e-05
0.000343363
-0.000103426
0.000440806
-0.00015305
0.000517922
-0.00020863
0.000577228
-0.000268763
0.000621964
-0.000332357
0.000655614
-0.000398621
0.000681484
-0.000467038
0.000702401
-0.000537305
0.000720559
-0.000609281
0.000737505
-0.000682927
0.000754234
-0.00075827
0.000771336
-0.000835374
0.000789132
-0.000914322
0.000807789
-0.000995205
0.000827401
-0.00107812
0.000848025
-0.00116318
0.000869706
-0.00125048
0.000892487
-0.00134014
0.00091641
-0.00143227
0.000941516
-0.001527
0.000967851
-0.00162444
0.000995458
-0.00172472
0.00102438
-0.00182799
0.00105468
-0.00193437
0.00108641
-0.002044
0.0011196
-0.00215704
0.00115423
0.00119037
-0.00227361
-7.61553e-06
9.11924e-05
-2.82561e-05
0.000244883
-6.01391e-05
0.000375246
-0.000101411
0.000482079
-0.000150276
0.000566786
-0.000205102
0.000632054
-0.00026451
0.000681372
-0.000327411
0.000718515
-0.000393014
0.000747087
-0.000460791
0.000770179
-0.000530433
0.000790201
-0.000601788
0.000808859
-0.000674813
0.00082726
-0.000749532
0.000846055
-0.000826005
0.000865605
-0.000904314
0.000886098
-0.000984549
0.000907637
-0.00106681
0.000930286
-0.0011512
0.000954095
-0.00123782
0.000979111
-0.00132679
0.00100538
-0.00141822
0.00103295
-0.00151223
0.00106186
-0.00160894
0.00109217
-0.00170847
0.00112392
-0.00181097
0.00115717
-0.00191656
0.001192
-0.00202538
0.00122843
-0.00213759
0.00126643
0.00130608
-0.0022533
-7.40665e-06
9.8599e-05
-2.75429e-05
0.000265019
-5.87294e-05
0.000406433
-9.92017e-05
0.000522551
-0.000147229
0.000614813
-0.000201226
0.000686051
-0.000259834
0.000739981
-0.000321974
0.000780655
-0.000386849
0.000811961
-0.000453923
0.000837253
-0.000522876
0.000859154
-0.000593549
0.000879533
-0.000665893
0.000899604
-0.000739927
0.000920089
-0.000815707
0.000941386
-0.000893315
0.000963706
-0.000972841
0.000987162
-0.00105438
0.00101183
-0.00113804
0.00103775
-0.00122392
0.00106499
-0.00131213
0.00109359
-0.00140279
0.0011236
-0.00149601
0.00115508
-0.00159191
0.00118807
-0.00169063
0.00122263
-0.00179228
0.00125883
-0.00189701
0.00129672
-0.00200495
0.00133637
-0.00211624
0.00137772
0.00142085
-0.002231
-7.18021e-06
0.000105779
-2.67688e-05
0.000284608
-5.71975e-05
0.000436862
-9.6798e-05
0.000562152
-0.000143913
0.000661928
-0.000197003
0.000739142
-0.000254739
0.000797716
-0.000316046
0.000841962
-0.000380126
0.000876041
-0.000446433
0.00090356
-0.000514636
0.000927357
-0.000584567
0.000949464
-0.000656169
0.000971206
-0.000729457
0.000993376
-0.000804484
0.00101641
-0.00088133
0.00104055
-0.000960083
0.00106591
-0.00104084
0.00109258
-0.0011237
0.00112061
-0.00120877
0.00115006
-0.00129616
0.00118098
-0.00138598
0.00121342
-0.00147834
0.00124745
-0.00157338
0.0012831
-0.0016712
0.00132046
-0.00177194
0.00135957
-0.00187572
0.00140051
-0.0019827
0.00144334
-0.00209299
0.00148801
0.00153459
-0.00220673
-6.93662e-06
0.000112716
-2.59347e-05
0.000303606
-5.55451e-05
0.000466472
-9.42023e-05
0.000600809
-0.000140328
0.000708053
-0.000192436
0.00079125
-0.000249224
0.000854505
-0.000309629
0.000902367
-0.000372846
0.000939258
-0.000438322
0.000969036
-0.000505714
0.000994749
-0.000574842
0.00101859
-0.000645643
0.00104201
-0.000718124
0.00106586
-0.000792338
0.00109063
-0.00086836
0.00111657
-0.000946279
0.00114383
-0.00102619
0.00117249
-0.00110819
0.00120261
-0.00119239
0.00123426
-0.00127889
0.00126748
-0.0013678
0.00130234
-0.00145924
0.00133889
-0.00155333
0.00137719
-0.00165019
0.00141732
-0.00174994
0.00145932
-0.00185272
0.00150328
-0.00195865
0.00154927
-0.00206788
0.00159724
0.00164722
-0.00218051
-6.6763e-06
0.000119392
-2.50419e-05
0.000321972
-5.37739e-05
0.000495204
-9.14168e-05
0.000638452
-0.000136477
0.000753113
-0.000187526
0.000842299
-0.000243292
0.000910271
-0.000302722
0.000961797
-0.000365011
0.00100155
-0.000429592
0.00103362
-0.00049611
0.00106127
-0.000564376
0.00108686
-0.000634315
0.00111195
-0.000705931
0.00113747
-0.000779271
0.00116397
-0.00085441
0.00119171
-0.000931433
0.00122086
-0.00101043
0.00125149
-0.00109151
0.00128369
-0.00117477
0.00131752
-0.00126032
0.00135303
-0.00134826
0.00139028
-0.00143872
0.00142934
-0.0015318
0.00147027
-0.00162762
0.00151314
-0.00172632
0.00155801
-0.00182801
0.00160497
-0.00193283
0.00165409
-0.0020409
0.00170532
0.00175867
-0.00215235
-6.3997e-06
0.000125792
-2.40916e-05
0.000339663
-5.18859e-05
0.000522998
-8.84439e-05
0.00067501
-0.000132363
0.000797032
-0.000182275
0.000892212
-0.000236945
0.00096494
-0.000295329
0.00102018
-0.000356621
0.00106284
-0.000420243
0.00109724
-0.000485826
0.00112685
-0.000553169
0.0011542
-0.000622188
0.00118096
-0.000692879
0.00120816
-0.000765287
0.00123638
-0.000839482
0.00126591
-0.000915549
0.00129692
-0.000993581
0.00132953
-0.00107368
0.00136379
-0.00115594
0.00139978
-0.00124047
0.00143756
-0.00132737
0.00147719
-0.00141677
0.00151874
-0.00150878
0.00156228
-0.0016035
0.00160787
-0.00170107
0.00165558
-0.0018016
0.00170551
-0.00190523
0.00175772
-0.00201209
0.00181218
0.00186885
-0.00212227
-6.10732e-06
0.000131899
-2.30852e-05
0.000356641
-4.98833e-05
0.000549796
-8.52862e-05
0.000710413
-0.000127987
0.000839733
-0.000176686
0.000940911
-0.000230183
0.00101844
-0.00028745
0.00107745
-0.000347677
0.00112306
-0.000410276
0.00115984
-0.000474864
0.00119144
-0.000541224
0.00122056
-0.000609264
0.001249
-0.000678972
0.00127787
-0.000750389
0.00130779
-0.000823581
0.0013391
-0.000898633
0.00137197
-0.000975635
0.00140653
-0.00105468
0.00144284
-0.00113588
0.00148098
-0.00121933
0.00152101
-0.00130514
0.001563
-0.00139342
0.00160702
-0.00148428
0.00165314
-0.00157784
0.00170142
-0.00167421
0.00175195
-0.00177352
0.00180481
-0.00187589
0.00186009
-0.00198145
0.00191774
0.00197768
-0.00209029
-5.79972e-06
0.000137699
-2.20242e-05
0.000372866
-4.77686e-05
0.000575541
-8.19466e-05
0.000744591
-0.000123354
0.000881141
-0.000170762
0.000988319
-0.00022301
0.00107068
-0.000279087
0.00113353
-0.000338181
0.00118216
-0.000399693
0.00122135
-0.000463223
0.00125497
-0.000528542
0.00128588
-0.000595544
0.00131601
-0.000664212
0.00134654
-0.000734579
0.00137816
-0.000806711
0.00141123
-0.000880687
0.00144595
-0.0009566
0.00148244
-0.00103454
0.00152078
-0.00111462
0.00156105
-0.00119692
0.00160331
-0.00128157
0.00164764
-0.00136867
0.00169411
-0.00145832
0.00174279
-0.00155065
0.00179375
-0.00164576
0.00184707
-0.00174378
0.00190283
-0.00184482
0.00196114
-0.00194901
0.00202193
0.00208511
-0.00205644
-5.47748e-06
0.000143176
-2.09103e-05
0.000388299
-4.55444e-05
0.000600175
-7.84285e-05
0.000777475
-0.000118467
0.000921179
-0.000164505
0.00103436
-0.000215428
0.00112161
-0.000270243
0.00118834
-0.000328135
0.00124005
-0.000388494
0.00128171
-0.000450906
0.00131738
-0.000515124
0.0013501
-0.000581032
0.00138191
-0.000648602
0.00141411
-0.000717862
0.00144742
-0.000788875
0.00148224
-0.000861718
0.0015188
-0.000936482
0.0015572
-0.00101326
0.00159756
-0.00109215
0.00163994
-0.00117325
0.00168442
-0.00125668
0.00173107
-0.00134252
0.00177996
-0.00143091
0.00183117
-0.00152194
0.00188478
-0.00161573
0.00194085
-0.00171239
0.00199949
-0.00181204
0.00206079
-0.0019148
0.00212469
0.00219104
-0.00202073
-5.14123e-06
0.000148318
-1.97452e-05
0.000402903
-4.32135e-05
0.000623643
-7.47354e-05
0.000808997
-0.000113328
0.000959772
-0.000157919
0.00107895
-0.00020744
0.00117113
-0.000260918
0.00124182
-0.000317539
0.00129667
-0.000376682
0.00134085
-0.000437913
0.00137861
-0.000500973
0.00141316
-0.000565728
0.00144667
-0.000632144
0.00148053
-0.000700241
0.00151552
-0.000770078
0.00155208
-0.000841731
0.00159045
-0.000915287
0.00163076
-0.00099084
0.00167311
-0.00106849
0.00171759
-0.00114833
0.00176426
-0.00123046
0.0018132
-0.001315
0.0018645
-0.00140205
0.00191823
-0.00149173
0.00197445
-0.00158413
0.00203326
-0.00167937
0.00209473
-0.00177757
0.00215898
-0.00187883
0.00222595
0.00229543
-0.00198322
-4.79165e-06
0.000153109
-1.8531e-05
0.000416642
-4.07791e-05
0.000645891
-7.08711e-05
0.000839089
-0.000107943
0.000996844
-0.000151007
0.00112201
-0.000199049
0.00121917
-0.000251116
0.00129389
-0.000306397
0.00135195
-0.000364257
0.00139871
-0.000424248
0.0014386
-0.000486089
0.001475
-0.000549636
0.00151022
-0.000614841
0.00154573
-0.000681719
0.0015824
-0.000750324
0.00162068
-0.00082073
0.00166085
-0.000893022
0.00170305
-0.000967291
0.00174738
-0.00104363
0.00179393
-0.00112215
0.00184277
-0.00120294
0.001894
-0.00128611
0.00194767
-0.00137177
0.00200388
-0.00146002
0.00206271
-0.00155098
0.00212421
-0.00164474
0.0021885
-0.00174143
0.00225567
-0.00184114
0.00232566
0.00239821
-0.00194391
-4.42947e-06
0.000157539
-1.72696e-05
0.000429482
-3.82447e-05
0.000666866
-6.68401e-05
0.000867684
-0.000102316
0.00103232
-0.000143775
0.00116347
-0.000190258
0.00126565
-0.00024084
0.00134447
-0.00029471
0.00140582
-0.000351222
0.00145522
-0.000409911
0.00149729
-0.000470476
0.00153556
-0.000532758
0.0015725
-0.000596697
0.00160967
-0.000662301
0.001648
-0.000729619
0.001688
-0.000798721
0.00172996
-0.000869692
0.00177402
-0.000942621
0.00182031
-0.0010176
0.00186891
-0.00109474
0.00191991
-0.00117412
0.00197338
-0.00125587
0.00202942
-0.00134007
0.00208809
-0.00142684
0.00214948
-0.0015163
0.00221366
-0.00160853
0.00228073
-0.00170364
0.00235078
-0.00180175
0.00242376
0.00249932
-0.00190286
-4.05546e-06
0.000161594
-1.59633e-05
0.00044139
-3.5614e-05
0.000686517
-6.26471e-05
0.000894717
-9.64519e-05
0.00106612
-0.000136227
0.00120325
-0.000181072
0.0013105
-0.000230092
0.00139349
-0.000282481
0.00145821
-0.00033758
0.00151032
-0.000394904
0.00155462
-0.000454136
0.0015948
-0.000515097
0.00163346
-0.000577715
0.00167229
-0.000641991
0.00171228
-0.000707967
0.00175398
-0.000775711
0.0017977
-0.000845304
0.00184362
-0.000916836
0.00189184
-0.0009904
0.00194248
-0.00106609
0.0019956
-0.00114401
0.0020513
-0.00122427
0.00210967
-0.00130696
0.00217078
-0.0013922
0.00223472
-0.00148009
0.00230155
-0.00157073
0.00237137
-0.00166424
0.00244429
-0.0017607
0.00252022
0.00259874
-0.00186011
-3.67047e-06
0.000165265
-1.46147e-05
0.000452334
-3.2891e-05
0.000704793
-5.82973e-05
0.000920123
-9.03566e-05
0.00109818
-0.000128368
0.00124126
-0.000171496
0.00135363
-0.000218878
0.00144087
-0.000269712
0.00150905
-0.000323331
0.00156394
-0.00037923
0.00161052
-0.00043707
0.00165264
-0.000496655
0.00169305
-0.000557899
0.00173353
-0.000620793
0.00177517
-0.000685373
0.00181856
-0.000751704
0.00186403
-0.000819866
0.00191178
-0.000889944
0.00196192
-0.000962032
0.00201456
-0.00103623
0.00206979
-0.00111262
0.0021277
-0.00119133
0.00218838
-0.00127245
0.0022519
-0.00135609
0.00231836
-0.00144237
0.00238782
-0.00153137
0.00246038
-0.00162323
0.00253614
-0.00171801
0.00261501
0.00269643
-0.0018157
-3.27538e-06
0.00016854
-1.32263e-05
0.000462285
-3.00803e-05
0.000721647
-5.37964e-05
0.000943839
-8.40362e-05
0.00112842
-0.000120204
0.00127743
-0.000161535
0.00139496
-0.0002072
0.00148653
-0.000256408
0.00155825
-0.00030848
0.00161601
-0.000362891
0.00166493
-0.000419281
0.00170903
-0.000477435
0.0017512
-0.000537252
0.00179335
-0.000598711
0.00183663
-0.000661843
0.00188169
-0.000726709
0.0019289
-0.000793384
0.00197845
-0.000861955
0.00203049
-0.000932511
0.00208512
-0.00100515
0.00214243
-0.00107997
0.00220252
-0.00115706
0.00226548
-0.00123655
0.00233139
-0.00131854
0.00240035
-0.00140314
0.00247242
-0.00149046
0.0025477
-0.00158062
0.00262631
-0.00167373
0.00270812
0.0027924
-0.0017697
-2.87113e-06
0.000171411
-1.1801e-05
0.000471215
-2.71866e-05
0.000737033
-4.91509e-05
0.000965804
-7.7498e-05
0.00115677
-0.000111743
0.00131167
-0.000151195
0.00143441
-0.000195066
0.00153041
-0.000242573
0.00160576
-0.000293029
0.00166647
-0.00034589
0.00171779
-0.000400774
0.00176391
-0.000457442
0.00180787
-0.000515778
0.00185169
-0.000575751
0.0018966
-0.000637384
0.00194332
-0.000700731
0.00199224
-0.000765867
0.00204359
-0.000832875
0.0020975
-0.000901844
0.00215409
-0.000972867
0.00221346
-0.00104604
0.0022757
-0.00112148
0.00234091
-0.00119927
0.00240919
-0.00127955
0.00248062
-0.00136241
0.00255528
-0.00144798
0.00263327
-0.00153642
0.00271474
-0.00162787
0.00279957
0.00288671
-0.00172219
-2.45869e-06
0.00017387
-1.03417e-05
0.000479098
-2.42152e-05
0.000750906
-4.43676e-05
0.000985956
-7.07495e-05
0.00118315
-0.000102992
0.00134391
-0.000140484
0.0014719
-0.000182479
0.0015724
-0.00022821
0.00165149
-0.000276982
0.00171524
-0.000328231
0.00176904
-0.000381549
0.00181723
-0.000436678
0.001863
-0.000493483
0.00190849
-0.000551919
0.00195504
-0.000612001
0.00200341
-0.000673779
0.00205402
-0.000737323
0.00210713
-0.000802715
0.00216289
-0.000870041
0.00222141
-0.000939395
0.00228281
-0.00101087
0.00234718
-0.00108458
0.00241462
-0.00116062
0.00248523
-0.00123912
0.00255912
-0.00132019
0.00263635
-0.00140395
0.00271703
-0.0014906
0.00280139
-0.00158042
0.0028894
0.00297952
-0.00167323
-2.03907e-06
0.000175909
-8.85188e-06
0.000485911
-2.11719e-05
0.000763226
-3.94542e-05
0.00100424
-6.37996e-05
0.0012075
-9.39598e-05
0.00137407
-0.000129408
0.00150735
-0.000169447
0.00161244
-0.000213326
0.00169537
-0.000260344
0.00176226
-0.000309917
0.00181861
-0.000361613
0.00186892
-0.000415148
0.00191653
-0.00047037
0.00196371
-0.000527219
0.00201189
-0.000585701
0.00206189
-0.000645859
0.00211418
-0.000707761
0.00216904
-0.000771485
0.00222661
-0.000837115
0.00228704
-0.000904743
0.00235044
-0.000974464
0.0024169
-0.00104638
0.00248653
-0.0011206
0.00255945
-0.00119725
0.00263577
-0.00127647
0.00271557
-0.00135835
0.00279892
-0.00144309
0.00288612
-0.00153128
0.00297759
0.00307118
-0.00162295
-1.61328e-06
0.000177522
-7.33474e-06
0.000491632
-1.80626e-05
0.000773954
-3.4419e-05
0.00102059
-5.66578e-05
0.00122974
-8.46561e-05
0.00140207
-0.000117978
0.00154067
-0.000155978
0.00165044
-0.000197928
0.00173732
-0.00024312
0.00180745
-0.000290953
0.00186644
-0.000340968
0.00191894
-0.000392857
0.00196842
-0.000446445
0.0020173
-0.000501658
0.0020671
-0.000558491
0.00211872
-0.000616982
0.00217267
-0.000677192
0.00222925
-0.000739196
0.00228862
-0.000803077
0.00235093
-0.000868924
0.00241628
-0.00093683
0.0024848
-0.00100689
0.0025566
-0.00107923
0.00263178
-0.00115396
0.0027105
-0.00123124
0.00279285
-0.00131119
0.00287887
-0.00139382
0.00296875
-0.00147989
0.00306366
0.00316259
-0.0015713
-1.18242e-06
0.000178705
-5.79411e-06
0.000496244
-1.4894e-05
0.000783054
-2.92711e-05
0.00103497
-4.93346e-05
0.0012498
-7.5092e-05
0.00142783
-0.000106203
0.00157178
-0.000142081
0.00168632
-0.000182022
0.00177726
-0.000225316
0.00185075
-0.000271344
0.00191247
-0.000319619
0.00196721
-0.000369808
0.00201861
-0.000421714
0.0020692
-0.000475243
0.00212063
-0.000530381
0.00217386
-0.000587156
0.00222945
-0.000645626
0.00228771
-0.000705861
0.00234885
-0.000767942
0.00241301
-0.000831953
0.0024803
-0.000897987
0.00255084
-0.00096614
0.00262475
-0.00103652
0.00270216
-0.00110924
0.00278322
-0.00118449
0.00286809
-0.00126246
0.00295684
-0.00134306
0.00304936
-0.0014258
0.0031464
0.00325625
-0.00151947
-7.48582e-07
0.000179453
-4.23462e-06
0.00049973
-1.16736e-05
0.000790493
-2.40208e-05
0.00104732
-4.18422e-05
0.00126762
-6.528e-05
0.00145127
-9.4095e-05
0.0016006
-0.000127766
0.00171999
-0.000165617
0.00181511
-0.00020694
0.00189207
-0.000251095
0.00195663
-0.000297573
0.00201369
-0.000346009
0.00206705
-0.000396182
0.00211938
-0.000447981
0.00217243
-0.000501377
0.00222725
-0.000556391
0.00228446
-0.000613074
0.0023444
-0.000671493
0.00240727
-0.000731724
0.00247324
-0.000793849
0.00254242
-0.000857955
0.00261494
-0.000924133
0.00269093
-0.00099248
0.00277051
-0.0010631
0.00285384
-0.00113611
0.00294111
-0.00121172
0.00303245
-0.00129032
0.00312796
-0.00137332
0.0032294
0.00334163
-0.00145869
-3.23005e-07
0.000179776
-2.66243e-06
0.000502069
-8.40919e-06
0.00079624
-1.8679e-05
0.00105759
-3.41934e-05
0.00128314
-5.52336e-05
0.00147231
-8.16678e-05
0.00162703
-0.000113045
0.00175137
-0.000148723
0.00185079
-0.000187998
0.00193134
-0.000230214
0.00199884
-0.000274834
0.00205831
-0.000321464
0.00211368
-0.000369856
0.00216777
-0.000419879
0.00222245
-0.00047149
0.00227886
-0.000524699
0.00233767
-0.000579551
0.00239925
-0.000636108
0.00246383
-0.000694442
0.00253157
-0.000754631
0.00260261
-0.000816756
0.00267707
-0.000880902
0.00275507
-0.000947153
0.00283676
-0.0010156
0.00292229
-0.00108635
0.00301186
-0.00115962
0.00310572
-0.0012359
0.00320423
-0.00131568
0.00330918
0.00342593
-0.00139998
8.83373e-08
0.000179688
-1.08022e-06
0.000503238
-5.10997e-06
0.00080027
-1.32583e-05
0.00106574
-2.64031e-05
0.00129628
-4.49686e-05
0.00149087
-6.89363e-05
0.001651
-9.79317e-05
0.00178036
-0.000131352
0.00188421
-0.000168501
0.00196849
-0.000208709
0.00203905
-0.00025141
0.00210101
-0.00029618
0.00215845
-0.000342743
0.00221433
-0.000390946
0.00227065
-0.000440728
0.00232865
-0.00049209
0.00238903
-0.000545068
0.00245223
-0.00059972
0.00251848
-0.000656114
0.00258797
-0.000714322
0.00266082
-0.000774422
0.00273717
-0.00083649
0.00281714
-0.000900609
0.00290088
-0.000966871
0.00298855
-0.00103541
0.0030804
-0.0011065
0.00317681
-0.00118071
0.00327845
-0.00125859
0.00338706
0.00350616
-0.00133883
5.72435e-07
0.000179115
5.09791e-07
0.0005033
-1.78472e-06
0.000802564
-7.77112e-06
0.00107172
-1.84868e-05
0.001307
-3.45022e-05
0.00150689
-5.59176e-05
0.00167241
-8.24418e-05
0.00180689
-0.000113517
0.00191529
-0.000148461
0.00200344
-0.000186589
0.00207718
-0.000227309
0.00214173
-0.000270165
0.0022013
-0.000314852
0.00225902
-0.00036119
0.00231699
-0.000409102
0.00237656
-0.000458576
0.00243851
-0.00050964
0.00250329
-0.000562347
0.00257119
-0.000616759
0.00264238
-0.000672947
0.00271701
-0.000730981
0.0027952
-0.000790939
0.0028771
-0.000852907
0.00296285
-0.000916993
0.00305263
-0.000983367
0.00314677
-0.00105234
0.00324578
-0.00112441
0.00335052
-0.00119984
0.00346249
0.00358354
-0.00127721
9.97236e-07
0.000178118
2.10564e-06
0.000502192
1.55857e-06
0.000803111
-2.22394e-06
0.00107551
-1.04614e-05
0.00131523
-2.38533e-05
0.00152028
-4.2631e-05
0.00169119
-6.65933e-05
0.00183085
-9.52346e-05
0.00194393
-0.000127889
0.00203609
-0.000163864
0.00211315
-0.000202539
0.0021804
-0.000243428
0.00224219
-0.00028619
0.00230178
-0.000330621
0.00236142
-0.000376623
0.00242256
-0.000424169
0.00248605
-0.000473282
0.0025524
-0.000524005
0.00262191
-0.000576398
0.00269477
-0.000630528
0.00277113
-0.000686464
0.00285114
-0.000744284
0.00293492
-0.000804083
0.00302265
-0.000865991
0.00311454
-0.000930206
0.00321098
-0.000997034
0.00331261
-0.00106684
0.00342033
-0.00113961
0.00353526
0.00365802
-0.00121409
1.41867e-06
0.0001767
3.68453e-06
0.000499926
4.90223e-06
0.000801894
3.34862e-06
0.00107706
-2.33406e-06
0.00132092
-1.3043e-05
0.00153099
-2.90982e-05
0.00170725
-5.04069e-05
0.00185216
-7.65219e-05
0.00197004
-0.000106802
0.00206637
-0.000140547
0.0021469
-0.000177113
0.00221697
-0.000215977
0.00228106
-0.000256767
0.00234257
-0.000299248
0.00240391
-0.0003433
0.00246661
-0.000388883
0.00253164
-0.000436007
0.00259953
-0.00048471
0.00267062
-0.000535049
0.00274511
-0.000587086
0.00282317
-0.000640892
0.00290494
-0.000696548
0.00299058
-0.000754159
0.00308026
-0.000813871
0.00317425
-0.000875898
0.00327301
-0.000940515
0.00337723
-0.00100796
0.00348778
-0.00107804
0.00360534
0.00372963
-0.00114964
1.83472e-06
0.000174865
5.25261e-06
0.000496508
8.23989e-06
0.000798906
8.93667e-06
0.00107636
5.83685e-06
0.00132402
-2.07789e-06
0.0015389
-1.53431e-05
0.00172051
-3.3907e-05
0.00187072
-5.73993e-05
0.00199353
-8.52152e-05
0.00209419
-0.000116653
0.00217834
-0.000151041
0.00225136
-0.000187824
0.00231784
-0.000226592
0.00238134
-0.000267081
0.00244439
-0.000309146
0.00250868
-0.000352729
0.00257522
-0.000397829
0.00264463
-0.00044448
0.00271727
-0.00049273
0.00279336
-0.000542643
0.00287308
-0.000594288
0.00295659
-0.000647753
0.00304404
-0.000703149
0.00313565
-0.000760635
0.00323174
-0.000820421
0.0033328
-0.000882737
0.00343954
-0.000947705
0.00355274
-0.00101505
0.00367268
0.00379844
-0.00108386
2.24742e-06
0.000172617
6.80454e-06
0.000491951
1.15606e-05
0.00079415
1.45295e-05
0.00107339
1.4055e-05
0.00132449
8.96284e-06
0.001544
-1.3676e-06
0.00173084
-1.7125e-05
0.00188648
-3.78877e-05
0.0020143
-6.31505e-05
0.00211945
-9.2198e-05
0.00220738
-0.000124338
0.0022835
-0.000158979
0.00235248
-0.000195677
0.00241804
-0.000234131
0.00248285
-0.000274171
0.00254872
-0.00031572
0.00261677
-0.000358764
0.00268767
-0.000403329
0.00276183
-0.000449459
0.00283949
-0.000497216
0.00292084
-0.000546671
0.00300604
-0.000597913
0.00309528
-0.000651063
0.0031888
-0.00070628
0.00328696
-0.000763761
0.00339028
-0.00082368
0.00349946
-0.000886068
0.00361513
-0.000950617
0.00373723
0.00386447
-0.00101664
2.65154e-06
0.000169966
8.3327e-06
0.00048627
1.48508e-05
0.000787632
2.01045e-05
0.00106814
2.22959e-05
0.0013223
2.00953e-05
0.0015462
1.27324e-05
0.00173821
1.79951e-08
0.00189919
-1.80047e-05
0.00203232
-4.06311e-05
0.00214208
-6.72021e-05
0.00223396
-9.70191e-05
0.00231331
-0.000129458
0.00238492
-0.000164034
0.00245261
-0.000200411
0.00251923
-0.000238389
0.0025867
-0.00027787
0.00265625
-0.000318826
0.00272863
-0.000361274
0.00280428
-0.000405253
0.00288347
-0.000450823
0.00296641
-0.000498057
0.00305328
-0.000547045
0.00314427
-0.000597911
0.00323967
-0.00065081
0.00333986
-0.000705913
0.00344538
-0.000763343
0.00355689
-0.000823067
0.00367486
-0.000884778
0.00379894
0.00392766
-0.000947969
3.04405e-06
0.000166922
9.8295e-06
0.000479485
1.80961e-05
0.000779366
2.56393e-05
0.0010606
3.0526e-05
0.00131741
3.12741e-05
0.00154545
2.69541e-05
0.00174253
1.71911e-05
0.00190896
2.17341e-06
0.00204734
-1.76899e-05
0.00216194
-4.1691e-05
0.00225796
-6.91057e-05
0.00234073
-9.92764e-05
0.00241509
-0.000131677
0.00248501
-0.000165933
0.00255348
-0.000201813
0.00262257
-0.000239193
0.00269363
-0.00027803
0.00276747
-0.00031833
0.00284458
-0.00036013
0.00292527
-0.000403483
0.00300976
-0.000448464
0.00309826
-0.000495164
0.00319097
-0.000543704
0.00328821
-0.000594229
0.00339038
-0.000646884
0.00349804
-0.000701744
0.00361175
-0.000758735
0.00373185
-0.000817577
0.00385778
0.00398798
-0.0008779
3.42279e-06
0.000163499
1.12877e-05
0.00047162
2.12824e-05
0.000769371
3.1112e-05
0.00105077
3.87171e-05
0.00130981
4.24666e-05
0.0015417
4.12804e-05
0.00174371
3.4663e-05
0.00191557
2.26437e-05
0.00205936
5.64383e-06
0.00217894
-1.56906e-05
0.00227929
-4.06194e-05
0.00236566
-6.84522e-05
0.00244292
-9.86216e-05
0.00251518
-0.000130712
0.00258557
-0.000164455
0.00265632
-0.000199702
0.00272888
-0.000236391
0.00280415
-0.000274516
0.0028827
-0.000314106
0.00296486
-0.000355214
0.00305087
-0.00039791
0.00314095
-0.000442286
0.00323535
-0.000488457
0.00333438
-0.000536553
0.00343848
-0.000586692
0.00354817
-0.000638911
0.00366397
-0.000693115
0.00378605
-0.000749062
0.00391373
0.00404541
-0.000806494
3.78577e-06
0.000159713
1.26999e-05
0.000462706
2.43944e-05
0.000757676
3.64987e-05
0.00103866
4.68375e-05
0.00129947
5.3635e-05
0.0015349
5.56573e-05
0.00174169
5.2266e-05
0.00191896
4.33773e-05
0.00206825
2.93364e-05
0.00219298
1.07694e-05
0.00229786
-1.1585e-05
0.00238801
-3.70066e-05
0.00246835
-6.48858e-05
0.00254306
-9.47635e-05
0.00261545
-0.000126333
0.00268789
-0.000159414
0.00276196
-0.000193926
0.00283867
-0.000229847
0.00291862
-0.000267201
0.00300221
-0.000306033
0.0030897
-0.000346413
0.00318133
-0.000388429
0.00327736
-0.000432187
0.00337814
-0.000477802
0.00348409
-0.000525364
0.00359574
-0.000574884
0.00371349
-0.000626257
0.00383742
-0.000679286
0.00396676
0.00409993
-0.000733801
4.131e-06
0.000155582
1.40587e-05
0.000452778
2.74164e-05
0.000744319
4.17739e-05
0.00102431
5.48516e-05
0.00128639
6.47346e-05
0.00152502
7.00339e-05
0.00173639
6.99619e-05
0.00191904
6.43121e-05
0.0020739
5.33475e-05
0.00220394
3.76531e-05
0.00231355
1.79673e-05
0.0024077
-4.96438e-06
0.00249128
-3.049e-05
0.00256859
-5.81053e-05
0.00264307
-8.7461e-05
0.00271724
-0.000118345
0.00279284
-0.000150651
0.00287097
-0.000184342
0.00295232
-0.000219432
0.0030373
-0.000255962
0.00312623
-0.000293995
0.00321937
-0.000333615
0.00331698
-0.000374918
0.00341944
-0.000418003
0.00352718
-0.000462935
0.00364067
-0.000509708
0.00376027
-0.000558216
0.00388593
-0.000608306
0.00401685
0.0041515
-0.000659879
4.45647e-06
0.000151126
1.53563e-05
0.000441878
3.0332e-05
0.000729343
4.69105e-05
0.00100773
6.27216e-05
0.00127058
7.57186e-05
0.00151202
8.43579e-05
0.00172775
8.76973e-05
0.0019157
8.53967e-05
0.0020762
7.76255e-05
0.00221172
6.49179e-05
0.00232626
4.80022e-05
0.00242461
2.76459e-05
0.00251163
4.54096e-06
0.00259169
-2.07585e-05
0.00266837
-4.78591e-05
0.00274434
-7.65127e-05
0.0028215
-0.000106584
0.00290104
-0.00013802
0.00298375
-0.000170821
0.0030701
-0.000205021
0.00316043
-0.000240677
0.00325502
-0.000277867
0.00335417
-0.000316676
0.00345825
-0.000357185
0.00356769
-0.000399443
0.00368293
-0.000443429
0.00380425
-0.000489047
0.00393155
-0.000536182
0.00406398
0.00420011
-0.000584785
4.76021e-06
0.000146366
1.65851e-05
0.000430053
3.31244e-05
0.000712804
5.18807e-05
0.000988971
7.04078e-05
0.00125205
8.65369e-05
0.00149589
9.85719e-05
0.00171572
0.000105411
0.00190886
0.000106571
0.00207504
0.000102115
0.00221617
9.25143e-05
0.00233586
7.8478e-05
0.00243865
6.07899e-05
0.00252932
4.01817e-05
0.0026123
1.72545e-05
0.00269129
-7.54903e-06
0.00276915
-3.39368e-05
0.00284788
-6.17459e-05
0.00292885
-9.09009e-05
0.00301291
-0.000121388
0.00310059
-0.000153232
0.00319228
-0.000186484
0.00328827
-0.000221211
0.0033889
-0.000257489
0.00349453
-0.000295384
0.00360558
-0.00033493
0.00372247
-0.000376098
0.00384542
-0.000418806
0.00397426
-0.00046297
0.00410815
0.00424572
-0.000508579
5.0403e-06
0.000141325
1.77372e-05
0.000417356
3.57766e-05
0.000694764
5.66554e-05
0.000968092
7.78685e-05
0.00123084
9.71361e-05
0.00147662
0.000112613
0.00170024
0.000123036
0.00189844
0.000127768
0.0020703
0.000126753
0.00221719
0.000120386
0.00234223
0.000109346
0.00244969
9.44275e-05
0.00254424
7.63971e-05
0.00263033
5.59066e-05
0.00271178
3.34497e-05
0.0027916
9.36063e-06
0.00287197
-1.61577e-05
0.00295437
-4.30061e-05
0.00303976
-7.11561e-05
0.00312874
-0.00010062
0.00322174
-0.000131441
0.0033191
-0.000163676
0.00342114
-0.000197391
0.00352824
-0.000232637
0.00364083
-0.000269438
0.00375927
-0.000307764
0.00388375
-0.000347548
0.00401404
-0.000388727
0.00414933
0.0042883
-0.000431317
5.29489e-06
0.00013603
1.88052e-05
0.000403846
3.82714e-05
0.000675298
6.12049e-05
0.000945159
8.506e-05
0.00120698
0.000107459
0.00145423
0.000126415
0.00168128
0.000140498
0.00188435
0.000148911
0.00206189
0.000151466
0.00221463
0.000148467
0.00234523
0.000140551
0.00245761
0.000128512
0.00255628
0.00011315
0.00264569
9.51656e-05
0.00272977
7.5107e-05
0.00281166
5.33586e-05
0.00289372
3.01597e-05
0.00297757
5.63857e-06
0.00306428
-2.01504e-05
0.00315453
-4.72106e-05
0.0032488
-7.55753e-05
0.00334746
-0.000105292
0.00345085
-0.000136414
0.00355936
-0.000168983
0.0036734
-0.000203012
0.0037933
-0.000238476
0.00391921
-0.000275326
0.00405089
-0.000313516
0.00418752
0.00432784
-0.000353056
5.52225e-06
0.000130508
1.97818e-05
0.000389586
4.05919e-05
0.000654488
6.54992e-05
0.000920251
9.19368e-05
0.00118055
0.000117445
0.00142872
0.000139903
0.00165883
0.000157715
0.00186654
0.000169918
0.00204969
0.000176173
0.00220838
0.000176683
0.00234472
0.000172027
0.00246226
0.000162989
0.00256532
0.000150395
0.00265829
0.000134995
0.00274517
0.000117393
0.00282926
9.80266e-05
0.00291309
7.71804e-05
0.00299842
5.50164e-05
0.00308644
3.16066e-05
0.00317794
6.96722e-06
0.00327344
-1.89182e-05
0.00337335
-4.60909e-05
0.00347802
-7.45943e-05
0.00358787
-0.00010446
0.00370326
-0.000135695
0.00382453
-0.000168278
0.00395179
-0.000202191
0.00408481
-0.000237401
0.00422273
0.0043643
-0.000273857
5.7208e-06
0.000124787
2.06598e-05
0.000374647
4.27214e-05
0.000632427
6.95079e-05
0.000893465
9.84526e-05
0.0011516
0.000127031
0.00140014
0.000153
0.00163286
0.0001746
0.00184494
0.000190693
0.0020336
0.000200783
0.00219829
0.000204948
0.00234055
0.000203698
0.00246351
0.000197793
0.00257122
0.00018808
0.002668
0.000175352
0.00275789
0.000160272
0.00284434
0.000143336
0.00293002
0.000124875
0.00301688
0.000105092
0.00310622
8.40861e-05
0.00319895
6.18924e-05
0.00329564
3.85036e-05
0.00339673
1.38931e-05
0.00350264
-1.19704e-05
0.00361373
-3.91104e-05
0.0037304
-6.75302e-05
0.00385295
-9.72161e-05
0.00398148
-0.000128179
0.00411577
-0.000160465
0.00425501
0.00439764
-0.000193801
5.88912e-06
0.000118898
2.14329e-05
0.000359103
4.4644e-05
0.000609215
7.32011e-05
0.000864908
0.00010456
0.00112024
0.000136152
0.00136855
0.000165623
0.00160339
0.000191057
0.0018195
0.000211136
0.00201352
0.000225192
0.00218423
0.000233166
0.00233258
0.000235477
0.0024612
0.000232852
0.00257385
0.000226143
0.00267471
0.000216187
0.00276785
0.000203704
0.00285683
0.000189251
0.00294448
0.000173214
0.00303291
0.000155839
0.0031236
0.000137258
0.00321753
0.000117527
0.00331537
9.66553e-05
0.00341761
7.46295e-05
0.00352466
5.14263e-05
0.00363693
2.70273e-05
0.0037548
1.42677e-06
0.00387856
-2.53444e-05
0.00400825
-5.32915e-05
0.00414372
-8.27117e-05
0.00428443
0.00442797
-0.000113042
6.02603e-06
0.000112872
2.20952e-05
0.000343034
4.63444e-05
0.000584966
7.65497e-05
0.000834703
0.000110212
0.00108658
0.00014474
0.00133402
0.000177685
0.00157044
0.000206984
0.00179021
0.000231133
0.00198937
0.000249285
0.00216608
0.000261225
0.00232064
0.000267265
0.00245516
0.000268076
0.00257304
0.000264511
0.00267827
0.00025744
0.00277492
0.00024764
0.00286663
0.000235732
0.00295639
0.000222163
0.00304648
0.000207226
0.00313854
0.000191091
0.00323366
0.000173841
0.00333262
0.000155503
0.00343594
0.000136077
0.00354409
0.000115552
0.00365746
9.3917e-05
0.00377644
7.11714e-05
0.0039013
4.73176e-05
0.0040321
2.2413e-05
0.00416862
-3.40768e-06
0.00431025
0.00445672
-3.21592e-05
6.13058e-06
0.000106742
2.26415e-05
0.000326523
4.7809e-05
0.000559799
7.95259e-05
0.000802986
0.000115362
0.00105075
0.000152726
0.00129666
0.000189097
0.00153407
0.00022227
0.00175703
0.000250564
0.00196107
0.000272936
0.00214371
0.000289001
0.00230457
0.000298945
0.00244522
0.000303366
0.00256861
0.0003031
0.00267854
0.000299042
0.00277898
0.000292025
0.00287364
0.000282734
0.00296568
0.000271682
0.00305753
0.000259218
0.003151
0.000245552
0.00324733
0.0002308
0.00334737
0.000215012
0.00345173
0.000198201
0.0035609
0.000180367
0.00367529
0.000161508
0.0037953
0.000141623
0.00392119
0.0001207
0.00405303
9.86945e-05
0.00419063
7.53668e-05
0.00433358
0.00448128
5.08085e-05
6.20211e-06
0.000100539
2.30676e-05
0.000309658
4.90254e-05
0.000533841
8.21038e-05
0.000769907
0.000119964
0.00101288
0.000160042
0.00125658
0.000199765
0.00149435
0.000236803
0.00172
0.000269296
0.00192858
0.000296004
0.002117
0.000316356
0.00228422
0.000330387
0.00243119
0.000338605
0.0025604
0.000341809
0.00267534
0.000340911
0.00277988
0.000336791
0.00287776
0.000330202
0.00297227
0.000321727
0.00306601
0.000311774
0.00316095
0.000300605
0.0032585
0.00028837
0.0033596
0.000275145
0.00346496
0.000260961
0.00357508
0.000245831
0.00369042
0.00022976
0.00381137
0.000212749
0.0039382
0.000194788
0.00407099
0.000175841
0.00420957
0.000155879
0.00435354
0.00450224
0.000134914
6.24028e-06
9.42992e-05
2.33704e-05
0.000292528
4.99832e-05
0.000507228
8.426e-05
0.00073563
0.000123977
0.000973168
0.000166622
0.00121393
0.000209596
0.00145137
0.000250462
0.00167913
0.00028719
0.00189185
0.000318339
0.00208585
0.000343135
0.00225942
0.000361444
0.00241288
0.000373659
0.00254818
0.000380523
0.00266847
0.000382949
0.00277745
0.00038186
0.00287885
0.000378074
0.00297605
0.000372246
0.00307184
0.000364851
0.00316835
0.000356209
0.00326714
0.000346511
0.0033693
0.000335862
0.00347561
0.000324317
0.00358663
0.0003119
0.00370284
0.000298628
0.00382464
0.000284511
0.00395231
0.000269544
0.00408596
0.00025371
0.00422541
0.000236985
0.00437027
0.00451988
0.000219347
6.24505e-06
8.80541e-05
2.35478e-05
0.000275225
5.06745e-05
0.000480101
8.59744e-05
0.00070033
0.000127362
0.00093178
0.000172402
0.00116889
0.000218496
0.00140528
0.000263125
0.0016345
0.0003041
0.00185088
0.000339777
0.00205017
0.000369167
0.00223003
0.000391949
0.0023901
0.000408373
0.00253176
0.000419107
0.00265774
0.000425045
0.00277151
0.000427141
0.00287676
0.000426276
0.00297692
0.000423178
0.00307493
0.0004184
0.00317313
0.00041232
0.00327322
0.000405181
0.00337644
0.000397124
0.00348366
0.000388226
0.00359552
0.00037853
0.00371254
0.000368064
0.00383511
0.000356845
0.00396353
0.000344875
0.00409793
0.000332135
0.00423815
0.000318583
0.00438382
0.00453425
0.000304213
6.21679e-06
8.18374e-05
2.35993e-05
0.000257842
5.10936e-05
0.000452607
8.72307e-05
0.000664193
0.000130082
0.000888929
0.000177321
0.00112165
0.000226376
0.00135622
0.000274668
0.00158621
0.000319872
0.00180567
0.000360142
0.0020099
0.000394267
0.00219591
0.000421715
0.00236265
0.000442574
0.0025109
0.000457404
0.00264291
0.000467064
0.00276185
0.000472523
0.0028713
0.000474719
0.00297472
0.000474455
0.0030752
0.000472362
0.00317522
0.000468889
0.00327669
0.000464336
0.003381
0.000458885
0.00348911
0.000452643
0.00360177
0.000445673
0.00371951
0.000438014
0.00384277
0.00042969
0.00397186
0.000420707
0.00410691
0.000411042
0.00424781
0.000400645
0.00439422
0.0045454
0.000389493
6.15619e-06
7.56812e-05
2.35253e-05
0.000240473
5.1238e-05
0.000424894
8.80172e-05
0.000627414
0.000132111
0.000844835
0.000181324
0.00107244
0.000233147
0.0013044
0.000284971
0.00153438
0.00033435
0.00175629
0.00037925
0.001965
0.000418233
0.00215693
0.000450538
0.00233034
0.000476062
0.00248537
0.000495235
0.00262374
0.000508851
0.00274824
0.000517878
0.00286227
0.000523298
0.0029693
0.000525992
0.0030725
0.00052667
0.00317454
0.000525861
0.0032775
0.000523927
0.00338293
0.0005211
0.00349194
0.000517523
0.00360534
0.000513281
0.00372375
0.000508427
0.00384762
0.000502993
0.00397729
0.000496988
0.00411291
0.000490389
0.00425441
0.000483137
0.00440147
0.00455336
0.000475183
6.06433e-06
6.96168e-05
2.33281e-05
0.00022321
5.1108e-05
0.000397114
8.83269e-05
0.000590195
0.000133426
0.000799736
0.000184366
0.0010215
0.00023873
0.00125004
0.000293913
0.0014792
0.000347376
0.00170283
0.00039691
0.00191547
0.000440849
0.00211299
0.000478191
0.002293
0.000508616
0.00245495
0.000532393
0.00259996
0.000550223
0.00273041
0.000563051
0.00284944
0.000571891
0.00296046
0.000577691
0.0030667
0.000581246
0.00317099
0.00058317
0.00327558
0.000583898
0.0033822
0.000583719
0.00349212
0.000582817
0.00360625
0.000581306
0.00372526
0.000579255
0.00384967
0.000576706
0.00397984
0.000573672
0.00411595
0.000570131
0.00425795
0.000566019
0.00440558
0.00455811
0.000561262
5.94267e-06
6.36742e-05
2.30111e-05
0.000206141
5.07074e-05
0.000369418
8.81586e-05
0.000552744
0.000134012
0.000753882
0.00018641
0.000969102
0.000243056
0.00119339
0.000301384
0.00142087
0.000358795
0.00164542
0.000412926
0.00186134
0.000461888
0.00206403
0.000504429
0.00225046
0.00053999
0.00241939
0.000568644
0.0025713
0.000590971
0.00270808
0.000607863
0.00283255
0.000620348
0.00294798
0.000629432
0.00305762
0.000635997
0.00316442
0.000640743
0.00327083
0.000644188
0.00337876
0.000646689
0.00348962
0.000648477
0.00360446
0.0006497
0.00372404
0.000650451
0.00384892
0.000650782
0.00397951
0.000650712
0.00411602
0.000650223
0.00425844
0.000649247
0.00440656
0.00455967
0.000647694
5.793e-06
5.78812e-05
2.25794e-05
0.000189355
5.00431e-05
0.000341955
8.7517e-05
0.00051527
0.000133864
0.000707535
0.000187427
0.000915539
0.000246064
0.00113475
0.000307281
0.00135966
0.000368457
0.00158424
0.0004271
0.0018027
0.000481114
0.00201001
0.00052899
0.00220258
0.00056991
0.00237847
0.000603724
0.00253749
0.000630851
0.00268096
0.000652101
0.0028113
0.000668492
0.00293158
0.000681075
0.00304504
0.000690809
0.00315469
0.000698491
0.00326315
0.000704726
0.00337252
0.000709949
0.0034844
0.000714448
0.00359996
0.000718414
0.00372007
0.000721964
0.00384537
0.00072517
0.0039763
0.000728059
0.00411313
0.000730615
0.00425588
0.000732774
0.0044044
0.00455801
0.000734431
5.61745e-06
5.22637e-05
2.20395e-05
0.000172933
4.91256e-05
0.000314868
8.64127e-05
0.000477983
0.000132986
0.000660961
0.000187405
0.00086112
0.000247709
0.00107445
0.000311518
0.00129585
0.000376221
0.00151954
0.000439239
0.00173968
0.000498284
0.00195097
0.000551597
0.00214927
0.000598081
0.00233199
0.000637337
0.00249823
0.000669585
0.00264871
0.00069552
0.00278537
0.000716114
0.00291099
0.000732447
0.0030287
0.000745549
0.00314159
0.000756309
0.00325239
0.00076543
0.0033634
0.000773432
0.00347639
0.000780673
0.00359272
0.000787394
0.00371335
0.000793746
0.00383902
0.000799822
0.00397023
0.000805662
0.00410729
0.000811259
0.00425029
0.00081655
0.0043991
0.00455314
0.000821422
5.41847e-06
4.68453e-05
2.13991e-05
0.000156952
4.79685e-05
0.000288299
8.48628e-05
0.000441089
0.000131391
0.000614433
0.000186343
0.000806168
0.000247965
0.00101283
0.000314023
0.00122979
0.000381966
0.0014516
0.00044916
0.00167248
0.000513159
0.00188697
0.000571961
0.00209047
0.000624187
0.00227976
0.000669157
0.00245326
0.000706861
0.002611
0.000737831
0.0027544
0.000762967
0.00288585
0.000783345
0.00300832
0.000800053
0.00312488
0.000814069
0.00323837
0.0008262
0.00335127
0.000837059
0.00346554
0.000847088
0.00358269
0.000856584
0.00370385
0.000865744
0.00382986
0.000874687
0.00396128
0.000883473
0.0040985
0.000892105
0.00424166
0.000900527
0.00439068
0.00454505
0.000908616
5.19871e-06
4.16465e-05
2.06672e-05
0.000141484
4.65887e-05
0.000262377
8.28901e-05
0.000404787
0.000129103
0.000568221
0.000184255
0.000751016
0.00024682
0.000950263
0.000314748
0.00116186
0.000385587
0.00138076
0.000456694
0.00160138
0.000525503
0.00181816
0.00058979
0.00202618
0.000647892
0.00222166
0.00069883
0.00240232
0.000742324
0.00256751
0.000778707
0.00271801
0.000808759
0.0028558
0.000833523
0.00298356
0.000854122
0.00310428
0.000871617
0.00322088
0.000886916
0.00333597
0.000900738
0.00345171
0.000913616
0.00356981
0.00092592
0.00369155
0.000937901
0.00381788
0.000949713
0.00394947
0.00096144
0.00408678
0.000973101
0.00423
0.000984651
0.00437913
0.00453374
0.000995963
4.96108e-06
3.66855e-05
1.98538e-05
0.000126591
4.50057e-05
0.000237225
8.05236e-05
0.000369269
0.000126155
0.000522589
0.00018117
0.000696001
0.000244287
0.000887146
0.000313668
0.00109248
0.000387004
0.00130742
0.000461696
0.00152669
0.000535097
0.00174476
0.000604795
0.00195648
0.00066885
0.0021576
0.000725974
0.0023452
0.000775586
0.0025179
0.000817772
0.00267583
0.00085315
0.00282042
0.000882688
0.00295402
0.000907517
0.00307945
0.000928761
0.00319963
0.000947431
0.0033173
0.000964356
0.00343479
0.000980171
0.003554
0.000995333
0.00367639
0.00101016
0.00380305
0.00102484
0.00393478
0.00103951
0.00407211
0.00105419
0.00421531
0.00106887
0.00436446
0.0045192
0.00108341
4.70858e-06
3.19769e-05
1.89698e-05
0.00011233
4.32416e-05
0.000212954
7.77971e-05
0.000334714
0.000122591
0.000477796
0.000177133
0.000641459
0.000240397
0.000823882
0.000310784
0.00102209
0.00038617
0.00123204
0.000464047
0.00144881
0.000541744
0.00166706
0.000616695
0.00188153
0.000686711
0.00208759
0.000750188
0.00228172
0.00080622
0.00246186
0.000854604
0.00262744
0.000895747
0.00277928
0.000930494
0.00291927
0.000959945
0.00305
0.000985269
0.00317431
0.00100756
0.003295
0.00102777
0.00341458
0.00104665
0.00353512
0.00106474
0.0036583
0.00108244
0.00378535
0.00110002
0.00391721
0.00111762
0.0040545
0.00113533
0.00419761
0.00115313
0.00434666
0.00450144
0.00117089
4.44436e-06
2.75325e-05
1.80267e-05
9.87473e-05
4.13204e-05
0.00018966
7.47495e-05
0.000301285
0.000118462
0.000434083
0.000172202
0.000587719
0.000235204
0.00076088
0.000306128
0.000951169
0.000383071
0.00115509
0.000463668
0.00136821
0.000545277
0.00158545
0.000625234
0.00180157
0.000701132
0.00201169
0.00077106
0.0022118
0.000833771
0.00239915
0.000888738
0.00257248
0.000936101
0.00273192
0.000976534
0.00287884
0.00101106
0.00301548
0.00104085
0.00314452
0.00106709
0.00326877
0.00109082
0.00339085
0.00111291
0.00351303
0.00113403
0.00363717
0.00115468
0.00376471
0.00117517
0.00389671
0.00119572
0.00403395
0.00121645
0.00417689
0.00123736
0.00432575
0.00448046
0.00125834
4.17153e-06
2.3361e-05
1.70364e-05
8.58825e-05
3.92676e-05
0.000167429
7.14231e-05
0.000269129
0.000113828
0.000391678
0.000166451
0.000535096
0.000228783
0.000698548
0.000299759
0.000880193
0.000377729
0.00107712
0.000460518
0.00128542
0.000545572
0.0015004
0.000630188
0.00171696
0.000711786
0.00193009
0.000788175
0.00213541
0.000857762
0.00232957
0.000919663
0.00251057
0.000973707
0.00267787
0.00102034
0.00283221
0.00106044
0.00297537
0.00109516
0.00310979
0.00112573
0.00323821
0.00115327
0.0033633
0.0011788
0.00348751
0.0012031
0.00361287
0.00122677
0.00374104
0.00125022
0.00387326
0.00127374
0.00401043
0.00129748
0.00415315
0.00132151
0.00430173
0.00445626
0.0013457
3.89321e-06
1.94678e-05
1.60109e-05
7.37648e-05
3.71096e-05
0.00014633
6.78632e-05
0.000238376
0.000108756
0.000350785
0.000159964
0.000483889
0.00022123
0.000637281
0.000291769
0.000809654
0.000370208
0.000998684
0.000454605
0.00120103
0.000542555
0.00141245
0.000631378
0.00162813
0.000718382
0.00184309
0.000801134
0.00205266
0.000877704
0.002253
0.000946838
0.00244144
0.00100801
0.00261671
0.00106136
0.00277886
0.0011076
0.00292913
0.00114778
0.00306961
0.00118313
0.00320286
0.00121487
0.00333156
0.00124411
0.00345826
0.00127178
0.0035852
0.0012986
0.00371423
0.00132508
0.00384677
0.0013516
0.00398391
0.00137838
0.00412637
0.0014055
0.0042746
0.00442886
0.0014329
3.61239e-06
1.58554e-05
1.49622e-05
6.2415e-05
3.48733e-05
0.000126419
6.41168e-05
0.000209132
0.000103317
0.000311585
0.000152836
0.000434369
0.000212659
0.000577459
0.000282277
0.000740037
0.00036061
0.000920351
0.000445988
0.00111565
0.000536208
0.00132223
0.000628683
0.00153566
0.000720676
0.00175109
0.000809565
0.00196377
0.000893116
0.00216944
0.000969697
0.00236486
0.00103839
0.00254801
0.001099
0.00271825
0.00115197
0.00287616
0.0011982
0.00302338
0.00123887
0.00316218
0.00127526
0.00329517
0.00130858
0.00342495
0.00133988
0.00355391
0.00137002
0.00368409
0.00139964
0.00381714
0.00142922
0.00395433
0.00145905
0.00409655
0.00148929
0.00424436
0.00439827
0.00151988
3.33193e-06
1.25235e-05
1.39017e-05
5.18452e-05
3.25852e-05
0.000107736
6.02318e-05
0.000181486
9.75832e-05
0.000274234
0.00014517
0.000386782
0.000203198
0.000519431
0.000271427
0.000671807
0.000349079
0.000842699
0.000434779
0.00102995
0.000526577
0.00123043
0.00062205
0.00144018
0.000718486
0.00165466
0.000813147
0.00186911
0.000903541
0.00207905
0.000987671
0.00228073
0.00106421
0.00247147
0.00113258
0.00264988
0.00119289
0.00281586
0.00124581
0.00297045
0.00129244
0.00311556
0.00133403
0.00325358
0.00137186
0.00338711
0.00140714
0.00351863
0.00144084
0.00365039
0.00147376
0.00378422
0.00150649
0.0039216
0.00153941
0.00406363
0.00157278
0.00421099
0.00436448
0.00160657
3.05445e-06
9.46902e-06
1.28406e-05
4.20591e-05
3.02711e-05
9.0305e-05
5.62556e-05
0.000155501
9.16317e-05
0.000238858
0.000137075
0.000341339
0.000192988
0.000463518
0.000259387
0.000605408
0.000335791
0.000766296
0.00042114
0.000944598
0.000513777
0.00113779
0.000611502
0.00134246
0.000711712
0.00155445
0.000811629
0.00176919
0.000908568
0.00198211
0.00100021
0.00218909
0.00108482
0.00238686
0.00116138
0.00257332
0.00122962
0.00274762
0.00128993
0.00291014
0.0013432
0.00306229
0.00139063
0.00320615
0.00143354
0.0033442
0.00147323
0.00347895
0.00151082
0.00361279
0.00154726
0.00374778
0.00158327
0.00388559
0.00161936
0.00402753
0.00165589
0.00417446
0.00432748
0.00169288
2.78237e-06
6.68665e-06
1.1789e-05
3.30525e-05
2.79555e-05
7.41386e-05
5.2234e-05
0.000131223
8.55371e-05
0.000205555
0.000128659
0.000298217
0.000182178
0.000409998
0.000246343
0.000541243
0.000320957
0.000691682
0.000405284
0.000860271
0.000497989
0.00104509
0.000597149
0.0012433
0.000700346
0.00145125
0.000804849
0.00166469
0.000907862
0.0018791
0.0010068
0.00209016
0.00109954
0.00229412
0.00118464
0.00248822
0.00126137
0.00267088
0.00132976
0.00284176
0.00139042
0.00300162
0.00144443
0.00315214
0.00149308
0.00329555
0.00153772
0.00343431
0.00157963
0.00357089
0.00161989
0.00370752
0.00165939
0.00384609
0.00169878
0.00398815
0.00173852
0.00413472
0.00428727
0.00177874
2.51781e-06
4.16884e-06
1.07563e-05
2.48139e-05
2.56612e-05
5.92337e-05
4.82109e-05
0.000108673
7.93721e-05
0.000174393
0.000120034
0.000257555
0.000170922
0.000359111
0.000232491
0.000479675
0.000304813
0.00061936
0.000387467
0.000777617
0.000479458
0.000953098
0.000579183
0.00114358
0.00068448
0.00134595
0.000792753
0.00155641
0.000901187
0.00177067
0.00100701
0.00198433
0.00110777
0.00219336
0.00120159
0.00239441
0.00128727
0.0025852
0.0013644
0.00276463
0.00143325
0.00293277
0.00149465
0.00309074
0.00154981
0.00324039
0.00160009
0.00338403
0.00164685
0.00352413
0.00169135
0.00366302
0.00173462
0.00380282
0.00177748
0.00394529
0.00182055
0.00409165
0.00424379
0.00186403
2.26261e-06
1.90623e-06
9.7509e-06
1.73256e-05
2.34091e-05
4.55755e-05
4.42268e-05
8.78552e-05
7.32059e-05
0.000145414
0.000111306
0.000219454
0.000159372
0.000311045
0.000218036
0.00042101
0.000287612
0.000549783
0.000367981
0.000697248
0.000458489
0.000862591
0.000557884
0.00104418
0.000664316
0.00123952
0.00077541
0.00144532
0.00088843
0.00165765
0.00100052
0.00187224
0.00110897
0.0020849
0.0012115
0.00229188
0.00130644
0.00249025
0.0013929
0.00267817
0.00147071
0.00285496
0.00154038
0.00302107
0.00160292
0.00317785
0.00165963
0.00332732
0.00171194
0.00347182
0.00176121
0.00361376
0.00180865
0.00375538
0.00185525
0.00389868
0.00190181
0.00404509
0.00419695
0.00194865
2.01832e-06
-1.12095e-07
8.77998e-06
1.0564e-05
2.12177e-05
3.31378e-05
4.0319e-05
6.87539e-05
6.71031e-05
0.00011863
0.000102578
0.00018398
0.000147678
0.000265945
0.000203184
0.000365505
0.00026962
0.000483347
0.000347144
0.000619724
0.000435435
0.000774299
0.000533607
0.000946008
0.000640161
0.00113297
0.000753019
0.00133246
0.000869625
0.00154104
0.000987142
0.00175473
0.0011027
0.00196934
0.0012137
0.00218089
0.00131802
0.00238593
0.00141425
0.00258195
0.00150172
0.00276748
0.00158054
0.00294225
0.00165142
0.00310698
0.0017155
0.00326324
0.00177418
0.00341314
0.00182891
0.00355902
0.00188106
0.00370323
0.00193178
0.00384795
0.00198208
0.00399479
0.00414661
0.00203242
1.78624e-06
-1.89834e-06
7.84976e-06
4.50048e-06
1.91031e-05
2.18844e-05
3.65205e-05
5.13365e-05
6.11222e-05
9.40286e-05
9.39427e-05
0.000151159
0.000135982
0.000223906
0.000188135
0.000313352
0.000251104
0.000420378
0.000325292
0.000545536
0.000410689
0.000688902
0.000506771
0.000849926
0.000612422
0.00102732
0.000725914
0.00121897
0.000844962
0.00142199
0.000966862
0.00163283
0.00108871
0.0018475
0.00120765
0.00206194
0.00132121
0.00227238
0.00142744
0.00247571
0.00152517
0.00266976
0.00161397
0.00285344
0.00169417
0.00302678
0.00176665
0.00319076
0.00183269
0.0033471
0.00189374
0.00349797
0.00195128
0.00364569
0.00200665
0.00379258
0.00206105
0.0039404
0.00409255
0.00211512
1.56733e-06
-3.46567e-06
6.96538e-06
-8.97574e-07
1.70794e-05
1.17704e-05
3.28601e-05
3.55558e-05
5.53155e-05
7.15732e-05
8.5488e-05
0.000120987
0.000124417
0.000184977
0.000173082
0.000264687
0.000232327
0.000361133
0.000302764
0.000475099
0.000384665
0.000607
0.000477851
0.00075674
0.000581593
0.000923575
0.000694555
0.00110601
0.000814796
0.00130175
0.000939852
0.00150777
0.0010669
0.00172045
0.00119299
0.00193585
0.00131532
0.00215005
0.00143153
0.0023595
0.00153988
0.00256141
0.00163939
0.00275393
0.00172988
0.00293629
0.00181185
0.00310879
0.00188635
0.00327261
0.00195475
0.00342957
0.00201857
0.00358187
0.00207929
0.00373186
0.0021383
0.00388139
0.00403441
0.00219644
1.36237e-06
-4.82804e-06
6.131e-06
-5.6662e-06
1.51579e-05
2.74347e-06
2.93625e-05
2.13512e-05
4.97287e-05
5.1207e-05
7.72903e-05
9.34251e-05
0.000113104
0.000149164
0.000158203
0.000219587
0.00021354
0.000305796
0.000279897
0.000408742
0.000357789
0.000529108
0.000447352
0.000667177
0.000548235
0.000822692
0.000659512
0.000994731
0.00077964
0.00118162
0.000906486
0.00138092
0.00103743
0.00158951
0.00116955
0.00180373
0.00129988
0.00201971
0.0014257
0.00223369
0.00154474
0.00244236
0.00165547
0.0026432
0.00175711
0.00283465
0.00184967
0.00301623
0.00193384
0.00318844
0.00201077
0.00335264
0.00208195
0.00351069
0.00214892
0.00366489
0.00221324
0.00381706
0.00397169
0.00227596
1.17194e-06
-5.99998e-06
5.34987e-06
-9.84412e-06
1.33481e-05
-5.25481e-06
2.60483e-05
8.65103e-06
4.44006e-05
3.28547e-05
6.94163e-05
6.84094e-05
0.000102149
0.000116431
0.000143662
0.000178074
0.000194979
0.00025448
0.000257013
0.000346708
0.000330482
0.00045564
0.000415798
0.000581861
0.000512959
0.00072553
0.000621448
0.000886242
0.000740149
0.00106292
0.000867331
0.00125374
0.00100068
0.00145615
0.00113746
0.00166695
0.00127466
0.00188251
0.00140933
0.00209903
0.00153879
0.0023129
0.00166093
0.00252105
0.00177438
0.00272121
0.00187853
0.00291207
0.00197359
0.00309339
0.00206037
0.00326585
0.00214017
0.00343089
0.00221451
0.00359055
0.00228508
0.0037465
0.00390369
0.00235307
9.9641e-07
-6.99639e-06
4.62441e-06
-1.34721e-05
1.16573e-05
-1.22877e-05
2.29338e-05
-2.62546e-06
3.93632e-05
1.64253e-05
6.19225e-05
4.58501e-05
9.16457e-05
8.67081e-05
0.000129601
0.000140118
0.000176854
0.000207226
0.000234412
0.00028915
0.000303148
0.000386904
0.000383706
0.000501303
0.000476398
0.000632838
0.000581087
0.000781553
0.000697094
0.000946913
0.00082313
0.00112771
0.000957288
0.001322
0.00109711
0.00152713
0.00123973
0.00173989
0.0013821
0.00195666
0.00152126
0.00217374
0.00165462
0.00238769
0.00178019
0.00259564
0.00189674
0.00279553
0.00200384
0.00298629
0.00210183
0.00316786
0.00219168
0.00334104
0.00227474
0.00350749
0.00235272
0.00366852
0.00382946
0.00242695
8.36001e-07
-7.83239e-06
3.95631e-06
-1.65924e-05
1.00908e-05
-1.84222e-05
2.00318e-05
-1.25665e-05
3.46419e-05
1.81527e-06
5.48548e-05
2.56371e-05
8.16714e-05
5.98916e-05
0.000116145
0.000105645
0.000159355
0.000164016
0.000212366
0.000236139
0.000276163
0.000323107
0.000351577
0.000425889
0.000439182
0.000545234
0.000539187
0.000681548
0.000651328
0.000834772
0.000774776
0.00100426
0.00090808
0.00118869
0.00104918
0.00138604
0.00119548
0.00159359
0.00134402
0.00180811
0.00149172
0.00202604
0.00163563
0.00224378
0.00177322
0.00245804
0.00190261
0.00266613
0.0020227
0.0028662
0.00213321
0.00305735
0.00223462
0.00323964
0.00232794
0.00341417
0.00241475
0.0035817
0.00374774
0.00249647
6.90792e-07
-8.52319e-06
3.34654e-06
-1.92482e-05
8.65214e-06
-2.37278e-05
1.73513e-05
-2.12657e-05
3.02557e-05
-1.10891e-05
4.82493e-05
7.64346e-06
7.22885e-05
3.58524e-05
0.000103395
7.45383e-05
0.00014264
0.000124772
0.000191111
0.000187668
0.000249867
0.00026435
0.000319875
0.000355881
0.00040192
0.000463189
0.000496506
0.000586961
0.000603749
0.000727529
0.000723264
0.000884744
0.000854085
0.00105787
0.000994619
0.0012455
0.00114267
0.00144554
0.00129552
0.00165526
0.00145014
0.00187142
0.0016034
0.00209052
0.00175238
0.00230907
0.0018946
0.00252391
0.00202827
0.00273252
0.0021524
0.00293322
0.00226683
0.00312522
0.00237207
0.00330893
0.00246938
0.00348439
0.00365698
0.00256014
5.60719e-07
-9.08391e-06
2.79536e-06
-2.14828e-05
7.34312e-06
-2.82756e-05
1.48977e-05
-2.88202e-05
2.62174e-05
-2.24089e-05
4.21316e-05
-8.27073e-06
6.35443e-05
1.44397e-05
9.14328e-05
4.66498e-05
0.000126839
8.93657e-05
0.000170848
0.00014366
0.000224555
0.000210642
0.000289017
0.00029142
0.000365175
0.00038703
0.000453775
0.000498361
0.000555258
0.000626046
0.00066965
0.000770352
0.000796461
0.00093106
0.000934602
0.00110736
0.00108235
0.00129779
0.0012374
0.00150022
0.00139693
0.00171189
0.00155784
0.00192961
0.00171699
0.00214993
0.00187143
0.00236947
0.00201876
0.0025852
0.00215723
0.00279474
0.00228595
0.0029965
0.00240476
0.00319012
0.00251438
0.00337477
0.00355528
0.00261608
4.45571e-07
-9.52948e-06
2.30237e-06
-2.33396e-05
6.16372e-06
-3.21369e-05
1.26729e-05
-3.53294e-05
2.25336e-05
-3.22695e-05
3.65176e-05
-2.22547e-05
5.54709e-05
-4.51357e-06
8.03166e-05
2.1804e-05
0.000112052
5.76302e-05
0.000151737
0.000103974
0.000200473
0.000161907
0.00025936
0.000232532
0.000329451
0.00031694
0.000411669
0.000416143
0.000506721
0.000530994
0.000614993
0.000662081
0.000736434
0.000809618
0.000870461
0.000973334
0.00101588
0.00115237
0.00117087
0.00134523
0.00133301
0.00154975
0.0014994
0.00176321
0.0016669
0.00198243
0.0018323
0.00220406
0.0019927
0.0024248
0.00214569
0.00264176
0.00228958
0.00285261
0.00242341
0.00305629
0.00254718
0.00325101
0.0034405
0.00266196
3.44978e-07
-9.87445e-06
1.86644e-06
-2.48611e-05
5.11215e-06
-3.53826e-05
1.06752e-05
-4.08925e-05
1.92046e-05
-4.07989e-05
3.1413e-05
-3.44632e-05
4.80853e-05
-2.11858e-05
7.00836e-05
-1.94301e-07
9.83496e-05
2.93642e-05
0.0001339
6.8424e-05
0.000177812
0.000117995
0.000231201
0.000179143
0.000295176
0.000252965
0.000370786
0.000340534
0.000458939
0.000442841
0.000560312
0.000560707
0.000675243
0.000694688
0.00080362
0.000844958
0.000944782
0.00101121
0.00109745
0.00119256
0.00125972
0.00138749
0.00142908
0.00159385
0.00160258
0.00180893
0.00177701
0.00202963
0.00194916
0.00225265
0.00211609
0.00247483
0.00227541
0.00269329
0.00242533
0.00290637
0.00256491
0.00311143
0.00331031
0.00269509
2.58391e-07
-1.01328e-05
1.48568e-06
-2.60884e-05
4.18476e-06
-3.80817e-05
8.89952e-06
-4.56073e-05
1.62247e-05
-4.81241e-05
2.68143e-05
-4.50528e-05
4.13902e-05
-3.57617e-05
6.07497e-05
-1.95538e-05
8.57711e-05
4.34288e-06
0.000117414
3.67812e-05
0.000156713
7.8695e-05
0.000204765
0.000131091
0.000262699
0.000195031
0.000331632
0.000271601
0.000412613
0.000361859
0.000506542
0.000466778
0.000614074
0.000587156
0.00073551
0.000723522
0.000870692
0.000876028
0.0010189
0.00104435
0.0011788
0.00122759
0.00134841
0.00142424
0.00152517
0.00163217
0.00170608
0.00184872
0.00188788
0.00207084
0.00206734
0.00229537
0.00224155
0.00251908
0.00240795
0.00273997
0.00256461
0.00295477
0.00316238
0.00271254
1.85074e-07
-1.03179e-05
1.15742e-06
-2.70607e-05
3.37607e-06
-4.03003e-05
7.33703e-06
-4.95683e-05
1.35823e-05
-5.43694e-05
2.27082e-05
-5.41786e-05
3.53738e-05
-4.84273e-05
5.231e-05
-3.64901e-05
7.43269e-05
-1.7674e-05
0.000102318
8.78999e-06
0.000137261
4.37522e-05
0.000180209
8.81431e-05
0.000232276
0.000142965
0.000294605
0.000209271
0.000368327
0.000288137
0.000454495
0.00038061
0.000554005
0.000487646
0.000667499
0.000610027
0.000795259
0.000748268
0.000937096
0.000902512
0.00109226
0.00107243
0.00125936
0.00125713
0.00143639
0.00145514
0.00162076
0.00166435
0.00180943
0.00188217
0.00199915
0.00210565
0.00218672
0.00233152
0.00236912
0.00255756
0.00254344
0.00278045
0.00299438
0.00271144
1.24093e-07
-1.0442e-05
8.78198e-07
-2.78148e-05
2.67877e-06
-4.21009e-05
5.97567e-06
-5.28651e-05
1.12602e-05
-5.96539e-05
1.90727e-05
-6.19911e-05
3.00111e-05
-5.93658e-05
4.47402e-05
-5.12192e-05
6.40001e-05
-3.69339e-05
8.8613e-05
-1.58229e-05
0.000119488
1.28775e-05
0.000157619
5.00121e-05
0.000204078
9.65056e-05
0.000259996
0.000153353
0.000326535
0.000221599
0.000404837
0.000302308
0.000495965
0.000396518
0.00060082
0.000505172
0.000720044
0.000629044
0.000853912
0.000768644
0.00100222
0.000924116
0.00116422
0.00109514
0.00133849
0.00128086
0.00152304
0.00147981
0.00171525
0.00168995
0.00191215
0.00190876
0.00211054
0.00213312
0.00230736
0.00236074
0.00249896
0.00258885
0.00280437
0.00268897
7.43203e-08
-1.05163e-05
6.43811e-07
-2.83843e-05
2.08387e-06
-4.3541e-05
4.80019e-06
-5.55815e-05
9.23575e-06
-6.40895e-05
1.58776e-05
-6.8633e-05
2.52651e-05
-6.87532e-05
3.79984e-05
-6.39525e-05
5.4748e-05
-5.36834e-05
7.62629e-05
-3.73378e-05
0.000103378
-1.42372e-05
0.000137015
1.63744e-05
0.000178187
5.5334e-05
0.000227982
0.000103558
0.00028755
0.000162031
0.000358069
0.000231789
0.0004407
0.000313887
0.000536519
0.000409353
0.000646441
0.000519122
0.000771119
0.000643966
0.000910837
0.000784398
0.00106541
0.000940573
0.00123407
0.00111219
0.00141547
0.00129842
0.0016076
0.00149782
0.00180795
0.00170841
0.00201362
0.00192745
0.00222215
0.00215221
0.00242881
0.00238219
0.00258842
0.00264476
3.44558e-08
-1.05508e-05
4.49391e-07
-2.87993e-05
1.58085e-06
-4.46724e-05
3.79258e-06
-5.77932e-05
7.48194e-06
-6.77788e-05
1.30858e-05
-7.42369e-05
2.10878e-05
-7.67552e-05
3.20269e-05
-7.48915e-05
4.65059e-05
-6.81625e-05
6.52012e-05
-5.60331e-05
8.88705e-05
-3.79065e-05
0.000118359
-1.31145e-05
0.000154605
1.90883e-05
0.000198634
5.95288e-05
0.000251552
0.000109112
0.000314528
0.000168813
0.000388758
0.000239658
0.000475421
0.000322689
0.000575616
0.000418928
0.000690276
0.000529306
0.000820077
0.000654597
0.000965331
0.000795319
0.00112588
0.000951644
0.001301
0.00112329
0.00148938
0.00130944
0.00168912
0.00150867
0.0018977
0.00171887
0.00211356
0.00193636
0.00233105
0.0021647
0.00234509
0.00257439
3.05776e-09
-1.05538e-05
2.89527e-07
-2.90857e-05
1.15797e-06
-4.55409e-05
2.93261e-06
-5.95678e-05
5.96804e-06
-7.08143e-05
1.06543e-05
-7.89231e-05
1.74231e-05
-8.3524e-05
2.67556e-05
-8.42241e-05
3.91909e-05
-8.05978e-05
5.53348e-05
-7.21771e-05
7.58692e-05
-5.84408e-05
0.00010156
-3.8805e-05
0.000133262
-1.26144e-05
0.000171927
2.08645e-05
0.000218593
6.24458e-05
0.000274384
0.000113022
0.000340485
0.000173557
0.000418111
0.000245063
0.000508464
0.000328575
0.000612664
0.000425106
0.000731675
0.000535586
0.000866203
0.000660791
0.0010166
0.00080125
0.00118274
0.000957146
0.00136397
0.00112821
0.00155903
0.00131361
0.00176594
0.00151196
0.00198286
0.00171943
0.00220439
0.00194317
0.00215203
0.00239745
-2.14206e-08
-1.05324e-05
1.58422e-07
-2.92656e-05
8.02665e-07
-4.61851e-05
2.19848e-06
-6.09637e-05
4.66071e-06
-7.32765e-05
8.53599e-06
-8.27984e-05
1.42082e-05
-8.91962e-05
2.2105e-05
-9.21209e-05
3.27058e-05
-9.11986e-05
4.65501e-05
-8.60214e-05
6.42466e-05
-7.61373e-05
8.6482e-05
-6.10404e-05
0.000114029
-4.01613e-05
0.000147752
-1.28589e-05
0.000188612
2.1586e-05
0.000237661
6.39734e-05
0.000296036
0.000115182
0.000364937
0.000176162
0.000445599
0.000247913
0.000539245
0.00033146
0.000647021
0.00042781
0.00076992
0.000537891
0.000908687
0.000662483
0.00106371
0.000802124
0.00123491
0.000957012
0.00142164
0.00112688
0.00162252
0.00131108
0.00183539
0.00150656
0.00205907
0.00171949
0.00194083
0.00227027
-4.05638e-08
-1.04919e-05
5.01388e-08
-2.93563e-05
5.01946e-07
-4.66369e-05
1.56762e-06
-6.20293e-05
3.52528e-06
-7.52341e-05
6.68172e-06
-8.59548e-05
1.13769e-05
-9.38914e-05
1.79897e-05
-9.87336e-05
2.69445e-05
-0.000100154
3.87196e-05
-9.77965e-05
5.38548e-05
-9.12726e-05
7.29612e-05
-8.01468e-05
9.67292e-05
-6.39294e-05
0.000125937
-4.20667e-05
0.000161456
-1.39333e-05
0.000204255
2.11747e-05
0.000255395
6.4042e-05
0.000316025
0.000115532
0.000387357
0.00017658
0.000470644
0.000248174
0.000567125
0.000331328
0.000677974
0.000427043
0.000804212
0.000536246
0.000946613
0.000659723
0.00110559
0.00079803
0.00128109
0.00095139
0.00147246
0.00111971
0.00167787
0.00130115
0.00189818
0.00149918
0.00171994
0.00211907
-5.59555e-08
-1.04359e-05
-4.12949e-08
-2.93709e-05
2.42819e-07
-4.6921e-05
1.01747e-06
-6.2804e-05
2.52694e-06
-7.67436e-05
5.04174e-06
-8.84696e-05
8.86197e-06
-9.77116e-05
1.43221e-05
-0.000104194
2.1797e-05
-0.000107628
3.17085e-05
-0.000107708
4.45334e-05
-0.000104098
6.0812e-05
-9.64253e-05
8.11563e-05
-8.42737e-05
0.000106259
-6.71698e-05
0.000136902
-4.45763e-05
0.000173961
-1.5884e-05
0.000218408
1.95949e-05
0.000271312
6.26289e-05
0.000333825
0.000114066
0.000407173
0.000174826
0.000492616
0.000245886
0.000591411
0.000328248
0.000704747
0.000422909
0.00083367
0.0005308
0.000978977
0.000652723
0.00114111
0.000789259
0.00132009
0.000940729
0.00151474
0.00110651
0.00172611
0.00128781
0.00149772
0.00194833
-6.91126e-08
-1.03668e-05
-1.21585e-07
-2.93185e-05
1.3155e-08
-4.70558e-05
5.26276e-07
-6.33171e-05
1.63198e-06
-7.78493e-05
3.56774e-06
-9.04053e-05
6.59764e-06
-0.000100742
1.10163e-05
-0.000108612
1.71538e-05
-0.000113766
2.53814e-05
-0.000115936
3.61185e-05
-0.000114835
4.98406e-05
-0.000110147
6.70869e-05
-0.00010152
8.84696e-05
-8.85524e-05
0.000114682
-7.07884e-05
0.000146505
-4.77072e-05
0.000184815
-1.87154e-05
0.000230586
1.68582e-05
0.000284886
5.97664e-05
0.00034887
0.000110842
0.000423765
0.000170991
0.000510836
0.000241177
0.000611347
0.000322398
0.0007265
0.000415647
0.000857354
0.000521869
0.00100473
0.000641882
0.00116915
0.000776314
0.00135017
0.000925487
0.00154869
0.00108928
0.00128111
0.0017653
-8.14502e-08
-1.02853e-05
-1.9611e-07
-2.92038e-05
-1.99519e-07
-4.70524e-05
7.36023e-08
-6.35902e-05
8.08899e-07
-7.85846e-05
2.21444e-06
-9.18109e-05
4.52204e-06
-0.000103049
7.99073e-06
-0.000112081
1.29106e-05
-0.000118686
1.96078e-05
-0.000122633
2.84504e-05
-0.000123677
3.98553e-05
-0.000121552
5.42954e-05
-0.00011596
7.23079e-05
-0.000106565
9.45028e-05
-9.29833e-05
0.00012157
-7.47748e-05
0.000154289
-5.14343e-05
0.000193532
-2.23841e-05
0.000240266
1.30323e-05
0.000295555
5.55528e-05
0.000360549
0.000105996
0.00043647
0.000165257
0.000524578
0.000234289
0.000626136
0.000314089
0.000742349
0.000405656
0.000874287
0.000509944
0.0010228
0.000627803
0.00118817
0.000760111
0.00137137
0.000906087
0.00107559
0.00157688
-9.41836e-08
-1.01912e-05
-2.69453e-07
-2.90285e-05
-4.04684e-07
-4.69171e-05
-3.58657e-07
-6.36363e-05
2.95684e-08
-7.89728e-05
9.4101e-07
-9.27223e-05
2.5791e-06
-0.000104687
5.17114e-06
-0.000114673
8.97184e-06
-0.000122486
1.42673e-05
-0.000127928
2.13801e-05
-0.00013079
3.06749e-05
-0.000130847
4.25651e-05
-0.00012785
5.75201e-05
-0.00012152
7.60731e-05
-0.000111536
9.88288e-05
-9.75305e-05
0.000126472
-7.90772e-05
0.000159773
-5.56851e-05
0.000199595
-2.67899e-05
0.000246896
8.25166e-06
0.000302727
5.01653e-05
0.000368225
9.97592e-05
0.000444595
0.000157919
0.000533088
0.000225596
0.000634957
0.000303787
0.000751405
0.000393496
0.000883503
0.000495704
0.00103215
0.000611468
0.00119858
0.000739653
0.000885053
0.00138912
-1.08361e-07
-1.00828e-05
-3.45662e-07
-2.87912e-05
-6.11545e-07
-4.66512e-05
-7.86151e-07
-6.34616e-05
-7.30897e-07
-7.90281e-05
-2.88019e-07
-9.31652e-05
7.20036e-07
-0.000105695
2.49268e-06
-0.000116446
5.25351e-06
-0.000125247
9.25341e-06
-0.000131928
1.47748e-05
-0.000136311
2.21363e-05
-0.000138208
3.16985e-05
-0.000137413
4.38701e-05
-0.000133692
5.91151e-05
-0.000126781
7.796e-05
-0.000116375
0.000101001
-0.000102119
0.000128914
-8.35974e-05
0.000162455
-6.03316e-05
0.000202475
-3.17677e-05
0.000249912
2.7278e-06
0.0003058
4.38719e-05
0.000371252
9.2466e-05
0.000447457
0.000149392
0.000535646
0.000215598
0.000637068
0.000292074
0.000752946
0.000379827
0.000884617
0.000479797
0.00103374
0.000590531
0.000711851
0.00120694
-1.24815e-07
-9.95798e-06
-4.27964e-07
-2.84881e-05
-8.27251e-07
-4.6252e-05
-1.2216e-06
-6.30673e-05
-1.49206e-06
-7.87576e-05
-1.50182e-06
-9.31554e-05
-1.09565e-06
-0.000106101
-9.87334e-08
-0.000117443
1.68499e-06
-0.000127031
4.47575e-06
-0.000134719
8.52082e-06
-0.000140357
1.40985e-05
-0.000143786
2.1523e-05
-0.000144837
3.11494e-05
-0.000143318
4.33802e-05
-0.000139012
5.86715e-05
-0.000131667
7.75402e-05
-0.000120987
0.000100571
-0.000106628
0.000128424
-8.81846e-05
0.000161841
-6.51843e-05
0.000201649
-3.70806e-05
0.000248767
-3.24616e-06
0.000304203
3.70307e-05
0.000369048
8.45462e-05
0.000444475
0.000140172
0.000531722
0.000204827
0.000632111
0.000279438
0.000747273
0.000364634
0.000879233
0.000458571
0.000557104
0.00103398
-1.4415e-07
-9.81383e-06
-5.18756e-07
-2.81135e-05
-1.05721e-06
-4.57135e-05
-1.67473e-06
-6.24498e-05
-2.26953e-06
-7.81628e-05
-2.72304e-06
-9.27019e-05
-2.89968e-06
-0.000105925
-2.64614e-06
-0.000117696
-1.79004e-06
-0.000127887
-1.38156e-07
-0.000136371
2.52613e-06
-0.000143021
6.44616e-06
-0.000147706
1.18955e-05
-0.000150286
1.91827e-05
-0.000150605
2.8656e-05
-0.000148485
4.07093e-05
-0.00014372
5.57884e-05
-0.000136066
7.43975e-05
-0.000125237
9.71063e-05
-0.000110893
0.000124557
-9.26347e-05
0.00015747
-6.99935e-05
0.000196651
-4.24271e-05
0.000242995
-9.31344e-06
0.000297491
3.00498e-05
0.000361229
7.64342e-05
0.000435409
0.000130646
0.000521411
0.000193436
0.000621028
0.000265017
0.000736483
0.000343116
0.000420982
0.000872606
-1.66749e-07
-9.64708e-06
-6.1961e-07
-2.76606e-05
-1.30507e-06
-4.5028e-05
-2.15223e-06
-6.16026e-05
-3.07407e-06
-7.7241e-05
-3.9678e-06
-9.18082e-05
-4.71485e-06
-0.000105178
-5.18057e-06
-0.000117231
-5.21329e-06
-0.000127854
-4.64307e-06
-0.000136941
-3.27967e-06
-0.000144384
-9.10258e-07
-0.000150076
2.70372e-06
-0.0001539
7.83012e-06
-0.000155732
1.47703e-05
-0.000155425
2.38639e-05
-0.000152814
3.54943e-05
-0.000147697
5.00948e-05
-0.000139838
6.81545e-05
-0.000128953
9.02261e-05
-0.000114706
0.000116932
-9.66999e-05
0.000148975
-7.44697e-05
0.000187142
-4.74807e-05
0.000232321
-1.5129e-05
0.000285514
2.3241e-05
0.000347875
6.82856e-05
0.000420796
0.000120515
0.000506112
0.000179701
0.000606034
0.000243194
0.000302973
0.000724042
-1.92779e-07
-9.45431e-06
-7.31306e-07
-2.71221e-05
-1.57276e-06
-4.41866e-05
-2.65784e-06
-6.05175e-05
-3.91199e-06
-7.59868e-05
-5.24587e-06
-9.04743e-05
-6.55554e-06
-0.000103868
-7.72238e-06
-0.000116064
-8.61256e-06
-0.000126964
-9.07619e-06
-0.000136477
-8.94587e-06
-0.000144515
-8.03492e-06
-0.000150987
-6.13498e-06
-0.0001558
-3.01317e-06
-0.000158853
1.59143e-06
-0.00016003
7.9717e-06
-0.000159194
1.64573e-05
-0.000156182
2.74196e-05
-0.0001508
4.12784e-05
-0.000142812
5.85081e-05
-0.000131936
7.96457e-05
-0.000117838
0.000105301
-0.000100125
0.000136166
-7.83462e-05
0.000173036
-5.19991e-05
0.000216832
-2.05552e-05
0.00026865
1.64676e-05
0.000329856
5.93098e-05
0.000402212
0.000107344
0.000487722
0.000157685
0.000202115
0.00058858
-2.2221e-07
-9.2321e-06
-8.53893e-07
-2.64904e-05
-1.86064e-06
-4.31798e-05
-3.19257e-06
-5.91856e-05
-4.78544e-06
-7.4394e-05
-6.56119e-06
-8.86986e-05
-8.42825e-06
-0.000102001
-1.02817e-05
-0.00011421
-1.20028e-05
-0.000125243
-1.3459e-05
-0.000135021
-1.45024e-05
-0.000143471
-1.49687e-05
-0.00015052
-1.46754e-05
-0.000156094
-1.34195e-05
-0.000160109
-1.09746e-05
-0.000162475
-7.08765e-06
-0.000163081
-1.47498e-06
-0.000161795
6.18259e-06
-0.000158458
1.62453e-05
-0.000152875
2.91211e-05
-0.000144812
4.5274e-05
-0.000133991
6.52349e-05
-0.000120086
8.96153e-05
-0.000102727
0.000119128
-8.15121e-05
0.00015462
-5.60469e-05
0.000197119
-2.6032e-05
0.00024792
8.50972e-06
0.000308619
4.66451e-05
0.000380878
8.54256e-05
0.000117168
0.000465825
-2.5484e-07
-8.97725e-06
-9.86764e-07
-2.57585e-05
-2.16767e-06
-4.19989e-05
-3.75502e-06
-5.75983e-05
-5.69289e-06
-7.24561e-05
-7.91247e-06
-8.6479e-05
-1.03325e-05
-9.9581e-05
-1.28595e-05
-0.000111683
-1.53877e-05
-0.000122715
-1.7799e-05
-0.00013261
-1.99622e-05
-0.000141308
-2.17322e-05
-0.00014875
-2.29482e-05
-0.000154877
-2.34327e-05
-0.000159625
-2.29885e-05
-0.000162919
-2.13963e-05
-0.000164673
-1.8411e-05
-0.00016478
-1.37575e-05
-0.000163111
-7.12514e-06
-0.000159507
1.83852e-06
-0.000153775
1.35367e-05
-0.000145689
2.84346e-05
-0.000134983
4.70747e-05
-0.000121367
7.00996e-05
-0.000104537
9.82833e-05
-8.42306e-05
0.000132576
-6.03245e-05
0.000174154
-3.30689e-05
0.000224387
-3.5878e-06
0.000284533
2.52803e-05
4.67569e-05
0.000354944
-2.90316e-07
-8.68694e-06
-1.12875e-06
-2.492e-05
-2.49157e-06
-4.06361e-05
-4.34169e-06
-5.57481e-05
-6.62963e-06
-7.01682e-05
-9.29395e-06
-8.38147e-05
-1.22618e-05
-9.66132e-05
-1.54491e-05
-0.000108496
-1.8761e-05
-0.000119403
-2.20917e-05
-0.000129279
-2.53238e-05
-0.000138076
-2.83284e-05
-0.000145746
-3.09633e-05
-0.000152243
-3.30724e-05
-0.000157516
-3.4483e-05
-0.000161509
-3.50042e-05
-0.000164152
-3.44229e-05
-0.000165362
-3.25006e-05
-0.000165034
-2.8968e-05
-0.00016304
-2.35182e-05
-0.000159225
-1.57984e-05
-0.000153409
-5.39805e-06
-0.000145384
8.16677e-06
-0.000134931
2.5475e-05
-0.000121845
4.7228e-05
-0.000105984
7.42827e-05
-8.73793e-05
0.000107668
-6.64542e-05
0.000148489
-4.44089e-05
0.0001976
-2.38308e-05
-1.05195e-05
0.000254877
-3.28162e-07
-8.35878e-06
-1.27823e-06
-2.397e-05
-2.82906e-06
-3.90853e-05
-4.94733e-06
-5.36299e-05
-7.58828e-06
-6.75272e-05
-1.06961e-05
-8.07068e-05
-1.42047e-05
-9.31046e-05
-1.80376e-05
-0.000104663
-2.21089e-05
-0.000115332
-2.63228e-05
-0.000125065
-3.05739e-05
-0.000133825
-3.47466e-05
-0.000141573
-3.87145e-05
-0.000148275
-4.23392e-05
-0.000153891
-4.54687e-05
-0.000158379
-4.79354e-05
-0.000161685
-4.95533e-05
-0.000163744
-5.01139e-05
-0.000164473
-4.93819e-05
-0.000163772
-4.70883e-05
-0.000161519
-4.29221e-05
-0.000157575
-3.65191e-05
-0.000151787
-2.7447e-05
-0.000144004
-1.51869e-05
-0.000134105
8.87817e-07
-0.000122058
2.15273e-05
-0.000108019
4.75948e-05
-9.25217e-05
7.99384e-05
-7.67525e-05
0.000119025
-6.29174e-05
-5.60085e-05
0.000164514
-3.67805e-07
-7.99097e-06
-1.43319e-06
-2.29046e-05
-3.17607e-06
-3.73424e-05
-5.56534e-06
-5.12406e-05
-8.55941e-06
-6.45332e-05
-1.21066e-05
-7.71596e-05
-1.61459e-05
-8.90653e-05
-2.0607e-05
-0.000100202
-2.54111e-05
-0.000110528
-3.04708e-05
-0.000120006
-3.56904e-05
-0.000128605
-4.09655e-05
-0.000136298
-4.61828e-05
-0.000143057
-5.12187e-05
-0.000148855
-5.59386e-05
-0.000153659
-6.01943e-05
-0.000157429
-6.3822e-05
-0.000160116
-6.66384e-05
-0.000161656
-6.84364e-05
-0.000161974
-6.89787e-05
-0.000160977
-6.79899e-05
-0.000158564
-6.51463e-05
-0.00015463
-6.00635e-05
-0.000149086
-5.22813e-05
-0.000141887
-4.12517e-05
-0.000133088
-2.63372e-05
-0.000122933
-6.84779e-06
-0.000112011
1.78458e-05
-0.000101446
4.80029e-05
-9.30745e-05
-9.07974e-05
8.27918e-05
-4.08604e-07
-7.58237e-06
-1.59137e-06
-2.17218e-05
-3.52794e-06
-3.54058e-05
-6.18808e-06
-4.85805e-05
-9.53202e-06
-6.11892e-05
-1.35109e-05
-7.31807e-05
-1.80674e-05
-8.45089e-05
-2.31358e-05
-9.51336e-05
-2.8643e-05
-0.00010502
-3.45084e-05
-0.00011414
-4.06443e-05
-0.000122469
-4.69557e-05
-0.000129987
-5.33399e-05
-0.000136673
-5.96859e-05
-0.000142509
-6.58733e-05
-0.000147472
-7.17703e-05
-0.000151532
-7.72317e-05
-0.000154655
-8.20954e-05
-0.000156793
-8.61779e-05
-0.000157891
-8.92692e-05
-0.000157885
-9.11254e-05
-0.000156707
-9.146e-05
-0.000154296
-8.9934e-05
-0.000150612
-8.61464e-05
-0.000145675
-7.96294e-05
-0.000139605
-6.98607e-05
-0.000132702
-5.63063e-05
-0.000125566
-3.84858e-05
-0.000119267
-1.62351e-05
-0.000115325
-0.000114604
7.57115e-06
-4.49868e-07
-7.1325e-06
-1.75031e-06
-2.04214e-05
-3.87961e-06
-3.32765e-05
-6.80724e-06
-4.56528e-05
-1.04941e-05
-5.75023e-05
-1.4893e-05
-6.87818e-05
-1.99489e-05
-7.9453e-05
-2.55998e-05
-8.94827e-05
-3.17768e-05
-9.88433e-05
-3.84049e-05
-0.000107512
-4.54026e-05
-0.000115471
-5.26826e-05
-0.000122707
-6.01513e-05
-0.000129204
-6.77081e-05
-0.000134952
-7.52445e-05
-0.000139935
-8.26425e-05
-0.000144134
-8.97726e-05
-0.000147525
-9.64906e-05
-0.000150075
-0.000102634
-0.000151748
-0.000108017
-0.000152502
-0.000112424
-0.0001523
-0.000115603
-0.000151116
-0.000117262
-0.000148954
-0.000117057
-0.00014588
-0.000114601
-0.00014206
-0.000109482
-0.000137821
-0.000101309
-0.000133739
-8.98461e-05
-0.000130729
-7.53234e-05
-0.000129848
-0.000132248
-5.76785e-05
-4.90884e-07
-6.64161e-06
-1.90747e-06
-1.90048e-05
-4.22579e-06
-3.09582e-05
-7.4141e-06
-4.24645e-05
-1.1433e-05
-5.34834e-05
-1.6236e-05
-6.39789e-05
-2.17694e-05
-7.39195e-05
-2.79737e-05
-8.32784e-05
-3.47833e-05
-9.20337e-05
-4.21272e-05
-0.000100168
-4.99293e-05
-0.000107669
-5.81087e-05
-0.000114527
-6.65789e-05
-0.000120734
-7.52483e-05
-0.000126283
-8.40183e-05
-0.000131165
-9.27827e-05
-0.00013537
-0.000101425
-0.000138882
-0.000109818
-0.000141682
-0.000117817
-0.000143749
-0.000125258
-0.000145062
-0.000131953
-0.000145606
-0.000137684
-0.000145385
-0.000142201
-0.000144437
-0.00014522
-0.000142861
-0.000146432
-0.000140848
-0.000145524
-0.00013873
-0.000142231
-0.000137032
-0.000136455
-0.000136505
-0.000128348
-0.000137955
-0.000142492
-0.000118105
-5.30934e-07
-6.11068e-06
-2.06028e-06
-1.74755e-05
-4.56114e-06
-2.84574e-05
-7.99986e-06
-3.90258e-05
-1.2336e-05
-4.91472e-05
-1.75228e-05
-5.87921e-05
-2.35074e-05
-6.79349e-05
-3.02317e-05
-7.65542e-05
-3.76323e-05
-8.4633e-05
-4.56417e-05
-9.21589e-05
-5.41879e-05
-9.91232e-05
-6.31949e-05
-0.00010552
-7.25827e-05
-0.000111346
-8.22667e-05
-0.000116599
-9.21572e-05
-0.000121275
-0.000102158
-0.000125369
-0.000112165
-0.000128875
-0.000122064
-0.000131783
-0.000131727
-0.000134086
-0.000141012
-0.000135777
-0.000149755
-0.000136862
-0.000157773
-0.000137367
-0.000164858
-0.000137352
-0.000170781
-0.000136938
-0.000175305
-0.000136324
-0.000178206
-0.000135828
-0.000179323
-0.000135914
-0.000178643
-0.000137186
-0.000176333
-0.000140265
-0.000146073
-0.000172752
-5.69313e-07
-5.54137e-06
-2.20619e-06
-1.58386e-05
-4.8804e-06
-2.57832e-05
-8.55584e-06
-3.53504e-05
-1.31905e-05
-4.45126e-05
-1.87367e-05
-5.32459e-05
-2.51417e-05
-6.15299e-05
-3.23481e-05
-6.93478e-05
-4.02943e-05
-7.66868e-05
-4.89151e-05
-8.35382e-05
-5.81417e-05
-8.98965e-05
-6.79025e-05
-9.57594e-05
-7.81225e-05
-0.000101126
-8.87232e-05
-0.000105998
-9.96225e-05
-0.000110376
-0.000110733
-0.000114259
-0.000121961
-0.000117647
-0.000133205
-0.000120539
-0.000144353
-0.000122937
-0.000155282
-0.000124848
-0.000165854
-0.00012629
-0.000175915
-0.000127306
-0.000185298
-0.000127969
-0.000193827
-0.000128409
-0.000201329
-0.000128822
-0.000207658
-0.000129499
-0.000212734
-0.000130839
-0.000216602
-0.000133317
-0.000219455
-0.000137413
-0.000143848
-0.00022168
-6.05344e-07
-4.93602e-06
-2.34279e-06
-1.41011e-05
-5.17852e-06
-2.29474e-05
-9.07368e-06
-3.14552e-05
-1.39843e-05
-3.9602e-05
-1.98614e-05
-4.73688e-05
-2.66519e-05
-5.47394e-05
-3.42985e-05
-6.17011e-05
-4.27408e-05
-6.82445e-05
-5.19153e-05
-7.43637e-05
-6.17558e-05
-8.0056e-05
-7.2194e-05
-8.53212e-05
-8.31592e-05
-9.01612e-05
-9.45784e-05
-9.45791e-05
-0.000106376
-9.85785e-05
-0.000118471
-0.000102163
-0.000130781
-0.000105337
-0.000143216
-0.000108105
-0.000155678
-0.000110476
-0.000168061
-0.000112465
-0.000180251
-0.0001141
-0.000192124
-0.000115433
-0.00020355
-0.000116543
-0.000214401
-0.000117558
-0.000224559
-0.000118664
-0.000233942
-0.000120117
-0.000242532
-0.000122248
-0.000250417
-0.000125432
-0.0002578
-0.00013003
-0.000136595
-0.000265052
-6.38394e-07
-4.29763e-06
-2.46779e-06
-1.22717e-05
-5.45075e-06
-1.99645e-05
-9.54557e-06
-2.73604e-05
-1.4706e-05
-3.44416e-05
-2.08818e-05
-4.1193e-05
-2.80189e-05
-4.76023e-05
-3.606e-05
-5.366e-05
-4.49452e-05
-5.93593e-05
-5.46122e-05
-6.46967e-05
-6.49971e-05
-6.96711e-05
-7.6034e-05
-7.42842e-05
-8.76561e-05
-7.85392e-05
-9.97946e-05
-8.24406e-05
-0.000112379
-8.59939e-05
-0.000125337
-8.92051e-05
-0.000138593
-9.20811e-05
-0.000152067
-9.46307e-05
-0.000165675
-9.6867e-05
-0.00017933
-9.88106e-05
-0.000192935
-0.000100494
-0.000206397
-0.000101971
-0.000219617
-0.000103323
-0.000232508
-0.000104667
-0.000245002
-0.00010617
-0.000257067
-0.000108052
-0.000268732
-0.000110583
-0.000280113
-0.000114051
-0.000291416
-0.000118727
-0.00012503
-0.000302981
-6.67881e-07
-3.62975e-06
-2.57911e-06
-1.03605e-05
-5.69276e-06
-1.68508e-05
-9.96435e-06
-2.30888e-05
-1.53454e-05
-2.90605e-05
-2.17841e-05
-3.47543e-05
-2.92253e-05
-4.01611e-05
-3.76116e-05
-4.52738e-05
-4.68831e-05
-5.00878e-05
-5.69786e-05
-5.46012e-05
-6.78355e-05
-5.88142e-05
-7.93904e-05
-6.27293e-05
-9.15792e-05
-6.63504e-05
-0.000104337
-6.96828e-05
-0.000117598
-7.27327e-05
-0.000131296
-7.55071e-05
-0.000145363
-7.80145e-05
-0.000159728
-8.02657e-05
-0.000174319
-8.22755e-05
-0.000189064
-8.40663e-05
-0.000203886
-8.5672e-05
-0.000218714
-8.71437e-05
-0.00023348
-8.85562e-05
-0.000248132
-9.00151e-05
-0.00026264
-9.16625e-05
-0.000277013
-9.36793e-05
-0.000291315
-9.62804e-05
-0.000305681
-9.96848e-05
-0.000320316
-0.000104093
-0.000109818
-0.000335528
-6.93292e-07
-2.93646e-06
-2.67488e-06
-8.37893e-06
-5.9007e-06
-1.3625e-05
-1.03237e-05
-1.86658e-05
-1.58932e-05
-2.34909e-05
-2.25559e-05
-2.80916e-05
-3.02558e-05
-3.24613e-05
-3.89347e-05
-3.65948e-05
-4.8533e-05
-4.04894e-05
-5.89901e-05
-4.41441e-05
-7.02444e-05
-4.75599e-05
-8.22344e-05
-5.07393e-05
-9.48983e-05
-5.36865e-05
-0.000108174
-5.64067e-05
-0.000122001
-5.89059e-05
-0.000136317
-6.11913e-05
-0.00015106
-6.32715e-05
-0.000166169
-6.51572e-05
-0.000181581
-6.68634e-05
-0.000197236
-6.84112e-05
-0.000213076
-6.9832e-05
-0.000229048
-7.11712e-05
-0.000245111
-7.24932e-05
-0.00026124
-7.38863e-05
-0.000277436
-7.5466e-05
-0.00029374
-7.73753e-05
-0.000310242
-7.97786e-05
-0.000327089
-8.2838e-05
-0.000344483
-8.66986e-05
-9.15919e-05
-0.000362709
-7.14182e-07
-2.22227e-06
-2.75352e-06
-6.33958e-06
-6.07126e-06
-1.03073e-05
-1.0618e-05
-1.4119e-05
-1.63415e-05
-1.77674e-05
-2.31868e-05
-2.12464e-05
-3.1097e-05
-2.45511e-05
-4.00134e-05
-2.76784e-05
-4.98765e-05
-3.06264e-05
-6.06259e-05
-3.33948e-05
-7.22009e-05
-3.59848e-05
-8.45414e-05
-3.83988e-05
-9.75875e-05
-4.06404e-05
-0.00011128
-4.27142e-05
-0.000125561
-4.46253e-05
-0.000140372
-4.63802e-05
-0.000155657
-4.79862e-05
-0.000171361
-4.94529e-05
-0.000187431
-5.07932e-05
-0.000203818
-5.20251e-05
-0.000220475
-5.31744e-05
-0.000237369
-5.42779e-05
-0.000254475
-5.53864e-05
-0.000271793
-5.65683e-05
-0.000289348
-5.79109e-05
-0.000307204
-5.95202e-05
-0.000325467
-6.15152e-05
-0.000344295
-6.40099e-05
-0.000363888
-6.71054e-05
-7.09654e-05
-0.000384515
-7.3019e-07
-1.49208e-06
-2.81373e-06
-4.25604e-06
-6.20173e-06
-6.91926e-06
-1.0843e-05
-9.47775e-06
-1.66838e-05
-1.19267e-05
-2.36681e-05
-1.42621e-05
-3.17381e-05
-1.64811e-05
-4.08348e-05
-1.85816e-05
-5.08985e-05
-2.05627e-05
-6.1869e-05
-2.24243e-05
-7.36864e-05
-2.41674e-05
-8.62913e-05
-2.57939e-05
-9.96253e-05
-2.73064e-05
-0.000113631
-2.87083e-05
-0.000128253
-3.00035e-05
-0.000143437
-3.11966e-05
-0.00015913
-3.22933e-05
-0.000175282
-3.33006e-05
-0.000191847
-3.4228e-05
-0.000208784
-3.50886e-05
-0.000226057
-3.59007e-05
-0.000243645
-3.66902e-05
-0.000261539
-3.74922e-05
-0.000279754
-3.83532e-05
-0.000298333
-3.93317e-05
-0.000317356
-4.04977e-05
-0.000336943
-4.19285e-05
-0.000357256
-4.36967e-05
-0.000378495
-4.58663e-05
-4.85424e-05
-0.000400918
-7.41038e-07
-7.51045e-07
-2.85451e-06
-2.14258e-06
-6.29003e-06
-3.48374e-06
-1.09952e-05
-4.77257e-06
-1.69152e-05
-6.00665e-06
-2.39932e-05
-7.18407e-06
-3.21709e-05
-8.30338e-06
-4.1389e-05
-9.36358e-06
-5.15875e-05
-1.03642e-05
-6.27065e-05
-1.13053e-05
-7.46864e-05
-1.21875e-05
-8.74686e-05
-1.30117e-05
-0.000100995
-1.37795e-05
-0.000115211
-1.44926e-05
-0.000130061
-1.51533e-05
-0.000145494
-1.5764e-05
-0.000161459
-1.63278e-05
-0.000177911
-1.68487e-05
-0.000194808
-1.73317e-05
-0.000212113
-1.77837e-05
-0.000229799
-1.82145e-05
-0.000247852
-1.86373e-05
-0.000266274
-1.90703e-05
-0.00028509
-1.95369e-05
-0.000304355
-2.00666e-05
-0.000324158
-2.06943e-05
-0.000344629
-2.14579e-05
-0.000365932
-2.2393e-05
-0.000388268
-2.35305e-05
-2.4922e-05
-0.000411889
-7.46539e-07
-2.87517e-06
-6.33477e-06
-1.10723e-05
-1.70324e-05
-2.41578e-05
-3.23899e-05
-4.16692e-05
-5.19358e-05
-6.31296e-05
-7.51914e-05
-8.80629e-05
-0.000101687
-0.000116008
-0.000130973
-0.000146531
-0.000162633
-0.000179236
-0.000196299
-0.000213789
-0.000231683
-0.00024997
-0.000268657
-0.000287776
-0.000307386
-0.000327582
-0.000348496
-0.000370297
-0.000393182
-0.000417403
-0.000431805
1.34188e-05
9.39195e-07
-0.000445578
1.27854e-05
9.86915e-07
-0.000458646
1.20373e-05
1.03112e-06
-0.000471004
1.12878e-05
1.07055e-06
-0.000482682
1.05741e-05
1.10387e-06
-0.000493731
9.9187e-06
1.1299e-06
-0.000504205
9.32649e-06
1.1475e-06
-0.000514158
8.79732e-06
1.15554e-06
-0.00052364
8.32904e-06
1.15289e-06
-0.000532697
7.9186e-06
1.13846e-06
-0.000541371
7.5627e-06
1.11113e-06
-0.000549699
7.25797e-06
1.06984e-06
-0.000557713
7.00114e-06
1.01352e-06
-0.000565443
6.7891e-06
9.41173e-07
-0.000572914
6.61893e-06
8.51839e-07
-0.000580147
6.48791e-06
7.44632e-07
-0.000587159
6.39353e-06
6.1875e-07
-0.000593966
6.33347e-06
4.73497e-07
-0.00060058
6.30556e-06
3.08302e-07
-0.00060701
6.30778e-06
1.22725e-07
-0.000613265
6.33816e-06
-8.34433e-08
-0.00061935
6.39479e-06
-3.10302e-07
-0.000625268
6.47578e-06
-5.57687e-07
-0.000631022
6.57919e-06
-8.25226e-07
-0.000636612
6.70305e-06
-1.1123e-06
-0.00064204
6.84526e-06
-1.41803e-06
-0.000647302
7.00363e-06
-1.74127e-06
-0.000652397
7.17583e-06
-2.08062e-06
-0.000657322
7.35938e-06
-2.43439e-06
-0.000662073
7.55165e-06
-2.80069e-06
-0.000666646
7.74991e-06
-3.17743e-06
-0.000671034
7.95149e-06
-3.56269e-06
-0.000675233
8.15324e-06
-3.9551e-06
-0.000679237
8.34977e-06
-4.34574e-06
-0.000683042
8.53823e-06
-4.7333e-06
-0.00068664
8.71689e-06
-5.11866e-06
-0.000690024
8.88229e-06
-5.49785e-06
-0.000693188
9.03048e-06
-5.86695e-06
-0.000696124
9.15555e-06
-6.21914e-06
-0.000698827
9.25357e-06
-6.55052e-06
-0.000701289
9.32159e-06
-6.85954e-06
-0.000703504
9.35265e-06
-7.13772e-06
-0.000705465
9.34246e-06
-7.38141e-06
-0.000707168
9.28445e-06
-7.58202e-06
-0.000708607
9.17494e-06
-7.73602e-06
-0.000709775
9.01299e-06
-7.84449e-06
-0.000710666
8.79612e-06
-7.905e-06
-0.000711273
8.522e-06
-7.9153e-06
-0.000711588
8.18825e-06
-7.87303e-06
-0.000711605
7.79272e-06
-7.77591e-06
-0.000711316
7.33357e-06
-7.62199e-06
-0.000710716
6.80941e-06
-7.40971e-06
-0.000709798
6.2193e-06
-7.1379e-06
-0.000708555
5.56306e-06
-6.80588e-06
-0.000706982
4.84009e-06
-6.41315e-06
-0.000705071
4.04819e-06
-5.9588e-06
-0.000702819
3.19412e-06
-5.4465e-06
-0.000700217
2.2705e-06
-4.87191e-06
-0.00069727
1.29228e-06
-4.23989e-06
-0.000693949
2.22047e-07
-3.54253e-06
-0.000690278
-8.66965e-07
-2.80451e-06
-0.000686237
-2.02899e-06
-2.01165e-06
-0.000681823
-3.24593e-06
-1.16837e-06
-0.000677032
-4.50994e-06
-2.81327e-07
-0.00067186
-5.8153e-06
6.4375e-07
-0.000666305
-7.15625e-06
1.60157e-06
-0.000660365
-8.52658e-06
2.58626e-06
-0.000654037
-9.91968e-06
3.59164e-06
-0.00064732
-1.13286e-05
4.61122e-06
-0.000640212
-1.27459e-05
5.63796e-06
-0.000632712
-1.41635e-05
6.66365e-06
-0.000624817
-1.55745e-05
7.6793e-06
-0.000616533
-1.69769e-05
8.69358e-06
-0.000607862
-1.83592e-05
9.68834e-06
-0.000598803
-1.97121e-05
1.06528e-05
-0.000589357
-2.10284e-05
1.15825e-05
-0.000579527
-2.23013e-05
1.24712e-05
-0.000569316
-2.35239e-05
1.33127e-05
-0.000558727
-2.46895e-05
1.41009e-05
-0.000547765
-2.57916e-05
1.48297e-05
-0.000536435
-2.68242e-05
1.54938e-05
-0.000524741
-2.77819e-05
1.6088e-05
-0.000512689
-2.86596e-05
1.66078e-05
-0.000500285
-2.94526e-05
1.70489e-05
-0.000487536
-3.01569e-05
1.74078e-05
-0.000474449
-3.07691e-05
1.76816e-05
-0.00046103
-3.12861e-05
1.78675e-05
-0.000447288
-3.17057e-05
1.79639e-05
-0.000433231
-3.20263e-05
1.79693e-05
-0.000418868
-3.22469e-05
1.78832e-05
-0.000404206
-3.23671e-05
1.77055e-05
-0.000389256
-3.23871e-05
1.74366e-05
-0.000374026
-3.23076e-05
1.70775e-05
-0.000358525
-3.21293e-05
1.66283e-05
-0.000342758
-3.18543e-05
1.60879e-05
-0.000326745
-3.14927e-05
1.548e-05
-0.000310494
-3.10418e-05
1.47908e-05
-0.000294013
-3.05037e-05
1.40225e-05
-0.000277312
-2.98831e-05
1.31819e-05
-0.000260402
-2.9185e-05
1.22744e-05
-0.000243292
-2.84147e-05
1.1305e-05
-0.000225994
-2.75775e-05
1.02792e-05
-0.000208517
-2.66792e-05
9.20293e-06
-0.000190874
-2.57256e-05
8.08182e-06
-0.000173072
-2.47229e-05
6.92188e-06
-0.000155125
-2.36773e-05
5.72937e-06
-0.00013704
-2.25953e-05
4.51068e-06
-0.000118829
-2.14832e-05
3.27201e-06
-0.000100501
-2.03475e-05
2.01966e-06
-8.20662e-05
-1.91949e-05
7.6017e-07
-6.35343e-05
-1.80317e-05
-5.00195e-07
-4.49145e-05
-1.68644e-05
-1.75536e-06
-2.62162e-05
-1.5699e-05
-2.99934e-06
-7.44836e-06
-1.45417e-05
-4.22614e-06
1.13803e-05
-1.33984e-05
-5.4302e-06
3.02611e-05
-1.22748e-05
-6.60601e-06
4.91858e-05
-1.11763e-05
-7.74845e-06
6.81464e-05
-1.0108e-05
-8.85261e-06
8.71351e-05
-9.07479e-06
-9.91388e-06
0.000106144
-8.08124e-06
-1.0928e-05
0.000125167
-7.13157e-06
-1.1891e-05
0.000144196
-6.22967e-06
-1.27992e-05
0.000163224
-5.37906e-06
-1.36494e-05
0.000182246
-4.58295e-06
-1.44387e-05
0.000201254
-3.84413e-06
-1.51645e-05
0.000220244
-3.16505e-06
-1.58248e-05
0.00023921
-2.54781e-06
-1.64176e-05
0.000258145
-1.9941e-06
-1.69415e-05
0.000277046
-1.50529e-06
-1.73954e-05
0.000295907
-1.08237e-06
-1.77787e-05
0.000314724
-7.26009e-07
-1.80908e-05
0.000333492
-4.3655e-07
-1.83317e-05
0.000352208
-2.14154e-07
-1.85014e-05
0.000370868
-5.97777e-08
-1.86002e-05
0.000389469
2.82585e-08
-1.86297e-05
0.000408005
5.71031e-08
-1.85932e-05
0.000426478
1.51982e-08
-1.84882e-05
0.000444879
-7.83817e-08
-1.83221e-05
0.000463208
-2.3777e-07
-1.80912e-05
0.000481463
-4.56281e-07
-1.77987e-05
0.000499641
-7.31098e-07
-1.74476e-05
0.000517742
-1.05973e-06
-1.70406e-05
0.000535762
-1.43962e-06
-1.65805e-05
0.0005537
-1.86804e-06
-1.60702e-05
0.000571555
-2.34217e-06
-1.55127e-05
0.000589325
-2.85905e-06
-1.49112e-05
0.00060701
-3.41562e-06
-1.42689e-05
0.000624608
-4.00875e-06
-1.35892e-05
0.000642118
-4.63523e-06
-1.28753e-05
0.000659541
-5.29181e-06
-1.21308e-05
0.000676875
-5.97522e-06
-1.1359e-05
0.000694121
-6.68216e-06
-1.05636e-05
0.000711278
-7.40934e-06
-9.74779e-06
0.000728347
-8.15347e-06
-8.91518e-06
0.000745327
-8.91133e-06
-8.06916e-06
0.00076222
-9.6797e-06
-7.21311e-06
0.000779026
-1.04555e-05
-6.35033e-06
0.000795745
-1.12355e-05
-5.4841e-06
0.00081238
-1.20169e-05
-4.6176e-06
0.00082893
-1.27967e-05
-3.75392e-06
0.000845399
-1.35722e-05
-2.89606e-06
0.000861786
-1.43407e-05
-2.04694e-06
0.000878095
-1.50995e-05
-1.20936e-06
0.000894328
-1.58464e-05
-3.85964e-07
0.000910486
-1.65791e-05
4.20596e-07
0.000926574
-1.72954e-05
1.20794e-06
0.000942593
-1.79934e-05
1.97372e-06
0.000958549
-1.86713e-05
2.71572e-06
0.000974444
-1.93275e-05
3.43186e-06
0.000990285
-1.99607e-05
4.12019e-06
0.00100608
-2.05698e-05
4.77886e-06
0.00102182
-2.11539e-05
5.40617e-06
0.00103754
-2.17122e-05
6.00052e-06
0.00105322
-2.22454e-05
6.56051e-06
0.00106889
-2.27518e-05
7.08466e-06
0.00108455
-2.32373e-05
7.57219e-06
0.00110022
-2.36937e-05
8.02157e-06
0.00111593
-2.41393e-05
8.43183e-06
0.00113171
-2.45884e-05
8.81013e-06
-2.48779e-05
9.12469e-06
-0.000426234
2.76325e-05
-0.000439869
2.64205e-05
-0.000452816
2.49837e-05
-0.000465066
2.35381e-05
-0.000476646
2.21543e-05
-0.000487605
2.08773e-05
-0.000497995
1.97165e-05
-0.000507868
1.86707e-05
-0.000517274
1.77349e-05
-0.000526258
1.69022e-05
-0.00053486
1.61649e-05
-0.000543117
1.55153e-05
-0.000551062
1.49461e-05
-0.000558723
1.44499e-05
-0.000566124
1.40202e-05
-0.000573287
1.36505e-05
-0.000580228
1.33352e-05
-0.000586964
1.30689e-05
-0.000593505
1.28468e-05
-0.000599862
1.26644e-05
-0.000606041
1.25177e-05
-0.000612049
1.24027e-05
-0.000617889
1.23158e-05
-0.000623563
1.22535e-05
-0.000629073
1.22126e-05
-0.000634418
1.21898e-05
-0.000639596
1.21818e-05
-0.000644605
1.21853e-05
-0.000649443
1.21972e-05
-0.000654105
1.2214e-05
-0.000658588
1.22324e-05
-0.000662886
1.22491e-05
-0.000666993
1.22604e-05
-0.000670904
1.22613e-05
-0.000674615
1.22488e-05
-0.000678118
1.22198e-05
-0.000681406
1.21708e-05
-0.000684473
1.20976e-05
-0.000687313
1.19952e-05
-0.000689919
1.18592e-05
-0.000692283
1.16861e-05
-0.0006944
1.14699e-05
-0.000696264
1.12061e-05
-0.000697869
1.08891e-05
-0.000699209
1.05151e-05
-0.000700278
1.00821e-05
-0.000701069
9.58753e-06
-0.000701576
9.02888e-06
-0.000701792
8.40373e-06
-0.000701709
7.70998e-06
-0.000701321
6.94589e-06
-0.000700622
6.11015e-06
-0.000699605
5.20228e-06
-0.000698265
4.2231e-06
-0.000696595
3.17053e-06
-0.000694587
2.03999e-06
-0.000692237
8.44308e-07
-0.000689535
-4.31535e-07
-0.000686494
-1.74909e-06
-0.000683111
-3.16079e-06
-0.000679349
-4.62949e-06
-0.000675219
-6.15843e-06
-0.00067072
-7.74547e-06
-0.000665846
-9.38359e-06
-0.000660595
-1.10665e-05
-0.000654963
-1.27878e-05
-0.000648949
-1.4541e-05
-0.00064255
-1.63188e-05
-0.000635764
-1.81139e-05
-0.000628592
-1.99185e-05
-0.000621031
-2.17241e-05
-0.000613082
-2.35238e-05
-0.000604747
-2.53124e-05
-0.000596026
-2.70794e-05
-0.000586922
-2.8816e-05
-0.000577437
-3.05143e-05
-0.000567571
-3.21666e-05
-0.00055733
-3.37655e-05
-0.000546716
-3.53037e-05
-0.000535733
-3.67739e-05
-0.000524387
-3.81701e-05
-0.000512683
-3.94862e-05
-0.000500626
-4.07167e-05
-0.000488222
-4.18564e-05
-0.000475478
-4.2901e-05
-0.0004624
-4.38467e-05
-0.000448997
-4.46897e-05
-0.000435275
-4.54277e-05
-0.000421242
-4.60587e-05
-0.000406908
-4.65814e-05
-0.00039228
-4.69951e-05
-0.000377367
-4.72999e-05
-0.000362179
-4.74961e-05
-0.000346723
-4.75846e-05
-0.00033101
-4.7568e-05
-0.00031505
-4.74525e-05
-0.000298854
-4.72377e-05
-0.000282431
-4.69267e-05
-0.000265791
-4.65234e-05
-0.000248943
-4.60327e-05
-0.000231898
-4.54596e-05
-0.000214666
-4.48095e-05
-0.000197257
-4.40881e-05
-0.000179681
-4.33014e-05
-0.000161949
-4.24555e-05
-0.000144069
-4.15567e-05
-0.000126053
-4.06116e-05
-0.00010791
-3.96267e-05
-8.96485e-05
-3.86086e-05
-7.12794e-05
-3.7564e-05
-5.28116e-05
-3.64995e-05
-3.42543e-05
-3.54217e-05
-1.56164e-05
-3.43368e-05
3.09316e-06
-3.32513e-05
2.1866e-05
-3.21712e-05
4.06936e-05
-3.11024e-05
5.95678e-05
-3.00506e-05
7.84809e-05
-2.9021e-05
9.7425e-05
-2.80189e-05
0.000116393
-2.7049e-05
0.000135377
-2.61158e-05
0.000154371
-2.52235e-05
0.000173367
-2.43757e-05
0.000192361
-2.35761e-05
0.000211344
-2.28275e-05
0.000230312
-2.21328e-05
0.000249258
-2.14942e-05
0.000268178
-2.09138e-05
0.000287066
-2.03931e-05
0.000305917
-1.99334e-05
0.000324726
-1.95356e-05
0.00034349
-1.92003e-05
0.000362204
-1.89279e-05
0.000380863
-1.87187e-05
0.000399463
-1.85715e-05
0.000418003
-1.84834e-05
0.000436476
-1.84576e-05
0.000454884
-1.84868e-05
0.000473222
-1.85753e-05
0.000491486
-1.87203e-05
0.000509674
-1.89193e-05
0.000527784
-1.91698e-05
0.000545814
-1.94696e-05
0.000563762
-1.98161e-05
0.000581627
-2.02066e-05
0.000599406
-2.06384e-05
0.000617099
-2.11085e-05
0.000634704
-2.16141e-05
0.000652221
-2.21521e-05
0.000669649
-2.27195e-05
0.000686987
-2.3313e-05
0.000704234
-2.39298e-05
0.000721391
-2.45665e-05
0.000738458
-2.52202e-05
0.000755434
-2.58877e-05
0.000772321
-2.65661e-05
0.000789118
-2.72524e-05
0.000805826
-2.79437e-05
0.000822446
-2.86373e-05
0.00083898
-2.93305e-05
0.000855429
-3.00208e-05
0.000871794
-3.07056e-05
0.000888077
-3.13828e-05
0.000904281
-3.20503e-05
0.000920408
-3.27059e-05
0.00093646
-3.33481e-05
0.000952442
-3.39751e-05
0.000968356
-3.45858e-05
0.000984208
-3.5179e-05
0.001
-3.57539e-05
0.00101574
-3.63102e-05
0.00103144
-3.68479e-05
0.00104709
-3.73669e-05
0.00106271
-3.78701e-05
0.00107832
-3.83553e-05
0.00109392
-3.88353e-05
0.00110952
-3.92949e-05
0.00112515
-3.97706e-05
0.00114085
-4.0286e-05
-4.05505e-05
-0.000415061
4.15579e-05
-0.000428421
3.97805e-05
-0.000441123
3.76854e-05
-0.000453156
3.55714e-05
-0.000464541
3.35386e-05
-0.000475319
3.16562e-05
-0.000485542
2.99391e-05
-0.000495257
2.83862e-05
-0.000504513
2.69902e-05
-0.000513351
2.57406e-05
-0.000521812
2.4626e-05
-0.000529931
2.36346e-05
-0.00053774
2.27548e-05
-0.000545266
2.19756e-05
-0.000552532
2.12866e-05
-0.00055956
2.06781e-05
-0.000566366
2.01411e-05
-0.000572964
1.96674e-05
-0.000579367
1.92495e-05
-0.000585583
1.88806e-05
-0.00059162
1.85546e-05
-0.000597483
1.82656e-05
-0.000603176
1.80084e-05
-0.0006087
1.77781e-05
-0.000614057
1.75699e-05
-0.000619247
1.73794e-05
-0.000624268
1.72025e-05
-0.000629118
1.7035e-05
-0.000633793
1.68727e-05
-0.000638291
1.67118e-05
-0.000642607
1.65482e-05
-0.000646735
1.6378e-05
-0.000650672
1.6197e-05
-0.000654411
1.60005e-05
-0.000657948
1.5785e-05
-0.000661275
1.55467e-05
-0.000664386
1.52819e-05
-0.000667274
1.49864e-05
-0.000669935
1.46553e-05
-0.00067236
1.42845e-05
-0.000674543
1.38696e-05
-0.000676479
1.34057e-05
-0.000678161
1.28878e-05
-0.000679583
1.23112e-05
-0.00068074
1.16719e-05
-0.000681625
1.09674e-05
-0.000682232
1.01948e-05
-0.000682555
9.35156e-06
-0.000682586
8.43518e-06
-0.00068232
7.44355e-06
-0.000681749
6.37483e-06
-0.000680867
5.22778e-06
-0.000679668
4.00337e-06
-0.000678148
2.70313e-06
-0.000676299
1.32229e-06
-0.000674088
-1.71474e-07
-0.000671585
-1.65909e-06
-0.000668739
-3.27703e-06
-0.000665526
-4.96252e-06
-0.000661961
-6.72522e-06
-0.000658036
-8.5545e-06
-0.000653746
-1.04489e-05
-0.000649088
-1.24035e-05
-0.000644059
-1.44124e-05
-0.000638656
-1.6469e-05
-0.000632878
-1.85667e-05
-0.00062672
-2.06984e-05
-0.000620182
-2.28565e-05
-0.000613263
-2.50331e-05
-0.000605962
-2.72199e-05
-0.000598278
-2.94081e-05
-0.000590211
-3.15903e-05
-0.000581764
-3.37594e-05
-0.000572938
-3.59056e-05
-0.000563734
-3.80199e-05
-0.000554155
-4.00937e-05
-0.000544203
-4.21188e-05
-0.000533881
-4.40872e-05
-0.000523194
-4.5991e-05
-0.000512145
-4.78223e-05
-0.00050074
-4.95748e-05
-0.000488985
-5.1242e-05
-0.000476883
-5.28179e-05
-0.000464443
-5.4297e-05
-0.000451669
-5.56745e-05
-0.00043857
-5.69463e-05
-0.000425151
-5.8108e-05
-0.000411422
-5.91571e-05
-0.000397389
-6.00914e-05
-0.000383061
-6.09092e-05
-0.000368447
-6.16096e-05
-0.000353554
-6.21925e-05
-0.000338392
-6.26579e-05
-0.00032297
-6.30069e-05
-0.000307296
-6.32419e-05
-0.000291382
-6.33671e-05
-0.000275236
-6.33836e-05
-0.000258868
-6.32946e-05
-0.000242287
-6.31038e-05
-0.000225504
-6.28159e-05
-0.000208528
-6.24358e-05
-0.000191368
-6.19691e-05
-0.000174035
-6.14213e-05
-0.000156538
-6.07984e-05
-0.000138887
-6.01066e-05
-0.000121091
-5.93524e-05
-0.000103161
-5.85423e-05
-8.51045e-05
-5.76829e-05
-6.6932e-05
-5.67811e-05
-4.86524e-05
-5.58437e-05
-3.02746e-05
-5.48773e-05
-1.18077e-05
-5.38886e-05
6.73986e-06
-5.28844e-05
2.53594e-05
-5.18709e-05
4.40427e-05
-5.08545e-05
6.27816e-05
-4.98413e-05
8.15681e-05
-4.8837e-05
0.000100394
-4.78474e-05
0.000119253
-4.68778e-05
0.000138137
-4.5933e-05
0.000157039
-4.50179e-05
0.000175953
-4.41368e-05
0.000194871
-4.32938e-05
0.000213787
-4.24924e-05
0.000232696
-4.1736e-05
0.00025159
-4.10275e-05
0.000270466
-4.03695e-05
0.000289316
-3.97643e-05
0.000308136
-3.92135e-05
0.000326922
-3.87187e-05
0.000345667
-3.82811e-05
0.000364368
-3.79014e-05
0.000383021
-3.75803e-05
0.00040162
-3.73178e-05
0.000420162
-3.71133e-05
0.000438644
-3.69656e-05
0.000457061
-3.6875e-05
0.000475413
-3.68387e-05
0.000493695
-3.68573e-05
0.000511904
-3.69293e-05
0.000530038
-3.70526e-05
0.000548093
-3.72251e-05
0.000566068
-3.74446e-05
0.00058396
-3.77087e-05
0.000601769
-3.8015e-05
0.000619491
-3.8361e-05
0.000637127
-3.87438e-05
0.000654673
-3.91608e-05
0.00067213
-3.9609e-05
0.000689497
-4.00857e-05
0.000706772
-4.05879e-05
0.000723954
-4.11127e-05
0.000741045
-4.16572e-05
0.000758043
-4.22184e-05
0.000774949
-4.27935e-05
0.000791763
-4.33796e-05
0.000808485
-4.39742e-05
0.000825115
-4.45744e-05
0.000841656
-4.51778e-05
0.000858107
-4.57818e-05
0.00087447
-4.63842e-05
0.000890748
-4.69828e-05
0.00090694
-4.75757e-05
0.000923051
-4.81608e-05
0.000939082
-4.87367e-05
0.000955036
-4.9302e-05
0.000970916
-4.98553e-05
0.000986726
-5.0396e-05
0.00100247
-5.09233e-05
0.00101815
-5.14372e-05
0.00103378
-5.19378e-05
0.00104936
-5.24262e-05
0.0010649
-5.2903e-05
0.0010804
-5.3373e-05
0.00109588
-5.38338e-05
0.00111135
-5.43044e-05
0.00112681
-5.47635e-05
0.00114231
-5.52625e-05
0.00115786
-5.58388e-05
-5.60808e-05
-0.000398316
5.50568e-05
-0.000411265
5.27302e-05
-0.000423602
5.00224e-05
-0.000435313
4.72819e-05
-0.000446406
4.46316e-05
-0.000456918
4.21681e-05
-0.000466892
3.99135e-05
-0.000476374
3.78681e-05
-0.000485407
3.60231e-05
-0.000494032
3.43654e-05
-0.000502286
3.288e-05
-0.000510202
3.15514e-05
-0.000517812
3.03643e-05
-0.00052514
2.93041e-05
-0.000532211
2.83567e-05
-0.000539042
2.75093e-05
-0.00054565
2.67497e-05
-0.00055205
2.6067e-05
-0.000558252
2.54513e-05
-0.000564264
2.48934e-05
-0.000570095
2.43853e-05
-0.000575749
2.39193e-05
-0.000581229
2.34885e-05
-0.000586537
2.30865e-05
-0.000591675
2.27075e-05
-0.000596641
2.23459e-05
-0.000601436
2.19966e-05
-0.000606055
2.16545e-05
-0.000610497
2.13148e-05
-0.000614758
2.09729e-05
-0.000618834
2.06241e-05
-0.00062272
2.02641e-05
-0.000626411
1.98883e-05
-0.000629903
1.94918e-05
-0.000633188
1.90707e-05
-0.000636263
1.86209e-05
-0.000639119
1.81383e-05
-0.000641751
1.76186e-05
-0.000644153
1.70574e-05
-0.000646319
1.64502e-05
-0.000648242
1.57928e-05
-0.000649917
1.50801e-05
-0.000651336
1.43076e-05
-0.000652496
1.34706e-05
-0.000653389
1.25652e-05
-0.00065401
1.15885e-05
-0.000654353
1.05376e-05
-0.000654411
9.40987e-06
-0.000654178
8.20254e-06
-0.000653648
6.91329e-06
-0.000652813
5.53995e-06
-0.000651668
4.08282e-06
-0.000650211
2.54572e-06
-0.000648414
9.06412e-07
-0.000646298
-7.94024e-07
-0.000643904
-2.56483e-06
-0.000641135
-4.4284e-06
-0.00063803
-6.38217e-06
-0.000634575
-8.41706e-06
-0.000630769
-1.05316e-05
-0.000626606
-1.27174e-05
-0.000622083
-1.4972e-05
-0.000617197
-1.72899e-05
-0.000611944
-1.96649e-05
-0.000606323
-2.20903e-05
-0.00060033
-2.45591e-05
-0.000593965
-2.70637e-05
-0.000587226
-2.95961e-05
-0.000580111
-3.21479e-05
-0.00057262
-3.47106e-05
-0.000564754
-3.72743e-05
-0.000556513
-3.98315e-05
-0.000547898
-4.23738e-05
-0.000538912
-4.48916e-05
-0.000529557
-4.73755e-05
-0.000519834
-4.98166e-05
-0.000509747
-5.22059e-05
-0.000499299
-5.45351e-05
-0.000488494
-5.67959e-05
-0.000477337
-5.89791e-05
-0.000465833
-6.10786e-05
-0.000453988
-6.30876e-05
-0.000441806
-6.49994e-05
-0.000429295
-6.68084e-05
-0.00041646
-6.85093e-05
-0.000403308
-7.00978e-05
-0.000389848
-7.15686e-05
-0.000376086
-7.29193e-05
-0.000362029
-7.41475e-05
-0.000347688
-7.52511e-05
-0.000333068
-7.62292e-05
-0.000318179
-7.70813e-05
-0.00030303
-7.78072e-05
-0.000287629
-7.8408e-05
-0.000271985
-7.88859e-05
-0.000256108
-7.9244e-05
-0.000240007
-7.94843e-05
-0.000223692
-7.961e-05
-0.000207171
-7.96246e-05
-0.000190454
-7.95327e-05
-0.000173551
-7.93394e-05
-0.00015647
-7.905e-05
-0.000139221
-7.86701e-05
-0.000121814
-7.82057e-05
-0.000104257
-7.76632e-05
-8.65606e-05
-7.70491e-05
-6.8733e-05
-7.63699e-05
-5.07834e-05
-7.56324e-05
-3.27209e-05
-7.48436e-05
-1.45542e-05
-7.40104e-05
3.70795e-06
-7.31395e-05
2.20572e-05
-7.22379e-05
4.0485e-05
-7.13122e-05
5.89833e-05
-7.03692e-05
7.75439e-05
-6.94152e-05
9.61592e-05
-6.84565e-05
0.000114821
-6.74992e-05
0.000133523
-6.6549e-05
0.000152256
-6.56114e-05
0.000171015
-6.46917e-05
0.000189792
-6.37948e-05
0.00020858
-6.29252e-05
0.000227374
-6.20871e-05
0.000246166
-6.12845e-05
0.000264951
-6.05208e-05
0.000283722
-5.97992e-05
0.000302475
-5.91224e-05
0.000321204
-5.84929e-05
0.000339903
-5.79128e-05
0.000358568
-5.73836e-05
0.000377194
-5.69069e-05
0.000395776
-5.64834e-05
0.000414309
-5.6114e-05
0.000432791
-5.5799e-05
0.000451215
-5.5538e-05
0.00046958
-5.53304e-05
0.000487881
-5.5176e-05
0.000506116
-5.50733e-05
0.00052428
-5.5022e-05
0.000542372
-5.50209e-05
0.000560388
-5.50684e-05
0.000578325
-5.51624e-05
0.000596182
-5.53011e-05
0.000613955
-5.54822e-05
0.000631644
-5.57035e-05
0.000649245
-5.59626e-05
0.000666758
-5.6257e-05
0.000684182
-5.65841e-05
0.000701514
-5.69413e-05
0.000718754
-5.73259e-05
0.000735901
-5.77351e-05
0.000752955
-5.81663e-05
0.000769914
-5.86166e-05
0.000786779
-5.90835e-05
0.00080355
-5.95641e-05
0.000820227
-6.00561e-05
0.000836809
-6.05567e-05
0.000853298
-6.10636e-05
0.000869695
-6.15745e-05
0.000886
-6.2087e-05
0.000902215
-6.25993e-05
0.000918342
-6.31093e-05
0.000934382
-6.36154e-05
0.000950337
-6.4116e-05
0.00096621
-6.46097e-05
0.000982003
-6.50956e-05
0.000997721
-6.55729e-05
0.00101337
-6.60411e-05
0.00102894
-6.65002e-05
0.00104446
-6.69506e-05
0.00105991
-6.7393e-05
0.00107531
-6.78296e-05
0.00109067
-6.82616e-05
0.001106
-6.86956e-05
0.00112129
-6.91287e-05
0.00113657
-6.9586e-05
0.00115185
-7.00408e-05
0.00116714
-7.05554e-05
0.00118249
-7.11863e-05
-7.14099e-05
-0.000376035
6.80006e-05
-0.000388444
6.51388e-05
-0.000400301
6.18791e-05
-0.000411586
5.85673e-05
-0.000422296
5.53415e-05
-0.000432458
5.23298e-05
-0.000442108
4.95633e-05
-0.000451285
4.70452e-05
-0.000460028
4.47667e-05
-0.000468376
4.27128e-05
-0.000476362
4.08657e-05
-0.000484017
3.92066e-05
-0.000491369
3.77169e-05
-0.000498444
3.63785e-05
-0.000505261
3.51742e-05
-0.00051184
3.40879e-05
-0.000518195
3.31049e-05
-0.000524339
3.22115e-05
-0.000530284
3.13954e-05
-0.000536036
3.06454e-05
-0.000541602
2.99517e-05
-0.000546987
2.93047e-05
-0.000552195
2.8696e-05
-0.000557226
2.81181e-05
-0.000562083
2.75638e-05
-0.000566763
2.70266e-05
-0.000571267
2.65003e-05
-0.000575592
2.59793e-05
-0.000579735
2.54578e-05
-0.000583693
2.49307e-05
-0.000587461
2.43928e-05
-0.000591037
2.38392e-05
-0.000594413
2.3265e-05
-0.000597587
2.26652e-05
-0.000600552
2.20354e-05
-0.000603302
2.13711e-05
-0.000605832
2.06682e-05
-0.000608135
1.99222e-05
-0.000610207
1.91287e-05
-0.00061204
1.82835e-05
-0.000613629
1.73819e-05
-0.000614968
1.64194e-05
-0.000616052
1.53912e-05
-0.000616875
1.42929e-05
-0.00061743
1.31207e-05
-0.000617713
1.18712e-05
-0.000617717
1.05419e-05
-0.000617437
9.12975e-06
-0.000616866
7.63162e-06
-0.000615997
6.04449e-06
-0.000614825
4.36789e-06
-0.000613349
2.60706e-06
-0.000611529
7.24994e-07
-0.000609433
-1.18876e-06
-0.000607031
-3.19649e-06
-0.000604286
-5.30972e-06
-0.000601204
-7.51073e-06
-0.000597781
-9.80468e-06
-0.000594014
-1.21842e-05
-0.0005899
-1.46457e-05
-0.000585434
-1.71832e-05
-0.000580613
-1.97927e-05
-0.000575435
-2.24683e-05
-0.000569896
-2.52037e-05
-0.000563995
-2.79917e-05
-0.000557729
-3.0825e-05
-0.000551097
-3.36955e-05
-0.000544098
-3.65949e-05
-0.000536732
-3.95143e-05
-0.000528997
-4.24451e-05
-0.000520896
-4.53756e-05
-0.000512429
-4.82988e-05
-0.000503597
-5.12054e-05
-0.000494403
-5.40854e-05
-0.00048485
-5.69294e-05
-0.000474939
-5.97277e-05
-0.000464673
-6.2471e-05
-0.000454058
-6.51505e-05
-0.000443096
-6.77577e-05
-0.000431793
-7.02818e-05
-0.000420155
-7.27173e-05
-0.000408186
-7.50566e-05
-0.000395892
-7.72931e-05
-0.00038328
-7.94205e-05
-0.000370356
-8.14332e-05
-0.000357127
-8.33272e-05
-0.0003436
-8.50955e-05
-0.000329783
-8.67363e-05
-0.000315683
-8.82469e-05
-0.000301309
-8.96251e-05
-0.000286669
-9.08695e-05
-0.00027177
-9.19798e-05
-0.000256622
-9.29554e-05
-0.000241233
-9.37972e-05
-0.000225611
-9.45074e-05
-0.000209767
-9.50885e-05
-0.000193708
-9.55429e-05
-0.000177444
-9.5874e-05
-0.000160984
-9.60847e-05
-0.000144337
-9.618e-05
-0.000127511
-9.61649e-05
-0.000110517
-9.60448e-05
-9.33616e-05
-9.58251e-05
-7.60553e-05
-9.5512e-05
-5.86066e-05
-9.51119e-05
-4.10242e-05
-9.46314e-05
-2.3317e-05
-9.40771e-05
-5.4936e-06
-9.34559e-05
1.24376e-05
-9.27748e-05
3.04681e-05
-9.20408e-05
4.85896e-05
-9.1261e-05
6.6794e-05
-9.04423e-05
8.50734e-05
-8.95916e-05
0.00010342
-8.87156e-05
0.000121826
-8.78209e-05
0.000140283
-8.69141e-05
0.000158785
-8.60012e-05
0.000177325
-8.50883e-05
0.000195894
-8.4181e-05
0.000214487
-8.32847e-05
0.000233097
-8.24045e-05
0.000251717
-8.15452e-05
0.000270341
-8.07111e-05
0.000288963
-7.99064e-05
0.000307577
-7.91346e-05
0.000326177
-7.83993e-05
0.000344757
-7.77033e-05
0.000363314
-7.70492e-05
0.00038184
-7.64393e-05
0.000400332
-7.58754e-05
0.000418784
-7.53591e-05
0.000437192
-7.48916e-05
0.000455552
-7.44738e-05
0.000473859
-7.4106e-05
0.000492109
-7.37883e-05
0.000510299
-7.35203e-05
0.000528425
-7.33019e-05
0.000546484
-7.3132e-05
0.000564472
-7.30102e-05
0.000582387
-7.29355e-05
0.000600225
-7.29064e-05
0.000617983
-7.29212e-05
0.00063566
-7.29782e-05
0.000653254
-7.30753e-05
0.000670761
-7.32106e-05
0.00068818
-7.33818e-05
0.000705509
-7.35865e-05
0.000722748
-7.38225e-05
0.000739893
-7.40872e-05
0.000756946
-7.43781e-05
0.000773903
-7.46928e-05
0.000790766
-7.50287e-05
0.000807532
-7.53833e-05
0.000824203
-7.5754e-05
0.000840777
-7.61384e-05
0.000857255
-7.65342e-05
0.000873638
-7.69391e-05
0.000889925
-7.73507e-05
0.000906118
-7.77671e-05
0.000922217
-7.81863e-05
0.000938224
-7.86064e-05
0.00095414
-7.90258e-05
0.000969968
-7.94431e-05
0.000985709
-7.98571e-05
0.00100137
-8.02667e-05
0.00101694
-8.06713e-05
0.00103244
-8.10705e-05
0.00104786
-8.14643e-05
0.00106322
-8.18531e-05
0.0010785
-8.2238e-05
0.00109373
-8.26202e-05
0.0011089
-8.30028e-05
0.00112403
-8.33875e-05
0.00113912
-8.37829e-05
0.00115417
-8.41854e-05
0.00116921
-8.46256e-05
0.00118424
-8.50724e-05
0.00119928
-8.55939e-05
0.00121437
-8.62726e-05
-8.64829e-05
-0.00034826
8.02747e-05
-0.000360003
7.68817e-05
-0.00037127
7.31465e-05
-0.000382034
6.93315e-05
-0.000392275
6.55824e-05
-0.000402009
6.20638e-05
-0.000411264
5.88178e-05
-0.000420071
5.58524e-05
-0.000428464
5.31603e-05
-0.000436477
5.07256e-05
-0.00044414
4.85284e-05
-0.000451481
4.65476e-05
-0.000458525
4.47614e-05
-0.000465296
4.31488e-05
-0.000471811
4.16896e-05
-0.000478088
4.03651e-05
-0.000484141
3.91577e-05
-0.000489981
3.80516e-05
-0.000495618
3.70322e-05
-0.000501059
3.60864e-05
-0.00050631
3.52027e-05
-0.000511376
3.437e-05
-0.000516258
3.35786e-05
-0.000520959
3.28194e-05
-0.00052548
3.20844e-05
-0.000529819
3.1366e-05
-0.000533976
3.06573e-05
-0.000537949
2.99519e-05
-0.000541734
2.92434e-05
-0.00054533
2.85261e-05
-0.000548731
2.77942e-05
-0.000551935
2.70425e-05
-0.000554935
2.62657e-05
-0.000557728
2.54584e-05
-0.000560309
2.46161e-05
-0.000562672
2.3734e-05
-0.000564811
2.28076e-05
-0.000566721
2.18325e-05
-0.000568397
2.08042e-05
-0.000569832
1.97187e-05
-0.000571022
1.85714e-05
-0.00057196
1.73575e-05
-0.000572641
1.60725e-05
-0.00057306
1.47119e-05
-0.000573211
1.32719e-05
-0.000573089
1.17491e-05
-0.000572688
1.01412e-05
-0.000572003
8.44467e-06
-0.000571027
6.65515e-06
-0.000569754
4.77148e-06
-0.000568185
2.79937e-06
-0.00056627
6.9203e-07
-0.000564113
-1.43186e-06
-0.00056164
-3.66203e-06
-0.000558836
-6.00063e-06
-0.000555706
-8.43993e-06
-0.000552242
-1.09746e-05
-0.000548443
-1.36041e-05
-0.000544304
-1.63231e-05
-0.000539823
-1.91265e-05
-0.000534996
-2.20098e-05
-0.000529821
-2.49679e-05
-0.000524295
-2.79946e-05
-0.000518415
-3.10833e-05
-0.00051218
-3.42266e-05
-0.000505589
-3.74165e-05
-0.000498639
-4.06447e-05
-0.000491332
-4.39024e-05
-0.000483666
-4.71805e-05
-0.000475641
-5.04702e-05
-0.000467259
-5.37576e-05
-0.000458521
-5.70364e-05
-0.00044943
-6.02967e-05
-0.000439987
-6.35282e-05
-0.000430195
-6.67209e-05
-0.000420058
-6.98649e-05
-0.000409579
-7.29504e-05
-0.000398761
-7.5968e-05
-0.000387609
-7.89098e-05
-0.000376129
-8.17619e-05
-0.000364326
-8.45204e-05
-0.000352205
-8.71773e-05
-0.000339773
-8.97253e-05
-0.000327036
-9.21578e-05
-0.000314
-9.4469e-05
-0.000300672
-9.66555e-05
-0.00028706
-9.87078e-05
-0.00027317
-0.000100625
-0.000259012
-0.000102405
-0.000244593
-0.000104045
-0.00022992
-0.000105542
-0.000215001
-0.000106898
-0.000199846
-0.000108111
-0.000184463
-0.000109181
-0.000168859
-0.000110111
-0.000153044
-0.000110903
-0.000137027
-0.00011156
-0.000120816
-0.000112085
-0.00010442
-0.000112481
-8.78469e-05
-0.000112753
-7.11064e-05
-0.000112905
-5.42063e-05
-0.000112945
-3.71556e-05
-0.000112876
-1.99627e-05
-0.000112705
-2.63611e-06
-0.000112439
1.48156e-05
-0.000112083
3.23845e-05
-0.000111646
5.00621e-05
-0.000111134
6.78405e-05
-0.000110553
8.57116e-05
-0.000109912
0.000103668
-0.000109217
0.000121701
-0.000108475
0.000139803
-0.000107694
0.000157968
-0.00010688
0.000176187
-0.00010604
0.000194454
-0.000105181
0.000212762
-0.000104309
0.000231103
-0.000103429
0.000249471
-0.000102549
0.000267859
-0.000101673
0.000286262
-0.000100807
0.000304672
-9.99554e-05
0.000323084
-9.9123e-05
0.000341492
-9.8314e-05
0.000359889
-9.75324e-05
0.000378272
-9.67816e-05
0.000396633
-9.60647e-05
0.000414969
-9.53846e-05
0.000433273
-9.47436e-05
0.000451541
-9.41438e-05
0.000469769
-9.35869e-05
0.000487952
-9.30743e-05
0.000506085
-9.26069e-05
0.000524164
-9.21853e-05
0.000542186
-9.181e-05
0.000560146
-9.14807e-05
0.000578042
-9.11973e-05
0.000595869
-9.09592e-05
0.000613625
-9.0766e-05
0.000631306
-9.06166e-05
0.000648909
-9.05099e-05
0.000666433
-9.04444e-05
0.000683873
-9.04186e-05
0.000701228
-9.04306e-05
0.000718496
-9.04787e-05
0.000735675
-9.05607e-05
0.000752763
-9.06745e-05
0.000769759
-9.08179e-05
0.00078666
-9.09888e-05
0.000803467
-9.11847e-05
0.000820177
-9.14034e-05
0.000836791
-9.16425e-05
0.000853308
-9.18997e-05
0.000869727
-9.21728e-05
0.000886048
-9.24595e-05
0.000902271
-9.27575e-05
0.000918397
-9.3065e-05
0.000934426
-9.33797e-05
0.000950359
-9.37e-05
0.000966197
-9.40241e-05
0.000981941
-9.43505e-05
0.000997592
-9.46777e-05
0.00101315
-9.50046e-05
0.00102863
-9.53304e-05
0.00104401
-9.56543e-05
0.00105932
-9.5976e-05
0.00107454
-9.62956e-05
0.00108969
-9.66134e-05
0.00110477
-9.69304e-05
0.00111978
-9.72481e-05
0.00113473
-9.75685e-05
0.00114962
-9.78954e-05
0.00116447
-9.82307e-05
0.00117927
-9.85853e-05
0.00119404
-9.89545e-05
0.00120878
-9.93736e-05
0.00122352
-9.9809e-05
0.00123826
-0.000100329
0.00125303
-0.000101047
-0.00010125
-0.000315019
9.17847e-05
-0.00032598
8.78425e-05
-0.000336558
8.37252e-05
-0.000346714
7.9487e-05
-0.000356408
7.52762e-05
-0.000365644
7.13e-05
-0.00037444
6.76138e-05
-0.00038282
6.42321e-05
-0.00039081
6.11508e-05
-0.000398439
5.83544e-05
-0.000405732
5.5822e-05
-0.000412715
5.35302e-05
-0.000419409
5.14553e-05
-0.000425834
4.95735e-05
-0.000432006
4.78622e-05
-0.000437941
4.63002e-05
-0.000443652
4.48678e-05
-0.000449147
4.35468e-05
-0.000454435
4.23207e-05
-0.000459524
4.11747e-05
-0.000464417
4.00963e-05
-0.000469119
3.90724e-05
-0.000473633
3.80921e-05
-0.000477959
3.71454e-05
-0.000482098
3.62233e-05
-0.000486049
3.53174e-05
-0.000489812
3.44199e-05
-0.000493384
3.35237e-05
-0.000496762
3.26221e-05
-0.000499945
3.17085e-05
-0.000502928
3.07771e-05
-0.000505707
2.98218e-05
-0.000508279
2.88372e-05
-0.000510638
2.78179e-05
-0.00051278
2.67586e-05
-0.000514701
2.56546e-05
-0.000516395
2.4501e-05
-0.000517856
2.32935e-05
-0.000519079
2.20276e-05
-0.00052006
2.06994e-05
-0.000520793
1.93042e-05
-0.000521272
1.78374e-05
-0.000521494
1.62942e-05
-0.000521452
1.46703e-05
-0.000521142
1.29616e-05
-0.000520558
1.11648e-05
-0.000519695
9.27803e-06
-0.000518546
7.29621e-06
-0.000517108
5.21652e-06
-0.000515381
3.04484e-06
-0.00051331
7.28213e-07
-0.000511019
-1.59867e-06
-0.000508413
-4.03788e-06
-0.000505486
-6.58921e-06
-0.00050224
-9.24694e-06
-0.00049867
-1.20094e-05
-0.000494773
-1.48716e-05
-0.000490546
-1.78313e-05
-0.000485985
-2.08843e-05
-0.000481088
-2.40233e-05
-0.000475852
-2.72455e-05
-0.000470275
-3.0545e-05
-0.000464354
-3.39153e-05
-0.000458088
-3.73493e-05
-0.000451476
-4.08392e-05
-0.000444516
-4.43768e-05
-0.000437207
-4.79533e-05
-0.00042955
-5.15594e-05
-0.000421545
-5.51857e-05
-0.000413191
-5.88245e-05
-0.000404491
-6.24571e-05
-0.000395447
-6.60799e-05
-0.000386062
-6.9682e-05
-0.000376338
-7.32527e-05
-0.000366277
-7.67815e-05
-0.000355884
-8.02581e-05
-0.000345162
-8.36723e-05
-0.000334115
-8.70145e-05
-0.000322747
-9.0278e-05
-0.000311066
-9.34435e-05
-0.000299076
-9.65107e-05
-0.000286782
-9.94706e-05
-0.000274192
-0.000102315
-0.000261312
-0.000105038
-0.000248148
-0.000107633
-0.000234706
-0.000110098
-0.000220995
-0.000112419
-0.000207022
-0.000114598
-0.000192794
-0.000116632
-0.000178321
-0.000118518
-0.000163608
-0.000120255
-0.000148665
-0.000121842
-0.000133499
-0.000123277
-0.000118119
-0.000124561
-0.000102532
-0.000125697
-8.67486e-05
-0.000126687
-7.07759e-05
-0.000127533
-5.46216e-05
-0.00012824
-3.82951e-05
-0.000128807
-2.18043e-05
-0.000129244
-5.15736e-06
-0.000129552
1.16367e-05
-0.000129739
2.85704e-05
-0.00012981
4.56358e-05
-0.00012977
6.28245e-05
-0.000129627
8.01287e-05
-0.000129387
9.75406e-05
-0.000129058
0.000115052
-0.000128645
0.000132656
-0.000128157
0.000150344
-0.0001276
0.00016811
-0.000126983
0.000185946
-0.000126311
0.000203844
-0.000125592
0.000221798
-0.000124834
0.0002398
-0.000124043
0.000257844
-0.000123225
0.000275924
-0.000122388
0.000294032
-0.000121538
0.000312163
-0.00012068
0.00033031
-0.00011982
0.000348467
-0.000118964
0.000366628
-0.000118116
0.000384787
-0.000117282
0.000402939
-0.000116466
0.000421078
-0.000115672
0.000439199
-0.000114903
0.000457297
-0.000114162
0.000475366
-0.000113454
0.000493402
-0.00011278
0.0005114
-0.000112142
0.000529355
-0.000111542
0.000547264
-0.000110983
0.000565121
-0.000110464
0.000582923
-0.000109987
0.000600666
-0.000109553
0.000618347
-0.000109161
0.00063596
-0.000108811
0.000653505
-0.000108503
0.000670976
-0.000108237
0.000688371
-0.000108012
0.000705688
-0.000107826
0.000722923
-0.000107679
0.000740074
-0.00010757
0.000757139
-0.000107495
0.000774115
-0.000107455
0.000791
-0.000107446
0.000807794
-0.000107468
0.000824493
-0.000107518
0.000841098
-0.000107593
0.000857606
-0.000107693
0.000874017
-0.000107814
0.00089033
-0.000107955
0.000906544
-0.000108114
0.000922659
-0.000108288
0.000938675
-0.000108476
0.000954592
-0.000108675
0.000970411
-0.000108883
0.000986131
-0.0001091
0.00100175
-0.000109323
0.00101728
-0.000109551
0.00103271
-0.000109782
0.00104805
-0.000110016
0.0010633
-0.000110251
0.00107845
-0.000110488
0.00109352
-0.000110725
0.00110851
-0.000110963
0.00112342
-0.000111201
0.00113825
-0.000111442
0.001153
-0.000111686
0.00116769
-0.000111936
0.00118231
-0.000112193
0.00119688
-0.000112462
0.0012114
-0.000112747
0.00122587
-0.000113059
0.00124031
-0.000113392
0.00125472
-0.000113786
0.00126912
-0.000114207
0.00128351
-0.000114716
0.00129793
-0.000115467
-0.000115668
-0.000276321
0.000102464
-0.000286394
9.79154e-05
-0.000296199
9.35304e-05
-0.00030567
8.89578e-05
-0.000314749
8.4355e-05
-0.000323427
7.99785e-05
-0.000331711
7.5898e-05
-0.000339616
7.21367e-05
-0.00034716
6.86953e-05
-0.000354366
6.556e-05
-0.000361254
6.27098e-05
-0.000367844
6.01203e-05
-0.000374155
5.7766e-05
-0.000380203
5.56212e-05
-0.000386002
5.36614e-05
-0.000391565
5.18631e-05
-0.000396902
5.02048e-05
-0.000402021
4.86664e-05
-0.00040693
4.72299e-05
-0.000411635
4.58788e-05
-0.000416138
4.45999e-05
-0.000420444
4.33785e-05
-0.000424555
4.22027e-05
-0.000428471
4.10615e-05
-0.000432193
3.99449e-05
-0.000435719
3.8844e-05
-0.00043905
3.77503e-05
-0.000442182
3.66562e-05
-0.000445114
3.55542e-05
-0.000447843
3.44376e-05
-0.000450366
3.32999e-05
-0.000452679
3.21349e-05
-0.000454779
3.09368e-05
-0.000456661
2.96999e-05
-0.000458321
2.84187e-05
-0.000459755
2.70882e-05
-0.000460957
2.57034e-05
-0.000461923
2.42598e-05
-0.000462648
2.27529e-05
-0.000463128
2.11791e-05
-0.000463358
1.95339e-05
-0.000463333
1.78122e-05
-0.000463048
1.60094e-05
-0.000462499
1.4121e-05
-0.00046168
1.21428e-05
-0.000460586
1.00707e-05
-0.000459212
7.90385e-06
-0.000457553
5.63782e-06
-0.000455614
3.27741e-06
-0.000453333
7.63622e-07
-0.00045085
-1.7548e-06
-0.000448057
-4.39139e-06
-0.000444951
-7.14379e-06
-0.000441534
-1.00066e-05
-0.000437801
-1.29796e-05
-0.000433751
-1.60597e-05
-0.000429379
-1.92431e-05
-0.000424684
-2.2527e-05
-0.00041966
-2.59078e-05
-0.000414308
-2.93752e-05
-0.000408625
-3.29286e-05
-0.000402609
-3.65613e-05
-0.000396258
-4.02665e-05
-0.00038957
-4.40368e-05
-0.000382546
-4.78638e-05
-0.000375184
-5.1739e-05
-0.000367484
-5.56531e-05
-0.000359447
-5.95965e-05
-0.000351073
-6.35593e-05
-0.000342361
-6.75367e-05
-0.000333316
-7.15016e-05
-0.000323941
-7.54554e-05
-0.000314237
-7.93861e-05
-0.000304207
-8.32824e-05
-0.000293855
-8.71335e-05
-0.000283185
-9.09284e-05
-0.0002722
-9.46566e-05
-0.000260907
-9.8308e-05
-0.000249305
-0.00010188
-0.000237406
-0.000105343
-0.000225214
-0.000108703
-0.000212735
-0.00011195
-0.000199975
-0.000115075
-0.000186941
-0.000118072
-0.00017364
-0.000120934
-0.000160075
-0.000123662
-0.000146259
-0.000126236
-0.000132197
-0.00012866
-0.000117897
-0.000130933
-0.000103366
-0.000133049
-8.86132e-05
-0.000135007
-7.36444e-05
-0.00013681
-5.84686e-05
-0.000138453
-4.30942e-05
-0.000139936
-2.7529e-05
-0.000141262
-1.17807e-05
-0.000142435
4.1426e-06
-0.000143456
2.02296e-05
-0.000144327
3.64764e-05
-0.000145054
5.28741e-05
-0.000145641
6.94145e-05
-0.000146093
8.60901e-05
-0.000146414
0.000102893
-0.000146612
0.000119815
-0.000146692
0.000136848
-0.000146661
0.000153987
-0.000146526
0.000171222
-0.000146293
0.000188546
-0.00014597
0.000205953
-0.000145564
0.000223435
-0.000145083
0.000240985
-0.000144533
0.000258597
-0.000143923
0.000276264
-0.000143259
0.000293978
-0.000142548
0.000311734
-0.000141799
0.000329525
-0.000141016
0.000347345
-0.000140208
0.000365188
-0.00013938
0.000383047
-0.000138539
0.000400917
-0.00013769
0.000418792
-0.000136839
0.000436667
-0.000135991
0.000454536
-0.000135151
0.000472393
-0.000134323
0.000490234
-0.000133512
0.000508053
-0.000132722
0.000525845
-0.000131955
0.000543606
-0.000131215
0.000561331
-0.000130504
0.000579015
-0.000129826
0.000596654
-0.000129182
0.000614244
-0.000128573
0.000631781
-0.000128001
0.00064926
-0.000127467
0.000666679
-0.000126971
0.000684032
-0.000126515
0.000701318
-0.000126097
0.000718532
-0.000125718
0.000735672
-0.000125377
0.000752735
-0.000125074
0.000769717
-0.000124809
0.000786616
-0.000124579
0.00080343
-0.000124383
0.000820156
-0.000124221
0.000836792
-0.000124091
0.000853337
-0.000123991
0.000869788
-0.000123919
0.000886145
-0.000123874
0.000902405
-0.000123853
0.000918568
-0.000123856
0.000934632
-0.000123879
0.000950597
-0.000123921
0.000966463
-0.000123979
0.000982228
-0.000124054
0.000997894
-0.000124141
0.00101346
-0.00012424
0.00102893
-0.000124349
0.00104429
-0.000124467
0.00105956
-0.000124592
0.00107473
-0.000124722
0.00108981
-0.000124858
0.00110479
-0.000124998
0.00111968
-0.000125141
0.00113448
-0.000125287
0.00114919
-0.000125437
0.00116382
-0.00012559
0.00117836
-0.000125747
0.00119283
-0.00012591
0.00120723
-0.000126081
0.00122155
-0.000126261
0.00123581
-0.000126454
0.00125002
-0.000126666
0.00126417
-0.000126898
0.00127827
-0.000127165
0.00129234
-0.000127461
0.00130638
-0.000127827
0.00132041
-0.00012823
0.00133441
-0.000128721
0.00134844
-0.000129494
-0.000129698
-0.000232134
0.000112276
-0.000241231
0.000107012
-0.000250198
0.000102497
-0.000258923
9.76835e-05
-0.000267334
9.27652e-05
-0.000275407
8.80522e-05
-0.000283139
8.36296e-05
-0.000290533
7.95309e-05
-0.000297601
7.57629e-05
-0.000304356
7.23152e-05
-0.000310814
6.91677e-05
-0.000316989
6.62958e-05
-0.000322896
6.3673e-05
-0.000328547
6.12724e-05
-0.000333954
5.9068e-05
-0.000339126
5.70349e-05
-0.000344071
5.51499e-05
-0.000348796
5.33916e-05
-0.000353306
5.17404e-05
-0.000357606
5.01782e-05
-0.000361699
4.86927e-05
-0.000365587
4.72667e-05
-0.000369271
4.58875e-05
-0.000372754
4.45436e-05
-0.000376033
4.32244e-05
-0.000379109
4.19201e-05
-0.000381981
4.06218e-05
-0.000384646
3.93214e-05
-0.000387103
3.80112e-05
-0.000389349
3.66838e-05
-0.000391382
3.53324e-05
-0.000393197
3.39507e-05
-0.000394793
3.25325e-05
-0.000396165
3.10718e-05
-0.000397309
2.95632e-05
-0.000398222
2.80011e-05
-0.000398899
2.63805e-05
-0.000399336
2.46966e-05
-0.000399528
2.29448e-05
-0.000399472
2.11224e-05
-0.000399162
1.92247e-05
-0.000398596
1.72462e-05
-0.000397769
1.51822e-05
-0.000396676
1.30283e-05
-0.000395313
1.07795e-05
-0.000393671
8.42896e-06
-0.00039175
5.98289e-06
-0.000389556
3.44378e-06
-0.00038702
7.40779e-07
-0.000384302
-1.95436e-06
-0.000381278
-4.77897e-06
-0.000377948
-7.72141e-06
-0.000374314
-1.07773e-05
-0.000370373
-1.39476e-05
-0.000366123
-1.72297e-05
-0.000361561
-2.06213e-05
-0.000356685
-2.41192e-05
-0.000351492
-2.77205e-05
-0.000345977
-3.14228e-05
-0.000340142
-3.52101e-05
-0.000333984
-3.90861e-05
-0.000327502
-4.30431e-05
-0.000320695
-4.70738e-05
-0.000313562
-5.11702e-05
-0.000306101
-5.53239e-05
-0.000298315
-5.95255e-05
-0.000290202
-6.37656e-05
-0.000281765
-6.80339e-05
-0.000273004
-7.23201e-05
-0.000263915
-7.66255e-05
-0.000254509
-8.09083e-05
-0.000244785
-8.51791e-05
-0.000234747
-8.94242e-05
-0.000224398
-9.36315e-05
-0.000213742
-9.77897e-05
-0.000202783
-0.000101888
-0.000191526
-0.000105914
-0.000179976
-0.000109858
-0.000168133
-0.000113723
-0.000156009
-0.000117466
-0.000143609
-0.000121102
-0.000130939
-0.00012462
-0.000118005
-0.000128009
-0.000104814
-0.000131263
-9.13761e-05
-0.000134372
-7.76875e-05
-0.000137351
-6.37656e-05
-0.000140157
-4.96159e-05
-0.00014281
-3.5245e-05
-0.000145303
-2.066e-05
-0.000147634
-5.86734e-06
-0.0001498
9.1185e-06
-0.000151796
2.42939e-05
-0.000153628
3.96532e-05
-0.000155295
5.51875e-05
-0.000156797
7.08885e-05
-0.000158136
8.67484e-05
-0.000159316
0.00010276
-0.000160338
0.000118915
-0.000161209
0.000135206
-0.000161932
0.000151626
-0.000162512
0.000168166
-0.000162955
0.00018482
-0.000163266
0.000201581
-0.000163453
0.00021844
-0.000163521
0.000235392
-0.000163477
0.000252429
-0.00016333
0.000269544
-0.000163085
0.000286731
-0.000162751
0.000303983
-0.000162334
0.000321293
-0.000161843
0.000338655
-0.000161285
0.000356063
-0.000160666
0.00037351
-0.000159996
0.000390991
-0.000159279
0.000408499
-0.000158524
0.000426028
-0.000157738
0.000443574
-0.000156926
0.000461129
-0.000156095
0.00047869
-0.000155251
0.000496249
-0.000154399
0.000513803
-0.000153545
0.000531346
-0.000152694
0.000548873
-0.00015185
0.000566378
-0.000151018
0.000583858
-0.000150201
0.000601307
-0.000149404
0.000618722
-0.000148629
0.000636096
-0.000147879
0.000653427
-0.000147157
0.000670711
-0.000146465
0.000687942
-0.000145804
0.000705117
-0.000145176
0.000722233
-0.000144582
0.000739285
-0.000144024
0.000756271
-0.0001435
0.000773186
-0.000143012
0.000790029
-0.00014256
0.000806795
-0.000142144
0.000823482
-0.000141762
0.000840088
-0.000141414
0.000856609
-0.0001411
0.000873044
-0.000140818
0.00088939
-0.000140567
0.000905644
-0.000140346
0.000921806
-0.000140153
0.000937874
-0.000139987
0.000953846
-0.000139846
0.00096972
-0.000139728
0.000985496
-0.000139632
0.00100117
-0.000139556
0.00101675
-0.000139498
0.00103223
-0.000139456
0.0010476
-0.00013943
0.00106288
-0.000139417
0.00107805
-0.000139415
0.00109313
-0.000139424
0.0011081
-0.000139442
0.00112298
-0.000139468
0.00113776
-0.000139502
0.00115244
-0.000139541
0.00116703
-0.000139586
0.00118153
-0.000139637
0.00119594
-0.000139693
0.00121025
-0.000139755
0.00122449
-0.000139823
0.00123864
-0.000139899
0.00125271
-0.000139984
0.00126671
-0.000140081
0.00128065
-0.000140192
0.00129451
-0.000140321
0.00130832
-0.000140473
0.00132207
-0.000140652
0.00133578
-0.000140874
0.00134945
-0.00014113
0.00136309
-0.000141464
0.00137671
-0.000141848
0.0013903
-0.000142312
0.0014039
-0.000143099
-0.000143311
-0.000182358
0.000121201
-0.000190429
0.000115083
-0.000198518
0.000110586
-0.000206458
0.000105624
-0.000214165
0.000100472
-0.000221604
9.5491e-05
-0.000228758
9.07837e-05
-0.000235621
8.63945e-05
-0.000242196
8.23378e-05
-0.000248488
7.86074e-05
-0.000254506
7.51855e-05
-0.000260259
7.20483e-05
-0.000265755
6.91693e-05
-0.000271004
6.6521e-05
-0.000276012
6.40765e-05
-0.000280787
6.18099e-05
-0.000285334
5.96971e-05
-0.000289659
5.77157e-05
-0.000293763
5.58451e-05
-0.00029765
5.40648e-05
-0.000301323
5.23656e-05
-0.000304783
5.07269e-05
-0.000308031
4.91358e-05
-0.000311068
4.75801e-05
-0.000313892
4.60488e-05
-0.000316504
4.45317e-05
-0.000318902
4.30196e-05
-0.000321084
4.15038e-05
-0.000323049
3.99762e-05
-0.000324795
3.84293e-05
-0.000326318
3.6856e-05
-0.000327617
3.52497e-05
-0.000328689
3.3604e-05
-0.00032953
3.19128e-05
-0.000330137
3.01704e-05
-0.000330507
2.83711e-05
-0.000330636
2.65097e-05
-0.000330521
2.45811e-05
-0.000330156
2.25801e-05
-0.000329539
2.05054e-05
-0.000328667
1.83526e-05
-0.000327536
1.61152e-05
-0.000326142
1.37885e-05
-0.000324481
1.13678e-05
-0.000322547
8.84544e-06
-0.000320332
6.21377e-06
-0.000317854
3.50476e-06
-0.000315026
6.15687e-07
-0.000312047
-2.2385e-06
-0.000308757
-5.24429e-06
-0.000305169
-8.36668e-06
-0.000301285
-1.16051e-05
-0.000297102
-1.49608e-05
-0.000292617
-1.84321e-05
-0.00028783
-2.20171e-05
-0.000282738
-2.57137e-05
-0.000277338
-2.95187e-05
-0.000271629
-3.34296e-05
-0.000265605
-3.74471e-05
-0.00025927
-4.15449e-05
-0.000252622
-4.57341e-05
-0.00024566
-5.00056e-05
-0.000238382
-5.43513e-05
-0.000230789
-5.87631e-05
-0.000222881
-6.32319e-05
-0.000214659
-6.77481e-05
-0.000206123
-7.23016e-05
-0.000197275
-7.68812e-05
-0.00018812
-8.14759e-05
-0.000178646
-8.60989e-05
-0.00016887
-9.06844e-05
-0.000158793
-9.52567e-05
-0.000148416
-9.98008e-05
-0.000137744
-0.000104304
-0.00012678
-0.000108753
-0.000115531
-0.000113137
-0.000104
-0.000117444
-9.21974e-05
-0.00012166
-8.01093e-05
-0.000125811
-6.77627e-05
-0.000129813
-5.51578e-05
-0.000133707
-4.23e-05
-0.000137478
-2.91954e-05
-0.000141114
-1.58489e-05
-0.000144609
-2.26025e-06
-0.000147961
1.15261e-05
-0.000151137
2.55384e-05
-0.00015417
3.97645e-05
-0.000157036
5.41947e-05
-0.000159734
6.88205e-05
-0.00016226
8.36339e-05
-0.000164613
9.86289e-05
-0.000166791
0.000113797
-0.000168796
0.00012913
-0.000170627
0.00014462
-0.000172287
0.00016026
-0.000173776
0.000176043
-0.000175099
0.000191961
-0.000176257
0.000208006
-0.000177255
0.000224173
-0.000178099
0.000240452
-0.000178792
0.000256839
-0.000179341
0.000273324
-0.000179752
0.000289903
-0.000180031
0.000306567
-0.000180185
0.00032331
-0.000180221
0.000340126
-0.000180146
0.000357009
-0.000179968
0.000373952
-0.000179693
0.000390948
-0.000179331
0.000407992
-0.000178887
0.000425079
-0.000178371
0.000442201
-0.000177789
0.000459353
-0.000177148
0.00047653
-0.000176456
0.000493727
-0.000175721
0.000510937
-0.000174948
0.000528155
-0.000174144
0.000545377
-0.000173316
0.000562596
-0.00017247
0.000579809
-0.000171612
0.00059701
-0.000170746
0.000614194
-0.000169878
0.000631357
-0.000169013
0.000648494
-0.000168155
0.000665601
-0.000167308
0.000682672
-0.000166476
0.000699705
-0.000165662
0.000716695
-0.000164869
0.000733637
-0.0001641
0.000750529
-0.000163356
0.000767365
-0.00016264
0.000784143
-0.000161954
0.000800859
-0.000161298
0.000817509
-0.000160674
0.00083409
-0.000160081
0.000850599
-0.000159522
0.000867033
-0.000158994
0.000883389
-0.0001585
0.000899665
-0.000158037
0.000915857
-0.000157607
0.000931964
-0.000157207
0.000947983
-0.000156837
0.000963912
-0.000156496
0.000979749
-0.000156183
0.000995493
-0.000155897
0.00101114
-0.000155635
0.00102669
-0.000155397
0.00104215
-0.000155182
0.0010575
-0.000154987
0.00107276
-0.000154811
0.00108791
-0.000154653
0.00110297
-0.000154511
0.00111792
-0.000154384
0.00113277
-0.00015427
0.00114753
-0.000154167
0.00116218
-0.000154076
0.00117673
-0.000153995
0.00119118
-0.000153923
0.00120554
-0.000153858
0.0012198
-0.000153802
0.00123397
-0.000153753
0.00124804
-0.000153711
0.00126203
-0.000153677
0.00127592
-0.000153652
0.00128974
-0.000153636
0.00130347
-0.00015363
0.00131712
-0.000153638
0.0013307
-0.000153661
0.00134421
-0.000153702
0.00135766
-0.000153766
0.00137104
-0.00015386
0.00138438
-0.000153985
0.00139766
-0.000154159
0.00141091
-0.000154375
0.00142412
-0.000154674
0.00143731
-0.000155036
0.00145046
-0.000155468
0.00146362
-0.000156261
-0.000156482
-0.000126807
0.000129197
-0.000133853
0.000122128
-0.000141063
0.000117796
-0.000148206
0.000112767
-0.000155198
0.000107464
-0.000161994
0.000102287
-0.000168566
9.73559e-05
-0.000174899
9.27271e-05
-0.000180983
8.84225e-05
-0.000186818
8.44417e-05
-0.000192402
8.07703e-05
-0.00019774
7.73863e-05
-0.000202835
7.4264e-05
-0.00020769
7.13763e-05
-0.00021231
6.86959e-05
-0.000216697
6.6197e-05
-0.000220855
6.38548e-05
-0.000224785
6.16465e-05
-0.000228491
5.95508e-05
-0.00023197
5.75441e-05
-0.000235228
5.56231e-05
-0.000238263
5.37625e-05
-0.000241077
5.19495e-05
-0.000243669
5.01719e-05
-0.000246038
4.8418e-05
-0.000248184
4.66777e-05
-0.000250106
4.49412e-05
-0.000251802
4.31997e-05
-0.00025327
4.14448e-05
-0.00025451
3.96688e-05
-0.000255518
3.78644e-05
-0.000256293
3.60247e-05
-0.000256832
3.41432e-05
-0.000257134
3.2214e-05
-0.000257194
3.02309e-05
-0.000257011
2.81883e-05
-0.000256582
2.60805e-05
-0.000255903
2.39024e-05
-0.000254971
2.16475e-05
-0.000253782
1.93163e-05
-0.000252335
1.69056e-05
-0.000250626
1.44069e-05
-0.000248653
1.18156e-05
-0.000246411
9.12502e-06
-0.000243892
6.32706e-06
-0.000241111
3.43287e-06
-0.000237964
3.57169e-07
-0.000234715
-2.63345e-06
-0.000231136
-5.81687e-06
-0.00022727
-9.11063e-06
-0.000223114
-1.25224e-05
-0.000218666
-1.60535e-05
-0.000213924
-1.97027e-05
-0.000208887
-2.34688e-05
-0.000203554
-2.73502e-05
-0.000197923
-3.13445e-05
-0.000191994
-3.54484e-05
-0.000185763
-3.96601e-05
-0.000179224
-4.39867e-05
-0.000172384
-4.8385e-05
-0.000165241
-5.2877e-05
-0.000157794
-5.74522e-05
-0.000150043
-6.21019e-05
-0.000141989
-6.68174e-05
-0.000133632
-7.15892e-05
-0.000124972
-7.64073e-05
-0.000116013
-8.12609e-05
-0.000106757
-8.61374e-05
-9.72133e-05
-9.10195e-05
-8.73529e-05
-9.59593e-05
-7.72114e-05
-0.000100826
-6.67843e-05
-0.000105684
-5.6074e-05
-0.000110511
-4.50842e-05
-0.000115293
-3.38189e-05
-0.000120018
-2.22822e-05
-0.000124674
-1.04755e-05
-0.000129251
1.60648e-06
-0.000133742
1.38861e-05
-0.000138091
2.64338e-05
-0.000142361
3.92277e-05
-0.000146501
5.22574e-05
-0.000150507
6.55154e-05
-0.000154372
7.89939e-05
-0.000158088
9.26828e-05
-0.00016165
0.000106586
-0.00016504
0.000120685
-0.000168269
0.000134976
-0.000171327
0.00014945
-0.000174208
0.000164102
-0.000176912
0.000178923
-0.000179435
0.000193907
-0.000181775
0.000209046
-0.000183935
0.000224332
-0.000185914
0.000239759
-0.000187713
0.000255318
-0.000189335
0.000271002
-0.000190783
0.000286806
-0.00019206
0.000302721
-0.00019317
0.000318741
-0.000194118
0.000334859
-0.00019491
0.000351068
-0.00019555
0.000367363
-0.000196046
0.000383736
-0.000196404
0.000400181
-0.00019663
0.000416692
-0.000196732
0.000433263
-0.000196717
0.000449888
-0.000196593
0.000466561
-0.000196367
0.000483277
-0.000196047
0.00050003
-0.00019564
0.000516814
-0.000195155
0.000533624
-0.000194599
0.000550454
-0.000193979
0.000567301
-0.000193303
0.000584158
-0.000192578
0.00060102
-0.00019181
0.000617883
-0.000191007
0.000634742
-0.000190175
0.000651591
-0.00018932
0.000668428
-0.000188448
0.000685246
-0.000187564
0.000702042
-0.000186674
0.000718811
-0.000185782
0.000735549
-0.000184893
0.000752252
-0.000184011
0.000768916
-0.00018314
0.000785536
-0.000182282
0.00080211
-0.000181442
0.000818632
-0.000180622
0.000835101
-0.000179824
0.000851511
-0.000179051
0.00086786
-0.000178303
0.000884144
-0.000177582
0.00090036
-0.00017689
0.000916505
-0.000176226
0.000932576
-0.000175593
0.00094857
-0.000174989
0.000964485
-0.000174415
0.000980318
-0.00017387
0.000996066
-0.000173355
0.00101173
-0.000172868
0.0010273
-0.00017241
0.00104278
-0.000171978
0.00105817
-0.000171573
0.00107347
-0.000171192
0.00108867
-0.000170835
0.00110377
-0.0001705
0.00111877
-0.000170186
0.00113368
-0.000169893
0.00114849
-0.000169617
0.00116319
-0.000169359
0.0011778
-0.000169116
0.0011923
-0.000168888
0.00120671
-0.000168673
0.00122101
-0.000168471
0.00123521
-0.00016828
0.00124932
-0.0001681
0.00126333
-0.000167929
0.00127724
-0.000167768
0.00129105
-0.000167617
0.00130477
-0.000167474
0.0013184
-0.000167341
0.00133194
-0.000167218
0.0013454
-0.000167106
0.00135877
-0.000167006
0.00137205
-0.00016692
0.00138527
-0.00016685
0.00139841
-0.0001668
0.00141148
-0.000166773
0.00142448
-0.000166773
0.00143743
-0.000166807
0.00145032
-0.000166879
0.00146317
-0.000167005
0.00147597
-0.000167179
0.00148874
-0.000167441
0.00150148
-0.000167779
0.00151419
-0.000168174
0.00152689
-0.000168963
-0.000169195
-6.5129e-05
0.00013594
-7.12405e-05
0.00012824
-7.76821e-05
0.000124237
-8.40314e-05
0.000119117
-9.03283e-05
0.000113761
-9.65016e-05
0.00010846
-0.000102513
0.000103368
-0.000108339
9.85521e-05
-0.000113958
9.40422e-05
-0.000119361
8.98446e-05
-0.00012454
8.59494e-05
-0.000129491
8.23373e-05
-0.000134212
7.89846e-05
-0.000138701
7.58651e-05
-0.000142957
7.29525e-05
-0.000146981
7.02211e-05
-0.000150773
6.76466e-05
-0.000154333
6.52064e-05
-0.000157662
6.28795e-05
-0.000160753
6.06354e-05
-0.000163614
5.84835e-05
-0.000166241
5.63905e-05
-0.000168636
5.43444e-05
-0.000170798
5.23331e-05
-0.000172725
5.0345e-05
-0.000174417
4.83696e-05
-0.000175873
4.63972e-05
-0.000177092
4.44186e-05
-0.000178072
4.24254e-05
-0.000178813
4.04097e-05
-0.000179312
3.83639e-05
-0.000179569
3.62811e-05
-0.000179581
3.41549e-05
-0.000179346
3.19791e-05
-0.000178863
2.97477e-05
-0.000178129
2.74549e-05
-0.000177144
2.50949e-05
-0.000175903
2.26622e-05
-0.000174404
2.0148e-05
-0.000172643
1.75556e-05
-0.000170621
1.48836e-05
-0.000168335
1.21208e-05
-0.000165781
9.26116e-06
-0.000162955
6.29949e-06
-0.000159883
3.25483e-06
-0.000156391
-5.87333e-08
-0.000152882
-3.15174e-06
-0.000149004
-6.51217e-06
-0.000144851
-9.97007e-06
-0.000140413
-1.35477e-05
-0.00013569
-1.72458e-05
-0.00013068
-2.10633e-05
-0.000125383
-2.49998e-05
-0.000119797
-2.90545e-05
-0.000113922
-3.32255e-05
-0.000107757
-3.75099e-05
-0.000101302
-4.19034e-05
-9.45575e-05
-4.64041e-05
-8.75045e-05
-5.10396e-05
-8.01655e-05
-5.57239e-05
-7.25346e-05
-6.0508e-05
-6.46109e-05
-6.53759e-05
-5.63948e-05
-7.03181e-05
-4.7887e-05
-7.53252e-05
-3.90884e-05
-8.03878e-05
-3.00002e-05
-8.54955e-05
-2.06232e-05
-9.06379e-05
-1.09546e-05
-9.5806e-05
-9.72822e-07
-0.000101001
9.19793e-06
-0.00010613
1.96717e-05
-0.0001113
3.0425e-05
-0.000116437
4.14478e-05
-0.000121534
5.27342e-05
-0.00012658
6.42784e-05
-0.000131563
7.60748e-05
-0.000136471
8.81167e-05
-0.000141293
0.000100394
-0.000146019
0.00011292
-0.000150617
0.000125669
-0.00015511
0.000138639
-0.000159471
0.000151823
-0.000163692
0.000165217
-0.000167765
0.000178811
-0.000171682
0.000192599
-0.000175437
0.000206577
-0.000179018
0.000220735
-0.000182427
0.000235065
-0.000185657
0.00024956
-0.000188704
0.000264213
-0.000191565
0.000279018
-0.000194239
0.000293966
-0.000196724
0.000309052
-0.00019902
0.000324266
-0.000201128
0.000339604
-0.00020305
0.000355057
-0.000204788
0.000370618
-0.000206345
0.000386282
-0.000207724
0.000402041
-0.000208929
0.000417889
-0.000209967
0.00043382
-0.000210841
0.000449827
-0.000211557
0.000465904
-0.000212123
0.000482045
-0.000212545
0.000498245
-0.00021283
0.000514498
-0.000212985
0.000530798
-0.000213017
0.000547139
-0.000212934
0.000563517
-0.000212744
0.000579926
-0.000212455
0.000596361
-0.000212075
0.000612816
-0.000211611
0.000629287
-0.00021107
0.00064577
-0.000210462
0.000662259
-0.000209792
0.00067875
-0.000209068
0.000695238
-0.000208298
0.000711718
-0.000207488
0.000728187
-0.000206644
0.00074464
-0.000205773
0.000761073
-0.000204881
0.000777482
-0.000203973
0.000793862
-0.000203054
0.00081021
-0.00020213
0.000826522
-0.000201205
0.000842794
-0.000200283
0.000859022
-0.000199368
0.000875203
-0.000198463
0.000891333
-0.000197572
0.000907409
-0.000196698
0.000923427
-0.000195842
0.000939384
-0.000195008
0.000955277
-0.000194196
0.000971103
-0.000193408
0.000986858
-0.000192645
0.00100254
-0.000191909
0.00101815
-0.000191199
0.00103368
-0.000190517
0.00104912
-0.000189862
0.00106449
-0.000189235
0.00107977
-0.000188634
0.00109496
-0.00018806
0.00111006
-0.000187512
0.00112507
-0.000186989
0.00113999
-0.00018649
0.00115481
-0.000186015
0.00116954
-0.000185562
0.00118417
-0.000185131
0.0011987
-0.000184719
0.00121314
-0.000184327
0.00122747
-0.000183952
0.00124171
-0.000183594
0.00125584
-0.000183251
0.00126988
-0.000182923
0.00128381
-0.000182609
0.00129765
-0.000182307
0.00131138
-0.000182017
0.00132502
-0.000181739
0.00133857
-0.000181471
0.00135201
-0.000181215
0.00136536
-0.000180969
0.00137862
-0.000180734
0.00139179
-0.00018051
0.00140487
-0.000180299
0.00141787
-0.000180101
0.00143078
-0.000179919
0.00144362
-0.000179754
0.00145637
-0.000179608
0.00146906
-0.000179486
0.00148168
-0.000179391
0.00149423
-0.000179327
0.00150673
-0.000179303
0.00151917
-0.000179321
0.00153156
-0.000179399
0.00154392
-0.00017953
0.00155623
-0.000179753
0.00156852
-0.000180066
0.00158076
-0.00018042
0.001593
-0.000181197
-0.000181441
4.38635e-06
0.000138342
-2.83466e-06
0.000135461
-8.09207e-06
0.000129495
-1.37029e-05
0.000124727
-1.93749e-05
0.000119433
-2.49831e-05
0.000114068
-3.049e-05
0.000108875
-3.5862e-05
0.000103924
-4.10705e-05
9.92507e-05
-4.60947e-05
9.48688e-05
-5.09195e-05
9.07742e-05
-5.55336e-05
8.69514e-05
-5.99285e-05
8.33795e-05
-6.40977e-05
8.00343e-05
-6.80362e-05
7.6891e-05
-7.17403e-05
7.39252e-05
-7.52071e-05
7.11134e-05
-7.8435e-05
6.84343e-05
-8.14263e-05
6.58708e-05
-8.41618e-05
6.33709e-05
-8.66584e-05
6.09801e-05
-8.89102e-05
5.86423e-05
-9.0916e-05
5.63502e-05
-9.26749e-05
5.4092e-05
-9.41862e-05
5.18564e-05
-9.54494e-05
4.96328e-05
-9.64636e-05
4.74114e-05
-9.72282e-05
4.51832e-05
-9.77423e-05
4.29395e-05
-9.80049e-05
4.06722e-05
-9.80149e-05
3.83739e-05
-9.77711e-05
3.60374e-05
-9.72726e-05
3.36564e-05
-9.65181e-05
3.12247e-05
-9.55069e-05
2.87365e-05
-9.4238e-05
2.6186e-05
-9.27104e-05
2.35673e-05
-9.09233e-05
2.08751e-05
-8.88702e-05
1.80949e-05
-8.65495e-05
1.52349e-05
-8.39644e-05
1.22985e-05
-8.11107e-05
9.26718e-06
-7.79869e-05
6.13731e-06
-7.45944e-05
2.90705e-06
-7.08399e-05
-4.99635e-07
-6.7066e-05
-3.83265e-06
-6.28813e-05
-7.3365e-06
-5.84449e-05
-1.09486e-05
-5.37291e-05
-1.46858e-05
-4.87327e-05
-1.85441e-05
-4.34562e-05
-2.25224e-05
-3.78987e-05
-2.66208e-05
-3.20591e-05
-3.08393e-05
-2.59366e-05
-3.5177e-05
-1.95298e-05
-3.96323e-05
-1.28366e-05
-4.42032e-05
-5.85192e-06
-4.8888e-05
1.42813e-06
-5.36842e-05
8.92664e-06
-5.85382e-05
1.67298e-05
-6.35271e-05
2.48217e-05
-6.85999e-05
3.31974e-05
-7.37516e-05
4.18544e-05
-7.89751e-05
5.07906e-05
-8.42614e-05
6.00037e-05
-8.96009e-05
6.94915e-05
-9.49833e-05
7.9251e-05
-0.000100397
8.92781e-05
-0.000105833
9.95602e-05
-0.000111283
0.000110128
-0.000116697
0.000120945
-0.000122117
0.000132014
-0.000127506
0.000143333
-0.000132852
0.000154895
-0.000138142
0.000166697
-0.000143364
0.000178732
-0.000148506
0.000190994
-0.000153555
0.000203476
-0.000158501
0.00021618
-0.000163321
0.000229092
-0.000168021
0.000242205
-0.000172585
0.000255515
-0.000177002
0.000269013
-0.000181264
0.000282693
-0.000185363
0.000296548
-0.000189292
0.000310573
-0.000193042
0.000324758
-0.000196612
0.000339096
-0.000199996
0.000353582
-0.000203189
0.000368207
-0.00020619
0.000382964
-0.000208996
0.000397847
-0.000211607
0.000412848
-0.000214022
0.000427961
-0.000216242
0.00044318
-0.000218269
0.000458496
-0.000220105
0.000473905
-0.000221754
0.0004894
-0.000223218
0.000504973
-0.000224503
0.00052062
-0.000225614
0.000536335
-0.000226555
0.00055211
-0.000227333
0.000567942
-0.000227955
0.000583824
-0.000228427
0.000599751
-0.000228757
0.000615718
-0.000228951
0.000631719
-0.000229018
0.000647749
-0.000228965
0.000663804
-0.000228799
0.000679879
-0.00022853
0.000695969
-0.000228165
0.00071207
-0.000227711
0.000728176
-0.000227177
0.000744284
-0.00022657
0.00076039
-0.000225897
0.000776489
-0.000225167
0.000792577
-0.000224386
0.00080865
-0.000223561
0.000824704
-0.000222698
0.000840735
-0.000221804
0.00085674
-0.000220885
0.000872714
-0.000219947
0.000888654
-0.000218994
0.000904557
-0.000218033
0.000920419
-0.000217066
0.000936236
-0.0002161
0.000952005
-0.000215137
0.000967723
-0.000214181
0.000983386
-0.000213236
0.000998992
-0.000212304
0.00101454
-0.000211387
0.00103002
-0.000210489
0.00104543
-0.00020961
0.00106078
-0.000208753
0.00107605
-0.000207918
0.00109125
-0.000207107
0.00110637
-0.000206321
0.00112141
-0.000205559
0.00113637
-0.000204822
0.00115125
-0.00020411
0.00116604
-0.000203424
0.00118074
-0.000202761
0.00119535
-0.000202124
0.00120987
-0.000201509
0.0012243
-0.000200918
0.00123863
-0.000200348
0.00125287
-0.0001998
0.00126701
-0.000199272
0.00128106
-0.000198763
0.001295
-0.000198273
0.00130885
-0.0001978
0.0013226
-0.000197343
0.00133625
-0.000196901
0.0013498
-0.000196474
0.00136325
-0.000196061
0.00137661
-0.000195662
0.00138986
-0.000195274
0.00140303
-0.000194899
0.00141609
-0.000194536
0.00142906
-0.000194186
0.00144194
-0.000193847
0.00145473
-0.000193522
0.00146743
-0.000193209
0.00148004
-0.000192912
0.00149257
-0.00019263
0.00150502
-0.000192367
0.00151739
-0.000192124
0.00152968
-0.000191904
0.00154191
-0.000191711
0.00155407
-0.00019155
0.00156616
-0.000191423
0.0015782
-0.000191341
0.00159019
-0.000191306
0.00160212
-0.000191336
0.00161402
-0.000191425
0.00162587
-0.000191606
0.0016377
-0.000191892
0.00164948
-0.000192204
0.00166124
-0.00019296
-0.000193214
7.7685e-05
0.000142732
7.29451e-05
0.000140201
6.80245e-05
0.000134415
6.30295e-05
0.000129722
5.79016e-05
0.000124561
5.27628e-05
0.000119207
4.76681e-05
0.000113969
4.26602e-05
0.000108932
3.77775e-05
0.000104133
3.30499e-05
9.95964e-05
2.85007e-05
9.53233e-05
2.41484e-05
9.13037e-05
2.00077e-05
8.75202e-05
1.60903e-05
8.39517e-05
1.24057e-05
8.05757e-05
8.96155e-06
7.73694e-05
5.76435e-06
7.43106e-05
2.82099e-06
7.13777e-05
1.47943e-07
6.85438e-05
-2.3145e-06
6.58333e-05
-4.50348e-06
6.31691e-05
-6.42879e-06
6.05676e-05
-8.09141e-06
5.80128e-05
-9.4912e-06
5.54918e-05
-1.06279e-05
5.29931e-05
-1.15014e-05
5.05062e-05
-1.21113e-05
4.80213e-05
-1.24574e-05
4.55293e-05
-1.25394e-05
4.30215e-05
-1.23568e-05
4.04897e-05
-1.19091e-05
3.79262e-05
-1.11957e-05
3.5324e-05
-1.02159e-05
3.26766e-05
-8.96934e-06
2.99781e-05
-7.45554e-06
2.72227e-05
-5.67388e-06
2.44044e-05
-3.62239e-06
2.15158e-05
-1.2961e-06
1.85488e-05
1.28541e-06
1.55134e-05
4.12251e-06
1.23978e-05
7.23812e-06
9.18288e-06
1.06277e-05
5.87764e-06
1.43011e-05
2.46385e-06
1.82751e-05
-1.06695e-06
2.2359e-05
-4.58349e-06
2.67878e-05
-8.26149e-06
3.14824e-05
-1.20311e-05
3.64567e-05
-1.59229e-05
4.1707e-05
-1.99361e-05
4.7232e-05
-2.40691e-05
5.3032e-05
-2.83224e-05
5.91072e-05
-3.2696e-05
6.54576e-05
-3.71898e-05
7.20832e-05
-4.18026e-05
7.89837e-05
-4.65328e-05
8.61583e-05
-5.13777e-05
9.3605e-05
-5.63348e-05
0.00010132
-6.13995e-05
0.000109325
-6.65426e-05
0.000117595
-7.17972e-05
0.000126134
-7.71388e-05
0.000134941
-8.25589e-05
0.000144015
-8.80493e-05
0.000153354
-9.36004e-05
0.000162956
-9.92023e-05
0.000172817
-0.000104844
0.000182934
-0.000110515
0.000193303
-0.000116202
0.000203918
-0.000121898
0.000214788
-0.000127567
0.000225897
-0.000133226
0.000237241
-0.000138851
0.000248816
-0.000144428
0.000260618
-0.000149944
0.00027264
-0.000155386
0.000284877
-0.000160743
0.000297323
-0.000166001
0.00030997
-0.000171149
0.000322817
-0.000176168
0.000335854
-0.000181058
0.000349074
-0.000185805
0.000362471
-0.000190398
0.000376037
-0.00019483
0.000389766
-0.000199092
0.00040365
-0.000203176
0.000417684
-0.000207076
0.00043186
-0.000210788
0.00044617
-0.000214306
0.000460609
-0.000217628
0.000475169
-0.00022075
0.000489842
-0.00022367
0.000504624
-0.000226388
0.000519506
-0.000228904
0.000534483
-0.000231218
0.000549548
-0.000233334
0.000564694
-0.000235252
0.000579916
-0.000236976
0.000595208
-0.00023851
0.000610563
-0.000239859
0.000625977
-0.000241027
0.000641443
-0.000242021
0.000656956
-0.000242847
0.000672512
-0.000243511
0.000688104
-0.000244019
0.000703728
-0.000244381
0.000719379
-0.000244602
0.000735053
-0.000244691
0.000750744
-0.000244656
0.000766449
-0.000244504
0.000782162
-0.000244244
0.000797881
-0.000243883
0.0008136
-0.00024343
0.000829316
-0.000242893
0.000845024
-0.000242278
0.000860722
-0.000241595
0.000876404
-0.00024085
0.000892068
-0.00024005
0.00090771
-0.000239202
0.000923326
-0.000238314
0.000938912
-0.000237391
0.000954466
-0.000236439
0.000969984
-0.000235465
0.000985463
-0.000234473
0.0010009
-0.000233469
0.00101629
-0.000232457
0.00103163
-0.000231441
0.00104692
-0.000230427
0.00106216
-0.000229416
0.00107733
-0.000228413
0.00109245
-0.00022742
0.0011075
-0.00022644
0.00112249
-0.000225476
0.00113741
-0.000224529
0.00115225
-0.0002236
0.00116703
-0.000222692
0.00118173
-0.000221805
0.00119634
-0.00022094
0.00121088
-0.000220098
0.00122534
-0.000219278
0.00123971
-0.000218482
0.001254
-0.000217709
0.00126819
-0.000216959
0.0012823
-0.000216231
0.00129632
-0.000215526
0.00131024
-0.000214842
0.00132407
-0.000214179
0.00133781
-0.000213537
0.00135145
-0.000212913
0.001365
-0.000212308
0.00137844
-0.000211721
0.0013918
-0.000211151
0.00140505
-0.000210596
0.00141821
-0.000210058
0.00143126
-0.000209534
0.00144423
-0.000209024
0.00145709
-0.000208528
0.00146986
-0.000208045
0.00148254
-0.000207575
0.00149512
-0.000207119
0.00150761
-0.000206676
0.00152001
-0.000206247
0.00153232
-0.000205833
0.00154455
-0.000205434
0.00155669
-0.000205053
0.00156875
-0.00020469
0.00158073
-0.000204347
0.00159263
-0.000204028
0.00160447
-0.000203736
0.00161623
-0.000203474
0.00162793
-0.000203248
0.00163956
-0.000203061
0.00165114
-0.000202922
0.00166267
-0.000202834
0.00167415
-0.000202816
0.00168559
-0.000202863
0.00169699
-0.000203001
0.00170835
-0.00020326
0.00171968
-0.000203527
0.00173097
-0.000204258
-0.000204519
0.000159864
0.00014669
0.000155547
0.000144518
0.000151203
0.000138759
0.000146631
0.000134295
0.000141867
0.000129325
0.000137037
0.000124037
0.000132206
0.0001188
0.000127425
0.000113713
0.00012274
0.000108819
0.000118189
0.000104148
0.000113802
9.97102e-05
0.000109604
9.55011e-05
0.000105617
9.15077e-05
0.000101855
8.77131e-05
9.83332e-05
8.40978e-05
9.50608e-05
8.06418e-05
9.20463e-05
7.73251e-05
8.92957e-05
7.41282e-05
8.68088e-05
7.10308e-05
8.46075e-05
6.80346e-05
8.26774e-05
6.50991e-05
8.10243e-05
6.22208e-05
7.96498e-05
5.93873e-05
7.85548e-05
5.65868e-05
7.77396e-05
5.38083e-05
7.72041e-05
5.10417e-05
7.6948e-05
4.82774e-05
7.69709e-05
4.55064e-05
7.72726e-05
4.27198e-05
7.78529e-05
3.99094e-05
7.87114e-05
3.70676e-05
7.98483e-05
3.41871e-05
8.12633e-05
3.12616e-05
8.29559e-05
2.82855e-05
8.49251e-05
2.52535e-05
8.71695e-05
2.21599e-05
8.96883e-05
1.89971e-05
9.24804e-05
1.57567e-05
9.55519e-05
1.24419e-05
9.89046e-05
9.04507e-06
0.000102525
5.56215e-06
0.000106447
1.95638e-06
0.000110617
-1.70674e-06
0.000114953
-5.40273e-06
0.000119613
-9.24335e-06
0.000124534
-1.31831e-05
0.000129735
-1.72318e-05
0.000135211
-2.13982e-05
0.000140957
-2.56829e-05
0.000146975
-3.00866e-05
0.000153262
-3.461e-05
0.00015982
-3.92533e-05
0.000166646
-4.4016e-05
0.00017374
-4.88969e-05
0.000181101
-5.38941e-05
0.000188729
-5.90048e-05
0.000196619
-6.42257e-05
0.000204772
-6.95525e-05
0.000213195
-7.49648e-05
0.000221876
-8.04782e-05
0.000230814
-8.60772e-05
0.000240008
-9.17532e-05
0.000249456
-9.74972e-05
0.000259155
-0.000103299
0.000269102
-0.000109149
0.000279293
-0.000115035
0.000289725
-0.000120947
0.000300394
-0.000126871
0.000311293
-0.000132798
0.000322426
-0.0001387
0.000333782
-0.000144582
0.000345357
-0.000150425
0.000357145
-0.000156216
0.000369141
-0.00016194
0.000381339
-0.000167584
0.000393733
-0.000173137
0.000406317
-0.000178585
0.000419084
-0.000183916
0.000432031
-0.000189115
0.000445148
-0.000194175
0.00045843
-0.000199086
0.000471869
-0.000203837
0.000485458
-0.000208419
0.000499191
-0.000212825
0.000513061
-0.000217046
0.000527061
-0.000221076
0.000541185
-0.000224911
0.000555425
-0.000228546
0.000569774
-0.000231977
0.000584227
-0.000235202
0.000598776
-0.000238219
0.000613415
-0.000241027
0.000628138
-0.000243627
0.000642939
-0.000246019
0.000657811
-0.000248206
0.000672749
-0.00025019
0.000687748
-0.000251974
0.0007028
-0.000253562
0.000717902
-0.00025496
0.000733047
-0.000256172
0.000748231
-0.000257205
0.000763448
-0.000258064
0.000778694
-0.000258757
0.000793965
-0.00025929
0.000809255
-0.000259671
0.00082456
-0.000259908
0.000839877
-0.000260008
0.0008552
-0.000259979
0.000870526
-0.00025983
0.000885852
-0.000259569
0.000901172
-0.000259204
0.000916484
-0.000258742
0.000931784
-0.000258193
0.000947068
-0.000257563
0.000962334
-0.00025686
0.000977577
-0.000256093
0.000992794
-0.000255267
0.00100798
-0.000254391
0.00102314
-0.00025347
0.00103826
-0.000252512
0.00105334
-0.000251523
0.00106839
-0.000250507
0.00108338
-0.000249471
0.00109833
-0.00024842
0.00111324
-0.000247358
0.00112809
-0.00024629
0.00114288
-0.00024522
0.00115761
-0.000244152
0.00117229
-0.000243088
0.0011869
-0.000242032
0.00120145
-0.000240987
0.00121593
-0.000239955
0.00123034
-0.000238937
0.00124467
-0.000237936
0.00125893
-0.000236953
0.00127312
-0.000235989
0.00128722
-0.000235045
0.00130125
-0.000234122
0.00131519
-0.00023322
0.00132905
-0.00023234
0.00134282
-0.000231481
0.0013565
-0.000230643
0.0013701
-0.000229827
0.0013836
-0.000229031
0.00139702
-0.000228256
0.00141034
-0.000227501
0.00142357
-0.000226765
0.0014367
-0.000226047
0.00144974
-0.000225348
0.00146269
-0.000224666
0.00147554
-0.000224
0.00148829
-0.000223351
0.00150095
-0.000222717
0.00151351
-0.000222097
0.00152598
-0.000221493
0.00153836
-0.000220903
0.00155064
-0.000220327
0.00156283
-0.000219765
0.00157493
-0.000219218
0.00158694
-0.000218686
0.00159886
-0.000218169
0.0016107
-0.000217669
0.00162245
-0.000217186
0.00163412
-0.000216723
0.00164571
-0.000216281
0.00165723
-0.000215862
0.00166867
-0.00021547
0.00168004
-0.000215108
0.00169134
-0.000214779
0.00170259
-0.00021449
0.00171377
-0.000214243
0.0017249
-0.000214049
0.00173597
-0.000213911
0.001747
-0.000213844
0.00175799
-0.00021385
0.00176893
-0.000213945
0.00177985
-0.000214175
0.00179072
-0.000214397
0.00180156
-0.000215096
-0.000215363
0.000250473
0.000150443
0.000246174
0.000148817
0.000242004
0.000142929
0.000237592
0.000138707
0.000232942
0.000133976
0.000228195
0.000128784
0.000223423
0.000123571
0.00021868
0.000118456
0.000214019
0.000113481
0.000209482
0.000108684
0.000205109
0.000104084
0.000200928
9.96818e-05
0.000196965
9.54708e-05
0.00019324
9.14384e-05
0.000189769
8.75692e-05
0.000186564
8.38463e-05
0.000183636
8.0253e-05
0.000180992
7.67721e-05
0.000178637
7.33859e-05
0.000176581
7.00908e-05
0.000174821
6.6859e-05
0.00017336
6.36823e-05
0.000172198
6.05493e-05
0.000171335
5.7449e-05
0.000170773
5.43711e-05
0.000170508
5.13059e-05
0.000170542
4.82442e-05
0.000170871
4.51768e-05
0.000171496
4.20952e-05
0.000172414
3.89908e-05
0.000173626
3.58559e-05
0.00017513
3.26831e-05
0.000176926
2.94661e-05
0.000179011
2.61997e-05
0.000181386
2.28794e-05
0.000184045
1.95005e-05
0.000186988
1.60542e-05
0.000190215
1.25293e-05
0.00019373
8.92694e-06
0.000197519
5.25652e-06
0.000201633
1.44773e-06
0.000205944
-2.35415e-06
0.000210474
-6.23714e-06
0.000215313
-1.02412e-05
0.000220417
-1.43475e-05
0.000225795
-1.85618e-05
0.000231449
-2.28853e-05
0.000237373
-2.73223e-05
0.000243565
-3.18753e-05
0.000250025
-3.6546e-05
0.00025675
-4.1335e-05
0.000263739
-4.62424e-05
0.000270991
-5.12677e-05
0.000278504
-5.64097e-05
0.000286276
-6.16662e-05
0.000294305
-6.70342e-05
0.000302589
-7.25101e-05
0.000311126
-7.80892e-05
0.000319919
-8.37572e-05
0.000328959
-8.9519e-05
0.000338246
-9.53639e-05
0.000347776
-0.000101283
0.000357546
-0.000107267
0.000367553
-0.000113306
0.000377793
-0.000119389
0.000388263
-0.000125505
0.000398957
-0.000131641
0.000409873
-0.000137786
0.000421003
-0.000143928
0.000432347
-0.000150045
0.000443899
-0.000156134
0.000455651
-0.000162178
0.000467599
-0.000168163
0.000479736
-0.000174077
0.000492057
-0.000179905
0.000504556
-0.000185636
0.000517225
-0.000191255
0.00053006
-0.00019675
0.000543054
-0.000202109
0.0005562
-0.000207322
0.000569492
-0.000212377
0.000582922
-0.000217267
0.000596484
-0.000221981
0.00061017
-0.000226512
0.000623976
-0.000230851
0.000637893
-0.000234994
0.000651916
-0.000238934
0.000666037
-0.000242667
0.00068025
-0.000246191
0.00069455
-0.000249501
0.000708928
-0.000252598
0.000723381
-0.00025548
0.000737901
-0.000258147
0.000752483
-0.000260601
0.000767121
-0.000262844
0.00078181
-0.000264878
0.000796544
-0.000266708
0.000811318
-0.000268337
0.000826127
-0.000269769
0.000840967
-0.000271012
0.000855833
-0.00027207
0.000870719
-0.000272951
0.000885623
-0.00027366
0.000900538
-0.000274206
0.000915463
-0.000274595
0.000930392
-0.000274837
0.000945321
-0.000274937
0.000960248
-0.000274906
0.000975168
-0.00027475
0.000990078
-0.000274479
0.00100497
-0.0002741
0.00101985
-0.000273622
0.00103472
-0.000273053
0.00104955
-0.0002724
0.00106436
-0.000271671
0.00107915
-0.000270875
0.0010939
-0.000270018
0.00110861
-0.000269107
0.00112329
-0.000268149
0.00113793
-0.00026715
0.00115252
-0.000266118
0.00116707
-0.000265057
0.00118158
-0.000263973
0.00119603
-0.000262871
0.00121042
-0.000261756
0.00122477
-0.000260633
0.00123905
-0.000259505
0.00125328
-0.000258376
0.00126744
-0.00025725
0.00128153
-0.000256129
0.00129556
-0.000255017
0.00130952
-0.000253915
0.00132341
-0.000252827
0.00133723
-0.000251752
0.00135097
-0.000250694
0.00136463
-0.000249653
0.00137822
-0.00024863
0.00139172
-0.000247627
0.00140515
-0.000246642
0.00141848
-0.000245678
0.00143174
-0.000244734
0.0014449
-0.00024381
0.00145798
-0.000242906
0.00147097
-0.000242021
0.00148387
-0.000241156
0.00149668
-0.00024031
0.0015094
-0.000239483
0.00152203
-0.000238674
0.00153456
-0.000237882
0.001547
-0.000237107
0.00155935
-0.000236348
0.00157161
-0.000235606
0.00158377
-0.000234879
0.00159584
-0.000234168
0.00160782
-0.000233472
0.00161971
-0.000232791
0.0016315
-0.000232125
0.00164321
-0.000231474
0.00165483
-0.000230839
0.00166637
-0.00023022
0.00167782
-0.000229619
0.00168918
-0.000229035
0.00170047
-0.000228472
0.00171167
-0.00022793
0.00172281
-0.000227412
0.00173386
-0.00022692
0.00174485
-0.000226457
0.00175577
-0.000226027
0.00176662
-0.000225634
0.00177742
-0.000225284
0.00178816
-0.00022498
0.00179884
-0.000224733
0.00180947
-0.000224545
0.00182006
-0.000224432
0.00183061
-0.000224397
0.00184111
-0.000224448
0.00185159
-0.000224649
0.00186202
-0.000224827
0.00187241
-0.00022549
-0.000225759
0.000350339
0.000154451
0.000345568
0.000153588
0.000341116
0.000147381
0.000336484
0.000143339
0.000331609
0.00013885
0.000326641
0.000133752
0.000321655
0.000128557
0.000316703
0.000123408
0.000311839
0.000118345
0.000307112
0.000113411
0.000302563
0.000108633
0.000298224
0.00010402
0.000294125
9.957e-05
0.000290287
9.52763e-05
0.000286729
9.11278e-05
0.000283463
8.71118e-05
0.000280501
8.32146e-05
0.000277851
7.94222e-05
0.000275517
7.57197e-05
0.000273508
7.21006e-05
0.000271821
6.85455e-05
0.000270459
6.50446e-05
0.000269421
6.15873e-05
0.000268706
5.81635e-05
0.000268314
5.47637e-05
0.000268241
5.13785e-05
0.000268487
4.79989e-05
0.000269047
4.46162e-05
0.000269921
4.12215e-05
0.000271105
3.78063e-05
0.000272599
3.43623e-05
0.0002744
3.08819e-05
0.000276508
2.73587e-05
0.000278919
2.37879e-05
0.000281633
2.01661e-05
0.000284643
1.64906e-05
0.000287948
1.27489e-05
0.000291549
8.92782e-06
0.000295428
5.04821e-06
0.000299665
1.01972e-06
0.000304047
-2.93447e-06
0.000308702
-7.00904e-06
0.000313652
-1.11874e-05
0.000318875
-1.5464e-05
0.000324374
-1.98461e-05
0.000330146
-2.43337e-05
0.000336188
-2.89282e-05
0.000342499
-3.36333e-05
0.000349076
-3.8452e-05
0.000355916
-4.3386e-05
0.000363017
-4.8436e-05
0.000370377
-5.36022e-05
0.000377993
-5.88839e-05
0.000385863
-6.42799e-05
0.000393985
-6.97879e-05
0.000402356
-7.54048e-05
0.000410972
-8.11266e-05
0.000419831
-8.69483e-05
0.000428933
-9.28594e-05
0.000438273
-9.88587e-05
0.000447847
-0.000104938
0.000457651
-0.000111087
0.000467681
-0.000117298
0.000477935
-0.00012356
0.000488407
-0.000129861
0.000499093
-0.000136191
0.000509989
-0.000142537
0.00052109
-0.000148887
0.000532389
-0.000155227
0.000543885
-0.000161541
0.00055557
-0.000167819
0.000567439
-0.000174046
0.000579485
-0.00018021
0.000591703
-0.000186295
0.000604087
-0.000192289
0.00061663
-0.000198179
0.000629326
-0.000203951
0.000642168
-0.000209593
0.000655151
-0.000215092
0.000668268
-0.000220438
0.000681512
-0.000225621
0.000694876
-0.000230631
0.000708354
-0.000235459
0.000721939
-0.000240097
0.000735625
-0.000244537
0.000749406
-0.000248774
0.000763275
-0.000252802
0.000777225
-0.000256618
0.000791251
-0.000260217
0.000805347
-0.000263597
0.000819507
-0.000266758
0.000833724
-0.000269698
0.000847995
-0.000272417
0.000862312
-0.000274919
0.000876671
-0.000277203
0.000891068
-0.000279275
0.000905496
-0.000281136
0.000919951
-0.000282792
0.000934429
-0.000284248
0.000948926
-0.000285508
0.000963436
-0.000286581
0.000977956
-0.000287471
0.000992482
-0.000288186
0.00100701
-0.000288734
0.00102154
-0.000289122
0.00103606
-0.000289359
0.00105057
-0.000289451
0.00106508
-0.000289408
0.00107956
-0.000289238
0.00109403
-0.000288949
0.00110848
-0.000288549
0.0011229
-0.000288047
0.0011373
-0.000287451
0.00115167
-0.000286769
0.00116601
-0.000286009
0.00118031
-0.000285177
0.00119458
-0.000284283
0.0012088
-0.000283333
0.00122299
-0.000282333
0.00123713
-0.00028129
0.00125122
-0.000280211
0.00126527
-0.000279101
0.00127926
-0.000277966
0.0012932
-0.000276811
0.00130708
-0.00027564
0.00132091
-0.000274459
0.00133467
-0.000273271
0.00134838
-0.00027208
0.00136202
-0.00027089
0.00137559
-0.000269704
0.0013891
-0.000268524
0.00140254
-0.000267352
0.0014159
-0.000266192
0.00142919
-0.000265044
0.00144241
-0.000263911
0.00145555
-0.000262793
0.00146861
-0.000261692
0.00148159
-0.000260608
0.00149449
-0.000259543
0.00150731
-0.000258496
0.00152005
-0.000257468
0.0015327
-0.000256459
0.00154526
-0.000255469
0.00155774
-0.000254498
0.00157013
-0.000253545
0.00158243
-0.000252611
0.00159464
-0.000251695
0.00160676
-0.000250796
0.00161879
-0.000249914
0.00163074
-0.000249049
0.00164259
-0.000248201
0.00165435
-0.000247369
0.00166602
-0.000246553
0.00167761
-0.000245752
0.0016891
-0.000244967
0.00170051
-0.000244198
0.00171183
-0.000243446
0.00172307
-0.000242709
0.00173422
-0.000241989
0.00174529
-0.000241288
0.00175627
-0.000240605
0.00176718
-0.000239942
0.00177801
-0.000239301
0.00178876
-0.000238684
0.00179944
-0.000238093
0.00181006
-0.000237531
0.0018206
-0.000237001
0.00183108
-0.000236506
0.0018415
-0.000236052
0.00185186
-0.000235644
0.00186216
-0.000235286
0.00187241
-0.000234987
0.00188262
-0.000234751
0.00189278
-0.000234592
0.0019029
-0.000234519
0.00191298
-0.000234526
0.00192303
-0.000234698
0.00193303
-0.000234832
0.001943
-0.000235456
-0.000235723
0.000460367
0.000159376
0.000454526
0.00015943
0.000449235
0.000152673
0.000443896
0.000148677
0.000438367
0.000144379
0.000432794
0.000139325
0.000427249
0.000134102
0.000421777
0.00012888
0.000416431
0.000123691
0.000411259
0.000118582
0.000406304
0.000113588
0.000401599
0.000108725
0.000397171
0.000103998
0.000393044
9.94034e-05
0.000389235
9.4937e-05
0.000385757
9.05897e-05
0.00038262
8.63514e-05
0.000379831
8.22111e-05
0.000377394
7.81569e-05
0.000375313
7.41814e-05
0.000373588
7.02706e-05
0.000372218
6.64147e-05
0.000371201
6.2604e-05
0.000370535
5.88293e-05
0.000370217
5.50816e-05
0.000370244
5.13521e-05
0.000370611
4.76321e-05
0.000371314
4.39128e-05
0.00037235
4.01853e-05
0.000373716
3.64408e-05
0.000375408
3.26704e-05
0.000377424
2.8866e-05
0.000379762
2.50207e-05
0.00038242
2.11299e-05
0.000385394
1.71914e-05
0.00038868
1.32048e-05
0.000392275
9.1544e-06
0.000396154
5.04844e-06
0.000400421
7.81347e-07
0.000404794
-3.35297e-06
0.000409487
-7.62746e-06
0.000414468
-1.19903e-05
0.000419729
-1.64486e-05
0.000425271
-2.10059e-05
0.000431089
-2.56636e-05
0.000437178
-3.0423e-05
0.000443536
-3.52868e-05
0.000450161
-4.02582e-05
0.000457049
-4.53399e-05
0.000464197
-5.05336e-05
0.000471601
-5.58403e-05
0.000479259
-6.126e-05
0.000487167
-6.67923e-05
0.000495323
-7.24355e-05
0.000503722
-7.81874e-05
0.000512362
-8.40447e-05
0.000521239
-9.00033e-05
0.000530349
-9.60582e-05
0.00053969
-0.0001022
0.000549257
-0.000108426
0.000559047
-0.000114727
0.000569054
-0.000121094
0.000579274
-0.000127518
0.000589704
-0.000133989
0.000600337
-0.000140495
0.00061117
-0.000147024
0.000622197
-0.000153564
0.000633413
-0.000160102
0.000644812
-0.000166626
0.000656389
-0.000173119
0.00066814
-0.000179569
0.000680056
-0.000185963
0.000692134
-0.000192287
0.000704365
-0.000198527
0.000716744
-0.000204669
0.000729265
-0.0002107
0.000741922
-0.000216607
0.000754706
-0.000222378
0.000767614
-0.000228
0.000780638
-0.000233462
0.000793771
-0.000238755
0.000807008
-0.000243868
0.000820341
-0.000248792
0.000833765
-0.000253521
0.000847273
-0.000258045
0.000860859
-0.00026236
0.000874517
-0.000266461
0.000888242
-0.000270342
0.000902027
-0.000274002
0.000915867
-0.000277437
0.000929756
-0.000280647
0.000943689
-0.000283631
0.000957661
-0.000286389
0.000971667
-0.000288925
0.000985702
-0.000291239
0.000999761
-0.000293334
0.00101384
-0.000295216
0.00102794
-0.000296887
0.00104204
-0.000298355
0.00105616
-0.000299623
0.00107028
-0.000300699
0.0010844
-0.00030159
0.00109851
-0.000302302
0.00111262
-0.000302843
0.00112672
-0.000303221
0.0011408
-0.000303444
0.00115487
-0.000303521
0.00116893
-0.000303459
0.00118295
-0.000303267
0.00119696
-0.000302953
0.00121094
-0.000302527
0.00122489
-0.000301996
0.0012388
-0.000301368
0.00125268
-0.000300651
0.00126653
-0.000299854
0.00128034
-0.000298984
0.0012941
-0.000298049
0.00130783
-0.000297055
0.0013215
-0.00029601
0.00133513
-0.00029492
0.00134871
-0.000293792
0.00136224
-0.00029263
0.00137572
-0.000291442
0.00138914
-0.000290231
0.0014025
-0.000289003
0.00141581
-0.000287763
0.00142905
-0.000286514
0.00144223
-0.000285261
0.00145534
-0.000284006
0.00146839
-0.000282753
0.00148138
-0.000281505
0.00149429
-0.000280264
0.00150713
-0.000279032
0.0015199
-0.000277812
0.00153259
-0.000276604
0.00154521
-0.000275411
0.00155775
-0.000274233
0.00157021
-0.000273071
0.00158259
-0.000271926
0.00159489
-0.000270798
0.00160711
-0.000269688
0.00161925
-0.000268597
0.00163131
-0.000267523
0.00164327
-0.000266467
0.00165516
-0.00026543
0.00166696
-0.00026441
0.00167867
-0.000263407
0.0016903
-0.000262422
0.00170184
-0.000261454
0.00171329
-0.000260502
0.00172466
-0.000259568
0.00173594
-0.000258649
0.00174713
-0.000257747
0.00175824
-0.000256861
0.00176926
-0.000255991
0.0017802
-0.000255138
0.00179106
-0.000254302
0.00180183
-0.000253484
0.00181253
-0.000252684
0.00182314
-0.000251903
0.00183368
-0.000251142
0.00184414
-0.000250404
0.00185453
-0.000249689
0.00186485
-0.000249001
0.00187509
-0.00024834
0.00188527
-0.000247711
0.00189539
-0.000247117
0.00190545
-0.000246562
0.00191544
-0.000246049
0.00192539
-0.000245586
0.00193528
-0.000245176
0.00194512
-0.000244828
0.00195491
-0.000244547
0.00196466
-0.000244344
0.00197438
-0.000244232
0.00198405
-0.000244196
0.00199369
-0.000244339
0.00200329
-0.000244432
0.00201285
-0.000245013
-0.000245276
0.000581425
0.000166069
0.000573802
0.000167052
0.000567006
0.000159469
0.000560373
0.000155311
0.000553668
0.000151083
0.000547025
0.000145968
0.000540508
0.000140619
0.000534147
0.000135241
0.000527987
0.000129851
0.000522074
0.000124495
0.000516444
0.000119218
0.000511129
0.000114041
0.000506152
0.000108974
0.000501533
0.000104022
0.000497288
9.91825e-05
0.000493426
9.44518e-05
0.000489954
8.9823e-05
0.000486877
8.52883e-05
0.000484196
8.08383e-05
0.000481911
7.6466e-05
0.000480021
7.21607e-05
0.000478522
6.79135e-05
0.000477411
6.37156e-05
0.000476682
5.95583e-05
0.00047633
5.54333e-05
0.00047635
5.13321e-05
0.000476736
4.72462e-05
0.000477482
4.31669e-05
0.000478582
3.90851e-05
0.000480031
3.49913e-05
0.000481826
3.0876e-05
0.000483962
2.673e-05
0.000486437
2.25454e-05
0.00048925
1.83172e-05
0.000492398
1.40431e-05
0.000495874
9.72898e-06
0.00049965
5.37792e-06
0.000503829
8.69693e-07
0.000508105
-3.49439e-06
0.000512732
-7.97958e-06
0.000517646
-1.25423e-05
0.000522851
-1.7195e-05
0.000528343
-2.19406e-05
0.000534116
-2.67789e-05
0.000540165
-3.17125e-05
0.000546486
-3.6744e-05
0.000553075
-4.18763e-05
0.000559929
-4.71124e-05
0.000567044
-5.24547e-05
0.000574416
-5.7905e-05
0.00058204
-6.34643e-05
0.000589912
-6.91328e-05
0.00059803
-7.49098e-05
0.000606388
-8.07937e-05
0.000614983
-8.67822e-05
0.00062381
-9.2872e-05
0.000632866
-9.90587e-05
0.000642144
-0.000105337
0.000651644
-0.0001117
0.000661358
-0.00011814
0.000671283
-0.000124652
0.000681413
-0.000131224
0.000691744
-0.000137849
0.00070227
-0.000144515
0.000712986
-0.000151211
0.000723886
-0.000157925
0.000734966
-0.000164644
0.00074622
-0.000171356
0.000757641
-0.000178047
0.000769224
-0.000184702
0.000780964
-0.000191309
0.000792854
-0.000197853
0.000804887
-0.00020432
0.000817058
-0.000210698
0.000829361
-0.000216971
0.000841788
-0.000223127
0.000854333
-0.000229152
0.000866991
-0.000235035
0.000879754
-0.000240763
0.000892617
-0.000246325
0.000905574
-0.000251711
0.000918617
-0.000256911
0.000931742
-0.000261917
0.000944941
-0.00026672
0.00095821
-0.000271314
0.000971541
-0.000275692
0.000984931
-0.00027985
0.000998372
-0.000283784
0.00101186
-0.00028749
0.00102539
-0.000290967
0.00103896
-0.000294213
0.00105255
-0.000297229
0.00106618
-0.000300014
0.00107983
-0.000302572
0.00109349
-0.000304904
0.00110717
-0.000307013
0.00112086
-0.000308905
0.00113455
-0.000310582
0.00114825
-0.000312052
0.00116195
-0.000313319
0.00117564
-0.000314391
0.00118932
-0.000315273
0.001203
-0.000315975
0.00121665
-0.000316502
0.0012303
-0.000316863
0.00124392
-0.000317067
0.00125752
-0.000317121
0.0012711
-0.000317035
0.00128465
-0.000316816
0.00129817
-0.000316473
0.00131165
-0.000316015
0.00132511
-0.00031545
0.00133853
-0.000314786
0.00135191
-0.000314032
0.00136525
-0.000313195
0.00137855
-0.000312283
0.0013918
-0.000311304
0.00140501
-0.000310265
0.00141817
-0.000309172
0.00143128
-0.000308033
0.00144435
-0.000306853
0.00145735
-0.000305638
0.00147031
-0.000304395
0.00148321
-0.000303128
0.00149604
-0.000301843
0.00150882
-0.000300543
0.00152154
-0.000299233
0.0015342
-0.000297916
0.00154679
-0.000296597
0.00155932
-0.000295279
0.00157178
-0.000293963
0.00158417
-0.000292654
0.00159648
-0.000291352
0.00160873
-0.00029006
0.00162091
-0.000288779
0.00163301
-0.000287512
0.00164504
-0.000286259
0.00165699
-0.000285021
0.00166886
-0.000283798
0.00168065
-0.000282592
0.00169237
-0.000281404
0.001704
-0.000280232
0.00171556
-0.000279077
0.00172703
-0.00027794
0.00173842
-0.000276821
0.00174973
-0.000275718
0.00176096
-0.000274633
0.0017721
-0.000273565
0.00178316
-0.000272514
0.00179414
-0.00027148
0.00180503
-0.000270462
0.00181584
-0.000269461
0.00182657
-0.000268477
0.00183722
-0.000267509
0.00184779
-0.000266559
0.00185828
-0.000265626
0.00186868
-0.000264711
0.00187902
-0.000263815
0.00188927
-0.000262938
0.00189945
-0.000262082
0.00190956
-0.000261248
0.00191959
-0.000260438
0.00192955
-0.000259654
0.00193945
-0.000258898
0.00194928
-0.000258172
0.00195905
-0.000257481
0.00196876
-0.000256826
0.00197841
-0.000256213
0.00198801
-0.000255646
0.00199755
-0.00025513
0.00200705
-0.000254671
0.0020165
-0.000254276
0.0020259
-0.000253952
0.00203527
-0.000253707
0.00204459
-0.00025356
0.00205388
-0.000253482
0.00206314
-0.000253595
0.00207235
-0.000253648
0.00208153
-0.000254187
-0.000254442
0.000714191
0.000175531
0.000703972
0.000177271
0.000694913
0.000168528
0.000686307
0.000163917
0.000677829
0.000159561
0.000669587
0.000154211
0.000661625
0.000148581
0.000653956
0.00014291
0.000646611
0.000137196
0.000639624
0.000131482
0.000633022
0.00012582
0.000626827
0.000120235
0.000621058
0.000114744
0.000615727
0.000109353
0.000610841
0.000104068
0.000606407
9.88859e-05
0.000602426
9.38042e-05
0.000598897
8.88172e-05
0.000595818
8.39179e-05
0.000593184
7.90999e-05
0.00059099
7.43546e-05
0.000589229
6.9674e-05
0.000587895
6.50498e-05
0.000586979
6.04741e-05
0.000586474
5.59387e-05
0.000586371
5.14354e-05
0.000586661
4.69557e-05
0.000587337
4.24907e-05
0.000588392
3.8031e-05
0.000589816
3.35664e-05
0.000591606
2.90864e-05
0.000593756
2.45802e-05
0.000596263
2.0038e-05
0.000599127
1.5453e-05
0.000602349
1.08216e-05
0.000605903
6.17456e-06
0.000609853
1.42828e-06
0.000613942
-3.21927e-06
0.000618377
-7.92921e-06
0.000623111
-1.2714e-05
0.000628148
-1.75788e-05
0.000633481
-2.25286e-05
0.000639104
-2.7563e-05
0.000645009
-3.26842e-05
0.000651192
-3.78956e-05
0.000657648
-4.32001e-05
0.000664373
-4.86008e-05
0.000671361
-5.41003e-05
0.000678607
-5.97014e-05
0.000686108
-6.54056e-05
0.000693858
-7.1214e-05
0.000701852
-7.71269e-05
0.000710085
-8.31434e-05
0.000718554
-8.9262e-05
0.000727252
-9.54803e-05
0.000736175
-0.000101795
0.000745317
-0.000108201
0.000754675
-0.000114694
0.000764242
-0.000121267
0.000774014
-0.000127912
0.000783985
-0.000134623
0.00079415
-0.000141389
0.000804503
-0.000148202
0.000815039
-0.000155051
0.000825751
-0.000161923
0.000836634
-0.000168808
0.000847682
-0.000175692
0.000858889
-0.000182563
0.000870249
-0.000189407
0.000881756
-0.000196209
0.000893404
-0.000202956
0.000905186
-0.000209635
0.000917096
-0.000216231
0.000929129
-0.00022273
0.000941276
-0.000229119
0.000953533
-0.000235384
0.000965893
-0.000241512
0.00097835
-0.000247492
0.000990897
-0.00025331
0.00100353
-0.000258957
0.00101624
-0.000264421
0.00102902
-0.000269694
0.00104187
-0.000274767
0.00105478
-0.000279631
0.00106775
-0.00028428
0.00108077
-0.000288709
0.00109383
-0.000292911
0.00110693
-0.000296885
0.00112006
-0.000300626
0.00113323
-0.000304133
0.00114642
-0.000307405
0.00115963
-0.000310441
0.00117286
-0.000313244
0.00118611
-0.000315814
0.00119936
-0.000318155
0.00121261
-0.00032027
0.00122587
-0.000322163
0.00123913
-0.000323839
0.00125238
-0.000325303
0.00126562
-0.000326562
0.00127885
-0.000327623
0.00129207
-0.000328491
0.00130527
-0.000329176
0.00131846
-0.000329684
0.00133162
-0.000330023
0.00134475
-0.000330203
0.00135786
-0.000330231
0.00137094
-0.000330116
0.00138399
-0.000329866
0.00139701
-0.000329491
0.00140999
-0.000328998
0.00142294
-0.000328396
0.00143585
-0.000327694
0.00144871
-0.0003269
0.00146154
-0.000326021
0.00147432
-0.000325065
0.00148706
-0.000324041
0.00149975
-0.000322954
0.00151239
-0.000321813
0.00152498
-0.000320624
0.00153752
-0.000319392
0.00155001
-0.000318125
0.00156244
-0.000316827
0.00157482
-0.000315504
0.00158713
-0.00031416
0.00159939
-0.000312801
0.00161159
-0.000311431
0.00162373
-0.000310053
0.0016358
-0.000308671
0.00164781
-0.000307287
0.00165975
-0.000305906
0.00167163
-0.000304529
0.00168343
-0.000303159
0.00169517
-0.000301798
0.00170684
-0.000300447
0.00171843
-0.000299108
0.00172996
-0.000297782
0.00174141
-0.00029647
0.00175278
-0.000295173
0.00176408
-0.000293892
0.0017753
-0.000292627
0.00178645
-0.000291378
0.00179752
-0.000290147
0.00180851
-0.000288932
0.00181942
-0.000287734
0.00183026
-0.000286553
0.00184101
-0.000285389
0.00185169
-0.000284242
0.00186229
-0.000283112
0.00187281
-0.000281999
0.00188325
-0.000280902
0.00189361
-0.000279823
0.00190389
-0.000278761
0.0019141
-0.000277716
0.00192423
-0.00027669
0.00193429
-0.000275681
0.00194427
-0.000274692
0.00195418
-0.000273722
0.00196401
-0.000272774
0.00197378
-0.000271847
0.00198347
-0.000270944
0.0019931
-0.000270067
0.00200266
-0.000269218
0.00201216
-0.000268398
0.0020216
-0.000267611
0.00203098
-0.000266861
0.00204031
-0.00026615
0.00204958
-0.000265483
0.0020588
-0.000264864
0.00206797
-0.0002643
0.00207709
-0.000263794
0.00208617
-0.000263356
0.00209521
-0.000262992
0.00210421
-0.000262706
0.00211317
-0.000262524
0.0021221
-0.000262407
0.00213099
-0.000262491
0.00213985
-0.000262507
0.00214867
-0.000263002
-0.000263246
0.000858962
0.000188857
0.000845273
0.00019096
0.000833137
0.000180663
0.000821821
0.000175234
0.000810922
0.00017046
0.000800509
0.000164624
0.000790599
0.000158491
0.000781177
0.000152332
0.000772253
0.00014612
0.000763841
0.000139894
0.000755954
0.000133707
0.0007486
0.000127589
0.000741784
0.00012156
0.000735507
0.00011563
0.000729769
0.000109806
0.000724566
0.000104089
0.000719891
9.84788e-05
0.000715738
9.29706e-05
0.000712097
8.75591e-05
0.000708959
8.22382e-05
0.000706312
7.70007e-05
0.000704147
7.18389e-05
0.000702452
6.67449e-05
0.000701216
6.17107e-05
0.000700426
5.67283e-05
0.000700072
5.17893e-05
0.000700143
4.68852e-05
0.000700627
4.20066e-05
0.000701514
3.71437e-05
0.000702795
3.22855e-05
0.000704462
2.74199e-05
0.000706508
2.2534e-05
0.00070893
1.76153e-05
0.000711732
1.26509e-05
0.00071492
7.63417e-06
0.000718485
2.60974e-06
0.000722283
-2.36972e-06
0.000726381
-7.31738e-06
0.000730805
-1.23537e-05
0.000735546
-1.74545e-05
0.000740596
-2.26294e-05
0.000745947
-2.7879e-05
0.00075159
-3.3206e-05
0.000757519
-3.86136e-05
0.000763729
-4.41054e-05
0.000770213
-4.96844e-05
0.000776966
-5.53538e-05
0.000783982
-6.11166e-05
0.000791256
-6.69751e-05
0.000798782
-7.29312e-05
0.000806553
-7.89858e-05
0.000814566
-8.51392e-05
0.000822813
-9.13907e-05
0.00083129
-9.77387e-05
0.00083999
-0.000104181
0.000848909
-0.000110713
0.000858039
-0.000117332
0.000867376
-0.000124031
0.000876914
-0.000130805
0.000886646
-0.000137645
0.000896568
-0.000144544
0.000906672
-0.000151494
0.000916953
-0.000158483
0.000927404
-0.000165502
0.00093802
-0.000172539
0.000948794
-0.000179582
0.000959719
-0.000186618
0.00097079
-0.000193634
0.000982001
-0.000200617
0.000993344
-0.000207552
0.00100481
-0.000214427
0.0010164
-0.000221225
0.00102811
-0.000227935
0.00103992
-0.000234542
0.00105183
-0.000241032
0.00106384
-0.000247392
0.00107594
-0.00025361
0.00108812
-0.000259672
0.00110038
-0.000265568
0.00111271
-0.000271286
0.0011251
-0.000276816
0.00113756
-0.000282148
0.00115006
-0.000287275
0.00116262
-0.000292189
0.00117522
-0.000296882
0.00118786
-0.000301349
0.00120054
-0.000305587
0.00121324
-0.00030959
0.00122597
-0.000313356
0.00123872
-0.000316883
0.00125149
-0.000320172
0.00126427
-0.000323221
0.00127706
-0.000326033
0.00128986
-0.000328609
0.00130265
-0.000330951
0.00131545
-0.000333065
0.00132824
-0.000334953
0.00134102
-0.000336621
0.00135379
-0.000338075
0.00136655
-0.000339321
0.00137929
-0.000340366
0.00139202
-0.000341217
0.00140472
-0.00034188
0.00141741
-0.000342366
0.00143006
-0.000342681
0.00144269
-0.000342833
0.00145529
-0.000342832
0.00146786
-0.000342686
0.0014804
-0.000342404
0.00149291
-0.000341994
0.00150537
-0.000341465
0.0015178
-0.000340826
0.00153019
-0.000340084
0.00154254
-0.000339248
0.00155485
-0.000338327
0.00156711
-0.000337327
0.00157932
-0.000336257
0.00159149
-0.000335124
0.00160362
-0.000333935
0.00161569
-0.000332695
0.00162771
-0.000331413
0.00163968
-0.000330093
0.00165159
-0.000328741
0.00166345
-0.000327363
0.00167525
-0.000325963
0.001687
-0.000324547
0.00169868
-0.000323117
0.00171031
-0.000321679
0.00172188
-0.000320236
0.00173338
-0.00031879
0.00174482
-0.000317345
0.00175619
-0.000315903
0.0017675
-0.000314468
0.00177874
-0.000313039
0.00178991
-0.000311621
0.00180102
-0.000310213
0.00181206
-0.000308817
0.00182302
-0.000307435
0.00183391
-0.000306067
0.00184474
-0.000304714
0.00185549
-0.000303376
0.00186616
-0.000302055
0.00187676
-0.000300749
0.00188729
-0.00029946
0.00189775
-0.000298188
0.00190813
-0.000296933
0.00191843
-0.000295694
0.00192866
-0.000294473
0.00193882
-0.000293268
0.0019489
-0.00029208
0.00195891
-0.00029091
0.00196884
-0.000289757
0.00197871
-0.000288622
0.00198849
-0.000287505
0.00199821
-0.000286406
0.00200786
-0.000285327
0.00201743
-0.000284268
0.00202694
-0.00028323
0.00203638
-0.000282214
0.00204576
-0.000281221
0.00205507
-0.000280254
0.00206431
-0.000279315
0.0020735
-0.000278404
0.00208263
-0.000277526
0.0020917
-0.000276682
0.00210071
-0.000275877
0.00210968
-0.000275114
0.00211859
-0.000274396
0.00212746
-0.00027373
0.00213628
-0.00027312
0.00214506
-0.000272572
0.00215379
-0.000272093
0.00216249
-0.000271691
0.00217115
-0.000271367
0.00217978
-0.000271154
0.00218837
-0.000270998
0.00219694
-0.000271054
0.00220546
-0.000271034
0.00221395
-0.000271486
-0.000271717
0.00101543
0.000207148
0.000997411
0.000208982
0.000981387
0.000196687
0.000966617
0.000190004
0.000952648
0.000184428
0.000939498
0.000177774
0.000927143
0.000170846
0.000915532
0.000163943
0.000904643
0.000157009
0.000894466
0.000150071
0.000884989
0.000143184
0.000876201
0.000136378
0.000868088
0.000129672
0.000860638
0.00012308
0.000853835
0.000116608
0.000847665
0.000110259
0.000842112
0.000104033
0.000837158
9.79243e-05
0.000832788
9.19294e-05
0.000828984
8.60417e-05
0.000825731
8.02539e-05
0.000823012
7.45582e-05
0.00082081
6.89464e-05
0.000819111
6.34103e-05
0.000817898
5.79412e-05
0.000817156
5.25306e-05
0.000816873
4.71691e-05
0.000817032
4.18472e-05
0.000817622
3.6554e-05
0.000818629
3.12777e-05
0.000820045
2.60046e-05
0.00082186
2.07189e-05
0.000824071
1.54041e-05
0.000826683
1.00387e-05
0.000829695
4.62292e-06
0.000833109
-8.05188e-07
0.000836701
-5.9617e-06
0.00084067
-1.12863e-05
0.000844969
-1.66527e-05
0.000849596
-2.20806e-05
0.000854537
-2.75707e-05
0.000859784
-3.31259e-05
0.000865329
-3.87509e-05
0.000871164
-4.44493e-05
0.000877284
-5.02247e-05
0.00088368
-5.60805e-05
0.000890346
-6.20201e-05
0.000897276
-6.80465e-05
0.000904463
-7.41621e-05
0.000911901
-8.03688e-05
0.000919582
-8.66676e-05
0.000927502
-9.30588e-05
0.000935653
-9.95417e-05
0.000944029
-0.000106115
0.000952623
-0.000112775
0.00096143
-0.00011952
0.000970441
-0.000126344
0.000979652
-0.000133242
0.000989056
-0.000140208
0.000998646
-0.000147235
0.00100842
-0.000154314
0.00101836
-0.000161436
0.00102847
-0.000168592
0.00103874
-0.000175771
0.00104916
-0.000182961
0.00105973
-0.00019015
0.00107044
-0.000197327
0.00108128
-0.000204476
0.00109225
-0.000211586
0.00110334
-0.000218642
0.00111454
-0.000225631
0.00112585
-0.000232537
0.00113727
-0.000239349
0.00114878
-0.00024605
0.00116037
-0.00025263
0.00117205
-0.000259073
0.00118381
-0.000265367
0.00119564
-0.000271501
0.00120754
-0.000277462
0.00121949
-0.00028324
0.0012315
-0.000288825
0.00124356
-0.000294207
0.00125566
-0.000299379
0.00126781
-0.000304331
0.00127998
-0.00030906
0.00129219
-0.000313557
0.00130442
-0.00031782
0.00131668
-0.000321845
0.00132895
-0.000325629
0.00134124
-0.00032917
0.00135354
-0.000332469
0.00136584
-0.000335525
0.00137815
-0.00033834
0.00139046
-0.000340916
0.00140276
-0.000343256
0.00141506
-0.000345364
0.00142735
-0.000347243
0.00143963
-0.000348901
0.0014519
-0.000350341
0.00146415
-0.000351571
0.00147638
-0.000352598
0.00148859
-0.000353428
0.00150078
-0.000354069
0.00151294
-0.00035453
0.00152508
-0.000354819
0.00153719
-0.000354944
0.00154927
-0.000354913
0.00156132
-0.000354736
0.00157334
-0.00035442
0.00158532
-0.000353976
0.00159726
-0.000353411
0.00160917
-0.000352734
0.00162104
-0.000351953
0.00163287
-0.000351077
0.00164466
-0.000350114
0.0016564
-0.000349072
0.0016681
-0.000347957
0.00167976
-0.000346778
0.00169136
-0.000345542
0.00170292
-0.000344254
0.00171443
-0.000342922
0.00172589
-0.000341552
0.0017373
-0.000340148
0.00174865
-0.000338717
0.00175995
-0.000337263
0.0017712
-0.000335791
0.00178238
-0.000334305
0.00179351
-0.00033281
0.00180459
-0.000331307
0.0018156
-0.000329802
0.00182655
-0.000328296
0.00183744
-0.000326793
0.00184827
-0.000325295
0.00185903
-0.000323803
0.00186973
-0.00032232
0.00188036
-0.000320847
0.00189093
-0.000319385
0.00190143
-0.000317936
0.00191187
-0.000316501
0.00192223
-0.00031508
0.00193253
-0.000313674
0.00194276
-0.000312283
0.00195292
-0.000310909
0.00196301
-0.00030955
0.00197303
-0.000308208
0.00198298
-0.000306882
0.00199286
-0.000305574
0.00200267
-0.000304282
0.00201241
-0.000303008
0.00202208
-0.00030175
0.00203168
-0.000300511
0.00204121
-0.000299289
0.00205067
-0.000298085
0.00206007
-0.000296901
0.0020694
-0.000295735
0.00207866
-0.00029459
0.00208786
-0.000293466
0.00209699
-0.000292364
0.00210606
-0.000291286
0.00211507
-0.000290232
0.00212402
-0.000289205
0.00213292
-0.000288208
0.00214175
-0.000287241
0.00215054
-0.000286308
0.00215927
-0.000285412
0.00216795
-0.000284556
0.00217658
-0.000283745
0.00218516
-0.000282982
0.0021937
-0.000282271
0.0022022
-0.000281619
0.00221066
-0.000281032
0.00221909
-0.000280514
0.00222747
-0.000280078
0.00223582
-0.000279718
0.00224415
-0.000279475
0.00225243
-0.000279284
0.00226069
-0.000279313
0.00226892
-0.000279259
0.0022771
-0.00027967
-0.000279885
0.00118249
0.000231401
0.00115937
0.000232102
0.00113873
0.000217324
0.00111983
0.000208899
0.00110222
0.000202044
0.00108583
0.000194158
0.0010706
0.000186079
0.00105642
0.000178121
0.00104324
0.000170195
0.001031
0.000162311
0.00101966
0.000154518
0.0010092
0.000146845
0.000999561
0.000139307
0.000990726
0.000131914
0.000982662
0.000124673
0.000975338
0.000117584
0.000968726
0.000110644
0.0009628
0.00010385
0.000957534
9.7195e-05
0.000952904
9.06716e-05
0.000948887
8.42714e-05
0.000945459
7.79857e-05
0.0009426
7.18055e-05
0.000940289
6.57213e-05
0.000938507
5.97238e-05
0.000937234
5.38033e-05
0.000936453
4.79499e-05
0.000936147
4.21531e-05
0.0009363
3.64012e-05
0.000936897
3.06812e-05
0.000937924
2.49775e-05
0.000939371
1.92716e-05
0.000941235
1.354e-05
0.000943531
7.74255e-06
0.000946299
1.85477e-06
0.000949239
-3.74518e-06
0.000952613
-9.33538e-06
0.000956315
-1.49879e-05
0.000960361
-2.06991e-05
0.000964742
-2.64615e-05
0.000969445
-3.22735e-05
0.00097446
-3.81415e-05
0.00097978
-4.40706e-05
0.000985396
-5.0065e-05
0.000991299
-5.61283e-05
0.000997483
-6.22643e-05
0.00100394
-6.84766e-05
0.00101066
-7.47682e-05
0.00101764
-8.11416e-05
0.00102487
-8.75989e-05
0.00103234
-9.4141e-05
0.00104005
-0.000100768
0.00104799
-0.00010748
0.00105615
-0.000114275
0.00106453
-0.000121149
0.00107311
-0.000128101
0.00108189
-0.000135126
0.00109087
-0.000142217
0.00110003
-0.000149369
0.00110937
-0.000156575
0.00111888
-0.000163826
0.00112855
-0.000171113
0.00113839
-0.000178427
0.00114837
-0.000185756
0.0011585
-0.00019309
0.00116877
-0.000200416
0.00117917
-0.000207723
0.00118969
-0.000214996
0.00120032
-0.000222222
0.00121107
-0.000229389
0.00122192
-0.000236481
0.00123286
-0.000243485
0.0012439
-0.000250387
0.00125503
-0.000257174
0.00126623
-0.000263832
0.00127751
-0.000270348
0.00128885
-0.00027671
0.00130025
-0.000282906
0.00131171
-0.000288924
0.00132323
-0.000294753
0.00133479
-0.000300384
0.00134639
-0.000305808
0.00135803
-0.000311016
0.0013697
-0.000316002
0.00138139
-0.000320758
0.00139312
-0.00032528
0.00140486
-0.000329563
0.00141662
-0.000333604
0.00142839
-0.000337401
0.00144017
-0.000340952
0.00145196
-0.000344256
0.00146375
-0.000347316
0.00147554
-0.000350131
0.00148733
-0.000352704
0.00149911
-0.000355039
0.00151088
-0.000357139
0.00152265
-0.000359008
0.0015344
-0.000360653
0.00154614
-0.000362079
0.00155786
-0.000363293
0.00156956
-0.000364301
0.00158125
-0.00036511
0.00159291
-0.00036573
0.00160454
-0.000366167
0.00161615
-0.00036643
0.00162774
-0.000366527
0.00163929
-0.000366468
0.00165082
-0.00036626
0.00166231
-0.000365913
0.00167377
-0.000365436
0.0016852
-0.000364836
0.00169659
-0.000364123
0.00170794
-0.000363306
0.00171925
-0.000362392
0.00173053
-0.000361389
0.00174176
-0.000360306
0.00175295
-0.000359149
0.0017641
-0.000357927
0.00177521
-0.000356646
0.00178627
-0.000355313
0.00179728
-0.000353934
0.00180824
-0.000352516
0.00181916
-0.000351063
0.00183002
-0.000349582
0.00184084
-0.000348077
0.0018516
-0.000346553
0.00186231
-0.000345014
0.00187296
-0.000343464
0.00188356
-0.000341906
0.0018941
-0.000340345
0.00190459
-0.000338782
0.00191501
-0.000337221
0.00192538
-0.000335663
0.00193569
-0.000334112
0.00194594
-0.000332568
0.00195613
-0.000331034
0.00196625
-0.00032951
0.00197631
-0.000327999
0.00198631
-0.0003265
0.00199625
-0.000325016
0.00200612
-0.000323545
0.00201593
-0.00032209
0.00202567
-0.000320651
0.00203535
-0.000319227
0.00204496
-0.00031782
0.00205451
-0.000316429
0.00206399
-0.000315055
0.0020734
-0.000313698
0.00208275
-0.000312358
0.00209204
-0.000311036
0.00210126
-0.000309732
0.00211042
-0.000308447
0.00211951
-0.00030718
0.00212855
-0.000305932
0.00213752
-0.000304705
0.00214642
-0.000303499
0.00215527
-0.000302315
0.00216406
-0.000301154
0.0021728
-0.000300018
0.00218147
-0.000298909
0.00219009
-0.000297827
0.00219866
-0.000296776
0.00220718
-0.000295758
0.00221565
-0.000294775
0.00222407
-0.000293831
0.00223244
-0.000292929
0.00224077
-0.000292074
0.00224905
-0.000291268
0.0022573
-0.000290518
0.00226551
-0.000289827
0.00227368
-0.000289204
0.00228182
-0.000288651
0.00228992
-0.000288184
0.00229799
-0.00028779
0.00230604
-0.00028752
0.00231405
-0.000287294
0.00232203
-0.000287297
0.00232999
-0.000287212
0.0023379
-0.000287583
-0.000287781
0.00135799
0.000262374
0.00132922
0.000260872
0.00130344
0.000243101
0.00127993
0.000232405
0.00125826
0.000223718
0.0012383
0.000214119
0.00121989
0.000204484
0.00120289
0.000195125
0.00118718
0.000185909
0.00117266
0.000176825
0.00115927
0.00016791
0.00114693
0.00015918
0.0011356
0.000150644
0.0011252
0.000142308
0.00111571
0.00013417
0.00110706
0.000126229
0.00109923
0.000118478
0.00109217
0.00011091
0.00108585
0.000103516
0.00108023
9.62858e-05
0.00107529
8.92096e-05
0.001071
8.22766e-05
0.00106733
7.54758e-05
0.00106426
6.87963e-05
0.00106175
6.22274e-05
0.0010598
5.57579e-05
0.00105837
4.93767e-05
0.00105745
4.30723e-05
0.00105702
3.68319e-05
0.00105706
3.06413e-05
0.00105756
2.44831e-05
0.00105849
1.83353e-05
0.00105986
1.21691e-05
0.00106167
5.94223e-06
0.00106398
-4.56251e-07
0.0010665
-6.27254e-06
0.00106943
-1.22617e-05
0.00107273
-1.82834e-05
0.00107638
-2.43526e-05
0.00108038
-3.04585e-05
0.0010847
-3.6602e-05
0.00108935
-4.27909e-05
0.00109432
-4.90316e-05
0.00109958
-5.53284e-05
0.00110514
-6.16853e-05
0.00111098
-6.81063e-05
0.0011171
-7.4595e-05
0.00112348
-8.11548e-05
0.00113013
-8.77882e-05
0.00113703
-9.44972e-05
0.00114417
-0.000101283
0.00115155
-0.000108146
0.00115915
-0.000115086
0.00116698
-0.0001221
0.00117502
-0.000129187
0.00118326
-0.000136343
0.0011917
-0.000143564
0.00120032
-0.000150844
0.00120913
-0.000158178
0.00121811
-0.000165557
0.00122726
-0.000172973
0.00123657
-0.000180419
0.00124602
-0.000187883
0.00125562
-0.000195356
0.00126536
-0.000202827
0.00127523
-0.000210282
0.00128522
-0.000217711
0.00129532
-0.0002251
0.00130553
-0.000232435
0.00131585
-0.000239703
0.00132626
-0.000246891
0.00133676
-0.000253984
0.00134734
-0.00026097
0.001358
-0.000267834
0.00136873
-0.000274564
0.00137953
-0.000281146
0.00139039
-0.000287568
0.0014013
-0.000293819
0.00141226
-0.000299887
0.00142327
-0.000305762
0.00143432
-0.000311434
0.00144541
-0.000316894
0.00145653
-0.000322134
0.00146767
-0.000327148
0.00147884
-0.000331928
0.00149003
-0.000336471
0.00150124
-0.000340771
0.00151246
-0.000344826
0.0015237
-0.000348633
0.00153494
-0.000352192
0.00154618
-0.000355501
0.00155743
-0.000358563
0.00156867
-0.000361377
0.00157992
-0.000363948
0.00159116
-0.000366277
0.00160239
-0.00036837
0.00161361
-0.00037023
0.00162482
-0.000371864
0.00163602
-0.000373276
0.0016472
-0.000374475
0.00165836
-0.000375466
0.00166951
-0.000376257
0.00168064
-0.000376856
0.00169174
-0.000377272
0.00170282
-0.000377511
0.00171388
-0.000377584
0.00172491
-0.000377499
0.00173592
-0.000377264
0.00174689
-0.000376888
0.00175784
-0.00037638
0.00176875
-0.00037575
0.00177963
-0.000375004
0.00179048
-0.000374153
0.00180129
-0.000373203
0.00181206
-0.000372164
0.0018228
-0.000371044
0.0018335
-0.000369849
0.00184416
-0.000368587
0.00185478
-0.000367265
0.00186536
-0.00036589
0.00187589
-0.000364468
0.00188638
-0.000363005
0.00189682
-0.000361507
0.00190722
-0.00035998
0.00191757
-0.000358427
0.00192787
-0.000356855
0.00193812
-0.000355266
0.00194833
-0.000353666
0.00195848
-0.000352057
0.00196858
-0.000350443
0.00197862
-0.000348827
0.00198861
-0.000347212
0.00199855
-0.0003456
0.00200843
-0.000343993
0.00201826
-0.000342393
0.00202802
-0.000340802
0.00203773
-0.000339221
0.00204739
-0.000337651
0.00205698
-0.000336094
0.00206652
-0.00033455
0.00207599
-0.000333021
0.00208541
-0.000331506
0.00209476
-0.000330006
0.00210406
-0.000328522
0.00211329
-0.000327054
0.00212247
-0.000325603
0.00213158
-0.000324169
0.00214063
-0.000322751
0.00214963
-0.000321352
0.00215856
-0.00031997
0.00216743
-0.000318607
0.00217625
-0.000317262
0.00218501
-0.000315937
0.00219371
-0.000314632
0.00220235
-0.000313348
0.00221094
-0.000312086
0.00221947
-0.000310847
0.00222794
-0.000309632
0.00223637
-0.000308444
0.00224474
-0.000307282
0.00225307
-0.000306151
0.00226134
-0.000305051
0.00226957
-0.000303986
0.00227775
-0.000302958
0.00228589
-0.000301971
0.00229399
-0.000301027
0.00230205
-0.000300131
0.00231007
-0.000299287
0.00231805
-0.000298501
0.002326
-0.000297776
0.00233392
-0.00029712
0.0023418
-0.000296535
0.00234965
-0.000296039
0.00235748
-0.000295614
0.00236528
-0.000295319
0.00237304
-0.000295061
0.00238079
-0.000295041
0.0023885
-0.000294925
0.00239618
-0.00029526
-0.000295438
0.00153868
0.000300445
0.00150406
0.000295496
0.00147295
0.000274207
0.00144467
0.000260685
0.00141882
0.000249563
0.0013952
0.000237743
0.00137354
0.00022614
0.00135364
0.000215033
0.00133531
0.000204236
0.00131843
0.000193708
0.00130288
0.000183461
0.00128856
0.000173495
0.0012754
0.000163806
0.00126332
0.000154389
0.00125225
0.000145235
0.00124215
0.000136335
0.00123295
0.000127678
0.00122461
0.000119251
0.00121708
0.000111041
0.00121033
0.000103036
0.00120432
9.52218e-05
0.00119901
8.7585e-05
0.00119438
8.01123e-05
0.00119038
7.27907e-05
0.001187
6.56072e-05
0.00118421
5.85492e-05
0.00118198
5.16039e-05
0.0011803
4.47584e-05
0.00117913
3.79988e-05
0.00117846
3.13096e-05
0.00117827
2.46718e-05
0.00117855
1.80602e-05
0.00117928
1.14336e-05
0.00118051
4.71262e-06
0.00118206
-2.00463e-06
0.00118407
-8.28078e-06
0.00118644
-1.46329e-05
0.00118919
-2.10322e-05
0.00119231
-2.74697e-05
0.00119578
-3.39307e-05
0.00119959
-4.04163e-05
0.00120374
-4.69358e-05
0.0012082
-5.34967e-05
0.00121298
-6.0104e-05
0.00121806
-6.67619e-05
0.00122342
-7.34742e-05
0.00122907
-8.02449e-05
0.001235
-8.70775e-05
0.00124118
-9.39747e-05
0.00124762
-0.000100939
0.00125431
-0.000107971
0.00126124
-0.000115071
0.00126839
-0.000122239
0.00127576
-0.000129473
0.00128335
-0.000136772
0.00129113
-0.000144131
0.00129912
-0.000151546
0.00130728
-0.000159013
0.00131563
-0.000166524
0.00132415
-0.000174073
0.00133283
-0.000181652
0.00134166
-0.000189252
0.00135064
-0.000196862
0.00135976
-0.000204474
0.001369
-0.000212076
0.00137838
-0.000219656
0.00138787
-0.000227201
0.00139747
-0.0002347
0.00140717
-0.000242138
0.00141697
-0.000249503
0.00142686
-0.000256781
0.00143684
-0.000263959
0.00144689
-0.000271023
0.00145701
-0.000277959
0.00146721
-0.000284756
0.00147746
-0.0002914
0.00148777
-0.000297879
0.00149813
-0.000304181
0.00150854
-0.000310296
0.00151899
-0.000316213
0.00152948
-0.000321923
0.00154
-0.000327417
0.00155056
-0.000332688
0.00156114
-0.000337728
0.00157174
-0.000342532
0.00158236
-0.000347094
0.001593
-0.000351411
0.00160366
-0.00035548
0.00161432
-0.000359298
0.001625
-0.000362865
0.00163568
-0.000366181
0.00164636
-0.000369246
0.00165704
-0.000372062
0.00166773
-0.000374632
0.00167841
-0.000376959
0.00168909
-0.000379046
0.00169976
-0.0003809
0.00171042
-0.000382525
0.00172107
-0.000383928
0.00173171
-0.000385115
0.00174234
-0.000386093
0.00175295
-0.000386869
0.00176354
-0.000387452
0.00177412
-0.00038785
0.00178468
-0.00038807
0.00179522
-0.000388123
0.00180574
-0.000388015
0.00181623
-0.000387757
0.0018267
-0.000387357
0.00183714
-0.000386824
0.00184756
-0.000386166
0.00185795
-0.000385392
0.0018683
-0.000384511
0.00187863
-0.000383531
0.00188893
-0.00038246
0.00189919
-0.000381306
0.00190942
-0.000380077
0.00191961
-0.00037878
0.00192977
-0.000377421
0.00193989
-0.000376008
0.00194997
-0.000374548
0.00196001
-0.000373045
0.00197001
-0.000371506
0.00197996
-0.000369937
0.00198988
-0.000368341
0.00199975
-0.000366725
0.00200957
-0.000365091
0.00201935
-0.000363445
0.00202908
-0.000361789
0.00203877
-0.000360128
0.0020484
-0.000358463
0.00205799
-0.000356799
0.00206753
-0.000355136
0.00207701
-0.000353478
0.00208645
-0.000351827
0.00209583
-0.000350183
0.00210516
-0.000348549
0.00211443
-0.000346926
0.00212365
-0.000345315
0.00213282
-0.000343717
0.00214193
-0.000342133
0.00215099
-0.000340563
0.00215999
-0.000339008
0.00216894
-0.000337468
0.00217783
-0.000335945
0.00218666
-0.000334439
0.00219544
-0.000332949
0.00220417
-0.000331476
0.00221284
-0.000330022
0.00222145
-0.000328585
0.00223001
-0.000327167
0.00223852
-0.000325769
0.00224697
-0.00032439
0.00225537
-0.000323033
0.00226372
-0.000321697
0.00227202
-0.000320384
0.00228027
-0.000319095
0.00228847
-0.000317832
0.00229662
-0.000316595
0.00230473
-0.000315387
0.00231279
-0.000314211
0.0023208
-0.000313067
0.00232877
-0.00031196
0.00233671
-0.000310891
0.0023446
-0.000309864
0.00235246
-0.000308883
0.00236028
-0.000307951
0.00236806
-0.000307073
0.00237581
-0.000306254
0.00238353
-0.000305497
0.00239123
-0.000304812
0.00239889
-0.000304198
0.00240653
-0.000303676
0.00241414
-0.000303222
0.00242172
-0.000302905
0.00242928
-0.000302617
0.00243681
-0.000302576
0.00244432
-0.000302429
0.00245179
-0.000302734
-0.000302887
0.00172017
0.000345464
0.00168003
0.00033563
0.00164394
0.000310294
0.00161123
0.000293403
0.00158152
0.000279265
0.0015545
0.000264769
0.00152979
0.000250846
0.00150713
0.000237698
0.00148628
0.000225085
0.00146707
0.000212916
0.00144936
0.000201169
0.00143304
0.00018982
0.00141799
0.000178849
0.00140414
0.000168237
0.00139142
0.000157964
0.00137974
0.000148014
0.00136905
0.000138366
0.00135929
0.000129005
0.00135042
0.000119911
0.00134239
0.000111068
0.00133516
0.000102457
0.00132868
9.40636e-05
0.00132292
8.58699e-05
0.00131785
7.78607e-05
0.00131344
7.00207e-05
0.00130965
6.2335e-05
0.00130647
5.47891e-05
0.00130386
4.73685e-05
0.0013018
4.00579e-05
0.00130027
3.28407e-05
0.00129924
2.56967e-05
0.0012987
1.8599e-05
0.00129864
1.15002e-05
0.00129905
4.29784e-06
0.00129989
-2.84573e-06
0.00130115
-9.53758e-06
0.00130281
-1.62955e-05
0.00130487
-2.30863e-05
0.0013073
-2.99056e-05
0.00131011
-3.67355e-05
0.00131327
-4.35757e-05
0.00131677
-5.04372e-05
0.0013206
-5.73292e-05
0.00132475
-6.42572e-05
0.00132922
-7.12253e-05
0.00133398
-7.82375e-05
0.00133903
-8.52978e-05
0.00134436
-9.241e-05
0.00134997
-9.95769e-05
0.00135583
-0.000106801
0.00136194
-0.000114083
0.00136829
-0.000121424
0.00137488
-0.000128823
0.00138168
-0.00013628
0.0013887
-0.000143791
0.00139593
-0.000151354
0.00140334
-0.000158964
0.00141095
-0.000166617
0.00141873
-0.000174306
0.00142668
-0.000182024
0.00143479
-0.000189763
0.00144306
-0.000197515
0.00145146
-0.000205271
0.00146001
-0.000213019
0.00146868
-0.00022075
0.00147748
-0.000228451
0.00148639
-0.000236111
0.0014954
-0.000243717
0.00150452
-0.000251256
0.00151373
-0.000258715
0.00152303
-0.000266081
0.00153242
-0.000273341
0.00154187
-0.000280481
0.0015514
-0.000287488
0.001561
-0.00029435
0.00157065
-0.000301054
0.00158036
-0.000307588
0.00159012
-0.000313942
0.00159993
-0.000320103
0.00160978
-0.000326063
0.00161967
-0.000331812
0.00162959
-0.000337341
0.00163954
-0.000342643
0.00164953
-0.000347711
0.00165954
-0.00035254
0.00166957
-0.000357124
0.00167962
-0.000361461
0.00168968
-0.000365546
0.00169976
-0.000369379
0.00170986
-0.000372958
0.00171996
-0.000376283
0.00173007
-0.000379356
0.00174018
-0.000382178
0.0017503
-0.000384751
0.00176042
-0.00038708
0.00177055
-0.000389168
0.00178067
-0.00039102
0.00179078
-0.000392642
0.00180089
-0.00039404
0.001811
-0.00039522
0.0018211
-0.00039619
0.00183119
-0.000396957
0.00184126
-0.000397529
0.00185133
-0.000397915
0.00186138
-0.000398122
0.00187142
-0.000398159
0.00188144
-0.000398035
0.00189144
-0.00039776
0.00190142
-0.00039734
0.00191138
-0.000396787
0.00192133
-0.000396107
0.00193124
-0.00039531
0.00194114
-0.000394405
0.00195101
-0.0003934
0.00196085
-0.000392302
0.00197066
-0.00039112
0.00198045
-0.000389862
0.0019902
-0.000388534
0.00199993
-0.000387144
0.00200962
-0.000385699
0.00201927
-0.000384204
0.00202889
-0.000382667
0.00203848
-0.000381092
0.00204803
-0.000379485
0.00205754
-0.000377852
0.00206701
-0.000376196
0.00207644
-0.000374522
0.00208583
-0.000372835
0.00209518
-0.000371137
0.00210448
-0.000369432
0.00211374
-0.000367724
0.00212296
-0.000366015
0.00213213
-0.000364307
0.00214125
-0.000362603
0.00215033
-0.000360904
0.00215936
-0.000359213
0.00216834
-0.000357531
0.00217728
-0.00035586
0.00218616
-0.000354199
0.00219499
-0.000352552
0.00220378
-0.000350918
0.00221251
-0.000349297
0.0022212
-0.000347692
0.00222983
-0.000346102
0.00223842
-0.000344529
0.00224695
-0.000342971
0.00225543
-0.000341431
0.00226386
-0.000339908
0.00227225
-0.000338404
0.00228058
-0.000336917
0.00228886
-0.00033545
0.0022971
-0.000334003
0.00230528
-0.000332577
0.00231342
-0.000331171
0.00232151
-0.000329789
0.00232956
-0.00032843
0.00233756
-0.000327095
0.00234551
-0.000325788
0.00235343
-0.000324508
0.0023613
-0.000323259
0.00236913
-0.000322041
0.00237692
-0.000320859
0.00238467
-0.000319713
0.00239239
-0.000318608
0.00240007
-0.000317546
0.00240772
-0.000316531
0.00241534
-0.000315567
0.00242292
-0.000314658
0.00243048
-0.00031381
0.00243801
-0.000313025
0.00244551
-0.000312314
0.00245298
-0.000311674
0.00246044
-0.000311129
0.00246786
-0.000310649
0.00247527
-0.000310312
0.00248265
-0.000309995
0.00249001
-0.000309938
0.00249734
-0.000309758
0.00250464
-0.000310039
-0.000310161
0.00189715
0.000396529
0.00185266
0.000380118
0.00181272
0.000350232
0.00177656
0.000329562
0.00174383
0.000311991
0.00171405
0.000294553
0.00168678
0.000278114
0.00166171
0.000262768
0.00163859
0.00024821
0.00161721
0.000234291
0.00159744
0.000220944
0.00157914
0.00020812
0.00156221
0.00019578
0.00154655
0.000183892
0.00153209
0.000172426
0.00151875
0.000161354
0.00150647
0.00015065
0.00149518
0.000140292
0.00148483
0.000130255
0.00147538
0.000120519
0.00146678
0.000111061
0.00145898
0.000101862
0.00145195
9.29013e-05
0.00144565
8.41614e-05
0.00144005
7.5624e-05
0.00143511
6.72721e-05
0.00143081
5.9089e-05
0.00142712
5.10585e-05
0.00142401
4.3164e-05
0.00142147
3.53878e-05
0.00141945
2.7709e-05
0.00141795
2.00996e-05
0.00141694
1.25115e-05
0.00141641
4.83191e-06
0.00141635
-2.79106e-06
0.00141674
-9.92689e-06
0.00141755
-1.71047e-05
0.00141877
-2.43006e-05
0.00142038
-3.15184e-05
0.00142238
-3.87339e-05
0.00142475
-4.59438e-05
0.00142747
-5.31614e-05
0.00143054
-6.03978e-05
0.00143394
-6.76592e-05
0.00143766
-7.49494e-05
0.0014417
-8.22724e-05
0.00144603
-8.96324e-05
0.00145066
-9.70331e-05
0.00145556
-0.000104478
0.00146073
-0.000111969
0.00146615
-0.000119508
0.00147182
-0.000127095
0.00147773
-0.000134731
0.00148386
-0.000142414
0.00149021
-0.000150142
0.00149677
-0.000157912
0.00150353
-0.00016572
0.00151047
-0.000173561
0.0015176
-0.000181429
0.00152489
-0.000189318
0.00153235
-0.000197219
0.00153996
-0.000205125
0.00154771
-0.000213025
0.0015556
-0.000220911
0.00156362
-0.000228771
0.00157177
-0.000236595
0.00158003
-0.000244369
0.00158839
-0.000252083
0.00159686
-0.000259723
0.00160542
-0.000267278
0.00161407
-0.000274732
0.00162281
-0.000282075
0.00163162
-0.000289292
0.0016405
-0.000296371
0.00164945
-0.0003033
0.00165847
-0.000310067
0.00166754
-0.000316659
0.00167666
-0.000323066
0.00168583
-0.000329277
0.00169505
-0.000335282
0.00170431
-0.000341073
0.00171361
-0.000346641
0.00172295
-0.000351978
0.00173232
-0.000357079
0.00174172
-0.000361938
0.00175114
-0.000366549
0.00176059
-0.00037091
0.00177006
-0.000375018
0.00177955
-0.000378871
0.00178906
-0.000382468
0.00179859
-0.000385809
0.00180813
-0.000388895
0.00181768
-0.000391729
0.00182724
-0.000394313
0.00183681
-0.00039665
0.00184639
-0.000398745
0.00185597
-0.000400602
0.00186555
-0.000402227
0.00187514
-0.000403627
0.00188473
-0.000404808
0.00189432
-0.000405777
0.0019039
-0.000406541
0.00191348
-0.000407109
0.00192305
-0.000407489
0.00193262
-0.000407689
0.00194218
-0.000407718
0.00195173
-0.000407585
0.00196127
-0.000407298
0.00197079
-0.000406866
0.00198031
-0.000406298
0.0019898
-0.000405603
0.00199928
-0.00040479
0.00200874
-0.000403866
0.00201818
-0.000402841
0.0020276
-0.000401723
0.002037
-0.000400519
0.00204638
-0.000399237
0.00205573
-0.000397885
0.00206505
-0.000396469
0.00207435
-0.000394996
0.00208362
-0.000393473
0.00209286
-0.000391906
0.00210207
-0.0003903
0.00211124
-0.000388661
0.00212038
-0.000386995
0.00212949
-0.000385305
0.00213857
-0.000383596
0.0021476
-0.000381872
0.00215661
-0.000380137
0.00216557
-0.000378395
0.00217449
-0.000376647
0.00218337
-0.000374898
0.00219222
-0.00037315
0.00220102
-0.000371404
0.00220978
-0.000369664
0.0022185
-0.00036793
0.00222717
-0.000366205
0.0022358
-0.00036449
0.00224439
-0.000362785
0.00225293
-0.000361093
0.00226142
-0.000359414
0.00226988
-0.000357749
0.00227828
-0.000356098
0.00228664
-0.000354463
0.00229496
-0.000352843
0.00230323
-0.00035124
0.00231145
-0.000349655
0.00231963
-0.000348086
0.00232776
-0.000346536
0.00233585
-0.000345005
0.00234389
-0.000343494
0.00235189
-0.000342003
0.00235985
-0.000340533
0.00236776
-0.000339085
0.00237563
-0.00033766
0.00238346
-0.000336259
0.00239125
-0.000334885
0.002399
-0.000333538
0.00240671
-0.00033222
0.00241438
-0.000330933
0.00242202
-0.000329679
0.00242963
-0.000328461
0.00243719
-0.000327282
0.00244473
-0.000326144
0.00245224
-0.000325051
0.00245971
-0.000324006
0.00246716
-0.000323014
0.00247458
-0.000322078
0.00248197
-0.000321204
0.00248934
-0.000320395
0.00249669
-0.000319661
0.00250401
-0.000318997
0.00251132
-0.000318432
0.00251859
-0.000317928
0.00252586
-0.000317575
0.00253309
-0.000317229
0.00254031
-0.00031716
0.0025475
-0.000316945
0.00255467
-0.000317213
-0.000317292
0.00206407
0.000451401
0.0020177
0.000426492
0.00197606
0.000391871
0.00193817
0.000367452
0.00190369
0.000346472
0.00187206
0.000326187
0.00184287
0.000307296
0.00181586
0.000289783
0.00179077
0.000273295
0.00176744
0.000257623
0.00174573
0.000242659
0.00172551
0.000228331
0.00170671
0.000214586
0.00168922
0.00020138
0.00167297
0.000188675
0.00165789
0.000176435
0.00164391
0.000164628
0.00163098
0.000153225
0.00161903
0.000142199
0.00160803
0.000131524
0.00159792
0.000121174
0.00158865
0.000111125
0.0015802
0.000101356
0.00157252
9.18439e-05
0.00156557
8.25694e-05
0.00155933
7.35127e-05
0.00155376
6.46554e-05
0.00154884
5.59793e-05
0.00154454
4.74665e-05
0.00154083
3.90983e-05
0.00153769
3.08534e-05
0.00153508
2.27043e-05
0.00153298
1.46097e-05
0.00153137
6.44724e-06
0.00153032
-1.74084e-06
0.00152969
-9.29845e-06
0.0015295
-1.69192e-05
0.00152974
-2.45392e-05
0.0015304
-3.21756e-05
0.00153146
-3.97964e-05
0.00153291
-4.73948e-05
0.00153474
-5.49857e-05
0.00153692
-6.25829e-05
0.00153946
-7.01931e-05
0.00154233
-7.782e-05
0.00154552
-8.54673e-05
0.00154903
-9.31393e-05
0.00155283
-0.00010084
0.00155693
-0.000108573
0.0015613
-0.000116341
0.00156594
-0.000124146
0.00157083
-0.000131988
0.00157597
-0.000139867
0.00158134
-0.000147783
0.00158693
-0.000155734
0.00159274
-0.000163717
0.00159874
-0.000171728
0.00160495
-0.000179763
0.00161133
-0.000187815
0.00161789
-0.000195878
0.00162462
-0.000203946
0.0016315
-0.000212009
0.00163854
-0.000220058
0.00164571
-0.000228085
0.00165302
-0.000236078
0.00166045
-0.000244027
0.001668
-0.000251921
0.00167567
-0.000259746
0.00168343
-0.000267491
0.0016913
-0.000275144
0.00169926
-0.000282692
0.00170731
-0.000290122
0.00171544
-0.000297421
0.00172364
-0.000304577
0.00173192
-0.000311578
0.00174026
-0.000318412
0.00174867
-0.000325067
0.00175714
-0.000331533
0.00176566
-0.000337799
0.00177423
-0.000343857
0.00178286
-0.000349696
0.00179153
-0.000355309
0.00180024
-0.000360689
0.00180899
-0.00036583
0.00181777
-0.000370725
0.0018266
-0.000375371
0.00183545
-0.000379765
0.00184433
-0.000383902
0.00185325
-0.000387783
0.00186219
-0.000391406
0.00187115
-0.000394771
0.00188013
-0.000397879
0.00188914
-0.000400733
0.00189816
-0.000403335
0.0019072
-0.000405689
0.00191625
-0.000407799
0.00192532
-0.00040967
0.0019344
-0.000411307
0.00194349
-0.000412717
0.00195259
-0.000413906
0.00196169
-0.000414882
0.0019708
-0.000415652
0.00197992
-0.000416224
0.00198903
-0.000416606
0.00199815
-0.000416806
0.00200727
-0.000416834
0.00201638
-0.000416698
0.00202549
-0.000416407
0.00203459
-0.00041597
0.00204369
-0.000415395
0.00205278
-0.000414691
0.00206186
-0.000413867
0.00207092
-0.000412932
0.00207998
-0.000411894
0.00208901
-0.000410761
0.00209804
-0.000409541
0.00210704
-0.000408242
0.00211603
-0.000406871
0.00212499
-0.000405434
0.00213394
-0.00040394
0.00214286
-0.000402394
0.00215176
-0.000400803
0.00216063
-0.000399172
0.00216947
-0.000397507
0.00217829
-0.000395812
0.00218708
-0.000394093
0.00219584
-0.000392354
0.00220456
-0.000390599
0.00221326
-0.000388832
0.00222192
-0.000387057
0.00223055
-0.000385275
0.00223914
-0.000383491
0.0022477
-0.000381707
0.00225622
-0.000379925
0.0022647
-0.000378148
0.00227315
-0.000376376
0.00228156
-0.000374613
0.00228993
-0.000372858
0.00229826
-0.000371114
0.00230654
-0.000369382
0.00231479
-0.000367663
0.002323
-0.000365957
0.00233117
-0.000364266
0.0023393
-0.00036259
0.00234738
-0.000360929
0.00235543
-0.000359286
0.00236343
-0.000357659
0.0023714
-0.00035605
0.00237932
-0.00035446
0.0023872
-0.000352888
0.00239505
-0.000351337
0.00240285
-0.000349806
0.00241061
-0.000348297
0.00241834
-0.000346811
0.00242603
-0.000345349
0.00243368
-0.000343912
0.0024413
-0.000342501
0.00244888
-0.000341119
0.00245643
-0.000339767
0.00246394
-0.000338447
0.00247142
-0.000337161
0.00247887
-0.000335912
0.0024863
-0.000334703
0.00249369
-0.000333537
0.00250105
-0.000332416
0.00250839
-0.000331345
0.00251571
-0.000330328
0.002523
-0.000329368
0.00253026
-0.000328472
0.00253751
-0.000327641
0.00254474
-0.000326887
0.00255194
-0.000326202
0.00255913
-0.000325619
0.00256629
-0.000325093
0.00257345
-0.000324726
0.00258057
-0.000324353
0.00258769
-0.000324276
0.00259476
-0.000324022
0.00260184
-0.000324293
-0.00032431
0.00221735
0.000504196
0.00217413
0.00046971
0.00213381
0.000432192
0.00209626
0.000405003
0.00206121
0.000381516
0.00202843
0.000358965
0.00199779
0.000337942
0.00196911
0.000318463
0.00194223
0.000300174
0.00191703
0.000282827
0.0018934
0.000266287
0.00187126
0.000250471
0.00185052
0.00023532
0.00183112
0.000220783
0.00181298
0.000206816
0.00179604
0.000193378
0.00178023
0.000180434
0.00176551
0.00016795
0.00175181
0.000155895
0.0017391
0.000144239
0.00172732
0.000132954
0.00171643
0.000122014
0.00170639
0.000111393
0.00169717
0.000101067
0.00168872
9.10141e-05
0.00168102
8.12121e-05
0.00167404
7.16406e-05
0.00166774
6.228e-05
0.00166209
5.3111e-05
0.00165708
4.41138e-05
0.00165266
3.52666e-05
0.00164883
2.65411e-05
0.00164553
1.79051e-05
0.0016427
9.28253e-06
0.00164048
4.71764e-07
0.00163874
-7.55623e-06
0.00163744
-1.56178e-05
0.00163658
-2.3677e-05
0.00163616
-3.17547e-05
0.00163616
-3.98054e-05
0.00163659
-4.78155e-05
0.0016374
-5.58014e-05
0.0016386
-6.37793e-05
0.00164016
-7.17571e-05
0.00164208
-7.97384e-05
0.00164434
-8.77265e-05
0.00164693
-9.57257e-05
0.00164983
-0.000103741
0.00165303
-0.000111775
0.00165652
-0.000119832
0.00166029
-0.000127914
0.00166432
-0.000136021
0.00166861
-0.000144154
0.00167314
-0.000152313
0.0016779
-0.000160496
0.00168288
-0.000168701
0.00168808
-0.000176923
0.00169347
-0.000185158
0.00169906
-0.000193402
0.00170483
-0.000201648
0.00171077
-0.000209888
0.00171688
-0.000218116
0.00172314
-0.000226321
0.00172955
-0.000234496
0.0017361
-0.000242629
0.00174279
-0.00025071
0.0017496
-0.000258729
0.00175652
-0.000266673
0.00176356
-0.00027453
0.00177071
-0.000282289
0.00177795
-0.000289937
0.00178529
-0.000297461
0.00179272
-0.000304849
0.00180023
-0.00031209
0.00180782
-0.000319171
0.00181549
-0.00032608
0.00182323
-0.000332807
0.00183104
-0.000339341
0.00183891
-0.000345672
0.00184685
-0.00035179
0.00185484
-0.000357687
0.00186288
-0.000363354
0.00187098
-0.000368786
0.00187913
-0.000373976
0.00188732
-0.000378918
0.00189556
-0.000383609
0.00190384
-0.000388044
0.00191216
-0.000392221
0.00192051
-0.00039614
0.0019289
-0.000399798
0.00193733
-0.000403197
0.00194579
-0.000406337
0.00195428
-0.000409221
0.00196279
-0.000411851
0.00197133
-0.000414231
0.0019799
-0.000416366
0.00198849
-0.000418259
0.0019971
-0.000419917
0.00200573
-0.000421346
0.00201438
-0.000422553
0.00202304
-0.000423544
0.00203171
-0.000424328
0.0020404
-0.000424912
0.0020491
-0.000425304
0.00205781
-0.000425514
0.00206652
-0.000425549
0.00207524
-0.000425418
0.00208397
-0.00042513
0.00209269
-0.000424694
0.00210142
-0.00042412
0.00211014
-0.000423414
0.00211886
-0.000422587
0.00212757
-0.000421647
0.00213628
-0.000420603
0.00214498
-0.000419462
0.00215367
-0.000418232
0.00216235
-0.000416921
0.00217102
-0.000415537
0.00217967
-0.000414086
0.00218831
-0.000412576
0.00219692
-0.000411013
0.00220552
-0.000409403
0.0022141
-0.000407752
0.00222266
-0.000406065
0.0022312
-0.000404348
0.00223971
-0.000402605
0.0022482
-0.000400841
0.00225666
-0.00039906
0.00226509
-0.000397266
0.0022735
-0.000395462
0.00228188
-0.000393652
0.00229022
-0.000391838
0.00229854
-0.000390023
0.00230682
-0.000388209
0.00231507
-0.000386399
0.00232329
-0.000384594
0.00233147
-0.000382797
0.00233962
-0.000381008
0.00234774
-0.000379229
0.00235582
-0.000377462
0.00236386
-0.000375707
0.00237187
-0.000373965
0.00237984
-0.000372238
0.00238778
-0.000370525
0.00239568
-0.000368829
0.00240354
-0.000367148
0.00241137
-0.000365485
0.00241916
-0.00036384
0.00242691
-0.000362214
0.00243463
-0.000360607
0.00244231
-0.00035902
0.00244996
-0.000357455
0.00245757
-0.000355911
0.00246515
-0.000354391
0.0024727
-0.000352895
0.00248021
-0.000351425
0.0024877
-0.000349983
0.00249515
-0.00034857
0.00250257
-0.000347187
0.00250996
-0.000345838
0.00251732
-0.000344524
0.00252466
-0.000343249
0.00253197
-0.000342013
0.00253926
-0.000340822
0.00254652
-0.000339678
0.00255376
-0.000338584
0.00256097
-0.000337545
0.00256817
-0.000336565
0.00257535
-0.000335649
0.0025825
-0.000334799
0.00258964
-0.000334027
0.00259677
-0.000333324
0.00260387
-0.000332725
0.00261096
-0.00033218
0.00261803
-0.000331801
0.00262508
-0.000331401
0.00263213
-0.000331323
0.00263913
-0.00033102
0.00264616
-0.000331327
-0.000331236
0.00236386
0.00053764
0.00232963
0.000503942
0.00229228
0.000469542
0.00225537
0.000441916
0.00221966
0.000417225
0.0021855
0.000393125
0.00215309
0.000370347
0.00212246
0.000349098
0.00209351
0.000329118
0.00206618
0.000310158
0.00204039
0.000292074
0.00201608
0.00027478
0.00199319
0.000258216
0.00197164
0.00024233
0.00195138
0.000227074
0.00193236
0.000212406
0.0019145
0.000198286
0.00189778
0.000184678
0.00188212
0.000171548
0.0018675
0.000158864
0.00185386
0.000146596
0.00184115
0.000134716
0.00182935
0.000123194
0.00181841
0.000112006
0.0018083
0.000101126
0.00179898
9.05323e-05
0.00179042
8.0201e-05
0.00178259
7.01114e-05
0.00177546
6.0243e-05
0.001769
5.05751e-05
0.00176318
4.10856e-05
0.00175797
3.17469e-05
0.00175335
2.25241e-05
0.00174929
1.33454e-05
0.00174562
4.14135e-06
0.00174276
-4.69919e-06
0.00174023
-1.30875e-05
0.00173817
-2.16115e-05
0.00173657
-3.01621e-05
0.00173544
-3.86731e-05
0.00173475
-4.71242e-05
0.00173448
-5.55311e-05
0.00173461
-6.39133e-05
0.00173514
-7.22807e-05
0.00173604
-8.06367e-05
0.00173729
-8.89845e-05
0.0017389
-9.73287e-05
0.00174083
-0.000105674
0.00174308
-0.000114026
0.00174564
-0.000122387
0.00174848
-0.00013076
0.00175161
-0.000139146
0.001755
-0.000147546
0.00175865
-0.00015596
0.00176254
-0.000164386
0.00176666
-0.000172823
0.001771
-0.000181268
0.00177556
-0.000189715
0.00178032
-0.000198161
0.00178527
-0.000206599
0.0017904
-0.000215022
0.00179571
-0.000223423
0.00180119
-0.000231795
0.00180682
-0.000240126
0.0018126
-0.000248409
0.00181852
-0.000256632
0.00182457
-0.000264786
0.00183076
-0.000272858
0.00183707
-0.000280836
0.00184349
-0.000288711
0.00185002
-0.000296468
0.00185665
-0.000304097
0.00186339
-0.000311584
0.00187022
-0.000318919
0.00187714
-0.00032609
0.00188414
-0.000333085
0.00189123
-0.000339894
0.00189839
-0.000346506
0.00190563
-0.000352911
0.00191294
-0.0003591
0.00192032
-0.000365065
0.00192777
-0.000370798
0.00193527
-0.000376292
0.00194284
-0.000381542
0.00195046
-0.000386541
0.00195814
-0.000391287
0.00196587
-0.000395775
0.00197365
-0.000400003
0.00198148
-0.000403969
0.00198936
-0.000407674
0.00199728
-0.000411117
0.00200524
-0.000414299
0.00201324
-0.000417223
0.00202128
-0.000419891
0.00202936
-0.000422308
0.00203747
-0.000424476
0.00204561
-0.000426402
0.00205379
-0.000428091
0.00206199
-0.000429548
0.00207022
-0.000430782
0.00207847
-0.000431798
0.00208675
-0.000432605
0.00209504
-0.000433209
0.00210336
-0.000433621
0.0021117
-0.000433847
0.00212004
-0.000433898
0.00212841
-0.00043378
0.00213678
-0.000433504
0.00214516
-0.000433077
0.00215355
-0.00043251
0.00216195
-0.000431811
0.00217035
-0.000430988
0.00217875
-0.00043005
0.00218716
-0.000429005
0.00219556
-0.000427863
0.00220395
-0.00042663
0.00221235
-0.000425314
0.00222073
-0.000423923
0.00222911
-0.000422464
0.00223748
-0.000420944
0.00224584
-0.00041937
0.00225418
-0.000417747
0.00226251
-0.000416081
0.00227082
-0.000414379
0.00227912
-0.000412644
0.0022874
-0.000410883
0.00229565
-0.000409099
0.00230389
-0.000407297
0.00231211
-0.000405481
0.0023203
-0.000403654
0.00232847
-0.000401819
0.00233661
-0.00039998
0.00234472
-0.000398139
0.00235281
-0.000396298
0.00236087
-0.00039446
0.00236891
-0.000392627
0.00237691
-0.0003908
0.00238488
-0.000388982
0.00239283
-0.000387173
0.00240074
-0.000385375
0.00240862
-0.000383589
0.00241647
-0.000381815
0.00242429
-0.000380056
0.00243208
-0.000378312
0.00243983
-0.000376583
0.00244755
-0.000374871
0.00245524
-0.000373176
0.0024629
-0.000371499
0.00247053
-0.000369841
0.00247813
-0.000368202
0.00248569
-0.000366584
0.00249322
-0.000364988
0.00250073
-0.000363414
0.0025082
-0.000361864
0.00251564
-0.000360339
0.00252306
-0.000358841
0.00253044
-0.00035737
0.0025378
-0.00035593
0.00254514
-0.000354521
0.00255245
-0.000353147
0.00255973
-0.000351808
0.00256699
-0.000350509
0.00257423
-0.000349251
0.00258144
-0.000348038
0.00258864
-0.000346873
0.00259582
-0.00034576
0.00260297
-0.000344702
0.00261011
-0.000343704
0.00261723
-0.000342771
0.00262434
-0.000341904
0.00263143
-0.000341117
0.0026385
-0.000340399
0.00264556
-0.000339785
0.00265261
-0.000339225
0.00265964
-0.000338828
0.00266665
-0.000338417
0.00267364
-0.000338313
0.00268063
-0.000338011
0.00268757
-0.000338263
-0.000338164
0.0117004
0.000684053
-0.0118469
0.0115511
0.0006533
0.0114012
0.000619427
0.0112557
0.000587423
0.0111158
0.000557093
0.0109806
0.000528336
0.01085
0.000500996
0.0107242
0.000474842
0.0106036
0.000449759
0.0104881
0.000425679
0.0103776
0.000402545
0.0102721
0.000380293
0.0101714
0.000358872
0.0100755
0.00033824
0.00998423
0.000318356
0.00989745
0.000299181
0.00981506
0.00028068
0.00973692
0.000262818
0.00966291
0.000245561
0.00959289
0.000228878
0.00952675
0.000212738
0.00946436
0.00019711
0.00940558
0.000181967
0.00935031
0.000167279
0.00929842
0.000153019
0.00924979
0.00013916
0.00920432
0.000125677
0.00916188
0.000112546
0.00912238
9.97409e-05
0.00908572
8.72397e-05
0.00905178
7.50198e-05
0.00902047
6.30632e-05
0.00899164
5.13539e-05
0.00896508
3.99037e-05
0.00894054
2.86805e-05
0.00891802
1.78225e-05
0.00889764
7.29341e-06
0.00887921
-3.18148e-06
0.00886315
-1.41024e-05
0.00884911
-2.46335e-05
0.00883694
-3.49575e-05
0.00882656
-4.51512e-05
0.0088179
-5.52485e-05
0.00881087
-6.5257e-05
0.00880541
-7.51776e-05
0.00880145
-8.50158e-05
0.0087989
-9.47802e-05
0.0087977
-0.000104479
0.00879779
-0.000114118
0.00879911
-0.000123702
0.00880158
-0.000133234
0.00880515
-0.000142718
0.00880976
-0.000152155
0.00881535
-0.000161547
0.00882186
-0.000170893
0.00882923
-0.000180192
0.0088374
-0.000189441
0.00884632
-0.000198639
0.00885594
-0.000207781
0.00886621
-0.000216862
0.00887706
-0.000225877
0.00888846
-0.00023482
0.00890035
-0.000243684
0.00891268
-0.000252461
0.00892542
-0.000261144
0.00893851
-0.000269723
0.00895191
-0.00027819
0.00896559
-0.000286536
0.00897951
-0.00029475
0.00899362
-0.000302824
0.0090079
-0.000310746
0.00902231
-0.000318508
0.00903682
-0.000326098
0.00905141
-0.000333509
0.00906605
-0.000340729
0.00908072
-0.00034775
0.00909539
-0.000354564
0.00911004
-0.000361161
0.00912466
-0.000367534
0.00913924
-0.000373676
0.00915375
-0.00037958
0.0091682
-0.00038524
0.00918256
-0.000390652
0.00919682
-0.00039581
0.00921099
-0.000400711
0.00922506
-0.000405353
0.00923902
-0.000409733
0.00925287
-0.000413851
0.0092666
-0.000417705
0.00928023
-0.000421297
0.00929374
-0.000424627
0.00930714
-0.000427698
0.00932042
-0.000430511
0.0093336
-0.000433072
0.00934668
-0.000435383
0.00935965
-0.00043745
0.00937253
-0.000439278
0.00938531
-0.000440872
0.009398
-0.000442239
0.0094106
-0.000443386
0.00942313
-0.00044432
0.00943557
-0.000445048
0.00944794
-0.000445579
0.00946024
-0.00044592
0.00947247
-0.000446079
0.00948464
-0.000446066
0.00949674
-0.000445888
0.0095088
-0.000445555
0.00952079
-0.000445074
0.00953274
-0.000444454
0.00954463
-0.000443705
0.00955648
-0.000442833
0.00956827
-0.000441848
0.00958003
-0.000440758
0.00959173
-0.00043957
0.0096034
-0.000438291
0.00961501
-0.000436931
0.00962658
-0.000435495
0.00963811
-0.000433991
0.00964959
-0.000432424
0.00966102
-0.000430803
0.00967241
-0.000429131
0.00968374
-0.000427416
0.00969503
-0.000425662
0.00970626
-0.000423875
0.00971743
-0.000422059
0.00972855
-0.000420219
0.00973961
-0.000418358
0.00975062
-0.000416482
0.00976155
-0.000414592
0.00977243
-0.000412692
0.00978323
-0.000410786
0.00979397
-0.000408877
0.00980464
-0.000406965
0.00981523
-0.000405055
0.00982575
-0.000403148
0.0098362
-0.000401246
0.00984657
-0.00039935
0.00985686
-0.000397463
0.00986707
-0.000395585
0.0098772
-0.000393719
0.00988725
-0.000391864
0.00989722
-0.000390023
0.0099071
-0.000388197
0.0099169
-0.000386386
0.00992662
-0.000384592
0.00993626
-0.000382815
0.00994582
-0.000381056
0.0099553
-0.000379318
0.0099647
-0.0003776
0.00997401
-0.000375903
0.00998326
-0.00037423
0.00999242
-0.000372581
0.0100015
-0.000370957
0.0100105
-0.00036936
0.0100195
-0.000367792
0.0100284
-0.000366255
0.0100372
-0.00036475
0.0100459
-0.000363278
0.0100546
-0.000361844
0.0100633
-0.000360448
0.0100719
-0.000359094
0.0100804
-0.000357784
0.0100889
-0.000356522
0.0100973
-0.000355309
0.0101057
-0.000354151
0.0101141
-0.00035305
0.0101224
-0.00035201
0.0101306
-0.000351036
0.0101389
-0.000350129
0.010147
-0.000349299
0.0101552
-0.000348543
0.0101633
-0.000347878
0.0101713
-0.000347286
0.0101793
-0.000346808
0.0101873
-0.000346389
0.0101951
-0.000346123
0.010203
-0.000345895
0.0102105
-0.000345823
-0.000345957
0.0127075
0.000731512
-0.0127549
0.0126556
0.000705139
0.0125965
0.00067854
0.0125329
0.000651027
0.0124663
0.000623692
0.0123975
0.00059717
0.012327
0.000571496
0.0122553
0.000546513
0.0121829
0.000522137
0.0121102
0.000498355
0.0120376
0.000475173
0.0119653
0.000452584
0.0118936
0.000430574
0.0118227
0.000409125
0.0117529
0.000388223
0.0116842
0.000367854
0.0116169
0.000348004
0.011551
0.000328659
0.0114868
0.000309805
0.0114242
0.000291429
0.0113635
0.000273515
0.0113045
0.000256048
0.0112475
0.000239013
0.0111924
0.000222394
0.0111392
0.000206174
0.011088
0.000190338
0.0110388
0.000174869
0.0109916
0.000159752
0.0109464
0.000144972
0.0109031
0.000130519
0.0108617
0.000116385
0.0108223
0.00010255
0.0107846
8.89997e-05
0.0107488
7.5718e-05
0.0107148
6.2676e-05
0.0106828
4.98599e-05
0.0106528
3.72419e-05
0.0106249
2.47842e-05
0.0105983
1.24471e-05
0.0105736
2.61632e-08
0.0105502
-1.14916e-05
0.0105282
-2.31635e-05
0.0105077
-3.47486e-05
0.0104886
-4.61969e-05
0.010471
-5.74992e-05
0.0104546
-6.86689e-05
0.0104395
-7.97183e-05
0.0104257
-9.06536e-05
0.0104131
-0.000101478
0.0104016
-0.000112197
0.0103912
-0.000122812
0.0103818
-0.000133327
0.0103733
-0.000143743
0.0103659
-0.000154063
0.0103593
-0.000164286
0.0103535
-0.000174411
0.0103485
-0.000184437
0.0103442
-0.000194362
0.0103406
-0.000204183
0.0103376
-0.000213896
0.0103353
-0.000223497
0.0103334
-0.00023298
0.0103321
-0.000242341
0.0103312
-0.000251572
0.0103307
-0.000260668
0.0103306
-0.000269621
0.0103308
-0.000278425
0.0103314
-0.000287071
0.0103322
-0.000295552
0.0103332
-0.00030386
0.0103344
-0.000311987
0.0103359
-0.000319925
0.0103374
-0.000327665
0.0103391
-0.000335202
0.0103409
-0.000342526
0.0103428
-0.00034963
0.0103447
-0.000356509
0.0103467
-0.000363155
0.0103488
-0.000369562
0.0103508
-0.000375726
0.0103529
-0.000381641
0.0103549
-0.000387303
0.010357
-0.000392708
0.010359
-0.000397854
0.0103611
-0.000402739
0.0103631
-0.00040736
0.0103651
-0.000411718
0.010367
-0.000415811
0.010369
-0.000419641
0.0103709
-0.00042321
0.0103728
-0.000426518
0.0103746
-0.000429569
0.0103765
-0.000432366
0.0103783
-0.000434913
0.0103802
-0.000437214
0.010382
-0.000439275
0.0103838
-0.000441101
0.0103856
-0.000442698
0.0103875
-0.000444072
0.0103893
-0.000445231
0.0103912
-0.00044618
0.0103931
-0.000446929
0.010395
-0.000447484
0.0103969
-0.000447853
0.0103989
-0.000448045
0.0104009
-0.000448066
0.0104029
-0.000447927
0.010405
-0.000447634
0.0104071
-0.000447197
0.0104093
-0.000446623
0.0104115
-0.00044592
0.0104137
-0.000445096
0.0104161
-0.00044416
0.0104184
-0.000443119
0.0104208
-0.00044198
0.0104233
-0.000440752
0.0104258
-0.00043944
0.0104284
-0.000438052
0.010431
-0.000436594
0.0104336
-0.000435074
0.0104363
-0.000433496
0.010439
-0.000431866
0.0104418
-0.000430191
0.0104446
-0.000428474
0.0104475
-0.000426722
0.0104504
-0.000424939
0.0104533
-0.000423129
0.0104562
-0.000421296
0.0104592
-0.000419443
0.0104621
-0.000417575
0.0104651
-0.000415695
0.0104682
-0.000413806
0.0104712
-0.00041191
0.0104742
-0.00041001
0.0104773
-0.000408109
0.0104804
-0.000406208
0.0104834
-0.00040431
0.0104865
-0.000402417
0.0104896
-0.00040053
0.0104926
-0.000398651
0.0104957
-0.000396781
0.0104987
-0.000394922
0.0105018
-0.000393076
0.0105048
-0.000391243
0.0105079
-0.000389424
0.0105109
-0.000387622
0.0105139
-0.000385837
0.0105169
-0.00038407
0.0105199
-0.000382323
0.0105229
-0.000380596
0.0105259
-0.000378892
0.0105289
-0.000377211
0.0105319
-0.000375555
0.0105349
-0.000373925
0.0105378
-0.000372323
0.0105408
-0.000370751
0.0105437
-0.000369211
0.0105467
-0.000367703
0.0105496
-0.000366232
0.0105526
-0.000364798
0.0105555
-0.000363404
0.0105585
-0.000362053
0.0105615
-0.000360747
0.0105644
-0.00035949
0.0105674
-0.000358283
0.0105704
-0.00035713
0.0105734
-0.000356035
0.0105764
-0.000355001
0.0105794
-0.000354031
0.0105824
-0.000353129
0.0105854
-0.0003523
0.0105884
-0.000351545
0.0105914
-0.000350872
0.0105944
-0.000350276
0.0105973
-0.000349778
0.0106003
-0.000349353
0.0106032
-0.000349046
0.0106061
-0.000348809
0.010609
-0.000348698
-0.00034873
0.0130281
0.000742057
-0.0130387
0.013017
0.000716241
0.0130035
0.00069205
0.0129869
0.000667668
0.0129673
0.000643219
0.0129453
0.000619154
0.0129212
0.000595669
0.012895
0.000572733
0.0128668
0.000550264
0.012837
0.000528221
0.0128055
0.000506591
0.0127728
0.000485373
0.0127388
0.000464558
0.0127038
0.000444136
0.0126679
0.000424096
0.0126313
0.000404431
0.0125942
0.000385133
0.0125566
0.000366197
0.0125188
0.000347615
0.0124809
0.000329382
0.0124429
0.000311491
0.012405
0.000293936
0.0123673
0.000276708
0.0123299
0.0002598
0.0122929
0.000243206
0.0122563
0.000226916
0.0122202
0.000210924
0.0121848
0.00019522
0.01215
0.000179797
0.0121158
0.000164647
0.0120825
0.000149761
0.0120499
0.000135125
0.0120181
0.000120729
0.0119873
0.000106561
0.0119574
9.26103e-05
0.0119284
7.88749e-05
0.0119002
6.5354e-05
0.011873
5.20438e-05
0.0118465
3.89293e-05
0.0118205
2.60172e-05
0.0117957
1.33498e-05
0.0117715
1.01694e-06
0.0117484
-1.16842e-05
0.0117263
-2.40383e-05
0.011705
-3.62005e-05
0.0116845
-4.82108e-05
0.0116649
-6.00761e-05
0.011646
-7.17981e-05
0.0116279
-8.33814e-05
0.0116105
-9.48308e-05
0.0115939
-0.00010615
0.0115779
-0.000117341
0.0115626
-0.000128404
0.0115478
-0.000139341
0.0115337
-0.00015015
0.0115201
-0.000160831
0.0115071
-0.000171382
0.0114945
-0.000181801
0.0114824
-0.000192084
0.0114707
-0.000202229
0.0114595
-0.000212232
0.0114486
-0.000222088
0.011438
-0.000231791
0.0114278
-0.000241338
0.0114179
-0.000250722
0.0114082
-0.000259937
0.0113987
-0.000268977
0.0113895
-0.000277836
0.0113804
-0.000286507
0.0113716
-0.000294984
0.0113628
-0.000303261
0.0113542
-0.00031133
0.0113458
-0.000319185
0.0113374
-0.000326821
0.0113291
-0.000334231
0.0113209
-0.00034141
0.0113127
-0.000348352
0.0113046
-0.000355053
0.0112966
-0.000361508
0.0112885
-0.000367712
0.0112806
-0.000373664
0.0112726
-0.000379358
0.0112647
-0.000384795
0.0112568
-0.000389971
0.011249
-0.000394885
0.0112411
-0.000399537
0.0112334
-0.000403927
0.0112256
-0.000408056
0.0112179
-0.000411924
0.0112102
-0.000415535
0.0112026
-0.00041889
0.011195
-0.000421993
0.0111875
-0.000424846
0.01118
-0.000427455
0.0111726
-0.000429825
0.0111653
-0.000431959
0.0111581
-0.000433864
0.0111509
-0.000435545
0.0111439
-0.00043701
0.0111369
-0.000438264
0.01113
-0.000439314
0.0111233
-0.000440168
0.0111166
-0.000440833
0.0111101
-0.000441317
0.0111037
-0.000441626
0.0110974
-0.000441769
0.0110912
-0.000441754
0.0110852
-0.000441589
0.0110792
-0.00044128
0.0110734
-0.000440837
0.0110678
-0.000440266
0.0110623
-0.000439576
0.0110569
-0.000438773
0.0110516
-0.000437865
0.0110465
-0.00043686
0.0110415
-0.000435763
0.0110367
-0.000434582
0.0110319
-0.000433324
0.0110273
-0.000431994
0.0110229
-0.000430599
0.0110185
-0.000429144
0.0110143
-0.000427636
0.0110102
-0.000426078
0.0110062
-0.000424477
0.0110023
-0.000422837
0.0109985
-0.000421163
0.0109948
-0.000419458
0.0109913
-0.000417727
0.0109878
-0.000415973
0.0109844
-0.000414201
0.0109811
-0.000412413
0.010978
-0.000410612
0.0109748
-0.000408802
0.0109718
-0.000406984
0.0109689
-0.000405162
0.010966
-0.000403337
0.0109632
-0.000401513
0.0109605
-0.00039969
0.0109578
-0.000397871
0.0109552
-0.000396057
0.0109527
-0.000394251
0.0109502
-0.000392454
0.0109478
-0.000390666
0.0109455
-0.000388891
0.0109432
-0.000387129
0.0109409
-0.000385381
0.0109387
-0.00038365
0.0109366
-0.000381935
0.0109345
-0.00038024
0.0109325
-0.000378564
0.0109305
-0.000376911
0.0109286
-0.00037528
0.0109267
-0.000373674
0.0109249
-0.000372094
0.0109231
-0.000370542
0.0109214
-0.000369019
0.0109197
-0.000367528
0.010918
-0.000366071
0.0109165
-0.000364649
0.0109149
-0.000363265
0.0109134
-0.000361921
0.010912
-0.000360619
0.0109106
-0.000359362
0.0109093
-0.000358153
0.010908
-0.000356994
0.0109068
-0.000355888
0.0109056
-0.000354839
0.0109044
-0.000353848
0.0109033
-0.00035292
0.0109022
-0.000352057
0.0109012
-0.000351264
0.0109002
-0.000350541
0.0108992
-0.000349896
0.0108983
-0.000349324
0.0108973
-0.000348842
0.0108964
-0.000348433
0.0108955
-0.000348128
0.0108946
-0.000347895
0.0108936
-0.000347769
-0.000347772
0.0130733
0.000732661
-0.0130639
0.0130812
0.000708337
0.0130881
0.000685205
0.0130932
0.00066252
0.0130964
0.00064008
0.0130975
0.000617959
0.013097
0.000596261
0.0130947
0.000575006
0.0130908
0.000554158
0.0130853
0.000533676
0.0130784
0.000513538
0.01307
0.000493732
0.0130603
0.000474249
0.0130494
0.000455079
0.0130373
0.000436213
0.0130241
0.000417641
0.0130098
0.000399358
0.0129947
0.000381355
0.0129787
0.000363628
0.0129619
0.000346171
0.0129444
0.000328978
0.0129263
0.000312045
0.0129076
0.000295367
0.0128885
0.000278939
0.0128689
0.000262755
0.012849
0.000246811
0.0128289
0.000231102
0.0128085
0.000215622
0.0127879
0.000200366
0.0127672
0.000185328
0.0127465
0.000170503
0.0127257
0.000155884
0.012705
0.000141467
0.0126843
0.000127246
0.0126637
0.000113219
0.0126432
9.93815e-05
0.0126228
8.57307e-05
0.0126026
7.226e-05
0.0125825
5.89632e-05
0.0125627
4.58271e-05
0.0125432
3.28424e-05
0.0125243
2.00008e-05
0.0125053
7.28978e-06
0.0124865
-5.25599e-06
0.012468
-1.76962e-05
0.0124498
-2.99705e-05
0.0124318
-4.20953e-05
0.0124141
-5.40761e-05
0.0123966
-6.59166e-05
0.0123794
-7.76193e-05
0.0123624
-8.91853e-05
0.0123457
-0.000100615
0.0123292
-0.000111909
0.0123129
-0.000123065
0.0122969
-0.000134083
0.012281
-0.000144961
0.0122653
-0.000155697
0.0122498
-0.000166288
0.0122344
-0.00017673
0.0122192
-0.00018702
0.0122041
-0.000197155
0.0121892
-0.000207129
0.0121743
-0.000216939
0.0121596
-0.000226578
0.0121449
-0.000236043
0.0121303
-0.000245328
0.0121157
-0.000254427
0.0121012
-0.000263335
0.0120868
-0.000272046
0.0120723
-0.000280555
0.0120579
-0.000288856
0.0120436
-0.000296943
0.0120292
-0.000304811
0.0120148
-0.000312455
0.0120005
-0.000319871
0.0119861
-0.000327053
0.0119717
-0.000333998
0.0119574
-0.000340701
0.011943
-0.000347159
0.0119287
-0.000353369
0.0119144
-0.000359329
0.0119
-0.000365036
0.0118857
-0.000370488
0.0118715
-0.000375685
0.0118572
-0.000380627
0.011843
-0.000385313
0.0118288
-0.000389743
0.0118146
-0.00039392
0.0118006
-0.000397844
0.0117866
-0.000401518
0.0117726
-0.000404944
0.0117587
-0.000408126
0.011745
-0.000411068
0.0117313
-0.000413773
0.0117177
-0.000416246
0.0117042
-0.000418492
0.0116909
-0.000420516
0.0116777
-0.000422325
0.0116646
-0.000423923
0.0116516
-0.000425318
0.0116388
-0.000426516
0.0116262
-0.000427523
0.0116137
-0.000428347
0.0116014
-0.000428994
0.0115892
-0.000429471
0.0115772
-0.000429787
0.0115654
-0.000429948
0.0115538
-0.000429961
0.0115424
-0.000429833
0.0115311
-0.000429573
0.01152
-0.000429187
0.0115091
-0.000428682
0.0114984
-0.000428065
0.0114879
-0.000427343
0.0114776
-0.000426523
0.0114674
-0.000425611
0.0114574
-0.000424613
0.0114476
-0.000423537
0.011438
-0.000422387
0.0114286
-0.000421169
0.0114194
-0.000419889
0.0114103
-0.000418553
0.0114014
-0.000417165
0.0113926
-0.00041573
0.011384
-0.000414253
0.0113756
-0.000412738
0.0113673
-0.000411189
0.0113592
-0.00040961
0.0113512
-0.000408005
0.0113434
-0.000406377
0.0113357
-0.00040473
0.0113282
-0.000403067
0.0113208
-0.000401391
0.0113135
-0.000399703
0.0113063
-0.000398008
0.0112993
-0.000396307
0.0112924
-0.000394603
0.0112856
-0.000392897
0.0112789
-0.000391193
0.0112724
-0.00038949
0.0112659
-0.000387793
0.0112596
-0.000386102
0.0112533
-0.000384418
0.0112472
-0.000382745
0.0112411
-0.000381082
0.0112352
-0.000379432
0.0112293
-0.000377796
0.0112236
-0.000376176
0.0112179
-0.000374574
0.0112123
-0.00037299
0.0112068
-0.000371426
0.0112014
-0.000369885
0.0111961
-0.000368367
0.0111909
-0.000366874
0.0111858
-0.000365408
0.0111807
-0.000363971
0.0111758
-0.000362565
0.0111709
-0.000361191
0.0111661
-0.000359852
0.0111614
-0.000358549
0.0111567
-0.000357286
0.0111522
-0.000356063
0.0111477
-0.000354884
0.0111433
-0.000353751
0.011139
-0.000352667
0.0111347
-0.000351634
0.0111305
-0.000350655
0.0111264
-0.000349732
0.0111224
-0.000348868
0.0111184
-0.000348066
0.0111144
-0.00034733
0.0111106
-0.00034666
0.0111067
-0.000346063
0.0111029
-0.000345536
0.0110992
-0.00034509
0.0110955
-0.000344715
0.0110918
-0.000344431
0.0110881
-0.00034422
0.0110844
-0.0003441
-0.000344101
0.0130134
0.000713294
-0.0129941
0.013031
0.000690719
0.0130474
0.00066883
0.0130624
0.000647552
0.0130758
0.000626696
0.0130876
0.000606166
0.0130979
0.000585958
0.0131068
0.000566088
0.0131144
0.000546554
0.0131207
0.000527339
0.0131258
0.000508425
0.0131298
0.000489798
0.0131326
0.000471448
0.0131343
0.000453368
0.013135
0.000435549
0.0131346
0.000417982
0.0131333
0.000400662
0.0131311
0.000383581
0.013128
0.000366734
0.013124
0.000350115
0.0131193
0.000333719
0.0131138
0.000317541
0.0131076
0.000301577
0.0131007
0.000285822
0.0130932
0.000270272
0.0130851
0.000254922
0.0130764
0.000239768
0.0130672
0.000224806
0.0130576
0.000210033
0.0130474
0.000195443
0.0130369
0.000181033
0.013026
0.000166799
0.0130147
0.000152738
0.0130031
0.000138846
0.0129912
0.00012512
0.0129791
0.000111554
0.0129666
9.81455e-05
0.012954
8.48882e-05
0.0129412
7.17772e-05
0.0129282
5.88086e-05
0.0129151
4.59815e-05
0.0129018
3.33042e-05
0.0128883
2.07768e-05
0.0128746
8.40672e-06
0.0128608
-3.83952e-06
0.0128468
-1.60435e-05
0.0128328
-2.8061e-05
0.0128187
-3.99368e-05
0.0128044
-5.16781e-05
0.0127901
-6.32849e-05
0.0127757
-7.47566e-05
0.0127611
-8.60928e-05
0.0127465
-9.72933e-05
0.0127318
-0.000108356
0.012717
-0.00011928
0.0127021
-0.000130062
0.0126871
-0.0001407
0.012672
-0.000151191
0.0126568
-0.000161532
0.0126415
-0.000171718
0.0126261
-0.000181746
0.0126106
-0.000191612
0.012595
-0.000201311
0.0125792
-0.000210839
0.0125634
-0.000220191
0.0125474
-0.000229361
0.0125313
-0.000238346
0.0125151
-0.00024714
0.0124988
-0.000255737
0.0124824
-0.000264134
0.0124659
-0.000272325
0.0124492
-0.000280305
0.0124325
-0.000288071
0.0124157
-0.000295616
0.0123987
-0.000302938
0.0123817
-0.000310033
0.0123646
-0.000316896
0.0123474
-0.000323526
0.0123302
-0.000329918
0.0123129
-0.00033607
0.0122955
-0.000341981
0.0122782
-0.000347649
0.0122607
-0.000353072
0.0122433
-0.000358251
0.0122259
-0.000363184
0.0122084
-0.000367872
0.012191
-0.000372317
0.0121736
-0.000376518
0.0121562
-0.000380479
0.0121389
-0.000384201
0.0121217
-0.000387686
0.0121045
-0.000390938
0.0120874
-0.000393961
0.0120703
-0.000396757
0.0120534
-0.000399333
0.0120366
-0.000401691
0.01202
-0.000403837
0.0120034
-0.000405777
0.011987
-0.000407515
0.0119707
-0.000409058
0.0119546
-0.000410412
0.0119387
-0.000411583
0.0119229
-0.000412576
0.0119073
-0.000413399
0.0118919
-0.000414058
0.0118767
-0.00041456
0.0118616
-0.000414911
0.0118468
-0.000415119
0.0118322
-0.000415189
0.0118177
-0.000415129
0.0118035
-0.000414945
0.0117894
-0.000414644
0.0117756
-0.000414231
0.011762
-0.000413715
0.0117486
-0.0004131
0.0117353
-0.000412393
0.0117223
-0.0004116
0.0117095
-0.000410726
0.0116969
-0.000409777
0.0116845
-0.000408759
0.0116723
-0.000407677
0.0116603
-0.000406536
0.0116484
-0.00040534
0.0116368
-0.000404094
0.0116254
-0.000402803
0.0116141
-0.000401471
0.011603
-0.000400102
0.0115921
-0.000398699
0.0115814
-0.000397267
0.0115708
-0.000395809
0.0115604
-0.000394328
0.0115501
-0.000392827
0.0115401
-0.000391309
0.0115301
-0.000389777
0.0115204
-0.000388233
0.0115107
-0.000386681
0.0115013
-0.000385122
0.0114919
-0.000383558
0.0114827
-0.000381992
0.0114736
-0.000380426
0.0114647
-0.000378862
0.0114559
-0.000377301
0.0114472
-0.000375746
0.0114387
-0.000374197
0.0114303
-0.000372658
0.011422
-0.000371129
0.0114138
-0.000369612
0.0114057
-0.00036811
0.0113978
-0.000366622
0.0113899
-0.000365151
0.0113822
-0.0003637
0.0113746
-0.000362268
0.0113671
-0.000360859
0.0113597
-0.000359473
0.0113524
-0.000358113
0.0113452
-0.00035678
0.0113381
-0.000355476
0.0113311
-0.000354204
0.0113242
-0.000352964
0.0113174
-0.000351759
0.0113107
-0.000350592
0.0113041
-0.000349464
0.0112976
-0.000348377
0.0112912
-0.000347334
0.0112849
-0.000346337
0.0112786
-0.000345389
0.0112725
-0.000344492
0.0112664
-0.000343647
0.0112604
-0.000342859
0.0112544
-0.000342128
0.0112486
-0.000341459
0.0112428
-0.000340852
0.011237
-0.000340311
0.0112313
-0.000339837
0.0112257
-0.000339435
0.0112201
-0.000339102
0.0112145
-0.000338849
0.0112089
-0.000338669
0.0112034
-0.000338563
-0.000338575
0.0129206
0.000689067
-0.0128963
0.0129429
0.000668337
0.0129638
0.000647959
0.0129833
0.000628098
0.0130013
0.000608654
0.013018
0.000589509
0.0130333
0.000570616
0.0130474
0.000551977
0.0130604
0.000533606
0.0130722
0.000515501
0.013083
0.000497654
0.0130927
0.000480055
0.0131015
0.000462696
0.0131093
0.00044557
0.0131161
0.000428672
0.0131221
0.000411994
0.0131273
0.000395533
0.0131316
0.000379281
0.013135
0.000363236
0.0131378
0.000347391
0.0131397
0.000331743
0.013141
0.000316288
0.0131416
0.00030102
0.0131414
0.000285936
0.0131407
0.000271033
0.0131393
0.000256307
0.0131373
0.000241754
0.0131347
0.00022737
0.0131316
0.000213152
0.013128
0.000199098
0.0131238
0.000185203
0.0131191
0.000171464
0.013114
0.000157879
0.0131084
0.000144444
0.0131024
0.000131156
0.0130959
0.000118011
0.013089
0.000105007
0.0130818
9.21416e-05
0.0130742
7.94127e-05
0.0130661
6.68196e-05
0.0130578
5.43615e-05
0.013049
4.20379e-05
0.01304
2.98446e-05
0.0130306
1.77763e-05
0.0130209
5.83252e-06
0.0130109
-6.00153e-06
0.0130005
-1.77159e-05
0.0129899
-2.929e-05
0.0129789
-4.07321e-05
0.0129677
-5.20448e-05
0.0129562
-6.32277e-05
0.0129444
-7.42796e-05
0.0129323
-8.5199e-05
0.0129199
-9.59841e-05
0.0129072
-0.000106633
0.0128943
-0.000117143
0.0128811
-0.000127511
0.0128677
-0.000137735
0.012854
-0.000147811
0.01284
-0.000157735
0.0128257
-0.000167504
0.0128112
-0.000177114
0.0127965
-0.000186561
0.0127815
-0.00019584
0.0127662
-0.000204947
0.0127508
-0.000213878
0.012735
-0.000222628
0.0127191
-0.000231193
0.0127029
-0.000239568
0.0126865
-0.00024775
0.0126699
-0.000255732
0.0126532
-0.000263513
0.0126362
-0.000271086
0.012619
-0.00027845
0.0126017
-0.000285599
0.0125842
-0.000292532
0.0125665
-0.000299244
0.0125487
-0.000305733
0.0125308
-0.000311997
0.0125128
-0.000318033
0.0124946
-0.000323841
0.0124764
-0.000329418
0.0124581
-0.000334764
0.0124397
-0.000339878
0.0124213
-0.000344761
0.0124028
-0.000349412
0.0123843
-0.000353833
0.0123658
-0.000358025
0.0123474
-0.000361989
0.0123289
-0.000365728
0.0123104
-0.000369243
0.012292
-0.000372538
0.0122737
-0.000375616
0.0122554
-0.000378481
0.0122372
-0.000381136
0.0122191
-0.000383585
0.0122011
-0.000385834
0.0121832
-0.000387886
0.0121655
-0.000389747
0.0121478
-0.000391422
0.0121303
-0.000392917
0.012113
-0.000394236
0.0120958
-0.000395386
0.0120788
-0.000396372
0.0120619
-0.000397202
0.0120452
-0.000397879
0.0120287
-0.000398412
0.0120124
-0.000398805
0.0119963
-0.000399064
0.0119804
-0.000399197
0.0119646
-0.000399209
0.0119491
-0.000399106
0.0119337
-0.000398893
0.0119186
-0.000398578
0.0119037
-0.000398165
0.0118889
-0.00039766
0.0118744
-0.000397069
0.0118601
-0.000396397
0.0118459
-0.000395649
0.011832
-0.00039483
0.0118183
-0.000393946
0.0118048
-0.000393001
0.0117914
-0.000391999
0.0117783
-0.000390945
0.0117653
-0.000389843
0.0117525
-0.000388698
0.0117399
-0.000387512
0.0117275
-0.000386291
0.0117153
-0.000385037
0.0117032
-0.000383753
0.0116914
-0.000382444
0.0116796
-0.000381111
0.0116681
-0.000379759
0.0116567
-0.000378389
0.0116455
-0.000377005
0.0116344
-0.000375609
0.0116235
-0.000374203
0.0116127
-0.000372789
0.0116021
-0.000371371
0.0115916
-0.000369949
0.0115813
-0.000368527
0.0115711
-0.000367105
0.011561
-0.000365687
0.0115511
-0.000364273
0.0115413
-0.000362865
0.0115317
-0.000361466
0.0115221
-0.000360077
0.0115127
-0.000358699
0.0115034
-0.000357335
0.0114943
-0.000355986
0.0114852
-0.000354654
0.0114763
-0.00035334
0.0114675
-0.000352047
0.0114588
-0.000350775
0.0114502
-0.000349527
0.0114417
-0.000348305
0.0114333
-0.00034711
0.0114251
-0.000345944
0.0114169
-0.000344809
0.0114089
-0.000343707
0.0114009
-0.000342641
0.0113931
-0.000341611
0.0113853
-0.00034062
0.0113777
-0.00033967
0.0113701
-0.000338764
0.0113626
-0.000337903
0.0113552
-0.00033709
0.0113479
-0.000336326
0.0113406
-0.000335614
0.0113335
-0.000334956
0.0113263
-0.000334355
0.0113193
-0.000333812
0.0113123
-0.000333329
0.0113054
-0.000332908
0.0112985
-0.000332553
0.0112917
-0.000332263
0.0112849
-0.000332042
0.0112781
-0.000331893
0.0112713
-0.000331804
-0.000331831
0.0128232
0.000662712
-0.0127969
0.0128478
0.000643754
0.0128709
0.000624936
0.0128925
0.000606495
0.0129127
0.00058839
0.0129317
0.000570528
0.0129495
0.000552858
0.0129661
0.000535379
0.0129816
0.000518105
0.012996
0.000501045
0.0130095
0.000484197
0.013022
0.000467556
0.0130336
0.000451117
0.0130442
0.000434877
0.0130541
0.00041883
0.0130631
0.000402975
0.0130713
0.000387308
0.0130788
0.000371826
0.0130855
0.000356524
0.0130915
0.0003414
0.0130968
0.000326451
0.0131014
0.000311672
0.0131054
0.000297062
0.0131087
0.000282618
0.0131114
0.000268335
0.0131135
0.000254212
0.013115
0.000240244
0.0131159
0.000226431
0.0131163
0.000212769
0.0131161
0.000199254
0.0131155
0.000185886
0.0131143
0.00017266
0.0131126
0.000159574
0.0131104
0.000146627
0.0131077
0.000133815
0.0131046
0.000121137
0.013101
0.00010859
0.013097
9.6174e-05
0.0130925
8.38858e-05
0.0130876
7.1725e-05
0.0130823
5.96894e-05
0.0130765
4.77768e-05
0.0130704
3.59855e-05
0.0130639
2.43143e-05
0.0130569
1.27653e-05
0.0130496
1.35101e-06
0.0130418
-9.97203e-06
0.0130337
-2.11582e-05
0.0130252
-3.22184e-05
0.0130163
-4.31539e-05
0.013007
-5.39634e-05
0.0129974
-6.46458e-05
0.0129874
-7.51996e-05
0.012977
-8.56225e-05
0.0129663
-9.59123e-05
0.0129552
-0.000106067
0.0129438
-0.000116084
0.012932
-0.00012596
0.0129199
-0.000135692
0.0129075
-0.000145277
0.0128947
-0.000154712
0.0128815
-0.000163992
0.0128681
-0.000173115
0.0128543
-0.000182075
0.0128403
-0.00019087
0.0128259
-0.000199496
0.0128112
-0.000207948
0.0127962
-0.000216223
0.012781
-0.000224317
0.0127655
-0.000232225
0.0127497
-0.000239945
0.0127336
-0.000247472
0.0127173
-0.000254803
0.0127008
-0.000261934
0.0126841
-0.000268864
0.0126671
-0.000275588
0.01265
-0.000282105
0.0126327
-0.000288411
0.0126152
-0.000294505
0.0125975
-0.000300386
0.0125798
-0.000306051
0.0125618
-0.0003115
0.0125438
-0.000316733
0.0125257
-0.000321748
0.0125075
-0.000326545
0.0124892
-0.000331126
0.0124708
-0.000335491
0.0124525
-0.000339641
0.012434
-0.000343578
0.0124156
-0.000347303
0.0123972
-0.000350819
0.0123788
-0.000354128
0.0123604
-0.000357233
0.0123421
-0.000360137
0.0123238
-0.000362844
0.0123055
-0.000365358
0.0122874
-0.000367682
0.0122693
-0.00036982
0.0122513
-0.000371778
0.0122335
-0.00037356
0.0122157
-0.00037517
0.0121981
-0.000376614
0.0121806
-0.000377897
0.0121633
-0.000379025
0.0121461
-0.000380001
0.012129
-0.000380833
0.0121121
-0.000381525
0.0120954
-0.000382083
0.0120789
-0.000382512
0.0120625
-0.000382818
0.0120463
-0.000383007
0.0120303
-0.000383084
0.0120144
-0.000383054
0.0119988
-0.000382923
0.0119833
-0.000382696
0.011968
-0.000382378
0.0119529
-0.000381974
0.011938
-0.00038149
0.0119233
-0.00038093
0.0119088
-0.000380298
0.0118944
-0.0003796
0.0118803
-0.00037884
0.0118663
-0.000378023
0.0118525
-0.000377151
0.0118389
-0.00037623
0.0118254
-0.000375263
0.0118122
-0.000374254
0.0117991
-0.000373207
0.0117862
-0.000372125
0.0117734
-0.00037101
0.0117609
-0.000369868
0.0117485
-0.0003687
0.0117362
-0.000367509
0.0117241
-0.000366298
0.0117122
-0.00036507
0.0117004
-0.000363827
0.0116888
-0.000362572
0.0116773
-0.000361307
0.011666
-0.000360034
0.0116548
-0.000358756
0.0116437
-0.000357474
0.0116328
-0.000356191
0.011622
-0.000354909
0.0116114
-0.000353628
0.0116009
-0.000352352
0.0115905
-0.000351082
0.0115802
-0.00034982
0.0115701
-0.000348568
0.0115601
-0.000347327
0.0115502
-0.000346099
0.0115404
-0.000344886
0.0115308
-0.000343689
0.0115212
-0.000342511
0.0115118
-0.000341353
0.0115025
-0.000340216
0.0114933
-0.000339103
0.0114842
-0.000338015
0.0114752
-0.000336955
0.0114663
-0.000335923
0.0114575
-0.000334922
0.0114489
-0.000333953
0.0114403
-0.00033302
0.0114318
-0.000332122
0.0114234
-0.000331263
0.011415
-0.000330444
0.0114068
-0.000329667
0.0113986
-0.000328934
0.0113906
-0.000328248
0.0113826
-0.000327609
0.0113746
-0.000327021
0.0113668
-0.000326484
0.0113589
-0.000326001
0.0113512
-0.000325573
0.0113435
-0.000325202
0.0113358
-0.000324891
0.0113282
-0.00032464
0.0113206
-0.00032445
0.011313
-0.000324328
0.0113055
-0.000324255
-0.000324295
0.0127314
0.000635496
-0.0127041
0.0127569
0.00061818
0.012781
0.000600874
0.0128037
0.000583821
0.012825
0.000567011
0.0128452
0.000550377
0.0128642
0.00053388
0.012882
0.000517519
0.0128988
0.000501308
0.0129146
0.000485259
0.0129294
0.000469378
0.0129433
0.000453662
0.0129563
0.000438111
0.0129685
0.000422723
0.0129798
0.000407497
0.0129904
0.000392433
0.0130001
0.00037753
0.0130092
0.000362785
0.0130175
0.000348198
0.0130251
0.000333766
0.0130321
0.000319487
0.0130384
0.00030536
0.0130441
0.000291384
0.0130492
0.000277555
0.0130536
0.000263872
0.0130575
0.000250332
0.0130608
0.000236935
0.0130636
0.000223678
0.0130658
0.000210559
0.0130675
0.000197575
0.0130686
0.000184726
0.0130693
0.000172009
0.0130694
0.000159422
0.0130691
0.000146965
0.0130683
0.000134634
0.013067
0.000122428
0.0130652
0.000110347
0.013063
9.83887e-05
0.0130603
8.65517e-05
0.0130572
7.48348e-05
0.0130537
6.3237e-05
0.0130497
5.17575e-05
0.0130453
4.0396e-05
0.0130404
2.91526e-05
0.0130352
1.80277e-05
0.0130295
7.02061e-06
0.0130234
-3.87191e-06
0.0130169
-1.46464e-05
0.01301
-2.52991e-05
0.0130027
-3.583e-05
0.0129949
-4.62384e-05
0.0129868
-5.65231e-05
0.0129783
-6.66822e-05
0.0129694
-7.67141e-05
0.0129601
-8.66166e-05
0.0129504
-9.63874e-05
0.0129403
-0.000106024
0.0129299
-0.000115524
0.0129191
-0.000124885
0.0129079
-0.000134103
0.0128964
-0.000143176
0.0128845
-0.0001521
0.0128723
-0.000160872
0.0128597
-0.000169488
0.0128467
-0.000177946
0.0128335
-0.000186242
0.0128199
-0.000194372
0.012806
-0.000202333
0.0127918
-0.000210121
0.0127773
-0.000217734
0.0127626
-0.000225168
0.0127475
-0.000232419
0.0127322
-0.000239485
0.0127166
-0.000246364
0.0127008
-0.000253052
0.0126848
-0.000259546
0.0126685
-0.000265846
0.012652
-0.000271948
0.0126354
-0.000277852
0.0126186
-0.000283555
0.0126016
-0.000289057
0.0125844
-0.000294356
0.0125671
-0.000299453
0.0125497
-0.000304346
0.0125322
-0.000309036
0.0125146
-0.000313524
0.012497
-0.00031781
0.0124792
-0.000321895
0.0124614
-0.000325781
0.0124436
-0.000329469
0.0124257
-0.000332961
0.0124078
-0.000336259
0.01239
-0.000339367
0.0123721
-0.000342286
0.0123543
-0.00034502
0.0123365
-0.000347573
0.0123188
-0.000349947
0.0123011
-0.000352147
0.0122835
-0.000354176
0.012266
-0.000356039
0.0122486
-0.00035774
0.0122312
-0.000359284
0.012214
-0.000360675
0.0121969
-0.000361918
0.0121799
-0.000363017
0.0121631
-0.000363978
0.0121463
-0.000364805
0.0121298
-0.000365504
0.0121133
-0.00036608
0.0120971
-0.000366537
0.0120809
-0.00036688
0.012065
-0.000367114
0.0120491
-0.000367246
0.0120335
-0.000367278
0.012018
-0.000367216
0.0120027
-0.000367066
0.0119876
-0.000366831
0.0119726
-0.000366516
0.0119578
-0.000366125
0.0119432
-0.000365664
0.0119287
-0.000365136
0.0119144
-0.000364545
0.0119003
-0.000363896
0.0118863
-0.000363193
0.0118725
-0.000362438
0.0118589
-0.000361637
0.0118454
-0.000360792
0.0118321
-0.000359907
0.011819
-0.000358985
0.011806
-0.000358029
0.0117932
-0.000357043
0.0117805
-0.00035603
0.011768
-0.000354991
0.0117556
-0.00035393
0.0117434
-0.00035285
0.0117313
-0.000351753
0.0117194
-0.000350642
0.0117076
-0.000349518
0.011696
-0.000348385
0.0116845
-0.000347243
0.0116731
-0.000346096
0.0116618
-0.000344946
0.0116507
-0.000343793
0.0116397
-0.000342641
0.0116289
-0.000341492
0.0116181
-0.000340346
0.0116075
-0.000339206
0.011597
-0.000338074
0.0115866
-0.000336951
0.0115764
-0.000335839
0.0115662
-0.000334741
0.0115562
-0.000333656
0.0115463
-0.000332588
0.0115365
-0.000331539
0.0115268
-0.000330508
0.0115172
-0.0003295
0.0115077
-0.000328514
0.0114983
-0.000327553
0.011489
-0.000326619
0.0114797
-0.000325714
0.0114706
-0.000324838
0.0114616
-0.000323995
0.0114527
-0.000323185
0.0114438
-0.00032241
0.011435
-0.000321673
0.0114264
-0.000320974
0.0114177
-0.000320317
0.0114092
-0.000319702
0.0114007
-0.00031913
0.0113923
-0.000318605
0.0113839
-0.000318128
0.0113756
-0.000317699
0.0113674
-0.000317321
0.0113592
-0.000316995
0.011351
-0.000316723
0.0113429
-0.000316506
0.0113348
-0.000316343
0.0113267
-0.000316244
0.0113186
-0.000316185
-0.000316235
0.012647
0.000608023
-0.0126195
0.0126729
0.000592221
0.0126974
0.000576342
0.0127207
0.000560618
0.0127426
0.000545055
0.0127634
0.000529604
0.012783
0.000514237
0.0128016
0.000498957
0.0128191
0.00048378
0.0128357
0.000468718
0.0128513
0.00045378
0.0128659
0.000438969
0.0128798
0.000424287
0.0128928
0.000409734
0.0129049
0.000395313
0.0129164
0.000381024
0.012927
0.000366869
0.0129369
0.000352848
0.0129462
0.000338961
0.0129547
0.000325208
0.0129626
0.000311588
0.0129699
0.000298101
0.0129765
0.000284745
0.0129826
0.000271521
0.012988
0.000258427
0.0129929
0.000245463
0.0129972
0.000232626
0.013001
0.000219916
0.0130042
0.000207333
0.0130069
0.000194874
0.0130091
0.000182538
0.0130108
0.000170325
0.0130119
0.000158233
0.0130127
0.000146261
0.0130129
0.000134408
0.0130126
0.000122674
0.0130119
0.000111056
0.0130108
9.95541e-05
0.0130091
8.81678e-05
0.0130071
7.68967e-05
0.0130046
6.57395e-05
0.0130016
5.46966e-05
0.0129983
4.37675e-05
0.0129945
3.29526e-05
0.0129902
2.22513e-05
0.0129856
1.16637e-05
0.0129805
1.19091e-06
0.0129751
-9.16674e-06
0.0129692
-1.94079e-05
0.0129629
-2.9531e-05
0.0129562
-3.95345e-05
0.0129491
-4.94174e-05
0.0129416
-5.91786e-05
0.0129337
-6.88159e-05
0.0129254
-7.8327e-05
0.0129167
-8.77106e-05
0.0129076
-9.69639e-05
0.0128982
-0.000106085
0.0128884
-0.000115071
0.0128782
-0.000123919
0.0128676
-0.000132627
0.0128567
-0.000141192
0.0128455
-0.00014961
0.0128339
-0.00015788
0.0128219
-0.000165997
0.0128096
-0.00017396
0.012797
-0.000181765
0.0127841
-0.000189409
0.0127709
-0.000196889
0.0127573
-0.000204202
0.0127435
-0.000211346
0.0127294
-0.000218318
0.012715
-0.000225114
0.0127004
-0.000231734
0.0126855
-0.000238174
0.0126704
-0.000244433
0.0126551
-0.000250509
0.0126395
-0.0002564
0.0126238
-0.000262105
0.0126079
-0.000267621
0.0125918
-0.00027295
0.0125755
-0.000278089
0.0125591
-0.000283039
0.0125425
-0.000287799
0.0125259
-0.000292369
0.0125091
-0.00029675
0.0124922
-0.000300943
0.0124753
-0.000304948
0.0124583
-0.000308767
0.0124412
-0.0003124
0.0124241
-0.000315851
0.0124069
-0.000319121
0.0123898
-0.000322212
0.0123726
-0.000325127
0.0123555
-0.000327868
0.0123383
-0.000330439
0.0123212
-0.000332842
0.0123042
-0.000335082
0.0122871
-0.00033716
0.0122702
-0.000339083
0.0122533
-0.000340852
0.0122365
-0.000342473
0.0122198
-0.000343949
0.0122031
-0.000345285
0.0121866
-0.000346484
0.0121702
-0.000347551
0.0121539
-0.000348491
0.0121377
-0.000349309
0.0121216
-0.000350007
0.0121056
-0.000350592
0.0120898
-0.000351068
0.0120742
-0.000351439
0.0120586
-0.00035171
0.0120432
-0.000351885
0.012028
-0.000351968
0.0120129
-0.000351965
0.0119979
-0.000351878
0.0119831
-0.000351713
0.0119685
-0.000351474
0.011954
-0.000351165
0.0119396
-0.000350789
0.0119254
-0.000350351
0.0119114
-0.000349855
0.0118975
-0.000349303
0.0118838
-0.0003487
0.0118702
-0.000348049
0.0118567
-0.000347354
0.0118435
-0.000346617
0.0118303
-0.000345843
0.0118173
-0.000345034
0.0118045
-0.000344192
0.0117918
-0.000343321
0.0117792
-0.000342424
0.0117668
-0.000341503
0.0117545
-0.000340561
0.0117423
-0.0003396
0.0117303
-0.000338622
0.0117184
-0.000337631
0.0117067
-0.000336628
0.011695
-0.000335615
0.0116835
-0.000334594
0.0116721
-0.000333568
0.0116609
-0.000332539
0.0116498
-0.000331508
0.0116387
-0.000330477
0.0116278
-0.000329449
0.0116171
-0.000328424
0.0116064
-0.000327405
0.0115958
-0.000326394
0.0115854
-0.000325392
0.0115751
-0.000324401
0.0115648
-0.000323422
0.0115547
-0.000322458
0.0115447
-0.00032151
0.0115347
-0.00032058
0.0115249
-0.000319669
0.0115152
-0.000318779
0.0115055
-0.000317912
0.011496
-0.000317069
0.0114865
-0.000316252
0.0114771
-0.000315462
0.0114678
-0.000314702
0.0114586
-0.000313973
0.0114495
-0.000313277
0.0114404
-0.000312614
0.0114315
-0.000311988
0.0114225
-0.000311398
0.0114137
-0.000310848
0.0114049
-0.000310338
0.0113962
-0.00030987
0.0113875
-0.000309445
0.0113788
-0.000309065
0.0113702
-0.000308731
0.0113617
-0.000308445
0.0113532
-0.000308207
0.0113447
-0.00030802
0.0113362
-0.00030788
0.0113278
-0.0003078
0.0113194
-0.000307752
-0.000307807
0.0125694
0.000580625
-0.012542
0.0125954
0.000566206
0.0126201
0.000551657
0.0126435
0.000537188
0.0126658
0.000522811
0.0126869
0.000508491
0.0127069
0.00049421
0.0127259
0.000479973
0.0127439
0.000465795
0.0127609
0.000451693
0.012777
0.000437676
0.0127922
0.00042375
0.0128066
0.000409919
0.0128201
0.000396187
0.0128329
0.000382558
0.0128449
0.000369033
0.0128561
0.000355617
0.0128667
0.000342312
0.0128765
0.000329117
0.0128857
0.000316036
0.0128942
0.000303068
0.0129021
0.000290214
0.0129094
0.000277475
0.012916
0.000264851
0.0129221
0.000252341
0.0129276
0.000239947
0.0129326
0.000227667
0.012937
0.000215502
0.0129409
0.000203451
0.0129443
0.000191513
0.0129471
0.000179689
0.0129494
0.000167977
0.0129513
0.000156377
0.0129527
0.000144888
0.0129536
0.000133511
0.012954
0.000122244
0.012954
0.000111088
0.0129535
0.000100041
0.0129525
8.91042e-05
0.0129512
7.82766e-05
0.0129494
6.75583e-05
0.0129471
5.69492e-05
0.0129444
4.64495e-05
0.0129413
3.60594e-05
0.0129378
2.57792e-05
0.0129338
1.56094e-05
0.0129295
5.55071e-06
0.0129247
-4.39603e-06
0.0129195
-1.42292e-05
0.0129139
-2.39483e-05
0.012908
-3.35519e-05
0.0129016
-4.30384e-05
0.0128948
-5.24064e-05
0.0128876
-6.16542e-05
0.0128801
-7.078e-05
0.0128722
-7.97819e-05
0.0128639
-8.86579e-05
0.0128552
-9.74057e-05
0.0128461
-0.000106023
0.0128367
-0.000114508
0.012827
-0.000122858
0.0128168
-0.00013107
0.0128064
-0.000139142
0.0127956
-0.000147071
0.0127844
-0.000154855
0.0127729
-0.000162491
0.0127612
-0.000169977
0.0127491
-0.000177309
0.0127367
-0.000184486
0.012724
-0.000191505
0.012711
-0.000198363
0.0126977
-0.000205059
0.0126842
-0.00021159
0.0126704
-0.000217954
0.0126564
-0.000224149
0.0126421
-0.000230173
0.0126276
-0.000236026
0.012613
-0.000241705
0.0125981
-0.000247209
0.012583
-0.000252538
0.0125677
-0.00025769
0.0125523
-0.000262665
0.0125367
-0.000267463
0.012521
-0.000272084
0.0125052
-0.000276527
0.0124892
-0.000280794
0.0124731
-0.000284884
0.012457
-0.000288799
0.0124408
-0.00029254
0.0124245
-0.000296108
0.0124081
-0.000299505
0.0123917
-0.000302733
0.0123753
-0.000305793
0.0123589
-0.000308689
0.0123424
-0.000311421
0.012326
-0.000313994
0.0123096
-0.00031641
0.0122931
-0.000318671
0.0122768
-0.000320782
0.0122604
-0.000322745
0.0122441
-0.000324564
0.0122279
-0.000326242
0.0122117
-0.000327783
0.0121957
-0.000329192
0.0121796
-0.000330471
0.0121637
-0.000331625
0.0121479
-0.000332657
0.0121321
-0.000333573
0.0121165
-0.000334375
0.012101
-0.000335068
0.0120856
-0.000335656
0.0120703
-0.000336143
0.0120551
-0.000336534
0.0120401
-0.000336832
0.0120251
-0.000337041
0.0120103
-0.000337166
0.0119957
-0.00033721
0.0119811
-0.000337178
0.0119667
-0.000337072
0.0119525
-0.000336897
0.0119383
-0.000336657
0.0119243
-0.000336355
0.0119105
-0.000335995
0.0118967
-0.00033558
0.0118832
-0.000335114
0.0118697
-0.000334599
0.0118564
-0.00033404
0.0118432
-0.000333438
0.0118302
-0.000332798
0.0118173
-0.000332122
0.0118045
-0.000331413
0.0117918
-0.000330673
0.0117793
-0.000329906
0.0117669
-0.000329113
0.0117547
-0.000328298
0.0117425
-0.000327463
0.0117305
-0.00032661
0.0117186
-0.000325741
0.0117069
-0.000324859
0.0116952
-0.000323966
0.0116837
-0.000323063
0.0116723
-0.000322154
0.011661
-0.000321239
0.0116498
-0.000320321
0.0116387
-0.000319401
0.0116277
-0.000318482
0.0116169
-0.000317565
0.0116061
-0.000316652
0.0115955
-0.000315745
0.0115849
-0.000314845
0.0115745
-0.000313955
0.0115641
-0.000313075
0.0115539
-0.000312208
0.0115437
-0.000311355
0.0115337
-0.000310517
0.0115237
-0.000309697
0.0115138
-0.000308896
0.011504
-0.000308115
0.0114943
-0.000307356
0.0114847
-0.000306621
0.0114751
-0.000305911
0.0114656
-0.000305228
0.0114562
-0.000304573
0.0114469
-0.000303948
0.0114377
-0.000303354
0.0114285
-0.000302792
0.0114193
-0.000302265
0.0114102
-0.000301773
0.0114012
-0.000301318
0.0113923
-0.000300901
0.0113833
-0.000300524
0.0113745
-0.000300187
0.0113656
-0.000299892
0.0113568
-0.000299641
0.011348
-0.000299432
0.0113393
-0.00029927
0.0113306
-0.00029915
0.0113218
-0.000299085
0.0113131
-0.000299047
-0.000299104
0.0124975
0.000553503
-0.0124704
0.0125234
0.000540349
0.012548
0.000527028
0.0125715
0.00051373
0.0125938
0.00050047
0.0126151
0.000487223
0.0126353
0.000473975
0.0126546
0.000460735
0.0126728
0.000447519
0.0126902
0.000434343
0.0127066
0.00042122
0.0127222
0.000408155
0.012737
0.000395156
0.012751
0.000382227
0.0127641
0.000369375
0.0127766
0.000356603
0.0127883
0.000343915
0.0127993
0.000331315
0.0128096
0.000318806
0.0128192
0.00030639
0.0128282
0.000294068
0.0128366
0.000281843
0.0128444
0.000269716
0.0128515
0.000257689
0.0128581
0.000245761
0.0128641
0.000233935
0.0128696
0.00022221
0.0128745
0.000210587
0.0128789
0.000199067
0.0128827
0.000187649
0.0128861
0.000176334
0.0128889
0.000165122
0.0128913
0.000154012
0.0128932
0.000143006
0.0128946
0.000132103
0.0128955
0.000121304
0.012896
0.000110607
0.012896
0.000100014
0.0128956
8.95242e-05
0.0128948
7.91378e-05
0.0128935
6.88556e-05
0.0128917
5.86775e-05
0.0128896
4.86039e-05
0.012887
3.86354e-05
0.012884
2.87727e-05
0.0128806
1.90162e-05
0.0128768
9.36689e-06
0.0128726
-1.76146e-07
0.0128679
-9.60633e-06
0.0128629
-1.89279e-05
0.0128575
-2.81377e-05
0.0128517
-3.72345e-05
0.0128455
-4.62168e-05
0.0128389
-5.50828e-05
0.012832
-6.38309e-05
0.0128247
-7.24594e-05
0.012817
-8.09664e-05
0.0128089
-8.93499e-05
0.0128005
-9.7608e-05
0.0127917
-0.000105739
0.0127826
-0.000113739
0.0127732
-0.000121608
0.0127634
-0.000129342
0.0127532
-0.000136941
0.0127428
-0.0001444
0.012732
-0.000151718
0.0127209
-0.000158893
0.0127095
-0.000165923
0.0126979
-0.000172805
0.0126859
-0.000179537
0.0126736
-0.000186118
0.0126611
-0.000192544
0.0126484
-0.000198815
0.0126353
-0.000204929
0.0126221
-0.000210884
0.0126086
-0.000216678
0.0125949
-0.000222311
0.0125809
-0.000227781
0.0125668
-0.000233087
0.0125525
-0.000238228
0.012538
-0.000243204
0.0125234
-0.000248014
0.0125086
-0.000252658
0.0124936
-0.000257137
0.0124785
-0.000261449
0.0124633
-0.000265596
0.012448
-0.000269579
0.0124326
-0.000273398
0.0124171
-0.000277053
0.0124016
-0.000280547
0.012386
-0.000283881
0.0123703
-0.000287057
0.0123546
-0.000290075
0.0123388
-0.000292939
0.012323
-0.000295651
0.0123073
-0.000298212
0.0122915
-0.000300627
0.0122757
-0.000302895
0.0122599
-0.000305023
0.0122442
-0.000307011
0.0122285
-0.000308863
0.0122128
-0.000310582
0.0121972
-0.000312172
0.0121817
-0.000313636
0.0121662
-0.000314978
0.0121508
-0.000316201
0.0121354
-0.000317308
0.0121201
-0.000318304
0.012105
-0.000319191
0.0120899
-0.000319975
0.0120749
-0.000320657
0.01206
-0.000321243
0.0120452
-0.000321737
0.0120305
-0.00032214
0.0120159
-0.000322458
0.0120014
-0.000322694
0.0119871
-0.000322852
0.0119728
-0.000322935
0.0119587
-0.000322947
0.0119447
-0.000322891
0.0119308
-0.000322771
0.011917
-0.00032259
0.0119034
-0.000322352
0.0118899
-0.000322059
0.0118765
-0.000321715
0.0118632
-0.000321323
0.01185
-0.000320886
0.011837
-0.000320407
0.0118241
-0.000319888
0.0118113
-0.000319333
0.0117986
-0.000318744
0.0117861
-0.000318125
0.0117737
-0.000317476
0.0117614
-0.000316802
0.0117492
-0.000316104
0.0117371
-0.000315384
0.0117251
-0.000314646
0.0117133
-0.000313891
0.0117015
-0.00031312
0.0116899
-0.000312338
0.0116784
-0.000311544
0.011667
-0.000310742
0.0116557
-0.000309934
0.0116445
-0.000309121
0.0116334
-0.000308304
0.0116224
-0.000307487
0.0116115
-0.00030667
0.0116007
-0.000305856
0.01159
-0.000305046
0.0115794
-0.000304241
0.0115689
-0.000303444
0.0115584
-0.000302656
0.0115481
-0.000301879
0.0115379
-0.000301113
0.0115277
-0.000300362
0.0115176
-0.000299626
0.0115077
-0.000298907
0.0114978
-0.000298206
0.0114879
-0.000297525
0.0114782
-0.000296865
0.0114685
-0.000296228
0.0114589
-0.000295615
0.0114493
-0.000295028
0.0114398
-0.000294468
0.0114304
-0.000293936
0.0114211
-0.000293434
0.0114118
-0.000292962
0.0114025
-0.000292524
0.0113933
-0.000292118
0.0113842
-0.000291747
0.011375
-0.000291412
0.011366
-0.000291114
0.0113569
-0.000290853
0.0113479
-0.000290631
0.0113389
-0.000290449
0.01133
-0.000290308
0.011321
-0.000290205
0.0113121
-0.000290152
0.0113032
-0.000290122
-0.00029018
0.0124305
0.000526807
-0.0124038
0.012456
0.000514803
0.0124805
0.000502611
0.0125038
0.000490397
0.0125261
0.000478181
0.0125474
0.000465941
0.0125677
0.00045367
0.012587
0.000441376
0.0126055
0.000429078
0.012623
0.000416791
0.0126397
0.000404527
0.0126556
0.000392296
0.0126706
0.000380103
0.0126849
0.000367957
0.0126984
0.000355862
0.0127112
0.000343826
0.0127232
0.000331853
0.0127346
0.000319947
0.0127453
0.000308112
0.0127553
0.000296352
0.0127647
0.00028467
0.0127735
0.000273067
0.0127817
0.000261547
0.0127893
0.000250111
0.0127963
0.000238762
0.0128027
0.0002275
0.0128086
0.000216327
0.0128139
0.000205244
0.0128187
0.000194252
0.012823
0.000183352
0.0128268
0.000172545
0.0128301
0.000161832
0.0128329
0.000151212
0.0128352
0.000140687
0.0128371
0.000130257
0.0128385
0.000119923
0.0128394
0.000109685
0.0128399
9.95432e-05
0.0128399
8.94987e-05
0.0128395
7.95518e-05
0.0128386
6.97032e-05
0.0128373
5.99532e-05
0.0128356
5.03028e-05
0.0128335
4.07524e-05
0.012831
3.1303e-05
0.0128281
2.19554e-05
0.0128247
1.27105e-05
0.012821
3.569e-06
0.0128168
-5.46675e-06
0.0128123
-1.43964e-05
0.0128074
-2.32189e-05
0.0128021
-3.19326e-05
0.0127964
-4.0536e-05
0.0127903
-4.90276e-05
0.0127839
-5.74058e-05
0.0127771
-6.56691e-05
0.01277
-7.38155e-05
0.0127625
-8.18433e-05
0.0127546
-8.97507e-05
0.0127464
-9.75358e-05
0.0127379
-0.000105197
0.012729
-0.000112731
0.0127198
-0.000120137
0.0127103
-0.000127413
0.0127004
-0.000134557
0.0126903
-0.000141567
0.0126798
-0.00014844
0.0126691
-0.000155176
0.012658
-0.000161771
0.0126467
-0.000168225
0.0126351
-0.000174535
0.0126233
-0.000180699
0.0126112
-0.000186717
0.0125988
-0.000192587
0.0125863
-0.000198307
0.0125735
-0.000203876
0.0125604
-0.000209292
0.0125472
-0.000214556
0.0125338
-0.000219666
0.0125202
-0.000224622
0.0125064
-0.000229423
0.0124925
-0.000234068
0.0124784
-0.000238558
0.0124641
-0.000242893
0.0124497
-0.000247072
0.0124352
-0.000251097
0.0124206
-0.000254967
0.0124059
-0.000258684
0.0123911
-0.000262249
0.0123762
-0.000265662
0.0123613
-0.000268925
0.0123463
-0.00027204
0.0123312
-0.000275008
0.0123161
-0.000277831
0.0123009
-0.000280511
0.0122858
-0.00028305
0.0122706
-0.000285451
0.0122554
-0.000287715
0.0122402
-0.000289846
0.0122251
-0.000291846
0.0122099
-0.000293717
0.0121948
-0.000295464
0.0121797
-0.000297088
0.0121647
-0.000298593
0.0121497
-0.000299982
0.0121348
-0.000301258
0.0121199
-0.000302424
0.012105
-0.000303484
0.0120903
-0.000304442
0.0120756
-0.000305299
0.012061
-0.000306061
0.0120465
-0.00030673
0.0120321
-0.000307309
0.0120177
-0.000307803
0.0120035
-0.000308214
0.0119894
-0.000308546
0.0119753
-0.000308802
0.0119614
-0.000308986
0.0119475
-0.000309101
0.0119338
-0.000309149
0.0119201
-0.000309135
0.0119066
-0.000309061
0.0118932
-0.00030893
0.0118799
-0.000308747
0.0118667
-0.000308512
0.0118536
-0.00030823
0.0118406
-0.000307903
0.0118277
-0.000307534
0.011815
-0.000307125
0.0118023
-0.00030668
0.0117898
-0.000306201
0.0117773
-0.00030569
0.011765
-0.00030515
0.0117528
-0.000304584
0.0117407
-0.000303992
0.0117287
-0.000303379
0.0117168
-0.000302746
0.011705
-0.000302095
0.0116933
-0.000301428
0.0116817
-0.000300747
0.0116702
-0.000300054
0.0116588
-0.000299352
0.0116475
-0.000298642
0.0116363
-0.000297926
0.0116252
-0.000297205
0.0116142
-0.000296482
0.0116033
-0.000295758
0.0115925
-0.000295035
0.0115818
-0.000294315
0.0115711
-0.000293599
0.0115606
-0.000292888
0.0115501
-0.000292185
0.0115397
-0.000291491
0.0115294
-0.000290807
0.0115192
-0.000290135
0.011509
-0.000289477
0.0114989
-0.000288833
0.0114889
-0.000288206
0.011479
-0.000287596
0.0114692
-0.000287006
0.0114594
-0.000286435
0.0114496
-0.000285887
0.01144
-0.000285362
0.0114304
-0.000284861
0.0114208
-0.000284386
0.0114113
-0.000283937
0.0114019
-0.000283517
0.0113925
-0.000283126
0.0113831
-0.000282765
0.0113738
-0.000282435
0.0113645
-0.000282138
0.0113553
-0.000281874
0.0113461
-0.000281644
0.0113369
-0.000281449
0.0113277
-0.000281289
0.0113186
-0.000281167
0.0113095
-0.000281078
0.0113004
-0.000281035
0.0112912
-0.000281011
-0.000281069
0.0123677
0.000500646
-0.0123415
0.0123928
0.000489688
0.0124169
0.000478527
0.01244
0.000467314
0.0124621
0.000456065
0.0124833
0.000444767
0.0125035
0.000433412
0.0125229
0.000422013
0.0125414
0.000410584
0.012559
0.000399143
0.0125758
0.000387701
0.0125919
0.000376269
0.0126071
0.000364854
0.0126216
0.000353463
0.0126354
0.000342104
0.0126484
0.000330783
0.0126608
0.000319507
0.0126724
0.000308279
0.0126834
0.000297105
0.0126938
0.000285989
0.0127035
0.000274935
0.0127127
0.000263946
0.0127212
0.000253024
0.0127291
0.000242173
0.0127365
0.000231395
0.0127433
0.000220692
0.0127495
0.000210067
0.0127553
0.00019952
0.0127605
0.000189053
0.0127652
0.000178668
0.0127693
0.000168366
0.012773
0.000158148
0.0127762
0.000148016
0.0127789
0.00013797
0.0127812
0.00012801
0.012783
0.00011814
0.0127843
0.000108358
0.0127852
9.86657e-05
0.0127856
8.90641e-05
0.0127856
7.95542e-05
0.0127852
7.01361e-05
0.0127843
6.08116e-05
0.012783
5.1581e-05
0.0127813
4.24453e-05
0.0127792
3.34055e-05
0.0127767
2.44626e-05
0.0127738
1.56177e-05
0.0127705
6.87181e-06
0.0127668
-1.77414e-06
0.0127627
-1.03174e-05
0.0127583
-1.87583e-05
0.0127534
-2.70951e-05
0.0127482
-3.53263e-05
0.0127427
-4.34502e-05
0.0127367
-5.14659e-05
0.0127304
-5.93708e-05
0.0127238
-6.71645e-05
0.0127168
-7.48442e-05
0.0127094
-8.24089e-05
0.0127018
-8.98566e-05
0.0126937
-9.71858e-05
0.0126854
-0.000104394
0.0126767
-0.000111481
0.0126678
-0.000118443
0.0126585
-0.00012528
0.0126489
-0.000131989
0.012639
-0.000138568
0.0126289
-0.000145017
0.0126185
-0.000151333
0.0126077
-0.000157515
0.0125968
-0.000163562
0.0125855
-0.000169471
0.0125741
-0.000175241
0.0125624
-0.000180872
0.0125504
-0.000186362
0.0125382
-0.00019171
0.0125259
-0.000196915
0.0125133
-0.000201976
0.0125005
-0.000206893
0.0124876
-0.000211665
0.0124744
-0.000216291
0.0124611
-0.000220772
0.0124477
-0.000225107
0.0124341
-0.000229297
0.0124203
-0.000233341
0.0124065
-0.000237241
0.0123925
-0.000240996
0.0123784
-0.000244607
0.0123643
-0.000248076
0.01235
-0.000251402
0.0123357
-0.000254589
0.0123213
-0.000257636
0.0123068
-0.000260545
0.0122923
-0.000263319
0.0122777
-0.000265958
0.0122632
-0.000268465
0.0122485
-0.000270842
0.0122339
-0.000273091
0.0122193
-0.000275214
0.0122047
-0.000277213
0.01219
-0.000279092
0.0121754
-0.000280853
0.0121608
-0.000282498
0.0121463
-0.000284031
0.0121317
-0.000285454
0.0121173
-0.000286769
0.0121028
-0.000287981
0.0120884
-0.000289092
0.0120741
-0.000290105
0.0120598
-0.000291023
0.0120456
-0.000291849
0.0120315
-0.000292586
0.0120174
-0.000293238
0.0120034
-0.000293808
0.0119895
-0.000294298
0.0119756
-0.000294712
0.0119619
-0.000295053
0.0119482
-0.000295323
0.0119346
-0.000295527
0.0119212
-0.000295667
0.0119078
-0.000295745
0.0118945
-0.000295765
0.0118813
-0.00029573
0.0118682
-0.000295642
0.0118552
-0.000295505
0.0118423
-0.000295321
0.0118295
-0.000295092
0.0118167
-0.000294822
0.0118041
-0.000294513
0.0117916
-0.000294167
0.0117792
-0.000293787
0.0117669
-0.000293374
0.0117547
-0.000292933
0.0117425
-0.000292464
0.0117305
-0.000291971
0.0117186
-0.000291454
0.0117068
-0.000290917
0.011695
-0.000290361
0.0116834
-0.000289789
0.0116719
-0.000289202
0.0116604
-0.000288603
0.011649
-0.000287992
0.0116378
-0.000287373
0.0116266
-0.000286746
0.0116155
-0.000286114
0.0116045
-0.000285477
0.0115936
-0.00028484
0.0115827
-0.000284201
0.011572
-0.000283563
0.0115613
-0.000282929
0.0115507
-0.000282298
0.0115402
-0.000281674
0.0115298
-0.000281056
0.0115194
-0.000280448
0.0115091
-0.000279849
0.0114989
-0.000279262
0.0114888
-0.000278688
0.0114787
-0.000278129
0.0114687
-0.000277585
0.0114587
-0.000277058
0.0114489
-0.000276549
0.011439
-0.00027606
0.0114293
-0.000275591
0.0114195
-0.000275144
0.0114099
-0.000274721
0.0114003
-0.000274321
0.0113907
-0.000273947
0.0113812
-0.000273599
0.0113717
-0.000273278
0.0113622
-0.000272985
0.0113528
-0.000272722
0.0113434
-0.000272489
0.0113341
-0.000272285
0.0113247
-0.000272114
0.0113154
-0.000271974
0.0113061
-0.000271868
0.0112968
-0.000271792
0.0112876
-0.000271757
0.0112783
-0.000271738
-0.000271795
0.0123087
0.000475098
-0.0122831
0.0123333
0.000465089
0.0123569
0.000454871
0.0123797
0.000444576
0.0124015
0.000434223
0.0124225
0.000423799
0.0124426
0.000413302
0.0124619
0.000402741
0.0124803
0.000392132
0.012498
0.000381492
0.0125148
0.000370833
0.012531
0.000360163
0.0125463
0.000349492
0.0125609
0.000338828
0.0125749
0.000328178
0.0125881
0.000317549
0.0126007
0.000306947
0.0126126
0.000296379
0.0126238
0.000285849
0.0126345
0.000275362
0.0126445
0.000264923
0.0126539
0.000254534
0.0126627
0.0002442
0.0126709
0.000233925
0.0126786
0.00022371
0.0126858
0.000213558
0.0126924
0.000203473
0.0126984
0.000193456
0.012704
0.000183508
0.012709
0.000173633
0.0127135
0.000163832
0.0127176
0.000154106
0.0127211
0.000144456
0.0127242
0.000134885
0.0127268
0.000125394
0.012729
0.000115983
0.0127307
0.000106654
0.012732
9.74079e-05
0.0127328
8.82461e-05
0.0127332
7.91695e-05
0.0127331
7.01791e-05
0.0127327
6.12762e-05
0.0127318
5.24617e-05
0.0127305
4.37367e-05
0.0127288
3.51024e-05
0.0127267
2.65599e-05
0.0127242
1.81104e-05
0.0127213
9.75507e-06
0.012718
1.4943e-06
0.0127144
-6.66808e-06
0.0127104
-1.47331e-05
0.012706
-2.26988e-05
0.0127012
-3.05638e-05
0.0126961
-3.83265e-05
0.0126906
-4.59856e-05
0.0126848
-5.35395e-05
0.0126786
-6.09866e-05
0.0126721
-6.83256e-05
0.0126652
-7.55547e-05
0.012658
-8.26723e-05
0.0126505
-8.96769e-05
0.0126427
-9.65669e-05
0.0126346
-0.000103341
0.0126261
-0.000109997
0.0126174
-0.000116533
0.0126083
-0.000122949
0.012599
-0.000129242
0.0125894
-0.000135411
0.0125795
-0.000141454
0.0125694
-0.000147371
0.012559
-0.000153159
0.0125483
-0.000158818
0.0125374
-0.000164347
0.0125263
-0.000169744
0.0125149
-0.000175008
0.0125034
-0.000180138
0.0124916
-0.000185135
0.0124796
-0.000189996
0.0124674
-0.000194721
0.0124551
-0.000199311
0.0124426
-0.000203764
0.0124299
-0.000208081
0.012417
-0.000212261
0.012404
-0.000216304
0.0123909
-0.000220212
0.0123776
-0.000223984
0.0123643
-0.00022762
0.0123508
-0.000231122
0.0123372
-0.00023449
0.0123235
-0.000237725
0.0123098
-0.000240829
0.0122959
-0.000243802
0.012282
-0.000246646
0.0122681
-0.000249363
0.0122541
-0.000251953
0.01224
-0.00025442
0.0122259
-0.000256764
0.0122118
-0.000258987
0.0121977
-0.000261093
0.0121836
-0.000263082
0.0121694
-0.000264957
0.0121553
-0.000266721
0.0121412
-0.000268376
0.0121271
-0.000269924
0.012113
-0.000271369
0.0120989
-0.000272712
0.0120849
-0.000273957
0.0120709
-0.000275105
0.012057
-0.000276161
0.0120431
-0.000277126
0.0120292
-0.000278004
0.0120155
-0.000278797
0.0120017
-0.000279509
0.0119881
-0.000280141
0.0119745
-0.000280697
0.0119609
-0.00028118
0.0119475
-0.000281593
0.0119341
-0.000281938
0.0119208
-0.000282218
0.0119075
-0.000282437
0.0118944
-0.000282596
0.0118813
-0.000282698
0.0118683
-0.000282746
0.0118554
-0.000282744
0.0118426
-0.000282692
0.0118299
-0.000282595
0.0118173
-0.000282454
0.0118047
-0.000282272
0.0117923
-0.000282051
0.0117799
-0.000281794
0.0117676
-0.000281503
0.0117554
-0.00028118
0.0117433
-0.000280827
0.0117313
-0.000280447
0.0117194
-0.000280042
0.0117075
-0.000279614
0.0116958
-0.000279165
0.0116841
-0.000278696
0.0116725
-0.00027821
0.011661
-0.000277709
0.0116496
-0.000277194
0.0116383
-0.000276668
0.0116271
-0.000276132
0.0116159
-0.000275587
0.0116048
-0.000275036
0.0115938
-0.00027448
0.0115829
-0.000273921
0.0115721
-0.00027336
0.0115613
-0.000272799
0.0115506
-0.00027224
0.01154
-0.000271683
0.0115294
-0.000271131
0.011519
-0.000270584
0.0115086
-0.000270044
0.0114982
-0.000269514
0.011488
-0.000268992
0.0114778
-0.000268483
0.0114676
-0.000267985
0.0114575
-0.000267501
0.0114475
-0.000267033
0.0114375
-0.00026658
0.0114276
-0.000266145
0.0114178
-0.000265728
0.0114079
-0.000265331
0.0113982
-0.000264954
0.0113885
-0.000264599
0.0113788
-0.000264266
0.0113691
-0.000263957
0.0113595
-0.000263673
0.01135
-0.000263414
0.0113404
-0.000263181
0.0113309
-0.000262975
0.0113214
-0.000262796
0.0113119
-0.000262646
0.0113025
-0.000262523
0.0112931
-0.000262432
0.0112836
-0.000262367
0.0112742
-0.000262339
0.0112648
-0.000262324
-0.000262379
0.0122532
0.000450217
-0.0122283
0.0122772
0.000441068
0.0123004
0.000431709
0.0123227
0.000422258
0.0123442
0.00041273
0.0123649
0.000403117
0.0123848
0.000393418
0.0124039
0.000383641
0.0124222
0.000373803
0.0124398
0.000363919
0.0124566
0.000353999
0.0124727
0.000344054
0.0124881
0.000334093
0.0125028
0.000324124
0.0125169
0.000314154
0.0125302
0.000304191
0.0125429
0.000294241
0.012555
0.000284311
0.0125664
0.000274405
0.0125773
0.00026453
0.0125875
0.000254689
0.0125971
0.000244887
0.0126062
0.000235128
0.0126147
0.000225415
0.0126227
0.000215752
0.0126301
0.000206142
0.012637
0.000196588
0.0126433
0.000187092
0.0126492
0.000177657
0.0126545
0.000168285
0.0126594
0.000158978
0.0126638
0.000149737
0.0126677
0.000140566
0.0126711
0.000131465
0.012674
0.000122436
0.0126765
0.00011348
0.0126786
0.000104599
0.0126802
9.57954e-05
0.0126814
8.70688e-05
0.0126821
7.84214e-05
0.0126825
6.98543e-05
0.0126824
6.13687e-05
0.0126819
5.2966e-05
0.012681
4.46473e-05
0.0126796
3.6414e-05
0.0126779
2.82672e-05
0.0126758
2.02082e-05
0.0126734
1.22382e-05
0.0126705
4.35836e-06
0.0126673
-3.42946e-06
0.0126636
-1.11238e-05
0.0126597
-1.8724e-05
0.0126553
-2.62285e-05
0.0126506
-3.36359e-05
0.0126456
-4.09447e-05
0.0126402
-4.81534e-05
0.0126345
-5.52607e-05
0.0126284
-6.22651e-05
0.012622
-6.9165e-05
0.0126153
-7.59591e-05
0.0126083
-8.26459e-05
0.0126009
-8.92238e-05
0.0125933
-9.56914e-05
0.0125854
-0.000102047
0.0125771
-0.00010829
0.0125686
-0.000114418
0.0125598
-0.000120431
0.0125507
-0.000126326
0.0125413
-0.000132102
0.0125317
-0.000137759
0.0125219
-0.000143295
0.0125117
-0.000148709
0.0125014
-0.000153999
0.0124908
-0.000159166
0.01248
-0.000164208
0.012469
-0.000169125
0.0124578
-0.000173915
0.0124464
-0.000178578
0.0124348
-0.000183114
0.012423
-0.000187523
0.012411
-0.000191803
0.0123989
-0.000195956
0.0123866
-0.00019998
0.0123742
-0.000203877
0.0123616
-0.000207646
0.0123489
-0.000211288
0.0123361
-0.000214803
0.0123232
-0.000218192
0.0123101
-0.000221455
0.012297
-0.000224595
0.0122838
-0.00022761
0.0122705
-0.000230504
0.0122571
-0.000233276
0.0122437
-0.000235929
0.0122302
-0.000238463
0.0122167
-0.000240881
0.0122031
-0.000243184
0.0121895
-0.000245374
0.0121758
-0.000247453
0.0121622
-0.000249422
0.0121485
-0.000251284
0.0121348
-0.000253041
0.0121211
-0.000254695
0.0121075
-0.000256249
0.0120938
-0.000257704
0.0120801
-0.000259063
0.0120665
-0.00026033
0.0120529
-0.000261505
0.0120393
-0.000262591
0.0120258
-0.000263592
0.0120123
-0.00026451
0.0119989
-0.000265347
0.0119855
-0.000266106
0.0119721
-0.000266789
0.0119588
-0.0002674
0.0119456
-0.00026794
0.0119324
-0.000268413
0.0119193
-0.000268821
0.0119062
-0.000269167
0.0118932
-0.000269452
0.0118803
-0.000269681
0.0118675
-0.000269854
0.0118547
-0.000269975
0.011842
-0.000270047
0.0118294
-0.000270071
0.0118168
-0.00027005
0.0118044
-0.000269986
0.011792
-0.000269882
0.0117797
-0.00026974
0.0117674
-0.000269562
0.0117553
-0.000269351
0.0117432
-0.000269108
0.0117312
-0.000268835
0.0117193
-0.000268535
0.0117075
-0.00026821
0.0116957
-0.000267861
0.0116841
-0.000267492
0.0116725
-0.000267102
0.011661
-0.000266695
0.0116495
-0.000266272
0.0116382
-0.000265835
0.0116269
-0.000265385
0.0116157
-0.000264925
0.0116045
-0.000264456
0.0115935
-0.000263979
0.0115825
-0.000263497
0.0115716
-0.00026301
0.0115607
-0.00026252
0.01155
-0.000262029
0.0115393
-0.000261539
0.0115286
-0.00026105
0.0115181
-0.000260564
0.0115076
-0.000260082
0.0114971
-0.000259606
0.0114868
-0.000259137
0.0114764
-0.000258676
0.0114662
-0.000258225
0.011456
-0.000257785
0.0114458
-0.000257356
0.0114357
-0.000256941
0.0114257
-0.00025654
0.0114157
-0.000256154
0.0114058
-0.000255784
0.0113959
-0.000255432
0.011386
-0.000255098
0.0113762
-0.000254783
0.0113664
-0.000254489
0.0113567
-0.000254215
0.011347
-0.000253964
0.0113373
-0.000253735
0.0113276
-0.000253529
0.011318
-0.000253348
0.0113084
-0.000253191
0.0112988
-0.000253059
0.0112893
-0.000252953
0.0112797
-0.000252873
0.0112701
-0.000252818
0.0112606
-0.000252796
0.0112511
-0.000252785
-0.000252838
0.012201
0.000426031
-0.0121769
0.0122244
0.000417663
0.0122471
0.000409087
0.0122689
0.000400409
0.01229
0.000391642
0.0123103
0.00038278
0.0123299
0.000373822
0.0123488
0.000364778
0.0123669
0.000355661
0.0123844
0.000346487
0.0124011
0.000337266
0.0124172
0.000328008
0.0124325
0.000318722
0.0124472
0.000309415
0.0124613
0.000300095
0.0124747
0.000290771
0.0124875
0.000281447
0.0124997
0.000272131
0.0125113
0.000262829
0.0125222
0.000253545
0.0125326
0.000244285
0.0125425
0.000235053
0.0125518
0.000225854
0.0125605
0.000216691
0.0125687
0.000207567
0.0125763
0.000198487
0.0125835
0.000189454
0.0125901
0.000180469
0.0125962
0.000171537
0.0126018
0.000162659
0.012607
0.000153838
0.0126116
0.000145076
0.0126158
0.000136376
0.0126195
0.000127738
0.0126228
0.000119165
0.0126256
0.000110659
0.012628
0.000102221
0.01263
9.38535e-05
0.0126315
8.55572e-05
0.0126326
7.73338e-05
0.0126332
6.91848e-05
0.0126335
6.11116e-05
0.0126333
5.31157e-05
0.0126328
4.51983e-05
0.0126318
3.73608e-05
0.0126305
2.96047e-05
0.0126288
2.19311e-05
0.0126267
1.43414e-05
0.0126242
6.83697e-06
0.0126213
-5.82022e-07
0.0126181
-7.91052e-06
0.0126146
-1.5151e-05
0.0126106
-2.23007e-05
0.0126063
-2.93584e-05
0.0126017
-3.63227e-05
0.0125968
-4.31922e-05
0.0125915
-4.99656e-05
0.0125858
-5.66414e-05
0.0125799
-6.32182e-05
0.0125736
-6.96947e-05
0.0125671
-7.60695e-05
0.0125602
-8.23413e-05
0.012553
-8.85087e-05
0.0125455
-9.45704e-05
0.0125378
-0.000100525
0.0125297
-0.000106372
0.0125214
-0.000112108
0.0125128
-0.000117735
0.0125039
-0.000123249
0.0124948
-0.000128651
0.0124855
-0.000133939
0.0124759
-0.000139111
0.012466
-0.000144168
0.012456
-0.000149109
0.0124457
-0.000153932
0.0124352
-0.000158637
0.0124245
-0.000163223
0.0124136
-0.000167691
0.0124026
-0.000172039
0.0123913
-0.000176267
0.0123799
-0.000180375
0.0123683
-0.000184363
0.0123565
-0.000188232
0.0123446
-0.00019198
0.0123326
-0.000195609
0.0123204
-0.000199119
0.0123081
-0.00020251
0.0122957
-0.000205783
0.0122832
-0.000208938
0.0122706
-0.000211977
0.0122579
-0.0002149
0.0122451
-0.000217709
0.0122322
-0.000220404
0.0122193
-0.000222987
0.0122063
-0.000225459
0.0121932
-0.000227821
0.0121801
-0.000230075
0.012167
-0.000232224
0.0121538
-0.000234267
0.0121406
-0.000236208
0.0121273
-0.000238048
0.0121141
-0.000239789
0.0121008
-0.000241433
0.0120875
-0.000242982
0.0120743
-0.000244438
0.012061
-0.000245803
0.0120478
-0.000247081
0.0120345
-0.000248272
0.0120213
-0.000249379
0.0120081
-0.000250405
0.011995
-0.000251352
0.0119819
-0.000252222
0.0119688
-0.000253018
0.0119557
-0.000253741
0.0119427
-0.000254395
0.0119298
-0.000254982
0.0119168
-0.000255505
0.011904
-0.000255965
0.0118912
-0.000256365
0.0118784
-0.000256707
0.0118658
-0.000256994
0.0118531
-0.000257229
0.0118406
-0.000257412
0.0118281
-0.000257548
0.0118156
-0.000257637
0.0118033
-0.000257683
0.011791
-0.000257687
0.0117787
-0.000257652
0.0117666
-0.000257579
0.0117545
-0.000257472
0.0117425
-0.000257331
0.0117305
-0.000257159
0.0117186
-0.000256958
0.0117068
-0.00025673
0.0116951
-0.000256476
0.0116834
-0.000256199
0.0116718
-0.000255901
0.0116603
-0.000255583
0.0116489
-0.000255247
0.0116375
-0.000254895
0.0116262
-0.000254528
0.011615
-0.000254148
0.0116038
-0.000253757
0.0115927
-0.000253357
0.0115817
-0.000252948
0.0115707
-0.000252532
0.0115598
-0.000252112
0.011549
-0.000251687
0.0115382
-0.000251261
0.0115275
-0.000250833
0.0115169
-0.000250406
0.0115063
-0.000249981
0.0114957
-0.000249559
0.0114853
-0.000249141
0.0114749
-0.000248729
0.0114645
-0.000248323
0.0114542
-0.000247926
0.011444
-0.000247538
0.0114338
-0.000247159
0.0114236
-0.000246793
0.0114135
-0.000246438
0.0114035
-0.000246097
0.0113935
-0.000245771
0.0113835
-0.000245459
0.0113735
-0.000245164
0.0113637
-0.000244886
0.0113538
-0.000244626
0.011344
-0.000244385
0.0113342
-0.000244163
0.0113244
-0.000243962
0.0113146
-0.000243781
0.0113049
-0.000243621
0.0112952
-0.000243484
0.0112855
-0.000243369
0.0112758
-0.000243276
0.0112662
-0.000243208
0.0112565
-0.000243161
0.0112469
-0.000243144
0.0112372
-0.000243137
-0.000243188
0.0121519
0.000402551
-0.0121285
0.0121747
0.000394894
0.0121968
0.000387034
0.0122181
0.000379063
0.0122388
0.000370998
0.0122587
0.00036283
0.012278
0.00035456
0.0122965
0.000346198
0.0123145
0.000337757
0.0123317
0.00032925
0.0123483
0.000320687
0.0123642
0.000312078
0.0123795
0.000303431
0.0123941
0.000294754
0.0124082
0.000286054
0.0124216
0.00027734
0.0124345
0.000268617
0.0124467
0.000259892
0.0124584
0.00025117
0.0124694
0.000242458
0.01248
0.000233759
0.0124899
0.00022508
0.0124994
0.000216424
0.0125083
0.000207795
0.0125166
0.000199197
0.0125245
0.000190634
0.0125318
0.000182108
0.0125387
0.000173624
0.012545
0.000165185
0.0125509
0.000156791
0.0125563
0.000148448
0.0125612
0.000140155
0.0125657
0.000131917
0.0125697
0.000123736
0.0125732
0.000115612
0.0125763
0.000107548
0.012579
9.95468e-05
0.0125813
9.1609e-05
0.0125831
8.37366e-05
0.0125845
7.59314e-05
0.0125855
6.81947e-05
0.0125861
6.05282e-05
0.0125862
5.29336e-05
0.012586
4.54118e-05
0.0125854
3.79646e-05
0.0125844
3.05938e-05
0.0125831
2.32999e-05
0.0125813
1.60852e-05
0.0125792
8.95023e-06
0.0125767
1.89626e-06
0.0125739
-5.07347e-06
0.0125707
-1.19594e-05
0.0125672
-1.876e-05
0.0125633
-2.54737e-05
0.012559
-3.2099e-05
0.0125545
-3.86351e-05
0.0125496
-4.50799e-05
0.0125444
-5.1433e-05
0.0125389
-5.76921e-05
0.012533
-6.38566e-05
0.0125269
-6.9925e-05
0.0125204
-7.58963e-05
0.0125137
-8.17688e-05
0.0125067
-8.75415e-05
0.0124994
-9.32132e-05
0.0124918
-9.87831e-05
0.0124839
-0.00010425
0.0124758
-0.000109612
0.0124674
-0.000114869
0.0124588
-0.000120019
0.0124499
-0.000125062
0.0124408
-0.000129998
0.0124314
-0.000134824
0.0124219
-0.000139541
0.0124121
-0.000144148
0.0124021
-0.000148644
0.0123919
-0.000153029
0.0123815
-0.000157302
0.0123709
-0.000161463
0.0123602
-0.000165511
0.0123493
-0.000169448
0.0123382
-0.000173272
0.0123269
-0.000176983
0.0123155
-0.000180582
0.012304
-0.00018407
0.0122923
-0.000187446
0.0122805
-0.00019071
0.0122686
-0.000193864
0.0122566
-0.000196908
0.0122444
-0.000199842
0.0122322
-0.000202669
0.0122199
-0.000205387
0.0122075
-0.000208
0.012195
-0.000210507
0.0121824
-0.000212911
0.0121698
-0.000215211
0.0121572
-0.00021741
0.0121445
-0.00021951
0.0121317
-0.000221511
0.0121189
-0.000223415
0.0121061
-0.000225225
0.0120932
-0.000226942
0.0120804
-0.000228567
0.0120675
-0.000230102
0.0120546
-0.00023155
0.0120417
-0.000232913
0.0120288
-0.000234192
0.0120159
-0.00023539
0.0120031
-0.000236508
0.0119902
-0.000237549
0.0119774
-0.000238515
0.0119646
-0.000239408
0.0119518
-0.000240231
0.011939
-0.000240985
0.0119263
-0.000241673
0.0119136
-0.000242296
0.011901
-0.000242858
0.0118884
-0.00024336
0.0118758
-0.000243805
0.0118633
-0.000244194
0.0118508
-0.000244531
0.0118384
-0.000244816
0.0118261
-0.000245053
0.0118137
-0.000245243
0.0118015
-0.000245389
0.0117893
-0.000245492
0.0117772
-0.000245555
0.0117651
-0.00024558
0.0117531
-0.000245568
0.0117411
-0.000245522
0.0117293
-0.000245443
0.0117174
-0.000245334
0.0117057
-0.000245197
0.011694
-0.000245032
0.0116823
-0.000244843
0.0116708
-0.00024463
0.0116593
-0.000244396
0.0116478
-0.000244142
0.0116364
-0.00024387
0.0116251
-0.000243582
0.0116139
-0.000243279
0.0116027
-0.000242962
0.0115916
-0.000242634
0.0115805
-0.000242295
0.0115695
-0.000241948
0.0115586
-0.000241593
0.0115477
-0.000241233
0.0115369
-0.000240868
0.0115261
-0.000240499
0.0115154
-0.00024013
0.0115048
-0.000239759
0.0114942
-0.000239389
0.0114836
-0.000239021
0.0114731
-0.000238656
0.0114627
-0.000238296
0.0114523
-0.000237941
0.011442
-0.000237592
0.0114317
-0.000237252
0.0114215
-0.000236919
0.0114113
-0.000236597
0.0114011
-0.000236285
0.011391
-0.000235985
0.0113809
-0.000235698
0.0113709
-0.000235424
0.0113609
-0.000235164
0.0113509
-0.000234919
0.011341
-0.00023469
0.0113311
-0.000234478
0.0113212
-0.000234283
0.0113114
-0.000234106
0.0113015
-0.000233948
0.0112917
-0.000233808
0.0112819
-0.000233688
0.0112721
-0.000233588
0.0112624
-0.000233508
0.0112526
-0.00023345
0.0112429
-0.00023341
0.0112331
-0.000233398
0.0112234
-0.000233393
-0.000233442
0.0121057
0.000379777
-0.012083
0.0121279
0.000372766
0.0121493
0.000365559
0.0121702
0.00035824
0.0121903
0.00035082
0.0122099
0.000343294
0.0122288
0.000335664
0.012247
0.000327938
0.0122647
0.000320128
0.0122817
0.000312246
0.0122981
0.000304302
0.0123138
0.000296305
0.012329
0.000288263
0.0123436
0.000280184
0.0123575
0.000272074
0.0123709
0.000263942
0.0123838
0.000255793
0.012396
0.000247634
0.0124077
0.000239471
0.0124189
0.000231308
0.0124295
0.000223152
0.0124396
0.000215006
0.0124491
0.000206876
0.0124581
0.000198765
0.0124667
0.000190678
0.0124747
0.000182618
0.0124822
0.000174588
0.0124892
0.000166592
0.0124958
0.000158633
0.0125019
0.000150714
0.0125075
0.000142837
0.0125126
0.000135005
0.0125173
0.000127221
0.0125216
0.000119487
0.0125254
0.000111804
0.0125287
0.000104175
0.0125317
9.66025e-05
0.0125342
8.90876e-05
0.0125363
8.16324e-05
0.012538
7.42386e-05
0.0125393
6.69079e-05
0.0125402
5.96419e-05
0.0125407
5.24422e-05
0.0125408
4.53104e-05
0.0125405
3.82479e-05
0.0125398
3.12561e-05
0.0125388
2.43367e-05
0.0125374
1.74908e-05
0.0125356
1.07199e-05
0.0125335
4.02529e-06
0.012531
-2.59141e-06
0.0125282
-9.12833e-06
0.012525
-1.55852e-05
0.0125215
-2.19603e-05
0.0125176
-2.82524e-05
0.0125135
-3.44602e-05
0.012509
-4.05823e-05
0.0125041
-4.66175e-05
0.012499
-5.25647e-05
0.0124936
-5.84225e-05
0.0124878
-6.41897e-05
0.0124818
-6.98653e-05
0.0124755
-7.54479e-05
0.0124689
-8.09366e-05
0.012462
-8.63303e-05
0.0124549
-9.16278e-05
0.0124474
-9.68282e-05
0.0124397
-0.000101931
0.0124318
-0.000106934
0.0124236
-0.000111837
0.0124152
-0.00011664
0.0124066
-0.000121341
0.0123977
-0.00012594
0.0123886
-0.000130436
0.0123792
-0.000134829
0.0123697
-0.000139118
0.01236
-0.000143302
0.0123501
-0.000147382
0.01234
-0.000151357
0.0123297
-0.000155227
0.0123192
-0.000158992
0.0123086
-0.000162651
0.0122978
-0.000166205
0.0122869
-0.000169654
0.0122758
-0.000172998
0.0122646
-0.000176238
0.0122533
-0.000179373
0.0122418
-0.000182406
0.0122303
-0.000185335
0.0122186
-0.000188162
0.0122068
-0.000190887
0.0121949
-0.000193512
0.012183
-0.000196038
0.0121709
-0.000198464
0.0121588
-0.000200793
0.0121466
-0.000203026
0.0121344
-0.000205164
0.0121221
-0.000207208
0.0121097
-0.000209161
0.0120973
-0.000211022
0.0120849
-0.000212794
0.0120724
-0.000214478
0.0120599
-0.000216077
0.0120474
-0.000217591
0.0120349
-0.000219023
0.0120224
-0.000220374
0.0120098
-0.000221646
0.0119973
-0.000222842
0.0119847
-0.000223962
0.0119722
-0.00022501
0.0119596
-0.000225986
0.0119471
-0.000226893
0.0119346
-0.000227733
0.0119222
-0.000228508
0.0119097
-0.00022922
0.0118973
-0.000229871
0.0118849
-0.000230464
0.0118725
-0.000230999
0.0118602
-0.000231479
0.0118479
-0.000231906
0.0118357
-0.000232283
0.0118235
-0.000232611
0.0118113
-0.000232892
0.0117992
-0.000233128
0.0117871
-0.000233321
0.0117751
-0.000233474
0.0117631
-0.000233587
0.0117512
-0.000233663
0.0117393
-0.000233704
0.0117275
-0.000233712
0.0117158
-0.000233688
0.0117041
-0.000233634
0.0116924
-0.000233552
0.0116808
-0.000233444
0.0116693
-0.000233311
0.0116578
-0.000233155
0.0116464
-0.000232978
0.0116351
-0.000232782
0.0116238
-0.000232567
0.0116125
-0.000232336
0.0116013
-0.000232089
0.0115902
-0.000231829
0.0115791
-0.000231558
0.0115681
-0.000231275
0.0115571
-0.000230983
0.0115462
-0.000230684
0.0115354
-0.000230378
0.0115246
-0.000230066
0.0115138
-0.000229751
0.0115031
-0.000229433
0.0114925
-0.000229114
0.0114819
-0.000228794
0.0114713
-0.000228476
0.0114608
-0.000228159
0.0114504
-0.000227846
0.01144
-0.000227536
0.0114296
-0.000227232
0.0114193
-0.000226935
0.011409
-0.000226644
0.0113988
-0.000226362
0.0113886
-0.000226089
0.0113784
-0.000225826
0.0113683
-0.000225574
0.0113582
-0.000225334
0.0113482
-0.000225106
0.0113381
-0.000224892
0.0113281
-0.000224691
0.0113182
-0.000224505
0.0113082
-0.000224335
0.0112983
-0.00022418
0.0112884
-0.000224041
0.0112785
-0.00022392
0.0112686
-0.000223815
0.0112588
-0.000223729
0.0112489
-0.00022366
0.0112391
-0.000223611
0.0112293
-0.000223578
0.0112194
-0.000223569
0.0112096
-0.000223566
-0.000223613
0.0120623
0.000357695
-0.0120402
0.0120838
0.000351274
0.0121047
0.000344666
0.012125
0.000337945
0.0121447
0.00033112
0.0121638
0.00032419
0.0121823
0.000317153
0.0122002
0.000310019
0.0122175
0.000302799
0.0122343
0.000295503
0.0122504
0.000288141
0.012266
0.000280721
0.012281
0.000273252
0.0122955
0.000265739
0.0123094
0.00025819
0.0123227
0.000250612
0.0123355
0.000243012
0.0123477
0.000235395
0.0123594
0.000227767
0.0123706
0.000220133
0.0123812
0.000212499
0.0123914
0.000204868
0.012401
0.000197246
0.0124101
0.000189637
0.0124188
0.000182045
0.0124269
0.000174473
0.0124346
0.000166925
0.0124418
0.000159404
0.0124485
0.000151914
0.0124547
0.000144457
0.0124605
0.000137037
0.0124659
0.000129655
0.0124708
0.000122315
0.0124753
0.000115018
0.0124793
0.000107768
0.0124829
0.000100566
0.0124861
9.34139e-05
0.0124889
8.63144e-05
0.0124912
7.9269e-05
0.0124932
7.22796e-05
0.0124948
6.5348e-05
0.0124959
5.84759e-05
0.0124967
5.16648e-05
0.0124971
4.49164e-05
0.0124971
3.82323e-05
0.0124968
3.16139e-05
0.012496
2.50626e-05
0.0124949
1.85801e-05
0.0124935
1.21675e-05
0.0124917
5.82638e-06
0.0124895
-4.43422e-07
0.0124871
-6.63614e-06
0.0124842
-1.2755e-05
0.0124811
-1.87971e-05
0.0124776
-2.47613e-05
0.0124738
-3.0646e-05
0.0124696
-3.64506e-05
0.0124652
-4.21734e-05
0.0124604
-4.78135e-05
0.0124554
-5.33694e-05
0.01245
-5.88404e-05
0.0124444
-6.42252e-05
0.0124385
-6.95227e-05
0.0124323
-7.47318e-05
0.0124258
-7.98517e-05
0.012419
-8.48813e-05
0.012412
-8.98196e-05
0.0124048
-9.46659e-05
0.0123972
-9.94192e-05
0.0123895
-0.000104079
0.0123815
-0.000108644
0.0123733
-0.000113114
0.0123648
-0.000117488
0.0123561
-0.000121766
0.0123473
-0.000125947
0.0123382
-0.00013003
0.0123289
-0.000134016
0.0123194
-0.000137904
0.0123097
-0.000141694
0.0122999
-0.000145385
0.0122899
-0.000148978
0.0122797
-0.000152472
0.0122694
-0.000155868
0.0122589
-0.000159166
0.0122482
-0.000162366
0.0122375
-0.000165468
0.0122266
-0.000168473
0.0122156
-0.000171381
0.0122044
-0.000174192
0.0121932
-0.000176908
0.0121818
-0.000179529
0.0121703
-0.000182056
0.0121588
-0.00018449
0.0121472
-0.000186832
0.0121354
-0.000189082
0.0121237
-0.000191242
0.0121118
-0.000193313
0.0120999
-0.000195296
0.0120879
-0.000197193
0.0120759
-0.000199004
0.0120639
-0.000200732
0.0120518
-0.000202378
0.0120396
-0.000203943
0.0120275
-0.000205428
0.0120153
-0.000206836
0.0120031
-0.000208168
0.0119908
-0.000209426
0.0119786
-0.000210611
0.0119664
-0.000211726
0.0119541
-0.000212771
0.0119419
-0.00021375
0.0119297
-0.000214663
0.0119175
-0.000215512
0.0119052
-0.0002163
0.0118931
-0.000217028
0.0118809
-0.000217698
0.0118687
-0.000218312
0.0118566
-0.000218872
0.0118445
-0.000219379
0.0118324
-0.000219836
0.0118204
-0.000220245
0.0118084
-0.000220607
0.0117964
-0.000220924
0.0117845
-0.000221198
0.0117726
-0.000221431
0.0117607
-0.000221624
0.0117489
-0.00022178
0.0117372
-0.0002219
0.0117255
-0.000221986
0.0117138
-0.000222039
0.0117022
-0.000222062
0.0116906
-0.000222056
0.0116791
-0.000222023
0.0116676
-0.000221964
0.0116561
-0.000221881
0.0116448
-0.000221775
0.0116334
-0.000221649
0.0116222
-0.000221503
0.0116109
-0.000221339
0.0115998
-0.000221159
0.0115886
-0.000220963
0.0115775
-0.000220754
0.0115665
-0.000220533
0.0115555
-0.0002203
0.0115446
-0.000220058
0.0115337
-0.000219808
0.0115229
-0.000219551
0.0115121
-0.000219288
0.0115014
-0.000219021
0.0114907
-0.00021875
0.0114801
-0.000218477
0.0114695
-0.000218203
0.011459
-0.000217929
0.0114485
-0.000217656
0.011438
-0.000217385
0.0114276
-0.000217117
0.0114172
-0.000216854
0.0114069
-0.000216595
0.0113966
-0.000216342
0.0113863
-0.000216097
0.0113761
-0.000215859
0.0113659
-0.00021563
0.0113557
-0.00021541
0.0113456
-0.0002152
0.0113355
-0.000215001
0.0113254
-0.000214814
0.0113153
-0.000214639
0.0113053
-0.000214477
0.0112953
-0.000214328
0.0112853
-0.000214193
0.0112753
-0.000214072
0.0112654
-0.000213967
0.0112554
-0.000213877
0.0112455
-0.000213803
0.0112356
-0.000213743
0.0112257
-0.000213702
0.0112158
-0.000213675
0.0112059
-0.000213669
0.011196
-0.000213669
-0.000213713
0.0120214
0.000336286
-0.012
0.0120423
0.000330405
0.0120626
0.000324346
0.0120824
0.000318175
0.0121016
0.000311902
0.0121203
0.000305522
0.0121384
0.000299038
0.012156
0.000292456
0.012173
0.000285787
0.0121894
0.000279041
0.0122054
0.000272226
0.0122207
0.000265351
0.0122356
0.000258421
0.0122498
0.000251445
0.0122636
0.000244429
0.0122768
0.00023738
0.0122896
0.000230302
0.0123017
0.000223203
0.0123134
0.000216088
0.0123246
0.000208962
0.0123353
0.000201829
0.0123454
0.000194695
0.0123551
0.000187564
0.0123643
0.00018044
0.012373
0.000173326
0.0123813
0.000166228
0.0123891
0.000159147
0.0123964
0.000152089
0.0124032
0.000145055
0.0124096
0.000138049
0.0124156
0.000131073
0.0124211
0.000124131
0.0124262
0.000117224
0.0124309
0.000110356
0.0124351
0.000103529
0.0124389
9.67448e-05
0.0124423
9.00054e-05
0.0124454
8.33131e-05
0.012448
7.66698e-05
0.0124502
7.00775e-05
0.012452
6.35378e-05
0.0124534
5.70525e-05
0.0124544
5.06233e-05
0.0124551
4.42519e-05
0.0124554
3.79397e-05
0.0124553
3.16884e-05
0.0124549
2.54993e-05
0.0124541
1.9374e-05
0.0124529
1.33138e-05
0.0124514
7.32008e-06
0.0124496
1.39356e-06
0.0124474
-4.4623e-06
0.0124449
-1.02482e-05
0.0124421
-1.59625e-05
0.0124389
-2.16039e-05
0.0124355
-2.71711e-05
0.0124317
-3.2663e-05
0.0124276
-3.80784e-05
0.0124232
-4.34162e-05
0.0124185
-4.86753e-05
0.0124135
-5.38546e-05
0.0124082
-5.89531e-05
0.0124027
-6.39697e-05
0.0123968
-6.89036e-05
0.0123907
-7.37537e-05
0.0123844
-7.85193e-05
0.0123778
-8.31993e-05
0.0123709
-8.77931e-05
0.0123638
-9.22997e-05
0.0123564
-9.67187e-05
0.0123488
-0.000101049
0.012341
-0.00010529
0.0123329
-0.000109442
0.0123247
-0.000113504
0.0123162
-0.000117475
0.0123075
-0.000121355
0.0122987
-0.000125143
0.0122896
-0.00012884
0.0122804
-0.000132445
0.0122709
-0.000135959
0.0122613
-0.00013938
0.0122516
-0.000142709
0.0122416
-0.000145946
0.0122316
-0.000149092
0.0122213
-0.000152146
0.012211
-0.000155109
0.0122005
-0.00015798
0.0121899
-0.000160762
0.0121791
-0.000163453
0.0121683
-0.000166056
0.0121573
-0.000168569
0.0121463
-0.000170994
0.0121351
-0.000173333
0.0121239
-0.000175585
0.0121125
-0.000177752
0.0121011
-0.000179834
0.0120896
-0.000181833
0.0120781
-0.00018375
0.0120665
-0.000185586
0.0120548
-0.000187342
0.0120431
-0.000189019
0.0120314
-0.00019062
0.0120196
-0.000192144
0.0120077
-0.000193595
0.0119959
-0.000194972
0.011984
-0.000196278
0.0119721
-0.000197514
0.0119601
-0.000198682
0.0119482
-0.000199783
0.0119362
-0.00020082
0.0119243
-0.000201792
0.0119123
-0.000202704
0.0119004
-0.000203555
0.0118884
-0.000204347
0.0118765
-0.000205084
0.0118645
-0.000205765
0.0118526
-0.000206393
0.0118407
-0.00020697
0.0118288
-0.000207497
0.011817
-0.000207975
0.0118051
-0.000208408
0.0117933
-0.000208796
0.0117815
-0.000209142
0.0117698
-0.000209446
0.0117581
-0.000209711
0.0117464
-0.000209938
0.0117347
-0.000210129
0.0117231
-0.000210286
0.0117115
-0.00021041
0.0117
-0.000210502
0.0116885
-0.000210565
0.011677
-0.0002106
0.0116656
-0.000210609
0.0116543
-0.000210592
0.0116429
-0.000210553
0.0116316
-0.000210491
0.0116204
-0.000210408
0.0116092
-0.000210307
0.0115981
-0.000210187
0.011587
-0.000210052
0.0115759
-0.000209901
0.0115649
-0.000209737
0.0115539
-0.000209561
0.011543
-0.000209373
0.0115321
-0.000209176
0.0115213
-0.00020897
0.0115105
-0.000208757
0.0114997
-0.000208537
0.011489
-0.000208313
0.0114783
-0.000208084
0.0114677
-0.000207853
0.0114571
-0.00020762
0.0114466
-0.000207386
0.0114361
-0.000207152
0.0114256
-0.000206919
0.0114152
-0.000206689
0.0114048
-0.000206462
0.0113944
-0.000206239
0.0113841
-0.00020602
0.0113738
-0.000205807
0.0113636
-0.000205601
0.0113533
-0.000205402
0.0113431
-0.000205211
0.011333
-0.000205029
0.0113228
-0.000204856
0.0113127
-0.000204694
0.0113026
-0.000204542
0.0112925
-0.000204401
0.0112825
-0.000204272
0.0112724
-0.000204155
0.0112624
-0.00020405
0.0112524
-0.000203959
0.0112424
-0.000203882
0.0112324
-0.000203818
0.0112225
-0.000203768
0.0112125
-0.000203733
0.0112025
-0.000203711
0.0111926
-0.000203709
0.0111826
-0.000203709
-0.000203751
0.0119831
0.000315524
-0.0119623
0.0120033
0.000310138
0.0120231
0.000304586
0.0120424
0.000298922
0.0120611
0.000293159
0.0120793
0.000287291
0.0120971
0.00028132
0.0121143
0.000275254
0.0121309
0.000269101
0.0121471
0.000262871
0.0121628
0.000256571
0.0121779
0.000250208
0.0121925
0.00024379
0.0122067
0.000237323
0.0122203
0.000230813
0.0122334
0.000224265
0.012246
0.000217687
0.0122581
0.000211083
0.0122698
0.000204459
0.0122809
0.000197819
0.0122916
0.000191169
0.0123017
0.000184512
0.0123115
0.000177854
0.0123207
0.000171198
0.0123295
0.000164548
0.0123378
0.000157908
0.0123457
0.000151281
0.0123531
0.000144671
0.0123601
0.00013808
0.0123666
0.000131512
0.0123727
0.00012497
0.0123784
0.000118457
0.0123836
0.000111974
0.0123884
0.000105525
0.0123929
9.91106e-05
0.0123969
9.27351e-05
0.0124005
8.63995e-05
0.0124037
8.01063e-05
0.0124065
7.3857e-05
0.0124089
6.76541e-05
0.012411
6.14987e-05
0.0124126
5.53934e-05
0.0124139
4.9339e-05
0.0124148
4.33379e-05
0.0124154
3.73912e-05
0.0124156
3.15006e-05
0.0124154
2.56676e-05
0.0124149
1.98935e-05
0.012414
1.41799e-05
0.0124128
8.52791e-06
0.0124113
2.93894e-06
0.0124094
-2.58563e-06
0.0124072
-8.04376e-06
0.0124046
-1.34356e-05
0.0124018
-1.87594e-05
0.0123986
-2.4014e-05
0.0123952
-2.91982e-05
0.0123914
-3.43109e-05
0.0123873
-3.93511e-05
0.012383
-4.43178e-05
0.0123783
-4.92098e-05
0.0123734
-5.40263e-05
0.0123682
-5.87662e-05
0.0123627
-6.34288e-05
0.012357
-6.80129e-05
0.012351
-7.25182e-05
0.0123447
-7.69433e-05
0.0123382
-8.12877e-05
0.0123315
-8.55511e-05
0.0123245
-8.97321e-05
0.0123173
-9.38306e-05
0.0123098
-9.78457e-05
0.0123022
-0.000101777
0.0122943
-0.000105625
0.0122862
-0.000109387
0.0122779
-0.000113065
0.0122694
-0.000116657
0.0122608
-0.000120164
0.0122519
-0.000123586
0.0122429
-0.000126921
0.0122336
-0.000130171
0.0122243
-0.000133334
0.0122147
-0.000136412
0.0122051
-0.000139405
0.0121952
-0.000142312
0.0121852
-0.000145134
0.0121751
-0.000147871
0.0121649
-0.000150524
0.0121545
-0.000153093
0.0121441
-0.000155578
0.0121335
-0.000157982
0.0121228
-0.000160302
0.012112
-0.000162542
0.0121011
-0.0001647
0.0120901
-0.00016678
0.0120791
-0.00016878
0.0120679
-0.000170702
0.0120567
-0.000172548
0.0120455
-0.000174318
0.0120341
-0.000176013
0.0120228
-0.000177635
0.0120113
-0.000179184
0.0119998
-0.000180663
0.0119883
-0.000182072
0.0119768
-0.000183413
0.0119652
-0.000184686
0.0119536
-0.000185894
0.0119419
-0.000187038
0.0119302
-0.000188119
0.0119186
-0.00018914
0.0119069
-0.0001901
0.0118952
-0.000191002
0.0118835
-0.000191848
0.0118718
-0.000192639
0.01186
-0.000193376
0.0118483
-0.000194061
0.0118366
-0.000194696
0.011825
-0.000195283
0.0118133
-0.000195822
0.0118016
-0.000196315
0.01179
-0.000196765
0.0117784
-0.000197173
0.0117668
-0.00019754
0.0117552
-0.000197867
0.0117436
-0.000198157
0.0117321
-0.000198411
0.0117206
-0.000198631
0.0117091
-0.000198817
0.0116977
-0.000198972
0.0116863
-0.000199097
0.0116749
-0.000199194
0.0116636
-0.000199263
0.0116523
-0.000199307
0.011641
-0.000199327
0.0116298
-0.000199324
0.0116186
-0.0001993
0.0116074
-0.000199256
0.0115963
-0.000199193
0.0115853
-0.000199113
0.0115742
-0.000199016
0.0115632
-0.000198906
0.0115523
-0.000198781
0.0115413
-0.000198644
0.0115305
-0.000198496
0.0115196
-0.000198338
0.0115088
-0.000198172
0.0114981
-0.000197997
0.0114874
-0.000197816
0.0114767
-0.00019763
0.011466
-0.000197439
0.0114554
-0.000197245
0.0114448
-0.000197048
0.0114343
-0.000196851
0.0114238
-0.000196652
0.0114133
-0.000196454
0.0114029
-0.000196257
0.0113925
-0.000196063
0.0113821
-0.000195871
0.0113718
-0.000195683
0.0113615
-0.0001955
0.0113512
-0.000195323
0.011341
-0.000195151
0.0113307
-0.000194986
0.0113205
-0.000194829
0.0113104
-0.000194679
0.0113002
-0.000194539
0.0112901
-0.000194407
0.01128
-0.000194285
0.0112699
-0.000194174
0.0112598
-0.000194073
0.0112497
-0.000193983
0.0112397
-0.000193905
0.0112296
-0.000193839
0.0112196
-0.000193785
0.0112096
-0.000193742
0.0111995
-0.000193714
0.0111895
-0.000193696
0.0111795
-0.000193696
0.0111695
-0.000193698
-0.000193738
0.0119471
0.000295379
-0.0119269
0.0119668
0.00029045
0.011986
0.000285364
0.0120048
0.000280171
0.012023
0.00027488
0.0120408
0.000269489
0.0120582
0.000263998
0.012075
0.000258413
0.0120914
0.000252744
0.0121072
0.000246998
0.0121226
0.000241183
0.0121375
0.000235304
0.0121519
0.00022937
0.0121659
0.000223384
0.0121793
0.000217354
0.0121923
0.000211285
0.0122048
0.000205182
0.0122169
0.000199051
0.0122284
0.000192897
0.0122395
0.000186724
0.0122501
0.000180537
0.0122603
0.00017434
0.01227
0.000168137
0.0122793
0.000161933
0.0122881
0.000155731
0.0122965
0.000149534
0.0123044
0.000143347
0.0123119
0.000137172
0.012319
0.000131012
0.0123256
0.000124871
0.0123318
0.000118751
0.0123376
0.000112654
0.012343
0.000106585
0.012348
0.000100544
0.0123526
9.4534e-05
0.0123568
8.85579e-05
0.0123606
8.26174e-05
0.0123639
7.67146e-05
0.012367
7.08515e-05
0.0123696
6.50299e-05
0.0123718
5.92518e-05
0.0123737
5.35187e-05
0.0123752
4.78325e-05
0.0123763
4.21948e-05
0.0123771
3.6607e-05
0.0123776
3.10708e-05
0.0123776
2.55877e-05
0.0123774
2.01589e-05
0.0123768
1.4786e-05
0.0123758
9.47015e-06
0.0123746
4.21263e-06
0.012373
-9.85542e-07
0.012371
-6.12139e-06
0.0123688
-1.11957e-05
0.0123662
-1.62069e-05
0.0123634
-2.11536e-05
0.0123602
-2.60349e-05
0.0123568
-3.08496e-05
0.012353
-3.55967e-05
0.012349
-4.02752e-05
0.0123446
-4.48842e-05
0.01234
-4.94227e-05
0.0123352
-5.38898e-05
0.01233
-5.82848e-05
0.0123246
-6.26067e-05
0.0123189
-6.68549e-05
0.012313
-7.10285e-05
0.0123069
-7.51268e-05
0.0123005
-7.91493e-05
0.0122938
-8.30953e-05
0.012287
-8.69642e-05
0.0122799
-9.07555e-05
0.0122726
-9.44688e-05
0.012265
-9.81036e-05
0.0122573
-0.00010166
0.0122494
-0.000105136
0.0122413
-0.000108534
0.0122329
-0.000111851
0.0122244
-0.000115089
0.0122158
-0.000118247
0.0122069
-0.000121325
0.0121979
-0.000124324
0.0121887
-0.000127242
0.0121794
-0.00013008
0.0121699
-0.00013284
0.0121603
-0.000135519
0.0121506
-0.00013812
0.0121407
-0.000140643
0.0121307
-0.000143087
0.0121206
-0.000145453
0.0121103
-0.000147743
0.0121
-0.000149956
0.0120895
-0.000152093
0.012079
-0.000154155
0.0120684
-0.000156143
0.0120576
-0.000158058
0.0120468
-0.000159899
0.012036
-0.000161669
0.012025
-0.000163369
0.012014
-0.000164998
0.0120029
-0.000166559
0.0119918
-0.000168053
0.0119806
-0.00016948
0.0119694
-0.000170842
0.0119581
-0.00017214
0.0119468
-0.000173376
0.0119354
-0.00017455
0.0119241
-0.000175664
0.0119127
-0.000176719
0.0119012
-0.000177717
0.0118898
-0.000178658
0.0118783
-0.000179545
0.0118669
-0.000180379
0.0118554
-0.000181161
0.0118439
-0.000181893
0.0118324
-0.000182576
0.0118209
-0.000183211
0.0118095
-0.0001838
0.011798
-0.000184345
0.0117865
-0.000184847
0.0117751
-0.000185308
0.0117636
-0.000185728
0.0117522
-0.000186109
0.0117408
-0.000186454
0.0117294
-0.000186762
0.011718
-0.000187037
0.0117066
-0.000187278
0.0116953
-0.000187488
0.011684
-0.000187668
0.0116727
-0.00018782
0.0116615
-0.000187944
0.0116503
-0.000188042
0.0116391
-0.000188116
0.0116279
-0.000188166
0.0116168
-0.000188194
0.0116057
-0.000188202
0.0115946
-0.000188191
0.0115836
-0.000188161
0.0115726
-0.000188115
0.0115616
-0.000188052
0.0115507
-0.000187976
0.0115398
-0.000187886
0.0115289
-0.000187783
0.0115181
-0.00018767
0.0115073
-0.000187547
0.0114966
-0.000187415
0.0114858
-0.000187275
0.0114752
-0.000187128
0.0114645
-0.000186976
0.0114539
-0.000186818
0.0114433
-0.000186657
0.0114327
-0.000186493
0.0114222
-0.000186327
0.0114117
-0.00018616
0.0114013
-0.000185993
0.0113908
-0.000185826
0.0113804
-0.000185661
0.0113701
-0.000185498
0.0113597
-0.000185337
0.0113494
-0.000185181
0.0113391
-0.000185029
0.0113288
-0.000184881
0.0113186
-0.00018474
0.0113084
-0.000184605
0.0112982
-0.000184476
0.011288
-0.000184355
0.0112778
-0.000184242
0.0112677
-0.000184138
0.0112575
-0.000184042
0.0112474
-0.000183956
0.0112373
-0.000183879
0.0112272
-0.000183812
0.0112171
-0.000183756
0.0112071
-0.00018371
0.011197
-0.000183675
0.0111869
-0.000183652
0.0111769
-0.000183638
0.0111668
-0.00018364
0.0111568
-0.000183643
-0.00018368
0.0119134
0.000275821
-0.0118938
0.0119325
0.000271314
0.0119512
0.000266659
0.0119695
0.000261903
0.0119873
0.000257052
0.0120047
0.000252104
0.0120216
0.000247061
0.0120381
0.000241928
0.0120542
0.000236713
0.0120697
0.000231422
0.0120849
0.000226064
0.0120995
0.000220643
0.0121137
0.000215166
0.0121275
0.000209638
0.0121408
0.000204064
0.0121536
0.000198451
0.012166
0.000192802
0.0121779
0.000187123
0.0121894
0.000181418
0.0122004
0.000175692
0.012211
0.00016995
0.0122211
0.000164195
0.0122309
0.000158432
0.0122401
0.000152663
0.012249
0.000146894
0.0122574
0.000141126
0.0122653
0.000135364
0.0122729
0.000129611
0.0122801
0.00012387
0.0122868
0.000118143
0.0122931
0.000112433
0.012299
0.000106743
0.0123045
0.000101076
0.0123096
9.54336e-05
0.0123143
8.98184e-05
0.0123187
8.42327e-05
0.0123226
7.86783e-05
0.0123262
7.31578e-05
0.0123293
6.76725e-05
0.0123321
6.22247e-05
0.0123346
5.68159e-05
0.0123367
5.14482e-05
0.0123384
4.6123e-05
0.0123397
4.08419e-05
0.0123407
3.56066e-05
0.0123414
3.04184e-05
0.0123417
2.5279e-05
0.0123416
2.01897e-05
0.0123413
1.51516e-05
0.0123406
1.01665e-05
0.0123396
5.23515e-06
0.0123382
3.57403e-07
0.0123366
-4.4606e-06
0.0123346
-9.22273e-06
0.0123323
-1.39262e-05
0.0123297
-1.85699e-05
0.0123268
-2.31525e-05
0.0123237
-2.76738e-05
0.0123202
-3.21318e-05
0.0123165
-3.65265e-05
0.0123124
-4.08564e-05
0.0123081
-4.51208e-05
0.0123036
-4.93188e-05
0.0122987
-5.34497e-05
0.0122936
-5.75127e-05
0.0122883
-6.15071e-05
0.0122827
-6.54321e-05
0.0122768
-6.92871e-05
0.0122708
-7.30717e-05
0.0122644
-7.67849e-05
0.0122579
-8.04267e-05
0.0122512
-8.3996e-05
0.0122442
-8.7493e-05
0.012237
-9.0917e-05
0.0122296
-9.42677e-05
0.012222
-9.75449e-05
0.0122142
-0.000100748
0.0122062
-0.000103877
0.0121981
-0.000106932
0.0121898
-0.000109913
0.0121813
-0.00011282
0.0121726
-0.000115652
0.0121637
-0.00011841
0.0121548
-0.000121094
0.0121456
-0.000123704
0.0121363
-0.000126241
0.0121269
-0.000128704
0.0121174
-0.000131094
0.0121077
-0.000133411
0.0120979
-0.000135657
0.012088
-0.000137831
0.012078
-0.000139933
0.0120678
-0.000141965
0.0120576
-0.000143928
0.0120473
-0.000145821
0.0120369
-0.000147645
0.0120264
-0.000149403
0.0120158
-0.000151093
0.0120052
-0.000152718
0.0119944
-0.000154278
0.0119837
-0.000155774
0.0119728
-0.000157206
0.0119619
-0.000158577
0.0119509
-0.000159887
0.0119399
-0.000161138
0.0119289
-0.00016233
0.0119178
-0.000163464
0.0119067
-0.000164543
0.0118955
-0.000165566
0.0118844
-0.000166536
0.0118732
-0.000167453
0.0118619
-0.000168319
0.0118507
-0.000169135
0.0118394
-0.000169902
0.0118282
-0.000170623
0.0118169
-0.000171297
0.0118056
-0.000171927
0.0117943
-0.000172513
0.011783
-0.000173058
0.0117717
-0.000173562
0.0117605
-0.000174026
0.0117492
-0.000174453
0.0117379
-0.000174844
0.0117267
-0.000175199
0.0117154
-0.00017552
0.0117042
-0.000175809
0.011693
-0.000176067
0.0116818
-0.000176295
0.0116706
-0.000176494
0.0116595
-0.000176666
0.0116483
-0.000176812
0.0116372
-0.000176933
0.0116261
-0.000177031
0.0116151
-0.000177106
0.011604
-0.000177161
0.011593
-0.000177195
0.011582
-0.000177211
0.0115711
-0.00017721
0.0115602
-0.000177192
0.0115493
-0.000177158
0.0115384
-0.000177111
0.0115276
-0.000177051
0.0115168
-0.000176979
0.011506
-0.000176896
0.0114953
-0.000176803
0.0114845
-0.000176701
0.0114739
-0.000176591
0.0114632
-0.000176474
0.0114526
-0.000176352
0.011442
-0.000176224
0.0114314
-0.000176092
0.0114209
-0.000175957
0.0114104
-0.000175819
0.0113999
-0.00017568
0.0113894
-0.00017554
0.011379
-0.0001754
0.0113686
-0.000175261
0.0113582
-0.000175123
0.0113479
-0.000174987
0.0113376
-0.000174854
0.0113273
-0.000174724
0.011317
-0.000174599
0.0113067
-0.000174478
0.0112965
-0.000174363
0.0112862
-0.000174253
0.011276
-0.00017415
0.0112659
-0.000174053
0.0112557
-0.000173964
0.0112455
-0.000173882
0.0112354
-0.000173809
0.0112252
-0.000173743
0.0112151
-0.000173687
0.011205
-0.000173639
0.0111949
-0.000173601
0.0111848
-0.000173572
0.0111747
-0.000173553
0.0111646
-0.000173543
0.0111545
-0.000173546
0.0111444
-0.000173551
-0.000173586
0.0118819
0.000256815
-0.0118629
0.0119005
0.000252699
0.0119187
0.000248445
0.0119365
0.000244095
0.0119539
0.000239655
0.0119709
0.000235122
0.0119875
0.000230499
0.0120036
0.000225789
0.0120193
0.000221001
0.0120346
0.00021614
0.0120495
0.000211213
0.0120639
0.000206225
0.0120779
0.000201182
0.0120914
0.000196088
0.0121045
0.000190948
0.0121172
0.000185768
0.0121295
0.000180553
0.0121413
0.000175306
0.0121527
0.000170032
0.0121636
0.000164736
0.0121741
0.000159421
0.0121842
0.000154091
0.0121939
0.000148751
0.0122032
0.000143403
0.012212
0.000138051
0.0122205
0.000132699
0.0122285
0.000127349
0.0122361
0.000122005
0.0122433
0.000116669
0.0122501
0.000111345
0.0122565
0.000106034
0.0122625
0.00010074
0.0122681
9.54655e-05
0.0122733
9.02118e-05
0.0122781
8.49816e-05
0.0122826
7.97771e-05
0.0122867
7.46004e-05
0.0122904
6.94534e-05
0.0122937
6.43381e-05
0.0122967
5.92562e-05
0.0122993
5.42096e-05
0.0123015
4.91999e-05
0.0123034
4.42287e-05
0.012305
3.92977e-05
0.0123062
3.44083e-05
0.012307
2.9562e-05
0.0123076
2.47603e-05
0.0123077
2.00044e-05
0.0123076
1.52956e-05
0.0123071
1.06353e-05
0.0123063
6.02461e-06
0.0123052
1.46439e-06
0.0123038
-3.04284e-06
0.0123021
-7.49712e-06
0.0123001
-1.18974e-05
0.0122977
-1.62425e-05
0.0122951
-2.05313e-05
0.0122922
-2.4763e-05
0.012289
-2.89365e-05
0.0122855
-3.3051e-05
0.0122818
-3.71057e-05
0.0122778
-4.10996e-05
0.0122735
-4.5032e-05
0.0122689
-4.89022e-05
0.0122641
-5.27094e-05
0.0122591
-5.6453e-05
0.0122538
-6.01323e-05
0.0122482
-6.37467e-05
0.0122424
-6.72956e-05
0.0122364
-7.07786e-05
0.0122302
-7.41951e-05
0.0122238
-7.75447e-05
0.0122171
-8.08271e-05
0.0122102
-8.40417e-05
0.0122031
-8.71885e-05
0.0121959
-9.0267e-05
0.0121884
-9.3277e-05
0.0121807
-9.62184e-05
0.0121729
-9.90911e-05
0.0121649
-0.000101895
0.0121567
-0.00010463
0.0121483
-0.000107296
0.0121398
-0.000109894
0.0121311
-0.000112422
0.0121223
-0.000114883
0.0121134
-0.000117275
0.0121042
-0.000119599
0.012095
-0.000121855
0.0120856
-0.000124044
0.0120761
-0.000126166
0.0120665
-0.000128222
0.0120568
-0.000130212
0.012047
-0.000132136
0.0120371
-0.000133996
0.012027
-0.000135791
0.0120169
-0.000137523
0.0120067
-0.000139193
0.0119964
-0.0001408
0.011986
-0.000142346
0.0119756
-0.000143832
0.0119651
-0.000145258
0.0119545
-0.000146626
0.0119438
-0.000147936
0.0119332
-0.00014919
0.0119224
-0.000150388
0.0119116
-0.000151532
0.0119008
-0.000152622
0.0118899
-0.00015366
0.011879
-0.000154646
0.011868
-0.000155583
0.011857
-0.00015647
0.011846
-0.00015731
0.011835
-0.000158103
0.0118239
-0.00015885
0.0118129
-0.000159553
0.0118018
-0.000160214
0.0117907
-0.000160832
0.0117796
-0.00016141
0.0117685
-0.000161949
0.0117574
-0.000162449
0.0117462
-0.000162913
0.0117351
-0.000163341
0.011724
-0.000163734
0.0117129
-0.000164095
0.0117018
-0.000164424
0.0116907
-0.000164721
0.0116797
-0.00016499
0.0116686
-0.00016523
0.0116575
-0.000165443
0.0116465
-0.000165631
0.0116355
-0.000165793
0.0116245
-0.000165932
0.0116135
-0.000166049
0.0116025
-0.000166144
0.0115916
-0.00016622
0.0115807
-0.000166276
0.0115698
-0.000166315
0.0115589
-0.000166337
0.0115481
-0.000166343
0.0115372
-0.000166334
0.0115264
-0.000166312
0.0115157
-0.000166277
0.0115049
-0.00016623
0.0114942
-0.000166173
0.0114835
-0.000166106
0.0114728
-0.00016603
0.0114622
-0.000165947
0.0114516
-0.000165856
0.011441
-0.000165759
0.0114304
-0.000165657
0.0114199
-0.000165551
0.0114093
-0.000165441
0.0113989
-0.000165329
0.0113884
-0.000165214
0.011378
-0.000165098
0.0113675
-0.000164981
0.0113571
-0.000164865
0.0113468
-0.000164749
0.0113364
-0.000164635
0.0113261
-0.000164523
0.0113158
-0.000164414
0.0113055
-0.000164308
0.0112952
-0.000164206
0.011285
-0.000164108
0.0112747
-0.000164015
0.0112645
-0.000163927
0.0112543
-0.000163845
0.0112441
-0.000163769
0.0112339
-0.0001637
0.0112237
-0.000163638
0.0112136
-0.000163583
0.0112034
-0.000163535
0.0111933
-0.000163495
0.0111831
-0.000163464
0.011173
-0.00016344
0.0111629
-0.000163425
0.0111528
-0.000163418
0.0111426
-0.000163423
0.0111325
-0.000163428
-0.000163461
0.0118525
0.000238328
-0.011834
0.0118706
0.000234574
0.0118884
0.000230695
0.0119058
0.000226724
0.0119228
0.000222668
0.0119394
0.000218524
0.0119556
0.000214295
0.0119714
0.000209984
0.0119868
0.000205598
0.0120018
0.000201143
0.0120164
0.000196624
0.0120305
0.000192046
0.0120443
0.000187415
0.0120577
0.000182734
0.0120706
0.000178008
0.0120831
0.000173242
0.0120952
0.00016844
0.0121069
0.000163607
0.0121182
0.000158747
0.0121291
0.000153862
0.0121396
0.000148958
0.0121496
0.000144038
0.0121593
0.000139106
0.0121685
0.000134163
0.0121773
0.000129216
0.0121858
0.000124265
0.0121938
0.000119314
0.0122014
0.000114367
0.0122087
0.000109425
0.0122155
0.000104492
0.012222
9.95699e-05
0.0122281
9.46614e-05
0.0122338
8.97684e-05
0.0122391
8.48939e-05
0.012244
8.00394e-05
0.0122486
7.52074e-05
0.0122528
7.03997e-05
0.0122566
6.56182e-05
0.0122601
6.08649e-05
0.0122632
5.61414e-05
0.012266
5.14495e-05
0.0122684
4.67909e-05
0.0122705
4.2167e-05
0.0122722
3.75795e-05
0.0122736
3.30297e-05
0.0122746
2.85192e-05
0.0122753
2.40492e-05
0.0122757
1.96211e-05
0.0122757
1.52362e-05
0.0122755
1.08954e-05
0.0122749
6.60042e-06
0.012274
2.35186e-06
0.0122728
-1.84862e-06
0.0122713
-6.00001e-06
0.0122695
-1.01017e-05
0.0122674
-1.41526e-05
0.0122651
-1.81516e-05
0.0122624
-2.20978e-05
0.0122595
-2.59907e-05
0.0122562
-2.98288e-05
0.0122527
-3.36118e-05
0.012249
-3.73386e-05
0.012245
-4.10089e-05
0.0122407
-4.46213e-05
0.0122361
-4.8176e-05
0.0122314
-5.16713e-05
0.0122263
-5.51077e-05
0.0122211
-5.8484e-05
0.0122156
-6.17997e-05
0.0122099
-6.50545e-05
0.0122039
-6.82478e-05
0.0121977
-7.13794e-05
0.0121914
-7.44487e-05
0.0121848
-7.74555e-05
0.012178
-8.03994e-05
0.012171
-8.32805e-05
0.0121638
-8.60982e-05
0.0121565
-8.88525e-05
0.0121489
-9.15432e-05
0.0121412
-9.41704e-05
0.0121333
-9.67339e-05
0.0121252
-9.92339e-05
0.012117
-0.00010167
0.0121086
-0.000104043
0.0121001
-0.000106353
0.0120914
-0.0001086
0.0120826
-0.000110783
0.0120737
-0.000112904
0.0120646
-0.000114963
0.0120554
-0.000116961
0.012046
-0.000118896
0.0120366
-0.000120771
0.012027
-0.000122585
0.0120174
-0.00012434
0.0120076
-0.000126034
0.0119978
-0.000127671
0.0119878
-0.000129249
0.0119778
-0.00013077
0.0119677
-0.000132234
0.0119575
-0.000133642
0.0119472
-0.000134995
0.0119369
-0.000136294
0.0119265
-0.00013754
0.0119161
-0.000138733
0.0119055
-0.000139875
0.011895
-0.000140966
0.0118844
-0.000142007
0.0118737
-0.000143
0.011863
-0.000143945
0.0118523
-0.000144843
0.0118415
-0.000145696
0.0118307
-0.000146504
0.0118198
-0.000147269
0.011809
-0.000147992
0.0117981
-0.000148673
0.0117872
-0.000149314
0.0117763
-0.000149916
0.0117654
-0.000150481
0.0117544
-0.000151008
0.0117435
-0.0001515
0.0117325
-0.000151957
0.0117216
-0.000152381
0.0117106
-0.000152773
0.0116996
-0.000153134
0.0116887
-0.000153465
0.0116777
-0.000153767
0.0116668
-0.000154041
0.0116558
-0.000154288
0.0116449
-0.00015451
0.011634
-0.000154708
0.0116231
-0.000154883
0.0116122
-0.000155035
0.0116013
-0.000155166
0.0115904
-0.000155277
0.0115796
-0.000155368
0.0115687
-0.000155442
0.0115579
-0.000155499
0.0115471
-0.00015554
0.0115363
-0.000155565
0.0115256
-0.000155577
0.0115149
-0.000155575
0.0115041
-0.000155562
0.0114934
-0.000155536
0.0114828
-0.000155501
0.0114721
-0.000155456
0.0114615
-0.000155403
0.0114509
-0.000155342
0.0114403
-0.000155274
0.0114297
-0.000155199
0.0114192
-0.00015512
0.0114087
-0.000155036
0.0113982
-0.000154948
0.0113877
-0.000154857
0.0113773
-0.000154764
0.0113669
-0.000154669
0.0113564
-0.000154573
0.0113461
-0.000154477
0.0113357
-0.000154381
0.0113253
-0.000154286
0.011315
-0.000154192
0.0113047
-0.000154101
0.0112944
-0.000154012
0.0112841
-0.000153926
0.0112739
-0.000153844
0.0112636
-0.000153765
0.0112534
-0.000153691
0.0112431
-0.000153622
0.0112329
-0.000153558
0.0112227
-0.0001535
0.0112125
-0.000153448
0.0112024
-0.000153402
0.0111922
-0.000153362
0.011182
-0.000153329
0.0111719
-0.000153303
0.0111617
-0.000153284
0.0111516
-0.000153273
0.0111414
-0.000153268
0.0111313
-0.000153274
0.0111211
-0.000153279
-0.00015331
0.0118252
0.000220323
-0.0118072
0.0118429
0.000216909
0.0118602
0.000213379
0.0118772
0.000209763
0.0118938
0.000206068
0.01191
0.000202291
0.0119259
0.000198433
0.0119414
0.000194498
0.0119565
0.000190492
0.0119712
0.000186421
0.0119855
0.000182289
0.0119995
0.000178101
0.012013
0.000173861
0.0120262
0.000169573
0.0120389
0.000165242
0.0120513
0.000160872
0.0120633
0.000156466
0.0120749
0.00015203
0.012086
0.000147565
0.0120968
0.000143077
0.0121072
0.000138569
0.0121172
0.000134043
0.0121268
0.000129504
0.012136
0.000124954
0.0121448
0.000120396
0.0121533
0.000115835
0.0121613
0.000111271
0.012169
0.000106708
0.0121763
0.000102149
0.0121832
9.75966e-05
0.0121897
9.30523e-05
0.0121958
8.8519e-05
0.0122016
8.39988e-05
0.012207
7.94938e-05
0.012212
7.50063e-05
0.0122167
7.05381e-05
0.012221
6.60911e-05
0.0122249
6.16672e-05
0.0122285
5.72682e-05
0.0122318
5.28958e-05
0.0122347
4.85516e-05
0.0122372
4.42371e-05
0.0122394
3.9954e-05
0.0122413
3.57036e-05
0.0122429
3.14874e-05
0.0122441
2.73066e-05
0.012245
2.31628e-05
0.0122455
1.90569e-05
0.0122458
1.49904e-05
0.0122457
1.09644e-05
0.0122453
6.97991e-06
0.0122446
3.03798e-06
0.0122437
-8.60472e-07
0.0122424
-4.71307e-06
0.0122408
-8.52046e-06
0.0122389
-1.22813e-05
0.0122368
-1.59945e-05
0.0122343
-1.96594e-05
0.0122316
-2.3275e-05
0.0122286
-2.68405e-05
0.0122254
-3.03552e-05
0.0122218
-3.38183e-05
0.0122181
-3.72292e-05
0.012214
-4.05872e-05
0.0122097
-4.38917e-05
0.0122052
-4.7142e-05
0.0122004
-5.03377e-05
0.0121954
-5.34781e-05
0.0121902
-5.65628e-05
0.0121847
-5.95914e-05
0.0121791
-6.25635e-05
0.0121731
-6.54786e-05
0.012167
-6.83365e-05
0.0121607
-7.11367e-05
0.0121542
-7.38792e-05
0.0121475
-7.65636e-05
0.0121406
-7.91897e-05
0.0121335
-8.17574e-05
0.0121262
-8.42667e-05
0.0121187
-8.67174e-05
0.0121111
-8.91095e-05
0.0121033
-9.1443e-05
0.0120954
-9.37181e-05
0.0120873
-9.59347e-05
0.012079
-9.8093e-05
0.0120706
-0.000100193
0.0120621
-0.000102236
0.0120534
-0.00010422
0.0120446
-0.000106148
0.0120356
-0.000108018
0.0120266
-0.000109832
0.0120174
-0.00011159
0.0120081
-0.000113292
0.0119987
-0.000114938
0.0119892
-0.00011653
0.0119796
-0.000118068
0.0119699
-0.000119552
0.0119601
-0.000120984
0.0119502
-0.000122363
0.0119403
-0.00012369
0.0119302
-0.000124967
0.0119201
-0.000126194
0.01191
-0.000127371
0.0118997
-0.0001285
0.0118894
-0.000129581
0.0118791
-0.000130616
0.0118687
-0.000131604
0.0118582
-0.000132547
0.0118477
-0.000133447
0.0118372
-0.000134303
0.0118266
-0.000135117
0.011816
-0.000135889
0.0118054
-0.000136622
0.0117947
-0.000137315
0.011784
-0.000137969
0.0117732
-0.000138587
0.0117625
-0.000139168
0.0117517
-0.000139714
0.011741
-0.000140226
0.0117302
-0.000140704
0.0117193
-0.000141151
0.0117085
-0.000141566
0.0116977
-0.000141952
0.0116869
-0.000142308
0.0116761
-0.000142636
0.0116652
-0.000142937
0.0116544
-0.000143213
0.0116436
-0.000143463
0.0116328
-0.00014369
0.0116219
-0.000143893
0.0116111
-0.000144075
0.0116003
-0.000144236
0.0115895
-0.000144377
0.0115788
-0.000144499
0.011568
-0.000144603
0.0115572
-0.000144689
0.0115465
-0.00014476
0.0115358
-0.000144816
0.0115251
-0.000144857
0.0115144
-0.000144885
0.0115037
-0.0001449
0.0114931
-0.000144904
0.0114824
-0.000144897
0.0114718
-0.00014488
0.0114612
-0.000144853
0.0114506
-0.000144819
0.01144
-0.000144777
0.0114295
-0.000144728
0.011419
-0.000144673
0.0114085
-0.000144612
0.011398
-0.000144547
0.0113875
-0.000144478
0.011377
-0.000144406
0.0113666
-0.000144332
0.0113562
-0.000144255
0.0113458
-0.000144177
0.0113354
-0.000144099
0.0113251
-0.00014402
0.0113147
-0.000143941
0.0113044
-0.000143864
0.0112941
-0.000143788
0.0112838
-0.000143714
0.0112735
-0.000143642
0.0112632
-0.000143574
0.011253
-0.000143508
0.0112427
-0.000143446
0.0112325
-0.000143389
0.0112223
-0.000143335
0.0112121
-0.000143287
0.0112019
-0.000143243
0.0111917
-0.000143205
0.0111815
-0.000143172
0.0111713
-0.000143145
0.0111611
-0.000143124
0.0111509
-0.000143109
0.0111408
-0.000143101
0.0111306
-0.000143098
0.0111204
-0.000143104
0.0111102
-0.00014311
-0.000143139
0.0118
0.000202766
-0.0117824
0.0118172
0.00019967
0.0118341
0.000196468
0.0118507
0.000193187
0.0118669
0.000189831
0.0118828
0.000186399
0.0118983
0.000182892
0.0119135
0.000179313
0.0119284
0.000175668
0.0119428
0.000171961
0.0119569
0.000168197
0.0119706
0.000164379
0.011984
0.000160513
0.0119969
0.000156601
0.0120095
0.000152647
0.0120218
0.000148655
0.0120336
0.00014463
0.0120451
0.000140573
0.0120561
0.00013649
0.0120668
0.000132383
0.0120771
0.000128256
0.0120871
0.00012411
0.0120966
0.000119951
0.0121058
0.00011578
0.0121146
0.000111601
0.012123
0.000107416
0.0121311
0.000103228
0.0121387
9.9039e-05
0.012146
9.48517e-05
0.0121529
9.0669e-05
0.0121595
8.64926e-05
0.0121657
8.23249e-05
0.0121715
7.81681e-05
0.012177
7.40241e-05
0.0121821
6.98947e-05
0.0121869
6.5782e-05
0.0121913
6.1688e-05
0.0121953
5.76142e-05
0.012199
5.3562e-05
0.0122024
4.95337e-05
0.0122054
4.55303e-05
0.0122081
4.15535e-05
0.0122104
3.76048e-05
0.0122125
3.36855e-05
0.0122142
2.97968e-05
0.0122155
2.59403e-05
0.0122166
2.21169e-05
0.0122173
1.83282e-05
0.0122177
1.45751e-05
0.0122178
1.08587e-05
0.0122176
7.18024e-06
0.0122171
3.54027e-06
0.0122163
-6.12341e-08
0.0122152
-3.61858e-06
0.0122138
-7.13603e-06
0.0122122
-1.06106e-05
0.0122102
-1.40421e-05
0.012208
-1.7429e-05
0.0122055
-2.0771e-05
0.0122027
-2.40671e-05
0.0121997
-2.73169e-05
0.0121964
-3.05194e-05
0.0121928
-3.36738e-05
0.012189
-3.67802e-05
0.012185
-3.98372e-05
0.0121807
-4.28448e-05
0.0121761
-4.58023e-05
0.0121713
-4.87089e-05
0.0121664
-5.15648e-05
0.0121611
-5.43689e-05
0.0121557
-5.71215e-05
0.01215
-5.98219e-05
0.0121442
-6.24694e-05
0.0121381
-6.50646e-05
0.0121318
-6.76065e-05
0.0121253
-7.00951e-05
0.0121187
-7.25306e-05
0.0121118
-7.49122e-05
0.0121048
-7.72405e-05
0.0120976
-7.95148e-05
0.0120902
-8.17357e-05
0.0120827
-8.39026e-05
0.012075
-8.6016e-05
0.0120671
-8.80758e-05
0.0120591
-9.00822e-05
0.012051
-9.20353e-05
0.0120427
-9.39353e-05
0.0120342
-9.57824e-05
0.0120257
-9.75771e-05
0.012017
-9.93193e-05
0.0120081
-0.00010101
0.0119992
-0.000102649
0.0119901
-0.000104236
0.011981
-0.000105773
0.0119717
-0.00010726
0.0119623
-0.000108697
0.0119529
-0.000110085
0.0119433
-0.000111424
0.0119337
-0.000112715
0.0119239
-0.000113959
0.0119141
-0.000115156
0.0119042
-0.000116307
0.0118943
-0.000117413
0.0118843
-0.000118474
0.0118742
-0.000119491
0.011864
-0.000120466
0.0118538
-0.000121397
0.0118435
-0.000122288
0.0118332
-0.000123137
0.0118229
-0.000123947
0.0118125
-0.000124718
0.011802
-0.000125451
0.0117916
-0.000126147
0.0117811
-0.000126806
0.0117705
-0.00012743
0.01176
-0.00012802
0.0117494
-0.000128576
0.0117387
-0.0001291
0.0117281
-0.000129591
0.0117175
-0.000130052
0.0117068
-0.000130484
0.0116961
-0.000130886
0.0116854
-0.000131261
0.0116747
-0.000131608
0.011664
-0.00013193
0.0116533
-0.000132226
0.0116426
-0.000132498
0.0116319
-0.000132748
0.0116212
-0.000132974
0.0116104
-0.00013318
0.0115997
-0.000133365
0.011589
-0.00013353
0.0115783
-0.000133677
0.0115676
-0.000133806
0.011557
-0.000133918
0.0115463
-0.000134014
0.0115356
-0.000134095
0.011525
-0.000134162
0.0115143
-0.000134215
0.0115037
-0.000134255
0.0114931
-0.000134284
0.0114825
-0.000134301
0.0114719
-0.000134309
0.0114613
-0.000134307
0.0114508
-0.000134295
0.0114402
-0.000134276
0.0114297
-0.00013425
0.0114192
-0.000134217
0.0114087
-0.000134178
0.0113982
-0.000134134
0.0113877
-0.000134085
0.0113773
-0.000134033
0.0113669
-0.000133977
0.0113564
-0.000133918
0.0113461
-0.000133857
0.0113357
-0.000133795
0.0113253
-0.000133731
0.0113149
-0.000133667
0.0113046
-0.000133604
0.0112943
-0.00013354
0.011284
-0.000133478
0.0112737
-0.000133417
0.0112634
-0.000133358
0.0112531
-0.000133301
0.0112429
-0.000133246
0.0112326
-0.000133195
0.0112224
-0.000133147
0.0112121
-0.000133103
0.0112019
-0.000133063
0.0111917
-0.000133027
0.0111815
-0.000132995
0.0111713
-0.000132969
0.0111611
-0.000132947
0.0111509
-0.00013293
0.0111407
-0.000132919
0.0111305
-0.000132913
0.0111203
-0.000132912
0.0111101
-0.000132919
0.0111
-0.000132925
-0.000132951
0.0117766
0.000185621
-0.0117595
0.0117935
0.000182826
0.01181
0.000179933
0.0118262
0.000176967
0.0118421
0.000173933
0.0118577
0.000170827
0.011873
0.000167653
0.0118879
0.000164412
0.0119024
0.000161109
0.0119166
0.000157749
0.0119305
0.000154335
0.011944
0.000150871
0.0119571
0.000147361
0.0119699
0.000143809
0.0119824
0.000140216
0.0119944
0.000136588
0.0120061
0.000132927
0.0120175
0.000129237
0.0120284
0.00012552
0.012039
0.000121781
0.0120493
0.000118021
0.0120591
0.000114243
0.0120686
0.000110452
0.0120778
0.000106648
0.0120865
0.000102835
0.0120949
9.90154e-05
0.012103
9.51916e-05
0.0121107
9.13659e-05
0.012118
8.75407e-05
0.0121249
8.37181e-05
0.0121315
7.99002e-05
0.0121377
7.60891e-05
0.0121436
7.22868e-05
0.0121492
6.84952e-05
0.0121543
6.47162e-05
0.0121592
6.09514e-05
0.0121637
5.72026e-05
0.0121678
5.34714e-05
0.0121716
4.97595e-05
0.0121751
4.60683e-05
0.0121782
4.23993e-05
0.012181
3.87539e-05
0.0121835
3.51335e-05
0.0121856
3.15394e-05
0.0121874
2.79728e-05
0.0121889
2.4435e-05
0.0121901
2.09271e-05
0.012191
1.74503e-05
0.0121916
1.40056e-05
0.0121918
1.05942e-05
0.0121918
7.21689e-06
0.0121915
3.8747e-06
0.0121908
5.68001e-07
0.0121899
-2.70023e-06
0.0121887
-5.93119e-06
0.0121872
-9.12357e-06
0.0121855
-1.22765e-05
0.0121834
-1.53891e-05
0.0121811
-1.84608e-05
0.0121785
-2.14908e-05
0.0121757
-2.44784e-05
0.0121726
-2.74231e-05
0.0121693
-3.03242e-05
0.0121657
-3.31811e-05
0.0121618
-3.59934e-05
0.0121577
-3.87604e-05
0.0121534
-4.14818e-05
0.0121489
-4.4157e-05
0.0121441
-4.67856e-05
0.0121391
-4.93674e-05
0.0121339
-5.19019e-05
0.0121284
-5.43887e-05
0.0121228
-5.68277e-05
0.0121169
-5.92185e-05
0.0121109
-6.1561e-05
0.0121046
-6.38549e-05
0.0120982
-6.61001e-05
0.0120916
-6.82964e-05
0.0120848
-7.04438e-05
0.0120778
-7.25423e-05
0.0120707
-7.45917e-05
0.0120634
-7.65921e-05
0.0120559
-7.85436e-05
0.0120483
-8.04462e-05
0.0120405
-8.23001e-05
0.0120326
-8.41053e-05
0.0120245
-8.58621e-05
0.0120163
-8.75706e-05
0.0120079
-8.92312e-05
0.0119995
-9.0844e-05
0.0119909
-9.24095e-05
0.0119821
-9.39278e-05
0.0119733
-9.53995e-05
0.0119644
-9.68248e-05
0.0119553
-9.82043e-05
0.0119461
-9.95384e-05
0.0119369
-0.000100828
0.0119275
-0.000102072
0.0119181
-0.000103273
0.0119086
-0.000104431
0.0118989
-0.000105545
0.0118893
-0.000106618
0.0118795
-0.000107649
0.0118697
-0.000108639
0.0118598
-0.00010959
0.0118498
-0.0001105
0.0118398
-0.000111372
0.0118297
-0.000112206
0.0118196
-0.000113003
0.0118094
-0.000113763
0.0117991
-0.000114488
0.0117889
-0.000115177
0.0117785
-0.000115833
0.0117682
-0.000116455
0.0117578
-0.000117044
0.0117474
-0.000117602
0.0117369
-0.000118129
0.0117265
-0.000118626
0.011716
-0.000119094
0.0117055
-0.000119534
0.0116949
-0.000119946
0.0116844
-0.000120332
0.0116738
-0.000120691
0.0116632
-0.000121026
0.0116526
-0.000121337
0.011642
-0.000121625
0.0116314
-0.00012189
0.0116208
-0.000122134
0.0116102
-0.000122358
0.0115996
-0.000122561
0.0115889
-0.000122746
0.0115783
-0.000122912
0.0115677
-0.000123061
0.0115571
-0.000123193
0.0115465
-0.00012331
0.0115359
-0.000123412
0.0115253
-0.0001235
0.0115147
-0.000123574
0.0115041
-0.000123636
0.0114936
-0.000123685
0.011483
-0.000123724
0.0114724
-0.000123752
0.0114619
-0.000123771
0.0114514
-0.00012378
0.0114409
-0.000123781
0.0114304
-0.000123775
0.0114199
-0.000123761
0.0114094
-0.000123741
0.0113989
-0.000123716
0.0113885
-0.000123685
0.0113781
-0.00012365
0.0113676
-0.000123611
0.0113572
-0.000123569
0.0113468
-0.000123524
0.0113365
-0.000123476
0.0113261
-0.000123427
0.0113157
-0.000123377
0.0113054
-0.000123325
0.0112951
-0.000123274
0.0112847
-0.000123223
0.0112744
-0.000123172
0.0112641
-0.000123122
0.0112539
-0.000123074
0.0112436
-0.000123027
0.0112333
-0.000122983
0.0112231
-0.000122941
0.0112128
-0.000122901
0.0112026
-0.000122865
0.0111923
-0.000122832
0.0111821
-0.000122803
0.0111719
-0.000122777
0.0111617
-0.000122756
0.0111515
-0.000122738
0.0111413
-0.000122725
0.0111311
-0.000122716
0.0111209
-0.000122713
0.0111107
-0.000122713
0.0111005
-0.00012272
0.0110903
-0.000122726
-0.000122751
0.0117553
0.000168856
-0.0117385
0.0117717
0.000166344
0.0117879
0.000163743
0.0118038
0.000161077
0.0118194
0.000158346
0.0118347
0.000155552
0.0118497
0.000152693
0.0118643
0.000149774
0.0118786
0.000146798
0.0118926
0.000143768
0.0119062
0.00014069
0.0119195
0.000137565
0.0119325
0.000134396
0.0119451
0.000131188
0.0119574
0.000127943
0.0119693
0.000124664
0.0119809
0.000121354
0.0119921
0.000118016
0.012003
0.000114654
0.0120135
0.000111269
0.0120236
0.000107864
0.0120334
0.000104443
0.0120429
0.000101007
0.012052
9.75589e-05
0.0120607
9.41016e-05
0.0120691
9.06371e-05
0.0120771
8.71676e-05
0.0120848
8.36954e-05
0.0120921
8.02225e-05
0.0120991
7.6751e-05
0.0121057
7.32828e-05
0.012112
6.98199e-05
0.0121179
6.6364e-05
0.0121235
6.2917e-05
0.0121287
5.94805e-05
0.0121336
5.60562e-05
0.0121381
5.26457e-05
0.0121424
4.92504e-05
0.0121463
4.5872e-05
0.0121498
4.25117e-05
0.012153
3.91709e-05
0.0121559
3.58511e-05
0.0121585
3.25533e-05
0.0121608
2.9279e-05
0.0121627
2.60291e-05
0.0121644
2.2805e-05
0.0121657
1.96076e-05
0.0121667
1.6438e-05
0.0121674
1.32973e-05
0.0121678
1.01863e-05
0.0121679
7.1061e-06
0.0121677
4.05763e-06
0.0121673
1.04106e-06
0.0121665
-1.94122e-06
0.0121655
-4.88952e-06
0.0121641
-7.80302e-06
0.0121625
-1.06809e-05
0.0121607
-1.35224e-05
0.0121585
-1.63268e-05
0.0121561
-1.90936e-05
0.0121535
-2.18219e-05
0.0121506
-2.45117e-05
0.0121474
-2.71617e-05
0.012144
-2.97717e-05
0.0121404
-3.23416e-05
0.0121365
-3.48702e-05
0.0121323
-3.73575e-05
0.012128
-3.9803e-05
0.0121234
-4.22064e-05
0.0121186
-4.45672e-05
0.0121136
-4.68851e-05
0.0121084
-4.91599e-05
0.0121029
-5.13913e-05
0.0120973
-5.35791e-05
0.0120914
-5.5723e-05
0.0120854
-5.78228e-05
0.0120792
-5.98785e-05
0.0120728
-6.189e-05
0.0120662
-6.3857e-05
0.0120594
-6.57797e-05
0.0120525
-6.76579e-05
0.0120454
-6.94917e-05
0.0120381
-7.1281e-05
0.0120307
-7.30261e-05
0.0120231
-7.47269e-05
0.0120154
-7.63836e-05
0.0120076
-7.79964e-05
0.0119996
-7.95654e-05
0.0119914
-8.10911e-05
0.0119831
-8.25732e-05
0.0119747
-8.40123e-05
0.0119662
-8.54087e-05
0.0119576
-8.6763e-05
0.0119488
-8.80749e-05
0.01194
-8.93453e-05
0.011931
-9.05746e-05
0.011922
-9.17629e-05
0.0119128
-9.29109e-05
0.0119035
-9.4019e-05
0.0118942
-9.50878e-05
0.0118848
-9.61177e-05
0.0118753
-9.71093e-05
0.0118657
-9.80633e-05
0.011856
-9.89802e-05
0.0118463
-9.98604e-05
0.0118365
-0.000100705
0.0118266
-0.000101514
0.0118167
-0.000102289
0.0118067
-0.000103029
0.0117967
-0.000103736
0.0117866
-0.000104411
0.0117765
-0.000105054
0.0117663
-0.000105666
0.0117561
-0.000106247
0.0117459
-0.000106799
0.0117356
-0.000107322
0.0117253
-0.000107816
0.011715
-0.000108284
0.0117046
-0.000108724
0.0116942
-0.000109139
0.0116838
-0.000109528
0.0116733
-0.000109894
0.0116629
-0.000110235
0.0116524
-0.000110554
0.0116419
-0.000110851
0.0116314
-0.000111126
0.0116209
-0.000111381
0.0116104
-0.000111616
0.0115999
-0.000111833
0.0115893
-0.000112031
0.0115788
-0.000112212
0.0115683
-0.000112375
0.0115577
-0.000112523
0.0115472
-0.000112656
0.0115367
-0.000112774
0.0115261
-0.000112878
0.0115156
-0.000112969
0.0115051
-0.000113048
0.0114945
-0.000113115
0.011484
-0.000113171
0.0114735
-0.000113217
0.011463
-0.000113253
0.0114525
-0.00011328
0.0114421
-0.000113298
0.0114316
-0.000113309
0.0114211
-0.000113312
0.0114107
-0.000113309
0.0114002
-0.000113299
0.0113898
-0.000113285
0.0113794
-0.000113265
0.011369
-0.000113241
0.0113586
-0.000113213
0.0113482
-0.000113182
0.0113378
-0.000113149
0.0113274
-0.000113112
0.0113171
-0.000113074
0.0113067
-0.000113035
0.0112964
-0.000112995
0.0112861
-0.000112954
0.0112758
-0.000112913
0.0112655
-0.000112872
0.0112552
-0.000112832
0.0112449
-0.000112793
0.0112346
-0.000112755
0.0112244
-0.000112719
0.0112141
-0.000112685
0.0112039
-0.000112653
0.0111936
-0.000112623
0.0111834
-0.000112597
0.0111732
-0.000112573
0.0111629
-0.000112552
0.0111527
-0.000112535
0.0111425
-0.000112521
0.0111323
-0.000112511
0.0111221
-0.000112505
0.0111119
-0.000112503
0.0111017
-0.000112504
0.0110915
-0.000112512
0.0110812
-0.000112518
-0.00011254
0.0117358
0.000152434
-0.0117194
0.0117519
0.000150191
0.0117678
0.000147869
0.0117834
0.000145486
0.0117987
0.000143046
0.0118137
0.000140548
0.0118284
0.000137991
0.0118428
0.000135379
0.0118569
0.000132715
0.0118706
0.000130003
0.0118841
0.000127245
0.0118972
0.000124445
0.01191
0.000121605
0.0119225
0.000118728
0.0119346
0.000115817
0.0119464
0.000112875
0.0119578
0.000109904
0.0119689
0.000106906
0.0119797
0.000103886
0.0119901
0.000100844
0.0120002
9.77838e-05
0.0120099
9.47072e-05
0.0120193
9.16168e-05
0.0120284
8.85146e-05
0.0120371
8.54029e-05
0.0120454
8.22839e-05
0.0120534
7.91595e-05
0.0120611
7.60317e-05
0.0120684
7.29025e-05
0.0120754
6.97737e-05
0.012082
6.66471e-05
0.0120883
6.35244e-05
0.0120943
6.04074e-05
0.0120999
5.72976e-05
0.0121052
5.41966e-05
0.0121101
5.1106e-05
0.0121148
4.80271e-05
0.012119
4.49614e-05
0.012123
4.19103e-05
0.0121266
3.8875e-05
0.01213
3.58568e-05
0.012133
3.28569e-05
0.0121356
2.98766e-05
0.012138
2.69168e-05
0.01214
2.39788e-05
0.0121418
2.10635e-05
0.0121432
1.8172e-05
0.0121444
1.53053e-05
0.0121452
1.24642e-05
0.0121457
9.64965e-06
0.012146
6.86257e-06
0.0121459
4.10375e-06
0.0121456
1.37385e-06
0.012145
-1.32596e-06
0.0121441
-3.99501e-06
0.0121429
-6.63291e-06
0.0121415
-9.23887e-06
0.0121398
-1.18122e-05
0.0121378
-1.43523e-05
0.0121355
-1.68586e-05
0.0121331
-1.93305e-05
0.0121303
-2.17674e-05
0.0121273
-2.41689e-05
0.0121241
-2.65345e-05
0.0121206
-2.88636e-05
0.0121169
-3.1156e-05
0.0121129
-3.34111e-05
0.0121088
-3.56287e-05
0.0121044
-3.78083e-05
0.0120998
-3.99497e-05
0.0120949
-4.20525e-05
0.0120899
-4.41164e-05
0.0120846
-4.61414e-05
0.0120792
-4.8127e-05
0.0120735
-5.00732e-05
0.0120677
-5.19798e-05
0.0120617
-5.38466e-05
0.0120554
-5.56736e-05
0.012049
-5.74606e-05
0.0120425
-5.92077e-05
0.0120357
-6.09147e-05
0.0120288
-6.25818e-05
0.0120217
-6.42089e-05
0.0120145
-6.57961e-05
0.0120071
-6.73435e-05
0.0119996
-6.88512e-05
0.0119919
-7.03193e-05
0.0119841
-7.1748e-05
0.0119761
-7.31375e-05
0.0119681
-7.4488e-05
0.0119598
-7.57998e-05
0.0119515
-7.70731e-05
0.0119431
-7.83082e-05
0.0119345
-7.95055e-05
0.0119258
-8.06652e-05
0.011917
-8.17877e-05
0.0119081
-8.28735e-05
0.0118991
-8.39229e-05
0.0118901
-8.49363e-05
0.0118809
-8.59142e-05
0.0118716
-8.68571e-05
0.0118623
-8.77655e-05
0.0118529
-8.86398e-05
0.0118434
-8.94807e-05
0.0118338
-9.02885e-05
0.0118241
-9.10639e-05
0.0118144
-9.18075e-05
0.0118047
-9.25198e-05
0.0117948
-9.32015e-05
0.011785
-9.38531e-05
0.011775
-9.44752e-05
0.011765
-9.50686e-05
0.011755
-9.56337e-05
0.0117449
-9.61714e-05
0.0117348
-9.66822e-05
0.0117247
-9.71668e-05
0.0117145
-9.76259e-05
0.0117042
-9.80601e-05
0.011694
-9.84702e-05
0.0116837
-9.88568e-05
0.0116734
-9.92205e-05
0.0116631
-9.95622e-05
0.0116527
-9.98825e-05
0.0116423
-0.000100182
0.011632
-0.000100462
0.0116216
-0.000100722
0.0116111
-0.000100963
0.0116007
-0.000101187
0.0115903
-0.000101393
0.0115798
-0.000101582
0.0115694
-0.000101756
0.0115589
-0.000101914
0.0115484
-0.000102058
0.011538
-0.000102188
0.0115275
-0.000102304
0.011517
-0.000102408
0.0115066
-0.0001025
0.0114961
-0.00010258
0.0114856
-0.00010265
0.0114752
-0.00010271
0.0114647
-0.000102759
0.0114543
-0.0001028
0.0114438
-0.000102833
0.0114334
-0.000102858
0.0114229
-0.000102875
0.0114125
-0.000102886
0.0114021
-0.00010289
0.0113917
-0.000102889
0.0113813
-0.000102883
0.0113709
-0.000102872
0.0113605
-0.000102857
0.0113501
-0.000102839
0.0113398
-0.000102817
0.0113294
-0.000102792
0.0113191
-0.000102765
0.0113087
-0.000102737
0.0112984
-0.000102707
0.0112881
-0.000102675
0.0112778
-0.000102643
0.0112675
-0.000102611
0.0112572
-0.000102579
0.0112469
-0.000102547
0.0112366
-0.000102516
0.0112263
-0.000102485
0.0112161
-0.000102456
0.0112058
-0.000102429
0.0111956
-0.000102403
0.0111853
-0.00010238
0.0111751
-0.000102358
0.0111649
-0.000102339
0.0111546
-0.000102323
0.0111444
-0.000102309
0.0111342
-0.000102299
0.011124
-0.000102291
0.0111137
-0.000102287
0.0111035
-0.000102286
0.0110933
-0.000102288
0.0110831
-0.000102295
0.0110729
-0.000102301
-0.000102322
0.0117182
0.000136323
-0.011702
0.011734
0.000134337
0.0117496
0.00013228
0.0117649
0.000130169
0.01178
0.000128006
0.0117947
0.000125791
0.0118092
0.000123523
0.0118234
0.000121206
0.0118372
0.000118842
0.0118508
0.000116434
0.0118641
0.000113985
0.011877
0.000111498
0.0118896
0.000108974
0.0119019
0.000106417
0.0119139
0.000103829
0.0119256
0.000101211
0.0119369
9.85679e-05
0.0119479
9.59006e-05
0.0119586
9.32112e-05
0.011969
9.05026e-05
0.011979
8.77764e-05
0.0119886
8.50348e-05
0.011998
8.22805e-05
0.012007
7.95145e-05
0.0120156
7.67397e-05
0.012024
7.39573e-05
0.0120319
7.11694e-05
0.0120396
6.83779e-05
0.0120469
6.55844e-05
0.0120539
6.27906e-05
0.0120606
5.99983e-05
0.0120669
5.72085e-05
0.0120729
5.44234e-05
0.0120785
5.16442e-05
0.0120838
4.88722e-05
0.0120888
4.61089e-05
0.0120935
4.33557e-05
0.0120978
4.06138e-05
0.0121019
3.78841e-05
0.0121056
3.51684e-05
0.012109
3.24675e-05
0.012112
2.97826e-05
0.0121148
2.71147e-05
0.0121173
2.44648e-05
0.0121194
2.18341e-05
0.0121212
1.92232e-05
0.0121228
1.66333e-05
0.012124
1.40654e-05
0.012125
1.152e-05
0.0121256
8.99797e-06
0.012126
6.50048e-06
0.0121261
4.0279e-06
0.0121258
1.58098e-06
0.0121254
-8.39309e-07
0.0121246
-3.23233e-06
0.0121236
-5.59764e-06
0.0121223
-7.93469e-06
0.0121207
-1.02425e-05
0.0121189
-1.25209e-05
0.0121168
-1.47691e-05
0.0121144
-1.6987e-05
0.0121118
-1.91735e-05
0.012109
-2.13285e-05
0.0121059
-2.34515e-05
0.0121026
-2.55422e-05
0.012099
-2.76001e-05
0.0120952
-2.96248e-05
0.0120912
-3.16159e-05
0.012087
-3.35733e-05
0.0120825
-3.54964e-05
0.0120779
-3.73856e-05
0.012073
-3.92398e-05
0.0120679
-4.10592e-05
0.0120626
-4.28437e-05
0.0120572
-4.4593e-05
0.0120515
-4.63068e-05
0.0120456
-4.79854e-05
0.0120396
-4.96284e-05
0.0120333
-5.12357e-05
0.0120269
-5.28073e-05
0.0120204
-5.43435e-05
0.0120136
-5.58437e-05
0.0120067
-5.73083e-05
0.0119997
-5.87376e-05
0.0119925
-6.01311e-05
0.0119851
-6.14891e-05
0.0119776
-6.28122e-05
0.01197
-6.40997e-05
0.0119622
-6.53525e-05
0.0119542
-6.65704e-05
0.0119462
-6.77537e-05
0.011938
-6.89028e-05
0.0119297
-7.00176e-05
0.0119213
-7.10987e-05
0.0119128
-7.21464e-05
0.0119042
-7.31607e-05
0.0118955
-7.41423e-05
0.0118866
-7.50912e-05
0.0118777
-7.60084e-05
0.0118687
-7.68934e-05
0.0118596
-7.77475e-05
0.0118504
-7.85704e-05
0.0118411
-7.93631e-05
0.0118317
-8.01257e-05
0.0118223
-8.08589e-05
0.0118128
-8.15631e-05
0.0118032
-8.22387e-05
0.0117936
-8.28864e-05
0.0117839
-8.35066e-05
0.0117742
-8.40999e-05
0.0117644
-8.46669e-05
0.0117545
-8.52081e-05
0.0117446
-8.5724e-05
0.0117346
-8.62152e-05
0.0117246
-8.66824e-05
0.0117146
-8.71262e-05
0.0117045
-8.75468e-05
0.0116944
-8.79453e-05
0.0116842
-8.8322e-05
0.0116741
-8.86777e-05
0.0116639
-8.90128e-05
0.0116536
-8.93282e-05
0.0116434
-8.96242e-05
0.0116331
-8.99015e-05
0.0116228
-9.0161e-05
0.0116125
-9.0403e-05
0.0116021
-9.06281e-05
0.0115918
-9.08368e-05
0.0115814
-9.10303e-05
0.011571
-9.12085e-05
0.0115607
-9.13725e-05
0.0115503
-9.15226e-05
0.0115399
-9.16595e-05
0.0115295
-9.17836e-05
0.0115191
-9.18959e-05
0.0115086
-9.19968e-05
0.0114982
-9.20864e-05
0.0114878
-9.2166e-05
0.0114774
-9.22356e-05
0.011467
-9.22962e-05
0.0114566
-9.23478e-05
0.0114462
-9.23913e-05
0.0114358
-9.24273e-05
0.0114254
-9.2456e-05
0.011415
-9.24779e-05
0.0114046
-9.24939e-05
0.0113942
-9.25041e-05
0.0113838
-9.25091e-05
0.0113734
-9.25093e-05
0.0113631
-9.25052e-05
0.0113527
-9.24973e-05
0.0113424
-9.24859e-05
0.011332
-9.24714e-05
0.0113217
-9.24544e-05
0.0113113
-9.24351e-05
0.011301
-9.24141e-05
0.0112907
-9.23914e-05
0.0112804
-9.23678e-05
0.0112701
-9.2343e-05
0.0112598
-9.23181e-05
0.0112495
-9.2293e-05
0.0112392
-9.22677e-05
0.011229
-9.22433e-05
0.0112187
-9.22191e-05
0.0112084
-9.21963e-05
0.0111982
-9.21744e-05
0.0111879
-9.21541e-05
0.0111777
-9.21352e-05
0.0111674
-9.21183e-05
0.0111572
-9.21034e-05
0.011147
-9.20907e-05
0.0111368
-9.20802e-05
0.0111265
-9.20722e-05
0.0111163
-9.20668e-05
0.0111061
-9.20639e-05
0.0110959
-9.20644e-05
0.0110856
-9.20664e-05
0.0110754
-9.20738e-05
0.0110652
-9.20793e-05
-9.20978e-05
0.0117024
0.00012049
-0.0116865
0.0117179
0.000118749
0.0117333
0.000116947
0.0117484
0.000115096
0.0117632
0.000113199
0.0117777
0.000111256
0.011792
0.000109267
0.0118059
0.000107233
0.0118196
0.000105158
0.011833
0.000103044
0.0118461
0.000100893
0.0118589
9.87073e-05
0.0118714
9.64895e-05
0.0118835
9.42416e-05
0.0118954
9.19657e-05
0.011907
8.96638e-05
0.0119182
8.73382e-05
0.0119291
8.49907e-05
0.0119397
8.26235e-05
0.0119499
8.02385e-05
0.0119599
7.78375e-05
0.0119695
7.54225e-05
0.0119788
7.29952e-05
0.0119877
7.05575e-05
0.0119964
6.81111e-05
0.0120047
6.56576e-05
0.0120126
6.31988e-05
0.0120203
6.07361e-05
0.0120276
5.82711e-05
0.0120346
5.58054e-05
0.0120412
5.33403e-05
0.0120476
5.08773e-05
0.0120536
4.84177e-05
0.0120593
4.59628e-05
0.0120646
4.3514e-05
0.0120696
4.10723e-05
0.0120744
3.86391e-05
0.0120788
3.62155e-05
0.0120828
3.38026e-05
0.0120866
3.14014e-05
0.0120901
2.90129e-05
0.0120932
2.66383e-05
0.012096
2.42783e-05
0.0120986
2.19341e-05
0.0121008
1.96064e-05
0.0121027
1.7296e-05
0.0121044
1.5004e-05
0.0121057
1.27309e-05
0.0121067
1.04776e-05
0.0121075
8.24493e-06
0.012108
6.03345e-06
0.0121081
3.84389e-06
0.012108
1.67685e-06
0.0121077
-4.67128e-07
0.012107
-2.5867e-06
0.0121061
-4.68215e-06
0.0121049
-6.75268e-06
0.0121035
-8.79774e-06
0.0121018
-1.08168e-05
0.0120998
-1.28094e-05
0.0120976
-1.47751e-05
0.0120952
-1.67135e-05
0.0120924
-1.8624e-05
0.0120895
-2.05064e-05
0.0120863
-2.23602e-05
0.0120829
-2.41852e-05
0.0120793
-2.5981e-05
0.0120754
-2.77472e-05
0.0120713
-2.94837e-05
0.012067
-3.11901e-05
0.0120625
-3.28662e-05
0.0120577
-3.45119e-05
0.0120528
-3.61268e-05
0.0120477
-3.77109e-05
0.0120424
-3.92639e-05
0.0120368
-4.07859e-05
0.0120311
-4.22766e-05
0.0120252
-4.37359e-05
0.0120192
-4.51638e-05
0.0120129
-4.65604e-05
0.0120065
-4.79254e-05
0.0119999
-4.9259e-05
0.0119932
-5.05612e-05
0.0119863
-5.18319e-05
0.0119792
-5.30714e-05
0.011972
-5.42796e-05
0.0119646
-5.54567e-05
0.0119571
-5.66027e-05
0.0119495
-5.77179e-05
0.0119417
-5.88024e-05
0.0119338
-5.98564e-05
0.0119258
-6.08801e-05
0.0119177
-6.18737e-05
0.0119094
-6.28375e-05
0.011901
-6.37717e-05
0.0118925
-6.46766e-05
0.011884
-6.55525e-05
0.0118753
-6.63997e-05
0.0118665
-6.72186e-05
0.0118576
-6.80094e-05
0.0118486
-6.87726e-05
0.0118396
-6.95086e-05
0.0118304
-7.02176e-05
0.0118212
-7.09002e-05
0.0118119
-7.15567e-05
0.0118025
-7.21875e-05
0.0117931
-7.27932e-05
0.0117836
-7.33741e-05
0.011774
-7.39308e-05
0.0117643
-7.44636e-05
0.0117546
-7.49731e-05
0.0117449
-7.54597e-05
0.0117351
-7.5924e-05
0.0117252
-7.63664e-05
0.0117154
-7.67875e-05
0.0117054
-7.71878e-05
0.0116954
-7.75678e-05
0.0116854
-7.7928e-05
0.0116754
-7.8269e-05
0.0116653
-7.85913e-05
0.0116552
-7.88953e-05
0.011645
-7.91817e-05
0.0116348
-7.94511e-05
0.0116246
-7.97038e-05
0.0116144
-7.99405e-05
0.0116042
-8.01617e-05
0.0115939
-8.0368e-05
0.0115836
-8.05598e-05
0.0115734
-8.07377e-05
0.011563
-8.09023e-05
0.0115527
-8.1054e-05
0.0115424
-8.11934e-05
0.0115321
-8.13211e-05
0.0115217
-8.14374e-05
0.0115114
-8.1543e-05
0.011501
-8.16383e-05
0.0114906
-8.17239e-05
0.0114803
-8.18001e-05
0.0114699
-8.18676e-05
0.0114595
-8.19268e-05
0.0114492
-8.19782e-05
0.0114388
-8.20222e-05
0.0114284
-8.20593e-05
0.0114181
-8.20899e-05
0.0114077
-8.21146e-05
0.0113973
-8.21336e-05
0.011387
-8.21475e-05
0.0113766
-8.21566e-05
0.0113663
-8.21614e-05
0.0113559
-8.21623e-05
0.0113456
-8.21596e-05
0.0113353
-8.21537e-05
0.0113249
-8.2145e-05
0.0113146
-8.21339e-05
0.0113043
-8.21206e-05
0.011294
-8.21056e-05
0.0112837
-8.2089e-05
0.0112734
-8.20714e-05
0.0112631
-8.20529e-05
0.0112528
-8.20338e-05
0.0112425
-8.20145e-05
0.0112323
-8.19951e-05
0.011222
-8.1976e-05
0.0112117
-8.19573e-05
0.0112015
-8.19393e-05
0.0111912
-8.19222e-05
0.011181
-8.19063e-05
0.0111707
-8.18916e-05
0.0111605
-8.18784e-05
0.0111503
-8.18668e-05
0.01114
-8.1857e-05
0.0111298
-8.18491e-05
0.0111196
-8.18431e-05
0.0111093
-8.18394e-05
0.0110991
-8.18378e-05
0.0110889
-8.18388e-05
0.0110787
-8.18413e-05
0.0110684
-8.18481e-05
0.0110582
-8.18533e-05
-8.18697e-05
0.0116884
0.000104902
-0.0116728
0.0117037
0.000103398
0.0117188
0.00010184
0.0117337
0.00010024
0.0117483
9.86e-05
0.0117626
9.69194e-05
0.0117767
9.51985e-05
0.0117905
9.34389e-05
0.011804
9.16429e-05
0.0118172
8.98127e-05
0.0118302
8.79503e-05
0.0118428
8.60576e-05
0.0118552
8.41365e-05
0.0118672
8.21887e-05
0.011879
8.02163e-05
0.0118904
7.82209e-05
0.0119016
7.62043e-05
0.0119124
7.41684e-05
0.0119229
7.21149e-05
0.0119331
7.00455e-05
0.011943
6.79617e-05
0.0119525
6.58653e-05
0.0119618
6.37578e-05
0.0119707
6.16408e-05
0.0119793
5.95158e-05
0.0119875
5.73843e-05
0.0119955
5.52476e-05
0.0120031
5.31071e-05
0.0120104
5.09643e-05
0.0120174
4.88204e-05
0.0120241
4.66767e-05
0.0120304
4.45344e-05
0.0120364
4.23947e-05
0.0120421
4.02588e-05
0.0120475
3.81277e-05
0.0120526
3.60027e-05
0.0120574
3.38846e-05
0.0120618
3.17745e-05
0.0120659
2.96735e-05
0.0120697
2.75824e-05
0.0120733
2.55021e-05
0.0120765
2.34336e-05
0.0120794
2.13776e-05
0.012082
1.9335e-05
0.0120843
1.73066e-05
0.0120863
1.52932e-05
0.012088
1.32954e-05
0.0120894
1.13139e-05
0.0120905
9.34964e-06
0.0120914
7.40292e-06
0.0120919
5.47457e-06
0.0120922
3.56515e-06
0.0120922
1.67518e-06
0.0120919
-1.9509e-07
0.0120914
-2.04378e-06
0.0120906
-3.87183e-06
0.0120895
-5.67832e-06
0.0120882
-7.46275e-06
0.0120866
-9.22467e-06
0.0120847
-1.09637e-05
0.0120826
-1.26792e-05
0.0120803
-1.43712e-05
0.0120777
-1.6039e-05
0.0120749
-1.76824e-05
0.0120718
-1.9301e-05
0.0120685
-2.08946e-05
0.012065
-2.24628e-05
0.0120613
-2.40055e-05
0.0120573
-2.55222e-05
0.0120531
-2.70129e-05
0.0120487
-2.84773e-05
0.0120441
-2.99151e-05
0.0120393
-3.13264e-05
0.0120343
-3.27108e-05
0.0120292
-3.40683e-05
0.0120238
-3.53988e-05
0.0120182
-3.67021e-05
0.0120124
-3.79782e-05
0.0120065
-3.9227e-05
0.0120004
-4.04485e-05
0.0119941
-4.16427e-05
0.0119877
-4.28096e-05
0.011981
-4.39491e-05
0.0119743
-4.50614e-05
0.0119673
-4.61464e-05
0.0119603
-4.72043e-05
0.011953
-4.82352e-05
0.0119457
-4.92391e-05
0.0119382
-5.02161e-05
0.0119305
-5.11665e-05
0.0119228
-5.20904e-05
0.0119149
-5.29879e-05
0.0119069
-5.38593e-05
0.0118987
-5.47048e-05
0.0118905
-5.55245e-05
0.0118821
-5.63187e-05
0.0118737
-5.70878e-05
0.0118651
-5.78318e-05
0.0118564
-5.85513e-05
0.0118477
-5.92463e-05
0.0118388
-5.99173e-05
0.0118299
-6.05645e-05
0.0118208
-6.11884e-05
0.0118117
-6.17892e-05
0.0118025
-6.23673e-05
0.0117933
-6.2923e-05
0.0117839
-6.34569e-05
0.0117745
-6.39691e-05
0.0117651
-6.44603e-05
0.0117555
-6.49306e-05
0.0117459
-6.53807e-05
0.0117363
-6.58108e-05
0.0117266
-6.62214e-05
0.0117168
-6.6613e-05
0.011707
-6.69859e-05
0.0116972
-6.73407e-05
0.0116873
-6.76778e-05
0.0116774
-6.79976e-05
0.0116674
-6.83006e-05
0.0116574
-6.85872e-05
0.0116474
-6.88579e-05
0.0116373
-6.91133e-05
0.0116272
-6.93536e-05
0.0116171
-6.95795e-05
0.0116069
-6.97914e-05
0.0115967
-6.99896e-05
0.0115866
-7.01748e-05
0.0115763
-7.03474e-05
0.0115661
-7.05077e-05
0.0115559
-7.06564e-05
0.0115456
-7.07938e-05
0.0115353
-7.09204e-05
0.011525
-7.10366e-05
0.0115148
-7.11429e-05
0.0115044
-7.12398e-05
0.0114941
-7.13276e-05
0.0114838
-7.14069e-05
0.0114735
-7.14779e-05
0.0114632
-7.15413e-05
0.0114528
-7.15973e-05
0.0114425
-7.16464e-05
0.0114322
-7.16889e-05
0.0114218
-7.17254e-05
0.0114115
-7.17561e-05
0.0114012
-7.17816e-05
0.0113908
-7.1802e-05
0.0113805
-7.18178e-05
0.0113702
-7.18294e-05
0.0113599
-7.18372e-05
0.0113495
-7.18414e-05
0.0113392
-7.18424e-05
0.0113289
-7.18405e-05
0.0113186
-7.1836e-05
0.0113083
-7.18294e-05
0.011298
-7.18207e-05
0.0112877
-7.18104e-05
0.0112774
-7.17988e-05
0.0112671
-7.1786e-05
0.0112568
-7.17724e-05
0.0112466
-7.17581e-05
0.0112363
-7.17435e-05
0.011226
-7.17288e-05
0.0112158
-7.17142e-05
0.0112055
-7.16999e-05
0.0111953
-7.1686e-05
0.011185
-7.16728e-05
0.0111748
-7.16605e-05
0.0111645
-7.16492e-05
0.0111543
-7.16391e-05
0.011144
-7.16302e-05
0.0111338
-7.16228e-05
0.0111236
-7.16169e-05
0.0111134
-7.16127e-05
0.0111031
-7.16102e-05
0.0110929
-7.16094e-05
0.0110827
-7.16109e-05
0.0110724
-7.16135e-05
0.0110622
-7.16198e-05
0.011052
-7.16245e-05
-7.16389e-05
0.0116762
8.95269e-05
-0.0116608
0.0116913
8.82515e-05
0.0117062
8.693e-05
0.0117209
8.55728e-05
0.0117353
8.41814e-05
0.0117495
8.27552e-05
0.0117634
8.12946e-05
0.011777
7.98008e-05
0.0117904
7.82759e-05
0.0118035
7.67216e-05
0.0118163
7.51398e-05
0.0118288
7.35318e-05
0.0118411
7.18994e-05
0.011853
7.0244e-05
0.0118647
6.85673e-05
0.011876
6.68707e-05
0.0118871
6.51558e-05
0.0118978
6.34241e-05
0.0119082
6.16771e-05
0.0119184
5.99162e-05
0.0119282
5.81428e-05
0.0119377
5.63583e-05
0.0119469
5.4564e-05
0.0119558
5.27613e-05
0.0119643
5.09514e-05
0.0119726
4.91356e-05
0.0119805
4.73151e-05
0.0119881
4.54912e-05
0.0119954
4.36649e-05
0.0120024
4.18374e-05
0.0120091
4.00098e-05
0.0120154
3.81831e-05
0.0120215
3.63583e-05
0.0120272
3.45365e-05
0.0120326
3.27187e-05
0.0120377
3.09056e-05
0.0120425
2.90983e-05
0.012047
2.72976e-05
0.0120511
2.55044e-05
0.012055
2.37194e-05
0.0120585
2.19435e-05
0.0120618
2.01774e-05
0.0120648
1.84219e-05
0.0120674
1.66775e-05
0.0120698
1.49452e-05
0.0120718
1.32254e-05
0.0120736
1.15188e-05
0.0120751
9.82601e-06
0.0120763
8.14766e-06
0.0120772
6.48429e-06
0.0120779
4.83644e-06
0.0120782
3.20464e-06
0.0120783
1.58935e-06
0.0120781
-9.96369e-09
0.0120777
-1.58968e-06
0.012077
-3.15255e-06
0.012076
-4.69707e-06
0.0120747
-6.22285e-06
0.0120732
-7.72951e-06
0.0120715
-9.21666e-06
0.0120695
-1.0684e-05
0.0120673
-1.21311e-05
0.0120648
-1.35578e-05
0.0120621
-1.49636e-05
0.0120591
-1.63484e-05
0.0120559
-1.77119e-05
0.0120525
-1.90538e-05
0.0120489
-2.03739e-05
0.012045
-2.1672e-05
0.012041
-2.29479e-05
0.0120367
-2.42014e-05
0.0120322
-2.54324e-05
0.0120275
-2.66407e-05
0.0120226
-2.78261e-05
0.0120176
-2.89886e-05
0.0120123
-3.01281e-05
0.0120068
-3.12444e-05
0.0120012
-3.23376e-05
0.0119954
-3.34075e-05
0.0119894
-3.44542e-05
0.0119832
-3.54776e-05
0.0119769
-3.64777e-05
0.0119704
-3.74546e-05
0.0119637
-3.84082e-05
0.0119569
-3.93387e-05
0.01195
-4.0246e-05
0.0119429
-4.11302e-05
0.0119356
-4.19915e-05
0.0119282
-4.28299e-05
0.0119207
-4.36456e-05
0.0119131
-4.44387e-05
0.0119053
-4.52093e-05
0.0118974
-4.59577e-05
0.0118894
-4.66839e-05
0.0118812
-4.73882e-05
0.011873
-4.80708e-05
0.0118646
-4.87319e-05
0.0118562
-4.93717e-05
0.0118476
-4.99905e-05
0.0118389
-5.05885e-05
0.0118302
-5.11659e-05
0.0118213
-5.17231e-05
0.0118124
-5.22604e-05
0.0118034
-5.2778e-05
0.0117943
-5.32762e-05
0.0117851
-5.37553e-05
0.0117759
-5.42158e-05
0.0117666
-5.46578e-05
0.0117572
-5.50817e-05
0.0117478
-5.54879e-05
0.0117383
-5.58768e-05
0.0117287
-5.62486e-05
0.0117191
-5.66038e-05
0.0117094
-5.69427e-05
0.0116997
-5.72657e-05
0.0116899
-5.75731e-05
0.0116801
-5.78654e-05
0.0116703
-5.81429e-05
0.0116604
-5.84061e-05
0.0116504
-5.86552e-05
0.0116405
-5.88907e-05
0.0116305
-5.91131e-05
0.0116204
-5.93226e-05
0.0116104
-5.95197e-05
0.0116003
-5.97048e-05
0.0115902
-5.98782e-05
0.01158
-6.00404e-05
0.0115699
-6.01918e-05
0.0115597
-6.03327e-05
0.0115495
-6.04635e-05
0.0115393
-6.05847e-05
0.0115291
-6.06966e-05
0.0115189
-6.07996e-05
0.0115086
-6.08941e-05
0.0114983
-6.09804e-05
0.0114881
-6.1059e-05
0.0114778
-6.11302e-05
0.0114675
-6.11943e-05
0.0114572
-6.12517e-05
0.0114469
-6.13028e-05
0.0114366
-6.1348e-05
0.0114263
-6.13875e-05
0.011416
-6.14217e-05
0.0114057
-6.1451e-05
0.0113954
-6.14756e-05
0.0113851
-6.14959e-05
0.0113748
-6.15122e-05
0.0113645
-6.15248e-05
0.0113542
-6.15341e-05
0.0113439
-6.15402e-05
0.0113336
-6.15436e-05
0.0113233
-6.15444e-05
0.011313
-6.15429e-05
0.0113027
-6.15394e-05
0.0112924
-6.15342e-05
0.0112821
-6.15275e-05
0.0112719
-6.15196e-05
0.0112616
-6.15106e-05
0.0112513
-6.15008e-05
0.0112411
-6.14904e-05
0.0112308
-6.14797e-05
0.0112205
-6.14687e-05
0.0112103
-6.14577e-05
0.0112
-6.14469e-05
0.0111898
-6.14365e-05
0.0111795
-6.14265e-05
0.0111693
-6.14171e-05
0.011159
-6.14086e-05
0.0111488
-6.14009e-05
0.0111386
-6.13943e-05
0.0111283
-6.13888e-05
0.0111181
-6.13846e-05
0.0111079
-6.13816e-05
0.0110976
-6.13801e-05
0.0110874
-6.13799e-05
0.0110772
-6.13816e-05
0.011067
-6.13841e-05
0.0110567
-6.13897e-05
0.0110465
-6.13939e-05
-6.14062e-05
0.0116658
7.43339e-05
-0.0116506
0.0116807
7.32803e-05
0.0116955
7.21886e-05
0.01171
7.10672e-05
0.0117242
6.99173e-05
0.0117383
6.87388e-05
0.011752
6.75317e-05
0.0117655
6.62967e-05
0.0117788
6.50361e-05
0.0117917
6.37509e-05
0.0118044
6.24427e-05
0.0118169
6.11127e-05
0.011829
5.97623e-05
0.0118408
5.83926e-05
0.0118524
5.70052e-05
0.0118637
5.56011e-05
0.0118747
5.41815e-05
0.0118853
5.27478e-05
0.0118957
5.13011e-05
0.0119058
4.98427e-05
0.0119155
4.83738e-05
0.011925
4.68954e-05
0.0119342
4.54087e-05
0.011943
4.39147e-05
0.0119515
4.24145e-05
0.0119598
4.09095e-05
0.0119677
3.94001e-05
0.0119753
3.78877e-05
0.0119826
3.63731e-05
0.0119896
3.48574e-05
0.0119962
3.33413e-05
0.0120026
3.18257e-05
0.0120086
3.03117e-05
0.0120144
2.88e-05
0.0120198
2.72912e-05
0.0120249
2.57862e-05
0.0120297
2.42861e-05
0.0120342
2.27911e-05
0.0120384
2.13021e-05
0.0120423
1.98199e-05
0.0120459
1.8345e-05
0.0120492
1.68782e-05
0.0120522
1.54199e-05
0.0120549
1.39709e-05
0.0120574
1.25317e-05
0.0120595
1.11028e-05
0.0120613
9.68475e-06
0.0120629
8.27808e-06
0.0120641
6.88328e-06
0.0120651
5.5007e-06
0.0120658
4.13125e-06
0.0120662
2.77468e-06
0.0120664
1.43184e-06
0.0120663
1.02562e-07
0.0120659
-1.21118e-06
0.0120653
-2.51065e-06
0.0120644
-3.79498e-06
0.0120632
-5.06393e-06
0.0120618
-6.31671e-06
0.0120601
-7.55382e-06
0.0120582
-8.77406e-06
0.0120561
-9.97795e-06
0.0120537
-1.11648e-05
0.0120511
-1.23344e-05
0.0120482
-1.34865e-05
0.0120451
-1.4621e-05
0.0120418
-1.57378e-05
0.0120382
-1.68362e-05
0.0120345
-1.79166e-05
0.0120305
-1.89787e-05
0.0120263
-2.00219e-05
0.012022
-2.10467e-05
0.0120174
-2.20526e-05
0.0120126
-2.30396e-05
0.0120076
-2.40076e-05
0.0120024
-2.49566e-05
0.0119971
-2.58862e-05
0.0119915
-2.67969e-05
0.0119858
-2.7688e-05
0.0119799
-2.85601e-05
0.0119739
-2.94128e-05
0.0119676
-3.02462e-05
0.0119612
-3.10603e-05
0.0119547
-3.18553e-05
0.011948
-3.26308e-05
0.0119411
-3.33872e-05
0.0119341
-3.41244e-05
0.011927
-3.4843e-05
0.0119197
-3.55421e-05
0.0119122
-3.62228e-05
0.0119047
-3.68843e-05
0.011897
-3.75276e-05
0.0118892
-3.8152e-05
0.0118813
-3.87586e-05
0.0118732
-3.93464e-05
0.0118651
-3.99168e-05
0.0118568
-4.04688e-05
0.0118484
-4.10035e-05
0.01184
-4.15206e-05
0.0118314
-4.20205e-05
0.0118227
-4.25034e-05
0.011814
-4.29694e-05
0.0118052
-4.3419e-05
0.0117962
-4.38519e-05
0.0117872
-4.42691e-05
0.0117781
-4.46703e-05
0.011769
-4.5056e-05
0.0117597
-4.54264e-05
0.0117504
-4.57818e-05
0.0117411
-4.61226e-05
0.0117316
-4.64486e-05
0.0117222
-4.67609e-05
0.0117126
-4.70589e-05
0.011703
-4.73437e-05
0.0116934
-4.76151e-05
0.0116837
-4.78737e-05
0.0116739
-4.81196e-05
0.0116641
-4.83533e-05
0.0116543
-4.8575e-05
0.0116444
-4.8785e-05
0.0116345
-4.89838e-05
0.0116246
-4.91713e-05
0.0116146
-4.93484e-05
0.0116046
-4.95151e-05
0.0115946
-4.96718e-05
0.0115845
-4.98188e-05
0.0115744
-4.99564e-05
0.0115643
-5.0085e-05
0.0115542
-5.02048e-05
0.011544
-5.03164e-05
0.0115339
-5.04196e-05
0.0115237
-5.05154e-05
0.0115135
-5.06034e-05
0.0115033
-5.06846e-05
0.0114931
-5.07589e-05
0.0114828
-5.08266e-05
0.0114726
-5.08882e-05
0.0114623
-5.09439e-05
0.0114521
-5.0994e-05
0.0114418
-5.10387e-05
0.0114316
-5.10785e-05
0.0114213
-5.11136e-05
0.011411
-5.11442e-05
0.0114007
-5.11706e-05
0.0113904
-5.11931e-05
0.0113802
-5.12121e-05
0.0113699
-5.12275e-05
0.0113596
-5.124e-05
0.0113493
-5.12494e-05
0.011339
-5.12564e-05
0.0113287
-5.12609e-05
0.0113185
-5.12633e-05
0.0113082
-5.12637e-05
0.0112979
-5.12624e-05
0.0112876
-5.12597e-05
0.0112774
-5.12554e-05
0.0112671
-5.12504e-05
0.0112568
-5.12441e-05
0.0112466
-5.12374e-05
0.0112363
-5.123e-05
0.011226
-5.12223e-05
0.0112158
-5.12143e-05
0.0112055
-5.12063e-05
0.0111953
-5.11983e-05
0.011185
-5.11906e-05
0.0111748
-5.11832e-05
0.0111646
-5.11762e-05
0.0111543
-5.11699e-05
0.0111441
-5.11643e-05
0.0111338
-5.11594e-05
0.0111236
-5.11555e-05
0.0111134
-5.11524e-05
0.0111031
-5.11504e-05
0.0110929
-5.11496e-05
0.0110827
-5.11499e-05
0.0110725
-5.11514e-05
0.0110622
-5.11539e-05
0.011052
-5.11586e-05
0.0110418
-5.11623e-05
-5.11725e-05
0.0116571
5.92914e-05
-0.0116421
0.0116719
5.84542e-05
0.0116865
5.75866e-05
0.0117009
5.66955e-05
0.011715
5.57819e-05
0.0117289
5.48452e-05
0.0117426
5.38857e-05
0.011756
5.29043e-05
0.0117691
5.19022e-05
0.011782
5.08805e-05
0.0117946
4.98404e-05
0.0118069
4.87829e-05
0.011819
4.7709e-05
0.0118307
4.66197e-05
0.0118422
4.5516e-05
0.0118534
4.4399e-05
0.0118643
4.32695e-05
0.011875
4.21286e-05
0.0118853
4.09773e-05
0.0118953
3.98165e-05
0.011905
3.86472e-05
0.0119145
3.74701e-05
0.0119236
3.62863e-05
0.0119324
3.50966e-05
0.0119409
3.39018e-05
0.0119491
3.27029e-05
0.011957
3.15005e-05
0.0119646
3.02955e-05
0.0119719
2.90886e-05
0.0119789
2.78807e-05
0.0119855
2.66724e-05
0.0119919
2.54644e-05
0.011998
2.42574e-05
0.0120037
2.30522e-05
0.0120091
2.18492e-05
0.0120143
2.06492e-05
0.0120191
1.94528e-05
0.0120236
1.82605e-05
0.0120279
1.70729e-05
0.0120318
1.58905e-05
0.0120354
1.4714e-05
0.0120388
1.35437e-05
0.0120418
1.23803e-05
0.0120446
1.12241e-05
0.012047
1.00756e-05
0.0120492
8.93524e-06
0.0120511
7.80351e-06
0.0120527
6.68078e-06
0.012054
5.56745e-06
0.012055
4.46389e-06
0.0120558
3.37047e-06
0.0120563
2.28753e-06
0.0120565
1.21541e-06
0.0120564
1.54202e-07
0.0120561
-8.94989e-07
0.0120555
-1.93263e-06
0.0120547
-2.95826e-06
0.0120536
-3.9716e-06
0.0120523
-4.97235e-06
0.0120507
-5.96028e-06
0.0120488
-6.93515e-06
0.0120467
-7.89674e-06
0.0120444
-8.84484e-06
0.0120419
-9.77924e-06
0.0120391
-1.06998e-05
0.0120361
-1.16062e-05
0.0120328
-1.24985e-05
0.0120294
-1.33764e-05
0.0120257
-1.42397e-05
0.0120218
-1.50884e-05
0.0120177
-1.59224e-05
0.0120134
-1.67415e-05
0.0120089
-1.75456e-05
0.0120042
-1.83346e-05
0.0119993
-1.91085e-05
0.0119942
-1.98672e-05
0.0119889
-2.06106e-05
0.0119835
-2.13388e-05
0.0119778
-2.20516e-05
0.011972
-2.2749e-05
0.011966
-2.34311e-05
0.0119599
-2.40978e-05
0.0119536
-2.47491e-05
0.0119471
-2.53851e-05
0.0119405
-2.60058e-05
0.0119337
-2.66112e-05
0.0119268
-2.72013e-05
0.0119197
-2.77763e-05
0.0119125
-2.83362e-05
0.0119052
-2.88811e-05
0.0118977
-2.9411e-05
0.0118901
-2.99261e-05
0.0118824
-3.04265e-05
0.0118745
-3.09122e-05
0.0118666
-3.13835e-05
0.0118585
-3.18403e-05
0.0118503
-3.2283e-05
0.011842
-3.27116e-05
0.0118336
-3.31263e-05
0.0118251
-3.35272e-05
0.0118165
-3.39146e-05
0.0118078
-3.42885e-05
0.0117991
-3.46492e-05
0.0117902
-3.49969e-05
0.0117813
-3.53318e-05
0.0117723
-3.56541e-05
0.0117632
-3.59639e-05
0.011754
-3.62616e-05
0.0117448
-3.65472e-05
0.0117355
-3.68211e-05
0.0117261
-3.70835e-05
0.0117167
-3.73346e-05
0.0117072
-3.75747e-05
0.0116977
-3.78039e-05
0.0116881
-3.80226e-05
0.0116784
-3.8231e-05
0.0116687
-3.84293e-05
0.011659
-3.86177e-05
0.0116492
-3.87966e-05
0.0116394
-3.89662e-05
0.0116295
-3.91268e-05
0.0116196
-3.92786e-05
0.0116097
-3.94218e-05
0.0115998
-3.95567e-05
0.0115898
-3.96837e-05
0.0115798
-3.98028e-05
0.0115697
-3.99145e-05
0.0115596
-4.0019e-05
0.0115496
-4.01164e-05
0.0115394
-4.02072e-05
0.0115293
-4.02914e-05
0.0115192
-4.03695e-05
0.011509
-4.04416e-05
0.0114988
-4.0508e-05
0.0114886
-4.05689e-05
0.0114784
-4.06246e-05
0.0114682
-4.06754e-05
0.011458
-4.07214e-05
0.0114478
-4.07629e-05
0.0114375
-4.08002e-05
0.0114273
-4.08334e-05
0.011417
-4.08628e-05
0.0114068
-4.08886e-05
0.0113965
-4.09111e-05
0.0113863
-4.09304e-05
0.011376
-4.09468e-05
0.0113657
-4.09605e-05
0.0113555
-4.09717e-05
0.0113452
-4.09805e-05
0.0113349
-4.09872e-05
0.0113247
-4.09919e-05
0.0113144
-4.09949e-05
0.0113041
-4.09963e-05
0.0112939
-4.09964e-05
0.0112836
-4.09951e-05
0.0112733
-4.09928e-05
0.0112631
-4.09896e-05
0.0112528
-4.09857e-05
0.0112426
-4.09811e-05
0.0112323
-4.0976e-05
0.011222
-4.09706e-05
0.0112118
-4.0965e-05
0.0112016
-4.09592e-05
0.0111913
-4.09535e-05
0.0111811
-4.0948e-05
0.0111708
-4.09427e-05
0.0111606
-4.09377e-05
0.0111503
-4.09332e-05
0.0111401
-4.09291e-05
0.0111299
-4.09257e-05
0.0111196
-4.09229e-05
0.0111094
-4.09209e-05
0.0110992
-4.09196e-05
0.011089
-4.09192e-05
0.0110787
-4.09196e-05
0.0110685
-4.09211e-05
0.0110583
-4.09231e-05
0.011048
-4.09271e-05
0.0110378
-4.093e-05
-4.09383e-05
0.0116502
4.43695e-05
-0.0116353
0.0116649
4.37438e-05
0.0116794
4.3096e-05
0.0116936
4.24307e-05
0.0117077
4.17486e-05
0.0117215
4.10496e-05
0.011735
4.03335e-05
0.0117483
3.9601e-05
0.0117614
3.88531e-05
0.0117742
3.80905e-05
0.0117867
3.73141e-05
0.011799
3.65247e-05
0.0118109
3.5723e-05
0.0118226
3.49097e-05
0.0118341
3.40855e-05
0.0118452
3.32514e-05
0.0118561
3.24078e-05
0.0118667
3.15557e-05
0.0118769
3.06957e-05
0.0118869
2.98285e-05
0.0118966
2.89549e-05
0.011906
2.80754e-05
0.0119151
2.71908e-05
0.0119239
2.63016e-05
0.0119324
2.54087e-05
0.0119406
2.45124e-05
0.0119485
2.36136e-05
0.0119561
2.27127e-05
0.0119633
2.18104e-05
0.0119703
2.09072e-05
0.011977
2.00036e-05
0.0119833
1.91002e-05
0.0119894
1.81975e-05
0.0119952
1.72959e-05
0.0120006
1.63961e-05
0.0120058
1.54984e-05
0.0120106
1.46033e-05
0.0120152
1.37112e-05
0.0120194
1.28226e-05
0.0120234
1.19378e-05
0.012027
1.10574e-05
0.0120304
1.01816e-05
0.0120335
9.31077e-06
0.0120362
8.44537e-06
0.0120387
7.5857e-06
0.0120409
6.7321e-06
0.0120428
5.88488e-06
0.0120445
5.04436e-06
0.0120458
4.21083e-06
0.0120469
3.38457e-06
0.0120477
2.56587e-06
0.0120483
1.75498e-06
0.0120485
9.52149e-07
0.0120485
1.57498e-07
0.0120482
-6.28289e-07
0.0120477
-1.40542e-06
0.0120469
-2.17358e-06
0.0120459
-2.93256e-06
0.0120446
-3.68215e-06
0.0120431
-4.42217e-06
0.0120413
-5.15244e-06
0.0120393
-5.8728e-06
0.012037
-6.58308e-06
0.0120345
-7.28313e-06
0.0120318
-7.97282e-06
0.0120288
-8.65201e-06
0.0120256
-9.32058e-06
0.0120222
-9.97841e-06
0.0120186
-1.06254e-05
0.0120148
-1.12614e-05
0.0120108
-1.18864e-05
0.0120065
-1.25003e-05
0.0120021
-1.3103e-05
0.0119974
-1.36945e-05
0.0119926
-1.42746e-05
0.0119876
-1.48434e-05
0.0119824
-1.54007e-05
0.011977
-1.59467e-05
0.0119714
-1.64811e-05
0.0119657
-1.70041e-05
0.0119598
-1.75156e-05
0.0119537
-1.80156e-05
0.0119474
-1.85041e-05
0.011941
-1.89812e-05
0.0119345
-1.94468e-05
0.0119278
-1.9901e-05
0.0119209
-2.03438e-05
0.0119139
-2.07752e-05
0.0119068
-2.11954e-05
0.0118995
-2.16043e-05
0.0118921
-2.20021e-05
0.0118845
-2.23887e-05
0.0118769
-2.27644e-05
0.0118691
-2.31291e-05
0.0118612
-2.3483e-05
0.0118532
-2.38261e-05
0.011845
-2.41586e-05
0.0118368
-2.44806e-05
0.0118285
-2.47922e-05
0.0118201
-2.50935e-05
0.0118115
-2.53846e-05
0.0118029
-2.56657e-05
0.0117942
-2.59369e-05
0.0117854
-2.61984e-05
0.0117765
-2.64502e-05
0.0117675
-2.66927e-05
0.0117585
-2.69258e-05
0.0117494
-2.71498e-05
0.0117402
-2.73649e-05
0.011731
-2.75711e-05
0.0117216
-2.77687e-05
0.0117123
-2.79579e-05
0.0117028
-2.81388e-05
0.0116933
-2.83116e-05
0.0116838
-2.84765e-05
0.0116742
-2.86336e-05
0.0116646
-2.87832e-05
0.0116549
-2.89255e-05
0.0116451
-2.90606e-05
0.0116353
-2.91887e-05
0.0116255
-2.931e-05
0.0116157
-2.94247e-05
0.0116058
-2.95331e-05
0.0115959
-2.96352e-05
0.0115859
-2.97314e-05
0.0115759
-2.98217e-05
0.0115659
-2.99063e-05
0.0115559
-2.99855e-05
0.0115458
-3.00597e-05
0.0115358
-3.01286e-05
0.0115257
-3.01927e-05
0.0115155
-3.02522e-05
0.0115054
-3.03071e-05
0.0114953
-3.03578e-05
0.0114851
-3.04044e-05
0.0114749
-3.04471e-05
0.0114647
-3.0486e-05
0.0114545
-3.05213e-05
0.0114443
-3.05533e-05
0.0114341
-3.05821e-05
0.0114239
-3.06078e-05
0.0114136
-3.06307e-05
0.0114034
-3.06508e-05
0.0113932
-3.06685e-05
0.0113829
-3.06837e-05
0.0113727
-3.06968e-05
0.0113624
-3.07078e-05
0.0113522
-3.07168e-05
0.0113419
-3.07242e-05
0.0113316
-3.07299e-05
0.0113214
-3.07341e-05
0.0113111
-3.0737e-05
0.0113009
-3.07387e-05
0.0112906
-3.07393e-05
0.0112804
-3.07389e-05
0.0112701
-3.07378e-05
0.0112598
-3.07359e-05
0.0112496
-3.07335e-05
0.0112393
-3.07305e-05
0.0112291
-3.07272e-05
0.0112188
-3.07236e-05
0.0112086
-3.07199e-05
0.0111984
-3.0716e-05
0.0111881
-3.07121e-05
0.0111779
-3.07082e-05
0.0111676
-3.07048e-05
0.0111574
-3.07013e-05
0.0111472
-3.06982e-05
0.0111369
-3.06954e-05
0.0111267
-3.06931e-05
0.0111165
-3.06912e-05
0.0111062
-3.06899e-05
0.011096
-3.06891e-05
0.0110858
-3.0689e-05
0.0110755
-3.06894e-05
0.0110653
-3.06907e-05
0.0110551
-3.06922e-05
0.0110449
-3.06952e-05
0.0110346
-3.06975e-05
-3.07037e-05
0.011645
2.95352e-05
-0.0116302
0.0116596
2.91189e-05
0.011674
2.86872e-05
0.0116882
2.82449e-05
0.0117022
2.77916e-05
0.0117159
2.73268e-05
0.0117294
2.68509e-05
0.0117426
2.63641e-05
0.0117556
2.58671e-05
0.0117683
2.53604e-05
0.0117808
2.48445e-05
0.011793
2.43199e-05
0.0118049
2.37872e-05
0.0118166
2.32467e-05
0.011828
2.2699e-05
0.0118391
2.21446e-05
0.0118499
2.15839e-05
0.0118604
2.10175e-05
0.0118707
2.04458e-05
0.0118807
1.98693e-05
0.0118903
1.92885e-05
0.0118997
1.87037e-05
0.0119088
1.81155e-05
0.0119175
1.75243e-05
0.011926
1.69304e-05
0.0119342
1.63344e-05
0.0119421
1.57366e-05
0.0119497
1.51373e-05
0.0119569
1.45371e-05
0.0119639
1.39363e-05
0.0119706
1.33351e-05
0.0119769
1.27341e-05
0.011983
1.21335e-05
0.0119888
1.15336e-05
0.0119942
1.09349e-05
0.0119994
1.03375e-05
0.0120042
9.74181e-06
0.0120088
9.14812e-06
0.0120131
8.55671e-06
0.012017
7.96785e-06
0.0120207
7.3818e-06
0.0120241
6.79883e-06
0.0120272
6.21918e-06
0.01203
5.64309e-06
0.0120325
5.07079e-06
0.0120347
4.50251e-06
0.0120367
3.93846e-06
0.0120384
3.37884e-06
0.0120397
2.82385e-06
0.0120409
2.27369e-06
0.0120417
1.72854e-06
0.0120423
1.18858e-06
0.0120426
6.53967e-07
0.0120426
1.24798e-07
0.0120424
-3.98528e-07
0.0120419
-9.1608e-07
0.0120411
-1.42768e-06
0.0120401
-1.93317e-06
0.0120389
-2.43244e-06
0.0120374
-2.92534e-06
0.0120356
-3.41177e-06
0.0120337
-3.8916e-06
0.0120314
-4.36474e-06
0.012029
-4.83109e-06
0.0120263
-5.29054e-06
0.0120234
-5.74302e-06
0.0120203
-6.18843e-06
0.0120169
-6.62671e-06
0.0120133
-7.05777e-06
0.0120096
-7.48156e-06
0.0120056
-7.89801e-06
0.0120014
-8.30707e-06
0.011997
-8.70869e-06
0.0119924
-9.10283e-06
0.0119876
-9.48944e-06
0.0119826
-9.8685e-06
0.0119775
-1.024e-05
0.0119721
-1.06038e-05
0.0119666
-1.09601e-05
0.0119609
-1.13087e-05
0.011955
-1.16497e-05
0.011949
-1.1983e-05
0.0119428
-1.23087e-05
0.0119365
-1.26268e-05
0.01193
-1.29372e-05
0.0119233
-1.324e-05
0.0119165
-1.35353e-05
0.0119095
-1.38231e-05
0.0119024
-1.41033e-05
0.0118952
-1.4376e-05
0.0118879
-1.46413e-05
0.0118804
-1.48993e-05
0.0118727
-1.51499e-05
0.011865
-1.53932e-05
0.0118572
-1.56294e-05
0.0118492
-1.58584e-05
0.0118411
-1.60803e-05
0.0118329
-1.62952e-05
0.0118246
-1.65032e-05
0.0118162
-1.67043e-05
0.0118078
-1.68987e-05
0.0117992
-1.70864e-05
0.0117905
-1.72675e-05
0.0117818
-1.74421e-05
0.0117729
-1.76104e-05
0.011764
-1.77723e-05
0.011755
-1.79281e-05
0.0117459
-1.80778e-05
0.0117368
-1.82216e-05
0.0117276
-1.83594e-05
0.0117183
-1.84916e-05
0.011709
-1.86181e-05
0.0116996
-1.87391e-05
0.0116901
-1.88547e-05
0.0116806
-1.8965e-05
0.011671
-1.90702e-05
0.0116614
-1.91704e-05
0.0116518
-1.92656e-05
0.011642
-1.93561e-05
0.0116323
-1.9442e-05
0.0116225
-1.95233e-05
0.0116127
-1.96002e-05
0.0116028
-1.96729e-05
0.0115929
-1.97414e-05
0.011583
-1.9806e-05
0.0115731
-1.98666e-05
0.0115631
-1.99235e-05
0.0115531
-1.99768e-05
0.011543
-2.00266e-05
0.011533
-2.0073e-05
0.0115229
-2.01161e-05
0.0115128
-2.01562e-05
0.0115027
-2.01933e-05
0.0114926
-2.02275e-05
0.0114824
-2.0259e-05
0.0114723
-2.02878e-05
0.0114621
-2.03142e-05
0.0114519
-2.03382e-05
0.0114417
-2.03599e-05
0.0114315
-2.03794e-05
0.0114213
-2.0397e-05
0.0114111
-2.04126e-05
0.0114008
-2.04264e-05
0.0113906
-2.04386e-05
0.0113804
-2.04491e-05
0.0113701
-2.04581e-05
0.0113599
-2.04658e-05
0.0113497
-2.04722e-05
0.0113394
-2.04774e-05
0.0113292
-2.04815e-05
0.0113189
-2.04847e-05
0.0113087
-2.04869e-05
0.0112984
-2.04883e-05
0.0112882
-2.0489e-05
0.0112779
-2.04891e-05
0.0112677
-2.04886e-05
0.0112574
-2.04876e-05
0.0112472
-2.04862e-05
0.0112369
-2.04845e-05
0.0112267
-2.04825e-05
0.0112164
-2.04803e-05
0.0112062
-2.0478e-05
0.011196
-2.04756e-05
0.0111857
-2.04732e-05
0.0111755
-2.04709e-05
0.0111652
-2.04686e-05
0.011155
-2.04665e-05
0.0111448
-2.04646e-05
0.0111345
-2.04629e-05
0.0111243
-2.04615e-05
0.0111141
-2.04603e-05
0.0111038
-2.04595e-05
0.0110936
-2.0459e-05
0.0110834
-2.04591e-05
0.0110732
-2.04593e-05
0.0110629
-2.04603e-05
0.0110527
-2.04613e-05
0.0110425
-2.04636e-05
0.0110322
-2.04651e-05
-2.04691e-05
0.0116415
1.47602e-05
-0.0116267
0.0116561
1.45479e-05
0.0116704
1.43318e-05
0.0116846
1.41099e-05
0.0116985
1.3883e-05
0.0117122
1.36506e-05
0.0117256
1.34129e-05
0.0117388
1.31699e-05
0.0117517
1.29219e-05
0.0117644
1.2669e-05
0.0117769
1.24116e-05
0.011789
1.21499e-05
0.0118009
1.1884e-05
0.0118126
1.16144e-05
0.0118239
1.13412e-05
0.011835
1.10645e-05
0.0118458
1.07846e-05
0.0118563
1.05021e-05
0.0118665
1.02168e-05
0.0118765
9.92912e-06
0.0118861
9.63911e-06
0.0118955
9.3473e-06
0.0119045
9.0537e-06
0.0119133
8.75857e-06
0.0119218
8.46213e-06
0.01193
8.16458e-06
0.0119378
7.86613e-06
0.0119454
7.56696e-06
0.0119527
7.26728e-06
0.0119596
6.96727e-06
0.0119663
6.66712e-06
0.0119727
6.36699e-06
0.0119787
6.06706e-06
0.0119845
5.7675e-06
0.01199
5.46858e-06
0.0119951
5.17012e-06
0.012
4.87256e-06
0.0120046
4.57604e-06
0.0120089
4.2807e-06
0.0120128
3.98657e-06
0.0120165
3.69384e-06
0.0120199
3.40263e-06
0.012023
3.11308e-06
0.0120258
2.82529e-06
0.0120284
2.53951e-06
0.0120306
2.2555e-06
0.0120326
1.97359e-06
0.0120343
1.69412e-06
0.0120357
1.41684e-06
0.0120368
1.14197e-06
0.0120377
8.69594e-07
0.0120383
5.99804e-07
0.0120386
3.32682e-07
0.0120386
6.83475e-08
0.0120384
-1.93158e-07
0.012038
-4.51946e-07
0.0120372
-7.07473e-07
0.0120363
-9.60073e-07
0.012035
-1.2095e-06
0.0120336
-1.45594e-06
0.0120319
-1.69896e-06
0.0120299
-1.93876e-06
0.0120277
-2.17521e-06
0.0120253
-2.40828e-06
0.0120226
-2.63778e-06
0.0120198
-2.86404e-06
0.0120167
-3.08677e-06
0.0120133
-3.30571e-06
0.0120098
-3.52116e-06
0.0120061
-3.73299e-06
0.0120021
-3.94115e-06
0.0119979
-4.14562e-06
0.0119936
-4.34637e-06
0.011989
-4.54339e-06
0.0119843
-4.73654e-06
0.0119793
-4.92615e-06
0.0119742
-5.11197e-06
0.0119689
-5.29376e-06
0.0119634
-5.47186e-06
0.0119577
-5.64616e-06
0.0119519
-5.81663e-06
0.0119459
-5.98329e-06
0.0119397
-6.14614e-06
0.0119334
-6.30518e-06
0.0119269
-6.4603e-06
0.0119203
-6.61197e-06
0.0119135
-6.75952e-06
0.0119066
-6.90341e-06
0.0118996
-7.04356e-06
0.0118924
-7.17997e-06
0.011885
-7.31267e-06
0.0118776
-7.44169e-06
0.01187
-7.56705e-06
0.0118623
-7.68878e-06
0.0118545
-7.8068e-06
0.0118465
-7.92158e-06
0.0118385
-8.03249e-06
0.0118303
-8.14002e-06
0.0118221
-8.24409e-06
0.0118137
-8.34463e-06
0.0118053
-8.44213e-06
0.0117967
-8.53596e-06
0.0117881
-8.62662e-06
0.0117793
-8.71392e-06
0.0117705
-8.79826e-06
0.0117616
-8.87946e-06
0.0117527
-8.95734e-06
0.0117436
-9.0323e-06
0.0117345
-9.10428e-06
0.0117253
-9.17334e-06
0.0117161
-9.23952e-06
0.0117067
-9.3029e-06
0.0116974
-9.36352e-06
0.0116879
-9.42133e-06
0.0116784
-9.47673e-06
0.0116689
-9.52957e-06
0.0116593
-9.57966e-06
0.0116497
-9.62742e-06
0.01164
-9.6728e-06
0.0116303
-9.71585e-06
0.0116205
-9.75664e-06
0.0116107
-9.79524e-06
0.0116009
-9.8317e-06
0.011591
-9.86599e-06
0.0115811
-9.89849e-06
0.0115711
-9.92906e-06
0.0115612
-9.95753e-06
0.0115512
-9.9843e-06
0.0115412
-1.00093e-05
0.0115311
-1.00325e-05
0.0115211
-1.00545e-05
0.011511
-1.00745e-05
0.0115009
-1.00932e-05
0.0114908
-1.01103e-05
0.0114806
-1.01263e-05
0.0114705
-1.0141e-05
0.0114603
-1.01541e-05
0.0114501
-1.01663e-05
0.01144
-1.01772e-05
0.0114298
-1.01871e-05
0.0114196
-1.0196e-05
0.0114094
-1.02039e-05
0.0113991
-1.0211e-05
0.0113889
-1.0217e-05
0.0113787
-1.02225e-05
0.0113685
-1.02272e-05
0.0113582
-1.02312e-05
0.011348
-1.02344e-05
0.0113378
-1.02371e-05
0.0113275
-1.02392e-05
0.0113173
-1.02409e-05
0.011307
-1.02421e-05
0.0112968
-1.02429e-05
0.0112865
-1.02432e-05
0.0112763
-1.02435e-05
0.011266
-1.02434e-05
0.0112558
-1.02429e-05
0.0112455
-1.02423e-05
0.0112353
-1.02414e-05
0.0112251
-1.02406e-05
0.0112148
-1.02395e-05
0.0112046
-1.02386e-05
0.0111943
-1.02373e-05
0.0111841
-1.02361e-05
0.0111739
-1.0235e-05
0.0111636
-1.02341e-05
0.0111534
-1.0233e-05
0.0111432
-1.0232e-05
0.0111329
-1.02312e-05
0.0111227
-1.02306e-05
0.0111125
-1.023e-05
0.0111022
-1.02297e-05
0.011092
-1.02293e-05
0.0110818
-1.02295e-05
0.0110716
-1.02292e-05
0.0110613
-1.02304e-05
0.0110511
-1.02294e-05
0.0110409
-1.02325e-05
0.0110306
-1.02302e-05
-1.02372e-05
0.0116398
-0.0116251
0.0116544
0.0116687
0.0116828
0.0116967
0.0117103
0.0117238
0.0117369
0.0117498
0.0117625
0.0117749
0.0117871
0.011799
0.0118106
0.0118219
0.011833
0.0118438
0.0118543
0.0118645
0.0118744
0.0118841
0.0118934
0.0119025
0.0119112
0.0119197
0.0119278
0.0119357
0.0119433
0.0119505
0.0119575
0.0119642
0.0119705
0.0119766
0.0119824
0.0119878
0.011993
0.0119979
0.0120025
0.0120067
0.0120107
0.0120144
0.0120178
0.0120209
0.0120238
0.0120263
0.0120286
0.0120305
0.0120322
0.0120336
0.0120348
0.0120357
0.0120363
0.0120366
0.0120367
0.0120365
0.012036
0.0120353
0.0120343
0.0120331
0.0120317
0.01203
0.012028
0.0120259
0.0120235
0.0120208
0.012018
0.0120149
0.0120116
0.012008
0.0120043
0.0120004
0.0119962
0.0119919
0.0119873
0.0119826
0.0119777
0.0119726
0.0119673
0.0119618
0.0119561
0.0119503
0.0119443
0.0119382
0.0119319
0.0119254
0.0119188
0.0119121
0.0119052
0.0118981
0.0118909
0.0118836
0.0118762
0.0118686
0.0118609
0.0118531
0.0118452
0.0118372
0.011829
0.0118208
0.0118124
0.011804
0.0117955
0.0117868
0.0117781
0.0117693
0.0117604
0.0117515
0.0117425
0.0117333
0.0117242
0.0117149
0.0117056
0.0116963
0.0116868
0.0116774
0.0116678
0.0116583
0.0116486
0.011639
0.0116292
0.0116195
0.0116097
0.0115999
0.01159
0.0115801
0.0115702
0.0115602
0.0115502
0.0115402
0.0115302
0.0115201
0.0115101
0.0115
0.0114899
0.0114797
0.0114696
0.0114594
0.0114493
0.0114391
0.0114289
0.0114187
0.0114085
0.0113983
0.0113881
0.0113778
0.0113676
0.0113574
0.0113472
0.0113369
0.0113267
0.0113164
0.0113062
0.011296
0.0112857
0.0112755
0.0112652
0.011255
0.0112447
0.0112345
0.0112243
0.011214
0.0112038
0.0111935
0.0111833
0.0111731
0.0111628
0.0111526
0.0111424
0.0111321
0.0111219
0.0111117
0.0111014
0.0110912
0.011081
0.0110708
0.0110605
0.0110503
0.0110401
0.0110298
0.00285012
-0.0121227
0.0029195
-0.0128243
0.002884
-0.0130031
0.0028069
-0.0129868
0.00271531
-0.0129025
0.00262015
-0.0128012
0.00252554
-0.0127023
0.00243269
-0.0126113
0.00234175
-0.0125285
0.00225257
-0.0124528
0.00216496
-0.0123828
0.00207881
-0.0123176
0.00199401
-0.0122567
0.00191049
-0.0121996
0.00182819
-0.012146
0.00174704
-0.0120957
0.00166698
-0.0120484
0.00158795
-0.0120039
0.00150988
-0.0119621
0.00143271
-0.0119229
0.00135639
-0.011886
0.00128086
-0.0118514
0.00120606
-0.011819
0.00113194
-0.0117888
0.00105846
-0.0117606
0.000985552
-0.0117343
0.000913179
-0.01171
0.000841288
-0.0116876
0.000769835
-0.011667
0.000698772
-0.0116483
0.000628056
-0.0116313
0.000557642
-0.0116161
0.000487485
-0.0116026
0.000417544
-0.0115909
0.000347774
-0.0115808
0.000278134
-0.0115724
0.000208581
-0.0115657
0.000139068
-0.0115606
6.95644e-05
-0.0115572
-0.0115555
0.00286241
-0.0123406
0.0028865
-0.0128484
0.00283052
-0.0129472
0.00274601
-0.0129023
0.00265315
-0.0128096
0.00255901
-0.012707
0.00246622
-0.0126095
0.00237541
-0.0125205
0.00228653
-0.0124397
0.00219935
-0.0123656
0.00211373
-0.0122972
0.00202952
-0.0122334
0.00194665
-0.0121739
0.00186505
-0.012118
0.00178465
-0.0120656
0.00170537
-0.0120164
0.00162717
-0.0119702
0.00154998
-0.0119267
0.00147373
-0.0118859
0.00139837
-0.0118475
0.00132384
-0.0118115
0.00125009
-0.0117777
0.00117706
-0.011746
0.00110469
-0.0117164
0.00103294
-0.0116888
0.000961769
-0.0116631
0.000891114
-0.0116394
0.000820936
-0.0116174
0.000751187
-0.0115973
0.000681823
-0.0115789
0.000612802
-0.0115623
0.000544078
-0.0115474
0.000475611
-0.0115342
0.000407358
-0.0115226
0.000339277
-0.0115127
0.000271327
-0.0115045
0.000203467
-0.0114978
0.000135654
-0.0114928
6.78512e-05
-0.0114894
-0.0114876
0.00283692
-0.0124887
0.00283232
-0.0128438
0.00276872
-0.0128836
0.0026831
-0.0128167
0.00259126
-0.0127178
0.00249887
-0.0126146
0.00240799
-0.0125186
0.00231912
-0.0124316
0.00223213
-0.0123527
0.00214683
-0.0122803
0.00206305
-0.0122134
0.00198068
-0.0121511
0.00189964
-0.0120928
0.00181986
-0.0120382
0.00174127
-0.011987
0.00166381
-0.011939
0.0015874
-0.0118938
0.001512
-0.0118513
0.00143753
-0.0118114
0.00136394
-0.0117739
0.00129118
-0.0117387
0.00121917
-0.0117057
0.00114789
-0.0116747
0.00107726
-0.0116458
0.00100725
-0.0116188
0.000937796
-0.0115937
0.000868862
-0.0115704
0.000800399
-0.011549
0.000732362
-0.0115293
0.000664708
-0.0115113
0.000597392
-0.011495
0.000530374
-0.0114804
0.000463611
-0.0114674
0.000397063
-0.0114561
0.000330688
-0.0114463
0.000264447
-0.0114382
0.000198299
-0.0114317
0.000132202
-0.0114267
6.61207e-05
-0.0114233
-0.0114215
0.00280687
-0.0125843
0.00277899
-0.0128159
0.00270691
-0.0128115
0.00261926
-0.012729
0.00252794
-0.0126265
0.00243713
-0.0125238
0.00234816
-0.0124296
0.00226125
-0.0123447
0.00217622
-0.0122676
0.00209284
-0.012197
0.00201097
-0.0121315
0.0019305
-0.0120706
0.00185135
-0.0120137
0.00177345
-0.0119603
0.00169673
-0.0119103
0.00162113
-0.0118634
0.00154657
-0.0118192
0.00147301
-0.0117778
0.00140038
-0.0117388
0.00132861
-0.0117022
0.00125766
-0.0116677
0.00118746
-0.0116355
0.00111797
-0.0116052
0.00104913
-0.0115769
0.000980892
-0.0115506
0.000913214
-0.011526
0.000846047
-0.0115033
0.000779345
-0.0114823
0.000713065
-0.011463
0.000647163
-0.0114454
0.000581598
-0.0114294
0.000516329
-0.0114151
0.000451314
-0.0114024
0.000386514
-0.0113913
0.000321888
-0.0113817
0.000257398
-0.0113737
0.000193004
-0.0113673
0.000128666
-0.0113624
6.43486e-05
-0.011359
-0.0113572
0.00276215
-0.0126341
0.00271733
-0.0127711
0.00264063
-0.0127348
0.002553
-0.0126414
0.00246308
-0.0125365
0.00237418
-0.0124349
0.00228723
-0.0123427
0.00220233
-0.0122598
0.00211927
-0.0121846
0.00203784
-0.0121155
0.0019579
-0.0120516
0.00187936
-0.0119921
0.00180212
-0.0119364
0.00172613
-0.0118844
0.00165131
-0.0118355
0.00157761
-0.0117897
0.00150494
-0.0117466
0.00143325
-0.0117061
0.00136248
-0.011668
0.00129257
-0.0116322
0.00122346
-0.0115986
0.0011551
-0.0115671
0.00108744
-0.0115376
0.00102042
-0.0115099
0.000953999
-0.0114841
0.000888129
-0.0114601
0.000822763
-0.0114379
0.000757859
-0.0114174
0.000693371
-0.0113985
0.000629259
-0.0113813
0.000565481
-0.0113656
0.000501996
-0.0113516
0.000438766
-0.0113392
0.000375749
-0.0113283
0.000312909
-0.0113189
0.000250206
-0.011311
0.000187602
-0.0113047
0.000125059
-0.0112998
6.25413e-05
-0.0112965
-0.0112946
0.00270948
-0.0126486
0.00265284
-0.0127144
0.0025729
-0.0126549
0.00248551
-0.012554
0.00239701
-0.012448
0.00231002
-0.0123479
0.00222512
-0.0122578
0.00214225
-0.0121769
0.00206119
-0.0121035
0.00198174
-0.0120361
0.00190377
-0.0119736
0.00182718
-0.0119155
0.0017519
-0.0118612
0.00167786
-0.0118103
0.00160498
-0.0117626
0.0015332
-0.0117179
0.00146246
-0.0116758
0.00139268
-0.0116363
0.00132381
-0.0115991
0.0012558
-0.0115642
0.00118857
-0.0115314
0.00112209
-0.0115006
0.00105629
-0.0114718
0.000991129
-0.0114448
0.00092656
-0.0114196
0.000862535
-0.0113961
0.000799009
-0.0113744
0.000735938
-0.0113543
0.00067328
-0.0113358
0.000610993
-0.011319
0.000549039
-0.0113037
0.000487375
-0.01129
0.000425965
-0.0112777
0.000364769
-0.0112671
0.00030375
-0.0112579
0.000242871
-0.0112502
0.000182093
-0.0112439
0.000121381
-0.0112391
6.06988e-05
-0.0112358
-0.0112339
0.00264927
-0.0126361
0.00258448
-0.0126496
0.00250291
-0.0125733
0.00241644
-0.0124675
0.00232969
-0.0123613
0.00224473
-0.012263
0.00216191
-0.012175
0.0020811
-0.0120961
0.00200206
-0.0120245
0.00192462
-0.0119586
0.00184865
-0.0118976
0.00177405
-0.0118409
0.00170076
-0.0117879
0.0016287
-0.0117382
0.00155779
-0.0116917
0.00148798
-0.0116481
0.00141919
-0.011607
0.00135136
-0.0115685
0.00128443
-0.0115322
0.00121833
-0.0114981
0.00115303
-0.0114661
0.00108845
-0.011436
0.00102455
-0.0114079
0.000961288
-0.0113815
0.000898605
-0.0113569
0.000836459
-0.011334
0.000774806
-0.0113127
0.000713603
-0.0112931
0.00065281
-0.011275
0.000592384
-0.0112586
0.000532287
-0.0112436
0.00047248
-0.0112301
0.000412925
-0.0112182
0.000353585
-0.0112077
0.000294422
-0.0111987
0.0002354
-0.0111911
0.000176483
-0.011185
0.000117636
-0.0111803
5.88226e-05
-0.011177
-0.0111751
0.00258365
-0.0126038
0.00251366
-0.0125797
0.00243147
-0.0124911
0.00234616
-0.0123822
0.00226127
-0.0122764
0.00217836
-0.0121801
0.00209764
-0.0120943
0.0020189
-0.0120174
0.00194192
-0.0119475
0.00186651
-0.0118832
0.00179257
-0.0118237
0.00172
-0.0117683
0.00164873
-0.0117166
0.00157868
-0.0116682
0.00150978
-0.0116228
0.00144196
-0.0115802
0.00137515
-0.0115402
0.0013093
-0.0115026
0.00124434
-0.0114673
0.00118021
-0.011434
0.00111685
-0.0114027
0.00105422
-0.0113734
0.000992254
-0.0113459
0.000930914
-0.0113202
0.00087015
-0.0112961
0.000809918
-0.0112737
0.000750172
-0.011253
0.000690872
-0.0112338
0.000631976
-0.0112161
0.000573445
-0.0112
0.000515239
-0.0111854
0.000457322
-0.0111722
0.000399655
-0.0111605
0.000342203
-0.0111503
0.000284929
-0.0111414
0.000227798
-0.011134
0.000170775
-0.011128
0.000113825
-0.0111233
5.69141e-05
-0.0111201
-0.0111182
0.00251375
-0.0125576
0.00244059
-0.0125065
0.00235855
-0.0124091
0.00227468
-0.0122984
0.00219176
-0.0121935
0.00211096
-0.0120993
0.00203237
-0.0120157
0.00195572
-0.0119407
0.00188081
-0.0118726
0.00180747
-0.0118099
0.00173558
-0.0117518
0.00166506
-0.0116978
0.00159584
-0.0116474
0.00152783
-0.0116002
0.00146097
-0.011556
0.00139517
-0.0115145
0.00133039
-0.0114755
0.00126655
-0.0114388
0.00120358
-0.0114043
0.00114144
-0.0113719
0.00108007
-0.0113414
0.00101941
-0.0113127
0.000959413
-0.0112859
0.000900032
-0.0112608
0.00084122
-0.0112373
0.000782932
-0.0112155
0.000725126
-0.0111952
0.00066776
-0.0111764
0.000610794
-0.0111592
0.000554189
-0.0111434
0.000497907
-0.0111291
0.000441911
-0.0111162
0.000386165
-0.0111048
0.000330633
-0.0110947
0.000275281
-0.0110861
0.000220072
-0.0110788
0.000164974
-0.0110729
0.000109953
-0.0110683
5.4975e-05
-0.0110651
-0.0110632
0.00244062
-0.0125019
0.00236576
-0.0124316
0.0022844
-0.0123277
0.00220213
-0.0122161
0.00212125
-0.0121126
0.00204259
-0.0120206
0.00196614
-0.0119392
0.0018916
-0.0118662
0.00181878
-0.0117998
0.00174752
-0.0117386
0.00167772
-0.011682
0.00160929
-0.0116294
0.00154214
-0.0115802
0.0014762
-0.0115342
0.0014114
-0.0114912
0.00134767
-0.0114507
0.00128493
-0.0114127
0.00122312
-0.011377
0.00116219
-0.0113434
0.00110207
-0.0113117
0.00104271
-0.011282
0.000984056
-0.0112541
0.000926057
-0.0112279
0.000868664
-0.0112034
0.000811834
-0.0111805
0.000755522
-0.0111591
0.000699685
-0.0111393
0.000644284
-0.011121
0.000589279
-0.0111042
0.000534631
-0.0110888
0.000480303
-0.0110748
0.00042626
-0.0110622
0.000372465
-0.011051
0.000318884
-0.0110412
0.000265482
-0.0110327
0.000212227
-0.0110255
0.000159084
-0.0110197
0.000106022
-0.0110153
5.30063e-05
-0.0110121
-0.0110102
0.00236498
-0.01244
0.00228943
-0.0123561
0.00220911
-0.0122474
0.00212858
-0.0121356
0.0020498
-0.0120338
0.0019733
-0.0119441
0.00189899
-0.0118649
0.00182658
-0.0117938
0.00175588
-0.011729
0.00168673
-0.0116695
0.00161903
-0.0116143
0.00155271
-0.011563
0.00148766
-0.0115152
0.00142383
-0.0114704
0.00136112
-0.0114285
0.00129947
-0.0113891
0.0012388
-0.0113521
0.00117907
-0.0113172
0.00112019
-0.0112845
0.00106212
-0.0112537
0.00100481
-0.0112247
0.000948183
-0.0111975
0.000892208
-0.0111719
0.000836834
-0.011148
0.000782015
-0.0111257
0.000727707
-0.0111048
0.00067387
-0.0110855
0.000620463
-0.0110676
0.000567447
-0.0110512
0.000514786
-0.0110361
0.000462442
-0.0110224
0.00041038
-0.0110101
0.000358565
-0.0109992
0.000306964
-0.0109895
0.000255542
-0.0109812
0.000204268
-0.0109743
0.000153109
-0.0109686
0.000102034
-0.0109642
5.10097e-05
-0.0109611
-0.0109592
0.00228738
-0.0123745
0.00221182
-0.0122805
0.00213279
-0.0121683
0.00205411
-0.0120569
0.00197746
-0.0119572
0.00190313
-0.0118698
0.00183098
-0.0117928
0.00176072
-0.0117235
0.00169214
-0.0116605
0.00162513
-0.0116025
0.00155957
-0.0115488
0.00149537
-0.0114988
0.00143246
-0.0114523
0.00137074
-0.0114087
0.00131015
-0.0113679
0.00125061
-0.0113295
0.00119205
-0.0112935
0.00113441
-0.0112596
0.00107762
-0.0112277
0.00102163
-0.0111977
0.000966377
-0.0111694
0.000911815
-0.0111429
0.000857893
-0.011118
0.000804564
-0.0110947
0.000751784
-0.0110729
0.000699509
-0.0110526
0.000647699
-0.0110337
0.000596314
-0.0110162
0.000545316
-0.0110002
0.000494668
-0.0109855
0.000444335
-0.0109721
0.000394283
-0.0109601
0.000344476
-0.0109494
0.000294882
-0.01094
0.000245468
-0.0109318
0.000196203
-0.010925
0.000147055
-0.0109194
9.79932e-05
-0.0109151
4.89868e-05
-0.0109121
-0.0109102
0.00220822
-0.0123069
0.00213311
-0.0122054
0.00205553
-0.0120908
0.00197878
-0.0119801
0.00190428
-0.0118827
0.00183214
-0.0117976
0.00176216
-0.0117228
0.00169405
-0.0116554
0.00162762
-0.011594
0.00156276
-0.0115376
0.00149936
-0.0114854
0.00143732
-0.0114368
0.00137656
-0.0113915
0.00131699
-0.0113491
0.00125854
-0.0113094
0.00120114
-0.0112721
0.0011447
-0.0112371
0.00108918
-0.0112041
0.0010345
-0.011173
0.000980612
-0.0111438
0.000927455
-0.0111163
0.00087498
-0.0110904
0.000823137
-0.0110662
0.00077188
-0.0110434
0.000721164
-0.0110222
0.000670948
-0.0110023
0.000621191
-0.0109839
0.000571854
-0.0109669
0.0005229
-0.0109512
0.000474293
-0.0109369
0.000425998
-0.0109238
0.00037798
-0.0109121
0.000330207
-0.0109016
0.000282646
-0.0108924
0.000235266
-0.0108845
0.000188036
-0.0108778
0.000140924
-0.0108723
9.39021e-05
-0.0108681
4.69388e-05
-0.0108651
-0.0108633
0.00212779
-0.0122383
0.00205341
-0.012131
0.00197742
-0.0120148
0.00190265
-0.0119054
0.00183033
-0.0118103
0.00176038
-0.0117277
0.00169257
-0.011655
0.00162663
-0.0115895
0.00156237
-0.0115298
0.00149968
-0.0114749
0.00143846
-0.0114241
0.00137859
-0.0113769
0.00132001
-0.0113329
0.00126261
-0.0112917
0.00120632
-0.0112531
0.00115108
-0.0112169
0.0010968
-0.0111828
0.00104341
-0.0111507
0.000990871
-0.0111205
0.000939107
-0.011092
0.000888069
-0.0110652
0.000837704
-0.0110401
0.000787964
-0.0110164
0.000738803
-0.0109943
0.000690177
-0.0109735
0.000642045
-0.0109542
0.000594366
-0.0109363
0.000547102
-0.0109196
0.000500217
-0.0109043
0.000453675
-0.0108903
0.000407442
-0.0108776
0.000361485
-0.0108661
0.00031577
-0.0108559
0.000270268
-0.0108469
0.000224945
-0.0108391
0.000179774
-0.0108326
0.000134723
-0.0108273
8.97642e-05
-0.0108231
4.48673e-05
-0.0108202
-0.0108184
0.00204628
-0.0121696
0.00197284
-0.0120576
0.00189852
-0.0119405
0.00182579
-0.0118326
0.00175565
-0.0117402
0.00168789
-0.0116599
0.00162227
-0.0115893
0.0015585
-0.0115257
0.00149643
-0.0114677
0.00143594
-0.0114144
0.0013769
-0.0113651
0.00131924
-0.0113193
0.00126284
-0.0112765
0.00120764
-0.0112365
0.00115354
-0.011199
0.00110047
-0.0111638
0.00104836
-0.0111307
0.000997144
-0.0110995
0.000946758
-0.0110701
0.000897143
-0.0110424
0.000848246
-0.0110163
0.000800015
-0.0109918
0.000752402
-0.0109688
0.00070536
-0.0109472
0.000658847
-0.010927
0.000612821
-0.0109082
0.000567243
-0.0108907
0.000522076
-0.0108745
0.000477283
-0.0108595
0.00043283
-0.0108459
0.000388682
-0.0108334
0.000344808
-0.0108222
0.000301176
-0.0108122
0.000257754
-0.0108035
0.000214513
-0.0107959
0.000171423
-0.0107895
0.000128455
-0.0107843
8.55819e-05
-0.0107803
4.27739e-05
-0.0107774
-0.0107756
0.00196386
-0.0121011
0.0018915
-0.0119852
0.00181891
-0.0118679
0.00174826
-0.011762
0.0016803
-0.0116722
0.00161474
-0.0115944
0.0015513
-0.0115259
0.00148972
-0.0114641
0.00142985
-0.0114079
0.00137156
-0.0113561
0.00131474
-0.0113083
0.00125929
-0.0112638
0.00120511
-0.0112223
0.00115212
-0.0111835
0.00110022
-0.0111471
0.00104935
-0.0111129
0.000999436
-0.0110808
0.000950405
-0.0110504
0.000902196
-0.0110219
0.000854751
-0.010995
0.000808016
-0.0109696
0.00076194
-0.0109458
0.000716474
-0.0109233
0.000671573
-0.0109023
0.000627195
-0.0108826
0.000583298
-0.0108643
0.000539843
-0.0108472
0.000496794
-0.0108314
0.000454115
-0.0108168
0.000411772
-0.0108035
0.000369732
-0.0107914
0.000327963
-0.0107805
0.000286434
-0.0107707
0.000245114
-0.0107622
0.000203976
-0.0107548
0.000162989
-0.0107485
0.000122125
-0.0107434
8.13588e-05
-0.0107395
4.06602e-05
-0.0107367
-0.010735
0.00188065
-0.0120332
0.00180945
-0.011914
0.00173867
-0.0117971
0.0016701
-0.0116934
0.00160433
-0.0116064
0.00154096
-0.011531
0.00147971
-0.0114646
0.00142034
-0.0114047
0.00136268
-0.0113502
0.00130661
-0.0113001
0.00125202
-0.0112537
0.0011988
-0.0112106
0.00114685
-0.0111704
0.00109608
-0.0111328
0.00104641
-0.0110975
0.000997762
-0.0110643
0.000950056
-0.0110331
0.000903228
-0.0110036
0.000857216
-0.0109759
0.000811961
-0.0109497
0.000767408
-0.0109251
0.000723506
-0.0109019
0.000680208
-0.01088
0.000637468
-0.0108596
0.000595245
-0.0108404
0.000553496
-0.0108225
0.000512185
-0.0108059
0.000471275
-0.0107905
0.00043073
-0.0107763
0.000390518
-0.0107633
0.000350605
-0.0107515
0.000310961
-0.0107408
0.000271556
-0.0107313
0.000232359
-0.010723
0.000193342
-0.0107157
0.000154478
-0.0107097
0.000115738
-0.0107047
7.70976e-05
-0.0107009
3.85276e-05
-0.0106981
-0.0106965
0.00179675
-0.011966
0.00172679
-0.0118441
0.00165784
-0.0117281
0.00159139
-0.011627
0.00152779
-0.0115428
0.00146661
-0.0114698
0.00140756
-0.0114056
0.00135039
-0.0113476
0.00129496
-0.0112948
0.00124113
-0.0112462
0.00118878
-0.0112013
0.00113781
-0.0111596
0.0010881
-0.0111207
0.00103958
-0.0110842
0.00099215
-0.01105
0.000945732
-0.0110179
0.000900255
-0.0109876
0.000855648
-0.010959
0.000811851
-0.0109321
0.000768803
-0.0109067
0.00072645
-0.0108827
0.000684742
-0.0108602
0.00064363
-0.0108389
0.00060307
-0.010819
0.000563019
-0.0108004
0.000523438
-0.010783
0.00048429
-0.0107668
0.000445537
-0.0107517
0.000407145
-0.0107379
0.000369082
-0.0107252
0.000331316
-0.0107137
0.000293816
-0.0107033
0.000256552
-0.010694
0.000219496
-0.0106859
0.00018262
-0.0106789
0.000145897
-0.0106729
0.000109299
-0.0106681
7.28016e-05
-0.0106644
3.63778e-05
-0.0106617
-0.0106601
0.00171225
-0.0118996
0.00164358
-0.0117754
0.00157651
-0.0116611
0.00151217
-0.0115626
0.00145074
-0.0114814
0.00139175
-0.0114108
0.00133489
-0.0113487
0.00127995
-0.0112926
0.00122675
-0.0112416
0.00117517
-0.0111946
0.00112507
-0.0111512
0.00107636
-0.0111109
0.00102891
-0.0110732
0.000982647
-0.011038
0.000937471
-0.0110049
0.000893303
-0.0109737
0.000850069
-0.0109443
0.0008077
-0.0109166
0.000766133
-0.0108905
0.000725308
-0.0108658
0.000685172
-0.0108426
0.000645674
-0.0108207
0.000606765
-0.0108
0.000568401
-0.0107807
0.000530541
-0.0107625
0.000493145
-0.0107456
0.000456176
-0.0107298
0.000419598
-0.0107152
0.000383377
-0.0107017
0.00034748
-0.0106893
0.000311878
-0.0106781
0.000276538
-0.010668
0.000241434
-0.0106589
0.000206536
-0.010651
0.000171817
-0.0106441
0.000137251
-0.0106384
0.000102811
-0.0106337
6.84741e-05
-0.01063
3.42122e-05
-0.0106275
-0.0106259
0.00162722
-0.011834
0.0015599
-0.0117081
0.00149473
-0.0115959
0.00143249
-0.0115004
0.00137324
-0.0114222
0.00131642
-0.011354
0.00126177
-0.0112941
0.00120904
-0.0112399
0.00115809
-0.0111906
0.00110876
-0.0111453
0.00106094
-0.0111034
0.00101449
-0.0110645
0.000969319
-0.0110281
0.000925324
-0.010994
0.000882414
-0.010962
0.000840509
-0.0109318
0.000799533
-0.0109034
0.000759416
-0.0108765
0.000720094
-0.0108512
0.000681508
-0.0108273
0.000643604
-0.0108047
0.000606331
-0.0107834
0.00056964
-0.0107633
0.000533489
-0.0107445
0.000497835
-0.0107269
0.000462639
-0.0107104
0.000427865
-0.010695
0.000393477
-0.0106808
0.000359442
-0.0106677
0.000325728
-0.0106556
0.000292305
-0.0106447
0.000259142
-0.0106348
0.000226212
-0.010626
0.000193487
-0.0106183
0.000160941
-0.0106116
0.000128547
-0.010606
9.62809e-05
-0.0106014
6.41181e-05
-0.0105979
3.20326e-05
-0.0105954
-0.0105938
0.00154176
-0.0117693
0.00147581
-0.0116421
0.00141256
-0.0115327
0.00135243
-0.0114403
0.00129532
-0.0113651
0.00124068
-0.0112994
0.00118823
-0.0112416
0.00113773
-0.0111894
0.00108903
-0.0111419
0.00104197
-0.0110983
0.000996418
-0.0110579
0.000952253
-0.0110203
0.000909364
-0.0109852
0.00086765
-0.0109523
0.00082702
-0.0109213
0.00078739
-0.0108922
0.000748684
-0.0108647
0.000710831
-0.0108387
0.000673767
-0.0108141
0.000637434
-0.0107909
0.000601775
-0.010769
0.00056674
-0.0107483
0.000532282
-0.0107289
0.000498356
-0.0107106
0.000464923
-0.0106934
0.000431942
-0.0106774
0.000399377
-0.0106624
0.000367194
-0.0106486
0.000335359
-0.0106358
0.000303841
-0.0106241
0.000272611
-0.0106135
0.000241639
-0.0106038
0.000210897
-0.0105953
0.00018036
-0.0105877
0.00015
-0.0105812
0.000119792
-0.0105758
8.97121e-05
-0.0105713
5.97365e-05
-0.0105679
2.98403e-05
-0.0105655
-0.010564
0.00145592
-0.0117054
0.00139138
-0.0115776
0.00133007
-0.0114713
0.00127202
-0.0113822
0.00121705
-0.0113101
0.00116457
-0.0112469
0.00111433
-0.0111914
0.00106606
-0.0111412
0.00101962
-0.0110955
0.000974832
-0.0110535
0.000931563
-0.0110146
0.000889687
-0.0109784
0.000849089
-0.0109446
0.000809666
-0.0109128
0.000771325
-0.010883
0.000733981
-0.0108548
0.000697556
-0.0108282
0.000661979
-0.0108031
0.000627185
-0.0107793
0.000593115
-0.0107568
0.000559714
-0.0107356
0.00052693
-0.0107156
0.000494717
-0.0106967
0.00046303
-0.0106789
0.000431828
-0.0106622
0.000401074
-0.0106466
0.000370732
-0.0106321
0.000340765
-0.0106186
0.000311144
-0.0106062
0.000281835
-0.0105948
0.000252811
-0.0105844
0.000224042
-0.0105751
0.000195501
-0.0105667
0.000167163
-0.0105594
0.000139001
-0.0105531
0.000110991
-0.0105478
8.31093e-05
-0.0105434
5.53329e-05
-0.0105401
2.76371e-05
-0.0105378
-0.0105364
0.00136978
-0.0116423
0.00130669
-0.0115145
0.00124731
-0.011412
0.00119133
-0.0113262
0.00113848
-0.0112573
0.00108817
-0.0111966
0.00104012
-0.0111433
0.000994091
-0.0110951
0.000949906
-0.0110513
0.000907396
-0.011011
0.000866416
-0.0109736
0.000826836
-0.0109388
0.000788536
-0.0109063
0.000751413
-0.0108757
0.00071537
-0.0108469
0.00068032
-0.0108198
0.000646185
-0.0107941
0.000612894
-0.0107698
0.00058038
-0.0107468
0.000548584
-0.0107251
0.00051745
-0.0107045
0.000486928
-0.010685
0.00045697
-0.0106667
0.000427533
-0.0106495
0.000398575
-0.0106333
0.00037006
-0.0106181
0.00034195
-0.010604
0.000314212
-0.0105909
0.000286815
-0.0105788
0.000259726
-0.0105677
0.000232919
-0.0105576
0.000206364
-0.0105485
0.000180035
-0.0105404
0.000153906
-0.0105333
0.000127953
-0.0105271
0.000102151
-0.010522
7.64778e-05
-0.0105178
5.09101e-05
-0.0105145
2.54245e-05
-0.0105123
-0.0105109
0.00128342
-0.0115801
0.00122178
-0.0114529
0.00116434
-0.0113545
0.0011104
-0.0112723
0.00105967
-0.0112065
0.0010115
-0.0111484
0.000965657
-0.0110975
0.000921862
-0.0110513
0.000879939
-0.0110094
0.000839709
-0.0109707
0.000801022
-0.0109349
0.000763744
-0.0109016
0.000727749
-0.0108703
0.000692931
-0.0108409
0.000659192
-0.0108132
0.000626444
-0.010787
0.000594608
-0.0107623
0.00056361
-0.0107388
0.000533385
-0.0107166
0.000503871
-0.0106955
0.000475014
-0.0106756
0.000446763
-0.0106568
0.00041907
-0.010639
0.000391891
-0.0106223
0.000365187
-0.0106066
0.000338919
-0.0105918
0.000313052
-0.0105781
0.000287552
-0.0105654
0.000262388
-0.0105536
0.000237529
-0.0105429
0.000212948
-0.010533
0.000188616
-0.0105242
0.000164508
-0.0105163
0.000140599
-0.0105094
0.000116863
-0.0105034
9.32788e-05
-0.0104984
6.98219e-05
-0.0104943
4.64715e-05
-0.0104912
2.32041e-05
-0.010489
-0.0104877
0.00119689
-0.0115187
0.00113674
-0.0113927
0.00108122
-0.011299
0.0010293
-0.0112204
0.00098066
-0.0111579
0.00093464
-0.0111024
0.000890989
-0.0110538
0.000849427
-0.0110098
0.000809766
-0.0109697
0.000771818
-0.0109328
0.000735428
-0.0108985
0.000700453
-0.0108666
0.000666767
-0.0108366
0.000634259
-0.0108084
0.000602831
-0.0107818
0.000572391
-0.0107566
0.000542859
-0.0107327
0.000514161
-0.0107101
0.000486231
-0.0106887
0.000459008
-0.0106683
0.000432435
-0.010649
0.000406462
-0.0106308
0.000381042
-0.0106136
0.000356129
-0.0105974
0.000331686
-0.0105821
0.000307674
-0.0105678
0.000284058
-0.0105545
0.000260804
-0.0105421
0.000237881
-0.0105307
0.00021526
-0.0105202
0.000192913
-0.0105107
0.000170813
-0.0105021
0.000148933
-0.0104944
0.00012725
-0.0104877
0.00010574
-0.0104819
8.43796e-05
-0.010477
6.31466e-05
-0.0104731
4.20203e-05
-0.0104701
2.09776e-05
-0.010468
-0.0104667
0.00111027
-0.0114581
0.00105161
-0.011334
0.000998005
-0.0112454
0.00094808
-0.0111704
0.000901515
-0.0111113
0.000857629
-0.0110585
0.000816168
-0.0110124
0.000776836
-0.0109704
0.000739435
-0.0109323
0.00070377
-0.0108971
0.000669676
-0.0108644
0.000637008
-0.0108339
0.000605633
-0.0108052
0.000575439
-0.0107782
0.000546324
-0.0107527
0.000518197
-0.0107285
0.000490974
-0.0107055
0.000464582
-0.0106837
0.000438953
-0.010663
0.000414025
-0.0106434
0.000389742
-0.0106248
0.000366054
-0.0106071
0.000342912
-0.0105905
0.000320273
-0.0105747
0.000298097
-0.0105599
0.000276347
-0.0105461
0.000254988
-0.0105332
0.000233986
-0.0105211
0.000213312
-0.01051
0.000192935
-0.0104999
0.000172828
-0.0104906
0.000152965
-0.0104822
0.000133321
-0.0104748
0.00011387
-0.0104682
9.4591e-05
-0.0104626
7.54604e-05
-0.0104579
5.64566e-05
-0.0104541
3.75593e-05
-0.0104512
1.87464e-05
-0.0104492
-0.010448
0.00102364
-0.0113984
0.000966472
-0.0112769
0.000914751
-0.0111937
0.000866794
-0.0111225
0.000822287
-0.0110668
0.000780524
-0.0110168
0.000741246
-0.0109731
0.000704139
-0.0109333
0.000668996
-0.0108972
0.00063561
-0.0108637
0.000603813
-0.0108326
0.000573452
-0.0108036
0.000544389
-0.0107762
0.00051651
-0.0107503
0.000489712
-0.0107259
0.000463899
-0.0107026
0.000438989
-0.0106806
0.000414906
-0.0106596
0.000391581
-0.0106397
0.000368953
-0.0106208
0.000346965
-0.0106028
0.000325566
-0.0105857
0.000304708
-0.0105696
0.000284346
-0.0105544
0.000264442
-0.01054
0.00024496
-0.0105266
0.000225863
-0.0105141
0.000207119
-0.0105024
0.000188697
-0.0104916
0.000170569
-0.0104817
0.000152708
-0.0104727
0.000135087
-0.0104646
0.000117681
-0.0104574
0.000100468
-0.010451
8.3424e-05
-0.0104456
6.65273e-05
-0.010441
4.97565e-05
-0.0104373
3.3092e-05
-0.0104345
1.65121e-05
-0.0104326
-0.0104315
0.000937048
-0.0113395
0.000881377
-0.0112212
0.000831517
-0.0111438
0.000785499
-0.0110765
0.00074303
-0.0110243
0.000703379
-0.0109771
0.000666274
-0.010936
0.000631386
-0.0108984
0.000598494
-0.0108643
0.000567387
-0.0108326
0.000537884
-0.0108031
0.000509828
-0.0107755
0.000483077
-0.0107494
0.000457513
-0.0107248
0.000433031
-0.0107014
0.000409535
-0.0106791
0.000386939
-0.010658
0.000365167
-0.0106379
0.000344149
-0.0106187
0.000323824
-0.0106004
0.000304133
-0.0105831
0.000285026
-0.0105666
0.000266455
-0.010551
0.000248374
-0.0105363
0.000230746
-0.0105224
0.000213534
-0.0105094
0.000196702
-0.0104972
0.000180219
-0.0104859
0.000164054
-0.0104755
0.000148179
-0.0104659
0.000132566
-0.0104571
0.00011719
-0.0104492
0.000102027
-0.0104422
8.70532e-05
-0.010436
7.2247e-05
-0.0104307
5.75866e-05
-0.0104263
4.30513e-05
-0.0104228
2.86215e-05
-0.0104201
1.42765e-05
-0.0104182
-0.0104172
0.000850577
-0.0112815
0.000796392
-0.011167
0.000748361
-0.0110958
0.000704253
-0.0110323
0.000663802
-0.0109839
0.000626248
-0.0109396
0.000591306
-0.0109011
0.000558627
-0.0108658
0.000527981
-0.0108336
0.000499145
-0.0108038
0.000471932
-0.0107759
0.000446179
-0.0107497
0.000421737
-0.010725
0.000398487
-0.0107015
0.000376322
-0.0106792
0.000355141
-0.010658
0.00033486
-0.0106377
0.000315399
-0.0106184
0.000296689
-0.0106
0.000278667
-0.0105824
0.000261275
-0.0105657
0.000244462
-0.0105498
0.000228179
-0.0105347
0.000212381
-0.0105205
0.000197031
-0.0105071
0.000182091
-0.0104945
0.000167527
-0.0104827
0.000153307
-0.0104717
0.0001394
-0.0104615
0.000125778
-0.0104522
0.000112416
-0.0104437
9.92866e-05
-0.0104361
8.63673e-05
-0.0104293
7.36351e-05
-0.0104233
6.10678e-05
-0.0104182
4.86448e-05
-0.0104139
3.63455e-05
-0.0104105
2.4151e-05
-0.0104079
1.20411e-05
-0.0104061
-0.0104052
0.000764294
-0.0112244
0.000711579
-0.0111143
0.000665345
-0.0110496
0.000623111
-0.0109901
0.000584659
-0.0109454
0.000549184
-0.0109041
0.000516393
-0.0108683
0.000485913
-0.0108353
0.000457504
-0.0108052
0.000430932
-0.0107772
0.000406004
-0.010751
0.00038255
-0.0107263
0.000360413
-0.0107028
0.000339473
-0.0106806
0.000319621
-0.0106594
0.000300755
-0.0106391
0.000282787
-0.0106197
0.000265637
-0.0106012
0.000249234
-0.0105836
0.000233515
-0.0105667
0.000218422
-0.0105506
0.000203903
-0.0105353
0.000189908
-0.0105207
0.000176393
-0.010507
0.00016332
-0.010494
0.000150653
-0.0104818
0.000138357
-0.0104704
0.0001264
-0.0104597
0.000114751
-0.0104499
0.000103384
-0.0104409
9.2272e-05
-0.0104326
8.13898e-05
-0.0104252
7.07142e-05
-0.0104186
6.02228e-05
-0.0104128
4.98942e-05
-0.0104079
3.97079e-05
-0.0104037
2.96439e-05
-0.0104004
1.96835e-05
-0.0103979
9.80736e-06
-0.0103963
-0.0103954
0.000678224
-0.0111682
0.000626996
-0.0110631
0.0005825
-0.0110051
0.00054213
-0.0109497
0.000505644
-0.0109089
0.00047224
-0.0108707
0.000441585
-0.0108376
0.000413291
-0.010807
0.000387109
-0.010779
0.000362794
-0.0107529
0.000340143
-0.0107283
0.000318981
-0.0107051
0.000299144
-0.010683
0.000280511
-0.0106619
0.000262968
-0.0106418
0.000246413
-0.0106225
0.000230754
-0.0106041
0.000215912
-0.0105864
0.000201815
-0.0105695
0.000188397
-0.0105533
0.000175601
-0.0105378
0.000163374
-0.0105231
0.000151667
-0.010509
0.000140433
-0.0104957
0.000129637
-0.0104832
0.000119242
-0.0104714
0.000109212
-0.0104603
9.95169e-05
-0.01045
9.01259e-05
-0.0104405
8.10119e-05
-0.0104318
7.21486e-05
-0.0104238
6.35118e-05
-0.0104166
5.50782e-05
-0.0104102
4.68261e-05
-0.0104046
3.87341e-05
-0.0103998
3.07822e-05
-0.0103958
2.2951e-05
-0.0103926
1.52224e-05
-0.0103902
7.57687e-06
-0.0103886
-0.0103878
0.000592414
-0.011113
0.000542669
-0.0110133
0.000499861
-0.0109623
0.000461336
-0.0109112
0.000426789
-0.0108744
0.000395446
-0.0108393
0.00036691
-0.0108091
0.000340795
-0.0107809
0.000316828
-0.0107551
0.000294762
-0.0107308
0.000274382
-0.010708
0.000255504
-0.0106862
0.000237964
-0.0106655
0.00022163
-0.0106456
0.000206392
-0.0106266
0.000192144
-0.0106083
0.000178792
-0.0105907
0.000166255
-0.0105739
0.000154459
-0.0105577
0.00014334
-0.0105422
0.000132838
-0.0105273
0.000122902
-0.0105131
0.000113479
-0.0104996
0.000104525
-0.0104868
9.60024e-05
-0.0104747
8.78761e-05
-0.0104633
8.0111e-05
-0.0104526
7.26751e-05
-0.0104426
6.5539e-05
-0.0104334
5.86751e-05
-0.0104249
5.20582e-05
-0.0104172
4.56639e-05
-0.0104102
3.94694e-05
-0.010404
3.3453e-05
-0.0103985
2.75944e-05
-0.0103939
2.18735e-05
-0.01039
1.62712e-05
-0.010387
1.07701e-05
-0.0103847
5.35072e-06
-0.0103832
-0.0103824
0.000506904
-0.0110586
0.000458626
-0.0109651
0.000417462
-0.0109211
0.000380766
-0.0108745
0.000348134
-0.0108418
0.000318839
-0.01081
0.000292407
-0.0107826
0.000268461
-0.0107569
0.000246699
-0.0107333
0.000226872
-0.010711
0.000208756
-0.0106899
0.000192156
-0.0106696
0.000176905
-0.0106502
0.000162866
-0.0106316
0.000149926
-0.0106136
0.00013798
-0.0105964
0.00012693
-0.0105797
0.000116693
-0.0105636
0.000107195
-0.0105482
9.83697e-05
-0.0105333
9.01588e-05
-0.0105191
8.25087e-05
-0.0105055
7.5367e-05
-0.0104925
6.86878e-05
-0.0104801
6.24354e-05
-0.0104684
5.65749e-05
-0.0104574
5.10704e-05
-0.0104471
4.58902e-05
-0.0104374
4.1005e-05
-0.0104285
3.63879e-05
-0.0104203
3.20131e-05
-0.0104128
2.7857e-05
-0.010406
2.38972e-05
-0.0104
2.01123e-05
-0.0103948
1.6482e-05
-0.0103903
1.2987e-05
-0.0103865
9.60838e-06
-0.0103836
6.32943e-06
-0.0103814
3.13004e-06
-0.01038
-0.0103793
0.000421722
-0.0110052
0.000374909
-0.0109182
0.000335332
-0.0108815
0.000300459
-0.0108396
0.000269712
-0.010811
0.000242454
-0.0107828
0.000218111
-0.0107583
0.000196323
-0.0107351
0.000176751
-0.0107137
0.000159152
-0.0106934
0.000143291
-0.010674
0.000128966
-0.0106553
0.000115993
-0.0106372
0.000104239
-0.0106198
9.35921e-05
-0.010603
8.39414e-05
-0.0105867
7.51877e-05
-0.0105709
6.72459e-05
-0.0105557
6.00404e-05
-0.010541
5.35045e-05
-0.0105268
4.75788e-05
-0.0105132
4.2211e-05
-0.0105001
3.73475e-05
-0.0104876
3.29348e-05
-0.0104757
2.89488e-05
-0.0104644
2.53493e-05
-0.0104538
2.21007e-05
-0.0104438
1.91714e-05
-0.0104345
1.65324e-05
-0.0104258
1.41565e-05
-0.0104179
1.20189e-05
-0.0104106
1.00958e-05
-0.0104041
8.36525e-06
-0.0103983
6.8062e-06
-0.0103932
5.39868e-06
-0.0103889
4.12391e-06
-0.0103853
2.96258e-06
-0.0103824
1.90046e-06
-0.0103803
9.11851e-07
-0.010379
-0.0103784
0.000336885
-0.0109526
0.000291551
-0.0108729
0.000253493
-0.0108435
0.000220434
-0.0108066
0.000191538
-0.0107821
0.000166303
-0.0107575
0.000144037
-0.010736
0.000124381
-0.0107155
0.000106985
-0.0106963
9.16039e-05
-0.010678
7.79834e-05
-0.0106604
6.593e-05
-0.0106433
5.52145e-05
-0.0106265
4.5733e-05
-0.0106103
3.73691e-05
-0.0105946
3.00026e-05
-0.0105793
2.35324e-05
-0.0105645
1.7871e-05
-0.01055
1.29414e-05
-0.010536
8.67403e-06
-0.0105225
5.00555e-06
-0.0105095
1.87304e-06
-0.010497
-7.41006e-07
-0.010485
-2.80893e-06
-0.0104736
-4.49665e-06
-0.0104627
-5.81754e-06
-0.0104525
-6.80079e-06
-0.0104428
-7.47466e-06
-0.0104338
-7.86652e-06
-0.0104255
-8.00195e-06
-0.0104178
-7.90522e-06
-0.0104107
-7.5994e-06
-0.0104044
-7.10597e-06
-0.0103988
-6.44539e-06
-0.0103939
-5.63717e-06
-0.0103897
-4.69971e-06
-0.0103862
-3.65172e-06
-0.0103835
-2.50758e-06
-0.0103815
-1.29132e-06
-0.0103802
-0.0103797
0.00025241
-0.0109008
0.000208554
-0.0108291
0.000171943
-0.0108068
0.000140664
-0.0107753
0.000113567
-0.010755
9.03354e-05
-0.0107343
7.01224e-05
-0.0107158
5.2544e-05
-0.0106979
3.72833e-05
-0.0106811
2.40652e-05
-0.0106648
1.25936e-05
-0.0106489
2.59697e-06
-0.0106333
-5.66865e-06
-0.0106182
-1.26921e-05
-0.0106033
-1.86724e-05
-0.0105886
-2.36901e-05
-0.0105743
-2.78309e-05
-0.0105603
-3.11749e-05
-0.0105467
-3.37956e-05
-0.0105334
-3.5759e-05
-0.0105206
-3.71248e-05
-0.0105081
-3.79446e-05
-0.0104962
-3.82693e-05
-0.0104847
-3.81596e-05
-0.0104737
-3.76301e-05
-0.0104633
-3.67277e-05
-0.0104534
-3.54853e-05
-0.0104441
-3.39345e-05
-0.0104354
-3.21041e-05
-0.0104273
-3.00202e-05
-0.0104198
-2.77078e-05
-0.0104131
-2.51895e-05
-0.0104069
-2.2487e-05
-0.0104015
-1.96208e-05
-0.0103967
-1.66099e-05
-0.0103927
-1.3473e-05
-0.0103893
-1.02275e-05
-0.0103867
-6.89032e-06
-0.0103848
-3.47891e-06
-0.0103836
-0.0103832
0.000168308
-0.0108498
0.000125827
-0.0107866
9.0538e-05
-0.0107716
6.09979e-05
-0.0107458
3.54919e-05
-0.0107295
1.41106e-05
-0.0107129
-4.30122e-06
-0.0106974
-1.91152e-05
-0.0106831
-3.19039e-05
-0.0106683
-4.27147e-05
-0.010654
-5.17824e-05
-0.0106398
-5.92694e-05
-0.0106258
-6.54297e-05
-0.0106121
-7.03406e-05
-0.0105984
-7.41347e-05
-0.0105849
-7.69332e-05
-0.0105715
-7.88376e-05
-0.0105584
-7.9936e-05
-0.0105456
-8.03068e-05
-0.0105331
-8.0019e-05
-0.0105208
-7.91343e-05
-0.010509
-7.77068e-05
-0.0104976
-7.57875e-05
-0.0104866
-7.34337e-05
-0.0104761
-7.06673e-05
-0.010466
-6.75325e-05
-0.0104565
-6.40625e-05
-0.0104475
-6.02888e-05
-0.0104391
-5.624e-05
-0.0104313
-5.19428e-05
-0.0104241
-4.74213e-05
-0.0104176
-4.26985e-05
-0.0104116
-3.77956e-05
-0.0104064
-3.27329e-05
-0.0104018
-2.75291e-05
-0.0103979
-2.22028e-05
-0.0103947
-1.67707e-05
-0.0103921
-1.12501e-05
-0.0103903
-5.65692e-06
-0.0103892
-0.0103888
8.43469e-05
-0.0107993
4.30668e-05
-0.0107453
8.07014e-06
-0.0107366
-1.85002e-05
-0.0107192
-4.14212e-05
-0.0107066
-6.02991e-05
-0.0106941
-7.61664e-05
-0.0106815
-8.94031e-05
-0.0106699
-0.000100211
-0.0106575
-0.000108956
-0.0106453
-0.000115889
-0.0106329
-0.000121206
-0.0106205
-0.000125156
-0.0106081
-0.000127843
-0.0105957
-0.000129404
-0.0105833
-0.000129962
-0.010571
-0.000129621
-0.0105588
-0.000128472
-0.0105467
-0.000126595
-0.0105349
-0.000124061
-0.0105234
-0.000120932
-0.0105121
-0.000117265
-0.0105012
-0.00011311
-0.0104907
-0.000108522
-0.0104807
-0.000103528
-0.010471
-9.81709e-05
-0.0104619
-9.24835e-05
-0.0104532
-8.64975e-05
-0.0104451
-8.02415e-05
-0.0104376
-7.37416e-05
-0.0104306
-6.70225e-05
-0.0104243
-6.01065e-05
-0.0104186
-5.3015e-05
-0.0104135
-4.57676e-05
-0.010409
-3.83832e-05
-0.0104053
-3.08798e-05
-0.0104022
-2.3274e-05
-0.0103998
-1.55829e-05
-0.010398
-7.82181e-06
-0.010397
-0.0103966
-1.82131e-06
-0.0107467
-3.85139e-05
-0.0107086
-7.01835e-05
-0.0107049
-9.58157e-05
-0.0106936
-0.000117082
-0.0106853
-0.000134335
-0.0106768
-0.000148283
-0.0106676
-0.000159519
-0.0106586
-0.000168259
-0.0106487
-0.000174888
-0.0106386
-0.000179667
-0.0106281
-0.000182809
-0.0106173
-0.000184552
-0.0106064
-0.000185022
-0.0105952
-0.000184357
-0.010584
-0.000182684
-0.0105726
-0.000180108
-0.0105613
-0.000176722
-0.0105501
-0.000172609
-0.010539
-0.00016784
-0.0105282
-0.00016248
-0.0105175
-0.000156584
-0.0105071
-0.000150206
-0.0104971
-0.000143396
-0.0104875
-0.000136187
-0.0104782
-0.000128619
-0.0104694
-0.000120727
-0.0104611
-0.000112541
-0.0104533
-0.00010409
-0.010446
-9.54005e-05
-0.0104393
-8.64966e-05
-0.0104332
-7.74008e-05
-0.0104277
-6.81339e-05
-0.0104227
-5.87155e-05
-0.0104185
-4.91643e-05
-0.0104148
-3.94978e-05
-0.0104118
-2.97327e-05
-0.0104095
-1.98857e-05
-0.0104079
-9.97166e-06
-0.0104069
-0.0104066
-8.04417e-05
-0.0106984
-0.000118317
-0.0106707
-0.000148578
-0.0106746
-0.00017294
-0.0106692
-0.000192467
-0.0106658
-0.000207942
-0.0106613
-0.000219972
-0.0106556
-0.00022919
-0.0106494
-0.000235867
-0.0106421
-0.000240389
-0.0106341
-0.000243025
-0.0106255
-0.000244005
-0.0106163
-0.000243555
-0.0106068
-0.000241822
-0.010597
-0.000238947
-0.0105868
-0.000235056
-0.0105765
-0.000230258
-0.0105661
-0.000224651
-0.0105557
-0.000218315
-0.0105454
-0.000211326
-0.0105351
-0.000203747
-0.0105251
-0.000195637
-0.0105153
-0.000187048
-0.0105057
-0.000178031
-0.0104965
-0.00016862
-0.0104877
-0.000158856
-0.0104792
-0.000148773
-0.0104712
-0.000138401
-0.0104637
-0.00012777
-0.0104567
-0.000116905
-0.0104502
-0.000105831
-0.0104443
-9.45696e-05
-0.0104389
-8.31421e-05
-0.0104342
-7.15679e-05
-0.01043
-5.9865e-05
-0.0104265
-4.80512e-05
-0.0104237
-3.61425e-05
-0.0104214
-2.41553e-05
-0.0104199
-1.21049e-05
-0.010419
-0.0104187
-0.000160622
-0.0106508
-0.000197651
-0.0106337
-0.000226582
-0.0106457
-0.000249477
-0.0106463
-0.00026731
-0.010648
-0.000280986
-0.0106476
-0.000291116
-0.0106454
-0.000298334
-0.0106422
-0.000302968
-0.0106374
-0.000305399
-0.0106317
-0.000305911
-0.010625
-0.000304745
-0.0106175
-0.000302122
-0.0106095
-0.000298203
-0.0106009
-0.000293133
-0.0105919
-0.000287041
-0.0105826
-0.00028004
-0.0105731
-0.000272225
-0.0105635
-0.000263683
-0.0105539
-0.000254488
-0.0105443
-0.000244707
-0.0105349
-0.000234397
-0.0105256
-0.000223613
-0.0105165
-0.000212404
-0.0105077
-0.000200807
-0.0104992
-0.000188862
-0.0104912
-0.000176603
-0.0104835
-0.000164061
-0.0104762
-0.000151265
-0.0104695
-0.00013824
-0.0104632
-0.000125012
-0.0104575
-0.000111601
-0.0104523
-9.80298e-05
-0.0104477
-8.4316e-05
-0.0104437
-7.04782e-05
-0.0104404
-5.65338e-05
-0.0104376
-4.24986e-05
-0.0104355
-2.83893e-05
-0.010434
-1.422e-05
-0.0104331
-0.0104329
-0.000240354
-0.0106043
-0.000276278
-0.0105978
-0.000303946
-0.010618
-0.00032533
-0.0106249
-0.00034151
-0.0106318
-0.000353397
-0.0106358
-0.000361651
-0.0106372
-0.000366896
-0.0106369
-0.000369509
-0.0106348
-0.000369872
-0.0106313
-0.000368282
-0.0106266
-0.000364987
-0.0106208
-0.000360213
-0.0106142
-0.000354127
-0.010607
-0.000346881
-0.0105991
-0.000338607
-0.0105909
-0.000329418
-0.0105823
-0.000319414
-0.0105735
-0.000308683
-0.0105647
-0.000297299
-0.0105557
-0.000285332
-0.0105468
-0.00027284
-0.0105381
-0.000259878
-0.0105295
-0.000246493
-0.0105211
-0.000232727
-0.010513
-0.000218617
-0.0105053
-0.000204199
-0.0104979
-0.000189504
-0.0104909
-0.000174559
-0.0104844
-0.000159393
-0.0104784
-0.000144027
-0.0104729
-0.000128485
-0.0104679
-0.000112787
-0.0104634
-9.69514e-05
-0.0104596
-8.09968e-05
-0.0104563
-6.49402e-05
-0.0104537
-4.87972e-05
-0.0104516
-3.25843e-05
-0.0104502
-1.63155e-05
-0.0104494
-0.0104493
-0.000319394
-0.0105588
-0.000354111
-0.0105631
-0.000380564
-0.0105916
-0.000400438
-0.0106051
-0.000414997
-0.0106172
-0.000425122
-0.0106256
-0.000431526
-0.0106308
-0.000434828
-0.0106336
-0.000435445
-0.0106342
-0.000433764
-0.010633
-0.000430095
-0.0106302
-0.000424694
-0.0106262
-0.00041779
-0.0106211
-0.000409559
-0.0106152
-0.000400157
-0.0106085
-0.000389719
-0.0106013
-0.000378363
-0.0105937
-0.000366188
-0.0105857
-0.000353286
-0.0105776
-0.000339733
-0.0105693
-0.000325597
-0.010561
-0.000310941
-0.0105527
-0.000295818
-0.0105446
-0.000280276
-0.0105366
-0.000264358
-0.0105289
-0.000248102
-0.0105215
-0.000231543
-0.0105144
-0.000214713
-0.0105078
-0.000197639
-0.0105015
-0.000180348
-0.0104957
-0.000162864
-0.0104903
-0.000145209
-0.0104855
-0.000127404
-0.0104812
-0.000109466
-0.0104775
-9.1414e-05
-0.0104744
-7.32648e-05
-0.0104718
-5.50342e-05
-0.0104698
-3.67378e-05
-0.0104685
-1.83901e-05
-0.0104677
-0.0104676
-0.000397615
-0.0105142
-0.000431093
-0.0105296
-0.000456358
-0.0105663
-0.000474749
-0.0105867
-0.000487716
-0.0106043
-0.000496112
-0.0106172
-0.000500693
-0.0106262
-0.000502084
-0.0106322
-0.000500732
-0.0106356
-0.000497035
-0.0106367
-0.000491311
-0.010636
-0.000483828
-0.0106337
-0.000474817
-0.0106302
-0.000464463
-0.0106256
-0.000452927
-0.0106201
-0.000440347
-0.0106139
-0.000426842
-0.0106072
-0.000412518
-0.0106
-0.000397464
-0.0105926
-0.000381761
-0.010585
-0.000365477
-0.0105773
-0.000348675
-0.0105695
-0.00033141
-0.0105618
-0.000313732
-0.0105543
-0.000295682
-0.010547
-0.000277299
-0.0105399
-0.000258618
-0.0105331
-0.000239672
-0.0105267
-0.000220488
-0.0105207
-0.000201094
-0.0105151
-0.000181511
-0.0105099
-0.000161763
-0.0105053
-0.00014187
-0.0105011
-0.000121851
-0.0104975
-0.000101723
-0.0104945
-8.15022e-05
-0.010492
-6.12051e-05
-0.0104901
-4.08472e-05
-0.0104888
-2.04422e-05
-0.0104881
-0.0104881
-0.000474937
-0.0104706
-0.000507169
-0.0104973
-0.000531266
-0.0105422
-0.000548211
-0.0105697
-0.000559618
-0.0105929
-0.000566318
-0.0106105
-0.000569108
-0.0106234
-0.00056862
-0.0106327
-0.00056533
-0.0106388
-0.000559643
-0.0106424
-0.000551892
-0.0106437
-0.000542352
-0.0106432
-0.000531258
-0.0106412
-0.000518806
-0.010638
-0.000505158
-0.0106337
-0.000490457
-0.0106286
-0.000474827
-0.0106228
-0.000458374
-0.0106165
-0.00044119
-0.0106098
-0.000423357
-0.0106028
-0.000404946
-0.0105957
-0.00038602
-0.0105884
-0.000366634
-0.0105812
-0.000346838
-0.0105741
-0.000326677
-0.0105671
-0.000306187
-0.0105604
-0.000285407
-0.0105539
-0.000264365
-0.0105477
-0.000243093
-0.0105419
-0.000221615
-0.0105365
-0.000199956
-0.0105316
-0.000178137
-0.0105271
-0.000156178
-0.0105231
-0.000134099
-0.0105196
-0.000111916
-0.0105167
-8.96469e-05
-0.0105143
-6.7306e-05
-0.0105125
-4.49096e-05
-0.0105112
-2.24707e-05
-0.0105106
-0.0105106
-0.000551296
-0.0104279
-0.000582293
-0.0104663
-0.000605236
-0.0105193
-0.000620774
-0.0105542
-0.000630651
-0.010583
-0.000635694
-0.0106055
-0.000636726
-0.0106224
-0.000634395
-0.0106351
-0.000629196
-0.010644
-0.00062155
-0.01065
-0.000611799
-0.0106535
-0.000600228
-0.0106548
-0.000587079
-0.0106544
-0.000572552
-0.0106525
-0.000556817
-0.0106495
-0.00054002
-0.0106454
-0.000522288
-0.0106405
-0.000503728
-0.0106351
-0.000484437
-0.0106291
-0.000464496
-0.0106228
-0.00044398
-0.0106162
-0.00042295
-0.0106095
-0.000401465
-0.0106027
-0.000379575
-0.010596
-0.000357324
-0.0105894
-0.00033475
-0.010583
-0.000311891
-0.0105768
-0.000288777
-0.0105709
-0.000265438
-0.0105653
-0.000241899
-0.0105601
-0.000218186
-0.0105553
-0.000194318
-0.010551
-0.000170318
-0.0105471
-0.000146202
-0.0105437
-0.000121988
-0.0105409
-9.76937e-05
-0.0105386
-7.33332e-05
-0.0105368
-4.89222e-05
-0.0105357
-2.44741e-05
-0.010535
-0.010535
-0.000626638
-0.010386
-0.000656414
-0.0104366
-0.000678213
-0.0104975
-0.000692388
-0.01054
-0.000700769
-0.0105746
-0.000704193
-0.0106021
-0.000703503
-0.0106231
-0.000699364
-0.0106392
-0.000692291
-0.0106511
-0.000682717
-0.0106596
-0.000670996
-0.0106652
-0.000657423
-0.0106684
-0.000642246
-0.0106696
-0.000625671
-0.0106691
-0.000607874
-0.0106673
-0.000589005
-0.0106643
-0.000569194
-0.0106604
-0.000548552
-0.0106557
-0.000527177
-0.0106505
-0.000505152
-0.0106448
-0.000482553
-0.0106388
-0.000459444
-0.0106326
-0.000435884
-0.0106263
-0.000411922
-0.01062
-0.000387604
-0.0106137
-0.000362969
-0.0106076
-0.000338054
-0.0106017
-0.000312891
-0.010596
-0.000287509
-0.0105907
-0.000261934
-0.0105857
-0.00023619
-0.010581
-0.000210298
-0.0105769
-0.000184279
-0.0105731
-0.000158152
-0.0105699
-0.000131932
-0.0105671
-0.000105637
-0.0105649
-7.92823e-05
-0.0105632
-5.28829e-05
-0.0105621
-2.64512e-05
-0.0105615
-0.0105615
-0.000700909
-0.010345
-0.000729483
-0.010408
-0.000750145
-0.0104768
-0.000763001
-0.0105271
-0.000769924
-0.0105677
-0.000771772
-0.0106002
-0.000769399
-0.0106254
-0.000763489
-0.0106451
-0.000754576
-0.01066
-0.000743108
-0.0106711
-0.000729448
-0.0106788
-0.000713901
-0.0106839
-0.000696724
-0.0106868
-0.000678128
-0.0106877
-0.000658296
-0.0106871
-0.000637382
-0.0106852
-0.000615518
-0.0106822
-0.000592819
-0.0106784
-0.000569384
-0.0106739
-0.0005453
-0.0106689
-0.000520643
-0.0106634
-0.000495479
-0.0106577
-0.000469867
-0.0106519
-0.000443858
-0.010646
-0.000417497
-0.0106401
-0.000390826
-0.0106343
-0.000363881
-0.0106286
-0.000336693
-0.0106232
-0.000309293
-0.0106181
-0.000281706
-0.0106132
-0.000253956
-0.0106088
-0.000226066
-0.0106047
-0.000198055
-0.0106011
-0.000169941
-0.010598
-0.000141741
-0.0105953
-0.000113473
-0.0105932
-8.51501e-05
-0.0105915
-5.67886e-05
-0.0105904
-2.84008e-05
-0.0105898
-0.0105899
-0.000774053
-0.0103048
-0.000801456
-0.0103806
-0.000820989
-0.0104573
-0.000832575
-0.0105156
-0.000838083
-0.0105622
-0.000838397
-0.0105999
-0.00083438
-0.0106295
-0.000826736
-0.0106528
-0.000816018
-0.0106707
-0.000802687
-0.0106844
-0.00078712
-0.0106944
-0.00076963
-0.0107014
-0.000750482
-0.0107059
-0.000729895
-0.0107083
-0.000708055
-0.0107089
-0.000685122
-0.0107081
-0.000661231
-0.0107061
-0.000636501
-0.0107031
-0.000611033
-0.0106994
-0.000584916
-0.010695
-0.000558227
-0.0106901
-0.000531033
-0.0106849
-0.000503394
-0.0106795
-0.000475363
-0.010674
-0.000446986
-0.0106685
-0.000418305
-0.010663
-0.000389354
-0.0106576
-0.000360168
-0.0106524
-0.000330775
-0.0106475
-0.000301203
-0.0106428
-0.000271474
-0.0106385
-0.000241612
-0.0106346
-0.000211635
-0.0106311
-0.000181562
-0.0106281
-0.00015141
-0.0106255
-0.000121195
-0.0106234
-9.09322e-05
-0.0106218
-6.06372e-05
-0.0106207
-3.03216e-05
-0.0106202
-0.0106202
-0.000846021
-0.0102653
-0.00087231
-0.0103543
-0.000890724
-0.0104389
-0.000901089
-0.0105052
-0.000905218
-0.010558
-0.000904038
-0.0106011
-0.000898412
-0.0106351
-0.00088907
-0.0106621
-0.000876582
-0.0106832
-0.000861422
-0.0106995
-0.000843979
-0.0107118
-0.000824578
-0.0107208
-0.000803489
-0.010727
-0.000780939
-0.0107308
-0.00075712
-0.0107328
-0.000732196
-0.010733
-0.000706307
-0.010732
-0.000679573
-0.0107299
-0.000652099
-0.0107268
-0.000623975
-0.0107231
-0.00059528
-0.0107188
-0.000566083
-0.0107141
-0.000536445
-0.0107092
-0.000506419
-0.010704
-0.000476052
-0.0106988
-0.000445386
-0.0106936
-0.000414458
-0.0106885
-0.0003833
-0.0106836
-0.000351943
-0.0106788
-0.000320412
-0.0106744
-0.000288732
-0.0106702
-0.000256925
-0.0106664
-0.000225011
-0.010663
-0.000193007
-0.0106601
-0.000160931
-0.0106575
-0.000128799
-0.0106555
-9.66254e-05
-0.0106539
-6.4426e-05
-0.0106529
-3.22121e-05
-0.0106524
-0.0106524
-0.00091678
-0.0102264
-0.000942036
-0.0103291
-0.000959326
-0.0104216
-0.000968498
-0.010496
-0.000971278
-0.0105553
-0.000968637
-0.0106037
-0.000961442
-0.0106423
-0.000950441
-0.0106731
-0.00093622
-0.0106975
-0.000919267
-0.0107165
-0.000899984
-0.0107311
-0.000878705
-0.0107421
-0.000855707
-0.01075
-0.000831226
-0.0107553
-0.000805459
-0.0107585
-0.000778574
-0.0107599
-0.000750716
-0.0107599
-0.000722007
-0.0107586
-0.000692555
-0.0107563
-0.000662452
-0.0107532
-0.00063178
-0.0107495
-0.000600608
-0.0107453
-0.000568999
-0.0107408
-0.000537006
-0.010736
-0.000504677
-0.0107311
-0.000472055
-0.0107262
-0.000439177
-0.0107214
-0.000406076
-0.0107167
-0.000372782
-0.0107121
-0.000339322
-0.0107078
-0.00030572
-0.0107038
-0.000271997
-0.0107001
-0.000238174
-0.0106968
-0.000204269
-0.010694
-0.000170299
-0.0106915
-0.00013628
-0.0106895
-0.000102226
-0.010688
-6.81525e-05
-0.010687
-3.40716e-05
-0.0106865
-0.0106865
-0.00098628
-0.0101881
-0.00101056
-0.0103048
-0.00102668
-0.0104054
-0.00103467
-0.010488
-0.00103614
-0.0105538
-0.00103209
-0.0106078
-0.00102338
-0.010651
-0.00101077
-0.0106857
-0.000994867
-0.0107134
-0.000976167
-0.0107352
-0.000955085
-0.0107522
-0.000931966
-0.0107652
-0.000907097
-0.0107749
-0.000880719
-0.0107817
-0.000853037
-0.0107862
-0.000824224
-0.0107887
-0.000794427
-0.0107897
-0.000763774
-0.0107892
-0.000732375
-0.0107877
-0.000700323
-0.0107853
-0.000667703
-0.0107821
-0.000634586
-0.0107784
-0.000601034
-0.0107743
-0.000567103
-0.01077
-0.000532842
-0.0107654
-0.000498294
-0.0107608
-0.000463495
-0.0107562
-0.00042848
-0.0107517
-0.00039328
-0.0107473
-0.00035792
-0.0107432
-0.000322426
-0.0107393
-0.000286818
-0.0107357
-0.000251117
-0.0107325
-0.000215342
-0.0107297
-0.000179509
-0.0107273
-0.000143633
-0.0107254
-0.00010773
-0.0107239
-7.18148e-05
-0.0107229
-3.58986e-05
-0.0107224
-0.0107224
-0.00105438
-0.0101503
-0.00107768
-0.0102815
-0.00109261
-0.0103905
-0.00109946
-0.0104812
-0.0010997
-0.0105536
-0.00109432
-0.0106132
-0.00108417
-0.0106611
-0.00107001
-0.0106999
-0.00105248
-0.0107309
-0.00103208
-0.0107556
-0.00100925
-0.010775
-0.000984329
-0.0107901
-0.000957627
-0.0108016
-0.000929389
-0.0108099
-0.000899827
-0.0108158
-0.000869119
-0.0108195
-0.000837417
-0.0108214
-0.000804851
-0.0108218
-0.000771535
-0.010821
-0.000737566
-0.0108192
-0.000703029
-0.0108166
-0.000667996
-0.0108135
-0.000632532
-0.0108098
-0.000596694
-0.0108058
-0.000560531
-0.0108016
-0.000524086
-0.0107972
-0.000487398
-0.0107929
-0.0004505
-0.0107886
-0.000413424
-0.0107844
-0.000376195
-0.0107804
-0.00033884
-0.0107767
-0.000301378
-0.0107732
-0.000263832
-0.0107701
-0.000226217
-0.0107673
-0.000188553
-0.010765
-0.000150854
-0.0107631
-0.000113134
-0.0107616
-7.54101e-05
-0.0107606
-3.76921e-05
-0.0107601
-0.0107601
-0.00112094
-0.0101133
-0.00114336
-0.010259
-0.00115717
-0.0103767
-0.00116299
-0.0104754
-0.00116207
-0.0105545
-0.00115543
-0.0106198
-0.00114389
-0.0106727
-0.00112824
-0.0107155
-0.00110911
-0.01075
-0.00108705
-0.0107777
-0.00106249
-0.0107996
-0.00103581
-0.0108168
-0.0010073
-0.0108301
-0.000977236
-0.01084
-0.000945824
-0.0108472
-0.00091325
-0.010852
-0.000879672
-0.0108549
-0.000845224
-0.0108562
-0.000810022
-0.0108562
-0.000774166
-0.0108551
-0.000737741
-0.0108531
-0.000700823
-0.0108504
-0.000663478
-0.0108471
-0.000625763
-0.0108435
-0.000587729
-0.0108396
-0.000549419
-0.0108355
-0.000510872
-0.0108314
-0.000472122
-0.0108273
-0.000433202
-0.0108233
-0.000394137
-0.0108195
-0.000354952
-0.0108158
-0.00031567
-0.0108125
-0.000276309
-0.0108095
-0.00023689
-0.0108068
-0.000197427
-0.0108045
-0.000157937
-0.0108026
-0.000118436
-0.0108011
-7.89364e-05
-0.0108001
-3.94512e-05
-0.0107996
-0.0107995
-0.00118615
-0.0100768
-0.00120815
-0.010237
-0.00122102
-0.0103638
-0.00122582
-0.0104706
-0.00122373
-0.0105566
-0.00121578
-0.0106277
-0.00120281
-0.0106856
-0.00118563
-0.0107327
-0.0011649
-0.0107708
-0.00114117
-0.0108014
-0.00111489
-0.0108259
-0.00108645
-0.0108453
-0.00105616
-0.0108604
-0.00102428
-0.0108719
-0.000991037
-0.0108804
-0.000956621
-0.0108864
-0.000921192
-0.0108904
-0.000884888
-0.0108925
-0.000847827
-0.0108933
-0.000810111
-0.0108928
-0.000771828
-0.0108914
-0.000733054
-0.0108891
-0.000693858
-0.0108863
-0.000654297
-0.0108831
-0.000614422
-0.0108795
-0.000574278
-0.0108757
-0.000533904
-0.0108718
-0.000493336
-0.0108679
-0.000452603
-0.010864
-0.000411735
-0.0108603
-0.000370754
-0.0108568
-0.000329683
-0.0108536
-0.000288543
-0.0108506
-0.000247352
-0.010848
-0.000206125
-0.0108457
-0.00016488
-0.0108438
-0.000123631
-0.0108424
-8.23918e-05
-0.0108414
-4.11745e-05
-0.0108408
-0.0108407
-0.00125055
-0.0100403
-0.00127262
-0.010215
-0.00128451
-0.010352
-0.00128811
-0.010467
-0.00128467
-0.01056
-0.00127531
-0.0106371
-0.00126086
-0.0107001
-0.00124211
-0.0107514
-0.00121976
-0.0107931
-0.00119436
-0.0108268
-0.00116638
-0.0108539
-0.00113619
-0.0108754
-0.00110413
-0.0108924
-0.00107047
-0.0109056
-0.00103542
-0.0109155
-0.00099919
-0.0109227
-0.000961939
-0.0109276
-0.000923808
-0.0109307
-0.000884918
-0.0109322
-0.000845373
-0.0109323
-0.000805263
-0.0109315
-0.000764666
-0.0109297
-0.00072365
-0.0109273
-0.000682275
-0.0109244
-0.000640593
-0.0109212
-0.000598648
-0.0109176
-0.00055648
-0.010914
-0.000514126
-0.0109102
-0.000471616
-0.0109066
-0.000428977
-0.010903
-0.000386234
-0.0108996
-0.000343411
-0.0108964
-0.000300526
-0.0108935
-0.000257597
-0.0108909
-0.000214643
-0.0108886
-0.000171678
-0.0108868
-0.000128717
-0.0108853
-8.57739e-05
-0.0108843
-4.28613e-05
-0.0108837
-0.0108836
-0.00131323
-0.0100043
-0.00133487
-0.0101933
-0.00134555
-0.0103413
-0.0013479
-0.0104646
-0.00134325
-0.0105647
-0.00133266
-0.0106477
-0.00131692
-0.0107158
-0.0012968
-0.0107716
-0.00127299
-0.0108169
-0.00124606
-0.0108537
-0.00121649
-0.0108834
-0.00118467
-0.0109073
-0.00115093
-0.0109262
-0.00111556
-0.0109409
-0.00107878
-0.0109522
-0.00104079
-0.0109607
-0.00100178
-0.0109666
-0.000961871
-0.0109706
-0.000921201
-0.0109728
-0.000879873
-0.0109737
-0.00083798
-0.0109734
-0.000795602
-0.0109721
-0.000752807
-0.0109701
-0.000709658
-0.0109676
-0.000666206
-0.0109646
-0.000622499
-0.0109613
-0.000578575
-0.0109579
-0.000534472
-0.0109543
-0.00049022
-0.0109508
-0.000445848
-0.0109473
-0.000401381
-0.010944
-0.00035684
-0.0109409
-0.000312247
-0.0109381
-0.000267619
-0.0109355
-0.000222973
-0.0109333
-0.000178325
-0.0109314
-0.000133689
-0.01093
-8.90803e-05
-0.0109289
-4.45104e-05
-0.0109283
-0.0109281
-0.00137095
-0.0099722
-0.00139098
-0.0101733
-0.00140076
-0.0103315
-0.00140251
-0.0104629
-0.00139736
-0.0105698
-0.00138619
-0.0106589
-0.0013697
-0.0107323
-0.00134865
-0.0107926
-0.00132375
-0.0108418
-0.0012956
-0.0108819
-0.00126469
-0.0109144
-0.00123143
-0.0109405
-0.00119619
-0.0109614
-0.00115925
-0.0109779
-0.00112086
-0.0109906
-0.00108123
-0.0110003
-0.00104054
-0.0110073
-0.000998939
-0.0110122
-0.000956561
-0.0110152
-0.000913515
-0.0110167
-0.000869898
-0.011017
-0.000825793
-0.0110162
-0.000781271
-0.0110147
-0.000736396
-0.0110125
-0.000691221
-0.0110098
-0.000645795
-0.0110068
-0.000600158
-0.0110035
-0.000554347
-0.0110002
-0.000508395
-0.0109968
-0.00046233
-0.0109934
-0.000416177
-0.0109902
-0.000369959
-0.0109871
-0.000323696
-0.0109843
-0.000277407
-0.0109818
-0.000231108
-0.0109796
-0.000184816
-0.0109777
-0.000138545
-0.0109762
-9.23085e-05
-0.0109752
-4.61205e-05
-0.0109745
-0.0109742
-0.00142523
-0.00994695
-0.0014438
-0.0101547
-0.00145319
-0.0103221
-0.00145477
-0.0104613
-0.00144947
-0.0105751
-0.00143796
-0.0106704
-0.00142088
-0.0107494
-0.00139902
-0.0108145
-0.00137312
-0.0108677
-0.00134382
-0.0109112
-0.00131164
-0.0109465
-0.00127701
-0.0109751
-0.00124032
-0.0109981
-0.00120187
-0.0110163
-0.00116192
-0.0110306
-0.00112069
-0.0110415
-0.00107837
-0.0110496
-0.00103513
-0.0110554
-0.000991083
-0.0110592
-0.000946363
-0.0110614
-0.000901064
-0.0110623
-0.000855274
-0.011062
-0.000809065
-0.0110609
-0.000762504
-0.011059
-0.000715646
-0.0110566
-0.000668541
-0.0110539
-0.00062123
-0.0110508
-0.000573752
-0.0110476
-0.000526138
-0.0110444
-0.000478419
-0.0110411
-0.000430619
-0.011038
-0.000382762
-0.011035
-0.000334869
-0.0110322
-0.000286957
-0.0110297
-0.000239045
-0.0110275
-0.000191148
-0.0110256
-0.00014328
-0.0110241
-9.5457e-05
-0.011023
-4.76907e-05
-0.0110222
-0.0110219
-0.00146567
-0.00993997
-0.00148397
-0.0101364
-0.00149233
-0.0103138
-0.00149313
-0.0104605
-0.00148717
-0.0105811
-0.00147503
-0.0106825
-0.00145731
-0.0107671
-0.00143478
-0.010837
-0.00140819
-0.0108943
-0.00137815
-0.0109412
-0.00134519
-0.0109795
-0.00130976
-0.0110106
-0.00127221
-0.0110356
-0.00123286
-0.0110557
-0.00119197
-0.0110715
-0.00114976
-0.0110837
-0.00110643
-0.011093
-0.00106213
-0.0110997
-0.001017
-0.0111044
-0.000971172
-0.0111073
-0.000924734
-0.0111087
-0.000877781
-0.011109
-0.000830388
-0.0111083
-0.000782624
-0.0111068
-0.000734547
-0.0111047
-0.000686208
-0.0111022
-0.000637651
-0.0110994
-0.000588917
-0.0110964
-0.000540041
-0.0110932
-0.000491053
-0.0110901
-0.000441981
-0.0110871
-0.000392849
-0.0110841
-0.00034368
-0.0110814
-0.000294494
-0.0110789
-0.00024531
-0.0110767
-0.000196145
-0.0110748
-0.000147016
-0.0110732
-9.79367e-05
-0.0110721
-4.89193e-05
-0.0110713
-0.0110708
0.0049613
-0.0097186
-0.00518266
0.00471105
-0.00988619
0.00444756
-0.0100503
0.00419238
-0.0102053
0.0039529
-0.0103416
0.00372664
-0.0104562
0.00351207
-0.0105526
0.00330914
-0.0106341
0.00311775
-0.0107029
0.00293743
-0.0107609
0.00276746
-0.0108095
0.00260711
-0.0108502
0.00245563
-0.0108842
0.00231232
-0.0109124
0.0021765
-0.0109357
0.00204756
-0.0109548
0.0019249
-0.0109703
0.00180799
-0.0109828
0.00169634
-0.0109927
0.00158949
-0.0110004
0.00148703
-0.0110063
0.00138857
-0.0110105
0.00129378
-0.0110135
0.00120232
-0.0110153
0.00111391
-0.0110163
0.00102826
-0.0110166
0.000945122
-0.0110162
0.000864255
-0.0110155
0.000785436
-0.0110144
0.000708455
-0.0110131
0.000633113
-0.0110117
0.000559221
-0.0110102
0.000486599
-0.0110088
0.000415073
-0.0110074
0.000344479
-0.0110061
0.000274655
-0.011005
0.000205447
-0.011004
0.000136711
-0.0110033
6.83065e-05
-0.0110028
-0.0110025
0.00341342
-0.00962338
-0.00350864
0.00333618
-0.00980895
0.00325475
-0.00996884
0.00315873
-0.0101093
0.00305091
-0.0102338
0.00293725
-0.0103426
0.00282051
-0.0104358
0.00270208
-0.0105156
0.00258325
-0.0105841
0.00246525
-0.0106429
0.00234901
-0.0106933
0.00223517
-0.0107364
0.00212413
-0.0107731
0.00201614
-0.0108044
0.00191129
-0.0108308
0.00180961
-0.0108531
0.00171105
-0.0108718
0.00161553
-0.0108873
0.00152293
-0.0109001
0.00143312
-0.0109106
0.00134596
-0.0109191
0.0012613
-0.0109259
0.00117898
-0.0109312
0.00109885
-0.0109352
0.00102076
-0.0109382
0.000944565
-0.0109404
0.000870108
-0.0109418
0.00079725
-0.0109426
0.000725851
-0.010943
0.000655776
-0.0109431
0.00058689
-0.0109428
0.000519066
-0.0109424
0.000452175
-0.0109419
0.000386095
-0.0109413
0.000320703
-0.0109407
0.000255879
-0.0109401
0.000191505
-0.0109397
0.000127457
-0.0109393
6.35996e-05
-0.010939
-0.0109389
0.00308705
-0.00969544
-0.00301498
0.00309719
-0.00981909
0.00306636
-0.00993801
0.0030073
-0.0100502
0.0029273
-0.0101538
0.00283262
-0.0102479
0.0027292
-0.0103324
0.00262121
-0.0104076
0.00251128
-0.0104742
0.00240111
-0.0105327
0.00229183
-0.010584
0.00218419
-0.0106287
0.00207866
-0.0106676
0.00197553
-0.0107012
0.00187499
-0.0107303
0.00177711
-0.0107552
0.00168189
-0.0107765
0.00158933
-0.0107947
0.00149934
-0.0108101
0.00141185
-0.0108231
0.00132675
-0.010834
0.00124393
-0.010843
0.00116325
-0.0108505
0.00108461
-0.0108566
0.00100787
-0.0108615
0.00093289
-0.0108654
0.000859556
-0.0108685
0.000787736
-0.0108708
0.000717303
-0.0108726
0.000648135
-0.0108739
0.000580108
-0.0108748
0.000513102
-0.0108754
0.000447001
-0.0108758
0.000381687
-0.010876
0.000317047
-0.0108761
0.000252969
-0.0108761
0.000189342
-0.010876
0.000126055
-0.010876
6.30072e-05
-0.0108759
-0.0108759
0.00219214
-0.00974179
-0.0021458
0.0022167
-0.00984365
0.00222493
-0.00994624
0.00221852
-0.0100438
0.00219913
-0.0101344
0.00216838
-0.0102171
0.00212793
-0.010292
0.00207929
-0.010359
0.00202385
-0.0104187
0.00196293
-0.0104718
0.00189777
-0.0105188
0.00182948
-0.0105604
0.00175901
-0.0105971
0.00168714
-0.0106294
0.00161448
-0.0106576
0.00154154
-0.0106823
0.00146868
-0.0107037
0.00139621
-0.0107222
0.00132433
-0.0107383
0.00125319
-0.010752
0.00118291
-0.0107637
0.00111356
-0.0107737
0.00104518
-0.0107821
0.000977768
-0.0107892
0.000911335
-0.010795
0.000845857
-0.0107999
0.000781303
-0.0108039
0.000717629
-0.0108071
0.000654786
-0.0108098
0.000592718
-0.0108118
0.000531364
-0.0108134
0.000470661
-0.0108147
0.00041054
-0.0108157
0.000350932
-0.0108164
0.000291764
-0.0108169
0.000232963
-0.0108173
0.000174454
-0.0108175
0.000116162
-0.0108177
5.80085e-05
-0.0108178
-0.0108179
0.00194948
-0.00984415
-0.00184711
0.00202289
-0.00991706
0.00206687
-0.00999023
0.00208478
-0.0100617
0.00208117
-0.0101308
0.00206035
-0.0101963
0.00202607
-0.0102577
0.00198158
-0.0103145
0.00192954
-0.0103667
0.001872
-0.0104143
0.0018105
-0.0104573
0.00174619
-0.0104961
0.00167996
-0.0105309
0.00161247
-0.0105619
0.00154424
-0.0105894
0.00147569
-0.0106137
0.00140714
-0.0106351
0.00133882
-0.0106539
0.00127093
-0.0106704
0.00120361
-0.0106847
0.00113695
-0.0106971
0.00107104
-0.0107078
0.00100592
-0.010717
0.000941606
-0.0107248
0.000878112
-0.0107315
0.000815429
-0.0107372
0.000753535
-0.010742
0.000692402
-0.010746
0.000631993
-0.0107493
0.000572264
-0.0107521
0.000513166
-0.0107544
0.000454645
-0.0107562
0.000396646
-0.0107577
0.000339109
-0.0107588
0.000281973
-0.0107598
0.000225175
-0.0107605
0.000168652
-0.010761
0.000112338
-0.0107614
5.61694e-05
-0.0107616
-0.0107617
0.00143274
-0.00990927
-0.00136762
0.00148179
-0.00996611
0.00151864
-0.0100271
0.0015448
-0.0100879
0.00156066
-0.0101466
0.00156673
-0.0102024
0.00156374
-0.0102547
0.00155247
-0.0103032
0.00153374
-0.010348
0.00150837
-0.0103889
0.00147721
-0.0104262
0.00144109
-0.01046
0.00140083
-0.0104906
0.00135714
-0.0105182
0.00131069
-0.0105429
0.00126204
-0.0105651
0.00121167
-0.0105848
0.00116001
-0.0106023
0.00110738
-0.0106177
0.00105406
-0.0106313
0.0010003
-0.0106433
0.000946266
-0.0106537
0.00089212
-0.0106628
0.000837977
-0.0106707
0.000783929
-0.0106775
0.000730044
-0.0106833
0.000676372
-0.0106883
0.000622946
-0.0106926
0.000569788
-0.0106962
0.000516905
-0.0106992
0.000464297
-0.0107017
0.000411955
-0.0107038
0.000359864
-0.0107056
0.000308001
-0.010707
0.00025634
-0.0107081
0.000204853
-0.010709
0.000153505
-0.0107097
0.000102263
-0.0107101
5.10879e-05
-0.0107104
-0.0107106
0.00127176
-0.00999701
-0.00118402
0.00134504
-0.0100394
0.00140115
-0.0100832
0.00144039
-0.0101271
0.00146422
-0.0101705
0.00147455
-0.0102127
0.00147338
-0.0102535
0.00146257
-0.0102924
0.0014438
-0.0103292
0.00141852
-0.0103636
0.00138794
-0.0103956
0.00135306
-0.0104251
0.00131469
-0.0104523
0.00127347
-0.010477
0.00122996
-0.0104994
0.00118459
-0.0105197
0.00113776
-0.0105379
0.00108978
-0.0105543
0.00104092
-0.0105689
0.000991398
-0.0105818
0.000941413
-0.0105933
0.000891119
-0.0106034
0.000840644
-0.0106124
0.000790094
-0.0106202
0.000739553
-0.010627
0.000689086
-0.0106329
0.000638742
-0.010638
0.000588558
-0.0106424
0.000538559
-0.0106462
0.000488758
-0.0106494
0.000439162
-0.0106521
0.000389768
-0.0106544
0.000340568
-0.0106564
0.00029155
-0.010658
0.000242695
-0.0106592
0.000193984
-0.0106603
0.000145392
-0.0106611
9.68915e-05
-0.0106616
4.84576e-05
-0.010662
-0.0106622
0.000960731
-0.0100546
-0.000903164
0.00100821
-0.0100869
0.0010478
-0.0101228
0.00108022
-0.0101595
0.00110569
-0.0101959
0.00112429
-0.0102313
0.00113614
-0.0102654
0.00114151
-0.0102978
0.00114073
-0.0103284
0.0011342
-0.0103571
0.00112238
-0.0103838
0.00110575
-0.0104085
0.00108483
-0.0104313
0.00106014
-0.0104523
0.00103216
-0.0104714
0.00100135
-0.0104889
0.000968132
-0.0105047
0.000932869
-0.010519
0.000895895
-0.0105319
0.000857496
-0.0105434
0.000817924
-0.0105537
0.000777394
-0.0105629
0.000736089
-0.010571
0.000694166
-0.0105782
0.000651758
-0.0105846
0.000608976
-0.0105901
0.00056591
-0.0105949
0.000522638
-0.0105991
0.000479221
-0.0106028
0.000435706
-0.0106059
0.000392133
-0.0106086
0.00034853
-0.0106108
0.000304918
-0.0106128
0.00026131
-0.0106143
0.000217716
-0.0106157
0.000174138
-0.0106167
0.000130578
-0.0106175
8.70317e-05
-0.0106181
4.34933e-05
-0.0106185
-0.0106187
0.000851987
-0.0101221
-0.000784427
0.000911806
-0.0101467
0.000961442
-0.0101724
0.00100057
-0.0101987
0.00102968
-0.010225
0.00104954
-0.0102512
0.00106103
-0.0102769
0.0010651
-0.0103019
0.00106266
-0.010326
0.00105459
-0.010349
0.00104164
-0.0103708
0.00102451
-0.0103914
0.00100375
-0.0104106
0.000979888
-0.0104284
0.000953335
-0.0104449
0.000924467
-0.01046
0.000893608
-0.0104739
0.000861043
-0.0104865
0.000827023
-0.0104979
0.000791769
-0.0105082
0.000755476
-0.0105174
0.000718313
-0.0105257
0.000680429
-0.0105332
0.000641955
-0.0105398
0.000603
-0.0105456
0.000563661
-0.0105508
0.000524019
-0.0105553
0.000484143
-0.0105593
0.000444088
-0.0105627
0.000403902
-0.0105657
0.000363622
-0.0105683
0.000323279
-0.0105705
0.000282897
-0.0105724
0.000242491
-0.0105739
0.000202076
-0.0105752
0.00016166
-0.0105763
0.000121247
-0.0105771
8.0839e-05
-0.0105777
4.04386e-05
-0.0105781
-0.0105782
0.000655845
-0.0101672
-0.000610748
0.000694772
-0.0101856
0.000728822
-0.0102065
0.000758271
-0.0102281
0.000783112
-0.0102499
0.000803322
-0.0102714
0.000818899
-0.0102924
0.000829863
-0.0103128
0.0008363
-0.0103324
0.000838356
-0.0103511
0.000836232
-0.0103687
0.000830175
-0.0103853
0.000820469
-0.0104009
0.000807421
-0.0104154
0.000791345
-0.0104288
0.000772553
-0.0104412
0.000751343
-0.0104527
0.000727998
-0.0104631
0.000702778
-0.0104727
0.000675921
-0.0104813
0.000647642
-0.0104892
0.000618135
-0.0104962
0.00058757
-0.0105026
0.0005561
-0.0105083
0.000523858
-0.0105134
0.000490961
-0.0105179
0.000457513
-0.0105218
0.000423602
-0.0105253
0.000389304
-0.0105284
0.000354686
-0.0105311
0.000319805
-0.0105334
0.000284708
-0.0105354
0.000249437
-0.0105371
0.000214025
-0.0105385
0.000178501
-0.0105397
0.000142891
-0.0105407
0.000107216
-0.0105414
7.14938e-05
-0.010542
3.57392e-05
-0.0105423
-0.0105425
0.000578873
-0.0102171
-0.000529031
0.000624268
-0.010231
0.000663453
-0.0102456
0.000696071
-0.0102607
0.000722268
-0.0102761
0.000742357
-0.0102915
0.000756722
-0.0103068
0.000765809
-0.0103219
0.000770096
-0.0103367
0.000770058
-0.010351
0.000766144
-0.0103648
0.000758769
-0.010378
0.000748305
-0.0103904
0.000735086
-0.0104022
0.000719407
-0.0104131
0.000701535
-0.0104234
0.00068171
-0.0104328
0.000660147
-0.0104415
0.000637042
-0.0104495
0.000612576
-0.0104569
0.00058691
-0.0104635
0.000560191
-0.0104695
0.000532554
-0.010475
0.000504118
-0.0104798
0.00047499
-0.0104842
0.000445268
-0.0104881
0.000415036
-0.0104916
0.00038437
-0.0104947
0.000353336
-0.0104974
0.000321993
-0.0104998
0.000290391
-0.0105018
0.000258575
-0.0105036
0.000226583
-0.0105051
0.000194448
-0.0105064
0.0001622
-0.0105075
0.000129863
-0.0105083
9.7459e-05
-0.010509
6.50069e-05
-0.0105095
3.25257e-05
-0.0105098
-0.01051
0.000449367
-0.0102504
-0.000416034
0.000478924
-0.0102606
0.000505485
-0.0102722
0.000529141
-0.0102844
0.000549815
-0.0102968
0.000567426
-0.0103091
0.000581926
-0.0103213
0.000593281
-0.0103333
0.000601477
-0.0103449
0.000606546
-0.0103561
0.000608556
-0.0103668
0.000607616
-0.010377
0.000603867
-0.0103867
0.000597473
-0.0103958
0.00058862
-0.0104043
0.000577498
-0.0104122
0.000564303
-0.0104196
0.000549225
-0.0104265
0.000532449
-0.0104328
0.00051415
-0.0104386
0.000494489
-0.0104438
0.000473619
-0.0104487
0.000451677
-0.010453
0.00042879
-0.010457
0.000405073
-0.0104605
0.000380627
-0.0104637
0.000355548
-0.0104665
0.000329918
-0.010469
0.000303812
-0.0104713
0.000277296
-0.0104732
0.00025043
-0.0104749
0.000223266
-0.0104764
0.000195852
-0.0104777
0.000168228
-0.0104788
0.000140433
-0.0104797
0.0001125
-0.0104804
8.44607e-05
-0.010481
5.63429e-05
-0.0104814
2.81725e-05
-0.0104817
-0.0104818
0.000391727
-0.010286
-0.000356166
0.000424615
-0.0102935
0.000453646
-0.0103012
0.000478547
-0.0103093
0.000499346
-0.0103176
0.000516174
-0.0103259
0.000529199
-0.0103343
0.000538629
-0.0103427
0.000544705
-0.010351
0.00054768
-0.0103591
0.000547807
-0.0103669
0.000545327
-0.0103745
0.000540466
-0.0103818
0.000533435
-0.0103887
0.000524422
-0.0103953
0.000513605
-0.0104014
0.000501145
-0.0104072
0.000487193
-0.0104125
0.000471886
-0.0104175
0.000455355
-0.010422
0.00043772
-0.0104262
0.000419094
-0.01043
0.00039958
-0.0104335
0.000379275
-0.0104367
0.000358267
-0.0104395
0.000336638
-0.0104421
0.000314462
-0.0104444
0.000291807
-0.0104464
0.000268734
-0.0104482
0.000245298
-0.0104498
0.00022155
-0.0104512
0.000197536
-0.0104524
0.000173295
-0.0104535
0.000148865
-0.0104543
0.000124281
-0.0104551
9.9571e-05
-0.0104557
7.47648e-05
-0.0104562
4.98877e-05
-0.0104565
2.49656e-05
-0.0104567
-0.0104568
0.00030193
-0.0103093
-0.00027857
0.000322978
-0.0103145
0.000342209
-0.0103205
0.000359654
-0.0103267
0.000375225
-0.0103331
0.000388835
-0.0103395
0.000400418
-0.0103459
0.00040993
-0.0103522
0.000417335
-0.0103584
0.00042262
-0.0103643
0.000425797
-0.0103701
0.000426905
-0.0103756
0.000426006
-0.0103809
0.000423183
-0.0103859
0.000418534
-0.0103906
0.00041217
-0.0103951
0.000404208
-0.0103992
0.000394769
-0.0104031
0.000383972
-0.0104067
0.000371934
-0.01041
0.000358769
-0.010413
0.000344583
-0.0104158
0.000329478
-0.0104184
0.000313546
-0.0104207
0.000296876
-0.0104228
0.000279549
-0.0104247
0.000261638
-0.0104264
0.000243211
-0.010428
0.000224331
-0.0104293
0.000205054
-0.0104305
0.000185433
-0.0104316
0.000165514
-0.0104325
0.00014534
-0.0104333
0.000124952
-0.010434
0.000104385
-0.0104345
8.3673e-05
-0.010435
6.28476e-05
-0.0104353
4.19387e-05
-0.0104356
2.09739e-05
-0.0104358
-0.0104359
0.00025599
-0.0103335
-0.000231804
0.000278566
-0.0103371
0.000298743
-0.0103406
0.000316337
-0.0103443
0.000331349
-0.0103481
0.000343838
-0.010352
0.000353883
-0.010356
0.000361586
-0.0103599
0.000367066
-0.0103638
0.00037046
-0.0103677
0.000371906
-0.0103716
0.000371542
-0.0103753
0.0003695
-0.0103789
0.000365905
-0.0103823
0.000360875
-0.0103856
0.000354519
-0.0103887
0.00034694
-0.0103916
0.000338233
-0.0103944
0.00032849
-0.0103969
0.000317796
-0.0103993
0.000306233
-0.0104015
0.000293878
-0.0104035
0.000280804
-0.0104053
0.000267079
-0.010407
0.000252767
-0.0104085
0.00023793
-0.0104099
0.000222623
-0.0104111
0.000206897
-0.0104122
0.000190803
-0.0104132
0.000174383
-0.0104141
0.00015768
-0.0104149
0.000140731
-0.0104155
0.000123571
-0.0104161
0.000106232
-0.0104166
8.87457e-05
-0.010417
7.11387e-05
-0.0104174
5.34375e-05
-0.0104176
3.56668e-05
-0.0104178
1.78513e-05
-0.010418
-0.010418
0.000190202
-0.0103485
-0.000175231
0.000203774
-0.0103506
0.000216311
-0.0103532
0.00022783
-0.0103559
0.000238263
-0.0103586
0.000247538
-0.0103613
0.000255599
-0.010364
0.000262402
-0.0103667
0.000267912
-0.0103694
0.000272103
-0.0103719
0.000274965
-0.0103744
0.000276503
-0.0103768
0.00027674
-0.0103791
0.000275709
-0.0103813
0.000273459
-0.0103833
0.000270049
-0.0103853
0.000265541
-0.0103871
0.000260007
-0.0103888
0.000253516
-0.0103904
0.000246142
-0.0103919
0.000237954
-0.0103933
0.000229022
-0.0103946
0.000219412
-0.0103957
0.000209186
-0.0103968
0.000198404
-0.0103977
0.000187121
-0.0103986
0.00017539
-0.0103994
0.000163258
-0.0104001
0.000150771
-0.0104007
0.00013797
-0.0104013
0.000124894
-0.0104018
0.000111578
-0.0104022
9.80557e-05
-0.0104026
8.43576e-05
-0.0104029
7.05125e-05
-0.0104032
5.65475e-05
-0.0104034
4.24881e-05
-0.0104036
2.83592e-05
-0.0104037
1.41834e-05
-0.0104038
-0.0104038
0.000151036
-0.0103633
-0.000136221
0.000164925
-0.0103645
0.000177402
-0.0103657
0.00018836
-0.0103668
0.00019781
-0.010368
0.000205782
-0.0103693
0.000212314
-0.0103706
0.000217456
-0.0103719
0.000221267
-0.0103732
0.000223816
-0.0103745
0.000225177
-0.0103758
0.000225427
-0.0103771
0.000224639
-0.0103783
0.000222884
-0.0103795
0.00022023
-0.0103807
0.00021674
-0.0103818
0.000212474
-0.0103829
0.000207488
-0.0103838
0.000201836
-0.0103848
0.000195567
-0.0103856
0.00018873
-0.0103865
0.000181372
-0.0103872
0.000173536
-0.0103879
0.000165265
-0.0103885
0.000156597
-0.0103891
0.00014757
-0.0103896
0.000138221
-0.0103901
0.000128583
-0.0103905
0.000118686
-0.0103908
0.000108562
-0.0103912
9.82355e-05
-0.0103915
8.77341e-05
-0.0103917
7.70812e-05
-0.0103919
6.62994e-05
-0.0103921
5.54098e-05
-0.0103923
4.44323e-05
-0.0103924
3.33857e-05
-0.0103925
2.22879e-05
-0.0103926
1.11569e-05
-0.0103927
-0.0103927
9.91845e-05
-0.0103709
-9.16232e-05
0.000105992
-0.0103713
0.000112394
-0.0103721
0.000118398
-0.0103728
0.000123939
-0.0103736
0.000128956
-0.0103743
0.0001334
-0.010375
0.000137235
-0.0103757
0.000140429
-0.0103764
0.000142959
-0.010377
0.000144808
-0.0103776
0.000145969
-0.0103782
0.000146443
-0.0103788
0.000146239
-0.0103793
0.000145376
-0.0103798
0.000143877
-0.0103803
0.000141771
-0.0103807
0.000139092
-0.0103812
0.000135875
-0.0103816
0.000132157
-0.0103819
0.000127974
-0.0103823
0.000123363
-0.0103826
0.000118358
-0.0103829
0.000112995
-0.0103831
0.000107306
-0.0103834
0.000101322
-0.0103836
9.50719e-05
-0.0103838
8.85829e-05
-0.010384
8.18809e-05
-0.0103841
7.49897e-05
-0.0103843
6.79319e-05
-0.0103844
6.07283e-05
-0.0103845
5.33986e-05
-0.0103846
4.59613e-05
-0.0103847
3.84335e-05
-0.0103848
3.08317e-05
-0.0103848
2.31717e-05
-0.0103849
1.54686e-05
-0.0103849
7.73687e-06
-0.0103849
-0.0103849
6.2706e-05
-0.0103776
-5.59839e-05
6.91952e-05
-0.0103778
7.50106e-05
-0.0103779
8.00665e-05
-0.0103779
8.43736e-05
-0.0103779
8.79617e-05
-0.0103779
9.08634e-05
-0.0103779
9.3114e-05
-0.0103779
9.4752e-05
-0.010378
9.58182e-05
-0.0103781
9.63549e-05
-0.0103782
9.64037e-05
-0.0103783
9.60043e-05
-0.0103784
9.51934e-05
-0.0103785
9.40042e-05
-0.0103786
9.24667e-05
-0.0103788
9.06078e-05
-0.0103789
8.84519e-05
-0.010379
8.60211e-05
-0.0103791
8.33362e-05
-0.0103792
8.04162e-05
-0.0103793
7.72794e-05
-0.0103794
7.39431e-05
-0.0103795
7.04238e-05
-0.0103796
6.67375e-05
-0.0103797
6.28988e-05
-0.0103798
5.89224e-05
-0.0103798
5.48222e-05
-0.0103799
5.06107e-05
-0.0103799
4.63003e-05
-0.01038
4.19025e-05
-0.01038
3.74284e-05
-0.01038
3.28881e-05
-0.0103801
2.82912e-05
-0.0103801
2.3647e-05
-0.0103801
1.89642e-05
-0.0103801
1.42509e-05
-0.0103802
9.51503e-06
-0.0103802
4.76454e-06
-0.0103802
-0.0103802
1.7967e-05
-1.68753e-05
1.88123e-05
1.96139e-05
2.04227e-05
2.12372e-05
2.20433e-05
2.28239e-05
2.35613e-05
2.42384e-05
2.48388e-05
2.53478e-05
2.57528e-05
2.60433e-05
2.62118e-05
2.62543e-05
2.61693e-05
2.59578e-05
2.56232e-05
2.51704e-05
2.46056e-05
2.39356e-05
2.31681e-05
2.23103e-05
2.13696e-05
2.03535e-05
1.92691e-05
1.8123e-05
1.69212e-05
1.56699e-05
1.43745e-05
1.30401e-05
1.16718e-05
1.02738e-05
8.85061e-06
7.40611e-06
5.94414e-06
4.46835e-06
2.98231e-06
1.48922e-06
-0.00168529
-0.00501685
-0.001824
-0.00336992
-0.00194386
-0.00289513
-0.00204979
-0.00203986
-0.00213923
-0.00175767
-0.00221874
-0.00128811
-0.00228774
-0.00111502
-0.00235012
-0.000840788
-0.00240597
-0.000728578
-0.0024574
-0.000559317
-0.00250464
-0.000481792
-0.00254883
-0.000371843
-0.00259018
-0.000314809
-0.00262934
-0.000239418
-0.00266644
-0.0001947
-0.00270184
-0.000139832
-0.00273564
-0.000102423
-0.00276799
-5.92651e-05
-0.0027989
-2.50754e-05
1.26491e-05
-0.00173471
-0.00485344
-0.00187081
-0.00323383
-0.00199005
-0.00277589
-0.00209332
-0.00193658
-0.00218048
-0.00167051
-0.00225747
-0.00121113
-0.00232385
-0.00104864
-0.00238364
-0.000780995
-0.00243674
-0.000675475
-0.00248551
-0.000510553
-0.00252994
-0.00043736
-0.0025714
-0.000330385
-0.00260991
-0.000276292
-0.00264629
-0.00020304
-0.00268054
-0.000160449
-0.00271315
-0.00010723
-0.00274409
-7.14787e-05
-0.00277364
-2.97157e-05
-0.00280171
2.99323e-06
3.93677e-05
-0.00178654
-0.00468985
-0.00192067
-0.0030997
-0.00203853
-0.00265803
-0.00213859
-0.00183652
-0.00222315
-0.00158595
-0.002297
-0.00113728
-0.00236056
-0.000985085
-0.00241734
-0.000724212
-0.00246762
-0.0006252
-0.00251346
-0.000464709
-0.00255508
-0.000395736
-0.00259368
-0.000291789
-0.0026294
-0.000240568
-0.00266295
-0.000169489
-0.00269442
-0.00012898
-0.00272422
-7.74317e-05
-0.00275239
-4.33088e-05
-0.00277915
-2.95526e-06
-0.00280447
2.83068e-05
6.33294e-05
-0.00183785
-0.00452523
-0.00196999
-0.00296755
-0.00208609
-0.00254194
-0.00218292
-0.00173969
-0.00226485
-0.00150402
-0.00233558
-0.00106655
-0.00239635
-0.000924313
-0.00245017
-0.00067039
-0.00249768
-0.000577696
-0.00254067
-0.00042172
-0.00257955
-0.000356855
-0.00261535
-0.000255986
-0.00264835
-0.000207568
-0.00267915
-0.000138691
-0.00270791
-0.000100219
-0.00273498
-5.03585e-05
-0.00276045
-1.78418e-05
-0.00278451
2.11053e-05
-0.00280714
5.09366e-05
8.46157e-05
-0.00188789
-0.00435953
-0.00201804
-0.00283741
-0.00213231
-0.00242766
-0.00222598
-0.00164602
-0.00230534
-0.00142465
-0.00237301
-0.000998878
-0.00243108
-0.000866243
-0.00248202
-0.00061945
-0.00252684
-0.000532879
-0.00256706
-0.000381505
-0.00260328
-0.000320634
-0.00263637
-0.000222894
-0.00266673
-0.000177208
-0.00269485
-0.000110564
-0.00272099
-7.40831e-05
-0.00274542
-2.59326e-05
-0.00276827
5.00893e-06
-0.0027897
4.25409e-05
-0.00280973
7.0968e-05
0.000103309
-0.00193649
-0.00419274
-0.00206469
-0.00270921
-0.00217716
-0.00231519
-0.00226775
-0.00155543
-0.00234462
-0.00134779
-0.00240931
-0.000934183
-0.00246476
-0.000810796
-0.00251289
-0.000571318
-0.0025551
-0.00049067
-0.00259262
-0.000343986
-0.00262626
-0.000286993
-0.00265672
-0.000192432
-0.00268452
-0.00014941
-0.00271006
-8.50272e-05
-0.00273365
-5.04895e-05
-0.00275551
-4.07879e-06
-0.00277584
2.53415e-05
-0.00279473
6.14288e-05
-0.00281224
8.84847e-05
0.000119493
-0.00198355
-0.00402489
-0.00210986
-0.0025829
-0.00222058
-0.00220448
-0.00230819
-0.00146782
-0.00238263
-0.00127334
-0.00244443
-0.000872387
-0.00249734
-0.000757885
-0.00254274
-0.000525914
-0.00258243
-0.000450986
-0.00261733
-0.000309081
-0.00264848
-0.000255849
-0.00267639
-0.000164517
-0.00270171
-0.000124088
-0.00272475
-6.19926e-05
-0.00274587
-2.93674e-05
-0.00276527
1.53194e-05
-0.00278314
4.32165e-05
-0.00279958
7.78629e-05
-0.00281467
0.000103572
0.000133254
-0.00202897
-0.00385603
-0.00215347
-0.00245841
-0.00226247
-0.00209547
-0.00234719
-0.0013831
-0.00241932
-0.00120122
-0.0024783
-0.000813403
-0.00252878
-0.000707412
-0.00257154
-0.000483153
-0.00260879
-0.000413732
-0.00264117
-0.000276705
-0.0026699
-0.000227113
-0.00269536
-0.000139062
-0.00271829
-0.000101154
-0.00273891
-4.13725e-05
-0.00275766
-1.06194e-05
-0.00277467
3.23294e-05
-0.00279019
5.87327e-05
-0.00280425
9.19304e-05
-0.002817
0.000116318
0.000144681
-0.00207267
-0.00368622
-0.00219543
-0.00233565
-0.00230279
-0.00198812
-0.00238473
-0.00130115
-0.00245464
-0.00113131
-0.0025109
-0.000757138
-0.00255904
-0.000659277
-0.00259924
-0.000442945
-0.00263416
-0.000378815
-0.0026641
-0.000246767
-0.00269052
-0.000200691
-0.00271361
-0.000115977
-0.00273424
-8.05171e-05
-0.00275253
-2.30823e-05
-0.002769
5.85089e-06
-0.00278371
4.70393e-05
-0.00279696
7.19791e-05
-0.00280875
0.000103722
-0.00281925
0.000126814
0.000153861
-0.0021146
-0.00351554
-0.00223572
-0.00221453
-0.00234148
-0.00188235
-0.00242076
-0.00122188
-0.00248854
-0.00106353
-0.00254219
-0.000703494
-0.00258809
-0.000613374
-0.00262584
-0.000405198
-0.00265852
-0.000346133
-0.00268611
-0.000219175
-0.00271031
-0.00017649
-0.00273112
-9.51713e-05
-0.00274955
-6.20816e-05
-0.0027656
-7.03883e-06
-0.0027799
2.01521e-05
-0.00279239
5.95345e-05
-0.00280346
8.3045e-05
-0.00281307
0.00011333
-0.0028214
0.000135149
0.000160887
-0.00215472
-0.00334403
-0.00227429
-0.00209496
-0.00237852
-0.00177812
-0.00245524
-0.00114515
-0.00252101
-0.000997767
-0.00257213
-0.000652367
-0.00261591
-0.000569597
-0.00265129
-0.000369814
-0.00268184
-0.000315587
-0.00270718
-0.000193836
-0.00272926
-0.000154412
-0.00274788
-7.65495e-05
-0.0027642
-4.57654e-05
-0.00277812
6.88235e-06
-0.00279032
3.23504e-05
-0.0028007
6.99185e-05
-0.00280968
9.20238e-05
-0.0028172
0.000120849
-0.00282346
0.000141417
0.000165849
-0.00219299
-0.00317178
-0.0023111
-0.00197685
-0.00241386
-0.00167536
-0.00248815
-0.00107086
-0.002552
-0.000933922
-0.00260072
-0.00060365
-0.00264247
-0.00052784
-0.00267559
-0.000336695
-0.00270411
-0.000287071
-0.00272729
-0.000170653
-0.00274735
-0.000134357
-0.00276388
-6.00164e-05
-0.00277818
-3.14687e-05
-0.00279007
1.87727e-05
-0.00280026
4.25453e-05
-0.00280863
7.82831e-05
-0.00281561
9.90126e-05
-0.00282114
0.000126373
-0.00282543
0.000145712
0.000168843
-0.00222937
-0.00299885
-0.00234613
-0.00186009
-0.00244747
-0.00157402
-0.00251947
-0.000998864
-0.00258149
-0.000871896
-0.00262791
-0.000557232
-0.00266776
-0.000487993
-0.00269871
-0.000305738
-0.0027253
-0.000260483
-0.00274643
-0.000149526
-0.00276456
-0.000116224
-0.0027791
-4.54747e-05
-0.00279149
-1.90832e-05
-0.00280143
2.87133e-05
-0.00280973
5.08421e-05
-0.00281617
8.4724e-05
-0.00282126
0.000104108
-0.00282489
0.000129998
-0.00282731
0.000148129
0.000169964
-0.00226386
-0.00282528
-0.00237935
-0.0017446
-0.00247934
-0.00147403
-0.00254916
-0.000929045
-0.00260947
-0.000811587
-0.0026537
-0.000512998
-0.00269174
-0.00044995
-0.00272064
-0.000276838
-0.00274541
-0.000235715
-0.00276458
-0.000130355
-0.0027809
-9.99098e-05
-0.00279355
-3.28191e-05
-0.00280413
-8.5087e-06
-0.00281221
3.67996e-05
-0.0028187
5.73352e-05
-0.00282332
8.93412e-05
-0.00282662
0.000107408
-0.00282845
0.000131822
-0.00282908
0.000148766
0.000169307
-0.00229641
-0.00265114
-0.00241073
-0.00163028
-0.00250943
-0.00137533
-0.00257721
-0.000861267
-0.00263589
-0.000752898
-0.00267806
-0.00047083
-0.00271441
-0.000413604
-0.00274136
-0.000249888
-0.00276441
-0.000212662
-0.00278173
-0.000113036
-0.00279633
-8.53126e-05
-0.00280721
-2.19398e-05
-0.00281605
3.34427e-07
-0.00282241
4.31538e-05
-0.00282719
6.21178e-05
-0.00283008
9.22347e-05
-0.00283169
0.000109012
-0.00283181
0.000131944
-0.00283076
0.000147721
0.000166972
-0.00232701
-0.00247648
-0.00244025
-0.00151704
-0.00253772
-0.00127786
-0.00260359
-0.000795399
-0.00266076
-0.00069573
-0.00270098
-0.000430606
-0.00273574
-0.000378846
-0.00276085
-0.000224777
-0.0027823
-0.000191218
-0.00279787
-9.74657e-05
-0.00281086
-7.23244e-05
-0.00282001
-1.27815e-05
-0.00282732
7.64192e-06
-0.00283199
4.78274e-05
-0.00283517
6.52925e-05
-0.00283644
9.35063e-05
-0.00283645
0.000109021
-0.00283497
0.000130465
-0.00283234
0.000145094
0.000163056
-0.00235564
-0.00230135
-0.00246789
-0.00140479
-0.00256421
-0.00118154
-0.0026283
-0.000731307
-0.00268404
-0.000639985
-0.00272245
-0.000392203
-0.00275572
-0.000345571
-0.00277911
-0.000201393
-0.00279905
-0.000171276
-0.00281298
-8.35354e-05
-0.00282446
-6.08442e-05
-0.00283206
-5.18564e-06
-0.00283784
1.3422e-05
-0.00284098
5.09724e-05
-0.00284265
6.69586e-05
-0.0028424
9.32577e-05
-0.00284091
0.000107535
-0.00283793
0.000127486
-0.00283382
0.000140984
0.000157659
-0.00238229
-0.00212579
-0.00249363
-0.00129345
-0.00258886
-0.00108631
-0.00265131
-0.000668858
-0.00270573
-0.000585565
-0.00274244
-0.000355495
-0.00277434
-0.000313674
-0.00279611
-0.000179619
-0.00281466
-0.000152729
-0.00282705
-7.1137e-05
-0.00283714
-5.07602e-05
-0.00284325
9.24479e-07
-0.00284764
1.78167e-05
-0.00284934
5.26739e-05
-0.00284961
6.72258e-05
-0.00284795
9.15921e-05
-0.00284507
0.000104658
-0.00284069
0.000123108
-0.0028352
0.000135494
0.000150884
-0.00240694
-0.00194985
-0.00251745
-0.00118294
-0.00261167
-0.000992089
-0.00267261
-0.000607918
-0.0027258
-0.000532375
-0.00276094
-0.000320354
-0.00279157
-0.000283048
-0.00281185
-0.00015934
-0.00282911
-0.000135471
-0.00284009
-6.01576e-05
-0.00284885
-4.19938e-05
-0.00285364
5.71628e-06
-0.00285673
2.08992e-05
-0.00285709
5.30351e-05
-0.00285606
6.61987e-05
-0.00285308
8.86142e-05
-0.00284892
0.000100494
-0.00284325
0.000117437
-0.00283648
0.000128727
0.000142833
-0.00242957
-0.00177358
-0.00253934
-0.00107318
-0.00263263
-0.000898802
-0.00269219
-0.000548352
-0.00274425
-0.000480318
-0.00277795
-0.00028665
-0.00280741
-0.00025359
-0.00282631
-0.000140437
-0.00284239
-0.000119394
-0.00285206
-5.04881e-05
-0.00285965
-3.44039e-05
-0.00286317
9.23766e-06
-0.00286508
2.28056e-05
-0.00286421
5.21625e-05
-0.00286199
6.39826e-05
-0.0028578
8.44293e-05
-0.00285246
9.51457e-05
-0.00284559
0.000110575
-0.00283765
0.000120784
0.000133608
-0.00245018
-0.001597
-0.00255928
-0.000964076
-0.00265171
-0.000806377
-0.00271003
-0.000490028
-0.00276106
-0.000429295
-0.00279345
-0.000254255
-0.00282185
-0.000225193
-0.0028395
-0.000122788
-0.0028545
-0.000104391
-0.00286298
-4.20117e-05
-0.00286948
-2.78956e-05
-0.00287186
1.1616e-05
-0.00287269
2.363e-05
-0.00287069
5.01676e-05
-0.00286739
6.06837e-05
-0.00286211
7.91439e-05
-0.00285568
8.87194e-05
-0.00284773
0.000102628
-0.00283872
0.000111772
0.000123313
-0.00246876
-0.00142017
-0.00257727
-0.000855558
-0.00266891
-0.000714737
-0.00272612
-0.000432816
-0.00277621
-0.000379208
-0.00280743
-0.000223037
-0.00283487
-0.000197753
-0.00285139
-0.000106272
-0.00286542
-9.0354e-05
-0.00287282
-3.46123e-05
-0.00287836
-2.23566e-05
-0.0028797
1.29585e-05
-0.00287955
2.34775e-05
-0.00287654
4.71595e-05
-0.00287227
5.64087e-05
-0.00286599
7.28654e-05
-0.00285859
8.13207e-05
-0.00284966
9.3702e-05
-0.00283969
0.000101794
0.000112053
-0.00248528
-0.0012431
-0.0025933
-0.000747548
-0.00268423
-0.000623805
-0.00274046
-0.000376586
-0.00278971
-0.000329957
-0.00281988
-0.000192866
-0.00284647
-0.000171164
-0.00286197
-9.07662e-05
-0.00287515
-7.71767e-05
-0.00288159
-2.8173e-05
-0.00288627
-1.76788e-05
-0.00288669
1.33766e-05
-0.00288566
2.24551e-05
-0.00288175
4.32488e-05
-0.00287661
5.12646e-05
-0.00286945
6.57021e-05
-0.00286118
7.30562e-05
-0.00285138
8.39045e-05
-0.00284055
9.09567e-05
9.99334e-05
-0.00249976
-0.00106585
-0.00260734
-0.000639972
-0.00269764
-0.0005335
-0.00275302
-0.000321211
-0.00280154
-0.00028144
-0.00283079
-0.000163611
-0.00285663
-0.000145321
-0.00287125
-7.61459e-05
-0.00288368
-6.47515e-05
-0.00288928
-2.25758e-05
-0.0028932
-1.37542e-05
-0.00289281
1.29831e-05
-0.00289102
2.06697e-05
-0.00288632
3.85465e-05
-0.00288042
4.53592e-05
-0.00287248
5.77628e-05
-0.00286345
6.40329e-05
-0.00285289
7.33425e-05
-0.0028413
7.9366e-05
8.70606e-05
-0.00251218
-0.00088843
-0.00261939
-0.000532761
-0.00270916
-0.000443737
-0.0027638
-0.000266565
-0.00281169
-0.000233556
-0.00284016
-0.00013514
-0.00286536
-0.000120117
-0.00287922
-6.22863e-05
-0.002891
-5.29711e-05
-0.00289588
-1.7702e-05
-0.00289916
-1.04747e-05
-0.00289806
1.18919e-05
-0.00289562
1.82293e-05
-0.00289024
3.31647e-05
-0.00288368
3.88004e-05
-0.00287508
4.91571e-05
-0.0028654
5.43583e-05
-0.00285418
6.21243e-05
-0.00284195
6.71286e-05
7.3541e-05
-0.00252254
-0.000710883
-0.00262945
-0.00042585
-0.00271876
-0.000354429
-0.0027728
-0.000212523
-0.00282016
-0.000186202
-0.00284797
-0.000107323
-0.00287264
-9.54477e-05
-0.00288587
-4.90616e-05
-0.00289711
-4.1728e-05
-0.00290138
-1.34322e-05
-0.00290412
-7.73253e-06
-0.00290245
1.02176e-05
-0.00289946
1.52424e-05
-0.00289351
2.72155e-05
-0.00288641
3.16965e-05
-0.00287725
3.99953e-05
-0.00286703
4.41403e-05
-0.00285526
5.03583e-05
-0.00284249
5.43516e-05
5.94816e-05
-0.00253083
-0.000533235
-0.00263751
-0.000319174
-0.00272645
-0.000265489
-0.00278001
-0.000158964
-0.00282694
-0.000139271
-0.00285423
-8.00288e-05
-0.00287848
-7.12055e-05
-0.00289119
-3.63454e-05
-0.002902
-3.0915e-05
-0.00290579
-9.64614e-06
-0.0029081
-5.42005e-06
-0.00290596
8.07607e-06
-0.00290254
1.18178e-05
-0.00289613
2.08119e-05
-0.00288859
2.41563e-05
-0.00287899
3.03881e-05
-0.00286833
3.34872e-05
-0.00285613
3.81536e-05
-0.00284292
4.11425e-05
4.499e-05
-0.00253705
-0.000355515
-0.00264356
-0.000212673
-0.00273222
-0.000176826
-0.00278542
-0.000105765
-0.00283203
-9.266e-05
-0.00285893
-5.31262e-05
-0.00288285
-4.72841e-05
-0.00289519
-2.40111e-05
-0.00290568
-2.04245e-05
-0.0029091
-6.22341e-06
-0.00291109
-3.42972e-06
-0.0029086
5.58343e-06
-0.00290484
8.06475e-06
-0.0028981
1.4067e-05
-0.00289023
1.62885e-05
-0.00288029
2.04464e-05
-0.00286931
2.25076e-05
-0.00285678
2.56196e-05
-0.00284324
2.7609e-05
3.01738e-05
-0.0025412
-0.000177746
-0.00264759
-0.000106287
-0.00273607
-8.83484e-05
-0.00278903
-5.28061e-05
-0.00283542
-4.6262e-05
-0.00286206
-2.64846e-05
-0.00288577
-2.35767e-05
-0.00289785
-1.19314e-05
-0.00290813
-1.01491e-05
-0.00291131
-3.04309e-06
-0.00291308
-1.65409e-06
-0.00291036
2.85647e-06
-0.00290638
4.09252e-06
-0.00289941
7.09461e-06
-0.00289133
8.20235e-06
-0.00288116
1.02815e-05
-0.00286996
1.13102e-05
-0.00285721
1.2866e-05
-0.00284346
1.38593e-05
1.51412e-05
-0.00254328
4.64462e-08
-0.00264961
4.20648e-08
-0.00273799
3.63573e-08
-0.00279083
3.33624e-08
-0.00283712
2.92339e-08
-0.00286363
2.64475e-08
-0.00288723
2.3616e-08
-0.00289918
2.08187e-08
-0.00290935
1.87589e-08
-0.00291241
1.59764e-08
-0.00291408
1.42189e-08
-0.00291124
1.22515e-08
-0.00290715
1.06987e-08
-0.00290007
8.31361e-09
-0.00289187
6.92139e-09
-0.0028816
5.06211e-09
-0.00287029
3.82063e-09
-0.00285743
2.39205e-09
-0.00284357
1.35059e-09
3.46798e-10
-0.00254328
0.000177839
-0.00264961
0.000106371
-0.00273799
8.84211e-05
-0.00279083
5.28728e-05
-0.00283712
4.63205e-05
-0.00286363
2.65375e-05
-0.00288723
2.3624e-05
-0.00289918
1.19731e-05
-0.00290935
1.01866e-05
-0.00291241
3.07504e-06
-0.00291408
1.68251e-06
-0.00291124
-2.83195e-06
-0.00290715
-4.07112e-06
-0.00290007
-7.07798e-06
-0.00289187
-8.1885e-06
-0.0028816
-1.02714e-05
-0.00287029
-1.13025e-05
-0.00285743
-1.28612e-05
-0.00284357
-1.38566e-05
-1.51405e-05
-0.0025412
0.000355608
-0.00264759
0.000212757
-0.00273607
0.000176899
-0.00278903
0.000105832
-0.00283542
9.27185e-05
-0.00286206
5.3179e-05
-0.00288577
4.73314e-05
-0.00289785
2.40527e-05
-0.00290813
2.0462e-05
-0.00291131
6.25537e-06
-0.00291308
3.45815e-06
-0.00291036
-5.5589e-06
-0.00290638
-8.04334e-06
-0.00289941
-1.40504e-05
-0.00289133
-1.62747e-05
-0.00288116
-2.04362e-05
-0.00286996
-2.25e-05
-0.00285721
-2.56148e-05
-0.00284346
-2.76063e-05
-3.01731e-05
-0.00253705
0.000533328
-0.00264356
0.000319258
-0.00273222
0.000265562
-0.00278542
0.000159031
-0.00283203
0.00013933
-0.00285893
8.00817e-05
-0.00288285
7.12528e-05
-0.00289519
3.63871e-05
-0.00290568
3.09525e-05
-0.0029091
9.67809e-06
-0.00291109
5.4485e-06
-0.0029086
-8.05154e-06
-0.00290484
-1.17964e-05
-0.0028981
-2.07952e-05
-0.00289023
-2.41424e-05
-0.00288029
-3.03779e-05
-0.00286931
-3.34796e-05
-0.00285678
-3.81488e-05
-0.00284324
-4.11398e-05
-4.49893e-05
-0.00253083
0.000710976
-0.00263751
0.000425934
-0.00272645
0.000354502
-0.00278001
0.00021259
-0.00282694
0.00018626
-0.00285423
0.000107376
-0.00287848
9.5495e-05
-0.00289119
4.91032e-05
-0.002902
4.17656e-05
-0.00290579
1.34641e-05
-0.0029081
7.761e-06
-0.00290596
-1.01931e-05
-0.00290254
-1.5221e-05
-0.00289613
-2.71988e-05
-0.00288859
-3.16827e-05
-0.00287899
-3.99852e-05
-0.00286833
-4.41326e-05
-0.00285613
-5.03535e-05
-0.00284292
-5.43489e-05
-5.94809e-05
-0.00252254
0.000888523
-0.00262945
0.000532845
-0.00271876
0.00044381
-0.0027728
0.000266631
-0.00282016
0.000233615
-0.00284797
0.000135193
-0.00287264
0.000120165
-0.00288587
6.23279e-05
-0.00289711
5.30087e-05
-0.00290138
1.7734e-05
-0.00290412
1.05032e-05
-0.00290245
-1.18673e-05
-0.00289946
-1.82078e-05
-0.00289351
-3.3148e-05
-0.00288641
-3.87865e-05
-0.00287725
-4.9147e-05
-0.00286703
-5.43506e-05
-0.00285526
-6.21195e-05
-0.00284249
-6.71259e-05
-7.35403e-05
-0.00251218
0.00106594
-0.00261939
0.000640056
-0.00270916
0.000533573
-0.0027638
0.000321277
-0.00281169
0.000281499
-0.00284016
0.000163664
-0.00286536
0.000145368
-0.00287922
7.61875e-05
-0.002891
6.47892e-05
-0.00289588
2.26078e-05
-0.00289915
1.37827e-05
-0.00289806
-1.29586e-05
-0.00289562
-2.06482e-05
-0.00289024
-3.85299e-05
-0.00288368
-4.53453e-05
-0.00287508
-5.77526e-05
-0.0028654
-6.40252e-05
-0.00285418
-7.33377e-05
-0.00284195
-7.93633e-05
-8.70599e-05
-0.00249976
0.0012432
-0.00260734
0.000747632
-0.00269764
0.000623878
-0.00275302
0.000376652
-0.00280154
0.000330015
-0.00283079
0.000192919
-0.00285663
0.000171212
-0.00287125
9.08077e-05
-0.00288368
7.72144e-05
-0.00288928
2.82049e-05
-0.0028932
1.77074e-05
-0.00289281
-1.3352e-05
-0.00289102
-2.24335e-05
-0.00288632
-4.32321e-05
-0.00288042
-5.12508e-05
-0.00287248
-6.56919e-05
-0.00286345
-7.30485e-05
-0.00285289
-8.38997e-05
-0.0028413
-9.0954e-05
-9.99327e-05
-0.00248528
0.00142026
-0.00259329
0.000855642
-0.00268423
0.00071481
-0.00274046
0.000432882
-0.00278971
0.000379267
-0.00281988
0.00022309
-0.00284647
0.000197801
-0.00286197
0.000106314
-0.00287515
9.03917e-05
-0.00288159
3.46443e-05
-0.00288627
2.23852e-05
-0.00288669
-1.29339e-05
-0.00288566
-2.3456e-05
-0.00288175
-4.71428e-05
-0.00287661
-5.63948e-05
-0.00286945
-7.28552e-05
-0.00286118
-8.1313e-05
-0.00285138
-9.36972e-05
-0.00284055
-0.000101791
-0.000112052
-0.00246875
0.0015971
-0.00257727
0.00096416
-0.00266891
0.00080645
-0.00272612
0.000490094
-0.00277621
0.000429354
-0.00280743
0.000254308
-0.00283487
0.000225241
-0.00285139
0.000122829
-0.00286542
0.000104428
-0.00287282
4.20437e-05
-0.00287836
2.79242e-05
-0.0028797
-1.15914e-05
-0.00287955
-2.36083e-05
-0.00287654
-5.01508e-05
-0.00287227
-6.06698e-05
-0.00286599
-7.91337e-05
-0.00285859
-8.87117e-05
-0.00284966
-0.000102623
-0.00283969
-0.000111769
-0.000123312
-0.00245018
0.00177367
-0.00255928
0.00107326
-0.00265171
0.000898875
-0.00271003
0.000548418
-0.00276105
0.000480377
-0.00279345
0.000286703
-0.00282185
0.000253638
-0.0028395
0.000140478
-0.0028545
0.000119432
-0.00286298
5.05202e-05
-0.00286948
3.44326e-05
-0.00287186
-9.21305e-06
-0.00287269
-2.27839e-05
-0.00287069
-5.21457e-05
-0.00286739
-6.39687e-05
-0.00286211
-8.4419e-05
-0.00285568
-9.5138e-05
-0.00284773
-0.00011057
-0.00283872
-0.000120782
-0.000133607
-0.00242957
0.00194995
-0.00253934
0.00118303
-0.00263262
0.000992162
-0.00269219
0.000607984
-0.00274425
0.000532435
-0.00277795
0.000320406
-0.00280741
0.000283096
-0.00282631
0.000159382
-0.00284239
0.000135509
-0.00285206
6.01897e-05
-0.00285965
4.20226e-05
-0.00286317
-5.69171e-06
-0.00286508
-2.08774e-05
-0.00286421
-5.30183e-05
-0.00286199
-6.61848e-05
-0.0028578
-8.86039e-05
-0.00285246
-0.000100486
-0.00284559
-0.000117432
-0.00283765
-0.000128724
-0.000142832
-0.00240694
0.00212588
-0.00251745
0.00129354
-0.00261167
0.00108638
-0.00267261
0.000668924
-0.0027258
0.000585625
-0.00276094
0.000355548
-0.00279157
0.000313722
-0.00281185
0.000179661
-0.00282911
0.000152767
-0.00284009
7.11691e-05
-0.00284885
5.0789e-05
-0.00285364
-8.99696e-07
-0.00285673
-1.7795e-05
-0.00285709
-5.2657e-05
-0.00285606
-6.72119e-05
-0.00285308
-9.15818e-05
-0.00284892
-0.000104651
-0.00284325
-0.000123104
-0.00283648
-0.000135492
-0.000150884
-0.00238229
0.00230144
-0.00249363
0.00140488
-0.00258886
0.00118162
-0.00265131
0.000731373
-0.00270573
0.000640044
-0.00274244
0.000392256
-0.00277434
0.000345619
-0.00279611
0.000201434
-0.00281466
0.000171314
-0.00282705
8.35675e-05
-0.00283714
6.08732e-05
-0.00284325
5.21004e-06
-0.00284764
-1.34002e-05
-0.00284934
-5.09554e-05
-0.00284961
-6.69448e-05
-0.00284795
-9.32473e-05
-0.00284507
-0.000107527
-0.00284069
-0.000127481
-0.0028352
-0.000140982
-0.000157659
-0.00235564
0.00247657
-0.00246789
0.00151712
-0.00256421
0.00127793
-0.0026283
0.000795465
-0.00268404
0.000695789
-0.00272245
0.000430659
-0.00275572
0.000378894
-0.00277911
0.000224819
-0.00279905
0.000191256
-0.00281298
9.74979e-05
-0.00282446
7.23534e-05
-0.00283205
1.2806e-05
-0.00283783
-7.62009e-06
-0.00284098
-4.78104e-05
-0.00284265
-6.52786e-05
-0.0028424
-9.34959e-05
-0.00284091
-0.000109013
-0.00283793
-0.00013046
-0.00283382
-0.000145091
-0.000163055
-0.00232701
0.00265123
-0.00244025
0.00163036
-0.00253772
0.00137541
-0.00260359
0.000861333
-0.00266076
0.000752957
-0.00270098
0.000470882
-0.00273574
0.000413652
-0.00276085
0.000249929
-0.0027823
0.000212701
-0.00279787
0.000113069
-0.00281086
8.53417e-05
-0.00282001
2.19641e-05
-0.00282732
-3.12173e-07
-0.00283199
-4.31369e-05
-0.00283517
-6.21038e-05
-0.00283644
-9.22242e-05
-0.00283645
-0.000109004
-0.00283497
-0.000131939
-0.00283234
-0.000147719
-0.000166971
-0.00229641
0.00282537
-0.00241073
0.00174468
-0.00250943
0.0014741
-0.0025772
0.00092911
-0.00263589
0.000811647
-0.00267806
0.000513051
-0.00271441
0.000449999
-0.00274136
0.00027688
-0.00276441
0.000235753
-0.00278173
0.000130387
-0.00279633
9.9939e-05
-0.00280721
3.28437e-05
-0.00281605
8.5305e-06
-0.00282241
-3.67824e-05
-0.00282719
-5.73212e-05
-0.00283008
-8.93307e-05
-0.00283169
-0.0001074
-0.00283181
-0.000131817
-0.00283076
-0.000148764
-0.000169307
-0.00226386
0.00299894
-0.00237935
0.00186018
-0.00247934
0.00157409
-0.00254916
0.00099893
-0.00260947
0.000871956
-0.0026537
0.000557285
-0.00269174
0.000488042
-0.00272064
0.000305779
-0.00274541
0.000260521
-0.00276458
0.000149559
-0.0027809
0.000116253
-0.00279355
4.54994e-05
-0.00280413
1.91051e-05
-0.00281221
-2.86961e-05
-0.0028187
-5.0828e-05
-0.00282332
-8.47135e-05
-0.00282662
-0.0001041
-0.00282845
-0.000129993
-0.00282908
-0.000148126
-0.000169963
-0.00222937
0.00317188
-0.00234613
0.00197693
-0.00244747
0.00167544
-0.00251947
0.00107092
-0.00258149
0.000933983
-0.00262791
0.000603702
-0.00266776
0.000527888
-0.00269871
0.000336736
-0.0027253
0.00028711
-0.00274643
0.000170685
-0.00276456
0.000134386
-0.0027791
6.0041e-05
-0.00279149
3.14906e-05
-0.00280143
-1.87555e-05
-0.00280973
-4.25311e-05
-0.00281617
-7.82725e-05
-0.00282126
-9.90047e-05
-0.00282489
-0.000126367
-0.00282731
-0.000145709
-0.000168843
-0.00219298
0.00334413
-0.0023111
0.00209505
-0.00241386
0.00177819
-0.00248815
0.00114522
-0.002552
0.000997828
-0.00260071
0.000652419
-0.00264247
0.000569646
-0.00267559
0.000369855
-0.00270411
0.000315625
-0.00272729
0.000193869
-0.00274735
0.000154442
-0.00276388
7.65742e-05
-0.00277818
4.57873e-05
-0.00279007
-6.86501e-06
-0.00280026
-3.23362e-05
-0.00280863
-6.99078e-05
-0.00281561
-9.2016e-05
-0.00282114
-0.000120844
-0.00282543
-0.000141414
-0.000165849
-0.00215472
0.00351563
-0.00227429
0.00221461
-0.00237852
0.00188243
-0.00245524
0.00122194
-0.00252101
0.00106359
-0.00257213
0.000703546
-0.00261591
0.000613423
-0.00265129
0.000405239
-0.00268184
0.000346172
-0.00270718
0.000219208
-0.00272926
0.00017652
-0.00274788
9.51961e-05
-0.0027642
6.21035e-05
-0.00277812
7.05617e-06
-0.00279031
-2.01378e-05
-0.0028007
-5.95238e-05
-0.00280968
-8.30371e-05
-0.0028172
-0.000113325
-0.00282346
-0.000135146
-0.000160886
-0.0021146
0.00368632
-0.00223572
0.00233573
-0.00234148
0.00198819
-0.00242076
0.00130122
-0.00248854
0.00113137
-0.00254219
0.00075719
-0.00258809
0.000659326
-0.00262584
0.000442987
-0.00265852
0.000378854
-0.00268611
0.000246799
-0.00271031
0.000200721
-0.00273112
0.000116002
-0.00274955
8.05391e-05
-0.0027656
2.30997e-05
-0.0027799
-5.83659e-06
-0.00279239
-4.70286e-05
-0.00280346
-7.19711e-05
-0.00281307
-0.000103717
-0.0028214
-0.000126811
-0.00015386
-0.00207267
0.00385613
-0.00219543
0.00245849
-0.00230279
0.00209555
-0.00238473
0.00138316
-0.00245464
0.00120128
-0.0025109
0.000813455
-0.00255904
0.000707461
-0.00259924
0.000483195
-0.00263416
0.000413771
-0.0026641
0.000276737
-0.00269052
0.000227142
-0.00271361
0.000139087
-0.00273424
0.000101176
-0.00275253
4.139e-05
-0.002769
1.06337e-05
-0.00278371
-3.23186e-05
-0.00279696
-5.87248e-05
-0.00280875
-9.19252e-05
-0.00281925
-0.000116316
-0.00014468
-0.00202897
0.00402499
-0.00215346
0.00258298
-0.00226247
0.00220455
-0.00234719
0.00146789
-0.00241932
0.0012734
-0.0024783
0.000872439
-0.00252878
0.000757934
-0.00257154
0.000525956
-0.00260879
0.000451025
-0.00264117
0.000309114
-0.0026699
0.000255879
-0.00269536
0.000164542
-0.00271829
0.00012411
-0.00273891
6.20102e-05
-0.00275766
2.93818e-05
-0.00277467
-1.53085e-05
-0.00279019
-4.32085e-05
-0.00280425
-7.78577e-05
-0.002817
-0.000103569
-0.000133254
-0.00198355
0.00419284
-0.00210986
0.00270929
-0.00222058
0.00231527
-0.00230818
0.0015555
-0.00238263
0.00134785
-0.00244443
0.000934235
-0.00249734
0.000810845
-0.00254274
0.000571359
-0.00258243
0.000490709
-0.00261733
0.000344019
-0.00264848
0.000287023
-0.00267639
0.000192457
-0.00270171
0.000149432
-0.00272475
8.50449e-05
-0.00274587
5.05039e-05
-0.00276527
4.08971e-06
-0.00278314
-2.53335e-05
-0.00279958
-6.14235e-05
-0.00281467
-8.84819e-05
-0.000119492
-0.00193649
0.00435962
-0.00206469
0.00283749
-0.00217716
0.00242774
-0.00226775
0.00164609
-0.00234462
0.00142472
-0.00240931
0.00099893
-0.00246476
0.000866292
-0.00251289
0.000619492
-0.0025551
0.000532918
-0.00259262
0.000381538
-0.00262626
0.000320664
-0.00265672
0.000222919
-0.00268452
0.00017723
-0.00271006
0.000110582
-0.00273365
7.40976e-05
-0.00275551
2.59436e-05
-0.00277584
-5.00087e-06
-0.00279473
-4.25356e-05
-0.00281224
-7.09651e-05
-0.000103308
-0.00188789
0.00452533
-0.00201803
0.00296764
-0.00213231
0.00254202
-0.00222597
0.00173975
-0.00230534
0.00150408
-0.00237301
0.00106661
-0.00243108
0.000924362
-0.00248202
0.000670432
-0.00252684
0.000577735
-0.00256706
0.000421753
-0.00260328
0.000356885
-0.00263637
0.000256011
-0.00266673
0.00020759
-0.00269485
0.000138709
-0.00272099
0.000100234
-0.00274542
5.03695e-05
-0.00276827
1.78499e-05
-0.0027897
-2.11e-05
-0.00280973
-5.09338e-05
-8.46148e-05
-0.00183785
0.00468994
-0.00196999
0.00309978
-0.00208609
0.00265811
-0.00218292
0.00183658
-0.00226485
0.00158601
-0.00233558
0.00113733
-0.00239635
0.000985134
-0.00245017
0.000724254
-0.00249768
0.000625239
-0.00254067
0.000464742
-0.00257955
0.000395766
-0.00261535
0.000291815
-0.00264835
0.000240591
-0.00267915
0.000169507
-0.00270791
0.000128994
-0.00273498
7.74428e-05
-0.00276045
4.33169e-05
-0.00278451
2.96066e-06
-0.00280714
-2.8304e-05
-6.33285e-05
-0.00178654
0.00485353
-0.00192067
0.00323391
-0.00203852
0.00277597
-0.00213859
0.00193665
-0.00222315
0.00167058
-0.002297
0.00121118
-0.00236056
0.00104869
-0.00241734
0.000781037
-0.00246762
0.000675514
-0.00251346
0.000510587
-0.00255508
0.00043739
-0.00259368
0.00033041
-0.0026294
0.000276314
-0.00266295
0.000203058
-0.00269442
0.000160463
-0.00272422
0.000107241
-0.00275239
7.14869e-05
-0.00277915
2.97212e-05
-0.00280447
-2.99035e-06
-3.93668e-05
-0.00173471
0.00501695
-0.00187081
0.00337001
-0.00199005
0.00289521
-0.00209332
0.00203992
-0.00218048
0.00175773
-0.00225747
0.00128816
-0.00232385
0.00111507
-0.00238364
0.00084083
-0.00243674
0.000728618
-0.00248551
0.00055935
-0.00252994
0.000481822
-0.0025714
0.000371869
-0.00260991
0.000314831
-0.00264629
0.000239436
-0.00268054
0.000194715
-0.00271315
0.000139843
-0.00274409
0.000102431
-0.00277364
5.92706e-05
-0.00280171
2.50782e-05
-1.26482e-05
-0.00168528
0.00518277
-0.001824
0.00350872
-0.00194386
0.00301506
-0.00204979
0.00214586
-0.00213923
0.00184717
-0.00221874
0.00136767
-0.00228774
0.00118407
-0.00235012
0.000903206
-0.00240597
0.000784466
-0.0024574
0.000610782
-0.00250464
0.000529061
-0.00254883
0.00041606
-0.00259018
0.000356188
-0.00262934
0.000278588
-0.00266644
0.000231818
-0.00270184
0.000175242
-0.00273564
0.00013623
-0.00276799
9.16287e-05
-0.0027989
5.59868e-05
1.68762e-05
-0.00971864
0.00496139
0.00994001
-0.0096234
0.00341349
-0.00969547
0.00308713
-0.00974181
0.0021922
-0.00984417
0.00194954
-0.00990929
0.00143279
-0.00999702
0.00127181
-0.0100546
0.000960771
-0.0101221
0.000852025
-0.0101672
0.000655877
-0.0102171
0.000578902
-0.0102504
0.000449391
-0.010286
0.000391748
-0.0103093
0.000301948
-0.0103335
0.000256005
-0.0103485
0.000190213
-0.0103633
0.000151044
-0.0103709
9.91899e-05
-0.0103776
6.27089e-05
1.79679e-05
-0.00988623
0.00471114
0.0101365
-0.00980898
0.00333624
-0.00981912
0.00309727
-0.00984367
0.00221675
-0.00991708
0.00202294
-0.00996612
0.00148184
-0.0100394
0.00134509
-0.0100869
0.00100824
-0.0101467
0.000911843
-0.0101856
0.000694801
-0.010231
0.000624296
-0.0102606
0.000478947
-0.0102935
0.000424636
-0.0103145
0.000322995
-0.0103371
0.00027858
-0.0103506
0.000203784
-0.0103645
0.000164933
-0.0103713
0.000105997
-0.0103778
6.9198e-05
1.88132e-05
-0.0100503
0.00444765
0.0103138
-0.00996888
0.00325481
-0.00993804
0.00306643
-0.00994626
0.00222497
-0.00999024
0.00206693
-0.0100271
0.00151868
-0.0100832
0.0014012
-0.0101228
0.00104783
-0.0101724
0.000961477
-0.0102065
0.00072885
-0.0102457
0.00066348
-0.0102722
0.000505507
-0.0103012
0.000453666
-0.0103205
0.000342225
-0.0103406
0.000298756
-0.0103532
0.000216321
-0.0103657
0.000177409
-0.0103721
0.000112399
-0.0103779
7.50132e-05
1.96149e-05
-0.0102053
0.00419246
0.0104605
-0.0101093
0.00315878
-0.0100503
0.00300736
-0.0100438
0.00221856
-0.0100617
0.00208483
-0.0100879
0.00154484
-0.0101271
0.00144044
-0.0101596
0.00108025
-0.0101987
0.0010006
-0.0102281
0.000758297
-0.0102607
0.000696097
-0.0102844
0.000529161
-0.0103093
0.000478565
-0.0103267
0.000359669
-0.0103443
0.000316349
-0.0103559
0.00022784
-0.0103668
0.000188368
-0.0103728
0.000118403
-0.0103779
8.00691e-05
2.04237e-05
-0.0103416
0.00395297
0.0105811
-0.0102338
0.00305095
-0.0101538
0.00292736
-0.0101344
0.00219916
-0.0101308
0.00208122
-0.0101467
0.00156069
-0.0101705
0.00146425
-0.0101959
0.00110572
-0.010225
0.00102971
-0.0102499
0.000783136
-0.0102761
0.000722292
-0.0102968
0.000549834
-0.0103176
0.000499364
-0.0103331
0.00037524
-0.0103481
0.00033136
-0.0103586
0.000238273
-0.010368
0.000197817
-0.0103736
0.000123944
-0.0103779
8.43762e-05
2.12381e-05
-0.0104563
0.00372669
0.0106826
-0.0103426
0.00293728
-0.0102479
0.00283267
-0.0102172
0.00216841
-0.0101964
0.00206039
-0.0102024
0.00156675
-0.0102127
0.00147458
-0.0102313
0.00112431
-0.0102512
0.00104957
-0.0102714
0.000803344
-0.0102915
0.000742379
-0.0103091
0.000567444
-0.0103259
0.00051619
-0.0103395
0.000388848
-0.010352
0.000343849
-0.0103613
0.000247547
-0.0103693
0.000205788
-0.0103743
0.000128961
-0.0103779
8.79641e-05
2.20442e-05
-0.0105526
0.00351211
0.0107672
-0.0104359
0.00282053
-0.0103324
0.00272924
-0.010292
0.00212795
-0.0102577
0.00202611
-0.0102547
0.00156376
-0.0102535
0.00147341
-0.0102654
0.00113616
-0.0102769
0.00106105
-0.0102924
0.000818919
-0.0103068
0.000756743
-0.0103213
0.000581943
-0.0103343
0.000529214
-0.0103459
0.000400431
-0.010356
0.000353893
-0.010364
0.000255608
-0.0103706
0.00021232
-0.010375
0.000133405
-0.0103779
9.08657e-05
2.28247e-05
-0.0106341
0.00330917
0.0108371
-0.0105157
0.00270209
-0.0104077
0.00262124
-0.010359
0.00207931
-0.0103145
0.00198161
-0.0103033
0.00155249
-0.0102924
0.0014626
-0.0102978
0.00114153
-0.0103019
0.00106512
-0.0103128
0.00082988
-0.0103219
0.000765827
-0.0103333
0.000593296
-0.0103427
0.000538643
-0.0103522
0.000409942
-0.0103599
0.000361595
-0.0103667
0.00026241
-0.0103719
0.000217462
-0.0103757
0.000137239
-0.0103779
9.31162e-05
2.35622e-05
-0.010703
0.00311777
0.0108944
-0.0105841
0.00258326
-0.0104742
0.0025113
-0.0104188
0.00202387
-0.0103667
0.00192956
-0.010348
0.00153376
-0.0103292
0.00144382
-0.0103284
0.00114075
-0.010326
0.00106268
-0.0103324
0.000836315
-0.0103367
0.000770113
-0.0103449
0.000601491
-0.010351
0.000544718
-0.0103584
0.000417346
-0.0103639
0.000367076
-0.0103694
0.000267919
-0.0103732
0.000221272
-0.0103764
0.000140433
-0.010378
9.47542e-05
2.42392e-05
-0.0107609
0.00293744
0.0109413
-0.0106429
0.00246525
-0.0105328
0.00240112
-0.0104718
0.00196294
-0.0104143
0.00187202
-0.0103889
0.00150838
-0.0103636
0.00141853
-0.0103571
0.00113422
-0.010349
0.0010546
-0.0103511
0.00083837
-0.010351
0.000770072
-0.0103561
0.000606558
-0.0103591
0.000547692
-0.0103644
0.00042263
-0.0103677
0.000370469
-0.0103719
0.00027211
-0.0103745
0.000223821
-0.010377
0.000142963
-0.0103781
9.58203e-05
2.48397e-05
-0.0108096
0.00276746
0.0109795
-0.0106933
0.002349
-0.010584
0.00229184
-0.0105189
0.00189777
-0.0104574
0.00181051
-0.0104262
0.00147722
-0.0103956
0.00138796
-0.0103838
0.00112239
-0.0103708
0.00104166
-0.0103687
0.000836244
-0.0103648
0.000766157
-0.0103668
0.000608567
-0.0103669
0.000547817
-0.0103701
0.000425806
-0.0103716
0.000371914
-0.0103744
0.000274972
-0.0103758
0.000225182
-0.0103776
0.000144812
-0.0103782
9.63568e-05
2.53486e-05
-0.0108503
0.0026071
0.0110106
-0.0107364
0.00223515
-0.0106288
0.00218419
-0.0105605
0.00182948
-0.0104962
0.0017462
-0.01046
0.0014411
-0.0104252
0.00135308
-0.0104085
0.00110576
-0.0103914
0.00102452
-0.0103853
0.000830185
-0.010378
0.00075878
-0.010377
0.000607626
-0.0103745
0.000545336
-0.0103756
0.000426913
-0.0103753
0.000371549
-0.0103768
0.00027651
-0.0103771
0.000225431
-0.0103782
0.000145973
-0.0103783
9.64056e-05
2.57536e-05
-0.0108842
0.00245561
0.0110357
-0.0107732
0.00212411
-0.0106676
0.00207865
-0.0105972
0.00175901
-0.0105309
0.00167996
-0.0104906
0.00140083
-0.0104523
0.0013147
-0.0104313
0.00108484
-0.0104106
0.00100376
-0.0104009
0.000820478
-0.0103904
0.000748314
-0.0103867
0.000603875
-0.0103818
0.000540475
-0.0103809
0.000426014
-0.0103789
0.000369506
-0.0103791
0.000276745
-0.0103783
0.000224643
-0.0103788
0.000146446
-0.0103784
9.60061e-05
2.6044e-05
-0.0109124
0.00231229
0.0110557
-0.0108044
0.00201611
-0.0107013
0.00197552
-0.0106294
0.00168713
-0.0105619
0.00161246
-0.0105182
0.00135714
-0.010477
0.00127348
-0.0104523
0.00106014
-0.0104284
0.000979895
-0.0104154
0.000807428
-0.0104022
0.000735093
-0.0103958
0.000597481
-0.0103887
0.000533442
-0.0103859
0.000423189
-0.0103823
0.000365911
-0.0103813
0.000275714
-0.0103795
0.000222888
-0.0103793
0.000146242
-0.0103785
9.51951e-05
2.62125e-05
-0.0109357
0.00217646
0.0110715
-0.0108308
0.00191126
-0.0107303
0.00187497
-0.0106576
0.00161447
-0.0105894
0.00154424
-0.010543
0.00131068
-0.0104994
0.00122996
-0.0104715
0.00103216
-0.0104449
0.000953339
-0.0104288
0.000791351
-0.0104131
0.000719413
-0.0104043
0.000588626
-0.0103953
0.000524428
-0.0103906
0.00041854
-0.0103856
0.00036088
-0.0103833
0.000273464
-0.0103807
0.000220234
-0.0103798
0.000145379
-0.0103786
9.40059e-05
2.6255e-05
-0.0109548
0.00204751
0.0110838
-0.0108531
0.00180957
-0.0107552
0.00177708
-0.0106823
0.00154152
-0.0106137
0.00147568
-0.0105651
0.00126203
-0.0105197
0.00118459
-0.0104889
0.00100135
-0.01046
0.000924469
-0.0104412
0.000772557
-0.0104234
0.00070154
-0.0104122
0.000577503
-0.0104014
0.00051361
-0.0103951
0.000412175
-0.0103887
0.000354524
-0.0103853
0.000270053
-0.0103818
0.000216743
-0.0103803
0.000143879
-0.0103788
9.24682e-05
2.61699e-05
-0.0109704
0.00192485
0.011093
-0.0108718
0.00171101
-0.0107766
0.00168187
-0.0107037
0.00146866
-0.0106352
0.00140712
-0.0105848
0.00121167
-0.010538
0.00113776
-0.0105047
0.00096813
-0.0104739
0.000893608
-0.0104527
0.000751345
-0.0104328
0.000681713
-0.0104196
0.000564307
-0.0104072
0.00050115
-0.0103992
0.000404213
-0.0103916
0.000346944
-0.0103871
0.000265545
-0.0103829
0.000212477
-0.0103808
0.000141774
-0.0103789
9.06092e-05
2.59584e-05
-0.0109828
0.00180793
0.0110998
-0.0108873
0.00161548
-0.0107947
0.00158929
-0.0107223
0.00139618
-0.0106539
0.0013388
-0.0106023
0.00116
-0.0105543
0.00108977
-0.010519
0.000932866
-0.0104865
0.000861041
-0.0104631
0.000727999
-0.0104416
0.000660148
-0.0104265
0.000549228
-0.0104125
0.000487196
-0.0104031
0.000394773
-0.0103944
0.000338236
-0.0103888
0.00026001
-0.0103838
0.000207491
-0.0103812
0.000139095
-0.010379
8.84532e-05
2.56238e-05
-0.0109927
0.00169627
0.0111044
-0.0109001
0.00152288
-0.0108102
0.00149931
-0.0107383
0.0013243
-0.0106704
0.00127091
-0.0106177
0.00110736
-0.0105689
0.00104091
-0.0105319
0.000895889
-0.0104979
0.00082702
-0.0104727
0.000702777
-0.0104495
0.000637043
-0.0104328
0.000532451
-0.0104175
0.000471889
-0.0104067
0.000383975
-0.0103969
0.000328493
-0.0103904
0.000253519
-0.0103848
0.000201838
-0.0103816
0.000135878
-0.0103791
8.60223e-05
2.5171e-05
-0.0110004
0.00158942
0.0111073
-0.0109106
0.00143307
-0.0108231
0.00141181
-0.010752
0.00125316
-0.0106847
0.00120358
-0.0106314
0.00105405
-0.0105818
0.000991386
-0.0105434
0.00085749
-0.0105082
0.000791765
-0.0104813
0.000675919
-0.0104569
0.000612575
-0.0104386
0.000514151
-0.010422
0.000455357
-0.01041
0.000371937
-0.0103993
0.000317798
-0.0103919
0.000246144
-0.0103856
0.000195569
-0.0103819
0.000132159
-0.0103792
8.33374e-05
2.46061e-05
-0.0110063
0.00148696
0.0111087
-0.0109191
0.00134591
-0.010834
0.00132671
-0.0107637
0.00118288
-0.0106971
0.00113693
-0.0106433
0.00100028
-0.0105933
0.0009414
-0.0105537
0.000817916
-0.0105175
0.00075547
-0.0104892
0.00064764
-0.0104635
0.000586908
-0.0104438
0.00049449
-0.0104262
0.000437721
-0.010413
0.000358771
-0.0104015
0.000306235
-0.0103933
0.000237956
-0.0103865
0.000188733
-0.0103823
0.000127976
-0.0103793
8.04173e-05
2.39363e-05
-0.0110105
0.0013885
0.011109
-0.0109259
0.00126124
-0.010843
0.00124388
-0.0107737
0.00111353
-0.0107078
0.00107102
-0.0106537
0.000946248
-0.0106034
0.000891104
-0.0105629
0.000777385
-0.0105258
0.000718306
-0.0104962
0.000618132
-0.0104695
0.000560189
-0.0104487
0.000473619
-0.01043
0.000419094
-0.0104158
0.000344585
-0.0104035
0.000293879
-0.0103946
0.000229024
-0.0103872
0.000181374
-0.0103826
0.000123364
-0.0103794
7.72805e-05
2.31685e-05
-0.0110135
0.00129371
0.0111083
-0.0109312
0.00117893
-0.0108505
0.00116321
-0.0107821
0.00104514
-0.010717
0.00100589
-0.0106628
0.000892101
-0.0106124
0.000840629
-0.0105711
0.000736079
-0.0105332
0.000680422
-0.0105026
0.000587566
-0.010475
0.000532551
-0.010453
0.000451677
-0.0104335
0.00039958
-0.0104184
0.000329478
-0.0104053
0.000280805
-0.0103957
0.000219413
-0.0103879
0.000173538
-0.0103829
0.00011836
-0.0103795
7.39441e-05
2.23106e-05
-0.0110153
0.00120225
0.0111068
-0.0109352
0.0010988
-0.0108566
0.00108457
-0.0107892
0.000977734
-0.0107249
0.000941579
-0.0106707
0.000837958
-0.0106202
0.000790078
-0.0105782
0.000694155
-0.0105398
0.000641946
-0.0105083
0.000556095
-0.0104799
0.000504114
-0.010457
0.000428789
-0.0104367
0.000379274
-0.0104207
0.000313547
-0.010407
0.000267079
-0.0103968
0.000209187
-0.0103885
0.000165266
-0.0103831
0.000112997
-0.0103796
7.04247e-05
2.137e-05
-0.0110163
0.00111384
0.0111047
-0.0109382
0.00102071
-0.0108615
0.00100782
-0.010795
0.000911302
-0.0107316
0.000878085
-0.0106775
0.000783909
-0.010627
0.000739537
-0.0105846
0.000651747
-0.0105456
0.000602991
-0.0105134
0.000523852
-0.0104842
0.000474986
-0.0104605
0.000405071
-0.0104395
0.000358266
-0.0104228
0.000296876
-0.0104085
0.000252768
-0.0103977
0.000198405
-0.0103891
0.000156598
-0.0103834
0.000107308
-0.0103797
6.67382e-05
2.03539e-05
-0.0110166
0.00102819
0.0111022
-0.0109404
0.000944512
-0.0108654
0.000932846
-0.0107999
0.000845824
-0.0107372
0.000815401
-0.0106833
0.000730024
-0.0106329
0.000689069
-0.0105901
0.000608964
-0.0105508
0.000563652
-0.0105179
0.000490956
-0.0104881
0.000445264
-0.0104637
0.000380625
-0.0104421
0.000336637
-0.0104247
0.000279549
-0.0104099
0.00023793
-0.0103986
0.000187122
-0.0103896
0.000147571
-0.0103836
0.000101323
-0.0103798
6.28996e-05
1.92694e-05
-0.0110162
0.000945058
0.0110994
-0.0109418
0.000870057
-0.0108685
0.000859514
-0.0108039
0.00078127
-0.010742
0.000753508
-0.0106883
0.000676352
-0.010638
0.000638726
-0.0105949
0.000565899
-0.0105553
0.00052401
-0.0105218
0.000457507
-0.0104916
0.000415031
-0.0104665
0.000355546
-0.0104444
0.000314461
-0.0104264
0.000261637
-0.0104111
0.000222623
-0.0103994
0.000175391
-0.0103901
0.000138222
-0.0103838
9.50728e-05
-0.0103798
5.89231e-05
1.81232e-05
-0.0110155
0.000864194
0.0110964
-0.0109426
0.000797201
-0.0108708
0.000787695
-0.0108071
0.000717597
-0.010746
0.000692376
-0.0106926
0.000622927
-0.0106424
0.000588542
-0.0105991
0.000522627
-0.0105593
0.000484133
-0.0105253
0.000423596
-0.0104947
0.000384365
-0.010469
0.000329915
-0.0104464
0.000291805
-0.010428
0.00024321
-0.0104122
0.000206897
-0.0104001
0.000163259
-0.0103905
0.000128584
-0.010384
8.85836e-05
-0.0103799
5.48228e-05
1.69214e-05
-0.0110144
0.000785378
0.0110932
-0.010943
0.000725805
-0.0108726
0.000717265
-0.0108098
0.000654756
-0.0107493
0.000631968
-0.0106962
0.000569769
-0.0106462
0.000538544
-0.0106028
0.00047921
-0.0105627
0.000444079
-0.0105284
0.000389298
-0.0104974
0.000353331
-0.0104713
0.000303809
-0.0104482
0.000268732
-0.0104293
0.00022433
-0.0104132
0.000190803
-0.0104007
0.000150772
-0.0103908
0.000118687
-0.0103841
8.18814e-05
-0.0103799
5.06112e-05
1.56701e-05
-0.0110131
0.000708401
0.0110901
-0.0109431
0.000655733
-0.0108739
0.000648098
-0.0108118
0.00059269
-0.0107521
0.000572241
-0.0106992
0.000516887
-0.0106494
0.000488744
-0.0106059
0.000435696
-0.0105657
0.000403893
-0.0105311
0.000354681
-0.0104998
0.000321988
-0.0104732
0.000277293
-0.0104498
0.000245296
-0.0104305
0.000205053
-0.0104141
0.000174383
-0.0104013
0.00013797
-0.0103912
0.000108562
-0.0103843
7.49902e-05
-0.01038
4.63008e-05
1.43746e-05
-0.0110117
0.000633064
0.011087
-0.0109428
0.000586851
-0.0108748
0.000580074
-0.0108134
0.000531338
-0.0107543
0.000513144
-0.0107017
0.000464281
-0.0106521
0.000439148
-0.0106086
0.000392123
-0.0105683
0.000363614
-0.0105334
0.000319799
-0.0105018
0.000290387
-0.0104749
0.000250427
-0.0104512
0.000221549
-0.0104316
0.000185432
-0.0104149
0.00015768
-0.0104018
0.000124894
-0.0103915
9.82359e-05
-0.0103844
6.79322e-05
-0.01038
4.19031e-05
1.30403e-05
-0.0110102
0.000559176
0.0110841
-0.0109424
0.00051903
-0.0108754
0.000513072
-0.0108147
0.000470637
-0.0107562
0.000454625
-0.0107038
0.00041194
-0.0106544
0.000389755
-0.0106108
0.000348521
-0.0105705
0.000323272
-0.0105354
0.000284703
-0.0105036
0.000258571
-0.0104764
0.000223264
-0.0104524
0.000197534
-0.0104325
0.000165513
-0.0104155
0.00014073
-0.0104022
0.000111578
-0.0103917
8.77344e-05
-0.0103845
6.07287e-05
-0.01038
3.74288e-05
1.16719e-05
-0.0110088
0.000486559
0.0110814
-0.0109419
0.000452143
-0.0108758
0.000446973
-0.0108157
0.000410519
-0.0107577
0.000396628
-0.0107056
0.00035985
-0.0106564
0.000340556
-0.0106128
0.000304909
-0.0105724
0.00028289
-0.0105371
0.000249432
-0.0105051
0.000226579
-0.0104777
0.000195849
-0.0104535
0.000173293
-0.0104333
0.000145339
-0.0104161
0.00012357
-0.0104026
9.80557e-05
-0.0103919
7.70814e-05
-0.0103846
5.3399e-05
-0.0103801
3.28884e-05
1.0274e-05
-0.0110074
0.000415039
0.0110789
-0.0109413
0.000386067
-0.010876
0.000381663
-0.0108164
0.000350913
-0.0107588
0.000339093
-0.010707
0.000307989
-0.010658
0.000291539
-0.0106143
0.000261303
-0.0105739
0.000242485
-0.0105385
0.00021402
-0.0105064
0.000194445
-0.0104788
0.000168226
-0.0104543
0.000148864
-0.010434
0.000124951
-0.0104166
0.000106232
-0.0104029
8.43575e-05
-0.0103921
6.62996e-05
-0.0103847
4.59615e-05
-0.0103801
2.82915e-05
8.85072e-06
-0.0110061
0.00034445
0.0110767
-0.0109407
0.000320679
-0.0108761
0.000317027
-0.0108169
0.000291748
-0.0107598
0.00028196
-0.0107081
0.00025633
-0.0106592
0.000242687
-0.0106156
0.000217709
-0.0105752
0.000202071
-0.0105397
0.000178498
-0.0105075
0.000162197
-0.0104797
0.000140431
-0.0104551
0.000124279
-0.0104345
0.000104384
-0.010417
8.87454e-05
-0.0104032
7.05124e-05
-0.0103923
5.54099e-05
-0.0103848
3.84337e-05
-0.0103801
2.36473e-05
7.40615e-06
-0.0110049
0.000274631
0.0110748
-0.0109401
0.00025586
-0.0108761
0.000252953
-0.0108173
0.00023295
-0.0107605
0.000225165
-0.010709
0.000204844
-0.0106603
0.000193977
-0.0106167
0.000174133
-0.0105763
0.000161655
-0.0105407
0.000142888
-0.0105083
0.000129861
-0.0104804
0.000112499
-0.0104557
9.95699e-05
-0.010435
8.36723e-05
-0.0104174
7.11384e-05
-0.0104034
5.65474e-05
-0.0103924
4.44324e-05
-0.0103848
3.08319e-05
-0.0103801
1.89643e-05
5.94421e-06
-0.011004
0.000205429
0.0110732
-0.0109396
0.000191491
-0.010876
0.00018933
-0.0108175
0.000174444
-0.010761
0.000168644
-0.0107096
0.000153498
-0.0106611
0.000145387
-0.0106175
0.000130574
-0.0105771
0.000121244
-0.0105414
0.000107214
-0.010509
9.74573e-05
-0.010481
8.44594e-05
-0.0104562
7.4764e-05
-0.0104353
6.28471e-05
-0.0104176
5.34373e-05
-0.0104036
4.24881e-05
-0.0103925
3.33858e-05
-0.0103849
2.31718e-05
-0.0103802
1.4251e-05
4.46841e-06
-0.0110033
0.000136699
0.011072
-0.0109393
0.000127448
-0.010876
0.000126047
-0.0108177
0.000116156
-0.0107614
0.000112332
-0.0107101
0.000102259
-0.0106616
9.6888e-05
-0.0106181
8.7029e-05
-0.0105777
8.08368e-05
-0.010542
7.14922e-05
-0.0105095
6.50057e-05
-0.0104814
5.6342e-05
-0.0104565
4.98872e-05
-0.0104356
4.19384e-05
-0.0104178
3.56667e-05
-0.0104037
2.83591e-05
-0.0103926
2.2288e-05
-0.0103849
1.54687e-05
-0.0103802
9.51511e-06
2.98234e-06
-0.0110028
6.83005e-05
0.0110712
-0.010939
6.35949e-05
-0.0108759
6.30031e-05
-0.0108178
5.80052e-05
-0.0107616
5.61667e-05
-0.0107104
5.10857e-05
-0.010662
4.84558e-05
-0.0106185
4.3492e-05
-0.0105781
4.04375e-05
-0.0105423
3.57384e-05
-0.0105098
3.25251e-05
-0.0104817
2.8172e-05
-0.0104567
2.49654e-05
-0.0104358
2.09737e-05
-0.010418
1.78512e-05
-0.0104038
1.41833e-05
-0.0103927
1.11569e-05
-0.0103849
7.73691e-06
-0.0103802
4.76458e-06
1.48924e-06
-0.0110025
0.0110708
-0.0109389
-0.0108759
-0.0108179
-0.0107617
-0.0107106
-0.0106622
-0.0106187
-0.0105782
-0.0105425
-0.01051
-0.0104818
-0.0104568
-0.0104359
-0.010418
-0.0104038
-0.0103927
-0.0103849
-0.0103802
-0.00146567
0.00994699
-0.00148397
0.0101548
-0.00149233
0.0103222
-0.00149313
0.0104613
-0.00148717
0.0105752
-0.00147504
0.0106704
-0.00145731
0.0107495
-0.00143479
0.0108145
-0.0014082
0.0108678
-0.00137816
0.0109112
-0.0013452
0.0109466
-0.00130977
0.0109752
-0.00127222
0.0109981
-0.00123287
0.0110164
-0.00119198
0.0110306
-0.00114977
0.0110416
-0.00110644
0.0110497
-0.00106214
0.0110555
-0.00101702
0.0110593
-0.000971184
0.0110615
-0.000924746
0.0110623
-0.000877792
0.011062
-0.000830399
0.0110609
-0.000782634
0.011059
-0.000734556
0.0110566
-0.000686217
0.0110539
-0.00063766
0.0110508
-0.000588926
0.0110476
-0.000540048
0.0110444
-0.00049106
0.0110411
-0.000441987
0.011038
-0.000392854
0.011035
-0.000343685
0.0110322
-0.000294498
0.0110297
-0.000245314
0.0110275
-0.000196148
0.0110256
-0.000147018
0.0110241
-9.79382e-05
0.0110229
-4.892e-05
0.0110222
0.0110219
-0.00142523
0.00997224
-0.0014438
0.0101733
-0.00145319
0.0103316
-0.00145477
0.0104629
-0.00144947
0.0105699
-0.00143796
0.0106589
-0.00142089
0.0107324
-0.00139903
0.0107927
-0.00137313
0.0108419
-0.00134383
0.0108819
-0.00131165
0.0109144
-0.00127702
0.0109406
-0.00124033
0.0109615
-0.00120188
0.0109779
-0.00116193
0.0109907
-0.0011207
0.0110003
-0.00107839
0.0110074
-0.00103514
0.0110122
-0.000991096
0.0110152
-0.000946375
0.0110167
-0.000901076
0.011017
-0.000855285
0.0110162
-0.000809076
0.0110147
-0.000762515
0.0110125
-0.000715657
0.0110098
-0.00066855
0.0110068
-0.000621239
0.0110035
-0.00057376
0.0110001
-0.000526146
0.0109967
-0.000478426
0.0109934
-0.000430625
0.0109902
-0.000382768
0.0109871
-0.000334874
0.0109843
-0.000286962
0.0109818
-0.000239049
0.0109796
-0.000191151
0.0109777
-0.000143283
0.0109762
-9.54585e-05
0.0109751
-4.76915e-05
0.0109744
0.0109742
-0.00137095
0.0100044
-0.00139098
0.0101934
-0.00140076
0.0103413
-0.00140251
0.0104647
-0.00139736
0.0105647
-0.00138619
0.0106477
-0.0013697
0.0107159
-0.00134866
0.0107716
-0.00132376
0.010817
-0.00129561
0.0108538
-0.0012647
0.0108835
-0.00123144
0.0109073
-0.0011962
0.0109262
-0.00115926
0.010941
-0.00112087
0.0109523
-0.00108124
0.0109607
-0.00104055
0.0109667
-0.000998952
0.0109706
-0.000956574
0.0109729
-0.000913528
0.0109737
-0.00086991
0.0109734
-0.000825805
0.0109721
-0.000781283
0.0109702
-0.000736407
0.0109676
-0.000691232
0.0109646
-0.000645804
0.0109613
-0.000600167
0.0109579
-0.000554356
0.0109543
-0.000508403
0.0109508
-0.000462337
0.0109473
-0.000416184
0.010944
-0.000369965
0.0109409
-0.000323701
0.010938
-0.000277411
0.0109355
-0.000231112
0.0109333
-0.000184819
0.0109314
-0.000138547
0.0109299
-9.231e-05
0.0109289
-4.61212e-05
0.0109282
0.010928
-0.00131323
0.0100404
-0.00133487
0.010215
-0.00134555
0.010352
-0.0013479
0.010467
-0.00134325
0.0105601
-0.00133267
0.0106372
-0.00131692
0.0107002
-0.00129681
0.0107515
-0.001273
0.0107932
-0.00124607
0.0108269
-0.0012165
0.0108539
-0.00118468
0.0108755
-0.00115094
0.0108925
-0.00111557
0.0109056
-0.00107879
0.0109155
-0.00104081
0.0109227
-0.00100179
0.0109277
-0.000961885
0.0109307
-0.000921214
0.0109322
-0.000879886
0.0109324
-0.000837993
0.0109315
-0.000795614
0.0109298
-0.000752819
0.0109274
-0.000709669
0.0109244
-0.000666217
0.0109212
-0.000622509
0.0109176
-0.000578584
0.010914
-0.000534481
0.0109102
-0.000490228
0.0109065
-0.000445856
0.010903
-0.000401387
0.0108995
-0.000356846
0.0108964
-0.000312252
0.0108935
-0.000267623
0.0108909
-0.000222976
0.0108886
-0.000178328
0.0108868
-0.000133691
0.0108853
-8.90818e-05
0.0108843
-4.45112e-05
0.0108837
0.0108835
-0.00125055
0.0100768
-0.00127262
0.0102371
-0.00128451
0.0103639
-0.00128811
0.0104706
-0.00128467
0.0105566
-0.00127532
0.0106278
-0.00126086
0.0106857
-0.00124212
0.0107328
-0.00121977
0.0107708
-0.00119437
0.0108015
-0.00116639
0.0108259
-0.00113621
0.0108453
-0.00110415
0.0108604
-0.00107048
0.0108719
-0.00103543
0.0108805
-0.000999204
0.0108865
-0.000961953
0.0108904
-0.000923822
0.0108926
-0.000884931
0.0108933
-0.000845386
0.0108928
-0.000805275
0.0108914
-0.000764678
0.0108892
-0.000723662
0.0108863
-0.000682287
0.0108831
-0.000640604
0.0108795
-0.000598658
0.0108757
-0.00055649
0.0108718
-0.000514135
0.0108679
-0.000471624
0.010864
-0.000428984
0.0108603
-0.000386241
0.0108568
-0.000343417
0.0108535
-0.000300531
0.0108506
-0.000257602
0.0108479
-0.000214647
0.0108457
-0.000171681
0.0108438
-0.000128719
0.0108423
-8.57754e-05
0.0108413
-4.2862e-05
0.0108408
0.0108407
-0.00118614
0.0101133
-0.00120815
0.0102591
-0.00122102
0.0103768
-0.00122582
0.0104754
-0.00122373
0.0105545
-0.00121579
0.0106199
-0.00120282
0.0106727
-0.00118564
0.0107156
-0.00116491
0.0107501
-0.00114118
0.0107777
-0.0011149
0.0107997
-0.00108646
0.0108169
-0.00105617
0.0108301
-0.00102429
0.0108401
-0.000991051
0.0108472
-0.000956635
0.0108521
-0.000921206
0.010855
-0.000884902
0.0108563
-0.000847841
0.0108562
-0.000810124
0.0108551
-0.000771841
0.0108531
-0.000733067
0.0108504
-0.000693871
0.0108471
-0.000654309
0.0108435
-0.000614433
0.0108396
-0.000574289
0.0108355
-0.000533914
0.0108314
-0.000493345
0.0108273
-0.000452612
0.0108233
-0.000411742
0.0108194
-0.000370761
0.0108158
-0.00032969
0.0108125
-0.000288549
0.0108094
-0.000247356
0.0108067
-0.000206129
0.0108044
-0.000164884
0.0108026
-0.000123633
0.0108011
-8.23934e-05
0.0108001
-4.11753e-05
0.0107995
0.0107995
-0.00112093
0.0101504
-0.00114336
0.0102815
-0.00115717
0.0103906
-0.00116299
0.0104812
-0.00116208
0.0105536
-0.00115544
0.0106132
-0.0011439
0.0106612
-0.00112824
0.0106999
-0.00110912
0.010731
-0.00108706
0.0107557
-0.0010625
0.0107751
-0.00103582
0.0107902
-0.00100732
0.0108016
-0.00097725
0.01081
-0.000945838
0.0108158
-0.000913265
0.0108195
-0.000879687
0.0108214
-0.000845239
0.0108218
-0.000810037
0.010821
-0.00077418
0.0108192
-0.000737754
0.0108167
-0.000700836
0.0108135
-0.000663491
0.0108098
-0.000625776
0.0108058
-0.00058774
0.0108016
-0.000549429
0.0107972
-0.000510882
0.0107929
-0.000472132
0.0107886
-0.000433211
0.0107844
-0.000394145
0.0107804
-0.000354959
0.0107766
-0.000315676
0.0107732
-0.000276315
0.0107701
-0.000236894
0.0107673
-0.000197431
0.010765
-0.000157941
0.0107631
-0.000118438
0.0107616
-7.89381e-05
0.0107606
-3.9452e-05
0.0107601
0.01076
-0.00105438
0.0101881
-0.00107768
0.0103048
-0.00109261
0.0104055
-0.00109946
0.0104881
-0.0010997
0.0105539
-0.00109432
0.0106078
-0.00108417
0.0106511
-0.00107002
0.0106858
-0.00105249
0.0107134
-0.00103209
0.0107353
-0.00100926
0.0107523
-0.000984342
0.0107653
-0.00095764
0.0107749
-0.000929404
0.0107818
-0.000899842
0.0107863
-0.000869134
0.0107888
-0.000837432
0.0107897
-0.000804866
0.0107893
-0.00077155
0.0107877
-0.000737581
0.0107853
-0.000703043
0.0107821
-0.00066801
0.0107784
-0.000632546
0.0107743
-0.000596707
0.01077
-0.000560543
0.0107654
-0.000524097
0.0107608
-0.000487408
0.0107562
-0.00045051
0.0107517
-0.000413433
0.0107473
-0.000376204
0.0107432
-0.000338847
0.0107393
-0.000301385
0.0107357
-0.000263837
0.0107325
-0.000226222
0.0107297
-0.000188557
0.0107273
-0.000150857
0.0107254
-0.000113137
0.0107239
-7.54118e-05
0.0107229
-3.7693e-05
0.0107223
0.0107224
-0.000986276
0.0102264
-0.00101055
0.0103291
-0.00102668
0.0104216
-0.00103467
0.0104961
-0.00103614
0.0105553
-0.0010321
0.0106038
-0.00102339
0.0106423
-0.00101078
0.0106732
-0.000994877
0.0106975
-0.000976178
0.0107166
-0.000955097
0.0107312
-0.000931979
0.0107422
-0.000907111
0.01075
-0.000880734
0.0107554
-0.000853052
0.0107586
-0.000824239
0.01076
-0.000794443
0.0107599
-0.00076379
0.0107586
-0.00073239
0.0107563
-0.000700338
0.0107532
-0.000667718
0.0107495
-0.0006346
0.0107453
-0.000601048
0.0107408
-0.000567116
0.010736
-0.000532855
0.0107311
-0.000498305
0.0107262
-0.000463506
0.0107214
-0.00042849
0.0107166
-0.000393289
0.0107121
-0.000357929
0.0107078
-0.000322433
0.0107038
-0.000286825
0.0107001
-0.000251123
0.0106968
-0.000215347
0.0106939
-0.000179513
0.0106915
-0.000143636
0.0106895
-0.000107733
0.010688
-7.18165e-05
0.0106869
-3.58995e-05
0.0106864
0.0106865
-0.000916775
0.0102653
-0.000942033
0.0103544
-0.000959326
0.0104389
-0.000968499
0.0105053
-0.000971281
0.0105581
-0.000968642
0.0106012
-0.000961449
0.0106352
-0.00095045
0.0106622
-0.00093623
0.0106833
-0.000919279
0.0106996
-0.000899997
0.0107119
-0.000878718
0.0107209
-0.000855722
0.0107271
-0.000831241
0.0107309
-0.000805475
0.0107328
-0.00077859
0.0107331
-0.000750732
0.010732
-0.000722023
0.0107299
-0.00069257
0.0107269
-0.000662468
0.0107231
-0.000631795
0.0107188
-0.000600622
0.0107141
-0.000569012
0.0107092
-0.000537019
0.010704
-0.00050469
0.0106988
-0.000472067
0.0106936
-0.000439188
0.0106885
-0.000406086
0.0106835
-0.000372791
0.0106788
-0.000339331
0.0106743
-0.000305727
0.0106702
-0.000272004
0.0106664
-0.00023818
0.010663
-0.000204275
0.01066
-0.000170304
0.0106575
-0.000136283
0.0106555
-0.000102228
0.0106539
-6.81543e-05
0.0106529
-3.40724e-05
0.0106523
0.0106524
-0.000846016
0.0103048
-0.000872307
0.0103807
-0.000890723
0.0104573
-0.00090109
0.0105156
-0.000905221
0.0105622
-0.000904043
0.0106
-0.000898419
0.0106295
-0.000889079
0.0106528
-0.000876592
0.0106708
-0.000861434
0.0106845
-0.000843992
0.0106945
-0.000824592
0.0107015
-0.000803504
0.010706
-0.000780954
0.0107084
-0.000757136
0.010709
-0.000732212
0.0107082
-0.000706323
0.0107062
-0.000679589
0.0107032
-0.000652115
0.0106994
-0.000623991
0.010695
-0.000595295
0.0106901
-0.000566098
0.0106849
-0.000536459
0.0106795
-0.000506433
0.010674
-0.000476065
0.0106684
-0.000445399
0.0106629
-0.000414469
0.0106576
-0.000383311
0.0106524
-0.000351952
0.0106474
-0.000320421
0.0106428
-0.00028874
0.0106385
-0.000256932
0.0106346
-0.000225017
0.0106311
-0.000193012
0.010628
-0.000160935
0.0106254
-0.000128802
0.0106233
-9.66281e-05
0.0106217
-6.44278e-05
0.0106207
-3.2213e-05
0.0106201
0.0106202
-0.000774047
0.0103451
-0.000801452
0.0104081
-0.000820987
0.0104769
-0.000832576
0.0105272
-0.000838086
0.0105678
-0.000838403
0.0106003
-0.000834387
0.0106255
-0.000826745
0.0106452
-0.000816029
0.0106601
-0.000802699
0.0106711
-0.000787133
0.0106789
-0.000769645
0.010684
-0.000750497
0.0106868
-0.000729911
0.0106878
-0.000708072
0.0106871
-0.000685138
0.0106852
-0.000661248
0.0106823
-0.000636518
0.0106784
-0.00061105
0.0106739
-0.000584932
0.0106689
-0.000558242
0.0106635
-0.000531048
0.0106578
-0.000503409
0.0106519
-0.000475377
0.010646
-0.000447
0.0106401
-0.000418317
0.0106343
-0.000389366
0.0106286
-0.000360179
0.0106232
-0.000330785
0.010618
-0.000301212
0.0106132
-0.000271483
0.0106088
-0.000241619
0.0106047
-0.000211641
0.0106011
-0.000181567
0.0105979
-0.000151414
0.0105953
-0.000121199
0.0105931
-9.0935e-05
0.0105915
-6.0639e-05
0.0105904
-3.03225e-05
0.0105898
0.0105898
-0.000700902
0.0103861
-0.000729479
0.0104366
-0.000750144
0.0104975
-0.000763001
0.0105401
-0.000769927
0.0105747
-0.000771778
0.0106022
-0.000769407
0.0106231
-0.000763499
0.0106393
-0.000754587
0.0106512
-0.00074312
0.0106597
-0.000729461
0.0106653
-0.000713916
0.0106684
-0.000696739
0.0106696
-0.000678145
0.0106692
-0.000658313
0.0106673
-0.000637399
0.0106643
-0.000615535
0.0106604
-0.000592836
0.0106557
-0.000569401
0.0106505
-0.000545317
0.0106448
-0.00052066
0.0106388
-0.000495495
0.0106326
-0.000469882
0.0106263
-0.000443872
0.01062
-0.000417511
0.0106137
-0.000390839
0.0106076
-0.000363893
0.0106017
-0.000336705
0.010596
-0.000309303
0.0105906
-0.000281715
0.0105856
-0.000253965
0.010581
-0.000226074
0.0105768
-0.000198061
0.0105731
-0.000169946
0.0105698
-0.000141746
0.0105671
-0.000113477
0.0105648
-8.51529e-05
0.0105632
-5.67904e-05
0.010562
-2.84017e-05
0.0105614
0.0105614
-0.000626631
0.010428
-0.000656409
0.0104664
-0.000678211
0.0105193
-0.000692388
0.0105543
-0.000700772
0.0105831
-0.000704199
0.0106056
-0.000703511
0.0106225
-0.000699373
0.0106352
-0.000692302
0.0106441
-0.00068273
0.0106501
-0.000671011
0.0106535
-0.000657438
0.0106549
-0.000642262
0.0106545
-0.000625688
0.0106526
-0.000607891
0.0106495
-0.000589023
0.0106455
-0.000569212
0.0106406
-0.00054857
0.0106351
-0.000527194
0.0106291
-0.00050517
0.0106228
-0.00048257
0.0106162
-0.000459461
0.0106095
-0.000435899
0.0106027
-0.000411937
0.010596
-0.000387618
0.0105894
-0.000362982
0.010583
-0.000338067
0.0105768
-0.000312903
0.0105708
-0.00028752
0.0105653
-0.000261944
0.0105601
-0.000236199
0.0105553
-0.000210306
0.0105509
-0.000184286
0.0105471
-0.000158157
0.0105437
-0.000131937
0.0105409
-0.000105641
0.0105385
-7.92852e-05
0.0105368
-5.28848e-05
0.0105356
-2.64522e-05
0.010535
0.010535
-0.000551289
0.0104707
-0.000582288
0.0104974
-0.000605234
0.0105423
-0.000620775
0.0105698
-0.000630654
0.0105929
-0.000635699
0.0106106
-0.000636734
0.0106235
-0.000634404
0.0106328
-0.000629208
0.0106389
-0.000621564
0.0106424
-0.000611814
0.0106438
-0.000600244
0.0106433
-0.000587096
0.0106413
-0.00057257
0.0106381
-0.000556835
0.0106338
-0.000540039
0.0106287
-0.000522306
0.0106229
-0.000503746
0.0106165
-0.000484455
0.0106098
-0.000464514
0.0106028
-0.000443997
0.0105957
-0.000422967
0.0105884
-0.000401481
0.0105812
-0.000379591
0.0105741
-0.000357338
0.0105671
-0.000334764
0.0105604
-0.000311903
0.0105539
-0.000288789
0.0105477
-0.000265449
0.0105419
-0.000241909
0.0105365
-0.000218195
0.0105316
-0.000194326
0.0105271
-0.000170325
0.0105231
-0.000146208
0.0105196
-0.000121993
0.0105166
-9.76977e-05
0.0105143
-7.33361e-05
0.0105124
-4.89242e-05
0.0105112
-2.44751e-05
0.0105105
0.0105105
-0.000474929
0.0105143
-0.000507164
0.0105297
-0.000531263
0.0105664
-0.000548211
0.0105867
-0.00055962
0.0106044
-0.000566323
0.0106173
-0.000569116
0.0106263
-0.00056863
0.0106323
-0.000565342
0.0106356
-0.000559657
0.0106368
-0.000551907
0.010636
-0.000542368
0.0106338
-0.000531276
0.0106302
-0.000518824
0.0106256
-0.000505176
0.0106201
-0.000490476
0.010614
-0.000474846
0.0106072
-0.000458393
0.0106001
-0.000441209
0.0105926
-0.000423375
0.010585
-0.000404964
0.0105773
-0.000386037
0.0105695
-0.00036665
0.0105618
-0.000346854
0.0105543
-0.000326691
0.010547
-0.000306201
0.0105399
-0.00028542
0.0105331
-0.000264377
0.0105267
-0.000243104
0.0105206
-0.000221625
0.010515
-0.000199965
0.0105099
-0.000178145
0.0105052
-0.000156185
0.0105011
-0.000134105
0.0104975
-0.000111921
0.0104945
-8.96509e-05
0.010492
-6.7309e-05
0.0104901
-4.49116e-05
0.0104888
-2.24717e-05
0.0104881
0.010488
-0.000397606
0.0105588
-0.000431087
0.0105631
-0.000456354
0.0105917
-0.000474748
0.0106051
-0.000487719
0.0106173
-0.000496117
0.0106257
-0.000500701
0.0106309
-0.000502094
0.0106337
-0.000500744
0.0106343
-0.000497049
0.0106331
-0.000491326
0.0106303
-0.000483845
0.0106263
-0.000474835
0.0106212
-0.000464482
0.0106153
-0.000452946
0.0106086
-0.000440366
0.0106014
-0.000426862
0.0105937
-0.000412537
0.0105858
-0.000397484
0.0105776
-0.00038178
0.0105693
-0.000365495
0.010561
-0.000348693
0.0105527
-0.000331427
0.0105446
-0.000313748
0.0105366
-0.000295697
0.0105289
-0.000277313
0.0105215
-0.000258632
0.0105144
-0.000239684
0.0105077
-0.0002205
0.0105015
-0.000201104
0.0104956
-0.000181521
0.0104903
-0.000161772
0.0104855
-0.000141878
0.0104812
-0.000121857
0.0104775
-0.000101728
0.0104743
-8.15064e-05
0.0104718
-6.12082e-05
0.0104698
-4.08493e-05
0.0104684
-2.04432e-05
0.0104677
0.0104676
-0.000319384
0.0106044
-0.000354104
0.0105979
-0.00038056
0.0106181
-0.000400438
0.010625
-0.000414999
0.0106319
-0.000425127
0.0106359
-0.000431534
0.0106373
-0.000434838
0.010637
-0.000435457
0.0106349
-0.000433779
0.0106314
-0.00043011
0.0106266
-0.000424712
0.0106209
-0.000417808
0.0106143
-0.000409578
0.010607
-0.000400177
0.0105992
-0.000389739
0.0105909
-0.000378383
0.0105824
-0.000366208
0.0105736
-0.000353306
0.0105647
-0.000339752
0.0105557
-0.000325616
0.0105468
-0.000310959
0.0105381
-0.000295835
0.0105295
-0.000280293
0.0105211
-0.000264374
0.010513
-0.000248117
0.0105052
-0.000231557
0.0104979
-0.000214726
0.0104909
-0.000197651
0.0104844
-0.000180359
0.0104784
-0.000162874
0.0104728
-0.000145218
0.0104678
-0.000127411
0.0104634
-0.000109472
0.0104595
-9.14193e-05
0.0104563
-7.32691e-05
0.0104536
-5.50374e-05
0.0104516
-3.67399e-05
0.0104501
-1.83911e-05
0.0104493
0.0104492
-0.000240344
0.0106509
-0.000276271
0.0106338
-0.000303942
0.0106458
-0.000325329
0.0106464
-0.000341511
0.0106481
-0.000353402
0.0106477
-0.000361659
0.0106455
-0.000366906
0.0106423
-0.000369522
0.0106375
-0.000369887
0.0106318
-0.000368298
0.0106251
-0.000365005
0.0106176
-0.000360232
0.0106095
-0.000354147
0.0106009
-0.000346902
0.010592
-0.000338628
0.0105827
-0.000329439
0.0105732
-0.000319435
0.0105636
-0.000308703
0.0105539
-0.000297319
0.0105444
-0.000285351
0.0105349
-0.000272859
0.0105256
-0.000259896
0.0105165
-0.00024651
0.0105077
-0.000232743
0.0104992
-0.000218633
0.0104911
-0.000204213
0.0104835
-0.000189517
0.0104762
-0.000174571
0.0104694
-0.000159404
0.0104632
-0.000144037
0.0104575
-0.000128494
0.0104523
-0.000112794
0.0104477
-9.69579e-05
0.0104437
-8.10022e-05
0.0104403
-6.49445e-05
0.0104376
-4.88005e-05
0.0104354
-3.25865e-05
0.0104339
-1.63165e-05
0.0104331
0.0104329
-0.000160611
0.0106985
-0.000197643
0.0106708
-0.000226577
0.0106747
-0.000249475
0.0106693
-0.000267312
0.0106659
-0.000280991
0.0106614
-0.000291124
0.0106557
-0.000298344
0.0106495
-0.000302981
0.0106422
-0.000305414
0.0106342
-0.000305928
0.0106256
-0.000304763
0.0106164
-0.000302142
0.0106069
-0.000298223
0.010597
-0.000293154
0.0105869
-0.000287062
0.0105766
-0.000280061
0.0105662
-0.000272246
0.0105558
-0.000263704
0.0105454
-0.000254509
0.0105352
-0.000244727
0.0105251
-0.000234417
0.0105153
-0.000223632
0.0105057
-0.000212421
0.0104965
-0.000200824
0.0104876
-0.000188878
0.0104792
-0.000176617
0.0104712
-0.000164074
0.0104637
-0.000151277
0.0104566
-0.000138251
0.0104502
-0.000125022
0.0104442
-0.00011161
0.0104389
-9.80377e-05
0.0104341
-8.43227e-05
0.01043
-7.04838e-05
0.0104265
-5.65382e-05
0.0104236
-4.2502e-05
0.0104214
-2.83915e-05
0.0104198
-1.42211e-05
0.0104189
0.0104187
-8.04294e-05
0.0107467
-0.000118308
0.0107087
-0.000148573
0.010705
-0.000172938
0.0106937
-0.000192468
0.0106854
-0.000207947
0.0106769
-0.00021998
0.0106677
-0.0002292
0.0106587
-0.000235881
0.0106488
-0.000240404
0.0106387
-0.000243042
0.0106282
-0.000244024
0.0106174
-0.000243576
0.0106065
-0.000241843
0.0105953
-0.000238968
0.010584
-0.000235078
0.0105727
-0.000230281
0.0105614
-0.000224673
0.0105502
-0.000218337
0.0105391
-0.000211347
0.0105282
-0.000203768
0.0105175
-0.000195657
0.0105071
-0.000187067
0.0104971
-0.000178049
0.0104875
-0.000168637
0.0104782
-0.000158872
0.0104694
-0.000148788
0.0104611
-0.000138415
0.0104533
-0.000127782
0.010446
-0.000116916
0.0104393
-0.000105841
0.0104332
-9.45789e-05
0.0104276
-8.31501e-05
0.0104227
-7.15748e-05
0.0104184
-5.98707e-05
0.0104148
-4.80558e-05
0.0104118
-3.61459e-05
0.0104095
-2.41576e-05
0.0104078
-1.21061e-05
0.0104069
0.0104066
-1.8102e-06
0.0107994
-3.85042e-05
0.0107454
-7.01774e-05
0.0107367
-9.58131e-05
0.0107193
-0.000117083
0.0107067
-0.00013434
0.0106942
-0.000148291
0.0106816
-0.00015953
0.01067
-0.000168272
0.0106576
-0.000174904
0.0106453
-0.000179685
0.010633
-0.000182829
0.0106205
-0.000184573
0.0106082
-0.000185043
0.0105958
-0.00018438
0.0105833
-0.000182706
0.010571
-0.00018013
0.0105588
-0.000176745
0.0105468
-0.000172631
0.010535
-0.000167862
0.0105234
-0.000162501
0.0105122
-0.000156605
0.0105013
-0.000150225
0.0104907
-0.000143414
0.0104807
-0.000136205
0.010471
-0.000128636
0.0104619
-0.000120742
0.0104532
-0.000112555
0.0104451
-0.000104103
0.0104376
-9.54124e-05
0.0104306
-8.65073e-05
0.0104243
-7.74102e-05
0.0104185
-6.81421e-05
0.0104134
-5.87226e-05
0.010409
-4.91701e-05
0.0104052
-3.95025e-05
0.0104021
-2.97362e-05
0.0103997
-1.9888e-05
0.010398
-9.97283e-06
0.0103969
0.0103966
8.43619e-05
0.0108499
4.30779e-05
0.0107867
8.07755e-06
0.0107717
-1.84971e-05
0.0107459
-4.14218e-05
0.0107296
-6.03034e-05
0.010713
-7.61741e-05
0.0106975
-8.94139e-05
0.0106832
-0.000100224
0.0106684
-0.000108972
0.0106541
-0.000115907
0.0106399
-0.000121225
0.0106259
-0.000125177
0.0106122
-0.000127866
0.0105985
-0.000129427
0.0105849
-0.000129985
0.0105716
-0.000129644
0.0105585
-0.000128495
0.0105456
-0.000126618
0.0105331
-0.000124083
0.0105209
-0.000120954
0.010509
-0.000117286
0.0104976
-0.000113131
0.0104866
-0.000108541
0.0104761
-0.000103546
0.010466
-9.81879e-05
0.0104565
-9.24994e-05
0.0104475
-8.65122e-05
0.0104391
-8.02549e-05
0.0104313
-7.37538e-05
0.0104241
-6.70334e-05
0.0104175
-6.01163e-05
0.0104116
-5.30235e-05
0.0104063
-4.57748e-05
0.0104017
-3.83892e-05
0.0103978
-3.08846e-05
0.0103946
-2.32776e-05
0.0103921
-1.55853e-05
0.0103903
-7.823e-06
0.0103892
0.0103888
0.000168324
0.0109009
0.000125839
0.0108292
9.05459e-05
0.0108069
6.10017e-05
0.0107754
3.54917e-05
0.0107551
1.41063e-05
0.0107344
-4.3086e-06
0.0107159
-1.9126e-05
0.010698
-3.19178e-05
0.0106812
-4.27311e-05
0.0106649
-5.1801e-05
0.010649
-5.92896e-05
0.0106334
-6.54516e-05
0.0106183
-7.03635e-05
0.0106034
-7.41583e-05
0.0105887
-7.69572e-05
0.0105744
-7.88617e-05
0.0105604
-7.99601e-05
0.0105467
-8.03305e-05
0.0105334
-8.00422e-05
0.0105206
-7.91568e-05
0.0105081
-7.77284e-05
0.0104962
-7.58084e-05
0.0104847
-7.34535e-05
0.0104737
-7.0686e-05
0.0104633
-6.755e-05
0.0104534
-6.40788e-05
0.0104441
-6.03039e-05
0.0104353
-5.62538e-05
0.0104273
-5.19554e-05
0.0104198
-4.74326e-05
0.010413
-4.27085e-05
0.0104069
-3.78043e-05
0.0104014
-3.27403e-05
0.0103967
-2.75353e-05
0.0103926
-2.22077e-05
0.0103893
-1.67743e-05
0.0103867
-1.12525e-05
0.0103848
-5.65814e-06
0.0103836
0.0103831
0.000252428
0.0109527
0.000208567
0.010873
0.000171952
0.0108436
0.000140668
0.0108067
0.000113567
0.0107822
9.03316e-05
0.0107577
7.01148e-05
0.0107362
5.25328e-05
0.0107156
3.7269e-05
0.0106965
2.40482e-05
0.0106781
1.25741e-05
0.0106605
2.57486e-06
0.0106434
-5.69066e-06
0.0106266
-1.27155e-05
0.0106104
-1.86966e-05
0.0105947
-2.37148e-05
0.0105794
-2.78557e-05
0.0105645
-3.11996e-05
0.0105501
-3.382e-05
0.0105361
-3.57828e-05
0.0105225
-3.71479e-05
0.0105095
-3.79668e-05
0.010497
-3.82908e-05
0.010485
-3.81799e-05
0.0104736
-3.76493e-05
0.0104627
-3.67456e-05
0.0104525
-3.5502e-05
0.0104428
-3.395e-05
0.0104338
-3.21183e-05
0.0104254
-3.00331e-05
0.0104177
-2.77193e-05
0.0104107
-2.51997e-05
0.0104044
-2.24959e-05
0.0103987
-1.96285e-05
0.0103938
-1.66163e-05
0.0103896
-1.34781e-05
0.0103862
-1.02313e-05
0.0103834
-6.89283e-06
0.0103814
-3.48016e-06
0.0103802
0.0103796
0.000336904
0.0110053
0.000291565
0.0109184
0.000253503
0.0108816
0.000220439
0.0108398
0.000191539
0.0108111
0.000166299
0.0107829
0.000144029
0.0107584
0.00012437
0.0107353
0.000106971
0.0107139
9.15867e-05
0.0106935
7.79638e-05
0.0106741
6.59085e-05
0.0106554
5.51913e-05
0.0106373
4.57087e-05
0.0106199
3.7344e-05
0.0106031
2.9977e-05
0.0105868
2.35066e-05
0.010571
1.78453e-05
0.0105557
1.2916e-05
0.010541
8.64919e-06
0.0105268
4.98136e-06
0.0105132
1.84943e-06
0.0105001
-7.62022e-07
0.0104876
-2.82949e-06
0.0104757
-4.51615e-06
0.0104644
-5.83588e-06
0.0104538
-6.81789e-06
0.0104438
-7.49047e-06
0.0104345
-7.88102e-06
0.0104258
-8.01512e-06
0.0104179
-7.91704e-06
0.0104106
-7.60987e-06
0.0104041
-7.11511e-06
0.0103982
-6.4532e-06
0.0103932
-5.64365e-06
0.0103888
-4.70487e-06
0.0103852
-3.65557e-06
0.0103824
-2.51014e-06
0.0103803
-1.29259e-06
0.010379
0.0103783
0.000421743
0.0110587
0.000374924
0.0109652
0.000335343
0.0109212
0.000300465
0.0108746
0.000269713
0.0108419
0.000242451
0.0108102
0.000218103
0.0107828
0.000196312
0.0107571
0.000176736
0.0107334
0.000159135
0.0107111
0.000143271
0.01069
0.000128944
0.0106697
0.000115969
0.0106503
0.000104214
0.0106316
9.35663e-05
0.0106137
8.39151e-05
0.0105964
7.51613e-05
0.0105797
6.72196e-05
0.0105637
6.00145e-05
0.0105482
5.34791e-05
0.0105333
4.75542e-05
0.0105191
4.21874e-05
0.0105055
3.73247e-05
0.0104925
3.29133e-05
0.0104801
2.89285e-05
0.0104684
2.53303e-05
0.0104574
2.20831e-05
0.010447
1.91551e-05
0.0104374
1.65174e-05
0.0104285
1.4143e-05
0.0104202
1.20067e-05
0.0104127
1.0085e-05
0.010406
8.35585e-06
0.0104
6.79817e-06
0.0103947
5.39201e-06
0.0103902
4.1186e-06
0.0103865
2.95861e-06
0.0103835
1.89782e-06
0.0103814
9.10533e-07
0.0103799
0.0103792
0.000506926
0.0111131
0.000458644
0.0110135
0.000417474
0.0109624
0.000380773
0.0109113
0.000348136
0.0108745
0.000318836
0.0108395
0.0002924
0.0108092
0.00026845
0.010781
0.000246684
0.0107552
0.000226854
0.0107309
0.000208735
0.0107081
0.000192133
0.0106863
0.00017688
0.0106655
0.00016284
0.0106457
0.0001499
0.0106266
0.000137953
0.0106084
0.000126902
0.0105908
0.000116666
0.0105739
0.000107168
0.0105577
9.83436e-05
0.0105422
9.01335e-05
0.0105273
8.24844e-05
0.0105131
7.53436e-05
0.0104996
6.86657e-05
0.0104868
6.24146e-05
0.0104746
5.65553e-05
0.0104632
5.10522e-05
0.0104525
4.58734e-05
0.0104426
4.09897e-05
0.0104333
3.63739e-05
0.0104248
3.20006e-05
0.0104171
2.7846e-05
0.0104101
2.38875e-05
0.0104039
2.0104e-05
0.0103985
1.64752e-05
0.0103938
1.29816e-05
0.01039
9.60432e-06
0.0103869
6.32673e-06
0.0103846
3.1287e-06
0.0103831
0.0103824
0.000592438
0.0111683
0.000542688
0.0110632
0.000499874
0.0110052
0.000461344
0.0109499
0.000426792
0.0109091
0.000395444
0.0108708
0.000366903
0.0108377
0.000340783
0.0108071
0.000316813
0.0107792
0.000294743
0.010753
0.000274361
0.0107285
0.000255481
0.0107052
0.000237939
0.0106831
0.000221604
0.010662
0.000206365
0.0106419
0.000192116
0.0106226
0.000178764
0.0106041
0.000166227
0.0105864
0.000154432
0.0105695
0.000143313
0.0105533
0.000132812
0.0105378
0.000122877
0.0105231
0.000113455
0.010509
0.000104502
0.0104957
9.5981e-05
0.0104832
8.78561e-05
0.0104714
8.00923e-05
0.0104603
7.26579e-05
0.01045
6.55232e-05
0.0104405
5.86608e-05
0.0104317
5.20454e-05
0.0104237
4.56525e-05
0.0104165
3.94595e-05
0.0104101
3.34446e-05
0.0104045
2.75874e-05
0.0103997
2.18679e-05
0.0103957
1.6267e-05
0.0103925
1.07674e-05
0.0103901
5.34934e-06
0.0103886
0.0103877
0.000678251
0.0112245
0.000627017
0.0111144
0.000582515
0.0110497
0.000542139
0.0109903
0.000505647
0.0109456
0.000472239
0.0109042
0.000441578
0.0108684
0.00041328
0.0108354
0.000387093
0.0108053
0.000362775
0.0107773
0.000340122
0.0107511
0.000318957
0.0107264
0.000299119
0.0107029
0.000280483
0.0106806
0.00026294
0.0106594
0.000246384
0.0106392
0.000230726
0.0106198
0.000215884
0.0106013
0.000201787
0.0105836
0.000188369
0.0105667
0.000175574
0.0105506
0.000163348
0.0105353
0.000151642
0.0105207
0.00014041
0.010507
0.000129615
0.010494
0.000119221
0.0104818
0.000109193
0.0104703
9.94992e-05
0.0104597
9.01098e-05
0.0104499
8.09972e-05
0.0104408
7.21355e-05
0.0104326
6.35001e-05
0.0104252
5.50681e-05
0.0104186
4.68174e-05
0.0104128
3.87269e-05
0.0104078
3.07765e-05
0.0104037
2.29467e-05
0.0104003
1.52196e-05
0.0103979
7.57546e-06
0.0103962
0.0103953
0.000764322
0.0112816
0.000711601
0.0111672
0.000665361
0.0110959
0.000623122
0.0110325
0.000584663
0.010984
0.000549183
0.0109397
0.000516387
0.0109012
0.000485901
0.0108659
0.000457488
0.0108338
0.000430913
0.0108039
0.000405982
0.010776
0.000382525
0.0107498
0.000360387
0.0107251
0.000339445
0.0107016
0.000319592
0.0106793
0.000300726
0.010658
0.000282757
0.0106378
0.000265607
0.0106184
0.000249205
0.0106
0.000233486
0.0105824
0.000218394
0.0105657
0.000203876
0.0105498
0.000189883
0.0105347
0.000176369
0.0105205
0.000163298
0.010507
0.000150632
0.0104944
0.000138337
0.0104826
0.000126382
0.0104717
0.000114735
0.0104615
0.000103369
0.0104522
9.22585e-05
0.0104437
8.13779e-05
0.010436
7.07038e-05
0.0104292
6.02139e-05
0.0104233
4.98868e-05
0.0104181
3.9702e-05
0.0104138
2.96395e-05
0.0104104
1.96806e-05
0.0104078
9.80592e-06
0.0104061
0.0104051
0.000850608
0.0113396
0.000796417
0.0112213
0.00074838
0.011144
0.000704265
0.0110766
0.000663807
0.0110245
0.000626247
0.0109773
0.0005913
0.0109361
0.000558616
0.0108986
0.000527966
0.0108644
0.000499126
0.0108327
0.00047191
0.0108033
0.000446154
0.0107756
0.00042171
0.0107495
0.000398459
0.0107248
0.000376292
0.0107014
0.000355111
0.0106792
0.000334829
0.010658
0.000315369
0.0106379
0.00029666
0.0106187
0.000278638
0.0106004
0.000261247
0.0105831
0.000244435
0.0105666
0.000228153
0.010551
0.000212356
0.0105363
0.000197008
0.0105224
0.000182069
0.0105094
0.000167507
0.0104972
0.000153288
0.0104859
0.000139383
0.0104754
0.000125763
0.0104658
0.000112402
0.0104571
9.92744e-05
0.0104492
8.63567e-05
0.0104421
7.3626e-05
0.010436
6.10603e-05
0.0104307
4.86388e-05
0.0104263
3.6341e-05
0.0104227
2.41481e-05
0.01042
1.20396e-05
0.0104182
0.0104171
0.000937081
0.0113985
0.000881404
0.011277
0.000831538
0.0111938
0.000785513
0.0111226
0.000743037
0.011067
0.00070338
0.0110169
0.000666269
0.0109733
0.000631375
0.0109335
0.000598479
0.0108973
0.000567367
0.0108639
0.000537861
0.0108328
0.000509802
0.0108037
0.000483049
0.0107763
0.000457484
0.0107504
0.000433001
0.0107259
0.000409504
0.0107027
0.000386908
0.0106806
0.000365136
0.0106597
0.000344119
0.0106397
0.000323793
0.0106208
0.000304104
0.0106028
0.000284998
0.0105857
0.000266428
0.0105696
0.000248349
0.0105543
0.000230722
0.01054
0.000213511
0.0105266
0.000196682
0.010514
0.0001802
0.0105024
0.000164037
0.0104916
0.000148163
0.0104817
0.000132551
0.0104727
0.000117177
0.0104645
0.000102016
0.0104573
8.70439e-05
0.010451
7.22393e-05
0.0104455
5.75805e-05
0.0104409
4.30467e-05
0.0104372
2.86185e-05
0.0104344
1.4275e-05
0.0104325
0.0104314
0.00102367
0.0114582
0.000966501
0.0113342
0.000914774
0.0112456
0.000866809
0.0111706
0.000822295
0.0111115
0.000780526
0.0110587
0.000741241
0.0110125
0.000704128
0.0109706
0.00066898
0.0109325
0.000635591
0.0108972
0.00060379
0.0108646
0.000573426
0.010834
0.000544361
0.0108053
0.00051648
0.0107783
0.00048968
0.0107527
0.000463867
0.0107285
0.000438957
0.0107055
0.000414874
0.0106837
0.000391549
0.010663
0.000368922
0.0106434
0.000346935
0.0106248
0.000325537
0.0106071
0.00030468
0.0105904
0.00028432
0.0105747
0.000264418
0.0105599
0.000244937
0.0105461
0.000225841
0.0105331
0.000207099
0.0105211
0.000188679
0.01051
0.000170553
0.0104998
0.000152693
0.0104905
0.000135074
0.0104822
0.00011767
0.0104747
0.000100459
0.0104682
8.34162e-05
0.0104625
6.65211e-05
0.0104578
4.97518e-05
0.010454
3.30889e-05
0.0104511
1.65106e-05
0.0104491
0.0104479
0.00111031
0.0115188
0.00105164
0.0113929
0.000998029
0.0112992
0.000948097
0.0112205
0.000901524
0.0111581
0.000857631
0.0111026
0.000816163
0.011054
0.000776826
0.0110099
0.00073942
0.0109699
0.00070375
0.0109329
0.000669652
0.0108987
0.000636981
0.0108667
0.000605604
0.0108367
0.000575408
0.0108085
0.000546292
0.0107818
0.000518164
0.0107566
0.000490941
0.0107328
0.000464549
0.0107101
0.00043892
0.0106887
0.000413993
0.0106683
0.000389711
0.010649
0.000366024
0.0106308
0.000342884
0.0106136
0.000320246
0.0105973
0.000298072
0.0105821
0.000276323
0.0105678
0.000254966
0.0105545
0.000233966
0.0105421
0.000213294
0.0105307
0.000192919
0.0105202
0.000172814
0.0105106
0.000152952
0.010502
0.000133309
0.0104944
0.000113861
0.0104876
9.45829e-05
0.0104818
7.5454e-05
0.0104769
5.64518e-05
0.010473
3.75561e-05
0.01047
1.87448e-05
0.0104679
0.0104667
0.00119693
0.0115802
0.00113677
0.011453
0.00108125
0.0113547
0.00102932
0.0112725
0.000980671
0.0112067
0.000934643
0.0111486
0.000890985
0.0110977
0.000849417
0.0110515
0.00080975
0.0110095
0.000771798
0.0109709
0.000735403
0.0109351
0.000700426
0.0109017
0.000666737
0.0108704
0.000634227
0.010841
0.000602797
0.0108133
0.000572357
0.0107871
0.000542825
0.0107623
0.000514127
0.0107388
0.000486198
0.0107166
0.000458975
0.0106955
0.000432403
0.0106756
0.000406432
0.0106568
0.000381012
0.010639
0.000356102
0.0106223
0.00033166
0.0106065
0.00030765
0.0105918
0.000284035
0.0105781
0.000260783
0.0105653
0.000237862
0.0105536
0.000215243
0.0105428
0.000192898
0.010533
0.000170799
0.0105241
0.000148921
0.0105162
0.00012724
0.0105093
0.000105732
0.0105033
8.4373e-05
0.0104983
6.31417e-05
0.0104942
4.2017e-05
0.0104911
2.0976e-05
0.010489
0.0104877
0.00128346
0.0116425
0.00122182
0.0115147
0.00116437
0.0114122
0.00111042
0.0113264
0.00105968
0.0112574
0.00101151
0.0111968
0.000965654
0.0111435
0.000921853
0.0110953
0.000879924
0.0110515
0.000839689
0.0110111
0.000800998
0.0109737
0.000763715
0.010939
0.000727718
0.0109064
0.000692898
0.0108758
0.000659158
0.010847
0.000626409
0.0108198
0.000594573
0.0107941
0.000563575
0.0107698
0.00053335
0.0107468
0.000503837
0.0107251
0.000474981
0.0107045
0.000446732
0.010685
0.00041904
0.0106667
0.000391863
0.0106494
0.00036516
0.0106332
0.000338894
0.0106181
0.000313029
0.010604
0.000287531
0.0105908
0.000262368
0.0105788
0.000237512
0.0105677
0.000212932
0.0105576
0.000188602
0.0105485
0.000164496
0.0105403
0.000140588
0.0105332
0.000116855
0.0105271
9.3272e-05
0.0105219
6.98169e-05
0.0105177
4.64682e-05
0.0105145
2.32025e-05
0.0105122
0.0105109
0.00136983
0.0117055
0.00130673
0.0115778
0.00124734
0.0114715
0.00119135
0.0113824
0.0011385
0.0113103
0.00108817
0.0112471
0.00104012
0.0111916
0.000994082
0.0111413
0.000949891
0.0110957
0.000907375
0.0110536
0.000866391
0.0110147
0.000826807
0.0109785
0.000788505
0.0109447
0.000751379
0.0109129
0.000715335
0.0108831
0.000680284
0.0108549
0.000646149
0.0108283
0.000612858
0.0108031
0.000580345
0.0107793
0.000548549
0.0107569
0.000517417
0.0107356
0.000486896
0.0107155
0.00045694
0.0106966
0.000427504
0.0106789
0.000398548
0.0106622
0.000370034
0.0106466
0.000341926
0.0106321
0.00031419
0.0106186
0.000286795
0.0106061
0.000259708
0.0105947
0.000232903
0.0105844
0.00020635
0.010575
0.000180022
0.0105667
0.000153896
0.0105593
0.000127944
0.010553
0.000102145
0.0105477
7.64726e-05
0.0105434
5.09067e-05
0.01054
2.54228e-05
0.0105377
0.0105363
0.00145598
0.0117694
0.00139143
0.0116423
0.00133011
0.0115329
0.00127204
0.0114405
0.00121707
0.0113653
0.00116458
0.0112996
0.00111433
0.0112418
0.00106606
0.0111896
0.0010196
0.0111421
0.000974811
0.0110984
0.000931537
0.011058
0.000889658
0.0110204
0.000849057
0.0109853
0.000809632
0.0109524
0.000771289
0.0109214
0.000733944
0.0108922
0.000697519
0.0108647
0.000661942
0.0108387
0.000627149
0.0108141
0.000593079
0.0107909
0.000559679
0.010769
0.000526897
0.0107483
0.000494685
0.0107289
0.000463
0.0107105
0.0004318
0.0106934
0.000401048
0.0106773
0.000370707
0.0106624
0.000340743
0.0106485
0.000311124
0.0106358
0.000281817
0.010624
0.000252795
0.0106134
0.000224028
0.0106038
0.000195489
0.0105952
0.000167152
0.0105877
0.000138992
0.0105812
0.000110984
0.0105757
8.31041e-05
0.0105712
5.53294e-05
0.0105678
2.76353e-05
0.0105654
0.0105639
0.00154182
0.0118342
0.00147586
0.0117083
0.0014126
0.0115961
0.00135245
0.0115006
0.00129534
0.0114224
0.00124068
0.0113542
0.00118823
0.0112943
0.00113772
0.0112401
0.00108902
0.0111908
0.00104195
0.0111455
0.000996392
0.0111036
0.000952224
0.0110646
0.000909331
0.0110282
0.000867614
0.0109941
0.000826983
0.010962
0.000787352
0.0109319
0.000748645
0.0109034
0.000710793
0.0108766
0.00067373
0.0108512
0.000637397
0.0108273
0.000601739
0.0108047
0.000566706
0.0107834
0.00053225
0.0107633
0.000498326
0.0107445
0.000464894
0.0107268
0.000431915
0.0107103
0.000399352
0.010695
0.000367171
0.0106807
0.000335338
0.0106676
0.000303823
0.0106556
0.000272594
0.0106446
0.000241624
0.0106347
0.000210885
0.0106259
0.000180349
0.0106182
0.000149991
0.0106115
0.000119785
0.0106059
8.97067e-05
0.0106013
5.97329e-05
0.0105978
2.98386e-05
0.0105953
0.0105938
0.00162729
0.0118998
0.00155995
0.0117756
0.00149477
0.0116613
0.00143252
0.0115629
0.00137326
0.0114817
0.00131643
0.0114111
0.00126177
0.011349
0.00120903
0.0112928
0.00115808
0.0112418
0.00110874
0.0111948
0.00106091
0.0111514
0.00101446
0.011111
0.000969286
0.0110734
0.000925287
0.0110381
0.000882377
0.0110049
0.000840471
0.0109738
0.000799494
0.0109444
0.000759377
0.0109167
0.000720056
0.0108905
0.000681471
0.0108658
0.000643568
0.0108426
0.000606296
0.0108206
0.000569607
0.0108
0.000533457
0.0107806
0.000497805
0.0107625
0.000462612
0.0107455
0.00042784
0.0107297
0.000393454
0.0107151
0.000359421
0.0107016
0.000325709
0.0106893
0.000292287
0.010678
0.000259127
0.0106679
0.000226199
0.0106589
0.000193476
0.0106509
0.000160932
0.0106441
0.00012854
0.0106383
9.62755e-05
0.0106336
6.41144e-05
0.0106299
3.20308e-05
0.0106274
0.0106258
0.00171231
0.0119662
0.00164364
0.0118443
0.00157656
0.0117284
0.0015122
0.0116272
0.00145077
0.0115431
0.00139176
0.0114701
0.0013349
0.0114058
0.00127994
0.0113478
0.00122674
0.011295
0.00117515
0.0112464
0.00112505
0.0112015
0.00107633
0.0111598
0.00102888
0.0111208
0.000982611
0.0110843
0.000937432
0.0110501
0.000893263
0.0110179
0.000850028
0.0109876
0.00080766
0.010959
0.000766093
0.0109321
0.00072527
0.0109067
0.000685135
0.0108827
0.000645638
0.0108601
0.000606731
0.0108389
0.000568369
0.010819
0.000530511
0.0108003
0.000493117
0.0107829
0.00045615
0.0107667
0.000419574
0.0107517
0.000383355
0.0107379
0.000347461
0.0107252
0.00031186
0.0107136
0.000276523
0.0107032
0.00024142
0.010694
0.000206524
0.0106858
0.000171807
0.0106788
0.000137243
0.0106729
0.000102806
0.010668
6.84704e-05
0.0106643
3.42103e-05
0.0106616
0.01066
0.00179682
0.0120334
0.00172685
0.0119143
0.00165789
0.0117973
0.00159142
0.0116937
0.00152782
0.0116067
0.00146663
0.0115313
0.00140756
0.0114649
0.00135039
0.011405
0.00129495
0.0113504
0.00124111
0.0113002
0.00118876
0.0112538
0.00113778
0.0112107
0.00108807
0.0111705
0.00103954
0.0111329
0.00099211
0.0110975
0.000945692
0.0110644
0.000900213
0.0110331
0.000855607
0.0110036
0.00081181
0.0109759
0.000768763
0.0109497
0.000726412
0.0109251
0.000684705
0.0109018
0.000643595
0.01088
0.000603036
0.0108595
0.000562988
0.0108404
0.000523409
0.0108225
0.000484263
0.0108058
0.000445512
0.0107904
0.000407123
0.0107762
0.000369062
0.0107632
0.000331298
0.0107514
0.0002938
0.0107407
0.000256538
0.0107312
0.000219484
0.0107229
0.00018261
0.0107157
0.000145889
0.0107096
0.000109293
0.0107046
7.27978e-05
0.0107008
3.63759e-05
0.0106981
0.0106964
0.00188073
0.0121013
0.00180952
0.0119855
0.00173872
0.0118681
0.00167014
0.0117623
0.00160436
0.0116725
0.00154098
0.0115947
0.00147972
0.0115261
0.00142033
0.0114644
0.00136267
0.0114081
0.00130659
0.0113563
0.001252
0.0113084
0.00119877
0.011264
0.00114682
0.0112225
0.00109605
0.0111836
0.00104637
0.0111472
0.00099772
0.011113
0.000950013
0.0110808
0.000903186
0.0110505
0.000857174
0.0110219
0.00081192
0.010995
0.000767368
0.0109696
0.000723469
0.0109457
0.000680172
0.0109233
0.000637435
0.0109023
0.000595213
0.0108826
0.000553467
0.0108642
0.000512158
0.0108472
0.00047125
0.0108313
0.000430708
0.0108168
0.000390497
0.0108034
0.000350587
0.0107913
0.000310945
0.0107804
0.000271541
0.0107706
0.000232347
0.0107621
0.000193332
0.0107547
0.00015447
0.0107484
0.000115733
0.0107434
7.70937e-05
0.0107394
3.85257e-05
0.0107366
0.0107349
0.00196394
0.0121698
0.00189157
0.0120578
0.00181897
0.0119407
0.0017483
0.0118329
0.00168033
0.0117405
0.00161476
0.0116602
0.0015513
0.0115896
0.00148972
0.0115259
0.00142984
0.011468
0.00137154
0.0114146
0.00131472
0.0113653
0.00125926
0.0113194
0.00120507
0.0112766
0.00115208
0.0112366
0.00110018
0.0111991
0.00104931
0.0111639
0.000999393
0.0111307
0.000950361
0.0110995
0.000902153
0.0110701
0.000854709
0.0110424
0.000807976
0.0110163
0.000761901
0.0109918
0.000716437
0.0109688
0.000671539
0.0109472
0.000627162
0.010927
0.000583267
0.0109081
0.000539815
0.0108906
0.000496769
0.0108744
0.000454092
0.0108595
0.000411751
0.0108458
0.000369713
0.0108334
0.000327946
0.0108221
0.000286419
0.0108122
0.000245102
0.0108034
0.000203966
0.0107958
0.000162981
0.0107894
0.000122119
0.0107842
8.13548e-05
0.0107802
4.06583e-05
0.0107773
0.0107756
0.00204637
0.0122385
0.00197292
0.0121313
0.00189858
0.0120151
0.00182584
0.0119057
0.00175568
0.0118106
0.00168792
0.011728
0.00162228
0.0116552
0.0015585
0.0115897
0.00149642
0.01153
0.00143592
0.0114751
0.00137688
0.0114243
0.0013192
0.0113771
0.00126281
0.011333
0.0012076
0.0112918
0.0011535
0.0112532
0.00110043
0.0112169
0.00104832
0.0111828
0.0009971
0.0111507
0.000946714
0.0111205
0.0008971
0.011092
0.000848205
0.0110652
0.000799975
0.01104
0.000752364
0.0110164
0.000705324
0.0109942
0.000658813
0.0109735
0.00061279
0.0109542
0.000567215
0.0109362
0.00052205
0.0109196
0.00047726
0.0109042
0.000432808
0.0108902
0.000388663
0.0108775
0.000344791
0.010866
0.000301161
0.0108558
0.000257741
0.0108468
0.000214502
0.010839
0.000171415
0.0108325
0.000128449
0.0108272
8.55778e-05
0.010823
4.27719e-05
0.0108201
0.0108183
0.00212789
0.0123071
0.0020535
0.0122057
0.00197749
0.0120911
0.00190271
0.0119805
0.00183036
0.011883
0.00176041
0.0117979
0.00169258
0.0117231
0.00162663
0.0116557
0.00156236
0.0115943
0.00149967
0.0115378
0.00143843
0.0114855
0.00137856
0.011437
0.00131997
0.0113916
0.00126257
0.0113492
0.00120628
0.0113095
0.00115103
0.0112722
0.00109675
0.0112371
0.00104337
0.0112041
0.000990826
0.011173
0.000939063
0.0111438
0.000888026
0.0111163
0.000837663
0.0110904
0.000787926
0.0110661
0.000738767
0.0110434
0.000690143
0.0110221
0.000642013
0.0110023
0.000594337
0.0109839
0.000547075
0.0109668
0.000500193
0.0109511
0.000453653
0.0109368
0.000407423
0.0109237
0.000361467
0.010912
0.000315755
0.0109015
0.000270255
0.0108923
0.000224935
0.0108844
0.000179766
0.0108777
0.000134717
0.0108722
8.976e-05
0.010868
4.48652e-05
0.010865
0.0108632
0.00220833
0.0123747
0.0021332
0.0122808
0.00205561
0.0121687
0.00197884
0.0120572
0.00190432
0.0119575
0.00183217
0.0118701
0.00176217
0.0117931
0.00169405
0.0117238
0.00162762
0.0116607
0.00156274
0.0116027
0.00149933
0.011549
0.00143729
0.011499
0.00137652
0.0114524
0.00131695
0.0114088
0.0012585
0.011368
0.00120109
0.0113296
0.00114466
0.0112935
0.00108913
0.0112596
0.00103446
0.0112277
0.000980567
0.0111977
0.000927412
0.0111694
0.000874938
0.0111429
0.000823097
0.011118
0.000771842
0.0110946
0.000721129
0.0110728
0.000670915
0.0110525
0.000621161
0.0110336
0.000571827
0.0110162
0.000522875
0.0110001
0.000474271
0.0109854
0.000425978
0.010972
0.000377963
0.01096
0.000330192
0.0109493
0.000282633
0.0109399
0.000235256
0.0109317
0.000188027
0.0109249
0.000140918
0.0109193
9.38979e-05
0.010915
4.69367e-05
0.010912
0.0109101
0.0022875
0.0124403
0.00221192
0.0123564
0.00213287
0.0122477
0.00205418
0.0121359
0.0019775
0.0120342
0.00190316
0.0119444
0.001831
0.0118652
0.00176072
0.0117941
0.00169213
0.0117293
0.00162511
0.0116697
0.00155954
0.0116145
0.00149534
0.0115632
0.00143242
0.0115153
0.0013707
0.0114705
0.00131011
0.0114286
0.00125056
0.0113891
0.001192
0.0113521
0.00113436
0.0113173
0.00107757
0.0112845
0.00102158
0.0112537
0.000966332
0.0112247
0.000911772
0.0111974
0.000857852
0.0111719
0.000804526
0.011148
0.000751748
0.0111256
0.000699476
0.0111048
0.000647668
0.0110854
0.000596286
0.0110675
0.00054529
0.0110511
0.000494645
0.011036
0.000444315
0.0110223
0.000394265
0.01101
0.00034446
0.0109991
0.000294868
0.0109895
0.000245457
0.0109812
0.000196194
0.0109742
0.000147048
0.0109685
9.79889e-05
0.0109641
4.89847e-05
0.010961
0.0109591
0.0023651
0.0125022
0.00228954
0.012432
0.0022092
0.0123281
0.00212865
0.0122165
0.00204985
0.012113
0.00197333
0.012021
0.00189901
0.0119395
0.00182659
0.0118665
0.00175587
0.0118
0.00168671
0.0117389
0.00161901
0.0116822
0.00155267
0.0116295
0.00148762
0.0115804
0.00142378
0.0115344
0.00136107
0.0114913
0.00129942
0.0114508
0.00123876
0.0114128
0.00117902
0.011377
0.00112015
0.0113434
0.00106208
0.0113117
0.00100476
0.011282
0.000948139
0.0112541
0.000892166
0.0112279
0.000836795
0.0112033
0.000781978
0.0111804
0.000727673
0.0111591
0.000673839
0.0111393
0.000620434
0.0111209
0.000567421
0.0111041
0.000514762
0.0110887
0.000462421
0.0110747
0.000410361
0.0110621
0.000358549
0.0110509
0.00030695
0.0110411
0.000255531
0.0110326
0.00020426
0.0110254
0.000153103
0.0110196
0.00010203
0.0110152
5.10075e-05
0.011012
0.0110101
0.00244075
0.0125579
0.00236588
0.0125068
0.0022845
0.0124094
0.00220221
0.0122988
0.00212131
0.0121939
0.00204263
0.0120996
0.00196616
0.012016
0.00189161
0.0119411
0.00181878
0.0118729
0.00174751
0.0118101
0.00167769
0.011752
0.00160925
0.011698
0.0015421
0.0116475
0.00147616
0.0116003
0.00141135
0.0115561
0.00134762
0.0115145
0.00128488
0.0114755
0.00122307
0.0114388
0.00116214
0.0114043
0.00110202
0.0113719
0.00104266
0.0113414
0.000984011
0.0113127
0.000926014
0.0112859
0.000868624
0.0112607
0.000811796
0.0112372
0.000755487
0.0112154
0.000699653
0.0111951
0.000644255
0.0111763
0.000589252
0.0111591
0.000534607
0.0111433
0.000480282
0.011129
0.000426241
0.0111161
0.000372449
0.0111047
0.00031887
0.0110946
0.000265471
0.011086
0.000212218
0.0110787
0.000159077
0.0110728
0.000106017
0.0110682
5.30041e-05
0.011065
0.0110631
0.00251389
0.0126041
0.00244071
0.01258
0.00235865
0.0124915
0.00227476
0.0123826
0.00219182
0.0122768
0.00211101
0.0121805
0.0020324
0.0120946
0.00195573
0.0120177
0.00188081
0.0119478
0.00180745
0.0118835
0.00173555
0.0118239
0.00166503
0.0117685
0.0015958
0.0117168
0.00152779
0.0116683
0.00146092
0.0116229
0.00139512
0.0115803
0.00133034
0.0115403
0.00126649
0.0115027
0.00120353
0.0114673
0.00114139
0.011434
0.00108002
0.0114027
0.00101936
0.0113734
0.00095937
0.0113459
0.000899991
0.0113201
0.000841181
0.0112961
0.000782896
0.0112737
0.000725093
0.0112529
0.00066773
0.0112337
0.000610766
0.0112161
0.000554164
0.0111999
0.000497885
0.0111853
0.000441892
0.0111721
0.000386149
0.0111604
0.000330619
0.0111502
0.000275269
0.0111413
0.000220063
0.0111339
0.000164967
0.0111279
0.000109949
0.0111232
5.49727e-05
0.01112
0.0111181
0.0025838
0.0126364
0.00251379
0.01265
0.00243158
0.0125737
0.00234626
0.012468
0.00226134
0.0123617
0.00217841
0.0122634
0.00209767
0.0121754
0.00201892
0.0120965
0.00194192
0.0120248
0.0018665
0.0119589
0.00179254
0.0118979
0.00171997
0.0118411
0.00164869
0.011788
0.00157863
0.0117384
0.00150973
0.0116918
0.00144191
0.0116481
0.0013751
0.0116071
0.00130925
0.0115685
0.00124429
0.0115322
0.00118016
0.0114981
0.0011168
0.0114661
0.00105417
0.011436
0.000992209
0.0114078
0.000930872
0.0113814
0.000870111
0.0113568
0.000809881
0.0113339
0.000750138
0.0113126
0.000690841
0.011293
0.000631948
0.0112749
0.00057342
0.0112585
0.000515217
0.0112435
0.000457302
0.01123
0.000399639
0.0112181
0.000342189
0.0112076
0.000284917
0.0111986
0.000227789
0.011191
0.000170768
0.0111849
0.000113821
0.0111802
5.69118e-05
0.0111769
0.011175
0.00264943
0.0126489
0.00258463
0.0127148
0.00250303
0.0126553
0.00241654
0.0125545
0.00232977
0.0124485
0.00224478
0.0123484
0.00216194
0.0122582
0.00208111
0.0121773
0.00200206
0.0121038
0.00192461
0.0120364
0.00184862
0.0119739
0.00177402
0.0119157
0.00170072
0.0118613
0.00162865
0.0118105
0.00155774
0.0117627
0.00148793
0.011718
0.00141913
0.0116759
0.0013513
0.0116363
0.00128437
0.0115992
0.00121828
0.0115642
0.00115298
0.0115314
0.0010884
0.0115006
0.00102451
0.0114717
0.000961245
0.0114447
0.000898564
0.0114195
0.000836422
0.011396
0.000774772
0.0113743
0.000713572
0.0113542
0.000652782
0.0113357
0.000592359
0.0113189
0.000532265
0.0113036
0.000472461
0.0112899
0.000412908
0.0112776
0.00035357
0.011267
0.00029441
0.0112578
0.00023539
0.01125
0.000176476
0.0112438
0.000117631
0.011239
5.88203e-05
0.0112357
0.0112338
0.00270965
0.0126344
0.00265299
0.0127715
0.00257303
0.0127353
0.00248562
0.0126419
0.0023971
0.012537
0.00231008
0.0124354
0.00222516
0.0123431
0.00214227
0.0122602
0.00206119
0.0121849
0.00198173
0.0121158
0.00190374
0.0120519
0.00182715
0.0119923
0.00175186
0.0119366
0.00167781
0.0118845
0.00160493
0.0118356
0.00153315
0.0117897
0.0014624
0.0117466
0.00139263
0.0117061
0.00132376
0.011668
0.00125574
0.0116322
0.00118852
0.0115986
0.00112204
0.0115671
0.00105624
0.0115375
0.000991085
0.0115099
0.000926519
0.0114841
0.000862497
0.0114601
0.000798974
0.0114378
0.000735906
0.0114173
0.000673251
0.0113984
0.000610968
0.0113812
0.000549016
0.0113655
0.000487355
0.0113515
0.000425948
0.0113391
0.000364755
0.0113281
0.000303738
0.0113188
0.000242861
0.0113109
0.000182086
0.0113046
0.000121377
0.0112997
6.06964e-05
0.0112964
0.0112945
0.00276233
0.0125846
0.0027175
0.0128163
0.00264078
0.012812
0.00255312
0.0127295
0.00246317
0.012627
0.00237424
0.0125243
0.00228728
0.0124301
0.00220236
0.0123451
0.00211928
0.012268
0.00203783
0.0121973
0.00195788
0.0121318
0.00187932
0.0120708
0.00180208
0.0120139
0.00172608
0.0119605
0.00165126
0.0119104
0.00157755
0.0118635
0.00150488
0.0118193
0.00143319
0.0117778
0.00136242
0.0117388
0.00129251
0.0117021
0.00122341
0.0116677
0.00115505
0.0116354
0.00108739
0.0116052
0.00102037
0.0115769
0.000953957
0.0115505
0.00088809
0.0115259
0.000822728
0.0115032
0.000757826
0.0114822
0.000693342
0.0114629
0.000629233
0.0114453
0.000565458
0.0114293
0.000501976
0.011415
0.000438748
0.0114023
0.000375734
0.0113912
0.000312896
0.0113816
0.000250196
0.0113736
0.000187595
0.0113672
0.000125054
0.0113623
6.25389e-05
0.0113589
0.0113571
0.00280705
0.012489
0.00277916
0.0128442
0.00270707
0.0128841
0.00261938
0.0128172
0.00252804
0.0127183
0.0024372
0.0126151
0.00234821
0.0125191
0.00226128
0.012432
0.00217623
0.0123531
0.00209283
0.0122807
0.00201095
0.0122137
0.00193047
0.0121513
0.00185131
0.012093
0.0017734
0.0120384
0.00169668
0.0119872
0.00162107
0.0119391
0.00154652
0.0118939
0.00147295
0.0118514
0.00140032
0.0118114
0.00132855
0.0117739
0.0012576
0.0117387
0.00118741
0.0117056
0.00111792
0.0116747
0.00104908
0.0116457
0.000980849
0.0116187
0.000913174
0.0115936
0.00084601
0.0115703
0.000779312
0.0115489
0.000713035
0.0115292
0.000647136
0.0115112
0.000581575
0.0114949
0.000516308
0.0114803
0.000451296
0.0114673
0.000386499
0.011456
0.000321875
0.0114462
0.000257388
0.0114381
0.000192996
0.0114316
0.000128661
0.0114266
6.43462e-05
0.0114232
0.0114214
0.00283712
0.0123408
0.00283251
0.0128488
0.00276888
0.0129477
0.00268323
0.0129029
0.00259137
0.0128102
0.00249895
0.0127076
0.00240805
0.01261
0.00231915
0.0125209
0.00223214
0.0124401
0.00214682
0.012366
0.00206303
0.0122975
0.00198065
0.0122337
0.0018996
0.0121741
0.00181982
0.0121182
0.00174122
0.0120658
0.00166375
0.0120165
0.00158735
0.0119703
0.00151194
0.0119268
0.00143747
0.0118859
0.00136389
0.0118475
0.00129112
0.0118114
0.00121912
0.0117776
0.00114784
0.0117459
0.00107721
0.0117163
0.0010072
0.0116887
0.000937755
0.0116631
0.000868825
0.0116393
0.000800365
0.0116173
0.000732332
0.0115972
0.00066468
0.0115788
0.000597368
0.0115622
0.000530353
0.0115473
0.000463593
0.0115341
0.000397048
0.0115225
0.000330676
0.0115126
0.000264437
0.0115044
0.000198291
0.0114977
0.000132197
0.0114927
6.61182e-05
0.0114893
0.0114875
0.00286261
0.012123
0.00288669
0.0128247
0.00283069
0.0130037
0.00274616
0.0129874
0.00265327
0.0129031
0.0025591
0.0128017
0.00246629
0.0127028
0.00237545
0.0126118
0.00228654
0.012529
0.00219935
0.0124532
0.00211371
0.0123831
0.00202949
0.0123179
0.00194661
0.0122569
0.001865
0.0121998
0.00178459
0.0121462
0.00170532
0.0120958
0.00162711
0.0120485
0.00154992
0.012004
0.00147367
0.0119621
0.00139831
0.0119229
0.00132379
0.011886
0.00125004
0.0118514
0.001177
0.011819
0.00110464
0.0117887
0.0010329
0.0117605
0.000961727
0.0117342
0.000891076
0.0117099
0.000820901
0.0116875
0.000751156
0.0116669
0.000681796
0.0116482
0.000612777
0.0116312
0.000544057
0.011616
0.000475593
0.0116025
0.000407342
0.0115908
0.000339264
0.0115807
0.000271317
0.0115723
0.000203459
0.0115656
0.000135649
0.0115605
6.78487e-05
0.0115571
0.0115554
0.00285033
0.011847
0.00291971
0.0127554
0.00288419
0.0130392
0.00280706
0.0130645
0.00271544
0.0129947
0.00262025
0.0128969
0.00252561
0.0127974
0.00243273
0.0127046
0.00234177
0.0126199
0.00225257
0.0125424
0.00216495
0.0124708
0.00207878
0.0124041
0.00199397
0.0123418
0.00191044
0.0122833
0.00182814
0.0122285
0.00174698
0.012177
0.00166692
0.0121285
0.00158789
0.012083
0.00150981
0.0120402
0.00143265
0.012
0.00135633
0.0119623
0.0012808
0.0119269
0.00120601
0.0118938
0.00113189
0.0118628
0.00105841
0.0118339
0.00098551
0.0118071
0.00091314
0.0117823
0.000841253
0.0117594
0.000769803
0.0117384
0.000698744
0.0117192
0.000628031
0.0117019
0.00055762
0.0116864
0.000487467
0.0116727
0.000417528
0.0116607
0.000347761
0.0116505
0.000278123
0.0116419
0.000208573
0.0116351
0.000139063
0.01163
6.95619e-05
0.0116266
0.0116249
0.000684386
0.0117007
-0.00053803
0.000731768
0.012708
0.000742239
0.0130288
0.000732774
0.013074
0.000713347
0.0130141
0.000689069
0.0129212
0.000662672
0.0128238
0.000635422
0.0127319
0.000607923
0.0126474
0.000580505
0.0125698
0.000553369
0.0124979
0.000526664
0.0124308
0.000500498
0.0123679
0.000474949
0.0123089
0.000450069
0.0122534
0.000425886
0.0122011
0.000402412
0.012152
0.000379644
0.0121058
0.00035757
0.0120623
0.000336169
0.0120214
0.000315415
0.011983
0.000295279
0.011947
0.000275729
0.0119133
0.000256731
0.0118818
0.000238252
0.0118524
0.000220254
0.0118251
0.000202704
0.0117998
0.000185567
0.0117765
0.000168807
0.0117551
0.000152391
0.0117357
0.000136286
0.011718
0.000120458
0.0117022
0.000104875
0.0116883
8.95043e-05
0.0116761
7.43155e-05
0.0116656
5.9277e-05
0.011657
4.43589e-05
0.0116501
2.95282e-05
0.0116449
1.47567e-05
0.0116414
0.0116397
0.000653656
0.0115514
-0.000504357
0.00070541
0.0126562
0.000716427
0.0130177
0.000708448
0.013082
0.000690764
0.0130318
0.000668328
0.0129436
0.000643701
0.0128485
0.000618092
0.0127575
0.000592106
0.0126734
0.000566072
0.0125958
0.000540201
0.0125238
0.000514647
0.0124563
0.000489528
0.012393
0.000464929
0.0123335
0.00044091
0.0122774
0.00041751
0.0122245
0.000394747
0.0121748
0.000372626
0.0121279
0.000351143
0.0120838
0.000330283
0.0120423
0.000310025
0.0120033
0.000290346
0.0119667
0.000271219
0.0119324
0.000252612
0.0119004
0.000234496
0.0118705
0.000216839
0.0118428
0.000199608
0.0118171
0.000182771
0.0117934
0.000166295
0.0117716
0.000150148
0.0117518
0.0001343
0.0117339
0.000118718
0.0117178
0.000103371
0.0117036
8.8229e-05
0.0116912
7.3262e-05
0.0116806
5.84399e-05
0.0116718
4.37332e-05
0.0116648
2.91119e-05
0.0116595
1.45444e-05
0.011656
0.0116542
0.000619803
0.0114016
-0.000469994
0.000678823
0.0125972
0.000692239
0.0130043
0.000685311
0.0130889
0.000668866
0.0130482
0.000647937
0.0129646
0.000624868
0.0128715
0.00060077
0.0127816
0.00057621
0.012698
0.000551507
0.0126205
0.000526865
0.0125484
0.00050244
0.0124808
0.000478354
0.0124171
0.000454698
0.0123571
0.00043154
0.0123005
0.000408925
0.0122472
0.000386878
0.0121968
0.000365413
0.0121494
0.000344529
0.0121047
0.000324219
0.0120626
0.000304468
0.012023
0.000285256
0.0119859
0.000266561
0.0119511
0.000248356
0.0119186
0.000230615
0.0118883
0.000213307
0.0118601
0.000196405
0.011834
0.000179877
0.0118099
0.000163694
0.0117878
0.000147826
0.0117677
0.000132243
0.0117495
0.000116915
0.0117331
0.000101813
0.0117187
8.69077e-05
0.0117061
7.21704e-05
0.0116953
5.75724e-05
0.0116864
4.30856e-05
0.0116792
2.86804e-05
0.0116739
1.43284e-05
0.0116703
0.0116686
0.000587819
0.0112562
-0.000442406
0.000651318
0.0125337
0.000667857
0.0129878
0.000662618
0.0130941
0.000647575
0.0130633
0.00062806
0.0129841
0.000606409
0.0128932
0.000583698
0.0128043
0.000560468
0.0127212
0.000537019
0.012644
0.00051355
0.0125719
0.000490211
0.0125041
0.000467126
0.0124402
0.000444391
0.0123799
0.000422078
0.0123229
0.000400236
0.012269
0.0003789
0.0122182
0.000358086
0.0121702
0.000337801
0.0121249
0.000318043
0.0120823
0.000298801
0.0120423
0.00028006
0.0120047
0.000261802
0.0119694
0.000244004
0.0119364
0.000226642
0.0119056
0.000209691
0.011877
0.000193123
0.0118505
0.000176911
0.0118261
0.000161027
0.0118037
0.000145443
0.0117833
0.000130132
0.0117648
0.000115064
0.0117482
0.000100213
0.0117336
8.55506e-05
0.0117208
7.10492e-05
0.0117098
5.66815e-05
0.0117008
4.24204e-05
0.0116935
2.82382e-05
0.0116881
1.41066e-05
0.0116844
0.0116827
0.000557508
0.0111164
-0.000417758
0.000623987
0.0124672
0.000643402
0.0129684
0.000640166
0.0130974
0.000626702
0.0130767
0.000608597
0.0130022
0.000588283
0.0129135
0.000566868
0.0128257
0.000544885
0.0127432
0.000522623
0.0126663
0.000500272
0.0125942
0.000477978
0.0125264
0.000455863
0.0124623
0.000434025
0.0124017
0.000412539
0.0123443
0.000391459
0.0122901
0.000370825
0.0122388
0.000350658
0.0121903
0.000330971
0.0121446
0.000311764
0.0121016
0.000293033
0.012061
0.000274766
0.0120229
0.000256949
0.0119872
0.000239562
0.0119538
0.000222585
0.0119226
0.000205994
0.0118936
0.000189766
0.0118668
0.000173875
0.011842
0.000158296
0.0118193
0.000143003
0.0117985
0.000127969
0.0117798
0.000113168
0.011763
9.85735e-05
0.0117481
8.41595e-05
0.0117352
6.98996e-05
0.0117241
5.57681e-05
0.0117149
4.17387e-05
0.0117075
2.77849e-05
0.011702
1.38796e-05
0.0116983
0.0116966
0.000528767
0.0109813
-0.000393696
0.000597467
0.0123985
0.000619327
0.0129465
0.000618028
0.0130987
0.000606152
0.0130886
0.000589429
0.0130189
0.000570398
0.0129325
0.00055021
0.0128459
0.000529411
0.012764
0.000508283
0.0126874
0.000487005
0.0126155
0.000465721
0.0125477
0.000444549
0.0124835
0.000423587
0.0124227
0.000402913
0.012365
0.000382587
0.0123104
0.000362648
0.0122587
0.000343125
0.0122099
0.000324034
0.0121637
0.000305379
0.0121202
0.000287161
0.0120792
0.000269371
0.0120407
0.000251998
0.0120046
0.000235028
0.0119708
0.00021844
0.0119392
0.000202216
0.0119099
0.000186334
0.0118827
0.00017077
0.0118576
0.000155502
0.0118345
0.000140505
0.0118135
0.000125754
0.0117946
0.000111225
0.0117775
9.68933e-05
0.0117625
8.27337e-05
0.0117493
6.87215e-05
0.0117381
5.48317e-05
0.0117288
4.10396e-05
0.0117213
2.73204e-05
0.0117157
1.36474e-05
0.011712
0.0117102
0.000501438
0.0108508
-0.000370951
0.000571788
0.0123282
0.000595829
0.0129225
0.00059631
0.0130982
0.000585919
0.013099
0.000570509
0.0130343
0.000552701
0.0129503
0.000533687
0.0128649
0.00051402
0.0127837
0.000493978
0.0127074
0.000473736
0.0126357
0.000453431
0.012568
0.000433178
0.0125038
0.000413075
0.0124428
0.000393201
0.0123849
0.000373618
0.01233
0.00035437
0.012278
0.000335487
0.0122287
0.000316991
0.0121822
0.00029889
0.0121383
0.000281186
0.0120969
0.000263877
0.012058
0.000246953
0.0120215
0.000230402
0.0119873
0.00021421
0.0119554
0.000198357
0.0119257
0.000182826
0.0118982
0.000167595
0.0118728
0.000152643
0.0118495
0.000137948
0.0118282
0.000123487
0.011809
0.000109236
0.0117918
9.51728e-05
0.0117765
8.12735e-05
0.0117632
6.75148e-05
0.0117519
5.38726e-05
0.0117424
4.03239e-05
0.0117349
2.68446e-05
0.0117292
1.34097e-05
0.0117254
0.0117236
0.000475289
0.0107253
-0.000349733
0.000546795
0.0122567
0.000572872
0.0128964
0.000575029
0.013096
0.00056602
0.013108
0.000551841
0.0130485
0.000535192
0.012967
0.000517297
0.0128828
0.000498713
0.0128022
0.000479716
0.0127264
0.000460474
0.012655
0.000441117
0.0125873
0.00042176
0.0125231
0.000402498
0.012462
0.000383411
0.012404
0.000364562
0.0123488
0.000345998
0.0122965
0.000327753
0.012247
0.00030985
0.0122001
0.000292303
0.0121559
0.000275116
0.0121141
0.000258289
0.0120749
0.000241818
0.012038
0.000225691
0.0120034
0.000209898
0.0119712
0.000194422
0.0119412
0.000179247
0.0119134
0.000164355
0.0118877
0.000149725
0.0118641
0.000135337
0.0118426
0.00012117
0.0118232
0.000107203
0.0118058
9.34138e-05
0.0117903
7.97803e-05
0.0117769
6.62803e-05
0.0117654
5.28917e-05
0.0117558
3.95918e-05
0.0117482
2.63581e-05
0.0117425
1.31669e-05
0.0117386
0.0117368
0.000450207
0.0106049
-0.000329778
0.000522402
0.0121845
0.000550377
0.0128684
0.000554149
0.0130923
0.000546452
0.0131157
0.000533434
0.0130615
0.000517885
0.0129825
0.000501055
0.0128997
0.000483506
0.0128198
0.000465512
0.0127444
0.000447234
0.0126733
0.000428798
0.0126058
0.000410313
0.0125416
0.000391874
0.0124805
0.00037356
0.0124223
0.000355435
0.012367
0.000337548
0.0123144
0.000319936
0.0122646
0.000302624
0.0122174
0.000285629
0.0121729
0.000268959
0.0121308
0.000252617
0.0120912
0.0002366
0.012054
0.000220902
0.0120191
0.000205511
0.0119866
0.000190416
0.0119563
0.000175602
0.0119282
0.000161052
0.0119022
0.000146749
0.0118784
0.000132673
0.0118567
0.000118807
0.0118371
0.000105129
0.0118194
9.16185e-05
0.0118038
7.82561e-05
0.0117902
6.50203e-05
0.0117786
5.189e-05
0.0117689
3.88443e-05
0.0117612
2.58613e-05
0.0117554
1.2919e-05
0.0117516
0.0117497
0.00042612
0.0104896
-0.000310839
0.000498596
0.012112
0.0005283
0.0128387
0.000533629
0.0130869
0.000527197
0.0131221
0.00051529
0.0130734
0.000500787
0.012997
0.000484971
0.0129155
0.000468413
0.0128363
0.000451381
0.0127614
0.000434033
0.0126906
0.000416489
0.0126233
0.000398853
0.0125592
0.000381217
0.0124981
0.000363661
0.0124398
0.000346249
0.0123844
0.000329031
0.0123316
0.000312046
0.0122816
0.000295322
0.0122342
0.000278878
0.0121893
0.000262725
0.0121469
0.000246869
0.0121071
0.000231308
0.0120696
0.00021604
0.0120344
0.000201055
0.0120016
0.000186345
0.011971
0.000171895
0.0119426
0.000157692
0.0119164
0.00014372
0.0118924
0.000129962
0.0118705
0.0001164
0.0118506
0.000103015
0.0118328
8.97892e-05
0.0118171
7.67026e-05
0.0118033
6.37358e-05
0.0117916
5.0869e-05
0.0117818
3.8082e-05
0.011774
2.53549e-05
0.0117682
1.26663e-05
0.0117643
0.0117624
0.000402971
0.0103794
-0.000292767
0.000475382
0.0120396
0.00050663
0.0128075
0.000513446
0.0130801
0.000508237
0.0131274
0.0004974
0.0130842
0.000483897
0.0130105
0.000469051
0.0129303
0.000453441
0.012852
0.000437333
0.0127776
0.000420882
0.0127071
0.000404201
0.01264
0.000387391
0.012576
0.000370541
0.012515
0.000353727
0.0124567
0.000337016
0.0124011
0.000320458
0.0123482
0.000304094
0.012298
0.000287954
0.0122503
0.000272059
0.0122052
0.000256422
0.0121626
0.000241051
0.0121224
0.000225948
0.0120847
0.000211112
0.0120492
0.000196536
0.0120161
0.000182213
0.0119853
0.000168132
0.0119567
0.000154279
0.0119303
0.000140642
0.011906
0.000127205
0.0118839
0.000113952
0.0118639
0.000100865
0.0118459
8.79278e-05
0.01183
7.51216e-05
0.0118161
6.24284e-05
0.0118043
4.98295e-05
0.0117944
3.73063e-05
0.0117865
2.48394e-05
0.0117806
1.24091e-05
0.0117767
0.0117748
0.000380695
0.0102742
-0.000275478
0.000452752
0.0119675
0.000485362
0.0127749
0.000493588
0.0130719
0.000489558
0.0131314
0.000479752
0.0130941
0.000467211
0.0130231
0.000453294
0.0129442
0.000438593
0.0128667
0.000423375
0.0127928
0.000407789
0.0127226
0.000391945
0.0126559
0.000375938
0.012592
0.000359854
0.012531
0.000343768
0.0124727
0.000327746
0.0124171
0.00031184
0.0123641
0.00029609
0.0123137
0.000280529
0.0122659
0.000265179
0.0122205
0.000250056
0.0121777
0.000235171
0.0121373
0.000220526
0.0120993
0.000206124
0.0120637
0.000191958
0.0120303
0.000178025
0.0119992
0.000164315
0.0119704
0.000150817
0.0119438
0.000137518
0.0119193
0.000124406
0.011897
0.000111466
0.0118768
9.8681e-05
0.0118587
8.60363e-05
0.0118427
7.35147e-05
0.0118287
6.10993e-05
0.0118167
4.87728e-05
0.0118067
3.65174e-05
0.0117988
2.43152e-05
0.0117928
1.21477e-05
0.0117889
0.0117869
0.000359239
0.0101738
-0.000258908
0.000430691
0.0118961
0.000464489
0.0127411
0.000474045
0.0130623
0.000471151
0.0131343
0.000462338
0.0131029
0.000450723
0.0130347
0.000437699
0.0129573
0.000423871
0.0128805
0.000409509
0.0128071
0.00039476
0.0127374
0.000379727
0.0126709
0.000364501
0.0126073
0.000349165
0.0125464
0.000333793
0.0124881
0.000318448
0.0124325
0.000303183
0.0123794
0.000288041
0.0123288
0.000273053
0.0122808
0.000258246
0.0122353
0.000243636
0.0121923
0.000229234
0.0121517
0.000215048
0.0121135
0.00020108
0.0120776
0.000187327
0.0120441
0.000173786
0.0120128
0.000160449
0.0119838
0.000147308
0.0119569
0.000134352
0.0119323
0.000121568
0.0119098
0.000108944
0.0118894
9.64647e-05
0.0118712
8.41164e-05
0.011855
7.18835e-05
0.0118409
5.97499e-05
0.0118288
4.76997e-05
0.0118188
3.57163e-05
0.0118108
2.37829e-05
0.0118048
1.18818e-05
0.0118008
0.0117988
0.000338562
0.0100783
-0.000243005
0.000409181
0.0118254
0.000443998
0.0127062
0.000454807
0.0130515
0.000453006
0.0131361
0.000445152
0.0131107
0.000434428
0.0130454
0.000422263
0.0129694
0.000409276
0.0128935
0.000395741
0.0128207
0.000381801
0.0127513
0.000367554
0.0126851
0.000353088
0.0126217
0.000338482
0.012561
0.000323809
0.0125028
0.000309129
0.0124471
0.000294497
0.012394
0.000279954
0.0123434
0.000265535
0.0122953
0.000251266
0.0122496
0.000237166
0.0122064
0.000223248
0.0121656
0.00020952
0.0121272
0.000195986
0.0120912
0.000182647
0.0120574
0.0001695
0.0120259
0.000156539
0.0119967
0.000143757
0.0119697
0.000131145
0.0119449
0.000118693
0.0119222
0.000106388
0.0119017
9.42184e-05
0.0118833
8.21702e-05
0.011867
7.02294e-05
0.0118528
5.83815e-05
0.0118407
4.66113e-05
0.0118306
3.49037e-05
0.0118225
2.32429e-05
0.0118164
1.16125e-05
0.0118124
0.0118104
0.000318621
0.00998737
-0.00022772
0.000388207
0.0117559
0.000423881
0.0126706
0.000435863
0.0130395
0.000435114
0.0131368
0.000428188
0.0131176
0.000418323
0.0130553
0.000406986
0.0129808
0.00039481
0.0129057
0.000382073
0.0128334
0.000368916
0.0127645
0.000355433
0.0126986
0.000341707
0.0126355
0.000327814
0.0125749
0.000313824
0.0125168
0.000299798
0.0124612
0.000285789
0.012408
0.000271838
0.0123573
0.000257982
0.0123091
0.000244247
0.0122634
0.000230654
0.01222
0.000217217
0.0121791
0.000203946
0.0121405
0.000190848
0.0121043
0.000177923
0.0120703
0.00016517
0.0120387
0.000152587
0.0120093
0.000140167
0.0119821
0.000127902
0.0119572
0.000115784
0.0119344
0.000103802
0.0119137
9.19442e-05
0.0118952
8.01994e-05
0.0118788
6.85541e-05
0.0118645
5.69951e-05
0.0118522
4.55087e-05
0.011842
3.40804e-05
0.0118339
2.26957e-05
0.0118278
1.13396e-05
0.0118238
0.0118218
0.000299376
0.009901
-0.000213009
0.000367753
0.0116875
0.000404127
0.0126342
0.000417207
0.0130265
0.000417469
0.0131366
0.000411439
0.0131237
0.000402406
0.0130643
0.000391867
0.0129913
0.000380474
0.012917
0.000368509
0.0128454
0.000356111
0.0127769
0.000343369
0.0127114
0.000330364
0.0126485
0.000317167
0.0125881
0.000303846
0.0125301
0.000290462
0.0124745
0.000277065
0.0124214
0.0002637
0.0123707
0.0002504
0.0123224
0.000237195
0.0122766
0.000224105
0.0122331
0.000211148
0.012192
0.000198333
0.0121533
0.000185669
0.0121169
0.000173158
0.0120828
0.000160802
0.012051
0.000148597
0.0120215
0.000136541
0.0119942
0.000124625
0.0119691
0.000112844
0.0119461
0.000101187
0.0119254
8.96444e-05
0.0119067
7.82058e-05
0.0118902
6.68592e-05
0.0118758
5.55925e-05
0.0118635
4.43927e-05
0.0118532
3.32471e-05
0.0118451
2.21419e-05
0.0118389
1.10632e-05
0.0118348
0.0118328
0.000280791
0.00981904
-0.000198829
0.000347806
0.0116205
0.00038473
0.0125973
0.000398828
0.0130124
0.000400062
0.0131353
0.000394901
0.0131288
0.000386671
0.0130726
0.000376906
0.0130011
0.00036627
0.0129277
0.000355052
0.0128566
0.000343388
0.0127886
0.000331368
0.0127234
0.000319064
0.0126608
0.000306547
0.0126006
0.000293882
0.0125428
0.000281128
0.0124873
0.000268335
0.0124342
0.000255545
0.0123835
0.000242796
0.0123352
0.000230116
0.0122892
0.000217526
0.0122457
0.000205045
0.0122045
0.000192686
0.0121657
0.000180455
0.0121291
0.000168359
0.0120949
0.000156399
0.012063
0.000144574
0.0120333
0.000132882
0.0120059
0.000121318
0.0119806
0.000109875
0.0119576
9.85457e-05
0.0119367
8.7321e-05
0.011918
7.61913e-05
0.0119014
6.51461e-05
0.0118869
5.41744e-05
0.0118745
4.32645e-05
0.0118642
3.24045e-05
0.0118559
2.15819e-05
0.0118497
1.07836e-05
0.0118456
0.0118436
0.000262829
0.00974136
-0.000185145
0.000328351
0.0115549
0.000365684
0.0125599
0.000380722
0.0129973
0.000382888
0.0131332
0.000378568
0.0131332
0.000371118
0.01308
0.000362101
0.0130101
0.000352198
0.0129376
0.000341704
0.0128671
0.000330754
0.0127995
0.000319433
0.0127347
0.000307813
0.0126724
0.000295961
0.0126124
0.000283938
0.0125548
0.000271802
0.0124994
0.000259602
0.0124464
0.000247381
0.0123957
0.000235176
0.0123474
0.000223015
0.0123014
0.000210922
0.0122578
0.000198915
0.0122165
0.000187008
0.0121776
0.00017521
0.0121409
0.000163528
0.0121066
0.000151965
0.0120746
0.000140521
0.0120448
0.000129195
0.0120172
0.000117983
0.0119919
0.000106881
0.0119687
9.5881e-05
0.0119477
8.4976e-05
0.0119289
7.41576e-05
0.0119122
6.34164e-05
0.0118976
5.27423e-05
0.0118851
4.2125e-05
0.0118748
3.15534e-05
0.0118665
2.10161e-05
0.0118603
1.05014e-05
0.0118561
0.0118541
0.000245457
0.00966782
-0.00017192
0.000309374
0.011491
0.000346981
0.0125223
0.000362882
0.0129814
0.00036594
0.0131301
0.000362435
0.0131367
0.000355741
0.0130867
0.00034745
0.0130184
0.000338258
0.0129468
0.000328466
0.0128769
0.000318209
0.0128098
0.00030757
0.0127453
0.000296617
0.0126833
0.000285414
0.0126236
0.000274019
0.0125662
0.00026249
0.012511
0.000250874
0.012458
0.000239214
0.0124074
0.000227546
0.012359
0.000215899
0.012313
0.000204298
0.0122694
0.000192762
0.012228
0.000181306
0.012189
0.000169939
0.0121523
0.000158671
0.0121179
0.000147504
0.0120857
0.000136441
0.0120558
0.000125482
0.0120282
0.000114624
0.0120027
0.000103863
0.0119795
9.31945e-05
0.0119584
8.26115e-05
0.0119395
7.21065e-05
0.0119227
6.16715e-05
0.011908
5.12975e-05
0.0118955
4.09751e-05
0.0118851
3.06945e-05
0.0118768
2.04452e-05
0.0118705
1.02165e-05
0.0118664
0.0118643
0.000228643
0.0095983
-0.000159122
0.000290861
0.0114288
0.000328615
0.0124846
0.000345304
0.0129647
0.000349214
0.0131262
0.000346498
0.0131394
0.000340539
0.0130927
0.000332952
0.013026
0.000324451
0.0129553
0.00031534
0.012886
0.000305756
0.0128193
0.000295782
0.0127553
0.000285479
0.0126937
0.00027491
0.0126342
0.000264131
0.012577
0.000253197
0.0125219
0.000242156
0.0124691
0.000231048
0.0124185
0.000219911
0.0123702
0.000208773
0.0123242
0.00019766
0.0122805
0.000186592
0.0122391
0.000175583
0.0122
0.000164647
0.0121632
0.00015379
0.0121287
0.00014302
0.0120965
0.000132338
0.0120665
0.000121746
0.0120388
0.000111243
0.0120132
0.000100825
0.0119899
9.04892e-05
0.0119687
8.02294e-05
0.0119497
7.00397e-05
0.0119329
5.99128e-05
0.0119182
4.9841e-05
0.0119056
3.98159e-05
0.0118951
2.98285e-05
0.0118868
1.98695e-05
0.0118805
9.92919e-06
0.0118763
0.0118742
0.000212354
0.00953266
-0.000146719
0.000272796
0.0113684
0.00031058
0.0124468
0.000327981
0.0129473
0.000332704
0.0131215
0.000330753
0.0131413
0.000325508
0.0130979
0.000318606
0.0130329
0.000310775
0.0129631
0.000302327
0.0128944
0.000293399
0.0128283
0.000284071
0.0127646
0.000274403
0.0127033
0.000264454
0.0126442
0.000254279
0.0125871
0.000243929
0.0125322
0.000233452
0.0124795
0.000222889
0.012429
0.000212276
0.0123808
0.000201642
0.0123348
0.000191012
0.0122911
0.000180408
0.0122497
0.000169845
0.0122106
0.000159336
0.0121738
0.000148891
0.0121392
0.000138516
0.0121069
0.000128215
0.0120768
0.000117991
0.012049
0.000107842
0.0120234
9.77686e-05
0.0119999
8.77665e-05
0.0119787
7.78316e-05
0.0119597
6.79588e-05
0.0119427
5.81419e-05
0.011928
4.83742e-05
0.0119154
3.86482e-05
0.0119048
2.8956e-05
0.0118964
1.92895e-05
0.0118902
9.63971e-06
0.011886
0.0118839
0.000196561
0.00947078
-0.000134681
0.000255164
0.0113098
0.00029287
0.0124091
0.00031091
0.0129293
0.000316407
0.013116
0.000315195
0.0131425
0.000310645
0.0131025
0.00030441
0.0130391
0.000297232
0.0129703
0.000289428
0.0129022
0.000281139
0.0128366
0.000272441
0.0127733
0.000263393
0.0127124
0.000254051
0.0126535
0.000244466
0.0125967
0.000234691
0.012542
0.000224769
0.0124895
0.000214743
0.0124391
0.000204646
0.0123909
0.00019451
0.012345
0.000184359
0.0123013
0.000174215
0.0122599
0.000164094
0.0122207
0.000154011
0.0121838
0.000143975
0.0121492
0.000133995
0.0121169
0.000124075
0.0120867
0.000114218
0.0120588
0.000104425
0.0120332
9.46963e-05
0.0120097
8.50289e-05
0.0119884
7.54201e-05
0.0119693
6.58655e-05
0.0119523
5.636e-05
0.0119375
4.6898e-05
0.0119248
3.74729e-05
0.0119143
2.80779e-05
0.0119058
1.87056e-05
0.0118995
9.3483e-06
0.0118953
0.0118932
0.000181234
0.00941253
-0.00012298
0.00023795
0.0112531
0.000275477
0.0123716
0.000294086
0.0129107
0.000300318
0.0131097
0.000299823
0.013143
0.000295948
0.0131063
0.000290363
0.0130447
0.00028382
0.0129768
0.000276644
0.0129094
0.000268977
0.0128442
0.000260895
0.0127814
0.000252452
0.0127208
0.000243703
0.0126623
0.000234698
0.0126057
0.000225486
0.0125512
0.000216111
0.0124988
0.000206612
0.0124486
0.000197026
0.0124005
0.000187382
0.0123546
0.000177705
0.012311
0.000168017
0.0122695
0.000158336
0.0122304
0.000148676
0.0121935
0.000139048
0.0121588
0.000129461
0.0121264
0.000119921
0.0120963
0.000110431
0.0120683
0.000100994
0.0120426
9.16103e-05
0.0120191
8.22785e-05
0.0119977
7.29966e-05
0.0119785
6.37613e-05
0.0119615
5.45686e-05
0.0119467
4.54137e-05
0.011934
3.6291e-05
0.0119234
2.71948e-05
0.0119149
1.81183e-05
0.0119086
9.05518e-06
0.0119044
0.0119023
0.000166344
0.00935777
-0.000111589
0.000221139
0.0111983
0.000258394
0.0123343
0.000277504
0.0128916
0.000284432
0.0131028
0.000284631
0.0131428
0.000281416
0.0131095
0.000276463
0.0130496
0.000270539
0.0129828
0.000263976
0.012916
0.000256916
0.0128513
0.000249434
0.0127889
0.000241584
0.0127287
0.000233415
0.0126704
0.000224978
0.0126142
0.000216319
0.0125599
0.000207481
0.0125077
0.000198503
0.0124575
0.00018942
0.0124096
0.000180262
0.0123638
0.000171054
0.0123202
0.000161819
0.0122788
0.000152574
0.0122396
0.000143335
0.0122027
0.000134113
0.0121681
0.000124918
0.0121356
0.000115756
0.0121054
0.000106633
0.0120774
9.75518e-05
0.0120517
8.85131e-05
0.0120281
7.95171e-05
0.0120067
7.05629e-05
0.0119875
6.16478e-05
0.0119705
5.27689e-05
0.0119556
4.39223e-05
0.0119428
3.51033e-05
0.0119322
2.6307e-05
0.0119237
1.75281e-05
0.0119174
8.76056e-06
0.0119132
0.0119111
0.000151865
0.00930639
-0.000100484
0.000204714
0.0111454
0.000241616
0.0122974
0.000261161
0.012872
0.000268748
0.0130952
0.000269618
0.013142
0.000267044
0.0131121
0.000262709
0.013054
0.00025739
0.0129881
0.000251425
0.0129219
0.000244957
0.0128578
0.000238061
0.0127958
0.000230789
0.0127359
0.00022319
0.012678
0.00021531
0.012622
0.000207194
0.012568
0.000198884
0.012516
0.000190419
0.012466
0.000181832
0.0124181
0.000173154
0.0123724
0.00016441
0.0123289
0.000155623
0.0122876
0.000146811
0.0122485
0.00013799
0.0122116
0.000129172
0.0121769
0.000120367
0.0121444
0.000111583
0.0121142
0.000102827
0.0120862
9.41002e-05
0.0120604
8.54067e-05
0.0120368
7.67471e-05
0.0120154
6.81207e-05
0.0119961
5.95266e-05
0.011979
5.09623e-05
0.0119641
4.24247e-05
0.0119514
3.39107e-05
0.0119407
2.54158e-05
0.0119322
1.69353e-05
0.0119259
8.46477e-06
0.0119216
0.0119195
0.000137769
0.00925826
-8.96403e-05
0.00018866
0.0110945
0.000225134
0.0122609
0.000245053
0.0128521
0.000253261
0.013087
0.00025478
0.0131404
0.000252831
0.0131141
0.0002491
0.0130577
0.000244371
0.0129928
0.000238989
0.0129273
0.0002331
0.0128636
0.000226778
0.0128021
0.000220073
0.0127426
0.00021303
0.0126851
0.000205696
0.0126294
0.000198113
0.0125756
0.000190323
0.0125238
0.000182363
0.012474
0.000174266
0.0124262
0.000166062
0.0123806
0.000157778
0.0123372
0.000149435
0.0122959
0.000141052
0.0122568
0.000132646
0.01222
0.000124229
0.0121853
0.000115813
0.0121529
0.000107406
0.0121226
9.90137e-05
0.0120946
9.06418e-05
0.0120688
8.22933e-05
0.0120451
7.39698e-05
0.0120237
6.56718e-05
0.0120044
5.7399e-05
0.0119873
4.91499e-05
0.0119724
4.09226e-05
0.0119596
3.2714e-05
0.0119489
2.45213e-05
0.0119404
1.63404e-05
0.011934
8.16768e-06
0.0119298
0.0119277
0.000124033
0.00921327
-7.90373e-05
0.000172963
0.0110456
0.000208943
0.0122249
0.000229176
0.0128319
0.000237969
0.0130782
0.000240115
0.0131383
0.000238776
0.0131154
0.000235634
0.0130608
0.000231483
0.0129969
0.000226671
0.0129321
0.000221348
0.012869
0.000215586
0.0128079
0.000209435
0.0127488
0.000202939
0.0126916
0.00019614
0.0126362
0.000189082
0.0125827
0.000181802
0.012531
0.000174339
0.0124814
0.000166726
0.0124339
0.000158991
0.0123884
0.00015116
0.012345
0.000143256
0.0123038
0.000135299
0.0122648
0.000127305
0.012228
0.000119287
0.0121933
0.000111258
0.0121609
0.000103225
0.0121307
9.51971e-05
0.0121026
8.71792e-05
0.0120768
7.9175e-05
0.0120531
7.11874e-05
0.0120317
6.32178e-05
0.0120124
5.52665e-05
0.0119953
4.73331e-05
0.0119803
3.94162e-05
0.0119675
3.15141e-05
0.0119568
2.36242e-05
0.0119483
1.57438e-05
0.0119419
7.8697e-06
0.0119377
0.0119356
0.00011063
0.00917129
-6.86544e-05
0.000157608
0.0109986
0.000193036
0.0121895
0.000213525
0.0128114
0.000222868
0.0130689
0.000225621
0.0131355
0.000224877
0.0131161
0.000222311
0.0130634
0.000218724
0.0130005
0.000214471
0.0129364
0.000209701
0.0128737
0.000204488
0.0128131
0.00019888
0.0127544
0.000192918
0.0126975
0.000186646
0.0126424
0.000180101
0.0125892
0.000173325
0.0125378
0.000166352
0.0124884
0.000159214
0.012441
0.000151942
0.0123956
0.00014456
0.0123524
0.000137092
0.0123113
0.000129556
0.0122723
0.000121971
0.0122355
0.000114349
0.0122009
0.000106704
0.0121685
9.90446e-05
0.0121383
9.13792e-05
0.0121103
8.37139e-05
0.0120845
7.60537e-05
0.0120608
6.84016e-05
0.0120393
6.07603e-05
0.01202
5.31305e-05
0.0120029
4.55129e-05
0.0119879
3.79069e-05
0.0119751
3.03116e-05
0.0119644
2.27252e-05
0.0119559
1.51459e-05
0.0119495
7.57128e-06
0.0119452
0.0119431
9.75397e-05
0.00913223
-5.84727e-05
0.000142584
0.0109536
0.000177407
0.0121547
0.000198098
0.0127907
0.000207957
0.013059
0.000211295
0.0131322
0.000211131
0.0131163
0.000209129
0.0130654
0.000206095
0.0130036
0.000202387
0.0129401
0.000198159
0.012878
0.000193484
0.0128178
0.000188408
0.0127595
0.000182971
0.012703
0.000177214
0.0126482
0.000171176
0.0125952
0.000164894
0.0125441
0.000158403
0.0124949
0.000151735
0.0124477
0.000144919
0.0124025
0.000137981
0.0123593
0.000130943
0.0123183
0.000123826
0.0122794
0.000116646
0.0122427
0.000109418
0.0122082
0.000102155
0.0121758
9.48665e-05
0.0121456
8.75622e-05
0.0121176
8.02488e-05
0.0120918
7.29313e-05
0.0120681
6.56143e-05
0.0120466
5.83007e-05
0.0120273
5.09924e-05
0.0120102
4.36906e-05
0.0119952
3.63957e-05
0.0119824
2.91074e-05
0.0119717
2.18248e-05
0.0119632
1.45469e-05
0.0119568
7.27225e-06
0.0119525
0.0119504
8.47363e-05
0.00909596
-4.84728e-05
0.000127885
0.0109104
0.00016205
0.0121205
0.000182889
0.0127699
0.000193231
0.0130487
0.000197136
0.0131283
0.000197537
0.0131159
0.000196087
0.0130669
0.000193595
0.0130061
0.000190422
0.0129433
0.000186725
0.0128817
0.000182576
0.0128219
0.000178021
0.012764
0.000173099
0.0127079
0.000167849
0.0126535
0.000162307
0.0126008
0.000156512
0.0125499
0.000150496
0.0125009
0.000144291
0.0124539
0.000137926
0.0124088
0.000131427
0.0123658
0.000124815
0.0123249
0.000118111
0.0122862
0.000111333
0.0122495
0.000104496
0.012215
9.76122e-05
0.0121827
9.06933e-05
0.0121525
8.37484e-05
0.0121245
7.67851e-05
0.0120987
6.98098e-05
0.0120751
6.2827e-05
0.0120536
5.58406e-05
0.0120343
4.88534e-05
0.0120172
4.18673e-05
0.0120022
3.48834e-05
0.0119894
2.79022e-05
0.0119787
2.09237e-05
0.0119702
1.39474e-05
0.0119638
6.97292e-06
0.0119595
0.0119574
7.22032e-05
0.00906239
-3.86359e-05
0.000113505
0.0108691
0.000146956
0.0120871
0.000167896
0.0127489
0.00017869
0.0130379
0.000183141
0.0131239
0.000184095
0.013115
0.000183185
0.0130678
0.000181223
0.013008
0.000178575
0.0129459
0.000175397
0.0128848
0.000171765
0.0128256
0.000167721
0.0127681
0.000163304
0.0127123
0.000158551
0.0126582
0.000153499
0.0126058
0.000148182
0.0125552
0.000142634
0.0125065
0.000136886
0.0124596
0.000130966
0.0124147
0.000124899
0.0123719
0.000118709
0.0123311
0.000112415
0.0122924
0.000106036
0.0122559
9.95858e-05
0.0122215
9.30791e-05
0.0121892
8.65272e-05
0.0121591
7.994e-05
0.0121311
7.33255e-05
0.0121053
6.66908e-05
0.0120817
6.00413e-05
0.0120603
5.33815e-05
0.012041
4.67149e-05
0.0120239
4.0044e-05
0.0120089
3.33709e-05
0.0119961
2.66967e-05
0.0119854
2.00222e-05
0.0119768
1.33477e-05
0.0119704
6.67346e-06
0.0119662
0.011964
5.99145e-05
0.0090314
-2.89228e-05
9.94239e-05
0.0108296
0.000132113
0.0120544
0.000153113
0.0127279
0.000164331
0.0130267
0.000169309
0.0131189
0.000170801
0.0131135
0.000170422
0.0130682
0.000168981
0.0130095
0.000166846
0.0129481
0.000164179
0.0128875
0.000161052
0.0128287
0.00015751
0.0127716
0.000153589
0.0127162
0.000149325
0.0126625
0.000144752
0.0126104
0.000139906
0.0125601
0.000134819
0.0125115
0.000129521
0.0124649
0.00012404
0.0124202
0.000118402
0.0123775
0.000112628
0.0123369
0.00010674
0.0122983
0.000100756
0.0122619
9.46901e-05
0.0122275
8.85577e-05
0.0121953
8.23705e-05
0.0121653
7.61388e-05
0.0121374
6.98717e-05
0.0121116
6.35762e-05
0.012088
5.7259e-05
0.0120666
5.09247e-05
0.0120473
4.45779e-05
0.0120302
3.82219e-05
0.0120152
3.1859e-05
0.0120024
2.54917e-05
0.0119917
1.9121e-05
0.0119832
1.27482e-05
0.0119768
6.37406e-06
0.0119725
0.0119704
4.78923e-05
0.00900281
-1.92983e-05
8.56326e-05
0.0107919
0.000117512
0.0120225
0.00013854
0.0127069
0.000150154
0.0130151
0.000155639
0.0131134
0.000157657
0.0131114
0.000157796
0.013068
0.000156866
0.0130104
0.000155236
0.0129497
0.000153069
0.0128897
0.000150438
0.0128313
0.000147388
0.0127747
0.000143954
0.0127197
0.00014017
0.0126663
0.00013607
0.0126145
0.000131687
0.0125644
0.000127054
0.0125162
0.0001222
0.0124698
0.000117153
0.0124253
0.000111937
0.0123828
0.000106576
0.0123423
0.000101089
0.0123038
9.54955e-05
0.0122675
8.98111e-05
0.0122332
8.40501e-05
0.0122011
7.82252e-05
0.0121711
7.2347e-05
0.0121432
6.64251e-05
0.0121175
6.04676e-05
0.012094
5.44811e-05
0.0120726
4.84716e-05
0.0120533
4.24438e-05
0.0120362
3.64019e-05
0.0120213
3.03491e-05
0.0120085
2.42878e-05
0.0119978
1.82206e-05
0.0119893
1.21491e-05
0.0119829
6.07489e-06
0.0119786
0.0119765
3.61023e-05
0.00897621
-9.50302e-06
7.21031e-05
0.0107559
0.000103143
0.0119915
0.000124174
0.0126859
0.000136157
0.0130031
0.000142128
0.0131074
0.000144659
0.0131089
0.000145308
0.0130674
0.000144879
0.0130108
0.000143744
0.0129508
0.000142068
0.0128914
0.000139925
0.0128335
0.000137359
0.0127772
0.000134403
0.0127226
0.00013109
0.0126696
0.000127454
0.0126181
0.000123528
0.0125684
0.000119342
0.0125204
0.000114925
0.0124742
0.000110306
0.0124299
0.000105507
0.0123876
0.000100553
0.0123472
9.54639e-05
0.0123089
9.02578e-05
0.0122727
8.4951e-05
0.0122385
7.95586e-05
0.0122065
7.40934e-05
0.0121766
6.85664e-05
0.0121488
6.2988e-05
0.0121231
5.73666e-05
0.0120996
5.17096e-05
0.0120782
4.60235e-05
0.012059
4.03137e-05
0.0120419
3.45849e-05
0.012027
2.88412e-05
0.0120142
2.30857e-05
0.0120036
1.73214e-05
0.011995
1.15508e-05
0.0119886
5.77611e-06
0.0119844
0.0119823
2.47308e-05
0.00895095
5.31576e-07
5.88113e-05
0.0107218
8.90064e-05
0.0119613
0.000110016
0.0126649
0.000122336
0.0129908
0.000128776
0.013101
0.000131807
0.0131059
0.000132957
0.0130662
0.00013302
0.0130108
0.000132372
0.0129515
0.000131178
0.0128925
0.000129513
0.0128351
0.000127421
0.0127793
0.000124935
0.0127251
0.000122086
0.0126724
0.000118907
0.0126213
0.00011543
0.0125719
0.000111684
0.0125241
0.000107699
0.0124782
0.000103501
0.0124341
9.91151e-05
0.0123919
9.45637e-05
0.0123518
8.98673e-05
0.0123136
8.50446e-05
0.0122775
8.01123e-05
0.0122434
7.50853e-05
0.0122115
6.99767e-05
0.0121817
6.47989e-05
0.0121539
5.95617e-05
0.0121284
5.42747e-05
0.0121049
4.89457e-05
0.0120836
4.35816e-05
0.0120644
3.81887e-05
0.0120473
3.27721e-05
0.0120324
2.73366e-05
0.0120197
2.1886e-05
0.012009
1.6424e-05
0.0120005
1.09536e-05
0.0119941
5.47799e-06
0.0119899
0.0119877
1.36527e-05
0.00892836
8.93783e-06
4.57438e-05
0.0106897
7.5108e-05
0.0119319
9.60648e-05
0.0126439
0.00010869
0.0129781
0.00011558
0.0130941
0.000119102
0.0131024
0.000120742
0.0130646
0.000121289
0.0130102
0.000121118
0.0129516
0.000120398
0.0128933
0.000119204
0.0128363
0.000117578
0.0127809
0.000115553
0.0127271
0.00011316
0.0126748
0.000110431
0.012624
0.000107395
0.0125749
0.000104083
0.0125274
0.000100523
0.0124817
9.67414e-05
0.0124379
9.27624e-05
0.0123959
8.86089e-05
0.0123559
8.43014e-05
0.0123179
7.98582e-05
0.0122819
7.52967e-05
0.012248
7.06319e-05
0.0122162
6.58777e-05
0.0121864
6.10462e-05
0.0121588
5.61482e-05
0.0121332
5.11936e-05
0.0121098
4.61906e-05
0.0120886
4.11472e-05
0.0120694
3.60698e-05
0.0120524
3.09643e-05
0.0120375
2.58359e-05
0.0120248
2.06894e-05
0.0120142
1.55287e-05
0.0120057
1.03579e-05
0.0119993
5.18035e-06
0.011995
0.0119929
2.94201e-06
0.00890756
1.78577e-05
3.28852e-05
0.0106598
6.14508e-05
0.0119033
8.23165e-05
0.012623
9.52156e-05
0.0129652
0.00010254
0.0130868
0.000106541
0.0130984
0.000108663
0.0130624
0.000109685
0.0130092
0.000109984
0.0129513
0.00010973
0.0128935
0.000108997
0.012837
0.00010783
0.0127821
0.000106259
0.0127287
0.000104314
0.0126768
0.000102026
0.0126263
9.94257e-05
0.0125775
9.65409e-05
0.0125303
9.33999e-05
0.0124849
9.00288e-05
0.0124412
8.64519e-05
0.0123995
8.26913e-05
0.0123597
7.8768e-05
0.0123218
7.47006e-05
0.012286
7.05062e-05
0.0122522
6.62006e-05
0.0122205
6.17976e-05
0.0121908
5.73099e-05
0.0121633
5.27488e-05
0.0121378
4.81245e-05
0.0121145
4.3446e-05
0.0120933
3.87215e-05
0.0120742
3.39581e-05
0.0120572
2.91623e-05
0.0120423
2.434e-05
0.0120296
1.94964e-05
0.012019
1.46362e-05
0.0120105
9.76386e-06
0.0120042
4.88356e-06
0.0119999
0.0119978
-8.29206e-06
0.00888901
2.68407e-05
2.01875e-05
0.0106313
4.80209e-05
0.0118755
6.87652e-05
0.0126023
8.19107e-05
0.0129521
8.96556e-05
0.013079
9.41262e-05
0.0130939
9.67201e-05
0.0130599
9.82092e-05
0.0130077
9.89702e-05
0.0129506
9.91732e-05
0.0128933
9.88951e-05
0.0128373
9.81778e-05
0.0127828
9.70526e-05
0.0127298
9.55489e-05
0.0126783
9.3696e-05
0.0126282
9.15232e-05
0.0125797
8.90594e-05
0.0125328
8.63315e-05
0.0124876
8.33654e-05
0.0124442
8.01849e-05
0.0124027
7.68128e-05
0.0123631
7.32694e-05
0.0123254
6.95737e-05
0.0122897
6.57431e-05
0.012256
6.17931e-05
0.0122244
5.77384e-05
0.0121949
5.35918e-05
0.0121674
4.93652e-05
0.012142
4.5069e-05
0.0121188
4.07129e-05
0.0120976
3.63055e-05
0.0120786
3.18545e-05
0.0120616
2.73671e-05
0.0120468
2.28495e-05
0.0120341
1.83076e-05
0.0120235
1.37467e-05
0.0120151
9.17189e-06
0.0120087
4.588e-06
0.0120045
0.0120024
-1.93295e-05
0.00887256
3.57777e-05
7.63208e-06
0.0106043
3.48093e-05
0.0118483
5.5404e-05
0.0125817
6.87724e-05
0.0129387
7.69266e-05
0.0130709
8.18557e-05
0.013089
8.49126e-05
0.0130568
8.68607e-05
0.0130058
8.80763e-05
0.0129494
8.87294e-05
0.0128927
8.88976e-05
0.0128372
8.86231e-05
0.0127831
8.79363e-05
0.0127305
8.68662e-05
0.0126793
8.54412e-05
0.0126296
8.369e-05
0.0125814
8.16405e-05
0.0125348
7.93197e-05
0.0124899
7.6753e-05
0.0124468
7.39643e-05
0.0124055
7.09755e-05
0.012366
6.78075e-05
0.0123285
6.44795e-05
0.012293
6.10085e-05
0.0122595
5.74111e-05
0.012228
5.37015e-05
0.0121986
4.98933e-05
0.0121712
4.59984e-05
0.0121459
4.20282e-05
0.0121227
3.79925e-05
0.0121016
3.39004e-05
0.0120827
2.97601e-05
0.0120658
2.55794e-05
0.012051
2.13651e-05
0.0120383
1.71235e-05
0.0120278
1.28607e-05
0.0120193
8.58221e-06
0.012013
4.29347e-06
0.0120088
0.0120067
-3.00632e-05
0.00885799
4.46362e-05
-4.61515e-06
0.0105789
2.18373e-05
0.0118219
4.22273e-05
0.0125613
5.58002e-05
0.0129251
6.43536e-05
0.0130623
6.97294e-05
0.0130836
7.32403e-05
0.0130533
7.56405e-05
0.0130034
7.7303e-05
0.0129477
7.83985e-05
0.0128916
7.90058e-05
0.0128365
7.91665e-05
0.0127829
7.89112e-05
0.0127308
7.82673e-05
0.01268
7.72635e-05
0.0126306
7.59273e-05
0.0125827
7.4286e-05
0.0125365
7.23665e-05
0.0124918
7.01936e-05
0.012449
6.7791e-05
0.0124079
6.51811e-05
0.0123687
6.23843e-05
0.0123313
5.94197e-05
0.012296
5.6305e-05
0.0122626
5.30563e-05
0.0122313
4.96888e-05
0.012202
4.6216e-05
0.0121747
4.26504e-05
0.0121495
3.90036e-05
0.0121264
3.5286e-05
0.0121054
3.15071e-05
0.0120864
2.76758e-05
0.0120696
2.38001e-05
0.0120549
1.98874e-05
0.0120422
1.59448e-05
0.0120317
1.19786e-05
0.0120233
7.99511e-06
0.012017
4.00022e-06
0.0120128
0.0120107
-4.05942e-05
0.00884517
5.34134e-05
-1.64552e-05
0.0105547
9.14096e-06
0.0117963
2.92291e-05
0.0125412
4.29973e-05
0.0129114
5.19373e-05
0.0130534
5.77467e-05
0.0130778
6.17032e-05
0.0130493
6.45481e-05
0.0130005
6.66506e-05
0.0129456
6.81817e-05
0.01289
6.92207e-05
0.0128355
6.98096e-05
0.0127824
6.99783e-05
0.0127306
6.97542e-05
0.0126802
6.91644e-05
0.0126312
6.82366e-05
0.0125837
6.69975e-05
0.0125377
6.54734e-05
0.0124934
6.36889e-05
0.0124507
6.16677e-05
0.0124099
5.94315e-05
0.0123709
5.70012e-05
0.0123338
5.4396e-05
0.0122986
5.16335e-05
0.0122654
4.87303e-05
0.0122342
4.57015e-05
0.012205
4.25612e-05
0.0121778
3.93223e-05
0.0121527
3.59964e-05
0.0121297
3.25945e-05
0.0121088
2.91268e-05
0.0120899
2.56024e-05
0.0120731
2.20299e-05
0.0120584
1.84171e-05
0.0120459
1.47719e-05
0.0120354
1.11009e-05
0.012027
7.41084e-06
0.0120207
3.70848e-06
0.0120165
0.0120144
-5.09656e-05
0.00883402
6.21182e-05
-2.82226e-05
0.010532
-3.37363e-06
0.0117714
1.63967e-05
0.0125214
3.03698e-05
0.0128974
3.96773e-05
0.0130441
4.59066e-05
0.0130715
5.03012e-05
0.0130449
5.35843e-05
0.0129972
5.61197e-05
0.0129431
5.80793e-05
0.0128881
5.95429e-05
0.012834
6.05529e-05
0.0127813
6.11388e-05
0.01273
6.13274e-05
0.01268
6.11454e-05
0.0126314
6.06195e-05
0.0125842
5.97767e-05
0.0125385
5.86421e-05
0.0124945
5.72406e-05
0.0124521
5.55954e-05
0.0124115
5.37284e-05
0.0123728
5.16603e-05
0.0123358
4.94101e-05
0.0123008
4.69962e-05
0.0122678
4.44347e-05
0.0122367
4.17415e-05
0.0122077
3.89304e-05
0.0121806
3.60151e-05
0.0121557
3.30076e-05
0.0121327
2.99193e-05
0.0121119
2.67604e-05
0.0120931
2.35408e-05
0.0120763
2.02696e-05
0.0120617
1.69551e-05
0.0120492
1.36053e-05
0.0120387
1.02278e-05
0.0120304
6.82966e-06
0.0120241
3.41793e-06
0.0120199
0.0120178
-6.11965e-05
0.00882445
7.07582e-05
-3.98476e-05
0.0105106
-1.59913e-05
0.0117476
3.76251e-06
0.0125017
1.79198e-05
0.0128832
2.75713e-05
0.0130344
3.42084e-05
0.0130649
3.90352e-05
0.0130401
4.27492e-05
0.0129935
4.57106e-05
0.0129401
4.80918e-05
0.0128857
4.99734e-05
0.0128322
5.13978e-05
0.0127799
5.23939e-05
0.012729
5.29886e-05
0.0126794
5.32078e-05
0.0126312
5.3078e-05
0.0125843
5.2625e-05
0.012539
5.18744e-05
0.0124952
5.08503e-05
0.0124532
4.9576e-05
0.0124128
4.80733e-05
0.0123743
4.63627e-05
0.0123376
4.44636e-05
0.0123027
4.23939e-05
0.0122699
4.01708e-05
0.012239
3.78094e-05
0.01221
3.53249e-05
0.0121831
3.27304e-05
0.0121582
3.00385e-05
0.0121354
2.7261e-05
0.0121146
2.44088e-05
0.0120959
2.14919e-05
0.0120793
1.85198e-05
0.0120647
1.55017e-05
0.0120522
1.24456e-05
0.0120418
9.35972e-06
0.0120334
6.2518e-06
0.0120272
3.12938e-06
0.012023
0.0120209
-7.12906e-05
0.00881641
7.9335e-05
-5.12908e-05
0.0104906
-2.8273e-05
0.0117246
-8.72014e-06
0.0124821
5.66676e-06
0.0128689
1.5616e-05
0.0130245
2.2652e-05
0.0130579
2.7906e-05
0.0130349
3.20438e-05
0.0129894
3.54239e-05
0.0129367
3.822e-05
0.0128829
4.05129e-05
0.0128299
4.23445e-05
0.0127781
4.37447e-05
0.0127276
4.47389e-05
0.0126784
4.53529e-05
0.0126306
4.56127e-05
0.0125841
4.55439e-05
0.0125391
4.51714e-05
0.0124956
4.45196e-05
0.0124538
4.3611e-05
0.0124137
4.24679e-05
0.0123754
4.11104e-05
0.0123389
3.9558e-05
0.0123043
3.7829e-05
0.0122716
3.59401e-05
0.0122408
3.39076e-05
0.0122121
3.17459e-05
0.0121853
2.94691e-05
0.0121605
2.70902e-05
0.0121378
2.4621e-05
0.0121171
2.20729e-05
0.0120985
1.94564e-05
0.0120819
1.67814e-05
0.0120674
1.40573e-05
0.0120549
1.12931e-05
0.0120445
8.49705e-06
0.0120362
5.6775e-06
0.01203
2.84249e-06
0.0120259
0.0120238
-8.1248e-05
0.00880981
8.78472e-05
-6.25462e-05
0.0104719
-4.03365e-05
0.0117024
-2.10216e-05
0.0124628
-6.48009e-06
0.0128543
3.81415e-06
0.0130142
1.12401e-05
0.0130504
1.69146e-05
0.0130292
2.14671e-05
0.0129848
2.52601e-05
0.0129329
2.8465e-05
0.0128797
3.11622e-05
0.0128272
3.33951e-05
0.0127759
3.51921e-05
0.0127258
3.65794e-05
0.012677
3.7582e-05
0.0126295
3.82254e-05
0.0125834
3.85348e-05
0.0125388
3.85352e-05
0.0124956
3.82499e-05
0.0124541
3.77022e-05
0.0124143
3.69135e-05
0.0123762
3.59045e-05
0.0123399
3.46947e-05
0.0123055
3.3302e-05
0.012273
3.1744e-05
0.0122424
3.00364e-05
0.0122138
2.81947e-05
0.0121871
2.62327e-05
0.0121625
2.41637e-05
0.0121399
2.20001e-05
0.0121193
1.97535e-05
0.0121007
1.7435e-05
0.0120842
1.50548e-05
0.0120697
1.26228e-05
0.0120573
1.01483e-05
0.012047
7.64009e-06
0.0120387
5.10699e-06
0.0120325
2.55759e-06
0.0120284
0.0120263
-9.10715e-05
0.00880459
9.62943e-05
-7.36232e-05
0.0104545
-5.22052e-05
0.0116809
-3.31285e-05
0.0124437
-1.84911e-05
0.0128397
-7.85455e-06
0.0130035
6.28447e-09
0.0130426
6.06024e-06
0.0130231
1.10203e-05
0.0129799
1.522e-05
0.0129287
1.8827e-05
0.0128761
2.19222e-05
0.0128241
2.45493e-05
0.0127732
2.67374e-05
0.0127236
2.85113e-05
0.0126753
2.98964e-05
0.0126282
3.09173e-05
0.0125824
3.15991e-05
0.0125381
3.19664e-05
0.0124953
3.20427e-05
0.012454
3.18506e-05
0.0124145
3.14118e-05
0.0123766
3.07468e-05
0.0123406
2.9875e-05
0.0123064
2.8815e-05
0.012274
2.75837e-05
0.0122436
2.61978e-05
0.0122152
2.46724e-05
0.0121887
2.30219e-05
0.0121641
2.12599e-05
0.0121416
1.93992e-05
0.0121211
1.74516e-05
0.0121027
1.54286e-05
0.0120862
1.33408e-05
0.0120718
1.11986e-05
0.0120595
9.01158e-06
0.0120492
6.78917e-06
0.012041
4.54047e-06
0.0120348
2.27445e-06
0.0120307
0.0120286
-0.000100766
0.00880068
0.000104676
-8.45295e-05
0.0104382
-6.38827e-05
0.0116603
-4.50485e-05
0.0124249
-3.03011e-05
0.0128249
-1.93687e-05
0.0129926
-1.11508e-05
0.0130344
-4.66362e-06
0.0130166
7.04428e-07
0.0129745
5.30397e-06
0.0129241
9.30689e-06
0.0128721
1.27936e-05
0.0128206
1.5809e-05
0.0127702
1.83813e-05
0.0127211
2.05359e-05
0.0126731
2.22971e-05
0.0126264
2.36894e-05
0.012581
2.47381e-05
0.012537
2.54669e-05
0.0124945
2.58992e-05
0.0124536
2.60577e-05
0.0124143
2.59639e-05
0.0123767
2.56382e-05
0.0123409
2.51004e-05
0.0123069
2.43686e-05
0.0122748
2.34605e-05
0.0122445
2.23925e-05
0.0122162
2.11801e-05
0.0121899
1.9838e-05
0.0121655
1.838e-05
0.0121431
1.68191e-05
0.0121227
1.51679e-05
0.0121043
1.34377e-05
0.012088
1.164e-05
0.0120736
9.7852e-06
0.0120613
7.88346e-06
0.0120511
5.9446e-06
0.0120429
3.97815e-06
0.0120368
1.9934e-06
0.0120327
0.0120306
-0.000110336
0.00879802
0.000112994
-9.52684e-05
0.0104232
-7.53711e-05
0.0116404
-5.67852e-05
0.0124063
-4.1938e-05
0.0128101
-3.07168e-05
0.0129814
-2.21254e-05
0.0130258
-1.5248e-05
0.0130098
-9.48079e-06
0.0129687
-4.48729e-06
0.0129191
-9.73041e-08
0.0128677
3.77704e-06
0.0128167
7.17454e-06
0.0127668
1.0125e-05
0.0127181
1.26537e-05
0.0126706
1.47855e-05
0.0126243
1.65434e-05
0.0125793
1.79528e-05
0.0125356
1.90377e-05
0.0124934
1.98208e-05
0.0124528
2.03248e-05
0.0124138
2.05712e-05
0.0123765
2.05805e-05
0.0123409
2.0372e-05
0.0123071
1.99644e-05
0.0122752
1.93755e-05
0.0122451
1.86216e-05
0.012217
1.77188e-05
0.0121908
1.66818e-05
0.0121665
1.55247e-05
0.0121442
1.4261e-05
0.0121239
1.29031e-05
0.0121057
1.14633e-05
0.0120894
9.95295e-06
0.0120751
8.3831e-06
0.0120629
6.76428e-06
0.0120527
5.10668e-06
0.0120446
3.42024e-06
0.0120384
1.71477e-06
0.0120344
0.0120323
-0.000119784
0.00879655
0.000121248
-0.000105842
0.0104092
-8.66741e-05
0.0116212
-6.83414e-05
0.012388
-5.34061e-05
0.0127952
-4.19047e-05
0.0129699
-3.29529e-05
0.0130168
-2.56908e-05
0.0130025
-1.95339e-05
0.0129626
-1.41523e-05
0.0129138
-9.37679e-06
0.0128629
-5.12557e-06
0.0128125
-1.35349e-06
0.012763
1.96892e-06
0.0127148
4.86585e-06
0.0126677
7.36262e-06
0.0126218
9.47965e-06
0.0125771
1.12447e-05
0.0125339
1.26802e-05
0.012492
1.38087e-05
0.0124517
1.46532e-05
0.012413
1.52349e-05
0.0123759
1.55744e-05
0.0123406
1.5691e-05
0.012307
1.56036e-05
0.0122753
1.53299e-05
0.0122454
1.48866e-05
0.0122174
1.42897e-05
0.0121914
1.35544e-05
0.0121672
1.2695e-05
0.0121451
1.17252e-05
0.0121249
1.0658e-05
0.0121067
9.50583e-06
0.0120905
8.28018e-06
0.0120764
6.99277e-06
0.0120642
5.65442e-06
0.0120541
4.27569e-06
0.0120459
2.86692e-06
0.0120399
1.43844e-06
0.0120358
0.0120338
-0.000129112
0.00879623
0.000129436
-0.000116253
0.0103964
-9.77955e-05
0.0116028
-7.9719e-05
0.0123699
-6.47053e-05
0.0127801
-5.29349e-05
0.0129581
-4.36332e-05
0.0130075
-3.5993e-05
0.0129949
-2.94534e-05
0.012956
-2.3691e-05
0.012908
-1.85389e-05
0.0128578
-1.39142e-05
0.0128078
-9.77241e-06
0.0127589
-6.08446e-06
0.0127111
-2.82603e-06
0.0126644
2.42467e-08
0.0126189
2.49939e-06
0.0125747
4.61448e-06
0.0125317
6.39552e-06
0.0124902
7.86392e-06
0.0124502
9.0441e-06
0.0124118
9.95632e-06
0.012375
1.06213e-05
0.0123399
1.10586e-05
0.0123066
1.12872e-05
0.012275
1.13247e-05
0.0122454
1.11882e-05
0.0122176
1.08936e-05
0.0121917
1.04566e-05
0.0121677
9.89173e-06
0.0121457
9.21273e-06
0.0121256
8.43327e-06
0.0121075
7.5657e-06
0.0120914
6.62225e-06
0.0120773
5.61467e-06
0.0120652
4.55424e-06
0.0120551
3.45191e-06
0.012047
2.31838e-06
0.012041
1.16413e-06
0.012037
0.0120349
-0.000138323
0.00879699
0.00013756
-0.000126504
0.0103846
-0.000108738
0.011585
-9.09194e-05
0.0123521
-7.5836e-05
0.0127651
-6.38079e-05
0.0129461
-5.41652e-05
0.0129979
-4.61547e-05
0.0129868
-3.92389e-05
0.0129491
-3.31023e-05
0.0129019
-2.75796e-05
0.0128522
-2.25882e-05
0.0128028
-1.80833e-05
0.0127544
-1.40356e-05
0.012707
-1.04205e-05
0.0126608
-7.21394e-06
0.0126157
-4.39439e-06
0.0125718
-1.93648e-06
0.0125293
1.8171e-07
0.0124881
1.98746e-06
0.0124484
3.4981e-06
0.0124103
4.73636e-06
0.0123737
5.72229e-06
0.0123389
6.47593e-06
0.0123058
7.01618e-06
0.0122745
7.36095e-06
0.012245
7.52722e-06
0.0122174
7.53156e-06
0.0121917
7.38939e-06
0.0121678
7.11567e-06
0.0121459
6.72454e-06
0.012126
6.22959e-06
0.012108
5.64384e-06
0.012092
4.97967e-06
0.012078
4.24921e-06
0.0120659
3.46408e-06
0.0120559
2.63559e-06
0.0120479
1.77479e-06
0.0120418
8.92644e-07
0.0120378
0.0120358
-0.000147418
0.00879879
0.000145617
-0.000136598
0.0103737
-0.000119504
0.0115679
-0.000101944
0.0123345
-8.67985e-05
0.0127499
-7.45231e-05
0.0129338
-6.45484e-05
0.0129879
-5.61753e-05
0.0129785
-4.88899e-05
0.0129418
-4.23856e-05
0.0128954
-3.64987e-05
0.0128464
-3.11466e-05
0.0127975
-2.62846e-05
0.0127495
-2.18832e-05
0.0127026
-1.79179e-05
0.0126568
-1.43655e-05
0.0126122
-1.12027e-05
0.0125687
-8.40592e-06
0.0125265
-5.95142e-06
0.0124856
-3.81818e-06
0.0124463
-1.9827e-06
0.0124084
-4.24723e-07
0.0123722
8.77687e-07
0.0123376
1.94374e-06
0.0123048
2.79151e-06
0.0122737
3.43958e-06
0.0122444
3.9051e-06
0.0122169
4.20432e-06
0.0121914
4.35364e-06
0.0121677
4.3676e-06
0.0121459
4.261e-06
0.0121261
4.04758e-06
0.0121082
3.74071e-06
0.0120923
3.35293e-06
0.0120784
2.89681e-06
0.0120664
2.38428e-06
0.0120564
1.82698e-06
0.0120484
1.23631e-06
0.0120424
6.23589e-07
0.0120384
0.0120365
-0.000156398
0.00880158
0.000153608
-0.000146537
0.0103639
-0.000130096
0.0115515
-0.000112793
0.0123172
-9.75932e-05
0.0127347
-8.50801e-05
0.0129213
-7.4782e-05
0.0129776
-6.6054e-05
0.0129697
-5.84061e-05
0.0129342
-5.15401e-05
0.0128885
-4.52952e-05
0.0128401
-3.95885e-05
0.0127918
-3.43755e-05
0.0127443
-2.96265e-05
0.0126979
-2.53171e-05
0.0126525
-2.14241e-05
0.0126083
-1.79242e-05
0.0125652
-1.47945e-05
0.0125234
-1.20117e-05
0.0124829
-9.55328e-06
0.0124438
-7.39746e-06
0.0124063
-5.52272e-06
0.0123703
-3.9089e-06
0.012336
-2.53617e-06
0.0123034
-1.38552e-06
0.0122725
-4.38974e-07
0.0122434
3.21319e-07
0.0122162
9.12492e-07
0.0121908
1.34952e-06
0.0121672
1.64816e-06
0.0121456
1.82284e-06
0.0121259
1.88781e-06
0.0121082
1.85682e-06
0.0120923
1.74246e-06
0.0120785
1.55784e-06
0.0120666
1.31515e-06
0.0120567
1.02632e-06
0.0120487
7.03114e-07
0.0120428
3.57166e-07
0.0120388
0.0120368
-0.000165264
0.00880532
0.000161531
-0.000156322
0.0103549
-0.000140515
0.0115357
-0.000123467
0.0123002
-0.00010822
0.0127195
-9.54785e-05
0.0129086
-8.48655e-05
0.012967
-7.57901e-05
0.0129607
-6.77865e-05
0.0129262
-6.05651e-05
0.0128813
-5.39681e-05
0.0128335
-4.79132e-05
0.0127857
-4.23551e-05
0.0127388
-3.72645e-05
0.0126928
-3.26169e-05
0.0126479
-2.8389e-05
0.012604
-2.45583e-05
0.0125614
-2.11009e-05
0.0125199
-1.79947e-05
0.0124798
-1.52169e-05
0.012441
-1.27457e-05
0.0124038
-1.05599e-05
0.0123681
-8.63891e-06
0.0123341
-6.96329e-06
0.0123017
-5.51349e-06
0.0122711
-4.27171e-06
0.0122422
-3.22006e-06
0.0122151
-2.34194e-06
0.0121899
-1.62092e-06
0.0121665
-1.04174e-06
0.012145
-5.89202e-07
0.0121255
-2.49433e-07
0.0121078
-8.545e-09
0.0120921
1.48246e-07
0.0120783
2.32471e-07
0.0120665
2.56859e-07
0.0120566
2.33763e-07
0.0120487
1.753e-07
0.0120428
9.34363e-08
0.0120389
0.0120369
-0.000174018
0.00880995
0.000169385
-0.000165957
0.0103469
-0.000150762
0.0115205
-0.000133968
0.0122834
-0.00011868
0.0127042
-0.000105718
0.0128956
-9.47985e-05
0.0129561
-8.53829e-05
0.0129513
-7.70299e-05
0.0129178
-6.94598e-05
0.0128737
-6.2517e-05
0.0128266
-5.61198e-05
0.0127793
-5.0223e-05
0.0127329
-4.47965e-05
0.0126874
-3.98164e-05
0.0126429
-3.52595e-05
0.0125995
-3.1103e-05
0.0125572
-2.73241e-05
0.0125161
-2.38997e-05
0.0124763
-2.08078e-05
0.0124379
-1.80263e-05
0.012401
-1.55343e-05
0.0123656
-1.33112e-05
0.0123319
-1.13369e-05
0.0122997
-9.59269e-06
0.0122693
-8.05999e-06
0.0122407
-6.72118e-06
0.0122138
-5.55926e-06
0.0121887
-4.5579e-06
0.0121655
-3.70121e-06
0.0121442
-2.97433e-06
0.0121247
-2.36224e-06
0.0121072
-1.85115e-06
0.0120916
-1.42762e-06
0.0120779
-1.07813e-06
0.0120661
-7.89831e-07
0.0120564
-5.50192e-07
0.0120485
-3.46827e-07
0.0120426
-1.67474e-07
0.0120387
0.0120367
-0.00018266
0.00881544
0.00017717
-0.000175441
0.0103397
-0.00016084
0.0115059
-0.000144295
0.0122668
-0.000128971
0.0126889
-0.000115798
0.0128824
-0.00010458
0.0129449
-9.48318e-05
0.0129415
-8.61364e-05
0.0129091
-7.82236e-05
0.0128658
-7.09411e-05
0.0128193
-6.42076e-05
0.0127726
-5.79776e-05
0.0127266
-5.22215e-05
0.0126816
-4.69149e-05
0.0126376
-4.20347e-05
0.0125946
-3.75585e-05
0.0125527
-3.3463e-05
0.012512
-2.97259e-05
0.0124726
-2.6325e-05
0.0124345
-2.32385e-05
0.0123979
-2.04449e-05
0.0123628
-1.79241e-05
0.0123293
-1.56561e-05
0.0122975
-1.36217e-05
0.0122673
-1.18024e-05
0.0122388
-1.01804e-05
0.0122122
-8.73861e-06
0.0121873
-7.46049e-06
0.0121642
-6.33008e-06
0.0121431
-5.33192e-06
0.0121237
-4.45154e-06
0.0121063
-3.67426e-06
0.0120908
-2.98642e-06
0.0120772
-2.3744e-06
0.0120655
-1.82507e-06
0.0120558
-1.32558e-06
0.012048
-8.63251e-07
0.0120422
-4.25418e-07
0.0120383
0.0120363
-0.00019119
0.00882175
0.000184884
-0.000184777
0.0103332
-0.000170748
0.0114918
-0.000154449
0.0122505
-0.000139095
0.0126735
-0.000125718
0.012869
-0.00011421
0.0129334
-0.000104136
0.0129314
-9.51047e-05
0.0129001
-8.68557e-05
0.0128575
-7.92396e-05
0.0128117
-7.21759e-05
0.0127655
-6.5619e-05
0.0127201
-5.95389e-05
0.0126755
-5.39114e-05
0.012632
-4.87137e-05
0.0125894
-4.3923e-05
0.0125479
-3.95168e-05
0.0125076
-3.54724e-05
0.0124686
-3.17677e-05
0.0124308
-2.83809e-05
0.0123945
-2.5291e-05
0.0123597
-2.24771e-05
0.0123265
-1.99199e-05
0.0122949
-1.75998e-05
0.012265
-1.5498e-05
0.0122367
-1.3597e-05
0.0122103
-1.18792e-05
0.0121856
-1.03281e-05
0.0121627
-8.92759e-06
0.0121417
-7.66214e-06
0.0121225
-6.51641e-06
0.0121052
-5.47617e-06
0.0120898
-4.52727e-06
0.0120763
-3.65584e-06
0.0120647
-2.84853e-06
0.012055
-2.09217e-06
0.0120472
-1.37384e-06
0.0120414
-6.80681e-07
0.0120376
0.0120356
-0.000199609
0.00882883
0.000192526
-0.000193966
0.0103276
-0.000180489
0.0114784
-0.000164432
0.0122345
-0.000149052
0.0126581
-0.000135478
0.0128555
-0.000123687
0.0129216
-0.000113295
0.012921
-0.000103935
0.0128907
-9.53554e-05
0.012849
-8.74118e-05
0.0128037
-8.00238e-05
0.0127582
-7.31457e-05
0.0127132
-6.67477e-05
0.0126691
-6.08053e-05
0.012626
-5.52957e-05
0.0125839
-5.01964e-05
0.0125428
-4.54848e-05
0.0125029
-4.11383e-05
0.0124642
-3.7135e-05
0.0124268
-3.34532e-05
0.0123909
-3.00715e-05
0.0123564
-2.69698e-05
0.0123234
-2.41276e-05
0.0122921
-2.15259e-05
0.0122624
-1.91461e-05
0.0122344
-1.69701e-05
0.0122081
-1.49804e-05
0.0121836
-1.31601e-05
0.0121609
-1.14931e-05
0.01214
-9.96361e-06
0.0121209
-8.55631e-06
0.0121038
-7.25646e-06
0.0120885
-6.04976e-06
0.0120751
-4.92211e-06
0.0120635
-3.85992e-06
0.0120539
-2.84977e-06
0.0120462
-1.87844e-06
0.0120405
-9.32961e-07
0.0120366
0.0120347
-0.000207917
0.00883665
0.000200095
-0.000203008
0.0103227
-0.000190064
0.0114654
-0.000174242
0.0122187
-0.00015884
0.0126427
-0.000145077
0.0128417
-0.000133012
0.0129095
-0.000122308
0.0129103
-0.000112625
0.0128811
-0.000103722
0.0128401
-9.54568e-05
0.0127955
-8.77506e-05
0.0127504
-8.05574e-05
0.012706
-7.38472e-05
0.0126624
-6.75957e-05
0.0126198
-6.17799e-05
0.0125781
-5.63776e-05
0.0125374
-5.1366e-05
0.0124979
-4.67229e-05
0.0124596
-4.24262e-05
0.0124225
-3.84542e-05
0.0123869
-3.47859e-05
0.0123527
-3.14006e-05
0.01232
-2.82783e-05
0.0122889
-2.53998e-05
0.0122595
-2.2746e-05
0.0122317
-2.0299e-05
0.0122056
-1.80414e-05
0.0121813
-1.59559e-05
0.0121588
-1.40262e-05
0.0121381
-1.22363e-05
0.0121192
-1.05708e-05
0.0121021
-9.01472e-06
0.0120869
-7.55352e-06
0.0120736
-6.17291e-06
0.0120622
-4.85901e-06
0.0120526
-3.59818e-06
0.012045
-2.37695e-06
0.0120392
-1.18196e-06
0.0120354
0.0120335
-0.000216114
0.00884518
0.00020759
-0.000211907
0.0103185
-0.000199473
0.011453
-0.000183882
0.0122031
-0.00016846
0.0126273
-0.000154515
0.0128278
-0.000142182
0.0128972
-0.000131174
0.0128993
-0.000121175
0.0128711
-0.000111955
0.0128308
-0.000103374
0.0127869
-9.53557e-05
0.0127424
-8.78531e-05
0.0126985
-8.08367e-05
0.0126554
-7.42816e-05
0.0126132
-6.81655e-05
0.012572
-6.24655e-05
0.0125317
-5.71597e-05
0.0124926
-5.22252e-05
0.0124546
-4.76404e-05
0.012418
-4.33834e-05
0.0123826
-3.94333e-05
0.0123487
-3.57693e-05
0.0123164
-3.23714e-05
0.0122855
-2.92203e-05
0.0122563
-2.62971e-05
0.0122288
-2.35836e-05
0.0122029
-2.10618e-05
0.0121788
-1.87149e-05
0.0121564
-1.65261e-05
0.0121359
-1.44794e-05
0.0121171
-1.25594e-05
0.0121002
-1.07507e-05
0.0120851
-9.03823e-06
0.0120719
-7.40794e-06
0.0120605
-5.84556e-06
0.0120511
-4.33723e-06
0.0120435
-2.86924e-06
0.0120378
-1.42798e-06
0.012034
0.0120321
-0.000224202
0.00885437
0.00021501
-0.000220661
0.0103149
-0.000208718
0.011441
-0.00019335
0.0121877
-0.000177912
0.0126119
-0.000163792
0.0128136
-0.000151198
0.0128846
-0.000139893
0.012888
-0.000129584
0.0128607
-0.000120053
0.0128213
-0.000111163
0.012778
-0.000102838
0.0127341
-9.50324e-05
0.0126907
-8.77155e-05
0.0126481
-8.0863e-05
0.0126064
-7.44519e-05
0.0125656
-6.84601e-05
0.0125257
-6.28651e-05
0.012487
-5.76447e-05
0.0124494
-5.27769e-05
0.0124131
-4.824e-05
0.0123781
-4.40129e-05
0.0123445
-4.00749e-05
0.0123124
-3.64062e-05
0.0122819
-3.29871e-05
0.0122529
-2.97986e-05
0.0122256
-2.68224e-05
0.0121999
-2.40408e-05
0.012176
-2.14364e-05
0.0121538
-1.89926e-05
0.0121334
-1.66931e-05
0.0121148
-1.45217e-05
0.012098
-1.24635e-05
0.012083
-1.05036e-05
0.0120699
-8.62693e-06
0.0120587
-6.81936e-06
0.0120492
-5.06676e-06
0.0120417
-3.3552e-06
0.0120361
-1.67084e-06
0.0120323
0.0120304
-0.000232178
0.00886419
0.000222355
-0.000229272
0.010312
-0.0002178
0.0114296
-0.000202649
0.0121726
-0.000187196
0.0125964
-0.000172906
0.0127993
-0.000160059
0.0128717
-0.000148464
0.0128764
-0.000137852
0.0128501
-0.000128015
0.0128115
-0.000118823
0.0127688
-0.000110198
0.0127255
-0.000102094
0.0126826
-9.44828e-05
0.0126405
-8.73383e-05
0.0125992
-8.06383e-05
0.0125589
-7.43603e-05
0.0125195
-6.84817e-05
0.0124811
-6.29806e-05
0.0124439
-5.7835e-05
0.0124079
-5.30232e-05
0.0123733
-4.85242e-05
0.01234
-4.43173e-05
0.0123082
-4.03821e-05
0.0122779
-3.66993e-05
0.0122492
-3.325e-05
0.0122221
-3.00155e-05
0.0121967
-2.69781e-05
0.012173
-2.41202e-05
0.012151
-2.1425e-05
0.0121307
-1.8876e-05
0.0121123
-1.64574e-05
0.0120956
-1.41535e-05
0.0120807
-1.19492e-05
0.0120677
-9.82964e-06
0.0120565
-7.7802e-06
0.0120472
-5.7865e-06
0.0120397
-3.83472e-06
0.0120341
-1.91049e-06
0.0120304
0.0120285
-0.000240045
0.00887461
0.000229623
-0.000237741
0.0103097
-0.000226718
0.0114185
-0.000211777
0.0121576
-0.000196312
0.0125809
-0.000181859
0.0127849
-0.000168765
0.0128586
-0.000156886
0.0128646
-0.000145978
0.0128392
-0.000135842
0.0128013
-0.000126353
0.0127593
-0.000117433
0.0127166
-0.000109038
0.0126742
-0.000101138
0.0126326
-9.37075e-05
0.0125918
-8.6724e-05
0.0125519
-8.01651e-05
0.0125129
-7.40086e-05
0.012475
-6.82322e-05
0.0124381
-6.2814e-05
0.0124025
-5.77324e-05
0.0123682
-5.29664e-05
0.0123353
-4.84949e-05
0.0123037
-4.42983e-05
0.0122737
-4.03565e-05
0.0122453
-3.66507e-05
0.0122184
-3.31621e-05
0.0121932
-2.98729e-05
0.0121697
-2.67655e-05
0.0121479
-2.38229e-05
0.0121278
-2.10284e-05
0.0121095
-1.8366e-05
0.0120929
-1.582e-05
0.0120782
-1.33749e-05
0.0120653
-1.10158e-05
0.0120542
-8.72789e-06
0.0120449
-6.49676e-06
0.0120375
-4.30772e-06
0.0120319
-2.14688e-06
0.0120282
0.0120264
-0.000247802
0.0088856
0.000236813
-0.000246069
0.010308
-0.000235475
0.0114079
-0.000220736
0.0121429
-0.00020526
0.0125655
-0.000190648
0.0127703
-0.000177314
0.0128453
-0.000165159
0.0128524
-0.000153961
0.012828
-0.000143533
0.0127909
-0.000133752
0.0127495
-0.000124544
0.0127073
-0.000115864
0.0126655
-0.00010768
0.0126244
-9.99696e-05
0.0125841
-9.27083e-05
0.0125446
-8.58743e-05
0.0125061
-7.94452e-05
0.0124685
-7.33988e-05
0.0124321
-6.77134e-05
0.0123968
-6.23672e-05
0.0123629
-5.73389e-05
0.0123302
-5.2608e-05
0.012299
-4.81543e-05
0.0122693
-4.3958e-05
0.0122411
-4.00001e-05
0.0122145
-3.62617e-05
0.0121895
-3.2725e-05
0.0121662
-2.93721e-05
0.0121445
-2.61859e-05
0.0121246
-2.31497e-05
0.0121064
-2.02473e-05
0.01209
-1.74627e-05
0.0120754
-1.47804e-05
0.0120626
-1.21852e-05
0.0120516
-9.66224e-06
0.0120424
-7.19671e-06
0.012035
-4.7741e-06
0.0120295
-2.37997e-06
0.0120258
0.012024
-0.000255448
0.00889712
0.000243925
-0.000254255
0.0103068
-0.00024407
0.0113978
-0.000229526
0.0121283
-0.000214039
0.01255
-0.000199274
0.0127555
-0.000185707
0.0128317
-0.000173281
0.01284
-0.000161799
0.0128165
-0.000151085
0.0127802
-0.00014102
0.0127395
-0.000131529
0.0126979
-0.00012257
0.0126566
-0.000114109
0.0126159
-0.000106124
0.0125761
-9.85907e-05
0.0125371
-9.14869e-05
0.012499
-8.47909e-05
0.0124618
-7.848e-05
0.0124258
-7.25324e-05
0.0123909
-6.69264e-05
0.0123573
-6.16412e-05
0.0123249
-5.66556e-05
0.012294
-5.19496e-05
0.0122646
-4.75035e-05
0.0122366
-4.32978e-05
0.0122103
-3.93141e-05
0.0121855
-3.55337e-05
0.0121624
-3.19394e-05
0.0121409
-2.85136e-05
0.0121212
-2.52394e-05
0.0121032
-2.21008e-05
0.0120869
-1.90813e-05
0.0120724
-1.61654e-05
0.0120597
-1.33377e-05
0.0120487
-1.05831e-05
0.0120396
-7.88668e-06
0.0120323
-5.23377e-06
0.0120268
-2.60959e-06
0.0120232
0.0120214
-0.000262983
0.00890915
0.000250957
-0.000262301
0.0103061
-0.000252505
0.011388
-0.000238147
0.012114
-0.00022265
0.0125345
-0.000207736
0.0127406
-0.000193943
0.0128179
-0.000181253
0.0128273
-0.000169494
0.0128048
-0.0001585
0.0127692
-0.000148156
0.0127291
-0.000138389
0.0126881
-0.000129156
0.0126473
-0.000120424
0.0126072
-0.00011217
0.0125678
-0.00010437
0.0125293
-9.70029e-05
0.0124916
-9.00451e-05
0.0124549
-8.34749e-05
0.0124192
-7.72705e-05
0.0123847
-7.14101e-05
0.0123514
-6.58727e-05
0.0123194
-6.06373e-05
0.0122888
-5.56837e-05
0.0122596
-5.09921e-05
0.012232
-4.65432e-05
0.0122058
-4.23182e-05
0.0121813
-3.82988e-05
0.0121584
-3.4467e-05
0.0121371
-3.08056e-05
0.0121175
-2.72975e-05
0.0120996
-2.39262e-05
0.0120835
-2.06756e-05
0.0120691
-1.75297e-05
0.0120565
-1.4473e-05
0.0120457
-1.14903e-05
0.0120367
-8.56645e-06
0.0120294
-5.68665e-06
0.012024
-2.83606e-06
0.0120203
0.0120185
-0.000270407
0.00892165
0.000257909
-0.000270207
0.0103059
-0.00026078
0.0113785
-0.000246599
0.0120998
-0.000231092
0.012519
-0.000216034
0.0127255
-0.000202021
0.0128039
-0.000189074
0.0128143
-0.000177044
0.0127928
-0.000165776
0.0127579
-0.000155159
0.0127185
-0.000145122
0.0126781
-0.000135621
0.0126378
-0.000126624
0.0125982
-0.000118107
0.0125593
-0.000110047
0.0125212
-0.000102421
0.012484
-9.52072e-05
0.0124477
-8.83832e-05
0.0124124
-8.19272e-05
0.0123782
-7.58175e-05
0.0123453
-7.00328e-05
0.0123136
-6.45524e-05
0.0122833
-5.9356e-05
0.0122544
-5.44237e-05
0.012227
-4.9736e-05
0.0122011
-4.52741e-05
0.0121768
-4.10197e-05
0.0121541
-3.69547e-05
0.012133
-3.30616e-05
0.0121136
-2.93234e-05
0.0120959
-2.57234e-05
0.0120799
-2.22452e-05
0.0120657
-1.8873e-05
0.0120532
-1.55909e-05
0.0120424
-1.23836e-05
0.0120334
-9.23588e-06
0.0120263
-6.13266e-06
0.0120209
-3.05909e-06
0.0120173
0.0120155
-0.000277721
0.00893459
0.00026478
-0.000277973
0.0103062
-0.000268894
0.0113695
-0.000254882
0.0120858
-0.000239365
0.0125035
-0.000224168
0.0127103
-0.000209939
0.0127897
-0.000196743
0.0128011
-0.000184449
0.0127805
-0.000172913
0.0127464
-0.00016203
0.0127076
-0.000151728
0.0126678
-0.000141965
0.0126281
-0.000132709
0.012589
-0.000123935
0.0125506
-0.00011562
0.0125129
-0.000107741
0.0124761
-0.000100277
0.0124402
-9.32043e-05
0.0124053
-8.65019e-05
0.0123715
-8.0148e-05
0.0123389
-7.41212e-05
0.0123076
-6.84007e-05
0.0122776
-6.29661e-05
0.012249
-5.77977e-05
0.0122219
-5.28756e-05
0.0121962
-4.81813e-05
0.0121721
-4.36961e-05
0.0121496
-3.94018e-05
0.0121287
-3.52812e-05
0.0121095
-3.13168e-05
0.0120919
-2.74919e-05
0.0120761
-2.37901e-05
0.012062
-2.01951e-05
0.0120496
-1.66914e-05
0.0120389
-1.3263e-05
0.01203
-9.89488e-06
0.0120229
-6.57173e-06
0.0120175
-3.27843e-06
0.012014
0.0120122
-0.000284922
0.00894794
0.000271568
-0.000285599
0.0103069
-0.000276849
0.0113607
-0.000262996
0.0120719
-0.000247469
0.0124879
-0.000232137
0.012695
-0.0002177
0.0127753
-0.000204259
0.0127877
-0.000191707
0.0127679
-0.00017991
0.0127346
-0.000168766
0.0126965
-0.000158207
0.0126572
-0.000148188
0.012618
-0.000138678
0.0125795
-0.000129653
0.0125415
-0.000121088
0.0125043
-0.000112963
0.012468
-0.000105253
0.0124325
-9.79377e-05
0.012398
-9.09942e-05
0.0123646
-8.44013e-05
0.0123323
-7.81372e-05
0.0123013
-7.21815e-05
0.0122716
-6.65136e-05
0.0122433
-6.11135e-05
0.0122165
-5.59618e-05
0.0121911
-5.10392e-05
0.0121672
-4.63276e-05
0.0121449
-4.18086e-05
0.0121242
-3.74642e-05
0.0121052
-3.32777e-05
0.0120878
-2.92316e-05
0.012072
-2.53099e-05
0.012058
-2.1496e-05
0.0120457
-1.77739e-05
0.0120352
-1.41283e-05
0.0120264
-1.05433e-05
0.0120193
-7.00379e-06
0.012014
-3.49439e-06
0.0120105
0.0120087
-0.000292011
0.00896168
0.000278272
-0.000293084
0.0103079
-0.000284644
0.0113523
-0.000270942
0.0120582
-0.000255404
0.0124724
-0.00023994
0.0126796
-0.0002253
0.0127606
-0.000211621
0.012774
-0.000198818
0.0127551
-0.000186766
0.0127225
-0.000175368
0.0126851
-0.000164557
0.0126464
-0.000154288
0.0126078
-0.000144531
0.0125697
-0.00013526
0.0125323
-0.000126452
0.0124955
-0.000118085
0.0124596
-0.000110136
0.0124245
-0.000102583
0.0123904
-9.54036e-05
0.0123574
-8.85766e-05
0.0123255
-8.20806e-05
0.0122948
-7.58947e-05
0.0122655
-6.99981e-05
0.0122374
-6.43711e-05
0.0122108
-5.8994e-05
0.0121857
-5.3848e-05
0.012162
-4.89139e-05
0.01214
-4.4174e-05
0.0121195
-3.96102e-05
0.0121006
-3.52052e-05
0.0120834
-3.09423e-05
0.0120678
-2.68044e-05
0.0120539
-2.27752e-05
0.0120417
-1.88389e-05
0.0120312
-1.49794e-05
0.0120225
-1.11812e-05
0.0120155
-7.42879e-06
0.0120103
-3.70682e-06
0.0120067
0.012005
-0.000298987
0.00897578
0.000284891
-0.00030043
0.0103094
-0.000292279
0.0113441
-0.000278719
0.0120447
-0.000263168
0.0124568
-0.000247576
0.012664
-0.00023274
0.0127458
-0.00021883
0.0127601
-0.000205781
0.0127421
-0.000193481
0.0127102
-0.000181835
0.0126734
-0.000170778
0.0126353
-0.000160265
0.0125973
-0.000150267
0.0125597
-0.000140756
0.0125227
-0.000131711
0.0124865
-0.000123108
0.012451
-0.000114925
0.0124164
-0.000107139
0.0123827
-9.97297e-05
0.01235
-9.2674e-05
0.0123185
-8.59509e-05
0.0122881
-7.95394e-05
0.012259
-7.34191e-05
0.0122313
-6.75699e-05
0.012205
-6.19721e-05
0.0121801
-5.66066e-05
0.0121567
-5.14547e-05
0.0121348
-4.64981e-05
0.0121145
-4.1719e-05
0.0120958
-3.71e-05
0.0120787
-3.26236e-05
0.0120633
-2.82735e-05
0.0120495
-2.40328e-05
0.0120375
-1.98857e-05
0.0120271
-1.58161e-05
0.0120184
-1.18083e-05
0.0120115
-7.84667e-06
0.0120063
-3.9157e-06
0.0120028
0.0120011
-0.000305848
0.0089902
0.000291424
-0.000307635
0.0103112
-0.000299755
0.0113362
-0.000286327
0.0120312
-0.000270763
0.0124413
-0.000255047
0.0126482
-0.000240018
0.0127307
-0.000225883
0.012746
-0.000212597
0.0127288
-0.000200054
0.0126977
-0.000188166
0.0126615
-0.000176869
0.012624
-0.000166119
0.0125865
-0.000155885
0.0125495
-0.000146141
0.012513
-0.000136864
0.0124772
-0.00012803
0.0124422
-0.000119619
0.0124079
-0.000111607
0.0123746
-0.000103972
0.0123424
-9.66928e-05
0.0123112
-8.97477e-05
0.0122812
-8.31157e-05
0.0122524
-7.67764e-05
0.012225
-7.07096e-05
0.0121989
-6.48956e-05
0.0121743
-5.93152e-05
0.0121511
-5.39498e-05
0.0121294
-4.87809e-05
0.0121093
-4.37904e-05
0.0120908
-3.8961e-05
0.0120739
-3.42754e-05
0.0120586
-2.97167e-05
0.012045
-2.52686e-05
0.012033
-2.09145e-05
0.0120227
-1.66384e-05
0.0120142
-1.24247e-05
0.0120073
-8.25737e-06
0.0120021
-4.12087e-06
0.0119987
0.011997
-0.000312595
0.00900493
0.000297869
-0.000314698
0.0103133
-0.000307071
0.0113286
-0.000293766
0.0120179
-0.000278187
0.0124257
-0.00026235
0.0126324
-0.000247135
0.0127155
-0.000232782
0.0127316
-0.000219263
0.0127153
-0.000206485
0.0126849
-0.000194361
0.0126494
-0.00018283
0.0126125
-0.000171849
0.0125755
-0.000161385
0.012539
-0.000151413
0.012503
-0.00014191
0.0124677
-0.000132853
0.0124331
-0.000124218
0.0123993
-0.000115985
0.0123664
-0.00010813
0.0123345
-0.000100633
0.0123037
-9.34707e-05
0.012274
-8.66233e-05
0.0122456
-8.00697e-05
0.0122184
-7.379e-05
0.0121926
-6.77644e-05
0.0121682
-6.19737e-05
0.0121453
-5.63989e-05
0.0121239
-5.10216e-05
0.012104
-4.58241e-05
0.0120856
-4.07885e-05
0.0120689
-3.58976e-05
0.0120537
-3.11344e-05
0.0120402
-2.64823e-05
0.0120284
-2.1925e-05
0.0120182
-1.74462e-05
0.0120097
-1.30301e-05
0.0120029
-8.66085e-06
0.0119978
-4.32279e-06
0.0119943
0.0119926
-0.000319225
0.00901993
0.000304224
-0.00032162
0.0103157
-0.000314226
0.0113212
-0.000301035
0.0120047
-0.000285439
0.0124101
-0.000269485
0.0126165
-0.00025409
0.0127001
-0.000239524
0.0127171
-0.000225779
0.0127015
-0.000212772
0.0126719
-0.00020042
0.0126371
-0.000188661
0.0126007
-0.000177454
0.0125643
-0.000166767
0.0125283
-0.000156574
0.0124928
-0.00014685
0.012458
-0.000137574
0.0124238
-0.000128723
0.0123905
-0.000120273
0.012358
-0.000112204
0.0123264
-0.000104494
0.012296
-9.71196e-05
0.0122666
-9.00616e-05
0.0122385
-8.32987e-05
0.0122117
-7.68108e-05
0.0121861
-7.05781e-05
0.012162
-6.45814e-05
0.0121393
-5.88017e-05
0.0121181
-5.32207e-05
0.0120984
-4.782e-05
0.0120802
-4.25822e-05
0.0120636
-3.74899e-05
0.0120486
-3.25261e-05
0.0120353
-2.7674e-05
0.0120235
-2.29172e-05
0.0120134
-1.82394e-05
0.012005
-1.36247e-05
0.0119983
-9.05706e-06
0.0119932
-4.52073e-06
0.0119898
0.0119881
-0.000325736
0.00903518
0.000310487
-0.000328398
0.0103183
-0.00032122
0.011314
-0.000308134
0.0119917
-0.00029252
0.0123945
-0.000276451
0.0126004
-0.000260882
0.0126846
-0.00024611
0.0127023
-0.000232146
0.0126875
-0.000218915
0.0126587
-0.00020634
0.0126245
-0.000194361
0.0125888
-0.000182935
0.0125529
-0.00017203
0.0125174
-0.000161621
0.0124824
-0.000151683
0.012448
-0.000142194
0.0124143
-0.000133131
0.0123814
-0.000124472
0.0123493
-0.000116193
0.0123182
-0.000108275
0.012288
-0.000100694
0.012259
-9.34304e-05
0.0122312
-8.6463e-05
0.0122047
-7.97716e-05
0.0121794
-7.33365e-05
0.0121556
-6.71382e-05
0.0121331
-6.1158e-05
0.0121121
-5.53772e-05
0.0120926
-4.97778e-05
0.0120746
-4.43419e-05
0.0120582
-3.90523e-05
0.0120433
-3.38917e-05
0.0120301
-2.88434e-05
0.0120185
-2.38909e-05
0.0120085
-1.90179e-05
0.0120001
-1.42081e-05
0.0119934
-9.44596e-06
0.0119884
-4.71502e-06
0.0119851
0.0119834
-0.000332128
0.00905065
0.000316657
-0.000335033
0.0103212
-0.000328052
0.0113071
-0.000315062
0.0119787
-0.000299429
0.0123788
-0.000283248
0.0125842
-0.000267509
0.0126688
-0.000252538
0.0126873
-0.000238361
0.0126734
-0.000224914
0.0126452
-0.000212123
0.0126117
-0.000199929
0.0125766
-0.00018829
0.0125413
-0.000177174
0.0125063
-0.000166555
0.0124718
-0.000156409
0.0124379
-0.000146713
0.0124046
-0.000137444
0.0123721
-0.00012858
0.0123404
-0.000120098
0.0123097
-0.000111976
0.0122799
-0.000104194
0.0122513
-9.67298e-05
0.0122238
-8.95626e-05
0.0121975
-8.26726e-05
0.0121726
-7.60395e-05
0.0121489
-6.96443e-05
0.0121267
-6.34678e-05
0.0121059
-5.74916e-05
0.0120866
-5.16974e-05
0.0120688
-4.60675e-05
0.0120526
-4.05845e-05
0.0120379
-3.52311e-05
0.0120247
-2.99906e-05
0.0120132
-2.48462e-05
0.0120033
-1.97817e-05
0.0119951
-1.47809e-05
0.0119884
-9.82753e-06
0.0119835
-4.90588e-06
0.0119802
0.0119785
-0.000338398
0.00906632
0.00032273
-0.000341522
0.0103243
-0.000334721
0.0113003
-0.000321818
0.0119658
-0.000306164
0.0123632
-0.000289875
0.0125679
-0.000273972
0.0126529
-0.000258807
0.0126721
-0.000244425
0.012659
-0.000230768
0.0126316
-0.000217767
0.0125987
-0.000205365
0.0125642
-0.000193519
0.0125294
-0.000182199
0.012495
-0.000171376
0.012461
-0.000161027
0.0124276
-0.00015113
0.0123947
-0.000141661
0.0123627
-0.000132597
0.0123314
-0.000123917
0.012301
-0.000115598
0.0122716
-0.000107619
0.0122433
-9.99593e-05
0.0122161
-9.25972e-05
0.0121902
-8.55129e-05
0.0121655
-7.86868e-05
0.0121421
-7.20989e-05
0.0121201
-6.57307e-05
0.0120996
-5.95633e-05
0.0120805
-5.35788e-05
0.0120628
-4.77591e-05
0.0120467
-4.20866e-05
0.0120322
-3.65444e-05
0.0120192
-3.11153e-05
0.0120078
-2.5783e-05
0.011998
-2.05306e-05
0.0119898
-1.53423e-05
0.0119833
-1.02017e-05
0.0119783
-5.09306e-06
0.011975
0.0119734
-0.000344545
0.00908216
0.000328704
-0.000347864
0.0103277
-0.000341227
0.0112936
-0.000328402
0.0119529
-0.000312725
0.0123475
-0.000296331
0.0125515
-0.00028027
0.0126369
-0.000264918
0.0126568
-0.000250336
0.0126444
-0.000236477
0.0126177
-0.000223273
0.0125855
-0.000210669
0.0125516
-0.000198623
0.0125174
-0.000187103
0.0124834
-0.000176083
0.01245
-0.000165538
0.012417
-0.000155445
0.0123847
-0.000145781
0.012353
-0.000136524
0.0123221
-0.00012765
0.0122921
-0.00011914
0.0122631
-0.000110969
0.0122351
-0.000103119
0.0122083
-9.55667e-05
0.0121826
-8.82933e-05
0.0121582
-8.12783e-05
0.0121351
-7.45026e-05
0.0121134
-6.79468e-05
0.012093
-6.15926e-05
0.0120741
-5.54216e-05
0.0120567
-4.94159e-05
0.0120407
-4.35583e-05
0.0120263
-3.7831e-05
0.0120135
-3.22175e-05
0.0120022
-2.67009e-05
0.0119925
-2.12647e-05
0.0119844
-1.58926e-05
0.0119779
-1.05685e-05
0.011973
-5.27632e-06
0.0119698
0.0119681
-0.000350565
0.00909815
0.000334576
-0.000354057
0.0103312
-0.000347567
0.0112871
-0.000334812
0.0119402
-0.000319111
0.0123318
-0.000302616
0.012535
-0.000286402
0.0126207
-0.000270869
0.0126413
-0.000256095
0.0126296
-0.000242039
0.0126037
-0.000228639
0.0125721
-0.000215839
0.0125388
-0.000203599
0.0125051
-0.000191887
0.0124717
-0.000180675
0.0124388
-0.00016994
0.0124063
-0.000159657
0.0123744
-0.000149805
0.0123431
-0.000140359
0.0123127
-0.000131298
0.0122831
-0.000122601
0.0122544
-0.000114244
0.0122268
-0.000106208
0.0122002
-9.84709e-05
0.0121749
-9.10128e-05
0.0121507
-8.38139e-05
0.0121279
-7.68545e-05
0.0121064
-7.01158e-05
0.0120863
-6.35792e-05
0.0120676
-5.7226e-05
0.0120503
-5.10387e-05
0.0120346
-4.49996e-05
0.0120203
-3.90914e-05
0.0120076
-3.32972e-05
0.0119964
-2.76001e-05
0.0119868
-2.19839e-05
0.0119788
-1.64318e-05
0.0119723
-1.09279e-05
0.0119675
-5.45599e-06
0.0119643
0.0119627
-0.000356456
0.00911426
0.000340343
-0.0003601
0.0103348
-0.000353741
0.0112808
-0.000341048
0.0119275
-0.000325322
0.0123161
-0.000308728
0.0125184
-0.000292366
0.0126043
-0.00027666
0.0126256
-0.0002617
0.0126147
-0.000247455
0.0125894
-0.000233865
0.0125585
-0.000220877
0.0125258
-0.000208449
0.0124927
-0.000196551
0.0124598
-0.000185154
0.0124274
-0.000174234
0.0123954
-0.000163767
0.0123639
-0.000153732
0.0123331
-0.000144104
0.012303
-0.000134861
0.0122738
-0.000125982
0.0122455
-0.000117444
0.0122182
-0.000109227
0.012192
-0.00010131
0.012167
-9.36719e-05
0.0121431
-8.62935e-05
0.0121205
-7.91551e-05
0.0120993
-7.22378e-05
0.0120794
-6.55228e-05
0.0120609
-5.89918e-05
0.0120438
-5.26269e-05
0.0120282
-4.64105e-05
0.0120141
-4.03253e-05
0.0120015
-3.43543e-05
0.0119904
-2.84808e-05
0.0119809
-2.26881e-05
0.011973
-1.69599e-05
0.0119666
-1.12799e-05
0.0119618
-5.63184e-06
0.0119586
0.011957
-0.000362216
0.00913047
0.000346002
-0.00036599
0.0103386
-0.000359747
0.0112745
-0.000347108
0.0119149
-0.000331356
0.0123003
-0.000314666
0.0125017
-0.000298163
0.0125878
-0.00028229
0.0126097
-0.000267152
0.0125995
-0.000252723
0.012575
-0.00023895
0.0125447
-0.00022578
0.0125126
-0.000213172
0.0124801
-0.000201094
0.0124478
-0.000189518
0.0124158
-0.000178419
0.0123843
-0.000167775
0.0123533
-0.000157562
0.0123229
-0.000147757
0.0122932
-0.000138337
0.0122644
-0.000129282
0.0122365
-0.000120568
0.0122095
-0.000112176
0.0121836
-0.000104083
0.0121589
-9.62701e-05
0.0121353
-8.8717e-05
0.012113
-8.14042e-05
0.0120919
-7.43126e-05
0.0120723
-6.74236e-05
0.012054
-6.07189e-05
0.0120371
-5.41806e-05
0.0120217
-4.77909e-05
0.0120077
-4.15327e-05
0.0119952
-3.53889e-05
0.0119843
-2.93426e-05
0.0119749
-2.33774e-05
0.011967
-1.74767e-05
0.0119607
-1.16244e-05
0.011956
-5.80431e-06
0.0119528
0.0119512
-0.000367842
0.00914677
0.00035155
-0.000371726
0.0103425
-0.000365583
0.0112684
-0.00035299
0.0119023
-0.000337212
0.0122846
-0.000320431
0.012485
-0.000303792
0.0125711
-0.000287758
0.0125936
-0.000272448
0.0125842
-0.000257844
0.0125604
-0.000243895
0.0125308
-0.00023055
0.0124993
-0.000217767
0.0124673
-0.000205515
0.0124355
-0.000193767
0.012404
-0.000182496
0.012373
-0.00017168
0.0123424
-0.000161295
0.0123125
-0.000151319
0.0122833
-0.000141728
0.0122548
-0.000132502
0.0122272
-0.000123617
0.0122006
-0.000115054
0.0121751
-0.000106791
0.0121506
-9.88077e-05
0.0121273
-9.10844e-05
0.0121052
-8.36016e-05
0.0120845
-7.63402e-05
0.012065
-6.92815e-05
0.0120469
-6.24073e-05
0.0120302
-5.56996e-05
0.0120149
-4.91408e-05
0.0120011
-4.27135e-05
0.0119888
-3.64007e-05
0.011978
-3.01857e-05
0.0119687
-2.40517e-05
0.0119609
-1.79824e-05
0.0119546
-1.19615e-05
0.0119499
-5.97272e-06
0.0119468
0.0119453
-0.00037333
0.00916311
0.000356982
-0.000377304
0.0103464
-0.000371248
0.0112623
-0.000358695
0.0118897
-0.000342889
0.0122688
-0.00032602
0.0124681
-0.000309251
0.0125544
-0.000293064
0.0125775
-0.000277589
0.0125687
-0.000262817
0.0125456
-0.000248699
0.0125167
-0.000235185
0.0124857
-0.000222235
0.0124544
-0.000209816
0.0124231
-0.000197901
0.0123921
-0.000186464
0.0123615
-0.000175482
0.0123315
-0.000164931
0.012302
-0.000154789
0.0122731
-0.000145033
0.0122451
-0.000135641
0.0122178
-0.000126591
0.0121916
-0.000117862
0.0121663
-0.000109433
0.0121422
-0.000101284
0.0121192
-9.33958e-05
0.0120974
-8.57475e-05
0.0120768
-7.83206e-05
0.0120576
-7.10966e-05
0.0120397
-6.40571e-05
0.0120232
-5.71841e-05
0.0120081
-5.04601e-05
0.0119944
-4.38678e-05
0.0119822
-3.739e-05
0.0119715
-3.10099e-05
0.0119623
-2.4711e-05
0.0119546
-1.84769e-05
0.0119484
-1.22911e-05
0.0119438
-6.13753e-06
0.0119407
0.0119391
-0.000378677
0.0091795
0.000362294
-0.000382723
0.0103505
-0.00037674
0.0112563
-0.00036422
0.0118772
-0.000348386
0.0122529
-0.000331432
0.0124511
-0.00031454
0.0125375
-0.000298206
0.0125611
-0.000282575
0.0125531
-0.000267642
0.0125307
-0.000253361
0.0125024
-0.000239686
0.0124721
-0.000226575
0.0124413
-0.000213995
0.0124105
-0.00020192
0.01238
-0.000190323
0.0123499
-0.000179181
0.0123203
-0.00016847
0.0122912
-0.000158168
0.0122628
-0.000148252
0.0122351
-0.000138699
0.0122083
-0.000129489
0.0121824
-0.0001206
0.0121574
-0.00011201
0.0121336
-0.000103701
0.0121109
-9.5651e-05
0.0120893
-8.78417e-05
0.012069
-8.02539e-05
0.01205
-7.28688e-05
0.0120323
-6.56682e-05
0.012016
-5.86341e-05
0.012001
-5.1749e-05
0.0119875
-4.49955e-05
0.0119755
-3.83565e-05
0.0119649
-3.18155e-05
0.0119557
-2.53554e-05
0.0119481
-1.89601e-05
0.011942
-1.26133e-05
0.0119374
-6.29861e-06
0.0119344
0.0119328
-0.00038388
0.00919589
0.000367483
-0.000387979
0.0103546
-0.000382057
0.0112504
-0.000369564
0.0118647
-0.000353702
0.0122371
-0.000336668
0.0124341
-0.000319658
0.0125205
-0.000303185
0.0125447
-0.000287404
0.0125373
-0.000272317
0.0125156
-0.000257882
0.012488
-0.000244052
0.0124582
-0.000230786
0.012428
-0.000218053
0.0123978
-0.000205824
0.0123678
-0.000194073
0.0123382
-0.000182777
0.012309
-0.000171913
0.0122804
-0.000161456
0.0122524
-0.000151385
0.0122251
-0.000141678
0.0121986
-0.000132312
0.012173
-0.000123267
0.0121484
-0.000114522
0.0121248
-0.000106056
0.0121024
-9.78502e-05
0.0120811
-8.98844e-05
0.012061
-8.214e-05
0.0120422
-7.45981e-05
0.0120248
-6.72406e-05
0.0120086
-6.00496e-05
0.0119938
-5.30073e-05
0.0119805
-4.60967e-05
0.0119685
-3.93005e-05
0.0119581
-3.2602e-05
0.011949
-2.59848e-05
0.0119415
-1.94322e-05
0.0119355
-1.2928e-05
0.0119309
-6.45585e-06
0.0119279
0.0119264
-0.000388935
0.00921229
0.000372544
-0.000393071
0.0103587
-0.000387197
0.0112445
-0.000374726
0.0118522
-0.000358836
0.0122212
-0.000341726
0.012417
-0.000324605
0.0125034
-0.000308
0.0125281
-0.000292076
0.0125214
-0.000276843
0.0125004
-0.000262261
0.0124734
-0.000248283
0.0124443
-0.00023487
0.0124146
-0.000221989
0.0123849
-0.000209613
0.0123554
-0.000197715
0.0123263
-0.000186271
0.0122976
-0.000175258
0.0122694
-0.000164652
0.0122418
-0.000154432
0.0122148
-0.000144575
0.0121887
-0.00013506
0.0121635
-0.000125864
0.0121392
-0.000116968
0.0121159
-0.000108351
0.0120938
-9.99934e-05
0.0120727
-9.18758e-05
0.0120529
-8.39791e-05
0.0120343
-7.62847e-05
0.0120171
-6.87745e-05
0.0120011
-6.14304e-05
0.0119865
-5.42352e-05
0.0119733
-4.71713e-05
0.0119615
-4.02219e-05
0.0119511
-3.337e-05
0.0119422
-2.65992e-05
0.0119347
-1.9893e-05
0.0119287
-1.32353e-05
0.0119243
-6.60973e-06
0.0119213
0.0119198
-0.000393839
0.00922865
0.000377473
-0.000397994
0.0103629
-0.000392157
0.0112387
-0.000379703
0.0118398
-0.000363786
0.0122053
-0.000346605
0.0123998
-0.000329379
0.0124861
-0.00031265
0.0125113
-0.000296592
0.0125054
-0.00028122
0.012485
-0.000266497
0.0124586
-0.000252379
0.0124301
-0.000238826
0.012401
-0.000225804
0.0123719
-0.000213287
0.0123429
-0.000201247
0.0123143
-0.000189662
0.012286
-0.000178506
0.0122582
-0.000167758
0.012231
-0.000157394
0.0122045
-0.000147393
0.0121787
-0.000137732
0.0121538
-0.000128391
0.0121299
-0.000119349
0.0121069
-0.000110585
0.012085
-0.000102081
0.0120642
-9.38157e-05
0.0120447
-8.57711e-05
0.0120263
-7.79284e-05
0.0120092
-7.02698e-05
0.0119934
-6.2777e-05
0.011979
-5.54327e-05
0.0119659
-4.82196e-05
0.0119543
-4.11207e-05
0.011944
-3.41192e-05
0.0119352
-2.71987e-05
0.0119278
-2.03429e-05
0.0119219
-1.35351e-05
0.0119174
-6.75955e-06
0.0119145
0.011913
-0.000398588
0.00924498
0.000382264
-0.000402747
0.010367
-0.000396937
0.0112329
-0.000384495
0.0118273
-0.000368552
0.0121893
-0.000351305
0.0123826
-0.000333981
0.0124688
-0.000317135
0.0124945
-0.000300949
0.0124892
-0.000285447
0.0124695
-0.000270591
0.0124438
-0.00025634
0.0124159
-0.000242653
0.0123873
-0.000229498
0.0123587
-0.000216846
0.0123303
-0.000204672
0.0123021
-0.00019295
0.0122743
-0.000181658
0.0122469
-0.000170772
0.0122201
-0.00016027
0.012194
-0.00015013
0.0121686
-0.00014033
0.012144
-0.000130848
0.0121204
-0.000121665
0.0120977
-0.000112759
0.0120761
-0.000104112
0.0120556
-9.57042e-05
0.0120363
-8.75163e-05
0.0120181
-7.95299e-05
0.0120012
-7.17267e-05
0.0119856
-6.40892e-05
0.0119714
-5.65998e-05
0.0119585
-4.92414e-05
0.0119469
-4.19969e-05
0.0119368
-3.48499e-05
0.011928
-2.77834e-05
0.0119207
-2.07812e-05
0.0119149
-1.38276e-05
0.0119105
-6.90578e-06
0.0119076
0.0119061
-0.000403178
0.00926124
0.000386915
-0.000407327
0.0103712
-0.000401534
0.0112271
-0.0003891
0.0118149
-0.000373133
0.0121733
-0.000355824
0.0123653
-0.000338409
0.0124514
-0.000321454
0.0124775
-0.00030515
0.0124729
-0.000289523
0.0124539
-0.000274543
0.0124288
-0.000260166
0.0124015
-0.000246352
0.0123735
-0.00023307
0.0123454
-0.00022029
0.0123175
-0.000207987
0.0122898
-0.000196136
0.0122624
-0.000184713
0.0122355
-0.000173696
0.0122091
-0.000163061
0.0121833
-0.000152787
0.0121583
-0.000142852
0.0121341
-0.000133235
0.0121108
-0.000123916
0.0120884
-0.000114873
0.0120671
-0.000106088
0.0120468
-9.7542e-05
0.0120277
-8.92147e-05
0.0120098
-8.10886e-05
0.0119931
-7.31453e-05
0.0119777
-6.53672e-05
0.0119636
-5.77368e-05
0.0119508
-5.02369e-05
0.0119394
-4.28508e-05
0.0119294
-3.55616e-05
0.0119207
-2.83531e-05
0.0119135
-2.12089e-05
0.0119077
-1.41126e-05
0.0119034
-7.04832e-06
0.0119005
0.011899
-0.000407605
0.00927743
0.000391419
-0.00041173
0.0103753
-0.000405945
0.0112213
-0.000393517
0.0118025
-0.000377527
0.0121574
-0.000360161
0.0123479
-0.000342663
0.0124339
-0.000325607
0.0124605
-0.000309192
0.0124564
-0.00029345
0.0124381
-0.000278353
0.0124137
-0.000263857
0.012387
-0.000249924
0.0123596
-0.000236521
0.012332
-0.00022362
0.0123046
-0.000211195
0.0122774
-0.00019922
0.0122504
-0.000187672
0.0122239
-0.000176529
0.012198
-0.000165767
0.0121726
-0.000155365
0.0121479
-0.000145301
0.012124
-0.000135553
0.012101
-0.000126102
0.0120789
-0.000116927
0.0120579
-0.000108009
0.0120379
-9.93286e-05
0.012019
-9.08666e-05
0.0120013
-8.2605e-05
0.0119848
-7.45257e-05
0.0119696
-6.6611e-05
0.0119557
-5.88435e-05
0.0119431
-5.12062e-05
0.0119318
-4.36823e-05
0.0119219
-3.62551e-05
0.0119133
-2.89081e-05
0.0119062
-2.16252e-05
0.0119005
-1.43903e-05
0.0118962
-7.18719e-06
0.0118933
0.0118919
-0.000411866
0.00929352
0.000395772
-0.000415954
0.0103794
-0.000410169
0.0112155
-0.000397744
0.01179
-0.000381734
0.0121413
-0.000364317
0.0123305
-0.000346743
0.0124163
-0.000329594
0.0124433
-0.000313076
0.0124399
-0.000297227
0.0124223
-0.00028202
0.0123985
-0.000267412
0.0123724
-0.000253368
0.0123455
-0.000239852
0.0123185
-0.000226836
0.0122916
-0.000214294
0.0122648
-0.000202202
0.0122384
-0.000190536
0.0122123
-0.000179272
0.0121867
-0.000168388
0.0121617
-0.000157863
0.0121374
-0.000147675
0.0121138
-0.000137802
0.0120911
-0.000128224
0.0120694
-0.000118921
0.0120486
-0.000109875
0.0120288
-0.000101064
0.0120102
-9.24721e-05
0.0119927
-8.40792e-05
0.0119765
-7.5868e-05
0.0119614
-6.78208e-05
0.0119476
-5.99202e-05
0.0119352
-5.21494e-05
0.011924
-4.44915e-05
0.0119142
-3.69298e-05
0.0119058
-2.94483e-05
0.0118987
-2.20306e-05
0.011893
-1.46606e-05
0.0118888
-7.32239e-06
0.011886
0.0118845
-0.000415957
0.00930951
0.000399971
-0.000419996
0.0103834
-0.000414204
0.0112097
-0.00040178
0.0117776
-0.000385752
0.0121253
-0.000368291
0.012313
-0.000350648
0.0123987
-0.000333414
0.0124261
-0.000316802
0.0124233
-0.000300854
0.0124063
-0.000285544
0.0123832
-0.000270834
0.0123577
-0.000256684
0.0123314
-0.000243061
0.0123049
-0.000229937
0.0122784
-0.000217286
0.0122522
-0.000205083
0.0122261
-0.000193303
0.0122005
-0.000181925
0.0121753
-0.000170925
0.0121507
-0.000160282
0.0121267
-0.000149975
0.0121035
-0.000139981
0.0120811
-0.000130282
0.0120597
-0.000120856
0.0120392
-0.000111685
0.0120197
-0.00010275
0.0120013
-9.40313e-05
0.011984
-8.55115e-05
0.0119679
-7.71725e-05
0.0119531
-6.89969e-05
0.0119395
-6.09671e-05
0.0119271
-5.30667e-05
0.0119161
-4.52785e-05
0.0119064
-3.75865e-05
0.0118981
-2.99739e-05
0.0118911
-2.2425e-05
0.0118855
-1.49237e-05
0.0118813
-7.45383e-06
0.0118785
0.0118771
-0.000419874
0.00932537
0.000404009
-0.000423854
0.0103874
-0.000418049
0.0112039
-0.000405624
0.0117652
-0.000389582
0.0121093
-0.000372082
0.0122955
-0.000354379
0.012381
-0.000337068
0.0124088
-0.00032037
0.0124066
-0.000304331
0.0123903
-0.000288927
0.0123678
-0.000274121
0.0123429
-0.000259873
0.0123171
-0.000246151
0.0122912
-0.000232925
0.0122652
-0.000220171
0.0122394
-0.000207862
0.0122138
-0.000195976
0.0121886
-0.000184488
0.0121638
-0.000173378
0.0121396
-0.000162623
0.012116
-0.000152201
0.0120931
-0.000142092
0.012071
-0.000132276
0.0120498
-0.000122732
0.0120296
-0.000113441
0.0120104
-0.000104385
0.0119922
-9.55446e-05
0.0119752
-8.6902e-05
0.0119593
-7.84393e-05
0.0119446
-7.01389e-05
0.0119312
-6.19842e-05
0.011919
-5.39577e-05
0.0119081
-4.60434e-05
0.0118985
-3.82245e-05
0.0118902
-3.04849e-05
0.0118833
-2.28085e-05
0.0118778
-1.51794e-05
0.0118737
-7.58198e-06
0.0118709
0.0118695
-0.000423614
0.0093411
0.000407883
-0.000427525
0.0103913
-0.0004217
0.0111981
-0.000409274
0.0117528
-0.000393222
0.0120932
-0.00037569
0.012278
-0.000357933
0.0123632
-0.000340555
0.0123914
-0.00032378
0.0123898
-0.000307658
0.0123742
-0.000292169
0.0123523
-0.000277273
0.012328
-0.000262935
0.0123028
-0.00024912
0.0122774
-0.0002358
0.0122519
-0.000222949
0.0122266
-0.000210541
0.0122014
-0.000198553
0.0121766
-0.000186963
0.0121522
-0.000175747
0.0121284
-0.000164885
0.0121051
-0.000154354
0.0120826
-0.000144135
0.0120608
-0.000134206
0.0120399
-0.000124549
0.01202
-0.000115143
0.012001
-0.00010597
0.011983
-9.70123e-05
0.0119662
-8.8251e-05
0.0119505
-7.96686e-05
0.011936
-7.1248e-05
0.0119227
-6.29717e-05
0.0119107
-5.48234e-05
0.0118999
-4.67864e-05
0.0118905
-3.88443e-05
0.0118823
-3.09813e-05
0.0118755
-2.31811e-05
0.01187
-1.5428e-05
0.0118659
-7.70606e-06
0.0118632
0.0118618
-0.000427173
0.00935669
0.000411588
-0.000431006
0.0103952
-0.000425158
0.0111923
-0.000412731
0.0117403
-0.000396671
0.0120772
-0.000379114
0.0122604
-0.000361313
0.0123454
-0.000343876
0.012374
-0.000327033
0.012373
-0.000310836
0.012358
-0.000295269
0.0123367
-0.000280293
0.012313
-0.000265871
0.0122884
-0.00025197
0.0122635
-0.000238562
0.0122385
-0.00022562
0.0122136
-0.00021312
0.0121889
-0.000201037
0.0121645
-0.000189349
0.0121406
-0.000178034
0.0121171
-0.000167069
0.0120942
-0.000156435
0.0120719
-0.000146109
0.0120505
-0.000136073
0.0120299
-0.000126307
0.0120102
-0.00011679
0.0119915
-0.000107506
0.0119738
-9.84345e-05
0.0119571
-8.95586e-05
0.0119417
-8.08607e-05
0.0119273
-7.23234e-05
0.0119142
-6.39299e-05
0.0119023
-5.56634e-05
0.0118917
-4.75076e-05
0.0118823
-3.94462e-05
0.0118742
-3.14633e-05
0.0118675
-2.35429e-05
0.0118621
-1.56693e-05
0.011858
-7.8269e-06
0.0118553
0.011854
-0.000430548
0.00937212
0.00041512
-0.000434296
0.0103989
-0.00042842
0.0111864
-0.000415993
0.0117279
-0.000399931
0.0120611
-0.000382355
0.0122428
-0.000364518
0.0123276
-0.00034703
0.0123565
-0.000330128
0.0123561
-0.000313866
0.0123417
-0.000298228
0.0123211
-0.000283179
0.012298
-0.000268681
0.0122739
-0.000254702
0.0122495
-0.000241212
0.012225
-0.000228186
0.0122006
-0.000215599
0.0121763
-0.000203427
0.0121524
-0.000191647
0.0121288
-0.000180237
0.0121056
-0.000169176
0.0120831
-0.000158443
0.0120612
-0.000148017
0.0120401
-0.000137878
0.0120197
-0.000128007
0.0120003
-0.000118384
0.0119818
-0.000108992
0.0119644
-9.98115e-05
0.011948
-9.08253e-05
0.0119327
-8.20158e-05
0.0119185
-7.33659e-05
0.0119055
-6.48588e-05
0.0118938
-5.6478e-05
0.0118833
-4.82071e-05
0.011874
-4.00302e-05
0.0118661
-3.1931e-05
0.0118594
-2.3894e-05
0.0118541
-1.59036e-05
0.01185
-7.94418e-06
0.0118474
0.011846
-0.000433737
0.00938738
0.000418475
-0.000437391
0.0104026
-0.000431486
0.0111805
-0.000419059
0.0117155
-0.000402999
0.012045
-0.000385413
0.0122253
-0.000367548
0.0123097
-0.000350019
0.0123389
-0.000333066
0.0123391
-0.000316747
0.0123254
-0.000301047
0.0123054
-0.000285933
0.0122829
-0.000271366
0.0122593
-0.000257315
0.0122354
-0.000243751
0.0122114
-0.000230647
0.0121875
-0.000217979
0.0121637
-0.000205723
0.0121401
-0.000193857
0.0121169
-0.000182359
0.0120942
-0.000171206
0.0120719
-0.000160379
0.0120504
-0.000149857
0.0120295
-0.00013962
0.0120095
-0.000129649
0.0119903
-0.000119925
0.0119721
-0.000110429
0.0119549
-0.000101144
0.0119387
-9.20513e-05
0.0119236
-8.31342e-05
0.0119096
-7.43756e-05
0.0118968
-6.57588e-05
0.0118852
-5.72674e-05
0.0118748
-4.88851e-05
0.0118656
-4.05959e-05
0.0118578
-3.23844e-05
0.0118512
-2.42345e-05
0.0118459
-1.61307e-05
0.0118419
-8.05769e-06
0.0118393
0.011838
-0.000436736
0.00940246
0.00042165
-0.000440292
0.0104061
-0.000434353
0.0111745
-0.000421929
0.0117031
-0.000405878
0.012029
-0.000388288
0.0122077
-0.000370404
0.0122918
-0.000352843
0.0123214
-0.000335848
0.0123222
-0.00031948
0.012309
-0.000303727
0.0122896
-0.000288554
0.0122677
-0.000273927
0.0122447
-0.000259811
0.0122213
-0.000246179
0.0121978
-0.000233004
0.0121743
-0.000220261
0.0121509
-0.000207927
0.0121278
-0.000195981
0.012105
-0.000184399
0.0120826
-0.00017316
0.0120607
-0.000162244
0.0120395
-0.000151631
0.0120189
-0.000141301
0.0119992
-0.000131234
0.0119803
-0.000121413
0.0119623
-0.000111818
0.0119453
-0.000102432
0.0119293
-9.32369e-05
0.0119144
-8.42162e-05
0.0119006
-7.53526e-05
0.0118879
-6.663e-05
0.0118765
-5.80317e-05
0.0118662
-4.95418e-05
0.0118572
-4.11443e-05
0.0118494
-3.28237e-05
0.0118429
-2.45643e-05
0.0118377
-1.63508e-05
0.0118337
-8.1678e-06
0.0118311
0.0118298
-0.000439542
0.00941736
0.000424641
-0.000442995
0.0104096
-0.000437023
0.0111686
-0.000424603
0.0116906
-0.000408565
0.012013
-0.00039098
0.0121901
-0.000373087
0.0122739
-0.000355502
0.0123038
-0.000338474
0.0123051
-0.000322066
0.0122926
-0.000306268
0.0122738
-0.000291045
0.0122525
-0.000276364
0.01223
-0.000262191
0.0122071
-0.000248497
0.0121841
-0.000235257
0.0121611
-0.000222445
0.0121381
-0.00021004
0.0121154
-0.000198018
0.0120929
-0.000186358
0.0120709
-0.000175038
0.0120494
-0.000164039
0.0120285
-0.000153339
0.0120082
-0.00014292
0.0119888
-0.000132763
0.0119701
-0.000122848
0.0119524
-0.000113158
0.0119356
-0.000103675
0.0119198
-9.43824e-05
0.0119051
-8.5262e-05
0.0118915
-7.62977e-05
0.011879
-6.74727e-05
0.0118676
-5.87713e-05
0.0118575
-5.01773e-05
0.0118486
-4.1675e-05
0.0118409
-3.3249e-05
0.0118344
-2.48836e-05
0.0118293
-1.6564e-05
0.0118254
-8.27443e-06
0.0118228
0.0118215
-0.000442155
0.00943207
0.000427445
-0.0004455
0.0104129
-0.000439493
0.0111626
-0.000427082
0.0116782
-0.000411063
0.0119969
-0.00039349
0.0121725
-0.000375595
0.012256
-0.000357997
0.0122862
-0.000340945
0.0122881
-0.000324506
0.0122762
-0.000308671
0.012258
-0.000293406
0.0122372
-0.000278678
0.0122153
-0.000264455
0.0121929
-0.000250706
0.0121704
-0.000237407
0.0121478
-0.000224533
0.0121252
-0.000212062
0.0121029
-0.00019997
0.0120808
-0.000188237
0.0120592
-0.000176842
0.012038
-0.000165763
0.0120174
-0.000154982
0.0119974
-0.000144479
0.0119783
-0.000134235
0.0119599
-0.000124232
0.0119424
-0.000114451
0.0119258
-0.000104876
0.0119102
-9.54883e-05
0.0118957
-8.62721e-05
0.0118822
-7.72104e-05
0.0118699
-6.82872e-05
0.0118587
-5.94862e-05
0.0118487
-5.07918e-05
0.0118399
-4.21884e-05
0.0118323
-3.36604e-05
0.0118259
-2.51929e-05
0.0118208
-1.67702e-05
0.011817
-8.37761e-06
0.0118144
0.0118131
-0.000444572
0.00944659
0.000430058
-0.000447805
0.0104161
-0.000441764
0.0111565
-0.000429364
0.0116658
-0.000413371
0.0119809
-0.000395819
0.012155
-0.000377932
0.0122382
-0.00036033
0.0122686
-0.000343263
0.012271
-0.000326801
0.0122597
-0.000310937
0.0122421
-0.000295638
0.0122219
-0.000280871
0.0122005
-0.000266604
0.0121786
-0.000252807
0.0121566
-0.000239455
0.0121344
-0.000226525
0.0121123
-0.000213993
0.0120904
-0.000201838
0.0120687
-0.000190037
0.0120474
-0.000178571
0.0120265
-0.000167418
0.0120062
-0.000156561
0.0119866
-0.000145978
0.0119677
-0.000135651
0.0119495
-0.000125564
0.0119323
-0.000115696
0.0119159
-0.000106033
0.0119006
-9.65548e-05
0.0118862
-8.72467e-05
0.0118729
-7.80915e-05
0.0118607
-6.90737e-05
0.0118497
-6.01768e-05
0.0118398
-5.13856e-05
0.0118311
-4.26844e-05
0.0118236
-3.40581e-05
0.0118173
-2.54915e-05
0.0118123
-1.69696e-05
0.0118085
-8.47727e-06
0.0118059
0.0118047
-0.000446791
0.0094609
0.00043248
-0.00044991
0.0104193
-0.000443836
0.0111504
-0.000431451
0.0116535
-0.000415491
0.011965
-0.000397967
0.0121374
-0.000380098
0.0122203
-0.000362501
0.012251
-0.000345429
0.0122539
-0.000328953
0.0122432
-0.000313067
0.0122263
-0.000297743
0.0122066
-0.000282944
0.0121857
-0.000268639
0.0121643
-0.000254801
0.0121427
-0.000241403
0.012121
-0.000228422
0.0120993
-0.000215836
0.0120778
-0.000203622
0.0120565
-0.000191759
0.0120355
-0.000180226
0.012015
-0.000169005
0.011995
-0.000158075
0.0119757
-0.000147417
0.011957
-0.000137013
0.0119391
-0.000126845
0.0119221
-0.000116895
0.011906
-0.000107147
0.0118908
-9.75825e-05
0.0118767
-8.81862e-05
0.0118635
-7.89415e-05
0.0118515
-6.98324e-05
0.0118406
-6.08434e-05
0.0118308
-5.19588e-05
0.0118222
-4.31636e-05
0.0118148
-3.44422e-05
0.0118086
-2.57801e-05
0.0118036
-1.71622e-05
0.0117998
-8.57388e-06
0.0117973
0.0117961
-0.000448811
0.009475
0.000434706
-0.000451815
0.0104223
-0.000445709
0.0111443
-0.000433344
0.0116411
-0.000417423
0.0119491
-0.000399937
0.01212
-0.000382094
0.0122024
-0.000364511
0.0122334
-0.000347443
0.0122369
-0.000330961
0.0122267
-0.000315064
0.0122104
-0.00029972
0.0121912
-0.000284896
0.0121709
-0.000270562
0.01215
-0.000256688
0.0121289
-0.000243251
0.0121076
-0.000230226
0.0120863
-0.00021759
0.0120652
-0.000205323
0.0120442
-0.000193402
0.0120236
-0.000181809
0.0120034
-0.000170523
0.0119837
-0.000159526
0.0119647
-0.000148797
0.0119463
-0.00013832
0.0119287
-0.000128076
0.0119119
-0.000118048
0.011896
-0.000108218
0.011881
-9.85718e-05
0.011867
-8.9091e-05
0.0118541
-7.97603e-05
0.0118422
-7.05638e-05
0.0118314
-6.14861e-05
0.0118217
-5.25117e-05
0.0118132
-4.36255e-05
0.0118059
-3.48129e-05
0.0117998
-2.60586e-05
0.0117948
-1.73482e-05
0.0117911
-8.66681e-06
0.0117887
0.0117874
-0.000450631
0.0094889
0.000436737
-0.00045352
0.0104252
-0.000447383
0.0111382
-0.000435043
0.0116287
-0.000419169
0.0119332
-0.000401729
0.0121025
-0.000383922
0.0121846
-0.000366363
0.0122158
-0.000349307
0.0122198
-0.000332829
0.0122103
-0.000316927
0.0121945
-0.000301572
0.0121759
-0.000286731
0.0121561
-0.000272373
0.0121357
-0.000258471
0.012115
-0.000245
0.0120941
-0.000231936
0.0120732
-0.000219257
0.0120525
-0.000206942
0.0120319
-0.00019497
0.0120116
-0.00018332
0.0119918
-0.000171975
0.0119724
-0.000160914
0.0119536
-0.000150119
0.0119355
-0.000139572
0.0119181
-0.000129257
0.0119016
-0.000119154
0.0118859
-0.000109248
0.0118711
-9.9523e-05
0.0118573
-8.99616e-05
0.0118445
-8.05485e-05
0.0118328
-7.12682e-05
0.0118221
-6.21052e-05
0.0118126
-5.30445e-05
0.0118042
-4.40711e-05
0.0117969
-3.51702e-05
0.0117909
-2.63272e-05
0.011786
-1.75275e-05
0.0117823
-8.75643e-06
0.0117799
0.0117787
-0.000452251
0.00950258
0.000438571
-0.000455025
0.0104279
-0.00044886
0.011132
-0.000436551
0.0116164
-0.00042073
0.0119174
-0.000403345
0.0120851
-0.000385584
0.0121669
-0.000368057
0.0121983
-0.000351023
0.0122028
-0.000334557
0.0121938
-0.000318659
0.0121786
-0.0003033
0.0121605
-0.000288449
0.0121412
-0.000274075
0.0121213
-0.000260151
0.012101
-0.000246652
0.0120806
-0.000233555
0.0120602
-0.000220838
0.0120398
-0.00020848
0.0120195
-0.000196461
0.0119996
-0.000184761
0.0119801
-0.00017336
0.011961
-0.000162241
0.0119425
-0.000151384
0.0119246
-0.000140773
0.0119075
-0.000130389
0.0118912
-0.000120216
0.0118757
-0.000110237
0.0118611
-0.000100437
0.0118475
-9.07983e-05
0.0118349
-8.13066e-05
0.0118233
-7.19458e-05
0.0118127
-6.27011e-05
0.0118033
-5.35574e-05
0.011795
-4.45001e-05
0.0117879
-3.55144e-05
0.0117819
-2.65859e-05
0.0117771
-1.77002e-05
0.0117734
-8.84301e-06
0.011771
0.0117698
-0.000453671
0.00951604
0.000440206
-0.00045633
0.0104306
-0.000450142
0.0111259
-0.000437868
0.0116042
-0.000422108
0.0119016
-0.000404786
0.0120678
-0.00038708
0.0121492
-0.000369596
0.0121808
-0.000352592
0.0121858
-0.000336147
0.0121774
-0.00032026
0.0121627
-0.000304906
0.0121452
-0.000290052
0.0121263
-0.000275668
0.0121069
-0.000261728
0.0120871
-0.000248207
0.0120671
-0.000235083
0.012047
-0.000222334
0.012027
-0.000209938
0.0120071
-0.000197877
0.0119875
-0.000186131
0.0119683
-0.00017468
0.0119495
-0.000163506
0.0119313
-0.000152592
0.0119137
-0.00014192
0.0118968
-0.000131472
0.0118807
-0.000121233
0.0118655
-0.000111185
0.0118511
-0.000101313
0.0118376
-9.16016e-05
0.0118251
-8.20345e-05
0.0118137
-7.2597e-05
0.0118033
-6.3274e-05
0.011794
-5.40508e-05
0.0117858
-4.49128e-05
0.0117787
-3.58456e-05
0.0117728
-2.6835e-05
0.0117681
-1.78665e-05
0.0117645
-8.92636e-06
0.0117621
0.0117609
-0.000454892
0.00952929
0.000441642
-0.000457437
0.0104331
-0.000451229
0.0111196
-0.000438996
0.0115919
-0.000423306
0.0118859
-0.000406056
0.0120506
-0.000388414
0.0121315
-0.000370981
0.0121634
-0.000354017
0.0121688
-0.000337601
0.0121609
-0.000321734
0.0121468
-0.000306391
0.0121298
-0.000291541
0.0121115
-0.000277154
0.0120925
-0.000263205
0.0120731
-0.000249668
0.0120536
-0.000236522
0.0120339
-0.000223746
0.0120142
-0.000211318
0.0119947
-0.00019922
0.0119754
-0.000187432
0.0119565
-0.000175935
0.011938
-0.000164712
0.0119201
-0.000153744
0.0119028
-0.000143015
0.0118861
-0.000132508
0.0118702
-0.000122206
0.0118551
-0.000112093
0.011841
-0.000102153
0.0118277
-9.23718e-05
0.0118154
-8.27331e-05
0.0118041
-7.32221e-05
0.0117938
-6.38242e-05
0.0117846
-5.45248e-05
0.0117765
-4.53095e-05
0.0117695
-3.61641e-05
0.0117637
-2.70744e-05
0.011759
-1.80265e-05
0.0117554
-9.00631e-06
0.0117531
0.0117519
-0.000455914
0.00954233
0.00044288
-0.000458347
0.0104356
-0.000452123
0.0111134
-0.000439938
0.0115797
-0.000424324
0.0118703
-0.000407156
0.0120334
-0.000389587
0.012114
-0.000372215
0.012146
-0.000355299
0.0121519
-0.00033892
0.0121446
-0.000323081
0.012131
-0.000307757
0.0121145
-0.000292918
0.0120967
-0.000278535
0.0120781
-0.000264582
0.0120592
-0.000251035
0.01204
-0.000237874
0.0120207
-0.000225075
0.0120014
-0.000212621
0.0119823
-0.00020049
0.0119633
-0.000188665
0.0119447
-0.000177127
0.0119265
-0.000165858
0.0119088
-0.000154841
0.0118917
-0.00014406
0.0118753
-0.000133496
0.0118597
-0.000123136
0.0118448
-0.000112961
0.0118308
-0.000102957
0.0118177
-9.31096e-05
0.0118055
-8.34026e-05
0.0117944
-7.38216e-05
0.0117842
-6.43521e-05
0.0117751
-5.49798e-05
0.0117671
-4.56904e-05
0.0117602
-3.64699e-05
0.0117544
-2.73044e-05
0.0117498
-1.81801e-05
0.0117463
-9.08323e-06
0.011744
0.0117428
-0.000456737
0.00955514
0.00044392
-0.000459062
0.0104379
-0.000452826
0.0111072
-0.000440696
0.0115676
-0.000425167
0.0118548
-0.000408089
0.0120163
-0.000390602
0.0120965
-0.0003733
0.0121287
-0.000356441
0.012135
-0.000340108
0.0121282
-0.000324304
0.0121152
-0.000309006
0.0120992
-0.000294184
0.0120818
-0.000279811
0.0120638
-0.000265861
0.0120452
-0.000252311
0.0120265
-0.000239138
0.0120075
-0.000226323
0.0119886
-0.000213847
0.0119698
-0.000201689
0.0119512
-0.000189831
0.0119328
-0.000178256
0.0119149
-0.000166946
0.0118975
-0.000155885
0.0118807
-0.000145054
0.0118645
-0.000134439
0.011849
-0.000124022
0.0118344
-0.00011379
0.0118205
-0.000103726
0.0118076
-9.38154e-05
0.0117956
-8.40434e-05
0.0117846
-7.43958e-05
0.0117746
-6.4858e-05
0.0117656
-5.54159e-05
0.0117577
-4.60556e-05
0.0117509
-3.67633e-05
0.0117451
-2.75252e-05
0.0117406
-1.83276e-05
0.0117371
-9.15706e-06
0.0117348
0.0117337
-0.000457365
0.00956775
0.000444763
-0.000459584
0.0104401
-0.000453342
0.0111009
-0.000441273
0.0115555
-0.000425837
0.0118393
-0.000408858
0.0119993
-0.000391461
0.0120791
-0.000374238
0.0121115
-0.000357445
0.0121182
-0.000341165
0.0121119
-0.000325404
0.0120994
-0.00031014
0.0120839
-0.000295343
0.012067
-0.000280986
0.0120494
-0.000267045
0.0120313
-0.000253496
0.0120129
-0.000240318
0.0119944
-0.000227492
0.0119758
-0.000214998
0.0119573
-0.000202817
0.011939
-0.000190932
0.0119209
-0.000179324
0.0119033
-0.000167977
0.0118862
-0.000156874
0.0118696
-0.000145999
0.0118536
-0.000135335
0.0118384
-0.000124868
0.0118239
-0.000114581
0.0118103
-0.00010446
0.0117975
-9.44897e-05
0.0117856
-8.46563e-05
0.0117747
-7.49452e-05
0.0117649
-6.53423e-05
0.011756
-5.58337e-05
0.0117482
-4.64057e-05
0.0117414
-3.70445e-05
0.0117358
-2.77367e-05
0.0117313
-1.8469e-05
0.0117278
-9.22786e-06
0.0117256
0.0117244
-0.000457799
0.00958013
0.00044541
-0.000459916
0.0104422
-0.000453674
0.0110947
-0.000441672
0.0115435
-0.000426336
0.011824
-0.000409464
0.0119825
-0.000392168
0.0120618
-0.000375032
0.0120944
-0.000358314
0.0121015
-0.000342095
0.0120957
-0.000326385
0.0120837
-0.00031116
0.0120687
-0.000296395
0.0120523
-0.00028206
0.0120351
-0.000268134
0.0120174
-0.000254592
0.0119994
-0.000241414
0.0119812
-0.000228582
0.011963
-0.000216075
0.0119448
-0.000203876
0.0119268
-0.000191967
0.011909
-0.000180332
0.0118917
-0.000168952
0.0118748
-0.000157812
0.0118584
-0.000146895
0.0118427
-0.000136187
0.0118277
-0.000125671
0.0118134
-0.000115334
0.0117999
-0.000105159
0.0117873
-9.51331e-05
0.0117756
-8.52414e-05
0.0117649
-7.54701e-05
0.0117551
-6.58052e-05
0.0117463
-5.62332e-05
0.0117386
-4.67403e-05
0.0117319
-3.73136e-05
0.0117264
-2.79393e-05
0.0117219
-1.86044e-05
0.0117185
-9.29565e-06
0.0117163
0.0117151
-0.000458041
0.00959231
0.000445863
-0.00046006
0.0104442
-0.000453823
0.0110885
-0.000441896
0.0115316
-0.000426669
0.0118088
-0.000409913
0.0119657
-0.000392726
0.0120446
-0.000375686
0.0120773
-0.000359049
0.0120849
-0.0003429
0.0120796
-0.000327247
0.012068
-0.00031207
0.0120535
-0.000297342
0.0120375
-0.000283036
0.0120208
-0.00026913
0.0120035
-0.000255601
0.0119858
-0.000242429
0.011968
-0.000229594
0.0119501
-0.00021708
0.0119323
-0.000204868
0.0119146
-0.00019294
0.0118971
-0.00018128
0.01188
-0.000169871
0.0118634
-0.000158697
0.0118473
-0.000147744
0.0118318
-0.000136995
0.0118169
-0.000126435
0.0118028
-0.00011605
0.0117895
-0.000105825
0.0117771
-9.5746e-05
0.0117655
-8.57993e-05
0.0117549
-7.59709e-05
0.0117453
-6.62472e-05
0.0117366
-5.66149e-05
0.011729
-4.70605e-05
0.0117224
-3.75709e-05
0.0117169
-2.8133e-05
0.0117124
-1.87339e-05
0.0117091
-9.36051e-06
0.0117069
0.0117058
-0.000458095
0.00960428
0.000446125
-0.000460021
0.0104462
-0.000453794
0.0110822
-0.000441949
0.0115198
-0.000426838
0.0117937
-0.000410206
0.0119491
-0.000393136
0.0120275
-0.000376201
0.0120604
-0.000359655
0.0120683
-0.000343583
0.0120635
-0.000327995
0.0120525
-0.000312872
0.0120384
-0.000298187
0.0120229
-0.000283916
0.0120065
-0.000270036
0.0119896
-0.000256524
0.0119723
-0.000243363
0.0119549
-0.000230532
0.0119373
-0.000218014
0.0119197
-0.000205793
0.0119023
-0.00019385
0.0118852
-0.00018217
0.0118683
-0.000170736
0.0118519
-0.000159533
0.0118361
-0.000148546
0.0118208
-0.000137759
0.0118061
-0.000127158
0.0117922
-0.000116729
0.0117791
-0.000106457
0.0117668
-9.6329e-05
0.0117554
-8.63305e-05
0.0117449
-7.64481e-05
0.0117354
-6.66687e-05
0.0117268
-5.6979e-05
0.0117193
-4.73661e-05
0.0117128
-3.78166e-05
0.0117073
-2.83181e-05
0.0117029
-1.88576e-05
0.0116996
-9.42248e-06
0.0116974
0.0116963
-0.000457963
0.00961605
0.000446198
-0.0004598
0.010448
-0.00045359
0.011076
-0.000441834
0.011508
-0.000426848
0.0117787
-0.000410348
0.0119326
-0.000393404
0.0120106
-0.000376581
0.0120436
-0.000360133
0.0120519
-0.000344146
0.0120475
-0.000328629
0.0120369
-0.000313567
0.0120233
-0.000298932
0.0120082
-0.000284702
0.0119923
-0.000270853
0.0119757
-0.000257364
0.0119588
-0.000244218
0.0119417
-0.000231395
0.0119245
-0.000218879
0.0119072
-0.000206652
0.0118901
-0.000194699
0.0118732
-0.000183002
0.0118566
-0.000171547
0.0118405
-0.000160319
0.0118248
-0.000149302
0.0118097
-0.000138481
0.0117953
-0.000127843
0.0117816
-0.000117373
0.0117686
-0.000107057
0.0117565
-9.68827e-05
0.0117452
-8.68354e-05
0.0117349
-7.69022e-05
0.0117254
-6.707e-05
0.011717
-5.73259e-05
0.0117095
-4.7657e-05
0.0117031
-3.80509e-05
0.0116977
-2.84946e-05
0.0116934
-1.89756e-05
0.0116901
-9.48149e-06
0.011688
0.0116869
-0.000457649
0.00962761
0.000446086
-0.000459403
0.0104498
-0.000453217
0.0110698
-0.000441556
0.0114964
-0.000426701
0.0117638
-0.000410343
0.0119162
-0.000393532
0.0119938
-0.00037683
0.0120269
-0.000360488
0.0120355
-0.000344592
0.0120316
-0.000329154
0.0120215
-0.000314158
0.0120083
-0.00029958
0.0119936
-0.000285395
0.0119781
-0.000271583
0.0119619
-0.000258123
0.0119454
-0.000244996
0.0119286
-0.000232186
0.0119117
-0.000219676
0.0118947
-0.000207449
0.0118779
-0.000195488
0.0118613
-0.00018378
0.0118449
-0.000172307
0.011829
-0.000161056
0.0118136
-0.000150013
0.0117987
-0.000139162
0.0117845
-0.000128489
0.0117709
-0.000117982
0.0117581
-0.000107626
0.0117461
-9.74077e-05
0.011735
-8.73148e-05
0.0117248
-7.73335e-05
0.0117155
-6.74515e-05
0.0117071
-5.7656e-05
0.0116997
-4.79343e-05
0.0116934
-3.8274e-05
0.0116881
-2.86627e-05
0.0116838
-1.90881e-05
0.0116806
-9.53795e-06
0.0116784
0.0116773
-0.000457157
0.00963897
0.000445791
-0.000458834
0.0104514
-0.000452677
0.0110637
-0.000441119
0.0114848
-0.000426404
0.0117491
-0.000410194
0.0119
-0.000393524
0.0119771
-0.00037695
0.0120103
-0.000360721
0.0120193
-0.000344924
0.0120158
-0.000329571
0.0120061
-0.000314649
0.0119934
-0.000300132
0.0119791
-0.000285999
0.0119639
-0.000272228
0.0119481
-0.000258801
0.011932
-0.0002457
0.0119155
-0.000232907
0.0118989
-0.000220406
0.0118822
-0.000208182
0.0118657
-0.000196219
0.0118493
-0.000184502
0.0118332
-0.000173016
0.0118175
-0.000161747
0.0118023
-0.00015068
0.0117876
-0.000139802
0.0117736
-0.000129098
0.0117602
-0.000118556
0.0117476
-0.000108163
0.0117357
-9.79046e-05
0.0117248
-8.77688e-05
0.0117146
-7.77427e-05
0.0117054
-6.78137e-05
0.0116972
-5.79695e-05
0.0116899
-4.81977e-05
0.0116836
-3.84861e-05
0.0116783
-2.88226e-05
0.0116741
-1.91951e-05
0.0116709
-9.59169e-06
0.0116688
0.0116677
-0.000456491
0.00965015
0.000445318
-0.000458097
0.010453
-0.000451976
0.0110576
-0.000440528
0.0114733
-0.000425959
0.0117345
-0.000409905
0.0118839
-0.000393385
0.0119606
-0.000376946
0.0119939
-0.000360837
0.0120032
-0.000345145
0.0120001
-0.000329884
0.0119909
-0.00031504
0.0119786
-0.000300591
0.0119647
-0.000286515
0.0119499
-0.000272792
0.0119344
-0.000259402
0.0119186
-0.00024633
0.0119024
-0.000233559
0.0118861
-0.000221072
0.0118697
-0.000208856
0.0118534
-0.000196893
0.0118373
-0.000185171
0.0118215
-0.000173675
0.011806
-0.000162391
0.011791
-0.000151304
0.0117765
-0.000140402
0.0117627
-0.000129671
0.0117495
-0.000119098
0.011737
-0.00010867
0.0117253
-9.8374e-05
0.0117145
-8.81983e-05
0.0117045
-7.813e-05
0.0116954
-6.81569e-05
0.0116872
-5.82668e-05
0.01168
-4.84477e-05
0.0116738
-3.86875e-05
0.0116686
-2.89745e-05
0.0116644
-1.92968e-05
0.0116612
-9.64253e-06
0.0116591
0.0116581
-0.000455657
0.00966113
0.000444671
-0.000457197
0.0104546
-0.000451119
0.0110515
-0.000439787
0.011462
-0.000425372
0.0117201
-0.000409481
0.0118681
-0.000393117
0.0119442
-0.000376822
0.0119776
-0.000360839
0.0119872
-0.000345259
0.0119846
-0.000330096
0.0119757
-0.000315337
0.0119638
-0.00030096
0.0119503
-0.000286946
0.0119358
-0.000273274
0.0119208
-0.000259928
0.0119052
-0.000246889
0.0118894
-0.000234143
0.0118734
-0.000221675
0.0118573
-0.000209469
0.0118412
-0.000197512
0.0118254
-0.000185789
0.0118098
-0.000174286
0.0117945
-0.000162989
0.0117797
-0.000151886
0.0117654
-0.000140963
0.0117518
-0.000130208
0.0117387
-0.000119606
0.0117264
-0.000109147
0.0117149
-9.88165e-05
0.0117041
-8.86037e-05
0.0116942
-7.84961e-05
0.0116853
-6.84816e-05
0.0116772
-5.85483e-05
0.0116701
-4.86845e-05
0.0116639
-3.88785e-05
0.0116588
-2.91186e-05
0.0116546
-1.93932e-05
0.0116515
-9.69087e-06
0.0116494
0.0116484
-0.000454658
0.00967194
0.000443855
-0.000456139
0.0104561
-0.00045011
0.0110455
-0.000438902
0.0114508
-0.000424647
0.0117059
-0.000408926
0.0118523
-0.000392726
0.011928
-0.00037658
0.0119614
-0.000360731
0.0119714
-0.000345269
0.0119691
-0.000330209
0.0119607
-0.00031554
0.0119492
-0.000301242
0.011936
-0.000287294
0.0119219
-0.000273679
0.0119071
-0.000260379
0.0118919
-0.000247379
0.0118764
-0.000234663
0.0118606
-0.000222216
0.0118448
-0.000210026
0.011829
-0.000198077
0.0118134
-0.000186356
0.011798
-0.000174849
0.011783
-0.000163544
0.0117684
-0.000152428
0.0117543
-0.000141487
0.0117408
-0.000130709
0.0117279
-0.000120083
0.0117158
-0.000109594
0.0117044
-9.92328e-05
0.0116938
-8.89857e-05
0.011684
-7.88414e-05
0.0116751
-6.87881e-05
0.0116671
-5.88143e-05
0.0116601
-4.89085e-05
0.011654
-3.90592e-05
0.0116489
-2.9255e-05
0.0116448
-1.94846e-05
0.0116418
-9.73666e-06
0.0116397
0.0116387
-0.000453501
0.00968256
0.000442875
-0.000454929
0.0104575
-0.000448955
0.0110395
-0.000437877
0.0114397
-0.000423789
0.0116918
-0.000408245
0.0118368
-0.000392215
0.011912
-0.000376225
0.0119454
-0.000360516
0.0119557
-0.000345178
0.0119538
-0.000330227
0.0119457
-0.000315653
0.0119346
-0.000301438
0.0119218
-0.000287562
0.011908
-0.000274008
0.0118936
-0.000260759
0.0118787
-0.000247801
0.0118634
-0.000235119
0.011848
-0.000222698
0.0118324
-0.000210526
0.0118169
-0.000198588
0.0118015
-0.000186873
0.0117863
-0.000175366
0.0117715
-0.000164056
0.0117571
-0.000152929
0.0117432
-0.000141974
0.0117299
-0.000131177
0.0117172
-0.000120528
0.0117051
-0.000110014
0.0116939
-9.96234e-05
0.0116834
-8.93446e-05
0.0116737
-7.91664e-05
0.0116649
-6.9077e-05
0.011657
-5.90653e-05
0.0116501
-4.912e-05
0.0116441
-3.92299e-05
0.011639
-2.93839e-05
0.011635
-1.95709e-05
0.0116319
-9.77997e-06
0.0116299
0.0116289
-0.000452191
0.00969302
0.000441736
-0.000453572
0.0104589
-0.00044766
0.0110336
-0.000436718
0.0114288
-0.000422804
0.0116779
-0.000407442
0.0118214
-0.000391589
0.0118961
-0.000375761
0.0119296
-0.000360198
0.0119401
-0.000344989
0.0119385
-0.000330153
0.0119309
-0.00031568
0.0119201
-0.000301552
0.0119077
-0.000287753
0.0118942
-0.000274264
0.0118801
-0.00026107
0.0118655
-0.000248158
0.0118505
-0.000235513
0.0118353
-0.000223122
0.01182
-0.000210971
0.0118047
-0.000199049
0.0117896
-0.000187343
0.0117746
-0.000175839
0.01176
-0.000164526
0.0117458
-0.000153392
0.0117321
-0.000142425
0.0117189
-0.000131612
0.0117063
-0.000120943
0.0116945
-0.000110406
0.0116833
-9.99891e-05
0.011673
-8.96814e-05
0.0116634
-7.94717e-05
0.0116547
-6.93487e-05
0.0116469
-5.93016e-05
0.01164
-4.93192e-05
0.0116341
-3.93908e-05
0.0116291
-2.95055e-05
0.0116251
-1.96524e-05
0.0116221
-9.82084e-06
0.0116201
0.0116191
-0.000450734
0.00970331
0.000440444
-0.000452074
0.0104602
-0.000446231
0.0110277
-0.00043543
0.011418
-0.000421696
0.0116641
-0.000406523
0.0118063
-0.000390852
0.0118805
-0.000375192
0.0119139
-0.00035978
0.0119247
-0.000344706
0.0119235
-0.00032999
0.0119162
-0.000315622
0.0119057
-0.000301587
0.0118936
-0.000287868
0.0118805
-0.000274449
0.0118667
-0.000261314
0.0118523
-0.000248452
0.0118376
-0.000235848
0.0118227
-0.000223489
0.0118077
-0.000211364
0.0117926
-0.00019946
0.0117777
-0.000187766
0.0117629
-0.000176268
0.0117485
-0.000164956
0.0117345
-0.000153817
0.0117209
-0.000142841
0.0117079
-0.000132015
0.0116955
-0.000121329
0.0116838
-0.000110771
0.0116728
-0.000100331
0.0116625
-8.99965e-05
0.0116531
-7.97577e-05
0.0116445
-6.96036e-05
0.0116368
-5.95235e-05
0.01163
-4.95067e-05
0.0116241
-3.95422e-05
0.0116191
-2.962e-05
0.0116152
-1.97292e-05
0.0116122
-9.85935e-06
0.0116102
0.0116092
-0.000449135
0.00971344
0.000439004
-0.000450442
0.0104615
-0.000444673
0.011022
-0.00043402
0.0114073
-0.000420471
0.0116506
-0.000405493
0.0117913
-0.00039001
0.011865
-0.000374523
0.0118985
-0.000359268
0.0119094
-0.000344334
0.0119085
-0.000329741
0.0119016
-0.000315484
0.0118915
-0.000301546
0.0118797
-0.000287911
0.0118669
-0.000274565
0.0118533
-0.000261494
0.0118393
-0.000248684
0.0118248
-0.000236125
0.0118101
-0.000223802
0.0117953
-0.000211706
0.0117805
-0.000199823
0.0117658
-0.000188144
0.0117513
-0.000176655
0.011737
-0.000165346
0.0117232
-0.000154206
0.0117098
-0.000143223
0.0116969
-0.000132387
0.0116847
-0.000121686
0.0116731
-0.00011111
0.0116622
-0.000100648
0.0116521
-9.02902e-05
0.0116427
-8.0025e-05
0.0116342
-6.98422e-05
0.0116266
-5.97315e-05
0.0116198
-4.96822e-05
0.011614
-3.96844e-05
0.0116091
-2.97275e-05
0.0116052
-1.98013e-05
0.0116023
-9.89544e-06
0.0116003
0.0115993
-0.000447401
0.00972342
0.000437423
-0.00044868
0.0104628
-0.000442991
0.0110163
-0.000432492
0.0113968
-0.000419134
0.0116372
-0.000404356
0.0117765
-0.000389066
0.0118497
-0.000373757
0.0118831
-0.000358664
0.0118943
-0.000343875
0.0118938
-0.000329411
0.0118871
-0.000315268
0.0118773
-0.00030143
0.0118659
-0.000287884
0.0118533
-0.000274615
0.0118401
-0.000261611
0.0118263
-0.000248858
0.0118121
-0.000236346
0.0117976
-0.000224063
0.011783
-0.000211998
0.0117684
-0.00020014
0.0117539
-0.000188478
0.0117396
-0.000177001
0.0117255
-0.000165698
0.0117119
-0.000154559
0.0116986
-0.000143572
0.0116859
-0.000132728
0.0116738
-0.000122015
0.0116624
-0.000111424
0.0116516
-0.000100943
0.0116416
-9.05634e-05
0.0116323
-8.02742e-05
0.0116239
-7.0065e-05
0.0116164
-5.99259e-05
0.0116097
-4.98468e-05
0.0116039
-3.98176e-05
0.0115991
-2.98284e-05
0.0115952
-1.9869e-05
0.0115923
-9.92951e-06
0.0115904
0.0115894
-0.000445539
0.00973325
0.000435707
-0.000446797
0.0104641
-0.000441194
0.0110107
-0.000430854
0.0113865
-0.000417691
0.0116241
-0.000403118
0.0117619
-0.000388025
0.0118346
-0.0003729
0.011868
-0.000357973
0.0118794
-0.000343333
0.0118791
-0.000329003
0.0118728
-0.000314977
0.0118633
-0.000301245
0.0118521
-0.000287791
0.0118399
-0.000274603
0.0118269
-0.000261668
0.0118133
-0.000248975
0.0117994
-0.000236514
0.0117852
-0.000224273
0.0117708
-0.000212243
0.0117564
-0.000200412
0.0117421
-0.000188771
0.0117279
-0.000177308
0.0117141
-0.000166014
0.0117006
-0.000154878
0.0116875
-0.00014389
0.011675
-0.00013304
0.011663
-0.000122317
0.0116516
-0.000111713
0.011641
-0.000101216
0.0116311
-9.0817e-05
0.0116219
-8.05057e-05
0.0116136
-7.02724e-05
0.0116061
-6.01072e-05
0.0115995
-5.00004e-05
0.0115938
-3.99421e-05
0.0115891
-2.99226e-05
0.0115852
-1.99323e-05
0.0115823
-9.9613e-06
0.0115804
0.0115794
-0.000443555
0.00974294
0.000433863
-0.000444797
0.0104653
-0.000439287
0.0110052
-0.00042911
0.0113763
-0.000416147
0.0116111
-0.000401783
0.0117476
-0.000386893
0.0118197
-0.000371956
0.0118531
-0.000357199
0.0118647
-0.000342712
0.0118646
-0.000328519
0.0118586
-0.000314616
0.0118494
-0.000300992
0.0118385
-0.000287633
0.0118265
-0.000274529
0.0118138
-0.000261667
0.0118005
-0.000249037
0.0117868
-0.00023663
0.0117728
-0.000224435
0.0117586
-0.000212441
0.0117444
-0.000200641
0.0117303
-0.000189022
0.0117163
-0.000177577
0.0117026
-0.000166293
0.0116893
-0.000155163
0.0116764
-0.000144177
0.011664
-0.000133323
0.0116521
-0.000122594
0.0116409
-0.000111978
0.0116304
-0.000101467
0.0116206
-9.10509e-05
0.0116115
-8.07201e-05
0.0116033
-7.04648e-05
0.0115959
-6.02757e-05
0.0115893
-5.01433e-05
0.0115837
-4.00581e-05
0.011579
-3.00106e-05
0.0115752
-1.99914e-05
0.0115723
-9.99109e-06
0.0115704
0.0115694
-0.000441456
0.0097525
0.000431897
-0.000442689
0.0104665
-0.000437275
0.0109997
-0.000427267
0.0113663
-0.000414509
0.0115983
-0.000400359
0.0117334
-0.000385675
0.011805
-0.000370929
0.0118383
-0.000356347
0.0118501
-0.000342017
0.0118503
-0.000327964
0.0118445
-0.000314186
0.0118356
-0.000300674
0.011825
-0.000287414
0.0118132
-0.000274397
0.0118007
-0.000261611
0.0117877
-0.000249048
0.0117742
-0.000236697
0.0117604
-0.000224549
0.0117465
-0.000212596
0.0117325
-0.000200827
0.0117185
-0.000189235
0.0117047
-0.000177808
0.0116912
-0.000166539
0.011678
-0.000155417
0.0116653
-0.000144434
0.011653
-0.000133579
0.0116413
-0.000122845
0.0116302
-0.000112221
0.0116198
-0.000101698
0.01161
-9.12666e-05
0.0116011
-8.09179e-05
0.0115929
-7.06428e-05
0.0115856
-6.04319e-05
0.0115791
-5.0276e-05
0.0115735
-4.01659e-05
0.0115689
-3.00924e-05
0.0115651
-2.00464e-05
0.0115623
-1.00186e-05
0.0115604
0.0115594
-0.000439248
0.00976193
0.000429816
-0.000440479
0.0104678
-0.000435167
0.0109944
-0.000425332
0.0113565
-0.000412781
0.0115858
-0.000398848
0.0117195
-0.000384375
0.0117905
-0.000369824
0.0118238
-0.00035542
0.0118357
-0.00034125
0.0118361
-0.000327341
0.0118306
-0.000313693
0.011822
-0.000300295
0.0118116
-0.000287137
0.0118001
-0.000274209
0.0117878
-0.000261503
0.011775
-0.000249007
0.0117617
-0.000236716
0.0117481
-0.000224619
0.0117344
-0.000212708
0.0117206
-0.000200975
0.0117068
-0.00018941
0.0116932
-0.000178005
0.0116798
-0.000166752
0.0116668
-0.00015564
0.0116542
-0.000144663
0.011642
-0.000133809
0.0116304
-0.000123072
0.0116194
-0.000112441
0.0116091
-0.000101908
0.0115995
-9.14639e-05
0.0115906
-8.10998e-05
0.0115826
-7.08069e-05
0.0115753
-6.05762e-05
0.0115689
-5.03988e-05
0.0115634
-4.02658e-05
0.0115587
-3.01681e-05
0.011555
-2.00974e-05
0.0115522
-1.00443e-05
0.0115503
0.0115494
-0.000436939
0.00977124
0.000427627
-0.000438173
0.010469
-0.000432968
0.0109892
-0.000423309
0.0113468
-0.000410971
0.0115734
-0.000397258
0.0117058
-0.000382998
0.0117763
-0.000368646
0.0118094
-0.000354422
0.0118215
-0.000340416
0.0118221
-0.000326655
0.0118169
-0.000313137
0.0118085
-0.000299857
0.0117983
-0.000286804
0.011787
-0.000273969
0.011775
-0.000261344
0.0117623
-0.00024892
0.0117493
-0.00023669
0.0117359
-0.000224646
0.0117223
-0.000212779
0.0117087
-0.000201083
0.0116951
-0.000189549
0.0116816
-0.000178168
0.0116684
-0.000166932
0.0116555
-0.000155834
0.0116431
-0.000144864
0.011631
-0.000134014
0.0116196
-0.000123275
0.0116087
-0.00011264
0.0115985
-0.000102099
0.011589
-9.16439e-05
0.0115802
-8.12663e-05
0.0115722
-7.09575e-05
0.011565
-6.07089e-05
0.0115587
-5.05119e-05
0.0115532
-4.0358e-05
0.0115486
-3.02385e-05
0.0115449
-2.01446e-05
0.0115421
-1.0068e-05
0.0115402
0.0115393
-0.000434536
0.00978044
0.000425337
-0.000435778
0.0104702
-0.000430685
0.0109841
-0.000421207
0.0113373
-0.000409083
0.0115613
-0.000395594
0.0116923
-0.000381549
0.0117622
-0.000367399
0.0117953
-0.000353359
0.0118074
-0.000339519
0.0118083
-0.000325907
0.0118032
-0.000312525
0.0117951
-0.000299365
0.0117851
-0.000286419
0.0117741
-0.000273679
0.0117622
-0.000261137
0.0117498
-0.000248787
0.0117369
-0.000236621
0.0117237
-0.000224631
0.0117103
-0.000212812
0.0116969
-0.000201155
0.0116834
-0.000189653
0.0116701
-0.000178298
0.0116571
-0.000167083
0.0116443
-0.000155999
0.011632
-0.000145038
0.0116201
-0.000134193
0.0116087
-0.000123456
0.011598
-0.000112818
0.0115878
-0.000102271
0.0115784
-9.18071e-05
0.0115697
-8.14179e-05
0.0115618
-7.10951e-05
0.0115547
-6.08305e-05
0.0115484
-5.0616e-05
0.011543
-4.04428e-05
0.0115384
-3.03029e-05
0.0115347
-2.01881e-05
0.011532
-1.00898e-05
0.0115301
0.0115292
-0.000432045
0.00978953
0.000422954
-0.000433302
0.0104715
-0.000428325
0.0109792
-0.00041903
0.011328
-0.000407124
0.0115494
-0.00039386
0.011679
-0.000380035
0.0117484
-0.000366088
0.0117813
-0.000352234
0.0117936
-0.000338563
0.0117946
-0.000325104
0.0117898
-0.000311858
0.0117818
-0.00029882
0.0117721
-0.000285983
0.0117613
-0.000273341
0.0117496
-0.000260885
0.0117374
-0.00024861
0.0117246
-0.00023651
0.0117116
-0.000224578
0.0116984
-0.000212808
0.0116851
-0.000201192
0.0116718
-0.000189725
0.0116587
-0.000178398
0.0116457
-0.000167204
0.0116331
-0.000156137
0.0116209
-0.000145188
0.0116091
-0.00013435
0.0115979
-0.000123615
0.0115872
-0.000112976
0.0115772
-0.000102425
0.0115679
-9.19542e-05
0.0115593
-8.15552e-05
0.0115514
-7.12202e-05
0.0115443
-6.09414e-05
0.0115381
-5.07107e-05
0.0115327
-4.05204e-05
0.0115282
-3.03622e-05
0.0115246
-2.02281e-05
0.0115218
-1.01101e-05
0.01152
0.0115191
-0.000429475
0.00979852
0.000420483
-0.000430751
0.0104728
-0.000425894
0.0109743
-0.000416786
0.0113189
-0.000405099
0.0115377
-0.000392064
0.011666
-0.000378458
0.0117348
-0.000364717
0.0117676
-0.000351052
0.0117799
-0.000337552
0.0117811
-0.000324247
0.0117765
-0.00031114
0.0117687
-0.000298227
0.0117592
-0.000285501
0.0117485
-0.000272958
0.0117371
-0.00026059
0.011725
-0.000248393
0.0117125
-0.000236361
0.0116996
-0.000224488
0.0116865
-0.000212769
0.0116734
-0.000201196
0.0116602
-0.000189765
0.0116472
-0.000178467
0.0116344
-0.000167297
0.011622
-0.000156248
0.0116099
-0.000145313
0.0115982
-0.000134484
0.0115871
-0.000123754
0.0115765
-0.000113116
0.0115666
-0.000102563
0.0115573
-9.2086e-05
0.0115488
-8.16787e-05
0.011541
-7.13334e-05
0.011534
-6.10421e-05
0.0115278
-5.07973e-05
0.0115225
-4.05913e-05
0.011518
-3.04163e-05
0.0115144
-2.02646e-05
0.0115117
-1.01284e-05
0.0115099
0.011509
-0.000426831
0.00980742
0.000417934
-0.000428132
0.0104741
-0.000423398
0.0109696
-0.00041448
0.01131
-0.000403015
0.0115263
-0.000390209
0.0116532
-0.000376826
0.0117214
-0.000363292
0.0117541
-0.000349817
0.0117664
-0.00033649
0.0117678
-0.000323341
0.0117633
-0.000310374
0.0117558
-0.000297588
0.0117464
-0.000284976
0.0117359
-0.000272533
0.0117246
-0.000260255
0.0117127
-0.000248138
0.0117003
-0.000236175
0.0116876
-0.000224363
0.0116747
-0.000212696
0.0116617
-0.000201168
0.0116487
-0.000189775
0.0116358
-0.000178509
0.0116232
-0.000167364
0.0116108
-0.000156335
0.0115988
-0.000145415
0.0115873
-0.000134596
0.0115762
-0.000123873
0.0115658
-0.000113237
0.0115559
-0.000102683
0.0115468
-9.22027e-05
0.0115383
-8.17891e-05
0.0115306
-7.14348e-05
0.0115236
-6.11328e-05
0.0115175
-5.08755e-05
0.0115122
-4.06555e-05
0.0115078
-3.04654e-05
0.0115042
-2.02978e-05
0.0115015
-1.01452e-05
0.0114997
0.0114988
-0.000424122
0.00981623
0.000415313
-0.000425453
0.0104754
-0.000420846
0.010965
-0.000412118
0.0113013
-0.000400877
0.011515
-0.000388301
0.0116406
-0.000375142
0.0117083
-0.000361817
0.0117407
-0.000348534
0.0117531
-0.000335381
0.0117546
-0.000322389
0.0117503
-0.000309565
0.0117429
-0.000296906
0.0117338
-0.000284409
0.0117234
-0.000272069
0.0117123
-0.000259883
0.0117005
-0.000247846
0.0116883
-0.000235955
0.0116757
-0.000224205
0.011663
-0.000212592
0.0116501
-0.000201111
0.0116372
-0.000189756
0.0116245
-0.000178523
0.0116119
-0.000167406
0.0115997
-0.000156399
0.0115878
-0.000145495
0.0115764
-0.000134688
0.0115654
-0.000123973
0.0115551
-0.000113342
0.0115453
-0.000102788
0.0115362
-9.23054e-05
0.0115278
-8.18869e-05
0.0115202
-7.15254e-05
0.0115133
-6.12141e-05
0.0115072
-5.09458e-05
0.011502
-4.07135e-05
0.0114976
-3.05099e-05
0.011494
-2.03279e-05
0.0114913
-1.01602e-05
0.0114896
0.0114887
-0.000421354
0.00982496
0.000412626
-0.000422719
0.0104768
-0.000418242
0.0109605
-0.000409708
0.0112928
-0.000398691
0.011504
-0.000386347
0.0116283
-0.000373412
0.0116953
-0.000360297
0.0117276
-0.000347206
0.01174
-0.000334229
0.0117417
-0.000321396
0.0117375
-0.000308715
0.0117303
-0.000296185
0.0117212
-0.000283804
0.011711
-0.000271568
0.0117
-0.000259475
0.0116884
-0.00024752
0.0116763
-0.000235702
0.0116639
-0.000224015
0.0116513
-0.000212458
0.0116385
-0.000201025
0.0116258
-0.000189711
0.0116132
-0.000178513
0.0116007
-0.000167424
0.0115886
-0.00015644
0.0115768
-0.000145554
0.0115655
-0.000134761
0.0115546
-0.000124055
0.0115444
-0.000113429
0.0115347
-0.000102878
0.0115257
-9.23945e-05
0.0115173
-8.19726e-05
0.0115097
-7.16054e-05
0.0115029
-6.12864e-05
0.0114969
-5.10086e-05
0.0114917
-4.07654e-05
0.0114873
-3.05498e-05
0.0114838
-2.0355e-05
0.0114811
-1.0174e-05
0.0114794
0.0114785
-0.000418535
0.00983361
0.000409883
-0.000419939
0.0104782
-0.000415595
0.0109561
-0.000407255
0.0112844
-0.000396463
0.0114932
-0.000384351
0.0116161
-0.000371641
0.0116826
-0.000358736
0.0117147
-0.000345839
0.0117271
-0.000333037
0.0117288
-0.000320364
0.0117248
-0.000307828
0.0117177
-0.000295429
0.0117088
-0.000283165
0.0116988
-0.000271034
0.0116879
-0.000259034
0.0116764
-0.000247163
0.0116645
-0.000235418
0.0116522
-0.000223797
0.0116397
-0.000212296
0.011627
-0.000200912
0.0116144
-0.000189641
0.0116019
-0.000178478
0.0115896
-0.00016742
0.0115775
-0.00015646
0.0115659
-0.000145593
0.0115546
-0.000134815
0.0115439
-0.00012412
0.0115337
-0.000113501
0.0115241
-0.000102953
0.0115151
-9.24709e-05
0.0115069
-8.20469e-05
0.0114993
-7.16754e-05
0.0114925
-6.135e-05
0.0114866
-5.10642e-05
0.0114814
-4.08115e-05
0.0114771
-3.05854e-05
0.0114736
-2.03792e-05
0.0114709
-1.01864e-05
0.0114692
0.0114683
-0.000415672
0.00984219
0.000407088
-0.000417118
0.0104796
-0.000412909
0.0109519
-0.000404765
0.0112763
-0.000394198
0.0114826
-0.000382319
0.0116043
-0.000369833
0.0116701
-0.000357139
0.011702
-0.000344436
0.0117144
-0.000331811
0.0117162
-0.000319298
0.0117123
-0.000306907
0.0117053
-0.000294639
0.0116966
-0.000282493
0.0116866
-0.000270468
0.0116759
-0.000258563
0.0116645
-0.000246776
0.0116527
-0.000235107
0.0116405
-0.000223552
0.0116281
-0.000212109
0.0116156
-0.000200775
0.0116031
-0.000189547
0.0115907
-0.000178422
0.0115785
-0.000167394
0.0115665
-0.000156459
0.0115549
-0.000145614
0.0115438
-0.000134851
0.0115331
-0.000124168
0.011523
-0.000113558
0.0115135
-0.000103015
0.0115046
-9.25347e-05
0.0114964
-8.21102e-05
0.0114889
-7.17358e-05
0.0114822
-6.14054e-05
0.0114762
-5.11129e-05
0.0114711
-4.08522e-05
0.0114668
-3.06168e-05
0.0114633
-2.04006e-05
0.0114607
-1.01971e-05
0.011459
0.0114581
-0.000412771
0.00985071
0.000404251
-0.000414264
0.0104811
-0.000410192
0.0109479
-0.000402244
0.0112683
-0.000391903
0.0114723
-0.000380256
0.0115926
-0.000367995
0.0116579
-0.000355511
0.0116895
-0.000343002
0.0117019
-0.000330554
0.0117038
-0.000318201
0.0117
-0.000305956
0.0116931
-0.000293819
0.0116844
-0.000281792
0.0116746
-0.000269874
0.011664
-0.000258065
0.0116527
-0.000246363
0.011641
-0.000234769
0.0116289
-0.000223281
0.0116166
-0.000211897
0.0116042
-0.000200615
0.0115918
-0.000189431
0.0115795
-0.000178344
0.0115674
-0.000167348
0.0115555
-0.00015644
0.011544
-0.000145616
0.011533
-0.000134872
0.0115224
-0.000124202
0.0115123
-0.000113601
0.0115029
-0.000103065
0.011494
-9.25871e-05
0.0114859
-8.21632e-05
0.0114785
-7.17871e-05
0.0114718
-6.1453e-05
0.0114659
-5.11553e-05
0.0114608
-4.08876e-05
0.0114565
-3.06444e-05
0.0114531
-2.04194e-05
0.0114505
-1.02067e-05
0.0114488
0.0114479
-0.000409839
0.00985918
0.000401377
-0.000411383
0.0104827
-0.00040745
0.0109439
-0.000399699
0.0112606
-0.000389583
0.0114622
-0.000378167
0.0115812
-0.00036613
0.0116458
-0.000353857
0.0116773
-0.00034154
0.0116896
-0.000329269
0.0116915
-0.000317077
0.0116878
-0.000304978
0.011681
-0.000292973
0.0116724
-0.000281065
0.0116627
-0.000269254
0.0116522
-0.000257541
0.011641
-0.000245925
0.0116294
-0.000234408
0.0116174
-0.000222988
0.0116052
-0.000211663
0.0115929
-0.000200433
0.0115806
-0.000189295
0.0115684
-0.000178246
0.0115563
-0.000167283
0.0115446
-0.000156403
0.0115331
-0.000145602
0.0115222
-0.000134876
0.0115116
-0.00012422
0.0115017
-0.00011363
0.0114923
-0.000103102
0.0114835
-9.26286e-05
0.0114754
-8.22064e-05
0.011468
-7.18297e-05
0.0114614
-6.14932e-05
0.0114556
-5.11911e-05
0.0114505
-4.09181e-05
0.0114463
-3.06682e-05
0.0114428
-2.04357e-05
0.0114403
-1.0215e-05
0.0114385
0.0114377
-0.000406884
0.00986759
0.000398474
-0.000408482
0.0104843
-0.00040469
0.0109401
-0.000397136
0.011253
-0.000387244
0.0114523
-0.000376058
0.01157
-0.000364244
0.011634
-0.000352179
0.0116652
-0.000340056
0.0116775
-0.000327961
0.0116794
-0.00031593
0.0116757
-0.000303976
0.011669
-0.000292103
0.0116605
-0.000280314
0.0116509
-0.000268611
0.0116405
-0.000256994
0.0116294
-0.000245465
0.0116178
-0.000234025
0.011606
-0.000222673
0.0115938
-0.000211409
0.0115816
-0.000200231
0.0115694
-0.000189139
0.0115573
-0.00017813
0.0115453
-0.000167202
0.0115336
-0.00015635
0.0115223
-0.000145573
0.0115114
-0.000134866
0.0115009
-0.000124226
0.011491
-0.000113648
0.0114817
-0.000103127
0.011473
-9.26596e-05
0.011465
-8.22403e-05
0.0114576
-7.18643e-05
0.011451
-6.15264e-05
0.0114452
-5.12214e-05
0.0114402
-4.09439e-05
0.011436
-3.06885e-05
0.0114326
-2.04497e-05
0.01143
-1.02221e-05
0.0114283
0.0114275
-0.000403912
0.00987595
0.000395549
-0.000405567
0.0104859
-0.000401917
0.0109365
-0.000394559
0.0112457
-0.00038489
0.0114426
-0.000373934
0.0115591
-0.000362341
0.0116224
-0.000350485
0.0116533
-0.000338553
0.0116656
-0.000326634
0.0116675
-0.000314763
0.0116639
-0.000302954
0.0116572
-0.000291213
0.0116488
-0.000279543
0.0116392
-0.000267947
0.0116289
-0.000256427
0.0116179
-0.000244985
0.0116064
-0.000233622
0.0115946
-0.000222339
0.0115826
-0.000211135
0.0115704
-0.000200012
0.0115583
-0.000188966
0.0115462
-0.000177998
0.0115343
-0.000167104
0.0115227
-0.000156282
0.0115115
-0.000145529
0.0115006
-0.000134843
0.0114902
-0.000124219
0.0114804
-0.000113653
0.0114711
-0.000103142
0.0114625
-9.26809e-05
0.0114545
-8.22656e-05
0.0114472
-7.18912e-05
0.0114407
-6.1553e-05
0.0114349
-5.12461e-05
0.0114299
-4.09652e-05
0.0114257
-3.07054e-05
0.0114223
-2.04615e-05
0.0114198
-1.02281e-05
0.0114181
0.0114172
-0.00040093
0.00988427
0.000392608
-0.000402645
0.0104876
-0.000399137
0.010933
-0.000391975
0.0112385
-0.000382528
0.0114332
-0.000371799
0.0115483
-0.000360426
0.0116111
-0.000348776
0.0116417
-0.000337035
0.0116538
-0.000325291
0.0116557
-0.000313579
0.0116522
-0.000301915
0.0116456
-0.000290305
0.0116372
-0.000278754
0.0116277
-0.000267266
0.0116174
-0.000255842
0.0116064
-0.000244487
0.011595
-0.000233201
0.0115833
-0.000221987
0.0115713
-0.000210845
0.0115593
-0.000199775
0.0115472
-0.000188777
0.0115352
-0.00017785
0.0115234
-0.000166991
0.0115119
-0.0001562
0.0115007
-0.000145472
0.0114899
-0.000134807
0.0114796
-0.0001242
0.0114698
-0.000113648
0.0114606
-0.000103147
0.011452
-9.26932e-05
0.011444
-8.22827e-05
0.0114368
-7.1911e-05
0.0114303
-6.15735e-05
0.0114246
-5.12656e-05
0.0114196
-4.09824e-05
0.0114154
-3.07193e-05
0.0114121
-2.04712e-05
0.0114095
-1.02331e-05
0.0114078
0.011407
-0.000397944
0.00989256
0.000389658
-0.000399721
0.0104894
-0.000396356
0.0109296
-0.00038939
0.0112315
-0.000380163
0.011424
-0.000369659
0.0115378
-0.000358504
0.0115999
-0.000347059
0.0116303
-0.000335507
0.0116423
-0.000323936
0.0116442
-0.000312382
0.0116406
-0.000300862
0.011634
-0.000289383
0.0116257
-0.000277951
0.0116163
-0.000266569
0.011606
-0.000255242
0.0115951
-0.000243973
0.0115838
-0.000232765
0.0115721
-0.00022162
0.0115602
-0.00021054
0.0115482
-0.000199524
0.0115362
-0.000188574
0.0115243
-0.000177688
0.0115125
-0.000166865
0.0115011
-0.000156104
0.0114899
-0.000145403
0.0114792
-0.000134759
0.0114689
-0.00012417
0.0114592
-0.000113632
0.01145
-0.000103142
0.0114415
-9.26968e-05
0.0114336
-8.22922e-05
0.0114264
-7.19241e-05
0.0114199
-6.15881e-05
0.0114142
-5.12802e-05
0.0114093
-4.09958e-05
0.0114051
-3.07302e-05
0.0114018
-2.04789e-05
0.0113993
-1.0237e-05
0.0113976
0.0113968
-0.00039496
0.00990081
0.000386706
-0.000396803
0.0104912
-0.000393581
0.0109264
-0.000386808
0.0112248
-0.0003778
0.0114149
-0.000367518
0.0115275
-0.00035658
0.011589
-0.000345337
0.011619
-0.000333973
0.0116309
-0.000322573
0.0116328
-0.000311176
0.0116292
-0.000299798
0.0116227
-0.000288449
0.0116144
-0.000277135
0.0116049
-0.00026586
0.0115947
-0.000254629
0.0115839
-0.000243446
0.0115726
-0.000232316
0.011561
-0.00022124
0.0115491
-0.000210221
0.0115372
-0.00019926
0.0115252
-0.000188357
0.0115134
-0.000177513
0.0115017
-0.000166726
0.0114903
-0.000155997
0.0114792
-0.000145322
0.0114685
-0.000134701
0.0114583
-0.00012413
0.0114486
-0.000113607
0.0114395
-0.000103129
0.011431
-9.2693e-05
0.0114232
-8.22947e-05
0.011416
-7.19307e-05
0.0114096
-6.15974e-05
0.0114039
-5.12903e-05
0.011399
-4.10054e-05
0.0113948
-3.07384e-05
0.0113915
-2.04847e-05
0.011389
-1.024e-05
0.0113874
0.0113865
-0.000391984
0.00990904
0.000383757
-0.000393895
0.0104932
-0.000390817
0.0109233
-0.000384236
0.0112182
-0.000375444
0.0114062
-0.000365382
0.0115175
-0.000354657
0.0115782
-0.000343614
0.011608
-0.000332435
0.0116197
-0.000321205
0.0116215
-0.000309963
0.011618
-0.000298728
0.0116114
-0.000287507
0.0116031
-0.000276309
0.0115937
-0.00026514
0.0115835
-0.000254004
0.0115727
-0.000242908
0.0115615
-0.000231855
0.0115499
-0.000220848
0.0115381
-0.00020989
0.0115262
-0.000198983
0.0115143
-0.000188129
0.0115025
-0.000177327
0.0114909
-0.000166577
0.0114795
-0.000155879
0.0114685
-0.000145231
0.0114579
-0.000134633
0.0114477
-0.000124081
0.0114381
-0.000113574
0.011429
-0.000103108
0.0114205
-9.26814e-05
0.0114127
-8.22906e-05
0.0114056
-7.19318e-05
0.0113992
-6.16016e-05
0.0113936
-5.12962e-05
0.0113887
-4.10117e-05
0.0113846
-3.0744e-05
0.0113813
-2.04889e-05
0.0113788
-1.02423e-05
0.0113771
0.0113763
-0.000389024
0.00991724
0.000380819
-0.000391004
0.0104951
-0.000388069
0.0109204
-0.000381679
0.0112118
-0.000373099
0.0113976
-0.000363255
0.0115076
-0.00035274
0.0115677
-0.000341895
0.0115971
-0.000330899
0.0116087
-0.000319837
0.0116105
-0.000308748
0.0116069
-0.000297652
0.0116003
-0.000286559
0.0115921
-0.000275477
0.0115827
-0.000264412
0.0115725
-0.000253372
0.0115617
-0.000242361
0.0115505
-0.000231384
0.0115389
-0.000220446
0.0115272
-0.000209549
0.0115153
-0.000198697
0.0115035
-0.00018789
0.0114917
-0.00017713
0.0114801
-0.000166417
0.0114688
-0.000155751
0.0114578
-0.000145131
0.0114473
-0.000134556
0.0114371
-0.000124023
0.0114275
-0.000113532
0.0114185
-0.00010308
0.0114101
-9.26635e-05
0.0114023
-8.22804e-05
0.0113952
-7.19275e-05
0.0113889
-6.16012e-05
0.0113832
-5.12982e-05
0.0113784
-4.10148e-05
0.0113743
-3.07472e-05
0.011371
-2.04915e-05
0.0113685
-1.02437e-05
0.0113669
0.011366
-0.000386084
0.00992543
0.000377896
-0.000388135
0.0104972
-0.000385343
0.0109176
-0.000379141
0.0112056
-0.000370772
0.0113892
-0.000361142
0.011498
-0.000350834
0.0115574
-0.000340183
0.0115865
-0.000329367
0.0115979
-0.000318471
0.0115996
-0.000307534
0.0115959
-0.000296576
0.0115894
-0.000285609
0.0115811
-0.000274641
0.0115717
-0.00026368
0.0115615
-0.000252733
0.0115508
-0.000241806
0.0115396
-0.000230906
0.011528
-0.000220036
0.0115163
-0.0002092
0.0115045
-0.000198402
0.0114927
-0.000187643
0.0114809
-0.000176925
0.0114694
-0.000166249
0.0114581
-0.000155615
0.0114472
-0.000145022
0.0114367
-0.000134471
0.0114266
-0.000123958
0.011417
-0.000113484
0.011408
-0.000103045
0.0113996
-9.26393e-05
0.0113919
-8.22648e-05
0.0113849
-7.19182e-05
0.0113785
-6.15966e-05
0.0113729
-5.12967e-05
0.0113681
-4.10151e-05
0.011364
-3.07482e-05
0.0113607
-2.04926e-05
0.0113583
-1.02445e-05
0.0113566
0.0113558
-0.000383171
0.00993361
0.000374997
-0.000385294
0.0104993
-0.000382644
0.0109149
-0.000376628
0.0111996
-0.000368466
0.011381
-0.000359046
0.0114886
-0.000348942
0.0115473
-0.000338483
0.011576
-0.000327844
0.0115873
-0.000317111
0.0115889
-0.000306323
0.0115852
-0.000295501
0.0115785
-0.000284658
0.0115702
-0.000273803
0.0115608
-0.000262944
0.0115507
-0.00025209
0.0115399
-0.000241247
0.0115287
-0.000230422
0.0115172
-0.000219619
0.0115055
-0.000208844
0.0114937
-0.0001981
0.0114819
-0.000187389
0.0114702
-0.000176713
0.0114587
-0.000166074
0.0114475
-0.000155471
0.0114366
-0.000144907
0.0114261
-0.000134379
0.0114161
-0.000123886
0.0114065
-0.000113429
0.0113976
-0.000103004
0.0113892
-9.26097e-05
0.0113815
-8.22441e-05
0.0113745
-7.19045e-05
0.0113682
-6.15881e-05
0.0113626
-5.12918e-05
0.0113578
-4.10126e-05
0.0113537
-3.07473e-05
0.0113505
-2.04924e-05
0.011348
-1.02444e-05
0.0113464
0.0113455
-0.000380289
0.00994177
0.000372125
-0.000382487
0.0105015
-0.000379977
0.0109124
-0.000374145
0.0111937
-0.000366186
0.0113731
-0.000356973
0.0114794
-0.000347069
0.0115374
-0.000336798
0.0115657
-0.000326333
0.0115768
-0.00031576
0.0115783
-0.000305119
0.0115745
-0.000294431
0.0115679
-0.000283709
0.0115595
-0.000272965
0.0115501
-0.000262208
0.0115399
-0.000251445
0.0115291
-0.000240684
0.011518
-0.000229934
0.0115065
-0.000219198
0.0114948
-0.000208483
0.011483
-0.000197792
0.0114712
-0.000187128
0.0114596
-0.000176494
0.0114481
-0.000165892
0.0114369
-0.000155322
0.011426
-0.000144785
0.0114156
-0.00013428
0.0114056
-0.000123809
0.0113961
-0.000113368
0.0113871
-0.000102957
0.0113788
-9.25751e-05
0.0113711
-8.22189e-05
0.0113641
-7.18867e-05
0.0113578
-6.1576e-05
0.0113523
-5.12841e-05
0.0113475
-4.10078e-05
0.0113434
-3.07445e-05
0.0113402
-2.04909e-05
0.0113378
-1.02438e-05
0.0113361
0.0113353
-0.000377445
0.00994993
0.000369286
-0.000379718
0.0105038
-0.000377347
0.01091
-0.000371696
0.0111881
-0.000363937
0.0113653
-0.000354927
0.0114704
-0.000345219
0.0115277
-0.000335132
0.0115557
-0.000324838
0.0115665
-0.000314422
0.0115679
-0.000303924
0.011564
-0.000293368
0.0115573
-0.000282767
0.0115489
-0.000272132
0.0115395
-0.000261473
0.0115292
-0.0002508
0.0115185
-0.000240121
0.0115073
-0.000229444
0.0114958
-0.000218774
0.0114841
-0.000208118
0.0114723
-0.00019748
0.0114606
-0.000186863
0.011449
-0.00017627
0.0114375
-0.000165704
0.0114263
-0.000155166
0.0114155
-0.000144657
0.011405
-0.000134177
0.0113951
-0.000123726
0.0113856
-0.000113302
0.0113767
-0.000102906
0.0113684
-9.2536e-05
0.0113608
-8.21897e-05
0.0113538
-7.18653e-05
0.0113475
-6.15608e-05
0.011342
-5.12733e-05
0.0113372
-4.10008e-05
0.0113332
-3.07401e-05
0.0113299
-2.04883e-05
0.0113275
-1.02426e-05
0.0113259
0.0113251
-0.000374644
0.00995809
0.000366487
-0.000376992
0.0105061
-0.00037476
0.0109078
-0.000369287
0.0111826
-0.000361723
0.0113578
-0.000352912
0.0114616
-0.000343395
0.0115182
-0.000333489
0.0115457
-0.000323362
0.0115564
-0.000313099
0.0115576
-0.000302743
0.0115537
-0.000292315
0.0115469
-0.000281832
0.0115384
-0.000271304
0.0115289
-0.000260743
0.0115187
-0.000250158
0.0115079
-0.000239559
0.0114967
-0.000228954
0.0114852
-0.000218349
0.0114735
-0.000207751
0.0114617
-0.000197164
0.01145
-0.000186594
0.0114384
-0.000176043
0.011427
-0.000165513
0.0114158
-0.000155007
0.011405
-0.000144525
0.0113946
-0.000134069
0.0113846
-0.000123638
0.0113752
-0.000113233
0.0113663
-0.000102851
0.011358
-9.24931e-05
0.0113504
-8.21569e-05
0.0113434
-7.18408e-05
0.0113372
-6.15427e-05
0.0113317
-5.12605e-05
0.0113269
-4.09918e-05
0.0113229
-3.07341e-05
0.0113197
-2.04847e-05
0.0113173
-1.0241e-05
0.0113156
0.0113148
-0.000371891
0.00996625
0.000363733
-0.000374316
0.0105086
-0.00037222
0.0109057
-0.000366921
0.0111773
-0.000359549
0.0113504
-0.000350931
0.0114529
-0.000341602
0.0115089
-0.000331872
0.011536
-0.000321909
0.0115464
-0.000311796
0.0115475
-0.000301577
0.0115434
-0.000291276
0.0115366
-0.000280907
0.0115281
-0.000270484
0.0115185
-0.000260018
0.0115082
-0.00024952
0.0114974
-0.000239
0.0114862
-0.000228465
0.0114746
-0.000217924
0.011463
-0.000207383
0.0114512
-0.000196848
0.0114395
-0.000186323
0.0114279
-0.000175812
0.0114164
-0.000165318
0.0114053
-0.000154844
0.0113945
-0.000144389
0.0113841
-0.000133957
0.0113742
-0.000123547
0.0113648
-0.000113159
0.0113559
-0.000102792
0.0113477
-9.24469e-05
0.0113401
-8.2121e-05
0.0113331
-7.18135e-05
0.0113269
-6.15221e-05
0.0113214
-5.12454e-05
0.0113166
-4.09811e-05
0.0113126
-3.07269e-05
0.0113094
-2.04803e-05
0.011307
-1.02388e-05
0.0113054
0.0113046
-0.000369191
0.00997441
0.000361028
-0.000371692
0.0105111
-0.000369731
0.0109038
-0.000364602
0.0111722
-0.000357418
0.0113432
-0.00034899
0.0114445
-0.000339843
0.0114997
-0.000330285
0.0115265
-0.000320481
0.0115366
-0.000310515
0.0115375
-0.00030043
0.0115334
-0.000290252
0.0115264
-0.000279995
0.0115178
-0.000269675
0.0115082
-0.000259302
0.0114978
-0.000248889
0.011487
-0.000238445
0.0114757
-0.000227979
0.0114642
-0.000217501
0.0114525
-0.000207016
0.0114407
-0.000196531
0.011429
-0.000186051
0.0114174
-0.00017558
0.011406
-0.000165122
0.0113948
-0.000154678
0.0113841
-0.000144251
0.0113737
-0.000133843
0.0113638
-0.000123453
0.0113544
-0.000113082
0.0113455
-0.000102731
0.0113373
-9.23977e-05
0.0113297
-8.20825e-05
0.0113228
-7.17834e-05
0.0113166
-6.14994e-05
0.0113111
-5.12285e-05
0.0113064
-4.09689e-05
0.0113024
-3.07185e-05
0.0112992
-2.0475e-05
0.0112968
-1.02363e-05
0.0112952
0.0112943
-0.000366549
0.00998258
0.000358378
-0.000369127
0.0105136
-0.000367298
0.0109019
-0.000362336
0.0111672
-0.000355335
0.0113362
-0.000347091
0.0114363
-0.000338122
0.0114907
-0.000328731
0.0115171
-0.000319082
0.011527
-0.000309258
0.0115277
-0.000299305
0.0115234
-0.000289246
0.0115163
-0.000279099
0.0115077
-0.000268878
0.011498
-0.000258596
0.0114876
-0.000248265
0.0114766
-0.000237896
0.0114653
-0.000227499
0.0114538
-0.000217081
0.0114421
-0.000206652
0.0114303
-0.000196216
0.0114186
-0.00018578
0.0114069
-0.000175348
0.0113955
-0.000164924
0.0113844
-0.000154511
0.0113736
-0.000144111
0.0113633
-0.000133726
0.0113534
-0.000123356
0.011344
-0.000113003
0.0113352
-0.000102667
0.011327
-9.23464e-05
0.0113194
-8.20417e-05
0.0113125
-7.17517e-05
0.0113063
-6.14749e-05
0.0113008
-5.121e-05
0.0112961
-4.09554e-05
0.0112921
-3.07091e-05
0.0112889
-2.04691e-05
0.0112865
-1.02335e-05
0.0112849
0.0112841
-0.00036397
0.00999076
0.000355787
-0.000366625
0.0105163
-0.000364926
0.0109002
-0.000360127
0.0111624
-0.000353303
0.0113294
-0.000345238
0.0114282
-0.000336442
0.0114819
-0.000327213
0.0115078
-0.000317715
0.0115175
-0.00030803
0.011518
-0.000298203
0.0115136
-0.00028826
0.0115064
-0.00027822
0.0114976
-0.000268096
0.0114878
-0.000257903
0.0114774
-0.000247652
0.0114664
-0.000237356
0.011455
-0.000227025
0.0114434
-0.000216667
0.0114317
-0.000206291
0.0114199
-0.000195903
0.0114082
-0.00018551
0.0113966
-0.000175117
0.0113851
-0.000164727
0.011374
-0.000154343
0.0113633
-0.00014397
0.0113529
-0.000133608
0.011343
-0.000123258
0.0113337
-0.000112923
0.0113249
-0.000102601
0.0113167
-9.22932e-05
0.0113091
-8.19992e-05
0.0113022
-7.1718e-05
0.011296
-6.14488e-05
0.0112906
-5.11902e-05
0.0112858
-4.09408e-05
0.0112819
-3.06988e-05
0.0112787
-2.04626e-05
0.0112763
-1.02302e-05
0.0112747
0.0112739
-0.000361458
0.00999896
0.000353262
-0.00036419
0.010519
-0.000362618
0.0108987
-0.000357978
0.0111578
-0.000351326
0.0113227
-0.000343435
0.0114203
-0.000334807
0.0114733
-0.000325735
0.0114988
-0.000316382
0.0115081
-0.000306832
0.0115085
-0.000297128
0.0115039
-0.000287298
0.0114966
-0.000277361
0.0114877
-0.000267331
0.0114778
-0.000257223
0.0114673
-0.000247051
0.0114562
-0.000236826
0.0114448
-0.000226558
0.0114332
-0.000216258
0.0114214
-0.000205935
0.0114096
-0.000195594
0.0113978
-0.000185243
0.0113862
-0.000174887
0.0113748
-0.00016453
0.0113637
-0.000154176
0.0113529
-0.000143828
0.0113426
-0.000133489
0.0113327
-0.000123159
0.0113233
-0.000112841
0.0113145
-0.000102534
0.0113064
-9.22386e-05
0.0112988
-8.19553e-05
0.0112919
-7.16832e-05
0.0112857
-6.14216e-05
0.0112803
-5.11693e-05
0.0112756
-4.09252e-05
0.0112716
-3.06879e-05
0.0112684
-2.04557e-05
0.0112661
-1.02271e-05
0.0112645
0.0112637
-0.000359018
0.0100072
0.000350805
-0.000361826
0.0105218
-0.000360378
0.0108972
-0.000355892
0.0111533
-0.000349408
0.0113162
-0.000341686
0.0114126
-0.000333219
0.0114649
-0.0003243
0.0114898
-0.000315088
0.0114989
-0.000305667
0.011499
-0.000296082
0.0114943
-0.000286361
0.0114868
-0.000276523
0.0114778
-0.000266585
0.0114679
-0.00025656
0.0114572
-0.000246464
0.0114461
-0.000236307
0.0114347
-0.000226102
0.011423
-0.000215858
0.0114112
-0.000205585
0.0113993
-0.00019529
0.0113875
-0.000184979
0.0113759
-0.00017466
0.0113645
-0.000164335
0.0113533
-0.00015401
0.0113426
-0.000143688
0.0113322
-0.00013337
0.0113224
-0.00012306
0.011313
-0.000112758
0.0113042
-0.000102466
0.0112961
-9.21831e-05
0.0112885
-8.19104e-05
0.0112817
-7.16474e-05
0.0112755
-6.13934e-05
0.01127
-5.11476e-05
0.0112653
-4.0909e-05
0.0112614
-3.06763e-05
0.0112582
-2.04483e-05
0.0112558
-1.02234e-05
0.0112542
0.0112534
-0.000356654
0.0100154
0.000348423
-0.000359538
0.0105247
-0.000358211
0.0108959
-0.000353875
0.011149
-0.000347553
0.0113099
-0.000339993
0.011405
-0.000331683
0.0114565
-0.00032291
0.0114811
-0.000313834
0.0114898
-0.000304538
0.0114897
-0.000295068
0.0114848
-0.000285452
0.0114772
-0.000275711
0.0114681
-0.00026586
0.011458
-0.000255915
0.0114473
-0.000245891
0.0114361
-0.000235801
0.0114246
-0.000225656
0.0114128
-0.000215467
0.011401
-0.000205242
0.0113891
-0.000194991
0.0113773
-0.00018472
0.0113656
-0.000174436
0.0113542
-0.000164143
0.0113431
-0.000153846
0.0113323
-0.000143548
0.0113219
-0.000133252
0.0113121
-0.000122961
0.0113027
-0.000112676
0.011294
-0.000102397
0.0112858
-9.21272e-05
0.0112782
-8.1865e-05
0.0112714
-7.16109e-05
0.0112652
-6.13646e-05
0.0112598
-5.11254e-05
0.0112551
-4.08923e-05
0.0112512
-3.06646e-05
0.011248
-2.04407e-05
0.0112456
-1.02197e-05
0.011244
0.0112432
-0.000354371
0.0100237
0.000346119
-0.000357329
0.0105277
-0.000356121
0.0108947
-0.000351929
0.0111448
-0.000345763
0.0113038
-0.00033836
0.0113976
-0.0003302
0.0114484
-0.000321569
0.0114724
-0.000312623
0.0114809
-0.000303447
0.0114806
-0.000294087
0.0114755
-0.000284573
0.0114677
-0.000274924
0.0114585
-0.000265157
0.0114483
-0.00025529
0.0114374
-0.000245336
0.0114261
-0.00023531
0.0114145
-0.000225222
0.0114027
-0.000215085
0.0113908
-0.000204908
0.0113789
-0.0001947
0.0113671
-0.000184467
0.0113554
-0.000174217
0.0113439
-0.000163955
0.0113328
-0.000153684
0.011322
-0.000143411
0.0113117
-0.000133136
0.0113018
-0.000122863
0.0112925
-0.000112594
0.0112837
-0.000102329
0.0112755
-9.20711e-05
0.011268
-8.18193e-05
0.0112611
-7.15741e-05
0.011255
-6.13354e-05
0.0112496
-5.11025e-05
0.0112449
-4.08752e-05
0.0112409
-3.06523e-05
0.0112378
-2.04329e-05
0.0112354
-1.02157e-05
0.0112338
0.011233
-0.000352172
0.0100319
0.000343899
-0.000355204
0.0105307
-0.00035411
0.0108936
-0.000350059
0.0111407
-0.000344043
0.0112977
-0.00033679
0.0113904
-0.000328775
0.0114404
-0.000320278
0.0114639
-0.000311457
0.0114721
-0.000302397
0.0114715
-0.000293143
0.0114662
-0.000283725
0.0114583
-0.000274165
0.0114489
-0.000264479
0.0114386
-0.000254686
0.0114276
-0.0002448
0.0114163
-0.000234834
0.0114046
-0.000224803
0.0113927
-0.000214716
0.0113807
-0.000204584
0.0113688
-0.000194417
0.0113569
-0.000184221
0.0113452
-0.000174004
0.0113337
-0.000163771
0.0113226
-0.000153527
0.0113118
-0.000143276
0.0113014
-0.000133021
0.0112915
-0.000122766
0.0112822
-0.000112513
0.0112734
-0.000102262
0.0112653
-9.20155e-05
0.0112577
-8.17738e-05
0.0112509
-7.15373e-05
0.0112447
-6.13061e-05
0.0112393
-5.10798e-05
0.0112346
-4.08579e-05
0.0112307
-3.06399e-05
0.0112275
-2.04249e-05
0.0112252
-1.0212e-05
0.0112236
0.0112228
-0.000350063
0.0100402
0.000341766
-0.000353167
0.0105338
-0.000352184
0.0108926
-0.000348266
0.0111368
-0.000342395
0.0112919
-0.000335286
0.0113833
-0.000327409
0.0114325
-0.000319041
0.0114556
-0.00031034
0.0114634
-0.00030139
0.0114626
-0.000292237
0.0114571
-0.000282912
0.011449
-0.000273436
0.0114394
-0.000263828
0.011429
-0.000254105
0.0114179
-0.000244283
0.0114064
-0.000234376
0.0113947
-0.000224398
0.0113827
-0.000214359
0.0113707
-0.000204271
0.0113587
-0.000194143
0.0113468
-0.000183982
0.011335
-0.000173797
0.0113235
-0.000163592
0.0113124
-0.000153373
0.0113016
-0.000143144
0.0112912
-0.00013291
0.0112813
-0.000122672
0.011272
-0.000112433
0.0112632
-0.000102196
0.011255
-9.19607e-05
0.0112475
-8.17288e-05
0.0112407
-7.15008e-05
0.0112345
-6.12769e-05
0.0112291
-5.1057e-05
0.0112244
-4.08407e-05
0.0112205
-3.06276e-05
0.0112173
-2.04169e-05
0.011215
-1.02079e-05
0.0112134
0.0112126
-0.000348047
0.0100485
0.000339724
-0.00035122
0.010537
-0.000350344
0.0108917
-0.000346556
0.011133
-0.000340822
0.0112861
-0.000333851
0.0113763
-0.000326105
0.0114247
-0.000317861
0.0114473
-0.000309274
0.0114548
-0.000300428
0.0114537
-0.000291371
0.011448
-0.000282134
0.0114397
-0.000272738
0.01143
-0.000263204
0.0114194
-0.000253548
0.0114083
-0.000243788
0.0113967
-0.000233937
0.0113848
-0.000224009
0.0113728
-0.000214017
0.0113607
-0.00020397
0.0113486
-0.000193879
0.0113367
-0.000183752
0.0113249
-0.000173597
0.0113134
-0.000163419
0.0113022
-0.000153224
0.0112914
-0.000143017
0.011281
-0.000132801
0.0112711
-0.00012258
0.0112617
-0.000112356
0.011253
-0.000102131
0.0112448
-9.19068e-05
0.0112373
-8.16846e-05
0.0112304
-7.14649e-05
0.0112243
-6.12482e-05
0.0112189
-5.10344e-05
0.0112142
-4.08236e-05
0.0112103
-3.06153e-05
0.0112071
-2.0409e-05
0.0112048
-1.02042e-05
0.0112032
0.0112024
-0.000346127
0.0100569
0.000337779
-0.000349369
0.0105402
-0.000348595
0.0108909
-0.00034493
0.0111293
-0.000339328
0.0112805
-0.000332487
0.0113695
-0.000324866
0.0114171
-0.000316739
0.0114392
-0.00030826
0.0114463
-0.000299513
0.011445
-0.000290547
0.011439
-0.000281393
0.0114306
-0.000272074
0.0114207
-0.00026261
0.01141
-0.000253018
0.0113987
-0.000243315
0.011387
-0.000233517
0.011375
-0.000223638
0.0113629
-0.000213689
0.0113508
-0.000203682
0.0113386
-0.000193627
0.0113266
-0.000183532
0.0113148
-0.000173405
0.0113033
-0.000163253
0.011292
-0.000153081
0.0112812
-0.000142894
0.0112708
-0.000132696
0.0112609
-0.000122491
0.0112515
-0.000112281
0.0112428
-0.000102068
0.0112346
-9.18545e-05
0.0112271
-8.16415e-05
0.0112202
-7.14298e-05
0.0112141
-6.122e-05
0.0112087
-5.10123e-05
0.011204
-4.08068e-05
0.0112001
-3.06032e-05
0.0111969
-2.04012e-05
0.0111946
-1.02003e-05
0.011193
0.0111922
-0.000344309
0.0100653
0.000335934
-0.000347617
0.0105435
-0.00034694
0.0108903
-0.000343392
0.0111258
-0.000337915
0.0112751
-0.000331198
0.0113627
-0.000323695
0.0114096
-0.000315678
0.0114312
-0.000307301
0.0114379
-0.000298647
0.0114363
-0.000289767
0.0114302
-0.000280692
0.0114215
-0.000271445
0.0114115
-0.000262046
0.0114006
-0.000252515
0.0113891
-0.000242867
0.0113773
-0.000233119
0.0113653
-0.000223285
0.0113531
-0.000213377
0.0113409
-0.000203407
0.0113287
-0.000193386
0.0113166
-0.000183321
0.0113047
-0.000173222
0.0112932
-0.000163094
0.0112819
-0.000152944
0.011271
-0.000142776
0.0112606
-0.000132595
0.0112507
-0.000122405
0.0112413
-0.000112208
0.0112326
-0.000102007
0.0112244
-9.1804e-05
0.0112169
-8.15998e-05
0.01121
-7.13958e-05
0.0112039
-6.11927e-05
0.0111985
-5.09909e-05
0.0111938
-4.07905e-05
0.0111899
-3.05914e-05
0.0111867
-2.03936e-05
0.0111844
-1.01965e-05
0.0111828
0.011182
-0.000342596
0.0100737
0.000334194
-0.000345966
0.0105469
-0.000345382
0.0108897
-0.000341945
0.0111224
-0.000336585
0.0112697
-0.000329985
0.0113561
-0.000322594
0.0114022
-0.00031468
0.0114233
-0.000306398
0.0114296
-0.000297833
0.0114277
-0.000289033
0.0114214
-0.000280031
0.0114125
-0.000270852
0.0114023
-0.000261515
0.0113912
-0.00025204
0.0113797
-0.000242444
0.0113677
-0.000232743
0.0113556
-0.000222951
0.0113433
-0.000213082
0.011331
-0.000203148
0.0113187
-0.000193158
0.0113066
-0.000183122
0.0112947
-0.000173048
0.0112831
-0.000162943
0.0112718
-0.000152813
0.0112609
-0.000142664
0.0112505
-0.000132499
0.0112406
-0.000122324
0.0112312
-0.000112139
0.0112224
-0.000101949
0.0112142
-9.17555e-05
0.0112067
-8.15599e-05
0.0111998
-7.13632e-05
0.0111937
-6.11665e-05
0.0111883
-5.09702e-05
0.0111836
-4.07747e-05
0.0111797
-3.058e-05
0.0111765
-2.03862e-05
0.0111742
-1.01929e-05
0.0111726
0.0111718
-0.000340991
0.0100821
0.000332563
-0.000344421
0.0105503
-0.000343925
0.0108892
-0.000340591
0.011119
-0.000335342
0.0112644
-0.000328851
0.0113496
-0.000321564
0.0113949
-0.000313747
0.0114155
-0.000305555
0.0114214
-0.000297071
0.0114193
-0.000288346
0.0114126
-0.000279413
0.0114036
-0.000270297
0.0113932
-0.000261017
0.0113819
-0.000251595
0.0113702
-0.000242047
0.0113582
-0.00023239
0.0113459
-0.000222638
0.0113335
-0.000212805
0.0113212
-0.000202903
0.0113088
-0.000192943
0.0112967
-0.000182934
0.0112847
-0.000172884
0.011273
-0.000162801
0.0112617
-0.00015269
0.0112508
-0.000142558
0.0112403
-0.000132409
0.0112304
-0.000122246
0.011221
-0.000112074
0.0112122
-0.000101894
0.011204
-9.17097e-05
0.0111965
-8.15219e-05
0.0111896
-7.13322e-05
0.0111835
-6.11415e-05
0.0111781
-5.09505e-05
0.0111734
-4.07597e-05
0.0111695
-3.05693e-05
0.0111663
-2.03792e-05
0.011164
-1.01896e-05
0.0111624
0.0111616
-0.000339499
0.0100906
0.000331047
-0.000342985
0.0105538
-0.000342571
0.0108888
-0.000339334
0.0111158
-0.000334188
0.0112593
-0.000327799
0.0113433
-0.000320608
0.0113877
-0.000312881
0.0114077
-0.000304771
0.0114133
-0.000296363
0.0114109
-0.000287708
0.011404
-0.000278839
0.0113947
-0.00026978
0.0113841
-0.000260554
0.0113727
-0.000251181
0.0113609
-0.000241677
0.0113487
-0.000232061
0.0113363
-0.000222346
0.0113238
-0.000212547
0.0113114
-0.000202675
0.011299
-0.000192743
0.0112867
-0.000182758
0.0112747
-0.000172731
0.011263
-0.000162668
0.0112516
-0.000152575
0.0112407
-0.000142459
0.0112302
-0.000132324
0.0112203
-0.000122174
0.0112109
-0.000112012
0.011202
-0.000101843
0.0111938
-9.16666e-05
0.0111863
-8.14861e-05
0.0111795
-7.13029e-05
0.0111733
-6.11179e-05
0.0111679
-5.09319e-05
0.0111632
-4.07454e-05
0.0111593
-3.05589e-05
0.0111562
-2.03725e-05
0.0111538
-1.01862e-05
0.0111522
0.0111514
-0.000338124
0.010099
0.000329647
-0.000341661
0.0105574
-0.000341322
0.0108884
-0.000338176
0.0111126
-0.000333125
0.0112542
-0.00032683
0.011337
-0.000319728
0.0113806
-0.000312084
0.0114001
-0.00030405
0.0114053
-0.000295712
0.0114025
-0.00028712
0.0113954
-0.000278309
0.0113859
-0.000269304
0.0113751
-0.000260127
0.0113635
-0.000250798
0.0113515
-0.000241336
0.0113392
-0.000231756
0.0113267
-0.000222076
0.0113142
-0.000212308
0.0113016
-0.000202464
0.0112891
-0.000192557
0.0112768
-0.000182596
0.0112648
-0.000172589
0.011253
-0.000162544
0.0112416
-0.000152468
0.0112306
-0.000142367
0.0112201
-0.000132245
0.0112101
-0.000122106
0.0112007
-0.000111955
0.0111919
-0.000101794
0.0111837
-9.16262e-05
0.0111761
-8.14528e-05
0.0111693
-7.12756e-05
0.0111631
-6.10958e-05
0.0111577
-5.09145e-05
0.011153
-4.07322e-05
0.0111491
-3.05494e-05
0.011146
-2.03663e-05
0.0111436
-1.01831e-05
0.011142
0.0111412
-0.000336869
0.0101075
0.000328371
-0.000340453
0.0105609
-0.000340183
0.0108882
-0.000337119
0.0111096
-0.000332155
0.0112493
-0.000325946
0.0113308
-0.000318925
0.0113736
-0.000311357
0.0113925
-0.000303392
0.0113973
-0.000295117
0.0113942
-0.000286584
0.0113868
-0.000277826
0.0113771
-0.00026887
0.0113661
-0.000259737
0.0113544
-0.000250449
0.0113422
-0.000241024
0.0113298
-0.000231478
0.0113172
-0.000221829
0.0113045
-0.000212089
0.0112918
-0.000202271
0.0112793
-0.000192387
0.0112669
-0.000182447
0.0112548
-0.000172459
0.011243
-0.000162431
0.0112316
-0.00015237
0.0112206
-0.000142282
0.01121
-0.000132172
0.0112
-0.000122044
0.0111906
-0.000111903
0.0111817
-0.00010175
0.0111735
-9.15893e-05
0.011166
-8.14221e-05
0.0111591
-7.12505e-05
0.011153
-6.10756e-05
0.0111475
-5.08985e-05
0.0111429
-4.072e-05
0.0111389
-3.05405e-05
0.0111358
-2.03606e-05
0.0111334
-1.01804e-05
0.0111318
0.011131
-0.000335737
0.010116
0.00032722
-0.000339363
0.0105646
-0.000339155
0.010888
-0.000336165
0.0111066
-0.00033128
0.0112444
-0.000325149
0.0113246
-0.000318202
0.0113667
-0.000310702
0.011385
-0.000302799
0.0113894
-0.000294582
0.011386
-0.0002861
0.0113784
-0.00027739
0.0113684
-0.000268477
0.0113572
-0.000259385
0.0113453
-0.000250133
0.011333
-0.000240741
0.0113204
-0.000231227
0.0113077
-0.000221605
0.0112949
-0.000211891
0.0112821
-0.000202096
0.0112695
-0.000192233
0.0112571
-0.000182312
0.0112449
-0.000172341
0.011233
-0.000162328
0.0112216
-0.000152281
0.0112105
-0.000142205
0.0112
-0.000132106
0.0111899
-0.000121988
0.0111805
-0.000111855
0.0111716
-0.00010171
0.0111634
-9.15557e-05
0.0111558
-8.13943e-05
0.011149
-7.12277e-05
0.0111428
-6.10572e-05
0.0111374
-5.0884e-05
0.0111327
-4.07089e-05
0.0111288
-3.05325e-05
0.0111256
-2.03554e-05
0.0111232
-1.01778e-05
0.0111217
0.0111209
-0.000334734
0.0101246
0.000326206
-0.000338395
0.0105682
-0.000338241
0.0108878
-0.000335317
0.0111037
-0.000330502
0.0112396
-0.000324441
0.0113186
-0.000317559
0.0113598
-0.000310119
0.0113776
-0.000302272
0.0113816
-0.000294105
0.0113779
-0.00028567
0.0113699
-0.000277002
0.0113598
-0.000268128
0.0113484
-0.000259071
0.0113363
-0.000249852
0.0113238
-0.00024049
0.011311
-0.000231002
0.0112982
-0.000221405
0.0112853
-0.000211714
0.0112724
-0.00020194
0.0112597
-0.000192095
0.0112472
-0.000182191
0.011235
-0.000172235
0.0112231
-0.000162236
0.0112116
-0.000152202
0.0112005
-0.000142137
0.0111899
-0.000132047
0.0111798
-0.000121938
0.0111704
-0.000111813
0.0111615
-0.000101674
0.0111533
-9.15257e-05
0.0111457
-8.13695e-05
0.0111388
-7.12074e-05
0.0111326
-6.10408e-05
0.0111272
-5.0871e-05
0.0111225
-4.0699e-05
0.0111186
-3.05254e-05
0.0111154
-2.03507e-05
0.0111131
-1.01755e-05
0.0111115
0.0111107
-0.000333859
0.0101331
0.000325318
-0.00033755
0.0105719
-0.000337442
0.0108877
-0.000334577
0.0111008
-0.000329824
0.0112348
-0.000323823
0.0113126
-0.000316999
0.011353
-0.000309612
0.0113702
-0.000301813
0.0113738
-0.00029369
0.0113697
-0.000285295
0.0113615
-0.000276663
0.0113511
-0.000267823
0.0113395
-0.000258796
0.0113272
-0.000249606
0.0113146
-0.00024027
0.0113017
-0.000230806
0.0112887
-0.000221231
0.0112757
-0.000211559
0.0112628
-0.000201803
0.01125
-0.000191975
0.0112374
-0.000182085
0.0112251
-0.000172143
0.0112131
-0.000162156
0.0112016
-0.000152132
0.0111905
-0.000142077
0.0111798
-0.000131996
0.0111698
-0.000121894
0.0111603
-0.000111775
0.0111514
-0.000101643
0.0111431
-9.14997e-05
0.0111355
-8.13479e-05
0.0111287
-7.11897e-05
0.0111225
-6.10266e-05
0.011117
-5.08598e-05
0.0111124
-4.06905e-05
0.0111084
-3.05192e-05
0.0111053
-2.03468e-05
0.0111029
-1.01736e-05
0.0111013
0.0111005
-0.000333126
0.0101416
0.000324589
-0.000336834
0.0105756
-0.000336763
0.0108876
-0.000333945
0.011098
-0.000329245
0.0112301
-0.000323296
0.0113066
-0.000316521
0.0113462
-0.000309179
0.0113629
-0.000301421
0.011366
-0.000293335
0.0113616
-0.000284974
0.0113532
-0.000276374
0.0113425
-0.000267562
0.0113307
-0.000258562
0.0113182
-0.000249395
0.0113054
-0.000240081
0.0112924
-0.000230637
0.0112793
-0.000221081
0.0112662
-0.000211426
0.0112531
-0.000201685
0.0112402
-0.000191871
0.0112276
-0.000181994
0.0112152
-0.000172063
0.0112032
-0.000162087
0.0111916
-0.000152072
0.0111804
-0.000142025
0.0111698
-0.000131952
0.0111597
-0.000121857
0.0111502
-0.000111744
0.0111413
-0.000101616
0.011133
-9.14774e-05
0.0111254
-8.13296e-05
0.0111185
-7.11747e-05
0.0111123
-6.10146e-05
0.0111069
-5.08504e-05
0.0111022
-4.06833e-05
0.0110983
-3.0514e-05
0.0110951
-2.03433e-05
0.0110927
-1.01718e-05
0.0110911
0.0110903
-0.000332519
0.0101502
0.000323972
-0.000336243
0.0105793
-0.000336203
0.0108876
-0.000333425
0.0110952
-0.000328768
0.0112255
-0.000322863
0.0113007
-0.000316129
0.0113395
-0.000308825
0.0113555
-0.0003011
0.0113583
-0.000293045
0.0113536
-0.000284711
0.0113448
-0.000276136
0.0113339
-0.000267347
0.0113219
-0.000258368
0.0113093
-0.000249221
0.0112963
-0.000239925
0.0112831
-0.000230498
0.0112698
-0.000220957
0.0112566
-0.000211316
0.0112435
-0.000201588
0.0112305
-0.000191786
0.0112178
-0.000181919
0.0112054
-0.000171998
0.0111933
-0.00016203
0.0111816
-0.000152023
0.0111704
-0.000141983
0.0111598
-0.000131916
0.0111496
-0.000121826
0.0111401
-0.000111718
0.0111311
-0.000101595
0.0111229
-9.14595e-05
0.0111153
-8.13148e-05
0.0111084
-7.11627e-05
0.0111022
-6.1005e-05
0.0110967
-5.0843e-05
0.011092
-4.06776e-05
0.0110881
-3.05099e-05
0.0110849
-2.03407e-05
0.0110826
-1.01706e-05
0.011081
0.0110802
-0.000332069
0.0101587
0.000323567
-0.000335787
0.0105831
-0.000335764
0.0108876
-0.000333015
0.0110925
-0.000328392
0.0112209
-0.000322521
0.0112948
-0.000315819
0.0113328
-0.000308543
0.0113483
-0.000300845
0.0113506
-0.000292813
0.0113456
-0.000284502
0.0113365
-0.000275946
0.0113254
-0.000267175
0.0113131
-0.000258213
0.0113003
-0.000249082
0.0112871
-0.0002398
0.0112738
-0.000230387
0.0112604
-0.000220857
0.0112471
-0.000211227
0.0112338
-0.00020151
0.0112208
-0.000191717
0.011208
-0.000181859
0.0111955
-0.000171946
0.0111834
-0.000161985
0.0111717
-0.000151984
0.0111604
-0.00014195
0.0111497
-0.000131887
0.0111396
-0.000121802
0.01113
-0.000111698
0.011121
-0.000101578
0.0111127
-9.14453e-05
0.0111051
-8.13033e-05
0.0110982
-7.11535e-05
0.011092
-6.09976e-05
0.0110866
-5.0837e-05
0.0110819
-4.06732e-05
0.0110779
-3.05068e-05
0.0110748
-2.03386e-05
0.0110724
-1.01692e-05
0.0110708
0.01107
-0.000331737
0.0101672
0.000323208
-0.000335461
0.0105868
-0.000335451
0.0108876
-0.000332723
0.0110897
-0.000328126
0.0112163
-0.000322281
0.011289
-0.000315602
0.0113261
-0.000308348
0.011341
-0.000300668
0.0113429
-0.000292653
0.0113375
-0.000284355
0.0113282
-0.000275813
0.0113168
-0.000267055
0.0113044
-0.000258104
0.0112913
-0.000248983
0.011278
-0.000239712
0.0112645
-0.000230307
0.011251
-0.000220787
0.0112376
-0.000211165
0.0112242
-0.000201455
0.0112111
-0.000191669
0.0111982
-0.000181817
0.0111856
-0.000171909
0.0111735
-0.000161953
0.0111617
-0.000151957
0.0111504
-0.000141927
0.0111397
-0.000131868
0.0111295
-0.000121786
0.0111199
-0.000111684
0.0111109
-0.000101567
0.0111026
-9.14364e-05
0.011095
-8.1296e-05
0.0110881
-7.11476e-05
0.0110819
-6.0993e-05
0.0110764
-5.08336e-05
0.0110717
-4.06706e-05
0.0110678
-3.0505e-05
0.0110646
-2.03376e-05
0.0110622
-1.01693e-05
0.0110606
0.0110598
-0.000331578
0.0101756
0.000323189
-0.000335266
0.0105905
-0.00033525
0.0108875
-0.00033253
0.011087
-0.000327947
0.0112117
-0.000322117
0.0112832
-0.000315454
0.0113194
-0.000308213
0.0113338
-0.000300546
0.0113353
-0.000292541
0.0113295
-0.000284254
0.0113199
-0.000275721
0.0113083
-0.00026697
0.0112956
-0.000258028
0.0112824
-0.000248914
0.0112689
-0.000239649
0.0112553
-0.000230252
0.0112416
-0.000220737
0.011228
-0.000211121
0.0112146
-0.000201416
0.0112014
-0.000191634
0.0111884
-0.000181787
0.0111758
-0.000171883
0.0111636
-0.000161931
0.0111518
-0.000151938
0.0111404
-0.000141911
0.0111297
-0.000131855
0.0111194
-0.000121775
0.0111098
-0.000111675
0.0111008
-0.000101559
0.0110925
-9.14305e-05
0.0110849
-8.12913e-05
0.0110779
-7.1144e-05
0.0110717
-6.09902e-05
0.0110663
-5.08315e-05
0.0110615
-4.06691e-05
0.0110576
-3.0504e-05
0.0110544
-2.03368e-05
0.0110521
-1.01675e-05
0.0110505
0.0110497
-0.000331549
0.0101841
0.000323056
-0.000335233
0.0105942
-0.000335209
0.0108875
-0.00033249
0.0110843
-0.000327912
0.0112071
-0.000322089
0.0112773
-0.000315431
0.0113128
-0.000308193
0.0113265
-0.000300527
0.0113276
-0.000292523
0.0113215
-0.000284235
0.0113117
-0.000275702
0.0112998
-0.000266953
0.0112869
-0.000258011
0.0112735
-0.000248898
0.0112598
-0.000239634
0.011246
-0.000230238
0.0112322
-0.000220725
0.0112185
-0.00021111
0.011205
-0.000201406
0.0111917
-0.000191626
0.0111786
-0.00018178
0.0111659
-0.000171878
0.0111537
-0.000161927
0.0111418
-0.000151935
0.0111305
-0.000141909
0.0111196
-0.000131853
0.0111094
-0.000121774
0.0110997
-0.000111675
0.0110907
-0.00010156
0.0110824
-9.14314e-05
0.0110747
-8.12925e-05
0.0110678
-7.11453e-05
0.0110616
-6.09915e-05
0.0110561
-5.08328e-05
0.0110514
-4.06702e-05
0.0110474
-3.05049e-05
0.0110443
-2.03377e-05
0.0110419
-1.01698e-05
0.0110403
0.0110395
-0.000331612
0.0101923
0.000323442
-0.000335254
0.0105978
-0.000335204
0.0108875
-0.000332476
0.0110816
-0.000327896
0.0112025
-0.000322074
0.0112715
-0.000315416
0.0113061
-0.000308179
0.0113193
-0.000300514
0.0113199
-0.00029251
0.0113135
-0.000284222
0.0113034
-0.00027569
0.0112912
-0.000266941
0.0112781
-0.000257999
0.0112645
-0.000248887
0.0112507
-0.000239624
0.0112367
-0.000230228
0.0112228
-0.000220716
0.011209
-0.000211103
0.0111954
-0.0002014
0.011182
-0.000191621
0.0111689
-0.000181776
0.0111561
-0.000171874
0.0111438
-0.000161924
0.0111319
-0.000151933
0.0111205
-0.000141907
0.0111096
-0.000131853
0.0110993
-0.000121774
0.0110897
-0.000111675
0.0110806
-0.00010156
0.0110723
-9.14321e-05
0.0110646
-8.12933e-05
0.0110577
-7.11462e-05
0.0110514
-6.09924e-05
0.011046
-5.08336e-05
0.0110412
-4.06709e-05
0.0110373
-3.05054e-05
0.0110341
-2.03381e-05
0.0110317
-1.0167e-05
0.0110301
0.0110293
-0.000332127
0.000323691
-0.000335657
-0.000335552
-0.000332787
-0.000328179
-0.000322333
-0.000315653
-0.000308392
-0.000300705
-0.00029268
-0.000284373
-0.000275823
-0.000267058
-0.000258102
-0.000248978
-0.000239705
-0.0002303
-0.00022078
-0.000211159
-0.000201451
-0.000191666
-0.000181816
-0.000171911
-0.000161957
-0.000151962
-0.000141934
-0.000131876
-0.000121795
-0.000111694
-0.000101577
-9.1447e-05
-8.13063e-05
-7.11574e-05
-6.10019e-05
-5.08415e-05
-4.06772e-05
-3.05101e-05
-2.03411e-05
-1.01735e-05
0.00236402
-0.000504607
0.00232982
-0.000470159
0.00229251
-0.000432681
0.00225564
-0.000405534
0.00221998
-0.000382094
0.00218587
-0.000359585
0.00215351
-0.0003386
0.00212294
-0.000319156
0.00209406
-0.000300897
0.00206679
-0.000283574
0.00204108
-0.000267051
0.00201684
-0.000251244
0.00199402
-0.00023609
0.00197256
-0.000221539
0.00195238
-0.000207544
0.00193344
-0.000194064
0.00191567
-0.000181061
0.00189902
-0.0001685
0.00188345
-0.000156348
0.0018689
-0.000144575
0.00185534
-0.000133151
0.0018427
-0.000122049
0.00183097
-0.000111242
0.00182008
-0.000100706
0.00181002
-9.0418e-05
0.00180073
-8.03568e-05
0.0017922
-7.05022e-05
0.00178438
-6.08354e-05
0.00177724
-5.13385e-05
0.00177076
-4.19926e-05
0.0017649
-3.27746e-05
0.00175962
-2.3644e-05
0.00175486
-1.45348e-05
0.00175054
-5.18036e-06
0.00174719
3.88397e-06
0.00174399
1.21344e-05
0.00174126
2.05836e-05
0.001739
2.91026e-05
0.0017372
3.75817e-05
0.00173584
4.59974e-05
0.0017349
5.43523e-05
0.00173436
6.26531e-05
0.00173422
7.09041e-05
0.00173445
7.91057e-05
0.00173504
8.72563e-05
0.00173598
9.53549e-05
0.00173725
0.000103401
0.00173885
0.000111395
0.00174076
0.000119336
0.00174298
0.000127222
0.00174548
0.000135054
0.00174827
0.000142829
0.00175133
0.000150546
0.00175466
0.000158205
0.00175824
0.000165804
0.00176207
0.000173341
0.00176614
0.000180815
0.00177044
0.000188225
0.00177496
0.00019557
0.0017797
0.000202848
0.00178465
0.000210059
0.00178981
0.000217201
0.00179516
0.000224273
0.0018007
0.000231274
0.00180642
0.000238203
0.00181232
0.000245059
0.00181839
0.000251841
0.00182462
0.000258548
0.00183101
0.000265179
0.00183755
0.000271733
0.00184423
0.000278207
0.00185105
0.000284602
0.00185801
0.000290914
0.00186509
0.000297143
0.00187229
0.000303286
0.00187961
0.000309341
0.00188703
0.000315305
0.00189456
0.000321176
0.00190218
0.000326951
0.0019099
0.000332626
0.0019177
0.000338199
0.00192559
0.000343665
0.00193355
0.000349021
0.00194158
0.000354263
0.00194968
0.000359386
0.00195784
0.000364386
0.00196605
0.000369259
0.00197431
0.000374
0.00198263
0.000378603
0.00199098
0.000383065
0.00199937
0.000387381
0.0020078
0.000391545
0.00201625
0.000395554
0.00202473
0.000399402
0.00203324
0.000403084
0.00204176
0.000406598
0.00205029
0.000409938
0.00205884
0.000413102
0.0020674
0.000416084
0.00207596
0.000418882
0.00208453
0.000421493
0.00209309
0.000423915
0.00210165
0.000426145
0.00211021
0.000428182
0.00211876
0.000430023
0.00212729
0.000431669
0.00213582
0.000433118
0.00214432
0.000434371
0.00215282
0.000435428
0.00216129
0.00043629
0.00216974
0.000436958
0.00217817
0.000437433
0.00218658
0.000437719
0.00219496
0.000437818
0.00220331
0.000437732
0.00221164
0.000437465
0.00221993
0.000437022
0.0022282
0.000436405
0.00223644
0.00043562
0.00224464
0.000434673
0.00225281
0.000433567
0.00226094
0.000432308
0.00226905
0.000430903
0.00227711
0.000429356
0.00228514
0.000427676
0.00229314
0.000425867
0.0023011
0.000423936
0.00230903
0.000421891
0.00231691
0.000419738
0.00232477
0.000417485
0.00233258
0.000415137
0.00234036
0.000412702
0.00234811
0.000410189
0.00235582
0.000407602
0.0023635
0.000404951
0.00237114
0.000402241
0.00237874
0.000399481
0.00238632
0.000396676
0.00239386
0.000393835
0.00240137
0.000390964
0.00240885
0.000388069
0.0024163
0.000385158
0.00242372
0.000382237
0.00243112
0.000379313
0.00243848
0.000376392
0.00244582
0.000373479
0.00245313
0.000370582
0.00246042
0.000367706
0.00246769
0.000364857
0.00247494
0.00036204
0.00248216
0.000359261
0.00248937
0.000356525
0.00249656
0.000353838
0.00250373
0.000351205
0.00251089
0.000348629
0.00251804
0.000346118
0.00252517
0.000343674
0.00253229
0.000341302
0.0025394
0.000339008
0.0025465
0.000336796
0.0025536
0.00033467
0.00256069
0.000332635
0.00256777
0.000330694
0.00257485
0.000328853
0.00258193
0.000327115
0.00258901
0.000325486
0.00259609
0.000323969
0.00260316
0.00032257
0.00261024
0.000321293
0.00261732
0.00032014
0.0026244
0.000319125
0.00263149
0.000318235
0.00263857
0.000317506
0.00264565
0.000316887
0.00265274
0.000316486
0.00265982
0.000316124
0.00266689
0.00031612
0.00267397
0.000315973
0.00268101
0.000316406
0.000316654
0.0022175
-0.000451837
0.00217432
-0.000426975
0.00213404
-0.0003924
0.00209653
-0.000368028
0.00206154
-0.000347099
0.00202881
-0.000326862
0.00199823
-0.000308014
0.00196961
-0.000290541
0.0019428
-0.000274088
0.00191767
-0.000258445
0.00189413
-0.000243502
0.00187207
-0.000229185
0.00185142
-0.000215441
0.0018321
-0.000202224
0.00181405
-0.000189493
0.0017972
-0.000177211
0.00178148
-0.000165345
0.00176685
-0.000153865
0.00175324
-0.000142741
0.00174061
-0.000131945
0.00172891
-0.000121452
0.0017181
-0.000111236
0.00170813
-0.000101274
0.00169897
-9.15439e-05
0.00169058
-8.20253e-05
0.00168292
-7.26987e-05
0.00167596
-6.3546e-05
0.00166968
-5.455e-05
0.00166403
-4.56934e-05
0.001659
-3.69576e-05
0.00165454
-2.83173e-05
0.00165063
-1.97359e-05
0.00164722
-1.11269e-05
0.00164424
-2.19344e-06
0.001642
6.11711e-06
0.00164011
1.40285e-05
0.00163863
2.20676e-05
0.00163757
3.01613e-05
0.00163693
3.82194e-05
0.0016367
4.62272e-05
0.00163686
5.41903e-05
0.0016374
6.21141e-05
0.0016383
7.00009e-05
0.00163956
7.78504e-05
0.00164115
8.56612e-05
0.00164308
9.34318e-05
0.00164532
0.000101162
0.00164786
0.000108849
0.0016507
0.000116495
0.00165383
0.000124095
0.00165723
0.00013165
0.0016609
0.000139158
0.00166483
0.000146617
0.00166901
0.000154025
0.00167344
0.000161381
0.0016781
0.000168683
0.00168298
0.00017593
0.00168809
0.00018312
0.00169341
0.000190251
0.00169893
0.000197323
0.00170466
0.000204334
0.00171057
0.000211283
0.00171668
0.000218168
0.00172296
0.000224989
0.00172942
0.000231744
0.00173605
0.000238432
0.00174284
0.000245053
0.00174978
0.000251605
0.00175687
0.000258086
0.00176411
0.000264497
0.00177148
0.000270834
0.00177899
0.000277097
0.00178662
0.000283285
0.00179437
0.000289394
0.00180223
0.000295423
0.0018102
0.00030137
0.00181827
0.000307232
0.00182644
0.000313007
0.0018347
0.000318691
0.00184305
0.000324281
0.00185147
0.000329774
0.00185997
0.000335166
0.00186854
0.000340452
0.00187717
0.00034563
0.00188587
0.000350695
0.00189461
0.000355641
0.00190341
0.000360465
0.00191224
0.000365161
0.00192112
0.000369726
0.00193003
0.000374153
0.00193898
0.000378438
0.00194795
0.000382576
0.00195694
0.000386562
0.00196595
0.000390392
0.00197497
0.000394061
0.001984
0.000397564
0.00199305
0.000400898
0.00200209
0.000404057
0.00201113
0.00040704
0.00202017
0.000409841
0.00202921
0.000412459
0.00203823
0.00041489
0.00204725
0.000417132
0.00205624
0.000419184
0.00206523
0.000421043
0.00207419
0.000422708
0.00208312
0.00042418
0.00209204
0.000425457
0.00210093
0.000426541
0.00210979
0.000427431
0.00211861
0.000428129
0.00212741
0.000428636
0.00213618
0.000428956
0.0021449
0.000429089
0.0021536
0.00042904
0.00216225
0.000428811
0.00217087
0.000428406
0.00217944
0.000427829
0.00218798
0.000427085
0.00219647
0.000426179
0.00220492
0.000425115
0.00221333
0.0004239
0.0022217
0.000422538
0.00223002
0.000421035
0.00223829
0.000419399
0.00224653
0.000417634
0.00225472
0.000415748
0.00226286
0.000413748
0.00227096
0.000411639
0.00227901
0.00040943
0.00228702
0.000407126
0.00229499
0.000404736
0.00230291
0.000402265
0.00231079
0.000399722
0.00231863
0.000397112
0.00232643
0.000394444
0.00233419
0.000391725
0.0023419
0.00038896
0.00234958
0.000386158
0.00235722
0.000383325
0.00236482
0.000380468
0.00237238
0.000377594
0.00237991
0.000374708
0.00238741
0.000371818
0.00239487
0.000368929
0.0024023
0.000366048
0.0024097
0.000363181
0.00241707
0.000360334
0.00242442
0.000357512
0.00243174
0.000354722
0.00243903
0.000351968
0.0024463
0.000349255
0.00245355
0.00034659
0.00246078
0.000343976
0.00246799
0.00034142
0.00247518
0.000338925
0.00248236
0.000336497
0.00248952
0.00033414
0.00249667
0.000331858
0.00250381
0.000329657
0.00251094
0.00032754
0.00251806
0.000325512
0.00252518
0.000323578
0.00253229
0.000321742
0.00253939
0.000320009
0.0025465
0.000318382
0.0025536
0.000316867
0.0025607
0.000315468
0.0025678
0.000314191
0.00257491
0.000313038
0.00258201
0.00031202
0.00258912
0.00031113
0.00259622
0.000310398
0.00260333
0.000309782
0.00261044
0.000309376
0.00261754
0.000309025
0.00262465
0.000309007
0.00263173
0.000308897
0.00263885
0.000309281
0.000309628
0.00206423
-0.000396995
0.00201789
-0.00038064
0.0019763
-0.000350808
0.00193846
-0.000330188
0.00190403
-0.000312673
0.00187246
-0.000295288
0.00184334
-0.000278898
0.0018164
-0.000263597
0.00179139
-0.000249079
0.00176814
-0.000235193
0.00174651
-0.000221871
0.00172638
-0.000209062
0.00170767
-0.000196727
0.00169027
-0.000184829
0.00167412
-0.000173339
0.00165914
-0.000162226
0.00164525
-0.000151464
0.00163242
-0.000141026
0.00162056
-0.000130889
0.00160965
-0.000121029
0.00159962
-0.000111424
0.00159043
-0.000102051
0.00158205
-9.28912e-05
0.00157443
-8.39246e-05
0.00156754
-7.51331e-05
0.00156134
-6.64998e-05
0.0015558
-5.80083e-05
0.0015509
-4.96428e-05
0.00154659
-4.13872e-05
0.00154286
-3.3223e-05
0.00153966
-2.5124e-05
0.00153698
-1.70569e-05
0.00153479
-8.92948e-06
0.00153301
-4.1994e-07
0.00153192
7.20882e-06
0.00153116
1.47938e-05
0.00153079
2.24359e-05
0.00153082
3.01242e-05
0.00153126
3.77865e-05
0.00153207
4.54122e-05
0.00153326
5.30079e-05
0.00153479
6.0577e-05
0.00153667
6.81207e-05
0.00153888
7.56381e-05
0.00154142
8.31276e-05
0.00154426
9.05876e-05
0.00154741
9.80171e-05
0.00155084
0.000105414
0.00155456
0.000112778
0.00155855
0.000120107
0.0015628
0.000127398
0.00156731
0.000134651
0.00157206
0.000141862
0.00157706
0.00014903
0.00158228
0.000156154
0.00158773
0.000163231
0.00159341
0.000170259
0.00159929
0.000177238
0.00160537
0.000184164
0.00161166
0.000191038
0.00161814
0.000197857
0.0016248
0.00020462
0.00163164
0.000211325
0.00163866
0.000217972
0.00164584
0.00022456
0.00165319
0.000231087
0.00166069
0.000237552
0.00166834
0.000243955
0.00167613
0.000250293
0.00168406
0.000256565
0.00169212
0.000262771
0.00170031
0.000268908
0.00170862
0.000274975
0.00171705
0.00028097
0.00172558
0.00028689
0.00173421
0.000292734
0.00174295
0.000298499
0.00175177
0.000304183
0.00176068
0.000309781
0.00176967
0.000315291
0.00177874
0.000320709
0.00178787
0.000326031
0.00179707
0.000331254
0.00180633
0.000336374
0.00181564
0.000341385
0.00182499
0.000346283
0.00183439
0.000351064
0.00184383
0.000355722
0.00185331
0.000360253
0.00186281
0.000364651
0.00187233
0.000368912
0.00188188
0.00037303
0.00189144
0.000377002
0.00190101
0.00038082
0.00191059
0.000384482
0.00192017
0.000387982
0.00192975
0.000391317
0.00193933
0.000394481
0.0019489
0.000397472
0.00195846
0.000400285
0.001968
0.000402917
0.00197752
0.000405366
0.00198703
0.000407629
0.00199651
0.000409704
0.00200596
0.000411589
0.00201538
0.000413283
0.00202478
0.000414786
0.00203414
0.000416097
0.00204346
0.000417216
0.00205275
0.000418144
0.002062
0.000418882
0.0020712
0.000419431
0.00208037
0.000419793
0.00208948
0.000419971
0.00209856
0.000419967
0.00210758
0.000419786
0.00211656
0.000419429
0.00212548
0.000418902
0.00213436
0.000418208
0.00214319
0.000417353
0.00215196
0.000416341
0.00216068
0.000415178
0.00216935
0.000413868
0.00217797
0.000412419
0.00218653
0.000410836
0.00219504
0.000409125
0.0022035
0.000407292
0.0022119
0.000405345
0.00222025
0.000403289
0.00222855
0.000401133
0.00223679
0.000398881
0.00224499
0.000396543
0.00225313
0.000394124
0.00226122
0.000391631
0.00226926
0.000389071
0.00227725
0.000386453
0.00228519
0.000383781
0.00229309
0.000381064
0.00230094
0.000378308
0.00230875
0.000375521
0.00231651
0.000372707
0.00232422
0.000369875
0.0023319
0.000367031
0.00233954
0.000364181
0.00234714
0.000361331
0.0023547
0.000358487
0.00236222
0.000355656
0.00236971
0.000352843
0.00237717
0.000350054
0.0023846
0.000347294
0.002392
0.000344569
0.00239937
0.000341884
0.00240671
0.000339245
0.00241404
0.000336655
0.00242133
0.000334121
0.00242861
0.000331647
0.00243587
0.000329238
0.00244311
0.000326898
0.00245034
0.000324632
0.00245755
0.000322444
0.00246475
0.000320339
0.00247194
0.000318322
0.00247913
0.000316396
0.0024863
0.000314567
0.00249347
0.000312839
0.00250064
0.000311216
0.0025078
0.000309704
0.00251496
0.000308307
0.00252212
0.00030703
0.00252928
0.000305877
0.00253644
0.000304858
0.00254361
0.000303967
0.00255077
0.000303233
0.00255794
0.000302618
0.00256511
0.000302207
0.00257227
0.000301866
0.00257943
0.000301838
0.00258658
0.000301752
0.00259374
0.000302121
0.000302515
0.0018973
-0.000345967
0.00185286
-0.000336197
0.00181297
-0.000310923
0.00177687
-0.000294086
0.00174421
-0.000280009
0.00171449
-0.000265572
0.00168729
-0.000251702
0.0016623
-0.000238605
0.00163926
-0.000226037
0.00161797
-0.000213906
0.00159829
-0.000202187
0.00158008
-0.000190857
0.00156325
-0.000179892
0.00154769
-0.000169272
0.00153333
-0.000158977
0.00152009
-0.000148986
0.00150791
-0.000139279
0.00149672
-0.000129837
0.00148647
-0.00012064
0.00147711
-0.000111669
0.00146859
-0.000102905
0.00146087
-9.43314e-05
0.00145391
-8.59301e-05
0.00144767
-7.76847e-05
0.00144211
-6.95797e-05
0.00143721
-6.16001e-05
0.00143294
-5.37317e-05
0.00142925
-4.596e-05
0.00142614
-3.82699e-05
0.00142356
-3.06438e-05
0.00142149
-2.30565e-05
0.00141991
-1.54766e-05
0.00141879
-7.80625e-06
0.00141815
2.18495e-07
0.00141801
7.35041e-06
0.00141823
1.4566e-05
0.00141885
2.18215e-05
0.00141985
2.91209e-05
0.00142123
3.64071e-05
0.00142297
4.36712e-05
0.00142506
5.09187e-05
0.00142749
5.81514e-05
0.00143024
6.53691e-05
0.00143331
7.25704e-05
0.00143668
7.97537e-05
0.00144035
8.69172e-05
0.00144431
9.40592e-05
0.00144855
0.000101178
0.00145305
0.000108272
0.00145782
0.000115339
0.00146284
0.000122376
0.00146811
0.000129382
0.00147362
0.000136354
0.00147936
0.000143291
0.00148532
0.000150189
0.00149151
0.000157047
0.0014979
0.000163864
0.0015045
0.000170636
0.0015113
0.000177364
0.0015183
0.000184044
0.00152548
0.000190675
0.00153284
0.000197257
0.00154038
0.000203787
0.00154809
0.000210264
0.00155596
0.000216688
0.00156399
0.000223057
0.00157217
0.00022937
0.0015805
0.000235626
0.00158897
0.000241823
0.00159758
0.000247961
0.00160631
0.000254037
0.00161517
0.000260051
0.00162414
0.000266
0.00163323
0.000271883
0.00164242
0.000277697
0.00165172
0.000283441
0.0016611
0.000289111
0.00167058
0.000294705
0.00168014
0.00030022
0.00168978
0.000305652
0.00169949
0.000310998
0.00170927
0.000316255
0.00171911
0.000321417
0.001729
0.000326481
0.00173894
0.000331442
0.00174893
0.000336295
0.00175896
0.000341036
0.00176902
0.00034566
0.00177911
0.000350162
0.00178922
0.000354536
0.00179936
0.000358778
0.00180951
0.000362882
0.00181966
0.000366843
0.00182983
0.000370656
0.00183999
0.000374317
0.00185016
0.00037782
0.00186031
0.000381161
0.00187046
0.000384337
0.00188059
0.000387342
0.0018907
0.000390173
0.00190079
0.000392828
0.00191085
0.000395302
0.00192089
0.000397593
0.00193089
0.0003997
0.00194086
0.00040162
0.00195079
0.000403351
0.00196068
0.000404894
0.00197053
0.000406247
0.00198034
0.000407411
0.0019901
0.000408385
0.00199981
0.000409172
0.00200947
0.000409772
0.00201907
0.000410186
0.00202862
0.000410418
0.00203812
0.00041047
0.00204756
0.000410345
0.00205695
0.000410046
0.00206627
0.000409578
0.00207553
0.000408944
0.00208474
0.00040815
0.00209388
0.000407199
0.00210296
0.000406097
0.00211198
0.00040485
0.00212093
0.000403463
0.00212983
0.000401943
0.00213866
0.000400294
0.00214742
0.000398524
0.00215613
0.000396639
0.00216477
0.000394646
0.00217336
0.00039255
0.00218188
0.00039036
0.00219034
0.000388082
0.00219874
0.000385722
0.00220708
0.000383288
0.00221537
0.000380787
0.00222359
0.000378225
0.00223176
0.00037561
0.00223988
0.000372947
0.00224795
0.000370245
0.00225596
0.000367509
0.00226392
0.000364747
0.00227183
0.000361964
0.00227969
0.000359168
0.00228751
0.000356364
0.00229528
0.000353559
0.00230301
0.000350758
0.0023107
0.000347968
0.00231835
0.000345195
0.00232596
0.000342443
0.00233353
0.000339719
0.00234107
0.000337028
0.00234858
0.000334376
0.00235606
0.000331766
0.00236351
0.000329205
0.00237093
0.000326697
0.00237833
0.000324248
0.00238571
0.000321861
0.00239307
0.000319541
0.0024004
0.000317293
0.00240773
0.000315122
0.00241503
0.000313032
0.00242233
0.000311027
0.00242961
0.000309112
0.00243689
0.000307292
0.00244415
0.000305571
0.00245142
0.000303954
0.00245868
0.000302446
0.00246593
0.000301051
0.00247319
0.000299775
0.00248044
0.000298622
0.0024877
0.000297602
0.00249495
0.000296712
0.00250221
0.000295974
0.00250947
0.000295361
0.00251673
0.000294946
0.00252398
0.000294612
0.00253124
0.000294578
0.00253849
0.000294508
0.00254573
0.000294877
0.000295294
0.00172033
-0.000300993
0.00168025
-0.000296116
0.00164422
-0.000274894
0.00161157
-0.000261433
0.00158194
-0.000250377
0.00155499
-0.000238621
0.00153036
-0.000227078
0.00150778
-0.000216025
0.00148702
-0.000205278
0.00146791
-0.000194791
0.0014503
-0.000184576
0.00143407
-0.000174631
0.00141913
-0.000164951
0.00140538
-0.000155527
0.00139276
-0.000146351
0.00138118
-0.00013741
0.00137059
-0.000128691
0.00136094
-0.00012018
0.00135216
-0.000111863
0.00134422
-0.000103726
0.00133706
-9.57516e-05
0.00133066
-8.7927e-05
0.00132497
-8.02374e-05
0.00131995
-7.26691e-05
0.00131558
-6.52086e-05
0.00131182
-5.78431e-05
0.00130865
-5.056e-05
0.00130604
-4.33462e-05
0.00130395
-3.61877e-05
0.00130238
-2.90678e-05
0.00130128
-2.19634e-05
0.00130066
-1.48471e-05
0.00130049
-7.64363e-06
0.00130077
-5.81038e-08
0.0013015
6.62305e-06
0.00130258
1.34819e-05
0.00130404
2.03629e-05
0.00130587
2.72885e-05
0.00130806
3.42156e-05
0.0013106
4.11349e-05
0.00131347
4.80497e-05
0.00131666
5.49604e-05
0.00132016
6.18657e-05
0.00132397
6.87638e-05
0.00132807
7.56528e-05
0.00133246
8.25306e-05
0.00133712
8.93953e-05
0.00134205
9.62448e-05
0.00134725
0.000103077
0.0013527
0.000109889
0.0013584
0.000116679
0.00136433
0.000123445
0.0013705
0.000130183
0.0013769
0.000136892
0.00138352
0.00014357
0.00139035
0.000150214
0.0013974
0.000156821
0.00140464
0.000163391
0.00141208
0.000169922
0.00141972
0.00017641
0.00142754
0.000182856
0.00143554
0.000189258
0.00144371
0.000195614
0.00145205
0.000201922
0.00146056
0.000208183
0.00146922
0.000214395
0.00147803
0.000220556
0.00148699
0.000226665
0.0014961
0.000232722
0.00150533
0.000238724
0.0015147
0.000244671
0.00152419
0.000250561
0.0015338
0.000256392
0.00154352
0.000262163
0.00155334
0.000267871
0.00156327
0.000273513
0.00157329
0.000279089
0.0015834
0.000284594
0.0015936
0.000290025
0.00160387
0.00029538
0.00161421
0.000300654
0.00162463
0.000305844
0.0016351
0.000310946
0.00164562
0.000315955
0.0016562
0.000320867
0.00166681
0.000325677
0.00167747
0.000330381
0.00168816
0.000334972
0.00169887
0.000339447
0.00170961
0.000343799
0.00172036
0.000348024
0.00173113
0.000352116
0.0017419
0.00035607
0.00175268
0.000359882
0.00176345
0.000363545
0.00177421
0.000367056
0.00178497
0.000370409
0.0017957
0.0003736
0.00180642
0.000376625
0.00181711
0.000379481
0.00182777
0.000382163
0.00183841
0.000384669
0.00184901
0.000386996
0.00185956
0.000389141
0.00187008
0.000391102
0.00188055
0.000392878
0.00189098
0.000394469
0.00190136
0.000395872
0.00191168
0.000397088
0.00192194
0.000398118
0.00193215
0.000398962
0.00194231
0.000399621
0.00195239
0.000400097
0.00196242
0.000400392
0.00197238
0.000400508
0.00198228
0.000400449
0.00199211
0.000400218
0.00200187
0.000399818
0.00201156
0.000399253
0.00202118
0.000398529
0.00203073
0.000397649
0.00204021
0.000396618
0.00204962
0.000395442
0.00205895
0.000394127
0.00206822
0.000392678
0.00207741
0.000391102
0.00208653
0.000389403
0.00209558
0.00038759
0.00210456
0.000385667
0.00211346
0.000383643
0.0021223
0.000381522
0.00213107
0.000379313
0.00213977
0.000377021
0.00214841
0.000374655
0.00215697
0.00037222
0.00216548
0.000369723
0.00217392
0.000367171
0.00218229
0.000364571
0.00219061
0.000361929
0.00219886
0.000359253
0.00220706
0.000356549
0.0022152
0.000353822
0.00222329
0.00035108
0.00223133
0.000348329
0.00223931
0.000345575
0.00224725
0.000342823
0.00225513
0.00034008
0.00226298
0.000337352
0.00227078
0.000334643
0.00227853
0.000331961
0.00228625
0.000329309
0.00229394
0.000326693
0.00230159
0.000324118
0.0023092
0.000321589
0.00231679
0.000319112
0.00232434
0.00031669
0.00233188
0.000314329
0.00233938
0.000312033
0.00234687
0.000309807
0.00235434
0.000307655
0.00236179
0.000305582
0.00236922
0.000303593
0.00237664
0.000301691
0.00238405
0.000299882
0.00239145
0.00029817
0.00239885
0.00029656
0.00240624
0.000295057
0.00241362
0.000293665
0.00242101
0.000292392
0.00242839
0.00029124
0.00243577
0.000290219
0.00244315
0.000289329
0.00245054
0.000288588
0.00245792
0.000287977
0.00246531
0.000287556
0.0024727
0.000287228
0.00248008
0.00028719
0.00248746
0.000287131
0.00249483
0.000287508
0.000287933
0.00153887
-0.000262974
0.0015043
-0.000261553
0.00147326
-0.000243856
0.00144506
-0.000233225
0.00141929
-0.000224609
0.00139575
-0.00021508
0.00137418
-0.00020551
0.00135436
-0.00019621
0.00133613
-0.000187047
0.00131935
-0.000178008
0.0013039
-0.000169127
0.00128969
-0.00016042
0.00127663
-0.000151894
0.00126466
-0.000143551
0.0012537
-0.00013539
0.00124369
-0.000127406
0.00123459
-0.00011959
0.00122635
-0.000111935
0.00121891
-0.000104428
0.00121224
-9.70587e-05
0.00120631
-8.98152e-05
0.00120106
-8.26854e-05
0.00119648
-7.56573e-05
0.00119253
-6.87194e-05
0.00118919
-6.18602e-05
0.00118641
-5.50684e-05
0.00118418
-4.83329e-05
0.00118248
-4.1642e-05
0.00118128
-3.49826e-05
0.00118055
-2.83394e-05
0.00118027
-2.16913e-05
0.00118044
-1.50107e-05
0.00118102
-8.22711e-06
0.00118219
-1.22318e-06
0.00118358
5.22804e-06
0.00118537
1.16903e-05
0.00118753
1.82076e-05
0.00119004
2.4774e-05
0.0011929
3.13561e-05
0.00119609
3.79437e-05
0.00119961
4.45381e-05
0.00120343
5.1138e-05
0.00120755
5.77414e-05
0.00121197
6.4346e-05
0.00121667
7.09495e-05
0.00122165
7.75496e-05
0.00122691
8.4144e-05
0.00123242
9.07304e-05
0.00123819
9.73062e-05
0.00124421
0.000103869
0.00125047
0.000110416
0.00125698
0.000116944
0.00126371
0.000123452
0.00127066
0.000129936
0.00127784
0.000136394
0.00128523
0.000142824
0.00129283
0.000149224
0.00130063
0.000155591
0.00130862
0.000161924
0.00131681
0.000168221
0.00132519
0.000174481
0.00133374
0.000180701
0.00134248
0.000186881
0.00135138
0.00019302
0.00136045
0.000199115
0.00136967
0.000205167
0.00137906
0.000211174
0.00138859
0.000217134
0.00139826
0.000223047
0.00140807
0.000228912
0.00141802
0.000234727
0.00142809
0.00024049
0.00143828
0.0002462
0.00144859
0.000251855
0.00145901
0.000257454
0.00146953
0.000262993
0.00148015
0.00026847
0.00149086
0.000273883
0.00150165
0.000279228
0.00151253
0.000284503
0.00152348
0.000289703
0.0015345
0.000294825
0.00154558
0.000299864
0.00155672
0.000304817
0.00156791
0.000309678
0.00157914
0.000314444
0.00159042
0.000319108
0.00160172
0.000323666
0.00161306
0.000328113
0.00162441
0.000332444
0.00163578
0.000336652
0.00164717
0.000340733
0.00165855
0.000344682
0.00166994
0.000348493
0.00168133
0.000352161
0.0016927
0.000355681
0.00170406
0.000359049
0.0017154
0.00036226
0.00172672
0.000365309
0.00173801
0.000368192
0.00174926
0.000370907
0.00176048
0.000373449
0.00177166
0.000375816
0.0017828
0.000378005
0.00179389
0.000380014
0.00180493
0.000381841
0.00181591
0.000383485
0.00182684
0.000384945
0.0018377
0.000386222
0.00184851
0.000387314
0.00185925
0.000388223
0.00186992
0.000388949
0.00188052
0.000389494
0.00189105
0.000389861
0.00190151
0.00039005
0.00191189
0.000390065
0.0019222
0.00038991
0.00193243
0.000389587
0.00194258
0.000389101
0.00195266
0.000388455
0.00196265
0.000387655
0.00197256
0.000386705
0.0019824
0.00038561
0.00199215
0.000384376
0.00200182
0.000383008
0.00201141
0.000381512
0.00202092
0.000379894
0.00203035
0.000378161
0.0020397
0.000376318
0.00204897
0.000374373
0.00205816
0.000372331
0.00206727
0.000370199
0.00207631
0.000367984
0.00208527
0.000365693
0.00209416
0.000363332
0.00210297
0.000360908
0.00211171
0.000358428
0.00212039
0.000355898
0.00212899
0.000353325
0.00213753
0.000350715
0.002146
0.000348076
0.00215441
0.000345413
0.00216276
0.000342732
0.00217105
0.00034004
0.00217928
0.000337343
0.00218746
0.000334646
0.00219558
0.000331956
0.00220366
0.000329278
0.00221168
0.000326618
0.00221966
0.000323982
0.0022276
0.000321374
0.00223549
0.000318799
0.00224334
0.000316264
0.00225116
0.000313772
0.00225894
0.000311329
0.00226669
0.000308939
0.00227442
0.000306608
0.00228211
0.000304339
0.00228978
0.000302138
0.00229743
0.000300008
0.00230505
0.000297955
0.00231266
0.000295983
0.00232026
0.000294097
0.00232784
0.000292301
0.00233541
0.0002906
0.00234297
0.000288998
0.00235052
0.000287502
0.00235807
0.000286116
0.00236562
0.000284845
0.00237317
0.000283695
0.00238071
0.000282674
0.00238826
0.000281783
0.00239581
0.00028104
0.00240335
0.000280429
0.0024109
0.000280004
0.00241845
0.00027968
0.002426
0.000279639
0.00243355
0.000279586
0.00244108
0.000279978
0.0002804
0.00135821
-0.000232061
0.00132951
-0.000232851
0.0013038
-0.000218152
0.00128037
-0.000209798
0.00125879
-0.00020302
0.00123891
-0.000195208
0.0012206
-0.000187198
0.0012037
-0.000179304
0.00118808
-0.000171433
0.00117367
-0.000163597
0.00116039
-0.000155841
0.00114816
-0.000148191
0.00113692
-0.000140662
0.00112664
-0.000133263
0.00111724
-0.000125996
0.0011087
-0.00011886
0.00110096
-0.000111852
0.00109399
-0.000104965
0.00108775
-9.8191e-05
0.00108221
-9.15204e-05
0.00107734
-8.49439e-05
0.00107311
-7.84511e-05
0.00106948
-7.20319e-05
0.00106644
-6.56762e-05
0.00106395
-5.9374e-05
0.001062
-5.31153e-05
0.00106056
-4.689e-05
0.0010596
-4.06876e-05
0.00105912
-3.44961e-05
0.00105908
-2.83013e-05
0.00105947
-2.2085e-05
0.00106029
-1.58241e-05
0.00106153
-9.47343e-06
0.00106327
-2.96385e-06
0.00106525
3.24709e-06
0.00106761
9.33599e-06
0.00107031
1.55017e-05
0.00107336
2.17233e-05
0.00107675
2.79734e-05
0.00108045
3.42406e-05
0.00108446
4.05242e-05
0.00108878
4.68222e-05
0.00109339
5.31317e-05
0.00109829
5.945e-05
0.00110346
6.57744e-05
0.00110891
7.21023e-05
0.00111462
7.84311e-05
0.00112059
8.47582e-05
0.00112682
9.10809e-05
0.00113329
9.73963e-05
0.00114
0.000103702
0.00114695
0.000109994
0.00115414
0.000116271
0.00116154
0.00012253
0.00116917
0.000128768
0.00117701
0.000134984
0.00118506
0.000141173
0.00119331
0.000147336
0.00120177
0.000153469
0.00121042
0.000159572
0.00121926
0.000165641
0.00122828
0.000171677
0.00123749
0.000177677
0.00124687
0.000183641
0.00125642
0.000189567
0.00126613
0.000195454
0.001276
0.000201301
0.00128603
0.000207108
0.0012962
0.000212872
0.00130652
0.000218593
0.00131698
0.00022427
0.00132757
0.000229901
0.00133828
0.000235485
0.00134912
0.000241019
0.00136007
0.000246502
0.00137113
0.000251932
0.00138229
0.000257306
0.00139356
0.000262621
0.00140491
0.000267875
0.00141635
0.000273064
0.00142787
0.000278185
0.00143946
0.000283233
0.00145112
0.000288206
0.00146284
0.000293098
0.00147461
0.000297904
0.00148643
0.000302621
0.0014983
0.000307243
0.0015102
0.000311765
0.00152213
0.000316182
0.00153409
0.000320488
0.00154606
0.000324678
0.00155805
0.000328746
0.00157004
0.000332688
0.00158204
0.000336498
0.00159403
0.000340171
0.00160601
0.000343701
0.00161797
0.000347084
0.00162992
0.000350314
0.00164184
0.000353389
0.00165373
0.000356302
0.00166558
0.000359052
0.0016774
0.000361633
0.00168917
0.000364044
0.00170089
0.000366281
0.00171257
0.000368341
0.00172418
0.000370224
0.00173574
0.000371927
0.00174724
0.00037345
0.00175867
0.000374792
0.00177003
0.000375953
0.00178132
0.000376933
0.00179253
0.000377734
0.00180367
0.000378355
0.00181473
0.0003788
0.00182571
0.00037907
0.00183661
0.000379168
0.00184742
0.000379096
0.00185815
0.000378859
0.00186879
0.000378459
0.00187935
0.000377901
0.00188981
0.000377189
0.00190019
0.000376328
0.00191048
0.000375322
0.00192068
0.000374177
0.00193078
0.000372899
0.0019408
0.000371493
0.00195073
0.000369965
0.00196057
0.00036832
0.00197033
0.000366566
0.00197999
0.000364708
0.00198957
0.000362753
0.00199906
0.000360708
0.00200847
0.000358578
0.00201779
0.00035637
0.00202703
0.000354091
0.00203619
0.000351748
0.00204527
0.000349347
0.00205427
0.000346895
0.0020632
0.000344397
0.00207206
0.000341862
0.00208084
0.000339294
0.00208955
0.000336701
0.00209819
0.000334088
0.00210677
0.000331461
0.00211529
0.000328827
0.00212374
0.000326192
0.00213214
0.000323561
0.00214048
0.000320939
0.00214876
0.000318333
0.002157
0.000315748
0.00216518
0.000313188
0.00217332
0.00031066
0.00218141
0.000308169
0.00218947
0.000305718
0.00219748
0.000303313
0.00220546
0.00030096
0.00221341
0.000298661
0.00222133
0.000296423
0.00222921
0.00029425
0.00223708
0.000292146
0.00224492
0.000290116
0.00225273
0.000288164
0.00226054
0.000286295
0.00226832
0.000284514
0.0022761
0.000282826
0.00228386
0.000281235
0.00229162
0.000279747
0.00229936
0.000278366
0.00230711
0.0002771
0.00231485
0.000275952
0.0023226
0.000274931
0.00233034
0.000274041
0.00233808
0.000273295
0.00234583
0.000272684
0.00235358
0.000272254
0.00236132
0.000271933
0.00236907
0.000271889
0.00237682
0.000271839
0.00238455
0.000272249
0.00027266
0.00118275
-0.000207875
0.00115971
-0.000209805
0.00113915
-0.000197594
0.00112034
-0.000190988
0.00110281
-0.000185493
0.00108652
-0.000178919
0.00107139
-0.000172063
0.00105731
-0.000165227
0.00104423
-0.000158351
0.0010321
-0.000151463
0.00102087
-0.000144613
0.00101051
-0.00013783
0.00100098
-0.000131133
0.000992247
-0.000124531
0.000984282
-0.00011803
0.000977053
-0.000111631
0.000970531
-0.00010533
0.000964688
-9.91223e-05
0.000959498
-9.30004e-05
0.000954934
-8.69565e-05
0.000950972
-8.09819e-05
0.000947588
-7.50674e-05
0.00094476
-6.92038e-05
0.000942466
-6.33818e-05
0.000940684
-5.75925e-05
0.000939395
-5.18266e-05
0.00093858
-4.60749e-05
0.00093822
-4.03277e-05
0.000938298
-3.4574e-05
0.000938798
-2.88013e-05
0.000939707
-2.29943e-05
0.000941018
-1.7135e-05
0.000942745
-1.11997e-05
0.000944951
-5.17063e-06
0.000947347
8.51509e-07
0.000950136
6.54743e-06
0.000953245
1.23919e-05
0.000956686
1.82822e-05
0.000960449
2.42106e-05
0.000964523
3.01666e-05
0.0009689
3.61475e-05
0.000973572
4.21505e-05
0.000978531
4.81722e-05
0.000983772
5.42093e-05
0.000989288
6.02589e-05
0.000995072
6.6318e-05
0.00100112
7.23839e-05
0.00100742
7.84536e-05
0.00101398
8.45242e-05
0.00102078
9.05927e-05
0.00102783
9.66562e-05
0.00103511
0.000102712
0.00104263
0.000108757
0.00105037
0.000114788
0.00105833
0.000120804
0.00106652
0.000126801
0.00107491
0.000132777
0.00108352
0.000138731
0.00109233
0.000144659
0.00110134
0.000150562
0.00111054
0.000156436
0.00111994
0.000162281
0.00112952
0.000168095
0.00113928
0.000173878
0.00114922
0.000179627
0.00115933
0.000185343
0.00116961
0.000191024
0.00118005
0.000196669
0.00119065
0.000202277
0.00120139
0.000207847
0.00121228
0.000213378
0.00122332
0.000218869
0.00123448
0.000224318
0.00124578
0.000229723
0.0012572
0.000235083
0.00126874
0.000240395
0.00128038
0.000245657
0.00129214
0.000250867
0.00130399
0.000256022
0.00131594
0.000261117
0.00132797
0.000266151
0.00134009
0.000271119
0.00135227
0.000276017
0.00136453
0.000280841
0.00137685
0.000285587
0.00138922
0.000290248
0.00140164
0.000294822
0.00141411
0.000299302
0.00142661
0.000303683
0.00143913
0.000307959
0.00145168
0.000312127
0.00146425
0.000316179
0.00147683
0.00032011
0.00148941
0.000323916
0.00150199
0.00032759
0.00151457
0.000331128
0.00152712
0.000334524
0.00153966
0.000337774
0.00155218
0.000340874
0.00156467
0.000343817
0.00157711
0.000346602
0.00158952
0.000349224
0.00160189
0.00035168
0.0016142
0.000353966
0.00162646
0.000356081
0.00163866
0.000358022
0.0016508
0.000359788
0.00166288
0.000361378
0.00167488
0.00036279
0.00168681
0.000364024
0.00169866
0.000365081
0.00171043
0.000365961
0.00172212
0.000366665
0.00173373
0.000367194
0.00174525
0.000367551
0.00175668
0.000367738
0.00176802
0.000367757
0.00177926
0.000367612
0.00179042
0.000367306
0.00180147
0.000366843
0.00181244
0.000366227
0.0018233
0.000365462
0.00183407
0.000364554
0.00184474
0.000363507
0.00185531
0.000362327
0.00186579
0.000361018
0.00187616
0.000359587
0.00188644
0.00035804
0.00189663
0.000356383
0.00190672
0.000354621
0.00191671
0.000352761
0.00192661
0.000350809
0.00193641
0.000348771
0.00194613
0.000346655
0.00195575
0.000344466
0.00196529
0.000342211
0.00197474
0.000339897
0.00198411
0.000337529
0.00199339
0.000335115
0.00200259
0.00033266
0.00201171
0.000330171
0.00202076
0.000327654
0.00202973
0.000325115
0.00203863
0.000322561
0.00204746
0.000319996
0.00205623
0.000317428
0.00206493
0.000314861
0.00207357
0.000312301
0.00208215
0.000309754
0.00209067
0.000307225
0.00209914
0.000304719
0.00210756
0.000302242
0.00211593
0.000299799
0.00212425
0.000297393
0.00213253
0.000295031
0.00214077
0.000292717
0.00214898
0.000290456
0.00215715
0.000288252
0.00216529
0.00028611
0.0021734
0.000284034
0.00218149
0.000282029
0.00218955
0.0002801
0.0021976
0.000278252
0.00220562
0.000276488
0.00221364
0.000274814
0.00222164
0.000273235
0.00222963
0.000271757
0.00223761
0.000270384
0.00224559
0.000269122
0.00225356
0.000267977
0.00226154
0.000266957
0.00226951
0.000266067
0.00227749
0.000265318
0.00228546
0.000264707
0.00229345
0.000264272
0.00230143
0.000263953
0.00230941
0.000263905
0.00231739
0.000263856
0.00232536
0.000264284
0.000264678
0.00101576
-0.000189657
0.00099782
-0.000191862
0.00098188
-0.000181654
0.000967198
-0.000176306
0.000953323
-0.000171618
0.00094027
-0.000165866
0.000928016
-0.000159809
0.000916508
-0.000153719
0.000905725
-0.000147568
0.000895653
-0.000141391
0.000886282
-0.000135241
0.000877598
-0.000129146
0.000869587
-0.000123122
0.000862235
-0.000117179
0.000855527
-0.000111322
0.000849445
-0.000105549
0.000843973
-9.98579e-05
0.000839093
-9.42421e-05
0.000834787
-8.86944e-05
0.000831037
-8.32068e-05
0.000827826
-7.77708e-05
0.000825136
-7.23773e-05
0.000822949
-6.70173e-05
0.000821249
-6.1682e-05
0.00082002
-5.63626e-05
0.000819244
-5.10506e-05
0.000818906
-4.57372e-05
0.000818992
-4.04133e-05
0.000819487
-3.5069e-05
0.000820379
-2.96933e-05
0.000821658
-2.4274e-05
0.000823322
-1.87983e-05
0.000825376
-1.32537e-05
0.000827834
-7.62865e-06
0.000830659
-1.97414e-06
0.000833678
3.52908e-06
0.000837043
9.02663e-06
0.000840733
1.45921e-05
0.000844738
2.02051e-05
0.000849048
2.5857e-05
0.000853654
3.1542e-05
0.000858549
3.72555e-05
0.000863727
4.29939e-05
0.000869183
4.87535e-05
0.00087491
5.4531e-05
0.000880905
6.03232e-05
0.000887162
6.61272e-05
0.000893676
7.19397e-05
0.000900442
7.77577e-05
0.000907457
8.35782e-05
0.000914715
8.9398e-05
0.000922213
9.52142e-05
0.000929946
0.000101024
0.00093791
0.000106824
0.000946101
0.000112612
0.000954515
0.000118386
0.000963149
0.000124144
0.000971997
0.000129882
0.000981056
0.0001356
0.000990322
0.000141296
0.000999791
0.000146968
0.00100946
0.000152614
0.00101932
0.000158234
0.00102937
0.000163827
0.0010396
0.000169392
0.00105002
0.000174927
0.00106061
0.000180432
0.00107137
0.000185906
0.0010823
0.000191348
0.00109339
0.000196758
0.00110464
0.000202133
0.00111603
0.000207473
0.00112757
0.000212777
0.00113925
0.000218043
0.00115107
0.000223269
0.00116301
0.000228453
0.00117507
0.000233594
0.00118725
0.000238688
0.00119954
0.000243733
0.00121193
0.000248725
0.00122442
0.000253662
0.001237
0.000258539
0.00124967
0.000263354
0.00126241
0.0002681
0.00127522
0.000272775
0.00128809
0.000277373
0.00130103
0.000281889
0.00131401
0.000286319
0.00132703
0.000290657
0.0013401
0.000294897
0.00135319
0.000299034
0.0013663
0.000303064
0.00137944
0.000306979
0.00139258
0.000310775
0.00140572
0.000314446
0.00141886
0.000317987
0.00143199
0.000321393
0.00144511
0.000324659
0.0014582
0.000327781
0.00147127
0.000330752
0.0014843
0.000333571
0.00149729
0.000336232
0.00151024
0.000338732
0.00152313
0.000341069
0.00153598
0.000343239
0.00154876
0.00034524
0.00156148
0.00034707
0.00157413
0.000348728
0.0015867
0.000350213
0.0015992
0.000351524
0.00161162
0.000352661
0.00162396
0.000353624
0.00163621
0.000354415
0.00164837
0.000355034
0.00166044
0.000355483
0.00167241
0.000355764
0.00168429
0.00035588
0.00169607
0.000355833
0.00170775
0.000355627
0.00171933
0.000355266
0.0017308
0.000354752
0.00174217
0.000354091
0.00175344
0.000353287
0.0017646
0.000352345
0.00177566
0.000351269
0.00178661
0.000350066
0.00179746
0.00034874
0.0018082
0.000347298
0.00181884
0.000345744
0.00182938
0.000344085
0.00183981
0.000342327
0.00185014
0.000340477
0.00186037
0.000338539
0.00187051
0.000336522
0.00188054
0.00033443
0.00189048
0.00033227
0.00190033
0.000330049
0.00191009
0.000327773
0.00191975
0.000325449
0.00192933
0.000323081
0.00193883
0.000320677
0.00194824
0.000318243
0.00195757
0.000315784
0.00196682
0.000313308
0.001976
0.000310818
0.00198511
0.000308322
0.00199414
0.000305825
0.00200311
0.000303332
0.00201201
0.000300849
0.00202086
0.000298381
0.00202964
0.000295934
0.00203837
0.000293512
0.00204705
0.000291121
0.00205568
0.000288765
0.00206426
0.000286449
0.0020728
0.000284179
0.0020813
0.000281958
0.00208976
0.000279791
0.00209818
0.000277683
0.00210658
0.000275639
0.00211495
0.000273663
0.00212329
0.000271759
0.00213161
0.000269933
0.00213991
0.000268188
0.00214819
0.000266531
0.00215646
0.000264966
0.00216472
0.000263498
0.00217297
0.000262134
0.00218121
0.000260878
0.00218945
0.000259737
0.00219769
0.000258718
0.00220593
0.000257828
0.00221417
0.000257077
0.00222241
0.000256465
0.00223066
0.000256023
0.00223891
0.000255706
0.00224716
0.000255653
0.00225541
0.000255603
0.00226365
0.00025605
0.000256421
0.000859359
-0.000176411
0.000845754
-0.000178257
0.000833705
-0.000169605
0.00082248
-0.000165081
0.000811677
-0.000160815
0.000801363
-0.000155551
0.000791555
-0.000150001
0.000782236
-0.000144401
0.000773416
-0.000138747
0.000765108
-0.000133084
0.000757323
-0.000127457
0.00075007
-0.000121892
0.00074335
-0.000116403
0.000737166
-0.000110995
0.000731514
-0.00010567
0.00072639
-0.000100425
0.000721787
-9.52546e-05
0.000717695
-9.01508e-05
0.000714106
-8.5105e-05
0.000711007
-8.01083e-05
0.000708388
-7.51517e-05
0.000706236
-7.02255e-05
0.000704539
-6.53203e-05
0.000703285
-6.04272e-05
0.000702459
-5.55374e-05
0.000702051
-5.06426e-05
0.000702048
-4.57342e-05
0.000702439
-4.08036e-05
0.000703212
-3.58419e-05
0.000704358
-3.08395e-05
0.000705871
-2.57869e-05
0.000707748
-2.06753e-05
0.000709993
-1.54994e-05
0.000712621
-1.02566e-05
0.000715648
-5.00048e-06
0.000718767
4.09851e-07
0.0007223
5.49317e-06
0.000726112
1.07808e-05
0.00073023
1.60869e-05
0.000734647
2.14394e-05
0.000739356
2.68339e-05
0.000744348
3.22626e-05
0.000749621
3.77211e-05
0.000755169
4.32057e-05
0.000760987
4.87127e-05
0.000767072
5.42387e-05
0.000773419
5.97805e-05
0.000780023
6.5335e-05
0.000786882
7.08988e-05
0.000793992
7.64689e-05
0.000801348
8.20419e-05
0.000808947
8.76148e-05
0.000816786
9.31847e-05
0.000824862
9.87487e-05
0.00083317
0.000104304
0.000841707
0.000109849
0.00085047
0.000115381
0.000859455
0.000120897
0.000868659
0.000126397
0.000878078
0.000131877
0.000887708
0.000137337
0.000897545
0.000142777
0.000907586
0.000148193
0.000917827
0.000153587
0.000928262
0.000158956
0.000938889
0.0001643
0.000949702
0.000169619
0.000960697
0.000174911
0.000971869
0.000180176
0.000983214
0.000185413
0.000994727
0.000190621
0.0010064
0.000195798
0.00101823
0.000200945
0.00103022
0.000206059
0.00104235
0.000211139
0.00105462
0.000216183
0.00106702
0.000221189
0.00107955
0.000226155
0.00109221
0.000231078
0.00110498
0.000235955
0.00111786
0.000240783
0.00113084
0.000245558
0.00114392
0.000250276
0.00115708
0.000254934
0.00117033
0.000259527
0.00118365
0.00026405
0.00119704
0.000268499
0.0012105
0.000272868
0.001224
0.000277152
0.00123755
0.000281346
0.00125114
0.000285445
0.00126476
0.000289442
0.00127841
0.000293333
0.00129207
0.000297112
0.00130574
0.000300773
0.00131942
0.000304311
0.00133309
0.000307721
0.00134676
0.000310997
0.0013604
0.000314136
0.00137402
0.000317131
0.00138761
0.00031998
0.00140117
0.000322677
0.00141468
0.00032522
0.00142815
0.000327604
0.00144156
0.000329828
0.00145491
0.000331888
0.0014682
0.000333782
0.00148142
0.000335509
0.00149456
0.000337067
0.00150763
0.000338456
0.00152061
0.000339675
0.00153351
0.000340724
0.00154632
0.000341605
0.00155904
0.000342316
0.00157166
0.000342861
0.00158419
0.000343241
0.00159661
0.000343458
0.00160893
0.000343514
0.00162114
0.000343413
0.00163325
0.000343158
0.00164525
0.000342753
0.00165714
0.000342202
0.00166892
0.000341508
0.00168058
0.000340676
0.00169214
0.000339712
0.00170359
0.00033862
0.00171492
0.000337406
0.00172615
0.000336074
0.00173726
0.000334631
0.00174826
0.000333082
0.00175916
0.000331433
0.00176994
0.00032969
0.00178062
0.00032786
0.0017912
0.000325947
0.00180167
0.000323959
0.00181204
0.000321901
0.00182231
0.00031978
0.00183248
0.000317602
0.00184255
0.000315373
0.00185254
0.000313099
0.00186243
0.000310786
0.00187223
0.00030844
0.00188195
0.000306067
0.00189158
0.000303674
0.00190113
0.000301265
0.00191061
0.000298846
0.00192001
0.000296424
0.00192934
0.000294003
0.0019386
0.000291589
0.0019478
0.000289187
0.00195693
0.000286802
0.001966
0.00028444
0.00197502
0.000282105
0.00198398
0.000279802
0.00199289
0.000277537
0.00200176
0.000275313
0.00201058
0.000273136
0.00201936
0.00027101
0.00202811
0.000268939
0.00203682
0.000266929
0.00204549
0.000264983
0.00205415
0.000263107
0.00206277
0.000261306
0.00207138
0.000259583
0.00207997
0.000257944
0.00208854
0.000256395
0.0020971
0.000254939
0.00210564
0.000253584
0.00211419
0.000252335
0.00212273
0.000251199
0.00213126
0.000250182
0.0021398
0.000249293
0.00214834
0.000248538
0.00215688
0.000247925
0.00216542
0.000247477
0.00217397
0.000247159
0.00218252
0.000247099
0.00219108
0.000247049
0.00219961
0.000247512
0.000247855
0.000714663
-0.000167032
0.00070453
-0.000168124
0.000695559
-0.000160635
0.000687046
-0.000156567
0.000678664
-0.000152434
0.00067052
-0.000147407
0.000662659
-0.000142139
0.000655091
-0.000136833
0.000647847
-0.000131503
0.000640959
-0.000126196
0.000634455
-0.000120952
0.000628354
-0.000115792
0.000622674
-0.000110723
0.000617427
-0.000105747
0.000612618
-0.000100862
0.000608253
-9.60599e-05
0.000604331
-9.1333e-05
0.000600851
-8.6671e-05
0.00059781
-8.20632e-05
0.000595201
-7.74992e-05
0.000593018
-7.2969e-05
0.000591254
-6.84614e-05
0.0005899
-6.39665e-05
0.000588948
-5.94749e-05
0.000588388
-5.49776e-05
0.000588211
-5.0466e-05
0.000588409
-4.59319e-05
0.000588972
-4.1367e-05
0.000589893
-3.6763e-05
0.000591166
-3.21117e-05
0.000592784
-2.74055e-05
0.000594748
-2.26386e-05
0.000597057
-1.78088e-05
0.000599716
-1.29153e-05
0.000602685
-7.96973e-06
0.000606059
-2.96366e-06
0.000609522
2.03016e-06
0.000613334
6.96859e-06
0.000617445
1.19752e-05
0.000621853
1.70321e-05
0.000626546
2.21405e-05
0.000631521
2.7288e-05
0.000636773
3.24693e-05
0.000642298
3.76804e-05
0.000648093
4.29175e-05
0.000654154
4.81771e-05
0.000660479
5.34559e-05
0.000667064
5.87505e-05
0.000673905
6.40577e-05
0.000681
6.9374e-05
0.000688345
7.46963e-05
0.000695939
8.00214e-05
0.000703777
8.53463e-05
0.000711857
9.06682e-05
0.000720177
9.59845e-05
0.000728733
0.000101293
0.000737523
0.000106591
0.000746543
0.000111877
0.00075579
0.00011715
0.000765261
0.000122406
0.000774953
0.000127645
0.000784863
0.000132867
0.000794987
0.000138069
0.000805322
0.000143252
0.000815863
0.000148415
0.000826607
0.000153556
0.000837549
0.000158676
0.000848686
0.000163774
0.000860013
0.000168849
0.000871526
0.000173901
0.000883219
0.000178927
0.000895088
0.000183929
0.000907129
0.000188905
0.000919334
0.000193853
0.0009317
0.000198773
0.00094422
0.000203663
0.000956888
0.000208521
0.000969699
0.000213345
0.000982646
0.000218131
0.000995722
0.000222878
0.00100892
0.000227583
0.00102224
0.000232242
0.00103566
0.000236851
0.00104919
0.000241406
0.00106281
0.000245904
0.00107653
0.000250339
0.00109032
0.000254707
0.00110418
0.000259003
0.00111811
0.000263222
0.0011321
0.000267359
0.00114614
0.000271407
0.00116022
0.000275362
0.00117433
0.000279218
0.00118847
0.00028297
0.00120263
0.000286612
0.00121681
0.000290138
0.00123099
0.000293543
0.00124516
0.000296823
0.00125932
0.000299971
0.00127347
0.000302984
0.00128759
0.000305857
0.00130168
0.000308586
0.00131574
0.000311166
0.00132975
0.000313595
0.00134371
0.000315869
0.00135761
0.000317985
0.00137145
0.000319942
0.00138522
0.000321736
0.00139892
0.000323367
0.00141254
0.000324833
0.00142609
0.000326135
0.00143954
0.00032727
0.0014529
0.000328241
0.00146617
0.000329047
0.00147934
0.00032969
0.00149241
0.000330171
0.00150538
0.000330491
0.00151824
0.000330654
0.00153099
0.000330662
0.00154363
0.000330518
0.00155616
0.000330225
0.00156857
0.000329787
0.00158087
0.000329208
0.00159306
0.000328492
0.00160513
0.000327644
0.00161708
0.000326669
0.00162891
0.000325571
0.00164063
0.000324356
0.00165223
0.000323029
0.00166372
0.000321596
0.00167509
0.000320061
0.00168635
0.000318432
0.00169749
0.000316714
0.00170853
0.000314912
0.00171945
0.000313033
0.00173027
0.000311083
0.00174098
0.000309068
0.00175159
0.000306993
0.0017621
0.000304865
0.00177251
0.000302689
0.00178282
0.000300473
0.00179304
0.000298221
0.00180317
0.000295939
0.00181321
0.000293634
0.00182317
0.00029131
0.00183304
0.000288974
0.00184283
0.000286631
0.00185255
0.000284286
0.00186219
0.000281945
0.00187177
0.000279613
0.00188127
0.000277295
0.00189072
0.000274996
0.0019001
0.000272721
0.00190943
0.000270476
0.0019187
0.000268264
0.00192792
0.00026609
0.0019371
0.00026396
0.00194623
0.000261877
0.00195532
0.000259846
0.00196438
0.000257873
0.0019734
0.000255961
0.00198239
0.000254115
0.00199136
0.00025234
0.0020003
0.000250641
0.00200922
0.000249023
0.00201813
0.00024749
0.00202702
0.000246049
0.0020359
0.000244705
0.00204477
0.000243464
0.00205364
0.000242333
0.0020625
0.000241318
0.00207136
0.000240429
0.00208023
0.000239672
0.0020891
0.000239056
0.00209798
0.000238601
0.00210685
0.000238283
0.00211574
0.000238213
0.00212462
0.000238162
0.0021335
0.000238638
0.000238948
0.000581972
-0.000160423
0.000574436
-0.000160588
0.000567728
-0.000153927
0.000561187
-0.000150026
0.000554578
-0.000145825
0.000548031
-0.000140861
0.000541611
-0.000135719
0.000535347
-0.000130569
0.000529283
-0.00012544
0.000523464
-0.000120377
0.000517925
-0.000115413
0.000512695
-0.000110562
0.000507799
-0.000105826
0.000503254
-0.000101202
0.000499074
-9.6682e-05
0.000495269
-9.22547e-05
0.000491844
-8.79081e-05
0.000488802
-8.36293e-05
0.000486144
-7.94052e-05
0.000483869
-7.52237e-05
0.000481974
-7.10738e-05
0.000480454
-6.69422e-05
0.000479306
-6.28181e-05
0.000478523
-5.86916e-05
0.000478099
-5.45534e-05
0.000478027
-5.03946e-05
0.000478302
-4.62069e-05
0.000478917
-4.19823e-05
0.000479867
-3.77131e-05
0.000481148
-3.33921e-05
0.000482756
-2.90134e-05
0.00048469
-2.45725e-05
0.000486949
-2.00685e-05
0.000489537
-1.55029e-05
0.000492449
-1.0882e-05
0.000495688
-6.20212e-06
0.000499136
-1.41825e-06
0.000502838
3.26709e-06
0.000506832
7.98087e-06
0.00051112
1.27441e-05
0.000515692
1.75683e-05
0.000520543
2.24375e-05
0.000525668
2.73437e-05
0.000531066
3.22824e-05
0.000536734
3.72496e-05
0.000542669
4.2242e-05
0.000548869
4.72562e-05
0.000555331
5.22887e-05
0.000562052
5.73361e-05
0.000569031
6.2395e-05
0.000576265
6.74621e-05
0.000583753
7.25341e-05
0.000591491
7.76082e-05
0.000599477
8.26815e-05
0.00060771
8.77515e-05
0.000616187
9.28159e-05
0.000624906
9.78725e-05
0.000633864
0.000102919
0.000643058
0.000107955
0.000652487
0.000112977
0.000662148
0.000117985
0.000672037
0.000122978
0.000682151
0.000127955
0.000692488
0.000132916
0.000703044
0.000137859
0.000713815
0.000142785
0.000724798
0.000147694
0.000735988
0.000152583
0.000747383
0.000157454
0.000758977
0.000162306
0.000770767
0.000167138
0.000782747
0.000171949
0.000794913
0.000176739
0.00080726
0.000181507
0.000819782
0.000186252
0.000832473
0.000190972
0.000845329
0.000195666
0.000858342
0.000200331
0.000871507
0.000204966
0.000884818
0.000209568
0.000898267
0.000214134
0.000911848
0.00021866
0.000925554
0.000223145
0.000939378
0.000227582
0.000953312
0.00023197
0.000967348
0.000236303
0.000981479
0.000240576
0.000995698
0.000244785
0.00101
0.000248924
0.00102436
0.00025299
0.0010388
0.000256975
0.00105328
0.000260875
0.00106782
0.000264684
0.00108239
0.000268397
0.00109699
0.000272009
0.00111162
0.000275512
0.00112626
0.000278903
0.00114091
0.000282176
0.00115555
0.000285326
0.00117019
0.000288349
0.00118481
0.000291238
0.0011994
0.000293991
0.00121396
0.000296603
0.00122849
0.00029907
0.00124297
0.000301389
0.0012574
0.000303557
0.00127177
0.000305572
0.00128607
0.00030743
0.00130031
0.000309131
0.00131447
0.000310673
0.00132855
0.000312055
0.00134254
0.000313276
0.00135645
0.000314337
0.00137026
0.000315237
0.00138397
0.000315978
0.00139758
0.000316561
0.00141108
0.000316987
0.00142448
0.000317258
0.00143776
0.000317376
0.00145094
0.000317345
0.00146399
0.000317167
0.00147693
0.000316846
0.00148976
0.000316385
0.00150246
0.000315789
0.00151504
0.000315061
0.00152751
0.000314206
0.00153985
0.00031323
0.00155207
0.000312135
0.00156417
0.000310929
0.00157615
0.000309615
0.00158801
0.0003082
0.00159975
0.00030669
0.00161138
0.000305088
0.00162289
0.000303402
0.00163428
0.000301637
0.00164557
0.000299799
0.00165674
0.000297894
0.00166781
0.000295927
0.00167877
0.000293905
0.00168962
0.000291833
0.00170038
0.000289718
0.00171104
0.000287564
0.0017216
0.000285377
0.00173207
0.000283165
0.00174245
0.000280931
0.00175274
0.000278681
0.00176295
0.000276421
0.00177308
0.000274156
0.00178313
0.000271892
0.00179311
0.000269634
0.00180302
0.000267386
0.00181286
0.000265154
0.00182264
0.000262943
0.00183236
0.000260757
0.00184202
0.000258602
0.00185163
0.000256482
0.00186118
0.000254401
0.0018707
0.000252364
0.00188017
0.000250377
0.0018896
0.000248443
0.00189899
0.000246567
0.00190835
0.000244753
0.00191769
0.000243007
0.00192699
0.000241334
0.00193628
0.000239737
0.00194555
0.000238223
0.0019548
0.000236798
0.00196404
0.000235466
0.00197327
0.000234233
0.00198249
0.000233108
0.00199171
0.000232096
0.00200093
0.000231208
0.00201016
0.000230448
0.00201938
0.00022983
0.00202862
0.000229367
0.00203785
0.000229047
0.0020471
0.000228966
0.00205635
0.000228913
0.00206559
0.000229399
0.00022967
0.000460986
-0.000155584
0.000455231
-0.000154833
0.000450026
-0.000148722
0.000444778
-0.000144778
0.000439341
-0.000140387
0.00043386
-0.00013538
0.000428408
-0.000130267
0.000423028
-0.000125189
0.000417771
-0.000120183
0.000412686
-0.000115292
0.000407813
-0.00011054
0.000403184
-0.000105933
0.000398826
-0.000101469
0.000394762
-9.71379e-05
0.000391007
-9.29269e-05
0.000387573
-8.88211e-05
0.00038447
-8.48047e-05
0.000381702
-8.08618e-05
0.000379274
-7.69767e-05
0.000377186
-7.31362e-05
0.00037544
-6.93279e-05
0.000374034
-6.55355e-05
0.000372964
-6.17481e-05
0.000372227
-5.79549e-05
0.00037182
-5.41463e-05
0.000371738
-5.03131e-05
0.000371978
-4.64468e-05
0.000372536
-4.25396e-05
0.000373407
-3.85844e-05
0.000374589
-3.45747e-05
0.000376082
-3.05055e-05
0.000377882
-2.63733e-05
0.000379992
-2.21776e-05
0.000382409
-1.79199e-05
0.00038513
-1.36034e-05
0.00038815
-9.22173e-06
0.000391539
-4.80745e-06
0.000394958
-1.5256e-07
0.000398781
4.15826e-06
0.000402855
8.67057e-06
0.000407207
1.32159e-05
0.000411838
1.78066e-05
0.000416743
2.24389e-05
0.000421919
2.71056e-05
0.000427366
3.18026e-05
0.000433082
3.65266e-05
0.000439064
4.12743e-05
0.00044531
4.60421e-05
0.00045182
5.08264e-05
0.000458591
5.56238e-05
0.000465623
6.04309e-05
0.000472912
6.52444e-05
0.000480459
7.00616e-05
0.000488261
7.48795e-05
0.000496317
7.96957e-05
0.000504625
8.45079e-05
0.000513183
8.93142e-05
0.00052199
9.41128e-05
0.000531043
9.89023e-05
0.000540341
0.000103679
0.000549881
0.000108444
0.000559662
0.000113197
0.00056968
0.000117937
0.000579933
0.000122663
0.000590418
0.000127375
0.000601131
0.000132072
0.00061207
0.000136754
0.000623231
0.000141422
0.000634611
0.000146075
0.000646205
0.000150713
0.00065801
0.000155333
0.000670021
0.000159938
0.000682233
0.000164526
0.000694643
0.000169097
0.000707244
0.000173651
0.000720031
0.000178185
0.000732998
0.000182698
0.00074614
0.000187189
0.000759451
0.000191655
0.000772924
0.000196095
0.000786553
0.000200505
0.00080033
0.000204883
0.000814248
0.000209226
0.000828301
0.00021353
0.00084248
0.000217791
0.000856779
0.000222004
0.000871188
0.000226167
0.000885699
0.000230273
0.000900306
0.000234318
0.000914999
0.000238297
0.000929769
0.000242205
0.000944609
0.000246035
0.000959509
0.000249784
0.000974462
0.000253445
0.000989457
0.000257013
0.00100449
0.000260482
0.00101954
0.000263847
0.00103462
0.000267102
0.0010497
0.000270243
0.00106479
0.000273265
0.00107986
0.000276162
0.00109492
0.00027893
0.00110996
0.000281565
0.00112497
0.000284063
0.00113994
0.00028642
0.00115486
0.000288634
0.00116973
0.000290701
0.00118454
0.000292619
0.00119929
0.000294385
0.00121396
0.000295998
0.00122856
0.000297458
0.00124308
0.000298762
0.0012575
0.00029991
0.00127184
0.000300903
0.00128607
0.000301741
0.00130021
0.000302425
0.00131424
0.000302955
0.00132816
0.000303335
0.00134198
0.000303564
0.00135567
0.000303647
0.00136926
0.000303586
0.00138272
0.000303383
0.00139606
0.000303042
0.00140928
0.000302567
0.00142238
0.000301962
0.00143536
0.000301231
0.00144821
0.000300377
0.00146094
0.000299407
0.00147354
0.000298324
0.00148603
0.000297134
0.00149838
0.000295842
0.00151062
0.000294453
0.00152274
0.000292972
0.00153473
0.000291405
0.00154661
0.000289758
0.00155838
0.000288036
0.00157002
0.000286245
0.00158156
0.00028439
0.00159299
0.000282478
0.00160431
0.000280513
0.00161552
0.000278502
0.00162664
0.00027645
0.00163765
0.000274363
0.00164857
0.000272246
0.00165939
0.000270105
0.00167013
0.000267946
0.00168078
0.000265773
0.00169134
0.000263592
0.00170183
0.000261408
0.00171223
0.000259226
0.00172257
0.000257052
0.00173283
0.00025489
0.00174303
0.000252746
0.00175317
0.000250623
0.00176324
0.000248527
0.00177326
0.000246462
0.00178323
0.000244434
0.00179315
0.000242446
0.00180302
0.000240504
0.00181285
0.000238612
0.00182264
0.000236774
0.0018324
0.000234995
0.00184213
0.00023328
0.00185183
0.000231633
0.0018615
0.000230061
0.00187116
0.000228567
0.0018808
0.000227158
0.00189043
0.00022584
0.00190004
0.000224618
0.00190965
0.000223499
0.00191926
0.000222491
0.00192886
0.000221603
0.00193847
0.000220841
0.00194808
0.000220219
0.0019577
0.000219747
0.00196732
0.000219424
0.00197696
0.000219329
0.0019866
0.000219275
0.00199623
0.000219767
0.000219993
0.000351022
-0.000151663
0.000346334
-0.000150145
0.000341966
-0.000144354
0.000337421
-0.000140233
0.000332634
-0.000135601
0.000327754
-0.0001305
0.000322855
-0.000125368
0.000317987
-0.000120321
0.000313205
-0.000115401
0.000308555
-0.000110642
0.000304079
-0.000106063
0.000299807
-0.000101662
0.000295767
-9.74291e-05
0.00029198
-9.33511e-05
0.000288463
-8.941e-05
0.000285229
-8.5587e-05
0.000282288
-8.1863e-05
0.000279645
-7.82193e-05
0.000277306
-7.46378e-05
0.000275274
-7.11044e-05
0.000273552
-6.76059e-05
0.000272139
-6.41218e-05
0.000271033
-6.06418e-05
0.000270232
-5.71547e-05
0.000269736
-5.365e-05
0.000269541
-5.01184e-05
0.000269646
-4.65515e-05
0.000270048
-4.29414e-05
0.000270745
-3.92812e-05
0.000271735
-3.55653e-05
0.000273019
-3.17891e-05
0.000274595
-2.79497e-05
0.000276464
-2.40466e-05
0.000278625
-2.00805e-05
0.000281075
-1.60537e-05
0.000283814
-1.19609e-05
0.000286803
-7.79634e-06
0.000290223
-3.57206e-06
0.000293637
7.43784e-07
0.000297422
4.88616e-06
0.000301469
9.1685e-06
0.000305795
1.34808e-05
0.000310395
1.78385e-05
0.000315268
2.22332e-05
0.000320411
2.66591e-05
0.000325824
3.11134e-05
0.000331506
3.55925e-05
0.000337456
4.00927e-05
0.000343672
4.46105e-05
0.000350153
4.91422e-05
0.0003569
5.36844e-05
0.00036391
5.82339e-05
0.000371184
6.27878e-05
0.00037872
6.73434e-05
0.000386517
7.18982e-05
0.000394575
7.64502e-05
0.000402892
8.09973e-05
0.000411466
8.55381e-05
0.000420297
9.00716e-05
0.000429385
9.45913e-05
0.000438725
9.91031e-05
0.000448318
0.000103605
0.00045816
0.000108095
0.00046825
0.000112573
0.000478584
0.00011704
0.000489162
0.000121494
0.000499979
0.000125937
0.000511033
0.000130368
0.00052232
0.000134788
0.000533837
0.000139195
0.000545582
0.000143589
0.000557548
0.000147971
0.000569733
0.000152341
0.000582131
0.000156699
0.000594738
0.000161044
0.000607548
0.000165375
0.000620556
0.00016969
0.000633756
0.000173989
0.000647142
0.000178269
0.000660709
0.000182529
0.000674448
0.000186766
0.000688354
0.000190977
0.000702419
0.000195161
0.000716636
0.000199313
0.000730997
0.00020343
0.000745494
0.000207508
0.000760119
0.000211542
0.000774863
0.000215528
0.000789719
0.000219462
0.000804677
0.000223339
0.000819729
0.000227153
0.000834866
0.000230899
0.000850079
0.000234572
0.000865358
0.000238166
0.000880695
0.000241676
0.00089608
0.000245097
0.000911504
0.000248422
0.000926959
0.000251648
0.000942435
0.000254767
0.000957923
0.000257776
0.000973415
0.00026067
0.000988902
0.000263443
0.00100438
0.000266091
0.00101983
0.000268611
0.00103525
0.000270999
0.00105063
0.00027325
0.00106597
0.000275362
0.00108126
0.000277332
0.00109649
0.000279157
0.00111165
0.000280837
0.00112674
0.000282368
0.00114175
0.00028375
0.00115668
0.000284983
0.00117151
0.000286065
0.00118626
0.000286997
0.0012009
0.00028778
0.00121545
0.000288413
0.00122988
0.000288899
0.00124421
0.000289239
0.00125842
0.000289435
0.00127251
0.00028949
0.00128649
0.000289405
0.00130035
0.000289185
0.00131408
0.000288832
0.0013277
0.00028835
0.00134118
0.000287743
0.00135454
0.000287015
0.00136778
0.000286171
0.00138089
0.000285213
0.00139388
0.000284149
0.00140674
0.000282981
0.00141947
0.000281717
0.00143209
0.000280359
0.00144458
0.000278914
0.00145695
0.000277388
0.0014692
0.000275784
0.00148134
0.00027411
0.00149336
0.00027237
0.00150526
0.00027057
0.00151706
0.000268715
0.00152875
0.000266812
0.00154034
0.000264865
0.00155182
0.00026288
0.00156321
0.000260862
0.00157449
0.000258817
0.00158569
0.00025675
0.0015968
0.000254667
0.00160782
0.000252572
0.00161875
0.000250471
0.00162961
0.000248369
0.00164039
0.000246271
0.0016511
0.000244182
0.00166174
0.000242106
0.00167231
0.000240049
0.00168282
0.000238015
0.00169328
0.000236009
0.00170368
0.000234035
0.00171402
0.000232099
0.00172432
0.000230204
0.00173458
0.000228355
0.0017448
0.000226557
0.00175498
0.000224815
0.00176512
0.000223133
0.00177524
0.000221516
0.00178533
0.000219969
0.0017954
0.000218498
0.00180545
0.000217107
0.00181549
0.000215803
0.00182552
0.000214592
0.00183553
0.000213481
0.00184555
0.000212477
0.00185556
0.00021159
0.00186558
0.000210826
0.00187559
0.0002102
0.00188562
0.000209719
0.00189566
0.000209392
0.00190571
0.00020928
0.00191576
0.000209224
0.00192581
0.000209716
0.000209893
0.00025121
-0.000147996
0.00024699
-0.000145925
0.0002429
-0.000140263
0.00023857
-0.000135903
0.000234002
-0.000131033
0.000229337
-0.000125835
0.000224645
-0.000120676
0.000219979
-0.000115655
0.00021539
-0.000110812
0.000210923
-0.000106175
0.000206612
-0.000101752
0.000202487
-9.75368e-05
0.000198572
-9.35143e-05
0.000194887
-8.96653e-05
0.000191445
-8.59684e-05
0.000188259
-8.24014e-05
0.000185339
-7.89423e-05
0.000182689
-7.55701e-05
0.000180316
-7.22646e-05
0.000178224
-6.90118e-05
0.000176415
-6.57976e-05
0.000174889
-6.25959e-05
0.000173646
-5.93987e-05
0.000172686
-5.61941e-05
0.000172007
-5.29713e-05
0.000171609
-4.97207e-05
0.000171491
-4.64336e-05
0.000171652
-4.31023e-05
0.000172092
-3.97204e-05
0.000172809
-3.62823e-05
0.000173803
-3.2784e-05
0.000175077
-2.9223e-05
0.000176629
-2.55984e-05
0.000178458
-2.19103e-05
0.000180564
-1.81599e-05
0.000182949
-1.43453e-05
0.000185616
-1.04635e-05
0.000188551
-6.50735e-06
0.00019179
-2.4953e-06
0.000195155
1.52139e-06
0.000198833
5.49081e-06
0.000202782
9.5313e-06
0.000207006
1.36149e-05
0.000211503
1.77366e-05
0.000216271
2.18905e-05
0.000221311
2.60735e-05
0.000226622
3.02819e-05
0.000232202
3.45119e-05
0.000238053
3.87597e-05
0.000244174
4.30216e-05
0.000250564
4.72941e-05
0.000257224
5.1574e-05
0.000264153
5.58585e-05
0.000271352
6.01448e-05
0.00027882
6.44307e-05
0.000286556
6.87142e-05
0.00029456
7.29934e-05
0.000302831
7.72671e-05
0.000311368
8.15347e-05
0.000320173
8.5786e-05
0.000329242
9.00335e-05
0.000338575
9.42716e-05
0.00034817
9.84998e-05
0.000358026
0.000102718
0.00036814
0.000106926
0.00037851
0.000111124
0.000389135
0.000115313
0.000400011
0.000119492
0.000411137
0.000123662
0.000422507
0.000127825
0.000434121
0.000131974
0.000445975
0.000136118
0.000458063
0.000140253
0.000470381
0.000144381
0.000482926
0.000148499
0.000495691
0.000152609
0.000508673
0.000156709
0.000521864
0.000160798
0.00053526
0.000164873
0.000548855
0.000168934
0.000562641
0.000172979
0.000576611
0.000177006
0.00059076
0.000181013
0.000605078
0.000184995
0.000619558
0.00018895
0.000634193
0.000192873
0.000648974
0.000196761
0.000663892
0.00020061
0.000678939
0.000204415
0.000694106
0.000208172
0.000709383
0.000211875
0.000724762
0.00021552
0.000740232
0.000219101
0.000755785
0.000222613
0.000771411
0.00022605
0.000787101
0.000229408
0.000802843
0.000232679
0.000818631
0.00023586
0.000834453
0.000238945
0.0008503
0.000241929
0.000866163
0.000244807
0.000882032
0.000247573
0.0008979
0.000250224
0.000913756
0.000252755
0.000929593
0.000255162
0.000945401
0.000257441
0.000961174
0.00025959
0.000976902
0.000261604
0.000992578
0.000263481
0.0010082
0.000265219
0.00102375
0.000266816
0.00103923
0.000268271
0.00105463
0.000269581
0.00106995
0.000270748
0.00108517
0.00027177
0.00110031
0.000272647
0.00111534
0.00027338
0.00113027
0.000273969
0.00114509
0.000274417
0.0011598
0.000274724
0.0011744
0.000274893
0.00118888
0.000274925
0.00120324
0.000274824
0.00121748
0.000274593
0.0012316
0.000274234
0.00124559
0.000273751
0.00125946
0.000273148
0.0012732
0.000272429
0.00128681
0.000271598
0.0013003
0.00027066
0.00131367
0.000269618
0.0013269
0.000268479
0.00134002
0.000267246
0.00135301
0.000265924
0.00136588
0.000264519
0.00137862
0.000263036
0.00139125
0.000261481
0.00140377
0.000259857
0.00141617
0.000258171
0.00142845
0.000256429
0.00144063
0.000254635
0.0014527
0.000252795
0.00146467
0.000250913
0.00147653
0.000248997
0.0014883
0.00024705
0.00149997
0.000245078
0.00151155
0.000243087
0.00152304
0.00024108
0.00153445
0.000239065
0.00154577
0.000237044
0.00155702
0.000235025
0.00156819
0.00023301
0.00157929
0.000231006
0.00159032
0.000229016
0.00160129
0.000227046
0.0016122
0.000225101
0.00162305
0.000223184
0.00163385
0.000221301
0.0016446
0.000219455
0.0016553
0.000217653
0.00166596
0.000215897
0.00167658
0.000214193
0.00168717
0.000212546
0.00169773
0.00021096
0.00170825
0.000209441
0.00171876
0.000207993
0.00172925
0.000206622
0.00173971
0.000205334
0.00175017
0.000204135
0.00176062
0.000203033
0.00177106
0.000202034
0.0017815
0.000201149
0.00179195
0.000200382
0.0018024
0.000199752
0.00181285
0.000199261
0.00182332
0.000198928
0.0018338
0.000198798
0.00184429
0.000198739
0.00185478
0.000199225
0.000199348
0.00016064
-0.000144122
0.000156398
-0.000141683
0.000152127
-0.000135993
0.000147632
-0.000131408
0.000142945
-0.000126345
0.00013819
-0.00012108
0.000133432
-0.000115918
0.000128719
-0.000110943
0.000124098
-0.000106191
0.000119606
-0.000101682
0.000115271
-9.74178e-05
0.000111119
-9.33849e-05
0.000107169
-8.95641e-05
0.000103436
-8.59322e-05
9.99321e-05
-8.24645e-05
9.6667e-05
-7.91362e-05
9.36478e-05
-7.59231e-05
9.08799e-05
-7.28022e-05
8.83661e-05
-6.97508e-05
8.61118e-05
-6.67575e-05
8.4124e-05
-6.38097e-05
8.23958e-05
-6.08678e-05
8.09297e-05
-5.79326e-05
7.97264e-05
-5.49908e-05
7.87861e-05
-5.2031e-05
7.81087e-05
-4.90433e-05
7.7694e-05
-4.60189e-05
7.7542e-05
-4.29503e-05
7.7653e-05
-3.98314e-05
7.80276e-05
-3.66568e-05
7.86664e-05
-3.34228e-05
7.95705e-05
-3.01271e-05
8.07406e-05
-2.67685e-05
8.21771e-05
-2.33469e-05
8.38799e-05
-1.98626e-05
8.58495e-05
-1.63149e-05
8.80892e-05
-1.27032e-05
9.06057e-05
-9.02384e-06
9.34027e-05
-5.29235e-06
9.64248e-05
-1.50073e-06
9.96513e-05
2.26439e-06
0.000103164
6.01833e-06
0.00010695
9.82876e-06
0.000111011
1.36761e-05
0.000115345
1.75566e-05
0.000119951
2.14668e-05
0.000124831
2.54025e-05
0.000129983
2.93597e-05
0.000135409
3.33342e-05
0.000141108
3.73222e-05
0.000147082
4.13203e-05
0.00015333
4.53253e-05
0.000159855
4.93342e-05
0.000166655
5.33446e-05
0.000173731
5.73542e-05
0.000181084
6.13611e-05
0.000188714
6.53638e-05
0.00019662
6.93613e-05
0.000204801
7.33535e-05
0.000213263
7.73242e-05
0.000221999
8.12969e-05
0.000231011
8.52603e-05
0.000240296
8.92142e-05
0.000249855
9.31589e-05
0.000259686
9.70949e-05
0.000269788
0.000101022
0.000280158
0.000104942
0.000290794
0.000108855
0.000301695
0.000112762
0.000312856
0.000116664
0.000324279
0.000120551
0.000335957
0.00012444
0.000347887
0.000128324
0.000360064
0.000132203
0.000372485
0.000136078
0.000385145
0.000139949
0.000398038
0.000143815
0.00041116
0.000147676
0.000424506
0.000151528
0.000438068
0.000155372
0.000451841
0.000159207
0.000465817
0.00016303
0.000479989
0.00016684
0.00049435
0.000170634
0.000508892
0.000174408
0.000523607
0.000178158
0.000538487
0.000181881
0.000553522
0.000185574
0.000568704
0.000189233
0.000584024
0.000192852
0.000599472
0.000196428
0.000615038
0.000199954
0.000630714
0.000203426
0.000646489
0.000206838
0.000662352
0.000210186
0.000678295
0.000213465
0.000694307
0.000216667
0.000710379
0.000219789
0.000726499
0.000222825
0.000742659
0.00022577
0.000758848
0.000228618
0.000775057
0.000231364
0.000791276
0.000234005
0.000807495
0.000236535
0.000823706
0.000238951
0.0008399
0.000241247
0.000856068
0.000243422
0.000872202
0.00024547
0.000888293
0.00024739
0.000904334
0.000249178
0.000920317
0.000250833
0.000936235
0.000252352
0.000952082
0.000253734
0.000967852
0.000254978
0.000983537
0.000256084
0.000999134
0.00025705
0.00101464
0.000257877
0.00103004
0.000258566
0.00104534
0.000259117
0.00106053
0.000259531
0.00107561
0.000259811
0.00109058
0.000259958
0.00110543
0.000259973
0.00112016
0.000259861
0.00113478
0.000259623
0.00114926
0.000259263
0.00116363
0.000258784
0.00117787
0.00025819
0.00119198
0.000257484
0.00120597
0.000256671
0.00121983
0.000255755
0.00123357
0.00025474
0.00124719
0.000253631
0.00126068
0.000252433
0.00127405
0.000251151
0.00128729
0.000249789
0.00130042
0.000248352
0.00131343
0.000246846
0.00132633
0.000245276
0.00133911
0.000243646
0.00135178
0.000241963
0.00136435
0.00024023
0.00137681
0.000238454
0.00138916
0.00023664
0.00140142
0.000234793
0.00141358
0.000232918
0.00142565
0.000231019
0.00143763
0.000229103
0.00144952
0.000227174
0.00146132
0.000225237
0.00147305
0.000223297
0.0014847
0.000221359
0.00149628
0.000219428
0.00150779
0.000217508
0.00151923
0.000215604
0.00153061
0.000213721
0.00154193
0.000211863
0.0015532
0.000210035
0.00156441
0.000208241
0.00157558
0.000206486
0.0015867
0.000204774
0.00159778
0.000203111
0.00160883
0.0002015
0.00161984
0.000199947
0.00163083
0.000198457
0.00164179
0.000197034
0.00165272
0.000195685
0.00166364
0.000194415
0.00167455
0.00019323
0.00168544
0.000192138
0.00169633
0.000191144
0.00170722
0.000190261
0.00171811
0.000189492
0.001729
0.000188858
0.00173991
0.000188356
0.00175082
0.000188017
0.00176175
0.000187865
0.00177269
0.000187804
0.00178364
0.000188277
0.000188342
7.84854e-05
-0.000139816
7.38177e-05
-0.000137015
6.89597e-05
-0.000131135
6.40376e-05
-0.000126486
5.89801e-05
-0.000121288
5.39089e-05
-0.000116009
4.88783e-05
-0.000110887
4.39305e-05
-0.000105995
3.9103e-05
-0.000101363
3.44249e-05
-9.70041e-05
2.99187e-05
-9.29116e-05
2.56021e-05
-8.90683e-05
2.14887e-05
-8.54508e-05
1.75896e-05
-8.2033e-05
1.39132e-05
-7.87881e-05
1.04665e-05
-7.56894e-05
7.2549e-06
-7.27116e-05
4.28363e-06
-6.98309e-05
1.55869e-06
-6.70259e-05
-9.29448e-07
-6.42694e-05
-3.19509e-06
-6.15441e-05
-5.20783e-06
-5.88551e-05
-6.97204e-06
-5.61684e-05
-8.4885e-06
-5.34744e-05
-9.75735e-06
-5.07622e-05
-1.07785e-05
-4.80222e-05
-1.15514e-05
-4.52459e-05
-1.20757e-05
-4.24261e-05
-1.23503e-05
-3.95567e-05
-1.23741e-05
-3.6633e-05
-1.21457e-05
-3.36513e-05
-1.16634e-05
-3.06094e-05
-1.09259e-05
-2.7506e-05
-9.93168e-06
-2.43411e-05
-8.67954e-06
-2.11147e-05
-7.1673e-06
-1.78271e-05
-5.39102e-06
-1.44795e-05
-3.34209e-06
-1.10728e-05
-1.01693e-06
-7.6175e-06
1.57799e-06
-4.09566e-06
4.30781e-06
-4.65425e-07
7.33287e-06
2.99327e-06
1.06254e-05
6.53627e-06
1.41967e-05
1.01047e-05
1.80452e-05
1.37081e-05
2.21687e-05
1.73433e-05
2.65672e-05
2.1004e-05
3.12412e-05
2.46856e-05
3.61919e-05
2.83835e-05
4.14203e-05
3.20939e-05
4.69276e-05
3.5813e-05
5.27152e-05
3.95377e-05
5.87842e-05
4.32652e-05
6.51357e-05
4.69931e-05
7.17708e-05
5.07192e-05
7.86902e-05
5.44417e-05
8.58947e-05
5.81593e-05
9.33841e-05
6.18719e-05
0.000101156
6.55815e-05
0.000109225
6.92555e-05
0.000117576
7.29453e-05
0.000126214
7.66229e-05
0.000135138
8.02904e-05
0.000144347
8.39491e-05
0.000153842
8.75998e-05
0.000163622
9.12431e-05
0.000173684
9.48801e-05
0.000184028
9.85115e-05
0.00019465
0.000102139
0.000205548
0.000105766
0.000216726
0.000109373
0.000228175
0.000112991
0.000239892
0.000116607
0.000251874
0.000120221
0.000264117
0.000123835
0.000276617
0.000127449
0.000289368
0.000131063
0.000302366
0.000134678
0.000315606
0.000138288
0.000329083
0.000141896
0.000342788
0.000145502
0.000356715
0.000149103
0.000370857
0.000152698
0.000385207
0.000156284
0.000399757
0.000159858
0.000414499
0.000163416
0.000429424
0.000166956
0.000444524
0.000170475
0.000459788
0.000173968
0.000475209
0.000177432
0.000490775
0.000180861
0.000506479
0.00018425
0.000522308
0.000187596
0.000538254
0.000190892
0.000554307
0.000194134
0.000570454
0.000197317
0.000586687
0.000200434
0.000602995
0.000203481
0.000619367
0.000206453
0.000635794
0.000209343
0.000652264
0.000212148
0.000668768
0.000214861
0.000685295
0.000217478
0.000701836
0.000219994
0.000718381
0.000222406
0.000734921
0.000224708
0.000751446
0.000226897
0.000767948
0.000228969
0.000784417
0.00023092
0.000800846
0.000232749
0.000817227
0.000234452
0.000833552
0.000236027
0.000849814
0.000237472
0.000866007
0.000238786
0.000882123
0.000239968
0.000898156
0.000241016
0.000914102
0.000241931
0.000929955
0.000242713
0.00094571
0.000243362
0.000961364
0.000243878
0.000976911
0.000244264
0.000992348
0.00024452
0.00100767
0.000244648
0.00102288
0.000244651
0.00103797
0.000244531
0.00105295
0.00024429
0.0010678
0.000243933
0.00108253
0.000243461
0.00109713
0.000242878
0.00111161
0.000242189
0.00112597
0.000241396
0.00114021
0.000240505
0.00115432
0.00023952
0.00116831
0.000238444
0.00118218
0.000237283
0.00119592
0.000236041
0.00120955
0.000234723
0.00122306
0.000233334
0.00123646
0.000231879
0.00124975
0.000230362
0.00126292
0.00022879
0.00127598
0.000227166
0.00128894
0.000225495
0.0013018
0.000223784
0.00131455
0.000222037
0.00132721
0.000220259
0.00133978
0.000218455
0.00135225
0.00021663
0.00136464
0.000214788
0.00137694
0.000212936
0.00138916
0.000211077
0.0014013
0.000209217
0.00141337
0.00020736
0.00142536
0.000205511
0.00143729
0.000203675
0.00144916
0.000201855
0.00146096
0.000200058
0.00147271
0.000198286
0.00148441
0.000196546
0.00149605
0.00019484
0.00150765
0.000193175
0.00151921
0.000191554
0.00153073
0.000189982
0.00154221
0.000188464
0.00155366
0.000187004
0.00156509
0.000185609
0.00157649
0.000184283
0.00158787
0.000183032
0.00159924
0.000181862
0.0016106
0.000180781
0.00162195
0.000179795
0.00163329
0.000178914
0.00164464
0.000178144
0.00165599
0.000177505
0.00166736
0.000176993
0.00167873
0.000176645
0.00169012
0.000176471
0.00170152
0.000176405
0.00171294
0.000176857
0.000176862
5.12964e-06
-0.000137374
-2.00167e-06
-0.000129884
-7.15699e-06
-0.00012598
-1.27034e-05
-0.00012094
-1.83127e-05
-0.000115678
-2.38613e-05
-0.00011046
-2.93123e-05
-0.000105436
-3.46329e-05
-0.000100674
-3.97952e-05
-9.62008e-05
-4.47792e-05
-9.20201e-05
-4.95705e-05
-8.81203e-05
-5.41586e-05
-8.44802e-05
-5.85359e-05
-8.10735e-05
-6.26966e-05
-7.78723e-05
-6.66366e-05
-7.48481e-05
-7.0353e-05
-7.1973e-05
-7.38436e-05
-6.9221e-05
-7.71073e-05
-6.65673e-05
-8.01437e-05
-6.39894e-05
-8.29493e-05
-6.14638e-05
-8.5519e-05
-5.89744e-05
-8.78605e-05
-5.65135e-05
-8.99709e-05
-5.4058e-05
-9.18494e-05
-5.15959e-05
-9.34951e-05
-4.91165e-05
-9.49073e-05
-4.661e-05
-9.6085e-05
-4.40682e-05
-9.70268e-05
-4.14842e-05
-9.77315e-05
-3.88521e-05
-9.81972e-05
-3.61673e-05
-9.84219e-05
-3.34266e-05
-9.84036e-05
-3.06277e-05
-9.81402e-05
-2.77694e-05
-9.76297e-05
-2.48516e-05
-9.68701e-05
-2.18744e-05
-9.58587e-05
-1.88385e-05
-9.45927e-05
-1.57455e-05
-9.30677e-05
-1.25978e-05
-9.12841e-05
-9.40112e-06
-8.92434e-05
-6.13631e-06
-8.6862e-05
-2.84687e-06
-8.44055e-05
5.36825e-07
-8.16199e-05
3.75061e-06
-7.85653e-05
7.05019e-06
-7.52334e-05
1.03762e-05
-7.16254e-05
1.37353e-05
-6.77414e-05
1.712e-05
-6.35799e-05
2.05241e-05
-5.91393e-05
2.39429e-05
-5.44177e-05
2.73722e-05
-4.9413e-05
3.08083e-05
-4.41233e-05
3.4248e-05
-3.85466e-05
3.76886e-05
-3.26812e-05
4.11276e-05
-2.65251e-05
4.45631e-05
-2.00765e-05
4.79931e-05
-1.33331e-05
5.14159e-05
-6.29089e-06
5.48297e-05
1.05734e-06
5.82333e-05
8.66326e-06
6.16496e-05
1.65806e-05
6.5028e-05
2.47997e-05
6.84037e-05
3.33183e-05
7.17718e-05
4.21358e-05
7.51316e-05
5.12517e-05
7.84839e-05
6.06655e-05
8.18294e-05
7.03763e-05
8.51693e-05
8.03829e-05
8.85049e-05
9.06832e-05
9.18389e-05
0.000101271
9.51788e-05
0.000112162
9.8482e-05
0.000123335
0.000101817
0.000134794
0.000105149
0.000146534
0.000108481
0.000158553
0.000111817
0.000170846
0.000115156
0.000183409
0.000118501
0.000196235
0.000121851
0.000209323
0.0001252
0.000222666
0.000128553
0.000236255
0.000131912
0.000250086
0.000135272
0.00026415
0.000138633
0.000278441
0.000141993
0.00029295
0.00014535
0.00030767
0.000148696
0.000322592
0.000152034
0.000337707
0.000155359
0.000353006
0.000158669
0.000368479
0.000161959
0.000384116
0.000165224
0.000399909
0.000168458
0.000415845
0.000171659
0.000431915
0.000174822
0.000448108
0.000177941
0.000464414
0.000181011
0.000480822
0.000184027
0.00049732
0.000186982
0.0005139
0.000189874
0.000530548
0.000192695
0.000547256
0.00019544
0.000564011
0.000198105
0.000580805
0.000200684
0.000597626
0.000203173
0.000614464
0.000205567
0.00063131
0.000207862
0.000648154
0.000210053
0.000664986
0.000212137
0.000681797
0.000214109
0.000698579
0.000215967
0.000715323
0.000217708
0.000732022
0.000219329
0.000748667
0.000220827
0.000765251
0.000222202
0.000781768
0.000223451
0.000798211
0.000224573
0.000814574
0.000225568
0.000830851
0.000226436
0.000847038
0.000227175
0.000863129
0.000227787
0.00087912
0.000228273
0.000895007
0.000228633
0.000910787
0.000228868
0.000926457
0.000228982
0.000942014
0.000228974
0.000957455
0.000228849
0.00097278
0.000228608
0.000987986
0.000228255
0.00100307
0.000227792
0.00101804
0.000227223
0.00103288
0.000226551
0.00104761
0.000225781
0.00106221
0.000224917
0.00107669
0.000223961
0.00109106
0.00022292
0.0011053
0.000221796
0.00111943
0.000220596
0.00113344
0.000219323
0.00114734
0.000217981
0.00116112
0.000216577
0.0011748
0.000215114
0.00118837
0.000213598
0.00120183
0.000212033
0.00121519
0.000210425
0.00122845
0.000208778
0.00124161
0.000207097
0.00125468
0.000205387
0.00126765
0.000203653
0.00128054
0.000201901
0.00129334
0.000200133
0.00130607
0.000198357
0.00131871
0.000196575
0.00133127
0.000194794
0.00134377
0.000193017
0.00135619
0.000191249
0.00136855
0.000189495
0.00138085
0.00018776
0.00139309
0.000186047
0.00140528
0.000184361
0.00141741
0.000182707
0.00142949
0.00018109
0.00144154
0.000179513
0.00145354
0.000177981
0.0014655
0.0001765
0.00147743
0.000175073
0.00148933
0.000173707
0.00150121
0.000172406
0.00151307
0.000171176
0.0015249
0.000170024
0.00153673
0.000168955
0.00154855
0.000167978
0.00156036
0.000167101
0.00157217
0.000166331
0.00158399
0.000165687
0.00159582
0.000165165
0.00160766
0.000164807
0.00161952
0.000164609
0.00163139
0.000164536
0.00164329
0.00016496
0.000164903
-6.43177e-05
-0.000130735
-7.038e-05
-0.000123821
-7.67705e-05
-0.000119589
-8.30599e-05
-0.00011465
-8.9301e-05
-0.000109437
-9.54222e-05
-0.000104339
-0.000101386
-9.94724e-05
-0.000107168
-9.48926e-05
-0.00011275
-9.0619e-05
-0.000118121
-8.66491e-05
-0.000123275
-8.29664e-05
-0.000128208
-7.95468e-05
-0.000132919
-7.63624e-05
-0.000137407
-7.33839e-05
-0.000141673
-7.05823e-05
-0.000145717
-6.79293e-05
-0.000149539
-6.53985e-05
-0.000153141
-6.29654e-05
-0.000156524
-6.06072e-05
-0.000159685
-5.83024e-05
-0.000162625
-5.60347e-05
-0.000165346
-5.37924e-05
-0.000167848
-5.15561e-05
-0.00017013
-4.93139e-05
-0.000172191
-4.70551e-05
-0.000174031
-4.47702e-05
-0.000175648
-4.24513e-05
-0.00017704
-4.00917e-05
-0.000178206
-3.7686e-05
-0.000179144
-3.52298e-05
-0.00017985
-3.272e-05
-0.000180323
-3.01546e-05
-0.00018056
-2.75326e-05
-0.000180558
-2.48537e-05
-0.000180314
-2.21183e-05
-0.000179825
-1.93275e-05
-0.000179088
-1.6483e-05
-0.000178098
-1.35874e-05
-0.000176854
-1.06455e-05
-0.000175342
-7.64762e-06
-0.000173578
-4.61116e-06
-0.000171522
-1.5191e-06
-0.000169315
1.54355e-06
-0.000166812
4.54692e-06
-0.000164024
7.58883e-06
-0.000160959
1.06696e-05
-0.000157615
1.37768e-05
-0.000153993
1.69018e-05
-0.000150089
2.00391e-05
-0.000145901
2.31842e-05
-0.000141426
2.63335e-05
-0.000136662
2.94838e-05
-0.000131606
3.26325e-05
-0.000126256
3.57772e-05
-0.000120609
3.8916e-05
-0.000114663
4.20472e-05
-0.000108416
4.51695e-05
-0.000101868
4.82815e-05
-9.50184e-05
5.13836e-05
-8.78527e-05
5.4484e-05
-8.03844e-05
5.75596e-05
-7.26082e-05
6.06276e-05
-6.45227e-05
6.36863e-05
-5.61271e-05
6.6736e-05
-4.74208e-05
6.97776e-05
-3.84038e-05
7.28123e-05
-2.90759e-05
7.58414e-05
-1.9437e-05
7.8866e-05
-9.48464e-06
8.18866e-05
7.92071e-07
8.49021e-05
1.13253e-05
8.79487e-05
2.21807e-05
9.09618e-05
3.33417e-05
9.39875e-05
4.48023e-05
9.70204e-05
5.65586e-05
0.00010006
6.86065e-05
0.000103108
8.09412e-05
0.000106166
9.35566e-05
0.000109236
0.000106453
0.000112303
0.000119622
0.000115385
0.000133055
0.000118479
0.000146747
0.00012158
0.000160692
0.000124689
0.000174881
0.000127804
0.000189306
0.000130924
0.000203962
0.00013404
0.000218839
0.000137157
0.000233927
0.000140272
0.000249216
0.00014338
0.000264698
0.000146477
0.000280362
0.000149561
0.000296199
0.000152621
0.000312198
0.00015566
0.000328348
0.000158672
0.000344639
0.000161651
0.000361059
0.000164591
0.000377598
0.000167488
0.000394244
0.000170336
0.000410987
0.000173131
0.000427816
0.000175866
0.000444718
0.000178537
0.000461684
0.000181139
0.000478703
0.000183666
0.000495764
0.000186113
0.000512855
0.000188476
0.000529968
0.000190749
0.000547092
0.000192929
0.000564217
0.000195012
0.000581334
0.000196992
0.000598433
0.000198868
0.000615506
0.000200635
0.000632544
0.00020229
0.00064954
0.000203832
0.000666485
0.000205257
0.000683373
0.000206564
0.000700195
0.000207751
0.000716947
0.000208817
0.000733622
0.000209761
0.000750214
0.000210583
0.000766718
0.000211283
0.00078313
0.000211861
0.000799445
0.000212318
0.00081566
0.000212654
0.00083177
0.000212871
0.000847773
0.000212971
0.000863667
0.000212955
0.000879449
0.000212826
0.000895118
0.000212586
0.000910671
0.000212238
0.000926108
0.000211786
0.000941429
0.000211231
0.000956632
0.000210578
0.000971718
0.000209831
0.000986686
0.000208993
0.00100154
0.000208068
0.00101627
0.000207061
0.00103089
0.000205975
0.0010454
0.000204815
0.0010598
0.000203586
0.00107408
0.000202292
0.00108826
0.000200938
0.00110233
0.000199528
0.00111629
0.000198068
0.00113016
0.000196561
0.00114392
0.000195014
0.00115759
0.00019343
0.00117116
0.000191814
0.00118464
0.000190172
0.00119803
0.000188508
0.00121134
0.000186826
0.00122457
0.000185132
0.00123771
0.00018343
0.00125078
0.000181725
0.00126378
0.000180021
0.0012767
0.000178324
0.00128956
0.000176636
0.00130236
0.000174964
0.00131509
0.000173311
0.00132777
0.000171682
0.0013404
0.000170081
0.00135297
0.000168513
0.0013655
0.000166982
0.00137799
0.000165494
0.00139044
0.000164051
0.00140285
0.00016266
0.00141524
0.000161325
0.00142759
0.000160051
0.00143992
0.000158845
0.00145224
0.000157711
0.00146453
0.000156657
0.00147682
0.00015569
0.0014891
0.000154819
0.00150138
0.000154049
0.00151367
0.000153401
0.00152597
0.00015287
0.00153827
0.0001525
0.00155061
0.000152276
0.00156295
0.000152195
0.00157532
0.000152582
0.000152465
-0.000126029
-0.000122811
-0.000133023
-0.000116827
-0.000140184
-0.000112428
-0.000147276
-0.000107559
-0.00015422
-0.000102493
-0.000160971
-9.75875e-05
-0.000167503
-9.29407e-05
-0.0001738
-8.85958e-05
-0.000179854
-8.45647e-05
-0.000185664
-8.08392e-05
-0.000191231
-7.73994e-05
-0.000196558
-7.42193e-05
-0.000201651
-7.12702e-05
-0.000206512
-6.85226e-05
-0.000211147
-6.59475e-05
-0.000215559
-6.35171e-05
-0.000219752
-6.12054e-05
-0.000223729
-5.89883e-05
-0.000227492
-5.68438e-05
-0.000231043
-5.47518e-05
-0.000234382
-5.2696e-05
-0.000237511
-5.06629e-05
-0.000240432
-4.86358e-05
-0.000243142
-4.66031e-05
-0.000245643
-4.45543e-05
-0.000247933
-4.24806e-05
-0.00025001
-4.03743e-05
-0.000251873
-3.82291e-05
-0.000253519
-3.604e-05
-0.000254945
-3.38029e-05
-0.00025615
-3.15151e-05
-0.00025713
-2.91748e-05
-0.000257882
-2.6781e-05
-0.000258402
-2.43337e-05
-0.000258687
-2.18335e-05
-0.000258732
-1.92816e-05
-0.000258535
-1.66801e-05
-0.000258091
-1.40315e-05
-0.000257397
-1.13399e-05
-0.000256442
-8.6028e-06
-0.000255223
-5.8297e-06
-0.000253709
-3.03377e-06
-0.000252072
-9.27305e-08
-0.000250104
2.57902e-06
-0.000247869
5.35347e-06
-0.000245357
8.15803e-06
-0.000242568
1.09871e-05
-0.000239498
1.38316e-05
-0.000236144
1.66852e-05
-0.000232503
1.95434e-05
-0.000228572
2.24024e-05
-0.000224347
2.52592e-05
-0.000219826
2.81113e-05
-0.000215005
3.09564e-05
-0.000209882
3.37927e-05
-0.000204453
3.66186e-05
-0.000198717
3.94331e-05
-0.000192671
4.22353e-05
-0.000186312
4.50252e-05
-0.000179635
4.78067e-05
-0.000172643
5.05672e-05
-0.000165332
5.33172e-05
-0.000157702
5.60561e-05
-0.000149751
5.87847e-05
-0.000141477
6.15042e-05
-0.000132881
6.42162e-05
-0.000123962
6.69223e-05
-0.00011472
6.96242e-05
-0.000105157
7.23234e-05
-9.52772e-05
7.50221e-05
-8.5064e-05
7.77355e-05
-7.45381e-05
8.04359e-05
-6.36962e-05
8.31457e-05
-5.254e-05
8.58643e-05
-4.10724e-05
8.85927e-05
-2.92964e-05
9.13323e-05
-1.72145e-05
9.40841e-05
-4.82695e-06
9.68482e-05
7.84038e-06
9.9636e-05
2.07944e-05
0.000102431
3.40354e-05
0.000105238
4.75546e-05
0.000108061
6.13442e-05
0.000110899
7.53963e-05
0.000113752
8.97014e-05
0.000116619
0.000104257
0.000119484
0.000119052
0.000122363
0.000134074
0.000125249
0.000149316
0.000128137
0.000164768
0.000131025
0.00018042
0.000133909
0.000196263
0.000136778
0.000212285
0.000139638
0.000228476
0.000142481
0.000244824
0.000145303
0.000261318
0.000148097
0.000277948
0.000150858
0.000294703
0.000153582
0.00031157
0.000156264
0.000328538
0.000158898
0.000345596
0.000161479
0.000362733
0.000164001
0.000379938
0.000166461
0.000397199
0.000168852
0.000414506
0.000171169
0.000431848
0.000173407
0.000449215
0.000175562
0.000466596
0.00017763
0.000483982
0.000179606
0.000501363
0.000181486
0.000518731
0.000183267
0.000536075
0.000184946
0.000553389
0.000186518
0.000570662
0.000187983
0.000587889
0.000189337
0.000605062
0.000190578
0.000622173
0.000191705
0.000639218
0.000192717
0.000656188
0.000193613
0.00067308
0.000194391
0.000689888
0.000195053
0.000706607
0.000195599
0.000723233
0.000196028
0.000739763
0.000196341
0.000756192
0.000196541
0.000772519
0.000196628
0.00078874
0.000196605
0.000804853
0.000196473
0.000820857
0.000196234
0.000836751
0.000195892
0.000852532
0.00019545
0.000868201
0.00019491
0.000883757
0.000194275
0.000899199
0.00019355
0.000914529
0.000192738
0.000929747
0.000191843
0.000944852
0.000190869
0.000959847
0.00018982
0.000974733
0.0001887
0.00098951
0.000187515
0.00100418
0.000186267
0.00101875
0.000184962
0.00103321
0.000183604
0.00104757
0.000182199
0.00106184
0.000180749
0.00107601
0.000179262
0.00109008
0.00017774
0.00110407
0.000176188
0.00111796
0.000174612
0.00113177
0.000173016
0.0011455
0.000171405
0.00115914
0.000169783
0.00117271
0.000168155
0.00118621
0.000166525
0.00119964
0.000164898
0.00121299
0.000163279
0.00122629
0.000161671
0.00123952
0.00016008
0.00125269
0.000158509
0.00126581
0.000156963
0.00127887
0.000155447
0.00129189
0.000153965
0.00130486
0.00015252
0.0013178
0.000151119
0.00133069
0.000149765
0.00134355
0.000148464
0.00135638
0.00014722
0.00136919
0.000146039
0.00138197
0.000144927
0.00139474
0.00014389
0.00140749
0.000142935
0.00142024
0.000142071
0.00143299
0.000141304
0.00144574
0.000140652
0.0014585
0.000140112
0.00147127
0.000139729
0.00148406
0.00013948
0.00149687
0.000139387
0.00150972
0.000139728
0.000139553
-0.000181618
-0.000113945
-0.000189644
-0.000108801
-0.000197687
-0.000104385
-0.000205584
-9.96624e-05
-0.000213249
-9.48281e-05
-0.00022065
-9.01863e-05
-0.000227771
-8.58201e-05
-0.000234606
-8.1761e-05
-0.000241157
-7.80135e-05
-0.000247431
-7.45649e-05
-0.000253437
-7.13931e-05
-0.000259185
-6.84714e-05
-0.000264684
-6.5771e-05
-0.000269944
-6.32631e-05
-0.000274972
-6.09194e-05
-0.000279776
-5.87133e-05
-0.000284362
-5.66196e-05
-0.000288734
-5.46155e-05
-0.000292898
-5.268e-05
-0.000296856
-5.07942e-05
-0.000300609
-4.89423e-05
-0.000304162
-4.71104e-05
-0.000307514
-4.5284e-05
-0.000310665
-4.34517e-05
-0.000313616
-4.16039e-05
-0.000316364
-3.9732e-05
-0.000318909
-3.78291e-05
-0.000321249
-3.58894e-05
-0.000323381
-3.39082e-05
-0.000325302
-3.18819e-05
-0.000327009
-2.98081e-05
-0.000328498
-2.76851e-05
-0.000329767
-2.55124e-05
-0.000330811
-2.32901e-05
-0.000331625
-2.1019e-05
-0.000332206
-1.87005e-05
-0.00033255
-1.63367e-05
-0.000332651
-1.39305e-05
-0.000332505
-1.14853e-05
-0.000332106
-9.00178e-06
-0.000331452
-6.48455e-06
-0.000330555
-3.93003e-06
-0.000329318
-1.32968e-06
-0.000327956
1.21663e-06
-0.000326282
3.67941e-06
-0.000324326
6.20202e-06
-0.00032209
8.75167e-06
-0.000319573
1.13143e-05
-0.00031677
1.38824e-05
-0.000313678
1.64512e-05
-0.000310293
1.90169e-05
-0.00030661
2.15766e-05
-0.000302627
2.41278e-05
-0.000298339
2.66684e-05
-0.000293743
2.91968e-05
-0.000288836
3.17115e-05
-0.000283614
3.42116e-05
-0.000278075
3.66965e-05
-0.000272216
3.9166e-05
-0.000266031
4.1622e-05
-0.000259522
4.40581e-05
-0.000252686
4.64806e-05
-0.000245519
4.88898e-05
-0.000238022
5.12869e-05
-0.000230191
5.36735e-05
-0.000222026
5.60515e-05
-0.000213527
5.84228e-05
-0.000204692
6.07897e-05
-0.000195523
6.31544e-05
-0.000186021
6.55195e-05
-0.000176179
6.7894e-05
-0.000166007
7.02638e-05
-0.000155505
7.26433e-05
-0.000144674
7.50332e-05
-0.000133516
7.74355e-05
-0.000122036
7.98524e-05
-0.000110238
8.22853e-05
-9.81254e-05
8.47359e-05
-8.5699e-05
8.72095e-05
-7.2967e-05
8.96987e-05
-5.99364e-05
9.22071e-05
-4.66125e-05
9.4737e-05
-3.30013e-05
9.7288e-05
-1.91084e-05
9.98589e-05
-4.93708e-06
0.000102448
9.48188e-06
0.000105065
2.41558e-05
0.000107689
3.90796e-05
0.000110325
5.42415e-05
0.000112975
6.96308e-05
0.000115636
8.52351e-05
0.000118305
0.000101051
0.000120962
0.000117063
0.000123627
0.000133259
0.000126285
0.000149628
0.000128933
0.000166161
0.000131565
0.000182846
0.000134172
0.000199672
0.000136756
0.000216626
0.000139309
0.000233697
0.000141827
0.000250874
0.000144303
0.000268146
0.00014673
0.000285499
0.000149107
0.000302925
0.000151426
0.00032041
0.000153683
0.000337946
0.000155872
0.00035552
0.000157988
0.000373122
0.000160028
0.000390742
0.000161986
0.000408371
0.000163858
0.000425999
0.00016564
0.000443616
0.000167328
0.000461214
0.00016892
0.000478784
0.000170412
0.000496319
0.000171802
0.000513811
0.000173086
0.000531253
0.000174264
0.000548637
0.000175333
0.000565958
0.000176291
0.00058321
0.00017714
0.000600387
0.000177876
0.000617485
0.000178501
0.000634498
0.000179014
0.000651423
0.000179417
0.000668256
0.000179708
0.000684993
0.000179891
0.000701632
0.000179966
0.000718171
0.000179934
0.000734606
0.000179799
0.000750937
0.000179561
0.000767162
0.000179225
0.00078328
0.000178792
0.00079929
0.000178265
0.000815192
0.000177648
0.000830985
0.000176945
0.00084667
0.000176158
0.000862248
0.000175292
0.000877718
0.00017435
0.000893082
0.000173337
0.000908341
0.000172256
0.000923496
0.000171112
0.000938548
0.000169909
0.0009535
0.000168652
0.000968354
0.000167345
0.00098311
0.000165993
0.000997771
0.0001646
0.00101234
0.000163171
0.00102682
0.00016171
0.00104121
0.000160222
0.00105551
0.000158711
0.00106974
0.000157183
0.00108388
0.000155641
0.00109794
0.000154091
0.00111193
0.000152536
0.00112585
0.000150981
0.0011397
0.00014943
0.00115348
0.000147889
0.0011672
0.000146361
0.00118086
0.00014485
0.00119446
0.000143361
0.00120801
0.000141898
0.00122151
0.000140466
0.00123496
0.000139069
0.00124837
0.000137712
0.00126173
0.000136398
0.00127507
0.000135133
0.00128836
0.000133921
0.00130164
0.000132769
0.00131488
0.00013168
0.00132811
0.000130663
0.00134132
0.000129722
0.00135453
0.000128868
0.00136772
0.000128105
0.00138093
0.000127451
0.00139413
0.000126902
0.00140736
0.000126506
0.00142061
0.000126231
0.00143387
0.000126123
0.00144719
0.00012641
0.000126182
-0.000231444
-0.000104181
-0.000240501
-9.97444e-05
-0.000249428
-9.54573e-05
-0.000258116
-9.09747e-05
-0.000266491
-8.64527e-05
-0.000274534
-8.21439e-05
-0.000282238
-7.81158e-05
-0.000289609
-7.43897e-05
-0.000296659
-7.09638e-05
-0.000303402
-6.78222e-05
-0.000309853
-6.49418e-05
-0.000316028
-6.2296e-05
-0.000321942
-5.98571e-05
-0.000327608
-5.75975e-05
-0.000333037
-5.54904e-05
-0.00033824
-5.35107e-05
-0.000343224
-5.16349e-05
-0.000347998
-4.98416e-05
-0.000352567
-4.81111e-05
-0.000356935
-4.64262e-05
-0.000361106
-4.47717e-05
-0.000365082
-4.31342e-05
-0.000368865
-4.15009e-05
-0.000372456
-3.98613e-05
-0.000375853
-3.82063e-05
-0.000379057
-3.65282e-05
-0.000382065
-3.48207e-05
-0.000384876
-3.30784e-05
-0.000387487
-3.12973e-05
-0.000389895
-2.94743e-05
-0.000392096
-2.76072e-05
-0.000394086
-2.56947e-05
-0.000395862
-2.37366e-05
-0.000397419
-2.17333e-05
-0.000398752
-1.96858e-05
-0.000399857
-1.75956e-05
-0.000400728
-1.5465e-05
-0.000401362
-1.32969e-05
-0.000401753
-1.10945e-05
-0.000401894
-8.86006e-06
-0.000401782
-6.59725e-06
-0.000401407
-4.3051e-06
-0.000400758
-1.9787e-06
-0.000399911
3.69767e-07
-0.000398769
2.53744e-06
-0.000397353
4.78601e-06
-0.000395659
7.05816e-06
-0.000393684
9.33861e-06
-0.000391421
1.16198e-05
-0.000388867
1.3897e-05
-0.000386016
1.61666e-05
-0.000382866
1.84259e-05
-0.00037941
2.06724e-05
-0.000375646
2.29042e-05
-0.000371569
2.51198e-05
-0.000367175
2.73179e-05
-0.000362461
2.94976e-05
-0.000357423
3.16585e-05
-0.000352058
3.38005e-05
-0.00034636
3.59245e-05
-0.00034033
3.80277e-05
-0.000333964
4.01141e-05
-0.000327258
4.21846e-05
-0.000320212
4.42407e-05
-0.000312823
4.62844e-05
-0.000305089
4.83179e-05
-0.00029701
5.03435e-05
-0.000288584
5.2364e-05
-0.000279812
5.43821e-05
-0.000270693
5.64009e-05
-0.000261225
5.8426e-05
-0.000251413
6.04517e-05
-0.000241257
6.24874e-05
-0.000230759
6.45351e-05
-0.000219921
6.65976e-05
-0.000208746
6.86775e-05
-0.000197238
7.0777e-05
-0.0001854
7.28982e-05
-0.000173236
7.5045e-05
-0.000160751
7.72138e-05
-0.000147952
7.94079e-05
-0.000134844
8.16293e-05
-0.000121434
8.38782e-05
-0.00010773
8.61544e-05
-9.37394e-05
8.84573e-05
-7.94652e-05
9.07905e-05
-6.49199e-05
9.31435e-05
-5.0113e-05
9.55185e-05
-3.50528e-05
9.79152e-05
-1.97471e-05
0.00010033
-4.20104e-06
0.000102759
1.15492e-05
0.000105212
2.75147e-05
0.000107661
4.36844e-05
0.000110116
6.0045e-05
0.000112572
7.65838e-05
0.000115026
9.32926e-05
0.000117464
0.000110158
0.000119891
0.000127166
0.000122301
0.000144307
0.000124686
0.000161569
0.000127041
0.000178941
0.000129358
0.00019641
0.000131638
0.000213965
0.000133871
0.000231596
0.000136053
0.00024929
0.000138178
0.000267037
0.000140242
0.000284826
0.000142239
0.000302647
0.000144165
0.000320489
0.000146015
0.000338344
0.000147785
0.000356201
0.000149471
0.000374051
0.00015107
0.000391886
0.000152577
0.000409698
0.00015399
0.000427478
0.000155306
0.000445219
0.000156523
0.000462913
0.000157638
0.000480556
0.000158649
0.000498139
0.000159556
0.000515658
0.000160358
0.000533106
0.000161052
0.00055048
0.000161641
0.000567774
0.000162122
0.000584985
0.000162497
0.000602109
0.000162767
0.000619142
0.000162932
0.000636082
0.000162994
0.000652927
0.000162954
0.000669674
0.000162815
0.000686321
0.000162578
0.000702867
0.000162245
0.000719312
0.000161821
0.000735653
0.000161307
0.000751891
0.000160706
0.000768026
0.000160023
0.000784058
0.00015926
0.000799986
0.000158421
0.000815812
0.000157511
0.000831536
0.000156532
0.00084716
0.000155489
0.000862684
0.000154386
0.000878109
0.000153227
0.000893438
0.000152017
0.000908671
0.00015076
0.000923812
0.00014946
0.00093886
0.000148122
0.00095382
0.000146751
0.000968692
0.00014535
0.000983478
0.000143925
0.000998182
0.000142479
0.00101281
0.000141018
0.00102735
0.000139545
0.00104182
0.000138066
0.00105622
0.000136584
0.00107054
0.000135104
0.0010848
0.00013363
0.001099
0.000132166
0.00111313
0.000130718
0.0011272
0.000129288
0.00114122
0.000127881
0.00115518
0.000126502
0.0011691
0.000125155
0.00118297
0.000123843
0.00119679
0.000122572
0.00121058
0.000121346
0.00122433
0.00012017
0.00123805
0.000119049
0.00125174
0.000117987
0.00126541
0.000116992
0.00127907
0.000116069
0.00129271
0.000115226
0.00130635
0.000114469
0.00131998
0.000113815
0.00133362
0.00011326
0.00134728
0.000112849
0.00136096
0.000112549
0.00137466
0.000112421
0.00138843
0.000112647
0.000112373
-0.000275691
-9.35417e-05
-0.000285729
-8.97067e-05
-0.0002955
-8.56859e-05
-0.000304939
-8.15358e-05
-0.000313989
-7.74028e-05
-0.000322642
-7.3491e-05
-0.000330904
-6.98535e-05
-0.000338791
-6.65027e-05
-0.000346323
-6.34323e-05
-0.00035352
-6.06247e-05
-0.000360405
-5.80566e-05
-0.000366999
-5.57027e-05
-0.000373319
-5.35368e-05
-0.000379383
-5.15333e-05
-0.000385206
-4.96677e-05
-0.0003908
-4.79167e-05
-0.000396176
-4.62589e-05
-0.000401343
-4.46746e-05
-0.000406308
-4.31461e-05
-0.000411077
-4.16575e-05
-0.000415653
-4.01949e-05
-0.000420042
-3.8746e-05
-0.000424243
-3.72994e-05
-0.000428259
-3.58455e-05
-0.000432089
-3.43764e-05
-0.000435732
-3.2885e-05
-0.000439187
-3.13657e-05
-0.000442452
-2.98139e-05
-0.000445523
-2.82261e-05
-0.000448398
-2.65996e-05
-0.000451072
-2.49328e-05
-0.000453542
-2.32248e-05
-0.000455803
-2.14755e-05
-0.00045785
-1.96859e-05
-0.000459679
-1.78569e-05
-0.000461284
-1.59905e-05
-0.000462661
-1.40888e-05
-0.000463803
-1.21547e-05
-0.000464706
-1.01918e-05
-0.000465363
-8.20282e-06
-0.00046577
-6.19049e-06
-0.000465919
-4.156e-06
-0.000465793
-2.10464e-06
-0.000465448
2.48976e-08
-0.000464817
1.90611e-06
-0.000463918
3.8878e-06
-0.000462744
5.88331e-06
-0.000461286
7.88103e-06
-0.00045954
9.87398e-06
-0.000457501
1.18577e-05
-0.000455163
1.3829e-05
-0.000452522
1.57849e-05
-0.000449573
1.77234e-05
-0.000446312
1.96426e-05
-0.000442733
2.15411e-05
-0.000438833
2.34177e-05
-0.000434607
2.52717e-05
-0.000430051
2.71028e-05
-0.000425162
2.8911e-05
-0.000419934
3.06969e-05
-0.000414366
3.24598e-05
-0.000408455
3.42023e-05
-0.000402196
3.59259e-05
-0.000395588
3.76324e-05
-0.000388628
3.93242e-05
-0.000381314
4.10038e-05
-0.000373644
4.2674e-05
-0.000365618
4.43378e-05
-0.000357234
4.59985e-05
-0.000348493
4.76596e-05
-0.000339392
4.93254e-05
-0.000329936
5.0995e-05
-0.000320123
5.26748e-05
-0.000309956
5.43681e-05
-0.000299436
5.60781e-05
-0.000288567
5.78083e-05
-0.000277351
5.95613e-05
-0.000265793
6.13396e-05
-0.000253895
6.31467e-05
-0.000241662
6.49816e-05
-0.000229102
6.68475e-05
-0.000216219
6.87464e-05
-0.00020302
7.06791e-05
-0.000189512
7.26461e-05
-0.000175702
7.46472e-05
-0.000161596
7.66846e-05
-0.000147204
7.87518e-05
-0.000132536
8.08503e-05
-0.0001176
8.29794e-05
-0.000102407
8.51366e-05
-8.6967e-05
8.73191e-05
-7.12846e-05
8.95292e-05
-5.53761e-05
9.17525e-05
-3.92518e-05
9.39913e-05
-2.29214e-05
9.62416e-05
-6.39323e-06
9.84976e-05
1.03086e-05
0.000100762
2.71802e-05
0.000103019
4.42133e-05
0.000105268
6.13942e-05
0.000107505
7.87097e-05
0.000109726
9.61526e-05
0.000111915
0.000113706
0.000114084
0.00013136
0.000116217
0.000149103
0.00011831
0.000166924
0.000120357
0.000184812
0.000122354
0.000202755
0.000124295
0.000220744
0.000126176
0.000238768
0.000127991
0.000256817
0.000129736
0.000274881
0.000131407
0.000292952
0.000132999
0.000311019
0.00013451
0.000329076
0.000135934
0.000347112
0.00013727
0.000365121
0.000138514
0.000383096
0.000139663
0.000401028
0.000140717
0.000418913
0.000141672
0.000436743
0.000142527
0.000454514
0.000143282
0.000472219
0.000143935
0.000489854
0.000144487
0.000507415
0.000144936
0.000524898
0.000145284
0.000542299
0.000145531
0.000559614
0.000145678
0.000576842
0.000145727
0.000593979
0.000145677
0.000611024
0.000145533
0.000627974
0.000145295
0.000644829
0.000144966
0.000661587
0.000144549
0.000678247
0.000144046
0.000694809
0.000143461
0.000711272
0.000142797
0.000727636
0.000142057
0.000743902
0.000141245
0.00076007
0.000140364
0.000776141
0.000139418
0.000792115
0.000138412
0.000807993
0.000137349
0.000823776
0.000136233
0.000839467
0.000135069
0.000855066
0.000133861
0.000870574
0.000132614
0.000885994
0.000131331
0.000901328
0.000130017
0.000916576
0.000128676
0.000931742
0.000127313
0.000946827
0.000125933
0.000961833
0.000124539
0.000976763
0.000123136
0.000991619
0.000121728
0.0010064
0.00012032
0.00102112
0.000118915
0.00103577
0.000117518
0.00105035
0.000116133
0.00106487
0.000114765
0.00107934
0.000113417
0.00109375
0.000112093
0.0011081
0.000110798
0.00112241
0.000109536
0.00113667
0.000108311
0.00115089
0.000107127
0.00116507
0.000105989
0.00117922
0.000104902
0.00119334
0.000103871
0.00120743
0.000102901
0.0012215
0.000101998
0.00123555
0.00010117
0.0012496
0.000100422
0.00126365
9.97693e-05
0.0012777
9.92091e-05
0.00129176
9.87836e-05
0.00130585
9.84592e-05
0.00131997
9.83075e-05
0.00133415
9.84663e-05
9.81529e-05
-0.000314458
-8.20653e-05
-0.000325388
-7.8776e-05
-0.000335939
-7.51355e-05
-0.000346068
-7.14066e-05
-0.000355738
-6.77326e-05
-0.000364954
-6.42752e-05
-0.000373733
-6.10746e-05
-0.000382099
-5.81363e-05
-0.00039008
-5.54511e-05
-0.000397704
-5.30006e-05
-0.000404998
-5.0763e-05
-0.000411986
-4.87147e-05
-0.000418691
-4.68319e-05
-0.000425133
-4.50917e-05
-0.000431328
-4.34718e-05
-0.000437294
-4.19516e-05
-0.000443041
-4.05119e-05
-0.00044858
-3.91354e-05
-0.00045392
-3.78061e-05
-0.000459067
-3.65101e-05
-0.000464027
-3.52348e-05
-0.000468804
-3.39694e-05
-0.000473399
-3.27039e-05
-0.000477815
-3.143e-05
-0.000482051
-3.01406e-05
-0.000486106
-2.88297e-05
-0.000489979
-2.74925e-05
-0.000493668
-2.6125e-05
-0.00049717
-2.47245e-05
-0.00050048
-2.32887e-05
-0.000503597
-2.18166e-05
-0.000506514
-2.03076e-05
-0.000509227
-1.87621e-05
-0.000511732
-1.71813e-05
-0.000514022
-1.55666e-05
-0.000516093
-1.39197e-05
-0.000517938
-1.2243e-05
-0.000519554
-1.05393e-05
-0.000520933
-8.81285e-06
-0.00052207
-7.06605e-06
-0.000522959
-5.3006e-06
-0.000523595
-3.5208e-06
-0.000523975
-1.72411e-06
-0.000524068
1.18014e-07
-0.000523924
1.76175e-06
-0.000523509
3.47327e-06
-0.000522818
5.19205e-06
-0.000521843
6.90632e-06
-0.000520579
8.6099e-06
-0.00051902
1.02987e-05
-0.000517161
1.19695e-05
-0.000514996
1.36197e-05
-0.00051252
1.52474e-05
-0.000509728
1.68506e-05
-0.000506615
1.84282e-05
-0.000503176
1.99792e-05
-0.000499407
2.15029e-05
-0.000495304
2.29991e-05
-0.000490861
2.44681e-05
-0.000486074
2.59103e-05
-0.000480941
2.73264e-05
-0.000475457
2.87183e-05
-0.000469619
3.00879e-05
-0.000463423
3.14373e-05
-0.000456868
3.27692e-05
-0.000449951
3.40865e-05
-0.00044267
3.53925e-05
-0.000435023
3.66907e-05
-0.000427009
3.79846e-05
-0.000418627
3.92783e-05
-0.000409878
4.05758e-05
-0.000400762
4.18788e-05
-0.000391279
4.31921e-05
-0.000381431
4.452e-05
-0.000371219
4.58667e-05
-0.000360647
4.72358e-05
-0.000349716
4.86307e-05
-0.000338431
5.00545e-05
-0.000326795
5.15104e-05
-0.000314813
5.29995e-05
-0.00030249
5.45249e-05
-0.000289832
5.60888e-05
-0.000276846
5.76927e-05
-0.000263538
5.93377e-05
-0.000249915
6.10241e-05
-0.000235983
6.27533e-05
-0.000221753
6.45217e-05
-0.000207233
6.63304e-05
-0.000192432
6.81786e-05
-0.00017736
7.00645e-05
-0.000162027
7.19858e-05
-0.000146441
7.39428e-05
-0.000130614
7.59257e-05
-0.000114558
7.79352e-05
-9.82834e-05
7.99672e-05
-8.18022e-05
8.20164e-05
-6.51223e-05
8.40819e-05
-4.82575e-05
8.61543e-05
-3.122e-05
8.823e-05
-1.40199e-05
9.03049e-05
3.33265e-06
9.23733e-05
2.08099e-05
9.44377e-05
3.84179e-05
9.64761e-05
5.6141e-05
9.84942e-05
7.39673e-05
0.000100484
9.18857e-05
0.000102438
0.000109884
0.000104356
0.000127951
0.000106228
0.000146077
0.00010805
0.000164251
0.000109817
0.000182463
0.000111524
0.000200703
0.000113167
0.000218962
0.000114741
0.00023723
0.000116242
0.000255498
0.000117665
0.000273759
0.000119009
0.000292005
0.000120268
0.000310227
0.000121441
0.000328418
0.000122525
0.000346572
0.000123518
0.000364683
0.000124417
0.000382744
0.000125221
0.000400749
0.00012593
0.000418695
0.000126541
0.000436575
0.000127056
0.000454386
0.000127473
0.000472124
0.000127794
0.000489785
0.000128017
0.000507367
0.000128146
0.000524865
0.000128179
0.000542278
0.00012812
0.000559603
0.000127969
0.00057684
0.00012773
0.000593985
0.000127403
0.000611039
0.000126993
0.000628
0.000126501
0.000644867
0.00012593
0.00066164
0.000125284
0.000678318
0.000124566
0.000694903
0.000123779
0.000711393
0.000122928
0.00072779
0.000122015
0.000744094
0.000121045
0.000760306
0.000120021
0.000776426
0.000118949
0.000792457
0.000117831
0.000808398
0.000116672
0.000824252
0.000115477
0.00084002
0.000114249
0.000855703
0.000112993
0.000871303
0.000111713
0.000886823
0.000110414
0.000902262
0.000109099
0.000917625
0.000107773
0.000932912
0.000106441
0.000948126
0.000105106
0.00096327
0.000103772
0.000978344
0.000102444
0.000993353
0.000101125
0.0010083
9.98201e-05
0.00102318
9.8533e-05
0.00103801
9.72676e-05
0.00105278
9.6028e-05
0.00106749
9.48181e-05
0.00108216
9.3642e-05
0.00109679
9.25039e-05
0.00111137
9.14081e-05
0.00112591
9.0359e-05
0.00114042
8.93613e-05
0.0011549
8.84202e-05
0.00116936
8.7541e-05
0.0011838
8.67307e-05
0.00119822
8.59944e-05
0.00121265
8.53456e-05
0.00122707
8.47824e-05
0.00124151
8.43429e-05
0.00125598
8.39948e-05
0.00127047
8.38146e-05
0.00128504
8.39009e-05
8.35586e-05
-0.000347774
-6.98189e-05
-0.000359492
-6.7058e-05
-0.000370736
-6.38914e-05
-0.000381479
-6.06637e-05
-0.000391701
-5.75105e-05
-0.000401419
-5.45574e-05
-0.000410661
-5.18332e-05
-0.000419458
-4.9339e-05
-0.000427845
-4.70638e-05
-0.000435856
-4.49902e-05
-0.00044352
-4.30983e-05
-0.000450868
-4.13672e-05
-0.000457923
-3.97762e-05
-0.00046471
-3.8305e-05
-0.000471247
-3.69345e-05
-0.000477552
-3.56469e-05
-0.000483638
-3.44257e-05
-0.000489518
-3.32557e-05
-0.0004952
-3.21235e-05
-0.000500694
-3.10169e-05
-0.000506003
-2.99252e-05
-0.000511134
-2.8839e-05
-0.000516088
-2.775e-05
-0.000520867
-2.6651e-05
-0.000525471
-2.55362e-05
-0.0005299
-2.44005e-05
-0.000534153
-2.32401e-05
-0.000538226
-2.20517e-05
-0.000542117
-2.08333e-05
-0.000545823
-1.95833e-05
-0.000549338
-1.8301e-05
-0.00055266
-1.69864e-05
-0.000555782
-1.56401e-05
-0.000558699
-1.42641e-05
-0.000561406
-1.28598e-05
-0.000563896
-1.14289e-05
-0.000566166
-9.97368e-06
-0.000568208
-8.49706e-06
-0.000570017
-7.00407e-06
-0.000571586
-5.49679e-06
-0.000572911
-3.97525e-06
-0.000573985
-2.44746e-06
-0.000574811
-8.97448e-07
-0.000575322
6.28176e-07
-0.00057561
2.05046e-06
-0.000575632
3.49502e-06
-0.000575377
4.93713e-06
-0.000574838
6.36757e-06
-0.000574009
7.78095e-06
-0.000572884
9.17352e-06
-0.000571457
1.05423e-05
-0.000569722
1.18849e-05
-0.000567674
1.31992e-05
-0.000565307
1.44838e-05
-0.000562616
1.57374e-05
-0.000559596
1.69591e-05
-0.000556242
1.81486e-05
-0.000552549
1.93058e-05
-0.000548511
2.04308e-05
-0.000544126
2.15246e-05
-0.000539388
2.25884e-05
-0.000534293
2.3624e-05
-0.000528839
2.46334e-05
-0.000523021
2.56192e-05
-0.000516836
2.65845e-05
-0.000510282
2.75326e-05
-0.000503357
2.8467e-05
-0.000496058
2.93918e-05
-0.000488384
3.0311e-05
-0.000480335
3.12291e-05
-0.00047191
3.21504e-05
-0.000463109
3.3078e-05
-0.000453933
3.40157e-05
-0.000444382
3.49692e-05
-0.000434458
3.5943e-05
-0.000424164
3.69415e-05
-0.000413502
3.79686e-05
-0.000402475
3.90279e-05
-0.000391088
4.01229e-05
-0.000379344
4.12559e-05
-0.00036725
4.24303e-05
-0.00035481
4.36487e-05
-0.00034203
4.49131e-05
-0.000328917
4.62251e-05
-0.000315479
4.75856e-05
-0.000301722
4.89959e-05
-0.000287654
5.04543e-05
-0.000273285
5.19616e-05
-0.000258624
5.35174e-05
-0.00024368
5.51202e-05
-0.000228462
5.67683e-05
-0.00021298
5.84609e-05
-0.000197246
6.01915e-05
-0.00018127
6.19595e-05
-0.000165064
6.37611e-05
-0.000148638
6.55903e-05
-0.000132002
6.74461e-05
-0.000115169
6.93212e-05
-9.81511e-05
7.12119e-05
-8.09598e-05
7.31136e-05
-6.36076e-05
7.50211e-05
-4.61019e-05
7.6932e-05
-2.8459e-05
7.88332e-05
-1.06885e-05
8.07237e-05
7.19628e-06
8.25988e-05
2.5182e-05
8.44524e-05
4.32618e-05
8.62759e-05
6.14235e-05
8.80665e-05
7.96573e-05
8.98157e-05
9.79511e-05
9.15232e-05
0.000116295
9.31801e-05
0.00013468
9.47826e-05
0.000153095
9.63258e-05
0.000171531
9.78051e-05
0.00018998
9.92165e-05
0.000208433
0.000100556
0.000226881
0.00010182
0.000245318
0.000103005
0.000263734
0.000104108
0.000282125
0.000105127
0.000300482
0.00010606
0.0003188
0.000106903
0.000337072
0.000107657
0.000355294
0.00010832
0.00037346
0.00010889
0.000391566
0.000109367
0.000409608
0.000109752
0.00042758
0.000110044
0.000445481
0.000110245
0.000463307
0.000110353
0.000481055
0.000110372
0.000498722
0.000110302
0.000516307
0.000110145
0.000533807
0.000109903
0.000551221
0.000109579
0.000568547
0.000109174
0.000585785
0.000108692
0.000602933
0.000108136
0.000619991
0.000107508
0.000636958
0.000106812
0.000653835
0.000106051
0.000670622
0.000105228
0.000687318
0.000104348
0.000703924
0.000103415
0.000720442
0.000102431
0.00073687
0.000101402
0.000753211
0.000100331
0.000769465
9.92227e-05
0.000785633
9.80806e-05
0.000801717
9.6909e-05
0.000817718
9.57123e-05
0.000833637
9.44946e-05
0.000849476
9.326e-05
0.000865237
9.20127e-05
0.000880921
9.07568e-05
0.00089653
8.94963e-05
0.000912066
8.82354e-05
0.000927532
8.69779e-05
0.000942929
8.5728e-05
0.000958259
8.44894e-05
0.000973526
8.32662e-05
0.000988732
8.20621e-05
0.00100388
8.0881e-05
0.00101897
7.97267e-05
0.00103401
7.86031e-05
0.001049
7.75142e-05
0.00106394
7.64639e-05
0.00107885
7.54563e-05
0.00109371
7.44959e-05
0.00110854
7.35873e-05
0.00112335
7.27354e-05
0.00113813
7.19463e-05
0.0011529
7.12249e-05
0.00116767
7.05826e-05
0.00118243
7.00188e-05
0.00119721
6.95661e-05
0.00121201
6.91958e-05
0.00122684
6.89826e-05
0.00124175
6.89928e-05
6.86319e-05
-0.000375631
-5.68971e-05
-0.00038802
-5.46694e-05
-0.000399858
-5.20532e-05
-0.000411127
-4.9395e-05
-0.000421822
-4.68152e-05
-0.000431971
-4.4408e-05
-0.000441611
-4.21932e-05
-0.000450781
-4.01689e-05
-0.000459521
-3.83242e-05
-0.000467868
-3.66435e-05
-0.000475856
-3.51099e-05
-0.000483518
-3.37055e-05
-0.000490881
-3.24131e-05
-0.00049797
-3.12158e-05
-0.000504807
-3.00978e-05
-0.000511409
-2.90443e-05
-0.000517793
-2.80416e-05
-0.000523972
-2.70774e-05
-0.000529955
-2.61404e-05
-0.000535751
-2.52207e-05
-0.000541367
-2.43094e-05
-0.000546807
-2.3399e-05
-0.000552074
-2.24825e-05
-0.000557171
-2.15544e-05
-0.000562097
-2.06099e-05
-0.000566853
-1.96452e-05
-0.000571435
-1.86571e-05
-0.000575844
-1.76436e-05
-0.000580074
-1.6603e-05
-0.000584123
-1.55345e-05
-0.000587986
-1.44381e-05
-0.000591658
-1.33139e-05
-0.000595135
-1.2163e-05
-0.000598411
-1.09883e-05
-0.00060148
-9.79119e-06
-0.000604335
-8.57315e-06
-0.000606973
-7.33656e-06
-0.000609385
-6.08428e-06
-0.000611567
-4.82238e-06
-0.000613511
-3.5525e-06
-0.000615213
-2.27318e-06
-0.000616667
-9.94144e-07
-0.000617869
3.05065e-07
-0.000618764
1.52252e-06
-0.000619426
2.71263e-06
-0.000619825
3.89411e-06
-0.000619948
5.0607e-06
-0.000619788
6.20732e-06
-0.000619337
7.33001e-06
-0.000618589
8.42549e-06
-0.000617538
9.491e-06
-0.000616177
1.05243e-05
-0.000614501
1.15234e-05
-0.000612505
1.24871e-05
-0.000610182
1.34141e-05
-0.000607526
1.43039e-05
-0.000604534
1.5156e-05
-0.000601199
1.59706e-05
-0.000597516
1.6748e-05
-0.00059348
1.74892e-05
-0.000589088
1.81964e-05
-0.000584335
1.8871e-05
-0.000579217
1.95152e-05
-0.00057373
2.01322e-05
-0.000567871
2.07253e-05
-0.000561637
2.12983e-05
-0.000555025
2.18552e-05
-0.000548033
2.24004e-05
-0.000540661
2.29384e-05
-0.000532906
2.34742e-05
-0.000524768
2.40129e-05
-0.000516249
2.45582e-05
-0.000507346
2.5113e-05
-0.000498061
2.56843e-05
-0.000488396
2.62778e-05
-0.000478352
2.6898e-05
-0.000467933
2.75495e-05
-0.000457141
2.82363e-05
-0.000445981
2.89624e-05
-0.000434456
2.9731e-05
-0.000422572
3.05459e-05
-0.000410333
3.14101e-05
-0.000397746
3.23263e-05
-0.000384818
3.32964e-05
-0.000371554
3.4322e-05
-0.000357962
3.54045e-05
-0.000344052
3.65435e-05
-0.00032983
3.774e-05
-0.000315306
3.89937e-05
-0.00030049
4.03037e-05
-0.00028539
4.16686e-05
-0.000270016
4.30872e-05
-0.00025438
4.45552e-05
-0.000238492
4.60715e-05
-0.000222363
4.76325e-05
-0.000206004
4.92308e-05
-0.000189424
5.08663e-05
-0.000172636
5.25334e-05
-0.000155653
5.4228e-05
-0.000138484
5.59454e-05
-0.000121143
5.76802e-05
-0.00010364
5.94284e-05
-8.59872e-05
6.11805e-05
-6.81968e-05
6.29333e-05
-5.02794e-05
6.46815e-05
-3.22457e-05
6.64188e-05
-1.41078e-05
6.8138e-05
4.12417e-06
6.98345e-05
2.24348e-05
7.15051e-05
4.08187e-05
7.31392e-05
5.92651e-05
7.47338e-05
7.77631e-05
7.62846e-05
9.63032e-05
7.77857e-05
0.000114876
7.92324e-05
0.000133472
8.06202e-05
0.000152083
8.19447e-05
0.000170701
8.32021e-05
0.000189318
8.43886e-05
0.000207925
8.55009e-05
0.000226516
8.65361e-05
0.000245084
8.74915e-05
0.000263623
8.83648e-05
0.000282126
8.91541e-05
0.000300588
8.98577e-05
0.000319003
9.04746e-05
0.000337367
9.10037e-05
0.000355674
9.14446e-05
0.000373921
9.17972e-05
0.000392105
9.20615e-05
0.00041022
9.22381e-05
0.000428264
9.23277e-05
0.000446235
9.23315e-05
0.00046413
9.22508e-05
0.000481946
9.20874e-05
0.000499681
9.18435e-05
0.000517334
9.15212e-05
0.000534903
9.1123e-05
0.000552387
9.06516e-05
0.000569786
9.01097e-05
0.000587097
8.95003e-05
0.000604321
8.88265e-05
0.000621458
8.80918e-05
0.000638506
8.72997e-05
0.000655467
8.64538e-05
0.000672341
8.5558e-05
0.000689127
8.4616e-05
0.000705827
8.36318e-05
0.00072244
8.26093e-05
0.000738968
8.15525e-05
0.000755412
8.04655e-05
0.000771772
7.93522e-05
0.00078805
7.82168e-05
0.000804246
7.70632e-05
0.000820363
7.58956e-05
0.000836402
7.47179e-05
0.000852365
7.35341e-05
0.000868252
7.23481e-05
0.000884066
7.11637e-05
0.000899809
6.99849e-05
0.000915483
6.88154e-05
0.00093109
6.7659e-05
0.000946633
6.65193e-05
0.000962114
6.54001e-05
0.000977536
6.43049e-05
0.000992901
6.32374e-05
0.00100821
6.22013e-05
0.00102348
6.12003e-05
0.0010387
6.02381e-05
0.00105387
5.93188e-05
0.00106901
5.84465e-05
0.00108412
5.76256e-05
0.00109921
5.68613e-05
0.00111428
5.61582e-05
0.00112933
5.55256e-05
0.00114439
5.49636e-05
0.00115945
5.44993e-05
0.00117454
5.41084e-05
0.00118967
5.38584e-05
0.00120487
5.37901e-05
5.34214e-05
-0.000397997
-4.3415e-05
-0.000410931
-4.1735e-05
-0.000423254
-3.97301e-05
-0.000434952
-3.76971e-05
-0.000446034
-3.57331e-05
-0.000456537
-3.39051e-05
-0.000466505
-3.22258e-05
-0.000475982
-3.06919e-05
-0.000485012
-2.92937e-05
-0.000493637
-2.80186e-05
-0.000501894
-2.6853e-05
-0.000509817
-2.57828e-05
-0.000517435
-2.47945e-05
-0.000524776
-2.3875e-05
-0.000531862
-2.30118e-05
-0.000538713
-2.21936e-05
-0.000545345
-2.14097e-05
-0.000551771
-2.06505e-05
-0.000558004
-1.99074e-05
-0.000564053
-1.91726e-05
-0.000569923
-1.84394e-05
-0.00057562
-1.77019e-05
-0.000581147
-1.69551e-05
-0.000586507
-1.61946e-05
-0.0005917
-1.54171e-05
-0.000596725
-1.46199e-05
-0.000601581
-1.38008e-05
-0.000606266
-1.29586e-05
-0.000610777
-1.20924e-05
-0.000615109
-1.12023e-05
-0.000619259
-1.02884e-05
-0.000623221
-9.35146e-06
-0.000626991
-8.39302e-06
-0.000630563
-7.41679e-06
-0.000633929
-6.42442e-06
-0.000637086
-5.41685e-06
-0.000640026
-4.39633e-06
-0.000642745
-3.36508e-06
-0.000645234
-2.33301e-06
-0.000647485
-1.30219e-06
-0.000649517
-2.40863e-07
-0.000651278
7.66475e-07
-0.000652748
1.77584e-06
-0.000653983
2.75677e-06
-0.000654961
3.69091e-06
-0.000655673
4.60571e-06
-0.000656108
5.49628e-06
-0.00065626
6.359e-06
-0.000656121
7.19071e-06
-0.000655684
7.98849e-06
-0.000654942
8.74982e-06
-0.000653891
9.47261e-06
-0.000652522
1.01552e-05
-0.000650832
1.07962e-05
-0.000648812
1.13948e-05
-0.000646459
1.19502e-05
-0.000643765
1.24626e-05
-0.000640727
1.29321e-05
-0.000637338
1.33589e-05
-0.000633593
1.37442e-05
-0.000629488
1.40916e-05
-0.000625018
1.44015e-05
-0.00062018
1.46769e-05
-0.000614969
1.49209e-05
-0.000609381
1.51376e-05
-0.000603414
1.5331e-05
-0.000597064
1.55058e-05
-0.00059033
1.56666e-05
-0.000583211
1.58186e-05
-0.000575703
1.59671e-05
-0.000567809
1.6118e-05
-0.000559527
1.62762e-05
-0.000550856
1.64427e-05
-0.000541798
1.66259e-05
-0.000532353
1.68331e-05
-0.000522525
1.70694e-05
-0.000512314
1.73394e-05
-0.000501726
1.76478e-05
-0.000490763
1.7999e-05
-0.000479429
1.83971e-05
-0.000467729
1.88461e-05
-0.000455668
1.93497e-05
-0.000443253
1.9911e-05
-0.000430489
2.05325e-05
-0.000417384
2.12164e-05
-0.000403943
2.19643e-05
-0.000390177
2.27769e-05
-0.000376092
2.36551e-05
-0.000361698
2.45993e-05
-0.000347003
2.56088e-05
-0.000332017
2.66826e-05
-0.000316749
2.78196e-05
-0.000301211
2.90169e-05
-0.000285413
3.02732e-05
-0.000269366
3.15858e-05
-0.000253079
3.29444e-05
-0.000236564
3.43505e-05
-0.000219831
3.58006e-05
-0.000202893
3.72901e-05
-0.000185761
3.88137e-05
-0.000168447
4.03663e-05
-0.000150962
4.1943e-05
-0.000133317
4.3536e-05
-0.000115525
4.5141e-05
-9.75959e-05
4.67523e-05
-7.95411e-05
4.83639e-05
-6.13721e-05
4.9969e-05
-4.31e-05
5.15624e-05
-2.4734e-05
5.31391e-05
-6.28574e-06
5.4691e-05
1.22333e-05
5.62148e-05
3.08143e-05
5.77035e-05
4.94481e-05
5.91519e-05
6.81248e-05
6.05557e-05
8.68354e-05
6.19096e-05
0.000105571
6.32091e-05
0.000124323
6.44498e-05
0.000143084
6.56278e-05
0.000161846
6.67393e-05
0.000180601
6.77811e-05
0.000199342
6.87501e-05
0.000218063
6.96436e-05
0.000236758
7.04594e-05
0.00025542
7.11955e-05
0.000274044
7.18504e-05
0.000292625
7.24227e-05
0.000311158
7.29118e-05
0.000329639
7.33169e-05
0.000348062
7.3638e-05
0.000366425
7.38751e-05
0.000384724
7.40289e-05
0.000402955
7.41e-05
0.000421116
7.40896e-05
0.000439205
7.39991e-05
0.000457218
7.38303e-05
0.000475154
7.35854e-05
0.00049301
7.32664e-05
0.000510786
7.2876e-05
0.000528479
7.24164e-05
0.000546089
7.18904e-05
0.000563615
7.13008e-05
0.000581055
7.06511e-05
0.000598411
6.99445e-05
0.00061568
6.91845e-05
0.000632863
6.83747e-05
0.000649961
6.75188e-05
0.000666972
6.66205e-05
0.000683898
6.56837e-05
0.000700738
6.47121e-05
0.000717494
6.37098e-05
0.000734165
6.26805e-05
0.000750754
6.16283e-05
0.00076726
6.0557e-05
0.000783685
5.94705e-05
0.00080003
5.83728e-05
0.000816297
5.72676e-05
0.000832486
5.61587e-05
0.0008486
5.505e-05
0.00086464
5.3945e-05
0.000880608
5.28475e-05
0.000896506
5.17609e-05
0.000912336
5.0689e-05
0.000928101
4.9635e-05
0.000943804
4.86024e-05
0.000959447
4.75947e-05
0.000975033
4.66152e-05
0.000990566
4.56673e-05
0.00100605
4.47544e-05
0.00102149
4.38801e-05
0.00103689
4.3048e-05
0.00105225
4.22619e-05
0.00106759
4.15263e-05
0.0010829
4.08449e-05
0.0010982
4.02253e-05
0.00111349
3.9668e-05
0.0011288
3.91939e-05
0.00114412
3.87845e-05
0.00115949
3.8495e-05
0.00117493
3.83474e-05
3.79809e-05
-0.000414831
-2.95015e-05
-0.000428181
-2.83858e-05
-0.000440872
-2.70382e-05
-0.000452897
-2.56724e-05
-0.000464274
-2.43562e-05
-0.000475047
-2.31324e-05
-0.000485265
-2.20079e-05
-0.000494977
-2.09795e-05
-0.000504231
-2.00399e-05
-0.00051307
-1.91797e-05
-0.000521533
-1.83894e-05
-0.000529657
-1.7659e-05
-0.000537473
-1.69789e-05
-0.000545008
-1.634e-05
-0.000552286
-1.57336e-05
-0.000559328
-1.51516e-05
-0.000566151
-1.45867e-05
-0.000572769
-1.40322e-05
-0.000579195
-1.3482e-05
-0.000585437
-1.29308e-05
-0.000591502
-1.23739e-05
-0.000597397
-1.18075e-05
-0.000603124
-1.12281e-05
-0.000608685
-1.0633e-05
-0.000614082
-1.00201e-05
-0.000619314
-9.38785e-06
-0.00062438
-8.73526e-06
-0.000629277
-8.06189e-06
-0.000634001
-7.3678e-06
-0.00063855
-6.65349e-06
-0.000642918
-5.91984e-06
-0.000647102
-5.16788e-06
-0.000651096
-4.39878e-06
-0.000654894
-3.61905e-06
-0.000658488
-2.83026e-06
-0.000661873
-2.03159e-06
-0.000665044
-1.22621e-06
-0.000668002
-4.0688e-07
-0.000670734
3.98964e-07
-0.000673225
1.18862e-06
-0.000675451
1.98587e-06
-0.000677444
2.7597e-06
-0.000679181
3.51285e-06
-0.000680656
4.2316e-06
-0.000681874
4.90842e-06
-0.000682824
5.55551e-06
-0.000683497
6.16969e-06
-0.000683886
6.74839e-06
-0.000683985
7.2889e-06
-0.000683785
7.78859e-06
-0.00068328
8.24513e-06
-0.000682464
8.65662e-06
-0.00068133
9.02154e-06
-0.000679873
9.33876e-06
-0.000678086
9.60748e-06
-0.000675963
9.82713e-06
-0.000673498
9.99808e-06
-0.000670687
1.01206e-05
-0.000667523
1.0195e-05
-0.000664
1.02219e-05
-0.000660116
1.02073e-05
-0.000655865
1.01502e-05
-0.000651242
1.00539e-05
-0.000646243
9.92217e-06
-0.000640865
9.75942e-06
-0.000635104
9.57024e-06
-0.000628958
9.35961e-06
-0.000622424
9.13279e-06
-0.000615501
8.89534e-06
-0.000608187
8.6532e-06
-0.000600482
8.41321e-06
-0.000592389
8.18295e-06
-0.000583903
7.95629e-06
-0.000575023
7.74646e-06
-0.000565754
7.56396e-06
-0.000556097
7.41269e-06
-0.000546055
7.29752e-06
-0.000535631
7.22363e-06
-0.000524828
7.19608e-06
-0.000513651
7.21958e-06
-0.000502103
7.29868e-06
-0.000490191
7.43747e-06
-0.00047792
7.63956e-06
-0.000465295
7.90808e-06
-0.000452325
8.24564e-06
-0.000439015
8.65438e-06
-0.000425373
9.13566e-06
-0.000411409
9.69074e-06
-0.00039713
1.03202e-05
-0.000382545
1.10238e-05
-0.000367664
1.18011e-05
-0.000352495
1.2651e-05
-0.000337049
1.35714e-05
-0.000321338
1.45619e-05
-0.000305375
1.5623e-05
-0.000289164
1.67328e-05
-0.000272715
1.7902e-05
-0.000256043
1.91286e-05
-0.000239159
2.0406e-05
-0.000222074
2.17287e-05
-0.0002048
2.30916e-05
-0.000187346
2.44893e-05
-0.000169725
2.59153e-05
-0.000151949
2.73643e-05
-0.000134027
2.88308e-05
-0.000115971
3.03084e-05
-9.77931e-05
3.17907e-05
-7.95028e-05
3.32721e-05
-6.11107e-05
3.47469e-05
-4.26277e-05
3.6208e-05
-2.40634e-05
3.76505e-05
-5.42798e-06
3.90681e-05
1.32682e-05
4.04558e-05
3.20164e-05
4.18075e-05
5.08076e-05
4.31184e-05
6.96329e-05
4.43838e-05
8.84838e-05
4.55989e-05
0.000107352
4.67595e-05
0.00012623
4.78614e-05
0.00014511
4.8901e-05
0.000163985
4.9875e-05
0.000182848
5.07804e-05
0.000201693
5.16145e-05
0.000220514
5.2375e-05
0.000239304
5.306e-05
0.000258059
5.3668e-05
0.000276773
5.41977e-05
0.000295442
5.46484e-05
0.00031406
5.50195e-05
0.000332624
5.53108e-05
0.000351131
5.55225e-05
0.000369576
5.56551e-05
0.000387956
5.57094e-05
0.000406269
5.56864e-05
0.000424511
5.55879e-05
0.000442681
5.54159e-05
0.000460775
5.5172e-05
0.000478792
5.4859e-05
0.00049673
5.44783e-05
0.000514588
5.40325e-05
0.000532364
5.35246e-05
0.000550058
5.29575e-05
0.000567668
5.23345e-05
0.000585193
5.16588e-05
0.000602634
5.09338e-05
0.00061999
5.01632e-05
0.00063726
4.93503e-05
0.000654445
4.8499e-05
0.000671544
4.76128e-05
0.000688558
4.66956e-05
0.000705488
4.57511e-05
0.000722333
4.47832e-05
0.000739094
4.37955e-05
0.000755773
4.27918e-05
0.00077237
4.17759e-05
0.000788886
4.07515e-05
0.000805323
3.97222e-05
0.000821681
3.86916e-05
0.000837963
3.76633e-05
0.00085417
3.66407e-05
0.000870303
3.56272e-05
0.000886366
3.46262e-05
0.00090236
3.36409e-05
0.000918288
3.26746e-05
0.000934152
3.17303e-05
0.000949956
3.08112e-05
0.000965703
2.99203e-05
0.000981397
2.90606e-05
0.000997042
2.82352e-05
0.00101264
2.74473e-05
0.0010282
2.66999e-05
0.00104373
2.59967e-05
0.00105924
2.53407e-05
0.00107473
2.47374e-05
0.00109021
2.41879e-05
0.00110569
2.37065e-05
0.0011212
2.32809e-05
0.00113674
2.29504e-05
0.00115237
2.27239e-05
2.23685e-05
-0.000426095
-1.52949e-05
-0.000439724
-1.47571e-05
-0.000452665
-1.40976e-05
-0.00046491
-1.34273e-05
-0.000476486
-1.27804e-05
-0.000487441
-1.21773e-05
-0.000497828
-1.16206e-05
-0.0005077
-1.11078e-05
-0.000517105
-1.06346e-05
-0.000526089
-1.01957e-05
-0.000534693
-9.78555e-06
-0.000542953
-9.39865e-06
-0.000550902
-9.02965e-06
-0.000558569
-8.67339e-06
-0.000565977
-8.32506e-06
-0.000573149
-7.98016e-06
-0.000580101
-7.63457e-06
-0.000586849
-7.28456e-06
-0.000593404
-6.92682e-06
-0.000599776
-6.55848e-06
-0.000605973
-6.17708e-06
-0.000612
-5.78058e-06
-0.000617861
-5.36737e-06
-0.000623557
-4.93627e-06
-0.000629091
-4.48652e-06
-0.000634461
-4.01779e-06
-0.000639666
-3.53016e-06
-0.000644704
-3.02412e-06
-0.000649571
-2.50055e-06
-0.000654264
-1.96065e-06
-0.000658778
-1.40593e-06
-0.000663108
-8.38195e-07
-0.000667253
-2.52836e-07
-0.000671203
3.30116e-07
-0.000674948
9.15447e-07
-0.000678488
1.50778e-06
-0.000681815
2.10074e-06
-0.000684914
2.6926e-06
-0.000687787
3.27191e-06
-0.000690433
3.83458e-06
-0.000692832
4.38504e-06
-0.000694984
4.91116e-06
-0.00069688
5.40954e-06
-0.000698517
5.86867e-06
-0.000699894
6.28496e-06
-0.000701002
6.66317e-06
-0.000701833
7.00069e-06
-0.00070238
7.29528e-06
-0.000702635
7.54445e-06
-0.000702592
7.74578e-06
-0.000702244
7.89717e-06
-0.000701585
7.99686e-06
-0.000700607
8.04354e-06
-0.000699304
8.03625e-06
-0.000697671
7.97431e-06
-0.000695701
7.85717e-06
-0.000693389
7.68612e-06
-0.000690729
7.46049e-06
-0.000687715
7.18152e-06
-0.000684342
6.84819e-06
-0.000680605
6.47047e-06
-0.0006765
6.04535e-06
-0.000672022
5.57586e-06
-0.000667167
5.06672e-06
-0.00066193
4.5229e-06
-0.000656309
3.94945e-06
-0.000650301
3.35176e-06
-0.000643904
2.73553e-06
-0.000637116
2.10677e-06
-0.000629934
1.47188e-06
-0.00062236
8.38696e-07
-0.000614403
2.26589e-07
-0.000606044
-4.02753e-07
-0.00059729
-1.0076e-06
-0.000588146
-1.58061e-06
-0.000578612
-2.12083e-06
-0.000568692
-2.62278e-06
-0.000558388
-3.08061e-06
-0.000547703
-3.48865e-06
-0.000536642
-3.84153e-06
-0.000525209
-4.13423e-06
-0.000513409
-4.36216e-06
-0.000501248
-4.52119e-06
-0.000488733
-4.60768e-06
-0.000475869
-4.61852e-06
-0.000462663
-4.55112e-06
-0.000449124
-4.40353e-06
-0.000435259
-4.17416e-06
-0.000421077
-3.86214e-06
-0.000406586
-3.46716e-06
-0.000391795
-2.98953e-06
-0.000376714
-2.43007e-06
-0.000361352
-1.79034e-06
-0.000345719
-1.07086e-06
-0.00032984
-2.56173e-07
-0.000313699
5.92019e-07
-0.000297318
1.52087e-06
-0.00028071
2.52015e-06
-0.000263885
3.58083e-06
-0.000246853
4.6976e-06
-0.000229627
5.86534e-06
-0.000212217
7.07879e-06
-0.000194633
8.33177e-06
-0.000176888
9.61884e-06
-0.000158991
1.09341e-05
-0.000140954
1.22714e-05
-0.000122788
1.36242e-05
-0.000104502
1.49867e-05
-8.6108e-05
1.63528e-05
-6.76157e-05
1.77157e-05
-4.90351e-05
1.90699e-05
-3.03761e-05
2.04091e-05
-1.16481e-05
2.17278e-05
7.13931e-06
2.302e-05
2.59772e-05
2.42806e-05
4.48568e-05
2.55042e-05
6.37696e-05
2.66861e-05
8.27076e-05
2.78215e-05
0.000101663
2.89062e-05
0.000120628
2.99361e-05
0.000139595
3.09077e-05
0.000158558
3.18175e-05
0.00017751
3.26627e-05
0.000196444
3.34406e-05
0.000215355
3.41489e-05
0.000234237
3.47858e-05
0.000253085
3.53498e-05
0.000271894
3.58397e-05
0.000290659
3.62548e-05
0.000309375
3.65945e-05
0.000328039
3.68587e-05
0.000346646
3.70476e-05
0.000365194
3.71617e-05
0.000383679
3.72016e-05
0.000402097
3.71691e-05
0.000420447
3.70663e-05
0.000438726
3.68936e-05
0.00045693
3.66549e-05
0.000475058
3.63503e-05
0.000493108
3.59823e-05
0.000511079
3.55536e-05
0.000528969
3.50673e-05
0.000546777
3.45263e-05
0.000564502
3.39337e-05
0.000582143
3.32927e-05
0.0005997
3.26067e-05
0.000617171
3.18791e-05
0.000634557
3.11134e-05
0.000651856
3.0313e-05
0.00066907
2.94817e-05
0.000686198
2.8623e-05
0.000703241
2.77406e-05
0.000720198
2.6838e-05
0.000737071
2.59189e-05
0.00075386
2.49869e-05
0.000770566
2.40455e-05
0.00078719
2.30982e-05
0.000803733
2.21484e-05
0.000820197
2.11996e-05
0.000836583
2.0255e-05
0.000852892
1.93177e-05
0.000869127
1.83911e-05
0.00088529
1.7478e-05
0.000901384
1.65814e-05
0.00091741
1.57042e-05
0.000933372
1.48492e-05
0.000949273
1.4019e-05
0.000965117
1.32163e-05
0.000980909
1.24437e-05
0.000996652
1.17038e-05
0.00101235
1.09989e-05
0.00102802
1.03318e-05
0.00104365
9.70486e-06
0.00105927
9.1215e-06
0.00107487
8.58299e-06
0.00109048
8.09693e-06
0.00110611
7.65791e-06
0.00112177
7.28662e-06
0.00113751
6.98284e-06
6.64547e-06
-0.000431759
-0.000445529
-0.000458596
-0.000470952
-0.000482629
-0.000493676
-0.000504149
-0.000514102
-0.000523583
-0.000532641
-0.000541315
-0.000549644
-0.00055766
-0.000565392
-0.000572866
-0.000580101
-0.000587117
-0.000593928
-0.000600546
-0.000606982
-0.000613243
-0.000619334
-0.000625259
-0.00063102
-0.000636619
-0.000642055
-0.000647326
-0.000652431
-0.000657366
-0.000662127
-0.000666711
-0.000671112
-0.000675319
-0.000679335
-0.000683153
-0.000686764
-0.000690161
-0.000693335
-0.000696283
-0.000698998
-0.000701473
-0.0007037
-0.000705671
-0.000707385
-0.000708836
-0.000710017
-0.000710921
-0.000711541
-0.00071187
-0.0007119
-0.000711625
-0.000711038
-0.000710132
-0.000708902
-0.000707341
-0.000705442
-0.000703203
-0.000700614
-0.000697672
-0.000694367
-0.000690701
-0.000686667
-0.00068226
-0.000677474
-0.000672308
-0.000666757
-0.000660819
-0.000654491
-0.000647773
-0.000640664
-0.000633161
-0.000625255
-0.000616964
-0.000608284
-0.000599212
-0.00058975
-0.000579901
-0.000569669
-0.000559057
-0.000548069
-0.000536709
-0.000524983
-0.000512897
-0.000500456
-0.000487666
-0.000474536
-0.000461072
-0.000447282
-0.000433175
-0.000418759
-0.000404043
-0.000389036
-0.000373749
-0.000358192
-0.00034236
-0.000326288
-0.000309976
-0.000293434
-0.000276671
-0.000259699
-0.000242529
-0.000225171
-0.000207636
-0.000189935
-0.000172079
-0.000154079
-0.000135944
-0.000117685
-9.93126e-05
-8.08367e-05
-6.2267e-05
-4.36132e-05
-2.48848e-05
-6.09088e-06
1.27595e-05
3.16577e-05
5.05953e-05
6.95642e-05
8.85565e-05
0.000107565
0.000126581
0.0001456
0.000164613
0.000183615
0.000202599
0.00022156
0.000240493
0.000259391
0.00027825
0.000297066
0.000315834
0.00033455
0.00035321
0.000371812
0.000390351
0.000408824
0.000427229
0.000445562
0.000463821
0.000482005
0.000500111
0.000518137
0.000536083
0.000553947
0.000571727
0.000589422
0.000607032
0.000624557
0.000641994
0.000659345
0.000676609
0.000693786
0.000710877
0.00072788
0.000744798
0.00076163
0.000778378
0.000795042
0.000811624
0.000828125
0.000844547
0.000860891
0.00087716
0.000893355
0.00090948
0.000925537
0.00094153
0.000957462
0.000973338
0.000989162
0.00100494
0.00102068
0.00103638
0.00105206
0.00106773
0.0010834
0.00109908
0.0011148
0.00113059
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
140
(
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.00282843
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
-0.0103787
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
140
(
0.0102183
0.0106118
0.0108927
0.0110808
0.0111979
0.0112646
0.011298
0.0113106
0.0113109
0.0113044
0.0112943
0.0112821
0.011269
0.0112554
0.0112415
0.0112276
0.0112136
0.0111998
0.0111861
0.0111726
0.0111595
0.0111467
0.0111343
0.0111224
0.011111
0.0111001
0.0110898
0.0110801
0.011071
0.0110627
0.011055
0.011048
0.0110418
0.0110363
0.0110315
0.0110276
0.0110244
0.011022
0.0110204
0.0110196
0.00114746
0.00115652
0.00117339
0.00119782
0.00122944
0.0012678
0.00131234
0.00136247
0.00141752
0.00147679
0.0015396
0.00160524
0.00167302
0.00174228
0.0018124
0.0018828
0.00195296
0.0020224
0.00209069
0.00215747
0.00222242
0.00228527
0.0023458
0.00240383
0.00245924
0.00251192
0.0025618
0.00260886
0.00265309
0.0026945
0.00268804
0.00264588
0.00260085
0.00255295
0.00250219
0.00244861
0.00239229
0.00233334
0.0022719
0.00220818
0.00214241
0.00207487
0.0020059
0.00193591
0.00186532
0.00179464
0.00172442
0.00165525
0.00158776
0.00152264
0.00146056
0.00140224
0.00134837
0.00129963
0.00125667
0.00122008
0.00119037
0.00116798
0.00115324
0.00114636
0.0102007
0.0106013
0.0108874
0.0110788
0.0111979
0.0112657
0.0112994
0.011312
0.0113122
0.0113055
0.0112951
0.0112827
0.0112694
0.0112556
0.0112416
0.0112275
0.0112134
0.0111995
0.0111858
0.0111723
0.0111591
0.0111463
0.0111338
0.0111219
0.0111105
0.0110996
0.0110893
0.0110796
0.0110705
0.0110622
0.0110545
0.0110475
0.0110413
0.0110358
0.0110311
0.0110271
0.0110239
0.0110215
0.01102
0.0110192
)
;
}
cylinder
{
type calculated;
value uniform 0;
}
top
{
type symmetryPlane;
value uniform 0;
}
bottom
{
type symmetryPlane;
value uniform 0;
}
defaultFaces
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| [
"chaseguy15"
] | chaseguy15 | |
449a114346b70b281ebfbce21444c7c6f4a19bf3 | 2f1fd1d5e06fb9b58f84d5b2606daa51925c1d5a | /Assignment 3/Q5 ASSIGNMENT 5.cpp | af7ba9647541aa137d18224c13d31dd1552181fe | [] | no_license | ishita555/CST_JIET_Assignments | dc06454aae3a5c1e3a313578415938864c61923c | 97f50f52723c03d73cc8bf2cfe3c7c57c22f322e | refs/heads/master | 2022-06-18T05:11:20.626823 | 2020-05-14T08:07:06 | 2020-05-14T08:07:06 | 263,578,401 | 0 | 0 | null | 2020-05-13T09:02:15 | 2020-05-13T09:02:14 | null | UTF-8 | C++ | false | false | 789 | cpp | //sorting using function
#include <stdio.h>
int sort(int *a,int n)
{
int i,j,temp;
for(i=0; i<n-1; i++)
{
for(j=0; j<n-i-1; j++)
{
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}
}
print(int *a,int n);
{
int i;
for(i=0; i<n; i++)
{
printf("%d ",a[i]);
}
}
int main()
{
int a[10000],i,n,key;
printf("Enter size of the array : ");
scanf("%d", &n);
printf("Enter elements in array : ");
for(i=0; i<n; i++)
{
scanf("%d",&a[i]);
}
sort(a,n);
print(a,n);
}
| [
"noreply@github.com"
] | ishita555.noreply@github.com |
554f9131a34252cded7cbd240310d4f40853da51 | 775acebaa6559bb12365c930330a62365afb0d98 | /source/public/includes/XMLContentIterator.h | b17e27837f615d4920f97abe88ebbf1d51cc6fbc | [] | no_license | Al-ain-Developers/indesing_plugin | 3d22c32d3d547fa3a4b1fc469498de57643e9ee3 | 36a09796b390e28afea25456b5d61597b20de850 | refs/heads/main | 2023-08-14T13:34:47.867890 | 2021-10-05T07:57:35 | 2021-10-05T07:57:35 | 339,970,603 | 1 | 1 | null | 2021-10-05T07:57:36 | 2021-02-18T07:33:40 | C++ | UTF-8 | C++ | false | false | 5,682 | h | //========================================================================================
//
// $File: //depot/devtech/16.0.x/plugin/source/public/includes/XMLContentIterator.h $
//
// Owner: Lonnie Millett
//
// $Author: pmbuilder $
//
// $DateTime: 2020/11/06 13:08:29 $
//
// $Revision: #2 $
//
// $Change: 1088580 $
//
// Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
// with the terms of the Adobe license agreement accompanying it. If you have received
// this file from a source other than Adobe, then your use, modification, or
// distribution of it requires the prior written permission of Adobe.
//
//========================================================================================
#pragma once
#ifndef __XMLContentIterator__
#define __XMLContentIterator__
#include "IIDXMLElement.h"
#include "TextRange.h"
/** XMLContentIterator iterates over the content of an element and returns ranges of content
in the same order as the DOM would return content. Text ranges are specified using the TextRange
class. These can in turn be used to create TextIterators for iterating over the individual characters
of the content.
The constructors for this class are intended to be created with the factory methods begin and end of XMLElement.
*/
class PUBLIC_DECL XMLContentIterator
{
public:
typedef InDesign::TextRange value_type;
typedef std::ptrdiff_t difference_type;
typedef const value_type* pointer;
typedef const value_type& reference;
friend class const_iterator;
typedef std::bidirectional_iterator_tag iterator_category;
/** Default constructor
@return
*/
XMLContentIterator();
/** Copy constructor
*/
XMLContentIterator(const XMLContentIterator&);
/** Constructor
@param element
@param position
*/
XMLContentIterator(const IIDXMLElement* element, int32 position);
/** Destructor
*/
~XMLContentIterator();
/** Pointer dereference operator
@return current TextRange
*/
const InDesign::TextRange& operator * () const { ASSERT(fCurrent.IsValid()); return fCurrent;}
/** Member selection operator or 'smart pointer'
@return ptr to current TextRange
*/
const InDesign::TextRange* operator -> () const { ASSERT(fCurrent.IsValid()); return &fCurrent;}
/** Assignment
@param rhs object to copy state from
@return result of assignment
*/
XMLContentIterator& operator = (const XMLContentIterator& rhs);
/** Increment operator
@return adjusted iterator
*/
XMLContentIterator& operator ++ ();
/** Increment by specified amount
@return XMLContentIterator operator
*/
XMLContentIterator operator ++ (int) {XMLContentIterator tmp(*this); ++(*this); return tmp;}
/** Operator decrement
@return adjusted iterator
*/
XMLContentIterator& operator -- ();
/** Operator decrement by specified amount
@return adjusted iterator
*/
XMLContentIterator operator -- (int) {XMLContentIterator tmp(*this); --(*this); return tmp;}
/** Addition-assignment operator
@param n specifies number of positions to move iterator Position
@return iterator adjusted appropriately
*/
XMLContentIterator& operator += (int32 n);
/** Addition operator
@param n
@return iterator adjusted appropriately
*/
XMLContentIterator operator + (int32 n) const {return XMLContentIterator(*this) += n;}
/** Subtraction-assignment operator
@param n
@return iterator adjusted appropriately
*/
XMLContentIterator& operator -= (int32 n);
/** Substraction operator
@param n
@return iterator adjusted appropriately
*/
XMLContentIterator operator - (int32 n) const {return XMLContentIterator(*this) -= n;}
/** Accessor for location iterator starts from
@return current location of iterator
*/
int32 Position() const {return fPosition;}
/** Dereference operator for given Position
@param i specifies Position of intereset
@return TextRange marked up by given child element
*/
//const InDesign::TextRange operator [] (int32 i) const {XMLContentIterator tmp(*this); tmp += i; return *tmp;}
/** Accessor for valid state of this
@return whether this is valid
*/
bool16 IsValid() const { return fCurrent.IsValid(); }
friend XMLContentIterator operator + (int32 n, const XMLContentIterator& rhs) {return XMLContentIterator(rhs) += n;}
friend bool operator ==(const XMLContentIterator& x, const XMLContentIterator& y) {return x.fCurrent.Start() == y.fCurrent.Start() && x.fCurrent.End() == y.fCurrent.End();}
friend bool operator !=(const XMLContentIterator& x, const XMLContentIterator& y) {return x.fCurrent.Start() != y.fCurrent.Start() || x.fCurrent.End() != y.fCurrent.End();}
friend bool operator < (const XMLContentIterator& x, const XMLContentIterator& y) {return x.fPosition < y.fPosition;}
friend bool operator <=(const XMLContentIterator& x, const XMLContentIterator& y) {return x.fPosition <= y.fPosition;}
friend bool operator > (const XMLContentIterator& x, const XMLContentIterator& y) {return x.fPosition > y.fPosition;}
friend bool operator >=(const XMLContentIterator& x, const XMLContentIterator& y) {return x.fPosition >= y.fPosition;}
private:
void CalcCurrentTextRange();
bool16 GetElementMarkerPositions(ITextModel *textModel, IIDXMLElement *element, TextIndex *startIndex, TextIndex *endIndex);
InterfacePtr<const IIDXMLElement> fElement;
TextIndex fStartIndex;
TextIndex fEndIndex;
InDesign::TextRange fCurrent;
int32 fPosition;
};
#endif
| [
"75730278+Tarekhesham10@users.noreply.github.com"
] | 75730278+Tarekhesham10@users.noreply.github.com |
c7decbaa9d0fb838a72537332d289e17da411055 | 6a408c6754e8cad8376ff030570129963a0f7b2c | /lesson19/l19-7/l19-7/main.cpp | 499e5e464bf41d99fd76588d757afe8ca89ea71b | [] | no_license | dimmkan/MSHP | e4ed8cb6528747f10900c6fe5bcf650238d3f9f6 | 956629ee2b83df28caacc2554bf7a00e1aad848c | refs/heads/master | 2020-09-07T00:56:01.756864 | 2020-05-30T08:54:08 | 2020-05-30T08:54:08 | 220,607,366 | 1 | 0 | null | 2020-01-31T15:52:26 | 2019-11-09T07:29:26 | C++ | UTF-8 | C++ | false | false | 430 | cpp | #include <iostream>
using namespace std;
int main()
{
int n, min, max;
cin >> n;
int arr[n] = {};
for(int i = 0; i < n; i++){
cin >> arr[i];
}
min = max = arr[0];
for(int i = 1; i < n; i++){
if(arr[i] > max){
max = arr[i];
}
if(arr[i] < min){
min = arr[i];
}
}
cout << max << " " << min;
return 0;
}
| [
"dimmkan@mail.ru"
] | dimmkan@mail.ru |
f27a3cc496acbea92a9c1f03fb0b7055287647e8 | 10ae6a2fb20ac0897a025b2b390849fc8c972aa3 | /slitscan/src/RemoteEvent.h | c9e11683b6723fbdb1c640b33c4a8ecf8d98ce26 | [
"MIT"
] | permissive | silky/MicroMacro | 7837987177cf8a39f549df5c1d3d165be95e1742 | 91d868a3bc1df59dd0fae3f1512ea25f0b758958 | refs/heads/master | 2020-05-29T11:52:29.692210 | 2015-04-16T11:06:19 | 2015-04-16T11:06:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 675 | h | //
// RemoteEvent.h
// slitscan
//
// Created by Chris Mullany on 16/03/2015.
//
//
#pragma once
#include "ofMain.h"
class RemoteEvent : public ofEventArgs {
public:
enum Type {SWITCH_MODE};
Type type;
string groupIdsString;
RemoteEvent(Type type, string groupIdsString) {
this->type = type;
this->groupIdsString = groupIdsString;
}
// for app wide events, use the static events property below e.g.
//
// ofAddListener(RemoteEvent::events, this, &Class::onRemoteEvent);
//
// otherwise, create a new event and args scoped to your class
static ofEvent <RemoteEvent> events;
}; | [
"me@chrismullany.com"
] | me@chrismullany.com |
34eb8b05b61c67cd2953a0e0792884c7e8ee6ea1 | d5784a924fa8777c24d58923a3857c4889a8b3ec | /Algorith_cpp/Sort/BubbleSort.hpp | 60c2379efd790659dc33a9ced53778fefa5143bc | [] | no_license | RootRefresh/algorithm | 0ccf87250131e4f63e338890ebabe0dd233ce4d0 | c3d87847b9b0d3ded11268bc5ca3ab52e81d7b0c | refs/heads/master | 2021-01-01T17:35:15.596743 | 2018-08-09T16:22:38 | 2018-08-09T16:22:38 | 98,106,313 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 277 | hpp | //
// BubbleSort.hpp
// Algorith_cpp
//
// Created by 丰华财经 on 2018/8/9.
// Copyright © 2018年 com.lottery.www. All rights reserved.
//
#ifndef BubbleSort_hpp
#define BubbleSort_hpp
#include <stdio.h>
void bubbleSort(int *a, int n);
#endif /* BubbleSort_hpp */
| [
"1779752566@qq.com"
] | 1779752566@qq.com |
28a6c483cc2dc3196f60317fc033c0d1c73c97e1 | 8e6bf6f14721fa4ae2ca64d011bb49c01cf2a5a0 | /prvlabel.cpp | d00cb80d5aafda3ed47860ad389b211f67ef81b8 | [] | no_license | Forlorin/PigFarm | cb27d9e492ec7a9b81f45be7b4a00ceb97ea5025 | 088250e3c5e7d7bdfe0f13a3e70f5247fe04f815 | refs/heads/master | 2023-01-04T08:07:08.070448 | 2020-10-19T14:18:28 | 2020-10-19T14:18:28 | 292,446,332 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,342 | cpp | #include "prvlabel.h"
#include <QString>
#include <qdebug.h>
PrvLabel::PrvLabel()
{
bindFarm=nullptr;
mode=detail;
this->setStyleSheet("background-color:rgb(42, 57, 80);");
this->setAlignment(Qt::AlignTop);
this->move(1040,20);
this->setFixedSize(500,780);
QFont ft;
ft.setPointSize(12);
ft.setBold(false);
ft.setFamily("Microsoft YaHei");
this->setFont(ft);
QPalette pa;
pa.setColor(QPalette::WindowText,QColor(233,233,235));
this->setPalette(pa);
}
void PrvLabel::changeMode(Mode m)
{
mode=m;
if(m==detail)
{
this->move(1040,20);
this->setFixedSize(500,780);
}
else
{
this->move(1040,440);
this->setFixedSize(500,360);
}
disPlayText();
}
void PrvLabel::disPlayText()
{
QString display="Pigpen No.";
display+=QString::number(order,10);
if (mode==overview)
{
if(bindFarm->isInfected()&&bindFarm->getNum()==0)
{
QFont ft;
ft.setPointSize(20);
ft.setBold(true);
ft.setFamily("Microsoft YaHei");
this->setFont(ft);
QPalette pa;
pa.setColor(QPalette::WindowText,QColor(240,74,77));
this->setPalette(pa);
display+="\n\nNO .\n PIG .\n LIVES .";
}
else
{
QFont ft;
ft.setPointSize(12);
ft.setBold(false);
ft.setFamily("Microsoft YaHei");
this->setFont(ft);
QPalette pa;
pa.setColor(QPalette::WindowText,QColor(233,233,235));
this->setPalette(pa);
if(bindFarm->getNum())
{
display+=", "+QString::number(bindFarm->getNum(),10)+" pigs inside.";
display+="\n\n";
display+="There are:\n";
if(bindFarm->isbLack())
{
display+="Black pig: "+QString::number(bindFarm->getNum(),10)+"\n";
}
else
{
int bigN=0, smallN=0;
for (Pig* p= bindFarm->head; p!=nullptr; p=p->next)
{
switch (p->getType())
{
case BigSpot:
bigN++;
break;
default:
smallN++;
break;
}
}
display+="Big Spot pig: "+QString::number(bigN,10)+"\n";
display+="Small Spot pig: "+QString::number(smallN,10)+"\n";
}
}
else
{
display+="\n\nThis pigpen have no pig. ";
}
}
}
else if(mode==detail)
{
if(bindFarm->isInfected())
{
QFont ft;
ft.setPointSize(12);
ft.setBold(false);
ft.setFamily("Microsoft YaHei");
this->setFont(ft);
QPalette pa;
pa.setColor(QPalette::WindowText,QColor(240,74,77));
this->setPalette(pa);
}
else
{
QFont ft;
ft.setPointSize(12);
ft.setBold(false);
ft.setFamily("Microsoft YaHei");
this->setFont(ft);
QPalette pa;
pa.setColor(QPalette::WindowText,QColor(233,233,235));
this->setPalette(pa);
}
display+=", "+QString::number(bindFarm->getNum(),10)+" pigs inside.";
display+="\n\n";
Pig* prst = bindFarm->head;
int i = 0;
while(prst!=nullptr)
{
display+="No."+QString::number(i,10)+",";
switch(prst->getType())
{
case Black:display+="black pig:\n";break;
case BigSpot:display+="big spot pig:\n";break;
case SmallSpot:display+="small spot pig:\n";
}
display+=QString::number(prst->getDay(),10)+" day, ";
display+=QString("%1 Kg\n").arg(prst->getWeight());
i++;
prst=prst->next;
}
}
setText(display);
}
allPrv::allPrv()
{
myFarm=nullptr;
mode=detail;
this->move(1040,20);
this->setFixedSize(500,400);
this->setStyleSheet("background-color:rgb(42, 57, 80);");
this->setAlignment(Qt::AlignTop);
QFont ft;
ft.setPointSize(11);
ft.setBold(false);
ft.setFamily("Microsoft YaHei");
this->setFont(ft);
QPalette pa;
pa.setColor(QPalette::WindowText,QColor(233,233,235));
this->setPalette(pa);
}
void allPrv::changeMode(Mode m)
{
mode = m;
if (m==overview)
{
this->show();
this->move(1040,20);
this->setFixedSize(500,400);
}
else if (m==detail)
{
this->hide();
}
}
void allPrv::displayText()
{
QString display="Your farm now have ";
if(mode==overview)
{
display +=QString::number(myFarm->getMoney(),10)+"¥, \nand ";
display +=QString::number(myFarm->getBlackSum()+myFarm->getOtherSum(),10)+" pigs.\n\n";
display +="There are \n";
display +=QString::number(myFarm->getBlackSum(),10)+" black pigs,\n";
display +=QString::number(myFarm->getBigspotSum(),10)+" big spot pigs,\n";
display +=QString::number(myFarm->getOtherSum()-myFarm->getBigspotSum(),10)+" small spot pigs \nin your farm.\n\n";
display +="Now, it is the day "+QString::number(myFarm->getDay(),10);
}
else if (mode == detail)
{
display +=QString::number(myFarm->getMoney(),10)+"¥, and ";
display +=QString::number(myFarm->getBlackSum()+myFarm->getOtherSum(),10)+" pigs.\n";
display +="There are ";
display +=QString::number(myFarm->getBlackSum(),10)+" black pigs,\n";
display +=QString::number(myFarm->getBigspotSum(),10)+" big spot pigs,\n";
display +=QString::number(myFarm->getOtherSum()-myFarm->getBigspotSum(),10)+" small spot pigs in your farm.\n";
}
setText(display);
}
| [
"noreply@github.com"
] | Forlorin.noreply@github.com |
b9509c31259cd558196403cdbd414acb7a4a81a9 | 16790af9c66ecca10eb32c8ee9396bfb43bcf5a1 | /src/shared/engine/loader/DLLoader.hpp | 5a0910ab04db19a75bde69dffe4fdc697f63370f | [] | no_license | TomCOUSIN/R-Type | 03ec48af00ca9876df7d910af1c37760b440dffc | 17028d3121bbfbcf1078f020483759c7764f8560 | refs/heads/master | 2021-05-17T12:09:49.763507 | 2019-12-03T08:06:12 | 2019-12-03T08:06:12 | 250,768,399 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,996 | hpp | /*
** EPITECH PROJECT, 2022
** CPP_rtype_2019
** File description:
** Created by tomcousin,
*/
#ifndef CPP_RTYPE_2019_DLLOADER_HPP
#define CPP_RTYPE_2019_DLLOADER_HPP
#include <iostream>
#include <dlfcn.h>
#include <memory>
namespace rtype::engine::loader {
/**
* @brief DLLoader to load shared library
*
* @tparam T The type of the class in the shared library
*/
template<typename T>
class DLLoader {
public:
/**
* @brief Construct a DLLoader object
*/
DLLoader() = default;
/**
* @brief Destroy a DLLoader object
*/
~DLLoader() = default;
/**
* @brief Open the shared library
*
* @param path The path to the shared library
* @return true on success
* @return false on failure
*/
bool loadLibrary(const std::string &path) {
_handle = dlopen(path.data(), (RTLD_NOW | RTLD_LAZY));
if (!_handle)
return false;
return true;
}
/**
* @brief Close the handle to stop using the shared library
*
* @return true on success
* @return false on failure
*/
bool closeLibrary() {
return dlclose(_handle) != 0;
}
/**
* @brief Load the class in the shared library
*
* @return a pointer to the class stored in the shared library
*/
std::shared_ptr<T> getInstance() {
using allocClass = std::shared_ptr<T>(*)();
auto allocator = reinterpret_cast<allocClass>(dlsym(_handle,"allocator"));
if (!allocator) {
closeLibrary();
return nullptr;
}
return allocator();
}
private:
/**
* @brief The handle to access shared library data
*/
void *_handle;
};
}
#endif //CPP_RTYPE_2019_DLLOADER_HPP
| [
"tom.cousin@epitech.eu"
] | tom.cousin@epitech.eu |
520626cf12cd089d8e0e5413777ae028c9deb5c2 | 4f8e66ebd1bc845ba011907c9fc7c6400dd7a6be | /SDL_Core/src/components/JSONHandler/src/RPC2ObjectsImpl/NsRPC2Communication/UI/UpdateTurnListResponse.cpp | c54fe06de6b23a8cee53f607d43c5b80bd7ec2ac | [] | no_license | zhanzhengxiang/smartdevicelink | 0145c304f28fdcebb67d36138a3a34249723ae28 | fbf304e5c3b0b269cf37d3ab22ee14166e7a110b | refs/heads/master | 2020-05-18T11:54:10.005784 | 2014-05-18T09:46:33 | 2014-05-18T09:46:33 | 20,008,961 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,572 | cpp | //
// Copyright (c) 2013, Ford Motor Company
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following
// disclaimer in the documentation and/or other materials provided with the
// distribution.
//
// Neither the name of the Ford Motor Company nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
#include "../src/../include/JSONHandler/RPC2Objects/NsRPC2Communication/UI/UpdateTurnListResponse.h"
#include "../src/../include/JSONHandler/RPC2Objects/Marshaller.h"
/*
interface NsRPC2Communication::UI
version 1.2
generated at Thu Jan 24 06:41:15 2013
source stamp Wed Jan 23 13:56:28 2013
author RC
*/
using namespace NsRPC2Communication::UI;
UpdateTurnListResponse& UpdateTurnListResponse::operator =(const UpdateTurnListResponse& c)
{
return *this;
}
UpdateTurnListResponse::~UpdateTurnListResponse(void)
{
}
UpdateTurnListResponse::UpdateTurnListResponse(void) :
RPC2Response(Marshaller::METHOD_NSRPC2COMMUNICATION_UI__UPDATETURNLISTRESPONSE)
{
}
UpdateTurnListResponse::UpdateTurnListResponse(const UpdateTurnListResponse& c) : RPC2Response(Marshaller::METHOD_NSRPC2COMMUNICATION_UI__UPDATETURNLISTRESPONSE,c.getId(),c.getResult())
{
*this=c;
}
bool UpdateTurnListResponse::checkIntegrity(void)
{
return UpdateTurnListResponseMarshaller::checkIntegrity(*this);
}
| [
"kburdet1@ford.com"
] | kburdet1@ford.com |
e692010556edb75483b163e6932e5d547da75d04 | 961d86ab773227f82ab8c3ee3b0022ecaabc2da9 | /example/websocket-client-ssl/websocket_client_ssl.cpp | 5338c23a4fc115c1effcef0b2777095d1070edb4 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | agnat/beast | d4951ef029f107437a53a867d0c5168d3df477f7 | 20a8f7d75b45f0ababc2547f50833b7f4ba636d3 | refs/heads/develop | 2021-01-02T23:11:50.833731 | 2017-08-05T01:40:54 | 2017-08-05T02:02:21 | 99,490,399 | 0 | 0 | null | 2017-08-06T14:04:31 | 2017-08-06T14:04:31 | null | UTF-8 | C++ | false | false | 2,987 | cpp | //
// Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// 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)
//
// Official repository: https://github.com/boostorg/beast
//
#include "../common/root_certificates.hpp"
#include <boost/beast/core.hpp>
#include <boost/beast/websocket.hpp>
#include <boost/beast/websocket/ssl.hpp>
#include <boost/asio.hpp>
#include <boost/asio/ssl.hpp>
#include <cstdlib>
#include <iostream>
#include <string>
using tcp = boost::asio::ip::tcp; // from <boost/asio.hpp>
namespace ssl = boost::asio::ssl; // from <boost/asio/ssl.hpp>
namespace websocket = boost::beast::websocket; // from <boost/beast/websocket.hpp>
int main()
{
// A helper for reporting errors
auto const fail =
[](std::string what, boost::beast::error_code ec)
{
std::cerr << what << ": " << ec.message() << std::endl;
std::cerr.flush();
return EXIT_FAILURE;
};
boost::system::error_code ec;
// Set up an asio socket to connect to a remote host
boost::asio::io_service ios;
tcp::resolver r{ios};
tcp::socket sock{ios};
// Look up the domain name
std::string const host = "echo.websocket.org";
auto const lookup = r.resolve({host, "https"}, ec);
if(ec)
return fail("resolve", ec);
// Make the connection on the IP address we get from a lookup
boost::asio::connect(sock, lookup, ec);
if(ec)
return fail("connect", ec);
// Create the required ssl context
ssl::context ctx{ssl::context::sslv23_client};
// This holds the root certificate used for verification
load_root_certificates(ctx, ec);
if(ec)
return fail("certificate", ec);
// Wrap the now-connected socket in an SSL stream
using stream_type = ssl::stream<tcp::socket&>;
stream_type stream{sock, ctx};
stream.set_verify_mode(ssl::verify_none);
// Perform SSL handshaking
stream.handshake(ssl::stream_base::client, ec);
if(ec)
return fail("ssl handshake", ec);
// Now wrap the handshaked SSL stream in a websocket stream
websocket::stream<stream_type&> ws{stream};
// Perform the websocket handshake
ws.handshake(host, "/", ec);
if(ec)
return fail("handshake", ec);
// Send a message
ws.write(boost::asio::buffer("Hello, world!"), ec);
if(ec)
return fail("write", ec);
// This buffer will hold the incoming message
boost::beast::multi_buffer b;
// Read the message into our buffer
ws.read(b, ec);
if(ec)
return fail("read", ec);
// Close the WebSocket connection
ws.close(websocket::close_code::normal, ec);
if(ec)
return fail("close", ec);
// The buffers() function helps print a ConstBufferSequence
std::cout << boost::beast::buffers(b.data()) << std::endl;
return EXIT_SUCCESS;
}
| [
"vinnie.falco@gmail.com"
] | vinnie.falco@gmail.com |
b5f0600c68f4bb94b8414cb1bb9271af1a4f2425 | aab2c122967a4b75d9d9fe07ade381c173f2b360 | /src/mpi/contention-mt/main.cpp | 62740559cf425c133a13975de8650dae8c446151 | [] | no_license | ashwinma/mpiacc-contention-tests | 764071aa5eb3042edfb332a1f3b335e5fac8b291 | 6246ad9b177095220aa9cea5c85def7effd78222 | refs/heads/master | 2016-08-12T03:17:40.589829 | 2016-02-24T19:04:36 | 2016-02-24T19:04:36 | 52,473,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,184 | cpp | #include <string.h>
#include <iomanip>
#include <pthread.h>
//#include <cuda_profiler_api.h>
// When using MPICH and MPICH-derived MPI implementations, there is a
// naming conflict between stdio.h and MPI's C++ binding.
// Since we do not use the C++ MPI binding, we can avoid the ordering
// issue by ignoring the C++ MPI binding headers.
// This #define should be quietly ignored when using other MPI implementations.
#define MPICH_SKIP_MPICXX
#include "mpi.h"
#include "misc_mpi_defs.h"
#include "gpu_ops.h"
#include <stdio.h>
#include <stdlib.h>
#include "NodeInfo.h"
#include "RandomPairs.h"
#include "ResultDatabase.h"
#include "OptionParser.h"
#include <ParallelResultDatabase.h>
#include <ParallelHelpers.h>
using namespace std;
#define CUDA_CHECK_ERR(msg) \
{ \
cudaError_t cu_err = cudaGetLastError(); \
if(cu_err != cudaSuccess) { \
fprintf(stderr, "CUDA error: %s %s.\n", msg, cudaGetErrorString( cu_err) ); \
return MPI_ERR_OTHER; \
} \
}
int mympirank;
void GPUDriversim();
void GPUDriverwrmup();
void GPUDriverseq();
ResultDatabase &GPUGetseqrdb();
ResultDatabase &GPUGetsimrdb();
int GPUSetup(OptionParser &op, int mympirank, int mynoderank);
int GPUCleanup();
int numgputimes=1;
volatile unsigned long long mpidone=1;
volatile unsigned long long cudado=1;
volatile unsigned long long mpido=1;
volatile unsigned long long cudadone = 1;
pthread_barrier_t mpitest_barrier;
void *g_gpuhostbuf1 = NULL;
void *g_gpuhostbuf2 = NULL;
#if 1
const int CMD_QUEUE_COUNT = 0;
#else
const int CMD_QUEUE_COUNT = 16;
#endif
cudaStream_t g_gpustreams[CMD_QUEUE_COUNT];
//cudaStream_t g_cuda_default_stream;
void MPITest(OptionParser &op, ResultDatabase &resultDB, int numtasks, int myrank,
int mypair, MPI_Comm newcomm);
void *GPUDriversimwrapper(void *dummy)
{
#if 0
/* Below code should be done at the RunBenchmark
* level so that it applies to both seq and
* simultaneous modes
*/
pthread_t thread = pthread_self();
cpu_set_t cpuset;
/* Set affinity mask to include CPUs 0 to 7 */
CPU_ZERO(&cpuset);
//for (j = 0; j < 8; j++)
CPU_SET(8, &cpuset);
int s = pthread_setaffinity_np(thread, sizeof(cpu_set_t), &cpuset);
if (s != 0)
cout << "Error code " << s << " inpthread_setaffinity_np" << endl;
#endif
int i;
if (mympirank == 0 ) cout<<endl;
//do {
GPUDriversim();
//if (mympirank == 0) {cout<<".";flush(cout);}
//}while(mpidone!=1);
//if (mympirank == 0 ) cout<<endl;
return (0);
}
pthread_t mychild;
void exitwrapper(const char* err_str, int err_val)
{
printf("\n%s:%d",err_str,err_val);fflush(stdout);
exit(1);
}
void spawnongpu ()
{
pthread_attr_t attr;
int rc;
if((rc=pthread_attr_init(&attr)))
exitwrapper("pthread attr_init failed",rc);
//GPUDriversimwrapper(NULL);
rc = pthread_create(&mychild, &attr, GPUDriversimwrapper, (void *)NULL);
if(rc) exitwrapper("pthread_create failed",rc);
pthread_attr_destroy(&attr);
}
// Modifications:
// Jeremy Meredith, Fri Dec 3 16:30:31 EST 2010
// Use the "passes" argument instead of hardcoding to 4 passes, and
// increase the default to 10. Changed the way collection of
// the summary results worked to extract only the desired results.
// Added reporting of GPU download latency.
//
int main(int argc, char *argv[])
{
int numdev=0, totalnumdev=0, numtasks, dest, source, rc,
mypair=0, count, tag=2, mynoderank,myclusterrank,nodenprocs;
int *grp1,i;
int mygrprank,grpnumtasks;
MPI_Group orig_group,new_group;
MPI_Comm new_comm,nlrcomm;
ResultDatabase rdbwupmpi, rdbseqmpi, rdbsimmpi;
OptionParser op;
ParallelResultDatabase prdbseqgpu, prdbsimgpu, prdbsimmpi, prdbseqmpi;
bool amGPUTask = false;
MPI_Init(&argc,&argv);
MPI_Comm_size(MPI_COMM_WORLD, &numtasks);
MPI_Comm_rank(MPI_COMM_WORLD, &mympirank);
MPI_Comm_group(MPI_COMM_WORLD, &orig_group);
const int MESSAGE_ALIGNMENT = 64;
const size_t MAX_MSG_SIZE = (1<<22);
const size_t MYBUFSIZE = (MAX_MSG_SIZE * 16 + MESSAGE_ALIGNMENT);
#if 1
int PARTITION_SIZE;
char *partition_sz = getenv("MPIACC_PIPELINE_SIZE");
char *psz_end;
long int psz;
if(partition_sz != NULL)
{
psz = strtol(partition_sz, &psz_end, 10);
if(psz > 0)
PARTITION_SIZE = psz;
/*PARTITION_SIZE = atoi(partition_sz);*/
}
fprintf(stderr, "MPIACC Pipeline Size = %d\n", PARTITION_SIZE);
int mpi_errno = gpuInitCUDA(PARTITION_SIZE, 2);
#endif
cudaMallocHost(&g_gpuhostbuf1, MYBUFSIZE);
cudaMallocHost(&g_gpuhostbuf2, MYBUFSIZE);
CUDA_CHECK_ERR("Host Buf Creation");
for(int stream_idx = 0; stream_idx < CMD_QUEUE_COUNT; stream_idx++)
{
cudaStreamCreate(&g_gpustreams[stream_idx]);
printf("Created Stream: %p\n", g_gpustreams[stream_idx]);
CUDA_CHECK_ERR("Stream Creation");
}
//cudaStreamCreate(&g_cuda_default_stream);
//printf("Created Default CUDA Stream: %p\n", g_cuda_default_stream);
//CUDA_CHECK_ERR("Stream Creation");
//Add shared options to the parser
op.addOption("device", OPT_VECINT, "0", "specify device(s) to run on", 'd');
op.addOption("verbose", OPT_BOOL, "", "enable verbose output", 'v');
op.addOption("quiet", OPT_BOOL, "", "write minimum necessary to standard output", 'q');
op.addOption("passes", OPT_INT, "10", "specify number of passes", 'z');
op.addOption("size", OPT_VECINT, "1", "specify problem size", 's');
op.addOption("time", OPT_INT, "5", "specify running time in miuntes", 't');
op.addOption("outputFile", OPT_STRING, "output.txt", "specify output file",
'o');
op.addOption("infoDevices", OPT_BOOL, "", "show summary info for available devices",
'i');
op.addOption("fullInfoDevices", OPT_BOOL, "", "show full info for available devices");
op.addOption("MPIminmsg", OPT_INT, "0", "specify minimum MPI message size");
op.addOption("MPImaxmsg", OPT_INT, "16384",
"specify maximum MPI message size");
op.addOption("MPIiter", OPT_INT, "1000",
"specify number of MPI benchmark iterations for each size");
op.addOption("platform", OPT_INT, "0", "specify platform for device selection", 'y');
op.addOption("gpuTests", OPT_STRING, "TEST_GMEM_R", "specify GPU related tests", 'G');
op.addOption("mpiTests", OPT_STRING, "MPISynctests", "specify MPI related tests", 'M');
if (!op.parse(argc, argv))
{
if (mympirank == 0)
op.usage();
MPI_Finalize();
return 0;
}
int npasses = op.getOptionInt("passes");
string gpu_tests = op.getOptionString("gpuTests");
if(!(gpu_tests == "TEST_GMEM_R") &&
!(gpu_tests == "TEST_GMEM_W") &&
!(gpu_tests == "TEST_GMEM_UNIT_R") &&
!(gpu_tests == "TEST_GMEM_UNIT_W") &&
!(gpu_tests == "TEST_LMEM_R") &&
!(gpu_tests == "TEST_H2D_MPIACC_SEND") &&
!(gpu_tests == "TEST_H2D_MPIACC_RECV") &&
!(gpu_tests == "TEST_D2H_MPIACC_SEND") &&
!(gpu_tests == "TEST_D2H_MPIACC_RECV") &&
!(gpu_tests == "TEST_FLOPS") &&
!(gpu_tests == "TEST_LMEM_W"))
{
op.usage();
MPI_Finalize();
return 0;
}
//our simple mapping
NodeInfo NI;
mynoderank = NI.nodeRank(); // rank of my process within the node
myclusterrank = NI.clusterRank(); // cluster (essentially, node) id
nlrcomm = NI.getNLRComm(); // communcator of all the lowest rank processes on a node
MPI_Comm smpcomm = NI.getSMPComm();
int numnodes = NI.numNodes();
if ( numnodes%2!=0 )
{
if(mympirank==0)
cout<<"This test needs an even number of nodes"<<endl;
MPI_Finalize();
exit(0);
}
int nodealr = NI.nodeALR();
// determine how many GPU devices we are to use
int devsPerNode = op.getOptionVecInt( "device" ).size();
nodenprocs = NI.nodeNprocs();
if ( devsPerNode > nodenprocs)
devsPerNode = nodenprocs;
numdev = (mynoderank == 0) ? devsPerNode : 0;
MPI_Allreduce(&numdev, &totalnumdev, 1, MPI_INT, MPI_SUM,
MPI_COMM_WORLD);
numdev = devsPerNode;
// determine whether I am to be a GPU or a comm task
if( mynoderank < numdev )
{
amGPUTask = true;
}
cout << "numdev: " << numdev << endl;
cout << "nodenprocs: " << nodenprocs << endl;
cout << "devsPerNode: " << devsPerNode << endl;
grp1=(int *)calloc(totalnumdev, sizeof(int));
if (grp1==NULL)
{
printf("\n%d:calloc failed in %s",mympirank,__FUNCTION__);
exit(1);
}
if(pthread_barrier_init(&mpitest_barrier, NULL, 2))
{
cout << "Could not init the barrier" << endl;
MPI_Finalize();
exit(1);
}
/*compute the groups*/
int beginoffset=0;
if(mynoderank == 0)
{
if (mympirank ==0)
MPI_Send(&numdev, sizeof(int), MPI_CHAR, 1, 112, nlrcomm);
else
{
MPI_Status reqstat;
MPI_Recv(&beginoffset, sizeof(int), MPI_CHAR, myclusterrank-1,
112, nlrcomm ,&reqstat);
if (myclusterrank < numnodes-1)
{
beginoffset+=numdev;
MPI_Send(&beginoffset,sizeof(int), MPI_CHAR, myclusterrank+1,
112, nlrcomm);
beginoffset-=numdev;
}
}
}
MPI_Bcast(&beginoffset,1,MPI_INT,0,smpcomm);
if ( amGPUTask )
{
// I am to do GPU work
grp1[beginoffset+mynoderank]=mympirank;
grpnumtasks=totalnumdev;
}
MPI_Allreduce(MPI_IN_PLACE, grp1, totalnumdev, MPI_INT, MPI_SUM,
MPI_COMM_WORLD);
MPI_Group_incl(orig_group, totalnumdev, grp1, &new_group);
MPI_Comm_create(MPI_COMM_WORLD, new_group, &new_comm);
if( amGPUTask )
{
//setup GPU in GPU tasks
MPI_Comm_rank(new_comm, &mygrprank);
GPUSetup(op, mympirank, mynoderank);
}
MPI_Barrier(MPI_COMM_WORLD);
//form random pairs among communication tasks
int * pairlist = new int[numnodes];
for ( i=0; i<numnodes; i++ ) pairlist[i]=0;
int *myinplist = new int[nodenprocs-1];
if ( mynoderank==0 )
{
pairlist[myclusterrank]=mympirank;
MPI_Allreduce(MPI_IN_PLACE,pairlist,numnodes,MPI_INT,MPI_SUM,
nlrcomm);
mypair = RandomPairs(myclusterrank, numnodes, nlrcomm);
mypair = pairlist[mypair];
int *myproclist = new int[nodenprocs-1];
for (i=0;i<nodenprocs-1;i++)
myinplist[i]=i+1;
MPI_Group intragrp,nigrp;
MPI_Comm_group(smpcomm,&intragrp);
MPI_Comm_group(MPI_COMM_WORLD,&nigrp);
MPI_Group_translate_ranks(intragrp,nodenprocs-1,myinplist,nigrp,myproclist);
if ( mypair<mympirank )
{
MPI_Status reqstat;
MPI_Send(myproclist, (nodenprocs-1)*sizeof(int), MPI_CHAR, mypair,
112, MPI_COMM_WORLD);
MPI_Recv(myinplist, (nodenprocs-1)*sizeof(int), MPI_CHAR, mypair,
112, MPI_COMM_WORLD,&reqstat);
}
else
{
MPI_Status reqstat;
MPI_Recv(myinplist, (nodenprocs-1)*sizeof(int), MPI_CHAR, mypair,
112, MPI_COMM_WORLD,&reqstat);
MPI_Send(myproclist, (nodenprocs-1)*sizeof(int), MPI_CHAR, mypair,
112, MPI_COMM_WORLD);
}
}
MPI_Bcast(myinplist,(nodenprocs-1),MPI_INT,0,smpcomm);
if ( mynoderank!=0 )
mypair = myinplist[mynoderank-1];
// ensure we are all synchronized before starting test
MPI_Barrier(MPI_COMM_WORLD);
mpido = 1;
cudado = 1;
//first, individual runs for device benchmark
if ( amGPUTask ) GPUDriverwrmup();
if ( amGPUTask )
{
//for ( i=0; i<npasses; i++ ) GPUDriverseq();
GPUDriverseq();
}
MPI_Barrier(MPI_COMM_WORLD);
mpido = 1;
cudado = 1;
//First, warmup run
MPITest(op, rdbwupmpi,numtasks,mympirank,mypair,MPI_COMM_WORLD );
//next, individual run for MPI Benchmark
//for ( i=0; i<npasses; i++ )
MPITest(op, rdbseqmpi, numtasks,mympirank,mypair,MPI_COMM_WORLD );
MPI_Barrier(MPI_COMM_WORLD);
//merge and print results
if (mympirank==0)
cout<<endl<<"*****************************Sequential GPU and MPI runs****************************"<<endl;
if ( amGPUTask )
{
ResultDatabase &rdbseqgpu = GPUGetseqrdb();
prdbseqgpu.MergeSerialDatabases(rdbseqgpu, new_comm);
if(mygrprank==0)
prdbseqgpu.DumpSummary(cout);
}
flush(cout);
MPI_Barrier(MPI_COMM_WORLD);
prdbseqmpi.MergeSerialDatabases(rdbseqmpi,MPI_COMM_WORLD);
if(mympirank==0)
prdbseqmpi.DumpSummary(cout);
// Simultaneous runs for observing impact of contention
MPI_Barrier(MPI_COMM_WORLD);
//if(mympirank == 0)cudaProfilerStart();
//make sure GPU task keeps running until MPI task is done
mpidone = 0;
cudadone = 0;
mpido = 0;
cudado = 0;
//first spawnoff GPU tasks
if ( amGPUTask )
{
spawnongpu();
}
#if 0
sleep(5);
mpidone=1;
cudadone=1;
if ( amGPUTask )
{
if((rc=pthread_join(mychild,NULL)))
exitwrapper("pthread_join: failed",rc);
}
#endif
//run the MPI test
//for ( i=0;i<npasses;i++)
{
MPITest(op, rdbsimmpi, numtasks,mympirank,mypair,MPI_COMM_WORLD );
}
mpidone=1;
cudadone=1;
printf("Total with both tests\n");
//waif for MPI test to finish
MPI_Barrier(MPI_COMM_WORLD);
//if(mympirank == 0)cudaProfilerStop();
cout << "Printing final results..." << std::endl;
//wait for GPU tasks to return
if ( amGPUTask )
{
if((rc=pthread_join(mychild,NULL)))
exitwrapper("pthread_join: failed",rc);
}
//merge and print
if (mympirank==0)
cout<<endl<<"*****************************Simultaneous GPU and MPI runs****************************"<<endl;
if ( amGPUTask )
{
ResultDatabase &rdbsimgpu = GPUGetsimrdb();
prdbsimgpu.MergeSerialDatabases(rdbsimgpu, new_comm);
if(mygrprank==0)
prdbsimgpu.DumpSummary(cout);
}
flush(cout);
MPI_Barrier(MPI_COMM_WORLD);
prdbsimmpi.MergeSerialDatabases(rdbsimmpi,MPI_COMM_WORLD);
if ( mympirank==0 )
prdbsimmpi.DumpSummary(cout);
flush(cout);
//print summary
#if 1
if (mympirank == 0)
{
vector<ResultDatabase::Result> prelatency = prdbseqmpi.GetResultsForTest("MPI Latency(mean)");
vector<ResultDatabase::Result> postlatency = prdbsimmpi.GetResultsForTest("MPI Latency(mean)");
cout<<endl<<"Summarized Mean(Mean) MPI Baseline Latency vs. Latency with Contention";
cout<<endl<<"MSG SIZE(B)\t";
int msgsize=0;
for (i=0; i<prelatency.size(); i++)
{
cout<<msgsize<<"\t";
msgsize = (msgsize ? msgsize * 2 : msgsize + 1);
}
cout << endl <<"BASELATENCY\t";
for (i=0; i<prelatency.size(); i++)
cout<<setiosflags(ios::fixed) << setprecision(2)<<prelatency[i].GetMean() << "\t";
cout << endl <<"CONTLATENCY\t";
for (i=0; i<postlatency.size(); i++)
cout<<setiosflags(ios::fixed) << setprecision(2)<<postlatency[i].GetMean() << "\t";
flush(cout);
cout<<endl;
}
MPI_Barrier(MPI_COMM_WORLD);
if ( amGPUTask && mympirank==0)
{
vector<ResultDatabase::Result> prespeed;
vector<ResultDatabase::Result> postspeed;
//vector<ResultDatabase::Result> prespeed = prdbseqgpu.GetResultsForTest("DownloadSpeed(mean)");
//vector<ResultDatabase::Result> postspeed = prdbsimgpu.GetResultsForTest("DownloadSpeed(mean)");
//cout<<endl<<"Summarized Mean(Mean) GPU Baseline Download Speed vs. Download Speed with Contention";
if(gpu_tests == "TEST_GMEM_R")
{
prespeed = prdbseqgpu.GetResultsForTest("readGlobalMemoryCoalesced(mean)");
postspeed = prdbsimgpu.GetResultsForTest("readGlobalMemoryCoalesced(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline Read GMEM-BW (coalesced) vs. GMEM-BW (coalesced) with Contention";
}
else if(gpu_tests == "TEST_GMEM_UNIT_R")
{
prespeed = prdbseqgpu.GetResultsForTest("readGlobalMemoryUnit(mean)");
postspeed = prdbsimgpu.GetResultsForTest("readGlobalMemoryUnit(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline Read GMEM-BW (unit) vs. GMEM-BW (unit) with Contention";
}
else if(gpu_tests == "TEST_LMEM_R")
{
prespeed = prdbseqgpu.GetResultsForTest("readLocalMemory(mean)");
postspeed = prdbsimgpu.GetResultsForTest("readLocalMemory(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline Read LMEM-BW vs. LMEM-BW with Contention";
}
else if(gpu_tests == "TEST_GMEM_W")
{
prespeed = prdbseqgpu.GetResultsForTest("writeGlobalMemoryCoalesced(mean)");
postspeed = prdbsimgpu.GetResultsForTest("writeGlobalMemoryCoalesced(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline Write GMEM-BW (coalesced) vs. GMEM-BW (coalesced) with Contention";
}
else if(gpu_tests == "TEST_GMEM_UNIT_W")
{
prespeed = prdbseqgpu.GetResultsForTest("writeGlobalMemoryUnit(mean)");
postspeed = prdbsimgpu.GetResultsForTest("writeGlobalMemoryUnit(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline Write GMEM-BW (unit) vs. GMEM-BW (unit) with Contention";
}
else if(gpu_tests == "TEST_LMEM_W")
{
prespeed = prdbseqgpu.GetResultsForTest("writeLocalMemory(mean)");
postspeed = prdbsimgpu.GetResultsForTest("writeLocalMemory(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline Write LMEM-BW vs. LMEM-BW with Contention";
}
else if(gpu_tests == "TEST_H2D_MPIACC_SEND")
{
prespeed = prdbseqgpu.GetResultsForTest("DownloadSpeed(mean)");
postspeed = prdbsimgpu.GetResultsForTest("DownloadSpeed(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline PCI H2D BW vs. PCI H2D BW with MPI-ACC Send (different queues)";
}
else if(gpu_tests == "TEST_H2D_MPIACC_RECV")
{
prespeed = prdbseqgpu.GetResultsForTest("DownloadSpeed(mean)");
postspeed = prdbsimgpu.GetResultsForTest("DownloadSpeed(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline PCI H2D BW vs. PCI H2D BW with MPI-ACC Recv (same queues)";
}
else if(gpu_tests == "TEST_D2H_MPIACC_SEND")
{
prespeed = prdbseqgpu.GetResultsForTest("ReadbackSpeed(mean)");
postspeed = prdbsimgpu.GetResultsForTest("ReadbackSpeed(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline PCI D2H BW vs. PCI D2H BW with MPI-ACC Send (same queues)";
}
else if(gpu_tests == "TEST_D2H_MPIACC_RECV")
{
prespeed = prdbseqgpu.GetResultsForTest("ReadbackSpeed(mean)");
postspeed = prdbsimgpu.GetResultsForTest("ReadbackSpeed(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline PCI D2H BW vs. PCI D2H BW with MPI-ACC Recv (different queues)";
}
else if(gpu_tests == "TEST_FLOPS")
{
prespeed = prdbseqgpu.GetResultsForTest("MulMAddU-SP(mean)");
postspeed = prdbsimgpu.GetResultsForTest("MulMAddU-SP(mean)");
cout<<endl<<"Summarized Mean(Mean) GPU Baseline Flops vs. Flops with Contention";
}
cout<<endl<<"MSG SIZE(normalized)\t";
int msgsize=1;
for (i=0; i<prespeed.size(); ++i)
{
cout<<msgsize<<"\t";
msgsize = (msgsize ? msgsize * 2 : msgsize + 1);
}
cout << endl <<"BASESPEED\t";
for (i=0; i<prespeed.size(); ++i)
cout<<setiosflags(ios::fixed) << setprecision(4)<<prespeed[i].GetMean() << "\t";
cout << endl <<"CONTSPEED\t";
for (i=0; i<postspeed.size(); ++i)
cout<<setiosflags(ios::fixed) << setprecision(4)<<postspeed[i].GetMean() << "\t";
cout<<endl;
}
if ( amGPUTask && mympirank==0)
{
vector<ResultDatabase::Result> pregpulat = prdbseqgpu.GetResultsForTest("DownloadLatencyEstimate(mean)");
vector<ResultDatabase::Result> postgpulat = prdbsimgpu.GetResultsForTest("DownloadLatencyEstimate(mean)");
if(gpu_tests == "TEST_D2H_MPIACC_SEND" || gpu_tests == "TEST_D2H_MPIACC_RECV")
{
pregpulat = prdbseqgpu.GetResultsForTest("ReadbackTime(mean)");
postgpulat = prdbsimgpu.GetResultsForTest("ReadbackTime(mean)");
}
cout<<endl<<"Summarized Mean(Mean) GPU Baseline Download Latency vs. Download Latency with Contention";
cout<<endl<<"MSG SIZE\t";
for (i=0; i<pregpulat.size(); ++i)
{
cout<<pregpulat[i].atts<<"\t";
}
cout << endl <<"BASEGPULAT\t";
for (i=0; i<pregpulat.size(); ++i)
cout<<setiosflags(ios::fixed) << setprecision(7)<<pregpulat[i].GetMean() << "\t";
cout << endl <<"CONTGPULAT\t";
for (i=0; i<postgpulat.size(); ++i)
cout<<setiosflags(ios::fixed) << setprecision(7)<<postgpulat[i].GetMean() << "\t";
cout<<endl;
}
#endif
//cleanup GPU
if( amGPUTask )
{
GPUCleanup();
}
if(pthread_barrier_destroy(&mpitest_barrier))
{
cout << "Could not destroy the barrier" << endl;
MPI_Finalize();
exit(1);
}
cudaFreeHost(g_gpuhostbuf1);
cudaFreeHost(g_gpuhostbuf2);
//cudaStreamDestroy(g_cuda_default_stream);
CUDA_CHECK_ERR("GPU Destroy Streams");
for(int stream_idx = 0; stream_idx < CMD_QUEUE_COUNT; stream_idx++)
{
// cudaStreamDestroy(g_gpustreams[stream_idx]);
CUDA_CHECK_ERR("GPU Destroy Streams");
}
//gpuFinalizeCUDA();
MPI_Finalize();
}
| [
"ashwinma@gmail.com"
] | ashwinma@gmail.com |
406edea90722a2d0c7142573cc72072a59c6f679 | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/095/581/CWE36_Absolute_Path_Traversal__char_connect_socket_fopen_74b.cpp | d9a3ce5173d43eb719cd1e70087068b1a1de33ab | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,657 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE36_Absolute_Path_Traversal__char_connect_socket_fopen_74b.cpp
Label Definition File: CWE36_Absolute_Path_Traversal.label.xml
Template File: sources-sink-74b.tmpl.cpp
*/
/*
* @description
* CWE: 36 Absolute Path Traversal
* BadSource: connect_socket Read data using a connect socket (client side)
* GoodSource: Full path and file name
* Sinks: fopen
* BadSink : Open the file named in data using fopen()
* Flow Variant: 74 Data flow: data passed in a map from one function to another in different source files
*
* */
#include "std_testcase.h"
#include <map>
#ifndef _WIN32
#include <wchar.h>
#endif
#ifdef _WIN32
#define FOPEN fopen
#else
#define FOPEN fopen
#endif
using namespace std;
namespace CWE36_Absolute_Path_Traversal__char_connect_socket_fopen_74
{
#ifndef OMITBAD
void badSink(map<int, char *> dataMap)
{
/* copy data out of dataMap */
char * data = dataMap[2];
{
FILE *pFile = NULL;
/* POTENTIAL FLAW: Possibly opening a file without validating the file name or path */
pFile = FOPEN(data, "wb+");
if (pFile != NULL)
{
fclose(pFile);
}
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B uses the GoodSource with the BadSink */
void goodG2BSink(map<int, char *> dataMap)
{
char * data = dataMap[2];
{
FILE *pFile = NULL;
/* POTENTIAL FLAW: Possibly opening a file without validating the file name or path */
pFile = FOPEN(data, "wb+");
if (pFile != NULL)
{
fclose(pFile);
}
}
}
#endif /* OMITGOOD */
} /* close namespace */
| [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
e398698c2953c2044e97d5beb703c18bb357d537 | da928b4caac01429918efce74dc4d945d1a3d1e4 | /MMOServer/Util.h | b9702683e26a87a54199bc7dc10decb8dda8f3f7 | [] | no_license | rnsk1243/MMOServer | 172f813f5fe2d15999dfc74eafb49b6a795e37a2 | abf8dcf4ddb75266c9ae3bc8aa1ed5ee7350a89c | refs/heads/master | 2021-05-11T15:13:41.567605 | 2018-02-20T19:59:28 | 2018-02-20T19:59:28 | 117,714,433 | 2 | 1 | null | 2018-02-24T03:44:43 | 2018-01-16T17:07:57 | C++ | UTF-8 | C++ | false | false | 347 | h | #pragma once
#include<vector>
#include<time.h>
#include<iostream>
#include"EnumInfo.h"
#include"ConstValue.h"
class CUtil
{
CUtil();
public:
~CUtil();
static CUtil* GetInstance();
void GetCurtime(std::vector<std::string> & targetStrVec);
const std::string IntToString(const int& targetInt);
};
static CUtil* UtilPtr = CUtil::GetInstance();
| [
"rnsk8945@gmail.com"
] | rnsk8945@gmail.com |
5e1e207323f9cb37349d1be051ce26e649a26a8c | 9f1fa0a8259aebe001d1f2a3591963e200c91ff8 | /Shadow/Shadow_Grid.cpp | 2ed6a80414c4ab521cb02d1291e915e149c2d7f1 | [
"Zlib"
] | permissive | tringi/emphasize | 0e95a697d69c5a580a5b7196fe1f87e1731977b9 | ad017ec3e7a4f03267943ccfa3b9a4fead4a5930 | refs/heads/master | 2022-06-30T08:20:00.258569 | 2022-06-17T18:45:19 | 2022-06-17T18:45:19 | 98,049,754 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 92,026 | cpp | #include "Shadow_Grid.hpp"
/* Emphasize Shadow Controls Library - Grid
// Shadow_Grid.cpp
//
// Author: Jan Ringos, http://Tringi.MX-3.cz, jan@ringos.cz
// Version: 0.9
//
// Changelog:
// 10.01.2014 - initial version
// 25.01.2014 - first usable version 0.9 for Konipas project
*/
#include "../Windows/Windows_GetSystemParameter.hpp"
#include "../Windows/Windows_WindowExtraMemory.hpp"
#include "../Windows/Windows_W2kCompatibility.hpp"
#include "../Windows/Windows_TrackMouseEvent.hpp"
#include "../Windows/Windows_DeferWindowPos.hpp"
#include "../Windows/Windows_CreateControl.hpp"
#include "../Windows/Windows_UxTheme.hpp"
#include "../Windows/Windows_Version.hpp"
#include "../Windows/Windows_Print.hpp"
#include <commctrl.h>
#include <algorithm>
#include <cwctype>
#include <cwchar>
#include <cstdio>
using namespace Windows;
using namespace Shadow::Grid;
namespace {
ATOM atom = 0u;
LRESULT CALLBACK Procedure (HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK HeaderSubclass (HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK EditorSubclass (HWND, UINT, WPARAM, LPARAM);
HANDLE hHeap = NULL;
HCURSOR hArrowCursor = NULL;
HCURSOR hTextCursor = NULL;
HCURSOR hHandCursor = NULL;
HCURSOR hNoCursor = NULL;
HCURSOR hDragCtrCursor = NULL;
struct Data {
UINT item;
UINT column;
unsigned short row_height; // chached row height (short?)
signed char wheelH;
signed char wheelV;
UINT hot_item;
UINT hot_column;
int anchor_x;
int anchor_y;
UINT drag_item;
UINT drag_column;
unsigned int change;
DWORD close_t;
UINT close_item;
UINT close_column;
};
};
ATOM Shadow::Grid::Initialize (HINSTANCE hInstance) {
WNDCLASS wc;
wc.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = Procedure;
wc.cbClsExtra = 0;
wc.cbWndExtra = GetWindowExtraSize <Data> ();
wc.hInstance = hInstance;
wc.hIcon = NULL;
wc.hCursor = NULL;
wc.hbrBackground = NULL;
wc.lpszMenuName = NULL;
wc.lpszClassName = TEXT ("Shadow::Grid");
hArrowCursor = LoadCursor (NULL, IDC_ARROW);
hTextCursor = LoadCursor (NULL, IDC_IBEAM);
hHandCursor = LoadCursor (NULL, IDC_HAND);
hNoCursor = LoadCursor (NULL, IDC_NO);
static const unsigned char cursor [32] = {
0b11111000, 0b00111111,
0b11111000, 0b00111111,
0b11111000, 0b00111111,
0b11111000, 0b00111111,
0b11111000, 0b00111111,
0b00000000, 0b00000001,
0b00000000, 0b00000001,
0b00000000, 0b00000001,
0b00000000, 0b00000001,
0b00000000, 0b00000001,
0b11111000, 0b00111111,
0b11111000, 0b00111111,
0b11111000, 0b00111111,
0b11111000, 0b00111111,
0b11111000, 0b00111111,
0b11111111, 0b11111111
};
static const unsigned char mask [32] = {
0b00000111, 0b11000000,
0b00000100, 0b01000000,
0b00000100, 0b01000000,
0b00000100, 0b01000000,
0b00000100, 0b01000000,
0b11111100, 0b01111110,
0b10000000, 0b00000010,
0b10000000, 0b00000010,
0b10000000, 0b00000010,
0b11111100, 0b01111110,
0b00000100, 0b01000000,
0b00000100, 0b01000000,
0b00000100, 0b01000000,
0b00000100, 0b01000000,
0b00000111, 0b11000000,
0b00000000, 0b00000000
};
// TODO: CreateCursorWithShadow
// - http://support.microsoft.com/kb/318876/en-us?fr=1
hDragCtrCursor = CreateCursor (hInstance, 7, 7, 16, 16, cursor, mask);
hHeap = GetProcessHeap ();
atom = RegisterClass (&wc);
return atom;
};
HWND Shadow::Grid::Create (HINSTANCE hInstance, HWND hParent,
UINT style, UINT id) {
return CreateWindowEx (0, (LPCTSTR) (INT) atom, TEXT(""),
style | WS_CHILD | WS_CLIPCHILDREN,
0,0,0,0, hParent, (HMENU) id, hInstance, NULL);
};
namespace {
#ifndef HDF_SPLITBUTTON
#define HDF_SPLITBUTTON 0x1000000
#endif
#ifndef HDF_SORTUP
#define HDF_SORTUP 0x0400
#define HDF_SORTDOWN 0x0200
#endif
/*#ifndef HDS_OVERFLOW
#define HDS_OVERFLOW 0x1000
#endif*/
LRESULT OnCreate (HWND, UINT);
LRESULT OnSize (HWND, UINT, USHORT, USHORT);
LRESULT OnPaint (HWND, HDC, RECT);
LRESULT OnClick (HWND, UINT, WPARAM, SHORT, SHORT);
LRESULT OnClickUp (HWND, UINT, WPARAM, SHORT, SHORT);
LRESULT OnHitTest (HWND, SHORT, SHORT);
LRESULT OnMouseMove (HWND, SHORT, SHORT);
LRESULT OnKeyUp (HWND, WPARAM, LPARAM);
LRESULT OnKeyDown (HWND, WPARAM, LPARAM);
LRESULT OnHorizontalWheel (HWND, int, USHORT);
LRESULT OnHorizontalScroll (HWND, UINT, int = 1u);
LRESULT OnVerticalWheel (HWND, int, USHORT);
LRESULT OnVerticalScroll (HWND, UINT, int = 1u);
LRESULT OnNotify (HWND, UINT, const NMHDR *);
LRESULT OnGetDlgCode (HWND, UINT);
bool SetActiveCell (HWND, UINT, UINT item, UINT column);
UINT UpdateHorizontalScrollBar (HWND, UINT max = 0u, UINT page = 0u);
bool SendEditBoxChangeNotify (HWND);
bool ScrollRectToView (HWND, const RECT &);
void UpdateGridControlPos (HWND hWnd);
LRESULT SetSortOrder (HWND, WPARAM, LPARAM);
LRESULT GetSortOrder (HWND, WPARAM, LPARAM);
LRESULT SendBasicNotify (HWND, UINT);
LRESULT CustomDrawNotify (HWND, DWORD, HDC, LPCRECT,
UINT = 0, UINT = CDIS_DEFAULT, LPARAM = 0);
LRESULT SendRequestNotify (HWND, UINT request, UINT row, UINT column, UINT index = 0u);
LRESULT SendPrefetchNotify (HWND, UINT, UINT, UINT, UINT);
LRESULT SendChangeNotify (HWND, UINT, UINT, const wchar_t *);
LRESULT SendDragNotify (HWND, UINT, UINT, UINT, UINT);
LRESULT SendMouseNotify (HWND, UINT, DWORD_PTR, DWORD_PTR, const POINT &);
LRESULT SendTrackNotify (HWND, UINT, UINT);
LRESULT SendEnterNotify (HWND, UINT, UINT);
LRESULT CALLBACK Procedure (HWND hWnd, UINT message,
WPARAM wParam, LPARAM lParam) {
switch (message) {
case WM_CREATE:
return OnCreate (hWnd, ((CREATESTRUCT *) lParam)->style);
case WM_SETFONT:
SendDlgItemMessage (hWnd, 1, message, wParam, lParam);
SendDlgItemMessage (hWnd, 3, message, wParam, lParam);
SendDlgItemMessage (hWnd, 4, message, wParam, lParam);
if (LOWORD (lParam))
InvalidateRect (hWnd, NULL, TRUE);
break;
case WM_GETFONT:
return SendDlgItemMessage (hWnd, 1, WM_GETFONT, 0, 0);
case WM_GETDLGCODE:
return OnGetDlgCode (hWnd, wParam);
case WM_SIZE:
return OnSize (hWnd, wParam, LOWORD (lParam), HIWORD (lParam));
case WM_PAINT:
{
PAINTSTRUCT ps;
if (HDC hDC = BeginPaint (hWnd, &ps)) {
OnPaint (hWnd, hDC, ps.rcPaint);
};
EndPaint (hWnd, &ps);
UpdateHorizontalScrollBar (hWnd);
} break;
case WM_PRINTCLIENT:
{
RECT rc;
if (GetClientRect (hWnd, &rc)) {
OnPaint (hWnd, (HDC) wParam, rc);
};
} break;
case WM_SETFOCUS:
InvalidateRect (hWnd, NULL, TRUE);
if (auto hEditBox = GetDlgItem (hWnd, 3)) {
if ((HWND) wParam != hEditBox) {
SetActiveCell (hWnd, WM_SETFOCUS, GetWindowExtra (hWnd, &Data::item), GetWindowExtra (hWnd, &Data::column));
};
};
return SendBasicNotify (hWnd, NM_SETFOCUS);
case WM_KILLFOCUS:
InvalidateRect (hWnd, NULL, TRUE);
return SendBasicNotify (hWnd, NM_KILLFOCUS);
case WM_MOUSEMOVE:
return OnMouseMove (hWnd, LOWORD (lParam), HIWORD (lParam));
case WM_MOUSELEAVE:
return OnMouseMove (hWnd, -1, -1);
case WM_VSCROLL:
return OnVerticalScroll (hWnd, LOWORD (wParam));
case WM_HSCROLL:
return OnHorizontalScroll (hWnd, LOWORD (wParam));
case WM_MOUSEWHEEL:
return OnVerticalWheel (hWnd, (SHORT) HIWORD (wParam), LOWORD (wParam));
case WM_MOUSEHWHEEL:
return OnHorizontalWheel (hWnd, (SHORT) HIWORD (wParam), LOWORD (wParam));
case WM_LBUTTONDOWN:
case WM_LBUTTONDBLCLK:
SendEditBoxChangeNotify (hWnd);
case WM_RBUTTONDOWN:
case WM_RBUTTONDBLCLK:
return OnClick (hWnd, message, wParam, LOWORD (lParam), HIWORD (lParam));
case WM_LBUTTONUP:
case WM_RBUTTONUP:
return OnClickUp (hWnd, message, wParam, LOWORD (lParam), HIWORD (lParam));
case WM_KEYDOWN:
return OnKeyDown (hWnd, wParam, lParam);
case WM_KEYUP:
return OnKeyUp (hWnd, wParam, lParam);
case WM_UPDATEUISTATE:
case WM_STYLECHANGED:
case WM_THEMECHANGED:
case WM_SYSCOLORCHANGE:
case WM_SETTINGCHANGE:
InvalidateRect (hWnd, NULL, FALSE);
break;
case WM_COMMAND:
if (HIWORD (wParam) > 1) {
NMHDR nmFake = { (HWND) lParam, LOWORD (wParam), HIWORD (wParam) };
return OnNotify (hWnd, LOWORD (wParam), &nmFake);
};
break;
case WM_NOTIFY:
return OnNotify (hWnd, wParam, reinterpret_cast <NMHDR *> (lParam));
case Message::Insert: {
auto count = SendDlgItemMessage (hWnd, 1, HDM_GETITEMCOUNT, 0, 0);
HDITEM hdi = {
HDI_FORMAT | HDI_TEXT | HDI_WIDTH | HDI_LPARAM,
(int) wParam, LPSTR_TEXTCALLBACK, NULL, 0,
HDF_LEFT | HDF_STRING,// | HDF_SPLITBUTTON,
lParam, I_IMAGENONE, 0, 0u, NULL
};
auto rv = SendDlgItemMessage (hWnd, 1, HDM_INSERTITEM, count, (LPARAM) &hdi);
UpdateHorizontalScrollBar (hWnd);
return rv;
} break;
case Message::SetCurrent: {
auto columns = SendDlgItemMessage (hWnd, 1, HDM_GETITEMCOUNT, 0, 0);
auto rows = (unsigned int) SendBasicNotify (hWnd, Request::Rows);
if (wParam >= rows)
wParam = -1;
if (lParam >= columns)
lParam = -1;
SetActiveCell (hWnd, WM_KEYDOWN, wParam, lParam);
} break;
case Message::SetColumnWidth: {
HDITEM hdi = {
HDI_WIDTH, (int) wParam, LPSTR_TEXTCALLBACK,
NULL, 0, 0, 0, 0, 0, 0u, NULL
};
auto rv = SendDlgItemMessage (hWnd, 1, HDM_SETITEM, lParam, (LPARAM) &hdi);
UpdateHorizontalScrollBar (hWnd);
return rv;
} break;
/* case Message::GetColumnIndex: {
HDITEM item = {
HDI_LPARAM, (int) wParam, LPSTR_TEXTCALLBACK,
NULL, 0, 0, 0, 0, 0, 0u, NULL
};
// if (SendDlgItemMessage (hWnd, 1, HDM_GETITEM, wParam, (LPARAM) &item)) {
} break;*/
case Message::SetSortOrder:
return SetSortOrder (hWnd, wParam, lParam);
case Message::GetSortOrder:
return GetSortOrder (hWnd, wParam, lParam);
default:
if (message >= HDM_FIRST && message < HDM_FIRST + 0x100)
return SendDlgItemMessage (hWnd, 1, message, wParam, lParam);
return DefWindowProc (hWnd, message, wParam, lParam);
};
return 0;
};
LRESULT OnCreate (HWND hWnd, UINT style) {
auto hInstance = (HINSTANCE) GetWindowLongPtr (hWnd, GWLP_HINSTANCE);
SetWindowExtra (hWnd, &Data::item, -1u);
SetWindowExtra (hWnd, &Data::column, -1u);
SetWindowExtra (hWnd, &Data::hot_item, -1u);
SetWindowExtra (hWnd, &Data::hot_column, -1u);
SetWindowExtra (hWnd, &Data::drag_item, -1u);
SetWindowExtra (hWnd, &Data::drag_column, -1u);
SetWindowExtra (hWnd, &Data::close_t, 0u);
SetWindowExtra (hWnd, &Data::close_item, -1u);
SetWindowExtra (hWnd, &Data::close_column, -1u);
HWND h =
Windows::CreateControl (WC_HEADER, WS_VISIBLE |
HDS_DRAGDROP | HDS_BUTTONS | HDS_FULLDRAG | HDS_HORZ | HDS_HOTTRACK,
hWnd, 1u, hInstance);
SetProp (h, TEXT ("Shadow::Grid::Subclass"),
(HANDLE) SetWindowLongPtr (h, GWL_WNDPROC, (DWORD) HeaderSubclass));
h =
Windows::CreateControl (TEXT ("EDIT"), WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL | WS_CLIPSIBLINGS,
hWnd, 3u, hInstance);
SetProp (h, TEXT ("Shadow::Grid::Subclass"),
(HANDLE) SetWindowLongPtr (h, GWL_WNDPROC, (DWORD) EditorSubclass));
if (!(style & Style::NoDropDowns)) {
h =
Shadow::Grid::Create (hInstance, hWnd, WS_BORDER | WS_CLIPSIBLINGS |
WS_VSCROLL | Style::NoDropDowns | Style::NoHeader, 4u);
SendMessage (h, Shadow::Grid::Message::Insert, 0, 0);
};
UpdateHorizontalScrollBar (hWnd);
SendMessage (hWnd, WM_CHANGEUISTATE, UIS_INITIALIZE, 0u);
return 0;
};
LRESULT OnSize (HWND hWnd, UINT type, USHORT width, USHORT height) {
if (type == SIZE_MINIMIZED)
return 0;
HDWP hdwp = BeginDeferWindowPos (3);
if (HWND hHeader = GetDlgItem (hWnd, 1)) {
WINDOWPOS wp;
RECT r = { 0, 0, width, height };
HDLAYOUT hdly = { &r, &wp };
if (Header_Layout (hHeader, &hdly)) {
const auto wx = (long) UpdateHorizontalScrollBar (hWnd, 0u, width);
const auto ox = GetScrollPos (hWnd, SB_HORZ);
if (GetWindowLongPtr (hWnd, GWL_STYLE) & Style::NoHeader) {
wp.y = -1;
wp.cy = 1;
};
Windows::DeferWindowPos (hdwp, hHeader,
{ wp.x - ox, wp.y, wx, wp.cy },
SWP_NOACTIVATE);
};
};
if (hdwp)
EndDeferWindowPos (hdwp);
UpdateGridControlPos (hWnd);
return 0;
};
LRESULT OnGetDlgCode (HWND hWnd, UINT code) {
const auto style = GetWindowLongPtr (hWnd, GWL_STYLE);
LRESULT result = DLGC_WANTARROWS;
if (code == VK_RETURN || code == VK_ESCAPE) {
result |= DLGC_WANTALLKEYS;
};
return result;
};
LRESULT OnNotify (HWND hWnd, UINT id, const NMHDR * nmhdr) {
switch (id) {
case 1: // Header
if (nmhdr->code == NM_CUSTOMDRAW) {
// forward custom drawing of header?
const_cast <NMHDR *> (nmhdr)->hwndFrom = hWnd;
const_cast <NMHDR *> (nmhdr)->idFrom = GetDlgCtrlID (hWnd);
const_cast <NMHDR *> (nmhdr)->code = Shadow::Grid::Request::HeaderCustomDraw;
return SendMessage (GetParent (hWnd), WM_NOTIFY,
nmhdr->idFrom, (LPARAM) nmhdr);
};
if (nmhdr->code >= HDN_LAST && nmhdr->code <= HDN_FIRST) {
// forward message to parent
// - only from our header, not already forwarded from child
switch (nmhdr->code) {
case HDN_ITEMCHANGING:
UpdateHorizontalScrollBar (hWnd);
// ...
case HDN_ENDDRAG:
InvalidateRect (hWnd, NULL, FALSE);
break;
};
if (!(GetWindowLongPtr (hWnd, GWL_STYLE) & Style::NoHeader)) {
const_cast <NMHDR *> (nmhdr) ->hwndFrom = hWnd;
const_cast <NMHDR *> (nmhdr) ->idFrom = GetDlgCtrlID (hWnd);
auto result = SendMessage (GetParent (hWnd), WM_NOTIFY,
nmhdr->idFrom, (LPARAM) nmhdr);
switch (nmhdr->code) {
case HDN_ENDDRAG:
case HDN_ITEMCHANGING:
SetFocus (hWnd); // simply dismiss editor
break;
};
return result;
};
};
break;
case 3: // Edit box
switch (nmhdr->code) {
case EN_CHANGE:
SetWindowExtra (hWnd, &Data::change,
GetWindowExtra (hWnd, &Data::change) + 1u);
if (GetWindowLong (hWnd, GWL_STYLE) & Shadow::Grid::Style::LiveUpdate) {
InvalidateRect (hWnd, NULL, TRUE); // TODO: only current cell?
SendEditBoxChangeNotify (hWnd);
};
break;
case EN_KILLFOCUS:
InvalidateRect (hWnd, NULL, TRUE); // TODO: only current cell?
SendEditBoxChangeNotify (hWnd);
ShowWindow (nmhdr->hwndFrom, SW_HIDE);
break;
};
break;
case 4: // Another Grid posing as combobox
switch (nmhdr->code) {
case NM_KILLFOCUS:
SetWindowExtra (hWnd, &Data::close_t, GetTickCount ());
SetWindowExtra (hWnd, &Data::close_item, GetWindowExtra (hWnd, &Data::item));
SetWindowExtra (hWnd, &Data::close_column, GetWindowExtra (hWnd, &Data::column));
ShowWindow (nmhdr->hwndFrom, SW_HIDE);
break;
case NM_KEYDOWN:
if (reinterpret_cast <const NMKEY *> (nmhdr)->nVKey == VK_ESCAPE) {
ShowWindow (nmhdr->hwndFrom, SW_HIDE);
SetFocus (hWnd);
};
break;
case Request::Rows:
return SendRequestNotify (hWnd, Request::Depth,
GetWindowExtra (hWnd, &Data::item),
GetWindowExtra (hWnd, &Data::column));
case Request::Type:
switch ((CellType) SendRequestNotify (hWnd, Request::Type,
GetWindowExtra (hWnd, &Data::item),
GetWindowExtra (hWnd, &Data::column))) {
case CellType::Selection:
return (LRESULT) CellType::MenuItem;
case CellType::MultipleSelection:
return (LRESULT) CellType::Checkbox;
default:
return (LRESULT) CellType::Grayed;
};
case Request::Value:
return SendRequestNotify (hWnd, Request::Option,
GetWindowExtra (hWnd, &Data::item),
GetWindowExtra (hWnd, &Data::column),
reinterpret_cast <const NMRequest *> (nmhdr) ->row);
case Request::Change:
auto item = GetWindowExtra (hWnd, &Data::item);
auto column = GetWindowExtra (hWnd, &Data::column);
switch ((CellType) SendRequestNotify (hWnd, Request::Type,
item, column)) {
case CellType::Selection:
ShowWindow (nmhdr->hwndFrom, SW_HIDE);
return SendChangeNotify (hWnd, item, column,
reinterpret_cast <const NMChange *> (nmhdr) ->value);
case CellType::MultipleSelection: {
auto response = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * 24);
if (response) {
_snwprintf (response, 24, L"%c%u",
reinterpret_cast <const NMChange *> (nmhdr) ->value[0] == L'0' ? L'-' : L'+',
reinterpret_cast <const NMChange *> (nmhdr) ->row);
if (!SendChangeNotify (hWnd, item, column, response)) {
HeapFree (hHeap, 0, response);
};
};
} break;
default:
break;
};
break;
};
break;
};
return 0;
};
UINT GetFontHeight (HDC hDC) {
TEXTMETRIC textMetrics;
if (GetTextMetrics (hDC, &textMetrics)) {
return textMetrics.tmHeight;
} else
return 0u;
};
SIZE GetControlSize (HWND hWnd) {
RECT r;
if (GetClientRect (hWnd, &r)) {
return { r.right, r.bottom };
} else
return { 0, 0 };
};
UINT GetHeaderHeight (HWND hWnd) {
if (GetWindowLongPtr (hWnd, GWL_STYLE) & Style::NoHeader) {
return 0;
} else {
return GetControlSize (GetDlgItem (hWnd, 1)) .cy;
};
};
int GetScrollTrack (HWND hWnd, int fnBar) {
SCROLLINFO si;
si.cbSize = sizeof si;
si.fMask = SIF_TRACKPOS;
if (GetScrollInfo (hWnd, fnBar, &si)) {
return si.nTrackPos;
} else
return 0;
};
std::pair <unsigned int, unsigned int> FindHeaderEndItems (HWND hHeader,
UINT x, UINT page) {
unsigned int first = -1u;
unsigned int last = 0u;
UINT count = Header_GetItemCount (hHeader);
if (count != -1u) {
for (UINT i = 0u; i != count; ++i) {
RECT r;
if (Header_GetItemRect (hHeader, i, &r)) {
if (((unsigned int) r.right > x) && ((unsigned int) r.left < x + page)) {
if (i < first) first = i;
if (i > last) last = i;
};
};
};
};
return std::make_pair (first, last);
};
std::pair <unsigned int, unsigned int> FindCell (HWND hWnd, UINT x, UINT y,
UINT * flags = NULL) {
unsigned int item = -1u;
unsigned int column = -1u;
if (HWND hHeader = GetDlgItem (hWnd, 1)) {
auto yscroll = GetScrollPos (hWnd, SB_VERT);
auto xscroll = GetScrollPos (hWnd, SB_HORZ);
typedef struct _HD_HITTESTINFO {
POINT pt;
UINT flags;
int iItem;
} HDHITTESTINFO;
// column from header
HDHITTESTINFO hittest = { { int (x) + xscroll, 0 }, 0, 0 };
LRESULT result = SendMessage (hHeader, HDM_HITTEST, 0, (LPARAM) &hittest);
if (result != -1) {
if (flags) {
*flags = hittest.flags;
column = result;
} else {
if (!(hittest.flags & (HHT_NOWHERE | HHT_ONDIVIDER))) {
column = result;
};
};
};
// row
if (auto height = GetWindowExtra (hWnd, &Data::row_height)) {
item = (y + yscroll - GetHeaderHeight (hWnd)) / height;
if (item >= (unsigned int) SendBasicNotify (hWnd, Request::Rows)) {
item = -1u;
};
};
};
return std::make_pair (item, column);
};
UINT DrawCellText (HDC hDC, const wchar_t * string, RECT r, UINT flags = 0) {
UINT result = 0;
auto length = std::wcslen (string);
auto buffer = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * (length + 4));
if (buffer) {
_snwprintf (buffer, length + 1, L"%s", string);
result = DrawText (hDC, buffer, -1, &r, DT_SINGLELINE | DT_VCENTER |
DT_END_ELLIPSIS | DT_MODIFYSTRING | DT_NOPREFIX | flags);
HeapFree (hHeap, 0, buffer);
};
return result;
};
void DrawCheckBox (HANDLE hTheme, HDC hDC,
LRESULT value, const RECT & r, UINT state) {
// determine value
// - if not small short integer, consider it to be string
// - after the integer can follow string
const wchar_t * string = NULL;
if ((value < -1) || (value > 0xFFFF)) {
wchar_t * tailptr = nullptr;
value = std::wcstol ((const wchar_t *) value, &tailptr, 0);
if (tailptr) {
if (std::iswspace (*tailptr)) {
++tailptr;
};
if (*tailptr != L'\0') {
string = tailptr;
};
};
};
// determine checkbox rect
RECT rBox = r;
if (string) {
rBox.right = rBox.left + (rBox.bottom - rBox.top);
};
// draw
if (hTheme) {
UINT draw = (value & 0xFu) * 4u + 1u;
if (value == -1) {
draw = 4; // unchecked disabled
} else
if (value & 0x10u) {
draw += 3;
} else
if (state & CDIS_SELECTED) {
draw += 2;
} else
if (state & CDIS_HOT) {
draw += 1;
} else
if (value & 0x20) {
draw = 4;
};
UxTheme::DrawBackground (hTheme, hDC, 3, draw, &rBox);
} else {
rBox.top += 3; // TODO: padding as settings?
rBox.bottom -= 3;
UINT draw = DFCS_BUTTONCHECK;
if ((value > 0) && (value % 2) == 1) {
draw |= DFCS_CHECKED;
};
if ((value == -1) || (value & 0x10)) {
draw |= DFCS_INACTIVE;
} else
if (state & CDIS_SELECTED) {
draw |= DFCS_PUSHED;
} else
if (state & CDIS_HOT) {
draw |= DFCS_HOT;
};
DrawFrameControl (hDC, &rBox, DFC_BUTTON, draw);
if ((value & 0xF) == 2) {
long dimm = rBox.bottom - rBox.top - 2 * GetSystemMetrics (SM_CXEDGE) - 4;
long left = rBox.left + ((rBox.right - rBox.left - dimm) / 2);
long top = rBox.top + ((rBox.bottom - rBox.top - dimm) / 2);
RECT rQuad = { left, top, left + dimm, top + dimm };
if (draw & DFCS_INACTIVE) {
FillRect (hDC, &rQuad, GetSysColorBrush (COLOR_3DSHADOW)); // as w2k
} else
if (draw & DFCS_HOT) {
FillRect (hDC, &rQuad, GetSysColorBrush (COLOR_HOTLIGHT));
} else {
FillRect (hDC, &rQuad, GetSysColorBrush (COLOR_WINDOWTEXT));
};
};
};
// draw text
if (string) {
DrawCellText (hDC, string,
{ rBox.right, r.top, r.right - 6, r.bottom });
};
return;
};
void DrawComboBox (HANDLE hTheme, HANDLE hOldBitmap, HDC hDC,
const wchar_t * string, RECT r, UINT state) {
RECT rBox = { r.right - (r.bottom - r.top),
r.top, r.right, r.bottom };
if (hTheme) {
UINT draw = 1;
if (state & CDIS_SELECTED) {
draw += 2;
} else
if (state & (CDIS_HOT | CDIS_FOCUS)) {
draw += 1;
};
UxTheme::DrawBackground (hTheme, hDC, 5, draw, &r);
if (Windows::Version >= Windows::Version::WindowsVista) {
RECT rClip = rBox;
rClip.left += 3;
UxTheme::DrawBackground (hTheme, hDC, 6, draw, &rBox, &rClip);
} else {
rBox.top += 1;
rBox.right -= 1;
rBox.bottom -= 1;
UxTheme::DrawBackground (hTheme, hDC, 1, draw, &rBox);
};
} else {
int o = 0;
UINT draw = 0;
if (state & CDIS_SELECTED) {
draw |= DFCS_PUSHED;
o = 1;
} else
if (state & (CDIS_HOT | CDIS_FOCUS)) { // TODO: CDIS_FOCUS -> DrawFocusRect
draw |= DFCS_HOT;
};
r.right += 1;
DrawFrameControl (hDC, &r, DFC_BUTTON, DFCS_BUTTONPUSH | draw);
BITMAP bm;
if (GetObject (hOldBitmap, sizeof bm, &bm)) {
if (HDC hDCmem = CreateCompatibleDC (hDC)) {
auto hBmOld = SelectObject (hDCmem, hOldBitmap);
BitBlt (hDC,
rBox.left + ((rBox.right - rBox.left) - bm.bmWidth) / 2 + o,
rBox.top + ((rBox.bottom - rBox.top) - bm.bmHeight) / 2 + o,
bm.bmWidth, bm.bmHeight, hDCmem, 0, 0, SRCCOPY);
if (hBmOld) {
SelectObject (hDCmem, hBmOld);
};
DeleteDC (hDCmem);
};
};
};
if (string) {
DrawCellText (hDC, string, { r.left + 6, r.top, rBox.left + 2, r.bottom });
};
return;
};
LRESULT OnPaint (HWND hWnd, HDC _hDC, RECT rcInvalid) {
HWND hHeader = GetDlgItem (hWnd, 1);
RECT rc;
if (GetClientRect (hWnd, &rc)) {
rc.top = GetHeaderHeight (hWnd);
} else
return 0;
HDC hDC = NULL;
HANDLE hBuffered = /*NULL; // */ UxTheme::BeginBufferedPaint (_hDC, &rc, &hDC);
if (!hBuffered)
hDC = _hDC;
HGDIOBJ hPrevious [] = {
SelectObject (hDC, (HGDIOBJ) SendDlgItemMessage (hWnd, 1, WM_GETFONT, 0, 0)),
SelectObject (hDC, GetStockObject (NULL_BRUSH)),
SelectObject (hDC, GetStockObject (DC_PEN))
};
SetBkMode (hDC, TRANSPARENT);
SetDCPenColor (hDC, GetSysColor (COLOR_3DFACE));
DWORD rvPrePaint = CustomDrawNotify (hWnd, CDDS_PREPAINT, hDC, &rc);
if (!(rvPrePaint & CDRF_SKIPDEFAULT)) {
long maxx = 0u;
long maxy = 0u;
// set default text color
// - and allow parent to change it
SetTextColor (hDC, GetSysColor (COLOR_WINDOWTEXT));
HBRUSH hListBoxBrush = (HBRUSH) SendMessage (GetParent (hWnd), WM_CTLCOLORLISTBOX,
(WPARAM) hDC, (LPARAM) hWnd);
COLORREF clrDefault = GetTextColor (hDC);
if (rvPrePaint & CDRF_NOTIFYPOSTERASE) {
maxx = -1u;
maxy = -1u;
FillRect (hDC, &rc, hListBoxBrush);
CustomDrawNotify (hWnd, CDDS_POSTERASE, hDC, &rc);
};
// update vertical scrollbar
const unsigned int rows = SendBasicNotify (hWnd, Request::Rows);
const unsigned int height = GetFontHeight (hDC) + 2 * 3 + 1;
{ SCROLLINFO si = {
sizeof si, SIF_PAGE | SIF_RANGE | SIF_DISABLENOSCROLL,
0, (int) (height * rows),
(rc.bottom < rc.top) ? 0u : (rc.bottom - rc.top), 0, 0
};
SetScrollInfo (hWnd, SB_VERT, &si, TRUE);
};
const int xoffset = GetScrollPos (hWnd, SB_HORZ);
const int yoffset = GetScrollPos (hWnd, SB_VERT);
SetWindowExtra (hWnd, &Data::row_height, (unsigned short) height);
const unsigned int rowA = yoffset / height;
const unsigned int rowZ = (rc.bottom < rc.top) ? rowA
: std::min (rowA + (rc.bottom - rc.top) / height + 1u,
rows - 1uL);
const auto colbounds = FindHeaderEndItems (hHeader, xoffset, rc.right);
const unsigned int colA = colbounds.first;
const unsigned int colZ = colbounds.second;
SendPrefetchNotify (hWnd, rowA, rowZ, colA, colZ);
const unsigned int hot_item = GetWindowExtra (hWnd, &Data::hot_item);
const unsigned int hot_column = GetWindowExtra (hWnd, &Data::hot_column);
const unsigned int current_item = GetWindowExtra (hWnd, &Data::item);
const unsigned int current_column = GetWindowExtra (hWnd, &Data::column);
const unsigned int drag_item = GetWindowExtra (hWnd, &Data::drag_item);
const unsigned int drag_column = GetWindowExtra (hWnd, &Data::drag_column);
// themes
HANDLE hButtonTheme = UxTheme::Open (hWnd, L"BUTTON");
HANDLE hComboboxTheme = UxTheme::Open (hWnd, L"COMBOBOX");
HANDLE hOldBitmap = NULL;
if (!hComboboxTheme) {
// height
hOldBitmap = LoadImage (NULL, MAKEINTRESOURCE (/*OBM_COMBO*/32738), IMAGE_BITMAP,
0, 0, LR_DEFAULTCOLOR | LR_DEFAULTSIZE | LR_SHARED);
};
// display data
// - start by iterating columns, only processing those visible
unsigned int n = 0u;
maxy = rc.top + height * rows - yoffset;
for (auto column = colA; column != colZ + 1u; ++column) {
RECT rColumn;
if (Header_GetItemRect (hHeader, column, &rColumn)) {
if (maxx < rColumn.right) {
maxx = rColumn.right;
};
if ((rColumn.right > xoffset) && (rColumn.left < xoffset + rc.right)) {
// for all rows in view
for (auto row = rowA; row != rowZ + 1u; ++row) {
RECT rTemp;
RECT rCell = {
rColumn.left - xoffset,
rc.top + int (height * row) - yoffset,
rColumn.right - xoffset,
rc.top + int (height * row) - yoffset + int (height),
};
// for all rows in invalidated area
if (IntersectRect (&rTemp, &rCell, &rcInvalid)) {
--rCell.right;
--rCell.bottom;
auto type = (CellType) SendRequestNotify (hWnd, Request::Type, row, column, 0);
UINT state = 0;
// prepare state
if (row == current_item && column == current_column) {
state |= CDIS_FOCUS;
if (GetKeyState (VK_SPACE) & 0x8000) {
state |= CDIS_SELECTED;
};
if (GetKeyState (VK_RETURN) & 0x8000) {
state |= CDIS_SELECTED;
};
if (type == CellType::Selection || type == CellType::MultipleSelection) {
if (IsWindowVisible (GetDlgItem (hWnd, 4))) {
state |= CDIS_SELECTED;
};
};
};
if (row == hot_item && column == hot_column) {
state |= CDIS_HOT;
if (GetKeyState (VK_LBUTTON) & 0x8000) {
state |= CDIS_SELECTED;
};
};
if (row == drag_item && column == drag_column) {
state |= CDIS_MARKED;
};
if (hot_column == drag_column && column == hot_column) {
if (GetKeyState (VK_SHIFT) & 0x8000) {
if (row > drag_item && row < hot_item) state |= CDIS_SELECTED;
if (row > hot_item && row < drag_item) state |= CDIS_SELECTED;
};
};
if (type == CellType::Inactive) {
state = CDIS_DISABLED;
};
if (type == CellType::Grayed) {
state = CDIS_GRAYED | CDIS_DISABLED;
};
// border
POINT border [] = {
{ rCell.left, rCell.bottom },
{ rCell.right, rCell.bottom },
{ rCell.right, rCell.top - 1 }
};
Polyline (hDC, border, sizeof border / sizeof border [0]);
// initialize drawing colors
switch (type) {
case CellType::Grayed:
SelectObject (hDC, GetSysColorBrush (COLOR_3DFACE));
SetTextColor (hDC, GetSysColor (COLOR_GRAYTEXT));
break;
case CellType::Inactive:
SelectObject (hDC, hListBoxBrush),
SetTextColor (hDC, GetSysColor (COLOR_GRAYTEXT));
break;
case CellType::MenuItem:
if (state & (CDIS_HOT/* | CDIS_FOCUS*/)) {
SelectObject (hDC, GetSysColorBrush (COLOR_HIGHLIGHT));
SetTextColor (hDC, GetSysColor (COLOR_HIGHLIGHTTEXT));
} else {
SelectObject (hDC, GetSysColorBrush (COLOR_WINDOW/*COLOR_MENU*/));
SetTextColor (hDC, GetSysColor (COLOR_MENUTEXT));
};
break;
default:
SelectObject (hDC, hListBoxBrush),
SetTextColor (hDC, clrDefault);
break;
};
// request confirmation to draw from parent window
DWORD rvPreItemPaint = 0;
if (rvPrePaint & CDRF_NOTIFYITEMDRAW) {
rvPreItemPaint = CustomDrawNotify (hWnd, CDDS_ITEMPREPAINT, hDC, &rCell,
MAKELPARAM (column, row), state, (LPARAM) type);
if (rvPreItemPaint & 0x00400000) {
state |= CDIS_HOT;
};
};
if (!(rvPreItemPaint & CDRF_SKIPDEFAULT)) {
RECT r = rCell;
auto text = SendRequestNotify (hWnd, Request::Value, row, column, 0);
FillRect (hDC, &rCell, (HBRUSH) GetCurrentObject (hDC, OBJ_BRUSH));
switch (type) {
case CellType::Selection:
case CellType::MultipleSelection:
DrawComboBox (hComboboxTheme, hOldBitmap, hDC,
reinterpret_cast <const wchar_t *> (text),
r, state);
break;
case CellType::Inactive:
case CellType::Grayed:
case CellType::Text:
case CellType::MenuItem:
// case CellType::RealNumber: // DT_RIGHT
// case CellType::DecimalNumber: // DT_RIGHT
// case CellType::MonetaryValue: // DT_RIGHT
if (text) {
r.left += 6; // TODO: padding as settings?
r.right -= 6;
DrawCellText (hDC, reinterpret_cast <const wchar_t *> (text), r);
};
break;
case CellType::Checkbox:
DrawCheckBox (hButtonTheme, hDC, text, r, state);
// GetThemeTransitionDuration // for XP return 0
break;
};
};
// post paint notifications
DWORD rvPostItemPaint = 0;
if (rvPreItemPaint & CDRF_NOTIFYPOSTPAINT) {
rvPostItemPaint = CustomDrawNotify (hWnd, CDDS_ITEMPOSTPAINT, hDC, &rCell,
MAKELPARAM (column, row), state, (LPARAM) type);
};
if (!(rvPreItemPaint & CDRF_SKIPPOSTPAINT) && !(rvPostItemPaint & CDRF_SKIPPOSTPAINT)) {
switch (type) {
case CellType::Checkbox:
if (!(rvPrePaint & CDRF_SKIPPOSTPAINT)) {
if (GetFocus () == hWnd && (state & CDIS_FOCUS)) {
RECT rFocus = rCell;
rFocus.left += 1;
rFocus.top += 1;
rFocus.right -= 2;
rFocus.bottom -= 1;
if (!(LOWORD (SendMessage (hWnd, WM_QUERYUISTATE, 0,0))
& UISF_HIDEFOCUS)) {
DrawFocusRect (hDC, &rFocus);
};
};
};
break;
case CellType::MenuItem:
case CellType::Selection:
case CellType::MultipleSelection:
break;
default:
if (GetFocus () == hWnd
|| GetFocus () == GetDlgItem (hWnd, 3)
|| GetFocus () == GetDlgItem (hWnd, 4)) {
UINT mask = CDIS_SELECTED | CDIS_FOCUS | CDIS_MARKED;
if (GetWindowLongPtr (hWnd, GWL_STYLE) & Style::HotTrack) {
mask |= CDIS_HOT;
};
if (state & mask) {
POINT frame [] = {
{ rCell.left, rCell.bottom },
{ rCell.right, rCell.bottom },
{ rCell.right, rCell.top },
{ rCell.left, rCell.top },
{ rCell.left, rCell.bottom }
};
COLORREF color = 0;
if (state & CDIS_FOCUS) {
// do not paint for checkbox
color = GetSysColor (COLOR_WINDOWFRAME);
} else
if (state & CDIS_SELECTED) {
color = GetSysColor (COLOR_HOTLIGHT);
} else
if (state & CDIS_HOT) {
// TODO: mix hotlight with 3dface?
color = GetSysColor (COLOR_HIGHLIGHT);
} else
if (state & CDIS_MARKED) {
color = 0x00007F00;
};
COLORREF prev = SetDCPenColor (hDC, color);
Polyline (hDC, frame, sizeof frame / sizeof frame [0]);
SetDCPenColor (hDC, prev);
};
};
break;
};
};
++n;
};
};
};
};
};
if (hOldBitmap) {
DeleteObject (hOldBitmap);
};
if (hButtonTheme) {
UxTheme::Close (hButtonTheme);
};
if (hComboboxTheme) {
UxTheme::Close (hComboboxTheme);
};
// Fill right and bottom border (if any)
if (maxx < rc.right) {
RECT rRightWhite = { maxx, rc.top, rc.right, rc.bottom };
FillRect (hDC, &rRightWhite, hListBoxBrush);
};
if (maxy < rc.bottom) {
RECT rBottomWhite = { rc.left, maxy, maxx, rc.bottom };
FillRect (hDC, &rBottomWhite, hListBoxBrush);
};
};
if (rvPrePaint & CDRF_NOTIFYPOSTPAINT) {
CustomDrawNotify (hWnd, CDDS_POSTPAINT, hDC, &rc);
};
for (auto i = 0u; i != sizeof hPrevious / sizeof hPrevious [0]; ++i) {
if (hPrevious [i])
SelectObject (hDC, hPrevious [i]);
};
if (hBuffered)
UxTheme::EndBufferedPaint (hBuffered);
return 0;
};
RECT FindCellRect (HWND hWnd, UINT item, UINT column) {
RECT r = { -1, -1, -1, -1 };
if (item != -1u && column != -1u) {
if (HWND hHeader = GetDlgItem (hWnd, 1)) {
if (Header_GetItemRect (hHeader, column, &r)) {
auto xoff = GetScrollPos (hWnd, SB_HORZ);
auto height = GetWindowExtra (hWnd, &Data::row_height);
r.top = GetHeaderHeight (hWnd) + (item * height) - GetScrollPos (hWnd, SB_VERT);
r.left -= xoff;
r.right -= xoff;
r.bottom = r.top + height;
};
};
};
return r;
};
LRESULT ActionOnCell (HWND hWnd, UINT message, WPARAM wParam, SHORT x, SHORT y,
UINT row, UINT column, const RECT & r) {
auto type = (CellType) SendRequestNotify (hWnd, Request::Type, row, column);
switch (type) {
case CellType::Inactive:
case CellType::Grayed:
return false;
case CellType::Selection:
case CellType::MultipleSelection:
switch (message) {
case WM_KEYUP:
case WM_KEYDOWN:
case WM_LBUTTONDOWN:
case WM_LBUTTONDBLCLK: {
if (HWND h = GetDlgItem (hWnd, 4u)) {
switch (message) {
case WM_LBUTTONDOWN:
case WM_LBUTTONDBLCLK: {
if (row == GetWindowExtra (hWnd, &Data::close_item))
if (column == GetWindowExtra (hWnd, &Data::close_column))
if (GetTickCount () - GetWindowExtra (hWnd, &Data::close_t) < 30u)
return false;
} break;
};
UINT overflow = 4u;
UINT wndheight = GetControlSize (hWnd) .cy;
UINT hdrheight = GetHeaderHeight (hWnd);
{ HDITEM item;
item.mask = HDI_WIDTH;
item.cxy = 0;
SendMessage (h, HDM_SETITEM, 0, (LPARAM) &item);
item.cxy = r.right - r.left - GetSystemMetrics (SM_CXVSCROLL) + 2 * overflow - 2;
SendMessage (h, HDM_SETITEM, 0, (LPARAM) &item);
};
UINT height = (wndheight - 2 * hdrheight) / 2u;
UINT full = GetWindowExtra (hWnd, &Data::row_height)
* SendRequestNotify (hWnd, Request::Depth, row, column);
if (height > full)
height = full;
height += 3; // borders
SendMessage (h, Message::SetCurrent, -1, -1); // TODO: find current option, if any
int x;
int y;
if (r.bottom - overflow + height > wndheight) {
x = r.left - overflow;
y = r.top + overflow - height;
} else {
x = r.left - overflow;
y = r.bottom - overflow;
};
SetWindowPos (h, HWND_TOP, x, y,
r.right - r.left + 2 * overflow, height,
SWP_SHOWWINDOW);
x += GetScrollPos (hWnd, SB_HORZ);
y += GetScrollPos (hWnd, SB_VERT);
SetWindowExtra (hWnd, &Data::anchor_x, x);
SetWindowExtra (hWnd, &Data::anchor_y, y);
SetFocus (h);
};
} break;
};
break;
case CellType::MenuItem:
switch (message) {
case WM_KEYUP:
case WM_KEYDOWN:
case WM_LBUTTONDOWN:
case WM_LBUTTONDBLCLK: {
auto response = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * 16);
if (response) {
_snwprintf (response, 16, L"%u", row);
if (!SendChangeNotify (hWnd, row, column, response)) {
HeapFree (hHeap, 0, response);
};
};
} break;
};
break;
case CellType::Text:
switch (message) {
case WM_KEYDOWN:
SendEditBoxChangeNotify (hWnd);
case WM_SETFOCUS:
case WM_LBUTTONDOWN:
case WM_RBUTTONDOWN:
case WM_LBUTTONDBLCLK:
case WM_RBUTTONDBLCLK:
if (HWND h = GetDlgItem (hWnd, 3u)) {
if (GetWindowLong (hWnd, GWL_STYLE) & Shadow::Grid::Style::LiveUpdate) {
SetWindowExtra (hWnd, &Data::change, -1u);
} else {
SetWindowExtra (hWnd, &Data::change, 0u);
};
if (auto value = (const wchar_t *) SendRequestNotify (hWnd, Request::Value, row, column)) {
SetWindowText (h, value);
} else {
SetWindowText (h, L"");
};
SendMessage (h, EM_SETLIMITTEXT, SendRequestNotify (hWnd, Request::Limit, row, column), 0);
SetWindowPos (h, HWND_TOP, r.left + 3, r.top + 3, r.right - r.left - 6, r.bottom - r.top - 6, SWP_SHOWWINDOW);
SetWindowExtra (hWnd, &Data::anchor_x, (int) (r.left + 3 + GetScrollPos (hWnd, SB_HORZ)));
SetWindowExtra (hWnd, &Data::anchor_y, (int) (r.top + 3 + GetScrollPos (hWnd, SB_VERT)));
switch (message) {
case WM_KEYDOWN:
case WM_SETFOCUS:
SendMessage (h, EM_SETSEL, 0, -1);
break;
case WM_LBUTTONDOWN:
case WM_RBUTTONDOWN:
SendMessage (h, message, wParam,
MAKELPARAM ((x - r.left), (y - r.top)));
break;
case WM_LBUTTONDBLCLK:
SendMessage (h, WM_LBUTTONDOWN, wParam,
MAKELPARAM ((x - r.left), (y - r.top)));
break;
case WM_RBUTTONDBLCLK:
SendMessage (h, WM_RBUTTONDOWN, wParam,
MAKELPARAM ((x - r.left), (y - r.top)));
break;
};
};
break;
};
break;
case CellType::Checkbox:
switch (message) {
case WM_KEYUP:
case WM_KEYDOWN:
case WM_LBUTTONDOWN:
case WM_LBUTTONDBLCLK:
auto value = (unsigned int) SendRequestNotify (hWnd, Request::Value, row, column);
if (value != -1u && value > 0xFFFF) {
value = std::wcstol ((const wchar_t *) value, nullptr, 0);
};
if (value & 0x20) {
value &= ~0x20;
};
switch (value) {
case 0u: value = 1u; break; // unchecked -> checked
case 1u: value = 0u; break; // checked -> unchecked
case 2u: value = 1u; break; // mixed -> checked
case 3u: value = 0u; break; // implicit -> unchecked
case 4u: value = 1u; break; // excluded -> checked
default:
return 0; // disabled checkbox -> do nothing
};
auto response = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * 4);
if (response) {
_snwprintf (response, 4, L"%u", value);
if (!SendChangeNotify (hWnd, row, column, response)) {
// freeing only when returning zero
// - non-zero return means "moving from"
HeapFree (hHeap, 0, response);
};
};
return true;
};
break;
};
return true;
};
bool SendEditBoxChangeNotify (HWND hWnd) {
if (GetWindowExtra (hWnd, &Data::change) == 0u)
return false;
SetWindowExtra (hWnd, &Data::change, 0u);
if (HWND hEdit = GetDlgItem (hWnd, 3)) {
const unsigned int item = GetWindowExtra (hWnd, &Data::item);
const unsigned int column = GetWindowExtra (hWnd, &Data::column);
if (item != -1u && column != -1u) {
auto length = GetWindowTextLength (hEdit);
auto buffer = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * (length + 1));
if (buffer) {
if (!GetWindowText (hEdit, buffer, length + 1)) {
buffer [0] = 0;
};
if (!SendChangeNotify (hWnd,
GetWindowExtra (hWnd, &Data::item),
GetWindowExtra (hWnd, &Data::column),
buffer)) {
// freeing only when returning zero
// - non-zero return means "moving from"
HeapFree (hHeap, 0, buffer);
} else
return true;
};
};
};
return false;
};
LRESULT OnClick (HWND hWnd, UINT message, WPARAM wParam, SHORT x, SHORT y) {
auto cell = FindCell (hWnd, x, y);
auto rect = FindCellRect (hWnd, cell.first, cell.second);
if (!IsRectEmpty (&rect)) {
int code;
switch (message) {
default:
case WM_LBUTTONDOWN: code = NM_CLICK; break;
case WM_LBUTTONDBLCLK: code = NM_DBLCLK; break;
case WM_RBUTTONDOWN: code = NM_RCLICK; break;
case WM_RBUTTONDBLCLK: code = NM_RDBLCLK; break;
};
if (!SendMouseNotify (hWnd, code, cell.first, cell.second, { x, y })) {
if ((message == WM_LBUTTONDOWN) && (wParam & MK_CONTROL)) {
// TODO: validate type?
SetWindowExtra (hWnd, &Data::drag_item, cell.first);
SetWindowExtra (hWnd, &Data::drag_column, cell.second);
InvalidateRect (hWnd, &rect, FALSE);
} else {
// TODO: Set focus for not-inactive and not-text cells
//SetFocus (hWnd);
if (ActionOnCell (hWnd, message, wParam, x, y, cell.first, cell.second, rect)) {
auto previtem = SetWindowExtra (hWnd, &Data::item, cell.first);
auto prevcolumn = SetWindowExtra (hWnd, &Data::column, cell.second);
auto prev = FindCellRect (hWnd, previtem, prevcolumn);
InvalidateRect (hWnd, &prev, FALSE);
SendEnterNotify (hWnd, cell.first, cell.second);
};
if (!ScrollRectToView (hWnd, rect)) {
InvalidateRect (hWnd, &rect, FALSE);
};
};
};
};
return 0;
};
LRESULT OnClickUp (HWND hWnd, UINT message, WPARAM wParam, SHORT x, SHORT y) {
// invalidate cell under mouse
auto cell = FindCell (hWnd, x, y);
auto rect = FindCellRect (hWnd, cell.first, cell.second);
if (!IsRectEmpty (&rect)) {
if (message == WM_LBUTTONUP) {
auto item = GetWindowExtra (hWnd, &Data::drag_item);
auto column = GetWindowExtra (hWnd, &Data::drag_column);
auto drag = FindCellRect (hWnd, item, column);
SetWindowExtra (hWnd, &Data::drag_item, -1);
SetWindowExtra (hWnd, &Data::drag_column, -1);
if (!IsRectEmpty (&drag)) {
InvalidateRect (hWnd, &drag, FALSE);
};
if (item != -1u && column != -1u && (wParam & MK_CONTROL)) {
if (item != cell.first || column != cell.second) {
if ((wParam & MK_SHIFT) && (column == cell.second)) {
// drag many
auto first = std::min (item, cell.first);
auto last = std::max (item, cell.first);
for (auto i = first; i != last + 1; ++i) {
if (i != item) {
if (!SendDragNotify (hWnd, item, column, i, cell.second)) {
wchar_t * response = nullptr;
auto value = (unsigned int) SendRequestNotify (hWnd, Request::Value, item, column);
if (value == -1u || value <= 0xFFFF) {
response = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * 8);
_snwprintf (response, 8, L"%d", value);
} else {
auto str = (const wchar_t *) value;
auto len = std::wcslen (str) + 1;
response = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * len);
_snwprintf (response, len, L"%s", str);
};
if (response) {
if (!SendChangeNotify (hWnd, i, cell.second, response)) {
// freeing only when returning zero
// - non-zero return means "moving from"
HeapFree (hHeap, 0, response);
};
};
};
};
};
InvalidateRect (hWnd, NULL, FALSE);
} else {
// drag single item
if (!SendDragNotify (hWnd, item, column, cell.first, cell.second)) {
wchar_t * response = nullptr;
auto value = (unsigned int) SendRequestNotify (hWnd, Request::Value, item, column);
if (value == -1u || value <= 0xFFFF) {
response = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * 8);
_snwprintf (response, 8, L"%d", value);
} else {
auto str = (const wchar_t *) value;
auto len = std::wcslen (str) + 1;
response = (wchar_t *) HeapAlloc (hHeap, 0, sizeof (wchar_t) * len);
_snwprintf (response, len, L"%s", str);
};
if (response) {
if (!SendChangeNotify (hWnd, cell.first, cell.second, response)) {
// freeing only when returning zero
// - non-zero return means "moving from"
HeapFree (hHeap, 0, response);
};
};
};
InvalidateRect (hWnd, &rect, FALSE);
};
};
return 0;
};
};
// else handle action
ActionOnCell (hWnd, message, wParam, x, y, cell.first, cell.second, rect);
InvalidateRect (hWnd, &rect, FALSE);
};
return 0;
};
LRESULT OnMouseMove (HWND hWnd, SHORT x, SHORT y) {
auto hotitem = GetWindowExtra (hWnd, &Data::hot_item);
auto hotcolumn = GetWindowExtra (hWnd, &Data::hot_column);
if ((x == -1) && (y == -1)) {
auto hotitem = GetWindowExtra (hWnd, &Data::hot_item);
auto hotcolumn = GetWindowExtra (hWnd, &Data::hot_column);
SetWindowExtra (hWnd, &Data::hot_item, -1u);
SetWindowExtra (hWnd, &Data::hot_column, -1u);
SendTrackNotify (hWnd, -1u, -1u);
RECT r = FindCellRect (hWnd, hotitem, hotcolumn);
InvalidateRect (hWnd, &r, FALSE);
} else {
auto hotnew = FindCell (hWnd, x, y);
if (hotitem != hotnew.first || hotcolumn != hotnew.second) {
RECT rPre = FindCellRect (hWnd, hotitem, hotcolumn);
RECT rNew = FindCellRect (hWnd, hotnew.first, hotnew.second);
SetWindowExtra (hWnd, &Data::hot_item, hotnew.first);
SetWindowExtra (hWnd, &Data::hot_column, hotnew.second);
SendTrackNotify (hWnd, hotnew.first, hotnew.second);
InvalidateRect (hWnd, &rPre, FALSE);
InvalidateRect (hWnd, &rNew, FALSE);
};
if (hotnew.first != -1u && hotnew.second != -1u) {
UINT type = SendRequestNotify (hWnd, Request::Type,
hotnew.first, hotnew.second, 0);
switch ((CellType) type) {
case CellType::Inactive:
case CellType::Grayed:
case CellType::Checkbox:
case CellType::MenuItem:
SetCursor (hArrowCursor);
break;
case CellType::Selection:
case CellType::MultipleSelection:
if (GetKeyState (VK_CONTROL) & 0x8000) {
SetCursor (hDragCtrCursor);
} else {
SetCursor (hArrowCursor);
};
break;
case CellType::Text:
if (GetKeyState (VK_CONTROL) & 0x8000) {
SetCursor (hDragCtrCursor);
} else {
SetCursor (hTextCursor);
};
break;
};
} else {
SetCursor (hArrowCursor);
};
TrackMouseEvent (hWnd, TME_LEAVE);
};
return 0;
};
void SimulateMouseMove (HWND hWnd) {
POINT pt;
if (GetCursorPos (&pt)) {
if (ScreenToClient (hWnd, &pt)) {
OnMouseMove (hWnd, pt.x, pt.y);
};
};
return;
};
LRESULT OnKeyActionOnCell (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
const unsigned int item = GetWindowExtra (hWnd, &Data::item);
const unsigned int column = GetWindowExtra (hWnd, &Data::column);
if ((item != -1u) && (column != -1u)) {
RECT r = FindCellRect (hWnd, item, column);
if (!IsRectEmpty (&r)) {
InvalidateRect (hWnd, &r, FALSE);
if (!(lParam & 0x40000000)) {
ActionOnCell (hWnd, message, wParam, 0, 0, item, column, r);
};
};
};
return 0;
};
LRESULT OnKeyDown (HWND hWnd, WPARAM wParam, LPARAM lParam) {
NMKEY nmKey = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), (UINT) NM_KEYDOWN },
wParam, (UINT) lParam
};
if (!SendMessage (GetParent (hWnd), WM_NOTIFY,
nmKey.hdr.idFrom, (LPARAM) &nmKey)) {
const unsigned int item = GetWindowExtra (hWnd, &Data::item);
const unsigned int column = GetWindowExtra (hWnd, &Data::column);
switch (wParam) {
case VK_SHIFT:
InvalidateRect (hWnd, NULL, FALSE);
break;
case VK_CONTROL:
if (!(lParam & 0x40000000)) {
SimulateMouseMove (hWnd);
};
break;
case VK_UP:
case VK_DOWN:
case VK_LEFT:
case VK_RIGHT:
if (item == -1u || column == -1u) {
// TODO: set first not-grayed cell active
SetActiveCell (hWnd, WM_KEYDOWN, 0u, 0u);
} else
switch (wParam) {
case VK_UP:
if (item > 0u) {
// TODO: iterate, find first activable
SetActiveCell (hWnd, WM_KEYDOWN, item - 1u, column);
};
break;
case VK_DOWN:
if (item < SendBasicNotify (hWnd, Request::Rows) - 1u) {
SetActiveCell (hWnd, WM_KEYDOWN, item + 1u, column);
};
break;
case VK_LEFT:
case VK_RIGHT:
int n = SendDlgItemMessage (hWnd, 1u, HDM_GETITEMCOUNT, 0, 0);
if (n > 0) {
if (int * index = (int *) HeapAlloc (hHeap, 0, n * sizeof (int))) {
if (SendDlgItemMessage (hWnd, 1u, HDM_GETORDERARRAY, n, (LPARAM) index)) {
for (int i = 0; i != n; ++i) {
if (index [i] == (int) column) {
switch (wParam) {
case VK_LEFT:
if (i > 0) {
SetActiveCell (hWnd, WM_KEYDOWN, item, index [i - 1]);
};
break;
case VK_RIGHT:
if (i < n - 1) {
SetActiveCell (hWnd, WM_KEYDOWN, item, index [i + 1]);
};
break;
};
break;
};
};
};
HeapFree (hHeap, 0, index);
};
};
break;
};
break;
case VK_TAB:
if (GetKeyState (VK_SHIFT) & 0x8000) {
if (item > 0) {
SetActiveCell (hWnd, WM_KEYDOWN, item - 1u, column);
};
} else {
if (item < SendBasicNotify (hWnd, Request::Rows) - 1u) {
SetActiveCell (hWnd, WM_KEYDOWN, item + 1u, column);
};
};
break;
case VK_SPACE:
case VK_RETURN:
UINT type = SendRequestNotify (hWnd, Request::Type, item, column);
switch ((CellType) type) {
case CellType::Inactive:
case CellType::Grayed:
break;
case CellType::Checkbox:
case CellType::MenuItem:
case CellType::Selection:
case CellType::MultipleSelection:
if (!(lParam & 0x40000000)) {
const unsigned int item = GetWindowExtra (hWnd, &Data::item);
const unsigned int column = GetWindowExtra (hWnd, &Data::column);
if ((item != -1u) && (column != -1u)) {
RECT r = FindCellRect (hWnd, item, column);
InvalidateRect (hWnd, &r, FALSE);
return OnKeyActionOnCell (hWnd, WM_KEYDOWN, wParam, lParam);
};
};
break;
case CellType::Text:
SetActiveCell (hWnd, WM_KEYDOWN, item, column);
break;
};
break;
};
};
return 0;
};
LRESULT OnKeyUp (HWND hWnd, WPARAM wParam, LPARAM lParam) {
switch (wParam) {
case VK_SHIFT:
InvalidateRect (hWnd, NULL, FALSE);
break;
case VK_CONTROL:
SimulateMouseMove (hWnd);
break;
case VK_SPACE:
case VK_RETURN:
return OnKeyActionOnCell (hWnd, WM_KEYUP, wParam, lParam);
};
return 0;
};
LRESULT OnChar (HWND, WPARAM, LPARAM) {
return 0;
};
bool ScrollRectToView (HWND hWnd, const RECT & r) {
SCROLLINFO si;
si.cbSize = sizeof si;
si.fMask = SIF_PAGE | SIF_POS;
bool moved = false;
if (GetScrollInfo (hWnd, SB_HORZ, &si)) {
if (r.left < 0) {
OnHorizontalScroll (hWnd, 0xFFFF, r.left);
moved = true;
} else
if (r.right >= (int) si.nPage) {
OnHorizontalScroll (hWnd, 0xFFFF, r.right - si.nPage);
moved = true;
};
};
if (GetScrollInfo (hWnd, SB_VERT, &si)) {
int header = GetHeaderHeight (hWnd);
if (r.top < header) {
OnVerticalScroll (hWnd, 0xFFFF, r.top - header);
moved = true;
} else
if (r.bottom >= (int) si.nPage + header) {
OnVerticalScroll (hWnd, 0xFFFF, r.bottom - si.nPage - header);
moved = true;
};
};
if (moved) {
InvalidateRect (hWnd, NULL, FALSE);
};
return moved;
};
bool SetActiveCell (HWND hWnd, UINT message, UINT item, UINT column) {
// remove previous editor
const unsigned int previous_item = GetWindowExtra (hWnd, &Data::item);
const unsigned int previous_column = GetWindowExtra (hWnd, &Data::column);
if ((previous_item != -1u) && (previous_column != -1u)) {
RECT r = FindCellRect (hWnd, previous_item, previous_column);
InvalidateRect (hWnd, &r, FALSE);
};
// set new, if any
if ((item != -1u) && (column != -1u)) {
UINT type = SendRequestNotify (hWnd, Request::Type, item, column, 0);
RECT r = FindCellRect (hWnd, item, column);
ScrollRectToView (hWnd, r);
// activate
switch ((CellType) type) {
case CellType::Inactive:
case CellType::Grayed:
ShowWindow (GetDlgItem (hWnd, 3), SW_HIDE);
return false;
case CellType::Checkbox:
case CellType::Selection:
case CellType::MultipleSelection:
ShowWindow (GetDlgItem (hWnd, 3), SW_HIDE);
break;
case CellType::Text:
ActionOnCell (hWnd, message, 0, 0, 0, item, column,
FindCellRect (hWnd, item, column));
SetFocus (GetDlgItem (hWnd, 3));
break;
case CellType::MenuItem:
// case CellType::DecimalNumber:
// case CellType::RealNumber:
// case CellType::MonetaryValue:
ShowWindow (GetDlgItem (hWnd, 3), SW_HIDE);
break;
};
SetWindowExtra (hWnd, &Data::item, item);
SetWindowExtra (hWnd, &Data::column, column);
InvalidateRect (hWnd, &r, FALSE);
SendEnterNotify (hWnd, item, column);
};
return true;
};
void UpdateGridControlPos (HWND hWnd) {
auto hHeader = GetDlgItem (hWnd, 1);
auto x = GetWindowExtra (hWnd, &Data::anchor_x) - GetScrollPos (hWnd, SB_HORZ);
auto y = GetWindowExtra (hWnd, &Data::anchor_y) - GetScrollPos (hWnd, SB_VERT);
for (const auto & idCtrl : { 3, 4 }) {
if (HWND hCtrl = GetDlgItem (hWnd, idCtrl)) {
if (IsWindowVisible (hCtrl)) {
SetWindowPos (hCtrl, hHeader, x, y, 0, 0,
SWP_SHOWWINDOW | SWP_NOCOPYBITS | SWP_NOSIZE);
};
};
};
return;
};
LRESULT OnHorizontalScroll (HWND hWnd, UINT event, int n) {
SCROLLINFO si;
si.cbSize = sizeof si;
si.fMask = SIF_TRACKPOS | SIF_RANGE | SIF_PAGE | SIF_POS;
if (GetScrollInfo (hWnd, SB_HORZ, &si)) {
const int maximum = si.nMax - si.nPage + 1;
const int previous = si.nPos;
switch (LOWORD (event)) {
case SB_LEFT:
si.nPos = 0u;
break;
case SB_RIGHT:
si.nPos = maximum;
break;
case SB_PAGELEFT:
si.nPos -= si.nPage;
break;
case SB_PAGERIGHT:
si.nPos += si.nPage;
break;
case SB_LINELEFT:
si.nPos -= n * GetWindowExtra (hWnd, &Data::row_height);
break;
case SB_LINERIGHT:
si.nPos += n * GetWindowExtra (hWnd, &Data::row_height);
break;
case SB_THUMBTRACK:
if (si.nPos == si.nTrackPos) {
int target = GetScrollPos (hWnd, SB_HORZ);
if (std::abs (si.nPos - target) > 1) {
si.nPos = target;
};
} else
si.nPos = si.nTrackPos;
break;
case SB_THUMBPOSITION:
break;
case 0xFFFF:
si.nPos += (int) n;
break;
default:
return 0;
};
// ScrollBar bounds check
// - in order to keep the switch above clean
if (si.nPos < 0)
si.nPos = 0;
if (si.nPos > maximum)
si.nPos = maximum;
// Update scrollbar position
si.fMask = SIF_POS;
SetScrollInfo (hWnd, SB_HORZ, &si, TRUE);
// Scrolling window content
RECT r;
if (GetClientRect (hWnd, &r)) {
ScrollWindowEx (hWnd, previous - si.nPos, 0, &r, &r,
NULL, NULL, SW_INVALIDATE | SW_SCROLLCHILDREN);
};
UpdateGridControlPos (hWnd);
};
return 0;
};
LRESULT OnVerticalScroll (HWND hWnd, UINT event, int n) {
LRESULT result = 0;
SCROLLINFO si;
si.cbSize = sizeof si;
si.fMask = SIF_TRACKPOS | SIF_RANGE | SIF_PAGE | SIF_POS;
if (GetScrollInfo (hWnd, SB_VERT, &si)) {
RECT r;
GetClientRect (hWnd, &r);
const auto hh = GetHeaderHeight (hWnd);
const int maximum = si.nMax - si.nPage + 1;
const int previous = si.nPos;
switch (LOWORD (event)) {
case SB_TOP:
si.nPos = 0u;
break;
case SB_BOTTOM:
si.nPos = maximum;
break;
case SB_PAGEUP:
si.nPos -= r.bottom - hh;
break;
case SB_PAGEDOWN:
si.nPos += r.bottom - hh;
break;
case SB_LINEUP:
si.nPos -= n * GetWindowExtra (hWnd, &Data::row_height);
break;
case SB_LINEDOWN:
si.nPos += n * GetWindowExtra (hWnd, &Data::row_height);
break;
case SB_THUMBTRACK:
case SB_THUMBPOSITION:
si.nPos = si.nTrackPos;
break;
case 0xFFFF:
si.nPos += (int) n;
break;
default:
return 0;
};
// ScrollBar bounds check
// - in order to keep the switch above clean
if (si.nPos < 0)
si.nPos = 0;
if (si.nPos > maximum)
si.nPos = maximum;
si.fMask = SIF_POS;
SetScrollInfo (hWnd, SB_VERT, &si, TRUE);
// Scrolling window content
r.top = hh;
ScrollWindowEx (hWnd, 0, previous - si.nPos, &r, &r,
NULL, NULL, SW_INVALIDATE | SW_SCROLLCHILDREN);
UpdateGridControlPos (hWnd);
};
return result;
};
LRESULT OnHorizontalWheel (HWND hWnd, int distance, USHORT flags) {
distance += GetWindowExtra (hWnd, &Data::wheelH);
const unsigned int chars = GetSystemParameter <SPI_GETWHEELSCROLLCHARS> ();
while (distance >= +WHEEL_DELTA) {
distance -= WHEEL_DELTA;
OnHorizontalScroll (hWnd,
(flags & MK_CONTROL) ? SB_PAGERIGHT : SB_LINERIGHT,
chars);
};
while (distance <= -WHEEL_DELTA) {
distance += WHEEL_DELTA;
OnHorizontalScroll (hWnd,
(flags & MK_CONTROL) ? SB_PAGELEFT : SB_LINELEFT,
chars);
};
SetWindowExtra (hWnd, &Data::wheelH, (signed char) distance);
return 0;
};
LRESULT OnVerticalWheel (HWND hWnd, int distance, USHORT flags) {
distance += GetWindowExtra (hWnd, &Data::wheelV);
// SPI_GETWHEELSCROLLLINES
// - user setting on how many lines should scroll wheel actually scroll
// - -1u (WHEEL_PAGESCROLL == UINT_MAX) is specified to scroll the whole
// page and the same usually does holding CTRL, so do the same
const unsigned int lines = GetSystemParameter <SPI_GETWHEELSCROLLLINES> ();
while (distance >= +WHEEL_DELTA) {
distance -= WHEEL_DELTA;
if (lines == -1u || flags & MK_CONTROL) {
OnVerticalScroll (hWnd, SB_PAGEUP);
} else {
OnVerticalScroll (hWnd, SB_LINEUP, lines);
};
};
while (distance <= -WHEEL_DELTA) {
distance += WHEEL_DELTA;
if (lines == -1u || flags & MK_CONTROL) {
OnVerticalScroll (hWnd, SB_PAGEDOWN);
} else {
OnVerticalScroll (hWnd, SB_LINEDOWN, lines);
};
};
SetWindowExtra (hWnd, &Data::wheelV, (signed char) distance);
return 0;
};
UINT UpdateHorizontalScrollBar (HWND hWnd, UINT max, UINT page) {
if (!max) {
if (HWND hHeader = GetDlgItem (hWnd, 1)) {
UINT count = Header_GetItemCount (hHeader);
if (count != -1u) {
UINT index = Header_OrderToIndex (hHeader, count - 1u);
RECT r;
if (Header_GetItemRect (hHeader, index, &r)) {
max = r.right - 1;
};
};
};
};
if (!page) {
RECT r;
if (GetClientRect (hWnd, &r)) {
page = r.right;
};
};
SCROLLINFO si = {
sizeof si, SIF_PAGE | SIF_RANGE,
0, (int) max, page, 0, 0
};
if (!(GetWindowLongPtr (hWnd, GWL_STYLE) & WS_HSCROLL)) {
si.fMask |= SIF_DISABLENOSCROLL;
};
SetScrollInfo (hWnd, SB_HORZ, &si, TRUE);
return std::max (max, page);
};
#ifndef HDM_GETFOCUSEDITEM
#define HDM_GETFOCUSEDITEM (HDM_FIRST+27)
#endif
LRESULT CALLBACK HeaderSubclass (HWND hWnd, UINT message,
WPARAM wParam, LPARAM lParam) {
switch (message) {
case WM_KEYDOWN:
switch (wParam) {
case VK_ESCAPE:
SetFocus (GetParent (hWnd));
break;
case VK_DOWN:
SetActiveCell (GetParent (hWnd), message, 0u,
SendMessage (hWnd, HDM_GETFOCUSEDITEM, 0, 0));
break;
};
break;
};
return CallWindowProc ((WNDPROC) GetProp (hWnd, TEXT ("Shadow::Grid::Subclass")),
hWnd, message, wParam, lParam);
};
LRESULT CALLBACK EditorSubclass (HWND hWnd, UINT message,
WPARAM wParam, LPARAM lParam) {
switch (message) {
case WM_KEYDOWN:
switch (wParam) {
case VK_RETURN:
return OnKeyDown (GetParent (hWnd), VK_DOWN, lParam);
case VK_ESCAPE:
SetFocus (GetParent (hWnd));
return 0;
case VK_UP:
case VK_DOWN:
case VK_TAB:
return OnKeyDown (GetParent (hWnd), wParam, lParam);
case VK_LEFT:
case VK_RIGHT:
if (GetKeyState (VK_MENU) & 0x8000)
return OnKeyDown (GetParent (hWnd), wParam, lParam);
LRESULT length = SendMessage (hWnd, WM_GETTEXTLENGTH, 0, 0);
LRESULT selection = SendMessage (hWnd, EM_GETSEL, 0, 0);
if (LOWORD (selection) == HIWORD (selection)) {
if (wParam == VK_LEFT && LOWORD (selection) == 0) {
return OnKeyDown (GetParent (hWnd), wParam, lParam);
};
if (wParam == VK_RIGHT && LOWORD (selection) >= length) {
return OnKeyDown (GetParent (hWnd), wParam, lParam);
};
};
break;
};
break;
case WM_CHAR:
case WM_KEYUP:
switch (wParam) {
case VK_ESCAPE:
return 0;
};
break;
case WM_GETDLGCODE:
switch (wParam) {
case VK_RETURN:
case VK_ESCAPE:
return DLGC_WANTALLKEYS;
case VK_TAB:
auto parent = GetParent (hWnd);
if (GetWindowLongPtr (parent, GWL_STYLE) & Shadow::Grid::Style::WantTab) {
const unsigned int item = GetWindowExtra (parent, &Data::item);
if (GetKeyState (VK_SHIFT) & 0x8000) {
if (item > 0) {
return DLGC_WANTALLKEYS | DLGC_WANTTAB;
};
} else {
if (item < SendBasicNotify (parent, Request::Rows) - 1u) {
return DLGC_WANTALLKEYS | DLGC_WANTTAB;
};
};
};
break;
};
break;
};
return CallWindowProc ((WNDPROC) GetProp (hWnd, TEXT ("Shadow::Grid::Subclass")),
hWnd, message, wParam, lParam);
};
LRESULT SetSortOrder (HWND hWnd, WPARAM wParam, LPARAM lParam) {
HDITEM item;
memset (&item, 0, sizeof item);
item.mask = HDI_FORMAT;
if (SendDlgItemMessage (hWnd, 1, HDM_GETITEM, wParam, (LPARAM) &item)) {
item.fmt &= ~(HDF_SORTUP | HDF_SORTDOWN);
if (lParam > 0) item.fmt |= HDF_SORTUP;
if (lParam < 0) item.fmt |= HDF_SORTDOWN;
return SendDlgItemMessage (hWnd, 1, HDM_SETITEM, wParam, (LPARAM) &item);
};
return 0;
};
LRESULT GetSortOrder (HWND hWnd, WPARAM wParam, LPARAM) {
HDITEM item;
memset (&item, 0, sizeof item);
item.mask = HDI_FORMAT;
if (SendDlgItemMessage (hWnd, 1, HDM_GETITEM, wParam, (LPARAM) &item)) {
if (item.fmt & HDF_SORTUP) return +1;
if (item.fmt & HDF_SORTDOWN) return -1;
};
return 0;
};
LRESULT SendBasicNotify (HWND hWnd, UINT code) {
NMHDR nm = {
hWnd, (UINT) GetDlgCtrlID (hWnd), code
};
return SendMessage (GetParent (hWnd), WM_NOTIFY,
nm.idFrom, (LPARAM) &nm);
};
LRESULT CustomDrawNotify (HWND hWnd, DWORD stage, HDC hDC, LPCRECT rc,
UINT item, UINT state, LPARAM lParam) {
NMCUSTOMDRAW nmCustomDraw = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), (UINT) NM_CUSTOMDRAW },
stage, hDC, *rc, item, state, lParam
};
return SendMessage (GetParent (hWnd), WM_NOTIFY,
nmCustomDraw.hdr.idFrom, (LPARAM) &nmCustomDraw);
};
LRESULT SendRequestNotify (HWND hWnd, UINT rq, UINT row, UINT column, UINT index) {
if (column == -1u || row == -1u)
return 0;
NMRequest request = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), rq },
row, column, index
};
return SendMessage (GetParent (hWnd), WM_NOTIFY,
request.hdr.idFrom, (LPARAM) &request);
};
LRESULT SendPrefetchNotify (HWND hWnd, UINT rowA, UINT rowZ, UINT colA, UINT colZ) {
NMPrefetch prefetch = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), Request::Prefetch },
{ rowA, rowZ }, { colA, colZ }
};
return SendMessage (GetParent (hWnd), WM_NOTIFY,
prefetch.hdr.idFrom, (LPARAM) &prefetch);
};
LRESULT SendChangeNotify (HWND hWnd, UINT row, UINT column, const wchar_t * value) {
NMChange change = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), Request::Change },
row, column, value
};
return SendMessage (GetParent (hWnd), WM_NOTIFY,
change.hdr.idFrom, (LPARAM) &change);
};
LRESULT SendDragNotify (HWND hWnd, UINT row0, UINT col0, UINT row1, UINT col1) {
NMDrag drag = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), Request::Drag },
{ row0, col0 }, { row1, col1 }
};
return SendMessage (GetParent (hWnd), WM_NOTIFY,
drag.hdr.idFrom, (LPARAM) &drag);
};
LRESULT SendMouseNotify (HWND hWnd, UINT type,
DWORD_PTR i, DWORD_PTR c, const POINT &ptMouse) {
NMMOUSE nmMouse = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), type },
i, c, ptMouse, HTCLIENT
};
MapWindowPoints (hWnd, NULL, &nmMouse.pt, 1u);
return SendMessage (GetParent (hWnd), WM_NOTIFY,
nmMouse.hdr.idFrom, (LPARAM) &nmMouse);
};
LRESULT SendTrackNotify (HWND hWnd, UINT row, UINT column) {
NMTrack track = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), Request::Track },
row, column
};
return SendMessage (GetParent (hWnd), WM_NOTIFY,
track.hdr.idFrom, (LPARAM) &track);
};
LRESULT SendEnterNotify (HWND hWnd, UINT row, UINT column) {
NMTrack track = {
{ hWnd, (UINT) GetDlgCtrlID (hWnd), Request::Enter },
row, column
};
return SendMessage (GetParent (hWnd), WM_NOTIFY,
track.hdr.idFrom, (LPARAM) &track);
};
};
| [
"tringi@trimcore.cz"
] | tringi@trimcore.cz |
101ec5fc39c472708616607658d64be52916ed51 | 7cf342e7ab00ad52955d1427a69bfd80bb92d1fe | /MyML/Source/MyML/Public/MyCube.h | 51d8f4891e51b7d15102d88c9cfce2b50f6b7e62 | [] | no_license | FranciscoRamonAsensiDomingo/ML | 97a660da5a51e2ed2bb44a08685ca22e8cc8a756 | 67e245f5d0ae9fe499f6479afe731a1915db90e5 | refs/heads/master | 2022-04-16T06:36:02.291867 | 2020-02-24T10:57:57 | 2020-02-24T10:57:57 | 242,604,000 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,570 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "Containers/Array.h"
#include "../JsonStructs.h"
#include "GameFramework/SpringArmComponent.h"
#include "Engine.h"
#include "CollisionQueryParams.h"
#include "DrawDebugHelpers.h"
#include "CoreMinimal.h"
#include "GameFramework/Pawn.h"
#include "../NeuronalNetWork.h"
#include "MyCube.generated.h"
UCLASS()
class MYML_API AMyCube : public APawn
{
GENERATED_BODY()
public:
// Sets default values for this pawn's properties
AMyCube();
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
// Called to bind functionality to input
virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override;
UPROPERTY(EditAnywhere)
UStaticMeshComponent* OurVisibleActor;
UPROPERTY(EditAnywhere)
USpringArmComponent* OurCameraSpringArm;
UPROPERTY(EditAnywhere)
UCameraComponent* OurCamera;
UPROPERTY(EditAnywhere)
UBoxComponent* BoxComponent;
UPROPERTY(EditAnywhere)
UBoxComponent* Component;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube", meta = (UIMin = "0.0", UIMax = "1.0"))
float SmoothInput = 0.2f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube")
int StickNumber = 4;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube")
bool best = false;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube")
float amplitude = 90.f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube")
float VelocityX = 100.f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube")
float ActualVelocity = 0.f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube")
float Aceleration = 300.f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube")
float RotationVelocityPawn = 60.f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "cube")
float MaxDistance = 2000.f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "View")
float camera_velocity = 0.30f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "View")
float stick_velocity = 0.2f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "View")
float approach_velocity = 7.f;
FCollisionQueryParams CollisionParams;
UFUNCTION()
void OnCompHit(UPrimitiveComponent* HitComp, AActor* OtherActor, UPrimitiveComponent* OtherComp, FVector NormalImpulse, const FHitResult& Hit);
NeuronalNetWork nnetwork;
bool hit = false;
bool isPossessed = false;
void ResetMovement(FTransform transform, int initTarget);
void Change();
int lastTarget = 0;
float percentage;
int laps = 0;
float last_time_lap = 0;
float diversity = 0;
float fitness = 0;
void InitNet(TArray<int>topology);
bool drawLine = false;
void StartPossessing();
void StopPossessing();
float RotationPlayer;
TArray<float> Input;
private:
TArray<float> result;
float NNproportion;
float deltatime;
float time = 0;
void UpdateStick();
void UpdateLocation();
void UpdateRotation();
void UpdateCameraRotation();
void UpdateStickRotation();
void UpdateStickLength();
FRotator CameraRotation;
FRotator StickRotation;
FVector2D CameraInput;
FVector2D StickInput;
float StickDistance;
void Input_Approach(float AxisValue);
void Input_CameraPitch(float AxisValue);
void Input_CameraYaw(float AxisValue);
void Input_StickYaw(float AxisValue);
void Input_StickPitch(float AxisValue);
};
| [
"asensido@esat-alumni.com"
] | asensido@esat-alumni.com |
22ebc3ed2f1d11d243cbf79171098a08b936232a | 11bd53364f8212f8c188a4f9d88b8539b08452cf | /FileSystem.h | 2b2f6d134019151422766181f9b6781513690343 | [] | no_license | ondra-vaic/Zos | 0e50580560b8ff9092205d027c8ae1c7e2be03c9 | 6cec47eb8a7296c6df0dae75969ba9fc53509933 | refs/heads/master | 2022-11-18T12:46:21.445273 | 2020-06-28T14:04:31 | 2020-06-28T14:04:31 | 233,320,080 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,827 | h | //
// Created by me on 1/10/20.
//
#ifndef ZOS_FILESYSTEM_H
#define ZOS_FILESYSTEM_H
#include <vector>
#include <string>
#include <functional>
#include <map>
#include "SuperBlock.h"
#include "DirectoryItem.h"
#include "Bitmap.h"
#include "PseudoInode.h"
using namespace std;
const int32_t CLUSTER_SIZE_B = 512 * 8;
const int32_t FILE_EXPECTED_MIN_SIZE = 2 * 1024;
const int32_t NUM_DIRECT_IN_CLUSTER = CLUSTER_SIZE_B / 4;
const int32_t MAX_FILE_SIZE = 5 * CLUSTER_SIZE_B +
NUM_DIRECT_IN_CLUSTER * CLUSTER_SIZE_B +
NUM_DIRECT_IN_CLUSTER * NUM_DIRECT_IN_CLUSTER * CLUSTER_SIZE_B;
class FileSystem {
private:
bool format(const vector<string>& params);
bool list(const vector<string>& params);
bool mkdir(const vector<string>& params);
bool cd(const vector<string>& params);
bool incp(const vector<string>& params);
bool outcp(const vector<string>& params);
bool load(const vector<string>& params);
bool pwd(const vector<string>& params);
bool info(const vector<string>& params);
bool cat(const vector<string>& params);
bool rmdir(const vector<string>& params);
bool rm(const vector<string>& params);
bool mv(const vector<string>& params);
bool cp(const vector<string>& params);
bool check(const vector<string>& params);
bool corrupt(const vector<string>& params);
bool corrupt2(const vector<string>& params);
vector<int32_t> getReferencedClusters(int32_t inode);
vector<int32_t> getAllInodeAddresses();
bool setFirstEmptyReferenceTo(int32_t parent, int32_t address, int32_t size);
void removeDirectoryItemReferenceAt(int32_t parentInodeAddress, int32_t address);
void cleanInode(int32_t inodeAddress);
string getFileContents(int32_t fileInodeAddress);
int32_t allocateIndirect();
int32_t allocateCluster();
int32_t allocateInode();
void freeInode(int32_t address);
void freeCluster(int32_t address);
void bindCommands();
void loadStructures();
bool fileFitsInClusters(int32_t size);
bool canCreateFile(int32_t size);
bool getParentDirectoryAtPath(string& path, DirectoryItem& file);
bool getFileInDirectory(DirectoryItem directory, const string& fileName, DirectoryItem& file);
string getCurrentPathDescriptor();
PseudoInode getCurrentDirInode();
int32_t createNewFile(int32_t parentDirectoryInodeAddress, const string& fileName);
bool fileExist(const string& fileName, int32_t parentDirInodeAddress);
bool isDirectory(int32_t inodeAddress);
map<string, function<bool(vector<string>)>> commandMap;
SuperBlock superBlock;
DirectoryItem root;
DirectoryItem currentDir;
Bitmap inodeBitmap;
Bitmap clusterBitmap;
string name;
public:
explicit FileSystem(char* name);
void Run();
};
#endif //ZOS_FILESYSTEM_H
| [
"ondra.vaic@gmail.com"
] | ondra.vaic@gmail.com |
983bb200a09912e449765d2dce7a1e41ac8eee01 | e91f216ea2cf9f2ecf2a770ebc6334d7034cbf94 | /camp/3/1525퍼즐.cpp | 88f80f658d8e02fb8392da91a423881990cde169 | [] | no_license | HelloMandu/OnlineJudge | 4c870a737ba8c479adf0f7763ca38afd7761e9a3 | 2dd0abc4066fd0b1f28346f8913ece88167eee99 | refs/heads/master | 2023-01-09T22:53:27.036594 | 2022-12-28T09:38:39 | 2022-12-28T09:38:39 | 168,956,239 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,189 | cpp | #include<bits/stdc++.h>
using namespace std;
string str;
int dy[4] = { -1, 0, 1, 0 };
int dx[4] = { 0, 1, 0, -1 };
bool isRange(int y, int x){
return y < 3 && y >= 0 && x < 3 && x >= 0;
}
int traverse(){
queue<pair<string, int> > Queue;
set<string> Set;
Queue.push(make_pair(str, 0));
Set.insert(str);
while(!Queue.empty()){
pair<string, int> cur = Queue.front(); Queue.pop();
if(cur.first == "123456780"){
return cur.second;
}
int zeroIdx = cur.first.find('0');
int y = zeroIdx / 3, x = zeroIdx % 3;
for(int i = 0; i < 4; i++){
int nextY = y + dy[i];
int nextX = x + dx[i];
if(isRange(nextY, nextX)){
string temp = cur.first;
swap(temp[y * 3 + x], temp[nextY * 3 + nextX]);
if(Set.find(temp) == Set.end()){
Queue.push(make_pair(temp, cur.second + 1));
Set.insert(temp);
}
}
}
}
return -1;
}
int main(){
for(int i = 0; i < 9; i++){
char c;
cin >> c;
str += c;
}
cout << traverse();
return 0;
} | [
"tjdals6695@gmail.com"
] | tjdals6695@gmail.com |
397809cb64329f1687ac4ed63cb964427fd4268b | 14a5a94d073ac0c75be37aaa1e3ca1a231ac6cc7 | /Zrodla/MAIN/stdafx.cpp | 91f576959cd29c1de01b67d32906829b4a5d45b4 | [] | no_license | Akshei/JA.K_Tytko_PodmianaSlow | 60b7fd6fbcef26e05aecb59c098255862a2a605e | 717094470b66b0d4162933505a4814d166c41916 | refs/heads/master | 2020-04-06T04:53:00.115512 | 2017-01-04T13:07:58 | 2017-01-04T13:07:58 | 73,635,467 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 302 | cpp | // stdafx.cpp : source file that includes just the standard includes
// JA.K_Tytko_PodmianaSlow.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"karotyt226@student.polsl.pl"
] | karotyt226@student.polsl.pl |
529ae4f7b5434fef2362d4e0b04063746d99a557 | c3d1104b79303e4901cde679670b24a2e47cc0fd | /2048/game.h | 52caae5190d892c8e7d1522f69ac96a2c39d155a | [] | no_license | thib31/2048 | c1c156269ea4a26f4e254cccd36c980c3859fe4b | 56755bf47bbbbdebd991a41adebebe9636d1c97c | refs/heads/master | 2022-04-25T02:43:45.533935 | 2020-04-27T16:23:25 | 2020-04-27T16:23:25 | 252,261,205 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,001 | h | #ifndef GAME_H
#define GAME_H
#include <QObject>
#include <vector>
using namespace std;
class game : public QObject
{
Q_OBJECT
public:
explicit game(QObject *parent = nullptr);
Q_INVOKABLE void nouvPartie(); // Fonction qui initialise le jeu / remet à zero
Q_PROPERTY(QStringList valQML READ readVal NOTIFY gameChanged)
Q_PROPERTY(QStringList colQML READ readCol NOTIFY gameChanged)
Q_PROPERTY(QStringList templateQML READ readTemplate NOTIFY gameChanged)
Q_PROPERTY(QStringList partiesQML READ readParties NOTIFY listePartieChanged)
Q_PROPERTY(QList<bool> valFin READ readFin NOTIFY gameChanged)
QStringList readVal(); // Valeurs des cases
QStringList readCol(); // Couleurs des cases
QStringList readTemplate(); // Informations sur le template : détaillées dans game.cpp
QStringList readParties(); // Liste des parties sauvegardées
QList<bool> readFin();
Q_INVOKABLE void precedent(); // Fonction permettant de revenir à l'étape précédente
Q_INVOKABLE void suivant(); // Pour passer à l'étape suivante
Q_INVOKABLE void deplacement(int dir_i, int dir_j); // Instruction de mouvement
void traiteListe(int atraiter[]); // Chaque ligne ou colonne est transformée en ligne, selon la direction à traiter
void condense(int atraiter[]); // "Plaque" les éléments sur le bord
void fusionne(int atraiter[]); // Effectue les combinaisons possibles
void recupDamier(); // Crée une copie du damier, pour garder l'ancien en mémoire
Q_INVOKABLE void closeFin(int i); // Referme la fenêtre qui s'affiche lors que la partie est perdue ou gagnée
// Fonctions de gestion des enregistrements
Q_INVOKABLE int enregistrePartie(QString nom, bool force);
Q_INVOKABLE void chargePartie(QString nom);
Q_INVOKABLE void deletePartie(QString nom);
void getNomPartie(); // Crée la liste des parties enregistrées
bool rechPartie(string nom); // Recherche l'existence d'un doublon
// Choix de la police
Q_INVOKABLE void changePolice(QString police);
private:
vector<int**> T; // Contient la liste des positions dans le jeu (on stocke uniquement les exposants)
int** Damier; // Element de travail
int etape; // Indice de Damier dans T
int taille; // Taille du jeu, pour amélioration ultérieure du code
string* couleur;
QStringList Damier_valeurs; // Damier envoyé à l'interface QML, contenant les valeurs à afficher
QStringList Damier_couleurs; // Damier envoyé à l'interface QML, contenant les couleurs des cases
QStringList templateQML; // Damier envoyé à l'interface QML, contenant les informations du template
QStringList nomsParties; // Damier envoyé à l'interface QML, contenant les noms des parties enregistrées
QList<bool> valFin; // Contient l'état des 2 fenêtres de fin de partie : perdu ou gagné
// Répertoire des fichiers txt
string const nomFichier=("C:/Users/thilv/Desktop/2048/2048/Fichiers/partiesEnregistrees.txt"); // Fichier de stockage des parties
string const tempFichier=("C:/Users/thilv/Desktop/2048/2048/Fichiers/Temp.txt"); // Fichier provisoire, utilisé pour modifier le fichier précédent
string storagePath=("C:/Users/thilv/Desktop/2048/2048");
signals:
void gameChanged(); // Modification du damier
void listePartieChanged(); // Modification de la liste des parties enregistrées
};
#endif // GAME_H
| [
"thilvig@gmail.com"
] | thilvig@gmail.com |
85a159e552b6dab2dc28e3b5bc1c9f71b405d56e | 28b02bae144ae7c0a1d899f679436c2051b7ae87 | /Plugins/Marketplace/ShapefileReader/Source/ShapefileLib/Private/ShapefileObject.cpp | f9c8155337c9b7ea5d1394fc5411b5303a6a18d4 | [] | no_license | GitGhibli/MultiThreadReadUE4 | 5d3a5d69471c56093ac53e4a56b446d52beca5ca | bc55af42d004db8e965fe771cbe3d3358ea0d6fb | refs/heads/master | 2020-05-23T21:04:53.935026 | 2019-05-15T06:38:00 | 2019-05-15T06:38:00 | 186,945,071 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,586 | cpp | // Copyright (c) 2018 Isara Technologies. All Rights Reserved.
#include "ShapefileObject.h"
#include "ShapefileHandler.h"
void UShapefileObject::SetObject(SHPObject* object)
{
_object = object;
ShapefileType = UShapefileHandler::IntToShapefileType(_object->nSHPType);
ShapeId = _object->nShapeId;
for(int i = 0 ; i < _object->nVertices ; i++)
{
Vertices.Add(FVector4(_object->padfX[i], _object->padfY[i], _object->padfZ[i], _object->padfM[i]));
}
// Iteare through parts
for(int i = 0 ; i < _object->nParts ; i++)
{
FObjectPart Part;
Part.Type = IntToShapefilePartType(_object->panPartType[i]);
const int endVertex = (i == _object->nParts - 1) ? _object->nVertices : _object->panPartStart[i + 1];
for(int j = _object->panPartStart[i] ; j < endVertex ; j++)
{
Part.Vertices.Add(Vertices[j]);
}
Parts.Add(Part);
}
MinBound = FVector4(_object->dfXMin, _object->dfYMin, _object->dfZMin, _object->dfMMin);
MaxBound = FVector4(_object->dfXMax, _object->dfYMax, _object->dfZMax, _object->dfMMax);
}
void UShapefileObject::Close() const
{
SHPDestroyObject(_object);
}
EShapefilePartType UShapefileObject::IntToShapefilePartType(int type)
{
switch(type)
{
case SHPP_TRISTRIP: return EShapefilePartType::TRISTRIP;
case SHPP_TRIFAN: return EShapefilePartType::TRIFAN;
case SHPP_OUTERRING: return EShapefilePartType::OUTERRING;
case SHPP_INNERRING: return EShapefilePartType::INNERRING;
case SHPP_FIRSTRING: return EShapefilePartType::FIRSTRING;
case SHPP_RING: return EShapefilePartType::RING;
default: return EShapefilePartType::RING;
}
}
| [
"39234575+GitGhibli@users.noreply.github.com"
] | 39234575+GitGhibli@users.noreply.github.com |
d447a8c1eb52a286da0a0c2e02d5939916267764 | fcb4d4a5e594cbf9733575160baad687284c3615 | /lesson_017/word.cpp | 1f38c5f2a31bacf74b1b0f33897c197c058aa25c | [] | no_license | AndreSci/Cpp | 261c4a6fb45c59cff4b199eb1ccee6b039ad05ae | f1a7567e83739f9367360dde9b053a5c69f65f32 | refs/heads/main | 2023-03-18T04:39:44.265725 | 2021-03-15T10:44:10 | 2021-03-15T10:44:10 | 308,345,800 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 363 | cpp | #include <iostream>
#include <string>
#include <algorithm>
using namespace std;
class ReversibleString
{
public:
ReversibleString();
ReversibleString(const string& w)
{
word = w;
}
void Reverse()
{
reverse(word.begin(), word.end());
}
string ToString() const
{
return word;
}
private:
string word;
};
ReversibleString::ReversibleString()
{}
| [
"noreply@github.com"
] | AndreSci.noreply@github.com |
53314511a8131027c8674fec503be80898d57101 | 524c9bcd0850595b388ac6a97ec5e2145229e6c8 | /RanchoLosPatosHermanos/Item.h | bf9893b9ea0cd03bea1509d47ba0092cb1b6ea6c | [] | no_license | Adidier/Harvest | f1aafc2a314f0aba6e07afa6b10ac0ad84c1fb08 | ec40195ba7d13e2d0a3f9dfa7cb7a1b0376ba2d7 | refs/heads/master | 2022-12-06T16:43:51.655375 | 2020-08-11T13:51:48 | 2020-08-11T13:51:48 | 284,378,405 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 354 | h | #pragma once
#include<string>
#include "Image.h"
class Item
{
private:
float precio;
std::string nombre;
std::string rutaImagen;
Imagen imagen;
public:
float GetPrecio();
std::string GetNombre();
std::string GetRutaImagen();
void SetPrecio(const float &p);
void SetNombre(const std::string &n);
void SetRutaImagen(const std::string &r);
};
| [
"adidier.perez@gmail.com"
] | adidier.perez@gmail.com |
271a75b4a9e733e983f39e01caf2a2e88314cfe9 | 86aa55e5c9f5388537febad5b077ac90575a38ba | /src/rpcdarksend.cpp | 2d6c988f95b1ce47a69f163edd29ad570fd0157b | [
"MIT"
] | permissive | intarontr/intarocryptocurrency | a4fd3856148fd4583b788cf5fec5d44de3287703 | c702a9e952ac7496d4ab873cbe08094c7353cb57 | refs/heads/master | 2022-11-22T12:43:16.102972 | 2020-07-24T08:09:55 | 2020-07-24T08:09:55 | 281,864,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,162 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Darkcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "main.h"
#include "core.h"
#include "db.h"
#include "init.h"
#include "activemasternode.h"
#include "masternodeman.h"
#include "masternodeconfig.h"
#include "rpcserver.h"
#include <boost/lexical_cast.hpp>
//#include "amount.h"
#include "util.h"
//#include "utilmoneystr.h"
#include <fstream>
using namespace json_spirit;
using namespace std;
void SendMoney(const CTxDestination &address, CAmount nValue, CWalletTx& wtxNew, AvailableCoinsType coin_type=ALL_COINS)
{
// Check amount
if (nValue <= 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid amount");
if (nValue > pwalletMain->GetBalance())
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, "Insufficient funds");
string strError;
if (pwalletMain->IsLocked())
{
strError = "Error: Wallet locked, unable to create transaction!";
LogPrintf("SendMoney() : %s", strError);
throw JSONRPCError(RPC_WALLET_ERROR, strError);
}
// Parse Intarocryptocurrency address
CScript scriptPubKey = GetScriptForDestination(address);
// Create and send the transaction
CReserveKey reservekey(pwalletMain);
int64_t nFeeRequired;
std::string sNarr;
if (!pwalletMain->CreateTransaction(scriptPubKey, nValue, sNarr, wtxNew, reservekey, nFeeRequired, NULL))
{
if (nValue + nFeeRequired > pwalletMain->GetBalance())
strError = strprintf("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds!", FormatMoney(nFeeRequired));
LogPrintf("SendMoney() : %s\n", strError);
throw JSONRPCError(RPC_WALLET_ERROR, strError);
}
if (!pwalletMain->CommitTransaction(wtxNew, reservekey))
throw JSONRPCError(RPC_WALLET_ERROR, "Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
}
Value darksend(const Array& params, bool fHelp)
{
if (fHelp || params.size() == 0)
throw runtime_error(
"darksend <Intarocryptocurrencyaddress> <amount>\n"
"Intarocryptocurrencyaddress, reset, or auto (AutoDenominate)"
"<amount> is a real and is rounded to the nearest 0.00000001"
+ HelpRequiringPassphrase());
if (pwalletMain->IsLocked())
throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Error: Please enter the wallet passphrase with walletpassphrase first.");
if(params[0].get_str() == "auto"){
if(fMasterNode)
return "DarkSend is not supported from masternodes";
return "DoAutomaticDenominating " + (darkSendPool.DoAutomaticDenominating() ? "successful" : ("failed: " + darkSendPool.GetStatus()));
}
if(params[0].get_str() == "reset"){
darkSendPool.Reset();
return "successfully reset darksend";
}
if (params.size() != 2)
throw runtime_error(
"darksend <Intarocryptocurrencyaddress> <amount>\n"
"Intarocryptocurrencyaddress, denominate, or auto (AutoDenominate)"
"<amount> is type \"real\" and will be rounded to the nearest 0.1"
+ HelpRequiringPassphrase());
CIntarocryptocurrencyAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Intarocryptocurrency address");
// Amount
CAmount nAmount = AmountFromValue(params[1]);
// Wallet comments
CWalletTx wtx;
std::string sNarr;
if (params.size() > 6 && params[6].type() != null_type && !params[6].get_str().empty())
sNarr = params[6].get_str();
if (sNarr.length() > 24)
throw runtime_error("Narration must be 24 characters or less.");
//string strError = pwalletMain->SendMoneyToDestination(address.Get(), nAmount, sNarr, wtx, ONLY_DENOMINATED);
SendMoney(address.Get(), nAmount, wtx, ONLY_DENOMINATED);
//if (strError != "")
//throw JSONRPCError(RPC_WALLET_ERROR, strError);
return wtx.GetHash().GetHex();
}
Value getpoolinfo(const Array& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"getpoolinfo\n"
"Returns an object containing anonymous pool-related information.");
Object obj;
obj.push_back(Pair("current_masternode", mnodeman.GetCurrentMasterNode()->addr.ToString()));
obj.push_back(Pair("state", darkSendPool.GetState()));
obj.push_back(Pair("entries", darkSendPool.GetEntriesCount()));
obj.push_back(Pair("entries_accepted", darkSendPool.GetCountEntriesAccepted()));
return obj;
}
Value masternode(const Array& params, bool fHelp)
{
string strCommand;
if (params.size() >= 1)
strCommand = params[0].get_str();
if (fHelp ||
(strCommand != "count" && strCommand != "current" && strCommand != "debug" && strCommand != "genkey" && strCommand != "enforce" && strCommand != "list" && strCommand != "list-conf"
&& strCommand != "start" && strCommand != "start-alias" && strCommand != "start-many" && strCommand != "status" && strCommand != "stop" && strCommand != "stop-alias"
&& strCommand != "stop-many" /*&& strCommand != "winners"*/ && strCommand != "connect" && strCommand != "outputs" && strCommand != "vote-many" && strCommand != "vote"))
throw runtime_error(
"masternode \"command\"... ( \"passphrase\" )\n"
"Set of commands to execute masternode related actions\n"
"\nArguments:\n"
"1. \"command\" (string or set of strings, required) The command to execute\n"
"2. \"passphrase\" (string, optional) The wallet passphrase\n"
"\nAvailable commands:\n"
" count - Print number of all known masternodes (optional: 'enabled', 'both')\n"
" current - Print info on current masternode winner\n"
" debug - Print masternode status\n"
" genkey - Generate new masternodeprivkey\n"
" enforce - Enforce masternode payments\n"
" list - Print list of all known masternodes (see masternodelist for more info)\n"
" list-conf - Print masternode.conf in JSON format\n"
" outputs - Print masternode compatible outputs\n"
" start - Start masternode configured in Intarocryptocurrency.conf\n"
" start-alias - Start single masternode by assigned alias configured in masternode.conf\n"
" start-many - Start all masternodes configured in masternode.conf\n"
" status - Print masternode status information\n"
" stop - Stop masternode configured in Intarocryptocurrency.conf\n"
" stop-alias - Stop single masternode by assigned alias configured in masternode.conf\n"
" stop-many - Stop all masternodes configured in masternode.conf\n"
//" winners - Print list of masternode winners\n"
" vote-many - Vote on a Intarocryptocurrency initiative\n"
" vote - Vote on a Intarocryptocurrency initiative\n"
);
if (strCommand == "stop")
{
if(!fMasterNode) return "you must set masternode=1 in the configuration";
if(pwalletMain->IsLocked()) {
SecureString strWalletPass;
strWalletPass.reserve(100);
if (params.size() == 2){
strWalletPass = params[1].get_str().c_str();
} else {
throw runtime_error(
"Your wallet is locked, passphrase is required\n");
}
if(!pwalletMain->Unlock(strWalletPass)){
return "incorrect passphrase";
}
}
std::string errorMessage;
if(!activeMasternode.StopMasterNode(errorMessage)) {
return "stop failed: " + errorMessage;
}
pwalletMain->Lock();
if(activeMasternode.status == MASTERNODE_STOPPED) return "successfully stopped masternode";
if(activeMasternode.status == MASTERNODE_NOT_CAPABLE) return "not capable masternode";
return "unknown";
}
if (strCommand == "stop-alias")
{
if (params.size() < 2){
throw runtime_error(
"command needs at least 2 parameters\n");
}
std::string alias = params[1].get_str().c_str();
if(pwalletMain->IsLocked()) {
SecureString strWalletPass;
strWalletPass.reserve(100);
if (params.size() == 3){
strWalletPass = params[2].get_str().c_str();
} else {
throw runtime_error(
"Your wallet is locked, passphrase is required\n");
}
if(!pwalletMain->Unlock(strWalletPass)){
return "incorrect passphrase";
}
}
bool found = false;
Object statusObj;
statusObj.push_back(Pair("alias", alias));
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
if(mne.getAlias() == alias) {
found = true;
std::string errorMessage;
bool result = activeMasternode.StopMasterNode(mne.getIp(), mne.getPrivKey(), errorMessage);
statusObj.push_back(Pair("result", result ? "successful" : "failed"));
if(!result) {
statusObj.push_back(Pair("errorMessage", errorMessage));
}
break;
}
}
if(!found) {
statusObj.push_back(Pair("result", "failed"));
statusObj.push_back(Pair("errorMessage", "could not find alias in config. Verify with list-conf."));
}
pwalletMain->Lock();
return statusObj;
}
if (strCommand == "stop-many")
{
if(pwalletMain->IsLocked()) {
SecureString strWalletPass;
strWalletPass.reserve(100);
if (params.size() == 2){
strWalletPass = params[1].get_str().c_str();
} else {
throw runtime_error(
"Your wallet is locked, passphrase is required\n");
}
if(!pwalletMain->Unlock(strWalletPass)){
return "incorrect passphrase";
}
}
int total = 0;
int successful = 0;
int fail = 0;
Object resultsObj;
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
total++;
std::string errorMessage;
bool result = activeMasternode.StopMasterNode(mne.getIp(), mne.getPrivKey(), errorMessage);
Object statusObj;
statusObj.push_back(Pair("alias", mne.getAlias()));
statusObj.push_back(Pair("result", result ? "successful" : "failed"));
if(result) {
successful++;
} else {
fail++;
statusObj.push_back(Pair("errorMessage", errorMessage));
}
resultsObj.push_back(Pair("status", statusObj));
}
pwalletMain->Lock();
Object returnObj;
returnObj.push_back(Pair("overall", "Successfully stopped " + boost::lexical_cast<std::string>(successful) + " masternodes, failed to stop " +
boost::lexical_cast<std::string>(fail) + ", total " + boost::lexical_cast<std::string>(total)));
returnObj.push_back(Pair("detail", resultsObj));
return returnObj;
}
if (strCommand == "list")
{
Array newParams(params.size() - 1);
std::copy(params.begin() + 1, params.end(), newParams.begin());
return masternodelist(newParams, fHelp);
}
if (strCommand == "count")
{
if (params.size() > 2){
throw runtime_error(
"too many parameters\n");
}
if (params.size() == 2)
{
if(params[1] == "enabled") return mnodeman.CountEnabled();
if(params[1] == "both") return boost::lexical_cast<std::string>(mnodeman.CountEnabled()) + " / " + boost::lexical_cast<std::string>(mnodeman.size());
}
return mnodeman.size();
}
if (strCommand == "start")
{
if(!fMasterNode) return "you must set masternode=1 in the configuration";
if(pwalletMain->IsLocked()) {
SecureString strWalletPass;
strWalletPass.reserve(100);
if (params.size() == 2){
strWalletPass = params[1].get_str().c_str();
} else {
throw runtime_error(
"Your wallet is locked, passphrase is required\n");
}
if(!pwalletMain->Unlock(strWalletPass)){
return "incorrect passphrase";
}
}
if(activeMasternode.status != MASTERNODE_REMOTELY_ENABLED && activeMasternode.status != MASTERNODE_IS_CAPABLE){
activeMasternode.status = MASTERNODE_NOT_PROCESSED; // TODO: consider better way
std::string errorMessage;
activeMasternode.ManageStatus();
pwalletMain->Lock();
}
if(activeMasternode.status == MASTERNODE_REMOTELY_ENABLED) return "masternode started remotely";
if(activeMasternode.status == MASTERNODE_INPUT_TOO_NEW) return "masternode input must have at least 15 confirmations";
if(activeMasternode.status == MASTERNODE_STOPPED) return "masternode is stopped";
if(activeMasternode.status == MASTERNODE_IS_CAPABLE) return "successfully started masternode";
if(activeMasternode.status == MASTERNODE_NOT_CAPABLE) return "not capable masternode: " + activeMasternode.notCapableReason;
if(activeMasternode.status == MASTERNODE_SYNC_IN_PROCESS) return "sync in process. Must wait until client is synced to start.";
return "unknown";
}
if (strCommand == "start-alias")
{
if (params.size() < 2){
throw runtime_error(
"command needs at least 2 parameters\n");
}
std::string alias = params[1].get_str().c_str();
if(pwalletMain->IsLocked()) {
SecureString strWalletPass;
strWalletPass.reserve(100);
if (params.size() == 3){
strWalletPass = params[2].get_str().c_str();
} else {
throw runtime_error(
"Your wallet is locked, passphrase is required\n");
}
if(!pwalletMain->Unlock(strWalletPass)){
return "incorrect passphrase";
}
}
bool found = false;
Object statusObj;
statusObj.push_back(Pair("alias", alias));
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
if(mne.getAlias() == alias) {
found = true;
std::string errorMessage;
bool result = activeMasternode.Register(mne.getIp(), mne.getPrivKey(), mne.getTxHash(), mne.getOutputIndex(), mne.getRewardAddress(), mne.getRewardPercentage(), errorMessage);
statusObj.push_back(Pair("result", result ? "successful" : "failed"));
if(!result) {
statusObj.push_back(Pair("errorMessage", errorMessage));
}
break;
}
}
if(!found) {
statusObj.push_back(Pair("result", "failed"));
statusObj.push_back(Pair("errorMessage", "could not find alias in config. Verify with list-conf."));
}
pwalletMain->Lock();
return statusObj;
}
if (strCommand == "start-many")
{
if(pwalletMain->IsLocked()) {
SecureString strWalletPass;
strWalletPass.reserve(100);
if (params.size() == 2){
strWalletPass = params[1].get_str().c_str();
} else {
throw runtime_error(
"Your wallet is locked, passphrase is required\n");
}
if(!pwalletMain->Unlock(strWalletPass)){
return "incorrect passphrase";
}
}
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
mnEntries = masternodeConfig.getEntries();
int total = 0;
int successful = 0;
int fail = 0;
Object resultsObj;
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
total++;
std::string errorMessage;
bool result = activeMasternode.Register(mne.getIp(), mne.getPrivKey(), mne.getTxHash(), mne.getOutputIndex(), mne.getRewardAddress(), mne.getRewardPercentage(), errorMessage);
Object statusObj;
statusObj.push_back(Pair("alias", mne.getAlias()));
statusObj.push_back(Pair("result", result ? "succesful" : "failed"));
if(result) {
successful++;
} else {
fail++;
statusObj.push_back(Pair("errorMessage", errorMessage));
}
resultsObj.push_back(Pair("status", statusObj));
}
pwalletMain->Lock();
Object returnObj;
returnObj.push_back(Pair("overall", "Successfully started " + boost::lexical_cast<std::string>(successful) + " masternodes, failed to start " +
boost::lexical_cast<std::string>(fail) + ", total " + boost::lexical_cast<std::string>(total)));
returnObj.push_back(Pair("detail", resultsObj));
return returnObj;
}
if (strCommand == "debug")
{
if(activeMasternode.status == MASTERNODE_REMOTELY_ENABLED) return "masternode started remotely";
if(activeMasternode.status == MASTERNODE_INPUT_TOO_NEW) return "masternode input must have at least 15 confirmations";
if(activeMasternode.status == MASTERNODE_IS_CAPABLE) return "successfully started masternode";
if(activeMasternode.status == MASTERNODE_STOPPED) return "masternode is stopped";
if(activeMasternode.status == MASTERNODE_NOT_CAPABLE) return "not capable masternode: " + activeMasternode.notCapableReason;
if(activeMasternode.status == MASTERNODE_SYNC_IN_PROCESS) return "sync in process. Must wait until client is synced to start.";
CTxIn vin = CTxIn();
CPubKey pubkey = CScript();
CKey key;
bool found = activeMasternode.GetMasterNodeVin(vin, pubkey, key);
if(!found){
return "Missing masternode input, please look at the documentation for instructions on masternode creation";
} else {
return "No problems were found";
}
}
if (strCommand == "create")
{
return "Not implemented yet, please look at the documentation for instructions on masternode creation";
}
if (strCommand == "current")
{
CMasternode* winner = mnodeman.GetCurrentMasterNode(1);
if(winner) {
Object obj;
CScript pubkey;
pubkey.SetDestination(winner->pubkey.GetID());
CTxDestination address1;
ExtractDestination(pubkey, address1);
CIntarocryptocurrencyAddress address2(address1);
obj.push_back(Pair("IP:port", winner->addr.ToString().c_str()));
obj.push_back(Pair("protocol", (int64_t)winner->protocolVersion));
obj.push_back(Pair("vin", winner->vin.prevout.hash.ToString().c_str()));
obj.push_back(Pair("pubkey", address2.ToString().c_str()));
obj.push_back(Pair("lastseen", (int64_t)winner->lastTimeSeen));
obj.push_back(Pair("activeseconds", (int64_t)(winner->lastTimeSeen - winner->sigTime)));
return obj;
}
return "unknown";
}
if (strCommand == "genkey")
{
CKey secret;
secret.MakeNewKey(false);
return CIntarocryptocurrencySecret(secret).ToString();
}
// if (strCommand == "winners")
// {
// Object obj;
// std::string strMode = "addr";
//
// if (params.size() >= 1) strMode = params[0].get_str();
// obj.push_back(Pair("mode: ", strMode));
//
// for(int nHeight = pindexBest->nHeight-10; nHeight < pindexBest->nHeight+20; nHeight++)
// {
// CScript payee;
// CTxIn vin;
// if(masternodePayments.GetBlockPayee(nHeight, payee, vin)){
// CTxDestination address1;
// ExtractDestination(payee, address1);
// CIntarocryptocurrencyAddress address2(address1);
//
// if(strMode == "addr")
// obj.push_back(Pair(boost::lexical_cast<std::string>(nHeight), address2.ToString().c_str()));
//
// if(strMode == "vin")
// obj.push_back(Pair(boost::lexical_cast<std::string>(nHeight), vin.ToString().c_str()));
//
// } else {
// obj.push_back(Pair(boost::lexical_cast<std::string>(nHeight), ""));
// }
// }
//
// return obj;
// }
if(strCommand == "enforce")
{
return (uint64_t)enforceMasternodePaymentsTime;
}
if(strCommand == "connect")
{
std::string strAddress = "";
if (params.size() == 2){
strAddress = params[1].get_str().c_str();
} else {
throw runtime_error(
"Masternode address required\n");
}
CService addr = CService(strAddress);
if(ConnectNode((CAddress)addr, NULL, true)){
return "successfully connected";
} else {
return "error connecting";
}
}
if(strCommand == "list-conf")
{
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
mnEntries = masternodeConfig.getEntries();
Object resultObj;
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
Object mnObj;
mnObj.push_back(Pair("alias", mne.getAlias()));
mnObj.push_back(Pair("address", mne.getIp()));
mnObj.push_back(Pair("privateKey", mne.getPrivKey()));
mnObj.push_back(Pair("txHash", mne.getTxHash()));
mnObj.push_back(Pair("outputIndex", mne.getOutputIndex()));
resultObj.push_back(Pair("masternode", mnObj));
}
return resultObj;
}
if (strCommand == "outputs"){
// Find possible candidates
vector<COutput> possibleCoins = activeMasternode.SelectCoinsMasternode();
Object obj;
BOOST_FOREACH(COutput& out, possibleCoins) {
obj.push_back(Pair(out.tx->GetHash().ToString().c_str(), boost::lexical_cast<std::string>(out.i)));
}
return obj;
}
if(strCommand == "vote-many")
{
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
mnEntries = masternodeConfig.getEntries();
if (params.size() != 2)
throw runtime_error("You can only vote 'yay' or 'nay'");
std::string vote = params[1].get_str().c_str();
if(vote != "yay" && vote != "nay") return "You can only vote 'yay' or 'nay'";
int nVote = 0;
if(vote == "yay") nVote = 1;
if(vote == "nay") nVote = -1;
int success = 0;
int failed = 0;
Object resultObj;
BOOST_FOREACH(CMasternodeConfig::CMasternodeEntry mne, masternodeConfig.getEntries()) {
std::string errorMessage;
std::vector<unsigned char> vchMasterNodeSignature;
std::string strMasterNodeSignMessage;
CPubKey pubKeyCollateralAddress;
CKey keyCollateralAddress;
CPubKey pubKeyMasternode;
CKey keyMasternode;
if(!darkSendSigner.SetKey(mne.getPrivKey(), errorMessage, keyMasternode, pubKeyMasternode)){
printf(" Error upon calling SetKey for %s\n", mne.getAlias().c_str());
failed++;
continue;
}
CMasternode* pmn = mnodeman.Find(pubKeyMasternode);
if(pmn == NULL)
{
printf("Can't find masternode by pubkey for %s\n", mne.getAlias().c_str());
failed++;
continue;
}
std::string strMessage = pmn->vin.ToString() + boost::lexical_cast<std::string>(nVote);
if(!darkSendSigner.SignMessage(strMessage, errorMessage, vchMasterNodeSignature, keyMasternode)){
printf(" Error upon calling SignMessage for %s\n", mne.getAlias().c_str());
failed++;
continue;
}
if(!darkSendSigner.VerifyMessage(pubKeyMasternode, vchMasterNodeSignature, strMessage, errorMessage)){
printf(" Error upon calling VerifyMessage for %s\n", mne.getAlias().c_str());
failed++;
continue;
}
success++;
//send to all peers
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
pnode->PushMessage("mvote", pmn->vin, vchMasterNodeSignature, nVote);
}
return("Voted successfully " + boost::lexical_cast<std::string>(success) + " time(s) and failed " + boost::lexical_cast<std::string>(failed) + " time(s).");
}
if(strCommand == "vote")
{
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
mnEntries = masternodeConfig.getEntries();
if (params.size() != 2)
throw runtime_error("You can only vote 'yay' or 'nay'");
std::string vote = params[1].get_str().c_str();
if(vote != "yay" && vote != "nay") return "You can only vote 'yay' or 'nay'";
int nVote = 0;
if(vote == "yay") nVote = 1;
if(vote == "nay") nVote = -1;
// Choose coins to use
CPubKey pubKeyCollateralAddress;
CKey keyCollateralAddress;
CPubKey pubKeyMasternode;
CKey keyMasternode;
std::string errorMessage;
std::vector<unsigned char> vchMasterNodeSignature;
std::string strMessage = activeMasternode.vin.ToString() + boost::lexical_cast<std::string>(nVote);
if(!darkSendSigner.SetKey(strMasterNodePrivKey, errorMessage, keyMasternode, pubKeyMasternode))
return(" Error upon calling SetKey");
if(!darkSendSigner.SignMessage(strMessage, errorMessage, vchMasterNodeSignature, keyMasternode))
return(" Error upon calling SignMessage");
if(!darkSendSigner.VerifyMessage(pubKeyMasternode, vchMasterNodeSignature, strMessage, errorMessage))
return(" Error upon calling VerifyMessage");
//send to all peers
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
pnode->PushMessage("mvote", activeMasternode.vin, vchMasterNodeSignature, nVote);
}
if(strCommand == "status")
{
std::vector<CMasternodeConfig::CMasternodeEntry> mnEntries;
mnEntries = masternodeConfig.getEntries();
CScript pubkey;
pubkey = GetScriptForDestination(activeMasternode.pubKeyMasternode.GetID());
CTxDestination address1;
ExtractDestination(pubkey, address1);
CIntarocryptocurrencyAddress address2(address1);
Object mnObj;
CMasternode *pmn = mnodeman.Find(activeMasternode.vin);
mnObj.push_back(Pair("vin", activeMasternode.vin.ToString().c_str()));
mnObj.push_back(Pair("service", activeMasternode.service.ToString().c_str()));
mnObj.push_back(Pair("status", activeMasternode.status));
//mnObj.push_back(Pair("pubKeyMasternode", address2.ToString().c_str()));
if (pmn) mnObj.push_back(Pair("pubkey", CBitcoinAddress(pmn->pubkey.GetID()).ToString()));
mnObj.push_back(Pair("notCapableReason", activeMasternode.notCapableReason.c_str()));
return mnObj;
}
return Value::null;
}
Value masternodelist(const Array& params, bool fHelp)
{
std::string strMode = "status";
std::string strFilter = "";
if (params.size() >= 1) strMode = params[0].get_str();
if (params.size() == 2) strFilter = params[1].get_str();
if (fHelp ||
(strMode != "activeseconds" && strMode != "reward" && strMode != "full" && strMode != "lastseen" && strMode != "protocol"
&& strMode != "pubkey" && strMode != "rank" && strMode != "status" && strMode != "addr" && strMode != "votes" && strMode != "lastpaid"))
{
throw runtime_error(
"masternodelist ( \"mode\" \"filter\" )\n"
"Get a list of masternodes in different modes\n"
"\nArguments:\n"
"1. \"mode\" (string, optional/required to use filter, defaults = status) The mode to run list in\n"
"2. \"filter\" (string, optional) Filter results. Partial match by IP by default in all modes, additional matches in some modes\n"
"\nAvailable modes:\n"
" activeseconds - Print number of seconds masternode recognized by the network as enabled\n"
" reward - Show reward settings\n"
" full - Print info in format 'status protocol pubkey vin lastseen activeseconds' (can be additionally filtered, partial match)\n"
" lastseen - Print timestamp of when a masternode was last seen on the network\n"
" protocol - Print protocol of a masternode (can be additionally filtered, exact match)\n"
" pubkey - Print public key associated with a masternode (can be additionally filtered, partial match)\n"
" rank - Print rank of a masternode based on current block\n"
" status - Print masternode status: ENABLED / EXPIRED / VIN_SPENT / REMOVE / POS_ERROR (can be additionally filtered, partial match)\n"
" addr - Print ip address associated with a masternode (can be additionally filtered, partial match)\n"
" votes - Print all masternode votes for a Intarocryptocurrency initiative (can be additionally filtered, partial match)\n"
" lastpaid - The last time a node was paid on the network\n"
);
}
Object obj;
if (strMode == "rank") {
std::vector<pair<int, CMasternode> > vMasternodeRanks = mnodeman.GetMasternodeRanks(pindexBest->nHeight);
BOOST_FOREACH(PAIRTYPE(int, CMasternode)& s, vMasternodeRanks) {
std::string strVin = s.second.vin.prevout.ToStringShort();
if(strFilter !="" && strVin.find(strFilter) == string::npos) continue;
obj.push_back(Pair(strVin, s.first));
}
} else {
std::vector<CMasternode> vMasternodes = mnodeman.GetFullMasternodeVector();
BOOST_FOREACH(CMasternode& mn, vMasternodes) {
std::string strVin = mn.vin.prevout.ToStringShort();
if (strMode == "activeseconds") {
if(strFilter !="" && strVin.find(strFilter) == string::npos) continue;
obj.push_back(Pair(strVin, (int64_t)(mn.lastTimeSeen - mn.sigTime)));
} else if (strMode == "reward") {
CTxDestination address1;
ExtractDestination(mn.rewardAddress, address1);
CIntarocryptocurrencyAddress address2(address1);
if(strFilter !="" && address2.ToString().find(strFilter) == string::npos &&
strVin.find(strFilter) == string::npos) continue;
std::string strOut = "";
if(mn.rewardPercentage != 0){
strOut = address2.ToString().c_str();
strOut += ":";
strOut += boost::lexical_cast<std::string>(mn.rewardPercentage);
}
obj.push_back(Pair(strVin, strOut.c_str()));
} else if (strMode == "full") {
CScript pubkey;
pubkey.SetDestination(mn.pubkey.GetID());
CTxDestination address1;
ExtractDestination(pubkey, address1);
CIntarocryptocurrencyAddress address2(address1);
std::ostringstream addrStream;
addrStream << setw(21) << strVin;
std::ostringstream stringStream;
stringStream << setw(10) <<
mn.Status() << " " <<
mn.protocolVersion << " " <<
address2.ToString() << " " <<
mn.addr.ToString() << " " <<
mn.lastTimeSeen << " " << setw(8) <<
(mn.lastTimeSeen - mn.sigTime) << " " <<
mn.nLastPaid;
std::string output = stringStream.str();
stringStream << " " << strVin;
if(strFilter !="" && stringStream.str().find(strFilter) == string::npos &&
strVin.find(strFilter) == string::npos) continue;
obj.push_back(Pair(addrStream.str(), output));
} else if (strMode == "lastseen") {
if(strFilter !="" && strVin.find(strFilter) == string::npos) continue;
obj.push_back(Pair(strVin, (int64_t)mn.lastTimeSeen));
} else if (strMode == "protocol") {
if(strFilter !="" && strFilter != boost::lexical_cast<std::string>(mn.protocolVersion) &&
strVin.find(strFilter) == string::npos) continue;
obj.push_back(Pair(strVin, (int64_t)mn.protocolVersion));
} else if (strMode == "pubkey") {
CScript pubkey;
pubkey.SetDestination(mn.pubkey.GetID());
CTxDestination address1;
ExtractDestination(pubkey, address1);
CIntarocryptocurrencyAddress address2(address1);
if(strFilter !="" && address2.ToString().find(strFilter) == string::npos &&
strVin.find(strFilter) == string::npos) continue;
obj.push_back(Pair(strVin, address2.ToString().c_str()));
} else if(strMode == "status") {
std::string strStatus = mn.Status();
if(strFilter !="" && strVin.find(strFilter) == string::npos && strStatus.find(strFilter) == string::npos) continue;
obj.push_back(Pair(strVin, strStatus.c_str()));
} else if (strMode == "addr") {
if(strFilter !="" && mn.vin.prevout.hash.ToString().find(strFilter) == string::npos &&
strVin.find(strFilter) == string::npos) continue;
obj.push_back(Pair(strVin, mn.addr.ToString().c_str()));
} else if(strMode == "votes"){
std::string strStatus = "ABSTAIN";
//voting lasts 30 days, ignore the last vote if it was older than that
if((GetAdjustedTime() - mn.lastVote) < (60*60*30*24))
{
if(mn.nVote == -1) strStatus = "NAY";
if(mn.nVote == 1) strStatus = "YAY";
}
if(strFilter !="" && (strVin.find(strFilter) == string::npos && strStatus.find(strFilter) == string::npos)) continue;
obj.push_back(Pair(strVin, strStatus.c_str()));
} else if(strMode == "lastpaid"){
if(strFilter !="" && mn.vin.prevout.hash.ToString().find(strFilter) == string::npos &&
strVin.find(strFilter) == string::npos) continue;
obj.push_back(Pair(strVin, (int64_t)mn.nLastPaid));
}
}
}
return obj;
}
| [
"intarocryptocurrency@gmail.com"
] | intarocryptocurrency@gmail.com |
c430aa5001b7ded1808b2f519e52ce4f22fb39aa | 1e49ed951f2d97becedb4ce794f3745bf06b096d | /2d_laser_scanner/Draw.h | 67b9c0373b1a4588ed46659ee480f6afcaab6bcd | [] | no_license | anthonyzeng99/2d_laser_scanner | 3733e47c126f9562a86f737e45271fe2472fa326 | 9558c315e79149de97172c9ef08b9acb0a396fb7 | refs/heads/master | 2021-01-18T23:24:02.161976 | 2017-05-30T00:46:31 | 2017-05-30T00:46:31 | 87,108,238 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 147 | h | #ifndef DRAW_H
#define DRAW_H
#include "Arduino.h"
class Draw {
public:
Draw(String filename);
private:
String filename;
};
#endif
| [
"anthonyzeng99@gmail.com"
] | anthonyzeng99@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.