blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
93969e44db1a117f8a2360c8e4b49c8f15c5114b
|
b82e951293252bd5300773a4571d0c554fcc11d5
|
/A Fantasy Role-Playing Game/cyberdemons.cpp
|
33535298b59bca74e8602fc5d61d3cc702ff6b24
|
[] |
no_license
|
canberkarc/Cpp-Projects
|
047698d6d64fff17ba9534c8cff3b63187968e3f
|
ca46eb443734f996dc19995628ad040d703cd421
|
refs/heads/master
| 2022-11-29T13:32:11.736843
| 2020-08-09T14:33:09
| 2020-08-09T14:33:09
| 270,172,669
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 645
|
cpp
|
cyberdemons.cpp
|
#include "cyberdemons.h"
using std::cout;
namespace Canberk{
//Constructors of class
Cyberdemons::Cyberdemons():Demons(){
setType(1);
}
Cyberdemons::Cyberdemons(const int stren, const int hit):Demons(stren,hit){
setType(1);
}
//getSpecies function of class Cyberdemons
string Cyberdemons::getSpecies()const{
if(getType() == 1)
return "Cyberdemons";
}
//description of getDamage function of Cyberdemons class
int Cyberdemons::getDamage(){
int damage = Demons::getDamage();
cout << "\n" << getSpecies() << " attacks for " << damage << " points!";
cout << "\nTotal damage: " << damage << "\n";
return damage;
}
}
|
98b593b03aec4551a55d2d32bcca773ec0da7ce8
|
5a96a16ccca4d5dd3f1b99fb6a840bc8748a961e
|
/Pushlock/Pushlock/SoundSystem.cpp
|
501a3348b443000e9511d37d62e3c1471cb3fc01
|
[] |
no_license
|
fkaa/Lspg6
|
10b5c735f52aecdf0f278e9032831a3e93bb99f1
|
643c73394de42f5ad2112e8d600adbffd84db9db
|
refs/heads/master
| 2020-05-04T22:05:57.562687
| 2017-06-01T19:34:13
| 2017-06-01T19:34:13
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,772
|
cpp
|
SoundSystem.cpp
|
#include "SoundSystem.h"
#include <tchar.h>
#include <windows.h>
#include "mmsystem.h"
#pragma comment(lib, "winmm.lib")
SoundSystem::SoundSystem()
{
this->buffers = new sf::SoundBuffer[25];
this->sound = new sf::Sound[512];
this->buffers[0].loadFromFile("../Resources/Sounds/fireball.wav");
this->buffers[1].loadFromFile("../Resources/Sounds/boom.wav");
this->buffers[2].loadFromFile("../Resources/Sounds/arcaneball.wav");
this->buffers[3].loadFromFile("../Resources/Sounds/earthball.wav");
this->buffers[5].loadFromFile("../Resources/Sounds/iceball.wav");
this->buffers[7].loadFromFile("../Resources/Sounds/arcanestomp.wav");
this->buffers[14].loadFromFile("../Resources/Sounds/winddash.flac");
this->buffers[18].loadFromFile("../Resources/Sounds/earthwall.wav");
this->buffers[21].loadFromFile("../Resources/Sounds/arcanehit.wav");
this->buffers[22].loadFromFile("../Resources/Sounds/teleport.wav");
this->buffers[23].loadFromFile("../Resources/Sounds/fartcloud.flac");
this->buffers[24].loadFromFile("../Resources/Sounds/playerdeath.wav");
this->music.openFromFile("../Resources/Sounds/boss_arena.ogg");
}
SoundSystem::~SoundSystem()
{
delete [] buffers;
}
void SoundSystem::play(spellSounds s, float offset, float volume)
{
/*if (waveOutGetNumDevs())
{
int i = 0;
bool cont = true;
sf::Time t = sf::seconds(offset);
while (cont)
{
if (this->sound[i].getStatus() == sf::Sound::Status::Playing)
{
i++;
}
else
{
cont = false;
}
}
this->sound[i].setVolume(volume);
this->sound[i].setPlayingOffset(t);
this->sound[i].setBuffer(this->buffers[s]);
this->sound[i].play();
}*/
}
void SoundSystem::startBGM()
{
/*this->music.setVolume(10);
this->music.setLoop(true);
this->music.play();*/
}
|
58ffab42f21dfe137c1108d3ffdac56ed8668ffc
|
7af6319bcfde8740b1fd302ed4b44a4e608d6ae9
|
/removeduplicatesfromagivenstring/main.cpp
|
55eb0f0e2641ff2b6317219106308c7a10ce70b1
|
[] |
no_license
|
rishabh-66/practice
|
906cd48c940d966146239b4d22b061068bd58e9c
|
4671bc3bb1c2886c89058b1427b7d9b1ef510322
|
refs/heads/main
| 2023-05-05T05:18:06.238039
| 2021-05-25T15:40:25
| 2021-05-25T15:40:25
| 370,747,926
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 398
|
cpp
|
main.cpp
|
// C++ program too create a unique string using unordered_map
#include <bits/stdc++.h>
using namespace std;
void removeDuplicates(string s){
unordered_map<char,int> exists;
int index = 0;
int n = s.length();
for(int i=0;i<n;i++){
if(exists[s[i]]==0)
{
s[index++] = s[i];
exists[s[i]]++;
}
}
cout<<s;
}
//driver code
int main(){
string s = "geeksforgeeks";
removeDuplicates(s);
return 0;
}
|
a0f1355ec1d8e8d323d8fb48356334e4abe8d3b2
|
73d65106516f60544a6d3707919c3fd533b5f099
|
/lectures/Week5/th1-1.cpp
|
f70897f64ed1ba13abf3762b706aca879cbde3c6
|
[] |
no_license
|
pkgoesdigital/systems-pickle
|
8ee77f228367adb89965e4a43f55c926f8157b38
|
d5714a49259d6e550805e200be9f9c15ddaa9fd9
|
refs/heads/master
| 2020-09-16T08:01:59.949003
| 2019-11-24T07:09:02
| 2019-11-24T07:09:02
| 223,706,110
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 669
|
cpp
|
th1-1.cpp
|
#include <iostream>
#include <thread> // compile with -std=c++11 -pthread options
// g++ -std=c++11 -pthread th1.cpp -o th1
void func(int threadID, int start, int stop, int* results)
{
for(int i=start; i < stop; i++)
{
std::cout<<"thread id: " << threadID <<", Iteration: "<<i<<"\n";
}
results[threadID] = threadID+3;
}
int main(int argc, const char * argv[])
{
int results[2];
std::thread* t1 = new std::thread(func, 0, 0, 10, results);
std::thread* t2 = new std::thread(func, 1, 10, 20, results);
t1->join();
t2->join();
std::cout<<"Done!"<<"\n";
std::cout << (results[0] + results[1]) << "\n";
return 0;
}
|
9337239aa189c5841ca154ae1a45c3f00f0c075b
|
c3b1ad0d4e1b7e5d6f841b051980cbefc866d52a
|
/src/tools/text_parm.cpp
|
eac1753ab8a3832fc9e61825c3d567a53af02eb1
|
[] |
no_license
|
QiChan/OkayServer
|
0031e84f9f8f8c7957a72a8b4c8cbec21b0b7c48
|
0d655e830bd46a7b2d18f9bc9a1880fa4c477910
|
refs/heads/master
| 2021-05-25T20:57:39.413575
| 2020-04-07T21:34:27
| 2020-04-07T21:34:27
| 253,916,707
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 953
|
cpp
|
text_parm.cpp
|
#include "text_parm.h"
const std::string TextParm::nullstring_;
void TextParm::deserilize(const char* stream, size_t len)
{
char key[10000];
char value[10000];
int vlen;
if (len > 10000)
return;
std::unordered_map<std::string, std::string> temp_map;
size_t i = 0;
while (i < len)
{
int klen = 0;
if (stream[i] == ' ')
{
++i;
continue;
}
while (i < len && stream[i] != '=')
key[klen++] = stream[i++];
key[klen] = 0;
++i;
vlen = 0;
while (i < len && stream[i] != ' ')
value[vlen++] = stream[i++];
value[vlen] = 0;
++i;
temp_map[key] = value;
}
data_.swap(temp_map);
stream_.assign(stream);
}
const char* TextParm::serilize()
{
std::unordered_map<std::string, std::string>::const_iterator it = data_.begin();
stream_.clear();
while (it != data_.end())
{
stream_ += it->first;
stream_.push_back('=');
stream_ += it->second;
stream_.push_back(' ');
++it;
}
return stream_.c_str();
}
|
9d0e92ade3a12d3fb30e9c140d2bdc45950bd4ad
|
77a666255a09b5d203ec207327e64814ffdef1dd
|
/xayautil/compression.cpp
|
db84770cc7e71c656219ea7a393047f353fd5acb
|
[
"MIT"
] |
permissive
|
xaya/libxayagame
|
f876c3cf88490d07ee789af689986fb76c35f5b0
|
54d6952c9c146a0ceb5a267a53ac39ebd87661ae
|
refs/heads/master
| 2023-07-22T22:06:20.555994
| 2023-07-13T12:40:38
| 2023-07-13T13:32:41
| 144,584,542
| 25
| 18
|
MIT
| 2023-02-23T08:50:00
| 2018-08-13T13:36:24
|
C++
|
UTF-8
|
C++
| false
| false
| 4,417
|
cpp
|
compression.cpp
|
// Copyright (C) 2019-2020 The Xaya developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "compression_internal.hpp"
#include "base64.hpp"
namespace xaya
{
/* ************************************************************************** */
namespace
{
/** Maximum window size in bits used for the consensus-compression. */
constexpr int WINDOW_BITS = 15;
/** Compression level we use. */
constexpr int LEVEL = 9;
/**
* Utility class wrapping a z_stream instance used for inflating data.
*/
class InflateStream : public BasicZlibStream
{
public:
/**
* Initialises the inflate struct with our parameters.
*/
InflateStream ()
{
const auto res = inflateInit2 (&stream, -WINDOW_BITS);
CHECK_EQ (res, Z_OK) << "Inflate init error " << res << ": " << GetError ();
}
/**
* Frees the allocated stream state.
*/
~InflateStream ()
{
const auto res = inflateEnd (&stream);
CHECK_EQ (res, Z_OK) << "Inflate end error " << res << ": " << GetError ();
}
/**
* Performs the actual uncompression step of data.
*/
bool
Uncompress (const std::string& input, const size_t maxOutputSize,
std::string& output)
{
SetInput (input);
SetOutputSize (maxOutputSize);
const auto res = inflate (&stream, Z_FINISH);
switch (res)
{
case Z_STREAM_END:
CHECK_EQ (stream.total_in, input.size ());
output = ExtractOutput ();
return true;
case Z_BUF_ERROR:
VLOG (1)
<< "Uncompress produced too much output data; processed "
<< stream.total_in << " input bytes of the total " << input.size ();
return false;
case Z_NEED_DICT:
case Z_DATA_ERROR:
VLOG (1) << "Invalid data provided to uncompress: " << GetError ();
return false;
default:
LOG (FATAL) << "Inflate error " << res << ": " << GetError ();
}
}
};
} // anonymous namespace
std::string
CompressData (const std::string& data)
{
DeflateStream compressor(-WINDOW_BITS, LEVEL);
return compressor.Compress (data);
}
bool
UncompressData (const std::string& input, const size_t maxOutputSize,
std::string& output)
{
InflateStream uncompressor;
return uncompressor.Uncompress (input, maxOutputSize, output);
}
/* ************************************************************************** */
bool
CompressJson (const Json::Value& val,
std::string& encoded, std::string& uncompressed)
{
Json::StreamWriterBuilder wbuilder;
wbuilder["commentStyle"] = "None";
wbuilder["indentation"] = "";
wbuilder["enableYAMLCompatibility"] = false;
wbuilder["dropNullPlaceholders"] = false;
wbuilder["useSpecialFloats"] = false;
if (!val.isObject () && !val.isArray ())
{
LOG (WARNING) << "CompressJson expects object or array: " << val;
return false;
}
uncompressed = Json::writeString (wbuilder, val);
encoded = EncodeBase64 (CompressData (uncompressed));
return true;
}
bool
UncompressJson (const std::string& input,
const size_t maxOutputSize, const unsigned stackLimit,
Json::Value& output, std::string& uncompressed)
{
Json::CharReaderBuilder rbuilder;
rbuilder["allowComments"] = false;
/* Without strictRoot, versions of jsoncpp before
https://github.com/open-source-parsers/jsoncpp/pull/1014 did not
properly enforce failIfExtra (which we want). */
rbuilder["strictRoot"] = true;
rbuilder["allowDroppedNullPlaceholders"] = false;
rbuilder["allowNumericKeys"] = false;
rbuilder["allowSingleQuotes"] = false;
rbuilder["stackLimit"] = stackLimit;
rbuilder["failIfExtra"] = true;
rbuilder["rejectDupKeys"] = true;
rbuilder["allowSpecialFloats"] = false;
std::string compressed;
if (!DecodeBase64 (input, compressed))
return false;
if (!UncompressData (compressed, maxOutputSize, uncompressed))
return false;
std::string parseErrs;
std::istringstream in(uncompressed);
try
{
if (!Json::parseFromStream (rbuilder, in, &output, &parseErrs))
return false;
}
catch (const Json::Exception& exc)
{
return false;
}
return output.isObject () || output.isArray ();
}
/* ************************************************************************** */
} // namespace xaya
|
790b824af39867a79d8cf4b63faaad9f765b1009
|
ef7ad96103876b24bbb45be8dfba7e80771c76e7
|
/ui-qt/Pretreatment/ImgpreprocessModule/ContrastStrengthenDlg.h
|
e754984c82830f3260db3e491342472e8c1b9f19
|
[
"MIT"
] |
permissive
|
TinySlik/FPGA-Industrial-Smart-Camera
|
ecb6274f4ef16cf9174cd73812486644f821152a
|
54b3e2c2661cf7f6774a7fb4d6ae637fa73cba32
|
refs/heads/master
| 2021-06-25T11:09:21.212466
| 2017-09-01T07:23:58
| 2017-09-01T07:23:58
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,999
|
h
|
ContrastStrengthenDlg.h
|
/**
* @file [ContrastStrengthenDlg.h]
* @brief ContrastStrengthenDlg
* @author <szj>
* @date <2017/05/08>
* @version <1.0>
* @note
* detailed description
*/
#ifndef CONTRASTSTRENGTHENDLG_H
#define CONTRASTSTRENGTHENDLG_H
#include <QDialog>
#include <QTimer>
#include <stdbool.h>
#include "AcceCommon.h"
namespace Ui {
class ContrastStrengthenDlg;
}
/**
* @class <ContrastStrengthenDlg> [ContrastStrengthenDlg.h] [ContrastStrengthenDlg]
* @brief 对比度增强
* @author <szj>
* @note
* detailed description
*/
class ContrastStrengthenDlg : public QDialog
{
Q_OBJECT
public:
explicit ContrastStrengthenDlg(QWidget *parent = 0);
~ContrastStrengthenDlg();
/**
* @brief InitData
* @author szj
* @date 2017/05/08
* @note 初始化数据
*/
void InitData();
int m_task_id;
int m_step;
void *m_pre_ptr;
private slots:
void on_btnOk_clicked();
void on_btnQuit_clicked();
void sendBlancedDataSlot();
void on_radioButton_sixteen_clicked(bool checked);
void on_radioButton_eight_clicked(bool checked);
void on_radioButton_four_clicked(bool checked);
void on_radioButton_two_clicked(bool checked);
void on_btnMoveUp_pressed();
void on_btnMoveDown_pressed();
void on_btnMoveLeft_pressed();
void on_btnMoveRight_pressed();
void PointChangeSlot(int num, QPoint point);
void on_btnMoveUp_released();
void on_btnMoveDown_released();
void on_btnMoveLeft_released();
void on_btnMoveRight_released();
void ClickTimerSlot();
void on_radioButtonBasic_clicked();
void on_radioButtonAdvanced_clicked();
void on_btnSupPointSelect_pressed();
void on_btnSupPointSelect_released();
void on_btnAddPointSelect_pressed();
void on_btnAddPointSelect_released();
void on_btnSubPointY_pressed();
void on_btnSubPointY_released();
void on_btnAddPointY_pressed();
void on_btnAddPointY_released();
void AddPointSelect();
void SubPointselect();
void AddPointY();
void SubPointY();
void on_horizontalSliderPointY_valueChanged(int value);
void on_horizontalSliderPointSelect_valueChanged(int value);
void on_horizontalSliderPointSelect_sliderReleased();
void on_horizontalSliderPointY_sliderReleased();
private:
Ui::ContrastStrengthenDlg *ui;
QVector<QPoint> m_Points;
int m_smooth_mode;
QTimer ClickTimer;
int btn;//0:up 1:down 2:left 3:righr
char m_gray_num[255];
BALANCE_MODEL_CFG m_cfg;
void GetGrayVt();
/**
* @brief SetDataToLib
* @author szj
* @date 2017/05/08
* @note 保存数据
*/
void SetDataToLib();
void DealPicGray();
// void IniData();
/**
* @brief IniAdvancedData
* @author szj
* @date 2017/05/08
* @note 初始化数据(高级模式)
*/
void IniAdvancedData();
int iTimes;
int m_x; //高级模式点x坐标
};
#endif // CONTRASTSTRENGTHENDLG_H
|
338ca9baddef759a614c69c83fc2e01752bb9f0a
|
af180db27145eae7511360f11d51b796354bf4f9
|
/Oblig1/fish.cpp
|
2654dd2bd27f7e5dbb1a085d0aff8554c3cd7a55
|
[] |
no_license
|
Amnesthesia/Course-OOP
|
3577a2ee87ab6816d471382692e29029a37c5559
|
5a22dfa49def7cbcd26763f15994ca41b1ebe427
|
refs/heads/master
| 2020-04-27T15:03:01.314271
| 2014-11-29T01:56:28
| 2014-11-29T01:56:28
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,748
|
cpp
|
fish.cpp
|
#include "fish.h"
fish::fish()
{
// Set known values
this->setPhylum("Chordata");
// Is this a saltwater fish?
this->setSaltwater( reqBoolInput("Saltwater fish") );
// Is this a schooling fish?
this->setSchoolfish( reqBoolInput("Schooling/Schoaling fish") );
// Request user-input for unknown taxonomy data
this->setClass( reqStrInput("Class") );
this->setOrder( reqStrInput("Order") );
this->setFamily( reqStrInput("Family") );
this->setGenus( reqStrInput("Genus") );
this->setSpecies( reqStrInput("Species"));
}
// Same as fish() but also reads the layman name
fish::fish(std::string name) : animal(0)
{
this->setLaymanName(name);
// Set known values
this->setPhylum("Chordata");
// Is this a saltwater fish?
this->setSaltwater( reqBoolInput("Saltwater fish") );
// Is this a schooling fish?
this->setSchoolfish( reqBoolInput("Schooling/Schoaling fish") );
// Request user-input for unknown taxonomy data
this->setClass( reqStrInput("Class") );
this->setOrder( reqStrInput("Order") );
this->setFamily( reqStrInput("Family") );
this->setGenus( reqStrInput("Genus") );
this->setSpecies( reqStrInput("Species"));
}
fish::~fish()
{
}
// Sets the saltwater attribute
void fish::setSaltwater(bool s)
{
saltwater = s;
}
// Sets the "schooling" attribute
void fish::setSchoolfish(bool s)
{
schoolfish = s;
}
// Prints all data in parentclass, then all data contained within this class
void fish::print()
{
aquatic_species::print();
std::cout << "\n ... is " << (getSaltwater() ? "a" : "not a") << " saltwater fish";
std::cout << "\n ... " << (getSchoolfish() ? "swims in" : "does not swim in") << " schools";
}
|
0d983c3969f9cb8bdde32a0c1114608a657a2ad6
|
62c961d328dc399929514d0983a82ccd254fd8d0
|
/bright/GameObject.h
|
6ee46fa189c764c926bee486d739dfb8d685436b
|
[] |
no_license
|
husheng0/bright
|
6534e811d9e2a28097a5004f2940adfade1950c2
|
337eb4dddab84efd001683dbc74c7da5481f455d
|
refs/heads/master
| 2020-09-06T12:24:41.499730
| 2018-03-01T04:01:46
| 2018-03-01T04:01:46
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 254
|
h
|
GameObject.h
|
#pragma once
#include "IGameObject.h"
#include "IComponent.h"
namespace pasha
{
class GameObject :public IGameObject
{
public:
virtual void Render() override = 0;
virtual void Update() override = 0;
virtual void Awake() override = 0;
};
}
|
037847504a9b7f2e63c6f019d12ab96bd2becadb
|
41e03364326243ed180bb49f26889162a1472ba1
|
/Graph.h
|
6934952476fe5706d0f2ce0341a2f4216681c3a4
|
[] |
no_license
|
pullp/Data_Structures_and_Algorithms
|
d5fd05f9b2c2c61618ca7ff8dadce228bf6405aa
|
85e0b713a3ebcf0187687ac6433640918771525b
|
refs/heads/master
| 2021-08-23T09:14:38.384150
| 2017-12-04T13:07:27
| 2017-12-04T13:07:27
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,223
|
h
|
Graph.h
|
//
// Created by 12181 on 2017/12/2.
//
#ifndef DATA_STRUCTURES_AND_ALGORITHMS_GRAPH_H
#define DATA_STRUCTURES_AND_ALGORITHMS_GRAPH_H
#include <iostream>
#include "ChainNode.h"
#include "NativeExceptions.h"
using namespace std;
template <class T>
void Make2DArray(T **&x, int rows, int cols){
x = new T *[rows];
for(int i=0; i<rows; ++i)
x[i] = new T[cols];
}
template <class T>
void Delete2DArray(T **&x, int rows){
for(int i=0; i<rows; ++i)
delete [ ] x[i];
delete [] x;
x = 0;
}
template <class T>
class AdjacencyWGraph;
template <class T>
class AdjacencyWDigraph{
template<class U>
friend class AdjacencyWGraph;
public:
AdjacencyWDigraph(int Vertices = 10, T noEdge = 0);
~AdjacencyWDigraph(){Delete2DArray(a, n+1);}//TODO why n+1? --because count freom 1?
bool Exist(int i, int j) const;
int Edges() const {return e;}
int Vertices() const {return n;}
AdjacencyWDigraph<T>& Add(int i, int j, const T& w);
AdjacencyWDigraph<T>& Delete(int i, int j);
int OutDegree(int i) const;
int InDegree(int i) const;
private:
T NoEdge;//the symbol of no edge
int n;//count of nodes
int e;//count of edges
T **a;//matrix
};
template <class T>
AdjacencyWDigraph<T>::AdjacencyWDigraph(int Vertices, T noEdge) {
n = Vertices;
e = 0;
NoEdge = noEdge;
Make2DArray(a, n+1, n+1);
for(int i=0; i<=n; ++i)
for(int j=0; j<=n; ++j)
a[i][j] = NoEdge;
}
template <class T>
bool AdjacencyWDigraph<T>::Exist(int i, int j) const {
if(i<1 || j<1 || i>n || j >n || i==j ) throw OutOfBounds();
if(a[i][j] == NoEdge) return false;
return true;
}
template <class T>
AdjacencyWDigraph<T>& AdjacencyWDigraph<T>::Add(int i, int j, const T &w) {
if(i<1 || j<1 || i>n || j >n || i==j ) throw OutOfBounds();
if(a[i][j]!= NoEdge) throw BadInput();
a[i][j] = w;
return *this;
}
template <class T>
AdjacencyWDigraph<T>& AdjacencyWDigraph<T>::Delete(int i, int j) {
if(i<1 || j<1 || i>n || j>n ) throw OutOfBounds();
if(a[i][j]==NoEdge) throw BadInput();
a[i][j] = NoEdge;
e--;
return *this;
}
template <class T>
int AdjacencyWDigraph<T>::InDegree(int i) const {
if(i<1 || i>n) throw OutOfBounds();
int sum = 0;
for(int j=1; j<=n; ++j){
if(a[j][i]!=NoEdge) ++j;
}
return sum;
}
template <class T>
int AdjacencyWDigraph<T>::OutDegree(int i) const {
if(i<1 || i>n) throw OutOfBounds();
int sum =0;
for(int j=1; j<=n; ++j){
if(a[i][j] != NoEdge) ++sum;
}
return sum;
}
template <class T>
class AdjacencyWGraph:public AdjacencyWDigraph<T>{
using AdjacencyWDigraph<T>::a;
using AdjacencyWDigraph<T>::NoEdge;
using AdjacencyWDigraph<T>::OutDegree;
public:
AdjacencyWGraph(int Vertices = 10, T noEdge = 0): AdjacencyWDigraph<T>(Vertices, noEdge){}
AdjacencyWGraph<T>& Add(int i, int j, const T &w){
AdjacencyWDigraph<T>::Add(i, j, w);
a[j][i] = w;
return *this;
}
AdjacencyWGraph<T>& Delete(int i, int j){
AdjacencyWDigraph<T>::Delete(i, j);
a[j][i] = NoEdge;
return *this;
}
int Degree(int i) const {return OutDegree(i);}
};
class AdjacencyGraph:public AdjacencyWGraph<int>{
public:
AdjacencyGraph(int Vertices):AdjacencyWGraph<int>(Vertices, 0){}
AdjacencyGraph& Add(int i, int j){
AdjacencyWGraph<int>::Add(i, j, 1);
return *this;
}
AdjacencyGraph& Delete(int i, int j){
AdjacencyWGraph<int>::Delete(i, j);
return *this;
}
void Input();6+
};
template <class T>
class LinkedBase{
friend class LinkedDigraph;
friend class LinkedGraph;
template <class U> friend class LinkedWDigraph;
template <class U> friend class LinkedWGraph;
public:
LinkedBase(int Vertices = 10){
n = Vertices;
e = 0;
h = new Chain<T> [n+1];
}
~LinkedBase(){delete [] h;}
int Edges()const{return e;}
int Vertices()const{return n;}
int OutDegree(int i)const{
if(i<1 || i>n) throw OutOfBounds();
return h[i].Length();
}
protected:
int n;//the number of vertices
int e;//the number of edges
Chain<T> *h;//the head of the chain
};
template <class T>
class GraphNode{
template <class U> friend class LinkedWDigrap;
template <class U> friend class LinkedWGraph;
friend Chain<T>;
public:
int operator !=(GraphNode<T> y)const{return vertex != y.vertex;}
void Output(ostream& out)const{out<<vertex<<" "<<weight<<" ";}
private:
int vertex;
T weight;
};
template <class T>
ostream& operator<<(ostream& out, GraphNode<T> x){
x.Output(out);
return out;
}
class LinkedDigraph:public LinkedBase<int>{
public:
explicit LinkedDigraph(int Vertices = 10):LinkedBase<int>(Vertices){}
bool Exist(int i, int j)const;
LinkedDigraph& Add(int i, int j);
LinkedDigraph& Delete(int i, int j);
int InDegree(int i)const;
protected:
LinkedDigraph& AddNoCheck(int i, int j);
};
bool LinkedDigraph::Exist(int i, int j) const {
if(i<1 || i>n) throw OutOfBounds();
return h[i].Search(j);
}
LinkedDigraph& LinkedDigraph::Add(int i, int j) {
if(i<1 || j<1 || i>n || j >n ) throw OutOfBounds();
if(Exist(i, j) || i==j) throw BadInput();
return AddNoCheck(i, j);
}
LinkedDigraph& LinkedDigraph::Delete(int i, int j) {
if(i<1 || j<1 || i>n || j >n || i==j ) throw OutOfBounds();
h[i].Delete(j);
--e;
return *this;
}
LinkedDigraph& LinkedDigraph::AddNoCheck(int i, int j) {
h[i].Insert(0, j);
++e;
return *this;
}
int LinkedDigraph::InDegree(int i) const {
if(i<1 || i>n ) throw OutOfBounds();
int sum =0;
for(int j=0; j<=n; ++j)
if(h[j].Search(i)) ++sum;
return sum;
}
class LinkedGraph:public LinkedDigraph{
public:
LinkedGraph(int Vertices = 10):LinkedDigraph(Vertices){}
LinkedGraph& Add(int i, int j);
LinkedGraph& Delete(int i, int j);
int Degree(int i)const{return InDegree(i);}
protected:
LinkedGraph& AddNoCheck(int i, int j);
};
LinkedGraph& LinkedGraph::Add(int i, int j) {
if(i<1 || j<1 || i>n || j >n ) throw OutOfBounds();
if(i==j || Exist(i, j)) throw BadInput();
return AddNoCheck(i, j);
}
LinkedGraph& LinkedGraph::AddNoCheck(int i, int j) {
h[i].Insert(0, j);
try{h[j].Insert(0, i);}
catch(...){h[i].Delete(j); throw;}
++e;
return *this;
}
LinkedGraph& LinkedGraph::Delete(int i, int j) {
LinkedDigraph::Delete(i, j);
++e;
LinkedDigraph::Delete(j, i);
return *this;
}
template <class T>
class LinkedWDigraph:LinkedBase<GraphNode<T> >{
using LinkedBase<GraphNode<T> >::e;
using LinkedBase<GraphNode<T> >::n;
using LinkedBase<GraphNode<T> >::h;
public:
LinkedWDigraph(int Vertices = 10):LinkedBase<GraphNode<T> >(Vertices){}
bool Exist(int i, int j) const;
LinkedWDigraph<T>& Add(int i, int j, const T& w);
LinkedWDigraph<T>& Delete(int i, int j);
int InDegree(int i)const;
protected:
LinkedWDigraph<T>& AddNoCheck(int i, int j, const T& w);
};
template <class T>
bool LinkedWDigraph<T>::Exist(int i, int j) const {
if(i<1 || j<1 || i>n || j >n ) throw OutOfBounds();
GraphNode<T> x;
x.vertex = j;
return h[i].Search(x);
}
template <class T>
LinkedWDigraph<T>& LinkedWDigraph<T>::Add(int i, int j, const T &w) {
if(i<1 || j<1 || i>n || j >n ) throw OutOfBounds();
if(i==j || Exist(i, j)) throw BadInput();
return AddNoCheck(i, j, w);
}
template <class T>
LinkedWDigraph<T>& LinkedWDigraph<T>::AddNoCheck(int i, int j, const T &w) {
GraphNode<T> x;
x.vertex = j;
x.weight = w;
h[i].Insert(0, x);
return *this;
}
template <class T>
LinkedWDigraph<T>& LinkedWDigraph<T>::Delete(int i, int j) {
if(i<1 || j<1 || i>n || j >n ) throw OutOfBounds();
if(i==j || Exist(i, j)) throw BadInput();
GraphNode<T> x;
x.vertex = j;
h[i].Delete(x);
--e;
return *this;
}
template <class T>
int LinkedWDigraph<T>::InDegree(int i) const {
if(i<1 || i>n ) throw OutOfBounds();
int sum = 0;
GraphNode<T> x;
x.vertex = i;
for(int i=0; i<n; ++i)
if(h[i].Search(x)) ++sum;
return sum;
}
#endif //GRAPH_GRAPH_H
|
e20d4284a05ae43ed4caf1ae8ec6abe6d5019e99
|
0907b9afbaa6b4946aff1da6ec042a781ec6fdc1
|
/tests/CMakerTests.cpp
|
abaeca8dcff3365ccec77ac2e3f0b097345644fd
|
[
"MIT"
] |
permissive
|
ha11owed/xcmake
|
23269781fc9b85a3e700bb89250f53c3283e8e96
|
c3704b9d6a0ef744c192513062c4e6eb7db5c996
|
refs/heads/master
| 2022-12-07T19:54:10.110045
| 2020-09-01T21:25:38
| 2020-09-01T21:33:31
| 279,369,516
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,745
|
cpp
|
CMakerTests.cpp
|
#include <CMaker.h>
#include <Config.h>
#include <file_system.h>
#include <gtest/gtest.h>
namespace gatools {
static std::string g_xcmakeJson;
static std::string g_inputCbp;
static std::string g_expectedCbp;
class CMakerTests : public ::testing::Test {
public:
void SetUp() override;
void createTestDir();
void createCbpFile();
CMaker cmaker;
std::string _tmpDir;
std::string _projectDir;
std::string _buildDir;
std::string _cbpFilePath;
};
void CMakerTests::SetUp() {
if (g_xcmakeJson.empty()) {
ga::readFile(CMaker::CONFIG_FILENAME, g_xcmakeJson);
}
if (g_inputCbp.empty()) {
ga::readFile("testproject_input.cbp", g_inputCbp);
}
if (g_expectedCbp.empty()) {
ga::readFile("testproject_output.cbp.xml", g_expectedCbp);
}
_tmpDir = "/tmp/xcmake/test";
_projectDir = ga::combine(_tmpDir, "proj42");
_buildDir = ga::combine(_tmpDir, "build");
_cbpFilePath = ga::combine(_buildDir, "proj42.cbp");
}
void CMakerTests::createTestDir() {
mkdir("/tmp/xcmake/", S_IRWXU);
mkdir(_tmpDir.c_str(), S_IRWXU);
std::string cmakerJsonPath = ga::combine(_tmpDir, CMaker::CONFIG_FILENAME);
remove(cmakerJsonPath.c_str());
ga::writeFile(cmakerJsonPath, g_xcmakeJson);
mkdir(_projectDir.c_str(), S_IRWXU);
mkdir(_buildDir.c_str(), S_IRWXU);
remove(_cbpFilePath.c_str());
}
void CMakerTests::createCbpFile() { ga::writeFile("/tmp/xcmake/test/build/proj42.cbp", g_inputCbp); }
TEST_F(CMakerTests, CMAKE_BASH) {
createTestDir();
std::string sdkDir = ga::combine(_tmpDir, "sdks/v42");
CmdLineArgs cmdLineArgs;
cmdLineArgs.args = {"xcmake", _projectDir, "'-GCodeBlocks - Unix Makefiles'"};
cmdLineArgs.pwd = _buildDir;
cmdLineArgs.home = _tmpDir;
int r = cmaker.init(cmdLineArgs);
ASSERT_EQ(0, r);
// Check the Execution plan: env and cmd are updated
{
const ExecutionPlan *ep = cmaker.getExecutionPlan();
const auto &env = ep->cmdLineArgs.env;
ASSERT_EQ(1, env.size());
ASSERT_TRUE(std::find(env.begin(), env.end(), "E1=1") != env.end());
ASSERT_EQ(sdkDir + "/usr/bin/cmaker", ep->exePath);
const auto &args = ep->cmdLineArgs.args;
ASSERT_EQ(cmdLineArgs.args.size(), args.size());
ASSERT_EQ(sdkDir + "/usr/bin/cmake", args[0]);
for (size_t i = 1; i < args.size(); i++) {
ASSERT_EQ(cmdLineArgs.args[i], args[i]);
}
ASSERT_EQ(cmdLineArgs.pwd, ep->cmdLineArgs.pwd);
ASSERT_EQ(cmdLineArgs.home, ep->cmdLineArgs.home);
ASSERT_EQ(_buildDir, ep->buildDir);
ASSERT_EQ(_projectDir, ep->projectDir);
ASSERT_EQ(sdkDir, ep->sdkDir);
ASSERT_EQ(2, ep->extraAddDirectory.size());
ASSERT_EQ(2, ep->gccClangFixes.size());
ASSERT_EQ(1, ep->cbpSearchPaths.size());
ASSERT_EQ(_buildDir, ep->cbpSearchPaths[0]);
ASSERT_EQ(1, ep->output.size());
}
// we skip the run and just write the
ga::writeFile(_buildDir + "/proj42.cbp", g_inputCbp);
r = cmaker.patch();
ASSERT_EQ(0, r);
std::string actualCbp;
ga::readFile(_cbpFilePath, actualCbp);
ASSERT_EQ(actualCbp, g_expectedCbp);
// Execute bash in the build directory
cmdLineArgs.args = {"xbash"};
cmdLineArgs.pwd = ga::combine(_buildDir, "some_dir");
cmdLineArgs.home = _tmpDir;
r = cmaker.init(cmdLineArgs);
ASSERT_EQ(0, r);
// Check the Execution plan: env and cmd are updated
{
const ExecutionPlan *ep = cmaker.getExecutionPlan();
const auto &env = ep->cmdLineArgs.env;
ASSERT_EQ(1, env.size());
ASSERT_TRUE(std::find(env.begin(), env.end(), "E1=1") != env.end());
ASSERT_EQ(sdkDir + "/usr/bin/basher", ep->exePath);
const auto &args = ep->cmdLineArgs.args;
ASSERT_EQ(cmdLineArgs.args.size(), args.size());
ASSERT_EQ(sdkDir + "/usr/bin/bash", args[0]);
for (size_t i = 1; i < args.size(); i++) {
ASSERT_EQ(cmdLineArgs.args[i], args[i]);
}
ASSERT_EQ(cmdLineArgs.pwd, ep->cmdLineArgs.pwd);
ASSERT_EQ(cmdLineArgs.home, ep->cmdLineArgs.home);
ASSERT_TRUE(ep->cbpSearchPaths.empty());
ASSERT_TRUE(ep->output.empty());
}
}
TEST_F(CMakerTests, CMAKE_CP_TO_BUILD) {
createTestDir();
CmdLineArgs cmdLineArgs;
cmdLineArgs.args = {"cmakeCPtoBuild", _projectDir, "'-GCodeBlocks - Unix Makefiles'"};
cmdLineArgs.pwd = _buildDir;
cmdLineArgs.home = _tmpDir;
int r = cmaker.init(cmdLineArgs);
ASSERT_EQ(0, r);
r = cmaker.run();
ASSERT_EQ(0, r);
r = cmaker.patch();
ASSERT_EQ(0, r);
std::string actualCbp;
ga::readFile(_cbpFilePath, actualCbp);
ASSERT_EQ(actualCbp, g_expectedCbp);
}
TEST_F(CMakerTests, WriteDefaultConfig) {
createTestDir();
std::string cmakeConfigPath = ga::combine(_tmpDir, CMaker::CONFIG_FILENAME);
remove(cmakeConfigPath.c_str());
ASSERT_FALSE(ga::pathExists(cmakeConfigPath));
// No default cofiguration exists. The init will fail
CmdLineArgs cmdLineArgs;
cmdLineArgs.args = {"xbash"};
cmdLineArgs.pwd = _buildDir;
cmdLineArgs.home = _tmpDir;
int r = cmaker.init(cmdLineArgs);
ASSERT_EQ(-1, r);
ASSERT_FALSE(ga::pathExists(cmakeConfigPath));
// The default configuration is used and written to the home directory.
JConfig defaultConfig = deserialize(g_xcmakeJson);
cmaker.setDefaultConfig(defaultConfig);
r = cmaker.init(cmdLineArgs);
ASSERT_EQ(0, r);
ASSERT_TRUE(ga::pathExists(cmakeConfigPath));
std::string actualConfigStr;
ga::readFile(cmakeConfigPath, actualConfigStr);
JConfig actualConfig = deserialize(actualConfigStr);
ASSERT_EQ(actualConfig, defaultConfig);
}
TEST_F(CMakerTests, ECHO) {
createTestDir();
CmdLineArgs cmdLineArgs;
cmdLineArgs.args = {"xecho", "test"};
cmdLineArgs.pwd = _tmpDir;
cmdLineArgs.home = cmdLineArgs.pwd;
int r = cmaker.init(cmdLineArgs);
ASSERT_EQ(0, r);
const ExecutionPlan *ep = cmaker.getExecutionPlan();
const auto &env = ep->cmdLineArgs.env;
ASSERT_EQ(2, env.size());
ASSERT_TRUE(std::find(env.begin(), env.end(), "E1=1") != env.end());
ASSERT_TRUE(std::find(env.begin(), env.end(), "E2=2") != env.end());
ASSERT_EQ("/usr/bin/echo", ep->exePath);
const auto &args = ep->cmdLineArgs.args;
ASSERT_EQ(2, args.size());
ASSERT_EQ("/usr/bin/echo", args[0]);
ASSERT_EQ("test", args[1]);
ASSERT_EQ(cmdLineArgs.pwd, ep->cmdLineArgs.pwd);
ASSERT_EQ(cmdLineArgs.home, ep->cmdLineArgs.home);
ASSERT_TRUE(ep->cbpSearchPaths.empty());
ASSERT_TRUE(ep->output.empty());
}
} // namespace gatools
|
97824583efdcdb7199a88d70ea7ca0f9c768ee6b
|
441f149a73fb77ac854ec8fe7c3297dd812584fe
|
/src/element/pmlelastic2d1.cc
|
e4bfbf3b4f44e37f6398b6d47b18d030309bafc7
|
[] |
no_license
|
dbindel/hiqlab
|
b0f960d3eb7e78e5fbc01653f7a1d906064649ae
|
de9021b55cb7992b616a9a4637c402faf05d59c7
|
refs/heads/master
| 2021-01-20T19:53:01.091690
| 2012-01-13T22:22:44
| 2012-01-13T22:22:44
| 65,870,655
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 15,862
|
cc
|
pmlelastic2d1.cc
|
#line 1 "pmlelastic2d.cc"
/* HiQLab
* Copyright (c): Regents of the University of California
*/
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <vector>
#include "luasupport.h"
#include "qmatrix.h"
#include "gaussquad.h"
#include "qcomplex.h"
#include "shapes.h"
#include "pmlelastic2d.h"
#include "mesh.h"
#include "material_model.h"
using std::vector;
#define ME PMLElastic2d
#define MAXNEN 25
ME::ME(double E, double nu, double rho, int plane_type) :
PMLElement(2), L(NULL), rho(rho)
{
double lambda = E*nu/(1+nu)/(1-2*nu);
double mu = E/2/(1+nu);
if (plane_type == 0) // -- Plane strain
elasticity_2D_strain(D.data, lambda, mu);
else // -- Plane stress
elasticity_2D_stress(D.data, lambda, mu);
}
ME::ME(double* Ddata, double rho) :
PMLElement(2), L(NULL), rho(rho)
{
D = Ddata;
}
ME::ME(lua_State* L, int func) :
PMLElement(2)
{
if (!lua_isfunction(L,func)) {
this->L = NULL;
D.clear();
rho = 0;
} else {
this->L = L;
lua_pushstring(L, "material");
lua_pushvalue(L,func);
lua_objsettable(L, this);
}
}
ME::~ME()
{
}
void ME::compute_D(Mesh* mesh, int eltid, double* N)
{
if (!L)
return;
QMatrix<double> localx(nen,2);
set_local_x(mesh, eltid, localx.data, 2);
double px[2] = {0e0, 0e0};
for (int i = 0; i < nen; ++i) {
px[0] += N[i]*localx(i,0);
px[1] += N[i]*localx(i,1);
}
lua_pushstring(L, "material");
lua_objgettable(L, this);
for (int i = 0; i < 2; ++i)
lua_pushnumber(L, px[i]);
lua_pushnumber(L, eltid);
if (lua_pcall2(L, 3, 4) == 0) {
if (lua_istable(L,-4)) { // Returns D, rho
for (int i = 0; i < 9; ++i) {
lua_rawgeti(L,-4,i+1);
D.data[i] = lua_tonumber(L,-1);
lua_pop(L,1);
}
rho = lua_tonumber(L,-3);
} else { // Returns E, nu, rho, plane_type
double E = lua_tonumber(L,-4);
double nu = lua_tonumber(L,-3);
rho = lua_tonumber(L,-2);
int plane_type = (int) lua_tonumber(L,-1);
double lambda = E*nu/(1+nu)/(1-2*nu);
double mu = E/2/(1+nu);
if (plane_type == 0) {
elasticity_2D_strain(D.data,lambda,mu);
} else {
elasticity_2D_stress(D.data,lambda,mu);
}
}
lua_pop(L, 4);
}
}
template<class Ts, class T> inline
void ME::compute_stress(Ts* dNdx, T* u, T* sig)
{
T eps[3] = {0e0, 0e0, 0e0};
for (int j = 0; j < nen; ++j) {
Ts* dNj = dNdx+2*j;
T* uj = u+2*j;
/* <generator matexpr complex="T">
complex input dNj(2);
complex input uj(2);
complex inout eps(3);
Bj = [dNj(1), 0;
0, dNj(2);
dNj(2), dNj(1)];
eps += Bj*uj;
*/
/* <generated matexpr> */ {
#line 125 "pmlelastic2d.cc"
T tmp2_ = dNj[0*2+0];
T tmp3_ = dNj[0*2+1];
#line 126 "pmlelastic2d.cc"
T tmp5_ = uj[0*2+0];
T tmp6_ = uj[0*2+1];
#line 127 "pmlelastic2d.cc"
T tmp8_ = eps[0*3+0];
T tmp9_ = eps[0*3+1];
T tmp10_ = eps[0*3+2];
#line 131 "pmlelastic2d.cc"
#line 133 "pmlelastic2d.cc"
T tmp13_ = tmp2_ * tmp5_;
T tmp14_ = tmp3_ * tmp6_;
T tmp15_ = tmp3_ * tmp5_;
T tmp16_ = tmp2_ * tmp6_;
T tmp17_ = tmp15_ + tmp16_;
T tmp18_ = tmp8_ + tmp13_;
T tmp19_ = tmp9_ + tmp14_;
T tmp20_ = tmp10_ + tmp17_;
#line 127 "pmlelastic2d.cc"
eps[0*3+0] = tmp18_;
eps[0*3+1] = tmp19_;
eps[0*3+2] = tmp20_;
} /* </generated matexpr> */
#line 135 "pmlelastic2d.cc"
}
/* <generator matexpr complex="T">
input D symmetric(3);
complex input eps(3);
output sig(3);
sig = D*eps;
*/
/* <generated matexpr> */ {
#line 138 "pmlelastic2d.cc"
double tmp2_ = D[0*3+0];
double tmp3_ = D[1*3+0];
double tmp4_ = D[1*3+1];
double tmp5_ = D[2*3+0];
double tmp6_ = D[2*3+1];
double tmp7_ = D[2*3+2];
#line 139 "pmlelastic2d.cc"
T tmp9_ = eps[0*3+0];
T tmp10_ = eps[0*3+1];
T tmp11_ = eps[0*3+2];
#line 141 "pmlelastic2d.cc"
T tmp13_ = tmp2_ * tmp9_;
T tmp14_ = tmp3_ * tmp10_;
T tmp15_ = tmp13_ + tmp14_;
T tmp16_ = tmp5_ * tmp11_;
T tmp17_ = tmp15_ + tmp16_;
T tmp18_ = tmp3_ * tmp9_;
T tmp19_ = tmp4_ * tmp10_;
T tmp20_ = tmp18_ + tmp19_;
T tmp21_ = tmp6_ * tmp11_;
T tmp22_ = tmp20_ + tmp21_;
T tmp23_ = tmp5_ * tmp9_;
T tmp24_ = tmp6_ * tmp10_;
T tmp25_ = tmp23_ + tmp24_;
T tmp26_ = tmp7_ * tmp11_;
T tmp27_ = tmp25_ + tmp26_;
#line 140 "pmlelastic2d.cc"
sig[0*3+0] = tmp17_;
sig[0*3+1] = tmp22_;
sig[0*3+2] = tmp27_;
} /* </generated matexpr> */
#line 143 "pmlelastic2d.cc"
}
template<class T> inline
void ME::add_K(T* dNdx, T W, QMatrix<T>& K)
{
// -- Form K += B'*D*B * W
int nen2 = 2*nen;
for (int j = 0; j < nen; ++j) {
for (int i = 0; i < nen; ++i) {
T* dNj = dNdx + 2*j;
T* dNi = dNdx + 2*i;
T* Kij = &(K(2*i,2*j));
/* <generator matexpr complex="T">
input D symmetric(3);
complex input W;
complex input dNi(2);
complex input dNj(2);
complex inout Kij[nen2](2,2);
Bi = [dNi(1), 0;
0, dNi(2);
dNi(2), dNi(1)];
Bj = [dNj(1), 0;
0, dNj(2);
dNj(2), dNj(1)];
Kij += (Bi'*D*Bj) * W;
*/
/* <generated matexpr> */ {
#line 158 "pmlelastic2d.cc"
double tmp2_ = D[0*3+0];
double tmp3_ = D[1*3+0];
double tmp4_ = D[1*3+1];
double tmp5_ = D[2*3+0];
double tmp6_ = D[2*3+1];
double tmp7_ = D[2*3+2];
#line 159 "pmlelastic2d.cc"
T tmp9_ = W;
#line 160 "pmlelastic2d.cc"
T tmp11_ = dNi[0*2+0];
T tmp12_ = dNi[0*2+1];
#line 161 "pmlelastic2d.cc"
T tmp14_ = dNj[0*2+0];
T tmp15_ = dNj[0*2+1];
#line 162 "pmlelastic2d.cc"
T tmp17_ = Kij[0*nen2+0];
T tmp18_ = Kij[0*nen2+1];
T tmp19_ = Kij[1*nen2+0];
T tmp20_ = Kij[1*nen2+1];
#line 166 "pmlelastic2d.cc"
#line 170 "pmlelastic2d.cc"
#line 172 "pmlelastic2d.cc"
T tmp24_ = tmp11_ * tmp2_;
T tmp25_ = tmp12_ * tmp5_;
T tmp26_ = tmp24_ + tmp25_;
T tmp27_ = tmp12_ * tmp3_;
T tmp28_ = tmp11_ * tmp5_;
T tmp29_ = tmp27_ + tmp28_;
T tmp30_ = tmp11_ * tmp3_;
T tmp31_ = tmp12_ * tmp6_;
T tmp32_ = tmp30_ + tmp31_;
T tmp33_ = tmp12_ * tmp4_;
T tmp34_ = tmp11_ * tmp6_;
T tmp35_ = tmp33_ + tmp34_;
T tmp36_ = tmp12_ * tmp7_;
T tmp37_ = tmp28_ + tmp36_;
T tmp38_ = tmp11_ * tmp7_;
T tmp39_ = tmp31_ + tmp38_;
T tmp40_ = tmp26_ * tmp14_;
T tmp41_ = tmp37_ * tmp15_;
T tmp42_ = tmp40_ + tmp41_;
T tmp43_ = tmp29_ * tmp14_;
T tmp44_ = tmp39_ * tmp15_;
T tmp45_ = tmp43_ + tmp44_;
T tmp46_ = tmp32_ * tmp15_;
T tmp47_ = tmp37_ * tmp14_;
T tmp48_ = tmp46_ + tmp47_;
T tmp49_ = tmp35_ * tmp15_;
T tmp50_ = tmp39_ * tmp14_;
T tmp51_ = tmp49_ + tmp50_;
T tmp52_ = tmp42_ * tmp9_;
T tmp53_ = tmp45_ * tmp9_;
T tmp54_ = tmp48_ * tmp9_;
T tmp55_ = tmp51_ * tmp9_;
T tmp56_ = tmp17_ + tmp52_;
T tmp57_ = tmp18_ + tmp53_;
T tmp58_ = tmp19_ + tmp54_;
T tmp59_ = tmp20_ + tmp55_;
#line 162 "pmlelastic2d.cc"
Kij[0*nen2+0] = tmp56_;
Kij[0*nen2+1] = tmp57_;
Kij[1*nen2+0] = tmp58_;
Kij[1*nen2+1] = tmp59_;
} /* </generated matexpr> */
#line 174 "pmlelastic2d.cc"
}
}
}
template<class T> inline
void ME::add_M(double* N, T W, QMatrix<T>& K)
{
// -- Form M += rho*kron(N*N', I2) * W
for (int j = 0; j < nen; ++j) {
for (int i = 0; i < nen; ++i) {
T Mij = rho*N[i]*N[j]*W;
for (int k = 0; k < 2; ++k)
K(i*2+k, j*2+k) += Mij;
}
}
}
template<class T> inline
void ME::add_Ku(T* dNdx, T* u, T W, QMatrix<T>& F)
{
// -- Form F += B'*(D*B*u) * W
T sig[3];
compute_stress(dNdx, u, sig);
for (int i = 0; i < nen; ++i) {
T* dNi = dNdx+2*i;
T* Fi = &(F(0,i));
/* <generator matexpr complex="T">
complex input dNi(2), sig(3), W;
complex inout Fi(2);
Bi = [dNi(1), 0;
0, dNi(2);
dNi(2), dNi(1)];
Fi += (Bi'*sig) * W;
*/
/* <generated matexpr> */ {
#line 204 "pmlelastic2d.cc"
T tmp2_ = dNi[0*2+0];
T tmp3_ = dNi[0*2+1];
#line 204 "pmlelastic2d.cc"
T tmp5_ = sig[0*3+0];
T tmp6_ = sig[0*3+1];
T tmp7_ = sig[0*3+2];
#line 204 "pmlelastic2d.cc"
T tmp9_ = W;
#line 205 "pmlelastic2d.cc"
T tmp11_ = Fi[0*2+0];
T tmp12_ = Fi[0*2+1];
#line 209 "pmlelastic2d.cc"
#line 211 "pmlelastic2d.cc"
T tmp15_ = tmp2_ * tmp5_;
T tmp16_ = tmp3_ * tmp7_;
T tmp17_ = tmp15_ + tmp16_;
T tmp18_ = tmp3_ * tmp6_;
T tmp19_ = tmp2_ * tmp7_;
T tmp20_ = tmp18_ + tmp19_;
T tmp21_ = tmp17_ * tmp9_;
T tmp22_ = tmp20_ * tmp9_;
T tmp23_ = tmp11_ + tmp21_;
T tmp24_ = tmp12_ + tmp22_;
#line 205 "pmlelastic2d.cc"
Fi[0*2+0] = tmp23_;
Fi[0*2+1] = tmp24_;
} /* </generated matexpr> */
#line 213 "pmlelastic2d.cc"
}
}
template<class T> inline
void ME::add_Ma(double* N, T* a, T W, QMatrix<T>& F)
{
// -- Form F += rho*kron(N*N', I2) * a * dcomplex
T aa[2] = {0e0, 0e0};
W *= rho;
for (int j = 0; j < nen; ++j)
for (int k = 0; k < 2; ++k)
aa[k] += N[j]*a[2*j+k] * W;
for (int i = 0; i < nen; ++i)
for (int k = 0; k < 2; ++k)
F(k,i) += N[i]*aa[k];
}
void ME::assemble_dR(Mesh* mesh, int eltid, QAssembler* K,
double cx, double cv, double ca)
{
int id[MAXNEN*2];
nen = mesh->get_nen(eltid);
set_local_id(mesh, eltid, id);
Quad2d shape(mesh, eltid, nen);
if (has_stretch()) {
dcomplex nodestretch[MAXNEN*2];
set_local_stretch(mesh, eltid, nodestretch, nen, 2);
PMLShape pshape(shape, nodestretch);
QMatrix<dcomplex> Ke(NULL, 2*nen, 2*nen);
for (Quad2dInt iter(nen); !iter.end(); iter.next()) {
pshape.eval(iter.X());
dcomplex Wt = iter.W()*pshape.Jt();
compute_D(mesh, eltid, pshape.N());
if (cx) add_K(pshape.dNdxt(), cx * Wt, Ke);
if (ca) add_M(pshape.N(), ca * Wt, Ke);
}
K->add(id, 2*nen, Ke.data);
} else {
QMatrix<double> Ke(NULL, 2*nen, 2*nen);
for (Quad2dInt iter(nen); !iter.end(); iter.next()) {
shape.eval(iter.X());
double Wt = iter.W()*shape.J();
compute_D(mesh, eltid, shape.N());
if (cx) add_K(shape.dNdx(), cx * Wt, Ke);
if (ca) add_M(shape.N(), ca * Wt, Ke);
}
K->add(id, 2*nen, Ke.data);
}
}
void ME::assemble_R(Mesh* mesh, int eltid)
{
nen = mesh->get_nen(eltid);
Quad2d shape(mesh, eltid, nen);
if (has_stretch()) {
dcomplex nodestretch[MAXNEN*2];
set_local_stretch(mesh, eltid, nodestretch, nen, 2);
PMLShape pshape(shape, nodestretch);
QMatrix<dcomplex> Fe(NULL, 2, nen);
dcomplex nodeu[MAXNEN*2];
dcomplex nodea[MAXNEN*2];
set_local_u(mesh, eltid, nodeu);
set_local_a(mesh, eltid, nodea);
for (Quad2dInt iter(nen); !iter.end(); iter.next()) {
pshape.eval(iter.X());
dcomplex Wt = iter.W()*pshape.Jt();
compute_D(mesh, eltid, pshape.N());
add_Ku(pshape.dNdxt(), nodeu, Wt, Fe);
add_Ma(pshape.N(), nodea, Wt, Fe);
}
add_local_f(mesh, eltid, Fe.data);
} else {
QMatrix<double> Fe(NULL, 2, nen);
double nodeu[MAXNEN*2];
double nodea[MAXNEN*2];
set_local_u(mesh, eltid, nodeu);
set_local_a(mesh, eltid, nodea);
for (Quad2dInt iter(nen); !iter.end(); iter.next()) {
shape.eval(iter.X());
double Wt = iter.W()*shape.J();
compute_D(mesh, eltid, shape.N());
add_Ku(shape.dNdx(), nodeu, Wt, Fe);
add_Ma(shape.N(), nodea, Wt, Fe);
}
add_local_f(mesh, eltid, Fe.data);
}
}
void ME::project_L2(Mesh* mesh, int eltid, int nfields,
double* Mdiag, double* xfields,
FieldEval& xfunc)
{
nen = mesh->get_nen(eltid);
vector<double> Xfields(nfields);
Quad2d shape(mesh, eltid, nen);
for (Quad2dInt iter(nen); !iter.end(); iter.next()) {
shape.eval(iter.X());
double Wt = iter.W()*shape.J();
double* N = shape.N();
for (int i = 0; i < nen; ++i) {
int ii = mesh->ix(i,eltid);
Mdiag[ii] += N[i]*Wt;
xfunc(mesh, eltid, iter.X(), &(Xfields[0]));
for (int j = 0; j < nfields; ++j)
xfields[ii*nfields+j] += Xfields[j]*N[i]*Wt;
}
}
}
double* ME::mean_power(Mesh* mesh, int eltid, double* X, double* EX)
{
nen = mesh->get_nen(eltid);
dcomplex nodeu[MAXNEN*2];
dcomplex nodev[MAXNEN*2];
set_local_u(mesh, eltid, nodeu);
set_local_v(mesh, eltid, nodev);
Quad2d shape(mesh, eltid, nen);
shape.eval(X);
dcomplex vx[2] = {0e0, 0e0};
for (int j = 0; j < nen; ++j) {
double Nj = shape.N(j);
vx[0] += nodev[2*j+0] * Nj;
vx[1] += nodev[2*j+1] * Nj;
}
dcomplex stress[3];
compute_D(mesh, eltid, shape.N());
compute_stress(shape.dNdx(), nodeu, stress);
/* <generator matexpr complex="dcomplex">
complex input stress(3);
complex input vx(2);
output EX(2);
sigt = [stress(1), stress(3); stress(3), stress(1)];
EX = -real( sigt*conj(vx) )/2;
*/
/* <generated matexpr> */ {
#line 360 "pmlelastic2d.cc"
dcomplex tmp2_ = stress[0*3+0];
dcomplex tmp3_ = stress[0*3+2];
#line 361 "pmlelastic2d.cc"
dcomplex tmp5_ = vx[0*2+0];
dcomplex tmp6_ = vx[0*2+1];
#line 364 "pmlelastic2d.cc"
#line 365 "pmlelastic2d.cc"
dcomplex tmp9_ = conj(tmp5_);
dcomplex tmp10_ = conj(tmp6_);
dcomplex tmp11_ = tmp2_ * tmp9_;
dcomplex tmp12_ = tmp3_ * tmp10_;
dcomplex tmp13_ = tmp11_ + tmp12_;
dcomplex tmp14_ = tmp3_ * tmp9_;
dcomplex tmp15_ = tmp2_ * tmp10_;
dcomplex tmp16_ = tmp14_ + tmp15_;
double tmp17_ = real(tmp13_);
double tmp18_ = real(tmp16_);
double tmp19_ = -tmp17_;
double tmp20_ = -tmp18_;
double tmp22_ = tmp19_ / 2.0;
double tmp23_ = tmp20_ / 2.0;
#line 362 "pmlelastic2d.cc"
EX[0*2+0] = tmp22_;
EX[0*2+1] = tmp23_;
} /* </generated matexpr> */
#line 367 "pmlelastic2d.cc"
return EX+2;
}
double* ME::stress(Mesh* mesh, int eltid, double* X, double* stress)
{
nen = mesh->get_nen(eltid);
double nodeu[MAXNEN*2];
set_local_u(mesh, eltid, nodeu);
Quad2d shape(mesh, eltid, nen);
shape.eval(X);
compute_D(mesh, eltid, shape.N());
compute_stress(shape.dNdx(), nodeu, stress);
return stress+3;
}
|
6909bc78da31ae16ae91d540f352c91d2096cd47
|
1cdcc9cab308afa31141e55baf71d225a090dfb3
|
/web/charting/wd3/include/modules/hmpp/column.h
|
253575833b0e58ce7d4d56079082705544412e4f
|
[
"Apache-2.0"
] |
permissive
|
orri93/experimental
|
b256391206a56557dc202f1fc6732237dd39e23e
|
6aa8ef71656c6086d3660faafe91fa57b5aff80a
|
refs/heads/master
| 2022-08-30T11:55:33.746451
| 2022-07-27T09:02:17
| 2022-07-27T09:02:17
| 241,103,958
| 0
| 0
|
Apache-2.0
| 2021-04-30T20:26:41
| 2020-02-17T12:37:08
|
JavaScript
|
UTF-8
|
C++
| false
| false
| 1,303
|
h
|
column.h
|
#ifndef WD3_HM_CPP_COLUMN_H_
#define WD3_HM_CPP_COLUMN_H_
#include <cstddef>
#include <ctime>
#include <deque>
#include <memory>
#include <modules/hmpp/types.h>
#include <modules/hmpp/point.h>
namespace wd3 {
class column {
public:
column(const int& size, const ::wd3::type::time& time);
column(const column& column);
column& operator=(const column& column);
bool operator==(const column& column) const;
bool operator!=(const column& column) const;
bool operator<(const column& column) const;
bool operator>(const column& column) const;
double determination(const double& value);
void set(const int& index, const double& depth, const double& value);
const bool is(const int& index) const;
const point& at(const int& index) const;
const ::wd3::type::time& time() const;
const int& size() const;
void sort();
private:
void assign(const column& column);
int index(const double& value) const;
double interpolate(const int& index, const double& value);
static double interpolate(const point& first, const point& second, const double& value);
::wd3::type::time _time;
int _size;
PointsPtr _points;
};
typedef ::std::deque<column> ColumnQueue;
typedef ColumnQueue::iterator ColumnIterator;
typedef ColumnQueue::size_type ColumnSize;
} // namespace wd3
#endif
|
33ca560505b8dcc125aadd5a129d823f51ff309c
|
5791fdaa441fb4fd6a3d18cfcc60e855431aba50
|
/KargerMinCut/KargerMinCut/Main.cpp
|
b7f7b2ce2c2c7b8e6628ebca9b04c3c71507c896
|
[] |
no_license
|
egross91/Summer2013
|
d42bca953a50ed0871d3d5adbc81a09a8619362c
|
645965626378b0fd8580862ede266180747541cd
|
refs/heads/master
| 2021-01-22T07:39:16.209566
| 2013-08-24T18:23:16
| 2013-08-24T18:23:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,608
|
cpp
|
Main.cpp
|
#include <iostream>
#include <fstream>
#include <algorithm>
#include <vector>
#include <string>
#include <sstream>
#include <unordered_map>
#include <math.h>
#include <time.h>
using namespace std;
unordered_map<int, vector<int> > verts_edges;
vector<int> keys;
void loadFile();
void saveFile();
int randomVertex();
int randomVertexEdge(int);
void kargerCut(int, int);
void keyRemove(int);
int main(int argc, char * argv[])
{
loadFile();
unordered_map<int, vector<int> > *ve_copy = new unordered_map<int, vector<int> >();
*ve_copy = verts_edges;
vector<int> *key_copy = new vector<int>();
*key_copy = keys;
srand((unsigned int) time(NULL));
int iterations = 0;
while (iterations < 100)
{
cout << "Iteration " << iterations+1 << " : " << endl;
verts_edges = *ve_copy;
keys = *key_copy;
while (verts_edges.size() > 2)
{
int u = randomVertex();
int v = randomVertexEdge(u); // Pick a random vertex edge of the random Node.
kargerCut(u, v);
}
cout << "Cut : " << verts_edges[keys.at(0)].size() << endl;
++iterations;
}
// saveFile();
delete ve_copy; delete key_copy;
ve_copy = NULL; key_copy = NULL;
cout << "Happy Coding!";
cin.get();
return 0;
}
void loadFile()
{
try
{
cout << "Loading File..." << endl << endl;
ifstream load("kargerMinCut.txt");
string line, temp;
int node = 1;
while (getline(load, line))
{
// Parse the ints out one by one to strings.
vector<string> n_e;
for (unsigned int i = 0; i < line.length(); ++i)
{
if ((line[i] == 32 || line[i] == 9) && line.length() > 0)
{
n_e.push_back(temp);
temp = "";
}
else if (line[i] != 32 || line[i] != 9)
temp += line[i];
}
// Actually parse the ints using stringstream and store them within vert_edge.
for (unsigned int i = 0; i < n_e.size(); ++i)
{
stringstream ss(n_e[i]);
int num;
ss >> num;
if (i != 0)
verts_edges[node].push_back(num);
// Save the extracted Node in the keys vector.
else
keys.push_back(num);
}
++node;
}
load.close();
}
catch (...)
{
cerr << "Failed to load file." << endl << endl;
}
}
/* void saveFile()
{
try
{
ofstream save("kargerCut.txt");
int node;
for (unsigned int i = 0; i < verts_edges.size(); ++i)
{
node = keys[i];
for (unsigned int j = 0; j < verts_edges[node].size(); ++j)
save << verts_edges[node][j] << "\t";
save << endl;
}
save.close();
}
catch (...)
{
cerr << "Failed to save graph." << endl;
}
} */
void kargerCut(int v1, int v2)
{
for (unsigned int i = 0; i < verts_edges[v2].size(); ++i) // Put all of v2's edges into v1's. Ultimately merging the Nodes.
verts_edges[v1].push_back(verts_edges[v2][i]);
for (unsigned int i = 0; i < keys.size(); ++i) // Make sure v2 never shows up again in the verts_edges.
{
unsigned int node = (unsigned int) keys[i];
replace(verts_edges[node].begin(), verts_edges[node].end(), v2, v1);
}
verts_edges[v1].erase(remove(verts_edges[v1].begin(), verts_edges[v1].end(), v1), verts_edges[v1].end()); // Remove any self-loops.
verts_edges.erase(v2); // erase() the old Node from the graph.
keyRemove(v2); // remove() the old Node from the keys.
}
int randomVertex()
{
int size = keys.size();
return keys[(rand()%size)];
}
int randomVertexEdge(int node)
{
vector<int> edges = verts_edges[node];
int size = edges.size();
int random = rand() % size;
return edges[random];
}
void keyRemove(int v1)
{
vector<int>::iterator itr = keys.begin();
for (unsigned int i = 0; i < keys.size(); ++i)
{
if (keys[i] == v1)
{
keys.erase(itr + i);
break;
}
}
}
|
db460f7b67ffd67e505fb4699bbce839a90f3075
|
417836b8bca49dfbd0f55fcc616161fb97b87ba7
|
/ my-simple-code/src/game/LoongBgSrv/BattlegroundState.h
|
4de1c75804b31b33447048f05caf3d2916d1ddbb
|
[] |
no_license
|
befollow/cppGameFrame
|
636c729d4fe4b44b36e4d2190773b0a4ec0e0ea1
|
c494a489e0cdde7e95712fd543b709cb33586bb4
|
refs/heads/master
| 2020-03-20T08:51:16.215723
| 2015-03-19T06:44:49
| 2015-03-19T06:44:49
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 977
|
h
|
BattlegroundState.h
|
/*
* BattlegroundState.h
*
* Created on: 2012-3-23
*
*/
#ifndef GAME_BATTLEGROUNDSTATE_H_
#define GAME_BATTLEGROUNDSTATE_H_
#include <mysdk/base/Common.h>
#include <string>
using namespace mysdk;
class Battleground;
class BattlegroundState
{
public:
typedef enum tagBgStateE
{
BGSTATE_NONE = 0,
BGSTATE_WAIT = 1,
BGSTATE_COUNTDOWN = 2,
BGSTATE_START = 3,
BGSTATE_RUN = 4,
BGSTATE_EXIT = 5,
BGSTATE_COUNT = 6,
}BgStateE;
public:
BattlegroundState(Battleground* bg);
virtual ~BattlegroundState();
virtual void start();
virtual void run(int64 curTime);
virtual void end();
virtual BgStateE getState() { return BGSTATE_NONE; }
virtual uint32 getStateTimeLimit() { return 99999999; }
virtual std::string getStateName() { return "null!!!"; }
uint32 getLeftTime();
protected:
Battleground* pBattleground_;
int64 startTime_;
};
#endif /* BATTLEGROUNDSTATE_H_ */
|
e926a073cade186ec3776a27052d8a4ff8bed47e
|
b4eedc991f5d08b8cc9d914d0812567c733535e9
|
/HB_Strings/stringComparision.cpp
|
238328f2e9cf032e30fe7ced50e3848df87e6c2f
|
[] |
no_license
|
vibgyor98/cp
|
170ccd97d83889f2bc93405685a3966bc9009890
|
56afcb34006c9dc2214e27df3dc98479e6fe0dfb
|
refs/heads/master
| 2023-03-03T09:50:32.851019
| 2021-02-11T07:28:52
| 2021-02-11T07:28:52
| 270,623,457
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 583
|
cpp
|
stringComparision.cpp
|
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
void solve(string s, int l) {
for(int i=0; i<l; i++) {
int cnt = 1;
while(s[i]==s[i+1]) {
cnt++;
i++;
}
cout<<s[i]<<cnt;
}
}
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
string s;
cin>>s;
int l = s.length();
// sort(s.begin(), s.end());
// for(int i=0; i<l; i++) {
// cout<<s[i];
// }
// cout<<"\n";
solve(s,l);
return 0;
}
/*
input
aaabbccds
sskkkkkkwaerrtss
output
a3b2c2d1s1
s2k6w1a1e1r2t1s2
*/
|
a47c25d750dd35b39652ef9922a3360766d3005f
|
8ab4c744f78fe4806212e7ad9f3cbc0fa6501541
|
/test/linear/test_list.cc
|
1e5ad5eaed666af8f6599fb27d9ee950eff534d3
|
[] |
no_license
|
bianliangpai/data_structure
|
bb4edb235ecd4a11452ed7570b9433981ce58e6d
|
b877484a692c39c04b9c3cbf5906618198a6f0c5
|
refs/heads/main
| 2023-08-07T19:59:35.411448
| 2021-09-08T15:59:59
| 2021-09-08T15:59:59
| 399,283,431
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 736
|
cc
|
test_list.cc
|
#include <iostream>
#include "Linear/List.h"
int main() {
blp::List<int> li;
for (int i{0}; i < 10; ++i) {
li.push_back(i);
}
std::cout << li << std::endl;
blp::List<int> li1 = li;
std::cout << li1 << std::endl;
auto sz = li1.size();
for (auto i{0}; i < sz; ++i) {
li1.erase(li1.begin());
}
std::cout << li1 << std::endl;
for (int i{0}; i < 10; ++i) {
li1.push_front(i);
}
std::cout << li1 << std::endl;
li1.resize(5);
std::cout << li1 << std::endl;
li1.resize(10);
std::cout << li1 << std::endl;
li1.clear();
std::cout << li1 << std::endl;
li1.assign(10, 1);
std::cout << li1 << std::endl;
li1.assign(li.begin(), li.end());
std::cout << li1 << std::endl;
return 0;
}
|
62142a3b40b501af16ce8905aad293dd02cd3799
|
4909489caa5f8c81123d1b8419fa185d62f16a97
|
/src/robot/commands/toggle_collector.cpp
|
24074f3073c78524aa2ec00173e90df5c5ce636a
|
[
"MIT"
] |
permissive
|
Lukanite/FRC-14
|
25f7217940557a02689c69efe5aace6c62508b97
|
0f0193c254ce3c05903aa7e59008a0bf6e76dfa0
|
refs/heads/master
| 2021-01-24T19:50:04.175210
| 2014-11-05T23:19:18
| 2014-11-05T23:19:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 281
|
cpp
|
toggle_collector.cpp
|
#include "toggle_collector.hpp"
#include "../subsystems/subsystems.hpp"
Toggle_Collector::Toggle_Collector() {
Requires(Subsystems::tilter);
}
void Toggle_Collector::Initialize() {
Subsystems::tilter->toggle_position();
}
bool Toggle_Collector::IsFinished() {
return true;
}
|
bdf56316ce40573d02f8c51d1b44d810b9a13a06
|
05dfdf22fd4f2a55b97ff341c02d812adea241fe
|
/static_external/main.cpp
|
4eb943dfed519884b1e28837235029186afeb5e9
|
[] |
no_license
|
vanyaio/opp
|
6aa461f6bd5f6051500fde0de92b2a72fdbae5d4
|
f01b3b021ff185ddafdbefbed88119d8c2c2a347
|
refs/heads/master
| 2021-08-20T05:28:33.282815
| 2017-11-28T08:09:43
| 2017-11-28T08:09:43
| 109,867,354
| 0
| 0
| null | 2017-11-23T20:37:29
| 2017-11-07T17:17:53
|
C++
|
UTF-8
|
C++
| false
| false
| 769
|
cpp
|
main.cpp
|
#include <iostream>
#include "global_vars.h"
using namespace std;
void foo()
{
static int calling_foo_cnt = 0;
calling_foo_cnt++;
cout << "calling_foo_cnt: " << calling_foo_cnt << endl;
}
void test()
{
cout << "and this is main's test func" << endl;
}
int main()
{
cout << global_c << endl;//global variables ex
cout << "s1: " << s1 << endl;//static vars ex
increment_s1();
increment_s1();
cout << "s1: " << s1 << endl;
foo();//static in function ex
foo();
pretest();//static function ex
test();
//static fields and methods
cout << "global_class_var: " << my_class::get_var() << endl;
my_class::change_static_var();
cout << "global_class_var: " << my_class::get_var() << endl;
return 0;
}
|
ccda91de4eb2bbf55877b8fdb46b9c572f83ff22
|
ac2274b0a9bdddc2e786c0cbede3262b3b45a8ae
|
/tsconwiz/descriptionproperties.cpp
|
db1bbc42872b6267e8ef8753233cbcd6fdb5e754
|
[] |
no_license
|
hjgode/ceTSC
|
f2583f348fab833b44e355d09a206caaffee63fe
|
3823921a3b7e03e039ff712b4ecf2c3eede06ca4
|
refs/heads/master
| 2021-01-18T18:41:50.515797
| 2016-06-27T07:55:24
| 2016-06-27T07:55:24
| 61,810,663
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,488
|
cpp
|
descriptionproperties.cpp
|
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
#include "stdafx.h"
#include "DescriptionProperties.hpp"
#include "TsConWiz.hpp"
#include "RegString.hpp"
#define REG_TSC_PATH _T("Software\\Microsoft\\Terminal Server Client")
CDescriptionPropPage::CDescriptionPropPage (CConWizPropSheet *pOwner) :
CConWizPropPage(pOwner), m_bConnectionNameChanged(FALSE), m_bNameValid(FALSE), m_bServerValid(FALSE)
{
DEBUGMSG (1, (L"CDescriptionPropPage::CDescriptionPropPage\n"));
Init (IDD_DESCRIPTION_DIALOG);
memset(&m_szConnectionName ,0, sizeof(m_szConnectionName));
memset(&m_szServerName ,0, sizeof(m_szServerName));
m_szConnectionName[0] = 0;
m_szServerName[0] = 0;
m_dwRdpPort = DEFAULT_RDP_PORT;
}
CDescriptionPropPage::~CDescriptionPropPage()
{
}
LRESULT CDescriptionPropPage::OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
DEBUGMSG (1, (L"CDescriptionPropPage::OnInitDialog, class is [%s]\n", GetId()));
CConWizPropPage::OnInitDialog (uMsg, wParam, lParam, bHandled);
m_pConnWiz = GetOwner().GetConnWiz();
if (!m_pConnWiz)
{
DEBUGMSG (1, (L"!! Error - couldn't get owner !!\n"));
EndDialog (0);
return 0;
}
m_wndName.Attach (GetDlgItem(IDC_CONNECTION_DESCRIPTION));
m_wndServer.Attach (GetDlgItem(IDC_SERVER));
// fill in values into UI
// Limit the text in these edit fields to respective maximums
m_wndName.SendMessage (EM_SETLIMITTEXT, MAX_CONNECTION_DESCRIPTION-1);
m_wndServer.SendMessage (EM_SETLIMITTEXT, MAX_SERVER_NAME);
// Place the connection and server names into the respective edit
// fields.
m_wndName.SetWindowText (m_pConnWiz->m_szConnectionName);
m_wndServer.SetWindowText (m_pConnWiz->m_szServerName);
#ifdef WBT_USELOWSPEED
m_bLowSpeed = m_pConnWiz->m_bLowSpeedConnection;
// If a low speed connection, check the appropriate box.
m_wndLowSpeed.Attach (GetDlgItem(IDC_LOW_SPEED_CONNECTION));
m_wndLowSpeed.SendMessage (BM_SETCHECK, m_bLowSpeed ? BST_CHECKED : BST_UNCHECKED);
m_wndLowSpeed.EnableWindow (FALSE);
#else
// This turns on Compression and this should be used as the default.
// Define WBT_USELOWSPEED and make appropriate changes if you want to turn off compression for some reason
m_bLowSpeed = TRUE;
#endif
return 1;
}
LRESULT CDescriptionPropPage::OnLowSpeedCheck (WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL &bHandled)
{
#ifdef WBT_USELOWSPEED
// get check state
int state = Button_GetCheck (m_wndLowSpeed);
DEBUGMSG (1, (L"CDescriptionPropPage::OnLowSpeedCheck, state %d\n", state));
m_bLowSpeed = (state == BST_CHECKED);
#endif
return 1;
}
BOOL CDescriptionPropPage::Validate()
{
/*
// Quick check to see if the user changed the connection name from what it
// was before (case-sensitive).
m_bConnectionNameChanged = (CSTR_EQUAL != CompareString (LOCALE_SYSTEM_DEFAULT, 0,
m_pConnWiz->m_szConnectionName, -1,
m_szConnectionName, -1));
*/
/*
if (m_bConnectionNameChanged)
{
*/
// validate length
int nLen = m_wndName.GetWindowTextLength();
for (int i = 0;i < nLen;i++)
{
TCHAR tCurrentChar = m_szConnectionName[i];
// Special condition...
if (i == 0)
{
// Make sure that the first character is not a space
if (tCurrentChar == TCHAR(' '))
{
LPCTSTR pszTitle = LoadStringEx (IDS_INVALID_DESCRIPTION_NAME_TITLE);
LPCTSTR pszMsg = LoadStringEx (IDS_NO_SPACE_IN_DESCRIPTION_MESSAGE);
MessageBox (pszMsg, pszTitle, MB_ICONINFORMATION | MB_OK);
m_wndName.SendMessage (EM_SETSEL, 0, -1);
m_wndName.SetFocus();
return FALSE;
}
}
if (tCurrentChar == TCHAR('\\') ||
tCurrentChar == TCHAR('/') ||
tCurrentChar == TCHAR(':') ||
tCurrentChar == TCHAR('*') ||
tCurrentChar == TCHAR('?') ||
tCurrentChar == TCHAR('"') ||
tCurrentChar == TCHAR('<') ||
tCurrentChar == TCHAR('>') ||
tCurrentChar == TCHAR('|') ||
tCurrentChar == TCHAR(',') ||
tCurrentChar == TCHAR('.') ||
tCurrentChar == TCHAR('[') ||
tCurrentChar == TCHAR(']') ||
tCurrentChar == TCHAR('(') ||
tCurrentChar == TCHAR(')') ||
tCurrentChar == TCHAR(')'))
{
LPCTSTR pszTitle = LoadStringEx (IDS_INVALID_DESCRIPTION_NAME_TITLE);
LPCTSTR pszMsg = LoadStringEx (IDS_INVALID_DESCRIPTION_NAME_MESSAGE);
TCHAR szMsg [MAX_DISPLAY_STRING] = {0};
_tcscpy (szMsg, pszMsg);
_tcscat (szMsg, L"\n\n");
_tcscat (szMsg, L"\t\t");
_tcscat (szMsg, L"\\");
_tcscat (szMsg, L" / : * ?");
_tcscat (szMsg, L" \"");
_tcscat (szMsg, L" < > | , . [ ] ( )");
MessageBox (szMsg, pszTitle, MB_ICONINFORMATION | MB_OK);
m_wndName.SendMessage (EM_SETSEL, 0, -1);
m_wndName.SetFocus();
return FALSE;
}
}
// Check the registry to be sure that another connnection with the
// same name doesn't already exist.
HKEY hKeyTest = NULL;
HKEY hKeyTestConnection = NULL;
if (ERROR_SUCCESS == RegOpenKeyEx (HKEY_CURRENT_USER, REG_TSC_PATH, 0,
KEY_READ, &hKeyTest))
{
if (ERROR_SUCCESS == RegOpenKeyEx(hKeyTest, m_szConnectionName, 0,
KEY_READ, &hKeyTestConnection))
{
LPCTSTR pszTitle = LoadStringEx (IDS_CONNECTION_EXISTS_TITLE);
LPCTSTR pszMsg = LoadStringEx (IDS_CONNECTION_EXISTS_MESSAGE);
MessageBox (pszMsg, pszTitle, MB_ICONINFORMATION | MB_OK);
m_wndName.SendMessage (EM_SETSEL, 0, -1);
m_wndName.SetFocus();
// Close the key
RegCloseKey(hKeyTest);
RegCloseKey(hKeyTestConnection);
return FALSE;
}
// Close the key
RegCloseKey(hKeyTest);
}
/*
}
*/
// Net Connections page...
// Make sure the user has provided a server name.
nLen = m_wndServer.GetWindowTextLength();
TCHAR *pszPort = _tcschr(m_szServerName, TCHAR(':'));
if (pszPort)
{
*pszPort++ = TCHAR('\0');
m_dwRdpPort = _ttoi(pszPort);
if (m_dwRdpPort == 0)
m_dwRdpPort = DEFAULT_RDP_PORT;
}
// Make sure that all the characters in the server name are valid.
int i;
for (i = 0;i < nLen;i++)
{
TCHAR tCurrentChar = m_szServerName[i];
if (tCurrentChar == TCHAR(' ') ||
tCurrentChar == TCHAR('"') ||
tCurrentChar == TCHAR('<') ||
tCurrentChar == TCHAR('>') ||
tCurrentChar == TCHAR('*') ||
tCurrentChar == TCHAR('+') ||
tCurrentChar == TCHAR('=') ||
tCurrentChar == TCHAR('\\') ||
tCurrentChar == TCHAR('|') ||
tCurrentChar == TCHAR('?') ||
tCurrentChar == TCHAR(':') ||
tCurrentChar == TCHAR(';') ||
tCurrentChar == TCHAR('~') ||
tCurrentChar == TCHAR('$') ||
tCurrentChar == TCHAR('%') ||
tCurrentChar == TCHAR('^') ||
tCurrentChar == TCHAR('{') ||
tCurrentChar == TCHAR('}') ||
tCurrentChar == TCHAR('@') ||
tCurrentChar == TCHAR('/') ||
tCurrentChar == TCHAR('\'') ||
tCurrentChar == TCHAR('#') ||
tCurrentChar == TCHAR(','))
{
LPCTSTR pszTitle = LoadStringEx (IDS_INVALID_SERVER_NAME_TITLE);
LPCTSTR pszMsg = LoadStringEx (IDS_INVALID_SERVER_NAME_MESSAGE);
LPCTSTR pszSpace = LoadStringEx (IDS_SPACE);
TCHAR szMsg [MAX_DISPLAY_STRING] = {0};
_tcscpy (szMsg, pszMsg);
_tcscat (szMsg, L"\n\n");
_tcscat (szMsg, L"\t\t");
_tcscat (szMsg, L"\\");
_tcscat (szMsg, L" : ");
_tcscat (szMsg, L"\"");
_tcscat (szMsg, L"; / ~ ' @ # $ % ^ { } < > * + = | ? , ");
if (pszSpace)
_tcscat (szMsg, pszSpace);
MessageBox (szMsg, pszTitle, MB_ICONINFORMATION | MB_OK);
m_wndServer.SendMessage (EM_SETSEL, 0, -1);
m_wndServer.SetFocus();
return FALSE;
}
}
// }
return TRUE;
}
LRESULT CDescriptionPropPage::OnSetActive (int idCtrl, LPNMHDR pnmh, BOOL& bHandled)
{
DEBUGMSG (1, (L"CDescriptionPropPage::OnSetActive for page [%s]\n", GetId()));
if (m_bNameValid && m_bServerValid)
GetOwner().SetWizFlags (PSWIZB_NEXT);
else
GetOwner().SetWizFlags (0);
return 0;
}
BOOL CDescriptionPropPage::ReadRegistrySettings()
{
return TRUE;
}
BOOL CDescriptionPropPage::WriteRegistrySettings()
{
StringCchCopy (m_pConnWiz->m_szServerName, MAX_SERVER_NAME, m_szServerName);
StringCchCopy (m_pConnWiz->m_szConnectionName, MAX_CONNECTION_DESCRIPTION, m_szConnectionName);
m_pConnWiz->m_bLowSpeedConnection = m_bLowSpeed;
m_pConnWiz->m_dwRdpPort = m_dwRdpPort;
return TRUE;
}
LRESULT CDescriptionPropPage::OnNameChange (WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
ProcessNameOrServerChange();
return 0;
}
LRESULT CDescriptionPropPage::OnServerChange (WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
ProcessNameOrServerChange();
return 0;
}
void CDescriptionPropPage::ProcessNameOrServerChange()
{
m_bNameValid = (m_wndName.GetWindowTextLength() > 0);
m_bServerValid = (m_wndServer.GetWindowTextLength() > 0);
BOOL bDummy;
OnSetActive (0, 0, bDummy);
}
BOOL CDescriptionPropPage::StoreData()
{
m_wndName.GetWindowText (m_szConnectionName, MAX_CONNECTION_DESCRIPTION);
m_wndServer.GetWindowText (m_szServerName, MAX_SERVER_NAME);
// because the Finish page needs this
StringCchCopy (m_pConnWiz->m_szConnectionName, MAX_CONNECTION_DESCRIPTION, m_szConnectionName);
return TRUE;
}
|
0a8b198a8ed52d01e680506491ac7b69dccb35ac
|
90361f62f87ff70eb82583841ca77bf85285c9ce
|
/main.cpp
|
86676e15d0fd121910fd590cbae3de6e16905c62
|
[] |
no_license
|
johnmaxwilson/TsunamiSquares
|
4c1ddc5c178c3547d935f1d45d32d89a71ec3d9c
|
65b91d7fe6dcf780a81d270cb6b7c0de177cd756
|
refs/heads/master
| 2021-01-24T04:20:21.754640
| 2019-04-10T19:53:58
| 2019-04-10T19:53:58
| 61,148,699
| 0
| 0
| null | 2016-06-14T19:05:52
| 2016-06-14T19:05:51
| null |
UTF-8
|
C++
| false
| false
| 17,860
|
cpp
|
main.cpp
|
// Copyright (c) 2015 Kasey W. Schultz
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#include "TsunamiSquares.h"
#include <time.h>
#define assertThrow(COND, ERR_MSG) assert(COND);
int main (int argc, char **argv) {
// Initialize the world (where the squares live), squares and vertices
tsunamisquares::World this_world;
tsunamisquares::SquareIDSet::const_iterator it;
tsunamisquares::SquareIDSet ids;
std::ifstream param_file;
std::ofstream out_file;
clock_t start,end;
// -------------------------------------------------------------------------------- //
/////////// CONSTANTS ////////////
// -------------------------------------------------------------------------------- //
/* Wilson: Trying a simple input file for these parameters. Can be improved in the future for readability and suseptability to errors
const std::string out_file_name = "tsunami_output.txt"; // name this relevant
const std::string bathy_file = "bathymetry/Pacific_900.txt"; // name this relevant
//const std::string kml_file = "local/Pacific_36.kml";
// const std::string deformation_file = "local/Channel_Islands_test_bump.txt"; // kasey says we dont need this now
// until later
// Diffusion constant (fit to a reasonable looking sim)
double D = 140616.45; //140616.45;
// Flattening the bathymetry to a constant depth (negative for below sea level)
double new_depth = -100.0;
// Bumping up the bottom
double bump_height = 50.0;
// Number of times to move squares
int N_steps = 20; //number of time steps 10 is fine, to see a bit of movement
// because boundaries aren't defined very well, we limit the time steps whenever the water hits the walls of things
// Updating intervals, etc.
int current_step = 0;
int update_step = 1;
int save_step = 1;
double time = 0.0;
int output_num_digits_for_percent = 3;
*/
// Ensure we are given the parameter file name
assertThrow(argc == 2, "usage: param_file");
param_file.open(argv[argc-1]);
std::string param_name;
std::string value;
std::vector<std::string> param_values;
while ( param_file >> param_name >> value )
{
param_values.push_back(value);
}
const std::string out_file_name = param_values[0];
const std::string bathy_file = param_values[1];
const std::string kml_file = param_values[2];
const std::string deformation_file = param_values[3];
// Diffusion constant (fit to a reasonable looking sim)
double D = atof(param_values[4].c_str()); //140616.45;
// Time step in seconds
double dt_param = atof(param_values[5].c_str());
// Number of times to move squares
int N_steps = atof(param_values[6].c_str()); //number of time steps 10 is fine, to see a bit of movement
// because boundaries aren't defined very well, we limit the time steps whenever the water hits the walls of things
// Updating intervals, etc.
int current_step = atof(param_values[7].c_str());
int update_step = atof(param_values[8].c_str());
int save_step = atof(param_values[9].c_str());
double time = atof(param_values[10].c_str());
int output_num_digits_for_percent = atof(param_values[11].c_str());
// Flattening the bathymetry to a constant depth (negative for below sea level)
double flat_depth = atof(param_values[12].c_str());
// Bumping up the bottom
double bump_height = atof(param_values[13].c_str());
//Boolean to decide whether to flatten the seafloor before running, for testing purposes
bool flatten_bool = atof(param_values[14].c_str());
// Header for the simulation output
const std::string header = "# time \t lon \t\t lat \t\t water height \t altitude \n";
// -------------------------------------------------------------------------------- //
/////// Simulation Initialization and Loading ///////
// --------------------------------------------------------------------------------//
start = clock();
// Read in the bathymetry data
this_world.clear();
std::cout << std::endl << "Reading..." << bathy_file.c_str() << std::endl;
this_world.read_bathymetry(bathy_file.c_str());
// Index the neighbors by left/right/top etc.
std::cout << "Indexing neighbors......" << std::endl;
this_world.computeNeighbors();
// Compute the time step given the diffusion constant D
//double dt = (double) (int) this_world.square(0).Lx()*this_world.square(0).Ly()/(2*D); //seconds
// Use file-provided time step.
double dt = dt_param;
// Gather model information
this_world.info();
int num_lats = this_world.num_lats();
int num_lons = this_world.num_lons();
std::cout << "Lons by Lats = (" << num_lons << ", " << num_lats << ")...";
ids = this_world.getSquareIDs();
double max_time = N_steps*dt;
//tsunamisquares::SquareIDSet valids = this_world.square(0).get_valid_neighbors();
//tsunamisquares::SquareIDSet::const_iterator vit;
//for (vit=valids.begin(); vit!=valids.end(); ++vit) {
// std::cout << *vit << std::endl;
//}
// Write KML model
//std::cout << "Writing KML..." << kml_file.c_str() << " ...";
//this_world.write_file_kml(kml_file.c_str());
// Flatten the bottom for simple simulation test cases, do not do this for tsunami simulations
if(flatten_bool){
std::cout << "Flattening the bottom..."<< std::endl;
this_world.flattenBottom(flat_depth);
}
// for (int pixel = 0; pixel++; pixel < (int) (num_lons*0.75)){
// tsunamisquares::UIndex landcenter = (int) (pixel);
// tsunamisquares::UIndex landright = this_world.square(landcentral).right();
// this_world.deformBottom(landright, bump_height);
// }
// Put water into squares to bring water level up to sealevel.
//std::cout << "Filling with water..." << std::flush;
//this_world.fillToSeaLevel();
// for (int pixel_lons = 0; pixel_lons++; pixel_lons < num_lons){
// for ( int pixel_lats = 0; pixel_lats++; pixel_lats < ((int) num_lats*0.5) )
// this_world.deformBottom(pixel_lons*pixel_lats, bump_height*10);
// }
// Put water into squares to bring water level up to sealevel.
std::cout << "Filling with water..." << std::endl;
this_world.fillToSeaLevel();
// --------------------------------------------------------------------------------//
// Sea Floor Deformation and Initial Conditions //
// --------------------------------------------------------------------------------//
std::cout << "Deforming the bottom... " << std::endl;
// == DEFORM FROM FILE ==
std::cout << "\t Deforming from file" << std::endl;
this_world.deformFromFile(deformation_file);
//this_world.diffuseSquares(dt);
// --------------------------------------------------------------------------------//
// --== File I/O Preparation --== //
// --------------------------------------------------------------------------------//
out_file.open(out_file_name.c_str());
out_file << header.c_str();
std::cout.precision(output_num_digits_for_percent);
// --------------------------------------------------------------------------------//
// --========- Begin the Simulation; Move the Squares ----====- //
// --------------------------------------------------------------------------------//
std::cout << "Moving squares....time_step=" <<dt << "...";
while (time < max_time) {
// If this is a writing step, print status
if (current_step%update_step == 0) {
std::cout << ".." << (100.0*current_step)/N_steps << "%..";
std::cout << std::flush;
}
// Write the current state to file
if (current_step%save_step == 0) {
for (it=ids.begin(); it!=ids.end(); ++it) {
this_world.write_square_ascii(out_file, time, *it);
}
}
// Move the squares
this_world.moveSquares(dt);
//TODO: turn back on:
this_world.diffuseSquares(dt); //smoothing operation
time += dt;
current_step += 1;
}
out_file.close();
// --------------------------------------------------------------------------------//
// --========--- Wrap up and Reporting ---=======--- //
// --------------------------------------------------------------------------------//
std::cout << std::endl << "Results written to " << out_file_name << std::endl;
end = clock();
std::cout.precision(2+output_num_digits_for_percent);
std::cout << "Total time: " << (float(end)-float(start))/CLOCKS_PER_SEC << " secs." << std::endl << std::endl;
return 0;
}
/*
// == DEFORM A BOWL =======
std::cout << "\nmaking a bowl shape.";
int xDimensions;
int yDimensions;
std::cout << "\ninput the x dimension: ";
std::cin >> xDimensions;
std::cout << "\nnow the y dimension: ";
std::cin >> yDimensions;
int landRowLeft = 0;
int landRowRight = 0;
for (int gradient = 0; gradient < 5; gradient++){
for (tsunamisquares::UIndex centralDIFF = (100 + landRowLeft); centralDIFF < (110 + landRowRight); centralDIFF++){
this_world.deformBottom(centralDIFF,bump_height - gradient*5);
}
landRowLeft = landRowLeft + 30 + 1;
landRowRight = landRowRight + 30 - 1;
}
landRowLeft = 120;
landRowRight = 120;
for (int gradient = 0; gradient < 5; gradient++){
for (tsunamisquares::UIndex centralDIFF = (250 + landRowLeft); centralDIFF < (260 + landRowRight); centralDIFF++){
this_world.deformBottom(centralDIFF,bump_height - gradient*5);
}
landRowLeft = landRowLeft - 30 + 1;
landRowRight = landRowRight - 30 - 1;
}
tsunamisquares::UIndex centralDIFF = 130;
int j = 8;
for (int k = 0; k < 4; k++){
for (int i = 0; i < j; i ++ ){
this_world.deformBottom(centralDIFF + 30*i ,bump_height - 5*k);
}
centralDIFF = centralDIFF + 31;
j = j-2;
}
centralDIFF = centralDIFF -31*4 + 9;
j = 8;
for (int k = 0; k < 4; k++){
for (int i = 0; i < j; i ++ ){
this_world.deformBottom(centralDIFF + 30*i ,bump_height - 5*k);
}
centralDIFF = centralDIFF + 29;
j = j-2;
}
// == DEFORM A LAND BUMP =======
// centralDIFF = 139;
// for (int i = 0; i < 8; i ++ ){
// this_world.deformBottom(centralDIFF + 30*i ,bump_height);
// }
// centralDIFF = centralDIFF + 29;
// for (int i = 0; i < 6; i ++ ){
// this_world.deformBottom(centralDIFF + 30*i ,bump_height - 5*1);
// }
// Optional: diffuse the central bump to be less peaked
//this_world.diffuseSquares(dt);
//----== DEFORM A STAIRCASE in the middle. Testing the plane fitting ======-------
tsunamisquares::UIndex central = (int) (0.5*num_lons*(num_lats + 1));
std::cout << " about the central square " << central << "...";
double mid_bump = this_world.square(central).Lx();
double hi_bump = 2.0*mid_bump;
tsunamisquares::UIndex left = this_world.square(central).left();
tsunamisquares::UIndex right = this_world.square(central).right();
tsunamisquares::UIndex top = this_world.square(central).top();
tsunamisquares::UIndex top_left = this_world.square(central).top_left();
tsunamisquares::UIndex top_right = this_world.square(central).top_right();
tsunamisquares::UIndex bottom = this_world.square(central).bottom();
tsunamisquares::UIndex bottom_left = this_world.square(central).bottom_left();
tsunamisquares::UIndex bottom_right= this_world.square(central).bottom_right();
// Stair case is hi to the left, drops to zero on the right
//this_world.deformBottom(right, hi_bump);
//this_world.deformBottom(top_right, hi_bump);
//this_world.deformBottom(bottom_right, hi_bump);
// this_world.deformBottom(central, mid_bump);
// this_world.deformBottom(top, mid_bump);
// this_world.deformBottom(bottom, mid_bump);
//this_world.getGradient_planeFit(central);
//double x_result = this_world.fitPointsToPlane(this_world.square(central).get_nearest_neighbors_and_self());
//std::cout << "Best fit plane to " << this_world.square(central).get_nearest_neighbors_and_self().size() << " squares." << std::endl;
//std::cout << "grabbed x = (" << x_result[0] << ", " << x_result[1] << ", " << x_result[2] << std::endl;
//mid_bump = 10.0;
//this_world.deformBottom(right, mid_bump);
//this_world.deformBottom(top_right, mid_bump);
this_world.deformBottom(bottom_right, mid_bump);
this_world.deformBottom(central, mid_bump);
this_world.deformBottom(top, mid_bump);
this_world.deformBottom(bottom, mid_bump);
this_world.deformBottom(left, mid_bump);
this_world.deformBottom(top_left, mid_bump);
this_world.deformBottom(bottom_left, mid_bump);
*/
//////////// Chalkboard ////////////////
// Grab all squares and print
// ids = this_world.getSquareIDs();
//
// for (it=ids.begin(); it!=ids.end(); ++it) {
// this_world.printSquare(*it);
// }
// Creating up sloping beach over the bottom 5 rows
// assertThrow(num_lats == num_lons, "lats and lons mismatch");
//
// for (unsigned int i=0; i< (int) this_world.num_squares(); ++i) {
// int row = (int)(i/num_lons);
// if (row == num_lats-5) this_world.deformBottom(i, 50);
// if (row == num_lats-4) this_world.deformBottom(i, 75);
// if (row == num_lats-3) this_world.deformBottom(i, 90);
// if (row == num_lats-2) this_world.deformBottom(i, 101);
// if (row == num_lats-1) this_world.deformBottom(i, 110);
//
// }
// for (unsigned int i=0; i< (int) this_world.num_squares(); ++i) {
// // Create a wave coming from the top down, first row
// int row = (int)(i/num_lons);
// int col = (int)(i%num_lons);
// if (row== num_lats-8 && col > 9 && col < num_lons-10) {
// // Wave is 1m hi
// this_world.deformBottom(i, 10);
// //this_world.setSquareVelocity(i, tsunamisquares::Vec<2>(0.0, -this_world.square(0).Ly()/100));
// }
// }
// Initial conditions
// tsunamisquares::UIndex bot_right = (int)(this_world.num_squares()*0.5 + 0.5*sqrt(this_world.num_squares()));
// tsunamisquares::UIndex bot_left = bot_right-1;
// tsunamisquares::UIndex top_left = bot_left+(int)sqrt(this_world.num_squares());
// tsunamisquares::UIndex top_right = bot_right+(int)sqrt(this_world.num_squares());
////// // TODO: Save num_lons and num_lats in the world object
//// std::cout << "Deforming the bottom... " << std::endl;
// this_world.deformBottom(bot_left,100.0);
// this_world.deformBottom(top_left,100.0);
// this_world.deformBottom(top_right,100.0);
// this_world.deformBottom(bot_right,100.0);
//
// // Smooth the initial bump
// this_world.diffuseSquares(dt);
// this_world.diffuseSquares(dt);
// Verifying the neighbor indexing ////////////////////////
// tsunamisquares::UIndex top_left_corner = 0;
// this_world.square(top_left_corner).print_neighbors();
//
// tsunamisquares::UIndex top_right_corner = num_lons-1;
// this_world.square(top_right_corner).print_neighbors();
//
// tsunamisquares::UIndex bottom_left_corner = num_lons*(num_lats-1);
// this_world.square(bottom_left_corner).print_neighbors();
//
// tsunamisquares::UIndex bottom_right_corner = num_lons*num_lats - 1;
// this_world.square(bottom_right_corner).print_neighbors();
//
// tsunamisquares::UIndex central = (int)(this_world.num_squares()*0.5);
// this_world.square(central).print_neighbors();
//
// tsunamisquares::UIndex left_border = num_lons;
// this_world.square(left_border).print_neighbors();
//
// tsunamisquares::UIndex top_border = (int) (num_lons*0.5);
// this_world.square(top_border).print_neighbors();
//
// tsunamisquares::UIndex right_border = 2*num_lons - 1;
// this_world.square(right_border).print_neighbors();
//
// tsunamisquares::UIndex bottom_border = bottom_left_corner+top_border;
// this_world.square(bottom_border).print_neighbors();
|
ffa0cf17592e7ff2edc60f878a3a43beef06f24f
|
810d63f0570e5f0a2a965e21114daa0fe9830b69
|
/Katatous/Framework/PhysXScene.cpp
|
c9432f3651311eb4d2e58798fda9d84927460b77
|
[] |
no_license
|
ydeagames/Katatous
|
02663e780e60c3708a6cce76f6b25c0b4a770372
|
73a8415e3acc9d1ef1827aaf09b57e34bf16eb0a
|
refs/heads/master
| 2020-06-02T06:56:45.863742
| 2019-07-17T17:39:03
| 2019-07-17T17:39:03
| 191,076,556
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 666
|
cpp
|
PhysXScene.cpp
|
#include "pch.h"
#include "PhysXScene.h"
#include "PhysXManager.h"
using namespace physx;
PhysXScene::PhysXScene(const px_unique_ptr<physx::PxScene>& scene)
{
}
PhysXScene::~PhysXScene()
{
}
physx::PxScene& PhysXScene::GetScene()
{
return *m_scene;
}
void PhysXScene::ActivatePvd()
{
auto pvdClient = m_scene->getScenePvdClient();
if (pvdClient)
{
pvdClient->setScenePvdFlag(PxPvdSceneFlag::eTRANSMIT_CONSTRAINTS, true);
pvdClient->setScenePvdFlag(PxPvdSceneFlag::eTRANSMIT_CONTACTS, true);
pvdClient->setScenePvdFlag(PxPvdSceneFlag::eTRANSMIT_SCENEQUERIES, true);
}
}
void PhysXScene::CreateObject(physx::PxActor& obj)
{
m_scene->addActor(obj);
}
|
b1cfbf523a5f2dc05de9558b4309914243ab8b10
|
6f885bc26e67694258a93d7f9ab55b2da5e629dc
|
/756C.cpp
|
baecd6d909619b20defd0bcbc0b406ad39d06718
|
[] |
no_license
|
Ashik1704026/codeforce
|
644121030b3fdadb5405451f2e3b857acb7203d6
|
04b6d72b739cdf4bc3ce7e68e6dc72ebf983ab20
|
refs/heads/master
| 2021-11-22T14:23:47.848180
| 2021-08-30T18:18:11
| 2021-08-30T18:18:11
| 223,139,729
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 234
|
cpp
|
756C.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,x,ans = 0; cin>>n;
set<int> b;
for(int i = 1;i <=n;i++){
cin>>x;
if(x==i) ans++;
else b.insert(x);
}
cout<<ans+(b.size()/2);
}
|
013b842ba76daa26637b154ca1285c94194bf64a
|
b78a3af0e46c7df32963d0632843234a07652424
|
/Manual Map Injector/main.cpp
|
1b17094457e7973eb958e278483c215d40f99c4e
|
[
"MIT"
] |
permissive
|
Gzsgcser/Simple-Manual-Map-Injector
|
591838731926787105157d26822d2b51d28c2e9f
|
9415b04989d16a204930b4e81633287387a6024d
|
refs/heads/master
| 2023-08-24T11:20:03.303648
| 2021-10-28T13:01:47
| 2021-10-28T13:01:47
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,187
|
cpp
|
main.cpp
|
#include "injector.h"
#include <stdio.h>
#include <string>
#include <iostream>
using namespace std;
bool IsCorrectTargetArchitecture(HANDLE hProc) {
BOOL bTarget = FALSE;
if (!IsWow64Process(hProc, &bTarget)) {
printf("Can't confirm target process architecture: 0x%X\n", GetLastError());
return false;
}
BOOL bHost = FALSE;
IsWow64Process(GetCurrentProcess(), &bHost);
return (bTarget == bHost);
}
DWORD GetProcessIdByName(wchar_t* name) {
PROCESSENTRY32 entry;
entry.dwSize = sizeof(PROCESSENTRY32);
HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL);
if (Process32First(snapshot, &entry) == TRUE) {
while (Process32Next(snapshot, &entry) == TRUE) {
if (_wcsicmp(entry.szExeFile, name) == 0) {
return entry.th32ProcessID;
}
}
}
CloseHandle(snapshot);
return 0;
}
int wmain(int argc, wchar_t* argv[], wchar_t* envp[]) {
wchar_t* dllPath;
DWORD PID;
if (argc == 3) {
dllPath = argv[1];
PID = GetProcessIdByName(argv[2]);
}
else if (argc == 2) {
dllPath = argv[1];
std::string pname;
printf("Process Name:\n");
std::getline(std::cin, pname);
char* vIn = (char*)pname.c_str();
wchar_t* vOut = new wchar_t[strlen(vIn) + 1];
mbstowcs_s(NULL, vOut, strlen(vIn) + 1, vIn, strlen(vIn));
PID = GetProcessIdByName(vOut);
}
else {
printf("Invalid Params\n");
printf("Usage: dll_path [process_name]\n");
system("pause");
return 0;
}
if (PID == 0) {
printf("Process not found\n");
system("pause");
return -1;
}
printf("Process pid: %d\n", PID);
TOKEN_PRIVILEGES priv = { 0 };
HANDLE hToken = NULL;
if (OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) {
priv.PrivilegeCount = 1;
priv.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
if (LookupPrivilegeValue(NULL, SE_DEBUG_NAME, &priv.Privileges[0].Luid))
AdjustTokenPrivileges(hToken, FALSE, &priv, 0, NULL, NULL);
CloseHandle(hToken);
}
HANDLE hProc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
if (!hProc) {
DWORD Err = GetLastError();
printf("OpenProcess failed: 0x%X\n", Err);
system("PAUSE");
return -2;
}
if (!IsCorrectTargetArchitecture(hProc)) {
printf("Invalid Process Architecture.\n");
CloseHandle(hProc);
system("PAUSE");
return -3;
}
if (GetFileAttributes(dllPath) == INVALID_FILE_ATTRIBUTES) {
printf("Dll file doesn't exist\n");
return -4;
}
std::ifstream File(dllPath, std::ios::binary | std::ios::ate);
if (File.fail()) {
printf("Opening the file failed: %X\n", (DWORD)File.rdstate());
File.close();
return -5;
}
auto FileSize = File.tellg();
if (FileSize < 0x1000) {
printf("Filesize invalid.\n");
File.close();
return -6;
}
BYTE * pSrcData = new BYTE[(UINT_PTR)FileSize];
if (!pSrcData) {
printf("Can't allocate dll file.\n");
File.close();
return -7;
}
File.seekg(0, std::ios::beg);
File.read((char*)(pSrcData), FileSize);
File.close();
printf("Mapping...\n");
if (!ManualMapDll(hProc, pSrcData, FileSize)) {
delete[] pSrcData;
CloseHandle(hProc);
printf("Error while mapping.\n");
system("PAUSE");
return -8;
}
delete[] pSrcData;
CloseHandle(hProc);
printf("OK\n");
return 0;
}
|
1514093f3f83e71ad1ec16780359e8cbfacf5937
|
c8655c23bdc4c70de268977e7b2ed36e98fb07f7
|
/clean_matlab_code/nufftw/include/nufft_gen.h
|
0befa13489d8ffdb71395249f81ace5111e933b6
|
[
"BSD-3-Clause-LBNL"
] |
permissive
|
arbrefleur/tomocam
|
0946c4b3e799534167b8aa335b4dddeab1d6414a
|
983f3a30182d5fba9e27ee94ebe8015d30bc3dc0
|
refs/heads/master
| 2020-09-08T21:49:54.474831
| 2018-07-03T17:24:04
| 2018-07-03T17:24:04
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,926
|
h
|
nufft_gen.h
|
/* Michal Zarrouk, June 2013 */
/* This file includes general definitions for the nufft toolbox. */
#include <cstdlib>
#include <iostream>
using namespace std;
#include <omp.h>
/* type-dependent issues */
#define FLOAT 1
#define DOUBLE 2
// trajectory type
#if TRAJ_TYPE == DOUBLE
#define TRAJ_T double
#elif TRAJ_TYPE == FLOAT
#define TRAJ_T float
#endif
// data type
#if DATA_TYPE == DOUBLE
#define DATA_T double
#define INIT_FFTW \
fftw_init_threads(); \
fftw_plan_with_nthreads(omp_get_max_threads());
#define CLEAN_FFTW \
fftw_cleanup_threads();
#define MEXDATA_CLASS mxDOUBLE_CLASS
#elif DATA_TYPE == FLOAT
#define DATA_T float
#define INIT_FFTW \
fftwf_init_threads(); \
fftwf_plan_with_nthreads(omp_get_max_threads());
#define CLEAN_FFTW \
fftwf_cleanup_threads();
#define MEXDATA_CLASS mxSINGLE_CLASS
#endif
/* I know what you're thinking, that I should have used a macro for the FFTW type/name-mangling, something like
#define CPLX_T FFTW(complex)
#if DATA_TYPE == DOUBLE
#define FFTW(name) fftw_ ## name
#elif DATA_TYPE == FLOAT
#define FFTW(name) fftwf_ ## name
#endif
but I hate name-mangling macros and I swore to use them as less as possible, because they make the code unreadable.
*/
// complex data type
typedef DATA_T CPLX_T[2];
#include <math.h>
#include <sys/time.h>
#include "nufft_iofun.h" // input/output/file read & write functions
/* timestamp - returns time in seconds, for timing calculations. */
double timestamp()
{
struct timeval tv;
gettimeofday (&tv, 0);
return tv.tv_sec + 1e-6*tv.tv_usec;
}
void nufft_print(bool val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(short val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(unsigned short val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(int val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(unsigned int val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(long val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(unsigned long val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(float val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(double val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(long double val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(void* val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print(streambuf* sb)
{
#ifdef NUFFT_PRINT
cerr << sb;
#endif
}
void nuFFT_print(ostream& (*pf)(ostream&))
{
#ifdef NUFFT_PRINT
cerr << pf;
#endif
}
void nuFFT_print(ios& (*pf)(ios&))
{
#ifdef NUFFT_PRINT
cerr << pf;
#endif
}
void nuFFT_print(ios_base& (*pf)(ios_base&))
{
#ifdef NUFFT_PRINT
cerr << pf;
#endif
}
void nuFFT_print(const char* val)
{
#ifdef NUFFT_PRINT
cerr << val;
#endif
}
void nuFFT_print_time(double elapsed_time)
{
nuFFT_print(elapsed_time);
nuFFT_print("s\n");
}
|
6ac6000ad9e6424392f2069e3d0d8c9f989bebe7
|
74643610501fc55d3762e3c84ef9ae94e57ed3c1
|
/lab/lab/analyzer.cpp
|
449ffe5d20f267c4e0513bd7db45c009b1060ef0
|
[] |
no_license
|
yudakov1814/Interpreter
|
3f49de4a7040a1b42901011a5ffe1262e7d26a83
|
765706b41fe7efe424593cc94424afe12c054971
|
refs/heads/master
| 2023-02-12T23:00:38.176397
| 2021-01-06T13:54:16
| 2021-01-06T13:54:16
| 327,010,265
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,255
|
cpp
|
analyzer.cpp
|
#include <stdexcept>
#include "analyzer.h"
bool ischar(char ch) {
return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z');
}
lexeme get_next_lexeme(const string& text, int& cur_idx) {
char cur_ch = text[cur_idx];
cur_idx++;
lexeme result;
result.value = cur_ch;
if (ischar(cur_ch)) {
result.lexeme_type = lexemeType::VARIABLE;
cur_ch = text[cur_idx];
while (cur_idx < text.size() && ischar(cur_ch) || isdigit(cur_ch)) {
result.value += cur_ch;
cur_idx++;
cur_ch = text[cur_idx];
}
if (result.value == "int") {
result.lexeme_type = lexemeType::INT;
}
else if (result.value == "array") {
result.lexeme_type = lexemeType::ARRAY;
}
else if (result.value == "if") {
result.lexeme_type = lexemeType::IF;
}
else if (result.value == "else") {
result.lexeme_type = lexemeType::ELSE;
}
else if (result.value == "while") {
result.lexeme_type = lexemeType::WHILE;
}
else if (result.value == "read") {
result.lexeme_type = lexemeType::READ;
}
else if (result.value == "write") {
result.lexeme_type = lexemeType::WRITE;
}
}
else if (isdigit(cur_ch)) {
result.lexeme_type = lexemeType::NUMBER;
cur_ch = text[cur_idx];
while (cur_idx < text.size() && isdigit(cur_ch)) {
result.value += cur_ch;
cur_idx++;
cur_ch = text[cur_idx];
}
if (cur_idx < text.size() && ischar(cur_ch)) {
while (cur_idx < text.size() && ischar(cur_ch)) {
result.value += cur_ch;
++cur_idx;
cur_ch = text[cur_idx];
}
result.lexeme_type = lexemeType::ERROR;
}
}
else if (cur_ch == '{') {
result.lexeme_type = lexemeType::LEFT_BRACE;
}
else if (cur_ch == '}') {
result.lexeme_type = lexemeType::RIGHT_BRACE;
}
else if (cur_ch == '[') {
result.lexeme_type = lexemeType::LEFT_SQUARE_BRACKET;
}
else if (cur_ch == ']') {
result.lexeme_type = lexemeType::RIGHT_SQUARE_BRACKET;
}
else if (cur_ch == '(') {
result.lexeme_type = lexemeType::LEFT_ROUND_BRACKET;
}
else if (cur_ch == ')') {
result.lexeme_type = lexemeType::RIGHT_ROUND_BRACKET;
}
else if (cur_ch == '+') {
result.lexeme_type = lexemeType::PLUS;
}
else if (cur_ch == '-') {
result.lexeme_type = lexemeType::MINUS;
}
else if (cur_ch == '*') {
result.lexeme_type = lexemeType::MULTIPLY;
}
else if (cur_ch == '/') {
result.lexeme_type = lexemeType::DIVIDE;
}
else if (cur_ch == ';') {
result.lexeme_type = lexemeType::SEMICOLON;
}
else if (cur_ch == ',') {
result.lexeme_type = lexemeType::COMMA;
}
else if (cur_ch == '<') {
result.lexeme_type = lexemeType::LESS;
if (cur_idx < text.size() && text[cur_idx] == '=') {
cur_idx++;
result.lexeme_type = lexemeType::LESS_OR_EQUAL;
result.value = "<=";
}
}
else if (cur_ch == '=') {
result.lexeme_type = lexemeType::ASSIGN;
if (cur_idx < text.size() && text[cur_idx] == '=') {
cur_idx++;
result.lexeme_type = lexemeType::EQUAL;
result.value = "==";
}
}
else if (cur_ch == '>') {
result.lexeme_type = lexemeType::MORE;
if (cur_idx < text.size() && text[cur_idx] == '=') {
cur_idx++;
result.lexeme_type = lexemeType::MORE_OR_EQUAL;
result.value = ">=";
}
}
else if (cur_ch == '!' && cur_idx + 1 < text.size() && text[cur_idx + 1] == '=') {
cur_idx++;
result.lexeme_type = lexemeType::NOT_EQUAL;
result.value = "!=";
}
return result;
}
vector<lexeme> analyze(const string& text) {
vector<lexeme> result;
lexeme cur_lexeme;
int cur_line = 1;
int cur_pos = 1;
int cur_idx = 0;
while (cur_idx < text.size()) {
while (isspace(text[cur_idx])) {
switch (text[cur_idx++]) {
case ' ':
++cur_pos;
break;
case '\f':
case '\n':
case '\v':
++cur_line; cur_pos = 1;
break;
case '\t':
cur_pos += 4;
break;
}
}
cur_lexeme = get_next_lexeme(text, cur_idx);
cur_lexeme.line = cur_line;
cur_lexeme.pos = cur_pos;
if (cur_lexeme.lexeme_type == lexemeType::ERROR) {
string msg = "Analyzer error; line = " + to_string(cur_line) + ", pos = " + to_string(cur_pos);
throw runtime_error(msg);
}
cur_pos += cur_lexeme.value.size();
result.push_back(cur_lexeme);
}
cur_lexeme.lexeme_type = lexemeType::FINISH;
cur_lexeme.line = cur_line;
cur_lexeme.pos = cur_pos;
result.push_back(cur_lexeme);
return result;
}
|
2be1de54c0a8db3db6c9a13aece1edd8b6d63af9
|
49fa0df5361951169b31b6839a16f8997d0d8e9c
|
/Texture.h
|
9ba6fc4689fadd1a47150ed9e7e7e32664fad1ee
|
[
"MIT"
] |
permissive
|
erodriguezg/sdlogl
|
ddfa37c984774f8bcb70430d8809a4a1a79d45f4
|
56785de82a90bfb2b7132c7d46249ac358f673ff
|
refs/heads/master
| 2020-03-11T12:21:37.948480
| 2018-05-13T12:30:10
| 2018-05-13T12:30:10
| 129,995,062
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 319
|
h
|
Texture.h
|
//
// Created by lalo on 16-04-18.
//
#ifndef SDLOGL_TEXTURE_H
#define SDLOGL_TEXTURE_H
#include <string>
#include <GL/glew.h>
class Texture {
public:
Texture(const std::string &fileName);
virtual ~Texture();
void bind(unsigned int unit);
private:
GLuint textureId;
};
#endif //SDLOGL_TEXTURE_H
|
cfbb1f3896001b95fcfbd91d74248fe19c742d6f
|
9da6ffc55ba8a19192bd0efad09657758de4e792
|
/lg1140.cpp
|
a83ecdd500712027ff756d26883f73200821a8eb
|
[] |
no_license
|
fsq/codeforces
|
b771cb33c67fb34168c8ee0533a67f16673f9057
|
58f3b66439457a7368bb40af38ceaf89b9275b36
|
refs/heads/master
| 2021-05-11T03:12:27.130277
| 2020-10-16T16:55:03
| 2020-10-16T16:55:03
| 117,908,849
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,944
|
cpp
|
lg1140.cpp
|
#include <cstdio>
#include <iostream>
#include <cstring>
#include <cmath>
#include <ctime>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <queue>
#include <deque>
#include <stack>
#include <numeric>
#include <memory>
#include <list>
#include <climits>
using namespace std;
#define PB push_back
#define F first
#define S second
#define REP(i,from,to) for(auto i=(from); i<=(to); ++i)
#define PER(i,from,to) for(auto i=(from); i>=(to); --i)
#define REP_IF(i,from,to,assert) for(auto i=(from); i<=(to); ++i) if (assert)
#define FOR(i,less_than) for (auto i=0; i<(less_than); ++i)
#define FORI(i, container) for (auto i=0; i<(container).size(); ++i)
#define FORI_IF(i, container, assert) for (auto i=0; i<(container).size(); ++i) if (assert)
#define ROFI(i, container) for (auto i=(container).size()-1; i>=0; --i)
#define FOREACH(elem, container) for (auto elem : (container))
#define FILL(container, value) memset(container, value, sizeof(container))
#define ALL(container) (container).begin(), (container).end()
#define SZ(container) (int)((container).size())
#define BACK(set_map) *prev((set_map).end(), 1)
#define FRONT(set_map) *(set_map).begin()
inline void _RD(int &x) { scanf("%d", &x); }
inline void _RD(long long &x) { scanf("%lld", &x); }
inline void _RD(double &x) { scanf("%lf", &x); }
inline void _RD(long double &x) { scanf("%Lf", &x); }
inline void _RD(char &x) { scanf(" %c", &x); }
inline void RD() {}
template<class T, class... U>
inline void RD(T &head, U &... tail) { _RD(head); RD(tail...); }
using PII = pair<int,int>;
using LL = long long;
using VI = vector<int>;
using VLL = vector<LL>;
using VVI = vector<VI>;
int sc[5][5] = {{0, -3,-4,-2,-1},{-3,5,-1,-2,-1},{-4,-1,5,-3,-2},
{-2,-2,-3,5,-2},{-1,-1,-2,-2,5}};
int score(int x, int y) {
return sc[x][y];
}
int main() {
int n, m;
string s, t;
cin >> n >> s >> m >> t;
// printf("%d %d\n", s.size(), t.size());
VI a(n+1, 0), b(m+1, 0);
REP(i, 0, n-1)
if (s[i]=='A') a[i+1] = 1;
else if (s[i]=='C') a[i+1] = 2;
else if (s[i]=='G') a[i+1] = 3;
else a[i+1] = 4;
REP(i, 0, m-1)
if (t[i]=='A') b[i+1] = 1;
else if (t[i]=='C') b[i+1] = 2;
else if (t[i]=='G') b[i+1] = 3;
else b[i+1] = 4;
VVI f(n+1, VI(m+1, INT_MIN));
f[0][0] = 0;
REP(i, 1, n) f[i][0] = f[i-1][0] + score(a[i], 0);
REP(i, 1, m) f[0][i] = f[0][i-1] + score(0, b[i]);
REP(i, 1, n)
REP(j, 1, m) {
f[i][j] = f[i-1][j-1] + score(a[i], b[j]);
f[i][j] = max(f[i][j],
max(f[i-1][j]+score(a[i],0), f[i][j-1]+score(0,b[j])));
}
cout << f[n][m] << endl;
return 0;
}
|
aafc9b2ac8d542686321cb995560a5278ecae65c
|
ff700010b916553909e7120fe9063667f364c105
|
/test/20171017/source/zzc/segment.cpp
|
76401297e4cf574be66262833983191a78574d91
|
[
"MIT"
] |
permissive
|
DesZou/Project-Eros
|
c1f5992e14454330f9b9656428bba16f30116244
|
f49c9ce1dfe193de8199163286afc28ff8c52eef
|
refs/heads/master
| 2022-11-21T01:59:48.651692
| 2020-07-11T02:45:23
| 2020-07-11T02:45:23
| 106,544,614
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,390
|
cpp
|
segment.cpp
|
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <iostream>
#include <climits>
// const int Inf = -1u >> 1;
const size_t Size = 1e5 + 5;
template<class T> T max(const T &a, const T &b) {
return a > b? a : b;
}
template<class T> T min(const T &a, const T &b) {
return a < b? a : b;
}
template<class T> bool chkmax(T &a, const T &b) {
return a < b? a = b, 1 : 0;
}
template<class T> bool chkmin(T &a, const T &b) {
return a > b? a = b, 1 : 0;
}
template<class T> T input() {
T r(0); char c(getchar()); bool n(0);
while(c > '9' || c < '0') {if(c == '-') n = 1; c = getchar();}
while(c <= '9' && c >= '0') {r = r * 10 - 48 + c, c = getchar();}
return n? -r : r;
}
struct Data {long long c, l, r, x;} d[Size];
bool operator<(const Data &a, const Data &b) {
return a.c > b.c;
}
int n, m, q;
long long a[Size];
long long sum[Size];
long double ans[Size];
struct interval_tree {
long long c[Size << 2];
long long tag[Size << 2];
void pull(int i) {
c[i] = c[i << 1] + c[i << 1|1];
}
void push(int i, int llen, int rlen) {
if(tag[i]) {
tag[i << 1] += tag[i];
tag[i << 1|1] += tag[i];
c[i << 1] += tag[i] * llen;
c[i << 1|1] += tag[i] * rlen;
tag[i] = 0;
}
}
void update(int i, int l, int r, int s, int t, long long key) {
if(l >= s && r <= t) {
c[i] += key * (r - l + 1);
tag[i] += key;
} else {
int mid = (l + r) >> 1;
push(i, mid - l + 1, r - mid);
if(s <= mid) update(i << 1, l, mid, s, t, key);
if(t > mid) update(i << 1|1, mid + 1, r, s, t, key);
pull(i);
}
}
long long query(int i, int l, int r, int s, int t) {
if(l >= s && r <= t) {
return c[i];
} else {
int mid = (l + r) >> 1;
push(i, mid - l + 1, r - mid);
if(t <= mid) return query(i << 1, l, mid, s, t);
else if(s > mid) return query(i << 1|1, mid + 1, r, s, t);
else return query(i << 1, l, mid, s, mid)
+ query(i << 1|1, mid + 1, r, mid + 1, t);
}
}
} T, F, G;
int main() {
freopen("segment.in", "r", stdin);
freopen("segment.out", "w", stdout);
n = input<int>(), m = input<int>(), q = input<int>();
for(int i = 1; i <= n; ++i) a[i] = input<long long>();
for(int i = 1; i <= m; ++i) {
d[i].c = input<long long>(), d[i].l = input<long long>();
d[i].r = input<long long>(), d[i].x = input<long long>();
}
std::sort(d + 1, d + 1 + m);
int ptr = 1;
for(; ptr <= m && d[ptr].c == 2; ++ptr)
F.update(1, 1, n, d[ptr].l, d[ptr].r, d[ptr].x),
T.update(1, 1, n, d[ptr].l, d[ptr].r, 1);
for(int i = 1; i <= n; ++i) {
static long long x, y;
x = F.query(1, 1, n, i, i);
sum[i] = y = T.query(1, 1, n, i, i);
ans[i] = x? (long double)x / y : a[i];
}
for(; ptr <= m; ++ptr)
G.update(1, 1, n, d[ptr].l, d[ptr].r, d[ptr].x);
for(int i = 1; i <= n; ++i) {
ans[i] += ans[i - 1] + (long double)G.query(1, 1, n, i, i) / (sum[i] + 1);
}
for(int i = 0, l, r; i < q; ++i) {
l = input<int>(), r = input<int>();
printf("%.3Lf\n", ans[r] - ans[l - 1]);
}
return 0;
}
|
03efe37f0c29c294263861ac6caa9ed835db8294
|
0ba6faa4c7f94a355f4719c9d09be477a2ab58e2
|
/arc100_C.cpp
|
74ef29f3451a78ae4799b47c352843d47ee9ab73
|
[] |
no_license
|
k2font/atcoder
|
a97d851bae3c5ea210accd493e6e33df2869e038
|
d2b7b8e6dbb843330f477b922bd4e2d2928ed810
|
refs/heads/master
| 2023-05-15T06:51:43.771882
| 2021-06-05T07:03:11
| 2021-06-05T07:03:11
| 278,045,287
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 931
|
cpp
|
arc100_C.cpp
|
#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0, i##_len=(n); i<i##_len; ++i)
#define all(x) (x).begin(),(x).end()
using ll = long long;
string char_to_string(char val) {
return string(1, val);
}
int char_to_int(char val) {
return val - '0';
}
template<class T> inline bool chmin(T& a, T b) {
if (a > b) {
a = b;
return true;
}
return false;
}
template<class T> inline bool chmax(T& a, T b) {
if (a < b) {
a = b;
return true;
}
return false;
}
int main() {
ll N; cin >> N;
vector<ll> A(N); REP(i, N) cin >> A[i];
vector<ll> tmp;
REP(i, N) tmp.push_back(A[i] - (i + 1));
sort(all(tmp));
size_t median_index = tmp.size() / 2;
double b = (tmp.size() % 2 == 0
? static_cast<double>(tmp[median_index] + tmp[median_index - 1]) / 2
: tmp[median_index]);
ll ans = 0;
REP(i, N) {
ans += abs(A[i] - (round(b) + (i + 1)));
}
cout << ans << endl;
}
|
dee957ed36076289ea004193035ae5297f8c8a38
|
81e602f935bcebdd99cb9a541f8c014f1eb97b9e
|
/ConsoleGame/src/GameEntities/Monsters/ArcherMonster.h
|
76c8b02d4d1bdf50a311068df2dd0d76b0d8c32c
|
[] |
no_license
|
kladarak/ConsoleRogueLike
|
e0723334b3a0b24a3669382542a05cb1cb9c3c07
|
6b75c6217cc2a4caf85e0a08aa58e486c138f506
|
refs/heads/master
| 2016-08-04T14:36:26.961397
| 2015-07-27T11:59:50
| 2015-07-27T11:59:50
| 37,187,497
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 241
|
h
|
ArcherMonster.h
|
#pragma once
#include <EntityComponentSystem/World/World.h>
class MessageBroadcaster;
class GameData;
struct IVec2;
namespace ArcherMonster
{
Entity Create(World& inWorld, MessageBroadcaster& inMsgBroadcaster, const IVec2& inPosition);
}
|
aab6ab345f7d30fda2e8d09d5697ae82edb240b7
|
1087ac2f911f03b41271d633fb7f0f9ca68719c5
|
/sandbox/File/test.cpp
|
449f300115b1134a9a7de98daf801d1e7718c26a
|
[
"MIT"
] |
permissive
|
martintb/correlate
|
e82018b734dee1494e887e53f51b04bee475f9e4
|
b0be89af4e57cc5fe96ec3a5c7a9bb84430d2433
|
refs/heads/master
| 2020-06-27T22:27:40.083538
| 2017-11-06T18:57:41
| 2017-11-06T18:57:41
| 97,071,642
| 3
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 236
|
cpp
|
test.cpp
|
#include <string>
#include <mpi.h>
#include "File.hpp"
#include "inFile.hpp"
#include "outFile.hpp"
using namespace std;
int main()
{
File::ptr fptr = make_shared<outFile>("test_set","topo.dat",false);
return EXIT_SUCCESS;
}
|
bb7a5c36e99d9397658ef753e115a79f18c24d73
|
6e60b3a8670f358c194c8e00474db0e14c687a0d
|
/Graph/library/includes/TTGraphInput.h
|
9f528a2e08189d47696515fa299d7232f1ac5f69
|
[
"BSD-3-Clause"
] |
permissive
|
aprigent/JamomaCore
|
a9b7038413074d33f7fa10aa71679e155b5a0b77
|
30612a4b5008331d2ba997f01c1bea785425c29d
|
refs/heads/master
| 2021-01-16T21:24:49.913179
| 2013-04-08T18:23:53
| 2013-04-08T18:23:53
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 836
|
h
|
TTGraphInput.h
|
/*
* Jamoma Asynchronous Object Graph Layer
* Creates a wrapper for TTObjectBases that can be used to build a control graph for asynchronous message passing.
* Copyright © 2010, Timothy Place
*
* License: This code is licensed under the terms of the "New BSD License"
* http://creativecommons.org/licenses/BSD/
*/
#ifndef __TTGRAPH_INPUT_H__
#define __TTGRAPH_INPUT_H__
#include "TTGraph.h"
/******************************************************************************************/
/** An object that serves as the source driving an object/graph. */
class TTGRAPH_EXPORT TTGraphInput : public TTDataObjectBase
{
TTCLASS_SETUP(TTGraphInput)
protected:
TTGraphObjectPtr mOwner;
public:
TTErr setOwner(TTGraphObjectPtr newOwner);
TTErr push(const TTDictionary& aDictionary);
};
#endif // __TTGRAPH_INPUT_H__
|
5062ca48962c07e8a54d90c2d7da096ac62c14a6
|
6b2a8dd202fdce77c971c412717e305e1caaac51
|
/solutions_5630113748090880_1/C++/ramzai/main.cpp
|
87b8b8967298c93707e23fbc304dfb5261f0d2a2
|
[] |
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,280
|
cpp
|
main.cpp
|
#include <cmath>
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <sstream>
#include <map>
#include <set>
#include <list>
#include <memory>
#include <string>
#include <vector>
#include <functional>
#include <climits>
#include <cstring>
#include <cstdio>
using namespace std;
#define PB push_back
#define MP make_pair
#define REP(i,n) for(int i=0;i<(n);++i)
#define FOR(i,a,b) for(int i=(a);i<=(b);++i)
#define FORD(i,a,b) for(int i=(a);i>=(b);--i)
#define SIZE(v) (int)(v).size()
#define ALL(v) (v).begin(), (v).end()
typedef long long LL;
#define DBG(x) cout << #x << " = " << x << endl
#define DBGV(v) REP(i, SZ((v))) cout << #v << '[' << i << "] = " << (v)[i] << endl
int a[2510];
int rows[120][60];
vector<int> doit(int N)
{
memset(a, 0, sizeof(a));
REP(i, 2 * N - 1) REP(j, N) ++a[rows[i][j]];
vector<int> res;
FOR(i, 1, 2500) if (a[i] & 1) res.PB(i);
sort(ALL(res));
return res;
}
int main()
{
int testCount;
cin >> testCount;
FOR(zzz, 1, testCount) {
int N;
cin >> N;
REP(i, 2 * N - 1) REP(j, N) cin >> rows[i][j];
cout << "Case #" << zzz << ":";
auto v = doit(N);
REP(i, SIZE(v)) cout << ' ' << v[i];
cout << '\n';
}
return 0;
}
|
da9a6f009b564437027521e0435e906c20be420a
|
8847577430e98fea1e69125a0a32649ae93b81b5
|
/0125_Valid_Palindrome/0125.cc
|
0b56418b1dde73ce1c33785ddbdfb4c171ed636d
|
[
"Apache-2.0"
] |
permissive
|
LuciusKyle/LeetCode
|
07bb70b25f496ea83300a6d3c8d6b498b69c7b15
|
66c9090e5244b10eca0be50398764da2b4b48a6c
|
refs/heads/master
| 2021-06-03T05:46:33.524486
| 2020-11-29T14:03:09
| 2020-11-29T14:03:09
| 129,054,923
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,465
|
cc
|
0125.cc
|
#include<string>
#include<cctype>
using std::string;
class Solution {
public:
bool isPalindrome(const string s) {
size_t left = 0;
size_t right = s.size() == 0 ? 0 : s.size() - 1;
while (left < right) {
const char ch_left = std::tolower(s[left]);
const char ch_right = std::tolower(s[right]);
if (!(('a' <= ch_left && ch_left <= 'z') ||
('0' <= ch_left && ch_left <= '9'))) {
++left;
continue;
}
if (!(('a' <= ch_right && ch_right <= 'z') ||
('0' <= ch_right && ch_right <= '9'))) {
--right;
continue;
}
if (ch_left == ch_right) {
++left;
--right;
}
else
return false;
}
return true;
}
private:
//bool isPalindrome(const char *str, size_t str_size) {
// size_t tail_index = str_size == 0 ? 0 : str_size - 1;
// char tail_str[sizeof(size_t) + 12] = { '\0' };
// size_t head_index = 0;
// while (head_index < tail_index && 2 * sizeof(size_t) < tail_index - head_index) {
// for (size_t i = 0; i < sizeof(size_t); ++i) {
// tail_str[i] = str[tail_index - i];
// }
// if (*(reinterpret_cast<const size_t *>(str + head_index)) != *(reinterpret_cast<const size_t *>(tail_str)))
// return false;
// head_index += sizeof(size_t);
// tail_index -= sizeof(size_t);
// }
// while (head_index < tail_index) {
// if (str[head_index] != str[tail_index])
// return false;
// ++head_index;
// --tail_index;
// }
// return true;
//}
};
int main(void) {
return 0;
}
|
ff7d49b5f85167e672181ba18f27cb7ab5cfbc66
|
88a7d6bcb08361496699200e8d271adf53638923
|
/637. 二叉树的层平均值/源.cpp
|
c070720265c9b221fc64d61f62675bc16a9bc641
|
[] |
no_license
|
zh593245631/leetcode
|
a957892c6d3767f37bf24f3333e016e9e0dc8a5a
|
70e8eb3261ef8a6b48abfdf811b5e6c2ce4c297a
|
refs/heads/master
| 2020-05-13T18:06:23.411718
| 2019-06-18T08:38:24
| 2019-06-18T08:38:24
| 181,647,375
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 935
|
cpp
|
源.cpp
|
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<double> averageOfLevels(TreeNode* root) {
vector<double> ans;
queue<TreeNode*> q;
queue<int> line;
if (root)
{
q.push(root);
line.push(0);
}
long sum = 0;
int count = 0;
int high = 0;
while (!q.empty())
{
TreeNode* cur = q.front();
q.pop();
if (high != line.front()) {
double avg = sum / (double)count;
ans.push_back(avg);
sum = 0;
count = 0;
}
sum += cur->val;
count++;
high = line.front();
line.pop();
if (cur->left)
{
q.push(cur->left);
line.push(high + 1);
}
if (cur->right)
{
q.push(cur->right);
line.push(high + 1);
}
}
if (root)
ans.push_back(sum / (double)count);
return ans;
}
};
|
8eafc25ac64f0170ea68ea76ce9671e7e819122b
|
d4a9066bf398beb1aa1ccb388171b306b7b14176
|
/Engine/RVector.cpp
|
cfc0d6e9e07dc6f615776e05e95301aa26631239
|
[] |
no_license
|
kimsin3003/NewWorld
|
b610e87eb99cd747a0fe4ad361b2cd2a69e9561b
|
2850b26a86b7f041db9dd74dcf68b15f4777d7a3
|
refs/heads/master
| 2021-06-01T16:54:08.386213
| 2021-05-26T09:53:39
| 2021-05-26T09:53:39
| 116,279,409
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 21
|
cpp
|
RVector.cpp
|
#include "RVector.h"
|
069ab52b3b8d8abbb75cf2a32bb2f4e499829ddd
|
1b2ff0453c72c25784178ad070be1dbe00efcca7
|
/GUI/combobox.cpp
|
737a53039efc6c8bfaedd7e1fb8c0c100aaa226e
|
[] |
no_license
|
kirkbackus/meal-track
|
2f14d9c217336d2eee732eb432e2b20d1b10e1da
|
2d0c46cebd8d5a51725d4c6c3fc76aca120213b1
|
refs/heads/master
| 2016-09-05T18:42:01.843695
| 2014-11-22T22:15:17
| 2014-11-22T22:15:17
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,114
|
cpp
|
combobox.cpp
|
#include "gui.h"
ComboBox::ComboBox() {
}
ComboBox::ComboBox(Control c, RECT r, LPCSTR t) {
Control();
//Create font and the button
hFont = CreateFont(-11, 0, 0, 0, 400, FALSE, FALSE, FALSE, 1, 400, 0, 0, 0, "Arial");
hWnd = CreateWindowEx(WS_EX_CLIENTEDGE, "COMBOBOX", t, CBS_DROPDOWNLIST | CBS_HASSTRINGS | WS_CHILD | WS_OVERLAPPED | WS_VISIBLE,
r.left, r.top, r.right, r.bottom,
c.GetHandle(), 0, c.GetInstance(), NULL);
//Retrieve the rectangle
rect = r;
//Set the button font and make sure it's visible
SendMessage(hWnd, WM_SETFONT, (WPARAM)hFont, 0);
}
void ComboBox::AddItem(LPCSTR s) {
SendMessage(hWnd, (UINT)CB_ADDSTRING, (WPARAM)0, (LPARAM)s);
}
void ComboBox::SetItem(UINT i, LPCSTR s) {
SendMessage(hWnd, (UINT)CB_SETITEMDATA, (WPARAM)i, (LPARAM)s);
}
void ComboBox::SetDefaultItem(UINT i) {
SendMessage(hWnd, CB_SETCURSEL, i, 0);
}
int ComboBox::GetSelectedItem() {
return(SendMessage(hWnd, CB_GETCURSEL, 0, 0));
}
void ComboBox::Clear() {
SendMessage(hWnd, (UINT)CB_RESETCONTENT, 0, 0);
}
|
6cd146a817745432714c9c7280b88448bc0b95bc
|
eec522e24f5ae89f35e59f09e6821d88c7c8e7bc
|
/arduino/blindhumans/sketch_apr20a/sketch_apr20a.ino
|
152745b6063b5a741b7550ab48bb16b2678354c6
|
[] |
no_license
|
teejonz/projects
|
3b5a8a6e632c03ce472676727d9d16ac13ca5112
|
b767d7eca43a8a22078709b0e0eccd7d4d144ad7
|
refs/heads/master
| 2020-03-23T17:12:07.975563
| 2018-07-21T21:59:13
| 2018-07-21T21:59:13
| 141,848,473
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,604
|
ino
|
sketch_apr20a.ino
|
//Modified from code found on the Sparkfun website
//A modified code from of the Haptic Feedback Driver
//and ultrasonic sensor installation tutorials
//include libaraies for the driver
#include <Sparkfun_DRV2605L.h>
#include <Wire.h>
SFE_HMD_DRV2605L HMD;
//initialize pins
int trigPin = 3;
int echoPin = 2;
// Analog output pin that the Haptic Motor Driver
//is attached to
const int analogOutPin = 9;
// value read from the sensor
int sensorValue = 0;
int outputValue = 0;
void setup()
{
//more setup
//Vibration Motor setup
HMD.begin();
Serial.begin(9600);
HMD.Mode(0x03); //PWM INPUT
HMD.MotorSelect(0x0A);
HMD.Library(7); //change to 6 for LRA motors
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
}
void loop() {
long duration, distance;
//initial settings for vibration motor
digitalWrite(trigPin, HIGH);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
//change distance from duration to inches
distance = (duration/2) / 29.1;
//if these conditions are met, the vibration
//motor will vibrate at different intesnities
analogWrite(analogOutPin, 150);
if (distance < 20){
analogWrite(analogOutPin, 20);
}
else if (20 <= distance && distance < 50){
analogWrite(analogOutPin, 70);
Serial.println("MIDDLE THING");
}
//testing
Serial.print("Distance: ");
Serial.println(distance);
Serial.print("\t output = ");
Serial.println(outputValue);
// wait 2 milliseconds before the next loop
// for the analog-to-digital converter to settle
// after the last reading:
delay(200);
}
|
91a11c8c3e4b5151127326ec8e4919e39f60698c
|
1f706a4369946b8eba3ad67b4bb021b05a337e92
|
/8_puzzle_test.cpp
|
a8222e51a76153cb4249453e7fcdf5ecf9559111
|
[] |
no_license
|
xoca-inf/8-puzzle-solver
|
e5234538ec46aa7095e5437a1e0b688d905f97de
|
3b1e4378ce816172281af272f4b060549f739ee2
|
refs/heads/master
| 2022-02-25T07:59:55.663814
| 2019-10-19T13:45:39
| 2019-10-19T13:45:39
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,765
|
cpp
|
8_puzzle_test.cpp
|
//
// Created by tima on 01.06.2019.
//
#include <iostream>
#include "solver.hpp"
void test(const std::vector<std::vector<unsigned>> &a) {
board b(a);
if (b.is_solvable()) {
solver s(b);
std::cout<< "moves to solve |||| " << s.moves() << '\n';
for (const auto &it : s) {
std::cout<< it << "\n\n";
}
} else {
std::cout<< "this board is unsolvable\n";
}
}
void test(const board& board) {
solver solver(board);
std::cout << "moves to solve |||| " << solver.moves() << std::endl;
for (auto &iterator : solver) {
std::cout << iterator << "\n\n";
}
}
void tesst (int n) {
std::vector<std::vector<unsigned>> a;
for (int i = 0; i < n; ++i) {
std::cout << "TEST NUMBER " << i + 1 << std::endl;
if (i == 0) {
a = {
{1, 2, 3, 4},
{5, 6, 7, 8},
{9, 10, 11, 0},
{13, 14, 15, 12}
};
test(a);
} else if (i == 1) {
a = {
{1, 2, 3, 4},
{5, 6, 7, 8},
{9, 10, 11, 12},
{13, 14, 0, 15}
};
test(a);
}
else {
int k = 0;
while (true) {
board board(2);
k++;
std::cout << "TRYING TO TEST WITH SIZE 2 (try) : " << k << '\n';
std::cout << board << "\n\n";
if (board.is_solvable()) {
test(board);
break;
}
if (k > 10) {
break;
}
}
}
}
}
int main() {
tesst(5);
return 0;
}
|
ccb1a7ec04600f83eed3eabae575b773829077c8
|
0f0aa60f4515fcbfecd70bc49d9b1272d4d499ff
|
/CCBelock/ATMCMsgConvert/myLockTimeSync.cpp
|
ce37c3050dbce2befd4b92fc5a3730718d77c2f0
|
[] |
no_license
|
starwar6160/ccbt1
|
d88c43d76cf9549cea25734bcba1dc25a3c3e982
|
0e7171abfdf0d9be4ee4fef68b0c383fd0da2439
|
refs/heads/master
| 2021-06-22T08:01:54.741259
| 2021-02-27T03:59:58
| 2021-02-27T03:59:58
| 194,269,914
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 10,329
|
cpp
|
myLockTimeSync.cpp
|
#include "stdafx.h"
#include "zwCcbElockHdr.h"
#include "myConvIntHdr.h"
extern uint32_t G_JCDBG_CODE;
namespace jcAtmcConvertDLL {
time_t myGetCcbUTC(const ptree & ptccb)
{
string ccbDate = ptccb.get < string > (CCBSTR_DATE);
string ccbTime = ptccb.get < string > (CCBSTR_TIME);
time_t ccbUTCSec = 0;
zwCCBDateTime2UTC(ccbDate.c_str(), ccbTime.c_str(),
&ccbUTCSec);
return ccbUTCSec;
}
//时间同步
void zwconvTimeSyncDown(const ptree & ptccb, ptree & ptjc) {
ptjc.put(jcAtmcConvertDLL::JCSTR_CMDTITLE, JCSTR_TIME_SYNC);
//建行字符串格式的日期和时间字段合成转换为UTC秒数.开始
//time_t nowSec = time(NULL);
time_t ccbUTCSec = myGetCcbUTC(ptccb);
//string ccbDate = ptccb.get < string > (CCBSTR_DATE);
//string ccbTime = ptccb.get < string > (CCBSTR_TIME);
// zwCCBDateTime2UTC(ccbDate.c_str(), ccbTime.c_str(),
// &ccbUTCSec);
assert(ccbUTCSec > 1400 * 1000 * 1000);
//建行字符串格式的日期和时间字段合成转换为UTC秒数.结束
#ifdef _DEBUG
//printf("当前机器时间time(NULL)=%u\n",time(NULL));
//printf("zwconvTimeSyncDown ccbUTCSec from ATMVH is %u\n",ccbUTCSec);
#endif // _DEBUG
ptjc.put < time_t > ("Lock_Time", ccbUTCSec);
//ptjc.put < time_t > ("Lock_Time", nowSec);
}
//时间同步
void zwconvTimeSyncUp(const ptree & ptjc, ptree & ptccb) {
//无用的形式化部分
ptccb.put(CCBSTR_CODE, "0003");
ptccb.put(CCBSTR_NAME, "TimeSync"); //使用缓存在内存中的值
string zwDate, zwTime;
zwGetLocalDateTimeString(ptjc.get < time_t > ("Lock_Time"),
zwDate, zwTime);
ptccb.put(CCBSTR_DATE, zwDate);
ptccb.put(CCBSTR_TIME, zwTime);
//////////////////////////////////////////////////////////////////////////
ptccb.put(CCBSTR_DEVCODE, ptjc.get < string > ("Atm_Serial")); //使用缓存在内存中的值
ptccb.put("root.LockMan", LOCKMAN_NAME);
ptccb.put("root.LockId", ptjc.get < string > ("Lock_Serial"));
//////////////////////////////////////////////////////////////////////////
//有用部分
time_t exTimeValue = ptjc.get < time_t > ("Ex_Syn_Time");
string exDate, exTime;
zwGetLocalDateTimeString(exTimeValue, exDate, exTime);
ptccb.put("root.ExSynDate", exDate);
ptccb.put("root.ExSynTime", exTime);
}
//////////////////////////////////////////////////////////////////////////
void zwconvLockReqTimeSyncDown(const ptree & ptccb, ptree & ptjc) {
ptjc.put(jcAtmcConvertDLL::JCSTR_CMDTITLE,
jcAtmcConvertDLL::JCSTR_REQUEST_TIME_SYNC);
//建行字符串格式的日期和时间字段合成转换为UTC秒数.开始
string ccbDate = ptccb.get < string > (CCBSTR_DATE);
string ccbTime = ptccb.get < string > (CCBSTR_TIME);
time_t ccbUTCSec = 0;
zwCCBDateTime2UTC(ccbDate.c_str(), ccbTime.c_str(), &ccbUTCSec);
assert(ccbUTCSec > 1400 * 1000 * 1000);
//建行字符串格式的日期和时间字段合成转换为UTC秒数.结束
ptjc.put("Lock_Time", ccbUTCSec);
}
void zwconvLockReqTimeSyncUp(const ptree & ptjc, ptree & ptccb) {
ptccb.put(CCBSTR_CODE, "1003");
ptccb.put(CCBSTR_NAME, "TimeSync");
string zwDate, zwTime;
zwGetLocalDateTimeString(time(NULL), zwDate, zwTime);
ptccb.put(CCBSTR_DATE, zwDate);
ptccb.put(CCBSTR_TIME, zwTime);
//锁具发送初始闭锁码时,ATM编号应该已经在激活请求中获得,但是
//1.1版本报文里面没有给出,所以此处可能会有问题
ptccb.put(CCBSTR_DEVCODE, ptjc.get < string > ("Atm_Serial"));
ptccb.put("root.LockMan", LOCKMAN_NAME);
ptccb.put("root.LockId", ptjc.get < string > ("Lock_Serial"));
}
//////////////////////////////////////////////////////////////////////////
//20141111万敏.温度振动传感器报文支持
void zwconvTemptureSenseDown(const ptree & ptccb, ptree & ptjc) {
ptjc.put(jcAtmcConvertDLL::JCSTR_CMDTITLE,
jcAtmcConvertDLL::JCSTR_SENSE_TEMPTURE);
ptjc.put("Temperature", ptccb.get < int >("root.Temperature"));
}
void zwconvTemptureSenseUp(const ptree & ptjc, ptree & ptccb) {
ptccb.put(CCBSTR_CODE, "5000");
ptccb.put(CCBSTR_NAME, "Set_Senser_Temperature");
string zwDate, zwTime;
zwGetLocalDateTimeString(time(NULL), zwDate, zwTime);
ptccb.put(CCBSTR_DATE, zwDate);
ptccb.put(CCBSTR_TIME, zwTime);
//实质性有用字段
ptccb.put(CCBSTR_DEVCODE, ptjc.get < string > ("Atm_Serial"));
ptccb.put("root.LockId", ptjc.get < string > ("Lock_Serial"));
ptccb.put("root.Status", ptjc.get < int >("Status"));
}
void zwconvShockSenseDown(const ptree & ptccb, ptree & ptjc) {
ptjc.put(jcAtmcConvertDLL::JCSTR_CMDTITLE,
jcAtmcConvertDLL::JCSTR_SENSE_SHOCK);
ptjc.put("Shock", ptccb.get < int >("root.Shock"));
}
void zwconvShockSenseUp(const ptree & ptjc, ptree & ptccb) {
ptccb.put(CCBSTR_CODE, "5001");
ptccb.put(CCBSTR_NAME, "Set_Senser_Shock");
string zwDate, zwTime;
zwGetLocalDateTimeString(time(NULL), zwDate, zwTime);
ptccb.put(CCBSTR_DATE, zwDate);
ptccb.put(CCBSTR_TIME, zwTime);
//实质性有用字段
ptccb.put(CCBSTR_DEVCODE, ptjc.get < string > ("Atm_Serial"));
ptccb.put("root.LockId", ptjc.get < string > ("Lock_Serial"));
ptccb.put("root.Status", ptjc.get < int >("Status"));
}
//////////////////////////////////////////////////////////////////////////
//20141125.1508.万敏新增的5002/3/4三条命令
////ATM机设置上传的小循环次数命令
void zwconvTemptureSetInsideLoopTimesDown(const ptree & ptccb, ptree & ptjc) {
ptjc.put(jcAtmcConvertDLL::JCSTR_CMDTITLE,
jcAtmcConvertDLL::JCSTR_SENSE_SET_INSIDE_LOOP_TIMES);
ptjc.put("Times", ptccb.get < int >("root.Times"));
}
void zwconvTemptureSetInsideLoopTimesUp( const ptree & ptjc, ptree & ptccb )
{
ptccb.put(CCBSTR_CODE, "5002");
ptccb.put(CCBSTR_NAME, jcAtmcConvertDLL::JCSTR_SENSE_SET_INSIDE_LOOP_TIMES);
string zwDate, zwTime;
zwGetLocalDateTimeString(time(NULL), zwDate, zwTime);
ptccb.put(CCBSTR_DATE, zwDate);
ptccb.put(CCBSTR_TIME, zwTime);
//实质性有用字段
ptccb.put(CCBSTR_DEVCODE, ptjc.get < string > ("Atm_Serial"));
ptccb.put("root.LockId", ptjc.get < string > ("Lock_Serial"));
ptccb.put("root.Status", ptjc.get < int >("Status"));
}
//ATM机设置上传的小循环周期(单位秒)命令
void zwconvTemptureSetInsideLoopPeriodDown(const ptree & ptccb, ptree & ptjc) {
ptjc.put(jcAtmcConvertDLL::JCSTR_CMDTITLE,
jcAtmcConvertDLL::JCSTR_SENSE_SET_INSIDE_LOOP_PERIOD);
ptjc.put("Period", ptccb.get < int >("root.Period"));
}
void zwconvTemptureSetInsideLoopPeriodUp( const ptree & ptjc, ptree & ptccb )
{
ptccb.put(CCBSTR_CODE, "5003");
ptccb.put(CCBSTR_NAME, jcAtmcConvertDLL::JCSTR_SENSE_SET_INSIDE_LOOP_PERIOD);
string zwDate, zwTime;
zwGetLocalDateTimeString(time(NULL), zwDate, zwTime);
ptccb.put(CCBSTR_DATE, zwDate);
ptccb.put(CCBSTR_TIME, zwTime);
//实质性有用字段
ptccb.put(CCBSTR_DEVCODE, ptjc.get < string > ("Atm_Serial"));
ptccb.put("root.LockId", ptjc.get < string > ("Lock_Serial"));
ptccb.put("root.Status", ptjc.get < int >("Status"));
}
//ATM机设置上传的大循环周期(单位分钟)命令
void zwconvTemptureSetOutsideLoopPeriodDown(const ptree & ptccb, ptree & ptjc) {
ptjc.put(jcAtmcConvertDLL::JCSTR_CMDTITLE,
jcAtmcConvertDLL::JCSTR_SENSE_SET_OUTSIDE_LOOP_PERIOD);
ptjc.put("Period", ptccb.get < int >("root.Period"));
}
void zwconvTemptureSetOutsideLoopPeriodUp( const ptree & ptjc, ptree & ptccb )
{
ptccb.put(CCBSTR_CODE, "5004");
ptccb.put(CCBSTR_NAME, jcAtmcConvertDLL::JCSTR_SENSE_SET_OUTSIDE_LOOP_PERIOD);
string zwDate, zwTime;
zwGetLocalDateTimeString(time(NULL), zwDate, zwTime);
ptccb.put(CCBSTR_DATE, zwDate);
ptccb.put(CCBSTR_TIME, zwTime);
//实质性有用字段
ptccb.put(CCBSTR_DEVCODE, ptjc.get < string > ("Atm_Serial"));
ptccb.put("root.LockId", ptjc.get < string > ("Lock_Serial"));
ptccb.put("root.Status", ptjc.get < int >("Status"));
}
#ifdef _JINCHU_DEV1608
//金储内部使用的锁具卸载指令,绝不能出现在给建行的版本中
void zwconvJCDevLockUninstallDown(const ptree & ptccb, ptree & ptjc) {
//设置环境变量JCDEVDBG1608为某个特定数字比如74484053才能开启
// 调试功能比如卸载锁具等等,这个开关是一个双保险
if (74484053==G_JCDBG_CODE)
{
ptjc.put(jcAtmcConvertDLL::JCSTR_CMDTITLE,
jcAtmcConvertDLL::JCSTR_PRV_LOCKUNINSTALL);
} //if (74484053==G_JCDBG_CODE)
}
void zwconvJCDevLockUninstallUp( const ptree & ptjc, ptree & ptccb )
{
if (74484053==G_JCDBG_CODE)
{
//设置环境变量JCDEVDBG1608为某个特定数字比如74484053才能开启
// 调试功能比如卸载锁具等等,这个开关是一个双保险
ptccb.put(CCBSTR_CODE, "5005");
ptccb.put(CCBSTR_NAME, "OnLineLockUninstall");
string zwDate, zwTime;
zwGetLocalDateTimeString(time(NULL), zwDate, zwTime);
ptccb.put(CCBSTR_DATE, zwDate);
ptccb.put(CCBSTR_TIME, zwTime);
//实质性有用字段
ptccb.put(CCBSTR_DEVCODE, ptjc.get < string > ("Atm_Serial"));
ptccb.put("root.LockId", ptjc.get < string > ("Lock_Serial"));
ptccb.put("root.Status", ptjc.get < int >("Status"));
} //if (74484053==G_JCDBG_CODE)
}
#endif // _JINCHU_DEV1608
//////////////////////////////////////////////////////////////////////////
//获取XML报文类型
CCBELOCK_API string zwGetJcxmlMsgType(const char *jcXML)
{
assert(NULL!=jcXML);
assert(strlen(jcXML)>0);
ptree ptccb;
std::stringstream ss;
ss << jcXML;
read_xml(ss, ptccb);
string msgType=ptccb.get<string>("root.TransCode");
assert(msgType.size()>0);
return msgType;
}
//获取JSON报文类型
CCBELOCK_API string zwGetJcJsonMsgType(const char *jcJson)
{
assert(NULL!=jcJson);
assert(strlen(jcJson)>0);
try{
ptree ptjc;
std::stringstream ss;
ss << jcJson;
read_json(ss, ptjc);
string msgType=ptjc.get<string>("Command");
assert(msgType.size()>0);
return msgType;
}
catch(...)
{
printf("jcJson=%s\n",jcJson);
return "";
}
}
} //namespace jcAtmcConvertDLL{
|
2993295c5f1159ffca9bedacdf663cd0c8900bc0
|
79b9e9e6904087b42965af5f58987a28894f4ef1
|
/Source/Gruppe2_1/Projectile.h
|
ccbbdd71dcd27f44bae5e3e3fbe7a6366e160761
|
[] |
no_license
|
NotBjoggisAtAll/Gruppe2_1
|
0134ccc27cabc23c9ef17430929e66e8b229254b
|
78ae5af5a27560e67117f98c805cc15981909ad7
|
refs/heads/master
| 2021-03-27T19:21:22.342438
| 2018-05-22T21:54:12
| 2018-05-22T21:54:12
| 117,854,261
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,365
|
h
|
Projectile.h
|
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "Projectile.generated.h"
class UProjectileMovementComponent;
class UStaticMeshComponent;
class AMyHealthUp;
class AMyFireRateUp;
UCLASS()
class GRUPPE2_1_API AProjectile : public AActor
{
GENERATED_BODY()
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Projectile, meta = (AllowPrivateAccess = "true"))
UStaticMeshComponent* ProjectileMesh;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Movement, meta = (AllowPrivateAccess = "true"))
UProjectileMovementComponent* ProjectileMovement;
public:
AProjectile();
void Tick(float DeltaTime) override;
UPROPERTY(EditDefaultsOnly)
TSubclassOf<AMyHealthUp> Health_BP;
UPROPERTY(EditDefaultsOnly)
TSubclassOf<AMyFireRateUp> FireRate_BP;
UPROPERTY(BlueprintReadOnly)
FVector EnemyDeath;
UPROPERTY(BlueprintReadOnly)
bool EnemyHit = false;
UFUNCTION()
void OnHit(UPrimitiveComponent* HitComp, AActor* OtherActor, UPrimitiveComponent* OtherComp, FVector NormalImpulse, const FHitResult& Hit);
FORCEINLINE UStaticMeshComponent* GetProjectileMesh() const { return ProjectileMesh; }
FORCEINLINE UProjectileMovementComponent* GetProjectileMovement() const { return ProjectileMovement; }
private:
float Speed;
};
|
4608fd3337d8187b5589b286e73ea6b03a54a8c4
|
31f671e589e58f7a34ddf383d6701bc04f74bfd4
|
/ps/week6/task1/chernykh/homeWork6Task1.cpp
|
3086a0caf41cc01620d9c4e7356c56efe37eff2b
|
[] |
no_license
|
Boklazhenko/itstephomework
|
450fbdd43c56fadb9f53573573197f2c880e832a
|
368f951936620332ca68d14eb444084db9bb33a4
|
refs/heads/master
| 2020-09-08T16:54:19.988831
| 2020-08-08T13:22:35
| 2020-08-08T13:22:35
| 221,188,173
| 5
| 10
| null | 2020-08-15T07:00:35
| 2019-11-12T10:13:14
|
C++
|
UTF-8
|
C++
| false
| false
| 681
|
cpp
|
homeWork6Task1.cpp
|
#include <iostream>
using namespace std;
int degreeNumber(int number, int degree)
{
int result = 1;
for (int i = 0; i < degree; ++i)
{
result *= number;
}
return result;
}
double degreeNumber(double number, int degree)
{
double result = 1.0;
for (int i = 0; i < degree; ++i)
{
result *= number;
}
return result;
}
int main()
{
double number = 0;
int degree = 0;
cout << "Enter number: " << endl;
cin >> number;
cout << "Enter degree: " << endl;
cin >> degree;
if (degree <= -1)
{
cout << "Error, enter pisitive degree!";
return 1;
}
cout << "Number " << number << " in " << degree << " degree = " << degreeNumber(number, degree);
return 0;
}
|
8697b90ceddc59d89f0cac2133814fac0b10aa8a
|
49b68ec482338ea405f3d91b7648dd1aa3d0455b
|
/TestBCC/DGtal/images/ImageCache.h
|
b05ffa89a33f2e8a43932de5d11ac0b5abeb6c90
|
[] |
no_license
|
quanganhct/Research
|
51343cc39b23cf007004c88f616b6efedc84ee9c
|
3a7b43ebfc68ce12ad24d76e9650e4763e366b46
|
refs/heads/master
| 2016-09-03T01:17:58.237334
| 2015-04-30T10:25:27
| 2015-04-30T10:25:27
| 34,203,891
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,072
|
h
|
ImageCache.h
|
/**
* This program 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 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
**/
#pragma once
/**
* @file ImageCache.h
* @author Martial Tola (\c martial.tola@liris.cnrs.fr )
* Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), CNRS, France
*
* @date 2013/01/24
*
* Header file for module ImageCache.cpp
*
* This file is part of the DGtal library.
*/
#if defined(ImageCache_RECURSES)
#error Recursive header files inclusion detected in ImageCache.h
#else // defined(ImageCache_RECURSES)
/** Prevents recursive inclusion of headers. */
#define ImageCache_RECURSES
#if !defined ImageCache_h
/** Prevents repeated inclusion of headers. */
#define ImageCache_h
//////////////////////////////////////////////////////////////////////////////
// Inclusions
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/base/ConceptUtils.h"
#include "DGtal/images/CImage.h"
#include "DGtal/images/CImageFactory.h"
#include "DGtal/images/CImageCacheReadPolicy.h"
#include "DGtal/images/CImageCacheWritePolicy.h"
#include "DGtal/base/Alias.h"
//////////////////////////////////////////////////////////////////////////////
namespace DGtal
{
// CACHE_READ_POLICY_LAST, CACHE_READ_POLICY_FIFO, CACHE_READ_POLICY_LRU, CACHE_READ_POLICY_NEIGHBORS // read policies
// CACHE_WRITE_POLICY_WT, CACHE_WRITE_POLICY_WB // write policies
/////////////////////////////////////////////////////////////////////////////
// Template class ImageCache
/**
* Description of template class 'ImageCache' <p>
* \brief Aim: implements an images cache with 'read and write' policies.
*
* @tparam TImageContainer an image container type (model of CImage).
* @tparam TImageFactory an image factory type (model of CImageFactory).
* @tparam TReadPolicy an image cache read policy class (model of CImageCacheReadPolicy).
* @tparam TWritePolicy an image cache write policy class (model of CImageCacheWritePolicy).
*
* The cache provides 3 functions:
*
* - read : for getting the value of an image from cache at a given position given by a point only if that point belongs to an image from cache
* - write : for setting a value on an image from cache at a given position given by a point only if that point belongs to an image from cache
* - update : for updating the cache according to the read cache policy
*/
template <typename TImageContainer, typename TImageFactory, typename TReadPolicy, typename TWritePolicy>
class ImageCache
{
// ----------------------- Types ------------------------------
public:
typedef ImageCache<TImageContainer, TImageFactory, TReadPolicy, TWritePolicy> Self;
///Checking concepts
BOOST_CONCEPT_ASSERT(( CImage<TImageContainer> ));
BOOST_CONCEPT_ASSERT(( CImageFactory<TImageFactory> ));
BOOST_CONCEPT_ASSERT(( CImageCacheReadPolicy<TReadPolicy> ));
BOOST_CONCEPT_ASSERT(( CImageCacheWritePolicy<TWritePolicy> ));
///Types copied from the container
typedef TImageContainer ImageContainer;
typedef typename ImageContainer::Domain Domain;
typedef typename ImageContainer::Point Point;
typedef typename ImageContainer::Value Value;
typedef TImageFactory ImageFactory;
typedef TReadPolicy ReadPolicy;
typedef TWritePolicy WritePolicy;
// ----------------------- Standard services ------------------------------
public:
/**
* Constructor.
* @param anImageFactory alias on the image factory (see ImageFactoryFromImage or ImageFactoryFromHDF5).
* @param aReadPolicy a read policy.
* @param aWritePolicy a write policy.
*/
ImageCache(Alias<ImageFactory> anImageFactory, Alias<ReadPolicy> aReadPolicy, Alias<WritePolicy> aWritePolicy):
myImageFactoryPtr(&anImageFactory), myReadPolicy(&aReadPolicy), myWritePolicy(&aWritePolicy)
{
myReadPolicy->clearCache();
cacheMissRead = 0;
cacheMissWrite = 0;
}
/**
* Destructor.
* Does nothing
*/
~ImageCache()
{
}
private:
ImageCache( const ImageCache & other );
ImageCache & operator=( const ImageCache & other );
// ----------------------- Interface --------------------------------------
public:
/////////////////// Domains //////////////////
/////////////////// Accessors //////////////////
/////////////////// API //////////////////
/**
* Writes/Displays the object on an output stream.
* @param out the output stream where the object is written.
*/
void selfDisplay ( std::ostream & out ) const;
/**
* Checks the validity/consistency of the object.
* @return 'true' if the object is valid, 'false' otherwise.
*/
bool isValid() const
{
return (myImageFactoryPtr->isValid());
}
/**
* Get the value of an image from cache at a given position given
* by aPoint only if aPoint belongs to an image from cache.
*
* @param aPoint the point.
* @param aValue the value returned.
*
* @return 'true' if aPoint belongs to an image from cache, 'false' otherwise.
*/
bool read(const Point & aPoint, Value &aValue) const;
/**
* Get the alias on the image that matchs the domain aDomain
* or NULL if no image in the cache matchs the domain aDomain.
*
* @param aDomain the domain.
*
* @return the alias on the image container or NULL pointer.
*/
ImageContainer * getPage(const Domain & aDomain) const;
/**
* Set a value on an image from cache at a given position given
* by aPoint only if aPoint belongs to an image from cache.
*
* @param aPoint the point.
* @param aValue the value returned.
*
* @return 'true' if aPoint belongs to an image from cache, 'false' otherwise.
*/
bool write(const Point & aPoint, const Value &aValue);
/**
* Update the cache according to the read cache policy.
*
* @param aDomain the domain.
*/
void update(const Domain &aDomain);
/**
* Get the cacheMissRead value.
*/
unsigned int getCacheMissRead()
{
return cacheMissRead;
}
/**
* Get the cacheMissWrite value.
*/
unsigned int getCacheMissWrite()
{
return cacheMissWrite;
}
/**
* Inc the cacheMissRead value.
*/
void incCacheMissRead()
{
cacheMissRead++;
}
/**
* Inc the cacheMissWrite value.
*/
void incCacheMissWrite()
{
cacheMissWrite++;
}
/**
* Clear the cache and reset the cache misses
*/
void clearCacheAndResetCacheMisses()
{
myReadPolicy->clearCache();
cacheMissRead = 0;
cacheMissWrite = 0;
}
// ------------------------- Protected Datas ------------------------------
private:
/**
* Default constructor.
*/
//ImageCache() {}
// ------------------------- Private Datas --------------------------------
protected:
/// Alias on the image factory
ImageFactory * myImageFactoryPtr;
/// Specialized caches
ReadPolicy * myReadPolicy;
WritePolicy * myWritePolicy;
private:
/// cache miss values
unsigned int cacheMissRead;
unsigned int cacheMissWrite;
// ------------------------- Internals ------------------------------------
private:
}; // end of class ImageCache
/**
* Overloads 'operator<<' for displaying objects of class 'ImageCache'.
* @param out the output stream where the object is written.
* @param object the object of class 'ImageCache' to write.
* @return the output stream after the writing.
*/
template <typename TImageContainer, typename TImageFactory, typename TReadPolicy, typename TWritePolicy>
std::ostream&
operator<< ( std::ostream & out, const ImageCache<TImageContainer, TImageFactory, TReadPolicy, TWritePolicy> & object );
} // namespace DGtal
///////////////////////////////////////////////////////////////////////////////
// Includes inline functions.
#include "DGtal/images/ImageCachePolicies.h"
#include "DGtal/images/ImageCache.ih"
// //
///////////////////////////////////////////////////////////////////////////////
#endif // !defined ImageCache_h
#undef ImageCache_RECURSES
#endif // else defined(ImageCache_RECURSES)
|
0e12d002c2fcaac9a55758194b176d63469b2505
|
93e3bd4dcb5eb0549f0bdf988b1ea918b190ca45
|
/classviewer.h
|
b38a81b5f9012a4326c14a70c32057eb591e31de
|
[] |
no_license
|
Zstorm999/ClassMaker
|
82f3addd608074e1b8394457ac6faec0d4438634
|
9c6c9ad620deeddc34ec7b44cea40f2b6b483df3
|
refs/heads/master
| 2020-07-02T19:46:18.057692
| 2019-08-10T14:50:08
| 2019-08-10T14:50:08
| 201,643,416
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 365
|
h
|
classviewer.h
|
#ifndef CLASSVIEWER_H
#define CLASSVIEWER_H
#include <QtWidgets>
#include <QDialog>
class ClassViewer : public QDialog
{
Q_OBJECT
public:
ClassViewer(QString code,QString header=QString(), QString language=QString("cpp"));
private:
QTextEdit *m_code;
QTextEdit *m_header;
QPushButton *m_save;
};
#endif // CLASSVIEWER_H
|
a633ff657403ffc43ed422f3821435f6d5f00ba8
|
d019fbfbb483214c322a246f04b6953e8b33b324
|
/source/zipdialog.cpp
|
7a950753682ddbe901a557f6ee95d72223876011
|
[] |
no_license
|
nelsont/qmmander
|
fd5657e124b499c3355e0b16b36aadd5b5a81dcd
|
6a48e28f371f4dd60824907ec3a9a61208ccf97b
|
refs/heads/master
| 2021-05-09T03:45:45.176670
| 2013-08-25T12:58:45
| 2013-08-25T12:58:45
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,275
|
cpp
|
zipdialog.cpp
|
/****************************************************************************
**
** This file is part of the Qmmander Filemanager.
**
** Copyright (C) Alex Skoruppa 2009-2013
** All rights reserved.
**
** This is a dialog with some zip-option which is shown before the
** file compression process.
**
** Qmmander 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.
**
** Qmmander is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with Qmmander. If not, see <http://www.gnu.org/licenses/>.
**
****************************************************************************/
#include "zipdialog.h"
#include "ui_zipdialog.h"
#include "archiveinfo.h"
#include <QFileDialog>
ZipDialog::ZipDialog(QWidget* pParent, ArchiveInfo* pAI)
: QDialog(pParent),
ui(new Ui::ZipDialog),
m_pArchiveInfo(pAI)
{
ui->setupUi(this);
ui->labelFileCount->setText(QString("Zip %1 file(s) into archive").arg(m_pArchiveInfo->m_selectedFiles.count()));
WinFileInfo fi=m_pArchiveInfo->m_selectedFiles.at(0);
QString archiveName=QString("%1\\%2.zip").arg(m_pArchiveInfo->m_to).arg(fi.fileName());
ui->lineEditDestination->setText(archiveName);
ui->lineEditFilter->setText(m_pArchiveInfo->m_filter);
ui->checkBoxRecursiveSubdirs->setChecked(m_pArchiveInfo->m_zipFlags & ZipRecursive);
Qt::WindowFlags windowFlags=this->windowFlags() & ~(Qt::WindowSystemMenuHint |
Qt::WindowMinMaxButtonsHint |
Qt::WindowContextHelpButtonHint);
setWindowFlags(windowFlags);
connect(ui->pushButtonArchive, SIGNAL(clicked()), this, SLOT(selectArchive()));
}
ZipDialog::~ZipDialog()
{
delete ui;
}
void ZipDialog::changeEvent(QEvent *e)
{
QDialog::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
}
}
void ZipDialog::accept()
{
QDialog::accept();
m_pArchiveInfo->m_to=ui->lineEditDestination->text();
m_pArchiveInfo->m_filter=ui->lineEditFilter->text();
int iFlags=0;
if(ui->checkBoxRecursiveSubdirs->checkState())
iFlags|=ZipRecursive;
if(ui->checkBoxMoveToArchive->checkState())
iFlags|=ZipMove2Archive;
if(ui->checkBoxSeparateArchives->checkState())
iFlags|=ZipSeparateArchives;
m_pArchiveInfo->m_zipFlags=QFlag(iFlags);
}
void ZipDialog::selectDestination()
{
if(ui->checkBoxSeparateArchives->isChecked())
selectDirectory();
else
selectArchive();
}
void ZipDialog::selectArchive()
{
QFileDialog* pDlg=new QFileDialog(this, tr("Select an archive"), m_pArchiveInfo->m_to);
pDlg->setFileMode(QFileDialog::AnyFile);
pDlg->setNameFilter(tr("zip archives (*.zip)"));
pDlg->setAcceptMode(QFileDialog::AcceptOpen);
if(pDlg->exec()==QDialog::Accepted)
{
QStringList selectedFiles=pDlg->selectedFiles();
if(selectedFiles.count())
{
QString archiveFilePath=selectedFiles.at(0);
QFileInfo fi(archiveFilePath);
archiveFilePath.left(archiveFilePath.lastIndexOf(fi.suffix())-1);
archiveFilePath+=".zip";
ui->lineEditDestination->setText(archiveFilePath);
}
}
}
void ZipDialog::selectDirectory()
{
QFileDialog* pDlg=new QFileDialog(this, tr("Select a directory"), m_pArchiveInfo->m_to);
pDlg->setFileMode(QFileDialog::Directory);
pDlg->setAcceptMode(QFileDialog::AcceptOpen);
if(pDlg->exec()==QDialog::Accepted)
{
QStringList selectedFiles=pDlg->selectedFiles();
if(selectedFiles.count())
{
QString strPath=selectedFiles.at(0);
strPath=strPath.replace('/',"\\");
ui->lineEditDestination->setText(strPath);
}
}
}
|
9397a4790b13b83e0d0e3747d91c23acab1d2e73
|
4c93ca76318969f1624a0e77749bcdea3e7809d3
|
/~9999/2269_수들의 합.cpp
|
33cfcf17573a3231185b49dc2ca20dc01b50851e
|
[] |
no_license
|
root-jeong/BOJ
|
080925f6cfbb5dcbdf13c4c3a3c7e0a444908e6e
|
ec1ef5ad322597883b74d276078da8a508f164a8
|
refs/heads/master
| 2022-04-03T22:33:44.866564
| 2020-01-08T12:21:19
| 2020-01-08T12:21:19
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,349
|
cpp
|
2269_수들의 합.cpp
|
#include <iostream>
using namespace std;
#define swap(a,b) {int t = b; b = a; a = t;}
#define MAX_N 1000001
typedef long long ll;
ll tree[MAX_N * 4];
ll update_tree(int now, int target, int start, int end, int value) {
if (target > end || target < start) return tree[now];
if (start == end) {
return tree[now] = value;
}
int mid = (start + end) / 2;
return tree[now] = (
update_tree(now * 2, target, start, mid, value) +
update_tree(now * 2 + 1, target, mid + 1, end, value)
);
}
ll query(int now, int left, int right, int start, int end) {
if (left > end || right < start) return 0;
if (left <= start && end <= right) {
return tree[now];
}
int mid = (start + end) / 2;
return (
query(now * 2, left, right, start, mid) +
query(now * 2 + 1, left, right, mid + 1, end)
);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int N, M;
cin >> N >> M;
for (int i = 0; i < M; i++) {
int a, b, c;
cin >> a >> b >> c;
if (a) { // modify
update_tree(1, b-1, 0, N - 1, c);
}
else { // sum
if (c < b) swap(b, c);
cout << query(1, b - 1, c - 1, 0, N - 1) << "\n";
}
}
}
|
ba2dde1c466db0c5a180569a7b161557eb372547
|
11c2f8a5409578a245c66cfb1d5727dd8160e492
|
/extent_server.h
|
fa3809fe403d42fa8a121fbfd543f80d4a56b4d9
|
[] |
no_license
|
adityavit/DistributedSystemRepo
|
205016b8d3b0cc5c20d885719be17c85c365f9ce
|
37b7db5052554aa9f130a450c56d9cc27b85aec9
|
refs/heads/master
| 2020-05-17T00:29:01.266900
| 2012-12-16T20:28:27
| 2012-12-16T20:28:27
| 6,002,863
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,130
|
h
|
extent_server.h
|
// this is the extent server
#ifndef extent_server_h
#define extent_server_h
#include <string>
#include <map>
#include <vector>
#include "extent_protocol.h"
using namespace std;
class extent_server {
private:
struct filedata {
string file_content;
int content_size;
map<string,extent_protocol::extentid_t> dir_list;
extent_protocol::attr file_attr;
}; /* ---------- end of struct filedata ---------- */
typedef struct filedata Filedata;
map<extent_protocol::extentid_t,Filedata> fileDataMap;
void get_file_name_inum(string,vector<string> & );
extent_protocol::extentid_t n2i(string);
string filename(extent_protocol::extentid_t );
void print_directory_list();
bool is_inum_present(extent_protocol::extentid_t);
public:
extent_server();
bool isfile(extent_protocol::extentid_t);
bool isdir(extent_protocol::extentid_t);
int put(extent_protocol::extentid_t id, std::string, int &);
int get(extent_protocol::extentid_t id, std::string &);
int getattr(extent_protocol::extentid_t id, extent_protocol::attr &);
int remove(extent_protocol::extentid_t id, int &);
};
#endif
|
681b3ff5d5f3306f7fda1d472aa02199a86db94e
|
7f1ef34214ee4a25429fce694f66826316672b1b
|
/Project 2/player.h
|
efe546c4306e711fe190882ab99af4917cf277b0
|
[] |
no_license
|
Neel1997/CPlusPlus_Labs_Projects
|
ca39b201d77c0491ae953f8fb1b3a8c20186c506
|
d631c5c9df217e1e2fd8d9528d596f86d6ccec53
|
refs/heads/main
| 2023-06-30T00:25:36.101943
| 2021-07-28T20:38:31
| 2021-07-28T20:38:31
| 390,493,464
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 462
|
h
|
player.h
|
#ifndef PLAYER_H
#define PLAYER_H
#include <iostream>
#include <cstdlib>
using namespace std;
class Player {
private:
int health;
string playerName;
int maxLow;
int maxMid;
int maxHigh;
public:
Player();
Player(string);
void setName(string);
int getHealth();
void getLow();
void getMid();
void getHigh();
string getName();
int showLow();
int showMid();
int showHigh();
void reset();
};
#endif
|
b2d077e4772d016bbe819fe7e0ba7d813912045d
|
4e60c55b6d8484daf0d7c6c246dfd56dc0919b4c
|
/test/string_utils_test.cpp
|
7dc7812bdfdea780eec08302c8b6d2622f7b8408
|
[] |
no_license
|
gaomy3832/utils
|
b59ce22c851574b67294036653e6c5d436ec3360
|
3ab7e58b5d4357eb048336daa9cdf97be9d30086
|
refs/heads/master
| 2020-12-13T22:52:58.609322
| 2019-11-11T05:56:21
| 2019-11-11T05:56:21
| 23,154,219
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,460
|
cpp
|
string_utils_test.cpp
|
/*
* Copyright 2016 Mingyu Gao
*
*/
#include "gtest/gtest.h"
#include "utils/string_utils.h"
TEST(StringUtils, tokenize) {
std::vector<std::string> tokens;
// Normal.
std::string str1 = "a bb ccc dddd";
tokens.clear();
tokenize(str1, &tokens);
ASSERT_EQ(4, tokens.size());
ASSERT_EQ("a", tokens[0]);
ASSERT_EQ("bb", tokens[1]);
ASSERT_EQ("ccc", tokens[2]);
ASSERT_EQ("dddd", tokens[3]);
// Multiple delims.
const char* str2 = "a b c d";
tokens.clear();
tokenize(str2, &tokens);
ASSERT_EQ(4, tokens.size());
ASSERT_EQ("a", tokens[0]);
ASSERT_EQ("b", tokens[1]);
ASSERT_EQ("c", tokens[2]);
ASSERT_EQ("d", tokens[3]);
// Multiple types of delim.
std::string str3 = "a b\tc\nd \te";
tokens.clear();
tokenize(str3, &tokens, " \t\n");
ASSERT_EQ(5, tokens.size());
ASSERT_EQ("a", tokens[0]);
ASSERT_EQ("b", tokens[1]);
ASSERT_EQ("c", tokens[2]);
ASSERT_EQ("d", tokens[3]);
ASSERT_EQ("e", tokens[4]);
// Append to tokens.
tokenize(str1, &tokens);
ASSERT_EQ(9, tokens.size());
ASSERT_EQ("a", tokens[0]);
ASSERT_EQ("b", tokens[1]);
ASSERT_EQ("c", tokens[2]);
ASSERT_EQ("d", tokens[3]);
ASSERT_EQ("e", tokens[4]);
ASSERT_EQ("a", tokens[5]);
ASSERT_EQ("bb", tokens[6]);
ASSERT_EQ("ccc", tokens[7]);
ASSERT_EQ("dddd", tokens[8]);
// nullptr for tokens.
tokenize(str3, nullptr);
}
|
b47f6c3acc1db7c1c834a353151d4c4350bc18be
|
a4eaa62c5de13054608915f8d021b9ebe792024a
|
/task26/Source.cpp
|
50efc831c6a6c17408c2bf2f9cdf4ba7b66b2866
|
[] |
no_license
|
Vermillio/Editing-Steps-Problem
|
4e43e2f5073f483888dd2aa883b5c6165fb052eb
|
7d076d5b5b1c2bbd71d6123a169ba35a0cd636c0
|
refs/heads/master
| 2021-08-31T16:16:02.978155
| 2017-12-22T01:46:44
| 2017-12-22T01:46:44
| 115,063,845
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 118
|
cpp
|
Source.cpp
|
#include "StepsLadderFinder.h"
int main()
{
StepsLadderFinder finder;
finder.test();
system("pause");
return 0;
}
|
96b5b444e543bed487c57c26a12f2580b44ad715
|
ec8f4cf382d7033dd8ba0042a28a5559997920f5
|
/interviewCode/src/someCompany/FlexRay/gennumberalternatively/gennumberalternatively.h
|
8620279f7b9bf888c7157f8bc2798fc8677d92d9
|
[] |
no_license
|
jiguosong/coding_practice
|
7d5b008fbf0cb4181497020fef97e68669f969b0
|
4313bd943c7755ed8127626cad194d7a60d05a14
|
refs/heads/master
| 2020-12-14T06:09:52.598169
| 2016-12-31T21:40:26
| 2016-12-31T21:40:26
| 68,734,717
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 286
|
h
|
gennumberalternatively.h
|
/*
* gennumberalternatively.h
*
* Created on: Dec 1, 2016
* Author: songjiguo
*/
#ifndef GENNUMBERALTERNATIVELY_H_
#define GENNUMBERALTERNATIVELY_H_
class gennumberalternatively {
public:
int produceNumber(int num1, int num2);
};
#endif /* GENNUMBERALTERNATIVELY_H_ */
|
58d9ab582e2a9b45624db3e69a235510c6fe01ef
|
a66d35211adc012b160346c5905e0bc0d860d95b
|
/src/board.hpp
|
6e2948d39ea146a139764990b802cbd828ecaf6b
|
[
"MIT"
] |
permissive
|
DCGroothuizenDijkema/MENACE
|
904f73231007feb59fd5a5820ac10a6ff1d5a420
|
c16b1f1ce62c0506d1877a40a64467c3ea22eda0
|
refs/heads/master
| 2020-12-01T15:28:26.287592
| 2020-05-27T08:47:38
| 2020-05-27T08:47:38
| 230,681,711
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,578
|
hpp
|
board.hpp
|
//+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+//
// //
// board.hpp //
// //
// D. C. Groothuizen Dijkema - November, 2019 //
//+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+//
// Board and related classes of MENACE
#pragma once
#ifndef BOARD_H__
#define BOARD_H__
#include <menace.hpp>
namespace menace
{
// Exceptions
class non_empty_position : public std::exception
{
public:
non_empty_position(const POSITION pos, const VALUE val) : pos(pos), val(val) {};
const POSITION pos;
const VALUE val;
};
class game_finished : public std::exception
{
public:
game_finished(const RESULT result) : result(result) {};
const RESULT result;
};
class assigning_empty_value : public std::exception {};
// Constants
const std::array<std::array<POSITION,3>,8> kWinningPositions={{
// rows
{{POSITION::kTopLeft,POSITION::kTopMiddle,POSITION::kTopRight}}
, {{POSITION::kMiddleLeft,POSITION::kMiddleMiddle,POSITION::kMiddleRight}}
, {{POSITION::kBottomLeft,POSITION::kBottomMiddle,POSITION::kBottomRight}}
// columns
, {{POSITION::kTopLeft,POSITION::kMiddleLeft,POSITION::kBottomLeft}}
, {{POSITION::kTopMiddle,POSITION::kMiddleMiddle,POSITION::kBottomMiddle}}
, {{POSITION::kTopRight,POSITION::kMiddleRight,POSITION::kBottomRight}}
// diagonals
, {{POSITION::kTopLeft,POSITION::kMiddleMiddle,POSITION::kBottomRight}}
, {{POSITION::kBottomLeft,POSITION::kMiddleMiddle,POSITION::kTopRight}}
}};
// Classes
class BoardElement
{
public:
VALUE val;
POSITION pos;
size_t ind;
BoardElement();
BoardElement(const VALUE val, const POSITION pos, const size_t ind);
~BoardElement();
private:
bool check_range(const size_t idx);
};
class BoardIterator
{
using const_board_iterator=std::array<VALUE,9>::const_iterator;
const_board_iterator board_itr;
BoardElement elem;
public:
using pointer=const BoardElement * const;
using reference=const BoardElement &;
using iterator_category=std::array<VALUE,9>::const_iterator::iterator_category;
using difference_type=std::array<VALUE,9>::const_iterator::difference_type;
using value_type=std::array<VALUE,9>::const_iterator::value_type;
BoardIterator::BoardIterator();
BoardIterator(const const_board_iterator begin, const const_board_iterator board_itr);
BoardIterator(const BoardIterator &other);
BoardIterator(BoardIterator &&other);
~BoardIterator();
// assignment
BoardIterator &operator=(BoardIterator other);
// dereference
reference operator*() const;
pointer operator->() const;
// increment
BoardIterator &operator++();
BoardIterator operator++(int);
// comparison
friend inline bool operator==(const BoardIterator &lhs, const BoardIterator &rhs);
friend inline bool operator!=(const BoardIterator &lhs, const BoardIterator &rhs);
// swap
friend void swap(BoardIterator &first, BoardIterator &second) noexcept;
};
class Board
{
public:
Board();
Board(const Board &other);
Board(Board &&other);
~Board();
void assign_position(POSITION pos, const VALUE value);
void clear_board(void);
RESULT check_board(void) const;
// iterators
[[nodiscard]] BoardIterator begin(void) const;
[[nodiscard]] BoardIterator end(void) const;
// getters
[[nodiscard]] ITERATION get_plays(void) const;
[[nodiscard]] const VALUE &at(const POSITION &pos);
[[nodiscard]] const VALUE &at(const POSITION &pos) const;
[[nodiscard]] const VALUE &operator[](const POSITION &pos);
[[nodiscard]] const VALUE &operator[](const POSITION &pos) const;
// assignment
Board &operator=(Board other);
Board &operator>>=(const int n);
Board &operator<<=(int n);
// comparison
friend inline bool operator==(const Board &lhs, const Board &rhs);
// isometries
friend inline Board operator>>(Board lhs, const int n);
friend inline Board operator<<(Board lhs, const int n);
// io
friend std::ostream &operator<<(std::ostream &os, const Board &board); // defined in ui.cpp to make use of coloured text
// swap
friend void swap(Board &first, Board &second) noexcept;
private:
ITERATION plays;
std::array<VALUE,9> board;
int cross_count,nought_count;
bool check_equal(const std::array<POSITION, 3> &pos) const;
bool check_range(const POSITION pos) const;
// getters
[[nodiscard]] VALUE &at(POSITION &pos);
[[nodiscard]] VALUE &operator[](POSITION &pos);
};
// Inline Overloads
inline bool operator==(const BoardIterator &lhs, const BoardIterator &rhs)
{
//
// BoardIterator operator==
// Compare two instances of BoardIterator
//
// parameters
// ----------
// lhs,rhs : const BoardIterator &
// - the port and starboard sides of the equality
//
// returns
// -------
// bool
// - true if their iterator is the same, false otherwise
//
return lhs.board_itr==rhs.board_itr;
}
inline bool operator!=(const BoardIterator &lhs, const BoardIterator &rhs)
{
//
// BoardIterator operator!=
// Compare two instances of BoardIterator
//
// parameters
// ----------
// lhs,rhs : const BoardIterator &
// - the port and starboard sides of the inequality
//
// returns
// -------
// bool
// - false if their iterator is the same, true otherwise
//
return !(lhs==rhs);
}
inline bool operator==(const Board &lhs, const Board &rhs)
{
//
// Board operator==
// Compare two instances of Board where isometries do not matter
//
// parameters
// ----------
// lhs,rhs : const Board &
// - the port and starboard sides of the equality
//
// returns
// -------
// bool
// - true if any isometries of lhs::board and rhs::board match, false otherwise
//
// if they don't have the same number of each, they can never be equal
if (!(lhs.cross_count==rhs.cross_count&&lhs.nought_count==rhs.nought_count)) { return false; }
// check all permutations
for (int itr=0;itr<2;++itr)
{
Board tmp=lhs;
tmp>>=itr; // flip
for (int jtr=0;jtr<4;jtr++)
{
tmp<<=1; // rotate
// only one isometry has to match
if (tmp.board==rhs.board) { return true; }
}
}
return false;
}
inline Board operator<<(Board lhs, const int n)
{
//
// Board operator<<
// Rotate Board::board n quater turns counterclockwise
//
// parameters
// ----------
// lhs : Board
// - the Board to rotate
// n : const int
// - number of turns to make
//
// returns
// -------
// Board
// - rotated board
//
lhs<<=n;
return lhs;
}
inline Board operator>>(Board lhs, const int n)
{
//
// Board operator>>
// Reflect Board::board along its vertical axis.
//
// parameters
// ----------
// lhs : Board
// - the Board to flip
// n : const int
// - number of reflections to make
// if n%2==0, there is no reflection; if n%2==1, there is one reflection
//
// returns
// -------
// Board
// - reflected board
//
lhs>>=n;
return lhs;
}
} // namespace menace
#endif // BOARD_H__
|
bd3652a7bf2c0a52d097800d14d6fa35b3d74fa2
|
06fad6b088c930c13315f051ea708e358f5d67c9
|
/Conversione basi numeriche/int_dectobin.cc
|
442f18cc4990442294a59a3febe6547ad6122e54
|
[] |
no_license
|
paoli7612/algorithms
|
fe4a97b6128089811b7c408016abaeccb99f3c3f
|
d16f601fc9ddf4ec9494eea1453e64847f49298d
|
refs/heads/master
| 2022-02-28T06:29:40.283487
| 2022-02-08T23:27:23
| 2022-02-08T23:27:23
| 253,812,759
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 852
|
cc
|
int_dectobin.cc
|
#include <iostream>
#include <cmath>
using namespace std;
int chartodec(const char *dec)
{
int cifre = 0;
for (; dec[cifre]!='\0'; cifre++);
int decimale = 0;
for (int i=0; i<cifre; i++)
decimale += (dec[i] - '0') * pow(10, cifre-i-1);
return decimale;
}
char* dec_to_bin(const char *dec)
{
int decimale = chartodec(dec);
int bit = 1;
for (; pow(2, bit)<decimale; bit++);
char* bin = new char[bit];
for (int i=0; i<bit; i++)
{
bin[bit-i-1] = decimale%2 + '0';
decimale /= 2;
}
return bin;
}
int main(int argc, char const *argv[])
{
if (argc != 2)
{
cerr << "1 argomento: [decimale]" << endl;
return 1;
}
const char *dec = argv[1];
char* bin = dec_to_bin(dec);
cout << dec << " -> " << bin << endl;
return 0;
}
|
6193ebc6e5f1f7d75404a345fd32486b8e42d4bd
|
3478ccef99c85458a9043a1040bc91e6817cc136
|
/HFrame/HBase/test/UnitTestCategories.h
|
619b8f7a3626655b221f8d5b9c6799913bef5754
|
[] |
no_license
|
gybing/Hackett
|
a1183dada6eff28736ebab52397c282809be0e7b
|
f2b47d8cc3d8fa9f0d9cd9aa71b707c2a01b8a50
|
refs/heads/master
| 2020-07-25T22:58:59.712615
| 2019-07-09T09:40:00
| 2019-07-09T09:40:00
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,561
|
h
|
UnitTestCategories.h
|
namespace UnitTestCategories
{
static const String analytics { "Analytics" };
static const String audio { "Audio" };
static const String audioProcessorParameters { "AudioProcessorParameters" };
static const String blocks { "Blocks" };
static const String compression { "Compression" };
static const String containers { "Containers" };
static const String cryptography { "Cryptography" };
static const String dsp { "DSP" };
static const String files { "Files" };
static const String function { "Function" };
static const String gui { "GUI" };
static const String json { "JSON" };
static const String maths { "Maths" };
static const String midi { "MIDI" };
static const String networking { "Networking" };
static const String osc { "OSC" };
static const String smoothedValues { "SmoothedValues" };
static const String streams { "Streams" };
static const String text { "Text" };
static const String threads { "Threads" };
static const String time { "Time" };
static const String values { "Values" };
static const String xml { "XML" };
}
|
771853de01139dd0e69dd527093b84afa5a27476
|
49f394ccd6c3729e9c382a3fe09415344ca98874
|
/dali-toolkit/devel-api/controls/table-view/table-view.h
|
c0b3e352f08cdb90208ec098af8487a0f9dc6dc4
|
[
"Apache-2.0",
"BSD-3-Clause"
] |
permissive
|
dalihub/dali-toolkit
|
69ccb4c71904fdc9f1d88e0a1fedeaa2691213f8
|
4dec2735f5e5b5ed74f70a402c9a008d6c21af05
|
refs/heads/master
| 2023-09-03T05:02:34.534108
| 2023-09-01T14:02:39
| 2023-09-01T14:02:39
| 70,086,454
| 8
| 12
|
NOASSERTION
| 2020-08-28T14:04:59
| 2016-10-05T18:13:51
|
C++
|
UTF-8
|
C++
| false
| false
| 19,243
|
h
|
table-view.h
|
#ifndef DALI_TOOLKIT_TABLE_VIEW_H
#define DALI_TOOLKIT_TABLE_VIEW_H
/*
* Copyright (c) 2020 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
// EXTERNAL INCLUDES
#include <dali/public-api/actors/actor-enumerations.h>
#include <dali/public-api/common/vector-wrapper.h>
// INTERNAL INCLUDES
#include <dali-toolkit/public-api/controls/control.h>
namespace Dali
{
namespace Toolkit
{
namespace Internal DALI_INTERNAL
{
class TableView;
}
/**
* @addtogroup dali_toolkit_controls_table_view
* @{
*/
/**
* @brief TableView is a layout container for aligning child actors in a grid like layout.
*
* TableView constrains the x and y position and width and height of the child actors.
* z position and depth are left intact so that 3D model actors can also be laid out
* in a grid without loosing their depth scaling.
*
* @nosubgrouping
* <h3>Per-child Custom properties for script supporting:</h3>
*
* When an actor is add to the tableView through Actor::Add() instead of TableView::AddChild,
* the following custom properties of the actor are checked to decide the actor position inside the table.
*
* These properties are registered dynamically to the child and is non-animatable.
*
* | %Property Name | Type |
* |-------------------------|-------------|
* | cellIndex | Vector2 |
* | rowSpan | float |
* | columnSpan | float |
* | cellHorizontalAlignment | string |
* | cellVerticalAlignment | string |
*
* The rowSpan or columnSpan has integer value, but its type is float here due to the limitation of the builder's ability to differentiate integer and float from Json string.
* The available values for cellHorizontalAlignment are: left, center, right.
* The available values for cellVerticalAlignment are: top, center, bottom.
*
* @code
* "name":"gallery1",
* "type":"ImageView",
* "image": {
* "url": "{DALI_IMAGE_DIR}gallery-small-1.jpg"
* },
* "properties": {
* "cellIndex":[1,1], // Property to specify the top-left cell this child occupies, if not set, the first available cell is used
* "rowSpan":3, // Property to specify how many rows this child occupies, if not set, default value is 1
* "columnSpan": 2, // Property to specify how many columns this child occupies, if nor set, default value is 1
* "cellHorizontalAlignment": "left", // Property to specify how to align horizontally inside the cells, if not set, default value is 'left'
* "cellVerticalAlignment": "center" // Property to specify how to align vertically inside the cells, if not set, default value is 'top'
* }
* @endcode
* @SINCE_1_0.0
*/
class DALI_TOOLKIT_API TableView : public Control
{
public:
/**
* @brief Enumeration for the start and end property ranges for this control.
* @SINCE_1_0.0
*/
enum PropertyRange
{
PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1, ///< @SINCE_1_0.0
PROPERTY_END_INDEX = PROPERTY_START_INDEX + 1000, ///< Reserve property indices @SINCE_1_0.0
CHILD_PROPERTY_START_INDEX = CHILD_PROPERTY_REGISTRATION_START_INDEX, ///< @SINCE_1_1.36
CHILD_PROPERTY_END_INDEX = CHILD_PROPERTY_REGISTRATION_START_INDEX + 1000 ///< Reserve child property indices @SINCE_1_1.36
};
/**
* @brief Enumeration for the instance of properties belonging to the TableView class.
*
* LayoutRows: set the height of the rows.
* It has the format as follows in script:
* @code
* "layoutRows":
* {
* "0": { "policy": "fixed", "value": 40 }, //@see SetFixedHight
* "2": { "policy": "relative", "value": 0.33 }, //@see SetRelativeHeight
* "3": { "policy": "fit", "value":0.0 } //@see SetFitHeight, the value is not used, its height is decided by the children in this row
* }
* @endcode
*
* LayoutColumns: set the width of the columns.
* It has the format as follows in script:
* @code
* "layoutColumns":
* {
* "0": { "policy": "fixed", "value": 40 }, //@see SetFixedWidth
* "1": { "policy": "fit", "value":0.0 } //@see SetFitHeight, the value is not used, its width is decided by the children in this column
* "2": { "policy": "relative", "value": 0.33 } //@see SetRelativeWidth
* }
* @endcode
* @SINCE_1_0.0
*/
struct Property
{
/**
* @brief Enumeration for the instance of properties belonging to the TableView class.
*
* @SINCE_1_0.0
*/
enum
{
ROWS = PROPERTY_START_INDEX, ///< name "rows", type unsigned int @SINCE_1_0.0
COLUMNS, ///< name "columns", type unsigned int @SINCE_1_0.0
CELL_PADDING, ///< name "cellPadding", type Vector2 @SINCE_1_0.0
LAYOUT_ROWS, ///< name "layoutRows", type Map @SINCE_1_0.0
LAYOUT_COLUMNS, ///< name "layoutColumns", type Map @SINCE_1_0.0
};
};
/**
* @brief Enumeration for the instance of child properties belonging to the TableView class.
* @SINCE_1_1.36
*/
struct ChildProperty
{
/**
* @brief Enumeration for the instance of child properties belonging to the TableView class.
* @SINCE_1_1.36
*/
enum
{
CELL_INDEX = CHILD_PROPERTY_START_INDEX, ///< name "cellIndex", The top-left cell this child occupies, if not set, the first available cell is used, type VECTOR2 @SINCE_1_1.36
ROW_SPAN, ///< name "rowSpan", The number of rows this child occupies, if not set, default value is 1, type FLOAT @SINCE_1_1.36
COLUMN_SPAN, ///< name "columnSpan", The number of columns this child occupies, if not set, default value is 1, type FLOAT @SINCE_1_1.36
CELL_HORIZONTAL_ALIGNMENT, ///< name "cellHorizontalAlignment", The horizontal alignment of this child inside the cells, if not set, default value is 'left', type STRING @SINCE_1_1.36
CELL_VERTICAL_ALIGNMENT ///< name "cellVerticalAlignment", The vertical alignment of this child inside the cells, if not set, default value is 'top', type STRING @SINCE_1_1.36
};
};
/**
* @brief Enumeration for describing how the size of a row / column has been set.
* @SINCE_1_0.0
*/
enum LayoutPolicy
{
FIXED, ///< Fixed with the given value. @SINCE_1_0.0
RELATIVE, ///< Calculated as percentage of the remainder after subtracting Padding and Fixed height/width @SINCE_1_0.0
FILL, ///< Default policy, get the remainder of the 100% (after subtracting Fixed, Fit and Relative height/ width) divided evenly between 'fill' rows/columns @SINCE_1_0.0
FIT ///< Fit around its children. @SINCE_1_0.0
};
/**
* @brief Structure to specify layout position for child actor.
* @SINCE_1_0.0
*/
struct CellPosition
{
/**
* @brief Constructor to initialise values to defaults for convenience.
* @SINCE_1_0.0
* @param[in] rowIndex The row index initialized
* @param[in] columnIndex The column index initialized
* @param[in] rowSpan The row span initialized
* @param[in] columnSpan The column span initialized
*/
CellPosition(unsigned int rowIndex = 0, unsigned int columnIndex = 0, unsigned int rowSpan = 1, unsigned int columnSpan = 1)
: rowIndex(rowIndex),
columnIndex(columnIndex),
rowSpan(rowSpan),
columnSpan(columnSpan)
{
}
unsigned int rowIndex;
unsigned int columnIndex;
unsigned int rowSpan;
unsigned int columnSpan;
};
/**
* @brief Creates a TableView handle; this can be initialized with TableView::New().
* Calling member functions with an uninitialized handle is not allowed.
* @SINCE_1_0.0
*/
TableView();
/**
* @brief Copy constructor. Creates another handle that points to the same real object.
* @SINCE_1_0.0
* @param[in] handle Handle to copy from
*/
TableView(const TableView& handle);
/**
* @brief Assignment operator. Changes this handle to point to another real object.
* @SINCE_1_0.0
* @param[in] handle Handle to an object
* @return A reference to this
*/
TableView& operator=(const TableView& handle);
/**
* @brief Destructor.
*
* This is non-virtual since derived Handle types must not contain data or virtual methods.
* @SINCE_1_0.0
*/
~TableView();
/**
* @brief Creates the TableView control.
* @SINCE_1_0.0
* @param[in] initialRows for the table
* @param[in] initialColumns for the table
* @return A handle to the TableView control
*/
static TableView New(unsigned int initialRows, unsigned int initialColumns);
/**
* @brief Downcasts a handle to TableView handle.
*
* If handle points to a TableView, the downcast produces valid handle.
* If not, the returned handle is left uninitialized.
* @SINCE_1_0.0
* @param[in] handle Handle to an object
* @return Handle to a TableView or an uninitialized handle
*/
static TableView DownCast(BaseHandle handle);
/**
* @brief Adds a child to the table.
* If the row or column index is outside the table, the table gets resized bigger.
* @SINCE_1_0.0
* @param[in] child The child to add
* @param[in] position The position for the child
* @return @c true if the addition succeeded, @c false if the cell is already occupied
* @pre The child actor has been initialized.
*/
bool AddChild(Actor child, CellPosition position);
/**
* @brief Returns a child from the given layout position.
* @SINCE_1_0.0
* @param[in] position The position in the table
* @return Child that was in the cell or an uninitialized handle
* @note If there is no child in this position this method returns an uninitialized.
* Actor handle
*/
Actor GetChildAt(CellPosition position);
/**
* @brief Removes a child from the given layout position.
* @SINCE_1_0.0
* @param[in] position The position for the child to remove
* @return Child that was removed or an uninitialized handle
* @note If there is no child in this position, this method does nothing.
*/
Actor RemoveChildAt(CellPosition position);
/**
* @brief Finds the child's layout position.
* @SINCE_1_0.0
* @param[in] child The child to search for
* @param[out] position The position for the child
* @return true if the child was included in this TableView
*/
bool FindChildPosition(Actor child, CellPosition& position);
/**
* @brief Inserts a new row to given index.
* @SINCE_1_0.0
* @param[in] rowIndex The rowIndex of the new row
*/
void InsertRow(unsigned int rowIndex);
/**
* @brief Deletes a row from the given index.
* Removed elements are deleted.
* @SINCE_1_0.0
* @param[in] rowIndex The rowIndex of the row to delete
*/
void DeleteRow(unsigned int rowIndex);
/**
* @brief Deletes a row from the given index.
* @SINCE_1_0.0
* @param[in] rowIndex The rowIndex of the row to delete
* @param[out] removed The removed elements
*/
void DeleteRow(unsigned int rowIndex, std::vector<Actor>& removed);
/**
* @brief Inserts a new column to the given index.
* @SINCE_1_0.0
* @param[in] columnIndex The columnIndex of the new column
*/
void InsertColumn(unsigned int columnIndex);
/**
* @brief Deletes a column from the given index.
* Removed elements are deleted.
* @SINCE_1_0.0
* @param[in] columnIndex The columnIndex of the column to delete
*/
void DeleteColumn(unsigned int columnIndex);
/**
* @brief Deletes a column from the given index.
* @SINCE_1_0.0
* @param[in] columnIndex The columnIndex of the column to delete
* @param[out] removed The removed elements
*/
void DeleteColumn(unsigned int columnIndex, std::vector<Actor>& removed);
/**
* @brief Resizes the TableView.
* @SINCE_1_0.0
* @param[in] rows The rows for the table
* @param[in] columns The columns for the table
* @note If the new size is smaller than old,
* superfluous actors get removed. If you want to relayout removed children,
* use the variant that returns the removed Actors and reinsert them into the table.
* If an actor spans to a removed row or column, it gets removed from the table.
*/
void Resize(unsigned int rows, unsigned int columns);
/**
* @brief Resizes the TableView.
* @SINCE_1_0.0
* @param[in] rows The rows for the table
* @param[in] columns The columns for the table
* @param[out] removed The removed actor handles
* @note If the new size is smaller than old, superfluous actors get removed.
* If an actor spans to a removed row or column it gets removed from the table.
*/
void Resize(unsigned int rows, unsigned int columns, std::vector<Actor>& removed);
/**
* @brief Sets horizontal and vertical padding between cells.
* @SINCE_1_0.0
* @param[in] padding Width and height
*/
void SetCellPadding(Size padding);
/**
* @brief Gets the current padding as width and height.
* @SINCE_1_0.0
* @return The current padding as width and height
*/
Size GetCellPadding();
/**
* @brief Specifies this row as fitting its height to its children.
*
* @SINCE_1_0.0
* @param[in] rowIndex The row to set
*/
void SetFitHeight(unsigned int rowIndex);
/**
* @brief Checks if the row is a fit row.
*
* @SINCE_1_0.0
* @param[in] rowIndex The row to check
* @return Return true if the row is fit
*/
bool IsFitHeight(unsigned int rowIndex) const;
/**
* @brief Specifies this column as fitting its width to its children.
*
* @SINCE_1_0.0
* @param[in] columnIndex The column to set
*/
void SetFitWidth(unsigned int columnIndex);
/**
* @brief Checks if the column is a fit column.
*
* @SINCE_1_0.0
* @param[in] columnIndex The column to check
* @return Return true if the column is fit
*/
bool IsFitWidth(unsigned int columnIndex) const;
/**
* @brief Sets a row to have fixed height.
* Setting a fixed height of 0 has no effect.
* @SINCE_1_0.0
* @param rowIndex The rowIndex for row with fixed height
* @param height The height in world coordinate units
* @pre The row rowIndex must exist.
*/
void SetFixedHeight(unsigned int rowIndex, float height);
/**
* @brief Gets a row's fixed height.
* @SINCE_1_0.0
* @param[in] rowIndex The row index with fixed height
* @return height The height in world coordinate units
* @pre The row rowIndex must exist.
* @note The returned value is valid if it has been set before.
*/
float GetFixedHeight(unsigned int rowIndex) const;
/**
* @brief Sets a row to have relative height. Relative height means percentage of
* the remainder of the table height after subtracting Padding and Fixed height rows.
* Setting a relative height of 0 has no effect.
* @SINCE_1_0.0
* @param rowIndex The rowIndex for row with relative height
* @param heightPercentage between 0.0f and 1.0f
* @pre The row rowIndex must exist.
*/
void SetRelativeHeight(unsigned int rowIndex, float heightPercentage);
/**
* @brief Gets a row's relative height.
* @SINCE_1_0.0
* @param[in] rowIndex The row index with relative height
* @return Height in percentage units, between 0.0f and 1.0f
* @pre The row rowIndex must exist.
* @note The returned value is valid if it has been set before.
*/
float GetRelativeHeight(unsigned int rowIndex) const;
/**
* @brief Sets a column to have fixed width.
* Setting a fixed width of 0 has no effect.
* @SINCE_1_0.0
* @param columnIndex The columnIndex for column with fixed width
* @param width The width in world coordinate units
* @pre The column columnIndex must exist.
*/
void SetFixedWidth(unsigned int columnIndex, float width);
/**
* @brief Gets a column's fixed width.
* @SINCE_1_0.0
* @param[in] columnIndex The column index with fixed width
* @return Width in world coordinate units
* @pre The column columnIndex must exist.
* @note The returned value is valid if it has been set before.
*/
float GetFixedWidth(unsigned int columnIndex) const;
/**
* @brief Sets a column to have relative width. Relative width means percentage of
* the remainder of table width after subtracting Padding and Fixed width columns.
* Setting a relative width of 0 has no effect.
* @SINCE_1_0.0
* @param columnIndex The columnIndex for column with fixed width
* @param widthPercentage The widthPercentage between 0.0f and 1.0f
* @pre The column columnIndex must exist.
*/
void SetRelativeWidth(unsigned int columnIndex, float widthPercentage);
/**
* @brief Gets a column's relative width.
* @SINCE_1_0.0
* @param[in] columnIndex The column index with relative width
* @return Width in percentage units, between 0.0f and 1.0f
* @pre The column columnIndex must exist.
* @note The returned value is valid if it has been set before.
*/
float GetRelativeWidth(unsigned int columnIndex) const;
/**
* @brief Gets the amount of rows in the table.
* @SINCE_1_0.0
* @return The amount of rows in the table
*/
unsigned int GetRows();
/**
* @brief Gets the amount of columns in the table.
* @SINCE_1_0.0
* @return The amount of columns in the table
*/
unsigned int GetColumns();
/**
* @brief Sets the alignment on a cell.
*
* Cells without calling this function have the default values of LEFT and TOP respectively.
*
* @SINCE_1_0.0
* @param[in] position The cell to set alignment on
* @param[in] horizontal The horizontal alignment
* @param[in] vertical The vertical alignment
*/
void SetCellAlignment(CellPosition position, HorizontalAlignment::Type horizontal, VerticalAlignment::Type vertical);
public: // Not intended for application developers
/// @cond internal
/**
* @brief Creates a handle using the Toolkit::Internal implementation.
* @SINCE_1_0.0
* @param[in] implementation The Control implementation
*/
DALI_INTERNAL TableView(Internal::TableView& implementation);
/**
* @brief Allows the creation of this Control from an Internal::CustomActor pointer.
* @SINCE_1_0.0
* @param[in] internal A pointer to the internal CustomActor
*/
explicit DALI_INTERNAL TableView(Dali::Internal::CustomActor* internal);
/// @endcond
};
/**
* @}
*/
} // namespace Toolkit
} // namespace Dali
#endif // DALI_TOOLKIT_TABLE_VIEW_H
|
602da7cb1cb76f40326e81a681e5b8464f19e6e8
|
670640bd025a0c2c965a874a150f518d44b3c1e7
|
/trunk/SOM_C/absom/Point.h
|
af832d33c8d846e48a83bd158a6876b4c54d8f1f
|
[] |
no_license
|
andersonberg/SOM-dissimilarity-tables
|
b7c413a2375cf9d73580928bdeead7806144adbb
|
a7a20a5930d9981e5445bac4278a9b01ee9d2074
|
refs/heads/master
| 2021-01-16T19:34:05.473075
| 2012-04-04T17:25:19
| 2012-04-04T17:25:19
| 1,548,386
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 235
|
h
|
Point.h
|
/*
* Point.h
*
* Created on: 22/08/2011
* Author: Anderson
*/
#ifndef POINT_H_
#define POINT_H_
class Point {
public:
Point(int x, int y);
virtual ~Point();
int x;
int y;
};
#endif /* POINT_H_ */
|
e368bee92d24b982326ac3dcb4fcf0247f874fcd
|
d85c29789c26d0c372b56941b44dd216757e0734
|
/sp_v6_html_s/sp_v6_html_s.ino
|
6999adb6ae74c7a1e6d225021afa48cb3001e436
|
[] |
no_license
|
nettigo/CHIP
|
937750d7e7187be7aef4d4aff812198d84c44508
|
d5b1e2c75be47a1b4f214a9b5e51261e7ad5a9bc
|
refs/heads/master
| 2016-08-03T06:26:32.404935
| 2014-02-06T21:03:49
| 2014-02-06T21:03:49
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,930
|
ino
|
sp_v6_html_s.ino
|
#include <Wire.h>
#include "DHT.h"
#include <Adafruit_Sensor.h>
#include <Adafruit_BMP085.h>
#include <SPI.h>
#include <Ethernet.h>
Adafruit_BMP085 bmp = Adafruit_BMP085();
DHT dht(8, DHT22);
EthernetServer server(80);
byte mac[] = {
0x90, 0xA2, 0xDA, 0x0D, 0xA5, 0xB0 };
byte ip[] = {
192, 168, 22, 177 };
float humidity, pressure, temp;
int light;
#include "WeatherStation.h"
void processNetwork() {
//tymczasowa zmienna, którą przechowuje bieżący znak otrzymywany z przeglądarki
char c;
EthernetClient client = server.available();
if (client) {
Serial.println("new client");
// an http request ends with a blank line
boolean currentLineIsBlank = true;
while (client.connected()) {
if (client.available()) {
c = client.read();
if (c == '\n' && currentLineIsBlank) {
// send a standard http response header
client.println(F("HTTP/1.1 200 OK"));
client.println(F("Content-Type: text/html"));
client.println(F("Connection: close")); // the connection will be closed after completion of the response
client.println(F("Refresh: 30")); // refresh the page automatically every 5 sec
client.println();
client.println(F("<!DOCTYPE HTML>"));
client.println(F("<html><head>"));
client.println(F("<meta content='text/html;charset=UTF-8' http-equiv='content-type'>"));
client.println(F("</head><body>Dane odczytane:<br/>Temperatura:"));
client.print(temp);
client.println(F(" °C .<br/>"));
client.println(F("Ciśnienie:"));
client.print(pressure);
client.println(F(" hpa.<br/>"));
client.println(F("Wilgotność:"));
client.print(humidity);
client.println(F(" %.<br />"));
client.println(F("Światło:"));
client.print(light);
client.println(F(".<br />"));
//korzystając z funkcji millis() wyświetl info ile minęło sekund od ostatniego startu/restartu Arduino.
client.print(F("<small>"));
client.print(millis()/1000.0);
client.print(F(" s od startu Arduino.</small>"));
client.println(F("</body></html>"));
break;
}
if (c == '\n') {
currentLineIsBlank = true;
}
else if (c != '\r') {
// you've gotten a character on the current line
currentLineIsBlank = false;
}
} //if (client.available())
} // while (client.connected())
// give the web browser time to receive the data
delay(2);
client.stop();
Serial.println("client disconnected");
}; //if (client)
};
void setup() {
Serial.begin(9600);
init_sensors();
Ethernet.begin(mac, ip);
Serial.println(F("Start!"));
}
void loop() {
readSensorsData();
processNetwork();
logSensorsData();
};
|
957ccc056178821f4a30fe8d793faaf549cbc794
|
eb18c6097945928122843c50234e32082a9fbf2e
|
/InterviewBit/Math/palindrome-integer.cpp
|
07ffcddfd5c905f4666bf17b731078f16ae5ec81
|
[] |
no_license
|
techytoes/competitive-programming
|
5b44dee39e753ed39e5029ad95b19417e5690e7b
|
10394fd65058c77f6835b08f98a82adc1f6803ea
|
refs/heads/master
| 2021-09-21T17:45:11.787238
| 2018-08-29T18:00:12
| 2018-08-29T18:00:12
| 111,452,554
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 292
|
cpp
|
palindrome-integer.cpp
|
//https://www.interviewbit.com/problems/palindrome-integer/
int Solution::isPalindrome(int A) {
int rev = 0;
int N = A;
while(N>0){
int rem = N%10;
rev = rev*10 + rem;
N = N/10;
}
if(A == rev){
return 1;
}
else
return 0;
}
|
5ffbbfc2fb544e37caeed12b02620fca742669ff
|
6f8a2dfe6fe0fe73b4df674be8761f6b70fea1ee
|
/038OwnershipTransfer.cpp
|
071d5cb1b3a8ce7699c7ff41f340ab849f180e19
|
[] |
no_license
|
237suraj/CPP
|
e3912adcf2344dd05f23da3b0ff6bbb5d3e810b5
|
1a098ac02cacde84db3957e8b79facfcee196e3d
|
refs/heads/master
| 2020-03-28T09:02:58.983733
| 2018-12-02T17:09:05
| 2018-12-02T17:09:05
| 148,009,783
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 567
|
cpp
|
038OwnershipTransfer.cpp
|
#include<iostream>
using namespace std;
namespace nm038
{
class CA
{
CA()
{
cout<<"CA Ctor"<<endl;
}
~CA(){
cout<<"CA Dtor"<<endl;
}
public:
void Fun()
{
cout<<"CA Fun"<<endl;
}
friend class Smart;
};
class Smart
{
CA *ptr;
public:
Smart():ptr(new CA())
{
}
Smart(Smart& par):ptr(par.ptr)
{
par.ptr=NULL;
}
Smart& operator=(Smart &par)
{
this->ptr=par.ptr;
par.ptr=NULL;
return *this;
}
CA* operator->()
{
return ptr;
}
~Smart()
{
delete ptr;
}
};
void main()
{
Smart sm1;
sm1->Fun();
Smart sm2(sm1);
sm1=sm2;
}
}
|
ca3f56eeff56b3f04a764f829d65e5148affd198
|
e80972c3d72814438e7f2564fbd8931d1eb773ba
|
/shared/GraphicsLib/Event.h
|
0a64234652db7b53109026e0f71b586a93e7cf9f
|
[] |
no_license
|
dacuster/GameAI
|
9b8a8bc75e34142612d0ddefc8c136a300c0017a
|
0f6814e33e875af3493eb3de36029ebee491fa02
|
refs/heads/master
| 2020-09-01T14:25:49.511069
| 2019-12-06T09:32:25
| 2019-12-06T09:32:25
| 218,979,316
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 398
|
h
|
Event.h
|
#pragma once
#include <string>
#include <trackable.h>
using namespace std;
class Event:public Trackable
{
public:
enum EventType
{
INVALID_EVENT_TYPE = -1,
MOUSE_MOVE_EVENT,
MOUSE_BUTTON_EVENT,
KEYBOARD_EVENT,
NUM_EVENT_TYPES
};
Event( EventType type );
virtual ~Event();
EventType getType() const { return mType; };
private:
EventType mType;
};
|
6fdc0d005c24f0bc78e9b321834d02f2420a4a32
|
432416efe3f78ec362d8a2cb02bc0048748101d7
|
/src/expressions/arithmetic/nadd.hpp
|
1a12f7705bd78634491b1aeb99d3dd26a16dcffe
|
[] |
no_license
|
reymontero/Leonardo
|
df06bd115629d1e7b3dab9d879b397f0a949ba6e
|
1e70d138aa618cf8fd4835ba278a622c31f7b70a
|
refs/heads/master
| 2021-12-09T12:04:34.862656
| 2016-05-12T15:03:25
| 2016-05-12T15:03:25
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 643
|
hpp
|
nadd.hpp
|
#ifndef NADD_HPP
#define NADD_HPP
#include "arithnode.hpp"
#include <memory>
/** Node responsible for adding two operand nodes. */
class NAdd : public ArithNode
{
private:
// left calculation operand
std::unique_ptr<ArithNode> left;
// right calculation operand
std::unique_ptr<ArithNode> right;
public:
// Explicit default constructor wanted, we dont want any converting
explicit NAdd(std::unique_ptr<ArithNode> left, std::unique_ptr<ArithNode> right)
: ArithNode(), left(std::move(left)), right(std::move(right)) { }
virtual int evaluate() const
{
return left->evaluate() + right->evaluate();
}
};
#endif
|
281f4b8faa8c58b4e9bd7802e02f5106a749e92c
|
ee2682b03c9787c9f6407fc6de34786eac6b87d6
|
/src/frontend/ncurses/settings.cpp
|
51c83a6c79d965d1f060dd45309d61af7a6e4432
|
[] |
no_license
|
Esteban-Salzert/Rush3-MyGKrellm
|
2787496a93ec62ec8961d3f2b27be0d924710f23
|
a33aedca6fb15468114cbda2e8c08091568c810a
|
refs/heads/main
| 2023-02-28T14:48:57.626512
| 2021-02-02T16:54:58
| 2021-02-02T16:54:58
| 335,344,937
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,823
|
cpp
|
settings.cpp
|
/*
** EPITECH PROJECT, 2021
** rush3
** File description:
** settings
*/
#include "monitor.hpp"
void draw_settings(MonitorDisplay &disp, const System &sys)
{
(void)sys;
wclear(disp.wins[SET].win);
box(disp.wins[SET].win, 0, 0);
wprintw(disp.wins[SET].win, "Display Settings (press 1/2/3/4 key to edit)");
mvwprintw(disp.wins[SET].win, 1, 1, "System Pannel: [%c]", disp.settings.INFOdisp ? 'O' : 'X');
mvwprintw(disp.wins[SET].win, 2, 1, "CPU Pannel: [%c]", disp.settings.CPUdisp ? 'O' : 'X');
mvwprintw(disp.wins[SET].win, 1, COLS / 4, "Memory Pannel: [%c]", disp.settings.RAMdisp ? 'O' : 'X');
mvwprintw(disp.wins[SET].win, 2, COLS / 4, "Network Pannel: [%c]", disp.settings.NETdisp ? 'O' : 'X');
}
bool check_param(MonitorDisplay &disp, char c)
{
switch(c) {
case '1':
disp.settings.INFOdisp = !disp.settings.INFOdisp;
break;
case '2':
disp.settings.CPUdisp = !disp.settings.CPUdisp;
break;
case '3':
disp.settings.RAMdisp = !disp.settings.RAMdisp;
break;
case '4':
disp.settings.NETdisp = !disp.settings.NETdisp;
break;
default:
return false;
}
mvwin(disp.wins[INFO].win, 0, 0);
mvwin(disp.wins[CPU].win, disp.settings.INFOdisp ? disp.wins[INFO].height : 0, 0);
mvwin(disp.wins[RAM].win, (disp.settings.INFOdisp ? disp.wins[INFO].height : 0)
+ (disp.settings.CPUdisp ? disp.wins[CPU].height : 0), 0);
mvwin(disp.wins[NET].win, (disp.settings.INFOdisp ? disp.wins[INFO].height : 0)
+ (disp.settings.CPUdisp ? disp.wins[CPU].height : 0)
+ (disp.settings.RAMdisp ? disp.wins[RAM].height : 0), 0);
return true;
}
|
9ba9a2d9dce7701a3e32c744a4443f49a6679413
|
a2206795a05877f83ac561e482e7b41772b22da8
|
/Source/PV/build/Wrapping/ClientServer/vtkLSDynaReaderClientServer.cxx
|
9637bbcbcaecc055d2aa0da689ba9695c58a0f97
|
[] |
no_license
|
supreethms1809/mpas-insitu
|
5578d465602feb4d6b239a22912c33918c7bb1c3
|
701644bcdae771e6878736cb6f49ccd2eb38b36e
|
refs/heads/master
| 2020-03-25T16:47:29.316814
| 2018-08-08T02:00:13
| 2018-08-08T02:00:13
| 143,947,446
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 42,769
|
cxx
|
vtkLSDynaReaderClientServer.cxx
|
// ClientServer wrapper for vtkLSDynaReader object
//
#define VTK_WRAPPING_CXX
#define VTK_STREAMS_FWD_ONLY
#include "vtkLSDynaReader.h"
#include "vtkSystemIncludes.h"
#include "vtkClientServerInterpreter.h"
#include "vtkClientServerStream.h"
vtkObjectBase *vtkLSDynaReaderClientServerNewCommand(void* /*ctx*/)
{
return vtkLSDynaReader::New();
}
int VTK_EXPORT vtkLSDynaReaderCommand(vtkClientServerInterpreter *arlu, vtkObjectBase *ob, const char *method, const vtkClientServerStream& msg, vtkClientServerStream& resultStream, void* /*ctx*/)
{
vtkLSDynaReader *op = vtkLSDynaReader::SafeDownCast(ob);
if(!op)
{
vtkOStrStreamWrapper vtkmsg;
vtkmsg << "Cannot cast " << ob->GetClassName() << " object to vtkLSDynaReader. "
<< "This probably means the class specifies the incorrect superclass in vtkTypeMacro.";
resultStream.Reset();
resultStream << vtkClientServerStream::Error
<< vtkmsg.str() << 0 << vtkClientServerStream::End;
return 0;
}
(void)arlu;
if (!strcmp("GetClassName",method) && msg.GetNumberOfArguments(0) == 2)
{
const char *temp20;
{
temp20 = (op)->GetClassName();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("IsA",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->IsA(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("NewInstance",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkLSDynaReader *temp20;
{
temp20 = (op)->NewInstance();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << (vtkObjectBase *)temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SafeDownCast",method) && msg.GetNumberOfArguments(0) == 3)
{
vtkObject *temp0;
vtkLSDynaReader *temp20;
if(vtkClientServerStreamGetArgumentObject(msg, 0, 2, &temp0, "vtkObject"))
{
temp20 = (op)->SafeDownCast(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << (vtkObjectBase *)temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("New",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkLSDynaReader *temp20;
{
temp20 = (op)->New();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << (vtkObjectBase *)temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("DebugDump",method) && msg.GetNumberOfArguments(0) == 2)
{
{
op->DebugDump();
return 1;
}
}
if (!strcmp("CanReadFile",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->CanReadFile(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetDatabaseDirectory",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
if(msg.GetArgument(0, 2, &temp0))
{
op->SetDatabaseDirectory(temp0);
return 1;
}
}
if (!strcmp("GetDatabaseDirectory",method) && msg.GetNumberOfArguments(0) == 2)
{
const char *temp20;
{
temp20 = (op)->GetDatabaseDirectory();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("IsDatabaseValid",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->IsDatabaseValid();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetFileName",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
if(msg.GetArgument(0, 2, &temp0))
{
op->SetFileName(temp0);
return 1;
}
}
if (!strcmp("GetFileName",method) && msg.GetNumberOfArguments(0) == 2)
{
const char *temp20;
{
temp20 = (op)->GetFileName();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetTitle",method) && msg.GetNumberOfArguments(0) == 2)
{
char *temp20;
{
temp20 = (op)->GetTitle();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetDimensionality",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetDimensionality();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfNodes",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfNodes();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfContinuumCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfContinuumCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfSolidCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfSolidCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfThickShellCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfThickShellCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfShellCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfShellCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfRigidBodyCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfRigidBodyCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfRoadSurfaceCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfRoadSurfaceCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfBeamCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfBeamCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfParticleCells",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfParticleCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfTimeSteps",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetNumberOfTimeSteps();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetTimeStep",method) && msg.GetNumberOfArguments(0) == 3)
{
vtkIdType temp0;
if(msg.GetArgument(0, 2, &temp0))
{
op->SetTimeStep(temp0);
return 1;
}
}
if (!strcmp("GetTimeStep",method) && msg.GetNumberOfArguments(0) == 2)
{
vtkIdType temp20;
{
temp20 = (op)->GetTimeStep();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetTimeValue",method) && msg.GetNumberOfArguments(0) == 3)
{
vtkIdType temp0;
double temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetTimeValue(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetTimeStepRange",method) && msg.GetNumberOfArguments(0) == 2)
{
int *temp20;
{
temp20 = (op)->GetTimeStepRange();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << vtkClientServerStream::InsertArray(temp20,2) << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetTimeStepRange",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetTimeStepRange(temp0,temp1);
return 1;
}
}
if (!strcmp("SetTimeStepRange",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0[2];
if(msg.GetArgument(0, 2, temp0, 2))
{
op->SetTimeStepRange(temp0);
return 1;
}
}
if (!strcmp("GetNumberOfPointArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfPointArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetPointArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetPointArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetPointArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetPointArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetPointArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetPointArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetPointArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetPointArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetPointArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetPointArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInPointArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInPointArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInPointArray",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInPointArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfCellArrays",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfCellArrays(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetCellArrayName",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
temp20 = (op)->GetCellArrayName(temp0,temp1);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetCellArrayStatus",method) && msg.GetNumberOfArguments(0) == 5)
{
int temp0;
int temp1;
int temp2;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1) &&
msg.GetArgument(0, 4, &temp2))
{
op->SetCellArrayStatus(temp0,temp1,temp2);
return 1;
}
}
if (!strcmp("SetCellArrayStatus",method) && msg.GetNumberOfArguments(0) == 5)
{
int temp0;
char *temp1;
int temp2;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1) &&
msg.GetArgument(0, 4, &temp2))
{
op->SetCellArrayStatus(temp0,temp1,temp2);
return 1;
}
}
if (!strcmp("GetCellArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
int temp20;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
temp20 = (op)->GetCellArrayStatus(temp0,temp1);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetCellArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
char *temp1;
int temp20;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
temp20 = (op)->GetCellArrayStatus(temp0,temp1);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInCellArray",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
int temp20;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
temp20 = (op)->GetNumberOfComponentsInCellArray(temp0,temp1);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInCellArray",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
char *temp1;
int temp20;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
temp20 = (op)->GetNumberOfComponentsInCellArray(temp0,temp1);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfSolidArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfSolidArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetSolidArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetSolidArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetSolidArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetSolidArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetSolidArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetSolidArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetSolidArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetSolidArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetSolidArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetSolidArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInSolidArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInSolidArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInSolidArray",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInSolidArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfThickShellArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfThickShellArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetThickShellArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetThickShellArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetThickShellArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetThickShellArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetThickShellArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetThickShellArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetThickShellArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetThickShellArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetThickShellArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetThickShellArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInThickShellArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInThickShellArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInThickShellArray",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInThickShellArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfShellArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfShellArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetShellArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetShellArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetShellArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetShellArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetShellArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetShellArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetShellArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetShellArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetShellArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetShellArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInShellArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInShellArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInShellArray",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInShellArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfRigidBodyArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfRigidBodyArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetRigidBodyArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetRigidBodyArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetRigidBodyArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetRigidBodyArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetRigidBodyArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetRigidBodyArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetRigidBodyArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetRigidBodyArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetRigidBodyArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetRigidBodyArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInRigidBodyArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInRigidBodyArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInRigidBodyArray",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInRigidBodyArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfRoadSurfaceArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfRoadSurfaceArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetRoadSurfaceArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetRoadSurfaceArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetRoadSurfaceArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetRoadSurfaceArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetRoadSurfaceArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetRoadSurfaceArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetRoadSurfaceArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetRoadSurfaceArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetRoadSurfaceArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetRoadSurfaceArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInRoadSurfaceArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInRoadSurfaceArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInRoadSurfaceArray",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInRoadSurfaceArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfBeamArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfBeamArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetBeamArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetBeamArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetBeamArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetBeamArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetBeamArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetBeamArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetBeamArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetBeamArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetBeamArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetBeamArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInBeamArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInBeamArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInBeamArray",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInBeamArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfParticleArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfParticleArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetParticleArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetParticleArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetParticleArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetParticleArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetParticleArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetParticleArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetParticleArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetParticleArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetParticleArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetParticleArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInParticleArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInParticleArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfComponentsInParticleArray",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetNumberOfComponentsInParticleArray(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetDeformedMesh",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
if(msg.GetArgument(0, 2, &temp0))
{
op->SetDeformedMesh(temp0);
return 1;
}
}
if (!strcmp("GetDeformedMesh",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetDeformedMesh();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("DeformedMeshOn",method) && msg.GetNumberOfArguments(0) == 2)
{
{
op->DeformedMeshOn();
return 1;
}
}
if (!strcmp("DeformedMeshOff",method) && msg.GetNumberOfArguments(0) == 2)
{
{
op->DeformedMeshOff();
return 1;
}
}
if (!strcmp("SetRemoveDeletedCells",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
if(msg.GetArgument(0, 2, &temp0))
{
op->SetRemoveDeletedCells(temp0);
return 1;
}
}
if (!strcmp("GetRemoveDeletedCells",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetRemoveDeletedCells();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("RemoveDeletedCellsOn",method) && msg.GetNumberOfArguments(0) == 2)
{
{
op->RemoveDeletedCellsOn();
return 1;
}
}
if (!strcmp("RemoveDeletedCellsOff",method) && msg.GetNumberOfArguments(0) == 2)
{
{
op->RemoveDeletedCellsOff();
return 1;
}
}
if (!strcmp("SetDeletedCellsAsGhostArray",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
if(msg.GetArgument(0, 2, &temp0))
{
op->SetDeletedCellsAsGhostArray(temp0);
return 1;
}
}
if (!strcmp("GetDeletedCellsAsGhostArray",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetDeletedCellsAsGhostArray();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("DeletedCellsAsGhostArrayOn",method) && msg.GetNumberOfArguments(0) == 2)
{
{
op->DeletedCellsAsGhostArrayOn();
return 1;
}
}
if (!strcmp("DeletedCellsAsGhostArrayOff",method) && msg.GetNumberOfArguments(0) == 2)
{
{
op->DeletedCellsAsGhostArrayOff();
return 1;
}
}
if (!strcmp("SetInputDeck",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
if(msg.GetArgument(0, 2, &temp0))
{
op->SetInputDeck(temp0);
return 1;
}
}
if (!strcmp("GetInputDeck",method) && msg.GetNumberOfArguments(0) == 2)
{
char *temp20;
{
temp20 = (op)->GetInputDeck();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetNumberOfPartArrays",method) && msg.GetNumberOfArguments(0) == 2)
{
int temp20;
{
temp20 = (op)->GetNumberOfPartArrays();
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetPartArrayName",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
const char *temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetPartArrayName(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("SetPartArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
int temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetPartArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("SetPartArrayStatus",method) && msg.GetNumberOfArguments(0) == 4)
{
char *temp0;
int temp1;
if(msg.GetArgument(0, 2, &temp0) &&
msg.GetArgument(0, 3, &temp1))
{
op->SetPartArrayStatus(temp0,temp1);
return 1;
}
}
if (!strcmp("GetPartArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
int temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetPartArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
if (!strcmp("GetPartArrayStatus",method) && msg.GetNumberOfArguments(0) == 3)
{
char *temp0;
int temp20;
if(msg.GetArgument(0, 2, &temp0))
{
temp20 = (op)->GetPartArrayStatus(temp0);
resultStream.Reset();
resultStream << vtkClientServerStream::Reply << temp20 << vtkClientServerStream::End;
return 1;
}
}
{
const char* commandName = "vtkMultiBlockDataSetAlgorithm";
if (arlu->HasCommandFunction(commandName) &&
arlu->CallCommandFunction(commandName, op, method, msg, resultStream)) { return 1; }
}
if(resultStream.GetNumberOfMessages() > 0 &&
resultStream.GetCommand(0) == vtkClientServerStream::Error &&
resultStream.GetNumberOfArguments(0) > 1)
{
/* A superclass wrapper prepared a special message. */
return 0;
}
vtkOStrStreamWrapper vtkmsg;
vtkmsg << "Object type: vtkLSDynaReader, could not find requested method: \""
<< method << "\"\nor the method was called with incorrect arguments.\n";
resultStream.Reset();
resultStream << vtkClientServerStream::Error
<< vtkmsg.str() << vtkClientServerStream::End;
vtkmsg.rdbuf()->freeze(0);
return 0;
}
//-------------------------------------------------------------------------auto
void VTK_EXPORT vtkLSDynaReader_Init(vtkClientServerInterpreter* csi)
{
static vtkClientServerInterpreter* last = NULL;
if(last != csi)
{
last = csi;
csi->AddNewInstanceFunction("vtkLSDynaReader", vtkLSDynaReaderClientServerNewCommand);
csi->AddCommandFunction("vtkLSDynaReader", vtkLSDynaReaderCommand);
}
}
|
96a7c6ab018545087a60c676a6848a90415a291e
|
6fee4c583884ab81173a0666635ce16e15fb0206
|
/arduino/Libraries/IRremoteESP8266/src/IRutils.h
|
0d0b677b57b1e0e7c2edf043453c261a71af4905
|
[
"Apache-2.0",
"LGPL-2.1-only"
] |
permissive
|
MattS8/IRSmartHub
|
b993bb739c33c4b767bbe22c8d888e82f53f5198
|
b099232e51d13bf4c26787d9d537176148489e48
|
refs/heads/master
| 2023-01-07T19:36:36.726363
| 2020-01-25T10:45:45
| 2020-01-25T10:45:45
| 190,078,801
| 2
| 0
|
Apache-2.0
| 2019-06-20T04:07:20
| 2019-06-03T20:37:45
|
C++
|
UTF-8
|
C++
| false
| false
| 2,079
|
h
|
IRutils.h
|
#ifndef IRUTILS_H_
#define IRUTILS_H_
// Copyright 2017 David Conran
#ifndef UNIT_TEST
#include <Arduino.h>
#endif
#define __STDC_LIMIT_MACROS
#include <stdint.h>
#ifndef ARDUINO
#include <string>
#endif
#include "IRremoteESP8266.h"
#include "IRrecv.h"
uint64_t reverseBits(uint64_t input, uint16_t nbits);
#ifdef ARDUINO // Arduino's & C++'s string implementations can't co-exist.
String uint64ToString(uint64_t input, uint8_t base = 10);
String typeToString(const decode_type_t protocol,
const bool isRepeat = false);
void serialPrintUint64(uint64_t input, uint8_t base = 10);
String resultToSourceCode(const decode_results *results);
String resultToTimingInfo(const decode_results *results);
String resultToHumanReadableBasic(const decode_results *results);
String resultToHexidecimal(const decode_results *result);
String htmlEscape(const String unescaped);
#else // ARDUINO
std::string uint64ToString(uint64_t input, uint8_t base = 10);
std::string typeToString(const decode_type_t protocol,
const bool isRepeat = false);
std::string resultToSourceCode(const decode_results *results);
std::string resultToTimingInfo(const decode_results *results);
std::string resultToHumanReadableBasic(const decode_results *results);
std::string resultToHexidecimal(const decode_results *result);
std::string htmlEscape(const std::string unescaped);
#endif // ARDUINO
bool hasACState(const decode_type_t protocol);
uint16_t getCorrectedRawLength(const decode_results *results);
uint8_t sumBytes(uint8_t *start, const uint16_t length, const uint8_t init = 0);
uint8_t xorBytes(uint8_t *start, const uint16_t length, const uint8_t init = 0);
uint16_t countBits(const uint8_t *start, const uint16_t length,
const bool ones = true, const uint16_t init = 0);
uint16_t countBits(const uint64_t data, const uint8_t length,
const bool ones = true, const uint16_t init = 0);
uint64_t invertBits(const uint64_t data, const uint16_t nbits);
decode_type_t strToDecodeType(const char *str);
#endif // IRUTILS_H_
|
7731e461ded08ac7beceeff495349de42079e9e4
|
39ae254dea25edbc2e9c8634df0c74f65f0076d8
|
/AACube.h
|
219cbd9b1d1684de93ff41df7f6456230c0bb6ab
|
[] |
no_license
|
melsov/OGLVoxelEngine
|
94fe5ef41eeed8d56cc845281b3b35b8f57f77ef
|
01bb260a335a39b54a176b519fe7d54b6e03245f
|
refs/heads/master
| 2020-04-15T05:54:17.844249
| 2019-01-26T20:25:31
| 2019-01-26T20:25:31
| 164,441,178
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,212
|
h
|
AACube.h
|
#pragma once
#include <glm/glm.hpp>
namespace VEMath
{
struct Edge
{
glm::vec3 a, b;
Edge() {}
Edge(glm::vec3 aa, glm::vec3 bb)
{
a = aa; b = bb;
}
};
class AACube
{
public:
glm::vec3 origin;
glm::vec3 size;
glm::vec3 points[8];
glm::vec3 get(int i) const { return points[i]; }
glm::vec3& operator[] (int i) { return points[i]; }
AACube();
AACube(float _size);
AACube(glm::vec3 _origin, float _size);
//ordering per: http://cococubed.asu.edu/code_pages/raybox.shtml
Edge getEdge(int i) const
{
switch (i)
{
//light gray
case 0:
return Edge(get(0), get(1));
case 1:
return Edge(get(1), get(4));
case 2:
return Edge(get(4), get(7));
//dark gray
case 3:
return Edge(get(0), get(2));
case 4:
return Edge(get(2), get(5));
case 5:
return Edge(get(5), get(7));
// black
case 6:
return Edge(get(0), get(3));
case 7:
return Edge(get(3), get(6));
case 8:
return Edge(get(6), get(7));
// dotted light g, dark g, black
case 9:
return Edge(get(1), get(5));
case 10:
return Edge(get(2), get(6));
case 11:
default:
return Edge(get(3), get(4));
}
}
};
}
|
5847653ba5d5edecc185cb844b07d8ef8b34d6ef
|
aab7eafab5efae62cb06c3a2b6c26fe08eea0137
|
/rocurves/second_attempt_new2016tuples/src/main.cc
|
36c4174471626d9f468fda69e31714a271738f84
|
[] |
no_license
|
Sally27/B23MuNu_backup
|
397737f58722d40e2a1007649d508834c1acf501
|
bad208492559f5820ed8c1899320136406b78037
|
refs/heads/master
| 2020-04-09T18:12:43.308589
| 2018-12-09T14:16:25
| 2018-12-09T14:16:25
| 160,504,958
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,722
|
cc
|
main.cc
|
#include "usefulFunctions.hpp"
//#include "Lenin.h"
#include <iostream>
#include <string>
#include "KFolder.hpp"
//#include "usefulFunctions.h"
#include "Lenin4.hpp"
//#include <iostream>
//#include <string>
//#include "KFolder.hpp"
using namespace std;
int main()
{
//-----------Define Background and Signal Samples---------//
//---------Choose which stage to compute corell.........//
//MISIDbdt
string fileBkg="/vols/lhcb/ss4314/BDTrunonsamples/tuplesandbdtrun/MCnonsharedvsCombiFUMSB_add2016_newPID/B23MuNuFakeSStotal_mu3isNotMuon_mu3inMuonAcc_trigger_Jpsi_mu1nShared_mu2nShared_qmincut_CombBasic.root";
string fileSig="/vols/lhcb/ss4314/BDTrunonsamples/tuplesandbdtrun/MCnonsharedvsCombiFUMSB_add2016_newPID/B23MuNuMCallvar_MCtruth_trigger_Jpsi_qmincut_CombBasic.root";
string nameofbdt = "MCnonsharedvsCombiFUMSB";
//------------Define the bdt var, range and number of steps to obtain FOM and PUNZI fom---//
double wSig = 1.0;
double wBkg = 1.0;
string bdtvar = "MCnonsharedvsCombiFUMSBNTrees60_MinNodeSize2_MaxDepth3_SeparationTypeGiniIndex_PruneMethodNoPruning_DoPreselection";
double mincut = -1.0;
double maxcut = 1.0;
int nstep = 300;
string nameplot = "FOM.pdf";
string cuts="";
string weightBranchSig="";
string weightBranchBkg="";
double nsigexp = 89.0;
double nbkgexp = 16798.5;
int tageff1=3;//30%efficiency
int tageff2=5;
//----------Find the Figure of Merit Normal/Punzi----------------------//
//-----------Plot cut applied as a function of Variable-------------//
string extracuts= "";
string cutapplied="Bplus_Corrected_Mass>6000";
string nameplot2 = "CuteffvsVariableSig";
string nameplot3 = "CuteffvsVariableBkg";
string weightBranchSig2="";
string weightBranchBkg2="";
string var1name="Bplus_Corrected_Mass";
string var2name="MCnonsharedvsCombiFUMSBNTrees60_MinNodeSize2_MaxDepth3_SeparationTypeGiniIndex_PruneMethodNoPruning_DoPreselection";
string var3name="invmu1andmu2";
string var4name="invmu2andmu3";
string var5name="invmu1andmu3";
string var6name="acos(costhetamu1mu2)";
string var7name="acos(costhetamu2mu3)";
string var8name="acos(costhetamu1mu3)";
bool draw="true";
string plotname="CombiBDT";
string plotname2="MCsig";
double minmine=0.0;
double maxmine=10000.0;
double numofbdtsteps=100;
KFolder ke;
ke.setNFolds(10);
ke.setOutFile("/vols/lhcb/ss4314/BDTtrainings/MCnonsharedvsCombiFUMSB/tmva/");
string pathname="/vols/lhcb/ss4314/BDTtrainings/MCnonsharedvsCombiFUMSB/tmva/";
string bdtvarintuples="MCnonsharedvsCombiFUMSB";
string outputFileName="overtraining.pdf";
string outputfilename="rocurves/second_attempt_new2016tuples.pdf";
bool fa=false;
string weight="";
string fsigname="testsig.root";
string fbkgname="testbkg.root";
string extracut="";
char* strarray[] = {"MCnonsharedvsCombiFUMSBNTrees60_MinNodeSize2_MaxDepth3_SeparationTypeGiniIndex_PruneMethodNoPruning_DoPreselection"};
string namemything1 = "Regular";
vector<string> bdtvars(strarray,strarray+1);
// plotOverTraining(ke, outputFileName, bdtvarintuples, bdtvar, weight, pathname, mincut, maxcut, fsigname, fbkgname);
// plotRocCurves(fsigname, fbkgname, bdtvars, outputfilename, extracuts, fa, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
// plotRocCurvesPunzi(fsigname, fbkgname, bdtvars, outputfilename, extracuts, fa, nsigexp, nbkgexp, namemything1, mincut, maxcut);//, punzi, weightBranchSig, weightBranchBkg);
bool tr=true;
// plotRocCurves(fsigname, fbkgname, bdtvars, outputfilename, extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
// plotRocCurvesPunzi(fsigname, fbkgname, bdtvars, outputfilename, extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut);
string pathnamesally="/vols/lhcb/ss4314/rocurves/second_attempt_new2016tuples/MCnonsharedvsCombiFUMSB_add2016_newPID/";
// plotRocCurvesSally(pathnamesally,"B23MuNuMCallvar_MCtruth_trigger_Jpsi_qmincut.root", "Data2012and2011_corrmFUMSB_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root", bdtvars, "roccurve_run1.pdf", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
// plotRocCurvesSally(pathnamesally,"B23MuNuMC2015_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut.root", "B23MuNuData2015_DV41r2_corrmFUSMB_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root", bdtvars, "roccurve_2015.pdf", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
// plotRocCurvesSally(pathnamesally,"Bu23MuNuMC2016_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut.root", "Bu23MuNuData2016_corrmFUSMB_trigger_Jpsi_mu1isMuonTight_mu2isMuonTight_mu3isMuonTight_mu1MuonNShared_mu2MuonNShared_mu3MuonNShared_qmincut.root", bdtvars, "roccurve_2016.pdf", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
vector<string> fsig;
fsig.push_back("B23MuNuMCallvar_MCtruth_trigger_Jpsi_qmincut.root");
fsig.push_back("B23MuNuMC2015_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut.root");
fsig.push_back("Bu23MuNuMC2016_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut.root");
vector<string> fbkg;
fbkg.push_back("Data2012and2011_corrmFUMSB_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root");
fbkg.push_back("B23MuNuData2015_DV41r2_corrmFUSMB_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root");
fbkg.push_back("Bu23MuNuData2016_corrmFUSMB_trigger_Jpsi_mu1isMuonTight_mu2isMuonTight_mu3isMuonTight_mu1MuonNShared_mu2MuonNShared_mu3MuonNShared_qmincut.root");
vector<string> condition;
condition.push_back("Run1(trained on Run1)");
condition.push_back("2015(trained on Run1)");
condition.push_back("2016(trained on Run1)");
plotRocCurvesSallyCompare(pathnamesally, condition ,fsig, fbkg ,bdtvar, "_Combi_TrainedonRun1_", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
//-----------------COMPARE MISID preformace trained on 2012 data--------------//
string pathnamesally2="/vols/lhcb/ss4314/rocurves/second_attempt_new2016tuples/MCnonsharedvsMisidFUMSB_add2016_newPID/";
string bdtvarmis="MCnonsharedvsMisidFUMSBNTrees60_MinNodeSize2_MaxDepth3_SeparationTypeGiniIndex_PruneMethodNoPruning_DoPreselection";
vector<string> fsig2;
fsig2.push_back("B23MuNuMCallvar_MCtruth_trigger_Jpsi_qmincut_CombBasic.root");
fsig2.push_back("B23MuNuMC2015_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut_CombBasic.root");
fsig2.push_back("B23MuNuMC2016_MCtruth_trigger_Jpsi_qmincut_CombBasic.root");
vector<string> fbkg2;
fbkg2.push_back("B23MuNuFakeSStotal_mu3isNotMuon_mu3inMuonAcc_trigger_Jpsi_mu1nShared_mu2nShared_qmincut_CombBasic.root");
fbkg2.push_back("B23MuNuFakeSS_2015_DV41r2_mu3isNotMuon_mu3inMuonAcc_trigger_Jpsi_mu1nShared_mu2nShared_qmincut_CombBasic.root");
fbkg2.push_back("B23MuNuFakeSS_2016_mu3isNotMuon_mu3inMuonAcc_trigger_Jpsi_mu1nShared_mu2nShared_qmincut_CombBasic.root");
plotRocCurvesSallyCompare(pathnamesally2, condition ,fsig2, fbkg2 ,bdtvarmis, "_Misid_TrainedonRun1_", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
//---------------Compare 2012 and 2016 perfromance------------------//
string pathnamesally3="/vols/lhcb/ss4314/rocurves/second_attempt_new2016tuples/NewTuples_2016_CombinatorialBDT/";
vector<string> paths;
paths.push_back(pathnamesally);
paths.push_back(pathnamesally3);
string bdtvar2016="NewTuples_2016_CombinatorialBDTNTrees60_MinNodeSize2_MaxDepth3_SeparationTypeGiniIndex_PruneMethodNoPruning_DoPreselection";
vector<string> vars;
vars.push_back(bdtvar);
vars.push_back(bdtvar2016);
vector<string> fsig3;
fsig3.push_back("Bu23MuNuMC2016_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut.root");
fsig3.push_back("Bu23MuNuMC2016_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut.root");
vector<string> fbkg3;
fbkg3.push_back("Bu23MuNuData2016_corrmFUSMB_trigger_Jpsi_mu1isMuonTight_mu2isMuonTight_mu3isMuonTight_mu1MuonNShared_mu2MuonNShared_mu3MuonNShared_qmincut.root");
fbkg3.push_back("Bu23MuNuData2016_corrmFUSMB_trigger_Jpsi_mu1isMuonTight_mu2isMuonTight_mu3isMuonTight_mu1MuonNShared_mu2MuonNShared_mu3MuonNShared_qmincut.root");
vector<string> condi3;
condi3.push_back("2016(trained on Run1)");
condi3.push_back("2016(trained on 2016)");
plotRocCurvesSallyCompareDiffTraining(paths, condi3 ,fsig3, fbkg3 ,vars, "_Combi_CompareTrainSeparately_", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
plotRocCurvesSallyCompareDiffTrainingOneMinusBkgRej(paths, condi3 ,fsig3, fbkg3 ,vars, "_Combi_CompareTrainSeparately_", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
//-----------Compare performances trained on both datasets------------//
string pathnamesally4="/vols/lhcb/ss4314/rocurves/second_attempt_new2016tuples/NewTuples_2016_CombinatorialBDT_BOTHRun1and2016/";
vector<string> paths4;
paths4.push_back(pathnamesally);
paths4.push_back(pathnamesally4);
paths4.push_back(pathnamesally3);
paths4.push_back(pathnamesally4);
string bdtvarrun1and2016="NewTuples_2016_CombinatorialBDT_BOTHRun1and2016NTrees60_MinNodeSize2_MaxDepth3_SeparationTypeGiniIndex_PruneMethodNoPruning_DoPreselection";
vector<string> vars4;
vars4.push_back(bdtvar);
vars4.push_back(bdtvarrun1and2016);
vars4.push_back(bdtvar2016);
vars4.push_back(bdtvarrun1and2016);
vector<string> fsig4;
fsig4.push_back("B23MuNuMCallvar_MCtruth_trigger_Jpsi_qmincut.root");
fsig4.push_back("B23MuNuMCallvar_MCtruth_trigger_Jpsi_qmincut.root");
fsig4.push_back("Bu23MuNuMC2016_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut.root");
fsig4.push_back("Bu23MuNuMC2016_MCtruth_L0MuonDecisionTOS_trigger_Jpsi_qmincut.root");
vector<string> fbkg4;
fbkg4.push_back("Data2012and2011_corrmFUMSB_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root");
fbkg4.push_back("Data2012and2011_corrmFUMSB_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root");
fbkg4.push_back("Bu23MuNuData2016_corrmFUSMB_trigger_Jpsi_mu1isMuonTight_mu2isMuonTight_mu3isMuonTight_mu1MuonNShared_mu2MuonNShared_mu3MuonNShared_qmincut.root");
fbkg4.push_back("Bu23MuNuData2016_corrmFUSMB_trigger_Jpsi_mu1isMuonTight_mu2isMuonTight_mu3isMuonTight_mu1MuonNShared_mu2MuonNShared_mu3MuonNShared_qmincut.root");
vector<string> condi4;
condi4.push_back("Run1(trained on Run1)");
condi4.push_back("Run1(trained on Run1+2016)");
condi4.push_back("2016(trained on 2016)");
condi4.push_back("2016(trained on Run1+2016)");
plotRocCurvesSallyCompareDiffTraining(paths4, condi4 ,fsig4, fbkg4, vars4, "_Combi_CompareTrainOnBothRun1and2016_", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
plotRocCurvesSallyCompareDiffTrainingOneMinusBkgRej(paths4, condi4 ,fsig4, fbkg4, vars4, "_Combi_CompareTrainOnBothRun1and2016_", extracuts, tr, nsigexp, nbkgexp, namemything1, mincut, maxcut, weightBranchSig, weightBranchBkg);
//--------------------Plot for PHSP Montecarlo-------------------//
// plotCutEffVsVarNonBDT(fileBkg,(var2name+">0.22").c_str(),var2name,var3name,0.0,6000,50,"", extracuts);//range of var3name
//plotCutEffVsVarNonBDT("/vols/lhcb/ss4314/BDTrunonsamples/tuplesandbdtrun/MCnonsharedvsCombiFUMSB_add2016_newPID/B23MuNuMCPHSP_MCtruth_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root",(var2name+">0.22").c_str(),var2name,var3name,0.0,6000,50,"PHSPSig", extracuts);
// plotCutEffVsVarNonBDT(fileBkg,(var2name+">0.22").c_str(),var2name,var4name,0.0,6000,50,"Bkg", extracuts);//range of var3name
//plotCutEffVsVarNonBDT("/vols/lhcb/ss4314/BDTrunonsamples/tuplesandbdtrun/MCnonsharedvsCombiFUMSB_add2016_newPID/B23MuNuMCPHSP_MCtruth_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root",(var2name+">0.22").c_str(),var2name,var4name,0.0,6000,50,"PHSPSig", extracuts);
// plotCutEffVsVarNonBDT(fileBkg,(var2name+">0.22").c_str(),var2name,var5name,0.0,6000,50,"Bkg", extracuts);//range of var3name
//plotCutEffVsVarNonBDT("/vols/lhcb/ss4314/BDTrunonsamples/tuplesandbdtrun/MCnonsharedvsCombiFUMSB_add2016_newPID/B23MuNuMCPHSP_MCtruth_trigger_Jpsi_mu1nShared_mu2nShared_mu3nShared_qmincut.root",(var2name+">0.22").c_str(),var2name,var5name,0.0,6000,50,"PHSPSig", extracuts);
//--------------------On MIS ID--------------------------------//
//string str="mamama";
//string nametree="/vols/lhcb/ss4314/BDTrunonsamples/tuplesandbdtrun/60Treesfinaltuplesafter60treescombinatorial30percsig/B23MuNuFakeSameSignMuonSmallDataSample_mu3isNotMuon_mu3inMuonAcc_Jpsi_mu1nShared_mu2nShared_qmincut.root";
//string decaytreename="DecayTree";
//string namecuttree="B23MuNuFakeSameSignMuonSmallDataSample_mu1nShared_mu2nShared_mu3isNotMuon_mu3inMuonAcc_Jpsi_qmincut_BDTPunziOPT.root";
//string mycut="Bplus_Corrected_Mass > 6000";
//string mycuts="CombinatorialNormalBDTfinal400TreesandPNTrees400_MinNodeSize2_MaxDepth3_SeparationTypeGiniIndex_PruneMethodNoPruning_DoPreselection > 0.228";
//cutTree(nametree, decaytreename, namecuttree, mycuts);
}
|
cf261bf1085981d449169597ba0f1049ed65e6ca
|
1ba1ee4d9c1e81de026549536c408fd1c4f6aed0
|
/photons.h
|
8aefd07b47134d032305d2b16c5dc662cc29c510
|
[] |
no_license
|
rocee/polarized_montecarlo
|
1c9406c7c7bb5663c50d33cb692ae5cd11cbf545
|
6c1faa1a17cef856e86a7d89b63995afbaaddad4
|
refs/heads/master
| 2020-03-27T09:41:12.152647
| 2016-11-30T18:12:45
| 2016-11-30T18:12:45
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,235
|
h
|
photons.h
|
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include "Vector.h"
#ifndef __photons__h
#define __photons__h 1
#define ALIVE 1
#define DEAD 0
/* Properties of the light defined in main.cpp */
extern double *s11, *s12, *s33, *s43;
extern double I_R, Q_R, U_R, V_R, I_T, Q_T, U_T, V_T;
extern double mu_a, mu_s, slabdepth, albedo, g;
extern int nphotons, nangles;
/* Properties of our model (taken from Ramella et. al., 2005) */
#define WEIGHT_CUTOFF 0.01
const double survival_multiplier = 10;
const double survival_chance = 1 / survival_multiplier;
/* Some random number generator that produces a uniform
* distribution of numbers from (0,1].
*/
double rand_num() {
double r = 0;
do {
r = ((double) rand() / RAND_MAX);
} while (r == 0);
return r;
}
/* Track polarization state of photon via Stokes vector */
struct stokes_v {
public:
double I;
double Q;
double U;
double V;
stokes_v(void) { I = 0; Q = 0; U = 0; V = 0; }
stokes_v(double I, double Q, double U, double V) : I(I), Q(Q), U(U), V(V) { };
stokes_v(const stokes_v& that) {
this->I = that.I;
this->Q = that.Q;
this->U = that.U;
this->V = that.V;
}
void scalar_mult(double x) { I = x*I; Q = x*Q; U = x*U; V = x*V;}
/*
* Rotation of Stokes vector by angle phi
* about the axis of propogation
*/
void rotate_stokes(double phi) {
double cos_2phi = cos(2*phi);
double sin_2phi = sin(2*phi);
double old_q = this->Q;
double old_u = this->U;
this->Q = old_q*cos_2phi + old_u*sin_2phi;
this->U = -old_q*sin_2phi + old_u*cos_2phi;
}
void normalize() {
if (I <= 1e-6) {printf("Small intensity problem!\n"); return; }
Q = Q/I;
U = U/I;
V = V/I;
I = 1.0;
}
};
struct quaternion {
public:
double q0;
Vector gam;
quaternion(void) {
q0 = 0;
}
quaternion(double q0, double i, double j, double k) : q0(q0) {
Vector a(i,j,k);
gam = a;
}
// Constructor for rotational quaternion
// Represents a rotation about axis by angle.
quaternion(double angle, Vector axis) {
double sin_ang = sin(angle/2);
double cos_ang = cos(angle/2);
q0 = cos_ang;
Vector a(axis.i*sin_ang, axis.j*sin_ang, axis.k*sin_ang);
gam = a;
}
quaternion inv(void) {
quaternion result = quaternion(q0,-gam.i, -gam.j, -gam.k);
return result;
}
static quaternion hprod(quaternion &b, quaternion &a) {
double ret_q0 = b.q0*a.q0 - (b.gam.i*a.gam.i) - (b.gam.j*a.gam.j) - (b.gam.k*a.gam.k);
double ret_g1 = b.q0*a.gam.i + (b.gam.i*a.q0) + (b.gam.j*a.gam.k) - (b.gam.k*a.gam.j);
double ret_g2 = b.q0*a.gam.j - (b.gam.i*a.gam.k) + (b.gam.j*a.q0) + (b.gam.k*a.gam.i);
double ret_g3 = b.q0*a.gam.k + (b.gam.i*a.gam.j) - (b.gam.j*a.gam.i) + (b.gam.k*a.q0);
quaternion result = quaternion(ret_q0, ret_g1, ret_g2, ret_g3);
return result;
}
Vector vector_prod(Vector &a) {
quaternion v = quaternion(0,a.i, a.j, a.k);
quaternion intermediate = hprod(*this, v);
quaternion q_inv = this->inv();
quaternion result = hprod(intermediate, q_inv);
return result.gam;
}
};
struct photon {
private:
double weight;
bool state; // Alive or dead
public:
double alpha; // scattering angles
double beta; // scattering angles
Vector V; // Orientation vector (Stokes Y axis)
Vector U; // Direction of Propogation (Stokes Z axis)
double x; // Lateral x position (cm)
double y; // Lateral y position (cm)
double z;
stokes_v S;
// Default constructor.
photon(void) {
weight = 1;
// Start at center and top of slab
x = 0.0;
y = 0.0;
z = 0.0;
S.I = 0.0;
S.Q = 0.0;
S.U = 0.0;
S.V = 0.0;
U.i = 0.0;
U.j = 0.0;
U.k = 1.0;
V.i = 0.0;
V.j = 1.0;
V.k = 0.0;
state = ALIVE;
alpha = 0; // scattering angles
beta = 0; // scattering angles
}
void setStokes(double i, double q, double u, double v) {
S.I = i;
S.Q = q;
S.U = u;
S.V = v;
}
bool alive() {
return state;
}
/*
* move(void) -
* Adjust position of photon in space based upon
* orientation and properties of the medium.
*/
double move(void) {
double rnum = 0;
do { rnum = rand_num(); } while (rnum == 0);
double deltaS = -log(rnum) / (mu_a+mu_s);
x += U.i * deltaS;
y += U.j * deltaS;
z += U.k * deltaS;
return deltaS;
}
/*
* drop(void) -
* Drop weight from the photon and determine if it is dead
* or out of bounds. Adjust weights accordingly. If photon
* is dead, re-orient it to detector and record stokes vector.
*/
void drop(void) {
weight *= albedo;
// Check weight
if (weight < WEIGHT_CUTOFF) {
// Russian Roulette for photon absorption
double rand = rand_num();
if (rand <= survival_chance) {
weight = 0;
state = DEAD;
} else {
weight *= survival_multiplier;
}
}
// Check boundaries
if (this->z <= 0) { // Photon is reflected
// Rotate axes back to reference frame
Vector W = Vector::cross_prod(V,U);
if ((fabs(V.k) <= 1e-8) && (fabs(W.k) <= 1e-8)) { }
else {
double epsilon = atan2(V.k , -W.k);
S.rotate_stokes(epsilon);
double phi = atan2(U.j, U.i);
S.rotate_stokes(phi);
}
I_R += S.I;
Q_R += S.Q;
U_R += S.U;
V_R += S.V;
state = DEAD;
}
else if (this->z >= slabdepth) { // Photon is transmitted
// Rotate axes back to reference frame
Vector W = Vector::cross_prod(V,U);
if ((fabs(V.k) <= 1e-8) && (fabs(W.k) <= 1e-8)) { }
else {
double epsilon = atan2(V.k , -W.k);
S.rotate_stokes(epsilon);
double phi = atan2(U.j,-U.i);
S.rotate_stokes(phi);
}
I_T += S.I;
Q_T += S.Q;
U_T += S.U;
V_T += S.V;
state = DEAD;
}
}
/*
* rejection() - choose alpha and beta angles for scattering
*/
void rejection(void) {
// Placeholder locals for choosing rejection angle alpha
double theta, phi, Io, Iith, rand_no;
do {
theta = acos(2*rand_num() - 1);
phi = 2*M_PI*rand_num();
Io = s11[0]*S.I + s12[0]*(S.Q*cos(2*phi) + S.U*sin(2*phi));
int i = floor(theta / M_PI * nangles);
Iith = s11[i]*S.I + s12[i]*(S.Q*cos(2*phi) + S.U*sin(2*phi));
rand_no = rand_num();
} while ((rand_no*Io) >= Iith);
alpha = theta;
beta = phi;
return;
}
void quaternion_scatter(void) {
/* Step 1: Rotate V about U by beta */
quaternion rot_U_b(beta, U);
Vector newV = rot_U_b.vector_prod(V);
V = newV;
/* Step 2: Rotate U about V by alpha */
quaternion rot_V_a(alpha,V);
Vector newU = rot_V_a.vector_prod(U);
U = newU;
/* Step 3: Rotate Stokes vector by beta */
// Placeholders for step 4
S.rotate_stokes(beta);
double si = S.I;
double sq = S.Q;
double su = S.U;
double sv = S.V;
/* Step 4: Multiply Stokes by scattering matrix */
int ithedeg = floor(alpha/M_PI*nangles);
S.I= s11[ithedeg]*si+s12[ithedeg]*sq;
S.Q= s12[ithedeg]*si+s11[ithedeg]*sq;
S.U= s33[ithedeg]*su+s43[ithedeg]*sv;
S.V= -s43[ithedeg]*su+s33[ithedeg]*sv;
S.normalize();
}
};
#endif
|
3d41e3ae143eb10e0ec4a8195139c5c55e4d8219
|
3c2b9919dfaeef2232e467b50ba83b64d0c96c63
|
/cpp/cf/835C.cpp
|
d770c6488365d2cacce3fd28164ae3e469706643
|
[] |
no_license
|
filhoweuler/programacao-competitiva
|
81c2a5fbcc6fdd751785360d2e50fd79cd8a2d07
|
a6b4a450479c73fb2479e0b0a9a84fdca27f14d8
|
refs/heads/master
| 2021-09-01T14:14:19.836502
| 2017-12-27T11:41:17
| 2017-12-27T11:41:17
| 109,110,743
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,592
|
cpp
|
835C.cpp
|
#include <bits/stdc++.h>
using namespace std;
int sky[105][105];
int tree[105][105][11];
int n, m;
void update(int row, int col, int val, int t) {
int delta = val - sky[row][col];
//sky[row][col] = val;
printf("upd [%d,%d]",row, col);
for (int i = row; i <= m; i += i & (-i)) {
for (int j = col; j <= n; j += j & (-j)) {
tree[i][j][t] = tree[i][j][t-1] + delta;
}
}
}
int sum(int row, int col, int t) {
int sum = 0;
for (int i = row; i > 0; i -= i & (-i)) {
for (int j = col; j > 0; j -= j & (-j)) {
sum += tree[i][j][t];
}
}
printf("sum[%d,%d] = %d\n",row, col, sum);
return sum;
}
int sumR(int row1, int col1, int row2, int col2, int t) {
return sum(row2, col2, t) + sum(row1-1, col1-1 ,t) - sum(row1-1, col2,t) - sum(row2, col1-1,t);
}
int main () {
int n, q, c;
scanf("%d %d %d",&n,&q,&c);
m = n;
memset(sky, -1, sizeof sky);
for (int i=0;i<n;i++) {
int x, y, s;
scanf("%d %d %d",&x,&y,&s);
sky[x][y] = max(sky[x][y], s);
}
for (int i=0;i<105;i++) {
for (int j=0;j<105;j++) {
if (sky[i][j] != -1)
update(i, j, sky[i][j], 0);
else
update(i, j, 0, 0);
}
}
cout << "ok" << endl;
for (int t=1;t<=10;t++) {
for (int i=1;i<=100;i++) {
for (int j=1;j<=100;j++) {
if (sky[i][j] != -1) {
printf("update em [%d,%d] de %d no tempo %d\n",i, j, (sky[i][j] + t)%(c+1), t);
update(i, j, (sky[i][j] + t)%(c+1), t);
}
}
}
}
for (int i=0;i<q;i++) {
int t, x1, y1, x2, y2;
scanf("%d %d %d %d %d",&t, &x1, &y1, &x2, &y2);
printf("%d\n",sumR(x1, y1, x2, y2, t%(c+1)));
}
}
|
409a2652eec56576297d94069acae2afcede33c2
|
06bed8ad5fd60e5bba6297e9870a264bfa91a71d
|
/LayoutEditor/path2d.h
|
857453ca5a6137106af356aa792df79e7810a5cc
|
[] |
no_license
|
allenck/DecoderPro_app
|
43aeb9561fe3fe9753684f7d6d76146097d78e88
|
226c7f245aeb6951528d970f773776d50ae2c1dc
|
refs/heads/master
| 2023-05-12T07:36:18.153909
| 2023-05-10T21:17:40
| 2023-05-10T21:17:40
| 61,044,197
| 4
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,433
|
h
|
path2d.h
|
#ifndef PATH2D_H
#define PATH2D_H
#include <QVector>
#include <QPointF>
#include <qobject.h>
#include "shape.h"
class PathIterator;
class Logger;
class JShape;
class AffineTransform;
class Path2D : public JShape
{
Q_OBJECT
public:
Path2D();
/*public*/ static /*final*/ int WIND_EVEN_ODD;// = PathIterator.WIND_EVEN_ODD;
/**
* A non-zero winding rule for determining the interior of a
* path.
*
* @see PathIterator#WIND_NON_ZERO
* @since 1.6
*/
/*public*/ static /*final*/ int WIND_NON_ZERO;// = PathIterator.WIND_NON_ZERO;
/*public*/ /*final*/ void setWindingRule(int rule);
/*public*/ /*final*/ /*synchronized*/ void closePath();
/*public*/ /*final*/ /*synchronized*/ int getWindingRule();
private:
// For code simplicity, copy these constants to our namespace
// and cast them to byte constants for easy storage.
/*private*/ static /*final*/ char SEG_MOVETO;// = (byte) PathIterator.SEG_MOVETO;
/*private*/ static /*final*/ char SEG_LINETO;// = (byte) PathIterator.SEG_LINETO;
/*private*/ static /*final*/ char SEG_QUADTO;// = (byte) PathIterator.SEG_QUADTO;
/*private*/ static /*final*/ char SEG_CUBICTO;// = (byte) PathIterator.SEG_CUBICTO;
/*private*/ static /*final*/ char SEG_CLOSE;// = (byte) PathIterator.SEG_CLOSE;
/*transient*/ QVector<char>* pointTypes;
/*transient*/ int numTypes;
/*transient*/ int numCoords;
/*transient*/ int windingRule;
static /*final*/ int INIT_SIZE;// = 20;
static /*final*/ int EXPAND_MAX;// = 500;
static /*final*/ int EXPAND_MAX_COORDS;// = EXPAND_MAX * 2;
static /*final*/ int EXPAND_MIN;// = 10; // ensure > 6 (cubics)
/*abstract*/ virtual QVector<float>* cloneCoordsFloat(AffineTransform* at);
/*abstract*/ virtual QVector<double>* cloneCoordsDouble(AffineTransform* at);
/*abstract*/ virtual void append(float x, float y);
/*abstract*/ virtual void append(double x, double y);
/*abstract*/ virtual QPointF getPoint(int coordindex);
/*abstract*/ virtual void needRoom(bool needMove, int newCoords);
/*abstract*/ virtual int pointCrossings(double px, double py);
/*abstract*/ virtual int rectCrossings(double rxmin, double rymin,
double rxmax, double rymax);
static QVector<float>* copyOf(QVector<float>*, int newLength);
static QVector<char>* copyOf(QVector<char>*, int newLength);
Logger* log;
static QVector<char>* expandPointTypes(QVector<char>* oldPointTypes, int needed);
protected:
Path2D(int rule, int initialTypes);
friend class PositionablePolygonXml;
friend class GeneralPath;
friend class Float;
friend class CopyIterator;
friend class TxIterator;
friend class Iterator;
};
/*public*/ /*static*/ class Float : public Path2D //implements Serializable
{
/*transient*/ QVector<float>* floatCoords;
Logger* log;
/**
* Constructs a new empty single precision {@code Path2D} object
* with a default winding rule of {@link #WIND_NON_ZERO}.
*
* @since 1.6
*/
/*public*/ Float();
/*public*/ Float(int rule);
/*public*/ Float(int rule, int initialCapacity);
///*public*/ Path2D_Float(JShape* s) ;
/*public*/ Float(JShape* s, AffineTransform* at = 0) ;
QVector<float>* cloneCoordsFloat(AffineTransform* at);
QVector<double>* cloneCoordsDouble(AffineTransform* at);
void append(float x, float y) ;
void append(double x, double y);
/*public*/ /*final*/ void append(PathIterator* pi, bool connect);
QPointF getPoint(int coordindex);
void needRoom(bool needMove, int newCoords);
/*public*/ /*final*/ /*synchronized*/ void moveTo(double x, double y);
/*public*/ /*final*/ /*synchronized*/ void moveTo(float x, float y);
/*public*/ /*final*/ /*synchronized*/ void lineTo(double x, double y);
/*public*/ /*final*/ /*synchronized*/ void lineTo(float x, float y);
/*public*/ /*final*/ /*synchronized*/ void quadTo(double x1, double y1,
double x2, double y2);
/*public*/ /*final*/ /*synchronized*/ void quadTo(float x1, float y1,
float x2, float y2);
/*public*/ /*final*/ /*synchronized*/ void curveTo(double x1, double y1,
double x2, double y2,
double x3, double y3);
/*public*/ /*final*/ /*synchronized*/ void curveTo(float x1, float y1,
float x2, float y2,
float x3, float y3);
static QVector<float>* expandCoords(QVector<float>* oldCoords, int needed);
/*public*/ /*final*/ PathIterator* getPathIterator(AffineTransform* at);
#if 0
/*public*/ /*final*/ synchronized void moveTo(double x, double y);
/*public*/ /*final*/ synchronized void moveTo(float x, float y);
/*public*/ /*final*/ synchronized void lineTo(double x, double y);
/*public*/ /*final*/ synchronized void lineTo(float x, float y) ;
/*public*/ /*final*/ synchronized void quadTo(double x1, double y1,
double x2, double y2);
/*public*/ /*final*/ synchronized void quadTo(float x1, float y1,
float x2, float y2);
/*public*/ /*final*/ synchronized void curveTo(double x1, double y1,
double x2, double y2,
double x3, double y3);
/*public*/ /*final*/ synchronized void curveTo(float x1, float y1,
float x2, float y2,
float x3, float y3);
int pointCrossings(double px, double py);
int rectCrossings(double rxmin, double rymin,
double rxmax, double rymax);
/*public*/ /*final*/ void append(PathIterator pi, boolean connect);
/*public*/ /*final*/ void transform(AffineTransform at);
/*public*/ /*final*/ synchronized Rectangle2D getBounds2D() ;
/*public*/ /*final*/ PathIterator getPathIterator(AffineTransform* at);
/*public*/ /*final*/ Object clone();
/*private*/ void writeObject(java.io.ObjectOutputStream s);
/*private*/ void readObject(java.io.ObjectInputStream s);
#endif
friend class PositionablePolygonXml;
friend class GeneralPath;
friend class DrawPolygon;
friend class PositionablePolygon;
friend class Path2D;
friend class CopyIterator;
friend class TxIterator;
friend class Region;
};
/*static*/ /*abstract*/ class Iterator : public PathIterator
{
Q_OBJECT
int typeIdx;
int pointIdx;
Path2D* path;
static /*final*/ QVector<int> curvecoords; // = {2, 2, 4, 6, 0};
public:
Iterator(Path2D* path) ;
/*public*/ int getWindingRule();
/*public*/ bool isDone();
/*public*/ void next();
friend class CopyIterator;
friend class TxIterator;
};
/*static*/ class CopyIterator : public Iterator
{
QVector<float>* floatCoords;
public:
CopyIterator(Float* p2df);
/*public*/ int currentSegment(QVector<float>* coords);
/*public*/ int currentSegment(QVector<double>* coords);
friend class Path2D;
};
/*static*/ class TxIterator : public Iterator
{
QVector<float>* floatCoords;
AffineTransform* affine;
public:
TxIterator(Float* p2df, AffineTransform* at);
/*public*/ int currentSegment(QVector<float>* coords) ;
/*public*/ int currentSegment(QVector<double>* coords);
friend class Path2D;
};
#endif // PATH2D_H
|
0b9e17a68ab2cc4ee65667d85fd5d3a67837f0d9
|
125e8801fa2047294b68ca60c5e762d9afa27184
|
/include/station_optimization/simulation/helpers/Initial_Info.h
|
ae8a2d35b7bf9b0663aa6f066f412c4291695f0a
|
[] |
no_license
|
ZhengchaoWang/ElectricVehicleChargingStation
|
7f26946409e5817e147449994e7b6845b22b59ad
|
f9b3744e4d7d7531d3f1758d7a5897c88761eb30
|
refs/heads/master
| 2020-03-21T08:05:41.712292
| 2019-04-08T10:36:48
| 2019-04-08T10:36:48
| 138,319,823
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,388
|
h
|
Initial_Info.h
|
//
// Created by ZhengchaoWANG on 10.09.18.
//
#ifndef CHARING_INITIAL_INFO_H
#define CHARING_INITIAL_INFO_H
#include <vector>
#include <array>
#include <string>
#include <numeric>
#include <iostream>
#include <fstream>
#include <sys/types.h>
#include <dirent.h>
#include <boost/filesystem.hpp>
#include "station_optimization/simulation/charging_facility/Charging_Station_General_Manager.h"
using namespace std;
namespace fs = boost::filesystem ;
class Initial_Info{
private:
vector<array<double,2>> station_locations;
vector<vector<int>> stations_initial_config;
vector<double> pile_rate;
vector<double> pile_price;
string station_file_path_name;
string pile_file_path_name;
string station_initial_file_name;
/* Helpers */
protected:
string taxi_file_path_name;
vector<string> get_filenames_in( fs::path newpath );
vector<double> findUsedPileRate(vector<int> & this_config);
vector<int> findInstalledType(vector<int> &this_config);
public:
Initial_Info() = default;
Initial_Info(vector<array<double,2>> & stationlocation, vector<double> & pilerate, vector<double> & pileprice):
station_locations(stationlocation), pile_rate(pilerate),pile_price(pileprice){};
virtual void initiateFromFiles();
void readPilesInfoFromFile();
void readChargingStationLocationFromFile();
void readCurrentStationsConfig();
Charging_Station_General_Manager getChargingFacilityManager(int starttime);
// void outputMostUsedDayInfo();
/* Setters and Getters */
void setAllFilesPath (const string & station, const string & pile, const string & station_initial_file, const string & taxi = " ");
void setStation_file(const string &station_file);
void setPile_file(const string &pile_file);
void setTaxi_file_path(const string &taxi_file_path);
void setStation_initial_file_name(const string &station_initial_file_name);
const vector<array<double, 2>> &getStation_locations() const;
const vector<double> &getPile_rate() const;
const vector<double> &getPile_price() const;
const vector<vector<int>> &getStations_initial_config() const;
};
#endif //CHARING_INITIAL_INFO_H
|
afd08b2acf2c1c77e614e5f708ac98afebeeae1c
|
d6bb54215e44e94a1f29d2c2a2d6c24f129edd8c
|
/COLOR.cpp
|
c165236418c0410464038bb6680c9db68f7bf388
|
[] |
no_license
|
subarnaChat/Codechef-submissions
|
df864061e01c6b00cc4525be689fe1079a8d27a9
|
119ff33e1e6426f8cd085698319b69237400bae9
|
refs/heads/main
| 2023-01-12T18:55:22.623077
| 2020-11-04T14:52:53
| 2020-11-04T14:52:53
| 310,031,735
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 532
|
cpp
|
COLOR.cpp
|
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
long int n,i,j;
cin>>t;
while(t--)
{
cin>>n;
string s;
cin>>s;
//j=0;
long int r[3]={0};
for(i=0;i<n;i++)
{
if(s[i]=='R')
r[0]++;
else if(s[i]=='G')
r[1]++;
else if(s[i]=='B')
r[2]++;
}
sort(r,r+3);
cout<<(n-r[2])<<endl;
}
// your code goes here
return 0;
}
|
d31107c8e59f6d0a91f3d5a06b69dc91da64269f
|
fc6d01c0a4ff1dd611a97b4a1999ba3e0ec051b5
|
/Combinations.cpp
|
0a48315e0a856a93a5ce5e4891ebbd54994c4fae
|
[
"MIT"
] |
permissive
|
fz1989/LeetCode
|
9e32ffbf13073b89a4d2b3b19a5a3cada5c09cc4
|
6d9c3ddf3e2048c7be456902841d7e5fc80cd741
|
refs/heads/master
| 2020-06-04T01:13:25.302987
| 2014-03-04T13:41:23
| 2014-03-04T13:41:23
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 644
|
cpp
|
Combinations.cpp
|
class Solution {
public:
vector<vector<int> > combine(int n, int k) {
vector<vector<int> > ret;
int A[n + 1];
helper(0, n, 0, k, ret, A);
return ret;
}
void helper(int now, int N, int pos, int K, vector<vector<int> > &ret, int A[]) {
if (pos == K) {
vector<int> tmp;
for (int i = 0; i < K; i++) {
tmp.push_back(A[i]);
}
ret.push_back(tmp);
return;
}
if (now >= N) return;
A[pos] = now + 1;
helper(now + 1, N, pos + 1, K, ret, A);
helper(now + 1, N, pos, K, ret, A);
}
};
|
d4abdd1e2173fc2e7deab9ab7b0bc840d355445d
|
2154cd09218ce57a7e184ac7d7594e9a4c5faf2b
|
/Lecture-6/kadane.cpp
|
ed629bb83b30ce79378db293751cf371d12f027e
|
[] |
no_license
|
himdhiman/Launchpad-May
|
41ec8f88042032dcca9c2bb753a66c0c574a120b
|
cb0a6d2a9986bf025035b0026b23ace0ee3c6cc0
|
refs/heads/master
| 2022-02-25T06:15:12.928790
| 2019-08-02T18:09:36
| 2019-08-02T18:09:36
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 295
|
cpp
|
kadane.cpp
|
#include<iostream>
using namespace std;
int main(){
int arr[100] = {-7,1,-4,5,1,-3,11};
int n = 7;
int max = INT_MIN;
int currMax = 0;
for(int i=0;i<n;i++){
currMax+=arr[i];
if(currMax<0){
currMax = 0;
}
if(currMax>max){
max = currMax;
}
}
cout<<max<<endl;
}
|
4b50f70f631da60a21e1350c3b816ced13d10d97
|
35321390460c43a8003f8b613ce20b3c733ee6ed
|
/cpp_bomberman/Coord3.cpp
|
3b76e011e8168f101f5724025496e4f97c54a52f
|
[] |
no_license
|
Vypz/Global-project
|
39540c59bc316b1cd23a9e7777e853c42a02c3bc
|
72aa8c00d5934d542aa9484501cb5d6ae3f49829
|
refs/heads/master
| 2023-09-02T05:09:35.173690
| 2021-09-22T15:01:34
| 2021-09-22T15:01:34
| 197,783,486
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,502
|
cpp
|
Coord3.cpp
|
//
// Coord3.cpp for bomberman in /home/pridea_v/rendu/cpp_bomberman
//
// Made by virgile prideaux
// Login <pridea_v@epitech.net>
//
// Started on Sun Jun 1 01:23:49 2014 virgile prideaux
// Last update Sun Jun 15 18:19:26 2014 virgile prideaux
//
#include "Coord3.hh"
extern glm::vec3 rotationvec[];
Coord3::Coord3(const glm::vec3& p, const glm::vec3& r, const glm::vec3& s)
: _position(p), _rotation(r), _scale(s)
{}
Coord3::Coord3()
{}
Coord3::~Coord3()
{}
void Coord3::updateTransform()
{
glm::mat4 transform(1);
transform = glm::translate(transform, this->_position);
transform = glm::rotate(transform, this->_rotation.x, rotationvec[0]);
transform = glm::rotate(transform, this->_rotation.y, rotationvec[1]);
transform = glm::rotate(transform, this->_rotation.z, rotationvec[2]);
transform = glm::scale(transform, this->_scale);
this->_transform = transform;
}
void Coord3::setPosition(const glm::vec3& p)
{
this->_position = p;
this->updateTransform();
}
void Coord3::setRotation(const glm::vec3& r)
{
this->_rotation = r;
this->updateTransform();
}
void Coord3::setScale(const glm::vec3& s)
{
this->_scale = s;
this->updateTransform();
}
const glm::mat4& Coord3::getTransform() const
{
return (this->_transform);
}
const glm::vec3& Coord3::getPosition() const
{
return (this->_position);
}
const glm::vec3& Coord3::getRotation() const
{
return (this->_rotation);
}
const glm::vec3& Coord3::getScale() const
{
return (this->_scale);
}
|
27f080b422dd0761a25ec4f48f740e5c3401ba14
|
3d43ba42e5c0ba4d021a11f49d33fed1ad51e957
|
/day 6/day 6 (zadacha 8).cpp
|
bf8b16e741d31078d3839aa6ffe09c2ead7fad37
|
[] |
no_license
|
ridik22/practik
|
54e60930e6b9fe7542815cf6676a5edf78fce150
|
b3731343a8c7fd0d5ae49ed1d9cf50c60b6bfffa
|
refs/heads/master
| 2016-09-06T18:42:57.631678
| 2014-11-26T11:42:49
| 2014-11-26T11:42:49
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 756
|
cpp
|
day 6 (zadacha 8).cpp
|
# include <iostream>
# include <conio.h>
# include <time.h>
# include <fstream>
# include <stdlib.h>
using namespace std;
void star (int ,ofstream *);
char save_file (void);
int *a=new int [1000];
int max_z=5;
int main ()
{
srand(time (NULL));
cout<<"Vvedite cholichestvo chifer = ";
cin>>max_z;
for (int i=0;i<max_z;i++)
{
a[i]=rand()%9+1;
cout<<a[i]<<" ";
}
save_file ();
getch ();
return 0;
}
void star (int stop, ofstream & f)
{
for (int i=0;i<=stop;i++)
{
f<<a[i];
if (i<stop)
{
f<<"*";
}
}
f<<"=";
}
char save_file (void)
{
ofstream file;
file.open ("1231231321231231231.txt", ios::out);
double summ=0;
summ=a[0];
file<<summ<<endl;
for (int i=1;i<max_z;i++)
{
summ*=a[i];
star (i, file);
file<<summ<<endl;
}
}
|
25ae377cf01daf5eed622338946871ddeaac0509
|
4352b5c9e6719d762e6a80e7a7799630d819bca3
|
/tutorials/eulerVortex.twitch.alternative.numerics/eulerVortex.cyclic.twitch.moving/1.99/meshPhi
|
86fc87f1e8924e375329afa261b1b2c61eb4eb80
|
[] |
no_license
|
dashqua/epicProject
|
d6214b57c545110d08ad053e68bc095f1d4dc725
|
54afca50a61c20c541ef43e3d96408ef72f0bcbc
|
refs/heads/master
| 2022-02-28T17:20:20.291864
| 2019-10-28T13:33:16
| 2019-10-28T13:33:16
| 184,294,390
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 428,625
|
meshPhi
|
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "1.99";
object meshPhi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
44700
(
-0.000550556
0.00109911
-0.00110018
0.00329572
-0.00164784
0.00548606
-0.0021926
0.00766694
-0.00273355
0.00983519
-0.00326967
0.0119847
-0.00380005
0.0141139
-0.0043238
0.0162196
-0.00483992
0.0182944
-0.00534755
0.0203382
-0.00584583
0.0223481
-0.00633382
0.0243155
-0.0068107
0.0262418
-0.00727566
0.0281243
-0.00772782
0.0299532
-0.00816642
0.0317315
-0.00859073
0.0334568
-0.00899994
0.0351184
-0.00939335
0.0367209
-0.00977032
0.0382618
-0.0101301
0.0397299
-0.0104721
0.0411311
-0.0107958
0.0424634
-0.0111005
0.0437148
-0.0113858
0.0448926
-0.0116511
0.0459952
-0.0118959
0.0470103
-0.0121198
0.0479462
-0.0123226
0.0488017
-0.0125036
0.0495644
-0.0126628
0.0502436
-0.0127997
0.0508386
-0.0129142
0.0513368
-0.013006
0.0517487
-0.0130751
0.0520737
-0.0131211
0.0522996
-0.0131442
0.0524377
-0.0131442
0.0524876
-0.0131211
0.0524377
-0.0130751
0.0522996
-0.013006
0.0520738
-0.0129142
0.0517487
-0.0127997
0.0513368
-0.0126628
0.0508386
-0.0125036
0.0502437
-0.0123226
0.0495644
-0.0121198
0.0488018
-0.0118959
0.0479462
-0.0116511
0.0470103
-0.0113858
0.0459953
-0.0111005
0.0448927
-0.0107958
0.0437148
-0.0104721
0.0424634
-0.0101301
0.0411311
-0.00977032
0.0397299
-0.00939335
0.0382619
-0.00899994
0.0367209
-0.00859073
0.0351185
-0.00816642
0.0334569
-0.00772782
0.0317316
-0.00727566
0.0299532
-0.0068107
0.0281243
-0.00633382
0.0262418
-0.00584583
0.0243155
-0.00534755
0.0223482
-0.00483992
0.0203382
-0.0043238
0.0182944
-0.00380006
0.0162192
-0.00326967
0.0141142
-0.00273354
0.011985
-0.00219261
0.00983477
-0.00164784
0.00766715
-0.00110017
0.00548617
-0.000550568
0.00329558
5.02342e-14
0.00109916
0.00055057
-0.00109916
0.00110018
-0.00329558
0.00164786
-0.00548617
0.00219265
-0.00766715
0.0027336
-0.00983477
0.00326975
-0.011985
0.00380017
-0.0141142
0.00432394
-0.0162192
0.0048401
-0.0182944
0.00534777
-0.0203382
0.0058461
-0.0223482
0.00633413
-0.0243155
0.00681106
-0.0262418
0.00727607
-0.0281243
0.00772829
-0.0299532
0.00816694
-0.0317316
0.00859131
-0.0334569
0.00900057
-0.0351185
0.00939404
-0.0367209
0.00977106
-0.0382619
0.0101309
-0.0397299
0.010473
-0.0411311
0.0107967
-0.0424634
0.0111015
-0.0437148
0.0113868
-0.0448927
0.0116521
-0.0459953
0.011897
-0.0470103
0.012121
-0.0479462
0.0123237
-0.0488018
0.0125049
-0.0495644
0.012664
-0.0502437
0.012801
-0.0508386
0.0129155
-0.0513368
0.0130074
-0.0517487
0.0130764
-0.0520738
0.0131225
-0.0522996
0.0131455
-0.0524377
0.0131455
-0.0524876
0.0131225
-0.0524377
0.0130764
-0.0522996
0.0130074
-0.0520737
0.0129155
-0.0517487
0.012801
-0.0513368
0.012664
-0.0508386
0.0125049
-0.0502436
0.0123237
-0.0495644
0.012121
-0.0488017
0.011897
-0.0479462
0.0116521
-0.0470103
0.0113868
-0.0459952
0.0111015
-0.0448926
0.0107967
-0.0437148
0.010473
-0.0424634
0.0101309
-0.0411311
0.00977106
-0.0397299
0.00939404
-0.0382618
0.00900057
-0.0367209
0.00859131
-0.0351184
0.00816694
-0.0334568
0.00772829
-0.0317315
0.00727607
-0.0299532
0.00681106
-0.0281243
0.00633413
-0.0262418
0.0058461
-0.0243155
0.00534777
-0.0223481
0.0048401
-0.0203382
0.00432394
-0.0182944
0.00380016
-0.0162196
0.00326975
-0.0141139
0.00273361
-0.0119847
0.00219264
-0.00983519
0.00164786
-0.00766694
0.00110019
-0.00548606
0.000550558
-0.00329572
-0.00109911
-0.0016507
0.00219628
-0.00329862
0.00658565
-0.00494063
0.0109625
-0.00657396
0.0153204
-0.00819587
0.0196531
-0.00980327
0.0239484
-0.0113935
0.0282029
-0.0129638
0.0324106
-0.0145113
0.0365566
-0.0160333
0.0406407
-0.0175272
0.044657
-0.0189903
0.0485883
-0.0204201
0.0524375
-0.0218142
0.0561991
-0.0231699
0.0598537
-0.0244849
0.0634074
-0.0257571
0.0668549
-0.026984
0.0701752
-0.0281636
0.0733773
-0.0292938
0.0764564
-0.0303726
0.07939
-0.031398
0.08219
-0.0323685
0.0848522
-0.0332821
0.0873528
-0.0341373
0.0897065
-0.0349327
0.0919097
-0.0356668
0.093938
-0.0363383
0.0958083
-0.0369461
0.0975178
-0.037489
0.0990417
-0.0379662
0.100399
-0.0383767
0.101588
-0.03872
0.102583
-0.0389953
0.103407
-0.0392022
0.104056
-0.0393404
0.104507
-0.0394095
0.104783
-0.0394095
0.104883
-0.0393404
0.104783
-0.0392022
0.104508
-0.0389953
0.104056
-0.03872
0.103407
-0.0383767
0.102584
-0.0379662
0.101588
-0.037489
0.100399
-0.0369461
0.0990419
-0.0363383
0.097518
-0.0356668
0.0958084
-0.0349327
0.0939382
-0.0341373
0.0919099
-0.0332821
0.0897067
-0.0323685
0.087353
-0.031398
0.0848524
-0.0303726
0.0821902
-0.0292938
0.0793902
-0.0281636
0.0764567
-0.026984
0.0733775
-0.0257571
0.0701754
-0.0244849
0.0668552
-0.0231699
0.0634076
-0.0218142
0.0598539
-0.0204201
0.0561993
-0.0189903
0.0524377
-0.0175272
0.0485885
-0.0160333
0.0446572
-0.0145113
0.0406408
-0.0129638
0.0365567
-0.0113935
0.0324101
-0.00980327
0.0282037
-0.00819583
0.023949
-0.00657399
0.0196523
-0.00494063
0.0153209
-0.00329859
0.0109627
-0.00165074
0.00658539
1.49258e-13
0.00219639
0.00165075
-0.00219639
0.00329861
-0.00658539
0.00494069
-0.0109627
0.00657411
-0.0153209
0.00819601
-0.0196523
0.00980353
-0.023949
0.0113939
-0.0282037
0.0129642
-0.0324101
0.0145118
-0.0365567
0.0160339
-0.0406408
0.017528
-0.0446572
0.0189913
-0.0485885
0.0204212
-0.0524377
0.0218154
-0.0561993
0.0231713
-0.0598539
0.0244865
-0.0634076
0.0257589
-0.0668552
0.0269859
-0.0701754
0.0281656
-0.0733775
0.029296
-0.0764567
0.030375
-0.0793902
0.0314006
-0.0821902
0.0323712
-0.0848524
0.033285
-0.087353
0.0341404
-0.0897067
0.0349359
-0.0919099
0.0356701
-0.0939382
0.0363417
-0.0958084
0.0369496
-0.097518
0.0374926
-0.0990419
0.0379699
-0.100399
0.0383806
-0.101588
0.0387239
-0.102584
0.0389993
-0.103407
0.0392062
-0.104056
0.0393444
-0.104508
0.0394136
-0.104783
0.0394136
-0.104883
0.0393444
-0.104783
0.0392062
-0.104507
0.0389993
-0.104056
0.0387239
-0.103407
0.0383806
-0.102583
0.0379699
-0.101588
0.0374926
-0.100399
0.0369496
-0.0990417
0.0363417
-0.0975178
0.0356701
-0.0958083
0.0349359
-0.093938
0.0341404
-0.0919097
0.033285
-0.0897065
0.0323712
-0.0873528
0.0314006
-0.0848522
0.030375
-0.08219
0.029296
-0.07939
0.0281656
-0.0764564
0.0269859
-0.0733773
0.0257589
-0.0701752
0.0244865
-0.0668549
0.0231713
-0.0634074
0.0218154
-0.0598537
0.0204212
-0.0561991
0.0189913
-0.0524375
0.017528
-0.0485883
0.0160339
-0.044657
0.0145118
-0.0406407
0.0129642
-0.0365566
0.0113938
-0.0324106
0.00980353
-0.0282029
0.00819604
-0.0239484
0.00657407
-0.0196531
0.00494069
-0.0153204
0.00329865
-0.0109625
0.00165071
-0.00658565
-0.00219628
-0.00274795
0.0032896
-0.00549127
0.00986403
-0.00822475
0.0164197
-0.0109438
0.022947
-0.0136438
0.0294365
-0.0163197
0.03587
-0.0189669
0.0422425
-0.0215811
0.0485448
-0.0241571
0.0547546
-0.0266908
0.0608718
-0.0291779
0.0668875
-0.0316136
0.0727758
-0.0339938
0.0785412
-0.0363145
0.0841753
-0.0385713
0.0896492
-0.0407605
0.0949719
-0.0428783
0.100136
-0.0449208
0.105109
-0.0468844
0.109905
-0.0487659
0.114517
-0.0505617
0.118911
-0.0522689
0.123105
-0.0538844
0.127092
-0.0554053
0.130838
-0.056829
0.134363
-0.0581531
0.137663
-0.0593751
0.140701
-0.060493
0.143502
-0.0615048
0.146063
-0.0624086
0.148345
-0.0632029
0.150378
-0.0638864
0.152159
-0.0644578
0.15365
-0.0649162
0.154883
-0.0652606
0.155856
-0.0654906
0.156532
-0.0656057
0.156945
-0.0656057
0.157095
-0.0654906
0.156945
-0.0652606
0.156532
-0.0649162
0.155856
-0.0644578
0.154883
-0.0638864
0.15365
-0.0632029
0.152159
-0.0624086
0.150379
-0.0615048
0.148346
-0.060493
0.146063
-0.0593751
0.143503
-0.0581531
0.140701
-0.056829
0.137663
-0.0554053
0.134363
-0.0538844
0.130838
-0.0522689
0.127093
-0.0505617
0.123105
-0.0487659
0.118911
-0.0468844
0.114517
-0.0449208
0.109905
-0.0428783
0.105109
-0.0407605
0.100136
-0.0385713
0.0949724
-0.0363145
0.0896497
-0.0339938
0.0841758
-0.0316136
0.0785416
-0.0291779
0.0727762
-0.0266908
0.0668879
-0.0241571
0.0608722
-0.0215811
0.054755
-0.018967
0.0485441
-0.0163197
0.0422438
-0.0136437
0.035871
-0.0109438
0.0294354
-0.00822475
0.0229477
-0.00549121
0.0164201
-0.00274801
0.00986365
2.45312e-13
0.00328977
0.00274802
-0.00328977
0.00549126
-0.00986365
0.00822485
-0.0164201
0.010944
-0.0229477
0.013644
-0.0294354
0.0163201
-0.035871
0.0189675
-0.0422438
0.0215818
-0.0485441
0.0241581
-0.054755
0.026692
-0.0608722
0.0291792
-0.0668879
0.0316151
-0.0727762
0.0339956
-0.0785416
0.0363166
-0.0841758
0.0385737
-0.0896497
0.0407631
-0.0949724
0.0428812
-0.100136
0.0449239
-0.105109
0.0468878
-0.109905
0.0487696
-0.114517
0.0505657
-0.118911
0.0522731
-0.123105
0.053889
-0.127093
0.0554101
-0.130838
0.0568341
-0.134363
0.0581584
-0.137663
0.0593806
-0.140701
0.0604987
-0.143503
0.0615107
-0.146063
0.0624146
-0.148346
0.0632091
-0.150379
0.0638928
-0.152159
0.0644643
-0.15365
0.0649227
-0.154883
0.0652673
-0.155856
0.0654973
-0.156532
0.0656124
-0.156945
0.0656124
-0.157095
0.0654973
-0.156945
0.0652673
-0.156532
0.0649227
-0.155856
0.0644643
-0.154883
0.0638928
-0.15365
0.0632091
-0.152159
0.0624146
-0.150378
0.0615107
-0.148345
0.0604987
-0.146063
0.0593806
-0.143502
0.0581584
-0.140701
0.0568341
-0.137663
0.0554101
-0.134363
0.053889
-0.130838
0.0522731
-0.127092
0.0505657
-0.123105
0.0487696
-0.118911
0.0468878
-0.114517
0.0449239
-0.109905
0.0428812
-0.105109
0.0407631
-0.100136
0.0385737
-0.0949719
0.0363166
-0.0896492
0.0339956
-0.0841753
0.0316151
-0.0785412
0.0291792
-0.0727758
0.026692
-0.0668875
0.0241581
-0.0608718
0.0215818
-0.0547546
0.0189675
-0.0485448
0.0163201
-0.0422425
0.0136441
-0.03587
0.010944
-0.0294365
0.00822485
-0.022947
0.00549132
-0.0164197
0.00274796
-0.00986403
-0.0032896
-0.00384038
0.00437715
-0.00767429
0.0131251
-0.0114944
0.021848
-0.0152944
0.0305333
-0.0190678
0.0391683
-0.0228075
0.0477287
-0.0265071
0.0562079
-0.0301605
0.0645938
-0.0337607
0.0728566
-0.0373016
0.0809961
-0.0407774
0.0890006
-0.0441813
0.0968355
-0.0475078
0.104507
-0.0507511
0.112004
-0.0539051
0.119287
-0.0569646
0.12637
-0.0599243
0.133241
-0.0627787
0.139858
-0.065523
0.14624
-0.0681525
0.152376
-0.0706622
0.158223
-0.073048
0.163803
-0.0753058
0.169109
-0.0774313
0.174093
-0.079421
0.178784
-0.0812715
0.183175
-0.0829793
0.187217
-0.0845415
0.190944
-0.0859556
0.194351
-0.0872187
0.197389
-0.0883288
0.200094
-0.0892841
0.202463
-0.0900826
0.204447
-0.0907232
0.206088
-0.0912046
0.207382
-0.091526
0.208282
-0.0916868
0.208832
-0.0916868
0.209031
-0.091526
0.208832
-0.0912046
0.208282
-0.0907232
0.207383
-0.0900826
0.206088
-0.0892841
0.204448
-0.0883288
0.202464
-0.0872187
0.200094
-0.0859556
0.197389
-0.0845415
0.194352
-0.0829793
0.190945
-0.0812715
0.187218
-0.079421
0.183175
-0.0774313
0.178784
-0.0753058
0.174094
-0.073048
0.16911
-0.0706622
0.163804
-0.0681525
0.158224
-0.065523
0.152377
-0.0627787
0.146241
-0.0599243
0.139859
-0.0569646
0.133242
-0.0539051
0.126371
-0.0507511
0.119288
-0.0475078
0.112005
-0.0441813
0.104508
-0.0407774
0.0968363
-0.0373016
0.0890013
-0.0337607
0.0809968
-0.0301605
0.0728572
-0.0265072
0.0645929
-0.0228075
0.0562098
-0.0190677
0.04773
-0.0152945
0.0391668
-0.0114944
0.0305343
-0.00767421
0.0218486
-0.00384047
0.0131246
3.38221e-13
0.00437739
0.00384048
-0.00437739
0.00767427
-0.0131246
0.0114946
-0.0218486
0.0152947
-0.0305343
0.0190681
-0.0391668
0.022808
-0.04773
0.026508
-0.0562098
0.0301615
-0.0645929
0.0337619
-0.0728572
0.0373032
-0.0809968
0.0407792
-0.0890013
0.0441835
-0.0968363
0.0475103
-0.104508
0.0507539
-0.112005
0.0539083
-0.119288
0.0569682
-0.126371
0.0599283
-0.133242
0.0627831
-0.139859
0.0655277
-0.146241
0.0681576
-0.152377
0.0706678
-0.158224
0.0730539
-0.163804
0.0753121
-0.16911
0.077438
-0.174094
0.079428
-0.178784
0.0812789
-0.183175
0.082987
-0.187218
0.0845495
-0.190945
0.0859638
-0.194352
0.0872271
-0.197389
0.0883375
-0.200094
0.0892929
-0.202464
0.0900916
-0.204448
0.0907323
-0.206088
0.0912138
-0.207383
0.0915353
-0.208282
0.0916962
-0.208832
0.0916962
-0.209031
0.0915353
-0.208832
0.0912138
-0.208282
0.0907323
-0.207382
0.0900916
-0.206088
0.0892929
-0.204447
0.0883375
-0.202463
0.0872271
-0.200094
0.0859638
-0.197389
0.0845495
-0.194351
0.082987
-0.190944
0.0812789
-0.187217
0.079428
-0.183175
0.077438
-0.178784
0.0753121
-0.174093
0.0730539
-0.169109
0.0706678
-0.163803
0.0681576
-0.158223
0.0655277
-0.152376
0.0627831
-0.14624
0.0599283
-0.139858
0.0569682
-0.133241
0.0539083
-0.12637
0.0507539
-0.119287
0.0475103
-0.112004
0.0441835
-0.104507
0.0407792
-0.0968355
0.0373032
-0.0890006
0.0337619
-0.0809961
0.0301615
-0.0728566
0.0265079
-0.0645938
0.022808
-0.0562079
0.0190682
-0.0477287
0.0152947
-0.0391683
0.0114946
-0.0305333
0.00767436
-0.021848
0.0038404
-0.0131251
-0.00437715
-0.00492607
0.00545702
-0.00984385
0.0163631
-0.014744
0.0272381
-0.0196182
0.038066
-0.0244584
0.0488313
-0.0292552
0.0595036
-0.0340008
0.0700747
-0.038687
0.0805294
-0.0433049
0.0908307
-0.0478469
0.100978
-0.0523053
0.110958
-0.0566716
0.120725
-0.0609384
0.130289
-0.0650986
0.139636
-0.0691443
0.148716
-0.0730687
0.157546
-0.0768652
0.166112
-0.0805266
0.174362
-0.0840466
0.182318
-0.0874195
0.189968
-0.0906388
0.197257
-0.093699
0.204214
-0.0965951
0.210829
-0.0993215
0.217042
-0.101874
0.22289
-0.104247
0.228365
-0.106438
0.233404
-0.108442
0.238051
-0.110256
0.242299
-0.111876
0.246086
-0.1133
0.249458
-0.114525
0.252412
-0.115549
0.254886
-0.116371
0.256931
-0.116989
0.258545
-0.117401
0.259666
-0.117607
0.260352
-0.117607
0.2606
-0.117401
0.260352
-0.116989
0.259667
-0.116371
0.258545
-0.115549
0.256931
-0.114525
0.254886
-0.1133
0.252413
-0.111876
0.249459
-0.110256
0.246086
-0.108442
0.2423
-0.106438
0.238052
-0.104247
0.233406
-0.101874
0.228366
-0.0993215
0.222892
-0.0965951
0.217044
-0.093699
0.21083
-0.0906388
0.204216
-0.0874195
0.197259
-0.0840466
0.18997
-0.0805266
0.182319
-0.0768652
0.174363
-0.0730687
0.166113
-0.0691443
0.157547
-0.0650986
0.148718
-0.0609384
0.139637
-0.0566716
0.130291
-0.0523053
0.120727
-0.0478469
0.110959
-0.0433049
0.100979
-0.038687
0.0908316
-0.0340009
0.0805285
-0.0292552
0.0700771
-0.0244582
0.0595054
-0.0196183
0.0488296
-0.014744
0.0380674
-0.00984374
0.0272388
-0.00492618
0.0163626
4.27867e-13
0.00545732
0.0049262
-0.00545732
0.00984382
-0.0163626
0.0147442
-0.0272388
0.0196186
-0.0380674
0.0244588
-0.0488296
0.029256
-0.0595054
0.0340019
-0.0700771
0.0386883
-0.0805285
0.0433066
-0.0908316
0.0478489
-0.100979
0.0523077
-0.110959
0.0566743
-0.120727
0.0609416
-0.130291
0.0651023
-0.139637
0.0691484
-0.148718
0.0730733
-0.157547
0.0768703
-0.166113
0.0805321
-0.174363
0.0840527
-0.182319
0.0874261
-0.18997
0.0906458
-0.197259
0.0937066
-0.204216
0.0966031
-0.21083
0.09933
-0.217044
0.101883
-0.222892
0.104257
-0.228366
0.106448
-0.233406
0.108452
-0.238052
0.110266
-0.2423
0.111887
-0.246086
0.113311
-0.249459
0.114536
-0.252413
0.115561
-0.254886
0.116383
-0.256931
0.117
-0.258545
0.117413
-0.259667
0.117619
-0.260352
0.117619
-0.2606
0.117413
-0.260352
0.117
-0.259666
0.116383
-0.258545
0.115561
-0.256931
0.114536
-0.254886
0.113311
-0.252412
0.111887
-0.249458
0.110266
-0.246086
0.108452
-0.242299
0.106448
-0.238051
0.104257
-0.233404
0.101883
-0.228365
0.09933
-0.22289
0.0966031
-0.217042
0.0937066
-0.210829
0.0906458
-0.204214
0.0874261
-0.197257
0.0840527
-0.189968
0.0805321
-0.182318
0.0768703
-0.174362
0.0730733
-0.166112
0.0691484
-0.157546
0.0651023
-0.148716
0.0609416
-0.139636
0.0566743
-0.130289
0.0523077
-0.120725
0.0478489
-0.110958
0.0433066
-0.100978
0.0386883
-0.0908307
0.0340017
-0.0805294
0.029256
-0.0700747
0.0244589
-0.0595036
0.0196185
-0.0488313
0.0147442
-0.038066
0.00984393
-0.0272381
0.00492609
-0.0163631
-0.00545702
-0.00600312
0.00652731
-0.0119961
0.0195724
-0.0179676
0.0325803
-0.0239076
0.045532
-0.029806
0.0584086
-0.0356517
0.0711741
-0.0414348
0.0838186
-0.0471456
0.0963237
-0.0527733
0.108645
-0.0583083
0.120783
-0.0637415
0.13272
-0.0690624
0.144403
-0.0742622
0.155843
-0.079332
0.167023
-0.0842623
0.177884
-0.0890447
0.188446
-0.0936713
0.198692
-0.0981331
0.20856
-0.102423
0.218076
-0.106533
0.227227
-0.110456
0.235946
-0.114186
0.244267
-0.117715
0.252179
-0.121038
0.259611
-0.124148
0.266606
-0.12704
0.273154
-0.12971
0.279182
-0.132152
0.284741
-0.134362
0.289822
-0.136337
0.294351
-0.138072
0.298385
-0.139565
0.301918
-0.140814
0.304877
-0.141815
0.307323
-0.142567
0.309254
-0.14307
0.310595
-0.143321
0.311415
-0.143321
0.311712
-0.14307
0.311415
-0.142567
0.310596
-0.141815
0.309254
-0.140814
0.307324
-0.139565
0.304878
-0.138072
0.301919
-0.136337
0.298386
-0.134362
0.294352
-0.132152
0.289823
-0.12971
0.284742
-0.12704
0.279184
-0.124148
0.273156
-0.121038
0.266608
-0.117715
0.259613
-0.114186
0.252181
-0.110456
0.244269
-0.106533
0.235948
-0.102423
0.227229
-0.0981331
0.218078
-0.0936713
0.208561
-0.0890447
0.198694
-0.0842623
0.188447
-0.079332
0.177886
-0.0742622
0.167025
-0.0690624
0.155845
-0.0637415
0.144405
-0.0583083
0.132721
-0.0527733
0.120785
-0.0471456
0.108647
-0.0414349
0.0963229
-0.0356517
0.0838216
-0.0298059
0.0711764
-0.0239077
0.0584067
-0.0179676
0.0455337
-0.011996
0.0325813
-0.00600326
0.0195718
5.14089e-13
0.00652769
0.00600328
-0.00652769
0.0119961
-0.0195718
0.0179679
-0.0325813
0.0239081
-0.0455337
0.0298065
-0.0584067
0.0356526
-0.0711764
0.0414361
-0.0838216
0.0471472
-0.0963229
0.0527752
-0.108647
0.0583107
-0.120785
0.0637443
-0.132721
0.0690657
-0.144405
0.074266
-0.155845
0.0793364
-0.167025
0.0842672
-0.177886
0.0890502
-0.188447
0.0936774
-0.198694
0.0981399
-0.208561
0.10243
-0.218078
0.106541
-0.227229
0.110465
-0.235948
0.114195
-0.244269
0.117725
-0.252181
0.121048
-0.259613
0.124158
-0.266608
0.127052
-0.273156
0.129722
-0.279184
0.132164
-0.284742
0.134375
-0.289823
0.13635
-0.294352
0.138085
-0.298386
0.139579
-0.301919
0.140827
-0.304878
0.141829
-0.307324
0.142582
-0.309254
0.143084
-0.310596
0.143335
-0.311415
0.143335
-0.311712
0.143084
-0.311415
0.142582
-0.310595
0.141829
-0.309254
0.140827
-0.307323
0.139579
-0.304877
0.138085
-0.301918
0.13635
-0.298385
0.134375
-0.294351
0.132164
-0.289822
0.129722
-0.284741
0.127052
-0.279182
0.124158
-0.273154
0.121048
-0.266606
0.117725
-0.259611
0.114195
-0.252179
0.110465
-0.244267
0.106541
-0.235946
0.10243
-0.227227
0.0981399
-0.218076
0.0936774
-0.20856
0.0890502
-0.198692
0.0842672
-0.188446
0.0793364
-0.177884
0.074266
-0.167023
0.0690657
-0.155843
0.0637443
-0.144403
0.0583107
-0.13272
0.0527752
-0.120783
0.0471472
-0.108645
0.041436
-0.0963237
0.0356526
-0.0838186
0.0298066
-0.0711741
0.023908
-0.0584086
0.0179679
-0.045532
0.0119962
-0.0325803
0.00600315
-0.0195724
-0.00652731
-0.00706964
0.00758615
-0.0141274
0.0227474
-0.0211598
0.0378653
-0.028155
0.052918
-0.0351014
0.0678835
-0.0419856
0.0827197
-0.0487961
0.0974153
-0.0555215
0.111949
-0.062149
0.12627
-0.0686674
0.140376
-0.0750659
0.154249
-0.0813321
0.167828
-0.0874556
0.181124
-0.0934262
0.194117
-0.0992324
0.20674
-0.104864
0.219015
-0.110313
0.230923
-0.115568
0.242391
-0.120619
0.253452
-0.12546
0.264087
-0.13008
0.27422
-0.134472
0.283892
-0.138628
0.293087
-0.142541
0.301725
-0.146204
0.309854
-0.14961
0.317465
-0.152754
0.324471
-0.15563
0.330931
-0.158233
0.336836
-0.160558
0.3421
-0.162602
0.346788
-0.164361
0.350895
-0.165831
0.354333
-0.16701
0.357177
-0.167896
0.35942
-0.168488
0.360979
-0.168784
0.361932
-0.168784
0.362277
-0.168488
0.361932
-0.167896
0.36098
-0.16701
0.359421
-0.165831
0.357177
-0.164361
0.354335
-0.162602
0.350896
-0.160558
0.34679
-0.158233
0.342101
-0.15563
0.336838
-0.152754
0.330933
-0.14961
0.324473
-0.146204
0.317467
-0.142541
0.309857
-0.138628
0.301727
-0.134472
0.29309
-0.13008
0.283894
-0.12546
0.274223
-0.120619
0.26409
-0.115568
0.253454
-0.110313
0.242394
-0.104864
0.230925
-0.0992324
0.219017
-0.0934262
0.206742
-0.0874556
0.194119
-0.0813321
0.181126
-0.0750659
0.16783
-0.0686674
0.154251
-0.062149
0.140378
-0.0555215
0.126271
-0.0487963
0.111948
-0.0419856
0.0974191
-0.0351012
0.0827226
-0.0281552
0.0678814
-0.0211598
0.0529201
-0.0141272
0.0378666
-0.0070698
0.0227467
5.96772e-13
0.0075866
0.00706983
-0.0075866
0.0141273
-0.0227467
0.02116
-0.0378666
0.0281556
-0.0529201
0.0351019
-0.0678814
0.0419866
-0.0827226
0.0487977
-0.0974191
0.0555233
-0.111948
0.0621513
-0.126271
0.0686702
-0.140378
0.0750692
-0.154251
0.081336
-0.16783
0.0874601
-0.181126
0.0934313
-0.194119
0.0992382
-0.206742
0.104871
-0.219017
0.11032
-0.230925
0.115575
-0.242394
0.120628
-0.253454
0.125469
-0.26409
0.13009
-0.274223
0.134483
-0.283894
0.13864
-0.29309
0.142553
-0.301727
0.146216
-0.309857
0.149624
-0.317467
0.152768
-0.324473
0.155644
-0.330933
0.158248
-0.336838
0.160574
-0.342101
0.162618
-0.34679
0.164376
-0.350896
0.165847
-0.354335
0.167026
-0.357177
0.167913
-0.359421
0.168504
-0.36098
0.1688
-0.361932
0.1688
-0.362277
0.168504
-0.361932
0.167913
-0.360979
0.167026
-0.35942
0.165847
-0.357177
0.164376
-0.354333
0.162618
-0.350895
0.160574
-0.346788
0.158248
-0.3421
0.155644
-0.336836
0.152768
-0.330931
0.149624
-0.324471
0.146216
-0.317465
0.142553
-0.309854
0.13864
-0.301725
0.134483
-0.293087
0.13009
-0.283892
0.125469
-0.27422
0.120628
-0.264087
0.115575
-0.253452
0.11032
-0.242391
0.104871
-0.230923
0.0992382
-0.219015
0.0934313
-0.20674
0.0874601
-0.194117
0.081336
-0.181124
0.0750692
-0.167828
0.0686702
-0.154249
0.0621513
-0.140376
0.0555233
-0.12627
0.0487975
-0.111949
0.0419866
-0.0974153
0.0351021
-0.0827197
0.0281555
-0.0678835
0.02116
-0.052918
0.0141275
-0.0378653
0.00706967
-0.0227474
-0.00758615
-0.00812375
0.00863167
-0.0162338
0.0258825
-0.0243148
0.043084
-0.0323531
0.0602112
-0.0403351
0.0772392
-0.0482458
0.0941202
-0.0560718
0.110841
-0.0638001
0.127378
-0.0714157
0.143672
-0.0789061
0.159723
-0.0862586
0.175508
-0.0934591
0.190958
-0.100496
0.206086
-0.107356
0.22087
-0.114028
0.235233
-0.1205
0.249199
-0.126761
0.262749
-0.132799
0.275798
-0.138604
0.288382
-0.144167
0.300484
-0.149476
0.312014
-0.154522
0.323018
-0.159299
0.333481
-0.163795
0.343309
-0.168004
0.352559
-0.171918
0.361218
-0.175531
0.36919
-0.178835
0.37654
-0.181827
0.383259
-0.184499
0.389248
-0.186847
0.394583
-0.188868
0.399256
-0.190557
0.403168
-0.191912
0.406403
-0.19293
0.408956
-0.19361
0.41073
-0.19395
0.411814
-0.19395
0.412207
-0.19361
0.411815
-0.19293
0.410731
-0.191912
0.408957
-0.190557
0.406404
-0.188868
0.40317
-0.186847
0.399257
-0.184499
0.394585
-0.181827
0.38925
-0.178835
0.383261
-0.175531
0.376543
-0.171918
0.369192
-0.168004
0.361221
-0.163795
0.352562
-0.159299
0.343312
-0.154522
0.333484
-0.149476
0.323021
-0.144167
0.312017
-0.138604
0.300488
-0.132799
0.288386
-0.126761
0.275801
-0.1205
0.262752
-0.114028
0.249203
-0.107356
0.235236
-0.100496
0.220873
-0.0934591
0.206089
-0.0862586
0.190961
-0.0789061
0.17551
-0.0714157
0.159726
-0.0638001
0.143674
-0.056072
0.127377
-0.0482458
0.110846
-0.040335
0.0941236
-0.0323532
0.077237
-0.0243148
0.0602137
-0.0162336
0.0430855
-0.00812394
0.0258817
6.75786e-13
0.00863221
0.00812397
-0.00863221
0.0162338
-0.0258817
0.0243151
-0.0430855
0.0323538
-0.0602137
0.0403358
-0.077237
0.048247
-0.0941236
0.0560736
-0.110846
0.0638021
-0.127377
0.0714183
-0.143674
0.0789092
-0.159726
0.0862623
-0.17551
0.0934635
-0.190961
0.100501
-0.206089
0.107362
-0.220873
0.114035
-0.235236
0.120508
-0.249203
0.126769
-0.262752
0.132808
-0.275801
0.138614
-0.288386
0.144177
-0.300488
0.149487
-0.312017
0.154535
-0.323021
0.159311
-0.333484
0.163808
-0.343312
0.168018
-0.352562
0.171933
-0.361221
0.175546
-0.369192
0.178852
-0.376543
0.181843
-0.383261
0.184516
-0.38925
0.186865
-0.394585
0.188886
-0.399257
0.190575
-0.40317
0.19193
-0.406404
0.192949
-0.408957
0.193629
-0.410731
0.193969
-0.411815
0.193969
-0.412207
0.193629
-0.411814
0.192949
-0.41073
0.19193
-0.408956
0.190575
-0.406403
0.188886
-0.403168
0.186865
-0.399256
0.184516
-0.394583
0.181843
-0.389248
0.178852
-0.383259
0.175546
-0.37654
0.171933
-0.36919
0.168018
-0.361218
0.163808
-0.352559
0.159311
-0.343309
0.154535
-0.333481
0.149487
-0.323018
0.144177
-0.312014
0.138614
-0.300484
0.132808
-0.288382
0.126769
-0.275798
0.120508
-0.262749
0.114035
-0.249199
0.107362
-0.235233
0.100501
-0.22087
0.0934635
-0.206086
0.0862623
-0.190958
0.0789092
-0.175508
0.0714183
-0.159723
0.0638021
-0.143672
0.0560734
-0.127378
0.048247
-0.110841
0.040336
-0.0941202
0.0323536
-0.0772392
0.0243151
-0.0602112
0.016234
-0.043084
0.00812379
-0.0258825
-0.00863167
-0.00916362
0.00966205
-0.0183118
0.0289721
-0.0274272
0.048227
-0.0364943
0.0673987
-0.0454982
0.0864594
-0.0544214
0.105355
-0.0632492
0.124073
-0.0719667
0.142583
-0.0805572
0.160823
-0.0890063
0.17879
-0.0972999
0.196459
-0.105422
0.213753
-0.113359
0.230687
-0.121098
0.247236
-0.128624
0.263313
-0.135925
0.278947
-0.142987
0.294114
-0.149798
0.308721
-0.156346
0.322807
-0.162621
0.336354
-0.168609
0.349259
-0.174302
0.361577
-0.179689
0.373289
-0.184761
0.38429
-0.189509
0.394645
-0.193924
0.404338
-0.197999
0.413261
-0.201727
0.421489
-0.205101
0.42901
-0.208115
0.435714
-0.210764
0.441686
-0.213043
0.446916
-0.214949
0.451296
-0.216477
0.454917
-0.217626
0.457774
-0.218393
0.45976
-0.218777
0.460974
-0.218777
0.461413
-0.218393
0.460974
-0.217626
0.459761
-0.216477
0.457775
-0.214949
0.454918
-0.213043
0.451297
-0.210764
0.446918
-0.208115
0.441688
-0.205101
0.435717
-0.201727
0.429013
-0.197999
0.421492
-0.193924
0.413264
-0.189509
0.404341
-0.184761
0.394649
-0.179689
0.384294
-0.174302
0.373293
-0.168609
0.361581
-0.162621
0.349264
-0.156346
0.336358
-0.149798
0.322812
-0.142987
0.308725
-0.135925
0.294118
-0.128624
0.278951
-0.121098
0.263317
-0.113359
0.24724
-0.105422
0.230691
-0.0972999
0.213757
-0.0890063
0.196462
-0.0805572
0.178793
-0.0719667
0.160825
-0.0632494
0.142583
-0.0544214
0.124078
-0.045498
0.10536
-0.0364945
0.0864571
-0.0274272
0.0674017
-0.0183116
0.0482288
-0.00916382
0.0289714
7.51042e-13
0.00966267
0.00916386
-0.00966267
0.0183118
-0.0289714
0.0274275
-0.0482288
0.0364951
-0.0674017
0.0454989
-0.0864571
0.0544227
-0.10536
0.0632512
-0.124078
0.0719689
-0.142583
0.08056
-0.160825
0.0890098
-0.178793
0.0973041
-0.196462
0.105427
-0.213757
0.113365
-0.230691
0.121105
-0.24724
0.128632
-0.263317
0.135933
-0.278951
0.142996
-0.294118
0.149808
-0.308725
0.156357
-0.322812
0.162632
-0.336358
0.168622
-0.349264
0.174315
-0.361581
0.179704
-0.373293
0.184776
-0.384294
0.189525
-0.394649
0.193941
-0.404341
0.198017
-0.413264
0.201745
-0.421492
0.20512
-0.429013
0.208134
-0.435717
0.210784
-0.441688
0.213063
-0.446918
0.214969
-0.451297
0.216498
-0.454918
0.217647
-0.457775
0.218414
-0.459761
0.218798
-0.460974
0.218798
-0.461413
0.218414
-0.460974
0.217647
-0.45976
0.216498
-0.457774
0.214969
-0.454917
0.213063
-0.451296
0.210784
-0.446916
0.208134
-0.441686
0.20512
-0.435714
0.201745
-0.42901
0.198017
-0.421489
0.193941
-0.413261
0.189525
-0.404338
0.184776
-0.394645
0.179704
-0.38429
0.174315
-0.373289
0.168622
-0.361577
0.162632
-0.349259
0.156357
-0.336354
0.149808
-0.322807
0.142996
-0.308721
0.135933
-0.294114
0.128632
-0.278947
0.121105
-0.263313
0.113365
-0.247236
0.105427
-0.230687
0.0973041
-0.213753
0.0890098
-0.196459
0.08056
-0.17879
0.0719689
-0.160823
0.063251
-0.142583
0.0544227
-0.124073
0.0454991
-0.105355
0.0364949
-0.0864594
0.0274275
-0.0673987
0.018312
-0.048227
0.00916365
-0.0289721
-0.00966205
-0.0101874
0.0106755
-0.0203577
0.0320109
-0.0304914
0.0532854
-0.0405716
0.074468
-0.0505814
0.0955279
-0.0605016
0.116406
-0.0703156
0.137086
-0.080007
0.157538
-0.0895573
0.177691
-0.0989504
0.197542
-0.108171
0.217065
-0.1172
0.236173
-0.126024
0.254884
-0.134628
0.273168
-0.142995
0.290932
-0.151111
0.308205
-0.158962
0.324963
-0.166534
0.341102
-0.173814
0.356666
-0.180789
0.371633
-0.187447
0.385893
-0.193776
0.399502
-0.199765
0.412443
-0.205403
0.424598
-0.210681
0.436038
-0.21559
0.446748
-0.220121
0.456607
-0.224265
0.465698
-0.228016
0.474008
-0.231366
0.481415
-0.234311
0.488013
-0.236845
0.493792
-0.238964
0.498631
-0.240663
0.502632
-0.24194
0.50579
-0.242793
0.507984
-0.243219
0.509325
-0.243219
0.50981
-0.242793
0.509325
-0.24194
0.507985
-0.240663
0.505791
-0.238964
0.502634
-0.236845
0.498634
-0.234311
0.493795
-0.231366
0.488016
-0.228016
0.481418
-0.224265
0.474011
-0.220121
0.465702
-0.21559
0.456611
-0.210681
0.446752
-0.205403
0.436043
-0.199765
0.424603
-0.193776
0.412448
-0.187447
0.399508
-0.180789
0.385898
-0.173814
0.371638
-0.166534
0.356671
-0.158962
0.341107
-0.151111
0.324968
-0.142995
0.30821
-0.134628
0.290937
-0.126024
0.273172
-0.1172
0.254888
-0.108171
0.236178
-0.0989504
0.217069
-0.0895573
0.197546
-0.080007
0.177694
-0.0703158
0.157538
-0.0605016
0.137092
-0.0505811
0.116411
-0.0405718
0.0955256
-0.0304914
0.0744715
-0.0203574
0.0532875
-0.0101876
0.0320102
8.22431e-13
0.0106762
0.0101877
-0.0106762
0.0203576
-0.0320102
0.0304918
-0.0532875
0.0405725
-0.0744715
0.0505821
-0.0955256
0.060503
-0.116411
0.0703178
-0.137092
0.0800095
-0.157538
0.0895604
-0.177694
0.0989542
-0.197546
0.108175
-0.217069
0.117206
-0.236178
0.126031
-0.254888
0.134635
-0.273172
0.143003
-0.290937
0.15112
-0.30821
0.158972
-0.324968
0.166545
-0.341107
0.173826
-0.356671
0.180802
-0.371638
0.18746
-0.385898
0.19379
-0.399508
0.19978
-0.412448
0.20542
-0.424603
0.210699
-0.436043
0.215608
-0.446752
0.220139
-0.456611
0.224284
-0.465702
0.228036
-0.474011
0.231387
-0.481418
0.234333
-0.488016
0.236867
-0.493795
0.238986
-0.498634
0.240685
-0.502634
0.241963
-0.505791
0.242816
-0.507985
0.243242
-0.509325
0.243242
-0.50981
0.242816
-0.509325
0.241963
-0.507984
0.240685
-0.50579
0.238986
-0.502632
0.236867
-0.498631
0.234333
-0.493792
0.231387
-0.488013
0.228036
-0.481415
0.224284
-0.474008
0.220139
-0.465698
0.215608
-0.456607
0.210699
-0.446748
0.20542
-0.436038
0.19978
-0.424598
0.19379
-0.412443
0.18746
-0.399502
0.180802
-0.385893
0.173826
-0.371633
0.166545
-0.356666
0.158972
-0.341102
0.15112
-0.324963
0.143003
-0.308205
0.134635
-0.290932
0.126031
-0.273168
0.117206
-0.254884
0.108175
-0.236173
0.0989542
-0.217065
0.0895604
-0.197542
0.0800095
-0.177691
0.0703176
-0.157538
0.060503
-0.137086
0.0505824
-0.116406
0.0405723
-0.0955279
0.0304918
-0.074468
0.0203578
-0.0532854
0.0101874
-0.0320109
-0.0106755
-0.0111933
0.0116702
-0.0223678
0.0349936
-0.0335022
0.0582503
-0.0445777
0.0814067
-0.0555758
0.104429
-0.0664756
0.127252
-0.0772587
0.149859
-0.087907
0.172217
-0.0984003
0.194247
-0.108721
0.215949
-0.118852
0.23729
-0.128773
0.258179
-0.138468
0.278633
-0.147921
0.29862
-0.157114
0.318039
-0.166032
0.336922
-0.174658
0.355242
-0.182978
0.372884
-0.190976
0.389899
-0.198641
0.40626
-0.205956
0.421849
-0.212909
0.436727
-0.21949
0.450873
-0.225685
0.46416
-0.231485
0.476667
-0.236878
0.488374
-0.241856
0.499152
-0.246409
0.50909
-0.25053
0.518174
-0.254212
0.526272
-0.257448
0.533485
-0.260232
0.539802
-0.262559
0.545092
-0.264426
0.549466
-0.26583
0.552918
-0.266766
0.555316
-0.267235
0.556782
-0.267235
0.557313
-0.266766
0.556783
-0.26583
0.555317
-0.264426
0.552919
-0.262559
0.549468
-0.260232
0.545095
-0.257448
0.539806
-0.254212
0.533488
-0.25053
0.526276
-0.246409
0.518179
-0.241856
0.509095
-0.236878
0.499157
-0.231485
0.48838
-0.225685
0.476673
-0.21949
0.464166
-0.212909
0.450879
-0.205956
0.436733
-0.198641
0.421855
-0.190976
0.406267
-0.182978
0.389905
-0.174658
0.372891
-0.166032
0.355248
-0.157114
0.336929
-0.147921
0.318045
-0.138468
0.298626
-0.128773
0.278638
-0.118852
0.258184
-0.108721
0.237295
-0.0984003
0.215953
-0.087907
0.194252
-0.0772589
0.172217
-0.0664756
0.149866
-0.0555756
0.127258
-0.0445779
0.104427
-0.0335022
0.0814106
-0.0223675
0.0582527
-0.0111936
0.0349928
8.89842e-13
0.011671
0.0111936
-0.011671
0.0223677
-0.0349928
0.0335025
-0.0582527
0.0445786
-0.0814106
0.0555767
-0.104427
0.0664771
-0.127258
0.077261
-0.149866
0.0879097
-0.172217
0.0984037
-0.194252
0.108725
-0.215953
0.118856
-0.237295
0.128779
-0.258184
0.138475
-0.278638
0.147929
-0.298626
0.157123
-0.318045
0.166041
-0.336929
0.174669
-0.355248
0.18299
-0.372891
0.190989
-0.389905
0.198654
-0.406267
0.20597
-0.421855
0.212925
-0.436733
0.219507
-0.450879
0.225703
-0.464166
0.231503
-0.476673
0.236898
-0.48838
0.241876
-0.499157
0.24643
-0.509095
0.250552
-0.518179
0.254235
-0.526276
0.257471
-0.533488
0.260256
-0.539806
0.262583
-0.545095
0.264451
-0.549468
0.265854
-0.552919
0.266791
-0.555317
0.26726
-0.556783
0.26726
-0.557313
0.266791
-0.556782
0.265854
-0.555316
0.264451
-0.552918
0.262583
-0.549466
0.260256
-0.545092
0.257471
-0.539802
0.254235
-0.533485
0.250552
-0.526272
0.24643
-0.518174
0.241876
-0.50909
0.236898
-0.499152
0.231503
-0.488374
0.225703
-0.476667
0.219507
-0.46416
0.212925
-0.450873
0.20597
-0.436727
0.198654
-0.421849
0.190989
-0.40626
0.18299
-0.389899
0.174669
-0.372884
0.166041
-0.355242
0.157123
-0.336922
0.147929
-0.318039
0.138475
-0.29862
0.128779
-0.278633
0.118856
-0.258179
0.108725
-0.23729
0.0984037
-0.215949
0.0879097
-0.194247
0.0772608
-0.172217
0.0664771
-0.149859
0.0555769
-0.127252
0.0445784
-0.104429
0.0335025
-0.0814067
0.022368
-0.0582503
0.0111934
-0.0349936
-0.0116702
-0.0121796
0.0126444
-0.0243387
0.0379148
-0.0364541
0.0631131
-0.0485056
0.0882025
-0.0604728
0.113147
-0.072333
0.137875
-0.0840662
0.16237
-0.0956528
0.186594
-0.107071
0.210463
-0.118301
0.233976
-0.129324
0.257099
-0.14012
0.279732
-0.150669
0.301893
-0.160955
0.323549
-0.170958
0.344589
-0.180661
0.365049
-0.190048
0.384897
-0.199101
0.404013
-0.207804
0.422448
-0.216144
0.440175
-0.224103
0.457065
-0.23167
0.473184
-0.23883
0.488512
-0.245571
0.502908
-0.251882
0.516459
-0.25775
0.529144
-0.263167
0.540821
-0.268121
0.551589
-0.272606
0.561432
-0.276612
0.570205
-0.280133
0.57802
-0.283162
0.584865
-0.285695
0.590597
-0.287726
0.595336
-0.289253
0.599076
-0.290272
0.601674
-0.290782
0.603263
-0.290782
0.603838
-0.290272
0.603263
-0.289253
0.601676
-0.287726
0.599077
-0.285695
0.595338
-0.283162
0.5906
-0.280133
0.584869
-0.276612
0.578024
-0.272606
0.57021
-0.268121
0.561437
-0.263167
0.551595
-0.25775
0.540827
-0.251882
0.52915
-0.245571
0.516466
-0.23883
0.502915
-0.23167
0.488519
-0.224103
0.473192
-0.216144
0.457072
-0.207804
0.440183
-0.199101
0.422455
-0.190048
0.40402
-0.180661
0.384904
-0.170958
0.365056
-0.160955
0.344596
-0.150669
0.323556
-0.14012
0.301899
-0.129324
0.279738
-0.118301
0.257105
-0.107071
0.233981
-0.0956528
0.210468
-0.0840665
0.186594
-0.072333
0.162377
-0.0604725
0.137881
-0.0485059
0.113144
-0.0364541
0.0882069
-0.0243384
0.0631157
-0.0121799
0.0379141
9.53312e-13
0.0126453
0.0121799
-0.0126453
0.0243386
-0.0379141
0.0364546
-0.0631157
0.0485066
-0.0882069
0.0604737
-0.113144
0.0723346
-0.137881
0.0840687
-0.162377
0.0956557
-0.186594
0.107074
-0.210468
0.118305
-0.233981
0.129329
-0.257105
0.140126
-0.279738
0.150676
-0.301899
0.160963
-0.323556
0.170967
-0.344596
0.180672
-0.365056
0.190059
-0.384904
0.199113
-0.40402
0.207818
-0.422455
0.216158
-0.440183
0.224119
-0.457072
0.231686
-0.473192
0.238848
-0.488519
0.24559
-0.502915
0.251901
-0.516466
0.257771
-0.52915
0.263188
-0.540827
0.268144
-0.551595
0.272629
-0.561437
0.276636
-0.57021
0.280157
-0.578024
0.283187
-0.584869
0.28572
-0.5906
0.287752
-0.595338
0.289279
-0.599077
0.290299
-0.601676
0.290809
-0.603263
0.290809
-0.603838
0.290299
-0.603263
0.289279
-0.601674
0.287752
-0.599076
0.28572
-0.595336
0.283187
-0.590597
0.280157
-0.584865
0.276636
-0.57802
0.272629
-0.570205
0.268144
-0.561432
0.263188
-0.551589
0.257771
-0.540821
0.251901
-0.529144
0.24559
-0.516459
0.238848
-0.502908
0.231686
-0.488512
0.224119
-0.473184
0.216158
-0.457065
0.207818
-0.440175
0.199113
-0.422448
0.190059
-0.404013
0.180672
-0.384897
0.170967
-0.365049
0.160963
-0.344589
0.150676
-0.323549
0.140126
-0.301893
0.129329
-0.279732
0.118305
-0.257099
0.107074
-0.233976
0.0956557
-0.210463
0.0840684
-0.186594
0.0723346
-0.16237
0.0604739
-0.137875
0.0485063
-0.113147
0.0364546
-0.0882025
0.0243389
-0.0631131
0.0121796
-0.0379148
-0.0126444
-0.0131445
0.0135964
-0.0262669
0.0407696
-0.0393422
0.067865
-0.0523484
0.0948435
-0.0652637
0.121666
-0.0780635
0.148256
-0.0907263
0.174595
-0.103231
0.200643
-0.115553
0.22631
-0.127673
0.251593
-0.13957
0.276457
-0.15122
0.300794
-0.162606
0.324623
-0.173707
0.34791
-0.184502
0.370535
-0.194974
0.392534
-0.205105
0.413877
-0.214874
0.434432
-0.224267
0.454255
-0.233267
0.473318
-0.241858
0.491479
-0.250024
0.508812
-0.257751
0.525293
-0.265027
0.540774
-0.271837
0.555345
-0.278171
0.568985
-0.284016
0.581542
-0.289363
0.59312
-0.294203
0.603704
-0.298526
0.613138
-0.302326
0.621542
-0.305596
0.628902
-0.308329
0.635065
-0.310521
0.640161
-0.312169
0.644182
-0.313269
0.646977
-0.313819
0.648685
-0.313819
0.649303
-0.313269
0.648686
-0.312169
0.646979
-0.310521
0.644185
-0.308329
0.640164
-0.305596
0.635069
-0.302326
0.628907
-0.298526
0.621547
-0.294203
0.613144
-0.289363
0.60371
-0.284016
0.593127
-0.278171
0.581549
-0.271837
0.568993
-0.265027
0.555353
-0.257751
0.540782
-0.250024
0.525302
-0.241858
0.508821
-0.233267
0.491487
-0.224267
0.473326
-0.214874
0.454264
-0.205105
0.434441
-0.194974
0.413886
-0.184502
0.392543
-0.173707
0.370543
-0.162606
0.347918
-0.15122
0.324631
-0.13957
0.300801
-0.127673
0.276463
-0.115553
0.251599
-0.103231
0.226315
-0.0907266
0.200644
-0.0780635
0.174604
-0.0652634
0.148263
-0.0523487
0.121663
-0.0393422
0.0948485
-0.0262666
0.0678681
-0.0131448
0.0407688
1.01262e-12
0.0135974
0.0131449
-0.0135974
0.0262668
-0.0407688
0.0393426
-0.0678681
0.0523495
-0.0948485
0.0652646
-0.121663
0.0780652
-0.148263
0.0907289
-0.174604
0.103234
-0.200644
0.115557
-0.226315
0.127678
-0.251599
0.139575
-0.276463
0.151227
-0.300801
0.162613
-0.324631
0.173715
-0.347918
0.184512
-0.370543
0.194985
-0.392543
0.205116
-0.413886
0.214887
-0.434441
0.224282
-0.454264
0.233283
-0.473326
0.241874
-0.491487
0.250041
-0.508821
0.25777
-0.525302
0.265046
-0.540782
0.271858
-0.555353
0.278192
-0.568993
0.284039
-0.581549
0.289387
-0.593127
0.294227
-0.60371
0.298551
-0.613144
0.302352
-0.621547
0.305622
-0.628907
0.308356
-0.635069
0.310549
-0.640164
0.312197
-0.644185
0.313297
-0.646979
0.313847
-0.648686
0.313847
-0.649303
0.313297
-0.648685
0.312197
-0.646977
0.310549
-0.644182
0.308356
-0.640161
0.305622
-0.635065
0.302352
-0.628902
0.298551
-0.621542
0.294227
-0.613138
0.289387
-0.603704
0.284039
-0.59312
0.278192
-0.581542
0.271858
-0.568985
0.265046
-0.555345
0.25777
-0.540774
0.250041
-0.525293
0.241874
-0.508812
0.233283
-0.491479
0.224282
-0.473318
0.214887
-0.454255
0.205116
-0.434432
0.194985
-0.413877
0.184512
-0.392534
0.173715
-0.370535
0.162613
-0.34791
0.151227
-0.324623
0.139575
-0.300794
0.127678
-0.276457
0.115557
-0.251593
0.103234
-0.22631
0.0907286
-0.200643
0.0780652
-0.174595
0.0652649
-0.148256
0.0523492
-0.121666
0.0393426
-0.0948435
0.0262671
-0.067865
0.0131446
-0.0407696
-0.0135964
-0.0140864
0.0145246
-0.028149
0.0435528
-0.0421612
0.072498
-0.0560993
0.101318
-0.0699401
0.129971
-0.083657
0.158377
-0.0972272
0.186514
-0.110628
0.214341
-0.123833
0.241759
-0.136821
0.268768
-0.14957
0.295329
-0.162056
0.321328
-0.174257
0.346784
-0.186154
0.371661
-0.197723
0.39583
-0.208945
0.419332
-0.219801
0.442132
-0.230271
0.46409
-0.240337
0.485266
-0.249982
0.50563
-0.259188
0.52503
-0.267939
0.543547
-0.27622
0.561154
-0.284017
0.577691
-0.291315
0.593257
-0.298103
0.607828
-0.304367
0.621242
-0.310097
0.633611
-0.315284
0.644917
-0.319917
0.654996
-0.323989
0.663973
-0.327493
0.671836
-0.330422
0.67842
-0.332771
0.683863
-0.334537
0.688159
-0.335716
0.691145
-0.336306
0.692969
-0.336306
0.69363
-0.335716
0.69297
-0.334537
0.691146
-0.332771
0.688162
-0.330422
0.683867
-0.327493
0.678424
-0.323989
0.671841
-0.319917
0.663978
-0.315284
0.655002
-0.310097
0.644924
-0.304367
0.633619
-0.298103
0.62125
-0.291315
0.607837
-0.284017
0.593266
-0.27622
0.577701
-0.267939
0.561163
-0.259188
0.543557
-0.249982
0.52504
-0.240337
0.505639
-0.230271
0.485276
-0.219801
0.464099
-0.208945
0.442141
-0.197723
0.419341
-0.186154
0.395839
-0.174257
0.37167
-0.162056
0.346793
-0.14957
0.321336
-0.136821
0.295337
-0.123833
0.268775
-0.110628
0.241765
-0.0972275
0.214342
-0.083657
0.186524
-0.0699398
0.158385
-0.0560997
0.129969
-0.0421612
0.101324
-0.0281487
0.0725013
-0.0140867
0.043552
1.06784e-12
0.0145257
0.0140867
-0.0145257
0.0281489
-0.043552
0.0421616
-0.0725013
0.0561005
-0.101324
0.069941
-0.129969
0.0836588
-0.158385
0.0972299
-0.186524
0.110631
-0.214342
0.123837
-0.241765
0.136826
-0.268775
0.149576
-0.295337
0.162063
-0.321336
0.174265
-0.346793
0.186163
-0.37167
0.197733
-0.395839
0.208956
-0.419341
0.219814
-0.442141
0.230285
-0.464099
0.240352
-0.485276
0.249998
-0.505639
0.259205
-0.52504
0.267957
-0.543557
0.27624
-0.561163
0.284038
-0.577701
0.291337
-0.593266
0.298126
-0.607837
0.304391
-0.62125
0.310122
-0.633619
0.31531
-0.644924
0.319943
-0.655002
0.324016
-0.663978
0.327521
-0.671841
0.33045
-0.678424
0.3328
-0.683867
0.334566
-0.688162
0.335745
-0.691146
0.336335
-0.69297
0.336335
-0.69363
0.335745
-0.692969
0.334566
-0.691145
0.3328
-0.688159
0.33045
-0.683863
0.327521
-0.67842
0.324016
-0.671836
0.319943
-0.663973
0.31531
-0.654996
0.310122
-0.644917
0.304391
-0.633611
0.298126
-0.621242
0.291337
-0.607828
0.284038
-0.593257
0.27624
-0.577691
0.267957
-0.561154
0.259205
-0.543547
0.249998
-0.52503
0.240352
-0.50563
0.230285
-0.485266
0.219814
-0.46409
0.208956
-0.442132
0.197733
-0.419332
0.186163
-0.39583
0.174265
-0.371661
0.162063
-0.346784
0.149576
-0.321328
0.136826
-0.295329
0.123837
-0.268768
0.110631
-0.241759
0.0972296
-0.214341
0.0836588
-0.186514
0.0699413
-0.158377
0.0561002
-0.129971
0.0421616
-0.101318
0.0281492
-0.072498
0.0140864
-0.0435528
-0.0145246
-0.0150035
0.0154273
-0.0299818
0.0462596
-0.0449062
0.0770037
-0.0597519
0.107615
-0.0744938
0.138049
-0.0891038
0.16822
-0.103557
0.198106
-0.117831
0.227662
-0.131896
0.256784
-0.14573
0.285472
-0.159309
0.313684
-0.172607
0.341299
-0.185603
0.368337
-0.198274
0.39476
-0.210596
0.420431
-0.222549
0.445393
-0.234112
0.46961
-0.245264
0.492933
-0.255985
0.515425
-0.266258
0.537054
-0.276063
0.557661
-0.285384
0.577329
-0.294205
0.59603
-0.302509
0.613595
-0.310282
0.630128
-0.317512
0.645605
-0.324184
0.659853
-0.330287
0.67299
-0.335812
0.684999
-0.340747
0.695704
-0.345084
0.705239
-0.348816
0.713591
-0.351936
0.720584
-0.354438
0.726366
-0.356319
0.730929
-0.357575
0.7341
-0.358203
0.736038
-0.358203
0.73674
-0.357575
0.736039
-0.356319
0.734102
-0.354438
0.730932
-0.351936
0.72637
-0.348816
0.720588
-0.345084
0.713596
-0.340747
0.705245
-0.335812
0.695711
-0.330287
0.685007
-0.324184
0.672999
-0.317512
0.659861
-0.310282
0.645615
-0.302509
0.630138
-0.294205
0.613605
-0.285384
0.59604
-0.276063
0.57734
-0.266258
0.557672
-0.255985
0.537066
-0.245264
0.515436
-0.234112
0.492944
-0.222549
0.469621
-0.210596
0.445404
-0.198274
0.420441
-0.185603
0.39477
-0.172607
0.368347
-0.159309
0.341308
-0.14573
0.313693
-0.131896
0.28548
-0.117831
0.256792
-0.103558
0.227664
-0.0891038
0.198116
-0.0744934
0.168229
-0.0597522
0.138047
-0.0449062
0.107621
-0.0299814
0.0770074
-0.0150038
0.0462589
1.11895e-12
0.0154285
0.0150039
-0.0154285
0.0299816
-0.0462589
0.0449067
-0.0770074
0.0597531
-0.107621
0.0744947
-0.138047
0.0891057
-0.168229
0.10356
-0.198116
0.117834
-0.227664
0.1319
-0.256792
0.145735
-0.28548
0.159315
-0.313693
0.172614
-0.341308
0.185611
-0.368347
0.198283
-0.39477
0.210607
-0.420441
0.222561
-0.445404
0.234125
-0.469621
0.245278
-0.492944
0.256001
-0.515436
0.266275
-0.537066
0.276081
-0.557672
0.285403
-0.57734
0.294225
-0.59604
0.302531
-0.613605
0.310305
-0.630138
0.317536
-0.645615
0.324209
-0.659861
0.330313
-0.672999
0.335838
-0.685007
0.340774
-0.695711
0.345112
-0.705245
0.348844
-0.713596
0.351965
-0.720588
0.354468
-0.72637
0.356349
-0.730932
0.357605
-0.734102
0.358233
-0.736039
0.358233
-0.73674
0.357605
-0.736038
0.356349
-0.7341
0.354468
-0.730929
0.351965
-0.726366
0.348844
-0.720584
0.345112
-0.713591
0.340774
-0.705239
0.335838
-0.695704
0.330313
-0.684999
0.324209
-0.67299
0.317536
-0.659853
0.310305
-0.645605
0.302531
-0.630128
0.294225
-0.613595
0.285403
-0.59603
0.276081
-0.577329
0.266275
-0.557661
0.256001
-0.537054
0.245278
-0.515425
0.234125
-0.492933
0.222561
-0.46961
0.210607
-0.445393
0.198283
-0.420431
0.185611
-0.39476
0.172614
-0.368337
0.159315
-0.341299
0.145735
-0.313684
0.1319
-0.285472
0.117834
-0.256784
0.10356
-0.227662
0.0891057
-0.198106
0.0744951
-0.16822
0.0597527
-0.138049
0.0449067
-0.107615
0.029982
-0.0770037
0.0150036
-0.0462596
-0.0154273
-0.0158943
0.016303
-0.0317619
0.0488852
-0.0475725
0.0813744
-0.0632996
0.113723
-0.0789168
0.145885
-0.0943943
0.177768
-0.109706
0.20935
-0.124827
0.240584
-0.139727
0.271359
-0.154382
0.301675
-0.168768
0.331489
-0.182856
0.36067
-0.196623
0.389243
-0.210046
0.417166
-0.2231
0.444294
-0.235763
0.470673
-0.248013
0.496265
-0.259826
0.520911
-0.271184
0.54468
-0.282067
0.567537
-0.292455
0.589314
-0.302329
0.610098
-0.311673
0.62986
-0.320471
0.648422
-0.328706
0.665894
-0.336364
0.682249
-0.343433
0.697305
-0.349898
0.711189
-0.355751
0.723879
-0.360979
0.735192
-0.365573
0.745268
-0.369527
0.754094
-0.372832
0.761484
-0.375483
0.767594
-0.377475
0.772416
-0.378806
0.775767
-0.379471
0.777815
-0.379471
0.778557
-0.378806
0.777816
-0.377475
0.775769
-0.375483
0.772419
-0.372832
0.767598
-0.369527
0.761489
-0.365573
0.7541
-0.360979
0.745275
-0.355751
0.735199
-0.349898
0.723888
-0.343433
0.711198
-0.336364
0.697315
-0.328706
0.68226
-0.320471
0.665905
-0.311673
0.648434
-0.302329
0.629872
-0.292455
0.61011
-0.282067
0.589326
-0.271184
0.56755
-0.259826
0.544693
-0.248013
0.520924
-0.235763
0.496277
-0.2231
0.470685
-0.210046
0.444306
-0.196623
0.417177
-0.182856
0.389254
-0.168768
0.360681
-0.154382
0.331498
-0.139727
0.301684
-0.124827
0.271367
-0.109706
0.240586
-0.0943943
0.209362
-0.0789164
0.177778
-0.0633
0.145883
-0.0475725
0.11373
-0.0317615
0.0813784
-0.0158947
0.0488846
1.16581e-12
0.0163042
0.0158947
-0.0163042
0.0317618
-0.0488846
0.047573
-0.0813784
0.0633008
-0.11373
0.0789178
-0.145883
0.0943962
-0.177778
0.109709
-0.209362
0.12483
-0.240586
0.139731
-0.271367
0.154387
-0.301684
0.168774
-0.331498
0.182863
-0.360681
0.196631
-0.389254
0.210056
-0.417177
0.223111
-0.444306
0.235775
-0.470685
0.248026
-0.496277
0.259841
-0.520924
0.2712
-0.544693
0.282084
-0.56755
0.292473
-0.589326
0.302349
-0.61011
0.311694
-0.629872
0.320493
-0.648434
0.328729
-0.665905
0.336389
-0.68226
0.343458
-0.697315
0.349925
-0.711198
0.355778
-0.723888
0.361007
-0.735199
0.365602
-0.745275
0.369556
-0.7541
0.372862
-0.761489
0.375513
-0.767598
0.377506
-0.772419
0.378837
-0.775769
0.379502
-0.777816
0.379502
-0.778557
0.378837
-0.777815
0.377506
-0.775767
0.375513
-0.772416
0.372862
-0.767594
0.369556
-0.761484
0.365602
-0.754094
0.361007
-0.745268
0.355778
-0.735192
0.349925
-0.723879
0.343458
-0.711189
0.336389
-0.697305
0.328729
-0.682249
0.320493
-0.665894
0.311694
-0.648422
0.302349
-0.62986
0.292473
-0.610098
0.282084
-0.589314
0.2712
-0.567537
0.259841
-0.54468
0.248026
-0.520911
0.235775
-0.496265
0.223111
-0.470673
0.210056
-0.444294
0.196631
-0.417166
0.182863
-0.389243
0.168774
-0.36067
0.154387
-0.331489
0.139731
-0.301675
0.12483
-0.271359
0.109709
-0.240584
0.0943962
-0.20935
0.0789181
-0.177768
0.0633005
-0.145885
0.047573
-0.113723
0.0317621
-0.0813744
0.0158944
-0.0488852
-0.016303
-0.0167573
0.01715
-0.0334863
0.0514251
-0.0501553
0.0856022
-0.0667363
0.119632
-0.0832014
0.153464
-0.0995192
0.187005
-0.115662
0.220227
-0.131604
0.253083
-0.147313
0.285458
-0.162764
0.317349
-0.17793
0.348711
-0.192783
0.379409
-0.207298
0.409467
-0.22145
0.43884
-0.235213
0.467378
-0.248563
0.495127
-0.261478
0.522049
-0.273933
0.547976
-0.285908
0.57298
-0.297382
0.597024
-0.308333
0.619932
-0.318743
0.641796
-0.328595
0.662585
-0.33787
0.682112
-0.346552
0.700491
-0.354627
0.717696
-0.362079
0.733535
-0.368895
0.74814
-0.375066
0.76149
-0.380577
0.77339
-0.385421
0.78399
-0.38959
0.793274
-0.393074
0.801048
-0.395869
0.807476
-0.39797
0.812548
-0.399372
0.816073
-0.400074
0.818228
-0.400074
0.819008
-0.399372
0.818229
-0.39797
0.816076
-0.395869
0.812552
-0.393074
0.80748
-0.38959
0.801054
-0.385421
0.793281
-0.380577
0.783997
-0.375066
0.773398
-0.368895
0.761499
-0.362079
0.74815
-0.354627
0.733546
-0.346552
0.717708
-0.33787
0.700504
-0.328595
0.682125
-0.318743
0.662598
-0.308333
0.64181
-0.297382
0.619946
-0.285908
0.597038
-0.273933
0.572994
-0.261478
0.547989
-0.248563
0.522062
-0.235213
0.495141
-0.22145
0.467391
-0.207298
0.438853
-0.192783
0.409479
-0.17793
0.379421
-0.162764
0.348722
-0.147313
0.317359
-0.131604
0.285467
-0.115663
0.253086
-0.0995192
0.220239
-0.083201
0.187014
-0.0667367
0.153462
-0.0501553
0.119639
-0.0334859
0.0856066
-0.0167576
0.0514245
1.20847e-12
0.0171514
0.0167577
-0.0171514
0.0334862
-0.0514245
0.0501558
-0.0856066
0.0667375
-0.119639
0.0832024
-0.153462
0.0995211
-0.187014
0.115665
-0.220239
0.131607
-0.253086
0.147317
-0.285467
0.162769
-0.317359
0.177937
-0.348722
0.192791
-0.379421
0.207307
-0.409479
0.22146
-0.438853
0.235224
-0.467391
0.248575
-0.495141
0.261491
-0.522062
0.273948
-0.547989
0.285924
-0.572994
0.297399
-0.597038
0.308352
-0.619946
0.318763
-0.64181
0.328617
-0.662598
0.337893
-0.682125
0.346576
-0.700504
0.354652
-0.717708
0.362105
-0.733546
0.368922
-0.74815
0.375093
-0.761499
0.380606
-0.773398
0.385451
-0.783997
0.38962
-0.793281
0.393105
-0.801054
0.3959
-0.80748
0.398001
-0.812552
0.399404
-0.816076
0.400106
-0.818229
0.400106
-0.819008
0.399404
-0.818228
0.398001
-0.816073
0.3959
-0.812548
0.393105
-0.807476
0.38962
-0.801048
0.385451
-0.793274
0.380606
-0.78399
0.375093
-0.77339
0.368922
-0.76149
0.362105
-0.74814
0.354652
-0.733535
0.346576
-0.717696
0.337893
-0.700491
0.328617
-0.682112
0.318763
-0.662585
0.308352
-0.641796
0.297399
-0.619932
0.285924
-0.597024
0.273948
-0.57298
0.261491
-0.547976
0.248575
-0.522049
0.235224
-0.495127
0.22146
-0.467378
0.207307
-0.43884
0.192791
-0.409467
0.177937
-0.379409
0.162769
-0.348711
0.147317
-0.317349
0.131607
-0.285458
0.115665
-0.253083
0.0995211
-0.220227
0.0832027
-0.187005
0.0667372
-0.153464
0.0501558
-0.119632
0.0334865
-0.0856022
0.0167573
-0.0514251
-0.01715
-0.0175908
0.017967
-0.035152
0.0538747
-0.0526501
0.0896799
-0.0700559
0.12533
-0.08734
0.160775
-0.104469
0.195913
-0.121416
0.230718
-0.13815
0.265139
-0.154641
0.299056
-0.17086
0.332466
-0.186781
0.365322
-0.202373
0.397483
-0.21761
0.428972
-0.232466
0.459745
-0.246913
0.489642
-0.260927
0.518713
-0.274485
0.546917
-0.287559
0.574079
-0.30013
0.600274
-0.312174
0.625464
-0.32367
0.649463
-0.334598
0.672369
-0.34494
0.694148
-0.354677
0.714605
-0.363791
0.73386
-0.372267
0.751884
-0.38009
0.768477
-0.387246
0.783778
-0.393723
0.797764
-0.399508
0.810231
-0.404593
0.821336
-0.408969
0.831063
-0.412627
0.839207
-0.415561
0.845941
-0.417766
0.851255
-0.419238
0.854948
-0.419975
0.857205
-0.419975
0.858022
-0.419238
0.857206
-0.417766
0.85495
-0.415561
0.851259
-0.412627
0.845946
-0.408969
0.839213
-0.404593
0.83107
-0.399508
0.821344
-0.393723
0.81024
-0.387246
0.797774
-0.38009
0.783789
-0.372267
0.768489
-0.363791
0.751897
-0.354677
0.733873
-0.34494
0.714619
-0.334598
0.694162
-0.32367
0.672383
-0.312174
0.649478
-0.30013
0.625479
-0.287559
0.600289
-0.274485
0.574094
-0.260927
0.546932
-0.246913
0.518728
-0.232466
0.489656
-0.21761
0.459758
-0.202373
0.428985
-0.186781
0.397495
-0.17086
0.365334
-0.154641
0.332477
-0.13815
0.299066
-0.121416
0.265142
-0.104469
0.230731
-0.0873396
0.195923
-0.0700563
0.160773
-0.0526501
0.125338
-0.0351516
0.0896847
-0.0175912
0.0538742
1.2468e-12
0.0179684
0.0175912
-0.0179684
0.0351518
-0.0538742
0.0526507
-0.0896847
0.0700572
-0.125338
0.087341
-0.160773
0.104471
-0.195923
0.121419
-0.230731
0.138154
-0.265142
0.154645
-0.299066
0.170866
-0.332477
0.186787
-0.365334
0.20238
-0.397495
0.217618
-0.428985
0.232476
-0.459758
0.246924
-0.489656
0.26094
-0.518728
0.274498
-0.546932
0.287574
-0.574094
0.300146
-0.600289
0.312192
-0.625479
0.323689
-0.649478
0.334619
-0.672383
0.344962
-0.694162
0.3547
-0.714619
0.363815
-0.733873
0.372292
-0.751897
0.380116
-0.768489
0.387273
-0.783789
0.393751
-0.797774
0.399537
-0.81024
0.404623
-0.821344
0.409
-0.83107
0.412658
-0.839213
0.415592
-0.845946
0.417798
-0.851259
0.41927
-0.85495
0.420007
-0.857206
0.420007
-0.858022
0.41927
-0.857205
0.417798
-0.854948
0.415592
-0.851255
0.412658
-0.845941
0.409
-0.839207
0.404623
-0.831063
0.399537
-0.821336
0.393751
-0.810231
0.387273
-0.797764
0.380116
-0.783778
0.372292
-0.768477
0.363815
-0.751884
0.3547
-0.73386
0.344962
-0.714605
0.334619
-0.694148
0.323689
-0.672369
0.312192
-0.649463
0.300146
-0.625464
0.287574
-0.600274
0.274498
-0.574079
0.26094
-0.546917
0.246924
-0.518713
0.232476
-0.489642
0.217618
-0.459745
0.20238
-0.428972
0.186787
-0.397483
0.170866
-0.365322
0.154645
-0.332466
0.138154
-0.299056
0.121418
-0.265139
0.104471
-0.230718
0.0873414
-0.195913
0.0700568
-0.160775
0.0526507
-0.12533
0.0351522
-0.0896799
0.0175909
-0.0538747
-0.017967
-0.0183935
0.0187524
-0.036756
0.0562299
-0.0550526
0.0936003
-0.0732526
0.130809
-0.0913254
0.167803
-0.109237
0.204477
-0.126956
0.240803
-0.144454
0.27673
-0.161697
0.312129
-0.178657
0.347
-0.195304
0.381293
-0.211607
0.414859
-0.22754
0.447725
-0.243074
0.479842
-0.25818
0.511046
-0.272834
0.541389
-0.28701
0.570825
-0.300681
0.599175
-0.313825
0.626515
-0.326419
0.652806
-0.33844
0.677854
-0.349867
0.701761
-0.360681
0.724493
-0.370861
0.745844
-0.380391
0.765941
-0.389254
0.784753
-0.397434
0.802072
-0.404916
0.818041
-0.411689
0.832639
-0.417739
0.845651
-0.423056
0.857241
-0.427631
0.867393
-0.431456
0.875893
-0.434524
0.882922
-0.43683
0.888468
-0.438369
0.892323
-0.439139
0.894678
-0.439139
0.895532
-0.438369
0.89468
-0.43683
0.892325
-0.434524
0.888472
-0.431456
0.882927
-0.427631
0.8759
-0.423056
0.867401
-0.417739
0.85725
-0.411689
0.845661
-0.404916
0.83265
-0.397434
0.818054
-0.389254
0.802085
-0.380391
0.784767
-0.370861
0.765955
-0.360681
0.745859
-0.349867
0.724508
-0.33844
0.701777
-0.326419
0.677871
-0.313825
0.652823
-0.300681
0.626532
-0.28701
0.599191
-0.272834
0.570841
-0.25818
0.541405
-0.243074
0.511062
-0.22754
0.479857
-0.211607
0.447739
-0.195304
0.414872
-0.178657
0.381305
-0.161697
0.347012
-0.144454
0.31214
-0.126956
0.276734
-0.109237
0.240818
-0.091325
0.204488
-0.073253
0.167801
-0.0550526
0.130817
-0.0367556
0.0936054
-0.0183939
0.0562294
1.28104e-12
0.0187539
0.0183939
-0.0187539
0.0367558
-0.0562294
0.0550531
-0.0936054
0.0732539
-0.130817
0.0913263
-0.167801
0.109239
-0.204488
0.126959
-0.240818
0.144457
-0.276734
0.161702
-0.31214
0.178662
-0.347012
0.19531
-0.381305
0.211615
-0.414872
0.227548
-0.447739
0.243084
-0.479857
0.258191
-0.511062
0.272846
-0.541405
0.287023
-0.570841
0.300696
-0.599191
0.313841
-0.626532
0.326437
-0.652823
0.338459
-0.677871
0.349887
-0.701777
0.360702
-0.724508
0.370884
-0.745859
0.380415
-0.765955
0.389279
-0.784767
0.39746
-0.802085
0.404944
-0.818054
0.411717
-0.83265
0.417768
-0.845661
0.423086
-0.85725
0.427662
-0.867401
0.431487
-0.8759
0.434555
-0.882927
0.436862
-0.888472
0.438401
-0.892325
0.439172
-0.89468
0.439172
-0.895532
0.438401
-0.894678
0.436862
-0.892323
0.434555
-0.888468
0.431487
-0.882922
0.427662
-0.875893
0.423086
-0.867393
0.417768
-0.857241
0.411717
-0.845651
0.404944
-0.832639
0.39746
-0.818041
0.389279
-0.802072
0.380415
-0.784753
0.370884
-0.765941
0.360702
-0.745844
0.349887
-0.724493
0.338459
-0.701761
0.326437
-0.677854
0.313841
-0.652806
0.300696
-0.626515
0.287023
-0.599175
0.272846
-0.570825
0.258191
-0.541389
0.243084
-0.511046
0.227548
-0.479842
0.211615
-0.447725
0.19531
-0.414859
0.178662
-0.381293
0.161702
-0.347
0.144457
-0.312129
0.126959
-0.27673
0.109239
-0.240803
0.0913268
-0.204477
0.0732535
-0.167803
0.0550531
-0.130809
0.0367562
-0.0936003
0.0183935
-0.0562299
-0.0187524
-0.0191639
0.0195049
-0.0382955
0.0584864
-0.0573585
0.0973564
-0.0763208
0.136059
-0.0951505
0.174537
-0.113812
0.212683
-0.132274
0.250467
-0.150504
0.287835
-0.16847
0.324655
-0.18614
0.360925
-0.203484
0.396594
-0.220471
0.431507
-0.23707
0.465692
-0.253255
0.499098
-0.268994
0.531555
-0.284262
0.563115
-0.299031
0.593732
-0.313275
0.62322
-0.32697
0.651657
-0.340092
0.679003
-0.352616
0.705057
-0.364521
0.729923
-0.375788
0.753566
-0.386395
0.775775
-0.396324
0.796678
-0.405559
0.816246
-0.414081
0.834259
-0.421877
0.850869
-0.428933
0.866053
-0.435236
0.879587
-0.440776
0.891642
-0.445543
0.902202
-0.449528
0.911043
-0.452725
0.918354
-0.455127
0.924123
-0.456731
0.928132
-0.457533
0.930582
-0.457533
0.93147
-0.456731
0.930584
-0.455127
0.928135
-0.452725
0.924127
-0.449528
0.91836
-0.445543
0.91105
-0.440776
0.90221
-0.435236
0.891652
-0.428933
0.879598
-0.421877
0.866065
-0.414081
0.850883
-0.405559
0.834273
-0.396324
0.816261
-0.386395
0.796694
-0.375788
0.775791
-0.364521
0.753583
-0.352616
0.72994
-0.340092
0.705074
-0.32697
0.679021
-0.313275
0.651675
-0.299031
0.623237
-0.284262
0.59375
-0.268994
0.563132
-0.253255
0.531571
-0.23707
0.499115
-0.220471
0.465707
-0.203484
0.431522
-0.18614
0.396607
-0.16847
0.360938
-0.150504
0.324666
-0.132274
0.287839
-0.113812
0.250482
-0.0951501
0.212695
-0.0763212
0.174535
-0.0573585
0.136067
-0.0382951
0.0973619
-0.0191643
0.058486
1.31116e-12
0.0195065
0.0191644
-0.0195065
0.0382953
-0.058486
0.057359
-0.0973619
0.0763221
-0.136067
0.0951515
-0.174535
0.113814
-0.212695
0.132277
-0.250482
0.150508
-0.287839
0.168474
-0.324666
0.186145
-0.360938
0.203491
-0.396607
0.220478
-0.431522
0.237079
-0.465707
0.253265
-0.499115
0.269005
-0.531571
0.284274
-0.563132
0.299045
-0.59375
0.31329
-0.623237
0.326986
-0.651675
0.340109
-0.679021
0.352635
-0.705074
0.364542
-0.72994
0.37581
-0.753583
0.386418
-0.775791
0.396348
-0.796694
0.405584
-0.816261
0.414107
-0.834273
0.421904
-0.850883
0.428961
-0.866065
0.435265
-0.879598
0.440806
-0.891652
0.445574
-0.90221
0.449559
-0.91105
0.452756
-0.91836
0.455159
-0.924127
0.456763
-0.928135
0.457566
-0.930584
0.457566
-0.93147
0.456763
-0.930582
0.455159
-0.928132
0.452756
-0.924123
0.449559
-0.918354
0.445574
-0.911043
0.440806
-0.902202
0.435265
-0.891642
0.428961
-0.879587
0.421904
-0.866053
0.414107
-0.850869
0.405584
-0.834259
0.396348
-0.816246
0.386418
-0.796678
0.37581
-0.775775
0.364542
-0.753566
0.352635
-0.729923
0.340109
-0.705057
0.326986
-0.679003
0.31329
-0.651657
0.299045
-0.62322
0.284274
-0.593732
0.269005
-0.563115
0.253265
-0.531555
0.237079
-0.499098
0.220478
-0.465692
0.203491
-0.431507
0.186145
-0.396594
0.168474
-0.360925
0.150508
-0.324655
0.132276
-0.287835
0.113814
-0.250467
0.0951519
-0.212683
0.0763217
-0.174537
0.057359
-0.136059
0.0382957
-0.0973564
0.0191639
-0.0584864
-0.0195049
-0.0199007
0.0202232
-0.0397679
0.0606402
-0.0595637
0.100942
-0.0792551
0.141069
-0.0988088
0.180964
-0.118188
0.220515
-0.137359
0.259691
-0.156291
0.298435
-0.174947
0.336611
-0.193296
0.374217
-0.211308
0.411199
-0.228947
0.447398
-0.246185
0.482842
-0.262992
0.517479
-0.279336
0.55113
-0.295191
0.583853
-0.310528
0.615598
-0.32532
0.646171
-0.339541
0.675656
-0.353167
0.704009
-0.366173
0.731022
-0.378536
0.756804
-0.390237
0.781318
-0.401251
0.804345
-0.411562
0.826018
-0.421152
0.846306
-0.430001
0.864983
-0.438097
0.882205
-0.445425
0.897947
-0.45197
0.91198
-0.457723
0.924479
-0.462673
0.935428
-0.466812
0.944595
-0.470131
0.952175
-0.472626
0.958156
-0.474291
0.962313
-0.475125
0.964854
-0.475125
0.965774
-0.474291
0.964855
-0.472626
0.962316
-0.470131
0.958161
-0.466812
0.952181
-0.462673
0.944603
-0.457723
0.935437
-0.45197
0.92449
-0.445425
0.911992
-0.438097
0.89796
-0.430001
0.882219
-0.421152
0.864998
-0.411562
0.846322
-0.401251
0.826035
-0.390237
0.804362
-0.378536
0.781337
-0.366173
0.756823
-0.353167
0.731041
-0.339541
0.704028
-0.32532
0.675675
-0.310528
0.64619
-0.295191
0.615617
-0.279336
0.583871
-0.262992
0.551148
-0.246185
0.517496
-0.228947
0.482859
-0.211308
0.447414
-0.193296
0.411214
-0.174947
0.374231
-0.156291
0.336623
-0.13736
0.29844
-0.118188
0.259707
-0.0988084
0.220528
-0.0792555
0.180963
-0.0595637
0.141078
-0.0397674
0.100948
-0.0199011
0.0606399
1.33706e-12
0.0202249
0.0199012
-0.0202249
0.0397676
-0.0606399
0.0595642
-0.100948
0.0792564
-0.141078
0.0988097
-0.180963
0.11819
-0.220528
0.137362
-0.259707
0.156294
-0.29844
0.174952
-0.336623
0.193302
-0.374231
0.211314
-0.411214
0.228955
-0.447414
0.246194
-0.482859
0.263002
-0.517496
0.279348
-0.551148
0.295203
-0.583871
0.310542
-0.615617
0.325335
-0.64619
0.339557
-0.675675
0.353185
-0.704028
0.366192
-0.731041
0.378557
-0.756823
0.390258
-0.781337
0.401274
-0.804362
0.411586
-0.826035
0.421177
-0.846322
0.430028
-0.864998
0.438124
-0.882219
0.445453
-0.89796
0.451999
-0.911992
0.457753
-0.92449
0.462704
-0.935437
0.466843
-0.944603
0.470162
-0.952181
0.472657
-0.958161
0.474323
-0.962316
0.475157
-0.964855
0.475157
-0.965774
0.474323
-0.964854
0.472657
-0.962313
0.470162
-0.958156
0.466843
-0.952175
0.462704
-0.944595
0.457753
-0.935428
0.451999
-0.924479
0.445453
-0.91198
0.438124
-0.897947
0.430028
-0.882205
0.421177
-0.864983
0.411586
-0.846306
0.401274
-0.826018
0.390258
-0.804345
0.378557
-0.781318
0.366192
-0.756804
0.353185
-0.731022
0.339557
-0.704009
0.325335
-0.675656
0.310542
-0.646171
0.295203
-0.615598
0.279348
-0.583853
0.263002
-0.55113
0.246194
-0.517479
0.228955
-0.482842
0.211314
-0.447398
0.193302
-0.411199
0.174952
-0.374217
0.156294
-0.336611
0.137362
-0.298435
0.11819
-0.259691
0.0988102
-0.220515
0.079256
-0.180964
0.0595642
-0.141069
0.0397681
-0.100942
0.0199007
-0.0606402
-0.0202232
-0.0206025
0.020906
-0.0411704
0.0626877
-0.0616645
0.10435
-0.0820503
0.145832
-0.102294
0.187075
-0.122356
0.227961
-0.142204
0.268459
-0.161803
0.308511
-0.181118
0.347976
-0.200114
0.386852
-0.218761
0.425083
-0.237022
0.462505
-0.254868
0.499145
-0.272268
0.534951
-0.289189
0.569739
-0.305602
0.603566
-0.321481
0.636384
-0.336794
0.667989
-0.351517
0.698469
-0.365624
0.72778
-0.379088
0.755705
-0.391888
0.782358
-0.404
0.8077
-0.415404
0.831503
-0.426078
0.853908
-0.436006
0.874882
-0.445168
0.894189
-0.453549
0.911993
-0.461135
0.928267
-0.467912
0.942773
-0.473867
0.955695
-0.478992
0.967013
-0.483276
0.976489
-0.486713
0.984325
-0.489296
0.990508
-0.49102
0.994806
-0.491883
0.997432
-0.491883
0.998384
-0.49102
0.997434
-0.489296
0.994809
-0.486713
0.990514
-0.483276
0.984332
-0.478992
0.976498
-0.473867
0.967022
-0.467912
0.955706
-0.461135
0.942786
-0.453549
0.928281
-0.445168
0.912008
-0.436006
0.894205
-0.426078
0.874899
-0.415404
0.853926
-0.404
0.831522
-0.391888
0.807719
-0.379088
0.782378
-0.365624
0.755725
-0.351517
0.727801
-0.336794
0.69849
-0.321481
0.66801
-0.305602
0.636404
-0.289189
0.603586
-0.272268
0.569758
-0.254868
0.53497
-0.237022
0.499163
-0.218761
0.462521
-0.200114
0.425099
-0.181118
0.386867
-0.161803
0.34799
-0.142204
0.308517
-0.122356
0.268476
-0.102293
0.227974
-0.0820508
0.187074
-0.0616645
0.145842
-0.04117
0.104356
-0.020603
0.0626875
1.35877e-12
0.0209078
0.0206031
-0.0209078
0.0411702
-0.0626875
0.061665
-0.104356
0.0820517
-0.145842
0.102295
-0.187074
0.122358
-0.227974
0.142207
-0.268476
0.161807
-0.308517
0.181122
-0.34799
0.200119
-0.386867
0.218767
-0.425099
0.23703
-0.462521
0.254876
-0.499163
0.272277
-0.53497
0.2892
-0.569758
0.305614
-0.603586
0.321494
-0.636404
0.336809
-0.66801
0.351533
-0.69849
0.365641
-0.727801
0.379107
-0.755725
0.391907
-0.782378
0.404022
-0.807719
0.415426
-0.831522
0.426102
-0.853926
0.43603
-0.874899
0.445194
-0.894205
0.453576
-0.912008
0.461163
-0.928281
0.46794
-0.942786
0.473897
-0.955706
0.479022
-0.967022
0.483307
-0.976498
0.486744
-0.984332
0.489327
-0.990514
0.491051
-0.994809
0.491914
-0.997434
0.491914
-0.998384
0.491051
-0.997432
0.489327
-0.994806
0.486744
-0.990508
0.483307
-0.984325
0.479022
-0.976489
0.473897
-0.967013
0.46794
-0.955695
0.461163
-0.942773
0.453576
-0.928267
0.445194
-0.911993
0.43603
-0.894189
0.426102
-0.874882
0.415426
-0.853908
0.404022
-0.831503
0.391907
-0.8077
0.379107
-0.782358
0.365641
-0.755705
0.351533
-0.72778
0.336809
-0.698469
0.321494
-0.667989
0.305614
-0.636384
0.2892
-0.603566
0.272277
-0.569739
0.254876
-0.534951
0.23703
-0.499145
0.218767
-0.462505
0.200119
-0.425083
0.181122
-0.386852
0.161807
-0.347976
0.142206
-0.308511
0.122358
-0.268459
0.102295
-0.227961
0.0820512
-0.187075
0.061665
-0.145832
0.0411707
-0.10435
0.0206026
-0.0626877
-0.020906
-0.0212683
0.0215522
-0.0425008
0.0646253
-0.0636571
0.107575
-0.0847017
0.15034
-0.105599
0.192857
-0.12631
0.235006
-0.146799
0.276757
-0.167032
0.318047
-0.18697
0.358731
-0.20658
0.398809
-0.22583
0.438221
-0.244681
0.476799
-0.263104
0.514572
-0.281066
0.551485
-0.298534
0.587348
-0.315477
0.622221
-0.331869
0.656053
-0.347677
0.688635
-0.362876
0.720058
-0.377439
0.750274
-0.391338
0.779062
-0.404551
0.806539
-0.417055
0.832664
-0.428827
0.857203
-0.439847
0.880301
-0.450095
0.901922
-0.459553
0.921826
-0.468205
0.94018
-0.476037
0.956957
-0.483032
0.971912
-0.48918
0.985233
-0.494471
0.996901
-0.498893
1.00667
-0.502441
1.01475
-0.505107
1.02112
-0.506887
1.02555
-0.507778
1.02826
-0.507778
1.02924
-0.506887
1.02826
-0.505107
1.02556
-0.502441
1.02113
-0.498893
1.01476
-0.494471
1.00668
-0.48918
0.996912
-0.483032
0.985245
-0.476037
0.971926
-0.468205
0.956972
-0.459553
0.940197
-0.450095
0.921844
-0.439847
0.901941
-0.428827
0.88032
-0.417055
0.857223
-0.404551
0.832684
-0.391338
0.80656
-0.377439
0.779084
-0.362876
0.750296
-0.347677
0.720079
-0.331869
0.688657
-0.315477
0.656074
-0.298534
0.622242
-0.281066
0.587369
-0.263104
0.551505
-0.244681
0.514591
-0.22583
0.476817
-0.20658
0.438238
-0.18697
0.398825
-0.167032
0.358746
-0.146799
0.318053
-0.12631
0.276775
-0.105599
0.235021
-0.0847021
0.192856
-0.0636571
0.15035
-0.0425003
0.107582
-0.0212688
0.0646251
1.37647e-12
0.0215541
0.0212688
-0.0215541
0.0425005
-0.0646251
0.0636576
-0.107582
0.084703
-0.15035
0.1056
-0.192856
0.126312
-0.235021
0.146802
-0.276775
0.167035
-0.318053
0.186974
-0.358746
0.206585
-0.398825
0.225836
-0.438238
0.244688
-0.476817
0.263112
-0.514591
0.281075
-0.551505
0.298544
-0.587369
0.315489
-0.622242
0.331882
-0.656074
0.347692
-0.688657
0.362891
-0.720079
0.377456
-0.750296
0.391356
-0.779084
0.404571
-0.80656
0.417076
-0.832684
0.428849
-0.857223
0.43987
-0.88032
0.450119
-0.901941
0.459578
-0.921844
0.468231
-0.940197
0.476064
-0.956972
0.48306
-0.971926
0.489209
-0.985245
0.4945
-0.996912
0.498923
-1.00668
0.502471
-1.01476
0.505138
-1.02113
0.506918
-1.02556
0.507809
-1.02826
0.507809
-1.02924
0.506918
-1.02826
0.505138
-1.02555
0.502471
-1.02112
0.498923
-1.01475
0.4945
-1.00667
0.489209
-0.996901
0.48306
-0.985233
0.476064
-0.971912
0.468231
-0.956957
0.459578
-0.94018
0.450119
-0.921826
0.43987
-0.901922
0.428849
-0.880301
0.417076
-0.857203
0.404571
-0.832664
0.391356
-0.806539
0.377456
-0.779062
0.362891
-0.750274
0.347692
-0.720058
0.331882
-0.688635
0.315489
-0.656053
0.298544
-0.622221
0.281075
-0.587348
0.263112
-0.551485
0.244688
-0.514572
0.225836
-0.476799
0.206585
-0.438221
0.186974
-0.398809
0.167035
-0.358731
0.146801
-0.318047
0.126312
-0.276757
0.1056
-0.235006
0.0847025
-0.192857
0.0636576
-0.15034
0.042501
-0.107575
0.0212683
-0.0646253
-0.0215522
-0.0218967
0.0221605
-0.0437566
0.0664494
-0.065538
0.110612
-0.0872044
0.154583
-0.108719
0.1983
-0.130042
0.24164
-0.151136
0.284569
-0.171967
0.327024
-0.192495
0.368857
-0.212684
0.410066
-0.232503
0.450591
-0.251911
0.490258
-0.270878
0.529097
-0.289371
0.567052
-0.307355
0.603927
-0.324799
0.639784
-0.341675
0.674571
-0.357951
0.708073
-0.373598
0.740382
-0.388591
0.771452
-0.402902
0.801053
-0.416505
0.829305
-0.429379
0.856167
-0.441498
0.881399
-0.452843
0.905149
-0.463395
0.927381
-0.473133
0.947847
-0.48204
0.966719
-0.490103
0.983969
-0.497305
0.999346
-0.503635
1.01304
-0.509082
1.02504
-0.513635
1.03509
-0.517288
1.04339
-0.520033
1.04995
-0.521865
1.0545
-0.522782
1.05729
-0.522782
1.05829
-0.521865
1.05729
-0.520033
1.05451
-0.517288
1.04995
-0.513635
1.0434
-0.509082
1.0351
-0.503635
1.02505
-0.497305
1.01306
-0.490103
0.999361
-0.48204
0.983985
-0.473133
0.966736
-0.463395
0.947865
-0.452843
0.9274
-0.441498
0.905169
-0.429379
0.881421
-0.416505
0.856189
-0.402902
0.829327
-0.388591
0.801075
-0.373598
0.771475
-0.357951
0.740405
-0.341675
0.708096
-0.324799
0.674594
-0.307355
0.639807
-0.289371
0.603949
-0.270878
0.567073
-0.251911
0.529117
-0.232503
0.490277
-0.212684
0.450609
-0.192495
0.410083
-0.171967
0.368872
-0.151137
0.327031
-0.130042
0.284587
-0.108719
0.241655
-0.0872049
0.1983
-0.065538
0.154594
-0.0437561
0.110619
-0.0218972
0.0664493
1.39017e-12
0.0221625
0.0218972
-0.0221625
0.0437563
-0.0664493
0.0655385
-0.110619
0.0872057
-0.154594
0.10872
-0.1983
0.130044
-0.241655
0.151139
-0.284587
0.17197
-0.327031
0.192499
-0.368872
0.212689
-0.410083
0.232508
-0.450609
0.251918
-0.490277
0.270886
-0.529117
0.28938
-0.567073
0.307365
-0.603949
0.324811
-0.639807
0.341688
-0.674594
0.357965
-0.708096
0.373613
-0.740405
0.388608
-0.771475
0.402919
-0.801075
0.416524
-0.829327
0.429399
-0.856189
0.44152
-0.881421
0.452866
-0.905169
0.463418
-0.9274
0.473157
-0.947865
0.482066
-0.966736
0.490129
-0.983985
0.497332
-0.999361
0.503663
-1.01306
0.50911
-1.02505
0.513664
-1.0351
0.517317
-1.0434
0.520062
-1.04995
0.521895
-1.05451
0.522812
-1.05729
0.522812
-1.05829
0.521895
-1.05729
0.520062
-1.0545
0.517317
-1.04995
0.513664
-1.04339
0.50911
-1.03509
0.503663
-1.02504
0.497332
-1.01304
0.490129
-0.999346
0.482066
-0.983969
0.473157
-0.966719
0.463418
-0.947847
0.452866
-0.927381
0.44152
-0.905149
0.429399
-0.881399
0.416524
-0.856167
0.402919
-0.829305
0.388608
-0.801053
0.373613
-0.771452
0.357965
-0.740382
0.341688
-0.708073
0.324811
-0.674571
0.307365
-0.639784
0.28938
-0.603927
0.270886
-0.567052
0.251918
-0.529097
0.232508
-0.490258
0.212689
-0.450591
0.192499
-0.410066
0.17197
-0.368857
0.151139
-0.327024
0.130044
-0.284569
0.108721
-0.24164
0.0872052
-0.1983
0.0655385
-0.154583
0.0437568
-0.110612
0.0218968
-0.0664494
-0.0221605
-0.0224867
0.02273
-0.0449356
0.068157
-0.0673039
0.113454
-0.0895541
0.158556
-0.111649
0.203396
-0.133546
0.247849
-0.155209
0.291881
-0.176601
0.335428
-0.197682
0.378336
-0.218415
0.420604
-0.238768
0.46217
-0.258699
0.502856
-0.278177
0.542694
-0.297168
0.581624
-0.315637
0.619447
-0.333551
0.656225
-0.350882
0.691906
-0.367596
0.726269
-0.383665
0.759408
-0.399062
0.791276
-0.413758
0.821638
-0.427728
0.850616
-0.440949
0.878169
-0.453395
0.904049
-0.465046
0.928409
-0.475882
0.951212
-0.485882
0.972204
-0.49503
0.991561
-0.50331
1.00926
-0.510706
1.02503
-0.517206
1.03908
-0.5228
1.05138
-0.527476
1.06169
-0.531227
1.0702
-0.534046
1.07693
-0.535928
1.0816
-0.53687
1.08446
-0.53687
1.08549
-0.535928
1.08446
-0.534046
1.0816
-0.531227
1.07693
-0.527476
1.07021
-0.5228
1.0617
-0.517206
1.05139
-0.510706
1.03909
-0.50331
1.02504
-0.49503
1.00927
-0.485882
0.991579
-0.475882
0.972223
-0.465046
0.951233
-0.453395
0.92843
-0.440949
0.904072
-0.427728
0.878192
-0.413758
0.850639
-0.399062
0.821662
-0.383665
0.7913
-0.367596
0.759433
-0.350882
0.726293
-0.333551
0.691929
-0.315637
0.656249
-0.297168
0.619469
-0.278177
0.581646
-0.258699
0.542714
-0.238768
0.502876
-0.218415
0.462189
-0.197682
0.420621
-0.176601
0.378352
-0.155209
0.335435
-0.133546
0.291901
-0.111648
0.247865
-0.0895546
0.203396
-0.0673039
0.158567
-0.0449351
0.113461
-0.0224872
0.068157
1.39992e-12
0.0227321
0.0224873
-0.0227321
0.0449353
-0.068157
0.0673044
-0.113461
0.0895554
-0.158567
0.11165
-0.203396
0.133548
-0.247865
0.155212
-0.291901
0.176604
-0.335435
0.197685
-0.378352
0.21842
-0.420621
0.238773
-0.462189
0.258706
-0.502876
0.278185
-0.542714
0.297177
-0.581646
0.315647
-0.619469
0.333562
-0.656249
0.350894
-0.691929
0.36761
-0.726293
0.38368
-0.759433
0.399078
-0.7913
0.413775
-0.821662
0.427747
-0.850639
0.440968
-0.878192
0.453416
-0.904072
0.465068
-0.92843
0.475904
-0.951233
0.485905
-0.972223
0.495054
-0.991579
0.503335
-1.00927
0.510732
-1.02504
0.517233
-1.03909
0.522827
-1.05139
0.527504
-1.0617
0.531255
-1.07021
0.534074
-1.07693
0.535956
-1.0816
0.536898
-1.08446
0.536898
-1.08549
0.535956
-1.08446
0.534074
-1.0816
0.531255
-1.07693
0.527504
-1.0702
0.522827
-1.06169
0.517233
-1.05138
0.510732
-1.03908
0.503335
-1.02503
0.495054
-1.00926
0.485905
-0.991561
0.475904
-0.972204
0.465068
-0.951212
0.453416
-0.928409
0.440968
-0.904049
0.427747
-0.878169
0.413775
-0.850616
0.399078
-0.821638
0.38368
-0.791276
0.36761
-0.759408
0.350894
-0.726269
0.333562
-0.691906
0.315647
-0.656225
0.297177
-0.619447
0.278185
-0.581624
0.258706
-0.542694
0.238773
-0.502856
0.21842
-0.46217
0.197685
-0.420604
0.176604
-0.378336
0.155211
-0.335428
0.133548
-0.291881
0.11165
-0.247849
0.0895549
-0.203396
0.0673044
-0.158556
0.0449358
-0.113454
0.0224868
-0.068157
-0.02273
-0.0230373
0.0232596
-0.0460358
0.069745
-0.0689518
0.116098
-0.0917468
0.16225
-0.114382
0.208135
-0.136816
0.253624
-0.159009
0.298682
-0.180925
0.343243
-0.202522
0.387151
-0.223763
0.430403
-0.244614
0.472938
-0.265033
0.514572
-0.284988
0.555338
-0.304444
0.595175
-0.323365
0.633879
-0.341718
0.671515
-0.359474
0.708027
-0.376597
0.74319
-0.393059
0.777102
-0.408834
0.809713
-0.423889
0.840781
-0.438201
0.870435
-0.451746
0.898629
-0.464497
0.925113
-0.476433
0.95004
-0.487534
0.973375
-0.497779
0.994856
-0.507151
1.01466
-0.515633
1.03277
-0.523211
1.04891
-0.529871
1.06329
-0.535601
1.07588
-0.540392
1.08642
-0.544234
1.09514
-0.547122
1.10202
-0.54905
1.1068
-0.550015
1.10972
-0.550015
1.11078
-0.54905
1.10973
-0.547122
1.10681
-0.544234
1.10203
-0.540392
1.09515
-0.535601
1.08643
-0.529871
1.07589
-0.523211
1.0633
-0.515633
1.04893
-0.507151
1.03279
-0.497779
1.01468
-0.487534
0.994876
-0.476433
0.973396
-0.464497
0.950063
-0.451746
0.925137
-0.438201
0.898654
-0.423889
0.870459
-0.408834
0.840806
-0.393059
0.809738
-0.376597
0.777127
-0.359474
0.743216
-0.341718
0.708052
-0.323365
0.671539
-0.304444
0.633903
-0.284988
0.595198
-0.265033
0.55536
-0.244614
0.514593
-0.223763
0.472958
-0.202522
0.430422
-0.180925
0.387167
-0.159009
0.343251
-0.136816
0.298702
-0.114382
0.25364
-0.0917473
0.208135
-0.0689518
0.162261
-0.0460353
0.116105
-0.0230378
0.069745
1.40589e-12
0.0232617
0.0230378
-0.0232617
0.0460355
-0.069745
0.0689522
-0.116105
0.091748
-0.162261
0.114383
-0.208135
0.136817
-0.25364
0.159012
-0.298702
0.180928
-0.343251
0.202525
-0.387167
0.223768
-0.430422
0.244619
-0.472958
0.26504
-0.514593
0.284995
-0.55536
0.304453
-0.595198
0.323374
-0.633903
0.341729
-0.671539
0.359485
-0.708052
0.37661
-0.743216
0.393073
-0.777127
0.408849
-0.809738
0.423905
-0.840806
0.438219
-0.870459
0.451764
-0.898654
0.464516
-0.925137
0.476453
-0.950063
0.487555
-0.973396
0.497801
-0.994876
0.507174
-1.01468
0.515657
-1.03279
0.523236
-1.04893
0.529896
-1.0633
0.535627
-1.07589
0.540418
-1.08643
0.544261
-1.09515
0.547149
-1.10203
0.549077
-1.10681
0.550042
-1.10973
0.550042
-1.11078
0.549077
-1.10972
0.547149
-1.1068
0.544261
-1.10202
0.540418
-1.09514
0.535627
-1.08642
0.529896
-1.07588
0.523236
-1.06329
0.515657
-1.04891
0.507174
-1.03277
0.497801
-1.01466
0.487555
-0.994856
0.476453
-0.973375
0.464516
-0.95004
0.451764
-0.925113
0.438219
-0.898629
0.423905
-0.870435
0.408849
-0.840781
0.393073
-0.809713
0.37661
-0.777102
0.359485
-0.74319
0.341729
-0.708027
0.323374
-0.671515
0.304453
-0.633879
0.284995
-0.595175
0.26504
-0.555338
0.244619
-0.514572
0.223768
-0.472938
0.202525
-0.430403
0.180928
-0.387151
0.159011
-0.343243
0.136817
-0.298682
0.114384
-0.253624
0.0917475
-0.208135
0.0689522
-0.16225
0.046036
-0.116098
0.0230373
-0.069745
-0.0232596
-0.0235474
0.0237484
-0.0470552
0.0712106
-0.0704787
0.118537
-0.0937785
0.16566
-0.116915
0.212509
-0.139845
0.258954
-0.16253
0.304958
-0.184931
0.350456
-0.207006
0.395287
-0.228718
0.439448
-0.250031
0.482877
-0.270903
0.525386
-0.291299
0.567008
-0.311186
0.607683
-0.330526
0.6472
-0.349286
0.685626
-0.367434
0.722905
-0.384937
0.758808
-0.401764
0.793433
-0.417887
0.826728
-0.433277
0.85845
-0.447906
0.888726
-0.46175
0.917514
-0.474783
0.944554
-0.486984
0.970005
-0.498331
0.99383
-0.508803
1.01576
-0.518382
1.03599
-0.527053
1.05447
-0.534798
1.07095
-0.541605
1.08563
-0.547463
1.09849
-0.552359
1.10925
-0.556287
1.11815
-0.559239
1.12518
-0.56121
1.13006
-0.562196
1.13304
-0.562196
1.13412
-0.56121
1.13305
-0.559239
1.13006
-0.556287
1.12519
-0.552359
1.11816
-0.547463
1.10926
-0.541605
1.0985
-0.534798
1.08565
-0.527053
1.07097
-0.518382
1.05449
-0.508803
1.03601
-0.498331
1.01578
-0.486984
0.993852
-0.474783
0.970029
-0.46175
0.944578
-0.447906
0.917539
-0.433277
0.888752
-0.417887
0.858476
-0.401764
0.826755
-0.384937
0.793459
-0.367434
0.758834
-0.349286
0.722931
-0.330526
0.685652
-0.311186
0.647225
-0.291299
0.607707
-0.270903
0.567031
-0.250031
0.525408
-0.228718
0.482897
-0.207006
0.439467
-0.184931
0.395304
-0.162531
0.350464
-0.139845
0.304979
-0.116915
0.258971
-0.093779
0.212509
-0.0704787
0.165671
-0.0470547
0.118545
-0.0235479
0.0712107
1.40801e-12
0.0237506
0.023548
-0.0237506
0.0470549
-0.0712107
0.0704791
-0.118545
0.0937797
-0.165671
0.116916
-0.212509
0.139847
-0.258971
0.162533
-0.304979
0.184934
-0.350464
0.20701
-0.395304
0.228723
-0.439467
0.250036
-0.482897
0.270908
-0.525408
0.291306
-0.567031
0.311194
-0.607707
0.330535
-0.647225
0.349296
-0.685652
0.367445
-0.722931
0.384949
-0.758834
0.401777
-0.793459
0.417902
-0.826755
0.433292
-0.858476
0.447922
-0.888752
0.461767
-0.917539
0.474802
-0.944578
0.487003
-0.970029
0.498351
-0.993852
0.508824
-1.01578
0.518404
-1.03601
0.527075
-1.05449
0.534821
-1.07097
0.541629
-1.08565
0.547487
-1.0985
0.552384
-1.10926
0.556312
-1.11816
0.559264
-1.12519
0.561235
-1.13006
0.562222
-1.13305
0.562222
-1.13412
0.561235
-1.13304
0.559264
-1.13006
0.556312
-1.12518
0.552384
-1.11815
0.547487
-1.10925
0.541629
-1.09849
0.534821
-1.08563
0.527075
-1.07095
0.518404
-1.05447
0.508824
-1.03599
0.498351
-1.01576
0.487003
-0.99383
0.474802
-0.970005
0.461767
-0.944554
0.447922
-0.917514
0.433292
-0.888726
0.417902
-0.85845
0.401777
-0.826728
0.384949
-0.793433
0.367445
-0.758808
0.349296
-0.722905
0.330535
-0.685626
0.311194
-0.6472
0.291306
-0.607683
0.270908
-0.567008
0.250036
-0.525386
0.228723
-0.482877
0.20701
-0.439448
0.184934
-0.395287
0.162532
-0.350456
0.139847
-0.304958
0.116917
-0.258954
0.0937792
-0.212509
0.0704791
-0.16566
0.0470554
-0.118537
0.0235475
-0.0712106
-0.0237484
-0.0240162
0.0241955
-0.0479921
0.0725514
-0.0718819
0.120769
-0.0956456
0.168779
-0.119243
0.21651
-0.14263
0.263829
-0.165766
0.3107
-0.188614
0.357054
-0.211128
0.402729
-0.233272
0.447722
-0.255009
0.491968
-0.276296
0.535278
-0.297099
0.577683
-0.317382
0.619124
-0.337107
0.659385
-0.356241
0.698535
-0.37475
0.736516
-0.392601
0.773095
-0.409764
0.808371
-0.426208
0.842294
-0.441904
0.874613
-0.456824
0.905459
-0.470944
0.934789
-0.484237
0.962338
-0.496681
0.988268
-0.508253
1.01254
-0.518934
1.03489
-0.528704
1.05549
-0.537547
1.07433
-0.545447
1.09112
-0.552389
1.10607
-0.558364
1.11917
-0.563358
1.13014
-0.567364
1.13921
-0.570374
1.14636
-0.572384
1.15134
-0.57339
1.15438
-0.57339
1.15548
-0.572384
1.15438
-0.570374
1.15134
-0.567364
1.14637
-0.563358
1.13922
-0.558364
1.13015
-0.552389
1.11918
-0.545447
1.10609
-0.537547
1.09113
-0.528704
1.07435
-0.518934
1.05551
-0.508253
1.03491
-0.496681
1.01256
-0.484237
0.988293
-0.470944
0.962363
-0.456824
0.934815
-0.441904
0.905486
-0.426208
0.87464
-0.409764
0.842321
-0.392601
0.808398
-0.37475
0.773122
-0.356241
0.736543
-0.337107
0.698562
-0.317382
0.659411
-0.297099
0.619149
-0.276296
0.577707
-0.255009
0.5353
-0.233272
0.491989
-0.211128
0.447742
-0.188614
0.402747
-0.165767
0.357063
-0.14263
0.310722
-0.119243
0.263847
-0.0956462
0.21651
-0.0718819
0.168791
-0.0479916
0.120777
-0.0240168
0.0725515
1.40638e-12
0.0241978
0.0240168
-0.0241978
0.0479917
-0.0725515
0.0718823
-0.120777
0.0956468
-0.168791
0.119244
-0.21651
0.142631
-0.263847
0.165769
-0.310722
0.188616
-0.357063
0.211131
-0.402747
0.233276
-0.447742
0.255014
-0.491989
0.276302
-0.5353
0.297106
-0.577707
0.31739
-0.619149
0.337115
-0.659411
0.35625
-0.698562
0.374761
-0.736543
0.392613
-0.773122
0.409776
-0.808398
0.426221
-0.842321
0.441918
-0.87464
0.45684
-0.905486
0.470961
-0.934815
0.484254
-0.962363
0.496699
-0.988293
0.508272
-1.01256
0.518954
-1.03491
0.528724
-1.05551
0.537568
-1.07435
0.545468
-1.09113
0.552412
-1.10609
0.558386
-1.11918
0.563381
-1.13015
0.567387
-1.13922
0.570398
-1.14637
0.572408
-1.15134
0.573414
-1.15438
0.573414
-1.15548
0.572408
-1.15438
0.570398
-1.15134
0.567387
-1.14636
0.563381
-1.13921
0.558386
-1.13014
0.552412
-1.11917
0.545468
-1.10607
0.537568
-1.09112
0.528724
-1.07433
0.518954
-1.05549
0.508272
-1.03489
0.496699
-1.01254
0.484254
-0.988268
0.470961
-0.962338
0.45684
-0.934789
0.441918
-0.905459
0.426221
-0.874613
0.409776
-0.842294
0.392613
-0.808371
0.374761
-0.773095
0.35625
-0.736516
0.337115
-0.698535
0.31739
-0.659385
0.297106
-0.619124
0.276302
-0.577683
0.255014
-0.535278
0.233276
-0.491968
0.211131
-0.447722
0.188616
-0.402729
0.165768
-0.357054
0.142631
-0.3107
0.119244
-0.263829
0.0956463
-0.21651
0.0718823
-0.168779
0.0479923
-0.120769
0.0240163
-0.0725514
-0.0241955
-0.0244429
0.0246002
-0.0488448
0.0737648
-0.0731591
0.122789
-0.097345
0.171601
-0.121362
0.220131
-0.145164
0.268242
-0.168712
0.315897
-0.191965
0.363026
-0.214879
0.409465
-0.237417
0.45521
-0.25954
0.500197
-0.281206
0.54423
-0.302378
0.587345
-0.323022
0.629479
-0.343097
0.670414
-0.36257
0.710218
-0.381409
0.748835
-0.399577
0.786025
-0.417044
0.821891
-0.433781
0.856381
-0.449756
0.889241
-0.464941
0.920603
-0.479312
0.950423
-0.492842
0.978434
-0.505506
1.0048
-0.517285
1.02948
-0.528155
1.0522
-0.538098
1.07315
-0.547099
1.0923
-0.555139
1.10937
-0.562205
1.12457
-0.568285
1.13789
-0.573368
1.14904
-0.577445
1.15826
-0.580509
1.16554
-0.582555
1.17059
-0.583579
1.17368
-0.583579
1.1748
-0.582555
1.17369
-0.580509
1.1706
-0.577445
1.16554
-0.573368
1.15827
-0.568285
1.14905
-0.562205
1.1379
-0.555139
1.12459
-0.547099
1.10938
-0.538098
1.09232
-0.528155
1.07317
-0.517285
1.05222
-0.505506
1.0295
-0.492842
1.00482
-0.479312
0.97846
-0.464941
0.95045
-0.449756
0.920631
-0.433781
0.889269
-0.417044
0.85641
-0.399577
0.82192
-0.381409
0.786053
-0.36257
0.748863
-0.343097
0.710246
-0.323022
0.67044
-0.302378
0.629505
-0.281206
0.58737
-0.25954
0.544254
-0.237417
0.500218
-0.214879
0.455231
-0.191965
0.409483
-0.168712
0.363035
-0.145164
0.315919
-0.121361
0.26826
-0.0973456
0.220132
-0.0731591
0.171614
-0.0488442
0.122797
-0.0244435
0.073765
1.40125e-12
0.0246025
0.0244435
-0.0246025
0.0488444
-0.073765
0.0731594
-0.122797
0.0973462
-0.171614
0.121362
-0.220132
0.145165
-0.26826
0.168714
-0.315919
0.191967
-0.363035
0.214882
-0.409483
0.237421
-0.455231
0.259544
-0.500218
0.281211
-0.544254
0.302384
-0.58737
0.323028
-0.629505
0.343105
-0.67044
0.362579
-0.710246
0.381419
-0.748863
0.399588
-0.786053
0.417056
-0.82192
0.433794
-0.85641
0.449769
-0.889269
0.464955
-0.920631
0.479327
-0.95045
0.492857
-0.97846
0.505523
-1.00482
0.517302
-1.0295
0.528173
-1.05222
0.538117
-1.07317
0.547118
-1.09232
0.555159
-1.10938
0.562225
-1.12459
0.568306
-1.1379
0.573389
-1.14905
0.577467
-1.15827
0.580531
-1.16554
0.582577
-1.1706
0.583601
-1.17369
0.583601
-1.1748
0.582577
-1.17368
0.580531
-1.17059
0.577467
-1.16554
0.573389
-1.15826
0.568306
-1.14904
0.562225
-1.13789
0.555159
-1.12457
0.547118
-1.10937
0.538117
-1.0923
0.528173
-1.07315
0.517302
-1.0522
0.505523
-1.02948
0.492857
-1.0048
0.479327
-0.978434
0.464955
-0.950423
0.449769
-0.920603
0.433794
-0.889241
0.417056
-0.856381
0.399588
-0.821891
0.381419
-0.786025
0.362579
-0.748835
0.343105
-0.710218
0.323028
-0.670414
0.302384
-0.629479
0.281211
-0.587345
0.259544
-0.54423
0.237421
-0.500197
0.214882
-0.45521
0.191967
-0.409465
0.168713
-0.363026
0.145165
-0.315897
0.121363
-0.268242
0.0973456
-0.220131
0.0731594
-0.171601
0.0488449
-0.122789
0.024443
-0.0737648
-0.0246002
-0.0248268
0.0249617
-0.0496118
0.0748488
-0.0743079
0.124593
-0.0988736
0.174123
-0.123268
0.223366
-0.147444
0.272184
-0.171361
0.320539
-0.194979
0.368361
-0.218254
0.415482
-0.241145
0.4619
-0.263616
0.507547
-0.285622
0.552228
-0.307127
0.595977
-0.328094
0.63873
-0.348485
0.680266
-0.368264
0.720656
-0.387399
0.75984
-0.405852
0.797576
-0.423594
0.83397
-0.440593
0.868967
-0.456819
0.902309
-0.472243
0.934133
-0.48684
0.964391
-0.500581
0.992813
-0.513445
1.01956
-0.525408
1.04461
-0.536449
1.06766
-0.546549
1.08892
-0.555691
1.10835
-0.563857
1.12567
-0.571034
1.1411
-0.57721
1.15461
-0.582373
1.16593
-0.586514
1.17528
-0.589626
1.18267
-0.591704
1.1878
-0.592744
1.19093
-0.592744
1.19207
-0.591704
1.19094
-0.589626
1.1878
-0.586514
1.18267
-0.582373
1.17529
-0.57721
1.16594
-0.571034
1.15463
-0.563857
1.14111
-0.555691
1.12569
-0.546549
1.10837
-0.536449
1.08894
-0.525408
1.06768
-0.513445
1.04463
-0.500581
1.01959
-0.48684
0.99284
-0.472243
0.964419
-0.456819
0.934161
-0.440593
0.902338
-0.423594
0.868996
-0.405852
0.833999
-0.387399
0.797606
-0.368264
0.759868
-0.348485
0.720684
-0.328094
0.680294
-0.307127
0.638756
-0.285622
0.596002
-0.263616
0.552252
-0.241145
0.50757
-0.218254
0.461921
-0.194979
0.415501
-0.171361
0.368371
-0.147444
0.320562
-0.123267
0.272202
-0.0988742
0.223367
-0.0743079
0.174136
-0.0496112
0.124602
-0.0248273
0.0748491
1.39283e-12
0.0249641
0.0248274
-0.0249641
0.0496114
-0.0748491
0.0743082
-0.124602
0.0988747
-0.174136
0.123268
-0.223367
0.147445
-0.272202
0.171363
-0.320562
0.194981
-0.368371
0.218256
-0.415501
0.241149
-0.461921
0.26362
-0.50757
0.285626
-0.552252
0.307132
-0.596002
0.328101
-0.638756
0.348492
-0.680294
0.368272
-0.720684
0.387407
-0.759868
0.405862
-0.797606
0.423604
-0.833999
0.440605
-0.868996
0.456831
-0.902338
0.472256
-0.934161
0.486853
-0.964419
0.500596
-0.99284
0.51346
-1.01959
0.525424
-1.04463
0.536466
-1.06768
0.546566
-1.08894
0.555708
-1.10837
0.563875
-1.12569
0.571053
-1.14111
0.577229
-1.15463
0.582392
-1.16594
0.586533
-1.17529
0.589646
-1.18267
0.591724
-1.1878
0.592764
-1.19094
0.592764
-1.19207
0.591724
-1.19093
0.589646
-1.1878
0.586533
-1.18267
0.582392
-1.17528
0.577229
-1.16593
0.571053
-1.15461
0.563875
-1.1411
0.555708
-1.12567
0.546566
-1.10835
0.536466
-1.08892
0.525424
-1.06766
0.51346
-1.04461
0.500596
-1.01956
0.486853
-0.992813
0.472256
-0.964391
0.456831
-0.934133
0.440605
-0.902309
0.423604
-0.868967
0.405862
-0.83397
0.387407
-0.797576
0.368272
-0.75984
0.348492
-0.720656
0.328101
-0.680266
0.307132
-0.63873
0.285626
-0.595977
0.26362
-0.552228
0.241149
-0.507547
0.218256
-0.4619
0.194981
-0.415482
0.171363
-0.368361
0.147445
-0.320539
0.123269
-0.272184
0.0988742
-0.223366
0.0743082
-0.174123
0.0496119
-0.124593
0.0248268
-0.0748488
-0.0249617
-0.025167
0.0252794
-0.0502918
0.0758016
-0.0753263
0.126179
-0.100229
0.17634
-0.124957
0.226209
-0.149464
0.275648
-0.17371
0.324619
-0.197652
0.37305
-0.221245
0.420771
-0.244451
0.467779
-0.267229
0.514008
-0.289537
0.559258
-0.311336
0.603563
-0.332591
0.64686
-0.353262
0.688925
-0.373312
0.729829
-0.392709
0.769511
-0.411415
0.807729
-0.4294
0.844585
-0.446633
0.880028
-0.463081
0.913795
-0.478716
0.946023
-0.493513
0.976666
-0.507443
1.00545
-0.520483
1.03254
-0.53261
1.0579
-0.543802
1.08125
-0.554041
1.10278
-0.563308
1.12246
-0.571586
1.14
-0.578862
1.15562
-0.585122
1.16931
-0.590355
1.18077
-0.594553
1.19024
-0.597708
1.19772
-0.599815
1.20292
-0.600869
1.20609
-0.600869
1.20724
-0.599815
1.2061
-0.597708
1.20292
-0.594553
1.19773
-0.590355
1.19025
-0.585122
1.18078
-0.578862
1.16932
-0.571586
1.15564
-0.563308
1.14002
-0.554041
1.12248
-0.543802
1.1028
-0.53261
1.08127
-0.520483
1.05793
-0.507443
1.03257
-0.493513
1.00548
-0.478716
0.976695
-0.463081
0.946052
-0.446633
0.913824
-0.4294
0.880058
-0.411415
0.844615
-0.392709
0.807758
-0.373312
0.769541
-0.353262
0.729858
-0.332591
0.688953
-0.311336
0.646887
-0.289537
0.603589
-0.267229
0.559282
-0.244451
0.514031
-0.221245
0.467801
-0.197652
0.42079
-0.17371
0.37306
-0.149464
0.324642
-0.124957
0.275667
-0.100229
0.22621
-0.0753263
0.176353
-0.0502912
0.126188
-0.0251676
0.0758019
1.38099e-12
0.0252818
0.0251676
-0.0252818
0.0502913
-0.0758019
0.0753266
-0.126188
0.10023
-0.176353
0.124957
-0.22621
0.149466
-0.275667
0.173712
-0.324642
0.197654
-0.37306
0.221248
-0.42079
0.244454
-0.467801
0.267232
-0.514031
0.289541
-0.559282
0.311341
-0.603589
0.332597
-0.646887
0.353268
-0.688953
0.373319
-0.729858
0.392716
-0.769541
0.411424
-0.807758
0.429409
-0.844615
0.446643
-0.880058
0.463091
-0.913824
0.478727
-0.946052
0.493525
-0.976695
0.507456
-1.00548
0.520496
-1.03257
0.532624
-1.05793
0.543817
-1.08127
0.554056
-1.1028
0.563324
-1.12248
0.571602
-1.14002
0.578878
-1.15564
0.585139
-1.16932
0.590373
-1.18078
0.594571
-1.19025
0.597726
-1.19773
0.599833
-1.20292
0.600887
-1.2061
0.600887
-1.20724
0.599833
-1.20609
0.597726
-1.20292
0.594571
-1.19772
0.590373
-1.19024
0.585139
-1.18077
0.578878
-1.16931
0.571602
-1.15562
0.563324
-1.14
0.554056
-1.12246
0.543817
-1.10278
0.532624
-1.08125
0.520496
-1.0579
0.507456
-1.03254
0.493525
-1.00545
0.478727
-0.976666
0.463091
-0.946023
0.446643
-0.913795
0.429409
-0.880028
0.411424
-0.844585
0.392716
-0.807729
0.373319
-0.769511
0.353268
-0.729829
0.332597
-0.688925
0.311341
-0.64686
0.289541
-0.603563
0.267232
-0.559258
0.244454
-0.514008
0.221248
-0.467779
0.197654
-0.420771
0.173711
-0.37305
0.149466
-0.324619
0.124958
-0.275648
0.100229
-0.226209
0.0753266
-0.17634
0.0502919
-0.126179
0.0251671
-0.0758016
-0.0252794
-0.0254631
0.0255528
-0.0508835
0.0766213
-0.0762126
0.127544
-0.101408
0.178247
-0.126427
0.228656
-0.151223
0.278629
-0.175753
0.32813
-0.199977
0.377084
-0.223848
0.425321
-0.247327
0.472838
-0.270373
0.519567
-0.292943
0.565306
-0.315
0.61009
-0.336505
0.653855
-0.357418
0.696376
-0.377705
0.737722
-0.39733
0.777833
-0.416256
0.816464
-0.434453
0.853719
-0.451888
0.889545
-0.46853
0.923677
-0.484349
0.956254
-0.49932
0.987229
-0.513414
1.01632
-0.526607
1.04371
-0.538878
1.06934
-0.550202
1.09294
-0.560561
1.1147
-0.569937
1.1346
-0.578312
1.15233
-0.585673
1.16812
-0.592008
1.18195
-0.597303
1.19354
-0.60155
1.20312
-0.604742
1.21067
-0.606873
1.21593
-0.60794
1.21914
-0.60794
1.2203
-0.606873
1.21914
-0.604742
1.21593
-0.60155
1.21068
-0.597303
1.20313
-0.592008
1.19355
-0.585673
1.18197
-0.578312
1.16814
-0.569937
1.15235
-0.560561
1.13462
-0.550202
1.11473
-0.538878
1.09297
-0.526607
1.06937
-0.513414
1.04374
-0.49932
1.01635
-0.484349
0.987258
-0.46853
0.956284
-0.451888
0.923707
-0.434453
0.889575
-0.416256
0.85375
-0.39733
0.816494
-0.377705
0.777863
-0.357418
0.737751
-0.336505
0.696404
-0.315
0.653883
-0.292943
0.610117
-0.270373
0.565331
-0.247327
0.51959
-0.223848
0.47286
-0.199977
0.425341
-0.175754
0.377094
-0.151223
0.328153
-0.126427
0.278649
-0.101409
0.228657
-0.0762126
0.17826
-0.0508829
0.127553
-0.0254637
0.0766217
1.36578e-12
0.0255553
0.0254637
-0.0255553
0.050883
-0.0766217
0.0762129
-0.127553
0.101409
-0.17826
0.126428
-0.228657
0.151224
-0.278649
0.175755
-0.328153
0.199979
-0.377094
0.223851
-0.425341
0.24733
-0.47286
0.270376
-0.51959
0.292947
-0.565331
0.315004
-0.610117
0.33651
-0.653883
0.357424
-0.696404
0.377711
-0.737751
0.397336
-0.777863
0.416264
-0.816494
0.434461
-0.85375
0.451897
-0.889575
0.468539
-0.923707
0.484359
-0.956284
0.499331
-0.987258
0.513425
-1.01635
0.526619
-1.04374
0.53889
-1.06937
0.550215
-1.09297
0.560574
-1.11473
0.56995
-1.13462
0.578326
-1.15235
0.585688
-1.16814
0.592022
-1.18197
0.597318
-1.19355
0.601565
-1.20313
0.604758
-1.21068
0.606889
-1.21593
0.607955
-1.21914
0.607955
-1.2203
0.606889
-1.21914
0.604758
-1.21593
0.601565
-1.21067
0.597318
-1.20312
0.592022
-1.19354
0.585688
-1.18195
0.578326
-1.16812
0.56995
-1.15233
0.560574
-1.1346
0.550215
-1.1147
0.53889
-1.09294
0.526619
-1.06934
0.513425
-1.04371
0.499331
-1.01632
0.484359
-0.987229
0.468539
-0.956254
0.451897
-0.923677
0.434461
-0.889545
0.416264
-0.853719
0.397336
-0.816464
0.377711
-0.777833
0.357424
-0.737722
0.33651
-0.696376
0.315004
-0.653855
0.292947
-0.61009
0.270376
-0.565306
0.24733
-0.519567
0.223851
-0.472838
0.199979
-0.425321
0.175755
-0.377084
0.151224
-0.32813
0.126428
-0.278629
0.101408
-0.228656
0.0762129
-0.178247
0.0508836
-0.127544
0.0254632
-0.0766213
-0.0255528
-0.0257146
0.0257814
-0.051386
0.0773067
-0.0769652
0.128685
-0.102409
0.179841
-0.127676
0.230701
-0.152716
0.281122
-0.177489
0.331065
-0.201952
0.380457
-0.226059
0.429125
-0.249769
0.477067
-0.273043
0.524214
-0.295836
0.570362
-0.318111
0.615547
-0.339828
0.659704
-0.360948
0.702604
-0.381435
0.74432
-0.401254
0.784791
-0.420367
0.823767
-0.438744
0.861355
-0.456351
0.897501
-0.473157
0.931939
-0.489133
0.964807
-0.504252
0.996059
-0.518485
1.02541
-0.531808
1.05304
-0.5442
1.07891
-0.555636
1.10272
-0.566097
1.12467
-0.575566
1.14474
-0.584024
1.16263
-0.591458
1.17857
-0.597855
1.19253
-0.603202
1.20421
-0.607491
1.21388
-0.610715
1.2215
-0.612867
1.2268
-0.613944
1.23004
-0.613944
1.23121
-0.612867
1.23004
-0.610715
1.22681
-0.607491
1.22151
-0.603202
1.21389
-0.597855
1.20423
-0.591458
1.19254
-0.584024
1.17859
-0.575566
1.16265
-0.566097
1.14477
-0.555636
1.1247
-0.5442
1.10274
-0.531808
1.07893
-0.518485
1.05307
-0.504252
1.02544
-0.489133
0.996089
-0.473157
0.964837
-0.456351
0.93197
-0.438744
0.897533
-0.420367
0.861386
-0.401254
0.823798
-0.381435
0.784821
-0.360948
0.74435
-0.339828
0.702633
-0.318111
0.659732
-0.295836
0.615574
-0.273043
0.570388
-0.249769
0.524238
-0.226059
0.47709
-0.201952
0.429146
-0.17749
0.380467
-0.152716
0.331089
-0.127675
0.281141
-0.10241
0.230702
-0.0769652
0.179855
-0.0513854
0.128694
-0.0257152
0.0773071
1.34754e-12
0.0257839
0.0257152
-0.0257839
0.0513855
-0.0773071
0.0769654
-0.128694
0.10241
-0.179855
0.127676
-0.230702
0.152717
-0.281141
0.177491
-0.331089
0.201954
-0.380467
0.226061
-0.429146
0.249772
-0.47709
0.273046
-0.524238
0.29584
-0.570388
0.318114
-0.615574
0.339832
-0.659732
0.360953
-0.702633
0.38144
-0.74435
0.401259
-0.784821
0.420374
-0.823798
0.43875
-0.861386
0.456359
-0.897533
0.473165
-0.93197
0.489141
-0.964837
0.504261
-0.996089
0.518494
-1.02544
0.531818
-1.05307
0.54421
-1.07893
0.555647
-1.10274
0.566108
-1.1247
0.575577
-1.14477
0.584036
-1.16265
0.59147
-1.17859
0.597867
-1.19254
0.603215
-1.20423
0.607504
-1.21389
0.610728
-1.22151
0.61288
-1.22681
0.613957
-1.23004
0.613957
-1.23121
0.61288
-1.23004
0.610728
-1.2268
0.607504
-1.2215
0.603215
-1.21388
0.597867
-1.20421
0.59147
-1.19253
0.584036
-1.17857
0.575577
-1.16263
0.566108
-1.14474
0.555647
-1.12467
0.54421
-1.10272
0.531818
-1.07891
0.518494
-1.05304
0.504261
-1.02541
0.489141
-0.996059
0.473165
-0.964807
0.456359
-0.931939
0.43875
-0.897501
0.420374
-0.861355
0.401259
-0.823767
0.38144
-0.784791
0.360953
-0.74432
0.339832
-0.702604
0.318114
-0.659704
0.29584
-0.615547
0.273046
-0.570362
0.249772
-0.524214
0.226061
-0.477067
0.201954
-0.429125
0.17749
-0.380457
0.152717
-0.331065
0.127676
-0.281122
0.10241
-0.230701
0.0769654
-0.179841
0.051386
-0.128685
0.0257146
-0.0773067
-0.0257814
-0.0259209
0.0259647
-0.0517983
0.0778564
-0.0775828
0.1296
-0.103231
0.18112
-0.1287
0.232341
-0.153942
0.283121
-0.178913
0.333419
-0.203573
0.383163
-0.227873
0.432177
-0.251774
0.48046
-0.275234
0.527941
-0.298211
0.574418
-0.320663
0.619924
-0.342555
0.664395
-0.363845
0.7076
-0.384496
0.749613
-0.404474
0.790371
-0.423741
0.829624
-0.442265
0.86748
-0.460014
0.903884
-0.476954
0.938566
-0.493059
0.971668
-0.508299
1.00314
-0.522646
1.03271
-0.536077
1.06053
-0.548568
1.08658
-0.560095
1.11056
-0.57064
1.13267
-0.580185
1.15288
-0.588711
1.1709
-0.596205
1.18695
-0.602653
1.20101
-0.608043
1.21278
-0.612367
1.22251
-0.615617
1.23019
-0.617786
1.23553
-0.618872
1.23879
-0.618872
1.23997
-0.617786
1.23879
-0.615617
1.23553
-0.612367
1.2302
-0.608043
1.22252
-0.602653
1.21279
-0.596205
1.20102
-0.588711
1.18697
-0.580185
1.17092
-0.57064
1.15291
-0.560095
1.1327
-0.548568
1.11059
-0.536077
1.08661
-0.522646
1.06056
-0.508299
1.03273
-0.493059
1.00317
-0.476954
0.971699
-0.460014
0.938597
-0.442265
0.903915
-0.423741
0.867512
-0.404474
0.829656
-0.384496
0.790402
-0.363845
0.749643
-0.342555
0.70763
-0.320663
0.664423
-0.298211
0.619952
-0.275234
0.574444
-0.251774
0.527966
-0.227873
0.480482
-0.203573
0.432197
-0.178914
0.383173
-0.153942
0.333443
-0.1287
0.28314
-0.103232
0.232343
-0.0775828
0.181134
-0.0517977
0.129609
-0.0259215
0.0778568
1.32641e-12
0.0259672
0.0259215
-0.0259672
0.0517978
-0.0778568
0.077583
-0.129609
0.103232
-0.181134
0.1287
-0.232343
0.153943
-0.28314
0.178915
-0.333443
0.203574
-0.383173
0.227875
-0.432197
0.251776
-0.480482
0.275237
-0.527966
0.298213
-0.574444
0.320666
-0.619952
0.342559
-0.664423
0.363848
-0.70763
0.3845
-0.749643
0.404479
-0.790402
0.423746
-0.829656
0.44227
-0.867512
0.46002
-0.903915
0.476961
-0.938597
0.493065
-0.971699
0.508306
-1.00317
0.522654
-1.03273
0.536085
-1.06056
0.548576
-1.08661
0.560104
-1.11059
0.570649
-1.1327
0.580195
-1.15291
0.588721
-1.17092
0.596215
-1.18697
0.602663
-1.20102
0.608054
-1.21279
0.612377
-1.22252
0.615627
-1.2302
0.617797
-1.23553
0.618882
-1.23879
0.618882
-1.23997
0.617797
-1.23879
0.615627
-1.23553
0.612377
-1.23019
0.608054
-1.22251
0.602663
-1.21278
0.596215
-1.20101
0.588721
-1.18695
0.580195
-1.1709
0.570649
-1.15288
0.560104
-1.13267
0.548576
-1.11056
0.536085
-1.08658
0.522654
-1.06053
0.508306
-1.03271
0.493065
-1.00314
0.476961
-0.971668
0.46002
-0.938566
0.44227
-0.903884
0.423746
-0.86748
0.404479
-0.829624
0.3845
-0.790371
0.363848
-0.749613
0.342559
-0.7076
0.320666
-0.664395
0.298213
-0.619924
0.275237
-0.574418
0.251776
-0.527941
0.227875
-0.48046
0.203574
-0.432177
0.178914
-0.383163
0.153943
-0.333419
0.128701
-0.283121
0.103232
-0.232341
0.077583
-0.18112
0.0517983
-0.1296
0.0259209
-0.0778564
-0.0259647
-0.0260818
0.0261025
-0.0521197
0.0782695
-0.0780643
0.130288
-0.103872
0.182081
-0.129499
0.233574
-0.154897
0.284623
-0.180024
0.335188
-0.204836
0.385196
-0.229287
0.43447
-0.253336
0.483009
-0.276943
0.530743
-0.300061
0.577466
-0.322654
0.623214
-0.344682
0.66792
-0.366103
0.711355
-0.386882
0.753591
-0.406985
0.794565
-0.426371
0.834027
-0.44501
0.872083
-0.462869
0.90868
-0.479915
0.943546
-0.496119
0.976824
-0.511454
1.00846
-0.52589
1.03819
-0.539404
1.06616
-0.551973
1.09235
-0.563572
1.11645
-0.574183
1.13868
-0.583787
1.159
-0.592366
1.17711
-0.599906
1.19325
-0.606394
1.20738
-0.611818
1.21921
-0.616168
1.229
-0.619438
1.23672
-0.621621
1.24208
-0.622714
1.24536
-0.622714
1.24655
-0.621621
1.24536
-0.619438
1.24209
-0.616168
1.23672
-0.611818
1.22901
-0.606394
1.21923
-0.599906
1.20739
-0.592366
1.19327
-0.583787
1.17713
-0.574183
1.15902
-0.563572
1.13871
-0.551973
1.11648
-0.539404
1.09237
-0.52589
1.06619
-0.511454
1.03822
-0.496119
1.0085
-0.479915
0.976855
-0.462869
0.943578
-0.44501
0.908712
-0.426371
0.872115
-0.406985
0.834059
-0.386882
0.794597
-0.366103
0.753621
-0.344682
0.711385
-0.322654
0.667949
-0.300061
0.623242
-0.276943
0.577492
-0.253336
0.530767
-0.229287
0.483032
-0.204836
0.434491
-0.180024
0.385206
-0.154897
0.335213
-0.129499
0.284643
-0.103872
0.233576
-0.0780643
0.182095
-0.0521191
0.130296
-0.0260824
0.07827
1.30246e-12
0.026105
0.0260824
-0.026105
0.0521192
-0.07827
0.0780644
-0.130296
0.103873
-0.182095
0.129499
-0.233576
0.154898
-0.284643
0.180025
-0.335213
0.204837
-0.385206
0.229288
-0.434491
0.253338
-0.483032
0.276944
-0.530767
0.300063
-0.577492
0.322656
-0.623242
0.344684
-0.667949
0.366106
-0.711385
0.386886
-0.753621
0.406988
-0.794597
0.426375
-0.834059
0.445014
-0.872115
0.462874
-0.908712
0.47992
-0.943578
0.496124
-0.976855
0.511459
-1.0085
0.525896
-1.03822
0.53941
-1.06619
0.551979
-1.09237
0.563579
-1.11648
0.57419
-1.13871
0.583794
-1.15902
0.592373
-1.17713
0.599913
-1.19327
0.606402
-1.20739
0.611826
-1.21923
0.616176
-1.22901
0.619446
-1.23672
0.621629
-1.24209
0.622722
-1.24536
0.622722
-1.24655
0.621629
-1.24536
0.619446
-1.24208
0.616176
-1.23672
0.611826
-1.229
0.606402
-1.21921
0.599913
-1.20738
0.592373
-1.19325
0.583794
-1.17711
0.57419
-1.159
0.563579
-1.13868
0.551979
-1.11645
0.53941
-1.09235
0.525896
-1.06616
0.511459
-1.03819
0.496124
-1.00846
0.47992
-0.976824
0.462874
-0.943546
0.445014
-0.90868
0.426375
-0.872083
0.406988
-0.834027
0.386886
-0.794565
0.366106
-0.753591
0.344684
-0.711355
0.322656
-0.66792
0.300063
-0.623214
0.276944
-0.577466
0.253338
-0.530743
0.229288
-0.483009
0.204837
-0.43447
0.180024
-0.385196
0.154898
-0.335188
0.129499
-0.284623
0.103872
-0.233574
0.0780644
-0.182081
0.0521198
-0.130288
0.0260818
-0.0782695
-0.0261025
-0.0261969
0.0261945
-0.0523497
0.0785453
-0.0784088
0.130747
-0.10433
0.182723
-0.130071
0.234397
-0.155581
0.285626
-0.180818
0.336369
-0.20574
0.386553
-0.230299
0.436001
-0.254455
0.484711
-0.278165
0.532613
-0.301386
0.579501
-0.324078
0.62541
-0.346203
0.670274
-0.367719
0.713862
-0.38859
0.756246
-0.408781
0.797365
-0.428253
0.836966
-0.446974
0.875157
-0.464912
0.911882
-0.482034
0.946871
-0.498309
0.980266
-0.513712
1.01202
-0.528212
1.04184
-0.541786
1.06992
-0.55441
1.0962
-0.56606
1.12039
-0.576718
1.1427
-0.586364
1.16309
-0.594981
1.18126
-0.602555
1.19745
-0.609071
1.21163
-0.614519
1.22351
-0.618889
1.23333
-0.622173
1.24107
-0.624366
1.24646
-0.625463
1.24975
-0.625463
1.25094
-0.624366
1.24975
-0.622173
1.24647
-0.618889
1.24108
-0.614519
1.23334
-0.609071
1.22352
-0.602555
1.21165
-0.594981
1.19747
-0.586364
1.18128
-0.576718
1.16311
-0.56606
1.14272
-0.55441
1.12041
-0.541786
1.09622
-0.528212
1.06995
-0.513712
1.04187
-0.498309
1.01205
-0.482034
0.980298
-0.464912
0.946903
-0.446974
0.911914
-0.428253
0.875189
-0.408781
0.836998
-0.38859
0.797397
-0.367719
0.756277
-0.346203
0.713892
-0.324078
0.670303
-0.301386
0.625438
-0.278165
0.579527
-0.254455
0.532638
-0.230299
0.484734
-0.20574
0.436022
-0.180819
0.386564
-0.155581
0.336394
-0.13007
0.285646
-0.104331
0.234399
-0.0784088
0.182737
-0.0523491
0.130756
-0.0261975
0.0785458
1.27597e-12
0.026197
0.0261975
-0.026197
0.0523492
-0.0785458
0.0784089
-0.130756
0.104331
-0.182737
0.13007
-0.234399
0.155581
-0.285646
0.180819
-0.336394
0.205741
-0.386564
0.2303
-0.436022
0.254455
-0.484734
0.278166
-0.532638
0.301387
-0.579527
0.324079
-0.625438
0.346205
-0.670303
0.367721
-0.713892
0.388592
-0.756277
0.408783
-0.797397
0.428256
-0.836998
0.446977
-0.875189
0.464915
-0.911914
0.482037
-0.946903
0.498313
-0.980298
0.513715
-1.01205
0.528216
-1.04187
0.54179
-1.06995
0.554414
-1.09622
0.566065
-1.12041
0.576722
-1.14272
0.586369
-1.16311
0.594986
-1.18128
0.60256
-1.19747
0.609076
-1.21165
0.614524
-1.22352
0.618894
-1.23334
0.622178
-1.24108
0.624371
-1.24647
0.625468
-1.24975
0.625468
-1.25094
0.624371
-1.24975
0.622178
-1.24646
0.618894
-1.24107
0.614524
-1.23333
0.609076
-1.22351
0.60256
-1.21163
0.594986
-1.19745
0.586369
-1.18126
0.576722
-1.16309
0.566065
-1.1427
0.554414
-1.12039
0.54179
-1.0962
0.528216
-1.06992
0.513715
-1.04184
0.498313
-1.01202
0.482037
-0.980266
0.464915
-0.946871
0.446977
-0.911882
0.428256
-0.875157
0.408783
-0.836966
0.388592
-0.797365
0.367721
-0.756246
0.346205
-0.713862
0.324079
-0.670274
0.301387
-0.62541
0.278166
-0.579501
0.254455
-0.532613
0.2303
-0.484711
0.205741
-0.436001
0.180819
-0.386553
0.155581
-0.336369
0.130071
-0.285626
0.10433
-0.234397
0.0784089
-0.182723
0.0523498
-0.130747
0.0261969
-0.0785453
-0.0261945
-0.026266
0.0262405
-0.0524879
0.0786834
-0.0786157
0.130976
-0.104606
0.183044
-0.130414
0.234809
-0.155992
0.286128
-0.181296
0.33696
-0.206283
0.387233
-0.230907
0.436767
-0.255126
0.485563
-0.278899
0.533549
-0.302182
0.580519
-0.324934
0.626509
-0.347117
0.671452
-0.36869
0.715117
-0.389616
0.757575
-0.409861
0.798767
-0.429384
0.838437
-0.448155
0.876695
-0.46614
0.913485
-0.483307
0.948535
-0.499625
0.981989
-0.515069
1.0138
-0.529607
1.04368
-0.543217
1.0718
-0.555874
1.09812
-0.567555
1.12236
-0.578241
1.1447
-0.587913
1.16513
-0.596553
1.18334
-0.604146
1.19956
-0.61068
1.21376
-0.616142
1.22566
-0.620524
1.23549
-0.623817
1.24326
-0.626015
1.24865
-0.627115
1.25195
-0.627115
1.25314
-0.626015
1.25195
-0.623817
1.24866
-0.620524
1.24326
-0.616142
1.23551
-0.61068
1.22567
-0.604146
1.21378
-0.596553
1.19958
-0.587913
1.18336
-0.578241
1.16515
-0.567555
1.14473
-0.555874
1.12238
-0.543217
1.09815
-0.529607
1.07183
-0.515069
1.04371
-0.499625
1.01383
-0.483307
0.98202
-0.46614
0.948567
-0.448155
0.913517
-0.429384
0.876727
-0.409861
0.838469
-0.389616
0.798798
-0.36869
0.757606
-0.347117
0.715147
-0.324934
0.671481
-0.302182
0.626537
-0.278899
0.580546
-0.255126
0.533574
-0.230907
0.485586
-0.206283
0.436788
-0.181296
0.387243
-0.155992
0.336985
-0.130413
0.286148
-0.104606
0.234811
-0.0786157
0.183058
-0.0524873
0.130985
-0.0262666
0.0786839
1.24698e-12
0.026243
0.0262666
-0.026243
0.0524873
-0.0786839
0.0786158
-0.130985
0.104606
-0.183058
0.130414
-0.234811
0.155992
-0.286148
0.181296
-0.336985
0.206284
-0.387243
0.230908
-0.436788
0.255127
-0.485586
0.2789
-0.533574
0.302182
-0.580546
0.324934
-0.626537
0.347118
-0.671481
0.368691
-0.715147
0.389617
-0.757606
0.409862
-0.798798
0.429386
-0.838469
0.448156
-0.876727
0.466142
-0.913517
0.483308
-0.948567
0.499627
-0.98202
0.51507
-1.01383
0.529609
-1.04371
0.543219
-1.07183
0.555876
-1.09815
0.567557
-1.12238
0.578243
-1.14473
0.587915
-1.16515
0.596555
-1.18336
0.604149
-1.19958
0.610683
-1.21378
0.616145
-1.22567
0.620526
-1.23551
0.623819
-1.24326
0.626018
-1.24866
0.627118
-1.25195
0.627118
-1.25314
0.626018
-1.25195
0.623819
-1.24865
0.620526
-1.24326
0.616145
-1.23549
0.610683
-1.22566
0.604149
-1.21376
0.596555
-1.19956
0.587915
-1.18334
0.578243
-1.16513
0.567557
-1.1447
0.555876
-1.12236
0.543219
-1.09812
0.529609
-1.0718
0.51507
-1.04368
0.499627
-1.0138
0.483308
-0.981989
0.466142
-0.948535
0.448156
-0.913485
0.429386
-0.876695
0.409862
-0.838437
0.389617
-0.798767
0.368691
-0.757575
0.347118
-0.715117
0.324934
-0.671452
0.302182
-0.626509
0.2789
-0.580519
0.255127
-0.533549
0.230908
-0.485563
0.206284
-0.436767
0.181296
-0.387233
0.155992
-0.33696
0.130414
-0.286128
0.104606
-0.234809
0.0786158
-0.183044
0.0524879
-0.130976
0.026266
-0.0786834
-0.0262405
-0.0262891
0.0262405
-0.052534
0.0786834
-0.0786848
0.130976
-0.104698
0.183044
-0.130529
0.234809
-0.156129
0.286128
-0.181455
0.33696
-0.206465
0.387233
-0.23111
0.436767
-0.255351
0.485563
-0.279145
0.533549
-0.302447
0.580519
-0.325219
0.626509
-0.347422
0.671452
-0.369014
0.715117
-0.389959
0.757575
-0.410221
0.798767
-0.429762
0.838437
-0.448549
0.876695
-0.46655
0.913485
-0.483732
0.948535
-0.500065
0.981989
-0.515522
1.0138
-0.530073
1.04368
-0.543694
1.0718
-0.556363
1.09812
-0.568055
1.12236
-0.57875
1.1447
-0.58843
1.16513
-0.597078
1.18334
-0.604678
1.19956
-0.611218
1.21376
-0.616684
1.22566
-0.62107
1.23549
-0.624366
1.24326
-0.626566
1.24865
-0.627667
1.25195
-0.627667
1.25314
-0.626566
1.25195
-0.624366
1.24866
-0.62107
1.24326
-0.616684
1.23551
-0.611218
1.22567
-0.604678
1.21378
-0.597078
1.19958
-0.58843
1.18336
-0.57875
1.16515
-0.568055
1.14473
-0.556363
1.12238
-0.543694
1.09815
-0.530073
1.07183
-0.515522
1.04371
-0.500065
1.01383
-0.483732
0.98202
-0.46655
0.948567
-0.448549
0.913517
-0.429762
0.876727
-0.410221
0.838469
-0.389959
0.798798
-0.369014
0.757606
-0.347422
0.715147
-0.325219
0.671481
-0.302447
0.626537
-0.279145
0.580546
-0.255351
0.533574
-0.23111
0.485586
-0.206465
0.436788
-0.181455
0.387243
-0.156129
0.336985
-0.130528
0.286148
-0.104698
0.234811
-0.0786848
0.183058
-0.0525334
0.130985
-0.0262897
0.0786839
1.2155e-12
0.026243
0.0262897
-0.026243
0.0525334
-0.0786839
0.0786848
-0.130985
0.104698
-0.183058
0.130528
-0.234811
0.156129
-0.286148
0.181455
-0.336985
0.206465
-0.387243
0.23111
-0.436788
0.255351
-0.485586
0.279145
-0.533574
0.302447
-0.580546
0.325219
-0.626537
0.347422
-0.671481
0.369014
-0.715147
0.389959
-0.757606
0.410221
-0.798798
0.429762
-0.838469
0.448549
-0.876727
0.46655
-0.913517
0.483732
-0.948567
0.500065
-0.98202
0.515522
-1.01383
0.530073
-1.04371
0.543694
-1.07183
0.556363
-1.09815
0.568055
-1.12238
0.57875
-1.14473
0.58843
-1.16515
0.597078
-1.18336
0.604678
-1.19958
0.611218
-1.21378
0.616684
-1.22567
0.62107
-1.23551
0.624366
-1.24326
0.626566
-1.24866
0.627667
-1.25195
0.627667
-1.25314
0.626566
-1.25195
0.624366
-1.24865
0.62107
-1.24326
0.616684
-1.23549
0.611218
-1.22566
0.604678
-1.21376
0.597078
-1.19956
0.58843
-1.18334
0.57875
-1.16513
0.568055
-1.1447
0.556363
-1.12236
0.543694
-1.09812
0.530073
-1.0718
0.515522
-1.04368
0.500065
-1.0138
0.483732
-0.981989
0.46655
-0.948535
0.448549
-0.913485
0.429762
-0.876695
0.410221
-0.838437
0.389959
-0.798767
0.369014
-0.757575
0.347422
-0.715117
0.325219
-0.671452
0.302447
-0.626509
0.279145
-0.580519
0.255351
-0.533549
0.23111
-0.485563
0.206465
-0.436767
0.181455
-0.387233
0.156129
-0.33696
0.130529
-0.286128
0.104698
-0.234809
0.0786848
-0.183044
0.052534
-0.130976
0.0262891
-0.0786834
-0.0262405
-0.026266
0.0261945
-0.0524879
0.0785453
-0.0786158
0.130747
-0.104606
0.182723
-0.130414
0.234397
-0.155992
0.285626
-0.181296
0.336369
-0.206284
0.386553
-0.230908
0.436001
-0.255127
0.484711
-0.2789
0.532613
-0.302182
0.579501
-0.324934
0.62541
-0.347118
0.670274
-0.368691
0.713862
-0.389617
0.756246
-0.409862
0.797365
-0.429386
0.836966
-0.448156
0.875157
-0.466142
0.911882
-0.483308
0.946871
-0.499627
0.980266
-0.51507
1.01202
-0.529609
1.04184
-0.543219
1.06992
-0.555876
1.0962
-0.567557
1.12039
-0.578243
1.1427
-0.587915
1.16309
-0.596555
1.18126
-0.604149
1.19745
-0.610683
1.21163
-0.616145
1.22351
-0.620526
1.23333
-0.623819
1.24107
-0.626018
1.24646
-0.627118
1.24975
-0.627118
1.25094
-0.626018
1.24975
-0.623819
1.24647
-0.620526
1.24108
-0.616145
1.23334
-0.610683
1.22352
-0.604149
1.21165
-0.596555
1.19747
-0.587915
1.18128
-0.578243
1.16311
-0.567557
1.14272
-0.555876
1.12041
-0.543219
1.09622
-0.529609
1.06995
-0.51507
1.04187
-0.499627
1.01205
-0.483308
0.980298
-0.466142
0.946903
-0.448156
0.911914
-0.429386
0.875189
-0.409862
0.836998
-0.389617
0.797397
-0.368691
0.756277
-0.347118
0.713892
-0.324934
0.670303
-0.302182
0.625438
-0.2789
0.579527
-0.255127
0.532638
-0.230908
0.484734
-0.206284
0.436022
-0.181296
0.386564
-0.155992
0.336394
-0.130414
0.285646
-0.104606
0.234399
-0.0786158
0.182737
-0.0524873
0.130756
-0.0262666
0.0785458
1.18194e-12
0.026197
0.0262666
-0.026197
0.0524873
-0.0785458
0.0786157
-0.130756
0.104606
-0.182737
0.130413
-0.234399
0.155992
-0.285646
0.181296
-0.336394
0.206283
-0.386564
0.230907
-0.436022
0.255126
-0.484734
0.278899
-0.532638
0.302182
-0.579527
0.324934
-0.625438
0.347117
-0.670303
0.36869
-0.713892
0.389616
-0.756277
0.409861
-0.797397
0.429384
-0.836998
0.448155
-0.875189
0.46614
-0.911914
0.483307
-0.946903
0.499625
-0.980298
0.515069
-1.01205
0.529607
-1.04187
0.543217
-1.06995
0.555874
-1.09622
0.567555
-1.12041
0.578241
-1.14272
0.587913
-1.16311
0.596553
-1.18128
0.604146
-1.19747
0.61068
-1.21165
0.616142
-1.22352
0.620524
-1.23334
0.623817
-1.24108
0.626015
-1.24647
0.627115
-1.24975
0.627115
-1.25094
0.626015
-1.24975
0.623817
-1.24646
0.620524
-1.24107
0.616142
-1.23333
0.61068
-1.22351
0.604146
-1.21163
0.596553
-1.19745
0.587913
-1.18126
0.578241
-1.16309
0.567555
-1.1427
0.555874
-1.12039
0.543217
-1.0962
0.529607
-1.06992
0.515069
-1.04184
0.499625
-1.01202
0.483307
-0.980266
0.46614
-0.946871
0.448155
-0.911882
0.429384
-0.875157
0.409861
-0.836966
0.389616
-0.797365
0.36869
-0.756246
0.347117
-0.713862
0.324934
-0.670274
0.302182
-0.62541
0.278899
-0.579501
0.255126
-0.532613
0.230907
-0.484711
0.206283
-0.436001
0.181296
-0.386553
0.155992
-0.336369
0.130414
-0.285626
0.104606
-0.234397
0.0786157
-0.182723
0.0524879
-0.130747
0.026266
-0.0785453
-0.0261945
-0.0261969
0.0261025
-0.0523498
0.0782695
-0.0784089
0.130288
-0.10433
0.182081
-0.130071
0.233574
-0.155581
0.284623
-0.180819
0.335188
-0.205741
0.385196
-0.2303
0.43447
-0.254455
0.483009
-0.278166
0.530743
-0.301387
0.577466
-0.324079
0.623214
-0.346205
0.66792
-0.367721
0.711355
-0.388592
0.753591
-0.408783
0.794565
-0.428256
0.834027
-0.446977
0.872083
-0.464915
0.90868
-0.482037
0.943546
-0.498313
0.976824
-0.513715
1.00846
-0.528216
1.03819
-0.54179
1.06616
-0.554414
1.09235
-0.566065
1.11645
-0.576722
1.13868
-0.586369
1.159
-0.594986
1.17711
-0.60256
1.19325
-0.609076
1.20738
-0.614524
1.21921
-0.618894
1.229
-0.622178
1.23672
-0.624371
1.24208
-0.625468
1.24536
-0.625468
1.24655
-0.624371
1.24536
-0.622178
1.24209
-0.618894
1.23672
-0.614524
1.22901
-0.609076
1.21923
-0.60256
1.20739
-0.594986
1.19327
-0.586369
1.17713
-0.576722
1.15902
-0.566065
1.13871
-0.554414
1.11648
-0.54179
1.09237
-0.528216
1.06619
-0.513715
1.03822
-0.498313
1.0085
-0.482037
0.976855
-0.464915
0.943578
-0.446977
0.908712
-0.428256
0.872115
-0.408783
0.834059
-0.388592
0.794597
-0.367721
0.753621
-0.346205
0.711385
-0.324079
0.667949
-0.301387
0.623242
-0.278166
0.577492
-0.254455
0.530767
-0.2303
0.483032
-0.205741
0.434491
-0.180819
0.385206
-0.155581
0.335213
-0.13007
0.284643
-0.104331
0.233576
-0.0784089
0.182095
-0.0523492
0.130296
-0.0261975
0.07827
1.14642e-12
0.026105
0.0261975
-0.026105
0.0523491
-0.07827
0.0784088
-0.130296
0.104331
-0.182095
0.13007
-0.233576
0.155581
-0.284643
0.180819
-0.335213
0.20574
-0.385206
0.230299
-0.434491
0.254455
-0.483032
0.278165
-0.530767
0.301386
-0.577492
0.324078
-0.623242
0.346203
-0.667949
0.367719
-0.711385
0.38859
-0.753621
0.408781
-0.794597
0.428253
-0.834059
0.446974
-0.872115
0.464912
-0.908712
0.482034
-0.943578
0.498309
-0.976855
0.513712
-1.0085
0.528212
-1.03822
0.541786
-1.06619
0.55441
-1.09237
0.56606
-1.11648
0.576718
-1.13871
0.586364
-1.15902
0.594981
-1.17713
0.602555
-1.19327
0.609071
-1.20739
0.614519
-1.21923
0.618889
-1.22901
0.622173
-1.23672
0.624366
-1.24209
0.625463
-1.24536
0.625463
-1.24655
0.624366
-1.24536
0.622173
-1.24208
0.618889
-1.23672
0.614519
-1.229
0.609071
-1.21921
0.602555
-1.20738
0.594981
-1.19325
0.586364
-1.17711
0.576718
-1.159
0.56606
-1.13868
0.55441
-1.11645
0.541786
-1.09235
0.528212
-1.06616
0.513712
-1.03819
0.498309
-1.00846
0.482034
-0.976824
0.464912
-0.943546
0.446974
-0.90868
0.428253
-0.872083
0.408781
-0.834027
0.38859
-0.794565
0.367719
-0.753591
0.346203
-0.711355
0.324078
-0.66792
0.301386
-0.623214
0.278165
-0.577466
0.254455
-0.530743
0.230299
-0.483009
0.20574
-0.43447
0.180818
-0.385196
0.155581
-0.335188
0.130071
-0.284623
0.10433
-0.233574
0.0784088
-0.182081
0.0523497
-0.130288
0.0261969
-0.0782695
-0.0261025
-0.0260818
0.0259647
-0.0521198
0.0778564
-0.0780644
0.1296
-0.103872
0.18112
-0.129499
0.232341
-0.154898
0.283121
-0.180024
0.333419
-0.204837
0.383163
-0.229288
0.432177
-0.253338
0.48046
-0.276944
0.527941
-0.300063
0.574418
-0.322656
0.619924
-0.344684
0.664395
-0.366106
0.7076
-0.386886
0.749613
-0.406988
0.790371
-0.426375
0.829624
-0.445014
0.86748
-0.462874
0.903884
-0.47992
0.938566
-0.496124
0.971668
-0.511459
1.00314
-0.525896
1.03271
-0.53941
1.06053
-0.551979
1.08658
-0.563579
1.11056
-0.57419
1.13267
-0.583794
1.15288
-0.592373
1.1709
-0.599913
1.18695
-0.606402
1.20101
-0.611826
1.21278
-0.616176
1.22251
-0.619446
1.23019
-0.621629
1.23553
-0.622722
1.23879
-0.622722
1.23997
-0.621629
1.23879
-0.619446
1.23553
-0.616176
1.2302
-0.611826
1.22252
-0.606402
1.21279
-0.599913
1.20102
-0.592373
1.18697
-0.583794
1.17092
-0.57419
1.15291
-0.563579
1.1327
-0.551979
1.11059
-0.53941
1.08661
-0.525896
1.06056
-0.511459
1.03273
-0.496124
1.00317
-0.47992
0.971699
-0.462874
0.938597
-0.445014
0.903915
-0.426375
0.867512
-0.406988
0.829656
-0.386886
0.790402
-0.366106
0.749643
-0.344684
0.70763
-0.322656
0.664423
-0.300063
0.619952
-0.276944
0.574444
-0.253338
0.527966
-0.229288
0.480482
-0.204837
0.432197
-0.180025
0.383173
-0.154898
0.333443
-0.129499
0.28314
-0.103873
0.232343
-0.0780644
0.181134
-0.0521192
0.129609
-0.0260824
0.0778568
1.10916e-12
0.0259672
0.0260824
-0.0259672
0.0521191
-0.0778568
0.0780643
-0.129609
0.103872
-0.181134
0.129499
-0.232343
0.154897
-0.28314
0.180024
-0.333443
0.204836
-0.383173
0.229287
-0.432197
0.253336
-0.480482
0.276943
-0.527966
0.300061
-0.574444
0.322654
-0.619952
0.344682
-0.664423
0.366103
-0.70763
0.386882
-0.749643
0.406985
-0.790402
0.426371
-0.829656
0.44501
-0.867512
0.462869
-0.903915
0.479915
-0.938597
0.496119
-0.971699
0.511454
-1.00317
0.52589
-1.03273
0.539404
-1.06056
0.551973
-1.08661
0.563572
-1.11059
0.574183
-1.1327
0.583787
-1.15291
0.592366
-1.17092
0.599906
-1.18697
0.606394
-1.20102
0.611818
-1.21279
0.616168
-1.22252
0.619438
-1.2302
0.621621
-1.23553
0.622714
-1.23879
0.622714
-1.23997
0.621621
-1.23879
0.619438
-1.23553
0.616168
-1.23019
0.611818
-1.22251
0.606394
-1.21278
0.599906
-1.20101
0.592366
-1.18695
0.583787
-1.1709
0.574183
-1.15288
0.563572
-1.13267
0.551973
-1.11056
0.539404
-1.08658
0.52589
-1.06053
0.511454
-1.03271
0.496119
-1.00314
0.479915
-0.971668
0.462869
-0.938566
0.44501
-0.903884
0.426371
-0.86748
0.406985
-0.829624
0.386882
-0.790371
0.366103
-0.749613
0.344682
-0.7076
0.322654
-0.664395
0.300061
-0.619924
0.276943
-0.574418
0.253336
-0.527941
0.229287
-0.48046
0.204836
-0.432177
0.180024
-0.383163
0.154897
-0.333419
0.129499
-0.283121
0.103872
-0.232341
0.0780643
-0.18112
0.0521197
-0.1296
0.0260818
-0.0778564
-0.0259647
-0.0259209
0.0257814
-0.0517983
0.0773067
-0.077583
0.128685
-0.103232
0.179841
-0.128701
0.230701
-0.153943
0.281122
-0.178914
0.331065
-0.203574
0.380457
-0.227875
0.429125
-0.251776
0.477067
-0.275237
0.524214
-0.298213
0.570362
-0.320666
0.615547
-0.342559
0.659704
-0.363848
0.702604
-0.3845
0.74432
-0.404479
0.784791
-0.423746
0.823767
-0.44227
0.861355
-0.46002
0.897501
-0.476961
0.931939
-0.493065
0.964807
-0.508306
0.996059
-0.522654
1.02541
-0.536085
1.05304
-0.548576
1.07891
-0.560104
1.10272
-0.570649
1.12467
-0.580195
1.14474
-0.588721
1.16263
-0.596215
1.17857
-0.602663
1.19253
-0.608054
1.20421
-0.612377
1.21388
-0.615627
1.2215
-0.617797
1.2268
-0.618882
1.23004
-0.618882
1.23121
-0.617797
1.23004
-0.615627
1.22681
-0.612377
1.22151
-0.608054
1.21389
-0.602663
1.20423
-0.596215
1.19254
-0.588721
1.17859
-0.580195
1.16265
-0.570649
1.14477
-0.560104
1.1247
-0.548576
1.10274
-0.536085
1.07893
-0.522654
1.05307
-0.508306
1.02544
-0.493065
0.996089
-0.476961
0.964837
-0.46002
0.93197
-0.44227
0.897533
-0.423746
0.861386
-0.404479
0.823798
-0.3845
0.784821
-0.363848
0.74435
-0.342559
0.702633
-0.320666
0.659732
-0.298213
0.615574
-0.275237
0.570388
-0.251776
0.524238
-0.227875
0.47709
-0.203574
0.429146
-0.178915
0.380467
-0.153943
0.331089
-0.1287
0.281141
-0.103232
0.230702
-0.077583
0.179855
-0.0517978
0.128694
-0.0259215
0.0773071
1.07046e-12
0.0257839
0.0259215
-0.0257839
0.0517977
-0.0773071
0.0775828
-0.128694
0.103232
-0.179855
0.1287
-0.230702
0.153942
-0.281141
0.178914
-0.331089
0.203573
-0.380467
0.227873
-0.429146
0.251774
-0.47709
0.275234
-0.524238
0.298211
-0.570388
0.320663
-0.615574
0.342555
-0.659732
0.363845
-0.702633
0.384496
-0.74435
0.404474
-0.784821
0.423741
-0.823798
0.442265
-0.861386
0.460014
-0.897533
0.476954
-0.93197
0.493059
-0.964837
0.508299
-0.996089
0.522646
-1.02544
0.536077
-1.05307
0.548568
-1.07893
0.560095
-1.10274
0.57064
-1.1247
0.580185
-1.14477
0.588711
-1.16265
0.596205
-1.17859
0.602653
-1.19254
0.608043
-1.20423
0.612367
-1.21389
0.615617
-1.22151
0.617786
-1.22681
0.618872
-1.23004
0.618872
-1.23121
0.617786
-1.23004
0.615617
-1.2268
0.612367
-1.2215
0.608043
-1.21388
0.602653
-1.20421
0.596205
-1.19253
0.588711
-1.17857
0.580185
-1.16263
0.57064
-1.14474
0.560095
-1.12467
0.548568
-1.10272
0.536077
-1.07891
0.522646
-1.05304
0.508299
-1.02541
0.493059
-0.996059
0.476954
-0.964807
0.460014
-0.931939
0.442265
-0.897501
0.423741
-0.861355
0.404474
-0.823767
0.384496
-0.784791
0.363845
-0.74432
0.342555
-0.702604
0.320663
-0.659704
0.298211
-0.615547
0.275234
-0.570362
0.251774
-0.524214
0.227873
-0.477067
0.203573
-0.429125
0.178913
-0.380457
0.153942
-0.331065
0.1287
-0.281122
0.103231
-0.230701
0.0775828
-0.179841
0.0517983
-0.128685
0.0259209
-0.0773067
-0.0257814
-0.0257146
0.0255528
-0.051386
0.0766213
-0.0769654
0.127544
-0.10241
0.178247
-0.127676
0.228656
-0.152717
0.278629
-0.17749
0.32813
-0.201954
0.377084
-0.226061
0.425321
-0.249772
0.472838
-0.273046
0.519567
-0.29584
0.565306
-0.318114
0.61009
-0.339832
0.653855
-0.360953
0.696376
-0.38144
0.737722
-0.401259
0.777833
-0.420374
0.816464
-0.43875
0.853719
-0.456359
0.889545
-0.473165
0.923677
-0.489141
0.956254
-0.504261
0.987229
-0.518494
1.01632
-0.531818
1.04371
-0.54421
1.06934
-0.555647
1.09294
-0.566108
1.1147
-0.575577
1.1346
-0.584036
1.15233
-0.59147
1.16812
-0.597867
1.18195
-0.603215
1.19354
-0.607504
1.20312
-0.610728
1.21067
-0.61288
1.21593
-0.613957
1.21914
-0.613957
1.2203
-0.61288
1.21914
-0.610728
1.21593
-0.607504
1.21068
-0.603215
1.20313
-0.597867
1.19355
-0.59147
1.18197
-0.584036
1.16814
-0.575577
1.15235
-0.566108
1.13462
-0.555647
1.11473
-0.54421
1.09297
-0.531818
1.06937
-0.518494
1.04374
-0.504261
1.01635
-0.489141
0.987258
-0.473165
0.956284
-0.456359
0.923707
-0.43875
0.889575
-0.420374
0.85375
-0.401259
0.816494
-0.38144
0.777863
-0.360953
0.737751
-0.339832
0.696404
-0.318114
0.653883
-0.29584
0.610117
-0.273046
0.565331
-0.249772
0.51959
-0.226061
0.47286
-0.201954
0.425341
-0.177491
0.377094
-0.152717
0.328153
-0.127676
0.278649
-0.10241
0.228657
-0.0769654
0.17826
-0.0513855
0.127553
-0.0257152
0.0766217
1.03022e-12
0.0255553
0.0257152
-0.0255553
0.0513854
-0.0766217
0.0769652
-0.127553
0.10241
-0.17826
0.127675
-0.228657
0.152716
-0.278649
0.17749
-0.328153
0.201952
-0.377094
0.226059
-0.425341
0.249769
-0.47286
0.273043
-0.51959
0.295836
-0.565331
0.318111
-0.610117
0.339828
-0.653883
0.360948
-0.696404
0.381435
-0.737751
0.401254
-0.777863
0.420367
-0.816494
0.438744
-0.85375
0.456351
-0.889575
0.473157
-0.923707
0.489133
-0.956284
0.504252
-0.987258
0.518485
-1.01635
0.531808
-1.04374
0.5442
-1.06937
0.555636
-1.09297
0.566097
-1.11473
0.575566
-1.13462
0.584024
-1.15235
0.591458
-1.16814
0.597855
-1.18197
0.603202
-1.19355
0.607491
-1.20313
0.610715
-1.21068
0.612867
-1.21593
0.613944
-1.21914
0.613944
-1.2203
0.612867
-1.21914
0.610715
-1.21593
0.607491
-1.21067
0.603202
-1.20312
0.597855
-1.19354
0.591458
-1.18195
0.584024
-1.16812
0.575566
-1.15233
0.566097
-1.1346
0.555636
-1.1147
0.5442
-1.09294
0.531808
-1.06934
0.518485
-1.04371
0.504252
-1.01632
0.489133
-0.987229
0.473157
-0.956254
0.456351
-0.923677
0.438744
-0.889545
0.420367
-0.853719
0.401254
-0.816464
0.381435
-0.777833
0.360948
-0.737722
0.339828
-0.696376
0.318111
-0.653855
0.295836
-0.61009
0.273043
-0.565306
0.249769
-0.519567
0.226059
-0.472838
0.201952
-0.425321
0.177489
-0.377084
0.152716
-0.32813
0.127676
-0.278629
0.102409
-0.228656
0.0769652
-0.178247
0.051386
-0.127544
0.0257146
-0.0766213
-0.0255528
-0.0254632
0.0252794
-0.0508836
0.0758016
-0.0762129
0.126179
-0.101408
0.17634
-0.126428
0.226209
-0.151224
0.275648
-0.175755
0.324619
-0.199979
0.37305
-0.223851
0.420771
-0.24733
0.467779
-0.270376
0.514008
-0.292947
0.559258
-0.315004
0.603563
-0.33651
0.64686
-0.357424
0.688925
-0.377711
0.729829
-0.397336
0.769511
-0.416264
0.807729
-0.434461
0.844585
-0.451897
0.880028
-0.468539
0.913795
-0.484359
0.946023
-0.499331
0.976666
-0.513425
1.00545
-0.526619
1.03254
-0.53889
1.0579
-0.550215
1.08125
-0.560574
1.10278
-0.56995
1.12246
-0.578326
1.14
-0.585688
1.15562
-0.592022
1.16931
-0.597318
1.18077
-0.601565
1.19024
-0.604758
1.19772
-0.606889
1.20292
-0.607955
1.20609
-0.607955
1.20724
-0.606889
1.2061
-0.604758
1.20292
-0.601565
1.19773
-0.597318
1.19025
-0.592022
1.18078
-0.585688
1.16932
-0.578326
1.15564
-0.56995
1.14002
-0.560574
1.12248
-0.550215
1.1028
-0.53889
1.08127
-0.526619
1.05793
-0.513425
1.03257
-0.499331
1.00548
-0.484359
0.976695
-0.468539
0.946052
-0.451897
0.913824
-0.434461
0.880058
-0.416264
0.844615
-0.397336
0.807758
-0.377711
0.769541
-0.357424
0.729858
-0.33651
0.688953
-0.315004
0.646887
-0.292947
0.603589
-0.270376
0.559282
-0.24733
0.514031
-0.223851
0.467801
-0.199979
0.42079
-0.175755
0.37306
-0.151224
0.324642
-0.126428
0.275667
-0.101409
0.22621
-0.0762129
0.176353
-0.050883
0.126188
-0.0254637
0.0758019
9.88808e-13
0.0252818
0.0254637
-0.0252818
0.0508829
-0.0758019
0.0762126
-0.126188
0.101409
-0.176353
0.126427
-0.22621
0.151223
-0.275667
0.175754
-0.324642
0.199977
-0.37306
0.223848
-0.42079
0.247327
-0.467801
0.270373
-0.514031
0.292943
-0.559282
0.315
-0.603589
0.336505
-0.646887
0.357418
-0.688953
0.377705
-0.729858
0.39733
-0.769541
0.416256
-0.807758
0.434453
-0.844615
0.451888
-0.880058
0.46853
-0.913824
0.484349
-0.946052
0.49932
-0.976695
0.513414
-1.00548
0.526607
-1.03257
0.538878
-1.05793
0.550202
-1.08127
0.560561
-1.1028
0.569937
-1.12248
0.578312
-1.14002
0.585673
-1.15564
0.592008
-1.16932
0.597303
-1.18078
0.60155
-1.19025
0.604742
-1.19773
0.606873
-1.20292
0.60794
-1.2061
0.60794
-1.20724
0.606873
-1.20609
0.604742
-1.20292
0.60155
-1.19772
0.597303
-1.19024
0.592008
-1.18077
0.585673
-1.16931
0.578312
-1.15562
0.569937
-1.14
0.560561
-1.12246
0.550202
-1.10278
0.538878
-1.08125
0.526607
-1.0579
0.513414
-1.03254
0.49932
-1.00545
0.484349
-0.976666
0.46853
-0.946023
0.451888
-0.913795
0.434453
-0.880028
0.416256
-0.844585
0.39733
-0.807729
0.377705
-0.769511
0.357418
-0.729829
0.336505
-0.688925
0.315
-0.64686
0.292943
-0.603563
0.270373
-0.559258
0.247327
-0.514008
0.223848
-0.467779
0.199977
-0.420771
0.175753
-0.37305
0.151223
-0.324619
0.126427
-0.275648
0.101408
-0.226209
0.0762126
-0.17634
0.0508835
-0.126179
0.0254631
-0.0758016
-0.0252794
-0.0251671
0.0249617
-0.0502919
0.0748488
-0.0753266
0.124593
-0.100229
0.174123
-0.124958
0.223366
-0.149466
0.272184
-0.173711
0.320539
-0.197654
0.368361
-0.221248
0.415482
-0.244454
0.4619
-0.267232
0.507547
-0.289541
0.552228
-0.311341
0.595977
-0.332597
0.63873
-0.353268
0.680266
-0.373319
0.720656
-0.392716
0.75984
-0.411424
0.797576
-0.429409
0.83397
-0.446643
0.868967
-0.463091
0.902309
-0.478727
0.934133
-0.493525
0.964391
-0.507456
0.992813
-0.520496
1.01956
-0.532624
1.04461
-0.543817
1.06766
-0.554056
1.08892
-0.563324
1.10835
-0.571602
1.12567
-0.578878
1.1411
-0.585139
1.15461
-0.590373
1.16593
-0.594571
1.17528
-0.597726
1.18267
-0.599833
1.1878
-0.600887
1.19093
-0.600887
1.19207
-0.599833
1.19094
-0.597726
1.1878
-0.594571
1.18267
-0.590373
1.17529
-0.585139
1.16594
-0.578878
1.15463
-0.571602
1.14111
-0.563324
1.12569
-0.554056
1.10837
-0.543817
1.08894
-0.532624
1.06768
-0.520496
1.04463
-0.507456
1.01959
-0.493525
0.99284
-0.478727
0.964419
-0.463091
0.934161
-0.446643
0.902338
-0.429409
0.868996
-0.411424
0.833999
-0.392716
0.797606
-0.373319
0.759868
-0.353268
0.720684
-0.332597
0.680294
-0.311341
0.638756
-0.289541
0.596002
-0.267232
0.552252
-0.244454
0.50757
-0.221248
0.461921
-0.197654
0.415501
-0.173712
0.368371
-0.149466
0.320562
-0.124957
0.272202
-0.10023
0.223367
-0.0753266
0.174136
-0.0502913
0.124602
-0.0251676
0.0748491
9.46301e-13
0.0249641
0.0251676
-0.0249641
0.0502912
-0.0748491
0.0753263
-0.124602
0.100229
-0.174136
0.124957
-0.223367
0.149464
-0.272202
0.17371
-0.320562
0.197652
-0.368371
0.221245
-0.415501
0.244451
-0.461921
0.267229
-0.50757
0.289537
-0.552252
0.311336
-0.596002
0.332591
-0.638756
0.353262
-0.680294
0.373312
-0.720684
0.392709
-0.759868
0.411415
-0.797606
0.4294
-0.833999
0.446633
-0.868996
0.463081
-0.902338
0.478716
-0.934161
0.493513
-0.964419
0.507443
-0.99284
0.520483
-1.01959
0.53261
-1.04463
0.543802
-1.06768
0.554041
-1.08894
0.563308
-1.10837
0.571586
-1.12569
0.578862
-1.14111
0.585122
-1.15463
0.590355
-1.16594
0.594553
-1.17529
0.597708
-1.18267
0.599815
-1.1878
0.600869
-1.19094
0.600869
-1.19207
0.599815
-1.19093
0.597708
-1.1878
0.594553
-1.18267
0.590355
-1.17528
0.585122
-1.16593
0.578862
-1.15461
0.571586
-1.1411
0.563308
-1.12567
0.554041
-1.10835
0.543802
-1.08892
0.53261
-1.06766
0.520483
-1.04461
0.507443
-1.01956
0.493513
-0.992813
0.478716
-0.964391
0.463081
-0.934133
0.446633
-0.902309
0.4294
-0.868967
0.411415
-0.83397
0.392709
-0.797576
0.373312
-0.75984
0.353262
-0.720656
0.332591
-0.680266
0.311336
-0.63873
0.289537
-0.595977
0.267229
-0.552228
0.244451
-0.507547
0.221245
-0.4619
0.197652
-0.415482
0.17371
-0.368361
0.149464
-0.320539
0.124957
-0.272184
0.100229
-0.223366
0.0753263
-0.174123
0.0502918
-0.124593
0.025167
-0.0748488
-0.0249617
-0.0248268
0.0246002
-0.0496119
0.0737648
-0.0743082
0.122789
-0.0988742
0.171601
-0.123269
0.220131
-0.147445
0.268242
-0.171363
0.315897
-0.194981
0.363026
-0.218256
0.409465
-0.241149
0.45521
-0.26362
0.500197
-0.285626
0.54423
-0.307132
0.587345
-0.328101
0.629479
-0.348492
0.670414
-0.368272
0.710218
-0.387407
0.748835
-0.405862
0.786025
-0.423604
0.821891
-0.440605
0.856381
-0.456831
0.889241
-0.472256
0.920603
-0.486853
0.950423
-0.500596
0.978434
-0.51346
1.0048
-0.525424
1.02948
-0.536466
1.0522
-0.546566
1.07315
-0.555708
1.0923
-0.563875
1.10937
-0.571053
1.12457
-0.577229
1.13789
-0.582392
1.14904
-0.586533
1.15826
-0.589646
1.16554
-0.591724
1.17059
-0.592764
1.17368
-0.592764
1.1748
-0.591724
1.17369
-0.589646
1.1706
-0.586533
1.16554
-0.582392
1.15827
-0.577229
1.14905
-0.571053
1.1379
-0.563875
1.12459
-0.555708
1.10938
-0.546566
1.09232
-0.536466
1.07317
-0.525424
1.05222
-0.51346
1.0295
-0.500596
1.00482
-0.486853
0.97846
-0.472256
0.95045
-0.456831
0.920631
-0.440605
0.889269
-0.423604
0.85641
-0.405862
0.82192
-0.387407
0.786053
-0.368272
0.748863
-0.348492
0.710246
-0.328101
0.67044
-0.307132
0.629505
-0.285626
0.58737
-0.26362
0.544254
-0.241149
0.500218
-0.218256
0.455231
-0.194981
0.409483
-0.171363
0.363035
-0.147445
0.315919
-0.123268
0.26826
-0.0988747
0.220132
-0.0743082
0.171614
-0.0496114
0.122797
-0.0248274
0.073765
9.02915e-13
0.0246025
0.0248273
-0.0246025
0.0496112
-0.073765
0.0743079
-0.122797
0.0988742
-0.171614
0.123267
-0.220132
0.147444
-0.26826
0.171361
-0.315919
0.194979
-0.363035
0.218254
-0.409483
0.241145
-0.455231
0.263616
-0.500218
0.285622
-0.544254
0.307127
-0.58737
0.328094
-0.629505
0.348485
-0.67044
0.368264
-0.710246
0.387399
-0.748863
0.405852
-0.786053
0.423594
-0.82192
0.440593
-0.85641
0.456819
-0.889269
0.472243
-0.920631
0.48684
-0.95045
0.500581
-0.97846
0.513445
-1.00482
0.525408
-1.0295
0.536449
-1.05222
0.546549
-1.07317
0.555691
-1.09232
0.563857
-1.10938
0.571034
-1.12459
0.57721
-1.1379
0.582373
-1.14905
0.586514
-1.15827
0.589626
-1.16554
0.591704
-1.1706
0.592744
-1.17369
0.592744
-1.1748
0.591704
-1.17368
0.589626
-1.17059
0.586514
-1.16554
0.582373
-1.15826
0.57721
-1.14904
0.571034
-1.13789
0.563857
-1.12457
0.555691
-1.10937
0.546549
-1.0923
0.536449
-1.07315
0.525408
-1.0522
0.513445
-1.02948
0.500581
-1.0048
0.48684
-0.978434
0.472243
-0.950423
0.456819
-0.920603
0.440593
-0.889241
0.423594
-0.856381
0.405852
-0.821891
0.387399
-0.786025
0.368264
-0.748835
0.348485
-0.710218
0.328094
-0.670414
0.307127
-0.629479
0.285622
-0.587345
0.263616
-0.54423
0.241145
-0.500197
0.218254
-0.45521
0.194979
-0.409465
0.171361
-0.363026
0.147444
-0.315897
0.123268
-0.268242
0.0988736
-0.220131
0.0743079
-0.171601
0.0496118
-0.122789
0.0248268
-0.0737648
-0.0246002
-0.024443
0.0241955
-0.0488449
0.0725514
-0.0731594
0.120769
-0.0973456
0.168779
-0.121363
0.21651
-0.145165
0.263829
-0.168713
0.3107
-0.191967
0.357054
-0.214882
0.402729
-0.237421
0.447722
-0.259544
0.491968
-0.281211
0.535278
-0.302384
0.577683
-0.323028
0.619124
-0.343105
0.659385
-0.362579
0.698535
-0.381419
0.736516
-0.399588
0.773095
-0.417056
0.808371
-0.433794
0.842294
-0.449769
0.874613
-0.464955
0.905459
-0.479327
0.934789
-0.492857
0.962338
-0.505523
0.988268
-0.517302
1.01254
-0.528173
1.03489
-0.538117
1.05549
-0.547118
1.07433
-0.555159
1.09112
-0.562225
1.10607
-0.568306
1.11917
-0.573389
1.13014
-0.577467
1.13921
-0.580531
1.14636
-0.582577
1.15134
-0.583601
1.15438
-0.583601
1.15548
-0.582577
1.15438
-0.580531
1.15134
-0.577467
1.14637
-0.573389
1.13922
-0.568306
1.13015
-0.562225
1.11918
-0.555159
1.10609
-0.547118
1.09113
-0.538117
1.07435
-0.528173
1.05551
-0.517302
1.03491
-0.505523
1.01256
-0.492857
0.988293
-0.479327
0.962363
-0.464955
0.934815
-0.449769
0.905486
-0.433794
0.87464
-0.417056
0.842321
-0.399588
0.808398
-0.381419
0.773122
-0.362579
0.736543
-0.343105
0.698562
-0.323028
0.659411
-0.302384
0.619149
-0.281211
0.577707
-0.259544
0.5353
-0.237421
0.491989
-0.214882
0.447742
-0.191967
0.402747
-0.168714
0.357063
-0.145165
0.310722
-0.121362
0.263847
-0.0973462
0.21651
-0.0731594
0.168791
-0.0488444
0.120777
-0.0244435
0.0725515
8.58841e-13
0.0241978
0.0244435
-0.0241978
0.0488442
-0.0725515
0.0731591
-0.120777
0.0973456
-0.168791
0.121361
-0.21651
0.145164
-0.263847
0.168712
-0.310722
0.191965
-0.357063
0.214879
-0.402747
0.237417
-0.447742
0.25954
-0.491989
0.281206
-0.5353
0.302378
-0.577707
0.323022
-0.619149
0.343097
-0.659411
0.36257
-0.698562
0.381409
-0.736543
0.399577
-0.773122
0.417044
-0.808398
0.433781
-0.842321
0.449756
-0.87464
0.464941
-0.905486
0.479312
-0.934815
0.492842
-0.962363
0.505506
-0.988293
0.517285
-1.01256
0.528155
-1.03491
0.538098
-1.05551
0.547099
-1.07435
0.555139
-1.09113
0.562205
-1.10609
0.568285
-1.11918
0.573368
-1.13015
0.577445
-1.13922
0.580509
-1.14637
0.582555
-1.15134
0.583579
-1.15438
0.583579
-1.15548
0.582555
-1.15438
0.580509
-1.15134
0.577445
-1.14636
0.573368
-1.13921
0.568285
-1.13014
0.562205
-1.11917
0.555139
-1.10607
0.547099
-1.09112
0.538098
-1.07433
0.528155
-1.05549
0.517285
-1.03489
0.505506
-1.01254
0.492842
-0.988268
0.479312
-0.962338
0.464941
-0.934789
0.449756
-0.905459
0.433781
-0.874613
0.417044
-0.842294
0.399577
-0.808371
0.381409
-0.773095
0.36257
-0.736516
0.343097
-0.698535
0.323022
-0.659385
0.302378
-0.619124
0.281206
-0.577683
0.25954
-0.535278
0.237417
-0.491968
0.214879
-0.447722
0.191965
-0.402729
0.168712
-0.357054
0.145164
-0.3107
0.121362
-0.263829
0.097345
-0.21651
0.0731591
-0.168779
0.0488448
-0.120769
0.0244429
-0.0725514
-0.0241955
-0.0240163
0.0237484
-0.0479923
0.0712106
-0.0718823
0.118537
-0.0956463
0.16566
-0.119244
0.212509
-0.142631
0.258954
-0.165768
0.304958
-0.188616
0.350456
-0.211131
0.395287
-0.233276
0.439448
-0.255014
0.482877
-0.276302
0.525386
-0.297106
0.567008
-0.31739
0.607683
-0.337115
0.6472
-0.35625
0.685626
-0.374761
0.722905
-0.392613
0.758808
-0.409776
0.793433
-0.426221
0.826728
-0.441918
0.85845
-0.45684
0.888726
-0.470961
0.917514
-0.484254
0.944554
-0.496699
0.970005
-0.508272
0.99383
-0.518954
1.01576
-0.528724
1.03599
-0.537568
1.05447
-0.545468
1.07095
-0.552412
1.08563
-0.558386
1.09849
-0.563381
1.10925
-0.567387
1.11815
-0.570398
1.12518
-0.572408
1.13006
-0.573414
1.13304
-0.573414
1.13412
-0.572408
1.13305
-0.570398
1.13006
-0.567387
1.12519
-0.563381
1.11816
-0.558386
1.10926
-0.552412
1.0985
-0.545468
1.08565
-0.537568
1.07097
-0.528724
1.05449
-0.518954
1.03601
-0.508272
1.01578
-0.496699
0.993852
-0.484254
0.970029
-0.470961
0.944578
-0.45684
0.917539
-0.441918
0.888752
-0.426221
0.858476
-0.409776
0.826755
-0.392613
0.793459
-0.374761
0.758834
-0.35625
0.722931
-0.337115
0.685652
-0.31739
0.647225
-0.297106
0.607707
-0.276302
0.567031
-0.255014
0.525408
-0.233276
0.482897
-0.211131
0.439467
-0.188616
0.395304
-0.165769
0.350464
-0.142631
0.304979
-0.119244
0.258971
-0.0956468
0.212509
-0.0718823
0.165671
-0.0479917
0.118545
-0.0240168
0.0712107
8.14177e-13
0.0237506
0.0240168
-0.0237506
0.0479916
-0.0712107
0.0718819
-0.118545
0.0956462
-0.165671
0.119243
-0.212509
0.14263
-0.258971
0.165767
-0.304979
0.188614
-0.350464
0.211128
-0.395304
0.233272
-0.439467
0.255009
-0.482897
0.276296
-0.525408
0.297099
-0.567031
0.317382
-0.607707
0.337107
-0.647225
0.356241
-0.685652
0.37475
-0.722931
0.392601
-0.758834
0.409764
-0.793459
0.426208
-0.826755
0.441904
-0.858476
0.456824
-0.888752
0.470944
-0.917539
0.484237
-0.944578
0.496681
-0.970029
0.508253
-0.993852
0.518934
-1.01578
0.528704
-1.03601
0.537547
-1.05449
0.545447
-1.07097
0.552389
-1.08565
0.558364
-1.0985
0.563358
-1.10926
0.567364
-1.11816
0.570374
-1.12519
0.572384
-1.13006
0.57339
-1.13305
0.57339
-1.13412
0.572384
-1.13304
0.570374
-1.13006
0.567364
-1.12518
0.563358
-1.11815
0.558364
-1.10925
0.552389
-1.09849
0.545447
-1.08563
0.537547
-1.07095
0.528704
-1.05447
0.518934
-1.03599
0.508253
-1.01576
0.496681
-0.99383
0.484237
-0.970005
0.470944
-0.944554
0.456824
-0.917514
0.441904
-0.888726
0.426208
-0.85845
0.409764
-0.826728
0.392601
-0.793433
0.37475
-0.758808
0.356241
-0.722905
0.337107
-0.685626
0.317382
-0.6472
0.297099
-0.607683
0.276296
-0.567008
0.255009
-0.525386
0.233272
-0.482877
0.211128
-0.439448
0.188614
-0.395287
0.165766
-0.350456
0.14263
-0.304958
0.119243
-0.258954
0.0956456
-0.212509
0.0718819
-0.16566
0.0479921
-0.118537
0.0240162
-0.0712106
-0.0237484
-0.0235475
0.0232596
-0.0470554
0.069745
-0.0704791
0.116098
-0.0937792
0.16225
-0.116917
0.208135
-0.139847
0.253624
-0.162532
0.298682
-0.184934
0.343243
-0.20701
0.387151
-0.228723
0.430403
-0.250036
0.472938
-0.270908
0.514572
-0.291306
0.555338
-0.311194
0.595175
-0.330535
0.633879
-0.349296
0.671515
-0.367445
0.708027
-0.384949
0.74319
-0.401777
0.777102
-0.417902
0.809713
-0.433292
0.840781
-0.447922
0.870435
-0.461767
0.898629
-0.474802
0.925113
-0.487003
0.95004
-0.498351
0.973375
-0.508824
0.994856
-0.518404
1.01466
-0.527075
1.03277
-0.534821
1.04891
-0.541629
1.06329
-0.547487
1.07588
-0.552384
1.08642
-0.556312
1.09514
-0.559264
1.10202
-0.561235
1.1068
-0.562222
1.10972
-0.562222
1.11078
-0.561235
1.10973
-0.559264
1.10681
-0.556312
1.10203
-0.552384
1.09515
-0.547487
1.08643
-0.541629
1.07589
-0.534821
1.0633
-0.527075
1.04893
-0.518404
1.03279
-0.508824
1.01468
-0.498351
0.994876
-0.487003
0.973396
-0.474802
0.950063
-0.461767
0.925137
-0.447922
0.898654
-0.433292
0.870459
-0.417902
0.840806
-0.401777
0.809738
-0.384949
0.777127
-0.367445
0.743216
-0.349296
0.708052
-0.330535
0.671539
-0.311194
0.633903
-0.291306
0.595198
-0.270908
0.55536
-0.250036
0.514593
-0.228723
0.472958
-0.20701
0.430422
-0.184934
0.387167
-0.162533
0.343251
-0.139847
0.298702
-0.116916
0.25364
-0.0937797
0.208135
-0.0704791
0.162261
-0.0470549
0.116105
-0.023548
0.069745
7.69271e-13
0.0232617
0.0235479
-0.0232617
0.0470547
-0.069745
0.0704787
-0.116105
0.093779
-0.162261
0.116915
-0.208135
0.139845
-0.25364
0.162531
-0.298702
0.184931
-0.343251
0.207006
-0.387167
0.228718
-0.430422
0.250031
-0.472958
0.270903
-0.514593
0.291299
-0.55536
0.311186
-0.595198
0.330526
-0.633903
0.349286
-0.671539
0.367434
-0.708052
0.384937
-0.743216
0.401764
-0.777127
0.417887
-0.809738
0.433277
-0.840806
0.447906
-0.870459
0.46175
-0.898654
0.474783
-0.925137
0.486984
-0.950063
0.498331
-0.973396
0.508803
-0.994876
0.518382
-1.01468
0.527053
-1.03279
0.534798
-1.04893
0.541605
-1.0633
0.547463
-1.07589
0.552359
-1.08643
0.556287
-1.09515
0.559239
-1.10203
0.56121
-1.10681
0.562196
-1.10973
0.562196
-1.11078
0.56121
-1.10972
0.559239
-1.1068
0.556287
-1.10202
0.552359
-1.09514
0.547463
-1.08642
0.541605
-1.07588
0.534798
-1.06329
0.527053
-1.04891
0.518382
-1.03277
0.508803
-1.01466
0.498331
-0.994856
0.486984
-0.973375
0.474783
-0.95004
0.46175
-0.925113
0.447906
-0.898629
0.433277
-0.870435
0.417887
-0.840781
0.401764
-0.809713
0.384937
-0.777102
0.367434
-0.74319
0.349286
-0.708027
0.330526
-0.671515
0.311186
-0.633879
0.291299
-0.595175
0.270903
-0.555338
0.250031
-0.514572
0.228718
-0.472938
0.207006
-0.430403
0.184931
-0.387151
0.16253
-0.343243
0.139845
-0.298682
0.116915
-0.253624
0.0937785
-0.208135
0.0704787
-0.16225
0.0470552
-0.116098
0.0235474
-0.069745
-0.0232596
-0.0230373
0.02273
-0.046036
0.068157
-0.0689522
0.113454
-0.0917475
0.158556
-0.114384
0.203396
-0.136817
0.247849
-0.159011
0.291881
-0.180928
0.335428
-0.202525
0.378336
-0.223768
0.420604
-0.244619
0.46217
-0.26504
0.502856
-0.284995
0.542694
-0.304453
0.581624
-0.323374
0.619447
-0.341729
0.656225
-0.359485
0.691906
-0.37661
0.726269
-0.393073
0.759408
-0.408849
0.791276
-0.423905
0.821638
-0.438219
0.850616
-0.451764
0.878169
-0.464516
0.904049
-0.476453
0.928409
-0.487555
0.951212
-0.497801
0.972204
-0.507174
0.991561
-0.515657
1.00926
-0.523236
1.02503
-0.529896
1.03908
-0.535627
1.05138
-0.540418
1.06169
-0.544261
1.0702
-0.547149
1.07693
-0.549077
1.0816
-0.550042
1.08446
-0.550042
1.08549
-0.549077
1.08446
-0.547149
1.0816
-0.544261
1.07693
-0.540418
1.07021
-0.535627
1.0617
-0.529896
1.05139
-0.523236
1.03909
-0.515657
1.02504
-0.507174
1.00927
-0.497801
0.991579
-0.487555
0.972223
-0.476453
0.951233
-0.464516
0.92843
-0.451764
0.904072
-0.438219
0.878192
-0.423905
0.850639
-0.408849
0.821662
-0.393073
0.7913
-0.37661
0.759433
-0.359485
0.726293
-0.341729
0.691929
-0.323374
0.656249
-0.304453
0.619469
-0.284995
0.581646
-0.26504
0.542714
-0.244619
0.502876
-0.223768
0.462189
-0.202525
0.420621
-0.180928
0.378352
-0.159012
0.335435
-0.136817
0.291901
-0.114383
0.247865
-0.091748
0.203396
-0.0689522
0.158567
-0.0460355
0.113461
-0.0230378
0.068157
7.2426e-13
0.0227321
0.0230378
-0.0227321
0.0460353
-0.068157
0.0689518
-0.113461
0.0917473
-0.158567
0.114382
-0.203396
0.136816
-0.247865
0.159009
-0.291901
0.180925
-0.335435
0.202522
-0.378352
0.223763
-0.420621
0.244614
-0.462189
0.265033
-0.502876
0.284988
-0.542714
0.304444
-0.581646
0.323365
-0.619469
0.341718
-0.656249
0.359474
-0.691929
0.376597
-0.726293
0.393059
-0.759433
0.408834
-0.7913
0.423889
-0.821662
0.438201
-0.850639
0.451746
-0.878192
0.464497
-0.904072
0.476433
-0.92843
0.487534
-0.951233
0.497779
-0.972223
0.507151
-0.991579
0.515633
-1.00927
0.523211
-1.02504
0.529871
-1.03909
0.535601
-1.05139
0.540392
-1.0617
0.544234
-1.07021
0.547122
-1.07693
0.54905
-1.0816
0.550015
-1.08446
0.550015
-1.08549
0.54905
-1.08446
0.547122
-1.0816
0.544234
-1.07693
0.540392
-1.0702
0.535601
-1.06169
0.529871
-1.05138
0.523211
-1.03908
0.515633
-1.02503
0.507151
-1.00926
0.497779
-0.991561
0.487534
-0.972204
0.476433
-0.951212
0.464497
-0.928409
0.451746
-0.904049
0.438201
-0.878169
0.423889
-0.850616
0.408834
-0.821638
0.393059
-0.791276
0.376597
-0.759408
0.359474
-0.726269
0.341718
-0.691906
0.323365
-0.656225
0.304444
-0.619447
0.284988
-0.581624
0.265033
-0.542694
0.244614
-0.502856
0.223763
-0.46217
0.202522
-0.420604
0.180925
-0.378336
0.159009
-0.335428
0.136816
-0.291881
0.114382
-0.247849
0.0917468
-0.203396
0.0689518
-0.158556
0.0460358
-0.113454
0.0230373
-0.068157
-0.02273
-0.0224868
0.0221605
-0.0449358
0.0664494
-0.0673044
0.110612
-0.0895549
0.154583
-0.11165
0.1983
-0.133548
0.24164
-0.155211
0.284569
-0.176604
0.327024
-0.197685
0.368857
-0.21842
0.410066
-0.238773
0.450591
-0.258706
0.490258
-0.278185
0.529097
-0.297177
0.567052
-0.315647
0.603927
-0.333562
0.639784
-0.350894
0.674571
-0.36761
0.708073
-0.38368
0.740382
-0.399078
0.771452
-0.413775
0.801053
-0.427747
0.829305
-0.440968
0.856167
-0.453416
0.881399
-0.465068
0.905149
-0.475904
0.927381
-0.485905
0.947847
-0.495054
0.966719
-0.503335
0.983969
-0.510732
0.999346
-0.517233
1.01304
-0.522827
1.02504
-0.527504
1.03509
-0.531255
1.04339
-0.534074
1.04995
-0.535956
1.0545
-0.536898
1.05729
-0.536898
1.05829
-0.535956
1.05729
-0.534074
1.05451
-0.531255
1.04995
-0.527504
1.0434
-0.522827
1.0351
-0.517233
1.02505
-0.510732
1.01306
-0.503335
0.999361
-0.495054
0.983985
-0.485905
0.966736
-0.475904
0.947865
-0.465068
0.9274
-0.453416
0.905169
-0.440968
0.881421
-0.427747
0.856189
-0.413775
0.829327
-0.399078
0.801075
-0.38368
0.771475
-0.36761
0.740405
-0.350894
0.708096
-0.333562
0.674594
-0.315647
0.639807
-0.297177
0.603949
-0.278185
0.567073
-0.258706
0.529117
-0.238773
0.490277
-0.21842
0.450609
-0.197685
0.410083
-0.176604
0.368872
-0.155212
0.327031
-0.133548
0.284587
-0.11165
0.241655
-0.0895554
0.1983
-0.0673044
0.154594
-0.0449353
0.110619
-0.0224873
0.0664493
6.79323e-13
0.0221625
0.0224872
-0.0221625
0.0449351
-0.0664493
0.0673039
-0.110619
0.0895546
-0.154594
0.111648
-0.1983
0.133546
-0.241655
0.155209
-0.284587
0.176601
-0.327031
0.197682
-0.368872
0.218415
-0.410083
0.238768
-0.450609
0.258699
-0.490277
0.278177
-0.529117
0.297168
-0.567073
0.315637
-0.603949
0.333551
-0.639807
0.350882
-0.674594
0.367596
-0.708096
0.383665
-0.740405
0.399062
-0.771475
0.413758
-0.801075
0.427728
-0.829327
0.440949
-0.856189
0.453395
-0.881421
0.465046
-0.905169
0.475882
-0.9274
0.485882
-0.947865
0.49503
-0.966736
0.50331
-0.983985
0.510706
-0.999361
0.517206
-1.01306
0.5228
-1.02505
0.527476
-1.0351
0.531227
-1.0434
0.534046
-1.04995
0.535928
-1.05451
0.53687
-1.05729
0.53687
-1.05829
0.535928
-1.05729
0.534046
-1.0545
0.531227
-1.04995
0.527476
-1.04339
0.5228
-1.03509
0.517206
-1.02504
0.510706
-1.01304
0.50331
-0.999346
0.49503
-0.983969
0.485882
-0.966719
0.475882
-0.947847
0.465046
-0.927381
0.453395
-0.905149
0.440949
-0.881399
0.427728
-0.856167
0.413758
-0.829305
0.399062
-0.801053
0.383665
-0.771452
0.367596
-0.740382
0.350882
-0.708073
0.333551
-0.674571
0.315637
-0.639784
0.297168
-0.603927
0.278177
-0.567052
0.258699
-0.529097
0.238768
-0.490258
0.218415
-0.450591
0.197682
-0.410066
0.176601
-0.368857
0.155209
-0.327024
0.133546
-0.284569
0.111649
-0.24164
0.0895541
-0.1983
0.0673039
-0.154583
0.0449356
-0.110612
0.0224867
-0.0664494
-0.0221605
-0.0218968
0.0215522
-0.0437568
0.0646253
-0.0655385
0.107575
-0.0872052
0.15034
-0.108721
0.192857
-0.130044
0.235006
-0.151139
0.276757
-0.17197
0.318047
-0.192499
0.358731
-0.212689
0.398809
-0.232508
0.438221
-0.251918
0.476799
-0.270886
0.514572
-0.28938
0.551485
-0.307365
0.587348
-0.324811
0.622221
-0.341688
0.656053
-0.357965
0.688635
-0.373613
0.720058
-0.388608
0.750274
-0.402919
0.779062
-0.416524
0.806539
-0.429399
0.832664
-0.44152
0.857203
-0.452866
0.880301
-0.463418
0.901922
-0.473157
0.921826
-0.482066
0.94018
-0.490129
0.956957
-0.497332
0.971912
-0.503663
0.985233
-0.50911
0.996901
-0.513664
1.00667
-0.517317
1.01475
-0.520062
1.02112
-0.521895
1.02555
-0.522812
1.02826
-0.522812
1.02924
-0.521895
1.02826
-0.520062
1.02556
-0.517317
1.02113
-0.513664
1.01476
-0.50911
1.00668
-0.503663
0.996912
-0.497332
0.985245
-0.490129
0.971926
-0.482066
0.956972
-0.473157
0.940197
-0.463418
0.921844
-0.452866
0.901941
-0.44152
0.88032
-0.429399
0.857223
-0.416524
0.832684
-0.402919
0.80656
-0.388608
0.779084
-0.373613
0.750296
-0.357965
0.720079
-0.341688
0.688657
-0.324811
0.656074
-0.307365
0.622242
-0.28938
0.587369
-0.270886
0.551505
-0.251918
0.514591
-0.232508
0.476817
-0.212689
0.438238
-0.192499
0.398825
-0.17197
0.358746
-0.151139
0.318053
-0.130044
0.276775
-0.10872
0.235021
-0.0872057
0.192856
-0.0655385
0.15035
-0.0437563
0.107582
-0.0218972
0.0646251
6.34486e-13
0.0215541
0.0218972
-0.0215541
0.0437561
-0.0646251
0.065538
-0.107582
0.0872049
-0.15035
0.108719
-0.192856
0.130042
-0.235021
0.151137
-0.276775
0.171967
-0.318053
0.192495
-0.358746
0.212684
-0.398825
0.232503
-0.438238
0.251911
-0.476817
0.270878
-0.514591
0.289371
-0.551505
0.307355
-0.587369
0.324799
-0.622242
0.341675
-0.656074
0.357951
-0.688657
0.373598
-0.720079
0.388591
-0.750296
0.402902
-0.779084
0.416505
-0.80656
0.429379
-0.832684
0.441498
-0.857223
0.452843
-0.88032
0.463395
-0.901941
0.473133
-0.921844
0.48204
-0.940197
0.490103
-0.956972
0.497305
-0.971926
0.503635
-0.985245
0.509082
-0.996912
0.513635
-1.00668
0.517288
-1.01476
0.520033
-1.02113
0.521865
-1.02556
0.522782
-1.02826
0.522782
-1.02924
0.521865
-1.02826
0.520033
-1.02555
0.517288
-1.02112
0.513635
-1.01475
0.509082
-1.00667
0.503635
-0.996901
0.497305
-0.985233
0.490103
-0.971912
0.48204
-0.956957
0.473133
-0.94018
0.463395
-0.921826
0.452843
-0.901922
0.441498
-0.880301
0.429379
-0.857203
0.416505
-0.832664
0.402902
-0.806539
0.388591
-0.779062
0.373598
-0.750274
0.357951
-0.720058
0.341675
-0.688635
0.324799
-0.656053
0.307355
-0.622221
0.289371
-0.587348
0.270878
-0.551485
0.251911
-0.514572
0.232503
-0.476799
0.212684
-0.438221
0.192495
-0.398809
0.171967
-0.358731
0.151136
-0.318047
0.130042
-0.276757
0.108719
-0.235006
0.0872044
-0.192857
0.065538
-0.15034
0.0437566
-0.107575
0.0218967
-0.0646253
-0.0215522
-0.0212683
0.020906
-0.042501
0.0626877
-0.0636576
0.10435
-0.0847025
0.145832
-0.1056
0.187075
-0.126312
0.227961
-0.146801
0.268459
-0.167035
0.308511
-0.186974
0.347976
-0.206585
0.386852
-0.225836
0.425083
-0.244688
0.462505
-0.263112
0.499145
-0.281075
0.534951
-0.298544
0.569739
-0.315489
0.603566
-0.331882
0.636384
-0.347692
0.667989
-0.362891
0.698469
-0.377456
0.72778
-0.391356
0.755705
-0.404571
0.782358
-0.417076
0.8077
-0.428849
0.831503
-0.43987
0.853908
-0.450119
0.874882
-0.459578
0.894189
-0.468231
0.911993
-0.476064
0.928267
-0.48306
0.942773
-0.489209
0.955695
-0.4945
0.967013
-0.498923
0.976489
-0.502471
0.984325
-0.505138
0.990508
-0.506918
0.994806
-0.507809
0.997432
-0.507809
0.998384
-0.506918
0.997434
-0.505138
0.994809
-0.502471
0.990514
-0.498923
0.984332
-0.4945
0.976498
-0.489209
0.967022
-0.48306
0.955706
-0.476064
0.942786
-0.468231
0.928281
-0.459578
0.912008
-0.450119
0.894205
-0.43987
0.874899
-0.428849
0.853926
-0.417076
0.831522
-0.404571
0.807719
-0.391356
0.782378
-0.377456
0.755725
-0.362891
0.727801
-0.347692
0.69849
-0.331882
0.66801
-0.315489
0.636404
-0.298544
0.603586
-0.281075
0.569758
-0.263112
0.53497
-0.244688
0.499163
-0.225836
0.462521
-0.206585
0.425099
-0.186974
0.386867
-0.167035
0.34799
-0.146802
0.308517
-0.126312
0.268476
-0.1056
0.227974
-0.084703
0.187074
-0.0636576
0.145842
-0.0425005
0.104356
-0.0212688
0.0626875
5.90005e-13
0.0209078
0.0212688
-0.0209078
0.0425003
-0.0626875
0.0636571
-0.104356
0.0847021
-0.145842
0.105599
-0.187074
0.12631
-0.227974
0.146799
-0.268476
0.167032
-0.308517
0.18697
-0.34799
0.20658
-0.386867
0.22583
-0.425099
0.244681
-0.462521
0.263104
-0.499163
0.281066
-0.53497
0.298534
-0.569758
0.315477
-0.603586
0.331869
-0.636404
0.347677
-0.66801
0.362876
-0.69849
0.377439
-0.727801
0.391338
-0.755725
0.404551
-0.782378
0.417055
-0.807719
0.428827
-0.831522
0.439847
-0.853926
0.450095
-0.874899
0.459553
-0.894205
0.468205
-0.912008
0.476037
-0.928281
0.483032
-0.942786
0.48918
-0.955706
0.494471
-0.967022
0.498893
-0.976498
0.502441
-0.984332
0.505107
-0.990514
0.506887
-0.994809
0.507778
-0.997434
0.507778
-0.998384
0.506887
-0.997432
0.505107
-0.994806
0.502441
-0.990508
0.498893
-0.984325
0.494471
-0.976489
0.48918
-0.967013
0.483032
-0.955695
0.476037
-0.942773
0.468205
-0.928267
0.459553
-0.911993
0.450095
-0.894189
0.439847
-0.874882
0.428827
-0.853908
0.417055
-0.831503
0.404551
-0.8077
0.391338
-0.782358
0.377439
-0.755705
0.362876
-0.72778
0.347677
-0.698469
0.331869
-0.667989
0.315477
-0.636384
0.298534
-0.603566
0.281066
-0.569739
0.263104
-0.534951
0.244681
-0.499145
0.22583
-0.462505
0.20658
-0.425083
0.18697
-0.386852
0.167032
-0.347976
0.146799
-0.308511
0.12631
-0.268459
0.105599
-0.227961
0.0847017
-0.187075
0.0636571
-0.145832
0.0425008
-0.10435
0.0212683
-0.0626877
-0.020906
-0.0206026
0.0202232
-0.0411707
0.0606402
-0.061665
0.100942
-0.0820512
0.141069
-0.102295
0.180964
-0.122358
0.220515
-0.142206
0.259691
-0.161807
0.298435
-0.181122
0.336611
-0.200119
0.374217
-0.218767
0.411199
-0.23703
0.447398
-0.254876
0.482842
-0.272277
0.517479
-0.2892
0.55113
-0.305614
0.583853
-0.321494
0.615598
-0.336809
0.646171
-0.351533
0.675656
-0.365641
0.704009
-0.379107
0.731022
-0.391907
0.756804
-0.404022
0.781318
-0.415426
0.804345
-0.426102
0.826018
-0.43603
0.846306
-0.445194
0.864983
-0.453576
0.882205
-0.461163
0.897947
-0.46794
0.91198
-0.473897
0.924479
-0.479022
0.935428
-0.483307
0.944595
-0.486744
0.952175
-0.489327
0.958156
-0.491051
0.962313
-0.491914
0.964854
-0.491914
0.965774
-0.491051
0.964855
-0.489327
0.962316
-0.486744
0.958161
-0.483307
0.952181
-0.479022
0.944603
-0.473897
0.935437
-0.46794
0.92449
-0.461163
0.911992
-0.453576
0.89796
-0.445194
0.882219
-0.43603
0.864998
-0.426102
0.846322
-0.415426
0.826035
-0.404022
0.804362
-0.391907
0.781337
-0.379107
0.756823
-0.365641
0.731041
-0.351533
0.704028
-0.336809
0.675675
-0.321494
0.64619
-0.305614
0.615617
-0.2892
0.583871
-0.272277
0.551148
-0.254876
0.517496
-0.23703
0.482859
-0.218767
0.447414
-0.200119
0.411214
-0.181122
0.374231
-0.161807
0.336623
-0.142207
0.29844
-0.122358
0.259707
-0.102295
0.220528
-0.0820517
0.180963
-0.061665
0.141078
-0.0411702
0.100948
-0.0206031
0.0606399
5.46223e-13
0.0202249
0.020603
-0.0202249
0.04117
-0.0606399
0.0616645
-0.100948
0.0820508
-0.141078
0.102293
-0.180963
0.122356
-0.220528
0.142204
-0.259707
0.161803
-0.29844
0.181118
-0.336623
0.200114
-0.374231
0.218761
-0.411214
0.237022
-0.447414
0.254868
-0.482859
0.272268
-0.517496
0.289189
-0.551148
0.305602
-0.583871
0.321481
-0.615617
0.336794
-0.64619
0.351517
-0.675675
0.365624
-0.704028
0.379088
-0.731041
0.391888
-0.756823
0.404
-0.781337
0.415404
-0.804362
0.426078
-0.826035
0.436006
-0.846322
0.445168
-0.864998
0.453549
-0.882219
0.461135
-0.89796
0.467912
-0.911992
0.473867
-0.92449
0.478992
-0.935437
0.483276
-0.944603
0.486713
-0.952181
0.489296
-0.958161
0.49102
-0.962316
0.491883
-0.964855
0.491883
-0.965774
0.49102
-0.964854
0.489296
-0.962313
0.486713
-0.958156
0.483276
-0.952175
0.478992
-0.944595
0.473867
-0.935428
0.467912
-0.924479
0.461135
-0.91198
0.453549
-0.897947
0.445168
-0.882205
0.436006
-0.864983
0.426078
-0.846306
0.415404
-0.826018
0.404
-0.804345
0.391888
-0.781318
0.379088
-0.756804
0.365624
-0.731022
0.351517
-0.704009
0.336794
-0.675656
0.321481
-0.646171
0.305602
-0.615598
0.289189
-0.583853
0.272268
-0.55113
0.254868
-0.517479
0.237022
-0.482842
0.218761
-0.447398
0.200114
-0.411199
0.181118
-0.374217
0.161803
-0.336611
0.142204
-0.298435
0.122356
-0.259691
0.102294
-0.220515
0.0820503
-0.180964
0.0616645
-0.141069
0.0411704
-0.100942
0.0206025
-0.0606402
-0.0202232
-0.0199007
0.0195049
-0.0397681
0.0584864
-0.0595642
0.0973564
-0.079256
0.136059
-0.0988102
0.174537
-0.11819
0.212683
-0.137362
0.250467
-0.156294
0.287835
-0.174952
0.324655
-0.193302
0.360925
-0.211314
0.396594
-0.228955
0.431507
-0.246194
0.465692
-0.263002
0.499098
-0.279348
0.531555
-0.295203
0.563115
-0.310542
0.593732
-0.325335
0.62322
-0.339557
0.651657
-0.353185
0.679003
-0.366192
0.705057
-0.378557
0.729923
-0.390258
0.753566
-0.401274
0.775775
-0.411586
0.796678
-0.421177
0.816246
-0.430028
0.834259
-0.438124
0.850869
-0.445453
0.866053
-0.451999
0.879587
-0.457753
0.891642
-0.462704
0.902202
-0.466843
0.911043
-0.470162
0.918354
-0.472657
0.924123
-0.474323
0.928132
-0.475157
0.930582
-0.475157
0.93147
-0.474323
0.930584
-0.472657
0.928135
-0.470162
0.924127
-0.466843
0.91836
-0.462704
0.91105
-0.457753
0.90221
-0.451999
0.891652
-0.445453
0.879598
-0.438124
0.866065
-0.430028
0.850883
-0.421177
0.834273
-0.411586
0.816261
-0.401274
0.796694
-0.390258
0.775791
-0.378557
0.753583
-0.366192
0.72994
-0.353185
0.705074
-0.339557
0.679021
-0.325335
0.651675
-0.310542
0.623237
-0.295203
0.59375
-0.279348
0.563132
-0.263002
0.531571
-0.246194
0.499115
-0.228955
0.465707
-0.211314
0.431522
-0.193302
0.396607
-0.174952
0.360938
-0.156294
0.324666
-0.137362
0.287839
-0.11819
0.250482
-0.0988097
0.212695
-0.0792564
0.174535
-0.0595642
0.136067
-0.0397676
0.0973619
-0.0199012
0.058486
5.03169e-13
0.0195065
0.0199011
-0.0195065
0.0397674
-0.058486
0.0595637
-0.0973619
0.0792555
-0.136067
0.0988084
-0.174535
0.118188
-0.212695
0.13736
-0.250482
0.156291
-0.287839
0.174947
-0.324666
0.193296
-0.360938
0.211308
-0.396607
0.228947
-0.431522
0.246185
-0.465707
0.262992
-0.499115
0.279336
-0.531571
0.295191
-0.563132
0.310528
-0.59375
0.32532
-0.623237
0.339541
-0.651675
0.353167
-0.679021
0.366173
-0.705074
0.378536
-0.72994
0.390237
-0.753583
0.401251
-0.775791
0.411562
-0.796694
0.421152
-0.816261
0.430001
-0.834273
0.438097
-0.850883
0.445425
-0.866065
0.45197
-0.879598
0.457723
-0.891652
0.462673
-0.90221
0.466812
-0.91105
0.470131
-0.91836
0.472626
-0.924127
0.474291
-0.928135
0.475125
-0.930584
0.475125
-0.93147
0.474291
-0.930582
0.472626
-0.928132
0.470131
-0.924123
0.466812
-0.918354
0.462673
-0.911043
0.457723
-0.902202
0.45197
-0.891642
0.445425
-0.879587
0.438097
-0.866053
0.430001
-0.850869
0.421152
-0.834259
0.411562
-0.816246
0.401251
-0.796678
0.390237
-0.775775
0.378536
-0.753566
0.366173
-0.729923
0.353167
-0.705057
0.339541
-0.679003
0.32532
-0.651657
0.310528
-0.62322
0.295191
-0.593732
0.279336
-0.563115
0.262992
-0.531555
0.246185
-0.499098
0.228947
-0.465692
0.211308
-0.431507
0.193296
-0.396594
0.174947
-0.360925
0.156291
-0.324655
0.137359
-0.287835
0.118188
-0.250467
0.0988088
-0.212683
0.0792551
-0.174537
0.0595637
-0.136059
0.0397679
-0.0973564
0.0199007
-0.0584864
-0.0195049
-0.0191639
0.0187524
-0.0382957
0.0562299
-0.057359
0.0936003
-0.0763217
0.130809
-0.0951519
0.167803
-0.113814
0.204477
-0.132276
0.240803
-0.150508
0.27673
-0.168474
0.312129
-0.186145
0.347
-0.203491
0.381293
-0.220478
0.414859
-0.237079
0.447725
-0.253265
0.479842
-0.269005
0.511046
-0.284274
0.541389
-0.299045
0.570825
-0.31329
0.599175
-0.326986
0.626515
-0.340109
0.652806
-0.352635
0.677854
-0.364542
0.701761
-0.37581
0.724493
-0.386418
0.745844
-0.396348
0.765941
-0.405584
0.784753
-0.414107
0.802072
-0.421904
0.818041
-0.428961
0.832639
-0.435265
0.845651
-0.440806
0.857241
-0.445574
0.867393
-0.449559
0.875893
-0.452756
0.882922
-0.455159
0.888468
-0.456763
0.892323
-0.457566
0.894678
-0.457566
0.895532
-0.456763
0.89468
-0.455159
0.892325
-0.452756
0.888472
-0.449559
0.882927
-0.445574
0.8759
-0.440806
0.867401
-0.435265
0.85725
-0.428961
0.845661
-0.421904
0.83265
-0.414107
0.818054
-0.405584
0.802085
-0.396348
0.784767
-0.386418
0.765955
-0.37581
0.745859
-0.364542
0.724508
-0.352635
0.701777
-0.340109
0.677871
-0.326986
0.652823
-0.31329
0.626532
-0.299045
0.599191
-0.284274
0.570841
-0.269005
0.541405
-0.253265
0.511062
-0.237079
0.479857
-0.220478
0.447739
-0.203491
0.414872
-0.186145
0.381305
-0.168474
0.347012
-0.150508
0.31214
-0.132277
0.276734
-0.113814
0.240818
-0.0951515
0.204488
-0.0763221
0.167801
-0.057359
0.130817
-0.0382953
0.0936054
-0.0191644
0.0562294
4.60871e-13
0.0187539
0.0191643
-0.0187539
0.0382951
-0.0562294
0.0573585
-0.0936054
0.0763212
-0.130817
0.0951501
-0.167801
0.113812
-0.204488
0.132274
-0.240818
0.150504
-0.276734
0.16847
-0.31214
0.18614
-0.347012
0.203484
-0.381305
0.220471
-0.414872
0.23707
-0.447739
0.253255
-0.479857
0.268994
-0.511062
0.284262
-0.541405
0.299031
-0.570841
0.313275
-0.599191
0.32697
-0.626532
0.340092
-0.652823
0.352616
-0.677871
0.364521
-0.701777
0.375788
-0.724508
0.386395
-0.745859
0.396324
-0.765955
0.405559
-0.784767
0.414081
-0.802085
0.421877
-0.818054
0.428933
-0.83265
0.435236
-0.845661
0.440776
-0.85725
0.445543
-0.867401
0.449528
-0.8759
0.452725
-0.882927
0.455127
-0.888472
0.456731
-0.892325
0.457533
-0.89468
0.457533
-0.895532
0.456731
-0.894678
0.455127
-0.892323
0.452725
-0.888468
0.449528
-0.882922
0.445543
-0.875893
0.440776
-0.867393
0.435236
-0.857241
0.428933
-0.845651
0.421877
-0.832639
0.414081
-0.818041
0.405559
-0.802072
0.396324
-0.784753
0.386395
-0.765941
0.375788
-0.745844
0.364521
-0.724493
0.352616
-0.701761
0.340092
-0.677854
0.32697
-0.652806
0.313275
-0.626515
0.299031
-0.599175
0.284262
-0.570825
0.268994
-0.541389
0.253255
-0.511046
0.23707
-0.479842
0.220471
-0.447725
0.203484
-0.414859
0.18614
-0.381293
0.16847
-0.347
0.150504
-0.312129
0.132274
-0.27673
0.113812
-0.240803
0.0951505
-0.204477
0.0763208
-0.167803
0.0573585
-0.130809
0.0382955
-0.0936003
0.0191639
-0.0562299
-0.0187524
-0.0183935
0.017967
-0.0367562
0.0538747
-0.0550531
0.0896799
-0.0732535
0.12533
-0.0913268
0.160775
-0.109239
0.195913
-0.126959
0.230718
-0.144457
0.265139
-0.161702
0.299056
-0.178662
0.332466
-0.19531
0.365322
-0.211615
0.397483
-0.227548
0.428972
-0.243084
0.459745
-0.258191
0.489642
-0.272846
0.518713
-0.287023
0.546917
-0.300696
0.574079
-0.313841
0.600274
-0.326437
0.625464
-0.338459
0.649463
-0.349887
0.672369
-0.360702
0.694148
-0.370884
0.714605
-0.380415
0.73386
-0.389279
0.751884
-0.39746
0.768477
-0.404944
0.783778
-0.411717
0.797764
-0.417768
0.810231
-0.423086
0.821336
-0.427662
0.831063
-0.431487
0.839207
-0.434555
0.845941
-0.436862
0.851255
-0.438401
0.854948
-0.439172
0.857205
-0.439172
0.858022
-0.438401
0.857206
-0.436862
0.85495
-0.434555
0.851259
-0.431487
0.845946
-0.427662
0.839213
-0.423086
0.83107
-0.417768
0.821344
-0.411717
0.81024
-0.404944
0.797774
-0.39746
0.783789
-0.389279
0.768489
-0.380415
0.751897
-0.370884
0.733873
-0.360702
0.714619
-0.349887
0.694162
-0.338459
0.672383
-0.326437
0.649478
-0.313841
0.625479
-0.300696
0.600289
-0.287023
0.574094
-0.272846
0.546932
-0.258191
0.518728
-0.243084
0.489656
-0.227548
0.459758
-0.211615
0.428985
-0.19531
0.397495
-0.178662
0.365334
-0.161702
0.332477
-0.144457
0.299066
-0.126959
0.265142
-0.109239
0.230731
-0.0913263
0.195923
-0.0732539
0.160773
-0.0550531
0.125338
-0.0367558
0.0896847
-0.0183939
0.0538742
4.19717e-13
0.0179684
0.0183939
-0.0179684
0.0367556
-0.0538742
0.0550526
-0.0896847
0.073253
-0.125338
0.091325
-0.160773
0.109237
-0.195923
0.126956
-0.230731
0.144454
-0.265142
0.161697
-0.299066
0.178657
-0.332477
0.195304
-0.365334
0.211607
-0.397495
0.22754
-0.428985
0.243074
-0.459758
0.25818
-0.489656
0.272834
-0.518728
0.28701
-0.546932
0.300681
-0.574094
0.313825
-0.600289
0.326419
-0.625479
0.33844
-0.649478
0.349867
-0.672383
0.360681
-0.694162
0.370861
-0.714619
0.380391
-0.733873
0.389254
-0.751897
0.397434
-0.768489
0.404916
-0.783789
0.411689
-0.797774
0.417739
-0.81024
0.423056
-0.821344
0.427631
-0.83107
0.431456
-0.839213
0.434524
-0.845946
0.43683
-0.851259
0.438369
-0.85495
0.439139
-0.857206
0.439139
-0.858022
0.438369
-0.857205
0.43683
-0.854948
0.434524
-0.851255
0.431456
-0.845941
0.427631
-0.839207
0.423056
-0.831063
0.417739
-0.821336
0.411689
-0.810231
0.404916
-0.797764
0.397434
-0.783778
0.389254
-0.768477
0.380391
-0.751884
0.370861
-0.73386
0.360681
-0.714605
0.349867
-0.694148
0.33844
-0.672369
0.326419
-0.649463
0.313825
-0.625464
0.300681
-0.600274
0.28701
-0.574079
0.272834
-0.546917
0.25818
-0.518713
0.243074
-0.489642
0.22754
-0.459745
0.211607
-0.428972
0.195304
-0.397483
0.178657
-0.365322
0.161697
-0.332466
0.144454
-0.299056
0.126956
-0.265139
0.109237
-0.230718
0.0913254
-0.195913
0.0732526
-0.160775
0.0550526
-0.12533
0.036756
-0.0896799
0.0183935
-0.0538747
-0.017967
-0.0175909
0.01715
-0.0351522
0.0514251
-0.0526507
0.0856022
-0.0700568
0.119632
-0.0873414
0.153464
-0.104471
0.187005
-0.121418
0.220227
-0.138154
0.253083
-0.154645
0.285458
-0.170866
0.317349
-0.186787
0.348711
-0.20238
0.379409
-0.217618
0.409467
-0.232476
0.43884
-0.246924
0.467378
-0.26094
0.495127
-0.274498
0.522049
-0.287574
0.547976
-0.300146
0.57298
-0.312192
0.597024
-0.323689
0.619932
-0.334619
0.641796
-0.344962
0.662585
-0.3547
0.682112
-0.363815
0.700491
-0.372292
0.717696
-0.380116
0.733535
-0.387273
0.74814
-0.393751
0.76149
-0.399537
0.77339
-0.404623
0.78399
-0.409
0.793274
-0.412658
0.801048
-0.415592
0.807476
-0.417798
0.812548
-0.41927
0.816073
-0.420007
0.818228
-0.420007
0.819008
-0.41927
0.818229
-0.417798
0.816076
-0.415592
0.812552
-0.412658
0.80748
-0.409
0.801054
-0.404623
0.793281
-0.399537
0.783997
-0.393751
0.773398
-0.387273
0.761499
-0.380116
0.74815
-0.372292
0.733546
-0.363815
0.717708
-0.3547
0.700504
-0.344962
0.682125
-0.334619
0.662598
-0.323689
0.64181
-0.312192
0.619946
-0.300146
0.597038
-0.287574
0.572994
-0.274498
0.547989
-0.26094
0.522062
-0.246924
0.495141
-0.232476
0.467391
-0.217618
0.438853
-0.20238
0.409479
-0.186787
0.379421
-0.170866
0.348722
-0.154645
0.317359
-0.138154
0.285467
-0.121419
0.253086
-0.104471
0.220239
-0.087341
0.187014
-0.0700572
0.153462
-0.0526507
0.119639
-0.0351518
0.0856066
-0.0175912
0.0514245
3.79768e-13
0.0171514
0.0175912
-0.0171514
0.0351516
-0.0514245
0.0526501
-0.0856066
0.0700563
-0.119639
0.0873396
-0.153462
0.104469
-0.187014
0.121416
-0.220239
0.13815
-0.253086
0.154641
-0.285467
0.17086
-0.317359
0.186781
-0.348722
0.202373
-0.379421
0.21761
-0.409479
0.232466
-0.438853
0.246913
-0.467391
0.260927
-0.495141
0.274485
-0.522062
0.287559
-0.547989
0.30013
-0.572994
0.312174
-0.597038
0.32367
-0.619946
0.334598
-0.64181
0.34494
-0.662598
0.354677
-0.682125
0.363791
-0.700504
0.372267
-0.717708
0.38009
-0.733546
0.387246
-0.74815
0.393723
-0.761499
0.399508
-0.773398
0.404593
-0.783997
0.408969
-0.793281
0.412627
-0.801054
0.415561
-0.80748
0.417766
-0.812552
0.419238
-0.816076
0.419975
-0.818229
0.419975
-0.819008
0.419238
-0.818228
0.417766
-0.816073
0.415561
-0.812548
0.412627
-0.807476
0.408969
-0.801048
0.404593
-0.793274
0.399508
-0.78399
0.393723
-0.77339
0.387246
-0.76149
0.38009
-0.74814
0.372267
-0.733535
0.363791
-0.717696
0.354677
-0.700491
0.34494
-0.682112
0.334598
-0.662585
0.32367
-0.641796
0.312174
-0.619932
0.30013
-0.597024
0.287559
-0.57298
0.274485
-0.547976
0.260927
-0.522049
0.246913
-0.495127
0.232466
-0.467378
0.21761
-0.43884
0.202373
-0.409467
0.186781
-0.379409
0.17086
-0.348711
0.154641
-0.317349
0.13815
-0.285458
0.121416
-0.253083
0.104469
-0.220227
0.08734
-0.187005
0.0700559
-0.153464
0.0526501
-0.119632
0.035152
-0.0856022
0.0175908
-0.0514251
-0.01715
-0.0167573
0.016303
-0.0334865
0.0488852
-0.0501558
0.0813744
-0.0667372
0.113723
-0.0832027
0.145885
-0.0995211
0.177768
-0.115665
0.20935
-0.131607
0.240584
-0.147317
0.271359
-0.162769
0.301675
-0.177937
0.331489
-0.192791
0.36067
-0.207307
0.389243
-0.22146
0.417166
-0.235224
0.444294
-0.248575
0.470673
-0.261491
0.496265
-0.273948
0.520911
-0.285924
0.54468
-0.297399
0.567537
-0.308352
0.589314
-0.318763
0.610098
-0.328617
0.62986
-0.337893
0.648422
-0.346576
0.665894
-0.354652
0.682249
-0.362105
0.697305
-0.368922
0.711189
-0.375093
0.723879
-0.380606
0.735192
-0.385451
0.745268
-0.38962
0.754094
-0.393105
0.761484
-0.3959
0.767594
-0.398001
0.772416
-0.399404
0.775767
-0.400106
0.777815
-0.400106
0.778557
-0.399404
0.777816
-0.398001
0.775769
-0.3959
0.772419
-0.393105
0.767598
-0.38962
0.761489
-0.385451
0.7541
-0.380606
0.745275
-0.375093
0.735199
-0.368922
0.723888
-0.362105
0.711198
-0.354652
0.697315
-0.346576
0.68226
-0.337893
0.665905
-0.328617
0.648434
-0.318763
0.629872
-0.308352
0.61011
-0.297399
0.589326
-0.285924
0.56755
-0.273948
0.544693
-0.261491
0.520924
-0.248575
0.496277
-0.235224
0.470685
-0.22146
0.444306
-0.207307
0.417177
-0.192791
0.389254
-0.177937
0.360681
-0.162769
0.331498
-0.147317
0.301684
-0.131607
0.271367
-0.115665
0.240586
-0.0995211
0.209362
-0.0832024
0.177778
-0.0667375
0.145883
-0.0501558
0.11373
-0.0334862
0.0813784
-0.0167577
0.0488846
3.41162e-13
0.0163042
0.0167576
-0.0163042
0.0334859
-0.0488846
0.0501553
-0.0813784
0.0667367
-0.11373
0.083201
-0.145883
0.0995192
-0.177778
0.115663
-0.209362
0.131604
-0.240586
0.147313
-0.271367
0.162764
-0.301684
0.17793
-0.331498
0.192783
-0.360681
0.207298
-0.389254
0.22145
-0.417177
0.235213
-0.444306
0.248563
-0.470685
0.261478
-0.496277
0.273933
-0.520924
0.285908
-0.544693
0.297382
-0.56755
0.308333
-0.589326
0.318743
-0.61011
0.328595
-0.629872
0.33787
-0.648434
0.346552
-0.665905
0.354627
-0.68226
0.362079
-0.697315
0.368895
-0.711198
0.375066
-0.723888
0.380577
-0.735199
0.385421
-0.745275
0.38959
-0.7541
0.393074
-0.761489
0.395869
-0.767598
0.39797
-0.772419
0.399372
-0.775769
0.400074
-0.777816
0.400074
-0.778557
0.399372
-0.777815
0.39797
-0.775767
0.395869
-0.772416
0.393074
-0.767594
0.38959
-0.761484
0.385421
-0.754094
0.380577
-0.745268
0.375066
-0.735192
0.368895
-0.723879
0.362079
-0.711189
0.354627
-0.697305
0.346552
-0.682249
0.33787
-0.665894
0.328595
-0.648422
0.318743
-0.62986
0.308333
-0.610098
0.297382
-0.589314
0.285908
-0.567537
0.273933
-0.54468
0.261478
-0.520911
0.248563
-0.496265
0.235213
-0.470673
0.22145
-0.444294
0.207298
-0.417166
0.192783
-0.389243
0.17793
-0.36067
0.162764
-0.331489
0.147313
-0.301675
0.131604
-0.271359
0.115662
-0.240584
0.0995192
-0.20935
0.0832014
-0.177768
0.0667363
-0.145885
0.0501553
-0.113723
0.0334863
-0.0813744
0.0167573
-0.0488852
-0.016303
-0.0158944
0.0154273
-0.0317621
0.0462596
-0.047573
0.0770037
-0.0633005
0.107615
-0.0789181
0.138049
-0.0943962
0.16822
-0.109709
0.198106
-0.12483
0.227662
-0.139731
0.256784
-0.154387
0.285472
-0.168774
0.313684
-0.182863
0.341299
-0.196631
0.368337
-0.210056
0.39476
-0.223111
0.420431
-0.235775
0.445393
-0.248026
0.46961
-0.259841
0.492933
-0.2712
0.515425
-0.282084
0.537054
-0.292473
0.557661
-0.302349
0.577329
-0.311694
0.59603
-0.320493
0.613595
-0.328729
0.630128
-0.336389
0.645605
-0.343458
0.659853
-0.349925
0.67299
-0.355778
0.684999
-0.361007
0.695704
-0.365602
0.705239
-0.369556
0.713591
-0.372862
0.720584
-0.375513
0.726366
-0.377506
0.730929
-0.378837
0.7341
-0.379502
0.736038
-0.379502
0.73674
-0.378837
0.736039
-0.377506
0.734102
-0.375513
0.730932
-0.372862
0.72637
-0.369556
0.720588
-0.365602
0.713596
-0.361007
0.705245
-0.355778
0.695711
-0.349925
0.685007
-0.343458
0.672999
-0.336389
0.659861
-0.328729
0.645615
-0.320493
0.630138
-0.311694
0.613605
-0.302349
0.59604
-0.292473
0.57734
-0.282084
0.557672
-0.2712
0.537066
-0.259841
0.515436
-0.248026
0.492944
-0.235775
0.469621
-0.223111
0.445404
-0.210056
0.420441
-0.196631
0.39477
-0.182863
0.368347
-0.168774
0.341308
-0.154387
0.313693
-0.139731
0.28548
-0.12483
0.256792
-0.109709
0.227664
-0.0943962
0.198116
-0.0789178
0.168229
-0.0633008
0.138047
-0.047573
0.107621
-0.0317618
0.0770074
-0.0158947
0.0462589
3.04026e-13
0.0154285
0.0158947
-0.0154285
0.0317615
-0.0462589
0.0475725
-0.0770074
0.0633
-0.107621
0.0789164
-0.138047
0.0943943
-0.168229
0.109706
-0.198116
0.124827
-0.227664
0.139727
-0.256792
0.154382
-0.28548
0.168768
-0.313693
0.182856
-0.341308
0.196623
-0.368347
0.210046
-0.39477
0.2231
-0.420441
0.235763
-0.445404
0.248013
-0.469621
0.259826
-0.492944
0.271184
-0.515436
0.282067
-0.537066
0.292455
-0.557672
0.302329
-0.57734
0.311673
-0.59604
0.320471
-0.613605
0.328706
-0.630138
0.336364
-0.645615
0.343433
-0.659861
0.349898
-0.672999
0.355751
-0.685007
0.360979
-0.695711
0.365573
-0.705245
0.369527
-0.713596
0.372832
-0.720588
0.375483
-0.72637
0.377475
-0.730932
0.378806
-0.734102
0.379471
-0.736039
0.379471
-0.73674
0.378806
-0.736038
0.377475
-0.7341
0.375483
-0.730929
0.372832
-0.726366
0.369527
-0.720584
0.365573
-0.713591
0.360979
-0.705239
0.355751
-0.695704
0.349898
-0.684999
0.343433
-0.67299
0.336364
-0.659853
0.328706
-0.645605
0.320471
-0.630128
0.311673
-0.613595
0.302329
-0.59603
0.292455
-0.577329
0.282067
-0.557661
0.271184
-0.537054
0.259826
-0.515425
0.248013
-0.492933
0.235763
-0.46961
0.2231
-0.445393
0.210046
-0.420431
0.196623
-0.39476
0.182856
-0.368337
0.168768
-0.341299
0.154382
-0.313684
0.139727
-0.285472
0.124827
-0.256784
0.109706
-0.227662
0.0943943
-0.198106
0.0789168
-0.16822
0.0632996
-0.138049
0.0475725
-0.107615
0.0317619
-0.0770037
0.0158943
-0.0462596
-0.0154273
-0.0150036
0.0145246
-0.029982
0.0435528
-0.0449067
0.072498
-0.0597527
0.101318
-0.0744951
0.129971
-0.0891057
0.158377
-0.10356
0.186514
-0.117834
0.214341
-0.1319
0.241759
-0.145735
0.268768
-0.159315
0.295329
-0.172614
0.321328
-0.185611
0.346784
-0.198283
0.371661
-0.210607
0.39583
-0.222561
0.419332
-0.234125
0.442132
-0.245278
0.46409
-0.256001
0.485266
-0.266275
0.50563
-0.276081
0.52503
-0.285403
0.543547
-0.294225
0.561154
-0.302531
0.577691
-0.310305
0.593257
-0.317536
0.607828
-0.324209
0.621242
-0.330313
0.633611
-0.335838
0.644917
-0.340774
0.654996
-0.345112
0.663973
-0.348844
0.671836
-0.351965
0.67842
-0.354468
0.683863
-0.356349
0.688159
-0.357605
0.691145
-0.358233
0.692969
-0.358233
0.69363
-0.357605
0.69297
-0.356349
0.691146
-0.354468
0.688162
-0.351965
0.683867
-0.348844
0.678424
-0.345112
0.671841
-0.340774
0.663978
-0.335838
0.655002
-0.330313
0.644924
-0.324209
0.633619
-0.317536
0.62125
-0.310305
0.607837
-0.302531
0.593266
-0.294225
0.577701
-0.285403
0.561163
-0.276081
0.543557
-0.266275
0.52504
-0.256001
0.505639
-0.245278
0.485276
-0.234125
0.464099
-0.222561
0.442141
-0.210607
0.419341
-0.198283
0.395839
-0.185611
0.37167
-0.172614
0.346793
-0.159315
0.321336
-0.145735
0.295337
-0.1319
0.268775
-0.117834
0.241765
-0.10356
0.214342
-0.0891057
0.186524
-0.0744947
0.158385
-0.0597531
0.129969
-0.0449067
0.101324
-0.0299816
0.0725013
-0.0150039
0.043552
2.68463e-13
0.0145257
0.0150038
-0.0145257
0.0299814
-0.043552
0.0449062
-0.0725013
0.0597522
-0.101324
0.0744934
-0.129969
0.0891038
-0.158385
0.103558
-0.186524
0.117831
-0.214342
0.131896
-0.241765
0.14573
-0.268775
0.159309
-0.295337
0.172607
-0.321336
0.185603
-0.346793
0.198274
-0.37167
0.210596
-0.395839
0.222549
-0.419341
0.234112
-0.442141
0.245264
-0.464099
0.255985
-0.485276
0.266258
-0.505639
0.276063
-0.52504
0.285384
-0.543557
0.294205
-0.561163
0.302509
-0.577701
0.310282
-0.593266
0.317512
-0.607837
0.324184
-0.62125
0.330287
-0.633619
0.335812
-0.644924
0.340747
-0.655002
0.345084
-0.663978
0.348816
-0.671841
0.351936
-0.678424
0.354438
-0.683867
0.356319
-0.688162
0.357575
-0.691146
0.358203
-0.69297
0.358203
-0.69363
0.357575
-0.692969
0.356319
-0.691145
0.354438
-0.688159
0.351936
-0.683863
0.348816
-0.67842
0.345084
-0.671836
0.340747
-0.663973
0.335812
-0.654996
0.330287
-0.644917
0.324184
-0.633611
0.317512
-0.621242
0.310282
-0.607828
0.302509
-0.593257
0.294205
-0.577691
0.285384
-0.561154
0.276063
-0.543547
0.266258
-0.52503
0.255985
-0.50563
0.245264
-0.485266
0.234112
-0.46409
0.222549
-0.442132
0.210596
-0.419332
0.198274
-0.39583
0.185603
-0.371661
0.172607
-0.346784
0.159309
-0.321328
0.14573
-0.295329
0.131896
-0.268768
0.117831
-0.241759
0.103557
-0.214341
0.0891038
-0.186514
0.0744938
-0.158377
0.0597519
-0.129971
0.0449062
-0.101318
0.0299818
-0.072498
0.0150035
-0.0435528
-0.0145246
-0.0140864
0.0135964
-0.0281492
0.0407696
-0.0421616
0.067865
-0.0561002
0.0948435
-0.0699413
0.121666
-0.0836588
0.148256
-0.0972296
0.174595
-0.110631
0.200643
-0.123837
0.22631
-0.136826
0.251593
-0.149576
0.276457
-0.162063
0.300794
-0.174265
0.324623
-0.186163
0.34791
-0.197733
0.370535
-0.208956
0.392534
-0.219814
0.413877
-0.230285
0.434432
-0.240352
0.454255
-0.249998
0.473318
-0.259205
0.491479
-0.267957
0.508812
-0.27624
0.525293
-0.284038
0.540774
-0.291337
0.555345
-0.298126
0.568985
-0.304391
0.581542
-0.310122
0.59312
-0.31531
0.603704
-0.319943
0.613138
-0.324016
0.621542
-0.327521
0.628902
-0.33045
0.635065
-0.3328
0.640161
-0.334566
0.644182
-0.335745
0.646977
-0.336335
0.648685
-0.336335
0.649303
-0.335745
0.648686
-0.334566
0.646979
-0.3328
0.644185
-0.33045
0.640164
-0.327521
0.635069
-0.324016
0.628907
-0.319943
0.621547
-0.31531
0.613144
-0.310122
0.60371
-0.304391
0.593127
-0.298126
0.581549
-0.291337
0.568993
-0.284038
0.555353
-0.27624
0.540782
-0.267957
0.525302
-0.259205
0.508821
-0.249998
0.491487
-0.240352
0.473326
-0.230285
0.454264
-0.219814
0.434441
-0.208956
0.413886
-0.197733
0.392543
-0.186163
0.370543
-0.174265
0.347918
-0.162063
0.324631
-0.149576
0.300801
-0.136826
0.276463
-0.123837
0.251599
-0.110631
0.226315
-0.0972299
0.200644
-0.0836588
0.174604
-0.069941
0.148263
-0.0561005
0.121663
-0.0421616
0.0948485
-0.0281489
0.0678681
-0.0140867
0.0407688
2.34734e-13
0.0135974
0.0140867
-0.0135974
0.0281487
-0.0407688
0.0421612
-0.0678681
0.0560997
-0.0948485
0.0699398
-0.121663
0.083657
-0.148263
0.0972275
-0.174604
0.110628
-0.200644
0.123833
-0.226315
0.136821
-0.251599
0.14957
-0.276463
0.162056
-0.300801
0.174257
-0.324631
0.186154
-0.347918
0.197723
-0.370543
0.208945
-0.392543
0.219801
-0.413886
0.230271
-0.434441
0.240337
-0.454264
0.249982
-0.473326
0.259188
-0.491487
0.267939
-0.508821
0.27622
-0.525302
0.284017
-0.540782
0.291315
-0.555353
0.298103
-0.568993
0.304367
-0.581549
0.310097
-0.593127
0.315284
-0.60371
0.319917
-0.613144
0.323989
-0.621547
0.327493
-0.628907
0.330422
-0.635069
0.332771
-0.640164
0.334537
-0.644185
0.335716
-0.646979
0.336306
-0.648686
0.336306
-0.649303
0.335716
-0.648685
0.334537
-0.646977
0.332771
-0.644182
0.330422
-0.640161
0.327493
-0.635065
0.323989
-0.628902
0.319917
-0.621542
0.315284
-0.613138
0.310097
-0.603704
0.304367
-0.59312
0.298103
-0.581542
0.291315
-0.568985
0.284017
-0.555345
0.27622
-0.540774
0.267939
-0.525293
0.259188
-0.508812
0.249982
-0.491479
0.240337
-0.473318
0.230271
-0.454255
0.219801
-0.434432
0.208945
-0.413877
0.197723
-0.392534
0.186154
-0.370535
0.174257
-0.34791
0.162056
-0.324623
0.14957
-0.300794
0.136821
-0.276457
0.123833
-0.251593
0.110628
-0.22631
0.0972272
-0.200643
0.083657
-0.174595
0.0699401
-0.148256
0.0560993
-0.121666
0.0421612
-0.0948435
0.028149
-0.067865
0.0140864
-0.0407696
-0.0135964
-0.0131446
0.0126444
-0.0262671
0.0379148
-0.0393426
0.0631131
-0.0523492
0.0882025
-0.0652649
0.113147
-0.0780652
0.137875
-0.0907286
0.16237
-0.103234
0.186594
-0.115557
0.210463
-0.127678
0.233976
-0.139575
0.257099
-0.151227
0.279732
-0.162613
0.301893
-0.173715
0.323549
-0.184512
0.344589
-0.194985
0.365049
-0.205116
0.384897
-0.214887
0.404013
-0.224282
0.422448
-0.233283
0.440175
-0.241874
0.457065
-0.250041
0.473184
-0.25777
0.488512
-0.265046
0.502908
-0.271858
0.516459
-0.278192
0.529144
-0.284039
0.540821
-0.289387
0.551589
-0.294227
0.561432
-0.298551
0.570205
-0.302352
0.57802
-0.305622
0.584865
-0.308356
0.590597
-0.310549
0.595336
-0.312197
0.599076
-0.313297
0.601674
-0.313847
0.603263
-0.313847
0.603838
-0.313297
0.603263
-0.312197
0.601676
-0.310549
0.599077
-0.308356
0.595338
-0.305622
0.5906
-0.302352
0.584869
-0.298551
0.578024
-0.294227
0.57021
-0.289387
0.561437
-0.284039
0.551595
-0.278192
0.540827
-0.271858
0.52915
-0.265046
0.516466
-0.25777
0.502915
-0.250041
0.488519
-0.241874
0.473192
-0.233283
0.457072
-0.224282
0.440183
-0.214887
0.422455
-0.205116
0.40402
-0.194985
0.384904
-0.184512
0.365056
-0.173715
0.344596
-0.162613
0.323556
-0.151227
0.301899
-0.139575
0.279738
-0.127678
0.257105
-0.115557
0.233981
-0.103234
0.210468
-0.0907289
0.186594
-0.0780652
0.162377
-0.0652646
0.137881
-0.0523495
0.113144
-0.0393426
0.0882069
-0.0262668
0.0631157
-0.0131449
0.0379141
2.02822e-13
0.0126453
0.0131448
-0.0126453
0.0262666
-0.0379141
0.0393422
-0.0631157
0.0523487
-0.0882069
0.0652634
-0.113144
0.0780635
-0.137881
0.0907266
-0.162377
0.103231
-0.186594
0.115553
-0.210468
0.127673
-0.233981
0.13957
-0.257105
0.15122
-0.279738
0.162606
-0.301899
0.173707
-0.323556
0.184502
-0.344596
0.194974
-0.365056
0.205105
-0.384904
0.214874
-0.40402
0.224267
-0.422455
0.233267
-0.440183
0.241858
-0.457072
0.250024
-0.473192
0.257751
-0.488519
0.265027
-0.502915
0.271837
-0.516466
0.278171
-0.52915
0.284016
-0.540827
0.289363
-0.551595
0.294203
-0.561437
0.298526
-0.57021
0.302326
-0.578024
0.305596
-0.584869
0.308329
-0.5906
0.310521
-0.595338
0.312169
-0.599077
0.313269
-0.601676
0.313819
-0.603263
0.313819
-0.603838
0.313269
-0.603263
0.312169
-0.601674
0.310521
-0.599076
0.308329
-0.595336
0.305596
-0.590597
0.302326
-0.584865
0.298526
-0.57802
0.294203
-0.570205
0.289363
-0.561432
0.284016
-0.551589
0.278171
-0.540821
0.271837
-0.529144
0.265027
-0.516459
0.257751
-0.502908
0.250024
-0.488512
0.241858
-0.473184
0.233267
-0.457065
0.224267
-0.440175
0.214874
-0.422448
0.205105
-0.404013
0.194974
-0.384897
0.184502
-0.365049
0.173707
-0.344589
0.162606
-0.323549
0.15122
-0.301893
0.13957
-0.279732
0.127673
-0.257099
0.115553
-0.233976
0.103231
-0.210463
0.0907263
-0.186594
0.0780635
-0.16237
0.0652637
-0.137875
0.0523484
-0.113147
0.0393422
-0.0882025
0.0262669
-0.0631131
0.0131445
-0.0379148
-0.0126444
-0.0121796
0.0116702
-0.0243389
0.0349936
-0.0364546
0.0582503
-0.0485063
0.0814067
-0.0604739
0.104429
-0.0723346
0.127252
-0.0840684
0.149859
-0.0956557
0.172217
-0.107074
0.194247
-0.118305
0.215949
-0.129329
0.23729
-0.140126
0.258179
-0.150676
0.278633
-0.160963
0.29862
-0.170967
0.318039
-0.180672
0.336922
-0.190059
0.355242
-0.199113
0.372884
-0.207818
0.389899
-0.216158
0.40626
-0.224119
0.421849
-0.231686
0.436727
-0.238848
0.450873
-0.24559
0.46416
-0.251901
0.476667
-0.257771
0.488374
-0.263188
0.499152
-0.268144
0.50909
-0.272629
0.518174
-0.276636
0.526272
-0.280157
0.533485
-0.283187
0.539802
-0.28572
0.545092
-0.287752
0.549466
-0.289279
0.552918
-0.290299
0.555316
-0.290809
0.556782
-0.290809
0.557313
-0.290299
0.556783
-0.289279
0.555317
-0.287752
0.552919
-0.28572
0.549468
-0.283187
0.545095
-0.280157
0.539806
-0.276636
0.533488
-0.272629
0.526276
-0.268144
0.518179
-0.263188
0.509095
-0.257771
0.499157
-0.251901
0.48838
-0.24559
0.476673
-0.238848
0.464166
-0.231686
0.450879
-0.224119
0.436733
-0.216158
0.421855
-0.207818
0.406267
-0.199113
0.389905
-0.190059
0.372891
-0.180672
0.355248
-0.170967
0.336929
-0.160963
0.318045
-0.150676
0.298626
-0.140126
0.278638
-0.129329
0.258184
-0.118305
0.237295
-0.107074
0.215953
-0.0956557
0.194252
-0.0840687
0.172217
-0.0723346
0.149866
-0.0604737
0.127258
-0.0485066
0.104427
-0.0364546
0.0814106
-0.0243386
0.0582527
-0.0121799
0.0349928
1.72884e-13
0.011671
0.0121799
-0.011671
0.0243384
-0.0349928
0.0364541
-0.0582527
0.0485059
-0.0814106
0.0604725
-0.104427
0.072333
-0.127258
0.0840665
-0.149866
0.0956528
-0.172217
0.107071
-0.194252
0.118301
-0.215953
0.129324
-0.237295
0.14012
-0.258184
0.150669
-0.278638
0.160955
-0.298626
0.170958
-0.318045
0.180661
-0.336929
0.190048
-0.355248
0.199101
-0.372891
0.207804
-0.389905
0.216144
-0.406267
0.224103
-0.421855
0.23167
-0.436733
0.23883
-0.450879
0.245571
-0.464166
0.251882
-0.476673
0.25775
-0.48838
0.263167
-0.499157
0.268121
-0.509095
0.272606
-0.518179
0.276612
-0.526276
0.280133
-0.533488
0.283162
-0.539806
0.285695
-0.545095
0.287726
-0.549468
0.289253
-0.552919
0.290272
-0.555317
0.290782
-0.556783
0.290782
-0.557313
0.290272
-0.556782
0.289253
-0.555316
0.287726
-0.552918
0.285695
-0.549466
0.283162
-0.545092
0.280133
-0.539802
0.276612
-0.533485
0.272606
-0.526272
0.268121
-0.518174
0.263167
-0.50909
0.25775
-0.499152
0.251882
-0.488374
0.245571
-0.476667
0.23883
-0.46416
0.23167
-0.450873
0.224103
-0.436727
0.216144
-0.421849
0.207804
-0.40626
0.199101
-0.389899
0.190048
-0.372884
0.180661
-0.355242
0.170958
-0.336922
0.160955
-0.318039
0.150669
-0.29862
0.14012
-0.278633
0.129324
-0.258179
0.118301
-0.23729
0.107071
-0.215949
0.0956528
-0.194247
0.0840662
-0.172217
0.072333
-0.149859
0.0604728
-0.127252
0.0485056
-0.104429
0.0364541
-0.0814067
0.0243387
-0.0582503
0.0121796
-0.0349936
-0.0116702
-0.0111934
0.0106755
-0.022368
0.0320109
-0.0335025
0.0532854
-0.0445784
0.074468
-0.0555769
0.0955279
-0.0664771
0.116406
-0.0772608
0.137086
-0.0879097
0.157538
-0.0984037
0.177691
-0.108725
0.197542
-0.118856
0.217065
-0.128779
0.236173
-0.138475
0.254884
-0.147929
0.273168
-0.157123
0.290932
-0.166041
0.308205
-0.174669
0.324963
-0.18299
0.341102
-0.190989
0.356666
-0.198654
0.371633
-0.20597
0.385893
-0.212925
0.399502
-0.219507
0.412443
-0.225703
0.424598
-0.231503
0.436038
-0.236898
0.446748
-0.241876
0.456607
-0.24643
0.465698
-0.250552
0.474008
-0.254235
0.481415
-0.257471
0.488013
-0.260256
0.493792
-0.262583
0.498631
-0.264451
0.502632
-0.265854
0.50579
-0.266791
0.507984
-0.26726
0.509325
-0.26726
0.50981
-0.266791
0.509325
-0.265854
0.507985
-0.264451
0.505791
-0.262583
0.502634
-0.260256
0.498634
-0.257471
0.493795
-0.254235
0.488016
-0.250552
0.481418
-0.24643
0.474011
-0.241876
0.465702
-0.236898
0.456611
-0.231503
0.446752
-0.225703
0.436043
-0.219507
0.424603
-0.212925
0.412448
-0.20597
0.399508
-0.198654
0.385898
-0.190989
0.371638
-0.18299
0.356671
-0.174669
0.341107
-0.166041
0.324968
-0.157123
0.30821
-0.147929
0.290937
-0.138475
0.273172
-0.128779
0.254888
-0.118856
0.236178
-0.108725
0.217069
-0.0984037
0.197546
-0.0879097
0.177694
-0.077261
0.157538
-0.0664771
0.137092
-0.0555767
0.116411
-0.0445786
0.0955256
-0.0335025
0.0744715
-0.0223677
0.0532875
-0.0111936
0.0320102
1.45099e-13
0.0106762
0.0111936
-0.0106762
0.0223675
-0.0320102
0.0335022
-0.0532875
0.0445779
-0.0744715
0.0555756
-0.0955256
0.0664756
-0.116411
0.0772589
-0.137092
0.087907
-0.157538
0.0984003
-0.177694
0.108721
-0.197546
0.118852
-0.217069
0.128773
-0.236178
0.138468
-0.254888
0.147921
-0.273172
0.157114
-0.290937
0.166032
-0.30821
0.174658
-0.324968
0.182978
-0.341107
0.190976
-0.356671
0.198641
-0.371638
0.205956
-0.385898
0.212909
-0.399508
0.21949
-0.412448
0.225685
-0.424603
0.231485
-0.436043
0.236878
-0.446752
0.241856
-0.456611
0.246409
-0.465702
0.25053
-0.474011
0.254212
-0.481418
0.257448
-0.488016
0.260232
-0.493795
0.262559
-0.498634
0.264426
-0.502634
0.26583
-0.505791
0.266766
-0.507985
0.267235
-0.509325
0.267235
-0.50981
0.266766
-0.509325
0.26583
-0.507984
0.264426
-0.50579
0.262559
-0.502632
0.260232
-0.498631
0.257448
-0.493792
0.254212
-0.488013
0.25053
-0.481415
0.246409
-0.474008
0.241856
-0.465698
0.236878
-0.456607
0.231485
-0.446748
0.225685
-0.436038
0.21949
-0.424598
0.212909
-0.412443
0.205956
-0.399502
0.198641
-0.385893
0.190976
-0.371633
0.182978
-0.356666
0.174658
-0.341102
0.166032
-0.324963
0.157114
-0.308205
0.147921
-0.290932
0.138468
-0.273168
0.128773
-0.254884
0.118852
-0.236173
0.108721
-0.217065
0.0984003
-0.197542
0.087907
-0.177691
0.0772587
-0.157538
0.0664756
-0.137086
0.0555758
-0.116406
0.0445777
-0.0955279
0.0335022
-0.074468
0.0223678
-0.0532854
0.0111933
-0.0320109
-0.0106755
-0.0101874
0.00966205
-0.0203578
0.0289721
-0.0304918
0.048227
-0.0405723
0.0673987
-0.0505824
0.0864594
-0.060503
0.105355
-0.0703176
0.124073
-0.0800095
0.142583
-0.0895604
0.160823
-0.0989542
0.17879
-0.108175
0.196459
-0.117206
0.213753
-0.126031
0.230687
-0.134635
0.247236
-0.143003
0.263313
-0.15112
0.278947
-0.158972
0.294114
-0.166545
0.308721
-0.173826
0.322807
-0.180802
0.336354
-0.18746
0.349259
-0.19379
0.361577
-0.19978
0.373289
-0.20542
0.38429
-0.210699
0.394645
-0.215608
0.404338
-0.220139
0.413261
-0.224284
0.421489
-0.228036
0.42901
-0.231387
0.435714
-0.234333
0.441686
-0.236867
0.446916
-0.238986
0.451296
-0.240685
0.454917
-0.241963
0.457774
-0.242816
0.45976
-0.243242
0.460974
-0.243242
0.461413
-0.242816
0.460974
-0.241963
0.459761
-0.240685
0.457775
-0.238986
0.454918
-0.236867
0.451297
-0.234333
0.446918
-0.231387
0.441688
-0.228036
0.435717
-0.224284
0.429013
-0.220139
0.421492
-0.215608
0.413264
-0.210699
0.404341
-0.20542
0.394649
-0.19978
0.384294
-0.19379
0.373293
-0.18746
0.361581
-0.180802
0.349264
-0.173826
0.336358
-0.166545
0.322812
-0.158972
0.308725
-0.15112
0.294118
-0.143003
0.278951
-0.134635
0.263317
-0.126031
0.24724
-0.117206
0.230691
-0.108175
0.213757
-0.0989542
0.196462
-0.0895604
0.178793
-0.0800095
0.160825
-0.0703178
0.142583
-0.060503
0.124078
-0.0505821
0.10536
-0.0405725
0.0864571
-0.0304918
0.0674017
-0.0203576
0.0482288
-0.0101877
0.0289714
1.19532e-13
0.00966267
0.0101876
-0.00966267
0.0203574
-0.0289714
0.0304914
-0.0482288
0.0405718
-0.0674017
0.0505811
-0.0864571
0.0605016
-0.10536
0.0703158
-0.124078
0.080007
-0.142583
0.0895573
-0.160825
0.0989504
-0.178793
0.108171
-0.196462
0.1172
-0.213757
0.126024
-0.230691
0.134628
-0.24724
0.142995
-0.263317
0.151111
-0.278951
0.158962
-0.294118
0.166534
-0.308725
0.173814
-0.322812
0.180789
-0.336358
0.187447
-0.349264
0.193776
-0.361581
0.199765
-0.373293
0.205403
-0.384294
0.210681
-0.394649
0.21559
-0.404341
0.220121
-0.413264
0.224265
-0.421492
0.228016
-0.429013
0.231366
-0.435717
0.234311
-0.441688
0.236845
-0.446918
0.238964
-0.451297
0.240663
-0.454918
0.24194
-0.457775
0.242793
-0.459761
0.243219
-0.460974
0.243219
-0.461413
0.242793
-0.460974
0.24194
-0.45976
0.240663
-0.457774
0.238964
-0.454917
0.236845
-0.451296
0.234311
-0.446916
0.231366
-0.441686
0.228016
-0.435714
0.224265
-0.42901
0.220121
-0.421489
0.21559
-0.413261
0.210681
-0.404338
0.205403
-0.394645
0.199765
-0.38429
0.193776
-0.373289
0.187447
-0.361577
0.180789
-0.349259
0.173814
-0.336354
0.166534
-0.322807
0.158962
-0.308721
0.151111
-0.294114
0.142995
-0.278947
0.134628
-0.263313
0.126024
-0.247236
0.1172
-0.230687
0.108171
-0.213753
0.0989504
-0.196459
0.0895573
-0.17879
0.080007
-0.160823
0.0703156
-0.142583
0.0605016
-0.124073
0.0505814
-0.105355
0.0405716
-0.0864594
0.0304914
-0.0673987
0.0203577
-0.048227
0.0101874
-0.0289721
-0.00966205
-0.00916365
0.00863167
-0.018312
0.0258825
-0.0274275
0.043084
-0.0364949
0.0602112
-0.0454991
0.0772392
-0.0544227
0.0941202
-0.063251
0.110841
-0.0719689
0.127378
-0.08056
0.143672
-0.0890098
0.159723
-0.0973041
0.175508
-0.105427
0.190958
-0.113365
0.206086
-0.121105
0.22087
-0.128632
0.235233
-0.135933
0.249199
-0.142996
0.262749
-0.149808
0.275798
-0.156357
0.288382
-0.162632
0.300484
-0.168622
0.312014
-0.174315
0.323018
-0.179704
0.333481
-0.184776
0.343309
-0.189525
0.352559
-0.193941
0.361218
-0.198017
0.36919
-0.201745
0.37654
-0.20512
0.383259
-0.208134
0.389248
-0.210784
0.394583
-0.213063
0.399256
-0.214969
0.403168
-0.216498
0.406403
-0.217647
0.408956
-0.218414
0.41073
-0.218798
0.411814
-0.218798
0.412207
-0.218414
0.411815
-0.217647
0.410731
-0.216498
0.408957
-0.214969
0.406404
-0.213063
0.40317
-0.210784
0.399257
-0.208134
0.394585
-0.20512
0.38925
-0.201745
0.383261
-0.198017
0.376543
-0.193941
0.369192
-0.189525
0.361221
-0.184776
0.352562
-0.179704
0.343312
-0.174315
0.333484
-0.168622
0.323021
-0.162632
0.312017
-0.156357
0.300488
-0.149808
0.288386
-0.142996
0.275801
-0.135933
0.262752
-0.128632
0.249203
-0.121105
0.235236
-0.113365
0.220873
-0.105427
0.206089
-0.0973041
0.190961
-0.0890098
0.17551
-0.08056
0.159726
-0.0719689
0.143674
-0.0632512
0.127377
-0.0544227
0.110846
-0.0454989
0.0941236
-0.0364951
0.077237
-0.0274275
0.0602137
-0.0183118
0.0430855
-0.00916386
0.0258817
9.62764e-14
0.00863221
0.00916382
-0.00863221
0.0183116
-0.0258817
0.0274272
-0.0430855
0.0364945
-0.0602137
0.045498
-0.077237
0.0544214
-0.0941236
0.0632494
-0.110846
0.0719667
-0.127377
0.0805572
-0.143674
0.0890063
-0.159726
0.0972999
-0.17551
0.105422
-0.190961
0.113359
-0.206089
0.121098
-0.220873
0.128624
-0.235236
0.135925
-0.249203
0.142987
-0.262752
0.149798
-0.275801
0.156346
-0.288386
0.162621
-0.300488
0.168609
-0.312017
0.174302
-0.323021
0.179689
-0.333484
0.184761
-0.343312
0.189509
-0.352562
0.193924
-0.361221
0.197999
-0.369192
0.201727
-0.376543
0.205101
-0.383261
0.208115
-0.38925
0.210764
-0.394585
0.213043
-0.399257
0.214949
-0.40317
0.216477
-0.406404
0.217626
-0.408957
0.218393
-0.410731
0.218777
-0.411815
0.218777
-0.412207
0.218393
-0.411814
0.217626
-0.41073
0.216477
-0.408956
0.214949
-0.406403
0.213043
-0.403168
0.210764
-0.399256
0.208115
-0.394583
0.205101
-0.389248
0.201727
-0.383259
0.197999
-0.37654
0.193924
-0.36919
0.189509
-0.361218
0.184761
-0.352559
0.179689
-0.343309
0.174302
-0.333481
0.168609
-0.323018
0.162621
-0.312014
0.156346
-0.300484
0.149798
-0.288382
0.142987
-0.275798
0.135925
-0.262749
0.128624
-0.249199
0.121098
-0.235233
0.113359
-0.22087
0.105422
-0.206086
0.0972999
-0.190958
0.0890063
-0.175508
0.0805572
-0.159723
0.0719667
-0.143672
0.0632492
-0.127378
0.0544214
-0.110841
0.0454982
-0.0941202
0.0364943
-0.0772392
0.0274272
-0.0602112
0.0183118
-0.043084
0.00916362
-0.0258825
-0.00863167
-0.00812379
0.00758615
-0.016234
0.0227474
-0.0243151
0.0378653
-0.0323536
0.052918
-0.040336
0.0678835
-0.048247
0.0827197
-0.0560734
0.0974153
-0.0638021
0.111949
-0.0714183
0.12627
-0.0789092
0.140376
-0.0862623
0.154249
-0.0934635
0.167828
-0.100501
0.181124
-0.107362
0.194117
-0.114035
0.20674
-0.120508
0.219015
-0.126769
0.230923
-0.132808
0.242391
-0.138614
0.253452
-0.144177
0.264087
-0.149487
0.27422
-0.154535
0.283892
-0.159311
0.293087
-0.163808
0.301725
-0.168018
0.309854
-0.171933
0.317465
-0.175546
0.324471
-0.178852
0.330931
-0.181843
0.336836
-0.184516
0.3421
-0.186865
0.346788
-0.188886
0.350895
-0.190575
0.354333
-0.19193
0.357177
-0.192949
0.35942
-0.193629
0.360979
-0.193969
0.361932
-0.193969
0.362277
-0.193629
0.361932
-0.192949
0.36098
-0.19193
0.359421
-0.190575
0.357177
-0.188886
0.354335
-0.186865
0.350896
-0.184516
0.34679
-0.181843
0.342101
-0.178852
0.336838
-0.175546
0.330933
-0.171933
0.324473
-0.168018
0.317467
-0.163808
0.309857
-0.159311
0.301727
-0.154535
0.29309
-0.149487
0.283894
-0.144177
0.274223
-0.138614
0.26409
-0.132808
0.253454
-0.126769
0.242394
-0.120508
0.230925
-0.114035
0.219017
-0.107362
0.206742
-0.100501
0.194119
-0.0934635
0.181126
-0.0862623
0.16783
-0.0789092
0.154251
-0.0714183
0.140378
-0.0638021
0.126271
-0.0560736
0.111948
-0.048247
0.0974191
-0.0403358
0.0827226
-0.0323538
0.0678814
-0.0243151
0.0529201
-0.0162338
0.0378666
-0.00812397
0.0227467
7.53774e-14
0.0075866
0.00812394
-0.0075866
0.0162336
-0.0227467
0.0243148
-0.0378666
0.0323532
-0.0529201
0.040335
-0.0678814
0.0482458
-0.0827226
0.056072
-0.0974191
0.0638001
-0.111948
0.0714157
-0.126271
0.0789061
-0.140378
0.0862586
-0.154251
0.0934591
-0.16783
0.100496
-0.181126
0.107356
-0.194119
0.114028
-0.206742
0.1205
-0.219017
0.126761
-0.230925
0.132799
-0.242394
0.138604
-0.253454
0.144167
-0.26409
0.149476
-0.274223
0.154522
-0.283894
0.159299
-0.29309
0.163795
-0.301727
0.168004
-0.309857
0.171918
-0.317467
0.175531
-0.324473
0.178835
-0.330933
0.181827
-0.336838
0.184499
-0.342101
0.186847
-0.34679
0.188868
-0.350896
0.190557
-0.354335
0.191912
-0.357177
0.19293
-0.359421
0.19361
-0.36098
0.19395
-0.361932
0.19395
-0.362277
0.19361
-0.361932
0.19293
-0.360979
0.191912
-0.35942
0.190557
-0.357177
0.188868
-0.354333
0.186847
-0.350895
0.184499
-0.346788
0.181827
-0.3421
0.178835
-0.336836
0.175531
-0.330931
0.171918
-0.324471
0.168004
-0.317465
0.163795
-0.309854
0.159299
-0.301725
0.154522
-0.293087
0.149476
-0.283892
0.144167
-0.27422
0.138604
-0.264087
0.132799
-0.253452
0.126761
-0.242391
0.1205
-0.230923
0.114028
-0.219015
0.107356
-0.20674
0.100496
-0.194117
0.0934591
-0.181124
0.0862586
-0.167828
0.0789061
-0.154249
0.0714157
-0.140376
0.0638001
-0.12627
0.0560718
-0.111949
0.0482458
-0.0974153
0.0403351
-0.0827197
0.0323531
-0.0678835
0.0243148
-0.052918
0.0162338
-0.0378653
0.00812375
-0.0227474
-0.00758615
-0.00706967
0.00652731
-0.0141275
0.0195724
-0.02116
0.0325803
-0.0281555
0.045532
-0.0351021
0.0584086
-0.0419866
0.0711741
-0.0487975
0.0838186
-0.0555233
0.0963237
-0.0621513
0.108645
-0.0686702
0.120783
-0.0750692
0.13272
-0.081336
0.144403
-0.0874601
0.155843
-0.0934313
0.167023
-0.0992382
0.177884
-0.104871
0.188446
-0.11032
0.198692
-0.115575
0.20856
-0.120628
0.218076
-0.125469
0.227227
-0.13009
0.235946
-0.134483
0.244267
-0.13864
0.252179
-0.142553
0.259611
-0.146216
0.266606
-0.149624
0.273154
-0.152768
0.279182
-0.155644
0.284741
-0.158248
0.289822
-0.160574
0.294351
-0.162618
0.298385
-0.164376
0.301918
-0.165847
0.304877
-0.167026
0.307323
-0.167913
0.309254
-0.168504
0.310595
-0.1688
0.311415
-0.1688
0.311712
-0.168504
0.311415
-0.167913
0.310596
-0.167026
0.309254
-0.165847
0.307324
-0.164376
0.304878
-0.162618
0.301919
-0.160574
0.298386
-0.158248
0.294352
-0.155644
0.289823
-0.152768
0.284742
-0.149624
0.279184
-0.146216
0.273156
-0.142553
0.266608
-0.13864
0.259613
-0.134483
0.252181
-0.13009
0.244269
-0.125469
0.235948
-0.120628
0.227229
-0.115575
0.218078
-0.11032
0.208561
-0.104871
0.198694
-0.0992382
0.188447
-0.0934313
0.177886
-0.0874601
0.167025
-0.081336
0.155845
-0.0750692
0.144405
-0.0686702
0.132721
-0.0621513
0.120785
-0.0555233
0.108647
-0.0487977
0.0963229
-0.0419866
0.0838216
-0.0351019
0.0711764
-0.0281556
0.0584067
-0.02116
0.0455337
-0.0141273
0.0325813
-0.00706983
0.0195718
5.69275e-14
0.00652769
0.0070698
-0.00652769
0.0141272
-0.0195718
0.0211598
-0.0325813
0.0281552
-0.0455337
0.0351012
-0.0584067
0.0419856
-0.0711764
0.0487963
-0.0838216
0.0555215
-0.0963229
0.062149
-0.108647
0.0686674
-0.120785
0.0750659
-0.132721
0.0813321
-0.144405
0.0874556
-0.155845
0.0934262
-0.167025
0.0992324
-0.177886
0.104864
-0.188447
0.110313
-0.198694
0.115568
-0.208561
0.120619
-0.218078
0.12546
-0.227229
0.13008
-0.235948
0.134472
-0.244269
0.138628
-0.252181
0.142541
-0.259613
0.146204
-0.266608
0.14961
-0.273156
0.152754
-0.279184
0.15563
-0.284742
0.158233
-0.289823
0.160558
-0.294352
0.162602
-0.298386
0.164361
-0.301919
0.165831
-0.304878
0.16701
-0.307324
0.167896
-0.309254
0.168488
-0.310596
0.168784
-0.311415
0.168784
-0.311712
0.168488
-0.311415
0.167896
-0.310595
0.16701
-0.309254
0.165831
-0.307323
0.164361
-0.304877
0.162602
-0.301918
0.160558
-0.298385
0.158233
-0.294351
0.15563
-0.289822
0.152754
-0.284741
0.14961
-0.279182
0.146204
-0.273154
0.142541
-0.266606
0.138628
-0.259611
0.134472
-0.252179
0.13008
-0.244267
0.12546
-0.235946
0.120619
-0.227227
0.115568
-0.218076
0.110313
-0.20856
0.104864
-0.198692
0.0992324
-0.188446
0.0934262
-0.177884
0.0874556
-0.167023
0.0813321
-0.155843
0.0750659
-0.144403
0.0686674
-0.13272
0.062149
-0.120783
0.0555215
-0.108645
0.0487961
-0.0963237
0.0419856
-0.0838186
0.0351014
-0.0711741
0.028155
-0.0584086
0.0211598
-0.045532
0.0141274
-0.0325803
0.00706964
-0.0195724
-0.00652731
-0.00600315
0.00545702
-0.0119962
0.0163631
-0.0179679
0.0272381
-0.023908
0.038066
-0.0298066
0.0488313
-0.0356526
0.0595036
-0.041436
0.0700747
-0.0471472
0.0805294
-0.0527752
0.0908307
-0.0583107
0.100978
-0.0637443
0.110958
-0.0690657
0.120725
-0.074266
0.130289
-0.0793364
0.139636
-0.0842672
0.148716
-0.0890502
0.157546
-0.0936774
0.166112
-0.0981399
0.174362
-0.10243
0.182318
-0.106541
0.189968
-0.110465
0.197257
-0.114195
0.204214
-0.117725
0.210829
-0.121048
0.217042
-0.124158
0.22289
-0.127052
0.228365
-0.129722
0.233404
-0.132164
0.238051
-0.134375
0.242299
-0.13635
0.246086
-0.138085
0.249458
-0.139579
0.252412
-0.140827
0.254886
-0.141829
0.256931
-0.142582
0.258545
-0.143084
0.259666
-0.143335
0.260352
-0.143335
0.2606
-0.143084
0.260352
-0.142582
0.259667
-0.141829
0.258545
-0.140827
0.256931
-0.139579
0.254886
-0.138085
0.252413
-0.13635
0.249459
-0.134375
0.246086
-0.132164
0.2423
-0.129722
0.238052
-0.127052
0.233406
-0.124158
0.228366
-0.121048
0.222892
-0.117725
0.217044
-0.114195
0.21083
-0.110465
0.204216
-0.106541
0.197259
-0.10243
0.18997
-0.0981399
0.182319
-0.0936774
0.174363
-0.0890502
0.166113
-0.0842672
0.157547
-0.0793364
0.148718
-0.074266
0.139637
-0.0690657
0.130291
-0.0637443
0.120727
-0.0583107
0.110959
-0.0527752
0.100979
-0.0471472
0.0908316
-0.0414361
0.0805285
-0.0356526
0.0700771
-0.0298065
0.0595054
-0.0239081
0.0488296
-0.0179679
0.0380674
-0.0119961
0.0272388
-0.00600328
0.0163626
4.09921e-14
0.00545732
0.00600326
-0.00545732
0.011996
-0.0163626
0.0179676
-0.0272388
0.0239077
-0.0380674
0.0298059
-0.0488296
0.0356517
-0.0595054
0.0414349
-0.0700771
0.0471456
-0.0805285
0.0527733
-0.0908316
0.0583083
-0.100979
0.0637415
-0.110959
0.0690624
-0.120727
0.0742622
-0.130291
0.079332
-0.139637
0.0842623
-0.148718
0.0890447
-0.157547
0.0936713
-0.166113
0.0981331
-0.174363
0.102423
-0.182319
0.106533
-0.18997
0.110456
-0.197259
0.114186
-0.204216
0.117715
-0.21083
0.121038
-0.217044
0.124148
-0.222892
0.12704
-0.228366
0.12971
-0.233406
0.132152
-0.238052
0.134362
-0.2423
0.136337
-0.246086
0.138072
-0.249459
0.139565
-0.252413
0.140814
-0.254886
0.141815
-0.256931
0.142567
-0.258545
0.14307
-0.259667
0.143321
-0.260352
0.143321
-0.2606
0.14307
-0.260352
0.142567
-0.259666
0.141815
-0.258545
0.140814
-0.256931
0.139565
-0.254886
0.138072
-0.252412
0.136337
-0.249458
0.134362
-0.246086
0.132152
-0.242299
0.12971
-0.238051
0.12704
-0.233404
0.124148
-0.228365
0.121038
-0.22289
0.117715
-0.217042
0.114186
-0.210829
0.110456
-0.204214
0.106533
-0.197257
0.102423
-0.189968
0.0981331
-0.182318
0.0936713
-0.174362
0.0890447
-0.166112
0.0842623
-0.157546
0.079332
-0.148716
0.0742622
-0.139636
0.0690624
-0.130289
0.0637415
-0.120725
0.0583083
-0.110958
0.0527733
-0.100978
0.0471456
-0.0908307
0.0414348
-0.0805294
0.0356517
-0.0700747
0.029806
-0.0595036
0.0239076
-0.0488313
0.0179676
-0.038066
0.0119961
-0.0272381
0.00600312
-0.0163631
-0.00545702
-0.00492609
0.00437715
-0.00984393
0.0131251
-0.0147442
0.021848
-0.0196185
0.0305333
-0.0244589
0.0391683
-0.029256
0.0477287
-0.0340017
0.0562079
-0.0386883
0.0645938
-0.0433066
0.0728566
-0.0478489
0.0809961
-0.0523077
0.0890006
-0.0566743
0.0968355
-0.0609416
0.104507
-0.0651023
0.112004
-0.0691484
0.119287
-0.0730733
0.12637
-0.0768703
0.133241
-0.0805321
0.139858
-0.0840527
0.14624
-0.0874261
0.152376
-0.0906458
0.158223
-0.0937066
0.163803
-0.0966031
0.169109
-0.09933
0.174093
-0.101883
0.178784
-0.104257
0.183175
-0.106448
0.187217
-0.108452
0.190944
-0.110266
0.194351
-0.111887
0.197389
-0.113311
0.200094
-0.114536
0.202463
-0.115561
0.204447
-0.116383
0.206088
-0.117
0.207382
-0.117413
0.208282
-0.117619
0.208832
-0.117619
0.209031
-0.117413
0.208832
-0.117
0.208282
-0.116383
0.207383
-0.115561
0.206088
-0.114536
0.204448
-0.113311
0.202464
-0.111887
0.200094
-0.110266
0.197389
-0.108452
0.194352
-0.106448
0.190945
-0.104257
0.187218
-0.101883
0.183175
-0.09933
0.178784
-0.0966031
0.174094
-0.0937066
0.16911
-0.0906458
0.163804
-0.0874261
0.158224
-0.0840527
0.152377
-0.0805321
0.146241
-0.0768703
0.139859
-0.0730733
0.133242
-0.0691484
0.126371
-0.0651023
0.119288
-0.0609416
0.112005
-0.0566743
0.104508
-0.0523077
0.0968363
-0.0478489
0.0890013
-0.0433066
0.0809968
-0.0386883
0.0728572
-0.0340019
0.0645929
-0.029256
0.0562098
-0.0244588
0.04773
-0.0196186
0.0391668
-0.0147442
0.0305343
-0.00984382
0.0218486
-0.0049262
0.0131246
2.76272e-14
0.00437739
0.00492618
-0.00437739
0.00984374
-0.0131246
0.014744
-0.0218486
0.0196183
-0.0305343
0.0244582
-0.0391668
0.0292552
-0.04773
0.0340009
-0.0562098
0.038687
-0.0645929
0.0433049
-0.0728572
0.0478469
-0.0809968
0.0523053
-0.0890013
0.0566716
-0.0968363
0.0609384
-0.104508
0.0650986
-0.112005
0.0691443
-0.119288
0.0730687
-0.126371
0.0768652
-0.133242
0.0805266
-0.139859
0.0840466
-0.146241
0.0874195
-0.152377
0.0906388
-0.158224
0.093699
-0.163804
0.0965951
-0.16911
0.0993215
-0.174094
0.101874
-0.178784
0.104247
-0.183175
0.106438
-0.187218
0.108442
-0.190945
0.110256
-0.194352
0.111876
-0.197389
0.1133
-0.200094
0.114525
-0.202464
0.115549
-0.204448
0.116371
-0.206088
0.116989
-0.207383
0.117401
-0.208282
0.117607
-0.208832
0.117607
-0.209031
0.117401
-0.208832
0.116989
-0.208282
0.116371
-0.207382
0.115549
-0.206088
0.114525
-0.204447
0.1133
-0.202463
0.111876
-0.200094
0.110256
-0.197389
0.108442
-0.194351
0.106438
-0.190944
0.104247
-0.187217
0.101874
-0.183175
0.0993215
-0.178784
0.0965951
-0.174093
0.093699
-0.169109
0.0906388
-0.163803
0.0874195
-0.158223
0.0840466
-0.152376
0.0805266
-0.14624
0.0768652
-0.139858
0.0730687
-0.133241
0.0691443
-0.12637
0.0650986
-0.119287
0.0609384
-0.112004
0.0566716
-0.104507
0.0523053
-0.0968355
0.0478469
-0.0890006
0.0433049
-0.0809961
0.038687
-0.0728566
0.0340008
-0.0645938
0.0292552
-0.0562079
0.0244584
-0.0477287
0.0196182
-0.0391683
0.014744
-0.0305333
0.00984385
-0.021848
0.00492607
-0.0131251
-0.00437715
-0.0038404
0.0032896
-0.00767436
0.00986403
-0.0114946
0.0164197
-0.0152947
0.022947
-0.0190682
0.0294365
-0.022808
0.03587
-0.0265079
0.0422425
-0.0301615
0.0485448
-0.0337619
0.0547546
-0.0373032
0.0608718
-0.0407792
0.0668875
-0.0441835
0.0727758
-0.0475103
0.0785412
-0.0507539
0.0841753
-0.0539083
0.0896492
-0.0569682
0.0949719
-0.0599283
0.100136
-0.0627831
0.105109
-0.0655277
0.109905
-0.0681576
0.114517
-0.0706678
0.118911
-0.0730539
0.123105
-0.0753121
0.127092
-0.077438
0.130838
-0.079428
0.134363
-0.0812789
0.137663
-0.082987
0.140701
-0.0845495
0.143502
-0.0859638
0.146063
-0.0872271
0.148345
-0.0883375
0.150378
-0.0892929
0.152159
-0.0900916
0.15365
-0.0907323
0.154883
-0.0912138
0.155856
-0.0915353
0.156532
-0.0916962
0.156945
-0.0916962
0.157095
-0.0915353
0.156945
-0.0912138
0.156532
-0.0907323
0.155856
-0.0900916
0.154883
-0.0892929
0.15365
-0.0883375
0.152159
-0.0872271
0.150379
-0.0859638
0.148346
-0.0845495
0.146063
-0.082987
0.143503
-0.0812789
0.140701
-0.079428
0.137663
-0.077438
0.134363
-0.0753121
0.130838
-0.0730539
0.127093
-0.0706678
0.123105
-0.0681576
0.118911
-0.0655277
0.114517
-0.0627831
0.109905
-0.0599283
0.105109
-0.0569682
0.100136
-0.0539083
0.0949724
-0.0507539
0.0896497
-0.0475103
0.0841758
-0.0441835
0.0785416
-0.0407792
0.0727762
-0.0373032
0.0668879
-0.0337619
0.0608722
-0.0301615
0.054755
-0.026508
0.0485441
-0.022808
0.0422438
-0.0190681
0.035871
-0.0152947
0.0294354
-0.0114946
0.0229477
-0.00767427
0.0164201
-0.00384048
0.00986365
1.68799e-14
0.00328977
0.00384047
-0.00328977
0.00767421
-0.00986365
0.0114944
-0.0164201
0.0152945
-0.0229477
0.0190677
-0.0294354
0.0228075
-0.035871
0.0265072
-0.0422438
0.0301605
-0.0485441
0.0337607
-0.054755
0.0373016
-0.0608722
0.0407774
-0.0668879
0.0441813
-0.0727762
0.0475078
-0.0785416
0.0507511
-0.0841758
0.0539051
-0.0896497
0.0569646
-0.0949724
0.0599243
-0.100136
0.0627787
-0.105109
0.065523
-0.109905
0.0681525
-0.114517
0.0706622
-0.118911
0.073048
-0.123105
0.0753058
-0.127093
0.0774313
-0.130838
0.079421
-0.134363
0.0812715
-0.137663
0.0829793
-0.140701
0.0845415
-0.143503
0.0859556
-0.146063
0.0872187
-0.148346
0.0883288
-0.150379
0.0892841
-0.152159
0.0900826
-0.15365
0.0907232
-0.154883
0.0912046
-0.155856
0.091526
-0.156532
0.0916868
-0.156945
0.0916868
-0.157095
0.091526
-0.156945
0.0912046
-0.156532
0.0907232
-0.155856
0.0900826
-0.154883
0.0892841
-0.15365
0.0883288
-0.152159
0.0872187
-0.150378
0.0859556
-0.148345
0.0845415
-0.146063
0.0829793
-0.143502
0.0812715
-0.140701
0.079421
-0.137663
0.0774313
-0.134363
0.0753058
-0.130838
0.073048
-0.127092
0.0706622
-0.123105
0.0681525
-0.118911
0.065523
-0.114517
0.0627787
-0.109905
0.0599243
-0.105109
0.0569646
-0.100136
0.0539051
-0.0949719
0.0507511
-0.0896492
0.0475078
-0.0841753
0.0441813
-0.0785412
0.0407774
-0.0727758
0.0373016
-0.0668875
0.0337607
-0.0608718
0.0301605
-0.0547546
0.0265071
-0.0485448
0.0228075
-0.0422425
0.0190678
-0.03587
0.0152944
-0.0294365
0.0114944
-0.022947
0.00767429
-0.0164197
0.00384038
-0.00986403
-0.0032896
-0.00274796
0.00219628
-0.00549132
0.00658565
-0.00822485
0.0109625
-0.010944
0.0153204
-0.0136441
0.0196531
-0.0163201
0.0239484
-0.0189675
0.0282029
-0.0215818
0.0324106
-0.0241581
0.0365566
-0.026692
0.0406407
-0.0291792
0.044657
-0.0316151
0.0485883
-0.0339956
0.0524375
-0.0363166
0.0561991
-0.0385737
0.0598537
-0.0407631
0.0634074
-0.0428812
0.0668549
-0.0449239
0.0701752
-0.0468878
0.0733773
-0.0487696
0.0764564
-0.0505657
0.07939
-0.0522731
0.08219
-0.053889
0.0848522
-0.0554101
0.0873528
-0.0568341
0.0897065
-0.0581584
0.0919097
-0.0593806
0.093938
-0.0604987
0.0958083
-0.0615107
0.0975178
-0.0624146
0.0990417
-0.0632091
0.100399
-0.0638928
0.101588
-0.0644643
0.102583
-0.0649227
0.103407
-0.0652673
0.104056
-0.0654973
0.104507
-0.0656124
0.104783
-0.0656124
0.104883
-0.0654973
0.104783
-0.0652673
0.104508
-0.0649227
0.104056
-0.0644643
0.103407
-0.0638928
0.102584
-0.0632091
0.101588
-0.0624146
0.100399
-0.0615107
0.0990419
-0.0604987
0.097518
-0.0593806
0.0958084
-0.0581584
0.0939382
-0.0568341
0.0919099
-0.0554101
0.0897067
-0.053889
0.087353
-0.0522731
0.0848524
-0.0505657
0.0821902
-0.0487696
0.0793902
-0.0468878
0.0764567
-0.0449239
0.0733775
-0.0428812
0.0701754
-0.0407631
0.0668552
-0.0385737
0.0634076
-0.0363166
0.0598539
-0.0339956
0.0561993
-0.0316151
0.0524377
-0.0291792
0.0485885
-0.026692
0.0446572
-0.0241581
0.0406408
-0.0215818
0.0365567
-0.0189675
0.0324101
-0.0163201
0.0282037
-0.013644
0.023949
-0.010944
0.0196523
-0.00822485
0.0153209
-0.00549126
0.0109627
-0.00274802
0.00658539
8.79536e-15
0.00219639
0.00274801
-0.00219639
0.00549121
-0.00658539
0.00822475
-0.0109627
0.0109438
-0.0153209
0.0136437
-0.0196523
0.0163197
-0.023949
0.018967
-0.0282037
0.0215811
-0.0324101
0.0241571
-0.0365567
0.0266908
-0.0406408
0.0291779
-0.0446572
0.0316136
-0.0485885
0.0339938
-0.0524377
0.0363145
-0.0561993
0.0385713
-0.0598539
0.0407605
-0.0634076
0.0428783
-0.0668552
0.0449208
-0.0701754
0.0468844
-0.0733775
0.0487659
-0.0764567
0.0505617
-0.0793902
0.0522689
-0.0821902
0.0538844
-0.0848524
0.0554053
-0.087353
0.056829
-0.0897067
0.0581531
-0.0919099
0.0593751
-0.0939382
0.060493
-0.0958084
0.0615048
-0.097518
0.0624086
-0.0990419
0.0632029
-0.100399
0.0638864
-0.101588
0.0644578
-0.102584
0.0649162
-0.103407
0.0652606
-0.104056
0.0654906
-0.104508
0.0656057
-0.104783
0.0656057
-0.104883
0.0654906
-0.104783
0.0652606
-0.104507
0.0649162
-0.104056
0.0644578
-0.103407
0.0638864
-0.102583
0.0632029
-0.101588
0.0624086
-0.100399
0.0615048
-0.0990417
0.060493
-0.0975178
0.0593751
-0.0958083
0.0581531
-0.093938
0.056829
-0.0919097
0.0554053
-0.0897065
0.0538844
-0.0873528
0.0522689
-0.0848522
0.0505617
-0.08219
0.0487659
-0.07939
0.0468844
-0.0764564
0.0449208
-0.0733773
0.0428783
-0.0701752
0.0407605
-0.0668549
0.0385713
-0.0634074
0.0363145
-0.0598537
0.0339938
-0.0561991
0.0316136
-0.0524375
0.0291779
-0.0485883
0.0266908
-0.044657
0.0241571
-0.0406407
0.0215811
-0.0365566
0.0189669
-0.0324106
0.0163197
-0.0282029
0.0136438
-0.0239484
0.0109438
-0.0196531
0.00822475
-0.0153204
0.00549127
-0.0109625
0.00274795
-0.00658565
-0.00219628
-0.00165071
0.00109911
-0.00329865
0.00329572
-0.00494069
0.00548606
-0.00657407
0.00766694
-0.00819604
0.00983519
-0.00980353
0.0119847
-0.0113938
0.0141139
-0.0129642
0.0162196
-0.0145118
0.0182944
-0.0160339
0.0203382
-0.017528
0.0223481
-0.0189913
0.0243155
-0.0204212
0.0262418
-0.0218154
0.0281243
-0.0231713
0.0299532
-0.0244865
0.0317315
-0.0257589
0.0334568
-0.0269859
0.0351184
-0.0281656
0.0367209
-0.029296
0.0382618
-0.030375
0.0397299
-0.0314006
0.0411311
-0.0323712
0.0424634
-0.033285
0.0437148
-0.0341404
0.0448926
-0.0349359
0.0459952
-0.0356701
0.0470103
-0.0363417
0.0479462
-0.0369496
0.0488017
-0.0374926
0.0495644
-0.0379699
0.0502436
-0.0383806
0.0508386
-0.0387239
0.0513368
-0.0389993
0.0517487
-0.0392062
0.0520737
-0.0393444
0.0522996
-0.0394136
0.0524377
-0.0394136
0.0524876
-0.0393444
0.0524377
-0.0392062
0.0522996
-0.0389993
0.0520738
-0.0387239
0.0517487
-0.0383806
0.0513368
-0.0379699
0.0508386
-0.0374926
0.0502437
-0.0369496
0.0495644
-0.0363417
0.0488018
-0.0356701
0.0479462
-0.0349359
0.0470103
-0.0341404
0.0459953
-0.033285
0.0448927
-0.0323712
0.0437148
-0.0314006
0.0424634
-0.030375
0.0411311
-0.029296
0.0397299
-0.0281656
0.0382619
-0.0269859
0.0367209
-0.0257589
0.0351185
-0.0244865
0.0334569
-0.0231713
0.0317316
-0.0218154
0.0299532
-0.0204212
0.0281243
-0.0189913
0.0262418
-0.017528
0.0243155
-0.0160339
0.0223482
-0.0145118
0.0203382
-0.0129642
0.0182944
-0.0113939
0.0162192
-0.00980353
0.0141142
-0.00819601
0.011985
-0.00657411
0.00983477
-0.00494069
0.00766715
-0.00329861
0.00548617
-0.00165075
0.00329558
3.38925e-15
0.00109916
0.00165074
-0.00109916
0.00329859
-0.00329558
0.00494063
-0.00548617
0.00657399
-0.00766715
0.00819583
-0.00983477
0.00980327
-0.011985
0.0113935
-0.0141142
0.0129638
-0.0162192
0.0145113
-0.0182944
0.0160333
-0.0203382
0.0175272
-0.0223482
0.0189903
-0.0243155
0.0204201
-0.0262418
0.0218142
-0.0281243
0.0231699
-0.0299532
0.0244849
-0.0317316
0.0257571
-0.0334569
0.026984
-0.0351185
0.0281636
-0.0367209
0.0292938
-0.0382619
0.0303726
-0.0397299
0.031398
-0.0411311
0.0323685
-0.0424634
0.0332821
-0.0437148
0.0341373
-0.0448927
0.0349327
-0.0459953
0.0356668
-0.0470103
0.0363383
-0.0479462
0.0369461
-0.0488018
0.037489
-0.0495644
0.0379662
-0.0502437
0.0383767
-0.0508386
0.03872
-0.0513368
0.0389953
-0.0517487
0.0392022
-0.0520738
0.0393404
-0.0522996
0.0394095
-0.0524377
0.0394095
-0.0524876
0.0393404
-0.0524377
0.0392022
-0.0522996
0.0389953
-0.0520737
0.03872
-0.0517487
0.0383767
-0.0513368
0.0379662
-0.0508386
0.037489
-0.0502436
0.0369461
-0.0495644
0.0363383
-0.0488017
0.0356668
-0.0479462
0.0349327
-0.0470103
0.0341373
-0.0459952
0.0332821
-0.0448926
0.0323685
-0.0437148
0.031398
-0.0424634
0.0303726
-0.0411311
0.0292938
-0.0397299
0.0281636
-0.0382618
0.026984
-0.0367209
0.0257571
-0.0351184
0.0244849
-0.0334568
0.0231699
-0.0317315
0.0218142
-0.0299532
0.0204201
-0.0281243
0.0189903
-0.0262418
0.0175272
-0.0243155
0.0160333
-0.0223481
0.0145113
-0.0203382
0.0129638
-0.0182944
0.0113935
-0.0162196
0.00980327
-0.0141139
0.00819587
-0.0119847
0.00657396
-0.00983519
0.00494063
-0.00766694
0.00329862
-0.00548606
0.0016507
-0.00329572
-0.00109911
-0.000550558
1.18502e-13
-0.00110019
3.52143e-13
-0.00164786
5.78726e-13
-0.00219264
7.97935e-13
-0.00273361
1.0095e-12
-0.00326975
1.21284e-12
-0.00380016
1.40789e-12
-0.00432394
1.59443e-12
-0.0048401
1.77185e-12
-0.00534777
1.94031e-12
-0.0058461
2.09958e-12
-0.00633413
2.24906e-12
-0.00681106
2.38906e-12
-0.00727607
2.51954e-12
-0.00772829
2.63981e-12
-0.00816694
2.75021e-12
-0.00859131
2.85114e-12
-0.00900057
2.94163e-12
-0.00939404
3.02242e-12
-0.00977106
3.09355e-12
-0.0101309
3.1543e-12
-0.010473
3.20564e-12
-0.0107967
3.24765e-12
-0.0111015
3.27978e-12
-0.0113868
3.30288e-12
-0.0116521
3.31702e-12
-0.011897
3.3218e-12
-0.012121
3.31816e-12
-0.0123237
3.30627e-12
-0.0125049
3.28573e-12
-0.012664
3.25734e-12
-0.012801
3.22187e-12
-0.0129155
3.17868e-12
-0.0130074
3.12885e-12
-0.0130764
3.07283e-12
-0.0131225
3.01008e-12
-0.0131455
2.94162e-12
-0.0131455
2.86793e-12
-0.0131225
2.78874e-12
-0.0130764
2.7052e-12
-0.0130074
2.61782e-12
-0.0129155
2.5262e-12
-0.012801
2.43127e-12
-0.012664
2.33364e-12
-0.0125049
2.23316e-12
-0.0123237
2.13056e-12
-0.012121
2.02682e-12
-0.011897
1.92157e-12
-0.0116521
1.81544e-12
-0.0113868
1.70911e-12
-0.0111015
1.60282e-12
-0.0107967
1.49711e-12
-0.010473
1.39256e-12
-0.0101309
1.28917e-12
-0.00977106
1.18736e-12
-0.00939404
1.08774e-12
-0.00900057
9.90511e-13
-0.00859131
8.96172e-13
-0.00816694
8.04958e-13
-0.00772829
7.17267e-13
-0.00727607
6.33415e-13
-0.00681106
5.53817e-13
-0.00633413
4.7858e-13
-0.0058461
4.08109e-13
-0.00534777
3.42583e-13
-0.0048401
2.82165e-13
-0.00432394
2.27244e-13
-0.00380017
1.77961e-13
-0.00326975
1.34475e-13
-0.0027336
9.68505e-14
-0.00219265
6.52822e-14
-0.00164786
3.99066e-14
-0.00110018
2.07951e-14
-0.00055057
8.00693e-15
6.76859e-16
1.60639e-15
0.000550568
1.59663e-15
0.00110017
7.99717e-15
0.00164784
2.07658e-14
0.00219261
3.98774e-14
0.00273354
6.52337e-14
0.00326967
9.67585e-14
0.00380006
1.34381e-13
0.0043238
1.78006e-13
0.00483992
2.27361e-13
0.00534755
2.82305e-13
0.00584583
3.42623e-13
0.00633382
4.08144e-13
0.0068107
4.78631e-13
0.00727566
5.53885e-13
0.00772782
6.33545e-13
0.00816642
7.17195e-13
0.00859073
8.04811e-13
0.00899994
8.95816e-13
0.00939335
9.90148e-13
0.00977032
1.08748e-12
0.0101301
1.18714e-12
0.0104721
1.28899e-12
0.0107958
1.39256e-12
0.0111005
1.49726e-12
0.0113858
1.60297e-12
0.0116511
1.70932e-12
0.0118959
1.81549e-12
0.0121198
1.92146e-12
0.0123226
2.02693e-12
0.0125036
2.13078e-12
0.0126628
2.23293e-12
0.0127997
2.3333e-12
0.0129142
2.43081e-12
0.013006
2.5258e-12
0.0130751
2.61762e-12
0.0131211
2.70526e-12
0.0131442
2.78877e-12
0.0131442
2.86787e-12
0.0131211
2.94151e-12
0.0130751
3.00993e-12
0.013006
3.07277e-12
0.0129142
3.12896e-12
0.0127997
3.17894e-12
0.0126628
3.22212e-12
0.0125036
3.25759e-12
0.0123226
3.28551e-12
0.0121198
3.30603e-12
0.0118959
3.3179e-12
0.0116511
3.32158e-12
0.0113858
3.31695e-12
0.0111005
3.30281e-12
0.0107958
3.27981e-12
0.0104721
3.24775e-12
0.0101301
3.20574e-12
0.00977032
3.15437e-12
0.00939335
3.09352e-12
0.00899994
3.02247e-12
0.00859073
2.9417e-12
0.00816642
2.85121e-12
0.00772782
2.75037e-12
0.00727566
2.63968e-12
0.0068107
2.51942e-12
0.00633382
2.38896e-12
0.00584583
2.249e-12
0.00534755
2.09954e-12
0.00483992
1.94026e-12
0.0043238
1.77185e-12
0.00380005
1.59443e-12
0.00326967
1.40793e-12
0.00273355
1.21286e-12
0.0021926
1.00952e-12
0.00164784
7.97951e-13
0.00110018
5.78743e-13
0.000550556
3.52153e-13
1.18512e-13
0.000550558
-0.00109911
0.00110019
-0.00329573
0.00164786
-0.00548607
0.00219264
-0.00766696
0.00273361
-0.00983521
0.00326975
-0.0119847
0.00380016
-0.0141139
0.00432394
-0.0162196
0.0048401
-0.0182944
0.00534777
-0.0203382
0.0058461
-0.0223482
0.00633413
-0.0243155
0.00681106
-0.0262418
0.00727607
-0.0281243
0.00772829
-0.0299532
0.00816694
-0.0317316
0.00859131
-0.0334569
0.00900057
-0.0351185
0.00939404
-0.0367209
0.00977106
-0.0382619
0.0101309
-0.0397299
0.010473
-0.0411311
0.0107967
-0.0424634
0.0111015
-0.0437148
0.0113868
-0.0448927
0.0116521
-0.0459953
0.011897
-0.0470103
0.012121
-0.0479462
0.0123237
-0.0488018
0.0125049
-0.0495644
0.012664
-0.0502437
0.012801
-0.0508386
0.0129155
-0.0513368
0.0130074
-0.0517487
0.0130764
-0.0520738
0.0131225
-0.0522996
0.0131455
-0.0524377
0.0131455
-0.0524876
0.0131225
-0.0524377
0.0130764
-0.0522996
0.0130074
-0.0520737
0.0129155
-0.0517487
0.012801
-0.0513368
0.012664
-0.0508386
0.0125049
-0.0502436
0.0123237
-0.0495644
0.012121
-0.0488017
0.011897
-0.0479462
0.0116521
-0.0470103
0.0113868
-0.0459952
0.0111015
-0.0448926
0.0107967
-0.0437148
0.010473
-0.0424634
0.0101309
-0.0411311
0.00977106
-0.0397299
0.00939404
-0.0382618
0.00900057
-0.0367209
0.00859131
-0.0351184
0.00816694
-0.0334568
0.00772829
-0.0317315
0.00727607
-0.0299532
0.00681106
-0.0281243
0.00633413
-0.0262418
0.0058461
-0.0243155
0.00534777
-0.0223481
0.0048401
-0.0203382
0.00432394
-0.0182944
0.00380017
-0.0162192
0.00326975
-0.0141142
0.0027336
-0.011985
0.00219265
-0.00983475
0.00164786
-0.00766714
0.00110018
-0.00548616
0.00055057
-0.00329557
6.78693e-16
-0.00109916
-0.000550568
0.00109916
-0.00110017
0.00329557
-0.00164784
0.00548616
-0.00219261
0.00766714
-0.00273354
0.00983475
-0.00326967
0.011985
-0.00380006
0.0141142
-0.0043238
0.0162192
-0.00483992
0.0182944
-0.00534755
0.0203382
-0.00584583
0.0223481
-0.00633382
0.0243155
-0.0068107
0.0262418
-0.00727566
0.0281243
-0.00772782
0.0299532
-0.00816642
0.0317315
-0.00859073
0.0334568
-0.00899994
0.0351184
-0.00939335
0.0367209
-0.00977032
0.0382618
-0.0101301
0.0397299
-0.0104721
0.0411311
-0.0107958
0.0424634
-0.0111005
0.0437148
-0.0113858
0.0448926
-0.0116511
0.0459952
-0.0118959
0.0470103
-0.0121198
0.0479462
-0.0123226
0.0488017
-0.0125036
0.0495644
-0.0126628
0.0502436
-0.0127997
0.0508386
-0.0129142
0.0513368
-0.013006
0.0517487
-0.0130751
0.0520737
-0.0131211
0.0522996
-0.0131442
0.0524377
-0.0131442
0.0524876
-0.0131211
0.0524377
-0.0130751
0.0522996
-0.013006
0.0520738
-0.0129142
0.0517487
-0.0127997
0.0513368
-0.0126628
0.0508386
-0.0125036
0.0502437
-0.0123226
0.0495644
-0.0121198
0.0488018
-0.0118959
0.0479462
-0.0116511
0.0470103
-0.0113858
0.0459953
-0.0111005
0.0448927
-0.0107958
0.0437148
-0.0104721
0.0424634
-0.0101301
0.0411311
-0.00977032
0.0397299
-0.00939335
0.0382619
-0.00899994
0.0367209
-0.00859073
0.0351185
-0.00816642
0.0334569
-0.00772782
0.0317316
-0.00727566
0.0299532
-0.0068107
0.0281243
-0.00633382
0.0262418
-0.00584583
0.0243155
-0.00534755
0.0223482
-0.00483992
0.0203382
-0.0043238
0.0182944
-0.00380005
0.0162196
-0.00326967
0.0141139
-0.00273355
0.0119847
-0.0021926
0.00983521
-0.00164784
0.00766696
-0.00110018
0.00548607
-0.000550556
0.00329573
0.00109911
0.00165071
-0.00219629
0.00329865
-0.00658568
0.00494069
-0.0109625
0.00657407
-0.0153205
0.00819604
-0.0196532
0.00980353
-0.0239485
0.0113938
-0.0282031
0.0129642
-0.0324107
0.0145118
-0.0365567
0.0160339
-0.0406408
0.017528
-0.0446572
0.0189913
-0.0485885
0.0204212
-0.0524377
0.0218154
-0.0561993
0.0231713
-0.0598539
0.0244865
-0.0634076
0.0257589
-0.0668552
0.0269859
-0.0701754
0.0281656
-0.0733775
0.029296
-0.0764567
0.030375
-0.0793902
0.0314006
-0.0821902
0.0323712
-0.0848524
0.033285
-0.087353
0.0341404
-0.0897067
0.0349359
-0.0919099
0.0356701
-0.0939382
0.0363417
-0.0958084
0.0369496
-0.097518
0.0374926
-0.0990419
0.0379699
-0.100399
0.0383806
-0.101588
0.0387239
-0.102584
0.0389993
-0.103407
0.0392062
-0.104056
0.0393444
-0.104508
0.0394136
-0.104783
0.0394136
-0.104883
0.0393444
-0.104783
0.0392062
-0.104507
0.0389993
-0.104056
0.0387239
-0.103407
0.0383806
-0.102583
0.0379699
-0.101588
0.0374926
-0.100399
0.0369496
-0.0990417
0.0363417
-0.0975178
0.0356701
-0.0958083
0.0349359
-0.093938
0.0341404
-0.0919097
0.033285
-0.0897065
0.0323712
-0.0873528
0.0314006
-0.0848522
0.030375
-0.08219
0.029296
-0.07939
0.0281656
-0.0764564
0.0269859
-0.0733773
0.0257589
-0.0701752
0.0244865
-0.0668549
0.0231713
-0.0634074
0.0218154
-0.0598537
0.0204212
-0.0561991
0.0189913
-0.0524375
0.017528
-0.0485883
0.0160339
-0.044657
0.0145118
-0.0406407
0.0129642
-0.0365566
0.0113939
-0.0324099
0.00980353
-0.0282036
0.00819601
-0.0239489
0.00657411
-0.0196522
0.00494069
-0.0153208
0.00329861
-0.0109627
0.00165075
-0.00658536
3.40208e-15
-0.00219638
-0.00165074
0.00219638
-0.00329859
0.00658536
-0.00494063
0.0109627
-0.00657399
0.0153208
-0.00819583
0.0196522
-0.00980327
0.0239489
-0.0113935
0.0282036
-0.0129638
0.0324099
-0.0145113
0.0365566
-0.0160333
0.0406407
-0.0175272
0.044657
-0.0189903
0.0485883
-0.0204201
0.0524375
-0.0218142
0.0561991
-0.0231699
0.0598537
-0.0244849
0.0634074
-0.0257571
0.0668549
-0.026984
0.0701752
-0.0281636
0.0733773
-0.0292938
0.0764564
-0.0303726
0.07939
-0.031398
0.08219
-0.0323685
0.0848522
-0.0332821
0.0873528
-0.0341373
0.0897065
-0.0349327
0.0919097
-0.0356668
0.093938
-0.0363383
0.0958083
-0.0369461
0.0975178
-0.037489
0.0990417
-0.0379662
0.100399
-0.0383767
0.101588
-0.03872
0.102583
-0.0389953
0.103407
-0.0392022
0.104056
-0.0393404
0.104507
-0.0394095
0.104783
-0.0394095
0.104883
-0.0393404
0.104783
-0.0392022
0.104508
-0.0389953
0.104056
-0.03872
0.103407
-0.0383767
0.102584
-0.0379662
0.101588
-0.037489
0.100399
-0.0369461
0.0990419
-0.0363383
0.097518
-0.0356668
0.0958084
-0.0349327
0.0939382
-0.0341373
0.0919099
-0.0332821
0.0897067
-0.0323685
0.087353
-0.031398
0.0848524
-0.0303726
0.0821902
-0.0292938
0.0793902
-0.0281636
0.0764567
-0.026984
0.0733775
-0.0257571
0.0701754
-0.0244849
0.0668552
-0.0231699
0.0634076
-0.0218142
0.0598539
-0.0204201
0.0561993
-0.0189903
0.0524377
-0.0175272
0.0485885
-0.0160333
0.0446572
-0.0145113
0.0406408
-0.0129638
0.0365567
-0.0113935
0.0324107
-0.00980327
0.0282031
-0.00819587
0.0239485
-0.00657396
0.0196532
-0.00494063
0.0153205
-0.00329862
0.0109625
-0.0016507
0.00658568
0.00219629
0.00274796
-0.00328963
0.00549132
-0.00986409
0.00822485
-0.0164198
0.010944
-0.0229471
0.0136441
-0.0294367
0.0163201
-0.0358702
0.0189675
-0.0422428
0.0215818
-0.0485451
0.0241581
-0.054755
0.026692
-0.0608722
0.0291792
-0.0668879
0.0316151
-0.0727762
0.0339956
-0.0785416
0.0363166
-0.0841758
0.0385737
-0.0896497
0.0407631
-0.0949724
0.0428812
-0.100136
0.0449239
-0.105109
0.0468878
-0.109905
0.0487696
-0.114517
0.0505657
-0.118911
0.0522731
-0.123105
0.053889
-0.127093
0.0554101
-0.130838
0.0568341
-0.134363
0.0581584
-0.137663
0.0593806
-0.140701
0.0604987
-0.143503
0.0615107
-0.146063
0.0624146
-0.148346
0.0632091
-0.150379
0.0638928
-0.152159
0.0644643
-0.15365
0.0649227
-0.154883
0.0652673
-0.155856
0.0654973
-0.156532
0.0656124
-0.156945
0.0656124
-0.157095
0.0654973
-0.156945
0.0652673
-0.156532
0.0649227
-0.155856
0.0644643
-0.154883
0.0638928
-0.15365
0.0632091
-0.152159
0.0624146
-0.150378
0.0615107
-0.148345
0.0604987
-0.146063
0.0593806
-0.143502
0.0581584
-0.140701
0.0568341
-0.137663
0.0554101
-0.134363
0.053889
-0.130838
0.0522731
-0.127092
0.0505657
-0.123105
0.0487696
-0.118911
0.0468878
-0.114517
0.0449239
-0.109905
0.0428812
-0.105109
0.0407631
-0.100136
0.0385737
-0.0949719
0.0363166
-0.0896492
0.0339956
-0.0841753
0.0316151
-0.0785412
0.0291792
-0.0727758
0.026692
-0.0668875
0.0241581
-0.0608718
0.0215818
-0.0547546
0.0189675
-0.0485438
0.0163201
-0.0422435
0.013644
-0.0358707
0.010944
-0.0294352
0.00822485
-0.0229476
0.00549126
-0.01642
0.00274802
-0.00986358
8.81734e-15
-0.00328975
-0.00274801
0.00328975
-0.00549121
0.00986358
-0.00822475
0.01642
-0.0109438
0.0229476
-0.0136437
0.0294352
-0.0163197
0.0358707
-0.018967
0.0422435
-0.0215811
0.0485438
-0.0241571
0.0547546
-0.0266908
0.0608718
-0.0291779
0.0668875
-0.0316136
0.0727758
-0.0339938
0.0785412
-0.0363145
0.0841753
-0.0385713
0.0896492
-0.0407605
0.0949719
-0.0428783
0.100136
-0.0449208
0.105109
-0.0468844
0.109905
-0.0487659
0.114517
-0.0505617
0.118911
-0.0522689
0.123105
-0.0538844
0.127092
-0.0554053
0.130838
-0.056829
0.134363
-0.0581531
0.137663
-0.0593751
0.140701
-0.060493
0.143502
-0.0615048
0.146063
-0.0624086
0.148345
-0.0632029
0.150378
-0.0638864
0.152159
-0.0644578
0.15365
-0.0649162
0.154883
-0.0652606
0.155856
-0.0654906
0.156532
-0.0656057
0.156945
-0.0656057
0.157095
-0.0654906
0.156945
-0.0652606
0.156532
-0.0649162
0.155856
-0.0644578
0.154883
-0.0638864
0.15365
-0.0632029
0.152159
-0.0624086
0.150379
-0.0615048
0.148346
-0.060493
0.146063
-0.0593751
0.143503
-0.0581531
0.140701
-0.056829
0.137663
-0.0554053
0.134363
-0.0538844
0.130838
-0.0522689
0.127093
-0.0505617
0.123105
-0.0487659
0.118911
-0.0468844
0.114517
-0.0449208
0.109905
-0.0428783
0.105109
-0.0407605
0.100136
-0.0385713
0.0949724
-0.0363145
0.0896497
-0.0339938
0.0841758
-0.0316136
0.0785416
-0.0291779
0.0727762
-0.0266908
0.0668879
-0.0241571
0.0608722
-0.0215811
0.054755
-0.0189669
0.0485451
-0.0163197
0.0422428
-0.0136438
0.0358702
-0.0109438
0.0294367
-0.00822475
0.0229471
-0.00549127
0.0164198
-0.00274795
0.00986409
0.00328963
0.0038404
-0.00437719
0.00767436
-0.0131252
0.0114946
-0.0218482
0.0152947
-0.0305336
0.0190682
-0.0391686
0.022808
-0.0477291
0.0265079
-0.0562084
0.0301615
-0.0645943
0.0337619
-0.0728572
0.0373032
-0.0809968
0.0407792
-0.0890013
0.0441835
-0.0968363
0.0475103
-0.104508
0.0507539
-0.112005
0.0539083
-0.119288
0.0569682
-0.126371
0.0599283
-0.133242
0.0627831
-0.139859
0.0655277
-0.146241
0.0681576
-0.152377
0.0706678
-0.158224
0.0730539
-0.163804
0.0753121
-0.16911
0.077438
-0.174094
0.079428
-0.178784
0.0812789
-0.183175
0.082987
-0.187218
0.0845495
-0.190945
0.0859638
-0.194352
0.0872271
-0.197389
0.0883375
-0.200094
0.0892929
-0.202464
0.0900916
-0.204448
0.0907323
-0.206088
0.0912138
-0.207383
0.0915353
-0.208282
0.0916962
-0.208832
0.0916962
-0.209031
0.0915353
-0.208832
0.0912138
-0.208282
0.0907323
-0.207382
0.0900916
-0.206088
0.0892929
-0.204447
0.0883375
-0.202463
0.0872271
-0.200094
0.0859638
-0.197389
0.0845495
-0.194351
0.082987
-0.190944
0.0812789
-0.187217
0.079428
-0.183175
0.077438
-0.178784
0.0753121
-0.174093
0.0730539
-0.169109
0.0706678
-0.163803
0.0681576
-0.158223
0.0655277
-0.152376
0.0627831
-0.14624
0.0599283
-0.139858
0.0569682
-0.133241
0.0539083
-0.12637
0.0507539
-0.119287
0.0475103
-0.112004
0.0441835
-0.104507
0.0407792
-0.0968355
0.0373032
-0.0890006
0.0337619
-0.0809961
0.0301615
-0.0728566
0.026508
-0.0645924
0.022808
-0.0562093
0.0190681
-0.0477296
0.0152947
-0.0391665
0.0114946
-0.0305341
0.00767427
-0.0218484
0.00384048
-0.0131245
1.69274e-14
-0.00437735
-0.00384047
0.00437735
-0.00767421
0.0131245
-0.0114944
0.0218484
-0.0152945
0.0305341
-0.0190677
0.0391665
-0.0228075
0.0477296
-0.0265072
0.0562093
-0.0301605
0.0645924
-0.0337607
0.0728566
-0.0373016
0.0809961
-0.0407774
0.0890006
-0.0441813
0.0968355
-0.0475078
0.104507
-0.0507511
0.112004
-0.0539051
0.119287
-0.0569646
0.12637
-0.0599243
0.133241
-0.0627787
0.139858
-0.065523
0.14624
-0.0681525
0.152376
-0.0706622
0.158223
-0.073048
0.163803
-0.0753058
0.169109
-0.0774313
0.174093
-0.079421
0.178784
-0.0812715
0.183175
-0.0829793
0.187217
-0.0845415
0.190944
-0.0859556
0.194351
-0.0872187
0.197389
-0.0883288
0.200094
-0.0892841
0.202463
-0.0900826
0.204447
-0.0907232
0.206088
-0.0912046
0.207382
-0.091526
0.208282
-0.0916868
0.208832
-0.0916868
0.209031
-0.091526
0.208832
-0.0912046
0.208282
-0.0907232
0.207383
-0.0900826
0.206088
-0.0892841
0.204448
-0.0883288
0.202464
-0.0872187
0.200094
-0.0859556
0.197389
-0.0845415
0.194352
-0.0829793
0.190945
-0.0812715
0.187218
-0.079421
0.183175
-0.0774313
0.178784
-0.0753058
0.174094
-0.073048
0.16911
-0.0706622
0.163804
-0.0681525
0.158224
-0.065523
0.152377
-0.0627787
0.146241
-0.0599243
0.139859
-0.0569646
0.133242
-0.0539051
0.126371
-0.0507511
0.119288
-0.0475078
0.112005
-0.0441813
0.104508
-0.0407774
0.0968363
-0.0373016
0.0890013
-0.0337607
0.0809968
-0.0301605
0.0728572
-0.0265071
0.0645943
-0.0228075
0.0562084
-0.0190678
0.0477291
-0.0152944
0.0391686
-0.0114944
0.0305336
-0.00767429
0.0218482
-0.00384038
0.0131252
0.00437719
0.00492609
-0.00545708
0.00984393
-0.0163633
0.0147442
-0.0272383
0.0196185
-0.0380664
0.0244589
-0.0488318
0.029256
-0.0595042
0.0340017
-0.0700755
0.0386883
-0.0805302
0.0433066
-0.0908316
0.0478489
-0.100979
0.0523077
-0.110959
0.0566743
-0.120727
0.0609416
-0.130291
0.0651023
-0.139637
0.0691484
-0.148718
0.0730733
-0.157547
0.0768703
-0.166113
0.0805321
-0.174363
0.0840527
-0.182319
0.0874261
-0.18997
0.0906458
-0.197259
0.0937066
-0.204216
0.0966031
-0.21083
0.09933
-0.217044
0.101883
-0.222892
0.104257
-0.228366
0.106448
-0.233406
0.108452
-0.238052
0.110266
-0.2423
0.111887
-0.246086
0.113311
-0.249459
0.114536
-0.252413
0.115561
-0.254886
0.116383
-0.256931
0.117
-0.258545
0.117413
-0.259667
0.117619
-0.260352
0.117619
-0.2606
0.117413
-0.260352
0.117
-0.259666
0.116383
-0.258545
0.115561
-0.256931
0.114536
-0.254886
0.113311
-0.252412
0.111887
-0.249458
0.110266
-0.246086
0.108452
-0.242299
0.106448
-0.238051
0.104257
-0.233404
0.101883
-0.228365
0.09933
-0.22289
0.0966031
-0.217042
0.0937066
-0.210829
0.0906458
-0.204214
0.0874261
-0.197257
0.0840527
-0.189968
0.0805321
-0.182318
0.0768703
-0.174362
0.0730733
-0.166112
0.0691484
-0.157546
0.0651023
-0.148716
0.0609416
-0.139636
0.0566743
-0.130289
0.0523077
-0.120725
0.0478489
-0.110958
0.0433066
-0.100978
0.0386883
-0.0908307
0.0340019
-0.0805277
0.029256
-0.0700764
0.0244588
-0.0595048
0.0196186
-0.0488291
0.0147442
-0.038067
0.00984382
-0.0272385
0.0049262
-0.0163624
2.7691e-14
-0.00545726
-0.00492618
0.00545726
-0.00984374
0.0163624
-0.014744
0.0272385
-0.0196183
0.038067
-0.0244582
0.0488291
-0.0292552
0.0595048
-0.0340009
0.0700764
-0.038687
0.0805277
-0.0433049
0.0908307
-0.0478469
0.100978
-0.0523053
0.110958
-0.0566716
0.120725
-0.0609384
0.130289
-0.0650986
0.139636
-0.0691443
0.148716
-0.0730687
0.157546
-0.0768652
0.166112
-0.0805266
0.174362
-0.0840466
0.182318
-0.0874195
0.189968
-0.0906388
0.197257
-0.093699
0.204214
-0.0965951
0.210829
-0.0993215
0.217042
-0.101874
0.22289
-0.104247
0.228365
-0.106438
0.233404
-0.108442
0.238051
-0.110256
0.242299
-0.111876
0.246086
-0.1133
0.249458
-0.114525
0.252412
-0.115549
0.254886
-0.116371
0.256931
-0.116989
0.258545
-0.117401
0.259666
-0.117607
0.260352
-0.117607
0.2606
-0.117401
0.260352
-0.116989
0.259667
-0.116371
0.258545
-0.115549
0.256931
-0.114525
0.254886
-0.1133
0.252413
-0.111876
0.249459
-0.110256
0.246086
-0.108442
0.2423
-0.106438
0.238052
-0.104247
0.233406
-0.101874
0.228366
-0.0993215
0.222892
-0.0965951
0.217044
-0.093699
0.21083
-0.0906388
0.204216
-0.0874195
0.197259
-0.0840466
0.18997
-0.0805266
0.182319
-0.0768652
0.174363
-0.0730687
0.166113
-0.0691443
0.157547
-0.0650986
0.148718
-0.0609384
0.139637
-0.0566716
0.130291
-0.0523053
0.120727
-0.0478469
0.110959
-0.0433049
0.100979
-0.038687
0.0908316
-0.0340008
0.0805302
-0.0292552
0.0700755
-0.0244584
0.0595042
-0.0196182
0.0488318
-0.014744
0.0380664
-0.00984385
0.0272383
-0.00492607
0.0163633
0.00545708
0.00600315
-0.00652739
0.0119962
-0.0195727
0.0179679
-0.0325807
0.023908
-0.0455325
0.0298066
-0.0584094
0.0356526
-0.071175
0.041436
-0.0838196
0.0471472
-0.0963249
0.0527752
-0.108647
0.0583107
-0.120785
0.0637443
-0.132721
0.0690657
-0.144405
0.074266
-0.155845
0.0793364
-0.167025
0.0842672
-0.177886
0.0890502
-0.188447
0.0936774
-0.198694
0.0981399
-0.208561
0.10243
-0.218078
0.106541
-0.227229
0.110465
-0.235948
0.114195
-0.244269
0.117725
-0.252181
0.121048
-0.259613
0.124158
-0.266608
0.127052
-0.273156
0.129722
-0.279184
0.132164
-0.284742
0.134375
-0.289823
0.13635
-0.294352
0.138085
-0.298386
0.139579
-0.301919
0.140827
-0.304878
0.141829
-0.307324
0.142582
-0.309254
0.143084
-0.310596
0.143335
-0.311415
0.143335
-0.311712
0.143084
-0.311415
0.142582
-0.310595
0.141829
-0.309254
0.140827
-0.307323
0.139579
-0.304877
0.138085
-0.301918
0.13635
-0.298385
0.134375
-0.294351
0.132164
-0.289822
0.129722
-0.284741
0.127052
-0.279182
0.124158
-0.273154
0.121048
-0.266606
0.117725
-0.259611
0.114195
-0.252179
0.110465
-0.244267
0.106541
-0.235946
0.10243
-0.227227
0.0981399
-0.218076
0.0936774
-0.20856
0.0890502
-0.198692
0.0842672
-0.188446
0.0793364
-0.177884
0.074266
-0.167023
0.0690657
-0.155843
0.0637443
-0.144403
0.0583107
-0.13272
0.0527752
-0.120783
0.0471472
-0.108645
0.0414361
-0.0963217
0.0356526
-0.0838206
0.0298065
-0.0711755
0.0239081
-0.058406
0.0179679
-0.0455331
0.0119961
-0.0325809
0.00600328
-0.0195716
4.10412e-14
-0.0065276
-0.00600326
0.0065276
-0.011996
0.0195716
-0.0179676
0.0325809
-0.0239077
0.0455331
-0.0298059
0.058406
-0.0356517
0.0711755
-0.0414349
0.0838206
-0.0471456
0.0963217
-0.0527733
0.108645
-0.0583083
0.120783
-0.0637415
0.13272
-0.0690624
0.144403
-0.0742622
0.155843
-0.079332
0.167023
-0.0842623
0.177884
-0.0890447
0.188446
-0.0936713
0.198692
-0.0981331
0.20856
-0.102423
0.218076
-0.106533
0.227227
-0.110456
0.235946
-0.114186
0.244267
-0.117715
0.252179
-0.121038
0.259611
-0.124148
0.266606
-0.12704
0.273154
-0.12971
0.279182
-0.132152
0.284741
-0.134362
0.289822
-0.136337
0.294351
-0.138072
0.298385
-0.139565
0.301918
-0.140814
0.304877
-0.141815
0.307323
-0.142567
0.309254
-0.14307
0.310595
-0.143321
0.311415
-0.143321
0.311712
-0.14307
0.311415
-0.142567
0.310596
-0.141815
0.309254
-0.140814
0.307324
-0.139565
0.304878
-0.138072
0.301919
-0.136337
0.298386
-0.134362
0.294352
-0.132152
0.289823
-0.12971
0.284742
-0.12704
0.279184
-0.124148
0.273156
-0.121038
0.266608
-0.117715
0.259613
-0.114186
0.252181
-0.110456
0.244269
-0.106533
0.235948
-0.102423
0.227229
-0.0981331
0.218078
-0.0936713
0.208561
-0.0890447
0.198694
-0.0842623
0.188447
-0.079332
0.177886
-0.0742622
0.167025
-0.0690624
0.155845
-0.0637415
0.144405
-0.0583083
0.132721
-0.0527733
0.120785
-0.0471456
0.108647
-0.0414348
0.0963249
-0.0356517
0.0838196
-0.029806
0.071175
-0.0239076
0.0584094
-0.0179676
0.0455325
-0.0119961
0.0325807
-0.00600312
0.0195727
0.00652739
0.00706967
-0.00758626
0.0141275
-0.0227477
0.02116
-0.0378659
0.0281555
-0.0529188
0.0351021
-0.0678845
0.0419866
-0.0827209
0.0487975
-0.0974167
0.0555233
-0.111951
0.0621513
-0.126271
0.0686702
-0.140378
0.0750692
-0.154251
0.081336
-0.16783
0.0874601
-0.181126
0.0934313
-0.194119
0.0992382
-0.206742
0.104871
-0.219017
0.11032
-0.230925
0.115575
-0.242394
0.120628
-0.253454
0.125469
-0.26409
0.13009
-0.274223
0.134483
-0.283894
0.13864
-0.29309
0.142553
-0.301727
0.146216
-0.309857
0.149624
-0.317467
0.152768
-0.324473
0.155644
-0.330933
0.158248
-0.336838
0.160574
-0.342101
0.162618
-0.34679
0.164376
-0.350896
0.165847
-0.354335
0.167026
-0.357177
0.167913
-0.359421
0.168504
-0.36098
0.1688
-0.361932
0.1688
-0.362277
0.168504
-0.361932
0.167913
-0.360979
0.167026
-0.35942
0.165847
-0.357177
0.164376
-0.354333
0.162618
-0.350895
0.160574
-0.346788
0.158248
-0.3421
0.155644
-0.336836
0.152768
-0.330931
0.149624
-0.324471
0.146216
-0.317465
0.142553
-0.309854
0.13864
-0.301725
0.134483
-0.293087
0.13009
-0.283892
0.125469
-0.27422
0.120628
-0.264087
0.115575
-0.253452
0.11032
-0.242391
0.104871
-0.230923
0.0992382
-0.219015
0.0934313
-0.20674
0.0874601
-0.194117
0.081336
-0.181124
0.0750692
-0.167828
0.0686702
-0.154249
0.0621513
-0.140376
0.0555233
-0.12627
0.0487977
-0.111947
0.0419866
-0.0974177
0.0351019
-0.0827214
0.0281556
-0.0678804
0.02116
-0.0529194
0.0141273
-0.037866
0.00706983
-0.0227464
5.70125e-14
-0.00758649
-0.0070698
0.00758649
-0.0141272
0.0227464
-0.0211598
0.037866
-0.0281552
0.0529194
-0.0351012
0.0678804
-0.0419856
0.0827214
-0.0487963
0.0974177
-0.0555215
0.111947
-0.062149
0.12627
-0.0686674
0.140376
-0.0750659
0.154249
-0.0813321
0.167828
-0.0874556
0.181124
-0.0934262
0.194117
-0.0992324
0.20674
-0.104864
0.219015
-0.110313
0.230923
-0.115568
0.242391
-0.120619
0.253452
-0.12546
0.264087
-0.13008
0.27422
-0.134472
0.283892
-0.138628
0.293087
-0.142541
0.301725
-0.146204
0.309854
-0.14961
0.317465
-0.152754
0.324471
-0.15563
0.330931
-0.158233
0.336836
-0.160558
0.3421
-0.162602
0.346788
-0.164361
0.350895
-0.165831
0.354333
-0.16701
0.357177
-0.167896
0.35942
-0.168488
0.360979
-0.168784
0.361932
-0.168784
0.362277
-0.168488
0.361932
-0.167896
0.36098
-0.16701
0.359421
-0.165831
0.357177
-0.164361
0.354335
-0.162602
0.350896
-0.160558
0.34679
-0.158233
0.342101
-0.15563
0.336838
-0.152754
0.330933
-0.14961
0.324473
-0.146204
0.317467
-0.142541
0.309857
-0.138628
0.301727
-0.134472
0.29309
-0.13008
0.283894
-0.12546
0.274223
-0.120619
0.26409
-0.115568
0.253454
-0.110313
0.242394
-0.104864
0.230925
-0.0992324
0.219017
-0.0934262
0.206742
-0.0874556
0.194119
-0.0813321
0.181126
-0.0750659
0.16783
-0.0686674
0.154251
-0.062149
0.140378
-0.0555215
0.126271
-0.0487961
0.111951
-0.0419856
0.0974167
-0.0351014
0.0827209
-0.028155
0.0678845
-0.0211598
0.0529188
-0.0141274
0.0378659
-0.00706964
0.0227477
0.00758626
0.00812379
-0.00863182
0.016234
-0.0258829
0.0243151
-0.0430847
0.0323536
-0.0602122
0.040336
-0.0772405
0.048247
-0.0941217
0.0560734
-0.110843
0.0638021
-0.12738
0.0714183
-0.143674
0.0789092
-0.159726
0.0862623
-0.17551
0.0934635
-0.190961
0.100501
-0.206089
0.107362
-0.220873
0.114035
-0.235236
0.120508
-0.249203
0.126769
-0.262752
0.132808
-0.275801
0.138614
-0.288386
0.144177
-0.300488
0.149487
-0.312017
0.154535
-0.323021
0.159311
-0.333484
0.163808
-0.343312
0.168018
-0.352562
0.171933
-0.361221
0.175546
-0.369192
0.178852
-0.376543
0.181843
-0.383261
0.184516
-0.38925
0.186865
-0.394585
0.188886
-0.399257
0.190575
-0.40317
0.19193
-0.406404
0.192949
-0.408957
0.193629
-0.410731
0.193969
-0.411815
0.193969
-0.412207
0.193629
-0.411814
0.192949
-0.41073
0.19193
-0.408956
0.190575
-0.406403
0.188886
-0.403168
0.186865
-0.399256
0.184516
-0.394583
0.181843
-0.389248
0.178852
-0.383259
0.175546
-0.37654
0.171933
-0.36919
0.168018
-0.361218
0.163808
-0.352559
0.159311
-0.343309
0.154535
-0.333481
0.149487
-0.323018
0.144177
-0.312014
0.138614
-0.300484
0.132808
-0.288382
0.126769
-0.275798
0.120508
-0.262749
0.114035
-0.249199
0.107362
-0.235233
0.100501
-0.22087
0.0934635
-0.206086
0.0862623
-0.190958
0.0789092
-0.175508
0.0714183
-0.159723
0.0638021
-0.143672
0.0560736
-0.127375
0.048247
-0.110844
0.0403358
-0.0941221
0.0323538
-0.0772357
0.0243151
-0.0602127
0.0162338
-0.0430847
0.00812397
-0.0258813
7.55127e-14
-0.00863206
-0.00812394
0.00863206
-0.0162336
0.0258813
-0.0243148
0.0430847
-0.0323532
0.0602127
-0.040335
0.0772357
-0.0482458
0.0941221
-0.056072
0.110844
-0.0638001
0.127375
-0.0714157
0.143672
-0.0789061
0.159723
-0.0862586
0.175508
-0.0934591
0.190958
-0.100496
0.206086
-0.107356
0.22087
-0.114028
0.235233
-0.1205
0.249199
-0.126761
0.262749
-0.132799
0.275798
-0.138604
0.288382
-0.144167
0.300484
-0.149476
0.312014
-0.154522
0.323018
-0.159299
0.333481
-0.163795
0.343309
-0.168004
0.352559
-0.171918
0.361218
-0.175531
0.36919
-0.178835
0.37654
-0.181827
0.383259
-0.184499
0.389248
-0.186847
0.394583
-0.188868
0.399256
-0.190557
0.403168
-0.191912
0.406403
-0.19293
0.408956
-0.19361
0.41073
-0.19395
0.411814
-0.19395
0.412207
-0.19361
0.411815
-0.19293
0.410731
-0.191912
0.408957
-0.190557
0.406404
-0.188868
0.40317
-0.186847
0.399257
-0.184499
0.394585
-0.181827
0.38925
-0.178835
0.383261
-0.175531
0.376543
-0.171918
0.369192
-0.168004
0.361221
-0.163795
0.352562
-0.159299
0.343312
-0.154522
0.333484
-0.149476
0.323021
-0.144167
0.312017
-0.138604
0.300488
-0.132799
0.288386
-0.126761
0.275801
-0.1205
0.262752
-0.114028
0.249203
-0.107356
0.235236
-0.100496
0.220873
-0.0934591
0.206089
-0.0862586
0.190961
-0.0789061
0.17551
-0.0714157
0.159726
-0.0638001
0.143674
-0.0560718
0.12738
-0.0482458
0.110843
-0.0403351
0.0941217
-0.0323531
0.0772405
-0.0243148
0.0602122
-0.0162338
0.0430847
-0.00812375
0.0258829
0.00863182
0.00916365
-0.00966224
0.018312
-0.0289727
0.0274275
-0.0482279
0.0364949
-0.0674
0.0454991
-0.086461
0.0544227
-0.105357
0.063251
-0.124075
0.0719689
-0.142586
0.08056
-0.160825
0.0890098
-0.178793
0.0973041
-0.196462
0.105427
-0.213757
0.113365
-0.230691
0.121105
-0.24724
0.128632
-0.263317
0.135933
-0.278951
0.142996
-0.294118
0.149808
-0.308725
0.156357
-0.322812
0.162632
-0.336358
0.168622
-0.349264
0.174315
-0.361581
0.179704
-0.373293
0.184776
-0.384294
0.189525
-0.394649
0.193941
-0.404341
0.198017
-0.413264
0.201745
-0.421492
0.20512
-0.429013
0.208134
-0.435717
0.210784
-0.441688
0.213063
-0.446918
0.214969
-0.451297
0.216498
-0.454918
0.217647
-0.457775
0.218414
-0.459761
0.218798
-0.460974
0.218798
-0.461413
0.218414
-0.460974
0.217647
-0.45976
0.216498
-0.457774
0.214969
-0.454917
0.213063
-0.451296
0.210784
-0.446916
0.208134
-0.441686
0.20512
-0.435714
0.201745
-0.42901
0.198017
-0.421489
0.193941
-0.413261
0.189525
-0.404338
0.184776
-0.394645
0.179704
-0.38429
0.174315
-0.373289
0.168622
-0.361577
0.162632
-0.349259
0.156357
-0.336354
0.149808
-0.322807
0.142996
-0.308721
0.135933
-0.294114
0.128632
-0.278947
0.121105
-0.263313
0.113365
-0.247236
0.105427
-0.230687
0.0973041
-0.213753
0.0890098
-0.196459
0.08056
-0.17879
0.0719689
-0.160823
0.0632512
-0.14258
0.0544227
-0.124076
0.0454989
-0.105358
0.0364951
-0.0864555
0.0274275
-0.0674005
0.0183118
-0.0482279
0.00916386
-0.0289708
9.6413e-14
-0.00966249
-0.00916382
0.00966249
-0.0183116
0.0289708
-0.0274272
0.0482279
-0.0364945
0.0674005
-0.045498
0.0864555
-0.0544214
0.105358
-0.0632494
0.124076
-0.0719667
0.14258
-0.0805572
0.160823
-0.0890063
0.17879
-0.0972999
0.196459
-0.105422
0.213753
-0.113359
0.230687
-0.121098
0.247236
-0.128624
0.263313
-0.135925
0.278947
-0.142987
0.294114
-0.149798
0.308721
-0.156346
0.322807
-0.162621
0.336354
-0.168609
0.349259
-0.174302
0.361577
-0.179689
0.373289
-0.184761
0.38429
-0.189509
0.394645
-0.193924
0.404338
-0.197999
0.413261
-0.201727
0.421489
-0.205101
0.42901
-0.208115
0.435714
-0.210764
0.441686
-0.213043
0.446916
-0.214949
0.451296
-0.216477
0.454917
-0.217626
0.457774
-0.218393
0.45976
-0.218777
0.460974
-0.218777
0.461413
-0.218393
0.460974
-0.217626
0.459761
-0.216477
0.457775
-0.214949
0.454918
-0.213043
0.451297
-0.210764
0.446918
-0.208115
0.441688
-0.205101
0.435717
-0.201727
0.429013
-0.197999
0.421492
-0.193924
0.413264
-0.189509
0.404341
-0.184761
0.394649
-0.179689
0.384294
-0.174302
0.373293
-0.168609
0.361581
-0.162621
0.349264
-0.156346
0.336358
-0.149798
0.322812
-0.142987
0.308725
-0.135925
0.294118
-0.128624
0.278951
-0.121098
0.263317
-0.113359
0.24724
-0.105422
0.230691
-0.0972999
0.213757
-0.0890063
0.196462
-0.0805572
0.178793
-0.0719667
0.160825
-0.0632492
0.142586
-0.0544214
0.124075
-0.0454982
0.105357
-0.0364943
0.086461
-0.0274272
0.0674
-0.0183118
0.0482279
-0.00916362
0.0289727
0.00966224
0.0101874
-0.0106757
0.0203578
-0.0320116
0.0304918
-0.0532865
0.0405723
-0.0744696
0.0505824
-0.0955299
0.060503
-0.116408
0.0703176
-0.137089
0.0800095
-0.157542
0.0895604
-0.177694
0.0989542
-0.197546
0.108175
-0.217069
0.117206
-0.236178
0.126031
-0.254888
0.134635
-0.273172
0.143003
-0.290937
0.15112
-0.30821
0.158972
-0.324968
0.166545
-0.341107
0.173826
-0.356671
0.180802
-0.371638
0.18746
-0.385898
0.19379
-0.399508
0.19978
-0.412448
0.20542
-0.424603
0.210699
-0.436043
0.215608
-0.446752
0.220139
-0.456611
0.224284
-0.465702
0.228036
-0.474011
0.231387
-0.481418
0.234333
-0.488016
0.236867
-0.493795
0.238986
-0.498634
0.240685
-0.502634
0.241963
-0.505791
0.242816
-0.507985
0.243242
-0.509325
0.243242
-0.50981
0.242816
-0.509325
0.241963
-0.507984
0.240685
-0.50579
0.238986
-0.502632
0.236867
-0.498631
0.234333
-0.493792
0.231387
-0.488013
0.228036
-0.481415
0.224284
-0.474008
0.220139
-0.465698
0.215608
-0.456607
0.210699
-0.446748
0.20542
-0.436038
0.19978
-0.424598
0.19379
-0.412443
0.18746
-0.399502
0.180802
-0.385893
0.173826
-0.371633
0.166545
-0.356666
0.158972
-0.341102
0.15112
-0.324963
0.143003
-0.308205
0.134635
-0.290932
0.126031
-0.273168
0.117206
-0.254884
0.108175
-0.236173
0.0989542
-0.217065
0.0895604
-0.197542
0.0800095
-0.177691
0.0703178
-0.157535
0.060503
-0.13709
0.0505821
-0.116408
0.0405725
-0.0955237
0.0304918
-0.0744699
0.0203576
-0.0532864
0.0101877
-0.0320095
1.19704e-13
-0.010676
-0.0101876
0.010676
-0.0203574
0.0320095
-0.0304914
0.0532864
-0.0405718
0.0744699
-0.0505811
0.0955237
-0.0605016
0.116408
-0.0703158
0.13709
-0.080007
0.157535
-0.0895573
0.177691
-0.0989504
0.197542
-0.108171
0.217065
-0.1172
0.236173
-0.126024
0.254884
-0.134628
0.273168
-0.142995
0.290932
-0.151111
0.308205
-0.158962
0.324963
-0.166534
0.341102
-0.173814
0.356666
-0.180789
0.371633
-0.187447
0.385893
-0.193776
0.399502
-0.199765
0.412443
-0.205403
0.424598
-0.210681
0.436038
-0.21559
0.446748
-0.220121
0.456607
-0.224265
0.465698
-0.228016
0.474008
-0.231366
0.481415
-0.234311
0.488013
-0.236845
0.493792
-0.238964
0.498631
-0.240663
0.502632
-0.24194
0.50579
-0.242793
0.507984
-0.243219
0.509325
-0.243219
0.50981
-0.242793
0.509325
-0.24194
0.507985
-0.240663
0.505791
-0.238964
0.502634
-0.236845
0.498634
-0.234311
0.493795
-0.231366
0.488016
-0.228016
0.481418
-0.224265
0.474011
-0.220121
0.465702
-0.21559
0.456611
-0.210681
0.446752
-0.205403
0.436043
-0.199765
0.424603
-0.193776
0.412448
-0.187447
0.399508
-0.180789
0.385898
-0.173814
0.371638
-0.166534
0.356671
-0.158962
0.341107
-0.151111
0.324968
-0.142995
0.30821
-0.134628
0.290937
-0.126024
0.273172
-0.1172
0.254888
-0.108171
0.236178
-0.0989504
0.217069
-0.0895573
0.197546
-0.080007
0.177694
-0.0703156
0.157542
-0.0605016
0.137089
-0.0505814
0.116408
-0.0405716
0.0955299
-0.0304914
0.0744696
-0.0203577
0.0532865
-0.0101874
0.0320116
0.0106757
0.0111934
-0.0116704
0.022368
-0.0349944
0.0335025
-0.0582517
0.0445784
-0.0814085
0.0555769
-0.104431
0.0664771
-0.127255
0.0772608
-0.149863
0.0879097
-0.172221
0.0984037
-0.194252
0.108725
-0.215953
0.118856
-0.237295
0.128779
-0.258184
0.138475
-0.278638
0.147929
-0.298626
0.157123
-0.318045
0.166041
-0.336929
0.174669
-0.355248
0.18299
-0.372891
0.190989
-0.389905
0.198654
-0.406267
0.20597
-0.421855
0.212925
-0.436733
0.219507
-0.450879
0.225703
-0.464166
0.231503
-0.476673
0.236898
-0.48838
0.241876
-0.499157
0.24643
-0.509095
0.250552
-0.518179
0.254235
-0.526276
0.257471
-0.533488
0.260256
-0.539806
0.262583
-0.545095
0.264451
-0.549468
0.265854
-0.552919
0.266791
-0.555317
0.26726
-0.556783
0.26726
-0.557313
0.266791
-0.556782
0.265854
-0.555316
0.264451
-0.552918
0.262583
-0.549466
0.260256
-0.545092
0.257471
-0.539802
0.254235
-0.533485
0.250552
-0.526272
0.24643
-0.518174
0.241876
-0.50909
0.236898
-0.499152
0.231503
-0.488374
0.225703
-0.476667
0.219507
-0.46416
0.212925
-0.450873
0.20597
-0.436727
0.198654
-0.421849
0.190989
-0.40626
0.18299
-0.389899
0.174669
-0.372884
0.166041
-0.355242
0.157123
-0.336922
0.147929
-0.318039
0.138475
-0.29862
0.128779
-0.278633
0.118856
-0.258179
0.108725
-0.23729
0.0984037
-0.215949
0.0879097
-0.194247
0.077261
-0.172214
0.0664771
-0.149863
0.0555767
-0.127255
0.0445786
-0.104424
0.0335025
-0.0814087
0.0223677
-0.0582514
0.0111936
-0.034992
1.45264e-13
-0.0116707
-0.0111936
0.0116707
-0.0223675
0.034992
-0.0335022
0.0582514
-0.0445779
0.0814087
-0.0555756
0.104424
-0.0664756
0.127255
-0.0772589
0.149863
-0.087907
0.172214
-0.0984003
0.194247
-0.108721
0.215949
-0.118852
0.23729
-0.128773
0.258179
-0.138468
0.278633
-0.147921
0.29862
-0.157114
0.318039
-0.166032
0.336922
-0.174658
0.355242
-0.182978
0.372884
-0.190976
0.389899
-0.198641
0.40626
-0.205956
0.421849
-0.212909
0.436727
-0.21949
0.450873
-0.225685
0.46416
-0.231485
0.476667
-0.236878
0.488374
-0.241856
0.499152
-0.246409
0.50909
-0.25053
0.518174
-0.254212
0.526272
-0.257448
0.533485
-0.260232
0.539802
-0.262559
0.545092
-0.264426
0.549466
-0.26583
0.552918
-0.266766
0.555316
-0.267235
0.556782
-0.267235
0.557313
-0.266766
0.556783
-0.26583
0.555317
-0.264426
0.552919
-0.262559
0.549468
-0.260232
0.545095
-0.257448
0.539806
-0.254212
0.533488
-0.25053
0.526276
-0.246409
0.518179
-0.241856
0.509095
-0.236878
0.499157
-0.231485
0.48838
-0.225685
0.476673
-0.21949
0.464166
-0.212909
0.450879
-0.205956
0.436733
-0.198641
0.421855
-0.190976
0.406267
-0.182978
0.389905
-0.174658
0.372891
-0.166032
0.355248
-0.157114
0.336929
-0.147921
0.318045
-0.138468
0.298626
-0.128773
0.278638
-0.118852
0.258184
-0.108721
0.237295
-0.0984003
0.215953
-0.087907
0.194252
-0.0772587
0.172221
-0.0664756
0.149863
-0.0555758
0.127255
-0.0445777
0.104431
-0.0335022
0.0814085
-0.0223678
0.0582517
-0.0111933
0.0349944
0.0116704
0.0121796
-0.0126447
0.0243389
-0.0379158
0.0364546
-0.0631146
0.0485063
-0.0882046
0.0604739
-0.113149
0.0723346
-0.137879
0.0840684
-0.162373
0.0956557
-0.186598
0.107074
-0.210468
0.118305
-0.233981
0.129329
-0.257105
0.140126
-0.279738
0.150676
-0.301899
0.160963
-0.323556
0.170967
-0.344596
0.180672
-0.365056
0.190059
-0.384904
0.199113
-0.40402
0.207818
-0.422455
0.216158
-0.440183
0.224119
-0.457072
0.231686
-0.473192
0.238848
-0.488519
0.24559
-0.502915
0.251901
-0.516466
0.257771
-0.52915
0.263188
-0.540827
0.268144
-0.551595
0.272629
-0.561437
0.276636
-0.57021
0.280157
-0.578024
0.283187
-0.584869
0.28572
-0.5906
0.287752
-0.595338
0.289279
-0.599077
0.290299
-0.601676
0.290809
-0.603263
0.290809
-0.603838
0.290299
-0.603263
0.289279
-0.601674
0.287752
-0.599076
0.28572
-0.595336
0.283187
-0.590597
0.280157
-0.584865
0.276636
-0.57802
0.272629
-0.570205
0.268144
-0.561432
0.263188
-0.551589
0.257771
-0.540821
0.251901
-0.529144
0.24559
-0.516459
0.238848
-0.502908
0.231686
-0.488512
0.224119
-0.473184
0.216158
-0.457065
0.207818
-0.440175
0.199113
-0.422448
0.190059
-0.404013
0.180672
-0.384897
0.170967
-0.365049
0.160963
-0.344589
0.150676
-0.323549
0.140126
-0.301893
0.129329
-0.279732
0.118305
-0.257099
0.107074
-0.233976
0.0956557
-0.210463
0.0840687
-0.18659
0.0723346
-0.162373
0.0604737
-0.137878
0.0485066
-0.113141
0.0364546
-0.0882047
0.0243386
-0.0631142
0.0121799
-0.0379131
1.72985e-13
-0.012645
-0.0121799
0.012645
-0.0243384
0.0379131
-0.0364541
0.0631142
-0.0485059
0.0882047
-0.0604725
0.113141
-0.072333
0.137878
-0.0840665
0.162373
-0.0956528
0.18659
-0.107071
0.210463
-0.118301
0.233976
-0.129324
0.257099
-0.14012
0.279732
-0.150669
0.301893
-0.160955
0.323549
-0.170958
0.344589
-0.180661
0.365049
-0.190048
0.384897
-0.199101
0.404013
-0.207804
0.422448
-0.216144
0.440175
-0.224103
0.457065
-0.23167
0.473184
-0.23883
0.488512
-0.245571
0.502908
-0.251882
0.516459
-0.25775
0.529144
-0.263167
0.540821
-0.268121
0.551589
-0.272606
0.561432
-0.276612
0.570205
-0.280133
0.57802
-0.283162
0.584865
-0.285695
0.590597
-0.287726
0.595336
-0.289253
0.599076
-0.290272
0.601674
-0.290782
0.603263
-0.290782
0.603838
-0.290272
0.603263
-0.289253
0.601676
-0.287726
0.599077
-0.285695
0.595338
-0.283162
0.5906
-0.280133
0.584869
-0.276612
0.578024
-0.272606
0.57021
-0.268121
0.561437
-0.263167
0.551595
-0.25775
0.540827
-0.251882
0.52915
-0.245571
0.516466
-0.23883
0.502915
-0.23167
0.488519
-0.224103
0.473192
-0.216144
0.457072
-0.207804
0.440183
-0.199101
0.422455
-0.190048
0.40402
-0.180661
0.384904
-0.170958
0.365056
-0.160955
0.344596
-0.150669
0.323556
-0.14012
0.301899
-0.129324
0.279738
-0.118301
0.257105
-0.107071
0.233981
-0.0956528
0.210468
-0.0840662
0.186598
-0.072333
0.162373
-0.0604728
0.137879
-0.0485056
0.113149
-0.0364541
0.0882046
-0.0243387
0.0631146
-0.0121796
0.0379158
0.0126447
0.0131446
-0.0135968
0.0262671
-0.0407706
0.0393426
-0.0678668
0.0523492
-0.094846
0.0652649
-0.121669
0.0780652
-0.14826
0.0907286
-0.174599
0.103234
-0.200648
0.115557
-0.226315
0.127678
-0.251599
0.139575
-0.276463
0.151227
-0.300801
0.162613
-0.324631
0.173715
-0.347918
0.184512
-0.370543
0.194985
-0.392543
0.205116
-0.413886
0.214887
-0.434441
0.224282
-0.454264
0.233283
-0.473326
0.241874
-0.491487
0.250041
-0.508821
0.25777
-0.525302
0.265046
-0.540782
0.271858
-0.555353
0.278192
-0.568993
0.284039
-0.581549
0.289387
-0.593127
0.294227
-0.60371
0.298551
-0.613144
0.302352
-0.621547
0.305622
-0.628907
0.308356
-0.635069
0.310549
-0.640164
0.312197
-0.644185
0.313297
-0.646979
0.313847
-0.648686
0.313847
-0.649303
0.313297
-0.648685
0.312197
-0.646977
0.310549
-0.644182
0.308356
-0.640161
0.305622
-0.635065
0.302352
-0.628902
0.298551
-0.621542
0.294227
-0.613138
0.289387
-0.603704
0.284039
-0.59312
0.278192
-0.581542
0.271858
-0.568985
0.265046
-0.555345
0.25777
-0.540774
0.250041
-0.525293
0.241874
-0.508812
0.233283
-0.491479
0.224282
-0.473318
0.214887
-0.454255
0.205116
-0.434432
0.194985
-0.413877
0.184512
-0.392534
0.173715
-0.370535
0.162613
-0.34791
0.151227
-0.324623
0.139575
-0.300794
0.127678
-0.276457
0.115557
-0.251593
0.103234
-0.22631
0.0907289
-0.200639
0.0780652
-0.174599
0.0652646
-0.148259
0.0523495
-0.12166
0.0393426
-0.094846
0.0262668
-0.0678663
0.0131449
-0.0407677
2.02932e-13
-0.0135971
-0.0131448
0.0135971
-0.0262666
0.0407677
-0.0393422
0.0678663
-0.0523487
0.094846
-0.0652634
0.12166
-0.0780635
0.148259
-0.0907266
0.174599
-0.103231
0.200639
-0.115553
0.22631
-0.127673
0.251593
-0.13957
0.276457
-0.15122
0.300794
-0.162606
0.324623
-0.173707
0.34791
-0.184502
0.370535
-0.194974
0.392534
-0.205105
0.413877
-0.214874
0.434432
-0.224267
0.454255
-0.233267
0.473318
-0.241858
0.491479
-0.250024
0.508812
-0.257751
0.525293
-0.265027
0.540774
-0.271837
0.555345
-0.278171
0.568985
-0.284016
0.581542
-0.289363
0.59312
-0.294203
0.603704
-0.298526
0.613138
-0.302326
0.621542
-0.305596
0.628902
-0.308329
0.635065
-0.310521
0.640161
-0.312169
0.644182
-0.313269
0.646977
-0.313819
0.648685
-0.313819
0.649303
-0.313269
0.648686
-0.312169
0.646979
-0.310521
0.644185
-0.308329
0.640164
-0.305596
0.635069
-0.302326
0.628907
-0.298526
0.621547
-0.294203
0.613144
-0.289363
0.60371
-0.284016
0.593127
-0.278171
0.581549
-0.271837
0.568993
-0.265027
0.555353
-0.257751
0.540782
-0.250024
0.525302
-0.241858
0.508821
-0.233267
0.491487
-0.224267
0.473326
-0.214874
0.454264
-0.205105
0.434441
-0.194974
0.413886
-0.184502
0.392543
-0.173707
0.370543
-0.162606
0.347918
-0.15122
0.324631
-0.13957
0.300801
-0.127673
0.276463
-0.115553
0.251599
-0.103231
0.226315
-0.0907263
0.200648
-0.0780635
0.174599
-0.0652637
0.14826
-0.0523484
0.121669
-0.0393422
0.094846
-0.0262669
0.0678668
-0.0131445
0.0407706
0.0135968
0.0140864
-0.014525
0.0281492
-0.043554
0.0421616
-0.0725
0.0561002
-0.101321
0.0699413
-0.129975
0.0836588
-0.158382
0.0972296
-0.186519
0.110631
-0.214346
0.123837
-0.241765
0.136826
-0.268775
0.149576
-0.295337
0.162063
-0.321336
0.174265
-0.346793
0.186163
-0.37167
0.197733
-0.395839
0.208956
-0.419341
0.219814
-0.442141
0.230285
-0.464099
0.240352
-0.485276
0.249998
-0.505639
0.259205
-0.52504
0.267957
-0.543557
0.27624
-0.561163
0.284038
-0.577701
0.291337
-0.593266
0.298126
-0.607837
0.304391
-0.62125
0.310122
-0.633619
0.31531
-0.644924
0.319943
-0.655002
0.324016
-0.663978
0.327521
-0.671841
0.33045
-0.678424
0.3328
-0.683867
0.334566
-0.688162
0.335745
-0.691146
0.336335
-0.69297
0.336335
-0.69363
0.335745
-0.692969
0.334566
-0.691145
0.3328
-0.688159
0.33045
-0.683863
0.327521
-0.67842
0.324016
-0.671836
0.319943
-0.663973
0.31531
-0.654996
0.310122
-0.644917
0.304391
-0.633611
0.298126
-0.621242
0.291337
-0.607828
0.284038
-0.593257
0.27624
-0.577691
0.267957
-0.561154
0.259205
-0.543547
0.249998
-0.52503
0.240352
-0.50563
0.230285
-0.485266
0.219814
-0.46409
0.208956
-0.442132
0.197733
-0.419332
0.186163
-0.39583
0.174265
-0.371661
0.162063
-0.346784
0.149576
-0.321328
0.136826
-0.295329
0.123837
-0.268768
0.110631
-0.241759
0.0972299
-0.214336
0.0836588
-0.186518
0.069941
-0.158381
0.0561005
-0.129966
0.0421616
-0.101321
0.0281489
-0.0724993
0.0140867
-0.0435508
2.34851e-13
-0.0145253
-0.0140867
0.0145253
-0.0281487
0.0435508
-0.0421612
0.0724993
-0.0560997
0.101321
-0.0699398
0.129966
-0.083657
0.158381
-0.0972275
0.186518
-0.110628
0.214336
-0.123833
0.241759
-0.136821
0.268768
-0.14957
0.295329
-0.162056
0.321328
-0.174257
0.346784
-0.186154
0.371661
-0.197723
0.39583
-0.208945
0.419332
-0.219801
0.442132
-0.230271
0.46409
-0.240337
0.485266
-0.249982
0.50563
-0.259188
0.52503
-0.267939
0.543547
-0.27622
0.561154
-0.284017
0.577691
-0.291315
0.593257
-0.298103
0.607828
-0.304367
0.621242
-0.310097
0.633611
-0.315284
0.644917
-0.319917
0.654996
-0.323989
0.663973
-0.327493
0.671836
-0.330422
0.67842
-0.332771
0.683863
-0.334537
0.688159
-0.335716
0.691145
-0.336306
0.692969
-0.336306
0.69363
-0.335716
0.69297
-0.334537
0.691146
-0.332771
0.688162
-0.330422
0.683867
-0.327493
0.678424
-0.323989
0.671841
-0.319917
0.663978
-0.315284
0.655002
-0.310097
0.644924
-0.304367
0.633619
-0.298103
0.62125
-0.291315
0.607837
-0.284017
0.593266
-0.27622
0.577701
-0.267939
0.561163
-0.259188
0.543557
-0.249982
0.52504
-0.240337
0.505639
-0.230271
0.485276
-0.219801
0.464099
-0.208945
0.442141
-0.197723
0.419341
-0.186154
0.395839
-0.174257
0.37167
-0.162056
0.346793
-0.14957
0.321336
-0.136821
0.295337
-0.123833
0.268775
-0.110628
0.241765
-0.0972272
0.214346
-0.083657
0.186519
-0.0699401
0.158382
-0.0560993
0.129975
-0.0421612
0.101321
-0.028149
0.0725
-0.0140864
0.043554
0.014525
0.0150036
-0.0154278
0.029982
-0.046261
0.0449067
-0.077006
0.0597527
-0.107618
0.0744951
-0.138053
0.0891057
-0.168225
0.10356
-0.198112
0.117834
-0.227668
0.1319
-0.256792
0.145735
-0.28548
0.159315
-0.313693
0.172614
-0.341308
0.185611
-0.368347
0.198283
-0.39477
0.210607
-0.420441
0.222561
-0.445404
0.234125
-0.469621
0.245278
-0.492944
0.256001
-0.515436
0.266275
-0.537066
0.276081
-0.557672
0.285403
-0.57734
0.294225
-0.59604
0.302531
-0.613605
0.310305
-0.630138
0.317536
-0.645615
0.324209
-0.659861
0.330313
-0.672999
0.335838
-0.685007
0.340774
-0.695711
0.345112
-0.705245
0.348844
-0.713596
0.351965
-0.720588
0.354468
-0.72637
0.356349
-0.730932
0.357605
-0.734102
0.358233
-0.736039
0.358233
-0.73674
0.357605
-0.736038
0.356349
-0.7341
0.354468
-0.730929
0.351965
-0.726366
0.348844
-0.720584
0.345112
-0.713591
0.340774
-0.705239
0.335838
-0.695704
0.330313
-0.684999
0.324209
-0.67299
0.317536
-0.659853
0.310305
-0.645605
0.302531
-0.630128
0.294225
-0.613595
0.285403
-0.59603
0.276081
-0.577329
0.266275
-0.557661
0.256001
-0.537054
0.245278
-0.515425
0.234125
-0.492933
0.222561
-0.46961
0.210607
-0.445393
0.198283
-0.420431
0.185611
-0.39476
0.172614
-0.368337
0.159315
-0.341299
0.145735
-0.313684
0.1319
-0.285472
0.117834
-0.256784
0.10356
-0.227657
0.0891057
-0.198111
0.0744947
-0.168224
0.0597531
-0.138043
0.0449067
-0.107618
0.0299816
-0.0770051
0.0150039
-0.0462575
2.68614e-13
-0.015428
-0.0150038
0.015428
-0.0299814
0.0462575
-0.0449062
0.0770051
-0.0597522
0.107618
-0.0744934
0.138043
-0.0891038
0.168224
-0.103558
0.198111
-0.117831
0.227657
-0.131896
0.256784
-0.14573
0.285472
-0.159309
0.313684
-0.172607
0.341299
-0.185603
0.368337
-0.198274
0.39476
-0.210596
0.420431
-0.222549
0.445393
-0.234112
0.46961
-0.245264
0.492933
-0.255985
0.515425
-0.266258
0.537054
-0.276063
0.557661
-0.285384
0.577329
-0.294205
0.59603
-0.302509
0.613595
-0.310282
0.630128
-0.317512
0.645605
-0.324184
0.659853
-0.330287
0.67299
-0.335812
0.684999
-0.340747
0.695704
-0.345084
0.705239
-0.348816
0.713591
-0.351936
0.720584
-0.354438
0.726366
-0.356319
0.730929
-0.357575
0.7341
-0.358203
0.736038
-0.358203
0.73674
-0.357575
0.736039
-0.356319
0.734102
-0.354438
0.730932
-0.351936
0.72637
-0.348816
0.720588
-0.345084
0.713596
-0.340747
0.705245
-0.335812
0.695711
-0.330287
0.685007
-0.324184
0.672999
-0.317512
0.659861
-0.310282
0.645615
-0.302509
0.630138
-0.294205
0.613605
-0.285384
0.59604
-0.276063
0.57734
-0.266258
0.557672
-0.255985
0.537066
-0.245264
0.515436
-0.234112
0.492944
-0.222549
0.469621
-0.210596
0.445404
-0.198274
0.420441
-0.185603
0.39477
-0.172607
0.368347
-0.159309
0.341308
-0.14573
0.313693
-0.131896
0.28548
-0.117831
0.256792
-0.103557
0.227668
-0.0891038
0.198112
-0.0744938
0.168225
-0.0597519
0.138053
-0.0449062
0.107618
-0.0299818
0.077006
-0.0150035
0.046261
0.0154278
0.0158944
-0.0163035
0.0317621
-0.0488868
0.047573
-0.0813769
0.0633005
-0.113727
0.0789181
-0.145889
0.0943962
-0.177774
0.109709
-0.209356
0.12483
-0.240591
0.139731
-0.271367
0.154387
-0.301684
0.168774
-0.331498
0.182863
-0.360681
0.196631
-0.389254
0.210056
-0.417177
0.223111
-0.444306
0.235775
-0.470685
0.248026
-0.496277
0.259841
-0.520924
0.2712
-0.544693
0.282084
-0.56755
0.292473
-0.589326
0.302349
-0.61011
0.311694
-0.629872
0.320493
-0.648434
0.328729
-0.665905
0.336389
-0.68226
0.343458
-0.697315
0.349925
-0.711198
0.355778
-0.723888
0.361007
-0.735199
0.365602
-0.745275
0.369556
-0.7541
0.372862
-0.761489
0.375513
-0.767598
0.377506
-0.772419
0.378837
-0.775769
0.379502
-0.777816
0.379502
-0.778557
0.378837
-0.777815
0.377506
-0.775767
0.375513
-0.772416
0.372862
-0.767594
0.369556
-0.761484
0.365602
-0.754094
0.361007
-0.745268
0.355778
-0.735192
0.349925
-0.723879
0.343458
-0.711189
0.336389
-0.697305
0.328729
-0.682249
0.320493
-0.665894
0.311694
-0.648422
0.302349
-0.62986
0.292473
-0.610098
0.282084
-0.589314
0.2712
-0.567537
0.259841
-0.54468
0.248026
-0.520911
0.235775
-0.496265
0.223111
-0.470673
0.210056
-0.444294
0.196631
-0.417166
0.182863
-0.389243
0.168774
-0.36067
0.154387
-0.331489
0.139731
-0.301675
0.12483
-0.271359
0.109709
-0.240579
0.0943962
-0.209355
0.0789178
-0.177772
0.0633008
-0.145878
0.047573
-0.113726
0.0317618
-0.0813758
0.0158947
-0.048883
3.04142e-13
-0.0163037
-0.0158947
0.0163037
-0.0317615
0.048883
-0.0475725
0.0813758
-0.0633
0.113726
-0.0789164
0.145878
-0.0943943
0.177772
-0.109706
0.209355
-0.124827
0.240579
-0.139727
0.271359
-0.154382
0.301675
-0.168768
0.331489
-0.182856
0.36067
-0.196623
0.389243
-0.210046
0.417166
-0.2231
0.444294
-0.235763
0.470673
-0.248013
0.496265
-0.259826
0.520911
-0.271184
0.54468
-0.282067
0.567537
-0.292455
0.589314
-0.302329
0.610098
-0.311673
0.62986
-0.320471
0.648422
-0.328706
0.665894
-0.336364
0.682249
-0.343433
0.697305
-0.349898
0.711189
-0.355751
0.723879
-0.360979
0.735192
-0.365573
0.745268
-0.369527
0.754094
-0.372832
0.761484
-0.375483
0.767594
-0.377475
0.772416
-0.378806
0.775767
-0.379471
0.777815
-0.379471
0.778557
-0.378806
0.777816
-0.377475
0.775769
-0.375483
0.772419
-0.372832
0.767598
-0.369527
0.761489
-0.365573
0.7541
-0.360979
0.745275
-0.355751
0.735199
-0.349898
0.723888
-0.343433
0.711198
-0.336364
0.697315
-0.328706
0.68226
-0.320471
0.665905
-0.311673
0.648434
-0.302329
0.629872
-0.292455
0.61011
-0.282067
0.589326
-0.271184
0.56755
-0.259826
0.544693
-0.248013
0.520924
-0.235763
0.496277
-0.2231
0.470685
-0.210046
0.444306
-0.196623
0.417177
-0.182856
0.389254
-0.168768
0.360681
-0.154382
0.331498
-0.139727
0.301684
-0.124827
0.271367
-0.109706
0.240591
-0.0943943
0.209356
-0.0789168
0.177774
-0.0632996
0.145889
-0.0475725
0.113727
-0.0317619
0.0813769
-0.0158943
0.0488868
0.0163035
0.0167573
-0.0171506
0.0334865
-0.0514268
0.0501558
-0.0856051
0.0667372
-0.119636
0.0832027
-0.153469
0.0995211
-0.187011
0.115665
-0.220234
0.131607
-0.253091
0.147317
-0.285467
0.162769
-0.317359
0.177937
-0.348722
0.192791
-0.379421
0.207307
-0.409479
0.22146
-0.438853
0.235224
-0.467391
0.248575
-0.495141
0.261491
-0.522062
0.273948
-0.547989
0.285924
-0.572994
0.297399
-0.597038
0.308352
-0.619946
0.318763
-0.64181
0.328617
-0.662598
0.337893
-0.682125
0.346576
-0.700504
0.354652
-0.717708
0.362105
-0.733546
0.368922
-0.74815
0.375093
-0.761499
0.380606
-0.773398
0.385451
-0.783997
0.38962
-0.793281
0.393105
-0.801054
0.3959
-0.80748
0.398001
-0.812552
0.399404
-0.816076
0.400106
-0.818229
0.400106
-0.819008
0.399404
-0.818228
0.398001
-0.816073
0.3959
-0.812548
0.393105
-0.807476
0.38962
-0.801048
0.385451
-0.793274
0.380606
-0.78399
0.375093
-0.77339
0.368922
-0.76149
0.362105
-0.74814
0.354652
-0.733535
0.346576
-0.717696
0.337893
-0.700491
0.328617
-0.682112
0.318763
-0.662585
0.308352
-0.641796
0.297399
-0.619932
0.285924
-0.597024
0.273948
-0.57298
0.261491
-0.547976
0.248575
-0.522049
0.235224
-0.495127
0.22146
-0.467378
0.207307
-0.43884
0.192791
-0.409467
0.177937
-0.379409
0.162769
-0.348711
0.147317
-0.317349
0.131607
-0.285458
0.115665
-0.253078
0.0995211
-0.220232
0.0832024
-0.187008
0.0667375
-0.153457
0.0501558
-0.119635
0.0334862
-0.0856038
0.0167577
-0.0514228
3.41262e-13
-0.0171508
-0.0167576
0.0171508
-0.0334859
0.0514228
-0.0501553
0.0856038
-0.0667367
0.119635
-0.083201
0.153457
-0.0995192
0.187008
-0.115663
0.220232
-0.131604
0.253078
-0.147313
0.285458
-0.162764
0.317349
-0.17793
0.348711
-0.192783
0.379409
-0.207298
0.409467
-0.22145
0.43884
-0.235213
0.467378
-0.248563
0.495127
-0.261478
0.522049
-0.273933
0.547976
-0.285908
0.57298
-0.297382
0.597024
-0.308333
0.619932
-0.318743
0.641796
-0.328595
0.662585
-0.33787
0.682112
-0.346552
0.700491
-0.354627
0.717696
-0.362079
0.733535
-0.368895
0.74814
-0.375066
0.76149
-0.380577
0.77339
-0.385421
0.78399
-0.38959
0.793274
-0.393074
0.801048
-0.395869
0.807476
-0.39797
0.812548
-0.399372
0.816073
-0.400074
0.818228
-0.400074
0.819008
-0.399372
0.818229
-0.39797
0.816076
-0.395869
0.812552
-0.393074
0.80748
-0.38959
0.801054
-0.385421
0.793281
-0.380577
0.783997
-0.375066
0.773398
-0.368895
0.761499
-0.362079
0.74815
-0.354627
0.733546
-0.346552
0.717708
-0.33787
0.700504
-0.328595
0.682125
-0.318743
0.662598
-0.308333
0.64181
-0.297382
0.619946
-0.285908
0.597038
-0.273933
0.572994
-0.261478
0.547989
-0.248563
0.522062
-0.235213
0.495141
-0.22145
0.467391
-0.207298
0.438853
-0.192783
0.409479
-0.17793
0.379421
-0.162764
0.348722
-0.147313
0.317359
-0.131604
0.285467
-0.115662
0.253091
-0.0995192
0.220234
-0.0832014
0.187011
-0.0667363
0.153469
-0.0501553
0.119636
-0.0334863
0.0856051
-0.0167573
0.0514268
0.0171506
0.0175909
-0.0179676
0.0351522
-0.0538766
0.0526507
-0.0896831
0.0700568
-0.125335
0.0873414
-0.16078
0.104471
-0.195919
0.121418
-0.230725
0.138154
-0.265148
0.154645
-0.299066
0.170866
-0.332477
0.186787
-0.365334
0.20238
-0.397495
0.217618
-0.428985
0.232476
-0.459758
0.246924
-0.489656
0.26094
-0.518728
0.274498
-0.546932
0.287574
-0.574094
0.300146
-0.600289
0.312192
-0.625479
0.323689
-0.649478
0.334619
-0.672383
0.344962
-0.694162
0.3547
-0.714619
0.363815
-0.733873
0.372292
-0.751897
0.380116
-0.768489
0.387273
-0.783789
0.393751
-0.797774
0.399537
-0.81024
0.404623
-0.821344
0.409
-0.83107
0.412658
-0.839213
0.415592
-0.845946
0.417798
-0.851259
0.41927
-0.85495
0.420007
-0.857206
0.420007
-0.858022
0.41927
-0.857205
0.417798
-0.854948
0.415592
-0.851255
0.412658
-0.845941
0.409
-0.839207
0.404623
-0.831063
0.399537
-0.821336
0.393751
-0.810231
0.387273
-0.797764
0.380116
-0.783778
0.372292
-0.768477
0.363815
-0.751884
0.3547
-0.73386
0.344962
-0.714605
0.334619
-0.694148
0.323689
-0.672369
0.312192
-0.649463
0.300146
-0.625464
0.287574
-0.600274
0.274498
-0.574079
0.26094
-0.546917
0.246924
-0.518713
0.232476
-0.489642
0.217618
-0.459745
0.20238
-0.428972
0.186787
-0.397483
0.170866
-0.365322
0.154645
-0.332466
0.138154
-0.299056
0.121419
-0.265134
0.104471
-0.230723
0.087341
-0.195917
0.0700572
-0.160767
0.0526507
-0.125334
0.0351518
-0.0896815
0.0175912
-0.0538723
3.79883e-13
-0.0179678
-0.0175912
0.0179678
-0.0351516
0.0538723
-0.0526501
0.0896815
-0.0700563
0.125334
-0.0873396
0.160767
-0.104469
0.195917
-0.121416
0.230723
-0.13815
0.265134
-0.154641
0.299056
-0.17086
0.332466
-0.186781
0.365322
-0.202373
0.397483
-0.21761
0.428972
-0.232466
0.459745
-0.246913
0.489642
-0.260927
0.518713
-0.274485
0.546917
-0.287559
0.574079
-0.30013
0.600274
-0.312174
0.625464
-0.32367
0.649463
-0.334598
0.672369
-0.34494
0.694148
-0.354677
0.714605
-0.363791
0.73386
-0.372267
0.751884
-0.38009
0.768477
-0.387246
0.783778
-0.393723
0.797764
-0.399508
0.810231
-0.404593
0.821336
-0.408969
0.831063
-0.412627
0.839207
-0.415561
0.845941
-0.417766
0.851255
-0.419238
0.854948
-0.419975
0.857205
-0.419975
0.858022
-0.419238
0.857206
-0.417766
0.85495
-0.415561
0.851259
-0.412627
0.845946
-0.408969
0.839213
-0.404593
0.83107
-0.399508
0.821344
-0.393723
0.81024
-0.387246
0.797774
-0.38009
0.783789
-0.372267
0.768489
-0.363791
0.751897
-0.354677
0.733873
-0.34494
0.714619
-0.334598
0.694162
-0.32367
0.672383
-0.312174
0.649478
-0.30013
0.625479
-0.287559
0.600289
-0.274485
0.574094
-0.260927
0.546932
-0.246913
0.518728
-0.232466
0.489656
-0.21761
0.459758
-0.202373
0.428985
-0.186781
0.397495
-0.17086
0.365334
-0.154641
0.332477
-0.13815
0.299066
-0.121416
0.265148
-0.104469
0.230725
-0.08734
0.195919
-0.0700559
0.16078
-0.0526501
0.125335
-0.035152
0.0896831
-0.0175908
0.0538766
0.0179676
0.0183935
-0.0187531
0.0367562
-0.0562319
0.0550531
-0.0936037
0.0732535
-0.130814
0.0913268
-0.167809
0.109239
-0.204484
0.126959
-0.240812
0.144457
-0.276739
0.161702
-0.31214
0.178662
-0.347012
0.19531
-0.381305
0.211615
-0.414872
0.227548
-0.447739
0.243084
-0.479857
0.258191
-0.511062
0.272846
-0.541405
0.287023
-0.570841
0.300696
-0.599191
0.313841
-0.626532
0.326437
-0.652823
0.338459
-0.677871
0.349887
-0.701777
0.360702
-0.724508
0.370884
-0.745859
0.380415
-0.765955
0.389279
-0.784767
0.39746
-0.802085
0.404944
-0.818054
0.411717
-0.83265
0.417768
-0.845661
0.423086
-0.85725
0.427662
-0.867401
0.431487
-0.8759
0.434555
-0.882927
0.436862
-0.888472
0.438401
-0.892325
0.439172
-0.89468
0.439172
-0.895532
0.438401
-0.894678
0.436862
-0.892323
0.434555
-0.888468
0.431487
-0.882922
0.427662
-0.875893
0.423086
-0.867393
0.417768
-0.857241
0.411717
-0.845651
0.404944
-0.832639
0.39746
-0.818041
0.389279
-0.802072
0.380415
-0.784753
0.370884
-0.765941
0.360702
-0.745844
0.349887
-0.724493
0.338459
-0.701761
0.326437
-0.677854
0.313841
-0.652806
0.300696
-0.626515
0.287023
-0.599175
0.272846
-0.570825
0.258191
-0.541389
0.243084
-0.511046
0.227548
-0.479842
0.211615
-0.447725
0.19531
-0.414859
0.178662
-0.381293
0.161702
-0.347
0.144457
-0.312129
0.126959
-0.276724
0.109239
-0.240809
0.0913263
-0.204481
0.0732539
-0.167795
0.0550531
-0.130813
0.0367558
-0.093602
0.0183939
-0.0562273
4.19935e-13
-0.0187532
-0.0183939
0.0187532
-0.0367556
0.0562273
-0.0550526
0.093602
-0.073253
0.130813
-0.091325
0.167795
-0.109237
0.204481
-0.126956
0.240809
-0.144454
0.276724
-0.161697
0.312129
-0.178657
0.347
-0.195304
0.381293
-0.211607
0.414859
-0.22754
0.447725
-0.243074
0.479842
-0.25818
0.511046
-0.272834
0.541389
-0.28701
0.570825
-0.300681
0.599175
-0.313825
0.626515
-0.326419
0.652806
-0.33844
0.677854
-0.349867
0.701761
-0.360681
0.724493
-0.370861
0.745844
-0.380391
0.765941
-0.389254
0.784753
-0.397434
0.802072
-0.404916
0.818041
-0.411689
0.832639
-0.417739
0.845651
-0.423056
0.857241
-0.427631
0.867393
-0.431456
0.875893
-0.434524
0.882922
-0.43683
0.888468
-0.438369
0.892323
-0.439139
0.894678
-0.439139
0.895532
-0.438369
0.89468
-0.43683
0.892325
-0.434524
0.888472
-0.431456
0.882927
-0.427631
0.8759
-0.423056
0.867401
-0.417739
0.85725
-0.411689
0.845661
-0.404916
0.83265
-0.397434
0.818054
-0.389254
0.802085
-0.380391
0.784767
-0.370861
0.765955
-0.360681
0.745859
-0.349867
0.724508
-0.33844
0.701777
-0.326419
0.677871
-0.313825
0.652823
-0.300681
0.626532
-0.28701
0.599191
-0.272834
0.570841
-0.25818
0.541405
-0.243074
0.511062
-0.22754
0.479857
-0.211607
0.447739
-0.195304
0.414872
-0.178657
0.381305
-0.161697
0.347012
-0.144454
0.31214
-0.126956
0.276739
-0.109237
0.240812
-0.0913254
0.204484
-0.0732526
0.167809
-0.0550526
0.130814
-0.036756
0.0936037
-0.0183935
0.0562319
0.0187531
0.0191639
-0.0195057
0.0382957
-0.0584886
0.057359
-0.0973602
0.0763217
-0.136064
0.0951519
-0.174543
0.113814
-0.21269
0.132276
-0.250476
0.150508
-0.287845
0.168474
-0.324666
0.186145
-0.360938
0.203491
-0.396607
0.220478
-0.431522
0.237079
-0.465707
0.253265
-0.499115
0.269005
-0.531571
0.284274
-0.563132
0.299045
-0.59375
0.31329
-0.623237
0.326986
-0.651675
0.340109
-0.679021
0.352635
-0.705074
0.364542
-0.72994
0.37581
-0.753583
0.386418
-0.775791
0.396348
-0.796694
0.405584
-0.816261
0.414107
-0.834273
0.421904
-0.850883
0.428961
-0.866065
0.435265
-0.879598
0.440806
-0.891652
0.445574
-0.90221
0.449559
-0.91105
0.452756
-0.91836
0.455159
-0.924127
0.456763
-0.928135
0.457566
-0.930584
0.457566
-0.93147
0.456763
-0.930582
0.455159
-0.928132
0.452756
-0.924123
0.449559
-0.918354
0.445574
-0.911043
0.440806
-0.902202
0.435265
-0.891642
0.428961
-0.879587
0.421904
-0.866053
0.414107
-0.850869
0.405584
-0.834259
0.396348
-0.816246
0.386418
-0.796678
0.37581
-0.775775
0.364542
-0.753566
0.352635
-0.729923
0.340109
-0.705057
0.326986
-0.679003
0.31329
-0.651657
0.299045
-0.62322
0.284274
-0.593732
0.269005
-0.563115
0.253265
-0.531555
0.237079
-0.499098
0.220478
-0.465692
0.203491
-0.431507
0.186145
-0.396594
0.168474
-0.360925
0.150508
-0.324655
0.132277
-0.287829
0.113814
-0.250473
0.0951515
-0.212687
0.0763221
-0.174529
0.057359
-0.136062
0.0382953
-0.0973582
0.0191644
-0.0584837
4.61238e-13
-0.0195058
-0.0191643
0.0195058
-0.0382951
0.0584837
-0.0573585
0.0973582
-0.0763212
0.136062
-0.0951501
0.174529
-0.113812
0.212687
-0.132274
0.250473
-0.150504
0.287829
-0.16847
0.324655
-0.18614
0.360925
-0.203484
0.396594
-0.220471
0.431507
-0.23707
0.465692
-0.253255
0.499098
-0.268994
0.531555
-0.284262
0.563115
-0.299031
0.593732
-0.313275
0.62322
-0.32697
0.651657
-0.340092
0.679003
-0.352616
0.705057
-0.364521
0.729923
-0.375788
0.753566
-0.386395
0.775775
-0.396324
0.796678
-0.405559
0.816246
-0.414081
0.834259
-0.421877
0.850869
-0.428933
0.866053
-0.435236
0.879587
-0.440776
0.891642
-0.445543
0.902202
-0.449528
0.911043
-0.452725
0.918354
-0.455127
0.924123
-0.456731
0.928132
-0.457533
0.930582
-0.457533
0.93147
-0.456731
0.930584
-0.455127
0.928135
-0.452725
0.924127
-0.449528
0.91836
-0.445543
0.91105
-0.440776
0.90221
-0.435236
0.891652
-0.428933
0.879598
-0.421877
0.866065
-0.414081
0.850883
-0.405559
0.834273
-0.396324
0.816261
-0.386395
0.796694
-0.375788
0.775791
-0.364521
0.753583
-0.352616
0.72994
-0.340092
0.705074
-0.32697
0.679021
-0.313275
0.651675
-0.299031
0.623237
-0.284262
0.59375
-0.268994
0.563132
-0.253255
0.531571
-0.23707
0.499115
-0.220471
0.465707
-0.203484
0.431522
-0.18614
0.396607
-0.16847
0.360938
-0.150504
0.324666
-0.132274
0.287845
-0.113812
0.250476
-0.0951505
0.21269
-0.0763208
0.174543
-0.0573585
0.136064
-0.0382955
0.0973602
-0.0191639
0.0584886
0.0195057
0.0199007
-0.020224
0.0397681
-0.0606426
0.0595642
-0.100946
0.079256
-0.141075
0.0988102
-0.180972
0.11819
-0.220524
0.137362
-0.259701
0.156294
-0.298446
0.174952
-0.336623
0.193302
-0.374231
0.211314
-0.411214
0.228955
-0.447414
0.246194
-0.482859
0.263002
-0.517496
0.279348
-0.551148
0.295203
-0.583871
0.310542
-0.615617
0.325335
-0.64619
0.339557
-0.675675
0.353185
-0.704028
0.366192
-0.731041
0.378557
-0.756823
0.390258
-0.781337
0.401274
-0.804362
0.411586
-0.826035
0.421177
-0.846322
0.430028
-0.864998
0.438124
-0.882219
0.445453
-0.89796
0.451999
-0.911992
0.457753
-0.92449
0.462704
-0.935437
0.466843
-0.944603
0.470162
-0.952181
0.472657
-0.958161
0.474323
-0.962316
0.475157
-0.964855
0.475157
-0.965774
0.474323
-0.964854
0.472657
-0.962313
0.470162
-0.958156
0.466843
-0.952175
0.462704
-0.944595
0.457753
-0.935428
0.451999
-0.924479
0.445453
-0.91198
0.438124
-0.897947
0.430028
-0.882205
0.421177
-0.864983
0.411586
-0.846306
0.401274
-0.826018
0.390258
-0.804345
0.378557
-0.781318
0.366192
-0.756804
0.353185
-0.731022
0.339557
-0.704009
0.325335
-0.675656
0.310542
-0.646171
0.295203
-0.615598
0.279348
-0.583853
0.263002
-0.55113
0.246194
-0.517479
0.228955
-0.482842
0.211314
-0.447398
0.193302
-0.411199
0.174952
-0.374217
0.156294
-0.336611
0.137362
-0.298429
0.11819
-0.259697
0.0988097
-0.22052
0.0792564
-0.180956
0.0595642
-0.141073
0.0397676
-0.100944
0.0199012
-0.0606375
5.03416e-13
-0.0202241
-0.0199011
0.0202241
-0.0397674
0.0606375
-0.0595637
0.100944
-0.0792555
0.141073
-0.0988084
0.180956
-0.118188
0.22052
-0.13736
0.259697
-0.156291
0.298429
-0.174947
0.336611
-0.193296
0.374217
-0.211308
0.411199
-0.228947
0.447398
-0.246185
0.482842
-0.262992
0.517479
-0.279336
0.55113
-0.295191
0.583853
-0.310528
0.615598
-0.32532
0.646171
-0.339541
0.675656
-0.353167
0.704009
-0.366173
0.731022
-0.378536
0.756804
-0.390237
0.781318
-0.401251
0.804345
-0.411562
0.826018
-0.421152
0.846306
-0.430001
0.864983
-0.438097
0.882205
-0.445425
0.897947
-0.45197
0.91198
-0.457723
0.924479
-0.462673
0.935428
-0.466812
0.944595
-0.470131
0.952175
-0.472626
0.958156
-0.474291
0.962313
-0.475125
0.964854
-0.475125
0.965774
-0.474291
0.964855
-0.472626
0.962316
-0.470131
0.958161
-0.466812
0.952181
-0.462673
0.944603
-0.457723
0.935437
-0.45197
0.92449
-0.445425
0.911992
-0.438097
0.89796
-0.430001
0.882219
-0.421152
0.864998
-0.411562
0.846322
-0.401251
0.826035
-0.390237
0.804362
-0.378536
0.781337
-0.366173
0.756823
-0.353167
0.731041
-0.339541
0.704028
-0.32532
0.675675
-0.310528
0.64619
-0.295191
0.615617
-0.279336
0.583871
-0.262992
0.551148
-0.246185
0.517496
-0.228947
0.482859
-0.211308
0.447414
-0.193296
0.411214
-0.174947
0.374231
-0.156291
0.336623
-0.137359
0.298446
-0.118188
0.259701
-0.0988088
0.220524
-0.0792551
0.180972
-0.0595637
0.141075
-0.0397679
0.100946
-0.0199007
0.0606426
0.020224
0.0206026
-0.0209069
0.0411707
-0.0626903
0.061665
-0.104354
0.0820512
-0.145838
0.102295
-0.187082
0.122358
-0.22797
0.142206
-0.26847
0.161807
-0.308524
0.181122
-0.34799
0.200119
-0.386867
0.218767
-0.425099
0.23703
-0.462521
0.254876
-0.499163
0.272277
-0.53497
0.2892
-0.569758
0.305614
-0.603586
0.321494
-0.636404
0.336809
-0.66801
0.351533
-0.69849
0.365641
-0.727801
0.379107
-0.755725
0.391907
-0.782378
0.404022
-0.807719
0.415426
-0.831522
0.426102
-0.853926
0.43603
-0.874899
0.445194
-0.894205
0.453576
-0.912008
0.461163
-0.928281
0.46794
-0.942786
0.473897
-0.955706
0.479022
-0.967022
0.483307
-0.976498
0.486744
-0.984332
0.489327
-0.990514
0.491051
-0.994809
0.491914
-0.997434
0.491914
-0.998384
0.491051
-0.997432
0.489327
-0.994806
0.486744
-0.990508
0.483307
-0.984325
0.479022
-0.976489
0.473897
-0.967013
0.46794
-0.955695
0.461163
-0.942773
0.453576
-0.928267
0.445194
-0.911993
0.43603
-0.894189
0.426102
-0.874882
0.415426
-0.853908
0.404022
-0.831503
0.391907
-0.8077
0.379107
-0.782358
0.365641
-0.755705
0.351533
-0.72778
0.336809
-0.698469
0.321494
-0.667989
0.305614
-0.636384
0.2892
-0.603566
0.272277
-0.569739
0.254876
-0.534951
0.23703
-0.499145
0.218767
-0.462505
0.200119
-0.425083
0.181122
-0.386852
0.161807
-0.347976
0.142207
-0.308505
0.122358
-0.268466
0.102295
-0.227965
0.0820517
-0.187066
0.061665
-0.145836
0.0411702
-0.104352
0.0206031
-0.0626849
5.46465e-13
-0.020907
-0.020603
0.020907
-0.04117
0.0626849
-0.0616645
0.104352
-0.0820508
0.145836
-0.102293
0.187066
-0.122356
0.227965
-0.142204
0.268466
-0.161803
0.308505
-0.181118
0.347976
-0.200114
0.386852
-0.218761
0.425083
-0.237022
0.462505
-0.254868
0.499145
-0.272268
0.534951
-0.289189
0.569739
-0.305602
0.603566
-0.321481
0.636384
-0.336794
0.667989
-0.351517
0.698469
-0.365624
0.72778
-0.379088
0.755705
-0.391888
0.782358
-0.404
0.8077
-0.415404
0.831503
-0.426078
0.853908
-0.436006
0.874882
-0.445168
0.894189
-0.453549
0.911993
-0.461135
0.928267
-0.467912
0.942773
-0.473867
0.955695
-0.478992
0.967013
-0.483276
0.976489
-0.486713
0.984325
-0.489296
0.990508
-0.49102
0.994806
-0.491883
0.997432
-0.491883
0.998384
-0.49102
0.997434
-0.489296
0.994809
-0.486713
0.990514
-0.483276
0.984332
-0.478992
0.976498
-0.473867
0.967022
-0.467912
0.955706
-0.461135
0.942786
-0.453549
0.928281
-0.445168
0.912008
-0.436006
0.894205
-0.426078
0.874899
-0.415404
0.853926
-0.404
0.831522
-0.391888
0.807719
-0.379088
0.782378
-0.365624
0.755725
-0.351517
0.727801
-0.336794
0.69849
-0.321481
0.66801
-0.305602
0.636404
-0.289189
0.603586
-0.272268
0.569758
-0.254868
0.53497
-0.237022
0.499163
-0.218761
0.462521
-0.200114
0.425099
-0.181118
0.386867
-0.161803
0.34799
-0.142204
0.308524
-0.122356
0.26847
-0.102294
0.22797
-0.0820503
0.187082
-0.0616645
0.145838
-0.0411704
0.104354
-0.0206025
0.0626903
0.0209069
0.0212683
-0.0215531
0.042501
-0.064628
0.0636576
-0.10758
0.0847025
-0.150346
0.1056
-0.192865
0.126312
-0.235016
0.146801
-0.276768
0.167035
-0.31806
0.186974
-0.358746
0.206585
-0.398825
0.225836
-0.438238
0.244688
-0.476817
0.263112
-0.514591
0.281075
-0.551505
0.298544
-0.587369
0.315489
-0.622242
0.331882
-0.656074
0.347692
-0.688657
0.362891
-0.720079
0.377456
-0.750296
0.391356
-0.779084
0.404571
-0.80656
0.417076
-0.832684
0.428849
-0.857223
0.43987
-0.88032
0.450119
-0.901941
0.459578
-0.921844
0.468231
-0.940197
0.476064
-0.956972
0.48306
-0.971926
0.489209
-0.985245
0.4945
-0.996912
0.498923
-1.00668
0.502471
-1.01476
0.505138
-1.02113
0.506918
-1.02556
0.507809
-1.02826
0.507809
-1.02924
0.506918
-1.02826
0.505138
-1.02555
0.502471
-1.02112
0.498923
-1.01475
0.4945
-1.00667
0.489209
-0.996901
0.48306
-0.985233
0.476064
-0.971912
0.468231
-0.956957
0.459578
-0.94018
0.450119
-0.921826
0.43987
-0.901922
0.428849
-0.880301
0.417076
-0.857203
0.404571
-0.832664
0.391356
-0.806539
0.377456
-0.779062
0.362891
-0.750274
0.347692
-0.720058
0.331882
-0.688635
0.315489
-0.656053
0.298544
-0.622221
0.281075
-0.587348
0.263112
-0.551485
0.244688
-0.514572
0.225836
-0.476799
0.206585
-0.438221
0.186974
-0.398809
0.167035
-0.358731
0.146802
-0.31804
0.126312
-0.276763
0.1056
-0.235011
0.084703
-0.192848
0.0636576
-0.150344
0.0425005
-0.107577
0.0212688
-0.0646224
5.90413e-13
-0.0215532
-0.0212688
0.0215532
-0.0425003
0.0646224
-0.0636571
0.107577
-0.0847021
0.150344
-0.105599
0.192848
-0.12631
0.235011
-0.146799
0.276763
-0.167032
0.31804
-0.18697
0.358731
-0.20658
0.398809
-0.22583
0.438221
-0.244681
0.476799
-0.263104
0.514572
-0.281066
0.551485
-0.298534
0.587348
-0.315477
0.622221
-0.331869
0.656053
-0.347677
0.688635
-0.362876
0.720058
-0.377439
0.750274
-0.391338
0.779062
-0.404551
0.806539
-0.417055
0.832664
-0.428827
0.857203
-0.439847
0.880301
-0.450095
0.901922
-0.459553
0.921826
-0.468205
0.94018
-0.476037
0.956957
-0.483032
0.971912
-0.48918
0.985233
-0.494471
0.996901
-0.498893
1.00667
-0.502441
1.01475
-0.505107
1.02112
-0.506887
1.02555
-0.507778
1.02826
-0.507778
1.02924
-0.506887
1.02826
-0.505107
1.02556
-0.502441
1.02113
-0.498893
1.01476
-0.494471
1.00668
-0.48918
0.996912
-0.483032
0.985245
-0.476037
0.971926
-0.468205
0.956972
-0.459553
0.940197
-0.450095
0.921844
-0.439847
0.901941
-0.428827
0.88032
-0.417055
0.857223
-0.404551
0.832684
-0.391338
0.80656
-0.377439
0.779084
-0.362876
0.750296
-0.347677
0.720079
-0.331869
0.688657
-0.315477
0.656074
-0.298534
0.622242
-0.281066
0.587369
-0.263104
0.551505
-0.244681
0.514591
-0.22583
0.476817
-0.20658
0.438238
-0.18697
0.398825
-0.167032
0.358746
-0.146799
0.31806
-0.12631
0.276768
-0.105599
0.235016
-0.0847017
0.192865
-0.0636571
0.150346
-0.0425008
0.10758
-0.0212683
0.064628
0.0215531
0.0218968
-0.0221615
0.0437568
-0.0664523
0.0655385
-0.110617
0.0872052
-0.15459
0.108721
-0.198309
0.130044
-0.24165
0.151139
-0.28458
0.17197
-0.327038
0.192499
-0.368872
0.212689
-0.410083
0.232508
-0.450609
0.251918
-0.490277
0.270886
-0.529117
0.28938
-0.567073
0.307365
-0.603949
0.324811
-0.639807
0.341688
-0.674594
0.357965
-0.708096
0.373613
-0.740405
0.388608
-0.771475
0.402919
-0.801075
0.416524
-0.829327
0.429399
-0.856189
0.44152
-0.881421
0.452866
-0.905169
0.463418
-0.9274
0.473157
-0.947865
0.482066
-0.966736
0.490129
-0.983985
0.497332
-0.999361
0.503663
-1.01306
0.50911
-1.02505
0.513664
-1.0351
0.517317
-1.0434
0.520062
-1.04995
0.521895
-1.05451
0.522812
-1.05729
0.522812
-1.05829
0.521895
-1.05729
0.520062
-1.0545
0.517317
-1.04995
0.513664
-1.04339
0.50911
-1.03509
0.503663
-1.02504
0.497332
-1.01304
0.490129
-0.999346
0.482066
-0.983969
0.473157
-0.966719
0.463418
-0.947847
0.452866
-0.927381
0.44152
-0.905149
0.429399
-0.881399
0.416524
-0.856167
0.402919
-0.829305
0.388608
-0.801053
0.373613
-0.771452
0.357965
-0.740382
0.341688
-0.708073
0.324811
-0.674571
0.307365
-0.639784
0.28938
-0.603927
0.270886
-0.567052
0.251918
-0.529097
0.232508
-0.490258
0.212689
-0.450591
0.192499
-0.410066
0.17197
-0.368857
0.151139
-0.327017
0.130044
-0.284575
0.10872
-0.241645
0.0872057
-0.198291
0.0655385
-0.154587
0.0437563
-0.110614
0.0218972
-0.0664464
6.34904e-13
-0.0221615
-0.0218972
0.0221615
-0.0437561
0.0664464
-0.065538
0.110614
-0.0872049
0.154587
-0.108719
0.198291
-0.130042
0.241645
-0.151137
0.284575
-0.171967
0.327017
-0.192495
0.368857
-0.212684
0.410066
-0.232503
0.450591
-0.251911
0.490258
-0.270878
0.529097
-0.289371
0.567052
-0.307355
0.603927
-0.324799
0.639784
-0.341675
0.674571
-0.357951
0.708073
-0.373598
0.740382
-0.388591
0.771452
-0.402902
0.801053
-0.416505
0.829305
-0.429379
0.856167
-0.441498
0.881399
-0.452843
0.905149
-0.463395
0.927381
-0.473133
0.947847
-0.48204
0.966719
-0.490103
0.983969
-0.497305
0.999346
-0.503635
1.01304
-0.509082
1.02504
-0.513635
1.03509
-0.517288
1.04339
-0.520033
1.04995
-0.521865
1.0545
-0.522782
1.05729
-0.522782
1.05829
-0.521865
1.05729
-0.520033
1.05451
-0.517288
1.04995
-0.513635
1.0434
-0.509082
1.0351
-0.503635
1.02505
-0.497305
1.01306
-0.490103
0.999361
-0.48204
0.983985
-0.473133
0.966736
-0.463395
0.947865
-0.452843
0.9274
-0.441498
0.905169
-0.429379
0.881421
-0.416505
0.856189
-0.402902
0.829327
-0.388591
0.801075
-0.373598
0.771475
-0.357951
0.740405
-0.341675
0.708096
-0.324799
0.674594
-0.307355
0.639807
-0.289371
0.603949
-0.270878
0.567073
-0.251911
0.529117
-0.232503
0.490277
-0.212684
0.450609
-0.192495
0.410083
-0.171967
0.368872
-0.151136
0.327038
-0.130042
0.28458
-0.108719
0.24165
-0.0872044
0.198309
-0.065538
0.15459
-0.0437566
0.110617
-0.0218967
0.0664523
0.0221615
0.0224868
-0.022731
0.0449358
-0.06816
0.0673044
-0.113459
0.0895549
-0.158563
0.11165
-0.203405
0.133548
-0.24786
0.155211
-0.291894
0.176604
-0.335442
0.197685
-0.378352
0.21842
-0.420621
0.238773
-0.462189
0.258706
-0.502876
0.278185
-0.542714
0.297177
-0.581646
0.315647
-0.619469
0.333562
-0.656249
0.350894
-0.691929
0.36761
-0.726293
0.38368
-0.759433
0.399078
-0.7913
0.413775
-0.821662
0.427747
-0.850639
0.440968
-0.878192
0.453416
-0.904072
0.465068
-0.92843
0.475904
-0.951233
0.485905
-0.972223
0.495054
-0.991579
0.503335
-1.00927
0.510732
-1.02504
0.517233
-1.03909
0.522827
-1.05139
0.527504
-1.0617
0.531255
-1.07021
0.534074
-1.07693
0.535956
-1.0816
0.536898
-1.08446
0.536898
-1.08549
0.535956
-1.08446
0.534074
-1.0816
0.531255
-1.07693
0.527504
-1.0702
0.522827
-1.06169
0.517233
-1.05138
0.510732
-1.03908
0.503335
-1.02503
0.495054
-1.00926
0.485905
-0.991561
0.475904
-0.972204
0.465068
-0.951212
0.453416
-0.928409
0.440968
-0.904049
0.427747
-0.878169
0.413775
-0.850616
0.399078
-0.821638
0.38368
-0.791276
0.36761
-0.759408
0.350894
-0.726269
0.333562
-0.691906
0.315647
-0.656225
0.297177
-0.619447
0.278185
-0.581624
0.258706
-0.542694
0.238773
-0.502856
0.21842
-0.46217
0.197685
-0.420604
0.176604
-0.378336
0.155212
-0.335421
0.133548
-0.291888
0.11165
-0.247854
0.0895554
-0.203387
0.0673044
-0.15856
0.0449353
-0.113456
0.0224873
-0.0681539
6.79697e-13
-0.022731
-0.0224872
0.022731
-0.0449351
0.0681539
-0.0673039
0.113456
-0.0895546
0.15856
-0.111648
0.203387
-0.133546
0.247854
-0.155209
0.291888
-0.176601
0.335421
-0.197682
0.378336
-0.218415
0.420604
-0.238768
0.46217
-0.258699
0.502856
-0.278177
0.542694
-0.297168
0.581624
-0.315637
0.619447
-0.333551
0.656225
-0.350882
0.691906
-0.367596
0.726269
-0.383665
0.759408
-0.399062
0.791276
-0.413758
0.821638
-0.427728
0.850616
-0.440949
0.878169
-0.453395
0.904049
-0.465046
0.928409
-0.475882
0.951212
-0.485882
0.972204
-0.49503
0.991561
-0.50331
1.00926
-0.510706
1.02503
-0.517206
1.03908
-0.5228
1.05138
-0.527476
1.06169
-0.531227
1.0702
-0.534046
1.07693
-0.535928
1.0816
-0.53687
1.08446
-0.53687
1.08549
-0.535928
1.08446
-0.534046
1.0816
-0.531227
1.07693
-0.527476
1.07021
-0.5228
1.0617
-0.517206
1.05139
-0.510706
1.03909
-0.50331
1.02504
-0.49503
1.00927
-0.485882
0.991579
-0.475882
0.972223
-0.465046
0.951233
-0.453395
0.92843
-0.440949
0.904072
-0.427728
0.878192
-0.413758
0.850639
-0.399062
0.821662
-0.383665
0.7913
-0.367596
0.759433
-0.350882
0.726293
-0.333551
0.691929
-0.315637
0.656249
-0.297168
0.619469
-0.278177
0.581646
-0.258699
0.542714
-0.238768
0.502876
-0.218415
0.462189
-0.197682
0.420621
-0.176601
0.378352
-0.155209
0.335442
-0.133546
0.291894
-0.111649
0.24786
-0.0895541
0.203405
-0.0673039
0.158563
-0.0449356
0.113459
-0.0224867
0.06816
0.022731
0.0230373
-0.0232607
0.046036
-0.0697482
0.0689522
-0.116103
0.0917475
-0.162257
0.114384
-0.208144
0.136817
-0.253635
0.159011
-0.298695
0.180928
-0.343258
0.202525
-0.387167
0.223768
-0.430422
0.244619
-0.472958
0.26504
-0.514593
0.284995
-0.55536
0.304453
-0.595198
0.323374
-0.633903
0.341729
-0.671539
0.359485
-0.708052
0.37661
-0.743216
0.393073
-0.777127
0.408849
-0.809738
0.423905
-0.840806
0.438219
-0.870459
0.451764
-0.898654
0.464516
-0.925137
0.476453
-0.950063
0.487555
-0.973396
0.497801
-0.994876
0.507174
-1.01468
0.515657
-1.03279
0.523236
-1.04893
0.529896
-1.0633
0.535627
-1.07589
0.540418
-1.08643
0.544261
-1.09515
0.547149
-1.10203
0.549077
-1.10681
0.550042
-1.10973
0.550042
-1.11078
0.549077
-1.10972
0.547149
-1.1068
0.544261
-1.10202
0.540418
-1.09514
0.535627
-1.08642
0.529896
-1.07588
0.523236
-1.06329
0.515657
-1.04891
0.507174
-1.03277
0.497801
-1.01466
0.487555
-0.994856
0.476453
-0.973375
0.464516
-0.95004
0.451764
-0.925113
0.438219
-0.898629
0.423905
-0.870435
0.408849
-0.840781
0.393073
-0.809713
0.37661
-0.777102
0.359485
-0.74319
0.341729
-0.708027
0.323374
-0.671515
0.304453
-0.633879
0.284995
-0.595175
0.26504
-0.555338
0.244619
-0.514572
0.223768
-0.472938
0.202525
-0.430403
0.180928
-0.387151
0.159012
-0.343236
0.136817
-0.298689
0.114383
-0.253629
0.091748
-0.208126
0.0689522
-0.162254
0.0460355
-0.1161
0.0230378
-0.0697419
7.24741e-13
-0.0232607
-0.0230378
0.0232607
-0.0460353
0.0697419
-0.0689518
0.1161
-0.0917473
0.162254
-0.114382
0.208126
-0.136816
0.253629
-0.159009
0.298689
-0.180925
0.343236
-0.202522
0.387151
-0.223763
0.430403
-0.244614
0.472938
-0.265033
0.514572
-0.284988
0.555338
-0.304444
0.595175
-0.323365
0.633879
-0.341718
0.671515
-0.359474
0.708027
-0.376597
0.74319
-0.393059
0.777102
-0.408834
0.809713
-0.423889
0.840781
-0.438201
0.870435
-0.451746
0.898629
-0.464497
0.925113
-0.476433
0.95004
-0.487534
0.973375
-0.497779
0.994856
-0.507151
1.01466
-0.515633
1.03277
-0.523211
1.04891
-0.529871
1.06329
-0.535601
1.07588
-0.540392
1.08642
-0.544234
1.09514
-0.547122
1.10202
-0.54905
1.1068
-0.550015
1.10972
-0.550015
1.11078
-0.54905
1.10973
-0.547122
1.10681
-0.544234
1.10203
-0.540392
1.09515
-0.535601
1.08643
-0.529871
1.07589
-0.523211
1.0633
-0.515633
1.04893
-0.507151
1.03279
-0.497779
1.01468
-0.487534
0.994876
-0.476433
0.973396
-0.464497
0.950063
-0.451746
0.925137
-0.438201
0.898654
-0.423889
0.870459
-0.408834
0.840806
-0.393059
0.809738
-0.376597
0.777127
-0.359474
0.743216
-0.341718
0.708052
-0.323365
0.671539
-0.304444
0.633903
-0.284988
0.595198
-0.265033
0.55536
-0.244614
0.514593
-0.223763
0.472958
-0.202522
0.430422
-0.180925
0.387167
-0.159009
0.343258
-0.136816
0.298695
-0.114382
0.253635
-0.0917468
0.208144
-0.0689518
0.162257
-0.0460358
0.116103
-0.0230373
0.0697482
0.0232607
0.0235475
-0.0237495
0.0470554
-0.071214
0.0704791
-0.118543
0.0937792
-0.165667
0.116917
-0.212519
0.139847
-0.258965
0.162532
-0.304972
0.184934
-0.350472
0.20701
-0.395304
0.228723
-0.439467
0.250036
-0.482897
0.270908
-0.525408
0.291306
-0.567031
0.311194
-0.607707
0.330535
-0.647225
0.349296
-0.685652
0.367445
-0.722931
0.384949
-0.758834
0.401777
-0.793459
0.417902
-0.826755
0.433292
-0.858476
0.447922
-0.888752
0.461767
-0.917539
0.474802
-0.944578
0.487003
-0.970029
0.498351
-0.993852
0.508824
-1.01578
0.518404
-1.03601
0.527075
-1.05449
0.534821
-1.07097
0.541629
-1.08565
0.547487
-1.0985
0.552384
-1.10926
0.556312
-1.11816
0.559264
-1.12519
0.561235
-1.13006
0.562222
-1.13305
0.562222
-1.13412
0.561235
-1.13304
0.559264
-1.13006
0.556312
-1.12518
0.552384
-1.11815
0.547487
-1.10925
0.541629
-1.09849
0.534821
-1.08563
0.527075
-1.07095
0.518404
-1.05447
0.508824
-1.03599
0.498351
-1.01576
0.487003
-0.99383
0.474802
-0.970005
0.461767
-0.944554
0.447922
-0.917514
0.433292
-0.888726
0.417902
-0.85845
0.401777
-0.826728
0.384949
-0.793433
0.367445
-0.758808
0.349296
-0.722905
0.330535
-0.685626
0.311194
-0.6472
0.291306
-0.607683
0.270908
-0.567008
0.250036
-0.525386
0.228723
-0.482877
0.20701
-0.439448
0.184934
-0.395287
0.162533
-0.350449
0.139847
-0.304966
0.116916
-0.258959
0.0937797
-0.212499
0.0704791
-0.165664
0.0470549
-0.118539
0.023548
-0.0712074
7.69721e-13
-0.0237495
-0.0235479
0.0237495
-0.0470547
0.0712074
-0.0704787
0.118539
-0.093779
0.165664
-0.116915
0.212499
-0.139845
0.258959
-0.162531
0.304966
-0.184931
0.350449
-0.207006
0.395287
-0.228718
0.439448
-0.250031
0.482877
-0.270903
0.525386
-0.291299
0.567008
-0.311186
0.607683
-0.330526
0.6472
-0.349286
0.685626
-0.367434
0.722905
-0.384937
0.758808
-0.401764
0.793433
-0.417887
0.826728
-0.433277
0.85845
-0.447906
0.888726
-0.46175
0.917514
-0.474783
0.944554
-0.486984
0.970005
-0.498331
0.99383
-0.508803
1.01576
-0.518382
1.03599
-0.527053
1.05447
-0.534798
1.07095
-0.541605
1.08563
-0.547463
1.09849
-0.552359
1.10925
-0.556287
1.11815
-0.559239
1.12518
-0.56121
1.13006
-0.562196
1.13304
-0.562196
1.13412
-0.56121
1.13305
-0.559239
1.13006
-0.556287
1.12519
-0.552359
1.11816
-0.547463
1.10926
-0.541605
1.0985
-0.534798
1.08565
-0.527053
1.07097
-0.518382
1.05449
-0.508803
1.03601
-0.498331
1.01578
-0.486984
0.993852
-0.474783
0.970029
-0.46175
0.944578
-0.447906
0.917539
-0.433277
0.888752
-0.417887
0.858476
-0.401764
0.826755
-0.384937
0.793459
-0.367434
0.758834
-0.349286
0.722931
-0.330526
0.685652
-0.311186
0.647225
-0.291299
0.607707
-0.270903
0.567031
-0.250031
0.525408
-0.228718
0.482897
-0.207006
0.439467
-0.184931
0.395304
-0.16253
0.350472
-0.139845
0.304972
-0.116915
0.258965
-0.0937785
0.212519
-0.0704787
0.165667
-0.0470552
0.118543
-0.0235474
0.071214
0.0237495
0.0240163
-0.0241967
0.0479923
-0.0725548
0.0718823
-0.120775
0.0956463
-0.168786
0.119244
-0.21652
0.142631
-0.263841
0.165768
-0.310714
0.188616
-0.35707
0.211131
-0.402747
0.233276
-0.447742
0.255014
-0.491989
0.276302
-0.5353
0.297106
-0.577707
0.31739
-0.619149
0.337115
-0.659411
0.35625
-0.698562
0.374761
-0.736543
0.392613
-0.773122
0.409776
-0.808398
0.426221
-0.842321
0.441918
-0.87464
0.45684
-0.905486
0.470961
-0.934815
0.484254
-0.962363
0.496699
-0.988293
0.508272
-1.01256
0.518954
-1.03491
0.528724
-1.05551
0.537568
-1.07435
0.545468
-1.09113
0.552412
-1.10609
0.558386
-1.11918
0.563381
-1.13015
0.567387
-1.13922
0.570398
-1.14637
0.572408
-1.15134
0.573414
-1.15438
0.573414
-1.15548
0.572408
-1.15438
0.570398
-1.15134
0.567387
-1.14636
0.563381
-1.13921
0.558386
-1.13014
0.552412
-1.11917
0.545468
-1.10607
0.537568
-1.09112
0.528724
-1.07433
0.518954
-1.05549
0.508272
-1.03489
0.496699
-1.01254
0.484254
-0.988268
0.470961
-0.962338
0.45684
-0.934789
0.441918
-0.905459
0.426221
-0.874613
0.409776
-0.842294
0.392613
-0.808371
0.374761
-0.773095
0.35625
-0.736516
0.337115
-0.698535
0.31739
-0.659385
0.297106
-0.619124
0.276302
-0.577683
0.255014
-0.535278
0.233276
-0.491968
0.211131
-0.447722
0.188616
-0.402729
0.165769
-0.357047
0.142631
-0.310708
0.119244
-0.263835
0.0956468
-0.2165
0.0718823
-0.168783
0.0479917
-0.120771
0.0240168
-0.0725481
8.14597e-13
-0.0241966
-0.0240168
0.0241966
-0.0479916
0.0725481
-0.0718819
0.120771
-0.0956462
0.168783
-0.119243
0.2165
-0.14263
0.263835
-0.165767
0.310708
-0.188614
0.357047
-0.211128
0.402729
-0.233272
0.447722
-0.255009
0.491968
-0.276296
0.535278
-0.297099
0.577683
-0.317382
0.619124
-0.337107
0.659385
-0.356241
0.698535
-0.37475
0.736516
-0.392601
0.773095
-0.409764
0.808371
-0.426208
0.842294
-0.441904
0.874613
-0.456824
0.905459
-0.470944
0.934789
-0.484237
0.962338
-0.496681
0.988268
-0.508253
1.01254
-0.518934
1.03489
-0.528704
1.05549
-0.537547
1.07433
-0.545447
1.09112
-0.552389
1.10607
-0.558364
1.11917
-0.563358
1.13014
-0.567364
1.13921
-0.570374
1.14636
-0.572384
1.15134
-0.57339
1.15438
-0.57339
1.15548
-0.572384
1.15438
-0.570374
1.15134
-0.567364
1.14637
-0.563358
1.13922
-0.558364
1.13015
-0.552389
1.11918
-0.545447
1.10609
-0.537547
1.09113
-0.528704
1.07435
-0.518934
1.05551
-0.508253
1.03491
-0.496681
1.01256
-0.484237
0.988293
-0.470944
0.962363
-0.456824
0.934815
-0.441904
0.905486
-0.426208
0.87464
-0.409764
0.842321
-0.392601
0.808398
-0.37475
0.773122
-0.356241
0.736543
-0.337107
0.698562
-0.317382
0.659411
-0.297099
0.619149
-0.276296
0.577707
-0.255009
0.5353
-0.233272
0.491989
-0.211128
0.447742
-0.188614
0.402747
-0.165766
0.35707
-0.14263
0.310714
-0.119243
0.263841
-0.0956456
0.21652
-0.0718819
0.168786
-0.0479921
0.120775
-0.0240162
0.0725548
0.0241967
0.024443
-0.0246014
0.0488449
-0.0737684
0.0731594
-0.122795
0.0973456
-0.17161
0.121363
-0.220142
0.145165
-0.268254
0.168713
-0.315911
0.191967
-0.363043
0.214882
-0.409483
0.237421
-0.455231
0.259544
-0.500218
0.281211
-0.544254
0.302384
-0.58737
0.323028
-0.629505
0.343105
-0.67044
0.362579
-0.710246
0.381419
-0.748863
0.399588
-0.786053
0.417056
-0.82192
0.433794
-0.85641
0.449769
-0.889269
0.464955
-0.920631
0.479327
-0.95045
0.492857
-0.97846
0.505523
-1.00482
0.517302
-1.0295
0.528173
-1.05222
0.538117
-1.07317
0.547118
-1.09232
0.555159
-1.10938
0.562225
-1.12459
0.568306
-1.1379
0.573389
-1.14905
0.577467
-1.15827
0.580531
-1.16554
0.582577
-1.1706
0.583601
-1.17369
0.583601
-1.1748
0.582577
-1.17368
0.580531
-1.17059
0.577467
-1.16554
0.573389
-1.15826
0.568306
-1.14904
0.562225
-1.13789
0.555159
-1.12457
0.547118
-1.10937
0.538117
-1.0923
0.528173
-1.07315
0.517302
-1.0522
0.505523
-1.02948
0.492857
-1.0048
0.479327
-0.978434
0.464955
-0.950423
0.449769
-0.920603
0.433794
-0.889241
0.417056
-0.856381
0.399588
-0.821891
0.381419
-0.786025
0.362579
-0.748835
0.343105
-0.710218
0.323028
-0.670414
0.302384
-0.629479
0.281211
-0.587345
0.259544
-0.54423
0.237421
-0.500197
0.214882
-0.45521
0.191967
-0.409465
0.168714
-0.363019
0.145165
-0.315904
0.121362
-0.268247
0.0973462
-0.220121
0.0731594
-0.171606
0.0488444
-0.122791
0.0244435
-0.0737615
8.59288e-13
-0.0246013
-0.0244435
0.0246013
-0.0488442
0.0737615
-0.0731591
0.122791
-0.0973456
0.171606
-0.121361
0.220121
-0.145164
0.268247
-0.168712
0.315904
-0.191965
0.363019
-0.214879
0.409465
-0.237417
0.45521
-0.25954
0.500197
-0.281206
0.54423
-0.302378
0.587345
-0.323022
0.629479
-0.343097
0.670414
-0.36257
0.710218
-0.381409
0.748835
-0.399577
0.786025
-0.417044
0.821891
-0.433781
0.856381
-0.449756
0.889241
-0.464941
0.920603
-0.479312
0.950423
-0.492842
0.978434
-0.505506
1.0048
-0.517285
1.02948
-0.528155
1.0522
-0.538098
1.07315
-0.547099
1.0923
-0.555139
1.10937
-0.562205
1.12457
-0.568285
1.13789
-0.573368
1.14904
-0.577445
1.15826
-0.580509
1.16554
-0.582555
1.17059
-0.583579
1.17368
-0.583579
1.1748
-0.582555
1.17369
-0.580509
1.1706
-0.577445
1.16554
-0.573368
1.15827
-0.568285
1.14905
-0.562205
1.1379
-0.555139
1.12459
-0.547099
1.10938
-0.538098
1.09232
-0.528155
1.07317
-0.517285
1.05222
-0.505506
1.0295
-0.492842
1.00482
-0.479312
0.97846
-0.464941
0.95045
-0.449756
0.920631
-0.433781
0.889269
-0.417044
0.85641
-0.399577
0.82192
-0.381409
0.786053
-0.36257
0.748863
-0.343097
0.710246
-0.323022
0.67044
-0.302378
0.629505
-0.281206
0.58737
-0.25954
0.544254
-0.237417
0.500218
-0.214879
0.455231
-0.191965
0.409483
-0.168712
0.363043
-0.145164
0.315911
-0.121362
0.268254
-0.097345
0.220142
-0.0731591
0.17161
-0.0488448
0.122795
-0.0244429
0.0737684
0.0246014
0.0248268
-0.0249629
0.0496119
-0.0748525
0.0743082
-0.1246
0.0988742
-0.174132
0.123269
-0.223377
0.147445
-0.272197
0.171363
-0.320554
0.194981
-0.368378
0.218256
-0.415501
0.241149
-0.461921
0.26362
-0.50757
0.285626
-0.552252
0.307132
-0.596002
0.328101
-0.638756
0.348492
-0.680294
0.368272
-0.720684
0.387407
-0.759868
0.405862
-0.797606
0.423604
-0.833999
0.440605
-0.868996
0.456831
-0.902338
0.472256
-0.934161
0.486853
-0.964419
0.500596
-0.99284
0.51346
-1.01959
0.525424
-1.04463
0.536466
-1.06768
0.546566
-1.08894
0.555708
-1.10837
0.563875
-1.12569
0.571053
-1.14111
0.577229
-1.15463
0.582392
-1.16594
0.586533
-1.17529
0.589646
-1.18267
0.591724
-1.1878
0.592764
-1.19094
0.592764
-1.19207
0.591724
-1.19093
0.589646
-1.1878
0.586533
-1.18267
0.582392
-1.17528
0.577229
-1.16593
0.571053
-1.15461
0.563875
-1.1411
0.555708
-1.12567
0.546566
-1.10835
0.536466
-1.08892
0.525424
-1.06766
0.51346
-1.04461
0.500596
-1.01956
0.486853
-0.992813
0.472256
-0.964391
0.456831
-0.934133
0.440605
-0.902309
0.423604
-0.868967
0.405862
-0.83397
0.387407
-0.797576
0.368272
-0.75984
0.348492
-0.720656
0.328101
-0.680266
0.307132
-0.63873
0.285626
-0.595977
0.26362
-0.552228
0.241149
-0.507547
0.218256
-0.4619
0.194981
-0.415482
0.171363
-0.368353
0.147445
-0.320547
0.123268
-0.272189
0.0988747
-0.223356
0.0743082
-0.174128
0.0496114
-0.124596
0.0248274
-0.0748455
9.03391e-13
-0.0249628
-0.0248273
0.0249628
-0.0496112
0.0748455
-0.0743079
0.124596
-0.0988742
0.174128
-0.123267
0.223356
-0.147444
0.272189
-0.171361
0.320547
-0.194979
0.368353
-0.218254
0.415482
-0.241145
0.4619
-0.263616
0.507547
-0.285622
0.552228
-0.307127
0.595977
-0.328094
0.63873
-0.348485
0.680266
-0.368264
0.720656
-0.387399
0.75984
-0.405852
0.797576
-0.423594
0.83397
-0.440593
0.868967
-0.456819
0.902309
-0.472243
0.934133
-0.48684
0.964391
-0.500581
0.992813
-0.513445
1.01956
-0.525408
1.04461
-0.536449
1.06766
-0.546549
1.08892
-0.555691
1.10835
-0.563857
1.12567
-0.571034
1.1411
-0.57721
1.15461
-0.582373
1.16593
-0.586514
1.17528
-0.589626
1.18267
-0.591704
1.1878
-0.592744
1.19093
-0.592744
1.19207
-0.591704
1.19094
-0.589626
1.1878
-0.586514
1.18267
-0.582373
1.17529
-0.57721
1.16594
-0.571034
1.15463
-0.563857
1.14111
-0.555691
1.12569
-0.546549
1.10837
-0.536449
1.08894
-0.525408
1.06768
-0.513445
1.04463
-0.500581
1.01959
-0.48684
0.99284
-0.472243
0.964419
-0.456819
0.934161
-0.440593
0.902338
-0.423594
0.868996
-0.405852
0.833999
-0.387399
0.797606
-0.368264
0.759868
-0.348485
0.720684
-0.328094
0.680294
-0.307127
0.638756
-0.285622
0.596002
-0.263616
0.552252
-0.241145
0.50757
-0.218254
0.461921
-0.194979
0.415501
-0.171361
0.368378
-0.147444
0.320554
-0.123268
0.272197
-0.0988736
0.223377
-0.0743079
0.174132
-0.0496118
0.1246
-0.0248268
0.0748525
0.0249629
0.0251671
-0.0252807
0.0502919
-0.0758053
0.0753266
-0.126186
0.100229
-0.176348
0.124958
-0.22622
0.149466
-0.275662
0.173711
-0.324635
0.197654
-0.373068
0.221248
-0.42079
0.244454
-0.467801
0.267232
-0.514031
0.289541
-0.559282
0.311341
-0.603589
0.332597
-0.646887
0.353268
-0.688953
0.373319
-0.729858
0.392716
-0.769541
0.411424
-0.807758
0.429409
-0.844615
0.446643
-0.880058
0.463091
-0.913824
0.478727
-0.946052
0.493525
-0.976695
0.507456
-1.00548
0.520496
-1.03257
0.532624
-1.05793
0.543817
-1.08127
0.554056
-1.1028
0.563324
-1.12248
0.571602
-1.14002
0.578878
-1.15564
0.585139
-1.16932
0.590373
-1.18078
0.594571
-1.19025
0.597726
-1.19773
0.599833
-1.20292
0.600887
-1.2061
0.600887
-1.20724
0.599833
-1.20609
0.597726
-1.20292
0.594571
-1.19772
0.590373
-1.19024
0.585139
-1.18077
0.578878
-1.16931
0.571602
-1.15562
0.563324
-1.14
0.554056
-1.12246
0.543817
-1.10278
0.532624
-1.08125
0.520496
-1.0579
0.507456
-1.03254
0.493525
-1.00545
0.478727
-0.976666
0.463091
-0.946023
0.446643
-0.913795
0.429409
-0.880028
0.411424
-0.844585
0.392716
-0.807729
0.373319
-0.769511
0.353268
-0.729829
0.332597
-0.688925
0.311341
-0.64686
0.289541
-0.603563
0.267232
-0.559258
0.244454
-0.514008
0.221248
-0.467779
0.197654
-0.420771
0.173712
-0.373042
0.149466
-0.324627
0.124957
-0.275654
0.10023
-0.226199
0.0753266
-0.176344
0.0502913
-0.126182
0.0251676
-0.0757982
9.4674e-13
-0.0252806
-0.0251676
0.0252806
-0.0502912
0.0757982
-0.0753263
0.126182
-0.100229
0.176344
-0.124957
0.226199
-0.149464
0.275654
-0.17371
0.324627
-0.197652
0.373042
-0.221245
0.420771
-0.244451
0.467779
-0.267229
0.514008
-0.289537
0.559258
-0.311336
0.603563
-0.332591
0.64686
-0.353262
0.688925
-0.373312
0.729829
-0.392709
0.769511
-0.411415
0.807729
-0.4294
0.844585
-0.446633
0.880028
-0.463081
0.913795
-0.478716
0.946023
-0.493513
0.976666
-0.507443
1.00545
-0.520483
1.03254
-0.53261
1.0579
-0.543802
1.08125
-0.554041
1.10278
-0.563308
1.12246
-0.571586
1.14
-0.578862
1.15562
-0.585122
1.16931
-0.590355
1.18077
-0.594553
1.19024
-0.597708
1.19772
-0.599815
1.20292
-0.600869
1.20609
-0.600869
1.20724
-0.599815
1.2061
-0.597708
1.20292
-0.594553
1.19773
-0.590355
1.19025
-0.585122
1.18078
-0.578862
1.16932
-0.571586
1.15564
-0.563308
1.14002
-0.554041
1.12248
-0.543802
1.1028
-0.53261
1.08127
-0.520483
1.05793
-0.507443
1.03257
-0.493513
1.00548
-0.478716
0.976695
-0.463081
0.946052
-0.446633
0.913824
-0.4294
0.880058
-0.411415
0.844615
-0.392709
0.807758
-0.373312
0.769541
-0.353262
0.729858
-0.332591
0.688953
-0.311336
0.646887
-0.289537
0.603589
-0.267229
0.559282
-0.244451
0.514031
-0.221245
0.467801
-0.197652
0.42079
-0.17371
0.373068
-0.149464
0.324635
-0.124957
0.275662
-0.100229
0.22622
-0.0753263
0.176348
-0.0502918
0.126186
-0.025167
0.0758053
0.0252807
0.0254632
-0.0255541
0.0508836
-0.0766252
0.0762129
-0.12755
0.101408
-0.178255
0.126428
-0.228667
0.151224
-0.278643
0.175755
-0.328145
0.199979
-0.377102
0.223851
-0.425341
0.24733
-0.47286
0.270376
-0.51959
0.292947
-0.565331
0.315004
-0.610117
0.33651
-0.653883
0.357424
-0.696404
0.377711
-0.737751
0.397336
-0.777863
0.416264
-0.816494
0.434461
-0.85375
0.451897
-0.889575
0.468539
-0.923707
0.484359
-0.956284
0.499331
-0.987258
0.513425
-1.01635
0.526619
-1.04374
0.53889
-1.06937
0.550215
-1.09297
0.560574
-1.11473
0.56995
-1.13462
0.578326
-1.15235
0.585688
-1.16814
0.592022
-1.18197
0.597318
-1.19355
0.601565
-1.20313
0.604758
-1.21068
0.606889
-1.21593
0.607955
-1.21914
0.607955
-1.2203
0.606889
-1.21914
0.604758
-1.21593
0.601565
-1.21067
0.597318
-1.20312
0.592022
-1.19354
0.585688
-1.18195
0.578326
-1.16812
0.56995
-1.15233
0.560574
-1.1346
0.550215
-1.1147
0.53889
-1.09294
0.526619
-1.06934
0.513425
-1.04371
0.499331
-1.01632
0.484359
-0.987229
0.468539
-0.956254
0.451897
-0.923677
0.434461
-0.889545
0.416264
-0.853719
0.397336
-0.816464
0.377711
-0.777833
0.357424
-0.737722
0.33651
-0.696376
0.315004
-0.653855
0.292947
-0.61009
0.270376
-0.565306
0.24733
-0.519567
0.223851
-0.472838
0.199979
-0.425321
0.175755
-0.377076
0.151224
-0.328138
0.126428
-0.278635
0.101409
-0.228645
0.0762129
-0.178251
0.050883
-0.127546
0.0254637
-0.0766179
9.89275e-13
-0.025554
-0.0254637
0.025554
-0.0508829
0.0766179
-0.0762126
0.127546
-0.101409
0.178251
-0.126427
0.228645
-0.151223
0.278635
-0.175754
0.328138
-0.199977
0.377076
-0.223848
0.425321
-0.247327
0.472838
-0.270373
0.519567
-0.292943
0.565306
-0.315
0.61009
-0.336505
0.653855
-0.357418
0.696376
-0.377705
0.737722
-0.39733
0.777833
-0.416256
0.816464
-0.434453
0.853719
-0.451888
0.889545
-0.46853
0.923677
-0.484349
0.956254
-0.49932
0.987229
-0.513414
1.01632
-0.526607
1.04371
-0.538878
1.06934
-0.550202
1.09294
-0.560561
1.1147
-0.569937
1.1346
-0.578312
1.15233
-0.585673
1.16812
-0.592008
1.18195
-0.597303
1.19354
-0.60155
1.20312
-0.604742
1.21067
-0.606873
1.21593
-0.60794
1.21914
-0.60794
1.2203
-0.606873
1.21914
-0.604742
1.21593
-0.60155
1.21068
-0.597303
1.20313
-0.592008
1.19355
-0.585673
1.18197
-0.578312
1.16814
-0.569937
1.15235
-0.560561
1.13462
-0.550202
1.11473
-0.538878
1.09297
-0.526607
1.06937
-0.513414
1.04374
-0.49932
1.01635
-0.484349
0.987258
-0.46853
0.956284
-0.451888
0.923707
-0.434453
0.889575
-0.416256
0.85375
-0.39733
0.816494
-0.377705
0.777863
-0.357418
0.737751
-0.336505
0.696404
-0.315
0.653883
-0.292943
0.610117
-0.270373
0.565331
-0.247327
0.51959
-0.223848
0.47286
-0.199977
0.425341
-0.175753
0.377102
-0.151223
0.328145
-0.126427
0.278643
-0.101408
0.228667
-0.0762126
0.178255
-0.0508835
0.12755
-0.0254631
0.0766252
0.0255541
0.0257146
-0.0257827
0.051386
-0.0773106
0.0769654
-0.128691
0.10241
-0.17985
0.127676
-0.230712
0.152717
-0.281135
0.17749
-0.331081
0.201954
-0.380475
0.226061
-0.429146
0.249772
-0.47709
0.273046
-0.524238
0.29584
-0.570388
0.318114
-0.615574
0.339832
-0.659732
0.360953
-0.702633
0.38144
-0.74435
0.401259
-0.784821
0.420374
-0.823798
0.43875
-0.861386
0.456359
-0.897533
0.473165
-0.93197
0.489141
-0.964837
0.504261
-0.996089
0.518494
-1.02544
0.531818
-1.05307
0.54421
-1.07893
0.555647
-1.10274
0.566108
-1.1247
0.575577
-1.14477
0.584036
-1.16265
0.59147
-1.17859
0.597867
-1.19254
0.603215
-1.20423
0.607504
-1.21389
0.610728
-1.22151
0.61288
-1.22681
0.613957
-1.23004
0.613957
-1.23121
0.61288
-1.23004
0.610728
-1.2268
0.607504
-1.2215
0.603215
-1.21388
0.597867
-1.20421
0.59147
-1.19253
0.584036
-1.17857
0.575577
-1.16263
0.566108
-1.14474
0.555647
-1.12467
0.54421
-1.10272
0.531818
-1.07891
0.518494
-1.05304
0.504261
-1.02541
0.489141
-0.996059
0.473165
-0.964807
0.456359
-0.931939
0.43875
-0.897501
0.420374
-0.861355
0.401259
-0.823767
0.38144
-0.784791
0.360953
-0.74432
0.339832
-0.702604
0.318114
-0.659704
0.29584
-0.615547
0.273046
-0.570362
0.249772
-0.524214
0.226061
-0.477067
0.201954
-0.429125
0.177491
-0.380449
0.152717
-0.331073
0.127676
-0.281127
0.10241
-0.230691
0.0769654
-0.179846
0.0513855
-0.128687
0.0257152
-0.0773032
1.03075e-12
-0.0257825
-0.0257152
0.0257825
-0.0513854
0.0773032
-0.0769652
0.128687
-0.10241
0.179846
-0.127675
0.230691
-0.152716
0.281127
-0.17749
0.331073
-0.201952
0.380449
-0.226059
0.429125
-0.249769
0.477067
-0.273043
0.524214
-0.295836
0.570362
-0.318111
0.615547
-0.339828
0.659704
-0.360948
0.702604
-0.381435
0.74432
-0.401254
0.784791
-0.420367
0.823767
-0.438744
0.861355
-0.456351
0.897501
-0.473157
0.931939
-0.489133
0.964807
-0.504252
0.996059
-0.518485
1.02541
-0.531808
1.05304
-0.5442
1.07891
-0.555636
1.10272
-0.566097
1.12467
-0.575566
1.14474
-0.584024
1.16263
-0.591458
1.17857
-0.597855
1.19253
-0.603202
1.20421
-0.607491
1.21388
-0.610715
1.2215
-0.612867
1.2268
-0.613944
1.23004
-0.613944
1.23121
-0.612867
1.23004
-0.610715
1.22681
-0.607491
1.22151
-0.603202
1.21389
-0.597855
1.20423
-0.591458
1.19254
-0.584024
1.17859
-0.575566
1.16265
-0.566097
1.14477
-0.555636
1.1247
-0.5442
1.10274
-0.531808
1.07893
-0.518485
1.05307
-0.504252
1.02544
-0.489133
0.996089
-0.473157
0.964837
-0.456351
0.93197
-0.438744
0.897533
-0.420367
0.861386
-0.401254
0.823798
-0.381435
0.784821
-0.360948
0.74435
-0.339828
0.702633
-0.318111
0.659732
-0.295836
0.615574
-0.273043
0.570388
-0.249769
0.524238
-0.226059
0.47709
-0.201952
0.429146
-0.177489
0.380475
-0.152716
0.331081
-0.127676
0.281135
-0.102409
0.230712
-0.0769652
0.17985
-0.051386
0.128691
-0.0257146
0.0773106
0.0257827
0.0259209
-0.025966
0.0517983
-0.0778603
0.077583
-0.129606
0.103232
-0.181129
0.128701
-0.232353
0.153943
-0.283135
0.178914
-0.333435
0.203574
-0.383181
0.227875
-0.432197
0.251776
-0.480482
0.275237
-0.527966
0.298213
-0.574444
0.320666
-0.619952
0.342559
-0.664423
0.363848
-0.70763
0.3845
-0.749643
0.404479
-0.790402
0.423746
-0.829656
0.44227
-0.867512
0.46002
-0.903915
0.476961
-0.938597
0.493065
-0.971699
0.508306
-1.00317
0.522654
-1.03273
0.536085
-1.06056
0.548576
-1.08661
0.560104
-1.11059
0.570649
-1.1327
0.580195
-1.15291
0.588721
-1.17092
0.596215
-1.18697
0.602663
-1.20102
0.608054
-1.21279
0.612377
-1.22252
0.615627
-1.2302
0.617797
-1.23553
0.618882
-1.23879
0.618882
-1.23997
0.617797
-1.23879
0.615627
-1.23553
0.612377
-1.23019
0.608054
-1.22251
0.602663
-1.21278
0.596215
-1.20101
0.588721
-1.18695
0.580195
-1.1709
0.570649
-1.15288
0.560104
-1.13267
0.548576
-1.11056
0.536085
-1.08658
0.522654
-1.06053
0.508306
-1.03271
0.493065
-1.00314
0.476961
-0.971668
0.46002
-0.938566
0.44227
-0.903884
0.423746
-0.86748
0.404479
-0.829624
0.3845
-0.790371
0.363848
-0.749613
0.342559
-0.7076
0.320666
-0.664395
0.298213
-0.619924
0.275237
-0.574418
0.251776
-0.527941
0.227875
-0.48046
0.203574
-0.432177
0.178915
-0.383154
0.153943
-0.333427
0.1287
-0.283126
0.103232
-0.232331
0.077583
-0.181124
0.0517978
-0.129602
0.0259215
-0.0778529
1.07092e-12
-0.0259659
-0.0259215
0.0259659
-0.0517977
0.0778529
-0.0775828
0.129602
-0.103232
0.181124
-0.1287
0.232331
-0.153942
0.283126
-0.178914
0.333427
-0.203573
0.383154
-0.227873
0.432177
-0.251774
0.48046
-0.275234
0.527941
-0.298211
0.574418
-0.320663
0.619924
-0.342555
0.664395
-0.363845
0.7076
-0.384496
0.749613
-0.404474
0.790371
-0.423741
0.829624
-0.442265
0.86748
-0.460014
0.903884
-0.476954
0.938566
-0.493059
0.971668
-0.508299
1.00314
-0.522646
1.03271
-0.536077
1.06053
-0.548568
1.08658
-0.560095
1.11056
-0.57064
1.13267
-0.580185
1.15288
-0.588711
1.1709
-0.596205
1.18695
-0.602653
1.20101
-0.608043
1.21278
-0.612367
1.22251
-0.615617
1.23019
-0.617786
1.23553
-0.618872
1.23879
-0.618872
1.23997
-0.617786
1.23879
-0.615617
1.23553
-0.612367
1.2302
-0.608043
1.22252
-0.602653
1.21279
-0.596205
1.20102
-0.588711
1.18697
-0.580185
1.17092
-0.57064
1.15291
-0.560095
1.1327
-0.548568
1.11059
-0.536077
1.08661
-0.522646
1.06056
-0.508299
1.03273
-0.493059
1.00317
-0.476954
0.971699
-0.460014
0.938597
-0.442265
0.903915
-0.423741
0.867512
-0.404474
0.829656
-0.384496
0.790402
-0.363845
0.749643
-0.342555
0.70763
-0.320663
0.664423
-0.298211
0.619952
-0.275234
0.574444
-0.251774
0.527966
-0.227873
0.480482
-0.203573
0.432197
-0.178913
0.383181
-0.153942
0.333435
-0.1287
0.283135
-0.103231
0.232353
-0.0775828
0.181129
-0.0517983
0.129606
-0.0259209
0.0778603
0.025966
0.0260818
-0.0261038
0.0521198
-0.0782735
0.0780644
-0.130294
0.103872
-0.18209
0.129499
-0.233586
0.154898
-0.284637
0.180024
-0.335205
0.204837
-0.385215
0.229288
-0.434491
0.253338
-0.483032
0.276944
-0.530767
0.300063
-0.577492
0.322656
-0.623242
0.344684
-0.667949
0.366106
-0.711385
0.386886
-0.753621
0.406988
-0.794597
0.426375
-0.834059
0.445014
-0.872115
0.462874
-0.908712
0.47992
-0.943578
0.496124
-0.976855
0.511459
-1.0085
0.525896
-1.03822
0.53941
-1.06619
0.551979
-1.09237
0.563579
-1.11648
0.57419
-1.13871
0.583794
-1.15902
0.592373
-1.17713
0.599913
-1.19327
0.606402
-1.20739
0.611826
-1.21923
0.616176
-1.22901
0.619446
-1.23672
0.621629
-1.24209
0.622722
-1.24536
0.622722
-1.24655
0.621629
-1.24536
0.619446
-1.24208
0.616176
-1.23672
0.611826
-1.229
0.606402
-1.21921
0.599913
-1.20738
0.592373
-1.19325
0.583794
-1.17711
0.57419
-1.159
0.563579
-1.13868
0.551979
-1.11645
0.53941
-1.09235
0.525896
-1.06616
0.511459
-1.03819
0.496124
-1.00846
0.47992
-0.976824
0.462874
-0.943546
0.445014
-0.90868
0.426375
-0.872083
0.406988
-0.834027
0.386886
-0.794565
0.366106
-0.753591
0.344684
-0.711355
0.322656
-0.66792
0.300063
-0.623214
0.276944
-0.577466
0.253338
-0.530743
0.229288
-0.483009
0.204837
-0.43447
0.180025
-0.385188
0.154898
-0.335196
0.129499
-0.284629
0.103873
-0.233564
0.0780644
-0.182086
0.0521192
-0.13029
0.0260824
-0.078266
1.10972e-12
-0.0261037
-0.0260824
0.0261037
-0.0521191
0.078266
-0.0780643
0.13029
-0.103872
0.182086
-0.129499
0.233564
-0.154897
0.284629
-0.180024
0.335196
-0.204836
0.385188
-0.229287
0.43447
-0.253336
0.483009
-0.276943
0.530743
-0.300061
0.577466
-0.322654
0.623214
-0.344682
0.66792
-0.366103
0.711355
-0.386882
0.753591
-0.406985
0.794565
-0.426371
0.834027
-0.44501
0.872083
-0.462869
0.90868
-0.479915
0.943546
-0.496119
0.976824
-0.511454
1.00846
-0.52589
1.03819
-0.539404
1.06616
-0.551973
1.09235
-0.563572
1.11645
-0.574183
1.13868
-0.583787
1.159
-0.592366
1.17711
-0.599906
1.19325
-0.606394
1.20738
-0.611818
1.21921
-0.616168
1.229
-0.619438
1.23672
-0.621621
1.24208
-0.622714
1.24536
-0.622714
1.24655
-0.621621
1.24536
-0.619438
1.24209
-0.616168
1.23672
-0.611818
1.22901
-0.606394
1.21923
-0.599906
1.20739
-0.592366
1.19327
-0.583787
1.17713
-0.574183
1.15902
-0.563572
1.13871
-0.551973
1.11648
-0.539404
1.09237
-0.52589
1.06619
-0.511454
1.03822
-0.496119
1.0085
-0.479915
0.976855
-0.462869
0.943578
-0.44501
0.908712
-0.426371
0.872115
-0.406985
0.834059
-0.386882
0.794597
-0.366103
0.753621
-0.344682
0.711385
-0.322654
0.667949
-0.300061
0.623242
-0.276943
0.577492
-0.253336
0.530767
-0.229287
0.483032
-0.204836
0.434491
-0.180024
0.385215
-0.154897
0.335205
-0.129499
0.284637
-0.103872
0.233586
-0.0780643
0.18209
-0.0521197
0.130294
-0.0260818
0.0782735
0.0261038
0.0261969
-0.0261958
0.0523498
-0.0785494
0.0784089
-0.130753
0.10433
-0.182732
0.130071
-0.234409
0.155581
-0.28564
0.180819
-0.336386
0.205741
-0.386572
0.2303
-0.436022
0.254455
-0.484734
0.278166
-0.532638
0.301387
-0.579527
0.324079
-0.625438
0.346205
-0.670303
0.367721
-0.713892
0.388592
-0.756277
0.408783
-0.797397
0.428256
-0.836998
0.446977
-0.875189
0.464915
-0.911914
0.482037
-0.946903
0.498313
-0.980298
0.513715
-1.01205
0.528216
-1.04187
0.54179
-1.06995
0.554414
-1.09622
0.566065
-1.12041
0.576722
-1.14272
0.586369
-1.16311
0.594986
-1.18128
0.60256
-1.19747
0.609076
-1.21165
0.614524
-1.22352
0.618894
-1.23334
0.622178
-1.24108
0.624371
-1.24647
0.625468
-1.24975
0.625468
-1.25094
0.624371
-1.24975
0.622178
-1.24646
0.618894
-1.24107
0.614524
-1.23333
0.609076
-1.22351
0.60256
-1.21163
0.594986
-1.19745
0.586369
-1.18126
0.576722
-1.16309
0.566065
-1.1427
0.554414
-1.12039
0.54179
-1.0962
0.528216
-1.06992
0.513715
-1.04184
0.498313
-1.01202
0.482037
-0.980266
0.464915
-0.946871
0.446977
-0.911882
0.428256
-0.875157
0.408783
-0.836966
0.388592
-0.797365
0.367721
-0.756246
0.346205
-0.713862
0.324079
-0.670274
0.301387
-0.62541
0.278166
-0.579501
0.254455
-0.532613
0.2303
-0.484711
0.205741
-0.436001
0.180819
-0.386545
0.155581
-0.336377
0.13007
-0.285632
0.104331
-0.234387
0.0784089
-0.182727
0.0523492
-0.130749
0.0261975
-0.0785418
1.14692e-12
-0.0261957
-0.0261975
0.0261957
-0.0523491
0.0785418
-0.0784088
0.130749
-0.104331
0.182727
-0.13007
0.234387
-0.155581
0.285632
-0.180819
0.336377
-0.20574
0.386545
-0.230299
0.436001
-0.254455
0.484711
-0.278165
0.532613
-0.301386
0.579501
-0.324078
0.62541
-0.346203
0.670274
-0.367719
0.713862
-0.38859
0.756246
-0.408781
0.797365
-0.428253
0.836966
-0.446974
0.875157
-0.464912
0.911882
-0.482034
0.946871
-0.498309
0.980266
-0.513712
1.01202
-0.528212
1.04184
-0.541786
1.06992
-0.55441
1.0962
-0.56606
1.12039
-0.576718
1.1427
-0.586364
1.16309
-0.594981
1.18126
-0.602555
1.19745
-0.609071
1.21163
-0.614519
1.22351
-0.618889
1.23333
-0.622173
1.24107
-0.624366
1.24646
-0.625463
1.24975
-0.625463
1.25094
-0.624366
1.24975
-0.622173
1.24647
-0.618889
1.24108
-0.614519
1.23334
-0.609071
1.22352
-0.602555
1.21165
-0.594981
1.19747
-0.586364
1.18128
-0.576718
1.16311
-0.56606
1.14272
-0.55441
1.12041
-0.541786
1.09622
-0.528212
1.06995
-0.513712
1.04187
-0.498309
1.01205
-0.482034
0.980298
-0.464912
0.946903
-0.446974
0.911914
-0.428253
0.875189
-0.408781
0.836998
-0.38859
0.797397
-0.367719
0.756277
-0.346203
0.713892
-0.324078
0.670303
-0.301386
0.625438
-0.278165
0.579527
-0.254455
0.532638
-0.230299
0.484734
-0.20574
0.436022
-0.180818
0.386572
-0.155581
0.336386
-0.130071
0.28564
-0.10433
0.234409
-0.0784088
0.182732
-0.0523497
0.130753
-0.0261969
0.0785494
0.0261958
0.026266
-0.0262419
0.0524879
-0.0786874
0.0786158
-0.130983
0.104606
-0.183053
0.130414
-0.234821
0.155992
-0.286142
0.181296
-0.336977
0.206284
-0.387251
0.230908
-0.436788
0.255127
-0.485586
0.2789
-0.533574
0.302182
-0.580546
0.324934
-0.626537
0.347118
-0.671481
0.368691
-0.715147
0.389617
-0.757606
0.409862
-0.798798
0.429386
-0.838469
0.448156
-0.876727
0.466142
-0.913517
0.483308
-0.948567
0.499627
-0.98202
0.51507
-1.01383
0.529609
-1.04371
0.543219
-1.07183
0.555876
-1.09815
0.567557
-1.12238
0.578243
-1.14473
0.587915
-1.16515
0.596555
-1.18336
0.604149
-1.19958
0.610683
-1.21378
0.616145
-1.22567
0.620526
-1.23551
0.623819
-1.24326
0.626018
-1.24866
0.627118
-1.25195
0.627118
-1.25314
0.626018
-1.25195
0.623819
-1.24865
0.620526
-1.24326
0.616145
-1.23549
0.610683
-1.22566
0.604149
-1.21376
0.596555
-1.19956
0.587915
-1.18334
0.578243
-1.16513
0.567557
-1.1447
0.555876
-1.12236
0.543219
-1.09812
0.529609
-1.0718
0.51507
-1.04368
0.499627
-1.0138
0.483308
-0.981989
0.466142
-0.948535
0.448156
-0.913485
0.429386
-0.876695
0.409862
-0.838437
0.389617
-0.798767
0.368691
-0.757575
0.347118
-0.715117
0.324934
-0.671452
0.302182
-0.626509
0.2789
-0.580519
0.255127
-0.533549
0.230908
-0.485563
0.206284
-0.436767
0.181296
-0.387224
0.155992
-0.336968
0.130414
-0.286134
0.104606
-0.234799
0.0786158
-0.183048
0.0524873
-0.130979
0.0262666
-0.0786798
1.18231e-12
-0.0262417
-0.0262666
0.0262417
-0.0524873
0.0786798
-0.0786157
0.130979
-0.104606
0.183048
-0.130413
0.234799
-0.155992
0.286134
-0.181296
0.336968
-0.206283
0.387224
-0.230907
0.436767
-0.255126
0.485563
-0.278899
0.533549
-0.302182
0.580519
-0.324934
0.626509
-0.347117
0.671452
-0.36869
0.715117
-0.389616
0.757575
-0.409861
0.798767
-0.429384
0.838437
-0.448155
0.876695
-0.46614
0.913485
-0.483307
0.948535
-0.499625
0.981989
-0.515069
1.0138
-0.529607
1.04368
-0.543217
1.0718
-0.555874
1.09812
-0.567555
1.12236
-0.578241
1.1447
-0.587913
1.16513
-0.596553
1.18334
-0.604146
1.19956
-0.61068
1.21376
-0.616142
1.22566
-0.620524
1.23549
-0.623817
1.24326
-0.626015
1.24865
-0.627115
1.25195
-0.627115
1.25314
-0.626015
1.25195
-0.623817
1.24866
-0.620524
1.24326
-0.616142
1.23551
-0.61068
1.22567
-0.604146
1.21378
-0.596553
1.19958
-0.587913
1.18336
-0.578241
1.16515
-0.567555
1.14473
-0.555874
1.12238
-0.543217
1.09815
-0.529607
1.07183
-0.515069
1.04371
-0.499625
1.01383
-0.483307
0.98202
-0.46614
0.948567
-0.448155
0.913517
-0.429384
0.876727
-0.409861
0.838469
-0.389616
0.798798
-0.36869
0.757606
-0.347117
0.715147
-0.324934
0.671481
-0.302182
0.626537
-0.278899
0.580546
-0.255126
0.533574
-0.230907
0.485586
-0.206283
0.436788
-0.181296
0.387251
-0.155992
0.336977
-0.130414
0.286142
-0.104606
0.234821
-0.0786157
0.183053
-0.0524879
0.130983
-0.026266
0.0786874
0.0262419
0.0262891
-0.0262419
0.052534
-0.0786874
0.0786848
-0.130983
0.104698
-0.183053
0.130529
-0.234821
0.156129
-0.286142
0.181455
-0.336977
0.206465
-0.387251
0.23111
-0.436788
0.255351
-0.485586
0.279145
-0.533574
0.302447
-0.580546
0.325219
-0.626537
0.347422
-0.671481
0.369014
-0.715147
0.389959
-0.757606
0.410221
-0.798798
0.429762
-0.838469
0.448549
-0.876727
0.46655
-0.913517
0.483732
-0.948567
0.500065
-0.98202
0.515522
-1.01383
0.530073
-1.04371
0.543694
-1.07183
0.556363
-1.09815
0.568055
-1.12238
0.57875
-1.14473
0.58843
-1.16515
0.597078
-1.18336
0.604678
-1.19958
0.611218
-1.21378
0.616684
-1.22567
0.62107
-1.23551
0.624366
-1.24326
0.626566
-1.24866
0.627667
-1.25195
0.627667
-1.25314
0.626566
-1.25195
0.624366
-1.24865
0.62107
-1.24326
0.616684
-1.23549
0.611218
-1.22566
0.604678
-1.21376
0.597078
-1.19956
0.58843
-1.18334
0.57875
-1.16513
0.568055
-1.1447
0.556363
-1.12236
0.543694
-1.09812
0.530073
-1.0718
0.515522
-1.04368
0.500065
-1.0138
0.483732
-0.981989
0.46655
-0.948535
0.448549
-0.913485
0.429762
-0.876695
0.410221
-0.838437
0.389959
-0.798767
0.369014
-0.757575
0.347422
-0.715117
0.325219
-0.671452
0.302447
-0.626509
0.279145
-0.580519
0.255351
-0.533549
0.23111
-0.485563
0.206465
-0.436767
0.181455
-0.387224
0.156129
-0.336968
0.130528
-0.286134
0.104698
-0.234799
0.0786848
-0.183048
0.0525334
-0.130979
0.0262897
-0.0786798
1.21572e-12
-0.0262417
-0.0262897
0.0262417
-0.0525334
0.0786798
-0.0786848
0.130979
-0.104698
0.183048
-0.130528
0.234799
-0.156129
0.286134
-0.181455
0.336968
-0.206465
0.387224
-0.23111
0.436767
-0.255351
0.485563
-0.279145
0.533549
-0.302447
0.580519
-0.325219
0.626509
-0.347422
0.671452
-0.369014
0.715117
-0.389959
0.757575
-0.410221
0.798767
-0.429762
0.838437
-0.448549
0.876695
-0.46655
0.913485
-0.483732
0.948535
-0.500065
0.981989
-0.515522
1.0138
-0.530073
1.04368
-0.543694
1.0718
-0.556363
1.09812
-0.568055
1.12236
-0.57875
1.1447
-0.58843
1.16513
-0.597078
1.18334
-0.604678
1.19956
-0.611218
1.21376
-0.616684
1.22566
-0.62107
1.23549
-0.624366
1.24326
-0.626566
1.24865
-0.627667
1.25195
-0.627667
1.25314
-0.626566
1.25195
-0.624366
1.24866
-0.62107
1.24326
-0.616684
1.23551
-0.611218
1.22567
-0.604678
1.21378
-0.597078
1.19958
-0.58843
1.18336
-0.57875
1.16515
-0.568055
1.14473
-0.556363
1.12238
-0.543694
1.09815
-0.530073
1.07183
-0.515522
1.04371
-0.500065
1.01383
-0.483732
0.98202
-0.46655
0.948567
-0.448549
0.913517
-0.429762
0.876727
-0.410221
0.838469
-0.389959
0.798798
-0.369014
0.757606
-0.347422
0.715147
-0.325219
0.671481
-0.302447
0.626537
-0.279145
0.580546
-0.255351
0.533574
-0.23111
0.485586
-0.206465
0.436788
-0.181455
0.387251
-0.156129
0.336977
-0.130529
0.286142
-0.104698
0.234821
-0.0786848
0.183053
-0.052534
0.130983
-0.0262891
0.0786874
0.0262419
0.026266
-0.0261958
0.0524879
-0.0785494
0.0786157
-0.130753
0.104606
-0.182732
0.130414
-0.234409
0.155992
-0.28564
0.181296
-0.336386
0.206283
-0.386572
0.230907
-0.436022
0.255126
-0.484734
0.278899
-0.532638
0.302182
-0.579527
0.324934
-0.625438
0.347117
-0.670303
0.36869
-0.713892
0.389616
-0.756277
0.409861
-0.797397
0.429384
-0.836998
0.448155
-0.875189
0.46614
-0.911914
0.483307
-0.946903
0.499625
-0.980298
0.515069
-1.01205
0.529607
-1.04187
0.543217
-1.06995
0.555874
-1.09622
0.567555
-1.12041
0.578241
-1.14272
0.587913
-1.16311
0.596553
-1.18128
0.604146
-1.19747
0.61068
-1.21165
0.616142
-1.22352
0.620524
-1.23334
0.623817
-1.24108
0.626015
-1.24647
0.627115
-1.24975
0.627115
-1.25094
0.626015
-1.24975
0.623817
-1.24646
0.620524
-1.24107
0.616142
-1.23333
0.61068
-1.22351
0.604146
-1.21163
0.596553
-1.19745
0.587913
-1.18126
0.578241
-1.16309
0.567555
-1.1427
0.555874
-1.12039
0.543217
-1.0962
0.529607
-1.06992
0.515069
-1.04184
0.499625
-1.01202
0.483307
-0.980266
0.46614
-0.946871
0.448155
-0.911882
0.429384
-0.875157
0.409861
-0.836966
0.389616
-0.797365
0.36869
-0.756246
0.347117
-0.713862
0.324934
-0.670274
0.302182
-0.62541
0.278899
-0.579501
0.255126
-0.532613
0.230907
-0.484711
0.206283
-0.436001
0.181296
-0.386545
0.155992
-0.336377
0.130413
-0.285632
0.104606
-0.234387
0.0786157
-0.182727
0.0524873
-0.130749
0.0262666
-0.0785418
1.24695e-12
-0.0261957
-0.0262666
0.0261957
-0.0524873
0.0785418
-0.0786158
0.130749
-0.104606
0.182727
-0.130414
0.234387
-0.155992
0.285632
-0.181296
0.336377
-0.206284
0.386545
-0.230908
0.436001
-0.255127
0.484711
-0.2789
0.532613
-0.302182
0.579501
-0.324934
0.62541
-0.347118
0.670274
-0.368691
0.713862
-0.389617
0.756246
-0.409862
0.797365
-0.429386
0.836966
-0.448156
0.875157
-0.466142
0.911882
-0.483308
0.946871
-0.499627
0.980266
-0.51507
1.01202
-0.529609
1.04184
-0.543219
1.06992
-0.555876
1.0962
-0.567557
1.12039
-0.578243
1.1427
-0.587915
1.16309
-0.596555
1.18126
-0.604149
1.19745
-0.610683
1.21163
-0.616145
1.22351
-0.620526
1.23333
-0.623819
1.24107
-0.626018
1.24646
-0.627118
1.24975
-0.627118
1.25094
-0.626018
1.24975
-0.623819
1.24647
-0.620526
1.24108
-0.616145
1.23334
-0.610683
1.22352
-0.604149
1.21165
-0.596555
1.19747
-0.587915
1.18128
-0.578243
1.16311
-0.567557
1.14272
-0.555876
1.12041
-0.543219
1.09622
-0.529609
1.06995
-0.51507
1.04187
-0.499627
1.01205
-0.483308
0.980298
-0.466142
0.946903
-0.448156
0.911914
-0.429386
0.875189
-0.409862
0.836998
-0.389617
0.797397
-0.368691
0.756277
-0.347118
0.713892
-0.324934
0.670303
-0.302182
0.625438
-0.2789
0.579527
-0.255127
0.532638
-0.230908
0.484734
-0.206284
0.436022
-0.181296
0.386572
-0.155992
0.336386
-0.130414
0.28564
-0.104606
0.234409
-0.0786158
0.182732
-0.0524879
0.130753
-0.026266
0.0785494
0.0261958
0.0261969
-0.0261038
0.0523497
-0.0782735
0.0784088
-0.130294
0.10433
-0.18209
0.130071
-0.233586
0.155581
-0.284637
0.180818
-0.335205
0.20574
-0.385215
0.230299
-0.434491
0.254455
-0.483032
0.278165
-0.530767
0.301386
-0.577492
0.324078
-0.623242
0.346203
-0.667949
0.367719
-0.711385
0.38859
-0.753621
0.408781
-0.794597
0.428253
-0.834059
0.446974
-0.872115
0.464912
-0.908712
0.482034
-0.943578
0.498309
-0.976855
0.513712
-1.0085
0.528212
-1.03822
0.541786
-1.06619
0.55441
-1.09237
0.56606
-1.11648
0.576718
-1.13871
0.586364
-1.15902
0.594981
-1.17713
0.602555
-1.19327
0.609071
-1.20739
0.614519
-1.21923
0.618889
-1.22901
0.622173
-1.23672
0.624366
-1.24209
0.625463
-1.24536
0.625463
-1.24655
0.624366
-1.24536
0.622173
-1.24208
0.618889
-1.23672
0.614519
-1.229
0.609071
-1.21921
0.602555
-1.20738
0.594981
-1.19325
0.586364
-1.17711
0.576718
-1.159
0.56606
-1.13868
0.55441
-1.11645
0.541786
-1.09235
0.528212
-1.06616
0.513712
-1.03819
0.498309
-1.00846
0.482034
-0.976824
0.464912
-0.943546
0.446974
-0.90868
0.428253
-0.872083
0.408781
-0.834027
0.38859
-0.794565
0.367719
-0.753591
0.346203
-0.711355
0.324078
-0.66792
0.301386
-0.623214
0.278165
-0.577466
0.254455
-0.530743
0.230299
-0.483009
0.20574
-0.43447
0.180819
-0.385188
0.155581
-0.335196
0.13007
-0.284629
0.104331
-0.233564
0.0784088
-0.182086
0.0523491
-0.13029
0.0261975
-0.078266
1.27591e-12
-0.0261037
-0.0261975
0.0261037
-0.0523492
0.078266
-0.0784089
0.13029
-0.104331
0.182086
-0.13007
0.233564
-0.155581
0.284629
-0.180819
0.335196
-0.205741
0.385188
-0.2303
0.43447
-0.254455
0.483009
-0.278166
0.530743
-0.301387
0.577466
-0.324079
0.623214
-0.346205
0.66792
-0.367721
0.711355
-0.388592
0.753591
-0.408783
0.794565
-0.428256
0.834027
-0.446977
0.872083
-0.464915
0.90868
-0.482037
0.943546
-0.498313
0.976824
-0.513715
1.00846
-0.528216
1.03819
-0.54179
1.06616
-0.554414
1.09235
-0.566065
1.11645
-0.576722
1.13868
-0.586369
1.159
-0.594986
1.17711
-0.60256
1.19325
-0.609076
1.20738
-0.614524
1.21921
-0.618894
1.229
-0.622178
1.23672
-0.624371
1.24208
-0.625468
1.24536
-0.625468
1.24655
-0.624371
1.24536
-0.622178
1.24209
-0.618894
1.23672
-0.614524
1.22901
-0.609076
1.21923
-0.60256
1.20739
-0.594986
1.19327
-0.586369
1.17713
-0.576722
1.15902
-0.566065
1.13871
-0.554414
1.11648
-0.54179
1.09237
-0.528216
1.06619
-0.513715
1.03822
-0.498313
1.0085
-0.482037
0.976855
-0.464915
0.943578
-0.446977
0.908712
-0.428256
0.872115
-0.408783
0.834059
-0.388592
0.794597
-0.367721
0.753621
-0.346205
0.711385
-0.324079
0.667949
-0.301387
0.623242
-0.278166
0.577492
-0.254455
0.530767
-0.2303
0.483032
-0.205741
0.434491
-0.180819
0.385215
-0.155581
0.335205
-0.130071
0.284637
-0.10433
0.233586
-0.0784089
0.18209
-0.0523498
0.130294
-0.0261969
0.0782735
0.0261038
0.0260818
-0.025966
0.0521197
-0.0778603
0.0780643
-0.129606
0.103872
-0.181129
0.129499
-0.232353
0.154897
-0.283135
0.180024
-0.333435
0.204836
-0.383181
0.229287
-0.432197
0.253336
-0.480482
0.276943
-0.527966
0.300061
-0.574444
0.322654
-0.619952
0.344682
-0.664423
0.366103
-0.70763
0.386882
-0.749643
0.406985
-0.790402
0.426371
-0.829656
0.44501
-0.867512
0.462869
-0.903915
0.479915
-0.938597
0.496119
-0.971699
0.511454
-1.00317
0.52589
-1.03273
0.539404
-1.06056
0.551973
-1.08661
0.563572
-1.11059
0.574183
-1.1327
0.583787
-1.15291
0.592366
-1.17092
0.599906
-1.18697
0.606394
-1.20102
0.611818
-1.21279
0.616168
-1.22252
0.619438
-1.2302
0.621621
-1.23553
0.622714
-1.23879
0.622714
-1.23997
0.621621
-1.23879
0.619438
-1.23553
0.616168
-1.23019
0.611818
-1.22251
0.606394
-1.21278
0.599906
-1.20101
0.592366
-1.18695
0.583787
-1.1709
0.574183
-1.15288
0.563572
-1.13267
0.551973
-1.11056
0.539404
-1.08658
0.52589
-1.06053
0.511454
-1.03271
0.496119
-1.00314
0.479915
-0.971668
0.462869
-0.938566
0.44501
-0.903884
0.426371
-0.86748
0.406985
-0.829624
0.386882
-0.790371
0.366103
-0.749613
0.344682
-0.7076
0.322654
-0.664395
0.300061
-0.619924
0.276943
-0.574418
0.253336
-0.527941
0.229287
-0.48046
0.204836
-0.432177
0.180024
-0.383154
0.154897
-0.333427
0.129499
-0.283126
0.103872
-0.232331
0.0780643
-0.181124
0.0521191
-0.129602
0.0260824
-0.0778529
1.30244e-12
-0.0259659
-0.0260824
0.0259659
-0.0521192
0.0778529
-0.0780644
0.129602
-0.103873
0.181124
-0.129499
0.232331
-0.154898
0.283126
-0.180025
0.333427
-0.204837
0.383154
-0.229288
0.432177
-0.253338
0.48046
-0.276944
0.527941
-0.300063
0.574418
-0.322656
0.619924
-0.344684
0.664395
-0.366106
0.7076
-0.386886
0.749613
-0.406988
0.790371
-0.426375
0.829624
-0.445014
0.86748
-0.462874
0.903884
-0.47992
0.938566
-0.496124
0.971668
-0.511459
1.00314
-0.525896
1.03271
-0.53941
1.06053
-0.551979
1.08658
-0.563579
1.11056
-0.57419
1.13267
-0.583794
1.15288
-0.592373
1.1709
-0.599913
1.18695
-0.606402
1.20101
-0.611826
1.21278
-0.616176
1.22251
-0.619446
1.23019
-0.621629
1.23553
-0.622722
1.23879
-0.622722
1.23997
-0.621629
1.23879
-0.619446
1.23553
-0.616176
1.2302
-0.611826
1.22252
-0.606402
1.21279
-0.599913
1.20102
-0.592373
1.18697
-0.583794
1.17092
-0.57419
1.15291
-0.563579
1.1327
-0.551979
1.11059
-0.53941
1.08661
-0.525896
1.06056
-0.511459
1.03273
-0.496124
1.00317
-0.47992
0.971699
-0.462874
0.938597
-0.445014
0.903915
-0.426375
0.867512
-0.406988
0.829656
-0.386886
0.790402
-0.366106
0.749643
-0.344684
0.70763
-0.322656
0.664423
-0.300063
0.619952
-0.276944
0.574444
-0.253338
0.527966
-0.229288
0.480482
-0.204837
0.432197
-0.180024
0.383181
-0.154898
0.333435
-0.129499
0.283135
-0.103872
0.232353
-0.0780644
0.181129
-0.0521198
0.129606
-0.0260818
0.0778603
0.025966
0.0259209
-0.0257827
0.0517983
-0.0773106
0.0775828
-0.128691
0.103231
-0.17985
0.1287
-0.230712
0.153942
-0.281135
0.178913
-0.331081
0.203573
-0.380475
0.227873
-0.429146
0.251774
-0.47709
0.275234
-0.524238
0.298211
-0.570388
0.320663
-0.615574
0.342555
-0.659732
0.363845
-0.702633
0.384496
-0.74435
0.404474
-0.784821
0.423741
-0.823798
0.442265
-0.861386
0.460014
-0.897533
0.476954
-0.93197
0.493059
-0.964837
0.508299
-0.996089
0.522646
-1.02544
0.536077
-1.05307
0.548568
-1.07893
0.560095
-1.10274
0.57064
-1.1247
0.580185
-1.14477
0.588711
-1.16265
0.596205
-1.17859
0.602653
-1.19254
0.608043
-1.20423
0.612367
-1.21389
0.615617
-1.22151
0.617786
-1.22681
0.618872
-1.23004
0.618872
-1.23121
0.617786
-1.23004
0.615617
-1.2268
0.612367
-1.2215
0.608043
-1.21388
0.602653
-1.20421
0.596205
-1.19253
0.588711
-1.17857
0.580185
-1.16263
0.57064
-1.14474
0.560095
-1.12467
0.548568
-1.10272
0.536077
-1.07891
0.522646
-1.05304
0.508299
-1.02541
0.493059
-0.996059
0.476954
-0.964807
0.460014
-0.931939
0.442265
-0.897501
0.423741
-0.861355
0.404474
-0.823767
0.384496
-0.784791
0.363845
-0.74432
0.342555
-0.702604
0.320663
-0.659704
0.298211
-0.615547
0.275234
-0.570362
0.251774
-0.524214
0.227873
-0.477067
0.203573
-0.429125
0.178914
-0.380449
0.153942
-0.331073
0.1287
-0.281127
0.103232
-0.230691
0.0775828
-0.179846
0.0517977
-0.128687
0.0259215
-0.0773032
1.32637e-12
-0.0257825
-0.0259215
0.0257825
-0.0517978
0.0773032
-0.077583
0.128687
-0.103232
0.179846
-0.1287
0.230691
-0.153943
0.281127
-0.178915
0.331073
-0.203574
0.380449
-0.227875
0.429125
-0.251776
0.477067
-0.275237
0.524214
-0.298213
0.570362
-0.320666
0.615547
-0.342559
0.659704
-0.363848
0.702604
-0.3845
0.74432
-0.404479
0.784791
-0.423746
0.823767
-0.44227
0.861355
-0.46002
0.897501
-0.476961
0.931939
-0.493065
0.964807
-0.508306
0.996059
-0.522654
1.02541
-0.536085
1.05304
-0.548576
1.07891
-0.560104
1.10272
-0.570649
1.12467
-0.580195
1.14474
-0.588721
1.16263
-0.596215
1.17857
-0.602663
1.19253
-0.608054
1.20421
-0.612377
1.21388
-0.615627
1.2215
-0.617797
1.2268
-0.618882
1.23004
-0.618882
1.23121
-0.617797
1.23004
-0.615627
1.22681
-0.612377
1.22151
-0.608054
1.21389
-0.602663
1.20423
-0.596215
1.19254
-0.588721
1.17859
-0.580195
1.16265
-0.570649
1.14477
-0.560104
1.1247
-0.548576
1.10274
-0.536085
1.07893
-0.522654
1.05307
-0.508306
1.02544
-0.493065
0.996089
-0.476961
0.964837
-0.46002
0.93197
-0.44227
0.897533
-0.423746
0.861386
-0.404479
0.823798
-0.3845
0.784821
-0.363848
0.74435
-0.342559
0.702633
-0.320666
0.659732
-0.298213
0.615574
-0.275237
0.570388
-0.251776
0.524238
-0.227875
0.47709
-0.203574
0.429146
-0.178914
0.380475
-0.153943
0.331081
-0.128701
0.281135
-0.103232
0.230712
-0.077583
0.17985
-0.0517983
0.128691
-0.0259209
0.0773106
0.0257827
0.0257146
-0.0255541
0.051386
-0.0766252
0.0769652
-0.12755
0.102409
-0.178255
0.127676
-0.228667
0.152716
-0.278643
0.177489
-0.328145
0.201952
-0.377102
0.226059
-0.425341
0.249769
-0.47286
0.273043
-0.51959
0.295836
-0.565331
0.318111
-0.610117
0.339828
-0.653883
0.360948
-0.696404
0.381435
-0.737751
0.401254
-0.777863
0.420367
-0.816494
0.438744
-0.85375
0.456351
-0.889575
0.473157
-0.923707
0.489133
-0.956284
0.504252
-0.987258
0.518485
-1.01635
0.531808
-1.04374
0.5442
-1.06937
0.555636
-1.09297
0.566097
-1.11473
0.575566
-1.13462
0.584024
-1.15235
0.591458
-1.16814
0.597855
-1.18197
0.603202
-1.19355
0.607491
-1.20313
0.610715
-1.21068
0.612867
-1.21593
0.613944
-1.21914
0.613944
-1.2203
0.612867
-1.21914
0.610715
-1.21593
0.607491
-1.21067
0.603202
-1.20312
0.597855
-1.19354
0.591458
-1.18195
0.584024
-1.16812
0.575566
-1.15233
0.566097
-1.1346
0.555636
-1.1147
0.5442
-1.09294
0.531808
-1.06934
0.518485
-1.04371
0.504252
-1.01632
0.489133
-0.987229
0.473157
-0.956254
0.456351
-0.923677
0.438744
-0.889545
0.420367
-0.853719
0.401254
-0.816464
0.381435
-0.777833
0.360948
-0.737722
0.339828
-0.696376
0.318111
-0.653855
0.295836
-0.61009
0.273043
-0.565306
0.249769
-0.519567
0.226059
-0.472838
0.201952
-0.425321
0.17749
-0.377076
0.152716
-0.328138
0.127675
-0.278635
0.10241
-0.228645
0.0769652
-0.178251
0.0513854
-0.127546
0.0257152
-0.0766179
1.34747e-12
-0.025554
-0.0257152
0.025554
-0.0513855
0.0766179
-0.0769654
0.127546
-0.10241
0.178251
-0.127676
0.228645
-0.152717
0.278635
-0.177491
0.328138
-0.201954
0.377076
-0.226061
0.425321
-0.249772
0.472838
-0.273046
0.519567
-0.29584
0.565306
-0.318114
0.61009
-0.339832
0.653855
-0.360953
0.696376
-0.38144
0.737722
-0.401259
0.777833
-0.420374
0.816464
-0.43875
0.853719
-0.456359
0.889545
-0.473165
0.923677
-0.489141
0.956254
-0.504261
0.987229
-0.518494
1.01632
-0.531818
1.04371
-0.54421
1.06934
-0.555647
1.09294
-0.566108
1.1147
-0.575577
1.1346
-0.584036
1.15233
-0.59147
1.16812
-0.597867
1.18195
-0.603215
1.19354
-0.607504
1.20312
-0.610728
1.21067
-0.61288
1.21593
-0.613957
1.21914
-0.613957
1.2203
-0.61288
1.21914
-0.610728
1.21593
-0.607504
1.21068
-0.603215
1.20313
-0.597867
1.19355
-0.59147
1.18197
-0.584036
1.16814
-0.575577
1.15235
-0.566108
1.13462
-0.555647
1.11473
-0.54421
1.09297
-0.531818
1.06937
-0.518494
1.04374
-0.504261
1.01635
-0.489141
0.987258
-0.473165
0.956284
-0.456359
0.923707
-0.43875
0.889575
-0.420374
0.85375
-0.401259
0.816494
-0.38144
0.777863
-0.360953
0.737751
-0.339832
0.696404
-0.318114
0.653883
-0.29584
0.610117
-0.273046
0.565331
-0.249772
0.51959
-0.226061
0.47286
-0.201954
0.425341
-0.17749
0.377102
-0.152717
0.328145
-0.127676
0.278643
-0.10241
0.228667
-0.0769654
0.178255
-0.051386
0.12755
-0.0257146
0.0766252
0.0255541
0.0254631
-0.0252807
0.0508835
-0.0758053
0.0762126
-0.126186
0.101408
-0.176348
0.126427
-0.22622
0.151223
-0.275662
0.175753
-0.324635
0.199977
-0.373068
0.223848
-0.42079
0.247327
-0.467801
0.270373
-0.514031
0.292943
-0.559282
0.315
-0.603589
0.336505
-0.646887
0.357418
-0.688953
0.377705
-0.729858
0.39733
-0.769541
0.416256
-0.807758
0.434453
-0.844615
0.451888
-0.880058
0.46853
-0.913824
0.484349
-0.946052
0.49932
-0.976695
0.513414
-1.00548
0.526607
-1.03257
0.538878
-1.05793
0.550202
-1.08127
0.560561
-1.1028
0.569937
-1.12248
0.578312
-1.14002
0.585673
-1.15564
0.592008
-1.16932
0.597303
-1.18078
0.60155
-1.19025
0.604742
-1.19773
0.606873
-1.20292
0.60794
-1.2061
0.60794
-1.20724
0.606873
-1.20609
0.604742
-1.20292
0.60155
-1.19772
0.597303
-1.19024
0.592008
-1.18077
0.585673
-1.16931
0.578312
-1.15562
0.569937
-1.14
0.560561
-1.12246
0.550202
-1.10278
0.538878
-1.08125
0.526607
-1.0579
0.513414
-1.03254
0.49932
-1.00545
0.484349
-0.976666
0.46853
-0.946023
0.451888
-0.913795
0.434453
-0.880028
0.416256
-0.844585
0.39733
-0.807729
0.377705
-0.769511
0.357418
-0.729829
0.336505
-0.688925
0.315
-0.64686
0.292943
-0.603563
0.270373
-0.559258
0.247327
-0.514008
0.223848
-0.467779
0.199977
-0.420771
0.175754
-0.373042
0.151223
-0.324627
0.126427
-0.275654
0.101409
-0.226199
0.0762126
-0.176344
0.0508829
-0.126182
0.0254637
-0.0757982
1.36567e-12
-0.0252806
-0.0254637
0.0252806
-0.050883
0.0757982
-0.0762129
0.126182
-0.101409
0.176344
-0.126428
0.226199
-0.151224
0.275654
-0.175755
0.324627
-0.199979
0.373042
-0.223851
0.420771
-0.24733
0.467779
-0.270376
0.514008
-0.292947
0.559258
-0.315004
0.603563
-0.33651
0.64686
-0.357424
0.688925
-0.377711
0.729829
-0.397336
0.769511
-0.416264
0.807729
-0.434461
0.844585
-0.451897
0.880028
-0.468539
0.913795
-0.484359
0.946023
-0.499331
0.976666
-0.513425
1.00545
-0.526619
1.03254
-0.53889
1.0579
-0.550215
1.08125
-0.560574
1.10278
-0.56995
1.12246
-0.578326
1.14
-0.585688
1.15562
-0.592022
1.16931
-0.597318
1.18077
-0.601565
1.19024
-0.604758
1.19772
-0.606889
1.20292
-0.607955
1.20609
-0.607955
1.20724
-0.606889
1.2061
-0.604758
1.20292
-0.601565
1.19773
-0.597318
1.19025
-0.592022
1.18078
-0.585688
1.16932
-0.578326
1.15564
-0.56995
1.14002
-0.560574
1.12248
-0.550215
1.1028
-0.53889
1.08127
-0.526619
1.05793
-0.513425
1.03257
-0.499331
1.00548
-0.484359
0.976695
-0.468539
0.946052
-0.451897
0.913824
-0.434461
0.880058
-0.416264
0.844615
-0.397336
0.807758
-0.377711
0.769541
-0.357424
0.729858
-0.33651
0.688953
-0.315004
0.646887
-0.292947
0.603589
-0.270376
0.559282
-0.24733
0.514031
-0.223851
0.467801
-0.199979
0.42079
-0.175755
0.373068
-0.151224
0.324635
-0.126428
0.275662
-0.101408
0.22622
-0.0762129
0.176348
-0.0508836
0.126186
-0.0254632
0.0758053
0.0252807
0.025167
-0.0249629
0.0502918
-0.0748525
0.0753263
-0.1246
0.100229
-0.174132
0.124957
-0.223377
0.149464
-0.272197
0.17371
-0.320554
0.197652
-0.368378
0.221245
-0.415501
0.244451
-0.461921
0.267229
-0.50757
0.289537
-0.552252
0.311336
-0.596002
0.332591
-0.638756
0.353262
-0.680294
0.373312
-0.720684
0.392709
-0.759868
0.411415
-0.797606
0.4294
-0.833999
0.446633
-0.868996
0.463081
-0.902338
0.478716
-0.934161
0.493513
-0.964419
0.507443
-0.99284
0.520483
-1.01959
0.53261
-1.04463
0.543802
-1.06768
0.554041
-1.08894
0.563308
-1.10837
0.571586
-1.12569
0.578862
-1.14111
0.585122
-1.15463
0.590355
-1.16594
0.594553
-1.17529
0.597708
-1.18267
0.599815
-1.1878
0.600869
-1.19094
0.600869
-1.19207
0.599815
-1.19093
0.597708
-1.1878
0.594553
-1.18267
0.590355
-1.17528
0.585122
-1.16593
0.578862
-1.15461
0.571586
-1.1411
0.563308
-1.12567
0.554041
-1.10835
0.543802
-1.08892
0.53261
-1.06766
0.520483
-1.04461
0.507443
-1.01956
0.493513
-0.992813
0.478716
-0.964391
0.463081
-0.934133
0.446633
-0.902309
0.4294
-0.868967
0.411415
-0.83397
0.392709
-0.797576
0.373312
-0.75984
0.353262
-0.720656
0.332591
-0.680266
0.311336
-0.63873
0.289537
-0.595977
0.267229
-0.552228
0.244451
-0.507547
0.221245
-0.4619
0.197652
-0.415482
0.17371
-0.368353
0.149464
-0.320547
0.124957
-0.272189
0.100229
-0.223356
0.0753263
-0.174128
0.0502912
-0.124596
0.0251676
-0.0748455
1.38072e-12
-0.0249628
-0.0251676
0.0249628
-0.0502913
0.0748455
-0.0753266
0.124596
-0.10023
0.174128
-0.124957
0.223356
-0.149466
0.272189
-0.173712
0.320547
-0.197654
0.368353
-0.221248
0.415482
-0.244454
0.4619
-0.267232
0.507547
-0.289541
0.552228
-0.311341
0.595977
-0.332597
0.63873
-0.353268
0.680266
-0.373319
0.720656
-0.392716
0.75984
-0.411424
0.797576
-0.429409
0.83397
-0.446643
0.868967
-0.463091
0.902309
-0.478727
0.934133
-0.493525
0.964391
-0.507456
0.992813
-0.520496
1.01956
-0.532624
1.04461
-0.543817
1.06766
-0.554056
1.08892
-0.563324
1.10835
-0.571602
1.12567
-0.578878
1.1411
-0.585139
1.15461
-0.590373
1.16593
-0.594571
1.17528
-0.597726
1.18267
-0.599833
1.1878
-0.600887
1.19093
-0.600887
1.19207
-0.599833
1.19094
-0.597726
1.1878
-0.594571
1.18267
-0.590373
1.17529
-0.585139
1.16594
-0.578878
1.15463
-0.571602
1.14111
-0.563324
1.12569
-0.554056
1.10837
-0.543817
1.08894
-0.532624
1.06768
-0.520496
1.04463
-0.507456
1.01959
-0.493525
0.99284
-0.478727
0.964419
-0.463091
0.934161
-0.446643
0.902338
-0.429409
0.868996
-0.411424
0.833999
-0.392716
0.797606
-0.373319
0.759868
-0.353268
0.720684
-0.332597
0.680294
-0.311341
0.638756
-0.289541
0.596002
-0.267232
0.552252
-0.244454
0.50757
-0.221248
0.461921
-0.197654
0.415501
-0.173711
0.368378
-0.149466
0.320554
-0.124958
0.272197
-0.100229
0.223377
-0.0753266
0.174132
-0.0502919
0.1246
-0.0251671
0.0748525
0.0249629
0.0248268
-0.0246014
0.0496118
-0.0737684
0.0743079
-0.122795
0.0988736
-0.17161
0.123268
-0.220142
0.147444
-0.268254
0.171361
-0.315911
0.194979
-0.363043
0.218254
-0.409483
0.241145
-0.455231
0.263616
-0.500218
0.285622
-0.544254
0.307127
-0.58737
0.328094
-0.629505
0.348485
-0.67044
0.368264
-0.710246
0.387399
-0.748863
0.405852
-0.786053
0.423594
-0.82192
0.440593
-0.85641
0.456819
-0.889269
0.472243
-0.920631
0.48684
-0.95045
0.500581
-0.97846
0.513445
-1.00482
0.525408
-1.0295
0.536449
-1.05222
0.546549
-1.07317
0.555691
-1.09232
0.563857
-1.10938
0.571034
-1.12459
0.57721
-1.1379
0.582373
-1.14905
0.586514
-1.15827
0.589626
-1.16554
0.591704
-1.1706
0.592744
-1.17369
0.592744
-1.1748
0.591704
-1.17368
0.589626
-1.17059
0.586514
-1.16554
0.582373
-1.15826
0.57721
-1.14904
0.571034
-1.13789
0.563857
-1.12457
0.555691
-1.10937
0.546549
-1.0923
0.536449
-1.07315
0.525408
-1.0522
0.513445
-1.02948
0.500581
-1.0048
0.48684
-0.978434
0.472243
-0.950423
0.456819
-0.920603
0.440593
-0.889241
0.423594
-0.856381
0.405852
-0.821891
0.387399
-0.786025
0.368264
-0.748835
0.348485
-0.710218
0.328094
-0.670414
0.307127
-0.629479
0.285622
-0.587345
0.263616
-0.54423
0.241145
-0.500197
0.218254
-0.45521
0.194979
-0.409465
0.171361
-0.363019
0.147444
-0.315904
0.123267
-0.268247
0.0988742
-0.220121
0.0743079
-0.171606
0.0496112
-0.122791
0.0248273
-0.0737615
1.39262e-12
-0.0246013
-0.0248274
0.0246013
-0.0496114
0.0737615
-0.0743082
0.122791
-0.0988747
0.171606
-0.123268
0.220121
-0.147445
0.268247
-0.171363
0.315904
-0.194981
0.363019
-0.218256
0.409465
-0.241149
0.45521
-0.26362
0.500197
-0.285626
0.54423
-0.307132
0.587345
-0.328101
0.629479
-0.348492
0.670414
-0.368272
0.710218
-0.387407
0.748835
-0.405862
0.786025
-0.423604
0.821891
-0.440605
0.856381
-0.456831
0.889241
-0.472256
0.920603
-0.486853
0.950423
-0.500596
0.978434
-0.51346
1.0048
-0.525424
1.02948
-0.536466
1.0522
-0.546566
1.07315
-0.555708
1.0923
-0.563875
1.10937
-0.571053
1.12457
-0.577229
1.13789
-0.582392
1.14904
-0.586533
1.15826
-0.589646
1.16554
-0.591724
1.17059
-0.592764
1.17368
-0.592764
1.1748
-0.591724
1.17369
-0.589646
1.1706
-0.586533
1.16554
-0.582392
1.15827
-0.577229
1.14905
-0.571053
1.1379
-0.563875
1.12459
-0.555708
1.10938
-0.546566
1.09232
-0.536466
1.07317
-0.525424
1.05222
-0.51346
1.0295
-0.500596
1.00482
-0.486853
0.97846
-0.472256
0.95045
-0.456831
0.920631
-0.440605
0.889269
-0.423604
0.85641
-0.405862
0.82192
-0.387407
0.786053
-0.368272
0.748863
-0.348492
0.710246
-0.328101
0.67044
-0.307132
0.629505
-0.285626
0.58737
-0.26362
0.544254
-0.241149
0.500218
-0.218256
0.455231
-0.194981
0.409483
-0.171363
0.363043
-0.147445
0.315911
-0.123269
0.268254
-0.0988742
0.220142
-0.0743082
0.17161
-0.0496119
0.122795
-0.0248268
0.0737684
0.0246014
0.0244429
-0.0241967
0.0488448
-0.0725548
0.0731591
-0.120775
0.097345
-0.168786
0.121362
-0.21652
0.145164
-0.263841
0.168712
-0.310714
0.191965
-0.35707
0.214879
-0.402747
0.237417
-0.447742
0.25954
-0.491989
0.281206
-0.5353
0.302378
-0.577707
0.323022
-0.619149
0.343097
-0.659411
0.36257
-0.698562
0.381409
-0.736543
0.399577
-0.773122
0.417044
-0.808398
0.433781
-0.842321
0.449756
-0.87464
0.464941
-0.905486
0.479312
-0.934815
0.492842
-0.962363
0.505506
-0.988293
0.517285
-1.01256
0.528155
-1.03491
0.538098
-1.05551
0.547099
-1.07435
0.555139
-1.09113
0.562205
-1.10609
0.568285
-1.11918
0.573368
-1.13015
0.577445
-1.13922
0.580509
-1.14637
0.582555
-1.15134
0.583579
-1.15438
0.583579
-1.15548
0.582555
-1.15438
0.580509
-1.15134
0.577445
-1.14636
0.573368
-1.13921
0.568285
-1.13014
0.562205
-1.11917
0.555139
-1.10607
0.547099
-1.09112
0.538098
-1.07433
0.528155
-1.05549
0.517285
-1.03489
0.505506
-1.01254
0.492842
-0.988268
0.479312
-0.962338
0.464941
-0.934789
0.449756
-0.905459
0.433781
-0.874613
0.417044
-0.842294
0.399577
-0.808371
0.381409
-0.773095
0.36257
-0.736516
0.343097
-0.698535
0.323022
-0.659385
0.302378
-0.619124
0.281206
-0.577683
0.25954
-0.535278
0.237417
-0.491968
0.214879
-0.447722
0.191965
-0.402729
0.168712
-0.357047
0.145164
-0.310708
0.121361
-0.263835
0.0973456
-0.2165
0.0731591
-0.168783
0.0488442
-0.120771
0.0244435
-0.0725481
1.4014e-12
-0.0241966
-0.0244435
0.0241966
-0.0488444
0.0725481
-0.0731594
0.120771
-0.0973462
0.168783
-0.121362
0.2165
-0.145165
0.263835
-0.168714
0.310708
-0.191967
0.357047
-0.214882
0.402729
-0.237421
0.447722
-0.259544
0.491968
-0.281211
0.535278
-0.302384
0.577683
-0.323028
0.619124
-0.343105
0.659385
-0.362579
0.698535
-0.381419
0.736516
-0.399588
0.773095
-0.417056
0.808371
-0.433794
0.842294
-0.449769
0.874613
-0.464955
0.905459
-0.479327
0.934789
-0.492857
0.962338
-0.505523
0.988268
-0.517302
1.01254
-0.528173
1.03489
-0.538117
1.05549
-0.547118
1.07433
-0.555159
1.09112
-0.562225
1.10607
-0.568306
1.11917
-0.573389
1.13014
-0.577467
1.13921
-0.580531
1.14636
-0.582577
1.15134
-0.583601
1.15438
-0.583601
1.15548
-0.582577
1.15438
-0.580531
1.15134
-0.577467
1.14637
-0.573389
1.13922
-0.568306
1.13015
-0.562225
1.11918
-0.555159
1.10609
-0.547118
1.09113
-0.538117
1.07435
-0.528173
1.05551
-0.517302
1.03491
-0.505523
1.01256
-0.492857
0.988293
-0.479327
0.962363
-0.464955
0.934815
-0.449769
0.905486
-0.433794
0.87464
-0.417056
0.842321
-0.399588
0.808398
-0.381419
0.773122
-0.362579
0.736543
-0.343105
0.698562
-0.323028
0.659411
-0.302384
0.619149
-0.281211
0.577707
-0.259544
0.5353
-0.237421
0.491989
-0.214882
0.447742
-0.191967
0.402747
-0.168713
0.35707
-0.145165
0.310714
-0.121363
0.263841
-0.0973456
0.21652
-0.0731594
0.168786
-0.0488449
0.120775
-0.024443
0.0725548
0.0241967
0.0240162
-0.0237495
0.0479921
-0.071214
0.0718819
-0.118543
0.0956456
-0.165667
0.119243
-0.212519
0.14263
-0.258965
0.165766
-0.304972
0.188614
-0.350472
0.211128
-0.395304
0.233272
-0.439467
0.255009
-0.482897
0.276296
-0.525408
0.297099
-0.567031
0.317382
-0.607707
0.337107
-0.647225
0.356241
-0.685652
0.37475
-0.722931
0.392601
-0.758834
0.409764
-0.793459
0.426208
-0.826755
0.441904
-0.858476
0.456824
-0.888752
0.470944
-0.917539
0.484237
-0.944578
0.496681
-0.970029
0.508253
-0.993852
0.518934
-1.01578
0.528704
-1.03601
0.537547
-1.05449
0.545447
-1.07097
0.552389
-1.08565
0.558364
-1.0985
0.563358
-1.10926
0.567364
-1.11816
0.570374
-1.12519
0.572384
-1.13006
0.57339
-1.13305
0.57339
-1.13412
0.572384
-1.13304
0.570374
-1.13006
0.567364
-1.12518
0.563358
-1.11815
0.558364
-1.10925
0.552389
-1.09849
0.545447
-1.08563
0.537547
-1.07095
0.528704
-1.05447
0.518934
-1.03599
0.508253
-1.01576
0.496681
-0.99383
0.484237
-0.970005
0.470944
-0.944554
0.456824
-0.917514
0.441904
-0.888726
0.426208
-0.85845
0.409764
-0.826728
0.392601
-0.793433
0.37475
-0.758808
0.356241
-0.722905
0.337107
-0.685626
0.317382
-0.6472
0.297099
-0.607683
0.276296
-0.567008
0.255009
-0.525386
0.233272
-0.482877
0.211128
-0.439448
0.188614
-0.395287
0.165767
-0.350449
0.14263
-0.304966
0.119243
-0.258959
0.0956462
-0.212499
0.0718819
-0.165664
0.0479916
-0.118539
0.0240168
-0.0712074
1.40655e-12
-0.0237495
-0.0240168
0.0237495
-0.0479917
0.0712074
-0.0718823
0.118539
-0.0956468
0.165664
-0.119244
0.212499
-0.142631
0.258959
-0.165769
0.304966
-0.188616
0.350449
-0.211131
0.395287
-0.233276
0.439448
-0.255014
0.482877
-0.276302
0.525386
-0.297106
0.567008
-0.31739
0.607683
-0.337115
0.6472
-0.35625
0.685626
-0.374761
0.722905
-0.392613
0.758808
-0.409776
0.793433
-0.426221
0.826728
-0.441918
0.85845
-0.45684
0.888726
-0.470961
0.917514
-0.484254
0.944554
-0.496699
0.970005
-0.508272
0.99383
-0.518954
1.01576
-0.528724
1.03599
-0.537568
1.05447
-0.545468
1.07095
-0.552412
1.08563
-0.558386
1.09849
-0.563381
1.10925
-0.567387
1.11815
-0.570398
1.12518
-0.572408
1.13006
-0.573414
1.13304
-0.573414
1.13412
-0.572408
1.13305
-0.570398
1.13006
-0.567387
1.12519
-0.563381
1.11816
-0.558386
1.10926
-0.552412
1.0985
-0.545468
1.08565
-0.537568
1.07097
-0.528724
1.05449
-0.518954
1.03601
-0.508272
1.01578
-0.496699
0.993852
-0.484254
0.970029
-0.470961
0.944578
-0.45684
0.917539
-0.441918
0.888752
-0.426221
0.858476
-0.409776
0.826755
-0.392613
0.793459
-0.374761
0.758834
-0.35625
0.722931
-0.337115
0.685652
-0.31739
0.647225
-0.297106
0.607707
-0.276302
0.567031
-0.255014
0.525408
-0.233276
0.482897
-0.211131
0.439467
-0.188616
0.395304
-0.165768
0.350472
-0.142631
0.304972
-0.119244
0.258965
-0.0956463
0.212519
-0.0718823
0.165667
-0.0479923
0.118543
-0.0240163
0.071214
0.0237495
0.0235474
-0.0232607
0.0470552
-0.0697482
0.0704787
-0.116103
0.0937785
-0.162257
0.116915
-0.208144
0.139845
-0.253635
0.16253
-0.298695
0.184931
-0.343258
0.207006
-0.387167
0.228718
-0.430422
0.250031
-0.472958
0.270903
-0.514593
0.291299
-0.55536
0.311186
-0.595198
0.330526
-0.633903
0.349286
-0.671539
0.367434
-0.708052
0.384937
-0.743216
0.401764
-0.777127
0.417887
-0.809738
0.433277
-0.840806
0.447906
-0.870459
0.46175
-0.898654
0.474783
-0.925137
0.486984
-0.950063
0.498331
-0.973396
0.508803
-0.994876
0.518382
-1.01468
0.527053
-1.03279
0.534798
-1.04893
0.541605
-1.0633
0.547463
-1.07589
0.552359
-1.08643
0.556287
-1.09515
0.559239
-1.10203
0.56121
-1.10681
0.562196
-1.10973
0.562196
-1.11078
0.56121
-1.10972
0.559239
-1.1068
0.556287
-1.10202
0.552359
-1.09514
0.547463
-1.08642
0.541605
-1.07588
0.534798
-1.06329
0.527053
-1.04891
0.518382
-1.03277
0.508803
-1.01466
0.498331
-0.994856
0.486984
-0.973375
0.474783
-0.95004
0.46175
-0.925113
0.447906
-0.898629
0.433277
-0.870435
0.417887
-0.840781
0.401764
-0.809713
0.384937
-0.777102
0.367434
-0.74319
0.349286
-0.708027
0.330526
-0.671515
0.311186
-0.633879
0.291299
-0.595175
0.270903
-0.555338
0.250031
-0.514572
0.228718
-0.472938
0.207006
-0.430403
0.184931
-0.387151
0.162531
-0.343236
0.139845
-0.298689
0.116915
-0.253629
0.093779
-0.208126
0.0704787
-0.162254
0.0470547
-0.1161
0.0235479
-0.0697419
1.40811e-12
-0.0232607
-0.023548
0.0232607
-0.0470549
0.0697419
-0.0704791
0.1161
-0.0937797
0.162254
-0.116916
0.208126
-0.139847
0.253629
-0.162533
0.298689
-0.184934
0.343236
-0.20701
0.387151
-0.228723
0.430403
-0.250036
0.472938
-0.270908
0.514572
-0.291306
0.555338
-0.311194
0.595175
-0.330535
0.633879
-0.349296
0.671515
-0.367445
0.708027
-0.384949
0.74319
-0.401777
0.777102
-0.417902
0.809713
-0.433292
0.840781
-0.447922
0.870435
-0.461767
0.898629
-0.474802
0.925113
-0.487003
0.95004
-0.498351
0.973375
-0.508824
0.994856
-0.518404
1.01466
-0.527075
1.03277
-0.534821
1.04891
-0.541629
1.06329
-0.547487
1.07588
-0.552384
1.08642
-0.556312
1.09514
-0.559264
1.10202
-0.561235
1.1068
-0.562222
1.10972
-0.562222
1.11078
-0.561235
1.10973
-0.559264
1.10681
-0.556312
1.10203
-0.552384
1.09515
-0.547487
1.08643
-0.541629
1.07589
-0.534821
1.0633
-0.527075
1.04893
-0.518404
1.03279
-0.508824
1.01468
-0.498351
0.994876
-0.487003
0.973396
-0.474802
0.950063
-0.461767
0.925137
-0.447922
0.898654
-0.433292
0.870459
-0.417902
0.840806
-0.401777
0.809738
-0.384949
0.777127
-0.367445
0.743216
-0.349296
0.708052
-0.330535
0.671539
-0.311194
0.633903
-0.291306
0.595198
-0.270908
0.55536
-0.250036
0.514593
-0.228723
0.472958
-0.20701
0.430422
-0.184934
0.387167
-0.162532
0.343258
-0.139847
0.298695
-0.116917
0.253635
-0.0937792
0.208144
-0.0704791
0.162257
-0.0470554
0.116103
-0.0235475
0.0697482
0.0232607
0.0230373
-0.022731
0.0460358
-0.06816
0.0689518
-0.113459
0.0917468
-0.158563
0.114382
-0.203405
0.136816
-0.24786
0.159009
-0.291894
0.180925
-0.335442
0.202522
-0.378352
0.223763
-0.420621
0.244614
-0.462189
0.265033
-0.502876
0.284988
-0.542714
0.304444
-0.581646
0.323365
-0.619469
0.341718
-0.656249
0.359474
-0.691929
0.376597
-0.726293
0.393059
-0.759433
0.408834
-0.7913
0.423889
-0.821662
0.438201
-0.850639
0.451746
-0.878192
0.464497
-0.904072
0.476433
-0.92843
0.487534
-0.951233
0.497779
-0.972223
0.507151
-0.991579
0.515633
-1.00927
0.523211
-1.02504
0.529871
-1.03909
0.535601
-1.05139
0.540392
-1.0617
0.544234
-1.07021
0.547122
-1.07693
0.54905
-1.0816
0.550015
-1.08446
0.550015
-1.08549
0.54905
-1.08446
0.547122
-1.0816
0.544234
-1.07693
0.540392
-1.0702
0.535601
-1.06169
0.529871
-1.05138
0.523211
-1.03908
0.515633
-1.02503
0.507151
-1.00926
0.497779
-0.991561
0.487534
-0.972204
0.476433
-0.951212
0.464497
-0.928409
0.451746
-0.904049
0.438201
-0.878169
0.423889
-0.850616
0.408834
-0.821638
0.393059
-0.791276
0.376597
-0.759408
0.359474
-0.726269
0.341718
-0.691906
0.323365
-0.656225
0.304444
-0.619447
0.284988
-0.581624
0.265033
-0.542694
0.244614
-0.502856
0.223763
-0.46217
0.202522
-0.420604
0.180925
-0.378336
0.159009
-0.335421
0.136816
-0.291888
0.114382
-0.247854
0.0917473
-0.203387
0.0689518
-0.15856
0.0460353
-0.113456
0.0230378
-0.0681539
1.406e-12
-0.022731
-0.0230378
0.022731
-0.0460355
0.0681539
-0.0689522
0.113456
-0.091748
0.15856
-0.114383
0.203387
-0.136817
0.247854
-0.159012
0.291888
-0.180928
0.335421
-0.202525
0.378336
-0.223768
0.420604
-0.244619
0.46217
-0.26504
0.502856
-0.284995
0.542694
-0.304453
0.581624
-0.323374
0.619447
-0.341729
0.656225
-0.359485
0.691906
-0.37661
0.726269
-0.393073
0.759408
-0.408849
0.791276
-0.423905
0.821638
-0.438219
0.850616
-0.451764
0.878169
-0.464516
0.904049
-0.476453
0.928409
-0.487555
0.951212
-0.497801
0.972204
-0.507174
0.991561
-0.515657
1.00926
-0.523236
1.02503
-0.529896
1.03908
-0.535627
1.05138
-0.540418
1.06169
-0.544261
1.0702
-0.547149
1.07693
-0.549077
1.0816
-0.550042
1.08446
-0.550042
1.08549
-0.549077
1.08446
-0.547149
1.0816
-0.544261
1.07693
-0.540418
1.07021
-0.535627
1.0617
-0.529896
1.05139
-0.523236
1.03909
-0.515657
1.02504
-0.507174
1.00927
-0.497801
0.991579
-0.487555
0.972223
-0.476453
0.951233
-0.464516
0.92843
-0.451764
0.904072
-0.438219
0.878192
-0.423905
0.850639
-0.408849
0.821662
-0.393073
0.7913
-0.37661
0.759433
-0.359485
0.726293
-0.341729
0.691929
-0.323374
0.656249
-0.304453
0.619469
-0.284995
0.581646
-0.26504
0.542714
-0.244619
0.502876
-0.223768
0.462189
-0.202525
0.420621
-0.180928
0.378352
-0.159011
0.335442
-0.136817
0.291894
-0.114384
0.24786
-0.0917475
0.203405
-0.0689522
0.158563
-0.046036
0.113459
-0.0230373
0.06816
0.022731
0.0224867
-0.0221615
0.0449356
-0.0664523
0.0673039
-0.110617
0.0895541
-0.15459
0.111649
-0.198309
0.133546
-0.24165
0.155209
-0.28458
0.176601
-0.327038
0.197682
-0.368872
0.218415
-0.410083
0.238768
-0.450609
0.258699
-0.490277
0.278177
-0.529117
0.297168
-0.567073
0.315637
-0.603949
0.333551
-0.639807
0.350882
-0.674594
0.367596
-0.708096
0.383665
-0.740405
0.399062
-0.771475
0.413758
-0.801075
0.427728
-0.829327
0.440949
-0.856189
0.453395
-0.881421
0.465046
-0.905169
0.475882
-0.9274
0.485882
-0.947865
0.49503
-0.966736
0.50331
-0.983985
0.510706
-0.999361
0.517206
-1.01306
0.5228
-1.02505
0.527476
-1.0351
0.531227
-1.0434
0.534046
-1.04995
0.535928
-1.05451
0.53687
-1.05729
0.53687
-1.05829
0.535928
-1.05729
0.534046
-1.0545
0.531227
-1.04995
0.527476
-1.04339
0.5228
-1.03509
0.517206
-1.02504
0.510706
-1.01304
0.50331
-0.999346
0.49503
-0.983969
0.485882
-0.966719
0.475882
-0.947847
0.465046
-0.927381
0.453395
-0.905149
0.440949
-0.881399
0.427728
-0.856167
0.413758
-0.829305
0.399062
-0.801053
0.383665
-0.771452
0.367596
-0.740382
0.350882
-0.708073
0.333551
-0.674571
0.315637
-0.639784
0.297168
-0.603927
0.278177
-0.567052
0.258699
-0.529097
0.238768
-0.490258
0.218415
-0.450591
0.197682
-0.410066
0.176601
-0.368857
0.155209
-0.327017
0.133546
-0.284575
0.111648
-0.241645
0.0895546
-0.198291
0.0673039
-0.154587
0.0449351
-0.110614
0.0224872
-0.0664464
1.40003e-12
-0.0221615
-0.0224873
0.0221615
-0.0449353
0.0664464
-0.0673044
0.110614
-0.0895554
0.154587
-0.11165
0.198291
-0.133548
0.241645
-0.155212
0.284575
-0.176604
0.327017
-0.197685
0.368857
-0.21842
0.410066
-0.238773
0.450591
-0.258706
0.490258
-0.278185
0.529097
-0.297177
0.567052
-0.315647
0.603927
-0.333562
0.639784
-0.350894
0.674571
-0.36761
0.708073
-0.38368
0.740382
-0.399078
0.771452
-0.413775
0.801053
-0.427747
0.829305
-0.440968
0.856167
-0.453416
0.881399
-0.465068
0.905149
-0.475904
0.927381
-0.485905
0.947847
-0.495054
0.966719
-0.503335
0.983969
-0.510732
0.999346
-0.517233
1.01304
-0.522827
1.02504
-0.527504
1.03509
-0.531255
1.04339
-0.534074
1.04995
-0.535956
1.0545
-0.536898
1.05729
-0.536898
1.05829
-0.535956
1.05729
-0.534074
1.05451
-0.531255
1.04995
-0.527504
1.0434
-0.522827
1.0351
-0.517233
1.02505
-0.510732
1.01306
-0.503335
0.999361
-0.495054
0.983985
-0.485905
0.966736
-0.475904
0.947865
-0.465068
0.9274
-0.453416
0.905169
-0.440968
0.881421
-0.427747
0.856189
-0.413775
0.829327
-0.399078
0.801075
-0.38368
0.771475
-0.36761
0.740405
-0.350894
0.708096
-0.333562
0.674594
-0.315647
0.639807
-0.297177
0.603949
-0.278185
0.567073
-0.258706
0.529117
-0.238773
0.490277
-0.21842
0.450609
-0.197685
0.410083
-0.176604
0.368872
-0.155211
0.327038
-0.133548
0.28458
-0.11165
0.24165
-0.0895549
0.198309
-0.0673044
0.15459
-0.0449358
0.110617
-0.0224868
0.0664523
0.0221615
0.0218967
-0.0215531
0.0437566
-0.064628
0.065538
-0.10758
0.0872044
-0.150346
0.108719
-0.192865
0.130042
-0.235016
0.151136
-0.276768
0.171967
-0.31806
0.192495
-0.358746
0.212684
-0.398825
0.232503
-0.438238
0.251911
-0.476817
0.270878
-0.514591
0.289371
-0.551505
0.307355
-0.587369
0.324799
-0.622242
0.341675
-0.656074
0.357951
-0.688657
0.373598
-0.720079
0.388591
-0.750296
0.402902
-0.779084
0.416505
-0.80656
0.429379
-0.832684
0.441498
-0.857223
0.452843
-0.88032
0.463395
-0.901941
0.473133
-0.921844
0.48204
-0.940197
0.490103
-0.956972
0.497305
-0.971926
0.503635
-0.985245
0.509082
-0.996912
0.513635
-1.00668
0.517288
-1.01476
0.520033
-1.02113
0.521865
-1.02556
0.522782
-1.02826
0.522782
-1.02924
0.521865
-1.02826
0.520033
-1.02555
0.517288
-1.02112
0.513635
-1.01475
0.509082
-1.00667
0.503635
-0.996901
0.497305
-0.985233
0.490103
-0.971912
0.48204
-0.956957
0.473133
-0.94018
0.463395
-0.921826
0.452843
-0.901922
0.441498
-0.880301
0.429379
-0.857203
0.416505
-0.832664
0.402902
-0.806539
0.388591
-0.779062
0.373598
-0.750274
0.357951
-0.720058
0.341675
-0.688635
0.324799
-0.656053
0.307355
-0.622221
0.289371
-0.587348
0.270878
-0.551485
0.251911
-0.514572
0.232503
-0.476799
0.212684
-0.438221
0.192495
-0.398809
0.171967
-0.358731
0.151137
-0.31804
0.130042
-0.276763
0.108719
-0.235011
0.0872049
-0.192848
0.065538
-0.150344
0.0437561
-0.107577
0.0218972
-0.0646224
1.39029e-12
-0.0215532
-0.0218972
0.0215532
-0.0437563
0.0646224
-0.0655385
0.107577
-0.0872057
0.150344
-0.10872
0.192848
-0.130044
0.235011
-0.151139
0.276763
-0.17197
0.31804
-0.192499
0.358731
-0.212689
0.398809
-0.232508
0.438221
-0.251918
0.476799
-0.270886
0.514572
-0.28938
0.551485
-0.307365
0.587348
-0.324811
0.622221
-0.341688
0.656053
-0.357965
0.688635
-0.373613
0.720058
-0.388608
0.750274
-0.402919
0.779062
-0.416524
0.806539
-0.429399
0.832664
-0.44152
0.857203
-0.452866
0.880301
-0.463418
0.901922
-0.473157
0.921826
-0.482066
0.94018
-0.490129
0.956957
-0.497332
0.971912
-0.503663
0.985233
-0.50911
0.996901
-0.513664
1.00667
-0.517317
1.01475
-0.520062
1.02112
-0.521895
1.02555
-0.522812
1.02826
-0.522812
1.02924
-0.521895
1.02826
-0.520062
1.02556
-0.517317
1.02113
-0.513664
1.01476
-0.50911
1.00668
-0.503663
0.996912
-0.497332
0.985245
-0.490129
0.971926
-0.482066
0.956972
-0.473157
0.940197
-0.463418
0.921844
-0.452866
0.901941
-0.44152
0.88032
-0.429399
0.857223
-0.416524
0.832684
-0.402919
0.80656
-0.388608
0.779084
-0.373613
0.750296
-0.357965
0.720079
-0.341688
0.688657
-0.324811
0.656074
-0.307365
0.622242
-0.28938
0.587369
-0.270886
0.551505
-0.251918
0.514591
-0.232508
0.476817
-0.212689
0.438238
-0.192499
0.398825
-0.17197
0.358746
-0.151139
0.31806
-0.130044
0.276768
-0.108721
0.235016
-0.0872052
0.192865
-0.0655385
0.150346
-0.0437568
0.10758
-0.0218968
0.064628
0.0215531
0.0212683
-0.0209069
0.0425008
-0.0626903
0.0636571
-0.104354
0.0847017
-0.145838
0.105599
-0.187082
0.12631
-0.22797
0.146799
-0.26847
0.167032
-0.308524
0.18697
-0.34799
0.20658
-0.386867
0.22583
-0.425099
0.244681
-0.462521
0.263104
-0.499163
0.281066
-0.53497
0.298534
-0.569758
0.315477
-0.603586
0.331869
-0.636404
0.347677
-0.66801
0.362876
-0.69849
0.377439
-0.727801
0.391338
-0.755725
0.404551
-0.782378
0.417055
-0.807719
0.428827
-0.831522
0.439847
-0.853926
0.450095
-0.874899
0.459553
-0.894205
0.468205
-0.912008
0.476037
-0.928281
0.483032
-0.942786
0.48918
-0.955706
0.494471
-0.967022
0.498893
-0.976498
0.502441
-0.984332
0.505107
-0.990514
0.506887
-0.994809
0.507778
-0.997434
0.507778
-0.998384
0.506887
-0.997432
0.505107
-0.994806
0.502441
-0.990508
0.498893
-0.984325
0.494471
-0.976489
0.48918
-0.967013
0.483032
-0.955695
0.476037
-0.942773
0.468205
-0.928267
0.459553
-0.911993
0.450095
-0.894189
0.439847
-0.874882
0.428827
-0.853908
0.417055
-0.831503
0.404551
-0.8077
0.391338
-0.782358
0.377439
-0.755705
0.362876
-0.72778
0.347677
-0.698469
0.331869
-0.667989
0.315477
-0.636384
0.298534
-0.603566
0.281066
-0.569739
0.263104
-0.534951
0.244681
-0.499145
0.22583
-0.462505
0.20658
-0.425083
0.18697
-0.386852
0.167032
-0.347976
0.146799
-0.308505
0.12631
-0.268466
0.105599
-0.227965
0.0847021
-0.187066
0.0636571
-0.145836
0.0425003
-0.104352
0.0212688
-0.0626849
1.3766e-12
-0.020907
-0.0212688
0.020907
-0.0425005
0.0626849
-0.0636576
0.104352
-0.084703
0.145836
-0.1056
0.187066
-0.126312
0.227965
-0.146802
0.268466
-0.167035
0.308505
-0.186974
0.347976
-0.206585
0.386852
-0.225836
0.425083
-0.244688
0.462505
-0.263112
0.499145
-0.281075
0.534951
-0.298544
0.569739
-0.315489
0.603566
-0.331882
0.636384
-0.347692
0.667989
-0.362891
0.698469
-0.377456
0.72778
-0.391356
0.755705
-0.404571
0.782358
-0.417076
0.8077
-0.428849
0.831503
-0.43987
0.853908
-0.450119
0.874882
-0.459578
0.894189
-0.468231
0.911993
-0.476064
0.928267
-0.48306
0.942773
-0.489209
0.955695
-0.4945
0.967013
-0.498923
0.976489
-0.502471
0.984325
-0.505138
0.990508
-0.506918
0.994806
-0.507809
0.997432
-0.507809
0.998384
-0.506918
0.997434
-0.505138
0.994809
-0.502471
0.990514
-0.498923
0.984332
-0.4945
0.976498
-0.489209
0.967022
-0.48306
0.955706
-0.476064
0.942786
-0.468231
0.928281
-0.459578
0.912008
-0.450119
0.894205
-0.43987
0.874899
-0.428849
0.853926
-0.417076
0.831522
-0.404571
0.807719
-0.391356
0.782378
-0.377456
0.755725
-0.362891
0.727801
-0.347692
0.69849
-0.331882
0.66801
-0.315489
0.636404
-0.298544
0.603586
-0.281075
0.569758
-0.263112
0.53497
-0.244688
0.499163
-0.225836
0.462521
-0.206585
0.425099
-0.186974
0.386867
-0.167035
0.34799
-0.146801
0.308524
-0.126312
0.26847
-0.1056
0.22797
-0.0847025
0.187082
-0.0636576
0.145838
-0.042501
0.104354
-0.0212683
0.0626903
0.0209069
0.0206025
-0.020224
0.0411704
-0.0606426
0.0616645
-0.100946
0.0820503
-0.141075
0.102294
-0.180972
0.122356
-0.220524
0.142204
-0.259701
0.161803
-0.298446
0.181118
-0.336623
0.200114
-0.374231
0.218761
-0.411214
0.237022
-0.447414
0.254868
-0.482859
0.272268
-0.517496
0.289189
-0.551148
0.305602
-0.583871
0.321481
-0.615617
0.336794
-0.64619
0.351517
-0.675675
0.365624
-0.704028
0.379088
-0.731041
0.391888
-0.756823
0.404
-0.781337
0.415404
-0.804362
0.426078
-0.826035
0.436006
-0.846322
0.445168
-0.864998
0.453549
-0.882219
0.461135
-0.89796
0.467912
-0.911992
0.473867
-0.92449
0.478992
-0.935437
0.483276
-0.944603
0.486713
-0.952181
0.489296
-0.958161
0.49102
-0.962316
0.491883
-0.964855
0.491883
-0.965774
0.49102
-0.964854
0.489296
-0.962313
0.486713
-0.958156
0.483276
-0.952175
0.478992
-0.944595
0.473867
-0.935428
0.467912
-0.924479
0.461135
-0.91198
0.453549
-0.897947
0.445168
-0.882205
0.436006
-0.864983
0.426078
-0.846306
0.415404
-0.826018
0.404
-0.804345
0.391888
-0.781318
0.379088
-0.756804
0.365624
-0.731022
0.351517
-0.704009
0.336794
-0.675656
0.321481
-0.646171
0.305602
-0.615598
0.289189
-0.583853
0.272268
-0.55113
0.254868
-0.517479
0.237022
-0.482842
0.218761
-0.447398
0.200114
-0.411199
0.181118
-0.374217
0.161803
-0.336611
0.142204
-0.298429
0.122356
-0.259697
0.102293
-0.22052
0.0820508
-0.180956
0.0616645
-0.141073
0.04117
-0.100944
0.020603
-0.0606375
1.3589e-12
-0.0202241
-0.0206031
0.0202241
-0.0411702
0.0606375
-0.061665
0.100944
-0.0820517
0.141073
-0.102295
0.180956
-0.122358
0.22052
-0.142207
0.259697
-0.161807
0.298429
-0.181122
0.336611
-0.200119
0.374217
-0.218767
0.411199
-0.23703
0.447398
-0.254876
0.482842
-0.272277
0.517479
-0.2892
0.55113
-0.305614
0.583853
-0.321494
0.615598
-0.336809
0.646171
-0.351533
0.675656
-0.365641
0.704009
-0.379107
0.731022
-0.391907
0.756804
-0.404022
0.781318
-0.415426
0.804345
-0.426102
0.826018
-0.43603
0.846306
-0.445194
0.864983
-0.453576
0.882205
-0.461163
0.897947
-0.46794
0.91198
-0.473897
0.924479
-0.479022
0.935428
-0.483307
0.944595
-0.486744
0.952175
-0.489327
0.958156
-0.491051
0.962313
-0.491914
0.964854
-0.491914
0.965774
-0.491051
0.964855
-0.489327
0.962316
-0.486744
0.958161
-0.483307
0.952181
-0.479022
0.944603
-0.473897
0.935437
-0.46794
0.92449
-0.461163
0.911992
-0.453576
0.89796
-0.445194
0.882219
-0.43603
0.864998
-0.426102
0.846322
-0.415426
0.826035
-0.404022
0.804362
-0.391907
0.781337
-0.379107
0.756823
-0.365641
0.731041
-0.351533
0.704028
-0.336809
0.675675
-0.321494
0.64619
-0.305614
0.615617
-0.2892
0.583871
-0.272277
0.551148
-0.254876
0.517496
-0.23703
0.482859
-0.218767
0.447414
-0.200119
0.411214
-0.181122
0.374231
-0.161807
0.336623
-0.142206
0.298446
-0.122358
0.259701
-0.102295
0.220524
-0.0820512
0.180972
-0.061665
0.141075
-0.0411707
0.100946
-0.0206026
0.0606426
0.020224
0.0199007
-0.0195057
0.0397679
-0.0584886
0.0595637
-0.0973602
0.0792551
-0.136064
0.0988088
-0.174543
0.118188
-0.21269
0.137359
-0.250476
0.156291
-0.287845
0.174947
-0.324666
0.193296
-0.360938
0.211308
-0.396607
0.228947
-0.431522
0.246185
-0.465707
0.262992
-0.499115
0.279336
-0.531571
0.295191
-0.563132
0.310528
-0.59375
0.32532
-0.623237
0.339541
-0.651675
0.353167
-0.679021
0.366173
-0.705074
0.378536
-0.72994
0.390237
-0.753583
0.401251
-0.775791
0.411562
-0.796694
0.421152
-0.816261
0.430001
-0.834273
0.438097
-0.850883
0.445425
-0.866065
0.45197
-0.879598
0.457723
-0.891652
0.462673
-0.90221
0.466812
-0.91105
0.470131
-0.91836
0.472626
-0.924127
0.474291
-0.928135
0.475125
-0.930584
0.475125
-0.93147
0.474291
-0.930582
0.472626
-0.928132
0.470131
-0.924123
0.466812
-0.918354
0.462673
-0.911043
0.457723
-0.902202
0.45197
-0.891642
0.445425
-0.879587
0.438097
-0.866053
0.430001
-0.850869
0.421152
-0.834259
0.411562
-0.816246
0.401251
-0.796678
0.390237
-0.775775
0.378536
-0.753566
0.366173
-0.729923
0.353167
-0.705057
0.339541
-0.679003
0.32532
-0.651657
0.310528
-0.62322
0.295191
-0.593732
0.279336
-0.563115
0.262992
-0.531555
0.246185
-0.499098
0.228947
-0.465692
0.211308
-0.431507
0.193296
-0.396594
0.174947
-0.360925
0.156291
-0.324655
0.13736
-0.287829
0.118188
-0.250473
0.0988084
-0.212687
0.0792555
-0.174529
0.0595637
-0.136062
0.0397674
-0.0973582
0.0199011
-0.0584837
1.33716e-12
-0.0195058
-0.0199012
0.0195058
-0.0397676
0.0584837
-0.0595642
0.0973582
-0.0792564
0.136062
-0.0988097
0.174529
-0.11819
0.212687
-0.137362
0.250473
-0.156294
0.287829
-0.174952
0.324655
-0.193302
0.360925
-0.211314
0.396594
-0.228955
0.431507
-0.246194
0.465692
-0.263002
0.499098
-0.279348
0.531555
-0.295203
0.563115
-0.310542
0.593732
-0.325335
0.62322
-0.339557
0.651657
-0.353185
0.679003
-0.366192
0.705057
-0.378557
0.729923
-0.390258
0.753566
-0.401274
0.775775
-0.411586
0.796678
-0.421177
0.816246
-0.430028
0.834259
-0.438124
0.850869
-0.445453
0.866053
-0.451999
0.879587
-0.457753
0.891642
-0.462704
0.902202
-0.466843
0.911043
-0.470162
0.918354
-0.472657
0.924123
-0.474323
0.928132
-0.475157
0.930582
-0.475157
0.93147
-0.474323
0.930584
-0.472657
0.928135
-0.470162
0.924127
-0.466843
0.91836
-0.462704
0.91105
-0.457753
0.90221
-0.451999
0.891652
-0.445453
0.879598
-0.438124
0.866065
-0.430028
0.850883
-0.421177
0.834273
-0.411586
0.816261
-0.401274
0.796694
-0.390258
0.775791
-0.378557
0.753583
-0.366192
0.72994
-0.353185
0.705074
-0.339557
0.679021
-0.325335
0.651675
-0.310542
0.623237
-0.295203
0.59375
-0.279348
0.563132
-0.263002
0.531571
-0.246194
0.499115
-0.228955
0.465707
-0.211314
0.431522
-0.193302
0.396607
-0.174952
0.360938
-0.156294
0.324666
-0.137362
0.287845
-0.11819
0.250476
-0.0988102
0.21269
-0.079256
0.174543
-0.0595642
0.136064
-0.0397681
0.0973602
-0.0199007
0.0584886
0.0195057
0.0191639
-0.0187531
0.0382955
-0.0562319
0.0573585
-0.0936037
0.0763208
-0.130814
0.0951505
-0.167809
0.113812
-0.204484
0.132274
-0.240812
0.150504
-0.276739
0.16847
-0.31214
0.18614
-0.347012
0.203484
-0.381305
0.220471
-0.414872
0.23707
-0.447739
0.253255
-0.479857
0.268994
-0.511062
0.284262
-0.541405
0.299031
-0.570841
0.313275
-0.599191
0.32697
-0.626532
0.340092
-0.652823
0.352616
-0.677871
0.364521
-0.701777
0.375788
-0.724508
0.386395
-0.745859
0.396324
-0.765955
0.405559
-0.784767
0.414081
-0.802085
0.421877
-0.818054
0.428933
-0.83265
0.435236
-0.845661
0.440776
-0.85725
0.445543
-0.867401
0.449528
-0.8759
0.452725
-0.882927
0.455127
-0.888472
0.456731
-0.892325
0.457533
-0.89468
0.457533
-0.895532
0.456731
-0.894678
0.455127
-0.892323
0.452725
-0.888468
0.449528
-0.882922
0.445543
-0.875893
0.440776
-0.867393
0.435236
-0.857241
0.428933
-0.845651
0.421877
-0.832639
0.414081
-0.818041
0.405559
-0.802072
0.396324
-0.784753
0.386395
-0.765941
0.375788
-0.745844
0.364521
-0.724493
0.352616
-0.701761
0.340092
-0.677854
0.32697
-0.652806
0.313275
-0.626515
0.299031
-0.599175
0.284262
-0.570825
0.268994
-0.541389
0.253255
-0.511046
0.23707
-0.479842
0.220471
-0.447725
0.203484
-0.414859
0.18614
-0.381293
0.16847
-0.347
0.150504
-0.312129
0.132274
-0.276724
0.113812
-0.240809
0.0951501
-0.204481
0.0763212
-0.167795
0.0573585
-0.130813
0.0382951
-0.093602
0.0191643
-0.0562273
1.31127e-12
-0.0187532
-0.0191644
0.0187532
-0.0382953
0.0562273
-0.057359
0.093602
-0.0763221
0.130813
-0.0951515
0.167795
-0.113814
0.204481
-0.132277
0.240809
-0.150508
0.276724
-0.168474
0.312129
-0.186145
0.347
-0.203491
0.381293
-0.220478
0.414859
-0.237079
0.447725
-0.253265
0.479842
-0.269005
0.511046
-0.284274
0.541389
-0.299045
0.570825
-0.31329
0.599175
-0.326986
0.626515
-0.340109
0.652806
-0.352635
0.677854
-0.364542
0.701761
-0.37581
0.724493
-0.386418
0.745844
-0.396348
0.765941
-0.405584
0.784753
-0.414107
0.802072
-0.421904
0.818041
-0.428961
0.832639
-0.435265
0.845651
-0.440806
0.857241
-0.445574
0.867393
-0.449559
0.875893
-0.452756
0.882922
-0.455159
0.888468
-0.456763
0.892323
-0.457566
0.894678
-0.457566
0.895532
-0.456763
0.89468
-0.455159
0.892325
-0.452756
0.888472
-0.449559
0.882927
-0.445574
0.8759
-0.440806
0.867401
-0.435265
0.85725
-0.428961
0.845661
-0.421904
0.83265
-0.414107
0.818054
-0.405584
0.802085
-0.396348
0.784767
-0.386418
0.765955
-0.37581
0.745859
-0.364542
0.724508
-0.352635
0.701777
-0.340109
0.677871
-0.326986
0.652823
-0.31329
0.626532
-0.299045
0.599191
-0.284274
0.570841
-0.269005
0.541405
-0.253265
0.511062
-0.237079
0.479857
-0.220478
0.447739
-0.203491
0.414872
-0.186145
0.381305
-0.168474
0.347012
-0.150508
0.31214
-0.132276
0.276739
-0.113814
0.240812
-0.0951519
0.204484
-0.0763217
0.167809
-0.057359
0.130814
-0.0382957
0.0936037
-0.0191639
0.0562319
0.0187531
0.0183935
-0.0179676
0.036756
-0.0538766
0.0550526
-0.0896831
0.0732526
-0.125335
0.0913254
-0.16078
0.109237
-0.195919
0.126956
-0.230725
0.144454
-0.265148
0.161697
-0.299066
0.178657
-0.332477
0.195304
-0.365334
0.211607
-0.397495
0.22754
-0.428985
0.243074
-0.459758
0.25818
-0.489656
0.272834
-0.518728
0.28701
-0.546932
0.300681
-0.574094
0.313825
-0.600289
0.326419
-0.625479
0.33844
-0.649478
0.349867
-0.672383
0.360681
-0.694162
0.370861
-0.714619
0.380391
-0.733873
0.389254
-0.751897
0.397434
-0.768489
0.404916
-0.783789
0.411689
-0.797774
0.417739
-0.81024
0.423056
-0.821344
0.427631
-0.83107
0.431456
-0.839213
0.434524
-0.845946
0.43683
-0.851259
0.438369
-0.85495
0.439139
-0.857206
0.439139
-0.858022
0.438369
-0.857205
0.43683
-0.854948
0.434524
-0.851255
0.431456
-0.845941
0.427631
-0.839207
0.423056
-0.831063
0.417739
-0.821336
0.411689
-0.810231
0.404916
-0.797764
0.397434
-0.783778
0.389254
-0.768477
0.380391
-0.751884
0.370861
-0.73386
0.360681
-0.714605
0.349867
-0.694148
0.33844
-0.672369
0.326419
-0.649463
0.313825
-0.625464
0.300681
-0.600274
0.28701
-0.574079
0.272834
-0.546917
0.25818
-0.518713
0.243074
-0.489642
0.22754
-0.459745
0.211607
-0.428972
0.195304
-0.397483
0.178657
-0.365322
0.161697
-0.332466
0.144454
-0.299056
0.126956
-0.265134
0.109237
-0.230723
0.091325
-0.195917
0.073253
-0.160767
0.0550526
-0.125334
0.0367556
-0.0896815
0.0183939
-0.0538723
1.28112e-12
-0.0179678
-0.0183939
0.0179678
-0.0367558
0.0538723
-0.0550531
0.0896815
-0.0732539
0.125334
-0.0913263
0.160767
-0.109239
0.195917
-0.126959
0.230723
-0.144457
0.265134
-0.161702
0.299056
-0.178662
0.332466
-0.19531
0.365322
-0.211615
0.397483
-0.227548
0.428972
-0.243084
0.459745
-0.258191
0.489642
-0.272846
0.518713
-0.287023
0.546917
-0.300696
0.574079
-0.313841
0.600274
-0.326437
0.625464
-0.338459
0.649463
-0.349887
0.672369
-0.360702
0.694148
-0.370884
0.714605
-0.380415
0.73386
-0.389279
0.751884
-0.39746
0.768477
-0.404944
0.783778
-0.411717
0.797764
-0.417768
0.810231
-0.423086
0.821336
-0.427662
0.831063
-0.431487
0.839207
-0.434555
0.845941
-0.436862
0.851255
-0.438401
0.854948
-0.439172
0.857205
-0.439172
0.858022
-0.438401
0.857206
-0.436862
0.85495
-0.434555
0.851259
-0.431487
0.845946
-0.427662
0.839213
-0.423086
0.83107
-0.417768
0.821344
-0.411717
0.81024
-0.404944
0.797774
-0.39746
0.783789
-0.389279
0.768489
-0.380415
0.751897
-0.370884
0.733873
-0.360702
0.714619
-0.349887
0.694162
-0.338459
0.672383
-0.326437
0.649478
-0.313841
0.625479
-0.300696
0.600289
-0.287023
0.574094
-0.272846
0.546932
-0.258191
0.518728
-0.243084
0.489656
-0.227548
0.459758
-0.211615
0.428985
-0.19531
0.397495
-0.178662
0.365334
-0.161702
0.332477
-0.144457
0.299066
-0.126959
0.265148
-0.109239
0.230725
-0.0913268
0.195919
-0.0732535
0.16078
-0.0550531
0.125335
-0.0367562
0.0896831
-0.0183935
0.0538766
0.0179676
0.0175908
-0.0171506
0.035152
-0.0514268
0.0526501
-0.0856051
0.0700559
-0.119636
0.08734
-0.153469
0.104469
-0.187011
0.121416
-0.220234
0.13815
-0.253091
0.154641
-0.285467
0.17086
-0.317359
0.186781
-0.348722
0.202373
-0.379421
0.21761
-0.409479
0.232466
-0.438853
0.246913
-0.467391
0.260927
-0.495141
0.274485
-0.522062
0.287559
-0.547989
0.30013
-0.572994
0.312174
-0.597038
0.32367
-0.619946
0.334598
-0.64181
0.34494
-0.662598
0.354677
-0.682125
0.363791
-0.700504
0.372267
-0.717708
0.38009
-0.733546
0.387246
-0.74815
0.393723
-0.761499
0.399508
-0.773398
0.404593
-0.783997
0.408969
-0.793281
0.412627
-0.801054
0.415561
-0.80748
0.417766
-0.812552
0.419238
-0.816076
0.419975
-0.818229
0.419975
-0.819008
0.419238
-0.818228
0.417766
-0.816073
0.415561
-0.812548
0.412627
-0.807476
0.408969
-0.801048
0.404593
-0.793274
0.399508
-0.78399
0.393723
-0.77339
0.387246
-0.76149
0.38009
-0.74814
0.372267
-0.733535
0.363791
-0.717696
0.354677
-0.700491
0.34494
-0.682112
0.334598
-0.662585
0.32367
-0.641796
0.312174
-0.619932
0.30013
-0.597024
0.287559
-0.57298
0.274485
-0.547976
0.260927
-0.522049
0.246913
-0.495127
0.232466
-0.467378
0.21761
-0.43884
0.202373
-0.409467
0.186781
-0.379409
0.17086
-0.348711
0.154641
-0.317349
0.13815
-0.285458
0.121416
-0.253078
0.104469
-0.220232
0.0873396
-0.187008
0.0700563
-0.153457
0.0526501
-0.119635
0.0351516
-0.0856038
0.0175912
-0.0514228
1.24686e-12
-0.0171508
-0.0175912
0.0171508
-0.0351518
0.0514228
-0.0526507
0.0856038
-0.0700572
0.119635
-0.087341
0.153457
-0.104471
0.187008
-0.121419
0.220232
-0.138154
0.253078
-0.154645
0.285458
-0.170866
0.317349
-0.186787
0.348711
-0.20238
0.379409
-0.217618
0.409467
-0.232476
0.43884
-0.246924
0.467378
-0.26094
0.495127
-0.274498
0.522049
-0.287574
0.547976
-0.300146
0.57298
-0.312192
0.597024
-0.323689
0.619932
-0.334619
0.641796
-0.344962
0.662585
-0.3547
0.682112
-0.363815
0.700491
-0.372292
0.717696
-0.380116
0.733535
-0.387273
0.74814
-0.393751
0.76149
-0.399537
0.77339
-0.404623
0.78399
-0.409
0.793274
-0.412658
0.801048
-0.415592
0.807476
-0.417798
0.812548
-0.41927
0.816073
-0.420007
0.818228
-0.420007
0.819008
-0.41927
0.818229
-0.417798
0.816076
-0.415592
0.812552
-0.412658
0.80748
-0.409
0.801054
-0.404623
0.793281
-0.399537
0.783997
-0.393751
0.773398
-0.387273
0.761499
-0.380116
0.74815
-0.372292
0.733546
-0.363815
0.717708
-0.3547
0.700504
-0.344962
0.682125
-0.334619
0.662598
-0.323689
0.64181
-0.312192
0.619946
-0.300146
0.597038
-0.287574
0.572994
-0.274498
0.547989
-0.26094
0.522062
-0.246924
0.495141
-0.232476
0.467391
-0.217618
0.438853
-0.20238
0.409479
-0.186787
0.379421
-0.170866
0.348722
-0.154645
0.317359
-0.138154
0.285467
-0.121418
0.253091
-0.104471
0.220234
-0.0873414
0.187011
-0.0700568
0.153469
-0.0526507
0.119636
-0.0351522
0.0856051
-0.0175909
0.0514268
0.0171506
0.0167573
-0.0163035
0.0334863
-0.0488868
0.0501553
-0.0813769
0.0667363
-0.113727
0.0832014
-0.145889
0.0995192
-0.177774
0.115662
-0.209356
0.131604
-0.240591
0.147313
-0.271367
0.162764
-0.301684
0.17793
-0.331498
0.192783
-0.360681
0.207298
-0.389254
0.22145
-0.417177
0.235213
-0.444306
0.248563
-0.470685
0.261478
-0.496277
0.273933
-0.520924
0.285908
-0.544693
0.297382
-0.56755
0.308333
-0.589326
0.318743
-0.61011
0.328595
-0.629872
0.33787
-0.648434
0.346552
-0.665905
0.354627
-0.68226
0.362079
-0.697315
0.368895
-0.711198
0.375066
-0.723888
0.380577
-0.735199
0.385421
-0.745275
0.38959
-0.7541
0.393074
-0.761489
0.395869
-0.767598
0.39797
-0.772419
0.399372
-0.775769
0.400074
-0.777816
0.400074
-0.778557
0.399372
-0.777815
0.39797
-0.775767
0.395869
-0.772416
0.393074
-0.767594
0.38959
-0.761484
0.385421
-0.754094
0.380577
-0.745268
0.375066
-0.735192
0.368895
-0.723879
0.362079
-0.711189
0.354627
-0.697305
0.346552
-0.682249
0.33787
-0.665894
0.328595
-0.648422
0.318743
-0.62986
0.308333
-0.610098
0.297382
-0.589314
0.285908
-0.567537
0.273933
-0.54468
0.261478
-0.520911
0.248563
-0.496265
0.235213
-0.470673
0.22145
-0.444294
0.207298
-0.417166
0.192783
-0.389243
0.17793
-0.36067
0.162764
-0.331489
0.147313
-0.301675
0.131604
-0.271359
0.115663
-0.240579
0.0995192
-0.209355
0.083201
-0.177772
0.0667367
-0.145878
0.0501553
-0.113726
0.0334859
-0.0813758
0.0167576
-0.048883
1.20846e-12
-0.0163037
-0.0167577
0.0163037
-0.0334862
0.048883
-0.0501558
0.0813758
-0.0667375
0.113726
-0.0832024
0.145878
-0.0995211
0.177772
-0.115665
0.209355
-0.131607
0.240579
-0.147317
0.271359
-0.162769
0.301675
-0.177937
0.331489
-0.192791
0.36067
-0.207307
0.389243
-0.22146
0.417166
-0.235224
0.444294
-0.248575
0.470673
-0.261491
0.496265
-0.273948
0.520911
-0.285924
0.54468
-0.297399
0.567537
-0.308352
0.589314
-0.318763
0.610098
-0.328617
0.62986
-0.337893
0.648422
-0.346576
0.665894
-0.354652
0.682249
-0.362105
0.697305
-0.368922
0.711189
-0.375093
0.723879
-0.380606
0.735192
-0.385451
0.745268
-0.38962
0.754094
-0.393105
0.761484
-0.3959
0.767594
-0.398001
0.772416
-0.399404
0.775767
-0.400106
0.777815
-0.400106
0.778557
-0.399404
0.777816
-0.398001
0.775769
-0.3959
0.772419
-0.393105
0.767598
-0.38962
0.761489
-0.385451
0.7541
-0.380606
0.745275
-0.375093
0.735199
-0.368922
0.723888
-0.362105
0.711198
-0.354652
0.697315
-0.346576
0.68226
-0.337893
0.665905
-0.328617
0.648434
-0.318763
0.629872
-0.308352
0.61011
-0.297399
0.589326
-0.285924
0.56755
-0.273948
0.544693
-0.261491
0.520924
-0.248575
0.496277
-0.235224
0.470685
-0.22146
0.444306
-0.207307
0.417177
-0.192791
0.389254
-0.177937
0.360681
-0.162769
0.331498
-0.147317
0.301684
-0.131607
0.271367
-0.115665
0.240591
-0.0995211
0.209356
-0.0832027
0.177774
-0.0667372
0.145889
-0.0501558
0.113727
-0.0334865
0.0813769
-0.0167573
0.0488868
0.0163035
0.0158943
-0.0154278
0.0317619
-0.046261
0.0475725
-0.077006
0.0632996
-0.107618
0.0789168
-0.138053
0.0943943
-0.168225
0.109706
-0.198112
0.124827
-0.227668
0.139727
-0.256792
0.154382
-0.28548
0.168768
-0.313693
0.182856
-0.341308
0.196623
-0.368347
0.210046
-0.39477
0.2231
-0.420441
0.235763
-0.445404
0.248013
-0.469621
0.259826
-0.492944
0.271184
-0.515436
0.282067
-0.537066
0.292455
-0.557672
0.302329
-0.57734
0.311673
-0.59604
0.320471
-0.613605
0.328706
-0.630138
0.336364
-0.645615
0.343433
-0.659861
0.349898
-0.672999
0.355751
-0.685007
0.360979
-0.695711
0.365573
-0.705245
0.369527
-0.713596
0.372832
-0.720588
0.375483
-0.72637
0.377475
-0.730932
0.378806
-0.734102
0.379471
-0.736039
0.379471
-0.73674
0.378806
-0.736038
0.377475
-0.7341
0.375483
-0.730929
0.372832
-0.726366
0.369527
-0.720584
0.365573
-0.713591
0.360979
-0.705239
0.355751
-0.695704
0.349898
-0.684999
0.343433
-0.67299
0.336364
-0.659853
0.328706
-0.645605
0.320471
-0.630128
0.311673
-0.613595
0.302329
-0.59603
0.292455
-0.577329
0.282067
-0.557661
0.271184
-0.537054
0.259826
-0.515425
0.248013
-0.492933
0.235763
-0.46961
0.2231
-0.445393
0.210046
-0.420431
0.196623
-0.39476
0.182856
-0.368337
0.168768
-0.341299
0.154382
-0.313684
0.139727
-0.285472
0.124827
-0.256784
0.109706
-0.227657
0.0943943
-0.198111
0.0789164
-0.168224
0.0633
-0.138043
0.0475725
-0.107618
0.0317615
-0.0770051
0.0158947
-0.0462575
1.16583e-12
-0.015428
-0.0158947
0.015428
-0.0317618
0.0462575
-0.047573
0.0770051
-0.0633008
0.107618
-0.0789178
0.138043
-0.0943962
0.168224
-0.109709
0.198111
-0.12483
0.227657
-0.139731
0.256784
-0.154387
0.285472
-0.168774
0.313684
-0.182863
0.341299
-0.196631
0.368337
-0.210056
0.39476
-0.223111
0.420431
-0.235775
0.445393
-0.248026
0.46961
-0.259841
0.492933
-0.2712
0.515425
-0.282084
0.537054
-0.292473
0.557661
-0.302349
0.577329
-0.311694
0.59603
-0.320493
0.613595
-0.328729
0.630128
-0.336389
0.645605
-0.343458
0.659853
-0.349925
0.67299
-0.355778
0.684999
-0.361007
0.695704
-0.365602
0.705239
-0.369556
0.713591
-0.372862
0.720584
-0.375513
0.726366
-0.377506
0.730929
-0.378837
0.7341
-0.379502
0.736038
-0.379502
0.73674
-0.378837
0.736039
-0.377506
0.734102
-0.375513
0.730932
-0.372862
0.72637
-0.369556
0.720588
-0.365602
0.713596
-0.361007
0.705245
-0.355778
0.695711
-0.349925
0.685007
-0.343458
0.672999
-0.336389
0.659861
-0.328729
0.645615
-0.320493
0.630138
-0.311694
0.613605
-0.302349
0.59604
-0.292473
0.57734
-0.282084
0.557672
-0.2712
0.537066
-0.259841
0.515436
-0.248026
0.492944
-0.235775
0.469621
-0.223111
0.445404
-0.210056
0.420441
-0.196631
0.39477
-0.182863
0.368347
-0.168774
0.341308
-0.154387
0.313693
-0.139731
0.28548
-0.12483
0.256792
-0.109709
0.227668
-0.0943962
0.198112
-0.0789181
0.168225
-0.0633005
0.138053
-0.047573
0.107618
-0.0317621
0.077006
-0.0158944
0.046261
0.0154278
0.0150035
-0.014525
0.0299818
-0.043554
0.0449062
-0.0725
0.0597519
-0.101321
0.0744938
-0.129975
0.0891038
-0.158382
0.103557
-0.186519
0.117831
-0.214346
0.131896
-0.241765
0.14573
-0.268775
0.159309
-0.295337
0.172607
-0.321336
0.185603
-0.346793
0.198274
-0.37167
0.210596
-0.395839
0.222549
-0.419341
0.234112
-0.442141
0.245264
-0.464099
0.255985
-0.485276
0.266258
-0.505639
0.276063
-0.52504
0.285384
-0.543557
0.294205
-0.561163
0.302509
-0.577701
0.310282
-0.593266
0.317512
-0.607837
0.324184
-0.62125
0.330287
-0.633619
0.335812
-0.644924
0.340747
-0.655002
0.345084
-0.663978
0.348816
-0.671841
0.351936
-0.678424
0.354438
-0.683867
0.356319
-0.688162
0.357575
-0.691146
0.358203
-0.69297
0.358203
-0.69363
0.357575
-0.692969
0.356319
-0.691145
0.354438
-0.688159
0.351936
-0.683863
0.348816
-0.67842
0.345084
-0.671836
0.340747
-0.663973
0.335812
-0.654996
0.330287
-0.644917
0.324184
-0.633611
0.317512
-0.621242
0.310282
-0.607828
0.302509
-0.593257
0.294205
-0.577691
0.285384
-0.561154
0.276063
-0.543547
0.266258
-0.52503
0.255985
-0.50563
0.245264
-0.485266
0.234112
-0.46409
0.222549
-0.442132
0.210596
-0.419332
0.198274
-0.39583
0.185603
-0.371661
0.172607
-0.346784
0.159309
-0.321328
0.14573
-0.295329
0.131896
-0.268768
0.117831
-0.241759
0.103558
-0.214336
0.0891038
-0.186518
0.0744934
-0.158381
0.0597522
-0.129966
0.0449062
-0.101321
0.0299814
-0.0724993
0.0150038
-0.0435508
1.11894e-12
-0.0145253
-0.0150039
0.0145253
-0.0299816
0.0435508
-0.0449067
0.0724993
-0.0597531
0.101321
-0.0744947
0.129966
-0.0891057
0.158381
-0.10356
0.186518
-0.117834
0.214336
-0.1319
0.241759
-0.145735
0.268768
-0.159315
0.295329
-0.172614
0.321328
-0.185611
0.346784
-0.198283
0.371661
-0.210607
0.39583
-0.222561
0.419332
-0.234125
0.442132
-0.245278
0.46409
-0.256001
0.485266
-0.266275
0.50563
-0.276081
0.52503
-0.285403
0.543547
-0.294225
0.561154
-0.302531
0.577691
-0.310305
0.593257
-0.317536
0.607828
-0.324209
0.621242
-0.330313
0.633611
-0.335838
0.644917
-0.340774
0.654996
-0.345112
0.663973
-0.348844
0.671836
-0.351965
0.67842
-0.354468
0.683863
-0.356349
0.688159
-0.357605
0.691145
-0.358233
0.692969
-0.358233
0.69363
-0.357605
0.69297
-0.356349
0.691146
-0.354468
0.688162
-0.351965
0.683867
-0.348844
0.678424
-0.345112
0.671841
-0.340774
0.663978
-0.335838
0.655002
-0.330313
0.644924
-0.324209
0.633619
-0.317536
0.62125
-0.310305
0.607837
-0.302531
0.593266
-0.294225
0.577701
-0.285403
0.561163
-0.276081
0.543557
-0.266275
0.52504
-0.256001
0.505639
-0.245278
0.485276
-0.234125
0.464099
-0.222561
0.442141
-0.210607
0.419341
-0.198283
0.395839
-0.185611
0.37167
-0.172614
0.346793
-0.159315
0.321336
-0.145735
0.295337
-0.1319
0.268775
-0.117834
0.241765
-0.10356
0.214346
-0.0891057
0.186519
-0.0744951
0.158382
-0.0597527
0.129975
-0.0449067
0.101321
-0.029982
0.0725
-0.0150036
0.043554
0.014525
0.0140864
-0.0135968
0.028149
-0.0407706
0.0421612
-0.0678668
0.0560993
-0.094846
0.0699401
-0.121669
0.083657
-0.14826
0.0972272
-0.174599
0.110628
-0.200648
0.123833
-0.226315
0.136821
-0.251599
0.14957
-0.276463
0.162056
-0.300801
0.174257
-0.324631
0.186154
-0.347918
0.197723
-0.370543
0.208945
-0.392543
0.219801
-0.413886
0.230271
-0.434441
0.240337
-0.454264
0.249982
-0.473326
0.259188
-0.491487
0.267939
-0.508821
0.27622
-0.525302
0.284017
-0.540782
0.291315
-0.555353
0.298103
-0.568993
0.304367
-0.581549
0.310097
-0.593127
0.315284
-0.60371
0.319917
-0.613144
0.323989
-0.621547
0.327493
-0.628907
0.330422
-0.635069
0.332771
-0.640164
0.334537
-0.644185
0.335716
-0.646979
0.336306
-0.648686
0.336306
-0.649303
0.335716
-0.648685
0.334537
-0.646977
0.332771
-0.644182
0.330422
-0.640161
0.327493
-0.635065
0.323989
-0.628902
0.319917
-0.621542
0.315284
-0.613138
0.310097
-0.603704
0.304367
-0.59312
0.298103
-0.581542
0.291315
-0.568985
0.284017
-0.555345
0.27622
-0.540774
0.267939
-0.525293
0.259188
-0.508812
0.249982
-0.491479
0.240337
-0.473318
0.230271
-0.454255
0.219801
-0.434432
0.208945
-0.413877
0.197723
-0.392534
0.186154
-0.370535
0.174257
-0.34791
0.162056
-0.324623
0.14957
-0.300794
0.136821
-0.276457
0.123833
-0.251593
0.110628
-0.22631
0.0972275
-0.200639
0.083657
-0.174599
0.0699398
-0.148259
0.0560997
-0.12166
0.0421612
-0.094846
0.0281487
-0.0678663
0.0140867
-0.0407677
1.06787e-12
-0.0135971
-0.0140867
0.0135971
-0.0281489
0.0407677
-0.0421616
0.0678663
-0.0561005
0.094846
-0.069941
0.12166
-0.0836588
0.148259
-0.0972299
0.174599
-0.110631
0.200639
-0.123837
0.22631
-0.136826
0.251593
-0.149576
0.276457
-0.162063
0.300794
-0.174265
0.324623
-0.186163
0.34791
-0.197733
0.370535
-0.208956
0.392534
-0.219814
0.413877
-0.230285
0.434432
-0.240352
0.454255
-0.249998
0.473318
-0.259205
0.491479
-0.267957
0.508812
-0.27624
0.525293
-0.284038
0.540774
-0.291337
0.555345
-0.298126
0.568985
-0.304391
0.581542
-0.310122
0.59312
-0.31531
0.603704
-0.319943
0.613138
-0.324016
0.621542
-0.327521
0.628902
-0.33045
0.635065
-0.3328
0.640161
-0.334566
0.644182
-0.335745
0.646977
-0.336335
0.648685
-0.336335
0.649303
-0.335745
0.648686
-0.334566
0.646979
-0.3328
0.644185
-0.33045
0.640164
-0.327521
0.635069
-0.324016
0.628907
-0.319943
0.621547
-0.31531
0.613144
-0.310122
0.60371
-0.304391
0.593127
-0.298126
0.581549
-0.291337
0.568993
-0.284038
0.555353
-0.27624
0.540782
-0.267957
0.525302
-0.259205
0.508821
-0.249998
0.491487
-0.240352
0.473326
-0.230285
0.454264
-0.219814
0.434441
-0.208956
0.413886
-0.197733
0.392543
-0.186163
0.370543
-0.174265
0.347918
-0.162063
0.324631
-0.149576
0.300801
-0.136826
0.276463
-0.123837
0.251599
-0.110631
0.226315
-0.0972296
0.200648
-0.0836588
0.174599
-0.0699413
0.14826
-0.0561002
0.121669
-0.0421616
0.094846
-0.0281492
0.0678668
-0.0140864
0.0407706
0.0135968
0.0131445
-0.0126447
0.0262669
-0.0379158
0.0393422
-0.0631146
0.0523484
-0.0882046
0.0652637
-0.113149
0.0780635
-0.137879
0.0907263
-0.162373
0.103231
-0.186598
0.115553
-0.210468
0.127673
-0.233981
0.13957
-0.257105
0.15122
-0.279738
0.162606
-0.301899
0.173707
-0.323556
0.184502
-0.344596
0.194974
-0.365056
0.205105
-0.384904
0.214874
-0.40402
0.224267
-0.422455
0.233267
-0.440183
0.241858
-0.457072
0.250024
-0.473192
0.257751
-0.488519
0.265027
-0.502915
0.271837
-0.516466
0.278171
-0.52915
0.284016
-0.540827
0.289363
-0.551595
0.294203
-0.561437
0.298526
-0.57021
0.302326
-0.578024
0.305596
-0.584869
0.308329
-0.5906
0.310521
-0.595338
0.312169
-0.599077
0.313269
-0.601676
0.313819
-0.603263
0.313819
-0.603838
0.313269
-0.603263
0.312169
-0.601674
0.310521
-0.599076
0.308329
-0.595336
0.305596
-0.590597
0.302326
-0.584865
0.298526
-0.57802
0.294203
-0.570205
0.289363
-0.561432
0.284016
-0.551589
0.278171
-0.540821
0.271837
-0.529144
0.265027
-0.516459
0.257751
-0.502908
0.250024
-0.488512
0.241858
-0.473184
0.233267
-0.457065
0.224267
-0.440175
0.214874
-0.422448
0.205105
-0.404013
0.194974
-0.384897
0.184502
-0.365049
0.173707
-0.344589
0.162606
-0.323549
0.15122
-0.301893
0.13957
-0.279732
0.127673
-0.257099
0.115553
-0.233976
0.103231
-0.210463
0.0907266
-0.18659
0.0780635
-0.162373
0.0652634
-0.137878
0.0523487
-0.113141
0.0393422
-0.0882047
0.0262666
-0.0631142
0.0131448
-0.0379131
1.01268e-12
-0.012645
-0.0131449
0.012645
-0.0262668
0.0379131
-0.0393426
0.0631142
-0.0523495
0.0882047
-0.0652646
0.113141
-0.0780652
0.137878
-0.0907289
0.162373
-0.103234
0.18659
-0.115557
0.210463
-0.127678
0.233976
-0.139575
0.257099
-0.151227
0.279732
-0.162613
0.301893
-0.173715
0.323549
-0.184512
0.344589
-0.194985
0.365049
-0.205116
0.384897
-0.214887
0.404013
-0.224282
0.422448
-0.233283
0.440175
-0.241874
0.457065
-0.250041
0.473184
-0.25777
0.488512
-0.265046
0.502908
-0.271858
0.516459
-0.278192
0.529144
-0.284039
0.540821
-0.289387
0.551589
-0.294227
0.561432
-0.298551
0.570205
-0.302352
0.57802
-0.305622
0.584865
-0.308356
0.590597
-0.310549
0.595336
-0.312197
0.599076
-0.313297
0.601674
-0.313847
0.603263
-0.313847
0.603838
-0.313297
0.603263
-0.312197
0.601676
-0.310549
0.599077
-0.308356
0.595338
-0.305622
0.5906
-0.302352
0.584869
-0.298551
0.578024
-0.294227
0.57021
-0.289387
0.561437
-0.284039
0.551595
-0.278192
0.540827
-0.271858
0.52915
-0.265046
0.516466
-0.25777
0.502915
-0.250041
0.488519
-0.241874
0.473192
-0.233283
0.457072
-0.224282
0.440183
-0.214887
0.422455
-0.205116
0.40402
-0.194985
0.384904
-0.184512
0.365056
-0.173715
0.344596
-0.162613
0.323556
-0.151227
0.301899
-0.139575
0.279738
-0.127678
0.257105
-0.115557
0.233981
-0.103234
0.210468
-0.0907286
0.186598
-0.0780652
0.162373
-0.0652649
0.137879
-0.0523492
0.113149
-0.0393426
0.0882046
-0.0262671
0.0631146
-0.0131446
0.0379158
0.0126447
0.0121796
-0.0116704
0.0243387
-0.0349944
0.0364541
-0.0582517
0.0485056
-0.0814085
0.0604728
-0.104431
0.072333
-0.127255
0.0840662
-0.149863
0.0956528
-0.172221
0.107071
-0.194252
0.118301
-0.215953
0.129324
-0.237295
0.14012
-0.258184
0.150669
-0.278638
0.160955
-0.298626
0.170958
-0.318045
0.180661
-0.336929
0.190048
-0.355248
0.199101
-0.372891
0.207804
-0.389905
0.216144
-0.406267
0.224103
-0.421855
0.23167
-0.436733
0.23883
-0.450879
0.245571
-0.464166
0.251882
-0.476673
0.25775
-0.48838
0.263167
-0.499157
0.268121
-0.509095
0.272606
-0.518179
0.276612
-0.526276
0.280133
-0.533488
0.283162
-0.539806
0.285695
-0.545095
0.287726
-0.549468
0.289253
-0.552919
0.290272
-0.555317
0.290782
-0.556783
0.290782
-0.557313
0.290272
-0.556782
0.289253
-0.555316
0.287726
-0.552918
0.285695
-0.549466
0.283162
-0.545092
0.280133
-0.539802
0.276612
-0.533485
0.272606
-0.526272
0.268121
-0.518174
0.263167
-0.50909
0.25775
-0.499152
0.251882
-0.488374
0.245571
-0.476667
0.23883
-0.46416
0.23167
-0.450873
0.224103
-0.436727
0.216144
-0.421849
0.207804
-0.40626
0.199101
-0.389899
0.190048
-0.372884
0.180661
-0.355242
0.170958
-0.336922
0.160955
-0.318039
0.150669
-0.29862
0.14012
-0.278633
0.129324
-0.258179
0.118301
-0.23729
0.107071
-0.215949
0.0956528
-0.194247
0.0840665
-0.172214
0.072333
-0.149863
0.0604725
-0.127255
0.0485059
-0.104424
0.0364541
-0.0814087
0.0243384
-0.0582514
0.0121799
-0.034992
9.53346e-13
-0.0116707
-0.0121799
0.0116707
-0.0243386
0.034992
-0.0364546
0.0582514
-0.0485066
0.0814087
-0.0604737
0.104424
-0.0723346
0.127255
-0.0840687
0.149863
-0.0956557
0.172214
-0.107074
0.194247
-0.118305
0.215949
-0.129329
0.23729
-0.140126
0.258179
-0.150676
0.278633
-0.160963
0.29862
-0.170967
0.318039
-0.180672
0.336922
-0.190059
0.355242
-0.199113
0.372884
-0.207818
0.389899
-0.216158
0.40626
-0.224119
0.421849
-0.231686
0.436727
-0.238848
0.450873
-0.24559
0.46416
-0.251901
0.476667
-0.257771
0.488374
-0.263188
0.499152
-0.268144
0.50909
-0.272629
0.518174
-0.276636
0.526272
-0.280157
0.533485
-0.283187
0.539802
-0.28572
0.545092
-0.287752
0.549466
-0.289279
0.552918
-0.290299
0.555316
-0.290809
0.556782
-0.290809
0.557313
-0.290299
0.556783
-0.289279
0.555317
-0.287752
0.552919
-0.28572
0.549468
-0.283187
0.545095
-0.280157
0.539806
-0.276636
0.533488
-0.272629
0.526276
-0.268144
0.518179
-0.263188
0.509095
-0.257771
0.499157
-0.251901
0.48838
-0.24559
0.476673
-0.238848
0.464166
-0.231686
0.450879
-0.224119
0.436733
-0.216158
0.421855
-0.207818
0.406267
-0.199113
0.389905
-0.190059
0.372891
-0.180672
0.355248
-0.170967
0.336929
-0.160963
0.318045
-0.150676
0.298626
-0.140126
0.278638
-0.129329
0.258184
-0.118305
0.237295
-0.107074
0.215953
-0.0956557
0.194252
-0.0840684
0.172221
-0.0723346
0.149863
-0.0604739
0.127255
-0.0485063
0.104431
-0.0364546
0.0814085
-0.0243389
0.0582517
-0.0121796
0.0349944
0.0116704
0.0111933
-0.0106757
0.0223678
-0.0320116
0.0335022
-0.0532865
0.0445777
-0.0744696
0.0555758
-0.0955299
0.0664756
-0.116408
0.0772587
-0.137089
0.087907
-0.157542
0.0984003
-0.177694
0.108721
-0.197546
0.118852
-0.217069
0.128773
-0.236178
0.138468
-0.254888
0.147921
-0.273172
0.157114
-0.290937
0.166032
-0.30821
0.174658
-0.324968
0.182978
-0.341107
0.190976
-0.356671
0.198641
-0.371638
0.205956
-0.385898
0.212909
-0.399508
0.21949
-0.412448
0.225685
-0.424603
0.231485
-0.436043
0.236878
-0.446752
0.241856
-0.456611
0.246409
-0.465702
0.25053
-0.474011
0.254212
-0.481418
0.257448
-0.488016
0.260232
-0.493795
0.262559
-0.498634
0.264426
-0.502634
0.26583
-0.505791
0.266766
-0.507985
0.267235
-0.509325
0.267235
-0.50981
0.266766
-0.509325
0.26583
-0.507984
0.264426
-0.50579
0.262559
-0.502632
0.260232
-0.498631
0.257448
-0.493792
0.254212
-0.488013
0.25053
-0.481415
0.246409
-0.474008
0.241856
-0.465698
0.236878
-0.456607
0.231485
-0.446748
0.225685
-0.436038
0.21949
-0.424598
0.212909
-0.412443
0.205956
-0.399502
0.198641
-0.385893
0.190976
-0.371633
0.182978
-0.356666
0.174658
-0.341102
0.166032
-0.324963
0.157114
-0.308205
0.147921
-0.290932
0.138468
-0.273168
0.128773
-0.254884
0.118852
-0.236173
0.108721
-0.217065
0.0984003
-0.197542
0.087907
-0.177691
0.0772589
-0.157535
0.0664756
-0.13709
0.0555756
-0.116408
0.0445779
-0.0955237
0.0335022
-0.0744699
0.0223675
-0.0532864
0.0111936
-0.0320095
8.89922e-13
-0.010676
-0.0111936
0.010676
-0.0223677
0.0320095
-0.0335025
0.0532864
-0.0445786
0.0744699
-0.0555767
0.0955237
-0.0664771
0.116408
-0.077261
0.13709
-0.0879097
0.157535
-0.0984037
0.177691
-0.108725
0.197542
-0.118856
0.217065
-0.128779
0.236173
-0.138475
0.254884
-0.147929
0.273168
-0.157123
0.290932
-0.166041
0.308205
-0.174669
0.324963
-0.18299
0.341102
-0.190989
0.356666
-0.198654
0.371633
-0.20597
0.385893
-0.212925
0.399502
-0.219507
0.412443
-0.225703
0.424598
-0.231503
0.436038
-0.236898
0.446748
-0.241876
0.456607
-0.24643
0.465698
-0.250552
0.474008
-0.254235
0.481415
-0.257471
0.488013
-0.260256
0.493792
-0.262583
0.498631
-0.264451
0.502632
-0.265854
0.50579
-0.266791
0.507984
-0.26726
0.509325
-0.26726
0.50981
-0.266791
0.509325
-0.265854
0.507985
-0.264451
0.505791
-0.262583
0.502634
-0.260256
0.498634
-0.257471
0.493795
-0.254235
0.488016
-0.250552
0.481418
-0.24643
0.474011
-0.241876
0.465702
-0.236898
0.456611
-0.231503
0.446752
-0.225703
0.436043
-0.219507
0.424603
-0.212925
0.412448
-0.20597
0.399508
-0.198654
0.385898
-0.190989
0.371638
-0.18299
0.356671
-0.174669
0.341107
-0.166041
0.324968
-0.157123
0.30821
-0.147929
0.290937
-0.138475
0.273172
-0.128779
0.254888
-0.118856
0.236178
-0.108725
0.217069
-0.0984037
0.197546
-0.0879097
0.177694
-0.0772608
0.157542
-0.0664771
0.137089
-0.0555769
0.116408
-0.0445784
0.0955299
-0.0335025
0.0744696
-0.022368
0.0532865
-0.0111934
0.0320116
0.0106757
0.0101874
-0.00966224
0.0203577
-0.0289727
0.0304914
-0.0482279
0.0405716
-0.0674
0.0505814
-0.086461
0.0605016
-0.105357
0.0703156
-0.124075
0.080007
-0.142586
0.0895573
-0.160825
0.0989504
-0.178793
0.108171
-0.196462
0.1172
-0.213757
0.126024
-0.230691
0.134628
-0.24724
0.142995
-0.263317
0.151111
-0.278951
0.158962
-0.294118
0.166534
-0.308725
0.173814
-0.322812
0.180789
-0.336358
0.187447
-0.349264
0.193776
-0.361581
0.199765
-0.373293
0.205403
-0.384294
0.210681
-0.394649
0.21559
-0.404341
0.220121
-0.413264
0.224265
-0.421492
0.228016
-0.429013
0.231366
-0.435717
0.234311
-0.441688
0.236845
-0.446918
0.238964
-0.451297
0.240663
-0.454918
0.24194
-0.457775
0.242793
-0.459761
0.243219
-0.460974
0.243219
-0.461413
0.242793
-0.460974
0.24194
-0.45976
0.240663
-0.457774
0.238964
-0.454917
0.236845
-0.451296
0.234311
-0.446916
0.231366
-0.441686
0.228016
-0.435714
0.224265
-0.42901
0.220121
-0.421489
0.21559
-0.413261
0.210681
-0.404338
0.205403
-0.394645
0.199765
-0.38429
0.193776
-0.373289
0.187447
-0.361577
0.180789
-0.349259
0.173814
-0.336354
0.166534
-0.322807
0.158962
-0.308721
0.151111
-0.294114
0.142995
-0.278947
0.134628
-0.263313
0.126024
-0.247236
0.1172
-0.230687
0.108171
-0.213753
0.0989504
-0.196459
0.0895573
-0.17879
0.080007
-0.160823
0.0703158
-0.14258
0.0605016
-0.124076
0.0505811
-0.105358
0.0405718
-0.0864555
0.0304914
-0.0674005
0.0203574
-0.0482279
0.0101876
-0.0289708
8.22492e-13
-0.00966249
-0.0101877
0.00966249
-0.0203576
0.0289708
-0.0304918
0.0482279
-0.0405725
0.0674005
-0.0505821
0.0864555
-0.060503
0.105358
-0.0703178
0.124076
-0.0800095
0.14258
-0.0895604
0.160823
-0.0989542
0.17879
-0.108175
0.196459
-0.117206
0.213753
-0.126031
0.230687
-0.134635
0.247236
-0.143003
0.263313
-0.15112
0.278947
-0.158972
0.294114
-0.166545
0.308721
-0.173826
0.322807
-0.180802
0.336354
-0.18746
0.349259
-0.19379
0.361577
-0.19978
0.373289
-0.20542
0.38429
-0.210699
0.394645
-0.215608
0.404338
-0.220139
0.413261
-0.224284
0.421489
-0.228036
0.42901
-0.231387
0.435714
-0.234333
0.441686
-0.236867
0.446916
-0.238986
0.451296
-0.240685
0.454917
-0.241963
0.457774
-0.242816
0.45976
-0.243242
0.460974
-0.243242
0.461413
-0.242816
0.460974
-0.241963
0.459761
-0.240685
0.457775
-0.238986
0.454918
-0.236867
0.451297
-0.234333
0.446918
-0.231387
0.441688
-0.228036
0.435717
-0.224284
0.429013
-0.220139
0.421492
-0.215608
0.413264
-0.210699
0.404341
-0.20542
0.394649
-0.19978
0.384294
-0.19379
0.373293
-0.18746
0.361581
-0.180802
0.349264
-0.173826
0.336358
-0.166545
0.322812
-0.158972
0.308725
-0.15112
0.294118
-0.143003
0.278951
-0.134635
0.263317
-0.126031
0.24724
-0.117206
0.230691
-0.108175
0.213757
-0.0989542
0.196462
-0.0895604
0.178793
-0.0800095
0.160825
-0.0703176
0.142586
-0.060503
0.124075
-0.0505824
0.105357
-0.0405723
0.086461
-0.0304918
0.0674
-0.0203578
0.0482279
-0.0101874
0.0289727
0.00966224
0.00916362
-0.00863182
0.0183118
-0.0258829
0.0274272
-0.0430847
0.0364943
-0.0602122
0.0454982
-0.0772405
0.0544214
-0.0941217
0.0632492
-0.110843
0.0719667
-0.12738
0.0805572
-0.143674
0.0890063
-0.159726
0.0972999
-0.17551
0.105422
-0.190961
0.113359
-0.206089
0.121098
-0.220873
0.128624
-0.235236
0.135925
-0.249203
0.142987
-0.262752
0.149798
-0.275801
0.156346
-0.288386
0.162621
-0.300488
0.168609
-0.312017
0.174302
-0.323021
0.179689
-0.333484
0.184761
-0.343312
0.189509
-0.352562
0.193924
-0.361221
0.197999
-0.369192
0.201727
-0.376543
0.205101
-0.383261
0.208115
-0.38925
0.210764
-0.394585
0.213043
-0.399257
0.214949
-0.40317
0.216477
-0.406404
0.217626
-0.408957
0.218393
-0.410731
0.218777
-0.411815
0.218777
-0.412207
0.218393
-0.411814
0.217626
-0.41073
0.216477
-0.408956
0.214949
-0.406403
0.213043
-0.403168
0.210764
-0.399256
0.208115
-0.394583
0.205101
-0.389248
0.201727
-0.383259
0.197999
-0.37654
0.193924
-0.36919
0.189509
-0.361218
0.184761
-0.352559
0.179689
-0.343309
0.174302
-0.333481
0.168609
-0.323018
0.162621
-0.312014
0.156346
-0.300484
0.149798
-0.288382
0.142987
-0.275798
0.135925
-0.262749
0.128624
-0.249199
0.121098
-0.235233
0.113359
-0.22087
0.105422
-0.206086
0.0972999
-0.190958
0.0890063
-0.175508
0.0805572
-0.159723
0.0719667
-0.143672
0.0632494
-0.127375
0.0544214
-0.110844
0.045498
-0.0941221
0.0364945
-0.0772357
0.0274272
-0.0602127
0.0183116
-0.0430847
0.00916382
-0.0258813
7.511e-13
-0.00863206
-0.00916386
0.00863206
-0.0183118
0.0258813
-0.0274275
0.0430847
-0.0364951
0.0602127
-0.0454989
0.0772357
-0.0544227
0.0941221
-0.0632512
0.110844
-0.0719689
0.127375
-0.08056
0.143672
-0.0890098
0.159723
-0.0973041
0.175508
-0.105427
0.190958
-0.113365
0.206086
-0.121105
0.22087
-0.128632
0.235233
-0.135933
0.249199
-0.142996
0.262749
-0.149808
0.275798
-0.156357
0.288382
-0.162632
0.300484
-0.168622
0.312014
-0.174315
0.323018
-0.179704
0.333481
-0.184776
0.343309
-0.189525
0.352559
-0.193941
0.361218
-0.198017
0.36919
-0.201745
0.37654
-0.20512
0.383259
-0.208134
0.389248
-0.210784
0.394583
-0.213063
0.399256
-0.214969
0.403168
-0.216498
0.406403
-0.217647
0.408956
-0.218414
0.41073
-0.218798
0.411814
-0.218798
0.412207
-0.218414
0.411815
-0.217647
0.410731
-0.216498
0.408957
-0.214969
0.406404
-0.213063
0.40317
-0.210784
0.399257
-0.208134
0.394585
-0.20512
0.38925
-0.201745
0.383261
-0.198017
0.376543
-0.193941
0.369192
-0.189525
0.361221
-0.184776
0.352562
-0.179704
0.343312
-0.174315
0.333484
-0.168622
0.323021
-0.162632
0.312017
-0.156357
0.300488
-0.149808
0.288386
-0.142996
0.275801
-0.135933
0.262752
-0.128632
0.249203
-0.121105
0.235236
-0.113365
0.220873
-0.105427
0.206089
-0.0973041
0.190961
-0.0890098
0.17551
-0.08056
0.159726
-0.0719689
0.143674
-0.063251
0.12738
-0.0544227
0.110843
-0.0454991
0.0941217
-0.0364949
0.0772405
-0.0274275
0.0602122
-0.018312
0.0430847
-0.00916365
0.0258829
0.00863182
0.00812375
-0.00758626
0.0162338
-0.0227477
0.0243148
-0.0378659
0.0323531
-0.0529188
0.0403351
-0.0678845
0.0482458
-0.0827209
0.0560718
-0.0974167
0.0638001
-0.111951
0.0714157
-0.126271
0.0789061
-0.140378
0.0862586
-0.154251
0.0934591
-0.16783
0.100496
-0.181126
0.107356
-0.194119
0.114028
-0.206742
0.1205
-0.219017
0.126761
-0.230925
0.132799
-0.242394
0.138604
-0.253454
0.144167
-0.26409
0.149476
-0.274223
0.154522
-0.283894
0.159299
-0.29309
0.163795
-0.301727
0.168004
-0.309857
0.171918
-0.317467
0.175531
-0.324473
0.178835
-0.330933
0.181827
-0.336838
0.184499
-0.342101
0.186847
-0.34679
0.188868
-0.350896
0.190557
-0.354335
0.191912
-0.357177
0.19293
-0.359421
0.19361
-0.36098
0.19395
-0.361932
0.19395
-0.362277
0.19361
-0.361932
0.19293
-0.360979
0.191912
-0.35942
0.190557
-0.357177
0.188868
-0.354333
0.186847
-0.350895
0.184499
-0.346788
0.181827
-0.3421
0.178835
-0.336836
0.175531
-0.330931
0.171918
-0.324471
0.168004
-0.317465
0.163795
-0.309854
0.159299
-0.301725
0.154522
-0.293087
0.149476
-0.283892
0.144167
-0.27422
0.138604
-0.264087
0.132799
-0.253452
0.126761
-0.242391
0.1205
-0.230923
0.114028
-0.219015
0.107356
-0.20674
0.100496
-0.194117
0.0934591
-0.181124
0.0862586
-0.167828
0.0789061
-0.154249
0.0714157
-0.140376
0.0638001
-0.12627
0.056072
-0.111947
0.0482458
-0.0974177
0.040335
-0.0827214
0.0323532
-0.0678804
0.0243148
-0.0529194
0.0162336
-0.037866
0.00812394
-0.0227464
6.7583e-13
-0.00758649
-0.00812397
0.00758649
-0.0162338
0.0227464
-0.0243151
0.037866
-0.0323538
0.0529194
-0.0403358
0.0678804
-0.048247
0.0827214
-0.0560736
0.0974177
-0.0638021
0.111947
-0.0714183
0.12627
-0.0789092
0.140376
-0.0862623
0.154249
-0.0934635
0.167828
-0.100501
0.181124
-0.107362
0.194117
-0.114035
0.20674
-0.120508
0.219015
-0.126769
0.230923
-0.132808
0.242391
-0.138614
0.253452
-0.144177
0.264087
-0.149487
0.27422
-0.154535
0.283892
-0.159311
0.293087
-0.163808
0.301725
-0.168018
0.309854
-0.171933
0.317465
-0.175546
0.324471
-0.178852
0.330931
-0.181843
0.336836
-0.184516
0.3421
-0.186865
0.346788
-0.188886
0.350895
-0.190575
0.354333
-0.19193
0.357177
-0.192949
0.35942
-0.193629
0.360979
-0.193969
0.361932
-0.193969
0.362277
-0.193629
0.361932
-0.192949
0.36098
-0.19193
0.359421
-0.190575
0.357177
-0.188886
0.354335
-0.186865
0.350896
-0.184516
0.34679
-0.181843
0.342101
-0.178852
0.336838
-0.175546
0.330933
-0.171933
0.324473
-0.168018
0.317467
-0.163808
0.309857
-0.159311
0.301727
-0.154535
0.29309
-0.149487
0.283894
-0.144177
0.274223
-0.138614
0.26409
-0.132808
0.253454
-0.126769
0.242394
-0.120508
0.230925
-0.114035
0.219017
-0.107362
0.206742
-0.100501
0.194119
-0.0934635
0.181126
-0.0862623
0.16783
-0.0789092
0.154251
-0.0714183
0.140378
-0.0638021
0.126271
-0.0560734
0.111951
-0.048247
0.0974167
-0.040336
0.0827209
-0.0323536
0.0678845
-0.0243151
0.0529188
-0.016234
0.0378659
-0.00812379
0.0227477
0.00758626
0.00706964
-0.00652739
0.0141274
-0.0195727
0.0211598
-0.0325807
0.028155
-0.0455325
0.0351014
-0.0584094
0.0419856
-0.071175
0.0487961
-0.0838196
0.0555215
-0.0963249
0.062149
-0.108647
0.0686674
-0.120785
0.0750659
-0.132721
0.0813321
-0.144405
0.0874556
-0.155845
0.0934262
-0.167025
0.0992324
-0.177886
0.104864
-0.188447
0.110313
-0.198694
0.115568
-0.208561
0.120619
-0.218078
0.12546
-0.227229
0.13008
-0.235948
0.134472
-0.244269
0.138628
-0.252181
0.142541
-0.259613
0.146204
-0.266608
0.14961
-0.273156
0.152754
-0.279184
0.15563
-0.284742
0.158233
-0.289823
0.160558
-0.294352
0.162602
-0.298386
0.164361
-0.301919
0.165831
-0.304878
0.16701
-0.307324
0.167896
-0.309254
0.168488
-0.310596
0.168784
-0.311415
0.168784
-0.311712
0.168488
-0.311415
0.167896
-0.310595
0.16701
-0.309254
0.165831
-0.307323
0.164361
-0.304877
0.162602
-0.301918
0.160558
-0.298385
0.158233
-0.294351
0.15563
-0.289822
0.152754
-0.284741
0.14961
-0.279182
0.146204
-0.273154
0.142541
-0.266606
0.138628
-0.259611
0.134472
-0.252179
0.13008
-0.244267
0.12546
-0.235946
0.120619
-0.227227
0.115568
-0.218076
0.110313
-0.20856
0.104864
-0.198692
0.0992324
-0.188446
0.0934262
-0.177884
0.0874556
-0.167023
0.0813321
-0.155843
0.0750659
-0.144403
0.0686674
-0.13272
0.062149
-0.120783
0.0555215
-0.108645
0.0487963
-0.0963217
0.0419856
-0.0838206
0.0351012
-0.0711755
0.0281552
-0.058406
0.0211598
-0.0455331
0.0141272
-0.0325809
0.0070698
-0.0195716
5.9683e-13
-0.0065276
-0.00706983
0.0065276
-0.0141273
0.0195716
-0.02116
0.0325809
-0.0281556
0.0455331
-0.0351019
0.058406
-0.0419866
0.0711755
-0.0487977
0.0838206
-0.0555233
0.0963217
-0.0621513
0.108645
-0.0686702
0.120783
-0.0750692
0.13272
-0.081336
0.144403
-0.0874601
0.155843
-0.0934313
0.167023
-0.0992382
0.177884
-0.104871
0.188446
-0.11032
0.198692
-0.115575
0.20856
-0.120628
0.218076
-0.125469
0.227227
-0.13009
0.235946
-0.134483
0.244267
-0.13864
0.252179
-0.142553
0.259611
-0.146216
0.266606
-0.149624
0.273154
-0.152768
0.279182
-0.155644
0.284741
-0.158248
0.289822
-0.160574
0.294351
-0.162618
0.298385
-0.164376
0.301918
-0.165847
0.304877
-0.167026
0.307323
-0.167913
0.309254
-0.168504
0.310595
-0.1688
0.311415
-0.1688
0.311712
-0.168504
0.311415
-0.167913
0.310596
-0.167026
0.309254
-0.165847
0.307324
-0.164376
0.304878
-0.162618
0.301919
-0.160574
0.298386
-0.158248
0.294352
-0.155644
0.289823
-0.152768
0.284742
-0.149624
0.279184
-0.146216
0.273156
-0.142553
0.266608
-0.13864
0.259613
-0.134483
0.252181
-0.13009
0.244269
-0.125469
0.235948
-0.120628
0.227229
-0.115575
0.218078
-0.11032
0.208561
-0.104871
0.198694
-0.0992382
0.188447
-0.0934313
0.177886
-0.0874601
0.167025
-0.081336
0.155845
-0.0750692
0.144405
-0.0686702
0.132721
-0.0621513
0.120785
-0.0555233
0.108647
-0.0487975
0.0963249
-0.0419866
0.0838196
-0.0351021
0.071175
-0.0281555
0.0584094
-0.02116
0.0455325
-0.0141275
0.0325807
-0.00706967
0.0195727
0.00652739
0.00600312
-0.00545708
0.0119961
-0.0163633
0.0179676
-0.0272383
0.0239076
-0.0380664
0.029806
-0.0488318
0.0356517
-0.0595042
0.0414348
-0.0700755
0.0471456
-0.0805302
0.0527733
-0.0908316
0.0583083
-0.100979
0.0637415
-0.110959
0.0690624
-0.120727
0.0742622
-0.130291
0.079332
-0.139637
0.0842623
-0.148718
0.0890447
-0.157547
0.0936713
-0.166113
0.0981331
-0.174363
0.102423
-0.182319
0.106533
-0.18997
0.110456
-0.197259
0.114186
-0.204216
0.117715
-0.21083
0.121038
-0.217044
0.124148
-0.222892
0.12704
-0.228366
0.12971
-0.233406
0.132152
-0.238052
0.134362
-0.2423
0.136337
-0.246086
0.138072
-0.249459
0.139565
-0.252413
0.140814
-0.254886
0.141815
-0.256931
0.142567
-0.258545
0.14307
-0.259667
0.143321
-0.260352
0.143321
-0.2606
0.14307
-0.260352
0.142567
-0.259666
0.141815
-0.258545
0.140814
-0.256931
0.139565
-0.254886
0.138072
-0.252412
0.136337
-0.249458
0.134362
-0.246086
0.132152
-0.242299
0.12971
-0.238051
0.12704
-0.233404
0.124148
-0.228365
0.121038
-0.22289
0.117715
-0.217042
0.114186
-0.210829
0.110456
-0.204214
0.106533
-0.197257
0.102423
-0.189968
0.0981331
-0.182318
0.0936713
-0.174362
0.0890447
-0.166112
0.0842623
-0.157546
0.079332
-0.148716
0.0742622
-0.139636
0.0690624
-0.130289
0.0637415
-0.120725
0.0583083
-0.110958
0.0527733
-0.100978
0.0471456
-0.0908307
0.0414349
-0.0805277
0.0356517
-0.0700764
0.0298059
-0.0595048
0.0239077
-0.0488291
0.0179676
-0.038067
0.011996
-0.0272385
0.00600326
-0.0163624
5.14138e-13
-0.00545726
-0.00600328
0.00545726
-0.0119961
0.0163624
-0.0179679
0.0272385
-0.0239081
0.038067
-0.0298065
0.0488291
-0.0356526
0.0595048
-0.0414361
0.0700764
-0.0471472
0.0805277
-0.0527752
0.0908307
-0.0583107
0.100978
-0.0637443
0.110958
-0.0690657
0.120725
-0.074266
0.130289
-0.0793364
0.139636
-0.0842672
0.148716
-0.0890502
0.157546
-0.0936774
0.166112
-0.0981399
0.174362
-0.10243
0.182318
-0.106541
0.189968
-0.110465
0.197257
-0.114195
0.204214
-0.117725
0.210829
-0.121048
0.217042
-0.124158
0.22289
-0.127052
0.228365
-0.129722
0.233404
-0.132164
0.238051
-0.134375
0.242299
-0.13635
0.246086
-0.138085
0.249458
-0.139579
0.252412
-0.140827
0.254886
-0.141829
0.256931
-0.142582
0.258545
-0.143084
0.259666
-0.143335
0.260352
-0.143335
0.2606
-0.143084
0.260352
-0.142582
0.259667
-0.141829
0.258545
-0.140827
0.256931
-0.139579
0.254886
-0.138085
0.252413
-0.13635
0.249459
-0.134375
0.246086
-0.132164
0.2423
-0.129722
0.238052
-0.127052
0.233406
-0.124158
0.228366
-0.121048
0.222892
-0.117725
0.217044
-0.114195
0.21083
-0.110465
0.204216
-0.106541
0.197259
-0.10243
0.18997
-0.0981399
0.182319
-0.0936774
0.174363
-0.0890502
0.166113
-0.0842672
0.157547
-0.0793364
0.148718
-0.074266
0.139637
-0.0690657
0.130291
-0.0637443
0.120727
-0.0583107
0.110959
-0.0527752
0.100979
-0.0471472
0.0908316
-0.041436
0.0805302
-0.0356526
0.0700755
-0.0298066
0.0595042
-0.023908
0.0488318
-0.0179679
0.0380664
-0.0119962
0.0272383
-0.00600315
0.0163633
0.00545708
0.00492607
-0.00437719
0.00984385
-0.0131252
0.014744
-0.0218482
0.0196182
-0.0305336
0.0244584
-0.0391686
0.0292552
-0.0477291
0.0340008
-0.0562084
0.038687
-0.0645943
0.0433049
-0.0728572
0.0478469
-0.0809968
0.0523053
-0.0890013
0.0566716
-0.0968363
0.0609384
-0.104508
0.0650986
-0.112005
0.0691443
-0.119288
0.0730687
-0.126371
0.0768652
-0.133242
0.0805266
-0.139859
0.0840466
-0.146241
0.0874195
-0.152377
0.0906388
-0.158224
0.093699
-0.163804
0.0965951
-0.16911
0.0993215
-0.174094
0.101874
-0.178784
0.104247
-0.183175
0.106438
-0.187218
0.108442
-0.190945
0.110256
-0.194352
0.111876
-0.197389
0.1133
-0.200094
0.114525
-0.202464
0.115549
-0.204448
0.116371
-0.206088
0.116989
-0.207383
0.117401
-0.208282
0.117607
-0.208832
0.117607
-0.209031
0.117401
-0.208832
0.116989
-0.208282
0.116371
-0.207382
0.115549
-0.206088
0.114525
-0.204447
0.1133
-0.202463
0.111876
-0.200094
0.110256
-0.197389
0.108442
-0.194351
0.106438
-0.190944
0.104247
-0.187217
0.101874
-0.183175
0.0993215
-0.178784
0.0965951
-0.174093
0.093699
-0.169109
0.0906388
-0.163803
0.0874195
-0.158223
0.0840466
-0.152376
0.0805266
-0.14624
0.0768652
-0.139858
0.0730687
-0.133241
0.0691443
-0.12637
0.0650986
-0.119287
0.0609384
-0.112004
0.0566716
-0.104507
0.0523053
-0.0968355
0.0478469
-0.0890006
0.0433049
-0.0809961
0.038687
-0.0728566
0.0340009
-0.0645924
0.0292552
-0.0562093
0.0244582
-0.0477296
0.0196183
-0.0391665
0.014744
-0.0305341
0.00984374
-0.0218484
0.00492618
-0.0131245
4.27904e-13
-0.00437735
-0.0049262
0.00437735
-0.00984382
0.0131245
-0.0147442
0.0218484
-0.0196186
0.0305341
-0.0244588
0.0391665
-0.029256
0.0477296
-0.0340019
0.0562093
-0.0386883
0.0645924
-0.0433066
0.0728566
-0.0478489
0.0809961
-0.0523077
0.0890006
-0.0566743
0.0968355
-0.0609416
0.104507
-0.0651023
0.112004
-0.0691484
0.119287
-0.0730733
0.12637
-0.0768703
0.133241
-0.0805321
0.139858
-0.0840527
0.14624
-0.0874261
0.152376
-0.0906458
0.158223
-0.0937066
0.163803
-0.0966031
0.169109
-0.09933
0.174093
-0.101883
0.178784
-0.104257
0.183175
-0.106448
0.187217
-0.108452
0.190944
-0.110266
0.194351
-0.111887
0.197389
-0.113311
0.200094
-0.114536
0.202463
-0.115561
0.204447
-0.116383
0.206088
-0.117
0.207382
-0.117413
0.208282
-0.117619
0.208832
-0.117619
0.209031
-0.117413
0.208832
-0.117
0.208282
-0.116383
0.207383
-0.115561
0.206088
-0.114536
0.204448
-0.113311
0.202464
-0.111887
0.200094
-0.110266
0.197389
-0.108452
0.194352
-0.106448
0.190945
-0.104257
0.187218
-0.101883
0.183175
-0.09933
0.178784
-0.0966031
0.174094
-0.0937066
0.16911
-0.0906458
0.163804
-0.0874261
0.158224
-0.0840527
0.152377
-0.0805321
0.146241
-0.0768703
0.139859
-0.0730733
0.133242
-0.0691484
0.126371
-0.0651023
0.119288
-0.0609416
0.112005
-0.0566743
0.104508
-0.0523077
0.0968363
-0.0478489
0.0890013
-0.0433066
0.0809968
-0.0386883
0.0728572
-0.0340017
0.0645943
-0.029256
0.0562084
-0.0244589
0.0477291
-0.0196185
0.0391686
-0.0147442
0.0305336
-0.00984393
0.0218482
-0.00492609
0.0131252
0.00437719
0.00384038
-0.00328963
0.00767429
-0.00986409
0.0114944
-0.0164198
0.0152944
-0.0229471
0.0190678
-0.0294367
0.0228075
-0.0358702
0.0265071
-0.0422428
0.0301605
-0.0485451
0.0337607
-0.054755
0.0373016
-0.0608722
0.0407774
-0.0668879
0.0441813
-0.0727762
0.0475078
-0.0785416
0.0507511
-0.0841758
0.0539051
-0.0896497
0.0569646
-0.0949724
0.0599243
-0.100136
0.0627787
-0.105109
0.065523
-0.109905
0.0681525
-0.114517
0.0706622
-0.118911
0.073048
-0.123105
0.0753058
-0.127093
0.0774313
-0.130838
0.079421
-0.134363
0.0812715
-0.137663
0.0829793
-0.140701
0.0845415
-0.143503
0.0859556
-0.146063
0.0872187
-0.148346
0.0883288
-0.150379
0.0892841
-0.152159
0.0900826
-0.15365
0.0907232
-0.154883
0.0912046
-0.155856
0.091526
-0.156532
0.0916868
-0.156945
0.0916868
-0.157095
0.091526
-0.156945
0.0912046
-0.156532
0.0907232
-0.155856
0.0900826
-0.154883
0.0892841
-0.15365
0.0883288
-0.152159
0.0872187
-0.150378
0.0859556
-0.148345
0.0845415
-0.146063
0.0829793
-0.143502
0.0812715
-0.140701
0.079421
-0.137663
0.0774313
-0.134363
0.0753058
-0.130838
0.073048
-0.127092
0.0706622
-0.123105
0.0681525
-0.118911
0.065523
-0.114517
0.0627787
-0.109905
0.0599243
-0.105109
0.0569646
-0.100136
0.0539051
-0.0949719
0.0507511
-0.0896492
0.0475078
-0.0841753
0.0441813
-0.0785412
0.0407774
-0.0727758
0.0373016
-0.0668875
0.0337607
-0.0608718
0.0301605
-0.0547546
0.0265072
-0.0485438
0.0228075
-0.0422435
0.0190677
-0.0358707
0.0152945
-0.0294352
0.0114944
-0.0229476
0.00767421
-0.01642
0.00384047
-0.00986358
3.38258e-13
-0.00328975
-0.00384048
0.00328975
-0.00767427
0.00986358
-0.0114946
0.01642
-0.0152947
0.0229476
-0.0190681
0.0294352
-0.022808
0.0358707
-0.026508
0.0422435
-0.0301615
0.0485438
-0.0337619
0.0547546
-0.0373032
0.0608718
-0.0407792
0.0668875
-0.0441835
0.0727758
-0.0475103
0.0785412
-0.0507539
0.0841753
-0.0539083
0.0896492
-0.0569682
0.0949719
-0.0599283
0.100136
-0.0627831
0.105109
-0.0655277
0.109905
-0.0681576
0.114517
-0.0706678
0.118911
-0.0730539
0.123105
-0.0753121
0.127092
-0.077438
0.130838
-0.079428
0.134363
-0.0812789
0.137663
-0.082987
0.140701
-0.0845495
0.143502
-0.0859638
0.146063
-0.0872271
0.148345
-0.0883375
0.150378
-0.0892929
0.152159
-0.0900916
0.15365
-0.0907323
0.154883
-0.0912138
0.155856
-0.0915353
0.156532
-0.0916962
0.156945
-0.0916962
0.157095
-0.0915353
0.156945
-0.0912138
0.156532
-0.0907323
0.155856
-0.0900916
0.154883
-0.0892929
0.15365
-0.0883375
0.152159
-0.0872271
0.150379
-0.0859638
0.148346
-0.0845495
0.146063
-0.082987
0.143503
-0.0812789
0.140701
-0.079428
0.137663
-0.077438
0.134363
-0.0753121
0.130838
-0.0730539
0.127093
-0.0706678
0.123105
-0.0681576
0.118911
-0.0655277
0.114517
-0.0627831
0.109905
-0.0599283
0.105109
-0.0569682
0.100136
-0.0539083
0.0949724
-0.0507539
0.0896497
-0.0475103
0.0841758
-0.0441835
0.0785416
-0.0407792
0.0727762
-0.0373032
0.0668879
-0.0337619
0.0608722
-0.0301615
0.054755
-0.0265079
0.0485451
-0.022808
0.0422428
-0.0190682
0.0358702
-0.0152947
0.0294367
-0.0114946
0.0229471
-0.00767436
0.0164198
-0.0038404
0.00986409
0.00328963
0.00274795
-0.00219629
0.00549127
-0.00658568
0.00822475
-0.0109625
0.0109438
-0.0153205
0.0136438
-0.0196532
0.0163197
-0.0239485
0.0189669
-0.0282031
0.0215811
-0.0324107
0.0241571
-0.0365567
0.0266908
-0.0406408
0.0291779
-0.0446572
0.0316136
-0.0485885
0.0339938
-0.0524377
0.0363145
-0.0561993
0.0385713
-0.0598539
0.0407605
-0.0634076
0.0428783
-0.0668552
0.0449208
-0.0701754
0.0468844
-0.0733775
0.0487659
-0.0764567
0.0505617
-0.0793902
0.0522689
-0.0821902
0.0538844
-0.0848524
0.0554053
-0.087353
0.056829
-0.0897067
0.0581531
-0.0919099
0.0593751
-0.0939382
0.060493
-0.0958084
0.0615048
-0.097518
0.0624086
-0.0990419
0.0632029
-0.100399
0.0638864
-0.101588
0.0644578
-0.102584
0.0649162
-0.103407
0.0652606
-0.104056
0.0654906
-0.104508
0.0656057
-0.104783
0.0656057
-0.104883
0.0654906
-0.104783
0.0652606
-0.104507
0.0649162
-0.104056
0.0644578
-0.103407
0.0638864
-0.102583
0.0632029
-0.101588
0.0624086
-0.100399
0.0615048
-0.0990417
0.060493
-0.0975178
0.0593751
-0.0958083
0.0581531
-0.093938
0.056829
-0.0919097
0.0554053
-0.0897065
0.0538844
-0.0873528
0.0522689
-0.0848522
0.0505617
-0.08219
0.0487659
-0.07939
0.0468844
-0.0764564
0.0449208
-0.0733773
0.0428783
-0.0701752
0.0407605
-0.0668549
0.0385713
-0.0634074
0.0363145
-0.0598537
0.0339938
-0.0561991
0.0316136
-0.0524375
0.0291779
-0.0485883
0.0266908
-0.044657
0.0241571
-0.0406407
0.0215811
-0.0365566
0.018967
-0.0324099
0.0163197
-0.0282036
0.0136437
-0.0239489
0.0109438
-0.0196522
0.00822475
-0.0153208
0.00549121
-0.0109627
0.00274801
-0.00658536
2.45318e-13
-0.00219638
-0.00274802
0.00219638
-0.00549126
0.00658536
-0.00822485
0.0109627
-0.010944
0.0153208
-0.013644
0.0196522
-0.0163201
0.0239489
-0.0189675
0.0282036
-0.0215818
0.0324099
-0.0241581
0.0365566
-0.026692
0.0406407
-0.0291792
0.044657
-0.0316151
0.0485883
-0.0339956
0.0524375
-0.0363166
0.0561991
-0.0385737
0.0598537
-0.0407631
0.0634074
-0.0428812
0.0668549
-0.0449239
0.0701752
-0.0468878
0.0733773
-0.0487696
0.0764564
-0.0505657
0.07939
-0.0522731
0.08219
-0.053889
0.0848522
-0.0554101
0.0873528
-0.0568341
0.0897065
-0.0581584
0.0919097
-0.0593806
0.093938
-0.0604987
0.0958083
-0.0615107
0.0975178
-0.0624146
0.0990417
-0.0632091
0.100399
-0.0638928
0.101588
-0.0644643
0.102583
-0.0649227
0.103407
-0.0652673
0.104056
-0.0654973
0.104507
-0.0656124
0.104783
-0.0656124
0.104883
-0.0654973
0.104783
-0.0652673
0.104508
-0.0649227
0.104056
-0.0644643
0.103407
-0.0638928
0.102584
-0.0632091
0.101588
-0.0624146
0.100399
-0.0615107
0.0990419
-0.0604987
0.097518
-0.0593806
0.0958084
-0.0581584
0.0939382
-0.0568341
0.0919099
-0.0554101
0.0897067
-0.053889
0.087353
-0.0522731
0.0848524
-0.0505657
0.0821902
-0.0487696
0.0793902
-0.0468878
0.0764567
-0.0449239
0.0733775
-0.0428812
0.0701754
-0.0407631
0.0668552
-0.0385737
0.0634076
-0.0363166
0.0598539
-0.0339956
0.0561993
-0.0316151
0.0524377
-0.0291792
0.0485885
-0.026692
0.0446572
-0.0241581
0.0406408
-0.0215818
0.0365567
-0.0189675
0.0324107
-0.0163201
0.0282031
-0.0136441
0.0239485
-0.010944
0.0196532
-0.00822485
0.0153205
-0.00549132
0.0109625
-0.00274796
0.00658568
0.00219629
0.0016507
-0.00109911
0.00329862
-0.00329573
0.00494063
-0.00548607
0.00657396
-0.00766696
0.00819587
-0.00983521
0.00980327
-0.0119847
0.0113935
-0.0141139
0.0129638
-0.0162196
0.0145113
-0.0182944
0.0160333
-0.0203382
0.0175272
-0.0223482
0.0189903
-0.0243155
0.0204201
-0.0262418
0.0218142
-0.0281243
0.0231699
-0.0299532
0.0244849
-0.0317316
0.0257571
-0.0334569
0.026984
-0.0351185
0.0281636
-0.0367209
0.0292938
-0.0382619
0.0303726
-0.0397299
0.031398
-0.0411311
0.0323685
-0.0424634
0.0332821
-0.0437148
0.0341373
-0.0448927
0.0349327
-0.0459953
0.0356668
-0.0470103
0.0363383
-0.0479462
0.0369461
-0.0488018
0.037489
-0.0495644
0.0379662
-0.0502437
0.0383767
-0.0508386
0.03872
-0.0513368
0.0389953
-0.0517487
0.0392022
-0.0520738
0.0393404
-0.0522996
0.0394095
-0.0524377
0.0394095
-0.0524876
0.0393404
-0.0524377
0.0392022
-0.0522996
0.0389953
-0.0520737
0.03872
-0.0517487
0.0383767
-0.0513368
0.0379662
-0.0508386
0.037489
-0.0502436
0.0369461
-0.0495644
0.0363383
-0.0488017
0.0356668
-0.0479462
0.0349327
-0.0470103
0.0341373
-0.0459952
0.0332821
-0.0448926
0.0323685
-0.0437148
0.031398
-0.0424634
0.0303726
-0.0411311
0.0292938
-0.0397299
0.0281636
-0.0382618
0.026984
-0.0367209
0.0257571
-0.0351184
0.0244849
-0.0334568
0.0231699
-0.0317315
0.0218142
-0.0299532
0.0204201
-0.0281243
0.0189903
-0.0262418
0.0175272
-0.0243155
0.0160333
-0.0223481
0.0145113
-0.0203382
0.0129638
-0.0182944
0.0113935
-0.0162192
0.00980327
-0.0141142
0.00819583
-0.011985
0.00657399
-0.00983475
0.00494063
-0.00766714
0.00329859
-0.00548616
0.00165074
-0.00329557
1.49263e-13
-0.00109916
-0.00165075
0.00109916
-0.00329861
0.00329557
-0.00494069
0.00548616
-0.00657411
0.00766714
-0.00819601
0.00983475
-0.00980353
0.011985
-0.0113939
0.0141142
-0.0129642
0.0162192
-0.0145118
0.0182944
-0.0160339
0.0203382
-0.017528
0.0223481
-0.0189913
0.0243155
-0.0204212
0.0262418
-0.0218154
0.0281243
-0.0231713
0.0299532
-0.0244865
0.0317315
-0.0257589
0.0334568
-0.0269859
0.0351184
-0.0281656
0.0367209
-0.029296
0.0382618
-0.030375
0.0397299
-0.0314006
0.0411311
-0.0323712
0.0424634
-0.033285
0.0437148
-0.0341404
0.0448926
-0.0349359
0.0459952
-0.0356701
0.0470103
-0.0363417
0.0479462
-0.0369496
0.0488017
-0.0374926
0.0495644
-0.0379699
0.0502436
-0.0383806
0.0508386
-0.0387239
0.0513368
-0.0389993
0.0517487
-0.0392062
0.0520737
-0.0393444
0.0522996
-0.0394136
0.0524377
-0.0394136
0.0524876
-0.0393444
0.0524377
-0.0392062
0.0522996
-0.0389993
0.0520738
-0.0387239
0.0517487
-0.0383806
0.0513368
-0.0379699
0.0508386
-0.0374926
0.0502437
-0.0369496
0.0495644
-0.0363417
0.0488018
-0.0356701
0.0479462
-0.0349359
0.0470103
-0.0341404
0.0459953
-0.033285
0.0448927
-0.0323712
0.0437148
-0.0314006
0.0424634
-0.030375
0.0411311
-0.029296
0.0397299
-0.0281656
0.0382619
-0.0269859
0.0367209
-0.0257589
0.0351185
-0.0244865
0.0334569
-0.0231713
0.0317316
-0.0218154
0.0299532
-0.0204212
0.0281243
-0.0189913
0.0262418
-0.017528
0.0243155
-0.0160339
0.0223482
-0.0145118
0.0203382
-0.0129642
0.0182944
-0.0113938
0.0162196
-0.00980353
0.0141139
-0.00819604
0.0119847
-0.00657407
0.00983521
-0.00494069
0.00766696
-0.00329865
0.00548607
-0.00165071
0.00329573
0.00109911
0.000550556
0.00110018
0.00164784
0.0021926
0.00273355
0.00326967
0.00380005
0.0043238
0.00483992
0.00534755
0.00584583
0.00633382
0.0068107
0.00727566
0.00772782
0.00816642
0.00859073
0.00899994
0.00939335
0.00977032
0.0101301
0.0104721
0.0107958
0.0111005
0.0113858
0.0116511
0.0118959
0.0121198
0.0123226
0.0125036
0.0126628
0.0127997
0.0129142
0.013006
0.0130751
0.0131211
0.0131442
0.0131442
0.0131211
0.0130751
0.013006
0.0129142
0.0127997
0.0126628
0.0125036
0.0123226
0.0121198
0.0118959
0.0116511
0.0113858
0.0111005
0.0107958
0.0104721
0.0101301
0.00977032
0.00939335
0.00899994
0.00859073
0.00816642
0.00772782
0.00727566
0.0068107
0.00633382
0.00584583
0.00534755
0.00483992
0.0043238
0.00380006
0.00326967
0.00273354
0.00219261
0.00164784
0.00110017
0.000550568
5.02358e-14
-0.00055057
-0.00110018
-0.00164786
-0.00219265
-0.0027336
-0.00326975
-0.00380017
-0.00432394
-0.0048401
-0.00534777
-0.0058461
-0.00633413
-0.00681106
-0.00727607
-0.00772829
-0.00816694
-0.00859131
-0.00900057
-0.00939404
-0.00977106
-0.0101309
-0.010473
-0.0107967
-0.0111015
-0.0113868
-0.0116521
-0.011897
-0.012121
-0.0123237
-0.0125049
-0.012664
-0.012801
-0.0129155
-0.0130074
-0.0130764
-0.0131225
-0.0131455
-0.0131455
-0.0131225
-0.0130764
-0.0130074
-0.0129155
-0.012801
-0.012664
-0.0125049
-0.0123237
-0.012121
-0.011897
-0.0116521
-0.0113868
-0.0111015
-0.0107967
-0.010473
-0.0101309
-0.00977106
-0.00939404
-0.00900057
-0.00859131
-0.00816694
-0.00772829
-0.00727607
-0.00681106
-0.00633413
-0.0058461
-0.00534777
-0.0048401
-0.00432394
-0.00380016
-0.00326975
-0.00273361
-0.00219264
-0.00164786
-0.00110019
-0.000550558
)
;
boundaryField
{
emptyPatches_empt
{
type empty;
value nonuniform 0();
}
top_cyc
{
type cyclic;
value uniform 0;
}
bottom_cyc
{
type cyclic;
value uniform 0;
}
inlet_cyc
{
type cyclic;
value uniform 0;
}
outlet_cyc
{
type cyclic;
value uniform 0;
}
}
// ************************************************************************* //
|
|
a868871300a5a4b4bcc94b675f91446c5e0e37e7
|
16e90b3fb905350bdfe012f786ed24d83ee7d00c
|
/event/ArchonHandler.cc
|
f8dc581b2a4a4ae6828ad9718f5423d2cbb7795e
|
[] |
no_license
|
lcls-daq/ami
|
b216fac06164d4e860d8bf385b381d01a15719da
|
4b46b80970fec84979be24eedea8639bd90a9748
|
refs/heads/master
| 2023-08-03T00:30:36.833126
| 2023-07-29T09:28:36
| 2023-07-29T09:28:36
| 87,128,480
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,848
|
cc
|
ArchonHandler.cc
|
#include "ami/event/ArchonHandler.hh"
#include "ami/data/EntryImage.hh"
#include "ami/data/ChannelID.hh"
#include "pdsdata/xtc/DetInfo.hh"
#include "pdsdata/xtc/Xtc.hh"
#include "pdsdata/psddl/archon.ddl.h"
#include <stdio.h>
using namespace Pds;
static unsigned default_columns(const DetInfo& info)
{
unsigned rv = 0;
switch(info.device()) {
case Pds::DetInfo::Archon: rv = 4800; break;
default: break;
}
return rv;
}
static unsigned default_rows(const DetInfo& info)
{
unsigned rv = 0;
switch(info.device()) {
case Pds::DetInfo::Archon: rv = 300; break;
default: break;
}
return rv;
}
static inline unsigned num_rows(const Xtc* tc)
{
#define CASE_VSN(v) case v: \
{ const Pds::Archon::ConfigV##v& c = \
*reinterpret_cast<const Pds::Archon::ConfigV##v*>(tc->payload()); \
return c.lines(); }
switch(tc->contains.version()) {
CASE_VSN(1)
CASE_VSN(2);
CASE_VSN(3);
CASE_VSN(4);
default: break;
}
#undef CASE_VSN
return 0;
}
static inline unsigned num_columns(const Xtc* tc)
{
#define CASE_VSN(v) case v: \
{ const Pds::Archon::ConfigV##v& c = \
*reinterpret_cast<const Pds::Archon::ConfigV##v*>(tc->payload()); \
return c.pixels() * c.sensorTaps(); }
switch(tc->contains.version()) {
case 1:
{ const Pds::Archon::ConfigV1& c =
*reinterpret_cast<const Pds::Archon::ConfigV1*>(tc->payload());
return c.pixels() * 8; }
CASE_VSN(2);
CASE_VSN(3);
CASE_VSN(4);
default: break;
}
#undef CASE_VSN
return 0;
}
static std::list<Pds::TypeId::Type> config_type_list()
{
std::list<Pds::TypeId::Type> types;
types.push_back(Pds::TypeId::Id_ArchonConfig);
return types;
}
using namespace Ami;
ArchonHandler::ArchonHandler(const Pds::DetInfo& info) :
FrameHandler(info,
config_type_list(),
default_columns(info),
default_rows (info))
{
}
void ArchonHandler::_configure(Pds::TypeId tid,
const void* payload, const Pds::ClockTime& t)
{
Pds::TypeId::Type type = tid.id();
if (type == Pds::TypeId::Id_ArchonConfig) {
const Xtc* tc = reinterpret_cast<const Xtc*>(payload)-1;
const Pds::DetInfo& det = static_cast<const Pds::DetInfo&>(info());
unsigned columns = num_columns(tc);
unsigned rows = num_rows(tc);
unsigned ppb = image_ppbin(columns,rows,0);
_defColumns = columns;
_defRows = rows;
DescImage desc(det, (unsigned)0, ChannelID::name(det),
columns, rows, ppb, ppb);
_entry = new EntryImage(desc);
_entry->invalid();
_load_pedestals();
} else {
printf("%s line %d: unexpected type ID (%u)\n", __FILE__, __LINE__, (unsigned)type);
}
}
|
40bb291da7af7681dd8ce280c7f2212950bd9526
|
daa47619bb1d0eecbbb102d2d873b59a8fa5a9ef
|
/エクサウィザーズ 2019/d.cpp
|
3ebe32ce52c10e3b30aaff8f6733797ee482c662
|
[] |
no_license
|
burugaria7/AtCoder
|
f2bc90d628deecd78eb4a450ba2de35ff1a75748
|
8aced833101866afb5c9140d3c2f0b15f71ba9e6
|
refs/heads/master
| 2023-04-04T14:44:25.647806
| 2023-03-26T20:09:44
| 2023-03-26T20:09:44
| 182,044,831
| 0
| 0
| null | 2022-09-17T05:26:44
| 2019-04-18T08:08:19
|
C++
|
UTF-8
|
C++
| false
| false
| 317
|
cpp
|
d.cpp
|
#include <iostream>
#include <vector>
#include <string>
#include <cmath>
using namespace std;
int main(void){
cin.tie(0);
ios::sync_with_stdio(false);
int n,x;
//vector<int> s(n);
int s;
int tmp;
for(int i=0;i<n;i++){
cin >> s;
tmp = x[bmod]y;
}
return 0;
}
|
f9c8d997c2b2882f86ab6eecd4de8a9a6054b09d
|
9313d1ef537fb68c9d6b94ea819758f36dd461bb
|
/DShipTiny.cpp
|
3de19dfafbe4ee66b1a44a365bcd85f19d8e08bb
|
[] |
no_license
|
badprog/badprog-design-pattern-decorator
|
7897130a2c27b60d143718feb4e1f196d62a3f67
|
5bd97a601079aad2dd9dbb9a663075a8fd73a5e4
|
refs/heads/master
| 2020-03-10T02:38:59.815291
| 2018-04-11T19:23:02
| 2018-04-11T19:23:02
| 129,141,768
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 924
|
cpp
|
DShipTiny.cpp
|
// Badprog.com
#include <iostream>
#include <string>
#include "DShipTiny.h"
//-----------------------------------------------------------------------------
// Constructor
//-----------------------------------------------------------------------------
DShipTiny::DShipTiny() {
std::cout << "ShipTiny created." << std::endl;
}
//-----------------------------------------------------------------------------
// Destructor
//-----------------------------------------------------------------------------
DShipTiny::~DShipTiny() {
std::cout << "ShipTiny destroyed." << std::endl;
}
//-----------------------------------------------------------------------------
// decorate
//-----------------------------------------------------------------------------
double DShipTiny::getWeight(double weight) {
std::cout << "Final weight from DShipTiny." << std::endl;
return weight; // last and final return from the recursion
}
|
80556d01beba37beb5e2aeb438db37568356e20b
|
6dbf7ea75a74dbf6cbbb43da7f0bf13743f50b80
|
/CSE167 PA3/MatrixTransform.h
|
62d6d728f658206d432df6d4c10e1f87c10145e8
|
[] |
no_license
|
yumingqiao/OpenGL-Projects
|
05e454b05c72352dd3e5d9aacec4de06d2c2b2d7
|
46b19cd73f52209ef7f49ce8d6404cdae701e89d
|
refs/heads/master
| 2022-01-01T19:24:56.330524
| 2016-08-09T03:58:00
| 2016-08-09T03:58:00
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 460
|
h
|
MatrixTransform.h
|
#pragma once
#include "Group.h"
class MatrixTransform: public Group
{
public:
glm::mat4 M;
glm::mat4 R;
glm::mat4 S;
glm::mat4 T;
MatrixTransform();
~MatrixTransform();
void update(glm::mat4 C);
void draw();
//test
void rotate(float ang, glm::vec3 rotation, glm::mat4);
void translate(glm::vec3 translation);
void scale(glm::vec3 scale);
void orbit(float);
glm::mat4 rotation;
glm::mat4 translation;
//glm::mat4 scale;
glm::mat4 scale1;
};
|
1aa4c3df559cffaae559fc74c2344b7bd373aa79
|
8564a7836782bf0c5166fa224a8caf8d441ef379
|
/StiPersist/MapIterator.h
|
1a11e0936ad7373c896b17db9a4e541faad185eb
|
[] |
no_license
|
jordsti/stipersist
|
af1fd49c08bf8c7aea9cb5e47760211eca7bff65
|
a651516c80dba70264b0c465f086d3d20adf0bfa
|
refs/heads/master
| 2020-05-19T17:04:22.442637
| 2014-04-29T13:47:22
| 2014-04-29T13:47:22
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 578
|
h
|
MapIterator.h
|
#ifndef MAPITERATOR_H
#define MAPITERATOR_H
#include "Iterator.h"
#include "Map.h"
namespace StiPersist
{
namespace Container
{
class MapIterator :
public Iterator
{
public:
MapIterator(Map *m_map);
virtual ~MapIterator();
bool hasNext(void);
bool moveNext(void);
std::string getKey(void);
Persistable* getElement(void);
template <typename T>
T* getElement(void)
{
return dynamic_cast<T*>(current->getElement());
}
IteratorType getType(void);
private:
Map *map;
MapNode *current;
bool started;
};
}
}
#endif
|
b408b05a1aeccbe09fc66c7b7728281a1956f781
|
cd50eac7166505a8d2a9ef35a1e2992072abac92
|
/solutions/ecoo/ecoo14r2p3.cpp
|
f8c129960e56b150474c5cc592384d1a00cb940b
|
[] |
no_license
|
AvaLovelace1/competitive-programming
|
8cc8e6c8de13cfdfca9a63e125e648ec60d1e0f7
|
a0e37442fb7e9bf1dba4b87210f02ef8a134e463
|
refs/heads/master
| 2022-06-17T04:01:08.461081
| 2022-04-28T00:08:16
| 2022-04-28T00:08:16
| 123,814,632
| 8
| 5
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,371
|
cpp
|
ecoo14r2p3.cpp
|
/*
Solution to ECOO '14 R2 P3 - EasySweeper by Ava Pun
Key concepts: simulation
*/
#include <bits/stdc++.h>
using namespace std;
#define f first
#define s second
#define pb push_back
#define FILL(a, b) memset(a, b, sizeof(a))
typedef long long int ll;
typedef pair<int, int> pii;
typedef pair<pii, int> piii;
typedef vector<int> vi;
typedef vector<pii> vii;
const int INF = 0x3F3F3F3F;
const int MOD = 1e9 + 7;
const int MAX = 2 * 250 + 5;
int N;
string grid[25];
char ans[25][25];
int cnt(int i0, int j0, char c) {
int n = 0;
for (int i = i0 - 1; i <= i0 + 1; i++) {
for (int j = j0 - 1; j <= j0 + 1; j++) {
if (i >= 0 && i < N && j >= 0 && j < N) {
n += ans[i][j] == c;
}
}
}
return n;
}
void flood(int i0, int j0, char c) {
for (int i = i0 - 1; i <= i0 + 1; i++) {
for (int j = j0 - 1; j <= j0 + 1; j++) {
if (i >= 0 && i < N && j >= 0 && j < N) {
if (ans[i][j] == ' ') {
ans[i][j] = c;
}
}
}
}
}
int main() {
cin.sync_with_stdio(0);
cin.tie(0);
for (int test = 1; test <= 5; test++) {
FILL(ans, ' ');
cin >> grid[0];
N = (int) grid[0].length();
for (int i = 1; i <= N - 1; i++) {
cin >> grid[i];
}
bool done = false;
while (!done) {
done = true;
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (grid[i][j] != '-') {
if (cnt(i, j, 'M') + cnt(i, j, ' ') == grid[i][j] - '0') {
flood(i, j, 'M');
} else if (cnt(i, j, 'M') == grid[i][j] - '0') {
flood(i, j, '.');
}
}
}
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (ans[i][j] == ' ') {
done = false;
}
}
}
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
cout << ans[i][j];
}
cout << "\n";
}
cout << "\n";
}
return 0;
}
|
836a2d8bfcf6d8eadf51dd593a3b83e2aca2d3af
|
2aab3a0d0502b73dba7adb3b4daf68e00a3676af
|
/lib/TroykaMeteoSensor-master/src/TroykaMeteoSensor.h
|
5733761a917bb47f432cc58401eb21f6d379862f
|
[] |
no_license
|
iscanderufa/NEW_HDISTILER
|
5ac4cea8dd4cc6465ac92f27a60730ad9b67f5c0
|
403c6c5250a104a216583df0848611d5f87de643
|
refs/heads/master
| 2022-11-19T00:12:56.362688
| 2020-07-16T18:12:46
| 2020-07-16T18:12:46
| 279,868,906
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,159
|
h
|
TroykaMeteoSensor.h
|
/****************************************************************************/
// Function: Header file for TroykaMeteoSensor
// Hardware: SHT30, SHT31 and SHT35
// Arduino IDE: Arduino-1.8.5
// Author: Igor Dementiev
// Date: Aug 20,2018
// Version: v1.0.0
// by www.amperka.ru
/****************************************************************************/
#include <Arduino.h>
#include <Wire.h>
#ifndef TROYKA_METEO_SENSOR_H_
#define TROYKA_METEO_SENSOR_H_
#define JUMPER_OFF 0x44
#define JUMPER_ON 0x45
#define SHT_REP_HIGH_CLOCK_STRETCH 0x2C06
#define SHT_REP_MEDIUM_CLOCK_STRETCH 0x2C0D
#define SHT_REP_LOW_CLOCK_STRETCH 0x2C10
#define SHT_REP_HIGH 0x2400
#define SHT_REP_MEDIUM 0x240B
#define SHT_REP_LOW 0x2416
#define SHT_HEATER_ON 0x306D
#define SHT_HEATER_OFF 0x3066
#define SHT_SOFT_RESET 0x30A2
#define SHT_READ_STATUS 0xF32D
#define SHT_OK 0
#define SHT_ERROR_DATA -1
#define SHT_ERROR_CHECKSUM -2
#define SHT_DATA_SIZE 6
#define SHT_CELSIUS_TO_KELVIN 273.15
class TroykaMeteoSensor
{
public:
TroykaMeteoSensor(uint8_t i2cAddr = JUMPER_OFF);
~TroykaMeteoSensor();
void begin();
void reset();
int8_t read();
void setRepeatability(uint8_t repeatability);
void clockStretchingOn();
void clockStretchingOff();
void heaterOn();
void heaterOff();
float getTemperatureC() const { return _temperatureC; }
float getTemperatureF() const { return _temperatureF; }
float getTemperatureK() const { return _temperatureK; }
float getHumidity() const { return _humidity; }
private:
void _writeReg(uint16_t data);
uint8_t _checkCRC8(const uint8_t *data, int len);
uint8_t _i2cAddr;
uint8_t _repeatability;
bool _stateClockStretching;
float _temperatureC;
float _temperatureF;
float _temperatureK;
float _humidity;
};
#endif // TROYKA_METEO_SENSOR_H_
|
f74bdbc736f7d9af6a00623a4e76dd0a7e873877
|
7e48d392300fbc123396c6a517dfe8ed1ea7179f
|
/RodentVR/Intermediate/Build/Win64/RodentVR/Inc/GeometryCache/GeometryCacheMeshData.generated.h
|
2686b356528dc262a4f45d58e9f35df79e5c4397
|
[] |
no_license
|
WestRyanK/Rodent-VR
|
f4920071b716df6a006b15c132bc72d3b0cba002
|
2033946f197a07b8c851b9a5075f0cb276033af6
|
refs/heads/master
| 2021-06-14T18:33:22.141793
| 2020-10-27T03:25:33
| 2020-10-27T03:25:33
| 154,956,842
| 1
| 1
| null | 2018-11-29T09:56:21
| 2018-10-27T11:23:11
|
C++
|
UTF-8
|
C++
| false
| false
| 1,902
|
h
|
GeometryCacheMeshData.generated.h
|
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef GEOMETRYCACHE_GeometryCacheMeshData_generated_h
#error "GeometryCacheMeshData.generated.h already included, missing '#pragma once' in GeometryCacheMeshData.h"
#endif
#define GEOMETRYCACHE_GeometryCacheMeshData_generated_h
#define Engine_Plugins_Experimental_GeometryCache_Source_GeometryCache_Classes_GeometryCacheMeshData_h_97_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FGeometryCacheMeshData_Statics; \
static class UScriptStruct* StaticStruct();
template<> GEOMETRYCACHE_API UScriptStruct* StaticStruct<struct FGeometryCacheMeshData>();
#define Engine_Plugins_Experimental_GeometryCache_Source_GeometryCache_Classes_GeometryCacheMeshData_h_39_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FGeometryCacheVertexInfo_Statics; \
GEOMETRYCACHE_API static class UScriptStruct* StaticStruct();
template<> GEOMETRYCACHE_API UScriptStruct* StaticStruct<struct FGeometryCacheVertexInfo>();
#define Engine_Plugins_Experimental_GeometryCache_Source_GeometryCache_Classes_GeometryCacheMeshData_h_15_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FGeometryCacheMeshBatchInfo_Statics; \
GEOMETRYCACHE_API static class UScriptStruct* StaticStruct();
template<> GEOMETRYCACHE_API UScriptStruct* StaticStruct<struct FGeometryCacheMeshBatchInfo>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID Engine_Plugins_Experimental_GeometryCache_Source_GeometryCache_Classes_GeometryCacheMeshData_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
978022bb13d033ef96d75dcf5a905dfc1f054d32
|
d25d74bad8c68ac8f2a29a22c6d6860290185254
|
/lc1402rdcDsh.cpp
|
8b2fbe0c0bddd379639e7953b7e6934f3bbe0006
|
[] |
no_license
|
ZhongZeng/Leetcode
|
9b7e71838ff4ad80a6b85f680f449e53df24c5d2
|
a16f8ea31c8af1a3275efcf234989da19ba1581e
|
refs/heads/master
| 2021-07-14T19:32:49.911530
| 2021-03-29T04:25:54
| 2021-03-29T04:25:54
| 83,813,978
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,180
|
cpp
|
lc1402rdcDsh.cpp
|
/*
1402. Reducing Dishes
Company OT
Related Topics Dynamic Programming (suggested: Greedy)
Hard (suggested: Medium or Easy)
Runtime: 4 ms, faster than 93.93% of C++ online submissions for Reducing Dishes.
Memory Usage: 8.1 MB, less than 100.00% of C++ online submissions for Reducing Dishes.
Next challenges: 4 Keys Keyboard, Valid Palindrome III,
Build Array Where You Can Find The Maximum Exactly K Comparisons
*/
class Solution {
public:
int maxSatisfaction(vector<int>& satisfaction) {
// Array, Greedy; O(n*log(n)) time, O(1) space
int mx, sat=0, sum=0;
sort( satisfaction.begin(), satisfaction.end());
for( int i=0; i<satisfaction.size(); i++){
sat+=(i+1)*satisfaction[i];
sum+=satisfaction[i];
}
mx=sat;
for( int i=0; i<satisfaction.size()&&satisfaction[i]<0; i++){// removing negative dishes one-by-one, while keeping all positive dishes
sat-=sum;// remove satisfaction[i] and move subsquent dishes left by 1
sum-=satisfaction[i];
if(mx<sat) mx=sat;
}
return mx;
}
};
|
21bba90ac6c0430daf57d22ffb1a0c851163d646
|
63beb1e37f381a8cf09fd70fae9b99d743dc5dbe
|
/Ksiegarnia/Pracownicy.cpp
|
cfdc5273804336b5de5797ef6c264388494b7d2b
|
[] |
no_license
|
jakubmagier/Ksiegarnia
|
845f126c2458266fca102de23e85168d93a1eec5
|
748f4f2e3c213b3a074ca238af86b23a51447b3d
|
refs/heads/master
| 2021-01-22T23:21:29.575193
| 2017-05-15T18:10:20
| 2017-05-15T18:10:20
| 85,631,437
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 819
|
cpp
|
Pracownicy.cpp
|
#include <iostream>
#include <string>
#include "Pracownicy.h"
using namespace std;
Pracownicy::Pracownicy()
{
#ifdef _DEBUG
cout << "Wywolano konstruktor obiektu Pracownicy" << endl;
#endif
}
Pracownicy::Pracownicy(string nowe_nazw, float nowe_zarob)
{
#ifdef _DEBUG
cout << "Wywolano konstruktor z parametrami obiektu Pracownicy" << endl;
#endif
nazwisko_i_imie = nowe_nazw;
zarobki = nowe_zarob;
}
Pracownicy::~Pracownicy()
{
#ifdef _DEBUG
cout << "Wywolano destruktor obiektu Pracownicy" << endl;
#endif
}
//===========================OPERATORY==============================
ostream&operator<<(ostream&s, Pracownicy &p) //operator strumieniowy
{
s << "Nazwisko i imie: "<< endl;
s << p.nazwisko_i_imie << endl;
s << "Zarobki: " << endl;
s << p.zarobki << endl;
return s;
}
|
f5e6f8d6bc799cb63bff33187c8cd098ff351251
|
dcf74fbce1974282cc2f6757bf3d077db4cdf381
|
/QuadTable.h
|
4cf1f0ba51319f0ff10a92116c02788499011a5d
|
[] |
no_license
|
ChristopherMcCracken/Compiler
|
d8cfd6800cb365064404c64428174700be68221e
|
a0a5f93cda16d59bdfab68b94d8cb0d4f6f2fb4f
|
refs/heads/main
| 2023-02-09T07:38:34.168458
| 2021-01-04T06:16:26
| 2021-01-04T06:16:26
| 326,583,973
| 0
| 0
| null | null | null | null |
WINDOWS-1258
|
C++
| false
| false
| 1,173
|
h
|
QuadTable.h
|
#pragma once
#include <vector>
#include <iostream>
#include <iomanip>
using namespace std;
// Holds sequence of quadcode instructions and helper functions
class QuadTable
{
public:
vector<vector<int>> quadTable;
// Create a new, empty QuadTable ready for data to be added, with the specified number of rows(size).
QuadTable();
// Allocate and initialize contents of Quad table
void BuildQuads(string choice);
// Returns the index of the next open slot in the QuadTable
int NextQuad();
// Append new quadcode entry
void AddQuad(int opcode, int op1, int op2, int op3);
// Returns the quadcode located at index
vector<int> GetQuad(int index);
// Returns the mnemonic string associated with the opcode parameter
// Used during interpreter ‘TRACE’ mode to print out the stored opcodes legibly
string GetMnemonic(int opcode);
// Changes the contents of the existing quad at index.Used only when backfilling
// jump addresses later, during code generation, and very important
void SetQuad(int index, int opcode, int op1, int op2, int op3);
// Prints the currently used contents of the Quad table in neat tabular format
void PrintQuadTable();
};
|
7f7aeea847bf0747b60d92a4607ef71f719f7dfb
|
baa2750c792f2d99aa02cdff343944dc02a3e368
|
/p3.cpp
|
75c70c319e337592a7c421a393bb838f7be1429c
|
[] |
no_license
|
Damien8x/Project-3
|
1cb7e14263b0f2f4a9d7d63d34e83152b0bca9cc
|
9117bd73c84d18c5c64b243e2c6289d87652c370
|
refs/heads/master
| 2021-08-08T09:03:46.408201
| 2017-11-10T02:12:04
| 2017-11-10T02:12:04
| 109,187,591
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 14,545
|
cpp
|
p3.cpp
|
// Author: Damien Sudol
// Filename: EncryptWord P2
// Date: 10/16/2017
// Version: 1.3
// Description: Driver designed to test overloading of operators for both EncryptWord and FindFault
// types, ensuring that the intended functionality is consistant, while logical.
//
// Overloaded operators tested for FindFault class(in depth provided in .h):
// + additon operator concatenates FindFault arrays
// = assigns values of right object to left
// == compares equality of all attributes for left and right objects, including encapsulated EncryptWord decrypted phrases
// returns true if equal
// += adds left and right arguments, then assigns value to left object
// != compares equality of all atrributes for left andd right object, including encapuslated EncryptWord decrypted phrases
// returns true if not equal
//
// OverLoadded operators tested for EncryptWord class(in depth provied in .h):
// + returns EncryptWord object with encryped phrase equal to concatenation of left and right objects decrypted phrases
// = assigns all attributes of right object to left object
// == compares decrypted phrases of left and right objects for equality
// returns true if equal
// != compares decrypted phrases of left andd right objects for equality
// returns true if not equal
// += concatenates left andd right decrypted phrases, re-encrypts phrase, assigns it to left object, sets all other attributes to default
//
//
// Additionally, copy constructors for both EncryptWord and FindFault are added to their respected classes. Two additional public functions are added
// to the FindFault class allowing for manipulation of EncryptWord objects, adding of EncryptWord dobjects (with returned object addded to container)
// as well as adding and assigning values to an existing object, through the overloading of the += operator.
//
// Assumptions: All overloaded operators will be used for their intended purposes. FindFault.getNumberOfElements() should be referenced whenever
// accessing EncryptWord containers, ensuring arguments are within bounds. Applications should only be build around the listed operators above.
// Amy operators not listed have not been overloaded and will result in errors. All overloaded operators have been chosen for a specific
// purpose, to the benefit of the user.
#include "FindFault.h"
#include <iostream>
#include <string>
const string STAR = "***************************************************************************************";
using namespace std;
void welcomeMessage();
void printAddEncryptWordObjects(FindFault&, int, int);
void checkAssignment(FindFault&, FindFault&);
void checkAdditionAssignmentOverload(FindFault&, FindFault&);
FindFault checkAddition(FindFault&, FindFault&);
void checkEWadditionAssignmentOverload(FindFault& obj, int , int);
int main(){
//welcome message
welcomeMessage();
//create first FindFault object
FindFault ff;
// encryt two strings, adding two elements to ff's collection
ff.encrypt("C++ rocks!");
ff.encrypt("enrypt MEEEEEE");
// create second FindFault object
FindFault ff2;
// encrypt two strings, adding two elements to ff2's collection
ff2.encrypt("corruption may occur");
ff2.encrypt("one of these is corrupted");
ff2.encrypt(" corruption may occur");
// add elements at position 1 and 2 for objects ff and add returned EncryptWord object to container
printAddEncryptWordObjects(ff, 1, 2);
// assign ff to ff2
checkAssignment(ff2, ff);
// add another element to ff2
ff2.encrypt("YYYYYYYYYYYOOOOOOOOOO");
// add ff to ff2 and assign value to ff3
FindFault ff3 = checkAddition(ff, ff2);
// add another element to ff3
ff3.encrypt("Adding another to ff3");
// add elements at 1 and 3 for object ff3 and addd returned EncryptWord dobject to container
printAddEncryptWordObjects(ff3, 1, 3);
// assign ff3 to ff
checkAssignment(ff, ff3);
// add ff3 to ff2 and assign value to ff2
checkAdditionAssignmentOverload(ff2, ff3);
// add eleement 1 and 2 for object ff and assign value to element 1
checkEWadditionAssignmentOverload(ff, 1, 2);
// create new FindFault object and populate container
FindFault ff4;
ff4.encrypt("another encryption");
ff4.encrypt("let's keep testing!");
ff4.encrypt("let's assign 4 to another object");
ff4.encrypt("one more");
//add ff4 to ff2 and assign value to ff4
checkAdditionAssignmentOverload(ff4, ff2);
// assing object ff to ff4
checkAssignment(ff4, ff);
// add object ff to ff3 and assign to ff5
FindFault ff5 = checkAddition(ff, ff3);
// add objects ff2 andd ff1
checkAdditionAssignmentOverload(ff5, ff);
// add element 1 to itself for object ff2
checkEWadditionAssignmentOverload(ff2, 1, 1);
// add elements at position 1 and 3 for object ff5 and add returned EncryptWord object to container
printAddEncryptWordObjects(ff5, 1, 3);
return 0;
}
//definition: demonstrates the ability to add and assign EncryptWord objects using
// overloaded += object, through the public function addAssignEncryptWordObjects()
// provided in the FindFault class
// precondition: Object must be "ON", integer arguments must be greater than 0 and less
// than or equal to obj.getNumberOfElements().
// modify: element for corresponding right value will not be impacted. element at left
// position will have the right arguments phrase appended to the left arguments phrase
// expected output: original phrases for EncryptWord objects at positions left and right
// followed by the new phrase after left += right
void checkEWadditionAssignmentOverload(FindFault& obj, int left, int right){
cout << "print left EncryptWord object's decrypted phrase:" <<endl;
cout << obj.decrypt(left) << endl << endl;
cout << "print right EncryptWord object's decrypted phrase" << endl;
cout << obj.decrypt(right) << endl << endl;
cout << "~add left and right EncryptWord objects and assign value to left object~" << endl << endl;
obj.addAssignEncryptWordObjects(left, right);
cout << "print left EncryptWord object's decrypted phrase, post assignment" <<endl;
cout << obj.decrypt(left) << endl;
cout << STAR << endl;
}
// definition: designed to test overloadding of binary operator +=. Displays number of Elements
// and FindFault.decrypt() for all contained EncryptWord objects for left andd right arguments.
// left and right arguments are then added andd assigned to left object using overloaded += operator.
// number of elements and FindFault.decrypt() for all contained EncryptWord objects are then printed
// for left argument, post assignment.
// precondition: minimumm of one FindFault object which is "ON" to bue used as argument(s).
// modify: right argument not impacted. left object will add copies of all right objects container
// EncryptWord contents.
void checkAdditionAssignmentOverload(FindFault& objLeft, FindFault& objRight){
cout << "print number of elements for left object:" << endl;
cout << objLeft.getNumberOfElements() << endl <<endl;
cout << "print collection of EncryptWord decrypted phrases for left argument:" << endl;
for(int i = 1; i <= objLeft.getNumberOfElements(); i ++){
cout << objLeft.decrypt(i) << endl;
}
cout << "\nprint number of elements for right object:" << endl;
cout << objRight.getNumberOfElements() << endl << endl;
cout << "print collection of EncryptWord decrypted phrases for right argument:" << endl;
for(int j = 1; j <= objRight.getNumberOfElements(); j++){
cout << objRight.decrypt(j) << endl;
}
cout << "\n~Add FindFault objLeft and objRight and assign values to objLeft~" << endl << endl;
objLeft+=objRight;
cout << "print number of elements for objLeft." << endl << "expected output to be sum of objLeft and objRight prior to assignment" << endl << endl;
cout << objLeft.getNumberOfElements() << endl << endl;
cout << "print collection of EncryptWord decrypted phrases for objLeft." << endl << "expect concatenated output of objLeft and objRight collections prior to assignment:" << endl << endl;
for(int k = 1; k <= objLeft.getNumberOfElements(); k++){
cout << objLeft.decrypt(k) << endl;
}
cout << STAR << endl;
}
// definition: designed to test overloading of FindFault + operator. Displays number of Elements, contents of container (contained EncryptWord's
// decrypted phrases) for both left and right arguments. new object is created and assigned the value produced by the additon of left andd right
// FindFault objects. Contents of new FindFault object are the concatenation of left and right containers, containing EncryptWord objects
// with the same decrypted outputs as the related arguments, but all other attributes may or may not be identical (new shift value etc).
// precondition: minimum of one FindFault object which is "ON" to be used as argument(s).
// modify: arguments not impacted. Creates and returns new EncryptWord object, a concatenation of arguments containers.
// expected output: prints number of elements for left object, followed by all decrypted phrases contained in left object's container.
// prints number of elements for right object, followed by all decrypted phrases contained in right object's container
// prints number of elements for new FindFault object assigned the sum of left and right object, followed by all phrases contained in
// new object's container. number of elements should equal sum of left and right arguments number of elements, contents should be
// a concatenation of left and right argument's contents.
FindFault checkAddition(FindFault& objLeft, FindFault& objRight){
cout << "print number of elements for left object:" << endl;
cout << objLeft.getNumberOfElements() << endl <<endl;
cout << "print collection of EncryptWord decrypted phrases for left argument:" << endl;
for(int i = 1; i <= objLeft.getNumberOfElements(); i ++){
cout << objLeft.decrypt(i) << endl;
}
cout << "\nprint number of elements for right object:" << endl;
cout << objRight.getNumberOfElements() << endl << endl;
cout << "print collection of EncryptWord decrypted phrases for right argument:" << endl;
for(int j = 1; j <= objRight.getNumberOfElements(); j++){
cout << objRight.decrypt(j) << endl;
}
cout << "\n~Add FindFault objLeft and objRight and assign values to" << endl << " new FindFault object, addObject~" << endl << endl;
FindFault addObject;
addObject = objLeft + objRight;
cout << "print number of elements for new object, addObject." << endl << "expect output to be sum of objRight and objLeft elements:" << endl << endl;
cout << addObject.getNumberOfElements() << endl << endl;
cout << "print collection of EncryptWord decrypted phrases for addObject." << endl << "expect concatenated output of objLeft and objRight collections:" << endl << endl;
for(int k = 1; k <= addObject.getNumberOfElements(); k++){
cout << addObject.decrypt(k) << endl;
}
cout << STAR << endl;
return addObject;
}
// definition: designed to test overloading of multiple operators; == , != , =. Takes in two arguments which may or may not be the same object
// compare if objects are == ( may return true), compare if objects are != (will return opposite of ==)
// assign right argument to left argument. check if arguments are == (will return true), check if objects are != (will return false) .
// precondition: Both FindFault arguments must be "ON".
// modify: left arguent may be modified to the state of right argument if they are != (as per FindFault.h)
// expected output: 0 or 1 \n opposite of first line \n 1 \n 0
void checkAssignment(FindFault & objLeft, FindFault & objRight){
cout << "is left argument == to right? 1 = yes, 0 = no" << endl;
cout << (objLeft == objRight) << endl << endl;
cout <<"is left argument != to right? 1 = no, 0 = yes (opposite of above)" << endl;
cout << (objLeft != objRight) << endl << endl;
cout << "~assigning objRight to objLeft~" << endl << endl;
objLeft = objRight;
cout << "is left argument == to right? 1 = yes, 0 = no (expect 1)" << endl;
cout << (objLeft == objRight) << endl << endl;
cout << "is left argument != right? 1 = yes, 0 = no (expect 0)" << endl;
cout << (objLeft != objRight) << endl;
cout << STAR << endl;
}
// definition: add EncryptWord elements at positions "left argument" and "right argument" . appends argument's EncryptWord.phrase.
// appended phrase will become new EncryptWord phrase argument. phrase will be encrypted. object will be added to FindFault collection.
// precondition: Object is "ON". minimum containment of one EncryptWord argument by FindFault.
// modify: FindFault will add another EncryptWord object to container. numberOfElements attribute will increase by one.
// expected output: Number of elements prior to addEncryptWordObjects. \n left argument element decrypted phrase \n right argument element decrypted phrase
// \n number of elements post call to add EncryptWordObjects (+1 from first line) \n concatenated string of left argument and right argument
void printAddEncryptWordObjects(FindFault & ffobj, int left , int right){
cout << "Number of Elements:" << endl;
cout << ffobj.getNumberOfElements() << endl << endl;
cout << "Decrypt corresponding left element:" << endl;
cout << ffobj.decrypt(left) << endl << endl;
cout << "Decrypt corresponding right element:" << endl;
cout << ffobj.decrypt(right) << endl << endl;
cout << "~Call to addEncryptWordObjects() with left and right arguments~" << endl << endl;
ffobj.addEncryptWordObjects(left, right);
cout << "Number of Elements (expect 1 more element)" << endl;
cout << ffobj.getNumberOfElements() << endl << endl;
cout << "print concatenation of left and right element's decrypted phrases" << endl;
cout << ffobj.decrypt(ffobj.getNumberOfElements()) << endl;
cout << STAR << endl;
}
//Formatted Welcome Messasge
void welcomeMessage(){
cout << "\n" << STAR <<
"\n*\t\t\t\t\t\t\t\t\t\t\t*\n*WELCOME TO FIND FAULT TEST DRIVER!!\t\t\t\t\t\t\t*\n""*CPSC 5011 "<<
"PROJECT 3\t\t\t\t\t\t\t\t\t*\n*AUTHOR: DAMIEN SUDOL\t\t\t\t\t\t\t\t\t*\n*Version: 1.3\t\t\t\t\t\t\t\t\t\t*"<<
"\n*\t\t\t\t\t\t\t\t\t\t\t*\n*\t\t\t\t\t\t\t\t\t\t\t*\n*Driver designed to test overloading of operators for both EncryptWord\t\t\t*"<<
"\n*and FindFault types, ensuring that the intended functionality is consistant,\t\t*\n*while logical.\t\t\t\t\t\t\t\t\t\t*\n" << STAR << endl;
}
|
7cce270714edd59f3f78b0057311a42441190a8d
|
6b74d1343b75e0ad00d7dee4a9f655e3c64c26c2
|
/BOJ/2743.cpp
|
c6618b631ba3ac7d4cea8496a062002b6ac30467
|
[] |
no_license
|
snh15978/BOJ
|
d260841869e14c65cae898b81e3a3369683ffbcc
|
a7bc13e2b6f9f0171469b5534d688e64ff34d9e9
|
refs/heads/master
| 2021-01-12T12:15:11.294853
| 2018-09-05T08:13:17
| 2018-09-05T08:13:17
| 72,388,749
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 143
|
cpp
|
2743.cpp
|
#include <stdio.h>
#include <string.h>
int main() {
char s[100];
scanf("%s", s);
int cnt = strlen(s);
printf("%d", cnt);
return 0;
}
|
2c04cbdd9b76e60a6cf83810b493d4c7ad021f7d
|
88986eaf5bcfec0775ddc1df37b56022dac9a9af
|
/core/holodeck_client.h
|
ab9c50c88d6d3c5d77b43593d82529e86827d73b
|
[] |
no_license
|
BYU-PCCL/HolodeckCppBinding
|
821235c85afd98e87c83fbd116a110675534b53b
|
a123c5cfea63fc9d836d884bb7d95736f6c90b3e
|
refs/heads/master
| 2020-03-08T00:46:01.236612
| 2018-04-04T19:23:54
| 2018-04-04T19:23:54
| 127,813,261
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,958
|
h
|
holodeck_client.h
|
/**
* HolodeckClient is a class which makes it easy to use SharedMemory objects
* to communicate with a Holodeck Server.
*/
#ifndef HOLODECK_CORE_HOLODECK_CLIENT_H_
#define HOLODECK_CORE_HOLODECK_CLIENT_H_
#include <string>
#include <map>
#include <memory>
#include "core/shmem.h"
#ifdef _Win32
#define LOADING_SEMAPHORE_PATH "Global\\HOLODECK_LOADING_SEM"
#define SERVER_LOCK_PATH "Global\\HOLODECK_SEMAPHORE_SERVER"
#define CLIENT_LOCK_PATH "Global\\HOLODECK_SEMAPHORE_CLIENT"
#include "AllowWindowsPlatformTypes.h"
#include "Windows.h"
#include "HideWindowsPlatformTypes.h"
#elif defined __linux__
constexpr std::string LOADING_SEMAPHORE_PATH = "/HOLODECK_LOADING_SEM";
constexpr std::string SERVER_LOCK_PATH = "/HOLODECK_SEMAPHORE_SERVER";
constexpr std::string CLIENT_LOCK_PATH = "/HOLODECK_SEMAPHORE_CLIENT";
#include <sys/mman.h>
#include <unistd.h>
#include <semaphore.h>
#endif
namespace holodeck::core {
class HolodeckClient {
public:
/**
* Default Constructor
* When HolodeckClient is created, it creates the semaphores needed for
* communicating with a HolodeckServer.
* @param uuid a uuid for communicating with the relevant HolodecKServer.
*/
explicit HolodeckClient(const std::string &uuid);
HolodeckClient(const HolodeckClient &) = delete;
HolodeckClient &operator=(const HolodeckClient &) = delete;
~UHolodeckClient() = default;
/**
* SubscribeSensor
* Subscribes a sensor. Creates a shared memory block for the sensor.
* If a sensor already exists in this project with the same name and
* same agent, the block is overwritten with the new sensor.
* @param agentName the name of the agent this sensor belongs to.
* @param sensorKey the name of the sensor.
* @param bufferSize the size to allocate in bytes.
* @return a pointer to the start of the assigned memory.
*/
void *subscribeSensor(const std::string &agentName,
const std::string &sensorKey,
int bufferSize);
/**
* subscribeActionSpace
* Subscribes an action space. Creates a shared memory block for the
* action space.
* @param agentName the agent to subscribe space for.
* @param bufferSize the size of the buffer to allocate in bytes.
* @return a pointer to the start of the assigned memory.
*/
void *subscribeActionSpace(const std::string &agentName, int bufferSize);
/**
* subscribeSetting
* Subscribes a setting. Creates a shared memory block for the setting.
* @param settingName the name of the setting.
* @param bufferSize the size of the buffer to allocate in bytes.
* @return a pointer to the start of the assigned memory.
*/
void *subscribeSetting(const std::string &settingName, int bufferSize);
/**
* acquire
* Acquires the mutex to allow the next tick to occur. Will block until
* the client releases.
*/
void acquire();
/**
* release
* Releases the mutex to allow the client to tick.
*/
void release();
/**
* isRunning
* Gets whether the server is running.
* @return true if the server is running.
*/
bool isRunning() const;
private:
/**
* makeKey
* Makes the key for subscribing sensors.
* @param agentName the name of the agent.
* @param sensorName the name of the sensor.
* @return a key for this agent/sensor for the map.
*/
std::string makeKey(const std::string &agentName,
const std::string &sensorName) const;
std::map<std::string, std::unique_ptr<Shmem>> _sensors;
std::map<std::string, std::unique_ptr<Shmem>> _actionSpaces;
std::map<std::string, std::unique_ptr<Shmem>> _settings;
std::string _uuid;
#ifdef _Win32
HANDLE _serverLock;
HANDLE _clientLock;
#elif defined __linux__
sem_t *_serverLock;
sem_t *_clientLock;
#endif
}; // class HolodeckClient
} // namespace holodeck::core
#endif // HOLODECK_CORE_HOLODECK_CLIENT_H_
|
4a42247f9f0696055f30345a8970034af99ffee4
|
f824b3542a5e4deba5337879f0c721ae727714a9
|
/100DaysOfCode/Graph/DjisktraAlgo/main.cpp
|
a3a848fcc540ee1cbbfb9872728fd42079916b91
|
[] |
no_license
|
ahmadi7/DataStructuresWithCpp
|
691236d067df4c0702dcd821d3af4e012a69c865
|
7280d39ff6964a6cb9a42e3a5dc8fb1752f71a9c
|
refs/heads/master
| 2021-01-25T22:31:00.958063
| 2019-12-24T18:04:55
| 2019-12-24T18:04:55
| 243,208,011
| 1
| 0
| null | 2020-02-26T08:21:47
| 2020-02-26T08:21:46
| null |
UTF-8
|
C++
| false
| false
| 729
|
cpp
|
main.cpp
|
#include <QCoreApplication>
#include "graph.h"
int main()
{
int n = 7;
Graph g(n);
int dist[n], prev[n];
int start = 0;
g.addEdge(0, 1, 3);
g.addEdge(0, 2, 6);
g.addEdge(1, 3, 1);
g.addEdge(2, 1, 6);
g.addEdge(2, 3, 1);
g.addEdge(2, 4, 4);
g.addEdge(2, 5, 2);
g.addEdge(3, 4, 2);
g.addEdge(3, 6, 4);
g.addEdge(4, 5, 2);
g.addEdge(4, 6, 1);
g.addEdge(5, 6, 1);
g.Djisktra(g, dist, prev, start);
for(int i = 0; i<n; i++)
if(i != start)
cout<<start<<" to "<<i<<", Cost: "<<dist[i]<<" Previous: "<<prev[i]<<endl;
return 0;
}
|
067de588a271db147f5390b27145595a91ed6aa6
|
e1fe38f9207053ffa1c68c050ed6dc5e63975cd4
|
/trappingrainwater.cpp
|
75adcb8e2e0698c08d639b88fdbf5bc7c1126b57
|
[] |
no_license
|
dhruv2600/leet
|
3199c568d7296219336ede0da8238ecd094ac402
|
71e73e999fa689285e7a9bc2414e7536c72cdab7
|
refs/heads/master
| 2023-09-03T06:24:41.885912
| 2021-10-22T17:15:06
| 2021-10-22T17:15:06
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 508
|
cpp
|
trappingrainwater.cpp
|
class Solution {
public:
int trap(vector<int>& height) {
vector<int>rightgreater(height.size());
vector<int>leftgreater(height.size());
int len=height.size();
stack<int>stk;
stk.push(height[len-1]);
rightgreater[height.size()-1]=-1;
for(int i=len-1;i>=0;i--)
{
if()
}
}
};
|
464340a450f8c44f2ea349df50ba60222c11a0a0
|
fd65996d057431fa9b719352bbb341157e369347
|
/structure variable lecture c language.cpp
|
86bf015613ff388904fff93b9b5586f0059c7ae8
|
[] |
no_license
|
pawanchoure2000/C-Language-
|
453625c198796bd846da33f6395ff3c416624451
|
d87cca18e04825e6095cb68da6877e52fc9b1bdf
|
refs/heads/master
| 2020-12-03T16:51:06.575104
| 2020-01-03T02:54:14
| 2020-01-03T02:54:14
| 231,396,367
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 501
|
cpp
|
structure variable lecture c language.cpp
|
#include<stdio.h>
#include<math.h>
struct point
{
int x,y;
};
struct point make_point(int x,int y)
{
struct point temp;
temp.x=x;
temp.y=y;
return temp;
};
double norm(struct point p)
{
return sqrt(p.x*p.x+p.y*p.y);
}
int main()
{
int x,y;
//struct point pt;
//scanf("%d %d",&x,&y);
struct point arr[4];
for(int i=0;i<6;i++)
{
arr[i].x=i;
arr[i].y=i;
}
arr[1]=make_point(x,y);
printf("distance from point p is %f",norm(arr[1]));
}
|
7dd3a11b8555b718a773b47dd8bf6b062cf48de4
|
55bce7e5b04c8beb51ea9a518f492af2c10fa21e
|
/metro/src/main.cpp
|
78f2eb7442fbc5f65d56a026b1bffc3b01da3bcf
|
[] |
no_license
|
BasselAlnabhan/Embedded_course_projects
|
32a7ee7d8a706cc1217cefa6a9783857370f978f
|
53e812fb3369466428c5d3ed106480ba1b6804e4
|
refs/heads/main
| 2023-02-13T22:17:14.909224
| 2021-01-12T02:53:52
| 2021-01-12T02:53:52
| 308,005,471
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 273
|
cpp
|
main.cpp
|
#include <Metro.h>
#include <Arduino.h>
uint8_t ledState = LOW;
Metro metro = Metro(1000U);
void setup()
{
pinMode(LED_BUILTIN, OUTPUT);
}
void loop()
{
if (metro.check())
{
digitalWrite(LED_BUILTIN, ledState);
ledState = !ledState;
}
}
|
73c7585f6335aec262b69b7a0720086aad0bc6fa
|
ffdc77394c5b5532b243cf3c33bd584cbdc65cb7
|
/mindspore/ccsrc/pipeline/jit/parse/parse.h
|
b3ccfb32e6bb31e9da9eedb2aab2befc79e2c392
|
[
"Apache-2.0",
"LicenseRef-scancode-proprietary-license",
"MPL-1.0",
"OpenSSL",
"LGPL-3.0-only",
"LicenseRef-scancode-warranty-disclaimer",
"BSD-3-Clause-Open-MPI",
"MIT",
"MPL-2.0-no-copyleft-exception",
"NTP",
"BSD-3-Clause",
"GPL-1.0-or-later",
"0BSD",
"MPL-2.0",
"LicenseRef-scancode-free-unknown",
"AGPL-3.0-only",
"Libpng",
"MPL-1.1",
"IJG",
"GPL-2.0-only",
"BSL-1.0",
"Zlib",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-python-cwi",
"BSD-2-Clause",
"LicenseRef-scancode-gary-s-brown",
"LGPL-2.1-only",
"LicenseRef-scancode-other-permissive",
"Python-2.0",
"LicenseRef-scancode-mit-nagy",
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-unknown-license-reference",
"Unlicense"
] |
permissive
|
mindspore-ai/mindspore
|
ca7d5bb51a3451c2705ff2e583a740589d80393b
|
54acb15d435533c815ee1bd9f6dc0b56b4d4cf83
|
refs/heads/master
| 2023-07-29T09:17:11.051569
| 2023-07-17T13:14:15
| 2023-07-17T13:14:15
| 239,714,835
| 4,178
| 768
|
Apache-2.0
| 2023-07-26T22:31:11
| 2020-02-11T08:43:48
|
C++
|
UTF-8
|
C++
| false
| false
| 24,740
|
h
|
parse.h
|
/**
* This is the C++ adaptation and derivative work of Myia (https://github.com/mila-iqia/myia/).
*
* Copyright 2019-2022 Huawei Technologies Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef MINDSPORE_CCSRC_PIPELINE_JIT_PARSE_PARSE_H_
#define MINDSPORE_CCSRC_PIPELINE_JIT_PARSE_PARSE_H_
#include <limits>
#include <utility>
#include <tuple>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <memory>
#include "utils/misc.h"
#include "ir/anf.h"
#include "pipeline/jit/parse/parse_base.h"
#include "include/common/utils/python_adapter.h"
#include "pipeline/jit/parse/function_block.h"
namespace mindspore {
namespace parse {
// Parse status define.
enum ParseStatusCode : int64_t {
PARSE_SUCCESS = 0,
PARSE_FUNCTION_IS_NULL, // Python function is null
PARSE_PARAMETER_INVALID, // Parameter is invalid
PARSE_NO_RETURN, // Function no return node
PARSE_NODE_TYPE_NO_MATCH, // Ast node type is error
PARSE_NODE_TYPE_UNKNOWN, // Node type is unknown
PARSE_NODE_METHOD_UNSUPPORTED, // No method to parse the node
PARSE_DONT_RESOLVE_SYMBOL, // Can't resolve the string
PARSE_NOT_SUPPORTED_COMPARE_EXPR, // The comparison is not supported
PARSE_FAILURE = 0xFF
};
constexpr char kStandardMethodModelName[] = "mindspore._extends.parse.standard_method";
constexpr char kMsLenWithCheck[] = "ms_len_with_iterable_check";
// Max loop count of for statement, when loop count is less then this value, the for loop will be unrolled, otherwise it
// will be sunk(i.e. not unrolled)
// NOTE: Since when the for loop was unrolled, it depends backend operators `tuple_getitem` and `scalar_add` which were
// not implemented, so here set MAX_FOR_LOOP_COUNT to int64_t max limit to override default value `600`. This will make
// the for loop will always be unrolled, but don't worry about the memory were exhausted, an exception will be raised
// when function call depth exceeds the limit `context.get_context('max_call_depth')`.
const int64_t MAX_FOR_LOOP_COUNT = std::numeric_limits<int64_t>::max();
class AstNodeType;
class ParseFunctionAst;
// Save loop info for 'continue' and 'break' statements.
struct Loop {
// Loop header block.
FunctionBlockPtr header;
// Loop iterator node, used in 'for loop'.
AnfNodePtr iterator;
// Loop end block.
FunctionBlockPtr end;
Loop(const FunctionBlockPtr &header, const AnfNodePtr &iterator, const FunctionBlockPtr &end)
: header(header), iterator(iterator), end(end) {}
~Loop() = default;
};
// Loop context for loop stack management.
class LoopContext {
public:
LoopContext(std::stack<Loop> *loops, const FunctionBlockPtr &header, const AnfNodePtr &iterator) : loops_(loops) {
loops_->emplace(header, iterator, nullptr);
}
~LoopContext() {
try {
MS_EXCEPTION_IF_NULL(loops_);
loops_->pop();
} catch (const std::exception &e) {
MS_LOG(ERROR) << "Exception when pop. Error info " << e.what();
} catch (...) {
MS_LOG(ERROR) << "Throw exception when pop.";
}
loops_ = nullptr;
}
const FunctionBlockPtr &EndBlock() const { return loops_->top().end; }
private:
std::stack<Loop> *loops_;
};
struct ArgsContext {
bool need_unpack{false};
bool has_interpret_without_internal{false};
bool has_interpret_internal{false};
std::vector<AnfNodePtr> packed_arguments;
std::vector<AnfNodePtr> group_arguments;
ArgsContext() {}
~ArgsContext() = default;
};
// Parser to parse python function.
class Parser {
public:
explicit Parser(const std::shared_ptr<ParseFunctionAst> &ast);
~Parser() {}
FuncGraphPtr ParseFuncGraph();
FuncGraphPtr func_graph() const { return func_graph_; }
ParseStatusCode errcode() const { return errcode_; }
std::shared_ptr<ParseFunctionAst> ast() const { return ast_; }
// Get location info from the ast node.
LocationPtr GetLocation(const py::object &node) const;
static void InitParserEnvironment(const py::object &obj);
static void CleanParserResource();
static FuncGraphPtr GetTopFuncGraph() { return top_func_graph_.lock(); }
static void UpdateTopFuncGraph(const FuncGraphPtr &func_graph);
static void EnableDeferResolve(bool enabled) { defer_resolve_ = enabled; }
static bool defer_resolve() { return defer_resolve_; }
private:
// Process the stmt node method list.
FunctionBlockPtr ParseReturn(const FunctionBlockPtr &block, const py::object &node);
// Parse expression.
FunctionBlockPtr ParseExpr(const FunctionBlockPtr &block, const py::object &node);
// Process a if statement.
FunctionBlockPtr ParseIf(const FunctionBlockPtr &block, const py::object &node);
// Process a while statement.
FunctionBlockPtr ParseWhile(const FunctionBlockPtr &block, const py::object &node);
// Process a for statement.
FunctionBlockPtr ParseFor(const FunctionBlockPtr &block, const py::object &node);
FunctionBlockPtr ParseForUnroll(const FunctionBlockPtr &block, const py::object &node);
FunctionBlockPtr ParseForRepeat(const FunctionBlockPtr &block, const py::object &node);
// Process a function def statement.
FunctionBlockPtr ParseFunctionDef(const FunctionBlockPtr &block, const py::object &node);
// Process a augment assign.
FunctionBlockPtr ParseAugAssign(const FunctionBlockPtr &block, const py::object &node);
// Process a global declaration.
FunctionBlockPtr ParseGlobal(const FunctionBlockPtr &block, const py::object &node);
// Process assign statement.
FunctionBlockPtr ParseAssign(const FunctionBlockPtr &block, const py::object &node);
// Process break statement.
FunctionBlockPtr ParseBreak(const FunctionBlockPtr &block, const py::object &node);
// Process continue statement.
FunctionBlockPtr ParseContinue(const FunctionBlockPtr &block, const py::object &node);
// Process pass statement.
FunctionBlockPtr ParsePass(const FunctionBlockPtr &block, const py::object &node);
// Process raise statement.
FunctionBlockPtr ParseRaise(const FunctionBlockPtr &block, const py::object &node);
// Process assert statement.
FunctionBlockPtr ParseAssert(const FunctionBlockPtr &block, const py::object &node);
// Process with statement.
FunctionBlockPtr ParseWith(const FunctionBlockPtr &block, const py::object &node);
// Process withitem.
AnfNodePtr ParseWithitem(const FunctionBlockPtr &block, const py::object &node, const AnfNodePtr &context_expr_node);
// Process the expr and slice node method list.
AnfNodePtr ParseBinOp(const FunctionBlockPtr &block, const py::object &node);
// Process a variable name.
AnfNodePtr ParseName(const FunctionBlockPtr &block, const py::object &node);
// Process NoneType.
AnfNodePtr ParseNone(const FunctionBlockPtr &, const py::object &);
// Process Ellipsis.
AnfNodePtr ParseEllipsis(const FunctionBlockPtr &, const py::object &);
// Process an integer or float number.
AnfNodePtr ParseNum(const FunctionBlockPtr &, const py::object &node);
// Process a string variable.
AnfNodePtr ParseStr(const FunctionBlockPtr &, const py::object &node);
// Process a Constant.
AnfNodePtr ParseConstant(const FunctionBlockPtr &, const py::object &node);
// Process a name.
AnfNodePtr ParseNameConstant(const FunctionBlockPtr &, const py::object &node);
// Process a function call.
AnfNodePtr ParseCall(const FunctionBlockPtr &block, const py::object &node);
// Process function 'super'.
AnfNodePtr ParseSuper(const FunctionBlockPtr &block, const py::list &args);
// Process the if expression.
AnfNodePtr ParseIfExp(const FunctionBlockPtr &block, const py::object &node);
// Process class type define.
AnfNodePtr ParseAttribute(const FunctionBlockPtr &block, const py::object &node);
// Process ms Tensor.
AnfNodePtr ParseMsTensor(const FunctionBlockPtr &block, const py::object &node, const py::object &value_body,
const AnfNodePtr &value_node);
// Process dtype._null.
AnfNodePtr ParseNull(const FunctionBlockPtr &block, const py::object &value_body) const;
// Process a compare expression.
AnfNodePtr ParseCompare(const FunctionBlockPtr &block, const py::object &node);
AnfNodePtr ParseCompareInner(const FunctionBlockPtr &block, const py::object &node, bool force_interpret = false);
// Process a bool operation.
AnfNodePtr ParseBoolOp(const FunctionBlockPtr &block, const py::object &node);
// Process a lambda operation.
AnfNodePtr ParseLambda(const FunctionBlockPtr &block, const py::object &node);
// Process a tuple.
AnfNodePtr ParseTuple(const FunctionBlockPtr &block, const py::object &node);
// Process a tuple.
AnfNodePtr ParseList(const FunctionBlockPtr &block, const py::object &node);
// Process a tuple.
AnfNodePtr ParseSubscript(const FunctionBlockPtr &block, const py::object &node);
// Process a slice.
AnfNodePtr ParseSlice(const FunctionBlockPtr &block, const py::object &node);
// Process a extslice.
AnfNodePtr ParseExtSlice(const FunctionBlockPtr &block, const py::object &node);
// Process a tuple.
AnfNodePtr ParseIndex(const FunctionBlockPtr &block, const py::object &node);
// Process a unaryop.
AnfNodePtr ParseUnaryOp(const FunctionBlockPtr &block, const py::object &node);
// Process a dict ast node expression.
AnfNodePtr ParseDictByKeysAndValues(const FunctionBlockPtr &block, const std::vector<AnfNodePtr> &key_nodes,
const std::vector<AnfNodePtr> &value_nodes);
AnfNodePtr ParseDict(const FunctionBlockPtr &block, const py::object &node);
// Process ListComp expression.
AnfNodePtr ParseListComp(const FunctionBlockPtr &block, const py::object &node);
FunctionBlockPtr ParseListCompIter(const FunctionBlockPtr &block, const py::object &node,
const py::object &generator_node);
AnfNodePtr ParseListCompIfs(const FunctionBlockPtr &list_body_block, const ParameterPtr &list_param,
const py::object &node, const py::object &generator_node);
AnfNodePtr ParseJoinedStr(const FunctionBlockPtr &block, const py::object &node);
AnfNodePtr ParseFormattedValue(const FunctionBlockPtr &block, const py::object &node);
std::vector<AnfNodePtr> ParseException(const FunctionBlockPtr &block, const py::list &args, const std::string &name);
std::vector<AnfNodePtr> ParseRaiseCall(const FunctionBlockPtr &block, const py::object &node);
void ParseStrInError(const FunctionBlockPtr &block, const py::list &args, std::vector<AnfNodePtr> *str_nodes);
bool GetBoolObjForAstCompare(const py::object &node, bool *bool_res);
py::object GetPyObjForAstAttr(const py::object &attr_ast_node);
bool CheckConstantCondition(const py::object &test_node, bool *is_true_cond);
FunctionBlockPtr MakeAssertErrorBlock(const FunctionBlockPtr &block, const py::object &node);
AnfNodePtr ProcessAttributeWithClassMember(const FunctionBlockPtr &block, const py::object &node) const;
// Transform tail call to parallel call.
void TransformParallelCall();
void LiftRolledBodyGraphFV();
void LiftIfBranchGraphFV();
// Check if script_text is in global/local params.
bool IsScriptInParams(const std::string &script_text, const py::dict &global_dict,
const std::map<std::string, AnfNodePtr> &local_keys, const FuncGraphPtr &func_graph) const;
// Set the interpret flag for the node calling the interpret node.
void UpdateInterpretForUserNode(const AnfNodePtr &user_node, const AnfNodePtr &node) const;
void UpdateInterpretForUserNode(const AnfNodePtr &user_node, const std::vector<AnfNodePtr> &nodes) const;
// Make interpret node.
AnfNodePtr MakeInterpretNode(const FunctionBlockPtr &block, const AnfNodePtr &value_node, const string &script_text);
// Convert interpret iter node to list.
AnfNodePtr ConvertInterpretIterNodeToList(const FunctionBlockPtr &block, const AnfNodePtr &iter_node,
const py::object &iter_obj);
// Check if the node need interpreting.
AnfNodePtr HandleInterpret(const FunctionBlockPtr &block, const AnfNodePtr &value_node,
const py::object &value_object, bool force_interpret = false);
AnfNodePtr HandleCondInterpret(const FunctionBlockPtr &block, const AnfNodePtr &value_node,
const py::object &value_object);
bool CheckNeedConvertInterpret(const FunctionBlockPtr &block, const AnfNodePtr &node,
const string &script_text) const;
// Handle interpret for augassign expression.
AnfNodePtr HandleInterpretForAugassign(const FunctionBlockPtr &block, const AnfNodePtr &augassign_node,
const py::object &op_object, const py::object &target_object,
const py::object &value_object);
// Generate argument nodes for ast function node.
void GenerateArgsNodeForFunction(const FunctionBlockPtr &block, const py::object &fn_node);
// Generate argument default value for ast function node.
void GenerateArgsDefaultValueForFunction(const FunctionBlockPtr &block, const py::object &fn_node);
// Parse ast function node.
FunctionBlockPtr ParseDefFunction(const py::object &node, const FunctionBlockPtr &block = nullptr);
// Parse lambda function node.
FunctionBlockPtr ParseLambdaFunction(const py::object &node, const FunctionBlockPtr &block = nullptr);
// Parse ast statements.
FunctionBlockPtr ParseStatements(const FunctionBlockPtr &block, const py::object &nodes);
// Parse one ast statement node.
FunctionBlockPtr ParseStatement(const FunctionBlockPtr &block, const py::object &node);
// Parse an ast expression node.
AnfNodePtr ParseExprNode(const FunctionBlockPtr &block, const py::object &node);
std::string GetExprStr(const AnfNodePtr &node, const py::object &ast_node);
void MakeConditionBlocks(const FunctionBlockPtr &pre_block, const FunctionBlockPtr &true_block,
const FunctionBlockPtr &false_block) const;
std::shared_ptr<std::map<ParameterPtr, AnfNodePtr>> CalRemovablePhis();
void CreatePhiArgMaps(std::map<ParameterPtr, std::set<AnfNodePtr>> *phi_to_args,
std::map<AnfNodePtr, std::set<ParameterPtr>> *arg_to_phis);
static void PrintPhiArgMaps(const std::map<ParameterPtr, std::set<AnfNodePtr>> &phi_to_args,
const std::map<AnfNodePtr, std::set<ParameterPtr>> &arg_to_phis);
static void UpdatePhiArgMapsRepeatedly(std::map<ParameterPtr, std::set<AnfNodePtr>> *phi_to_args,
std::map<AnfNodePtr, std::set<ParameterPtr>> *arg_to_phis);
static std::shared_ptr<std::map<ParameterPtr, AnfNodePtr>> CollectRemovablePhiArgs(
const std::map<ParameterPtr, std::set<AnfNodePtr>> &phi_to_args);
void RemoveUnnecessaryPhis();
void ConvertGetattrNodes();
// Write a new var.
void WriteAssignVars(const FunctionBlockPtr &block, const py::object &target_object, const AnfNodePtr &value_node);
// Create a setattr CNode.
void MakeSetAttrNode(const FunctionBlockPtr &block, const AnfNodePtr &target_node, const AnfNodePtr &value_node,
const std::string &target_id_str, const std::string &attr_str);
// Assign value to single variable name.
void HandleAssignName(const FunctionBlockPtr &block, const py::object &target, const AnfNodePtr &assigned_node) const;
// Assign value to tuple.
void HandleAssignTupleOrList(const FunctionBlockPtr &block, const py::object &target,
const AnfNodePtr &assigned_node);
// Assign value to class Parameter member. Return false if not a Parameter member.
bool HandleAssignClassParameterMember(const FunctionBlockPtr &block, const py::object &target,
const AnfNodePtr &value_node);
// Assign value to class member.
void HandleAssignClassMember(const FunctionBlockPtr &block, const py::object &target, const AnfNodePtr &value_node);
// Assign value to subscript.
void HandleAssignSubscript(const FunctionBlockPtr &block, const py::object &target, const AnfNodePtr &assigned_node);
// Interpret the return node.
AnfNodePtr HandelReturnExprNode(const FunctionBlockPtr &block, const AnfNodePtr &return_expr_node,
const py::object &value_object);
// Process a bool operation value list.
AnfNodePtr ProcessBoolOpValueList(const FunctionBlockPtr &block, const py::list &value_list, AstSubType mode);
FunctionBlockPtr GenerateBlock(const TraceInfoPtr &trace_info);
void ParseKeywordsInCall(const FunctionBlockPtr &block, const py::object &node, ArgsContext *args_context);
void ParseArgsInCall(const FunctionBlockPtr &block, const py::list &args, ArgsContext *args_context);
AnfNodePtr GenerateAnfNodeForCall(const FunctionBlockPtr &block, const AnfNodePtr &call_function_node,
const ArgsContext &args_context) const;
ScopePtr GetScopeForParseFunction();
// Check the value is subscript is reference type.
bool IsSubscriptReferenceType(const py::object &obj);
void BuildMethodMap();
FunctionBlockPtr MakeFunctionBlock(const Parser &parse) {
FunctionBlockPtr block = std::make_shared<FunctionBlock>(parse);
// In order to keep effect order in the sub-graphs which generated by control flow.
// We copy the flags from the top graph to the sub-graphs.
if (func_graph_ && !func_graph_->attrs().empty()) {
for (const auto &attr : func_graph_->attrs()) {
// The flag FUNC_GRAPH_OUTPUT_NO_RECOMPUTE should be only set in the top graph.
if (attr.first != FUNC_GRAPH_OUTPUT_NO_RECOMPUTE) {
block->func_graph()->set_attr(attr.first, attr.second);
}
}
}
func_block_list_.push_back(block);
return block;
}
// Return a make tuple for input elements list.
AnfNodePtr GenerateMakeTuple(const FunctionBlockPtr &block, const std::vector<AnfNodePtr> &element_nodes);
// Check if the node is pop operation.
bool IsPopOperation(const AnfNodePtr &node) const;
// Check if branch block contains break/continue/return statement, and propagate that flag back to block.
void CheckControlFlowAlterationInIf(std::pair<FunctionBlockPtr, FunctionBlockPtr> *branch_graphs_pair,
const FunctionBlockPtr &branch_block, const FunctionBlockPtr &branch_end,
const FunctionBlockPtr &after_block, const FunctionBlockPtr &block) const;
// Check if body block contains return statement, and propagate that flag back to block.
void CheckReturnInLoop(const FunctionBlockPtr &block, const FunctionBlockPtr &body_block) const;
// Check whether the functions referred by this function and itself are missing 'return' statement.
void CheckFuncReturn(const FuncGraphPtr &fn);
// If the node is Parameter member of class.
bool IsClassParameterMember(const py::object &target_obj, const AnfNodePtr &target_node) const;
// The shared_ptr will be hold by GraphManager, so just hold a weak ref here.
static FuncGraphWeakPtr top_func_graph_;
// Set if defer resolve during parsing.
inline static bool defer_resolve_{false};
// Python function id, used to indicate whether two CNodes come from the same Python function.
const std::shared_ptr<ParseFunctionAst> &ast_;
FuncGraphPtr func_graph_;
// Error code setwhen parsing ast tree.
ParseStatusCode errcode_;
py::object list_pop_target_obj_;
// Hold all reference for FunctionBlock in this round of parsing,
// so in FunctionBlock class we can use FunctionBlock* in member
// pre_blocks_ and jumps_ to break reference cycle.
std::vector<FunctionBlockPtr> func_block_list_;
using StmtFunc = FunctionBlockPtr (Parser::*)(const FunctionBlockPtr &block, const py::object &node);
using ExprFunc = AnfNodePtr (Parser::*)(const FunctionBlockPtr &block, const py::object &node);
// Define the function map to parse ast Statement.
std::map<std::string, StmtFunc> stmt_method_map_;
// Define the function map to parse ast expression.
std::map<std::string, ExprFunc> expr_method_map_;
// Save current loops to support 'continue', 'break' statement.
std::stack<Loop> loops_;
// The func graphs to transform tail call ir to independent call ir.
// Contains: {former_graph, middle_graph}, latter_graph is no need.
std::vector<std::vector<std::pair<FunctionBlockPtr, FunctionBlockPtr>>> parallel_call_graphs_;
// The true branch and false branch call info. of if statement.
std::vector<std::tuple<CNodePtr, FunctionBlockPtr, FunctionBlockPtr>> if_branch_calls_;
// The rolled_body callers info. for later lifting operation.
std::vector<std::pair<CNodePtr, FunctionBlockPtr>> rolled_body_calls_;
// Record all setattr nodes and their targets and values.
std::map<std::string, std::map<std::string, AnfNodePtr>> setattr_nodes_map_;
// Record all getattr node for specific object and attribute name.
std::map<std::string, std::map<std::string, std::vector<AnfNodePtr>>> getattr_nodes_map_;
};
// AST node type define code to ast.
class AstNodeType {
public:
AstNodeType(const py::object &node, const std::string &name, AstMainType type)
: node_(node), node_name_(name), main_type_(type) {}
~AstNodeType() {}
std::string node_name() const { return node_name_; }
py::object node() const { return node_; }
AstMainType main_type() const { return main_type_; }
private:
const py::object &node_;
const std::string node_name_;
AstMainType main_type_;
};
using AstNodeTypePtr = std::shared_ptr<AstNodeType>;
// A helper class to parse python function.
class ParseFunctionAst {
public:
explicit ParseFunctionAst(const py::object &obj)
: obj_(obj), target_type_(PARSE_TARGET_UNKNOW), function_line_offset_(-1) {}
~ParseFunctionAst() = default;
bool InitParseAstInfo(const std::string &python_mod_get_parse_method = PYTHON_MOD_GET_PARSE_METHOD);
py::object GetAstNode();
py::str GetAstNodeText(const py::object &node);
py::list GetArgs(const py::object &func_node);
py::list GetArgsDefaultValues(const py::object &func_node);
AstNodeTypePtr GetNodeType(const py::object &node);
AstSubType GetOpType(const py::object &node);
template <class... T>
py::object CallParserObjMethod(const std::string &method, const T &... args) {
return python_adapter::CallPyObjMethod(parser_, method, args...);
}
template <class... T>
py::object CallParseModFunction(const std::string &function, const T &... args) {
return python_adapter::CallPyModFn(module_, function, args...);
}
const std::string &function_name() const { return function_name_; }
const std::string &function_module() const { return function_module_; }
const std::string &function_filename() const { return function_filename_; }
int64_t function_line_offset() const { return function_line_offset_; }
py::function function() { return function_; }
ParseTargetType target_type() const { return target_type_; }
py::object obj() { return obj_; }
py::object parser() { return parser_; }
py::object module() { return module_; }
py::object ast_tree() { return ast_tree_; }
bool IsClassMemberOfSelf(const py::object &node);
bool IsClassMemberRecursive(const py::object &node);
private:
// Save obj, eg: class instance or function.
py::object obj_;
// Function or class method.
py::function function_;
py::object ast_tokens_;
py::object ast_tree_;
py::object parser_;
py::module module_;
// Is function or method.
ParseTargetType target_type_;
std::string function_name_;
std::string function_module_;
std::string function_filename_;
int64_t function_line_offset_;
};
// Update the graph flags.
bool UpdateFuncGraphFlags(const py::object &obj, const FuncGraphPtr &func_graph, bool is_construct_function = false);
// Update recomputed scope for the graph.
void UpdateRecomputeScope(const FuncGraphPtr &func_graph);
AnfNodePtr GetMixedPrecisionCastHelp(const FuncGraphPtr &func_graph, const AnfNodePtr ¶m);
} // namespace parse
} // namespace mindspore
#endif // MINDSPORE_CCSRC_PIPELINE_JIT_PARSE_PARSE_H_
|
2e5ed8425388e985f65f124c83efeae825a0528a
|
9c16d6b984c9a22c219bd2a20a02db21a51ba8d7
|
/chrome/browser/ui/toolbar/media_router_action.cc
|
f6742e6dde4bc5417bb68fdeba741992317ec468
|
[
"BSD-3-Clause"
] |
permissive
|
nv-chromium/chromium-crosswalk
|
fc6cc201cb1d6a23d5f52ffd3a553c39acd59fa7
|
b21ec2ffe3a13b6a8283a002079ee63b60e1dbc5
|
refs/heads/nv-crosswalk-17
| 2022-08-25T01:23:53.343546
| 2019-01-16T21:35:23
| 2019-01-16T21:35:23
| 63,197,891
| 0
| 0
|
NOASSERTION
| 2019-01-16T21:38:06
| 2016-07-12T22:58:43
| null |
UTF-8
|
C++
| false
| false
| 5,841
|
cc
|
media_router_action.cc
|
// 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.
#include "chrome/browser/ui/toolbar/media_router_action.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/media/router/issue.h"
#include "chrome/browser/media/router/media_route.h"
#include "chrome/browser/media/router/media_router.h"
#include "chrome/browser/media/router/media_router_dialog_controller.h"
#include "chrome/browser/media/router/media_router_factory.h"
#include "chrome/browser/media/router/media_router_mojo_impl.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/toolbar/component_toolbar_actions_factory.h"
#include "chrome/browser/ui/toolbar/media_router_action_platform_delegate.h"
#include "chrome/browser/ui/toolbar/toolbar_action_view_delegate.h"
#include "chrome/grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/image/image_skia.h"
using media_router::MediaRouterDialogController;
MediaRouterAction::MediaRouterAction(Browser* browser)
: media_router::IssuesObserver(GetMediaRouter(browser)),
media_router::MediaRoutesObserver(GetMediaRouter(browser)),
media_router_active_icon_(
ui::ResourceBundle::GetSharedInstance()
.GetImageNamed(IDR_MEDIA_ROUTER_ACTIVE_ICON)),
media_router_error_icon_(ui::ResourceBundle::GetSharedInstance()
.GetImageNamed(IDR_MEDIA_ROUTER_ERROR_ICON)),
media_router_idle_icon_(ui::ResourceBundle::GetSharedInstance()
.GetImageNamed(IDR_MEDIA_ROUTER_IDLE_ICON)),
media_router_warning_icon_(
ui::ResourceBundle::GetSharedInstance()
.GetImageNamed(IDR_MEDIA_ROUTER_WARNING_ICON)),
current_icon_(&media_router_idle_icon_),
has_local_route_(false),
delegate_(nullptr),
platform_delegate_(MediaRouterActionPlatformDelegate::Create(browser)),
contextual_menu_(browser) {}
MediaRouterAction::~MediaRouterAction() {
}
std::string MediaRouterAction::GetId() const {
return ComponentToolbarActionsFactory::kMediaRouterActionId;
}
void MediaRouterAction::SetDelegate(ToolbarActionViewDelegate* delegate) {
delegate_ = delegate;
}
gfx::Image MediaRouterAction::GetIcon(content::WebContents* web_contents,
const gfx::Size& size) {
return *current_icon_;
}
base::string16 MediaRouterAction::GetActionName() const {
return l10n_util::GetStringUTF16(IDS_MEDIA_ROUTER_TITLE);
}
base::string16 MediaRouterAction::GetAccessibleName(
content::WebContents* web_contents) const {
return GetTooltip(web_contents);
}
base::string16 MediaRouterAction::GetTooltip(
content::WebContents* web_contents) const {
return l10n_util::GetStringUTF16(IDS_MEDIA_ROUTER_SHARE_YOUR_SCREEN_TEXT);
}
bool MediaRouterAction::IsEnabled(
content::WebContents* web_contents) const {
return true;
}
bool MediaRouterAction::WantsToRun(
content::WebContents* web_contents) const {
return false;
}
bool MediaRouterAction::HasPopup(
content::WebContents* web_contents) const {
return true;
}
void MediaRouterAction::HidePopup() {
GetMediaRouterDialogController()->HideMediaRouterDialog();
}
gfx::NativeView MediaRouterAction::GetPopupNativeView() {
return nullptr;
}
ui::MenuModel* MediaRouterAction::GetContextMenu() {
return contextual_menu_.menu_model();
}
bool MediaRouterAction::CanDrag() const {
return true;
}
bool MediaRouterAction::ExecuteAction(bool by_user) {
GetMediaRouterDialogController()->ShowMediaRouterDialog();
if (platform_delegate_)
platform_delegate_->CloseOverflowMenuIfOpen();
return true;
}
void MediaRouterAction::UpdateState() {
if (delegate_)
delegate_->UpdateState();
}
bool MediaRouterAction::DisabledClickOpensMenu() const {
return false;
}
void MediaRouterAction::OnIssueUpdated(const media_router::Issue* issue) {
issue_.reset(issue ? new media_router::Issue(*issue) : nullptr);
MaybeUpdateIcon();
}
void MediaRouterAction::OnRoutesUpdated(
const std::vector<media_router::MediaRoute>& routes) {
has_local_route_ =
std::find_if(routes.begin(), routes.end(),
[](const media_router::MediaRoute& route) {
return route.is_local(); }) !=
routes.end();
MaybeUpdateIcon();
}
MediaRouterDialogController*
MediaRouterAction::GetMediaRouterDialogController() {
DCHECK(delegate_);
content::WebContents* web_contents = delegate_->GetCurrentWebContents();
DCHECK(web_contents);
return MediaRouterDialogController::GetOrCreateForWebContents(web_contents);
}
media_router::MediaRouter* MediaRouterAction::GetMediaRouter(Browser* browser) {
return media_router::MediaRouterFactory::GetApiForBrowserContext(
static_cast<content::BrowserContext*>(browser->profile()));
}
void MediaRouterAction::MaybeUpdateIcon() {
const gfx::Image* new_icon = GetCurrentIcon();
// Update the current state if it has changed.
if (new_icon != current_icon_) {
current_icon_ = new_icon;
// Tell the associated view to update its icon to reflect the change made
// above.
if (delegate_)
delegate_->UpdateState();
}
}
const gfx::Image* MediaRouterAction::GetCurrentIcon() const {
// Highest priority is to indicate whether there's an issue.
if (issue_) {
if (issue_->severity() == media_router::Issue::FATAL)
return &media_router_error_icon_;
if (issue_->severity() == media_router::Issue::WARNING)
return &media_router_warning_icon_;
}
return has_local_route_ ?
&media_router_active_icon_ : &media_router_idle_icon_;
}
|
2fbb769d3423ea4362eb281652e5a3c9daf4234a
|
50281f48a26900c85e4e8b4072472548d5107dcc
|
/data_structure/f.cpp
|
d57eddc14593857aa95508a8834c539865540127
|
[] |
no_license
|
chiunyi23/OnlineJudgeCode
|
a04c6d4e61d2434f53374131ee231ceeaf5b45f5
|
8b109ef84bc78d293a47592a7eb01170c954a20b
|
refs/heads/master
| 2022-12-18T17:09:43.076794
| 2020-09-27T11:39:26
| 2020-09-27T11:39:26
| 293,214,212
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 469
|
cpp
|
f.cpp
|
#include <stdio.h>
void sortArray(char arr[])
void swap(char* a, char* b) {
char temp = a;
a = b;
b = temp;
}
void Permutation(char* arr, int begin, int end) {
if(begin == end - 1) {
printf("%c", arr[begin]);
}
else {
swap()
}
}
int main()
{
int num;
char arr[501];
while(scanf("%d", &num) != EOF) {
scanf("%s", arr);
for(int i = 0; i < num; i++) {
}
}
return 0;
}
|
6208c3d78fbb63728e032b242c4ecf97d6fd31a3
|
a10b5e2a40b755fc69fd4ea0fa96585af75dd24c
|
/FSMProject/CleanBarState.cpp
|
36f051896aeda366e259b4099d6d736cdcd22b6d
|
[] |
no_license
|
NicolasBunn/GameFSM
|
58ffcbaf672f70e851ca6c18cdedfd8706a4161e
|
3ba3406c101253fffcab84204ef66d6c1bcc0a54
|
refs/heads/master
| 2020-05-15T22:29:30.522342
| 2019-04-21T12:10:27
| 2019-04-21T12:10:27
| 182,528,240
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 551
|
cpp
|
CleanBarState.cpp
|
#include "CleanBarState.h"
#include "PrepareDrinkState.h"
CleanBarState* CleanBarState::Instance()
{
static CleanBarState instance;
return &instance;
}
void CleanBarState::Enter(Barman* entity)
{
}
void CleanBarState::UpdateState(Barman* entity, int decision)
{
}
void CleanBarState::Execute(Barman* entity)
{
}
void CleanBarState::Exit(Barman* entity)
{
}
bool CleanBarState::OnMessage(Barman* entity, const Message& msg)
{
entity->ChangeState(PrepareDrinkState::Instance());
return false;
}
void CleanBarState::DisplayMessage()
{
}
|
a42f6fb3feed331b5f471655880bd973529a6a8b
|
65972aa912b2237ce2683733b04006f8be12f52b
|
/src/InspectorMediaDock.cpp
|
8c7194d68285b8580a7c16dcc81e07124aee93c6
|
[] |
no_license
|
sean-m/qtradiant
|
87f44280ebca94d8282d5f54f4a5a8fb1b0a78b1
|
bcbe389d8c506cbe63e07dd54dc2a914aac911e6
|
refs/heads/master
| 2020-12-11T01:50:51.085763
| 2013-11-26T22:29:19
| 2013-11-26T22:29:19
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 485
|
cpp
|
InspectorMediaDock.cpp
|
#include "InspectorMediaDock.h"
#include "ui_InspectorMediaDock.h"
InspectorMediaDock::InspectorMediaDock(QWidget *parent) :
QWidget(parent),
ui(new Ui::InspectorMediaDock)
{
ui->setupUi(this);
}
InspectorMediaDock::~InspectorMediaDock()
{
delete ui;
}
void InspectorMediaDock::changeEvent(QEvent *e)
{
QWidget::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.