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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d65817fdf898f217c8d6cb33418189e57822a34d
|
536d98d934abdbdecb7fcdc5b20e62705c946904
|
/Binary Search Trees/Inorder Successor.cpp
|
090c956e5f054fc9aaf4c6bdcf23dc6dd007acb8
|
[] |
no_license
|
bharath-r/DataStructures
|
9a96f69ceea91269f0e873bafabffef5effbcd08
|
368dba2c76015b65097a6bd9ffe9e9054f65cdb1
|
refs/heads/master
| 2020-06-23T05:30:40.234946
| 2019-12-02T20:27:01
| 2019-12-02T20:27:01
| 198,530,466
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,329
|
cpp
|
Inorder Successor.cpp
|
// Level Order Traversal (Breadth-First).cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include "pch.h"
using namespace std;
#include <iostream>
#include <queue>
struct BstNode {
int data;
BstNode* left;
BstNode* right;
};
BstNode* GetNewNode(int data) {
BstNode* newNode = new BstNode();
newNode->data = data;
newNode->left = NULL;
newNode->right = NULL;
return newNode;
}
BstNode* Search(BstNode* root, int data) {
if (root == NULL) return NULL;
if (root->data == data) return root;
else if (root->data <= data) return Search(root->right, data);
else return Search(root->left, data);
}
BstNode* Insert(BstNode* root, int data) {
if (root == NULL) {
root = GetNewNode(data);
}
else {
if (data <= root->data) {
root->left = Insert(root->left, data);
}
else root->right = Insert(root->right, data);
}
return root;
}
void InOrderTraversal(BstNode* root) {
BstNode* current = root;
if (root == NULL) return;
else {
InOrderTraversal(current->left);
printf("%d\n", current->data);
InOrderTraversal(current->right);
}
}
BstNode* GetSuccessor(BstNode* root, int data) {
//Search the Node
BstNode* current = Search(root, data);
if (current == NULL) return NULL;
//CASE 1: If the element has a right subtree
if (current->right != NULL) {
BstNode* temp = current->right;
while (temp->left != NULL) temp = temp->left;
return temp;
}
//CASE 2: If the element has no right subtree
//Deepest Node for which there's the current node is in the left
else {
BstNode* successor = NULL;
BstNode* ancestor = root;
while (ancestor != current) {
if (current->data < ancestor->data) {
successor = ancestor;
successor = ancestor->left;
}
else
ancestor = ancestor->right;
}
return successor;
}
}
int main()
{
BstNode* root = new BstNode();
root = Insert(root, 45);
root = Insert(root, 55);
root = Insert(root, 25);
root = Insert(root, 75);
root = Insert(root, 35);
root = Insert(root, 15);
printf("Level-Order before Deletion\n");
InOrderTraversal(root);
int i;
/*printf("Enter the number to find the inorder successor for:\n");
scanf_s("%d\n", &i);*/
BstNode* successor = GetSuccessor(root, 35);
printf("Level-Order Successor of 25 is %d", successor->data);
}
|
c98a2fdbcc0ff1ba1e55c50b1906ca38a24908bf
|
9af35abd54187425336f9947dd8ea1cfaacdd42f
|
/cpp/stacksort.cpp
|
7ba4f1f7d4a44fb2feb41ae412d73b885af99f0a
|
[] |
no_license
|
kaverichavan/Hacktoberfest_2021
|
c28d9fe41d39029b2a1e1d0e59aadfeaf5e4ad33
|
6f7796d5d6ae313ca5ce0573aa8cdd5c7915e06d
|
refs/heads/main
| 2023-08-17T16:37:46.633373
| 2021-10-05T16:18:17
| 2021-10-05T16:18:17
| 413,894,327
| 2
| 0
| null | 2021-10-05T16:23:51
| 2021-10-05T16:23:50
| null |
UTF-8
|
C++
| false
| false
| 1,012
|
cpp
|
stacksort.cpp
|
#include <bits/stdc++.h>
using namespace std;
stack<int> sortFunction(stack<int> &mainStack)
{
stack<int> AuxStack;
while (!mainStack.empty())
{
int temp = mainStack.top();
mainStack.pop();
while (!AuxStack.empty() && AuxStack.top() > temp)
{
mainStack.push(AuxStack.top());
AuxStack.pop();
}
AuxStack.push(temp);
}
return AuxStack;
}
int main()
{
stack<int> mainStack;
mainStack.push(78);
mainStack.push(103);
mainStack.push(31);
mainStack.push(19);
mainStack.push(67);
mainStack.push(83);
mainStack.push(47);
stack<int> AuxStack = sortFunction(mainStack);
cout << "Sorted numbers in decreasing order are:"<<endl;
while (!AuxStack.empty())
{
cout << AuxStack.top()<< " ";
mainStack.push(AuxStack.top());
AuxStack.pop();
}
cout<<endl;
cout<<"Sorted numbers in increasing order are:"<<endl;
while(!mainStack.empty()){
cout<<mainStack.top()<<" ";
mainStack.pop();
}
}
|
1bbaff57a5e0152a11792d1c031bb83f2288864b
|
cf50c82270c2e1e548ac72ea41340636664c7825
|
/Physics Engine/Dynamics/force_gen.cpp
|
802c7ffdb1c305d5f28155fbc548b4b289a232ab
|
[
"MIT"
] |
permissive
|
DarrenSweeney/3D-Physics-Engine
|
b5a1a213b9e864787d5829a2908f5124c7ec3239
|
31dee682cdd285fcd1aa8a6951b7506348d8dc5a
|
refs/heads/master
| 2021-01-18T23:04:25.801191
| 2016-04-28T23:22:12
| 2016-04-28T23:22:12
| 42,963,895
| 56
| 9
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,531
|
cpp
|
force_gen.cpp
|
#include "force_gen.h"
using namespace Physics_Engine;
void Gravity::updateForce(RigidBody *body, real duration)
{
// Check that we do not have infinite mass.
if (!body->hasFiniteMass())
return;
// Apply the mass-scaled force to the body.
body->addForce(gravity * body->getMass());
}
void Spring::updateForce(RigidBody *body, real duration)
{
// Calculate the two ends in world space
Vector3 lws = body->getPointInWorldSpace(connectionPoint);
Vector3 ows = other->getPointInWorldSpace(otherConnectionPoint);
// Calculate the final force and apply it.
Vector3 force = lws - ows;
// Calculate the magnitude of the force.
real magnitde = force.magnitude();
magnitde = real_abs(magnitde - restLength);
magnitde *= springConstant;
// Calculate the final force and apply it.
force.normalise();
force *= -magnitde;
body->addForceAtPoint(force, lws);
}
void Aero::updateForce(RigidBody *body, real duration)
{
Aero::updateForceFromTensor(body, duration, tensor);
}
Aero::Aero(const Matrix3X3 &tensor, const Vector3 &position,
const Vector3 *windspeed)
{
Aero::tensor = tensor;
Aero::position = position;
Aero::windspeed = windspeed;
}
void Aero::updateForceFromTensor(RigidBody *body, real duration, const Matrix3X3 &tensor)
{
// Calculate total velocity (wind speed and body's velocity)
Vector3 velocity = body->getVelocity();
velocity += *windspeed;
// Calculate the velocity in body coordinates
Vector3 bodyVel = body->getTransform().transformInverseDirection(velocity);
// Calculate the force in body coordinates
Vector3 bodyForce = tensor.transform(bodyVel);
Vector3 force = body->getTransform().transformDirection(bodyForce);
body->addForceAtBodyPoint(force, position);
}
AeroControl::AeroControl(const Matrix3X3 &base, const Matrix3X3 &min, const Matrix3X3 &max,
const Vector3 &position, const Vector3 *windspeed)
:
Aero(base, position, windspeed)
{
AeroControl::minTensor = min;
AeroControl::maxTensor = max;
controlSetting = 0.0f;
}
void AeroControl::setControl(real value)
{
controlSetting = value;
}
Matrix3X3 AeroControl::getTensor()
{
if (controlSetting <= -1.0f)
return minTensor;
else if (controlSetting >= 1.0f)
return maxTensor;
else if (controlSetting < 0)
{
// Don't want to divide by negative ratio
return Matrix3X3::linearInterpolate(minTensor, tensor, controlSetting + 1.0f);
}
else if (controlSetting > 0)
{
return Matrix3X3::linearInterpolate(tensor, maxTensor, controlSetting);
}
else
return tensor;
}
void AeroControl::updateForce(RigidBody *body, real duration)
{
Matrix3X3 tensor = getTensor();
updateForceFromTensor(body, duration, tensor);
}
Buoyancy::Buoyancy(const Vector3 ¢erBuoyancy, real maxDepth, real volume,
real waterHeight, real liquidDensity /*= 1000.0f*/)
{
centerOfBuoyancy = centerBuoyancy;
Buoyancy::maxDepth = maxDepth;
Buoyancy::volume = volume;
Buoyancy::waterHeight = waterHeight;
Buoyancy::liquidDensity = liquidDensity;
}
void Buoyancy::updateForce(RigidBody *body, real duration)
{
// Calculate the submersion depth
Vector3 pointInWorld = body->getPointInWorldSpace(centerOfBuoyancy);
real depth = pointInWorld.y;
// Check if we are out of the water
if (depth >= waterHeight + maxDepth)
return;
Vector3 force(0, 0, 0);
// Check if we are at maximum depth
if (depth <= waterHeight - maxDepth)
{
force.y = liquidDensity * volume;
body->addForceAtBodyPoint(force, centerOfBuoyancy);
return;
}
// Otherwise we are partly submerged
force.y = liquidDensity * volume *
(depth - maxDepth - waterHeight) / 2 * maxDepth;
body->addForceAtBodyPoint(force, centerOfBuoyancy);
}
AngledAero::AngledAero(const Matrix3X3 &tensor, const Vector3 &position, const Vector3 *windspeed)
: Aero(tensor, position, windspeed)
{
AngledAero::tensor = tensor;
AngledAero::position = position;
AngledAero::windspeed = windspeed;
}
void AngledAero::updateForce(RigidBody *body, real duration)
{
updateForceFromTensor(body, duration, tensor);
}
void ForceRegistry::updateForces(real duration)
{
ForceRegistations::iterator i = registations.begin();
for (; i != registations.end(); i++)
{
i->forceGen->updateForce(i->body, duration);
}
}
void ForceRegistry::add(RigidBody *body, ForceGenerator *forceGen)
{
ForceRegistry::ForceRegistation registration;
registration.body = body;
registration.forceGen = forceGen;
registations.push_back(registration);
}
void ForceRegistry::remove(RigidBody *body, ForceGenerator *forceGen)
{
}
void ForceRegistry::clear()
{
}
|
68b4c4f7647c0607b0e155589f9ccd73518ab913
|
c0d958f7254bbb09036ffe7fda383facaa72a494
|
/src/Engine/rpg/gui/CountryCodes.h
|
91280d86f4a7afde63f1b8d97e409a479915823d
|
[
"BSD-2-Clause"
] |
permissive
|
Alicetech/bobsgame
|
2780fa9e115c42ca8b5d223bd555f10f4ff63a1b
|
40b5c57f62bcc2e289d39b2019a69df323f915fc
|
refs/heads/master
| 2020-04-15T00:34:57.072166
| 2017-08-15T22:28:12
| 2017-08-15T22:28:12
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 343
|
h
|
CountryCodes.h
|
//------------------------------------------------------------------------------
//Copyright Robert Pelloni.
//All Rights Reserved.
//------------------------------------------------------------------------------
#pragma once
#include "bobtypes.h"
class Logger;
class CountryCodes
{
public:
static vector<string>* getCountryList();
};
|
061d50c4338ac5f3c1f84c1f460b3880cd8b4069
|
34b02bdc74ffd35caf0ced89612e413e43ef9e70
|
/project/QtTomato/src/QData.h
|
409656f279c5fac56191aca908b1ae80e11d3fee
|
[] |
no_license
|
Makmanfu/CppNote
|
693f264e3984c6e2e953e395b836306197cc9632
|
e1c76e036df4a9831618704e9ccc0ad22cd4b748
|
refs/heads/master
| 2020-03-26T01:11:51.613952
| 2018-08-10T06:52:21
| 2018-08-10T06:52:39
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,169
|
h
|
QData.h
|
//********************************************************************
//
//
//
//
//********************************************************************/
#ifndef QDATA_H
#define QDATA_H
#include "QtConfig.h"
#include <map>
using namespace std;
//Qmap学习类
class CStudyQMap
{
public:
CStudyQMap(){};
~CStudyQMap(){};
private:
QMap<int, QString> MDat;
//vector增加使用
void MapADD_Demo(void)
{
MDat.clear();
MDat.insert(1, "张三");
};
//vector显示数据
void MapShow_Demo(void)
{
//用迭代器遍历取map的值
for (QMap<int, QString> ::const_iterator it = MDat.begin(); it != MDat.end(); it++)
qDebug() << it.key() << " " << it.value();
};
//vector查找数据
void MapFind_Demo(void)
{
int findnum(2); //map查找标号为2的项
QMap<int, QString>::const_iterator findr = MDat.find(findnum);
if (findr != MDat.end())
qDebug() << findr.value();
else
qDebug() << "没有找到啦";
};
void MapDel_Demo(int key)
{
QMap<int, QString>::iterator findr = MDat.find(key);
if (findr != MDat.end())
findr = MDat.erase(findr);
else
return;
}
};
//map转换QMap
template <typename Key, typename T>
void mapToQMap(std::map<Key, T>& stdmap, QMap<Key, T>& qmap)
{
if (stdmap.empty())
return;
for (std::map<Key, T> ::const_iterator it = stdmap.begin(); it != stdmap.end(); it++)
qmap.insert(it->first, it->second);
}
//QMap转换map
template <typename Key, typename T>
void QMapTomap(QMap<Key, T>& qmap, std::map<Key, T>& stdmap)
{
if (qmap.empty())
return;
for (QMap<Key, T>::iterator it = qmap.begin(); it != qmap.end(); it++)
stdmap.insert(std::make_pair(it.key(), it.value()));
}
//void testQMapTomap(void)
//{
// QMap<string, string> qmap;
// qmap.insert("as", "asd");
// qmap.insert("as1", "asd1");
// qmap.insert("as2", "asd2");
// qmap.insert("as3", "asd3");
// std::map<string, string> smap;
// QMapTomap(qmap, smap);
//}
#endif
|
726c479741da61668a4cf3d05789bcbcb7cd1779
|
970079e4bd221f1e2c8dc43b556ec9e793f5d7aa
|
/11.Container With Most Water.cpp
|
945d296d953a9fca3b20b936a5890aebc20a7f12
|
[] |
no_license
|
amreenabbas/Leet-Code-Solutions
|
ae814eaafe25c89f45e5fa74934be75502c97420
|
da3154950ce337dda26eb72966435079b3a3e574
|
refs/heads/master
| 2023-07-04T19:04:53.061305
| 2021-08-15T13:25:18
| 2021-08-15T13:25:18
| 257,496,352
| 0
| 3
| null | 2021-08-09T12:42:40
| 2020-04-21T06:06:59
|
C++
|
UTF-8
|
C++
| false
| false
| 954
|
cpp
|
11.Container With Most Water.cpp
|
Question Link : https://leetcode.com/problems/container-with-most-water/
//created by js0805
class Solution {
public:
int maxArea(vector<int>& height) {
int l =0,h = height.size()-1;
int sum = 0;
while(l<h)
{
int q = min(height[l],height[h]);
sum = max(sum,(h-l)*q);
while(height[l]<=q && l<h)l++;
while(height[h]<=q && l<h)h--;
}
return sum;
}
};
//created by js0805
class Solution {
public:
int maxArea(vector<int>& height) {
int l =0,h = height.size()-1;
int sum = 0;
while(l<h)
{
int w = h-l;
if(height[l]<=height[h])
{
sum = max(sum,height[l]*w);
l++;
}
else
{
sum = max(sum,height[h]*w);
h--;
}
}
return sum;
}
};
|
d97736e9c9d82940810fa0d0288d77682e672ae8
|
2a53ec2db505448d8041a7ac2ba8f0313136d8f0
|
/3DMath/EulerAngles.h
|
3d91df52f178edee65ff4a65b7604fea1743f6df
|
[] |
no_license
|
DouChuang1/3DMath
|
6f9ac67a03e34d92c8c8c0f3d6445906ea022f1a
|
967608bff0b03f3c8800f27ad6f7013f8c8a5290
|
refs/heads/master
| 2023-03-04T00:33:58.246048
| 2020-07-08T03:30:37
| 2020-07-08T03:30:37
| null | 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 595
|
h
|
EulerAngles.h
|
#pragma once
#include "RotationMatrix.h"
#include "Matrix4X3.h"
class Quaternion;
class EulerAngles
{
public :
float heading;
float pitch;
float bank;
EulerAngles(){}
EulerAngles(float h,float p,float b):heading(h),pitch(p),bank(b){}
void FromObjectToWorldMatrix(const Matrix4X3 &m);
void FromWorldToObjectMatrix(const Matrix4X3 &m);
void FromRotationMatrix(const RotationMatrix &r);
void canonize(); // 三个角度限制 一定程度避免万向死锁问题
void fromObjectToIneritialQuaternion(const Quaternion&q);
void fromIneritialToObjectQuaternion(const Quaternion&q);
};
|
00f77772c5e36d43d0bdd620d30ad795a45e9e4d
|
223317755bac0401621dea07019064647828cdc7
|
/Actions/Exit.cpp
|
e04e59870ff2de59edc4fb570a9ca50ede9de138
|
[] |
no_license
|
rehamaali/Paint-for-kids
|
ad7f1aeb955bf08f234e69ba9f1514d61a038b63
|
44fce5241f767bb5bd62cac9a0e3e2a7876c3f9d
|
refs/heads/master
| 2022-01-24T05:37:19.258879
| 2019-05-10T21:16:47
| 2019-05-10T21:16:47
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 613
|
cpp
|
Exit.cpp
|
#include "Exit.h"
#include "../ApplicationManager.h"
Exit::Exit(ApplicationManager* pApp) :Action(pApp)
{
}
Exit::~Exit()
{
}
void Exit::ReadActionParameters()
{
}
void Exit::Execute()
{//asks if the kid wants to save the file before exiting .
pManager->GetOutput()->PrintMessage("If you want to save your last changes type (yes),OtherWise the game will exit without saving ");
string str = pManager->GetInput()->GetSrting(pManager->GetOutput());
if (str == "yes" || str == "YES" || str == "Yes"|| str== "yEs" ||str=="yeS"||str=="YEs"||str =="yES" ||str=="YeS")
{
pManager->ExecuteAction(SAVE);
}
}
|
6be5a318535fb173fdfa992019901ab688d2377e
|
095d246e628d08e9908c8ed7143807e41817b1c5
|
/WordLab/Prerequisites/msgwin/MessageWindowLegacy/Change/all_change.cpp
|
81df4b017a2b2d76af9445be94a9d583a7900ee7
|
[] |
no_license
|
yhnnd/wordlab
|
ab77e1b6099b0d519f2173d14ece5283cb766326
|
8a3563d6e38a4be3f01bde95b8112d75d081d64c
|
refs/heads/master
| 2023-09-01T21:32:15.251606
| 2023-07-19T03:23:48
| 2023-07-19T03:23:48
| 183,858,184
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,796
|
cpp
|
all_change.cpp
|
void MessageWindow::SelectFrame(int x, int y, int width, const char *msg, const int lineMax, const int lineCharMax) {
recordColor(colorprev, "SelectFrame");
Frame(0, x, y, width, msg, lineMax, lineCharMax);
for (int lineNo = 0; lineNo < lineMax; ++lineNo) {
gotoxy(x + 5, y + 1 + lineNo);
if (_background) {
ColorfulBackground(strsum(msg + lineNo * lineCharMax));
} else {
Colorful(strsum(msg + lineNo * lineCharMax));
}
const char * line = msg + lineNo * lineCharMax;
bsvLineDisableColors(line, std::min(width - 1, lineCharMax));
}
resetColor(colorprev, "SelectFrame");
}
void MessageWindow::SelectShowChange(int x,int y,int r1,int r2) {
int r;
bool flag = 1;
if (r1 > r2) {
std::swap(r1, r2);
flag = 0;
}
for (r = r1 + 1; r < r2; r++) {
gotoxy(x, y + r);
if (flag) {
printf("| ^");
} else {
printf("| v");
}
}
gotoxy(x, y + r1);
if (flag) {
printf("<--");
} else {
printf("-->");
}
gotoxy(x, y + r2);
if (flag) {
printf("-->");
} else {
printf("<--");
}
}
int MessageWindow::Select(int x,int y,int max,int lastpos, const char * pattern1, const char * pattern2, const char * pattern3) {
int currentPos = lastpos;
char key;
for (;;) {
// Select Erase
for (int i = 0; i < max; ++i) {
gotoxy(x, y + i);
std::cout << pattern1;
}
// Select Show
gotoxy(x, y + currentPos);
if (currentPos < max) {
std::cout << pattern2;
} else {
std::cout << pattern3;
}
key = getch();
if (key == 13 || key == 10) {
break;
} else if(key=='w'||key=='W'||key=='-') {
--currentPos;
} else if(key=='s'||key=='S'||key=='d'||key=='D'||key=='+') {
++currentPos;
} else {
return -1;
}
if (_LoopLock) {
roll(currentPos, currentPos, 0, max - 1);
} else {
limit(currentPos, currentPos, 0, max - 1);
}
}
return currentPos;
}
void MessageWindow::Selectup(char *msg, const int max, const int width, const int r1, const int r2) {
char *temp = (char *) calloc(width, sizeof (char));
strncpy(temp, msg + r1 * width, width);
for (int r = r1; r > r2; r--) {
strncpy(msg + r * width, msg + (r - 1) * width, width);
}
strncpy(msg + r2 * width, temp, width);
}
void MessageWindow::Selectdown(char *msg, const int max, const int width, const int r1, const int r2) {
char *temp = (char *) calloc(width, sizeof (char));
strncpy(temp, msg + r1 * width, width);
for (int r = r1; r < r2; r++) {
strncpy(msg + r * width, msg + (r + 1) * width, width);
}
strncpy(msg + r2 * width, temp, width);
}
void MessageWindow::Change(int x,int y,int width,char *msg,int max,int w) {
int r1, r2;
SelectFrame(x, y, width, msg, max, w);
int xSelector = x + 1, ySelector = y + 1;
#ifdef __APPLE__
if (x == 0) {
xSelector += 1;
}
#endif
r1 = Select(xSelector, ySelector, max, 0, "[=]", "[A]", "[0]");
if (r1 == -1) {
status("msgwin: change cancelled");
goto end;
}
r2 = Select(xSelector, ySelector, max, r1, "[=]","[B]","[0]");
if (r2 == -1) {
status("msgwin: change cancelled");
goto end;
}
if (r1 > r2) {
Selectup(msg, max, w, r1, r2);
} else {
Selectdown(msg, max, w, r1, r2);
}
SelectFrame(x, y, width, msg, max, w);
SelectShowChange(xSelector, ySelector, r1, r2);
getch();
end:
Frame(0, x, y, width, msg, max, w);
}
|
491321bd3948bab3d8b2a7b0cd7d091f61203bd8
|
a05abfdf10b048bdc8025a8417213710eff4e66b
|
/XZSSAPP/ClientBroker.h
|
e35f493bc96a276ed8f240fba1a729063fa28474
|
[] |
no_license
|
GetUserNameByNetwork/PMXE7
|
40900a89091f5f435f7e5b467456f9c0fc119701
|
b6a6f03be291a9c330003ca8bb01f233986c65f2
|
refs/heads/master
| 2022-06-16T17:50:27.418813
| 2020-05-03T08:04:31
| 2020-05-03T08:04:31
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,219
|
h
|
ClientBroker.h
|
//---------------------------------------------------------------------------
#ifndef ClientBrokerH
#define ClientBrokerH
//---------------------------------------------------------------------------
#include <Data.Bind.Components.hpp>
#include <Data.Bind.ObjectScope.hpp>
#include <REST.Client.hpp>
#include <IPPeerClient.hpp>
#include <REST.Response.Adapter.hpp>
#include <Datasnap.DBClient.hpp>
//---------------------------------------------------------------------------
class PACKAGE TClientBroker
{
private:
public:
String UserName;
int UserID;
int DepID;
String DepName;
int RoleID;
String RoleName;
String LoginCode;
TRESTClient *RESTClient;
TRESTRequest *Request;
TRESTResponse *Response;
TRESTResponseDataSetAdapter *DataSetAdapter;
TClientDataSet *BaseDataSet;
bool Connected;
String LogonCode,Password;
double BaseBusiRate,BaseAccuRate;
void __fastcall SetBaseUrl(String Url);
TClientDataSet* __fastcall Execute(String Resource, TRESTRequestMethod Method, TRESTRequestParameterList *Params);
TClientDataSet* __fastcall SetRootElement(String Root);
__fastcall TClientBroker(TComponent* Owner);
};
//---------------------------------------------------------------------------
#endif
|
9c14f36a098a1fbefc736b1acc16ea93a8b57581
|
94ff327687be43f38c10208caca183d973881726
|
/33. 콜바이벨류,콜바이레퍼/33. 콜바이벨류,콜바이레퍼/ex01.cpp
|
a1aab16702321275653b110b37a7bcd513923dba
|
[] |
no_license
|
defilers/C-C-
|
b3247b845492b5c0ffc14a6b9ede8db36b25b943
|
8a8ccd169d835fb4aba5a4d779878c8da0e08d45
|
refs/heads/master
| 2021-01-20T14:07:49.397825
| 2017-02-22T08:28:42
| 2017-02-22T08:28:42
| 82,740,455
| 0
| 0
| null | null | null | null |
UHC
|
C++
| false
| false
| 530
|
cpp
|
ex01.cpp
|
// call by value
// call by reference
#include <stdio.h>
void swap(int *x, int *y) {// 포인터를 통한 원본의 변환
/*
// 포인터의 교환 이러면 안바뀜(바로가기만 변경하고 원본은 변화없음 시스템상의 포인터가 아니라 복제한 포인터를 변경했기 때문)
int *tmp;
tmp = x;
x = y;
y = tmp;
*/
// 값의 교환 이건 바뀜
int tmp;
tmp = *x;
*x = *y;
*y = tmp;
}
int main() {
int a, b;
scanf("%d%d", &a, &b);
swap(&a, &b);
printf("a = %d, b = %d\n", a, b);
}
|
65ec9a1da190aa4744ebcb4d6f50b1f817c66c04
|
1f05b964049c83113b2c7e78187dd23ea518a8dd
|
/FlagGG/Allocator/SmartMemory.hpp
|
a36430c5b049268d9a47e5e700acd1dd02b387c3
|
[] |
no_license
|
flagflag/FlagGG
|
36bf363d141e7e110bc39b5632ce32951520fd7f
|
9982129c525358e49eef16e2d10ebd64202b7672
|
refs/heads/master
| 2023-08-21T04:02:17.133863
| 2023-08-12T15:21:57
| 2023-08-12T15:21:57
| 149,803,838
| 7
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 648
|
hpp
|
SmartMemory.hpp
|
#ifndef __SMART_MEMORY__
#define __SMART_MEMORY__
#include "Export.h"
#include <stdlib.h>
namespace FlagGG
{
template < class Type = char >
class FlagGG_API SmartMemory
{
public:
SmartMemory(size_t count,
Type* default_memory = nullptr)
: memory_(nullptr)
{
if (count > 0)
{
if (default_memory)
{
memory_ = default_memory;
}
else
{
memory_ = (Type*)malloc(count * (sizeof (Type)));
}
default_ = !!default_memory;
}
}
virtual ~SmartMemory()
{
if (memory_ && !default_)
{
free(memory_);
}
}
Type* Get()
{
return memory_;
}
private:
Type* memory_;
bool default_;
};
}
#endif
|
0be885e262686c8579f0cdafd536a9c11939625a
|
0e8b58c478749b463a5bcf973b7868ced44c5ce4
|
/CVUtil/test/main.cpp
|
7da564a26f246405269df92a10ccd126db7a2d29
|
[] |
no_license
|
geoin/ControlloVoliRT
|
a7ba89a93041bb39f579359551c3b5dc3e4d09c9
|
511bc00d1504bc19fc74f3bb8dbdda8e8ec5668a
|
refs/heads/master
| 2021-01-22T09:51:01.778495
| 2017-08-17T08:24:53
| 2017-08-17T08:24:53
| 13,063,921
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,547
|
cpp
|
main.cpp
|
#include <Poco/Logger.h>
#include "CVUtil/cvspatialite.h"
#include <iostream>
#include "CVUtil/ogrgeomptr.h"
#define PLANNED_FLIGHT_LAYER_NAME "AVOLOP"
#define SHAPE_CHAR_SET "CP1252"
#define GAUSS_BOAGA_SRID 32632
#define GEOM_COL_NAME "geom"
#if defined(__APPLE__)
#define TEST_GEO_DB "/Users/andrea/ControlloVoliRT/CVUtil/test/geo.sqlite"
#define TEST_SHAPE_FILE "/Users/andrea/ControlloVoliRT/CVUtil/test/avolov"
#else
#define TEST_GEO_DB "C:/ControlloVoliRT/CVUtil/test/geo.sqlite"
#define TEST_SHAPE_FILE "C:/Google_drive/Regione Toscana Tools/Dati_test/assi volo/avolov"
#endif
// Load a shape file
void load_shape() {
try {
CV::Util::Spatialite::Connection cnn;
cnn.create(TEST_GEO_DB);
std::cout << "DB open" << std::endl;
if ( cnn.check_metadata() == CV::Util::Spatialite::Connection::NO_SPATIAL_METADATA )
cnn.initialize_metdata();
std::cout << "DB spatial initialized " << std::endl;
int nrows = cnn.load_shapefile(TEST_SHAPE_FILE,
PLANNED_FLIGHT_LAYER_NAME,
SHAPE_CHAR_SET,
GAUSS_BOAGA_SRID,
GEOM_COL_NAME,
false,
false,
false);
std::cout << "Shape file loaded" << std::endl;
}
catch( std::exception &e){
std::cout << std::string(e.what()) << std::endl;
}
}
void dump_geometry(std::vector<unsigned char> &wkb){
CV::Util::Geometry::OGRGeomPtr gg(wkb);
char *txt=NULL;
gg->exportToWkt(&txt);
std::cout << std::string(txt) ;
// free allocated memory
OGRFree(txt);
}
//dump all linear geometry of a shape file
void dump_shape(){
CV::Util::Spatialite::Connection cnn;
cnn.open(TEST_GEO_DB);
std::cout << "DB open" << std::endl;
if ( cnn.check_metadata() == CV::Util::Spatialite::Connection::NO_SPATIAL_METADATA ){
std::cout << "DB with no spatial metadata" << std::endl;
return;
}
std::cout << "DB is spatial initialized " << std::endl;
CV::Util::Spatialite::Statement stmt(cnn, "select id, AsBinary(geom) from AVOLOP");
CV::Util::Spatialite::Recordset rs = stmt.recordset();
while( !rs.eof() ){
int id = rs[0].toInt();
std::cout << id << ": --> " ;
std::vector<unsigned char> gg = rs[1];
//rs[1].toBlob(gg);
dump_geometry(gg);
std::cout << std::endl;
rs.next();
}
}
void line2end_points(std::vector<unsigned char> &wkb, OGRPoint *firstlast){
OGRGeometryFactory gf;
OGRGeometry *gg;
int ret = gf.createFromWkb( (unsigned char *)&wkb[0], NULL, &gg);
if (ret != OGRERR_NONE ){
std::cout << "Invalid geometry";
return;
}
if (gg->getGeometryType() != wkbLineString ){
OGRGeometryFactory::destroyGeometry(gg);
std::cout << "Geometry must be a LINESTRING" << std::endl;
return;
}
OGRLineString *ls = (OGRLineString *)gg;
ls->StartPoint(firstlast);
ls->EndPoint(firstlast+1);
//free allocated memory
OGRGeometryFactory::destroyGeometry(gg);
}
// read a linear shapefile and create a vector point layer with the end points of line features
void layer_line2point(){
CV::Util::Spatialite::Connection cnn;
cnn.open(TEST_GEO_DB);
std::cout << "DB open" << std::endl;
if ( cnn.check_metadata() == CV::Util::Spatialite::Connection::NO_SPATIAL_METADATA ){
std::cout << "DB with no spatial metadata" << std::endl;
return;
}
std::cout << "DB is spatial initialized " << std::endl;
try {
cnn.remove_layer("AVOLOP_PT");
}
catch(...){}
//create output layer
cnn.begin_transaction();
cnn.execute_immediate("Create table AVOLOP_PT ( PK_UID INTEGER PRIMARY KEY AUTOINCREMENT, id double )");
cnn.execute_immediate("select AddGeometryColumn('AVOLOP_PT', 'geom', 32632, 'POINT' )");
cnn.commit_transaction();
CV::Util::Spatialite::Statement stmt(cnn, "select ID, HEIGHT, AsBinary(geom) from AVOLOP");
CV::Util::Spatialite::Recordset rs = stmt.recordset();
CV::Util::Spatialite::Statement stmt_out( cnn, "insert into AVOLOP_PT (id, geom) values (:id, ST_GeomFromWKB(:geom, 32632) )");
//CV::Util::Spatialite::Statement stmt_out( cnn, "insert into AVOLOP_PT (id, geom) values (:id, ST_GeomFromTEXT('POINTZ(648322.57782173 4736657.061840324 2500.2)', 32632) )");
while( !rs.eof() ){
int id = rs[0].toInt();
double height = rs[1].toDouble();
std::vector<unsigned char> gg = rs[2];
//rs[2].toBlob(gg);
OGRPoint firstlast[2];
//return first and last point of the line string
line2end_points(gg, firstlast);
// firstlast[0].setZ(height);
// firstlast[1].setZ(height);
for( int i=0; i<2; i++){
std::vector<unsigned char> buffin;
char *buffout=NULL;
int size_out = 0, size_in = firstlast[i].WkbSize();
buffin.resize(size_in);
firstlast[i].exportToWkb(wkbNDR, &buffin[0]);
firstlast[i].exportToWkt(&buffout);
std::cout << std::string(buffout) << std::endl;
OGRFree(buffout);
/*
gaiaGeomCollPtr geo = gaiaFromWkb(&buffin[0], size_in);
geo->Srid = 32632;
geo->DimensionModel = GAIA_XY_Z;
geo->DeclaredType = GAIA_POINTZ;
// debug in wkt
gaiaOutBuffer wkt;
gaiaOutBufferInitialize(&wkt);
gaiaToEWKT(&wkt, geo);
std::cout << std::string(wkt.Buffer, wkt.BufferSize) << std::endl;
gaiaOutBufferReset(&wkt);
gaiaToSpatiaLiteBlobWkb(geo, &buffout, &size_out);
std::vector<unsigned char> vtmp;
vtmp.resize(size_out);
memcpy(&vtmp[0], buffout, size_out);
gaiaFree(buffout);
gaiaFreeGeomColl(geo);
*/
stmt_out[1] = id;
stmt_out[2].fromBlob(buffin);
stmt_out.execute();
stmt_out.reset();
}
rs.next();
}
}
int main( int argc, char *argv[]) {
try {
//load_shape();
// get geometry form db
//dump_shape();
// read linear layer, split line in points e copy points in another layer
layer_line2point();
}
catch(std::runtime_error const &e){
std::cout << std::string(e.what()) << std::endl;
std::cout.flush();
}
}
|
95c30f0727a3410b209169330f77b2a049d9e897
|
38b9daafe39f937b39eefc30501939fd47f7e668
|
/tutorials/2WayCouplingOceanWave3D/EvalResults180628-Eta-ux-uy/16.4/p_rgh
|
fb3469563a458364893848bd73c593c006d243fd
|
[] |
no_license
|
rubynuaa/2-way-coupling
|
3a292840d9f56255f38c5e31c6b30fcb52d9e1cf
|
a820b57dd2cac1170b937f8411bc861392d8fbaa
|
refs/heads/master
| 2020-04-08T18:49:53.047796
| 2018-08-29T14:22:18
| 2018-08-29T14:22:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 196,473
|
p_rgh
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "16.4";
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
21420
(
215.504
183.798
151.12
117.851
84.5007
51.4658
20.7833
-10.3863
-41.5807
-71.8555
-100.83
-128.256
-153.993
-177.952
-200.079
-220.358
-238.786
-255.392
-270.214
-283.294
-294.683
-304.434
-312.594
-319.212
-324.329
-327.987
-330.194
-330.927
-330.247
-328.184
-324.671
-319.71
-313.269
-305.322
-295.821
-284.721
-271.988
-257.569
-241.414
-223.498
-203.793
-182.295
-159.017
-133.981
-107.273
-79.0237
-49.3626
-18.4593
13.3652
45.382
78.2757
111.46
144.554
177.147
208.832
239.252
268.027
294.784
319.196
340.941
359.733
375.325
387.491
396.049
400.878
401.8
398.885
392.082
381.409
367.026
349.102
327.874
303.618
276.671
247.423
216.277
183.664
150.001
115.7
81.1777
46.7745
12.3223
-20.7039
-52.5747
-83.0873
-112.044
-139.286
-164.71
-188.261
-209.922
-229.692
-247.592
-263.66
-277.952
-290.497
-301.322
-310.467
-317.962
-323.831
-328.07
-330.661
-331.67
-331.147
-328.915
-325.067
-319.666
-312.722
-304.216
-294.161
-282.558
-269.398
-254.658
-238.316
-220.346
-200.73
-179.465
-156.554
-132.023
-105.936
-78.3656
-49.4265
-19.2736
11.9011
43.8636
76.3591
109.08
141.694
173.84
205.142
235.214
263.669
290.142
314.309
335.836
354.412
369.797
381.79
390.229
395.005
395.98
393.29
386.894
376.883
363.393
346.596
326.703
303.942
278.611
251.015
221.461
190.279
157.815
124.432
90.4798
56.3084
22.2684
-11.3099
-44.1237
-75.8917
-106.367
-135.335
-162.592
-187.98
-211.386
-232.72
-251.921
-268.956
-283.815
-296.51
-307.081
-315.57
-322.056
-326.659
-329.426
-330.463
-329.81
-327.711
-324.24
-319.418
-313.291
-305.957
-297.471
-287.846
-277.085
-265.182
-252.122
-237.863
-222.343
-205.496
-187.25
-167.539
-146.306
-123.511
-99.1301
-73.1813
-45.71
-16.8078
13.3917
44.7023
76.8595
109.583
142.529
175.316
207.528
238.732
268.451
296.236
321.667
344.316
363.797
379.786
392.008
400.251
404.351
404.218
399.867
391.411
378.883
362.481
342.484
319.202
292.985
264.258
233.434
200.964
167.334
132.993
98.3769
63.9021
29.9381
-3.1715
-35.1468
-65.7622
-94.8403
-122.261
-147.95
-171.853
-193.965
-214.314
-232.928
-249.832
-265.063
-278.665
-290.667
-301.11
-309.998
-317.361
-323.239
-327.581
-330.376
-331.706
-331.541
-329.696
-326.216
-321.139
-314.483
-306.169
-296.164
-284.456
-271.028
-255.865
-238.953
-220.283
-199.87
-177.743
-153.956
-128.583
-101.725
-73.5184
-44.1153
-13.6966
17.5525
49.3828
81.4574
113.524
145.275
176.389
206.538
235.379
262.576
287.795
310.733
331.131
348.711
363.241
374.537
382.439
386.833
387.669
385.124
378.963
369.257
356.246
340.078
320.962
299.18
275.008
248.782
220.862
191.593
161.353
130.472
99.2782
68.1027
37.4294
13.0769
-15.1999
-42.7365
-69.0578
-93.9524
-117.284
-138.972
-158.975
-177.266
-193.847
-208.734
-221.952
-233.532
-243.508
-251.914
-258.786
-264.158
-268.068
-270.516
-271.513
-271.059
-269.263
-266.104
-261.599
-255.767
-248.625
-240.182
-230.453
-219.458
-207.215
-193.749
-179.093
-163.274
-146.337
-128.333
-109.315
-89.3598
-68.5573
-47.006
-24.8394
-2.23075
20.4808
43.7154
67.0747
90.3693
113.373
135.887
157.677
178.532
198.26
216.594
233.279
215.539
183.816
151.119
117.833
84.4662
51.4184
20.7341
-10.4476
-41.6507
-71.9322
-100.911
-128.34
-154.078
-178.037
-200.163
-220.439
-238.865
-255.468
-270.287
-283.364
-294.751
-304.499
-312.657
-319.272
-324.387
-328.043
-330.249
-330.981
-330.305
-328.241
-324.728
-319.768
-313.329
-305.385
-295.885
-284.788
-272.058
-257.642
-241.489
-223.576
-203.873
-182.376
-159.098
-134.062
-107.352
-79.0989
-49.4327
-18.5229
13.3105
45.3338
78.2394
111.437
144.546
177.155
208.856
239.293
268.085
294.858
319.285
341.045
359.85
375.454
387.63
396.195
401.034
401.951
399.033
392.228
381.549
367.156
349.219
327.976
303.703
276.738
247.471
216.307
183.675
149.994
115.677
81.1413
46.73
12.2543
-20.7764
-52.6534
-83.1716
-112.132
-139.377
-164.801
-188.351
-210.01
-229.778
-247.675
-263.741
-278.03
-290.572
-301.395
-310.539
-318.032
-323.9
-328.139
-330.729
-331.739
-331.213
-328.982
-325.133
-319.733
-312.789
-304.283
-294.229
-282.626
-269.468
-254.73
-238.39
-220.421
-200.807
-179.544
-156.632
-132.101
-106.013
-78.4402
-49.4972
-19.3387
11.8434
43.8149
76.3214
109.055
141.683
173.845
205.163
235.252
263.724
290.214
314.397
335.938
354.528
369.923
381.925
390.37
395.149
396.133
393.429
387.031
377.013
363.514
346.706
326.8
304.025
278.679
251.068
221.498
190.3
157.821
124.424
90.4572
56.2726
22.2206
-11.3685
-44.1918
-75.9678
-106.45
-135.423
-162.684
-188.075
-211.483
-232.817
-252.018
-269.052
-283.909
-296.601
-307.17
-315.656
-322.138
-326.736
-329.498
-330.525
-329.874
-327.771
-324.297
-319.473
-313.344
-306.008
-297.522
-287.897
-277.136
-265.234
-252.177
-237.921
-222.404
-205.56
-187.319
-167.611
-146.381
-123.588
-99.2089
-73.2602
-45.7872
-16.8815
13.3235
44.6412
76.8086
109.544
142.505
175.309
207.54
238.762
268.502
296.307
321.759
344.426
363.923
379.926
392.16
400.411
404.521
404.379
400.025
391.563
379.025
362.609
342.596
319.297
293.06
264.313
233.468
200.978
167.33
132.971
98.3393
63.8507
29.8751
-3.24365
-35.2259
-65.8461
-94.9268
-122.348
-148.037
-171.939
-194.049
-214.396
-233.007
-249.908
-265.137
-278.736
-290.737
-301.177
-310.065
-317.426
-323.303
-327.646
-330.442
-331.772
-331.606
-329.763
-326.283
-321.208
-314.553
-306.241
-296.237
-284.531
-271.104
-255.942
-239.032
-220.363
-199.95
-177.823
-154.034
-128.66
-101.798
-73.5873
-44.1784
-13.7528
17.5046
49.3437
81.4296
113.508
145.273
176.401
206.565
235.421
262.634
287.867
310.82
331.231
348.823
363.363
374.668
382.575
386.975
387.82
385.257
379.094
369.385
356.365
340.186
321.057
299.26
275.073
248.831
220.895
191.611
161.356
130.462
99.2553
68.0656
37.3653
13.0391
-15.261
-42.8063
-69.1315
-94.0281
-117.36
-139.048
-159.05
-177.34
-193.919
-208.804
-222.02
-233.598
-243.571
-251.975
-258.846
-264.216
-268.124
-270.571
-271.569
-271.115
-269.317
-266.157
-261.652
-255.819
-248.677
-240.234
-230.505
-219.509
-207.266
-193.8
-179.143
-163.323
-146.385
-128.38
-109.36
-89.4023
-68.5965
-47.0414
-24.8701
-2.2562
20.4575
43.6986
67.0652
90.3677
113.38
135.903
157.701
178.566
198.303
216.646
233.339
215.61
183.852
151.119
117.796
84.3972
51.3234
20.6356
-10.57
-41.7905
-72.0856
-101.074
-128.508
-154.248
-178.206
-200.329
-220.602
-239.023
-255.62
-270.433
-283.505
-294.885
-304.628
-312.781
-319.392
-324.504
-328.156
-330.36
-331.091
-330.421
-328.354
-324.842
-319.885
-313.449
-305.509
-296.014
-284.922
-272.197
-257.787
-241.639
-223.731
-204.032
-182.537
-159.261
-134.223
-107.51
-79.249
-49.5723
-18.6494
13.2015
45.238
78.1672
111.392
144.531
177.172
208.905
239.376
268.201
295.007
319.465
341.254
360.086
375.713
387.908
396.489
401.338
402.262
399.331
392.522
381.831
367.419
349.456
328.183
303.877
276.875
247.571
216.369
183.701
149.986
115.637
81.0743
46.6475
12.1256
-20.9138
-52.8027
-83.3315
-112.299
-139.548
-164.973
-188.522
-210.176
-229.939
-247.831
-263.89
-278.174
-290.711
-301.531
-310.672
-318.163
-324.028
-328.266
-330.856
-331.867
-331.337
-329.107
-325.257
-319.857
-312.913
-304.407
-294.355
-282.755
-269.599
-254.865
-238.529
-220.565
-200.955
-179.694
-156.784
-132.253
-106.162
-78.5841
-49.6334
-19.464
11.7327
43.7217
76.2501
109.009
141.666
173.858
205.209
235.331
263.836
290.36
314.576
336.146
354.761
370.179
382.199
390.655
395.439
396.437
393.711
387.309
377.278
363.76
346.929
326.997
304.194
278.819
251.177
221.577
190.348
157.838
124.412
90.418
56.2074
22.1317
-11.4786
-44.3205
-76.1123
-106.607
-135.591
-162.86
-188.256
-211.667
-233.002
-252.202
-269.233
-284.086
-296.774
-307.337
-315.816
-322.291
-326.879
-329.632
-330.638
-329.992
-327.883
-324.403
-319.573
-313.44
-306.102
-297.614
-287.989
-277.229
-265.331
-252.278
-238.028
-222.518
-205.682
-187.448
-167.748
-146.525
-123.736
-99.3605
-73.4122
-45.9362
-17.0237
13.1921
44.5237
76.7112
109.472
142.461
175.299
207.566
238.827
268.606
296.454
321.944
344.648
364.179
380.211
392.467
400.734
404.864
404.704
400.347
391.871
379.313
362.871
342.827
319.491
293.215
264.428
233.542
201.013
167.328
132.934
98.2716
63.7556
29.7574
-3.37947
-35.3753
-66.0046
-95.0902
-122.513
-148.201
-172.101
-194.206
-214.548
-233.153
-250.049
-265.273
-278.868
-290.865
-301.302
-310.187
-317.547
-323.423
-327.766
-330.563
-331.896
-331.727
-329.888
-326.41
-321.337
-314.685
-306.375
-296.374
-284.672
-271.249
-256.09
-239.183
-220.516
-200.103
-177.976
-154.186
-128.807
-101.939
-73.7202
-44.2999
-13.8609
17.4128
49.2694
81.3776
113.481
145.272
176.429
206.622
235.509
262.751
288.014
310.996
331.434
349.049
363.608
374.93
382.85
387.261
388.118
385.527
379.358
369.641
356.604
340.402
321.247
299.42
275.202
248.929
220.961
191.646
161.363
130.441
99.2096
67.9919
37.2376
12.9631
-15.3841
-42.9462
-69.279
-94.1794
-117.513
-139.201
-159.2
-177.487
-194.063
-208.944
-222.155
-233.729
-243.698
-252.098
-258.965
-264.333
-268.237
-270.683
-271.68
-271.226
-269.424
-266.263
-261.757
-255.924
-248.782
-240.338
-230.608
-219.613
-207.369
-193.902
-179.244
-163.422
-146.482
-128.473
-109.449
-89.4871
-68.675
-47.112
-24.9314
-2.30705
20.4109
43.665
67.0462
90.3646
113.394
135.934
157.751
178.634
198.389
216.749
233.459
215.717
183.906
151.118
117.742
84.2933
51.1805
20.4877
-10.7536
-42.0005
-72.3158
-101.318
-128.76
-154.503
-178.46
-200.58
-220.846
-239.26
-255.849
-270.653
-283.715
-295.087
-304.822
-312.968
-319.572
-324.679
-328.324
-330.525
-331.257
-330.595
-328.524
-325.013
-320.06
-313.629
-305.695
-296.207
-285.122
-272.406
-258.004
-241.864
-223.963
-204.27
-182.78
-159.504
-134.465
-107.746
-79.4743
-49.782
-18.8394
13.0376
45.094
78.0588
111.324
144.508
177.196
208.979
239.499
268.375
295.23
319.736
341.568
360.439
376.101
388.324
396.929
401.787
402.732
399.783
392.963
382.254
367.812
349.812
328.494
304.136
277.081
247.721
216.464
183.741
149.974
115.577
80.9734
46.5236
11.9324
-21.1195
-53.0269
-83.5715
-112.55
-139.806
-165.233
-188.777
-210.426
-230.181
-248.065
-264.115
-278.392
-290.921
-301.735
-310.873
-318.358
-324.221
-328.458
-331.047
-332.059
-331.522
-329.295
-325.443
-320.043
-313.1
-304.595
-294.544
-282.948
-269.797
-255.069
-238.739
-220.781
-201.176
-179.919
-157.011
-132.48
-106.386
-78.8005
-49.8382
-19.6526
11.5661
43.5815
76.1427
108.94
141.639
173.878
205.277
235.45
264.005
290.58
314.843
336.457
355.112
370.564
382.61
391.083
395.876
396.889
394.14
387.727
377.674
364.128
347.264
327.294
304.449
279.029
251.342
221.695
190.42
157.865
124.395
90.3592
56.1096
21.9985
-11.6439
-44.5137
-76.3291
-106.843
-135.843
-163.124
-188.528
-211.943
-233.28
-252.478
-269.505
-284.352
-297.033
-307.588
-316.057
-322.521
-327.094
-329.834
-330.817
-330.169
-328.051
-324.562
-319.724
-313.584
-306.243
-297.753
-288.127
-277.369
-265.476
-252.431
-238.189
-222.69
-205.866
-187.643
-167.954
-146.74
-123.959
-99.5886
-73.6408
-46.1604
-17.2376
12.9941
44.3469
76.5646
109.362
142.395
175.282
207.606
238.925
268.763
296.673
322.223
344.982
364.563
380.638
392.928
401.218
405.365
405.202
400.834
392.335
379.746
363.264
343.172
319.784
293.449
264.6
233.654
201.066
167.325
132.879
98.1701
63.613
29.5806
-3.5834
-35.5996
-66.2427
-95.3357
-122.761
-148.448
-172.343
-194.442
-214.777
-233.373
-250.261
-265.478
-279.067
-291.057
-301.49
-310.372
-317.729
-323.602
-327.946
-330.745
-332.082
-331.909
-330.075
-326.6
-321.531
-314.884
-306.577
-296.581
-284.883
-271.466
-256.313
-239.41
-220.746
-200.335
-178.207
-154.413
-129.028
-102.152
-73.9199
-44.4826
-14.0235
17.2745
49.1577
81.2993
113.439
145.27
176.47
206.707
235.639
262.927
288.233
311.259
331.737
349.387
363.977
375.324
383.263
387.688
388.559
385.938
379.757
370.026
356.962
340.726
321.531
299.661
275.397
249.074
221.059
191.699
161.372
130.411
99.1411
67.8824
37.0518
12.8432
-15.5702
-43.1564
-69.5005
-94.4066
-117.742
-139.429
-159.426
-177.709
-194.279
-209.153
-222.358
-233.925
-243.889
-252.283
-259.145
-264.507
-268.405
-270.848
-271.848
-271.392
-269.584
-266.421
-261.915
-256.081
-248.938
-240.494
-230.764
-219.768
-207.523
-194.055
-179.395
-163.57
-146.627
-128.614
-109.584
-89.6144
-68.793
-47.2182
-25.0235
-2.38357
20.3411
43.6145
67.0177
90.3599
113.414
135.982
157.825
178.735
198.518
216.905
233.638
215.86
183.977
151.117
117.669
84.154
50.9892
20.2904
-10.9985
-42.2807
-72.6233
-101.644
-129.097
-154.843
-178.799
-200.913
-221.172
-239.575
-256.153
-270.945
-283.996
-295.356
-305.08
-313.216
-319.812
-324.911
-328.55
-330.745
-331.479
-330.824
-328.75
-325.242
-320.293
-313.868
-305.943
-296.464
-285.39
-272.685
-258.294
-242.164
-224.273
-204.588
-183.104
-159.83
-134.788
-108.061
-79.7752
-50.062
-19.093
12.8184
44.9015
77.9138
111.234
144.477
177.229
209.076
239.664
268.607
295.528
320.096
341.987
360.911
376.619
388.88
397.514
402.388
403.351
400.391
393.553
382.818
368.337
350.287
328.908
304.483
277.355
247.921
216.589
183.794
149.957
115.496
80.8375
46.3575
11.6747
-21.3936
-53.3262
-83.8922
-112.886
-140.151
-165.579
-189.119
-210.759
-230.504
-248.376
-264.416
-278.681
-291.201
-302.008
-311.141
-318.619
-324.477
-328.715
-331.302
-332.315
-331.769
-329.546
-325.691
-320.292
-313.349
-304.845
-294.796
-283.205
-270.062
-255.341
-239.019
-221.069
-201.472
-180.221
-157.315
-132.784
-106.685
-79.0895
-50.1119
-19.9045
11.3433
43.3942
75.999
108.847
141.603
173.904
205.368
235.608
264.23
290.874
315.201
336.871
355.579
371.076
383.157
391.655
396.458
397.483
394.72
388.285
378.204
364.62
347.711
327.691
304.789
279.309
251.561
221.852
190.516
157.901
124.372
90.2805
55.9789
21.8203
-11.8647
-44.7719
-76.6187
-107.159
-136.179
-163.476
-188.892
-212.312
-233.65
-252.846
-269.868
-284.708
-297.379
-307.923
-316.378
-322.827
-327.381
-330.103
-331.068
-330.407
-328.274
-324.774
-319.925
-313.777
-306.431
-297.938
-288.311
-277.556
-265.67
-252.635
-238.405
-222.92
-206.111
-187.904
-168.229
-147.029
-124.257
-99.8933
-73.9461
-46.4601
-17.5237
12.7291
44.1107
76.3683
109.215
142.306
175.26
207.658
239.054
268.972
296.964
322.595
345.427
365.076
381.207
393.543
401.863
406.021
405.874
401.487
392.954
380.324
363.788
343.634
320.174
293.76
264.83
233.803
201.136
167.321
132.805
98.034
63.4221
29.3444
-3.85603
-35.8993
-66.5607
-95.6636
-123.091
-148.776
-172.667
-194.758
-215.082
-233.667
-250.544
-265.752
-279.332
-291.314
-301.74
-310.618
-317.971
-323.841
-328.186
-330.988
-332.33
-332.152
-330.326
-326.854
-321.79
-315.149
-306.847
-296.856
-285.166
-271.756
-256.61
-239.712
-221.052
-200.643
-178.515
-154.717
-129.323
-102.436
-74.1865
-44.7268
-14.2408
17.0892
49.0086
81.1945
113.383
145.267
176.524
206.82
235.813
263.161
288.526
311.611
332.142
349.838
364.469
375.849
383.813
388.256
389.139
386.493
380.291
370.54
357.44
341.159
321.911
299.982
275.655
249.268
221.19
191.769
161.384
130.369
99.0496
67.7383
36.8189
12.6683
-15.8211
-43.4374
-69.7962
-94.7098
-118.048
-139.734
-159.727
-178.004
-194.566
-209.433
-222.629
-234.187
-244.142
-252.529
-259.384
-264.74
-268.63
-271.068
-272.072
-271.612
-269.798
-266.633
-262.125
-256.29
-249.147
-240.702
-230.971
-219.974
-207.728
-194.259
-179.596
-163.768
-146.82
-128.801
-109.764
-89.7843
-68.9504
-47.3599
-25.1465
-2.4863
20.2484
43.5472
66.9796
90.3536
113.442
136.044
157.924
178.871
198.691
217.113
233.878
216.038
184.066
151.115
117.577
83.9787
50.7487
20.0438
-11.3046
-42.6315
-73.0083
-102.052
-129.518
-155.269
-179.223
-201.331
-221.579
-239.97
-256.534
-271.311
-284.346
-295.692
-305.403
-313.527
-320.113
-325.203
-328.832
-331.02
-331.759
-331.106
-329.032
-325.527
-320.585
-314.168
-306.253
-296.786
-285.724
-273.033
-258.656
-242.54
-224.661
-204.986
-183.508
-160.236
-135.192
-108.456
-80.1521
-50.4125
-19.4103
12.5433
44.66
77.7319
111.119
144.439
177.269
209.198
239.87
268.897
295.9
320.546
342.51
361.5
377.266
389.575
398.246
403.14
404.119
401.156
394.292
383.525
368.995
350.88
329.425
304.916
277.698
248.17
216.745
183.86
149.936
115.394
80.6656
46.1476
11.3532
-21.7357
-53.701
-84.2938
-113.306
-140.581
-166.012
-189.547
-211.176
-230.908
-248.766
-264.791
-279.044
-291.551
-302.349
-311.476
-318.946
-324.798
-329.035
-331.621
-332.634
-332.079
-329.861
-326.002
-320.603
-313.661
-305.157
-295.112
-283.527
-270.392
-255.681
-239.369
-221.43
-201.842
-180.598
-157.696
-133.164
-107.059
-79.4514
-50.4545
-20.2203
11.0638
43.1595
75.8187
108.731
141.558
173.936
205.481
235.804
264.511
291.24
315.647
337.39
356.163
371.717
383.842
392.37
397.188
398.219
395.449
388.984
378.866
365.235
348.27
328.186
305.214
279.659
251.835
222.049
190.635
157.944
124.343
90.1816
55.8149
21.597
-12.1414
-45.0952
-76.9815
-107.554
-136.6
-163.917
-189.347
-212.774
-234.114
-253.307
-270.323
-285.153
-297.812
-308.342
-316.781
-323.211
-327.739
-330.438
-331.383
-330.705
-328.554
-325.038
-320.177
-314.018
-306.666
-298.17
-288.541
-277.791
-265.913
-252.889
-238.674
-223.206
-206.417
-188.23
-168.574
-147.389
-124.63
-100.275
-74.3283
-46.8352
-17.8822
12.397
43.8147
76.122
109.03
142.195
175.232
207.722
239.215
269.234
297.329
323.059
345.984
365.716
381.919
394.312
402.671
406.844
406.709
402.307
393.729
381.046
364.443
344.211
320.661
294.148
265.117
233.989
201.224
167.315
132.712
97.863
63.1826
29.0483
-4.19783
-36.2748
-66.959
-96.0741
-123.505
-149.188
-173.072
-195.152
-215.463
-234.034
-250.898
-266.095
-279.663
-291.635
-302.053
-310.925
-318.275
-324.141
-328.486
-331.293
-332.638
-332.456
-330.641
-327.172
-322.114
-315.48
-307.184
-297.2
-285.519
-272.119
-256.981
-240.091
-221.436
-201.03
-178.9
-155.096
-129.693
-102.791
-74.52
-45.033
-14.5132
16.8567
48.8221
81.0633
113.313
145.262
176.591
206.962
236.03
263.453
288.892
312.051
332.648
350.403
365.085
376.506
384.501
388.965
389.855
387.194
380.963
371.183
358.038
341.7
322.386
300.383
275.979
249.51
221.353
191.856
161.399
130.317
98.9353
67.5607
36.5525
12.4245
-16.1388
-43.79
-70.1663
-95.0891
-118.431
-140.116
-160.104
-178.374
-194.926
-209.782
-222.967
-234.515
-244.46
-252.837
-259.683
-265.031
-268.912
-271.344
-272.349
-271.885
-270.065
-266.897
-262.387
-256.552
-249.408
-240.963
-231.231
-220.233
-207.985
-194.513
-179.847
-164.015
-147.062
-129.036
-109.989
-89.997
-69.1474
-47.5373
-25.3007
-2.61552
20.1329
43.4628
66.9318
90.3455
113.476
136.122
158.048
179.041
198.906
217.372
234.178
216.252
184.173
151.113
117.466
83.7667
50.458
19.7476
-11.672
-43.0532
-73.4713
-102.542
-130.024
-155.781
-179.733
-201.832
-222.068
-240.444
-256.99
-271.75
-284.767
-296.096
-305.79
-313.9
-320.473
-325.552
-329.172
-331.352
-332.095
-331.443
-329.37
-325.869
-320.934
-314.528
-306.625
-297.172
-286.126
-273.451
-259.091
-242.991
-225.127
-205.464
-183.995
-160.726
-135.678
-108.93
-80.6053
-50.834
-19.7915
12.2121
44.369
77.5127
110.982
144.392
177.316
209.344
240.116
269.244
296.346
321.087
343.139
362.208
378.043
390.41
399.124
404.046
405.038
402.074
395.182
384.374
369.784
351.593
330.047
305.436
278.109
248.469
216.932
183.939
149.909
115.269
80.4563
45.8904
10.9709
-22.1452
-54.1515
-84.7766
-113.81
-141.099
-166.533
-190.061
-211.677
-231.392
-249.234
-265.242
-279.478
-291.972
-302.758
-311.877
-319.339
-325.183
-329.419
-332.003
-333.015
-332.454
-330.238
-326.376
-320.977
-314.035
-305.531
-295.491
-283.913
-270.788
-256.089
-239.789
-221.863
-202.287
-181.05
-158.153
-133.621
-107.509
-79.8865
-50.8666
-20.6002
10.7273
42.877
75.6015
108.59
141.502
173.973
205.615
236.04
264.849
291.679
316.182
338.013
356.865
372.486
384.665
393.229
398.065
399.102
396.325
389.824
379.662
365.973
348.941
328.78
305.723
280.079
252.163
222.285
190.778
157.997
124.307
90.0622
55.6174
21.3283
-12.4741
-45.484
-77.4177
-108.03
-137.105
-164.447
-189.893
-213.329
-234.672
-253.861
-270.869
-285.687
-298.333
-308.845
-317.264
-323.671
-328.169
-330.84
-331.762
-331.062
-328.89
-325.356
-320.478
-314.307
-306.948
-298.447
-288.817
-278.072
-266.204
-253.194
-238.997
-223.55
-206.784
-188.62
-168.987
-147.823
-125.078
-100.732
-74.7875
-47.2862
-18.3135
11.9972
43.4585
75.8252
108.807
142.06
175.197
207.798
239.406
269.547
297.767
323.615
346.652
366.485
382.775
395.235
403.641
407.836
407.709
403.29
394.662
381.915
365.231
344.903
321.245
294.614
265.462
234.211
201.327
167.307
132.599
97.6566
62.8939
28.692
-4.60933
-36.7265
-67.438
-96.5677
-124.003
-149.682
-173.558
-195.626
-215.922
-234.476
-251.322
-266.505
-280.061
-292.021
-302.429
-311.294
-318.638
-324.5
-328.846
-331.658
-333.006
-332.823
-331.019
-327.553
-322.502
-315.878
-307.589
-297.614
-285.943
-272.554
-257.427
-240.545
-221.897
-201.494
-179.363
-155.553
-130.137
-103.218
-74.9209
-45.4014
-14.8408
16.5763
48.5978
80.9052
113.228
145.257
176.672
207.131
236.289
263.804
289.332
312.579
333.256
351.08
365.824
377.296
385.328
389.815
390.712
388.037
381.774
371.956
358.756
342.35
322.956
300.865
276.367
249.8
221.549
191.961
161.416
130.253
98.7978
67.3497
36.2507
12.1139
-16.5248
-44.2145
-70.6114
-95.5448
-118.891
-140.574
-160.557
-178.817
-195.358
-210.202
-223.373
-234.908
-244.841
-253.206
-260.042
-265.38
-269.251
-271.675
-272.679
-272.211
-270.386
-267.214
-262.702
-256.866
-249.721
-241.275
-231.542
-220.543
-208.293
-194.819
-180.149
-164.312
-147.352
-129.317
-110.259
-90.2526
-69.3843
-47.7507
-25.486
-2.77119
19.9943
43.3613
66.874
90.3356
113.516
136.216
158.196
179.244
199.164
217.684
234.538
216.502
184.298
151.11
117.335
83.5169
50.1159
19.4019
-12.1007
-43.5464
-74.013
-103.116
-130.615
-156.379
-180.327
-202.417
-222.639
-240.997
-257.523
-272.262
-285.258
-296.567
-306.242
-314.335
-320.893
-325.959
-329.568
-331.741
-332.485
-331.835
-329.763
-326.268
-321.342
-314.947
-307.059
-297.622
-286.594
-273.938
-259.599
-243.517
-225.67
-206.021
-184.563
-161.297
-136.246
-109.485
-81.1354
-51.3269
-20.2367
11.8241
44.0275
77.2556
110.821
144.335
177.37
209.513
240.403
269.65
296.867
321.718
343.872
363.035
378.951
391.385
400.15
405.104
406.112
403.146
396.222
385.365
370.707
352.426
330.773
306.043
278.589
248.817
217.149
184.029
149.876
115.123
80.208
45.5747
10.5374
-22.6215
-54.6783
-85.3414
-114.401
-141.704
-167.141
-190.662
-212.262
-231.958
-249.78
-265.769
-279.985
-292.462
-303.236
-312.345
-319.797
-325.633
-329.866
-332.45
-333.457
-332.894
-330.679
-326.812
-321.412
-314.471
-305.968
-295.932
-284.363
-271.249
-256.565
-240.28
-222.369
-202.806
-181.579
-158.686
-134.155
-108.035
-80.3952
-51.3488
-21.0448
10.3332
42.5461
75.347
108.424
141.436
174.015
205.772
236.315
265.243
292.192
316.806
338.74
357.684
373.385
385.626
394.233
399.092
400.132
397.345
390.806
380.591
366.835
349.724
329.474
306.318
280.569
252.546
222.559
190.944
158.057
124.265
89.9219
55.3859
21.0137
-12.8634
-45.9387
-77.9277
-108.585
-137.696
-165.066
-190.531
-213.977
-235.322
-254.508
-271.507
-286.311
-298.94
-309.432
-317.827
-324.207
-328.672
-331.31
-332.205
-331.477
-329.281
-325.727
-320.829
-314.643
-307.277
-298.77
-289.139
-278.399
-266.543
-253.55
-239.373
-223.951
-207.212
-189.077
-169.47
-148.328
-125.601
-101.268
-75.3244
-47.8136
-18.8185
11.529
43.0411
75.4773
108.546
141.901
175.155
207.884
239.629
269.912
298.277
324.265
347.432
367.384
383.774
396.314
404.774
408.996
408.878
404.436
395.752
382.929
366.152
345.712
321.926
295.157
265.863
234.469
201.447
167.295
132.466
97.4141
62.5555
28.2747
-5.09096
-37.2552
-67.998
-97.1449
-124.584
-150.259
-174.125
-196.179
-216.457
-234.991
-251.818
-266.984
-280.525
-292.47
-302.867
-311.724
-319.063
-324.919
-329.266
-332.083
-333.434
-333.254
-331.459
-327.998
-322.954
-316.341
-308.061
-298.096
-286.438
-273.062
-257.947
-241.075
-222.435
-202.036
-179.903
-156.086
-130.656
-103.717
-75.3897
-45.8325
-15.224
16.2476
48.3353
80.72
113.128
145.251
176.765
207.328
236.592
264.212
289.846
313.195
333.964
351.872
366.687
378.217
386.293
390.808
391.711
389.021
382.723
372.859
359.595
343.108
323.622
301.427
276.82
250.14
221.778
192.081
161.435
130.178
98.6368
67.1055
35.9128
11.7373
-16.9805
-44.7119
-71.1317
-96.0772
-119.428
-141.109
-161.085
-179.335
-195.863
-210.691
-223.847
-235.367
-245.285
-253.637
-260.46
-265.787
-269.647
-272.063
-273.063
-272.59
-270.76
-267.584
-263.07
-257.232
-250.086
-241.639
-231.905
-220.904
-208.653
-195.176
-180.502
-164.659
-147.691
-129.646
-110.575
-90.5513
-69.6613
-48.0002
-25.7026
-2.95312
19.832
43.2424
66.8063
90.3235
113.563
136.325
158.369
179.481
199.466
218.047
234.959
216.787
184.44
151.105
117.185
83.2282
49.7207
19.0068
-12.5907
-44.1115
-74.6339
-103.773
-131.293
-157.063
-181.008
-203.087
-223.291
-241.629
-258.133
-272.847
-285.819
-297.105
-306.758
-314.832
-321.373
-326.425
-330.022
-332.187
-332.931
-332.282
-330.211
-326.723
-321.807
-315.426
-307.554
-298.137
-287.13
-274.496
-260.179
-244.118
-226.292
-206.659
-185.212
-161.952
-136.895
-110.12
-81.7433
-51.8918
-20.7462
11.3787
43.6348
76.9601
110.636
144.27
177.431
209.706
240.731
270.113
297.462
322.439
344.711
363.98
379.989
392.5
401.323
406.315
407.341
404.37
397.412
386.5
371.762
353.378
331.603
306.737
279.137
249.213
217.397
184.131
149.837
114.953
79.9192
45.1883
10.064
-23.1643
-55.2815
-85.9886
-115.077
-142.397
-167.838
-191.349
-212.932
-232.605
-250.404
-266.37
-280.565
-293.022
-303.781
-312.879
-320.32
-326.147
-330.377
-332.96
-333.961
-333.4
-331.183
-327.311
-321.911
-314.969
-306.467
-296.436
-284.877
-271.777
-257.108
-240.841
-222.947
-203.399
-182.184
-159.297
-134.766
-108.636
-80.978
-51.9016
-21.5545
9.88111
42.1661
75.0549
108.234
141.359
174.061
205.95
236.627
265.693
292.778
317.52
339.571
358.622
374.413
386.725
395.381
400.267
401.313
398.51
391.929
381.654
367.821
350.62
330.266
306.997
281.129
252.984
222.871
191.133
158.124
124.215
89.7605
55.12
20.6528
-13.3096
-46.4598
-78.512
-109.222
-138.373
-165.775
-191.261
-214.719
-236.067
-255.248
-272.236
-287.025
-299.635
-310.103
-318.472
-324.82
-329.247
-331.847
-332.71
-331.952
-329.729
-326.15
-321.229
-315.028
-307.653
-299.138
-289.506
-278.773
-266.93
-253.955
-239.803
-224.409
-207.702
-189.598
-170.023
-148.907
-126.201
-101.88
-75.9394
-48.4178
-19.3978
10.9914
42.5619
75.0775
108.244
141.718
175.105
207.982
239.882
270.329
298.859
325.007
348.324
368.412
384.918
397.549
406.072
410.326
410.214
405.746
397
384.091
367.205
346.637
322.704
295.778
266.32
234.763
201.583
167.28
132.312
97.1348
62.1666
27.7955
-5.64312
-37.8615
-68.6396
-97.8061
-125.251
-150.919
-174.774
-196.811
-217.068
-235.579
-252.385
-267.531
-281.055
-292.984
-303.367
-312.215
-319.547
-325.398
-329.745
-332.569
-333.921
-333.75
-331.962
-328.507
-323.472
-316.87
-308.601
-298.648
-287.004
-273.643
-258.541
-241.681
-223.051
-202.656
-180.522
-156.696
-131.25
-104.288
-75.9269
-46.3267
-15.6638
15.8702
48.0344
80.5072
113.012
145.242
176.87
207.552
236.936
264.679
290.433
313.899
334.775
352.777
367.675
379.272
387.397
391.942
392.853
390.147
383.811
373.893
360.555
343.976
324.383
302.07
277.336
250.531
222.038
192.218
161.454
130.091
98.4516
66.8289
35.5385
11.2938
-17.5075
-45.2829
-71.7278
-96.6867
-120.042
-141.722
-161.689
-179.927
-196.439
-211.25
-224.388
-235.891
-245.792
-254.13
-260.939
-266.252
-270.1
-272.507
-273.5
-273.023
-271.187
-268.007
-263.49
-257.65
-250.503
-242.055
-232.32
-221.318
-209.064
-195.584
-180.905
-165.055
-148.078
-130.022
-110.936
-90.8932
-69.9786
-48.2861
-25.9506
-3.1611
19.6454
43.1057
66.7282
90.3093
113.617
136.449
158.566
179.752
199.81
218.463
235.44
217.108
184.6
151.099
117.013
82.8992
49.27
18.5628
-13.1419
-44.7494
-75.335
-104.514
-132.057
-157.834
-181.775
-203.841
-224.027
-242.341
-258.818
-273.505
-286.451
-297.71
-307.339
-315.391
-321.913
-326.948
-330.533
-332.689
-333.431
-332.783
-330.715
-327.234
-322.33
-315.965
-308.112
-298.716
-287.732
-275.124
-260.831
-244.795
-226.991
-207.378
-185.944
-162.689
-137.628
-110.837
-82.4294
-52.5293
-21.32
10.8751
43.1899
76.6255
110.426
144.194
177.499
209.922
241.098
270.633
298.131
323.25
345.655
365.044
381.158
393.755
402.645
407.68
408.726
405.749
398.754
387.78
372.951
354.45
332.538
307.518
279.752
249.659
217.676
184.244
149.792
114.759
79.589
44.7301
9.55029
-23.7742
-55.962
-86.7191
-115.84
-143.178
-168.622
-192.123
-213.686
-233.334
-251.105
-267.045
-281.217
-293.653
-304.394
-313.479
-320.908
-326.725
-330.951
-333.533
-334.528
-333.971
-331.749
-327.872
-322.471
-315.529
-307.028
-297.003
-285.455
-272.37
-257.72
-241.473
-223.598
-204.067
-182.865
-159.986
-135.455
-109.315
-81.6353
-52.5257
-22.13
9.37025
41.7363
74.7242
108.017
141.271
174.111
206.148
236.979
266.199
293.437
318.323
340.507
359.678
375.571
387.963
396.675
401.591
402.642
399.822
393.195
382.852
368.932
351.628
331.158
307.76
281.759
253.475
223.222
191.345
158.2
124.158
89.5774
54.8192
20.2451
-13.8133
-47.0477
-79.1713
-109.939
-139.136
-166.574
-192.084
-215.555
-236.907
-256.082
-273.057
-287.829
-300.417
-310.859
-319.197
-325.511
-329.895
-332.452
-333.279
-332.486
-330.231
-326.626
-321.68
-315.46
-308.075
-299.552
-289.918
-279.193
-267.364
-254.411
-240.285
-224.925
-208.253
-190.186
-170.645
-149.56
-126.876
-102.571
-76.633
-49.0997
-20.0521
10.3835
42.0201
74.6249
107.903
141.509
175.047
208.088
240.164
270.798
299.514
325.842
349.329
369.569
386.206
398.94
407.535
411.825
411.72
407.221
398.406
385.4
368.392
347.678
323.579
296.475
266.834
235.093
201.734
167.261
132.136
96.8179
61.7264
27.2533
-6.26659
-38.5463
-69.3637
-98.5515
-126.002
-151.663
-175.505
-197.523
-217.756
-236.242
-253.023
-268.146
-281.65
-293.562
-303.929
-312.767
-320.092
-325.937
-330.284
-333.114
-334.469
-334.308
-332.527
-329.079
-324.054
-317.465
-309.207
-299.269
-287.641
-274.297
-259.211
-242.364
-223.744
-203.355
-181.219
-157.383
-131.92
-104.931
-76.5329
-46.8844
-16.161
15.4434
47.6946
80.2663
112.881
145.232
176.986
207.802
237.323
265.203
291.094
314.691
335.687
353.796
368.787
380.46
388.64
393.219
394.139
391.416
385.038
375.058
361.637
344.954
325.24
302.793
277.917
250.966
222.329
192.37
161.475
129.99
98.2418
66.5208
35.1286
10.7811
-18.1072
-45.9282
-72.4
-97.3736
-120.735
-142.411
-162.37
-180.593
-197.088
-211.88
-224.998
-236.48
-246.363
-254.684
-261.477
-266.776
-270.611
-273.006
-273.992
-273.509
-271.667
-268.482
-263.962
-258.121
-250.973
-242.524
-232.787
-221.783
-209.527
-196.043
-181.359
-165.502
-148.515
-130.446
-111.343
-91.2787
-70.3366
-48.6088
-26.2302
-3.39487
19.4339
42.9507
66.6396
90.2926
113.676
136.588
158.787
180.057
200.198
218.931
235.982
217.465
184.777
151.092
116.821
82.5283
48.7608
18.0712
-13.7545
-45.4608
-76.1173
-105.341
-132.908
-158.693
-182.629
-204.68
-224.844
-243.133
-259.581
-274.237
-287.152
-298.382
-307.984
-316.011
-322.512
-327.53
-331.1
-333.247
-333.987
-333.338
-331.275
-327.802
-322.911
-316.563
-308.73
-299.359
-288.402
-275.821
-261.556
-245.548
-227.769
-208.177
-186.759
-163.51
-138.443
-111.635
-83.1945
-53.2404
-21.9593
10.3131
42.6919
76.2509
110.191
144.107
177.571
210.16
241.505
271.211
298.875
324.152
346.704
366.228
382.459
395.152
404.116
409.199
410.267
407.284
400.248
389.204
374.274
355.643
333.577
308.386
280.435
250.154
217.983
184.366
149.738
114.541
79.2169
44.1959
8.99894
-24.4523
-56.7205
-87.5336
-116.691
-144.047
-169.496
-192.986
-214.525
-234.144
-251.884
-267.796
-281.94
-294.353
-305.075
-314.145
-321.562
-327.368
-331.589
-334.169
-335.16
-334.604
-332.377
-328.496
-323.094
-316.15
-307.651
-297.633
-286.096
-273.028
-258.399
-242.174
-224.321
-204.811
-183.623
-160.753
-136.222
-110.07
-82.3679
-53.2219
-22.772
8.79985
41.2562
74.3539
107.773
141.169
174.165
206.367
237.368
266.761
294.169
319.216
341.548
360.853
376.86
389.342
398.116
403.066
404.122
401.28
394.602
384.185
370.167
352.749
332.149
308.609
282.458
254.02
223.611
191.579
158.282
124.093
89.3722
54.4829
19.79
-14.3751
-47.703
-79.9061
-110.739
-139.986
-167.463
-193.001
-216.486
-237.841
-257.009
-273.971
-288.722
-301.287
-311.7
-320.004
-326.278
-330.616
-333.124
-333.911
-333.078
-330.788
-327.155
-322.18
-315.939
-308.542
-300.01
-290.376
-279.658
-267.846
-254.916
-240.821
-225.496
-208.865
-190.838
-171.337
-150.285
-127.628
-103.34
-77.4057
-49.8601
-20.7823
9.70444
41.4146
74.1185
107.52
141.273
174.978
208.204
240.476
271.317
300.24
326.769
350.446
370.858
387.64
400.489
409.163
413.495
413.396
408.862
399.971
386.857
369.712
348.835
324.551
297.251
267.404
235.457
201.899
167.237
131.937
96.4625
61.2342
26.6472
-6.96252
-39.3105
-70.1711
-99.3821
-126.839
-152.491
-176.318
-198.315
-218.521
-236.978
-253.732
-268.83
-282.311
-294.204
-304.554
-313.379
-320.697
-326.536
-330.882
-333.719
-335.08
-334.928
-333.155
-329.715
-324.701
-318.125
-309.882
-299.959
-288.349
-275.023
-259.955
-243.124
-224.516
-204.132
-181.995
-158.149
-132.667
-105.648
-77.2081
-47.5062
-16.7163
14.9667
47.3153
79.9968
112.734
145.217
177.114
208.078
237.752
265.784
291.83
315.572
336.701
354.93
370.025
381.781
390.023
394.64
395.57
392.829
386.405
376.356
362.841
346.042
326.193
303.596
278.564
251.444
222.65
192.536
161.495
129.876
98.007
66.1815
34.6853
10.1957
-18.7812
-46.6486
-73.149
-98.1384
-121.505
-143.179
-163.127
-181.334
-197.809
-212.579
-225.675
-237.135
-246.998
-255.299
-262.075
-267.358
-271.178
-273.561
-274.537
-274.048
-272.2
-269.011
-264.488
-258.644
-251.494
-243.044
-233.306
-222.301
-210.041
-196.553
-181.864
-165.999
-149.001
-130.917
-111.796
-91.7081
-70.7355
-48.9685
-26.5414
-3.65412
19.1969
42.777
66.5402
90.2733
113.742
136.742
159.033
180.395
200.629
219.451
236.584
217.858
184.972
151.083
116.607
82.1139
48.189
17.5339
-14.4283
-46.247
-76.9817
-106.254
-133.847
-159.64
-183.57
-205.604
-225.745
-244.004
-260.42
-275.042
-287.923
-299.121
-308.693
-316.694
-323.171
-328.169
-331.724
-333.861
-334.597
-333.948
-331.89
-328.426
-323.549
-317.22
-309.411
-300.066
-289.138
-276.589
-262.354
-246.376
-228.625
-209.057
-187.656
-164.415
-139.343
-112.517
-84.0394
-54.0263
-22.6663
9.69324
42.14
75.8359
109.93
144.01
177.649
210.42
241.952
271.846
299.693
325.144
347.86
367.531
383.891
396.691
405.736
410.873
411.966
408.974
401.894
390.773
375.732
356.957
334.722
309.34
281.186
250.697
218.32
184.499
149.677
114.299
78.8032
43.6022
8.39146
-25.2005
-57.558
-88.4332
-117.63
-145.006
-170.458
-193.936
-215.45
-235.036
-252.741
-268.621
-282.736
-295.123
-305.823
-314.877
-322.281
-328.076
-332.29
-334.869
-335.856
-335.299
-333.068
-329.183
-323.779
-316.833
-308.336
-298.325
-286.801
-273.752
-259.146
-242.946
-225.118
-205.629
-184.458
-161.597
-137.067
-110.903
-83.1768
-53.9906
-23.4812
8.16885
40.7253
73.9429
107.501
141.055
174.221
206.606
237.794
267.379
294.975
320.198
342.694
362.147
378.28
390.861
399.704
404.691
405.753
402.886
396.153
385.652
371.528
353.983
333.24
309.543
283.227
254.619
224.038
191.835
158.37
124.02
89.1442
54.1104
19.2869
-14.9958
-48.4266
-80.7169
-111.621
-140.924
-168.443
-194.01
-217.512
-238.87
-258.031
-274.977
-289.707
-302.244
-312.626
-320.891
-327.123
-331.411
-333.863
-334.606
-333.729
-331.4
-327.735
-322.73
-316.467
-309.055
-300.513
-290.878
-280.169
-268.375
-255.471
-241.41
-226.125
-209.538
-191.557
-172.098
-151.084
-128.458
-104.188
-78.2579
-50.6998
-21.5893
8.95299
40.7444
73.557
107.095
141.009
174.899
208.327
240.816
271.886
301.038
327.789
351.676
372.277
389.22
402.196
410.959
415.337
415.243
410.671
401.697
388.464
371.167
350.109
325.621
298.103
268.03
235.856
202.078
167.207
131.715
96.0674
60.6888
25.976
-7.73224
-40.1548
-71.0629
-100.299
-127.761
-153.403
-177.212
-199.186
-219.362
-237.788
-254.512
-269.582
-283.038
-294.909
-305.241
-314.053
-321.362
-327.194
-331.539
-334.384
-335.753
-335.61
-333.844
-330.415
-325.413
-318.851
-310.624
-300.718
-289.128
-275.823
-260.774
-243.96
-225.366
-204.989
-182.85
-158.993
-133.491
-106.438
-77.953
-48.1929
-17.3305
14.4392
46.896
79.6983
112.571
145.199
177.252
208.38
238.223
266.424
292.639
316.541
337.817
356.179
371.388
383.237
391.546
396.205
397.146
394.385
387.911
377.786
364.167
347.24
327.242
304.48
279.273
251.975
223.004
192.718
161.514
129.746
97.7468
65.811
34.2126
9.53206
-19.5311
-47.4447
-73.9752
-98.9814
-122.354
-144.024
-163.96
-182.15
-198.603
-213.349
-226.42
-237.856
-247.696
-255.976
-262.732
-267.998
-271.802
-274.172
-275.136
-274.64
-272.787
-269.592
-265.065
-259.22
-252.068
-243.617
-233.877
-222.87
-210.608
-197.115
-182.42
-166.546
-149.536
-131.437
-112.295
-92.1815
-71.1759
-49.3658
-26.8845
-3.93869
18.9335
42.5841
66.4297
90.251
113.812
136.911
159.302
180.767
201.103
220.024
237.248
218.287
185.184
151.072
116.371
81.6542
47.5485
16.9545
-15.1635
-47.1091
-77.9296
-107.254
-134.874
-160.675
-184.598
-206.614
-226.728
-244.956
-261.335
-275.92
-288.765
-299.927
-309.466
-317.437
-323.889
-328.866
-332.404
-334.53
-335.263
-334.614
-332.56
-329.107
-324.245
-317.936
-310.152
-300.837
-289.942
-277.426
-263.225
-247.279
-229.56
-210.018
-188.637
-165.405
-140.328
-113.481
-84.965
-54.8884
-23.4425
9.01541
41.5333
75.3799
109.641
143.9
177.732
210.702
242.438
272.537
300.585
326.227
349.121
368.954
385.455
398.372
407.507
412.703
413.822
410.822
403.695
392.489
377.326
358.394
335.972
310.382
282.005
251.289
218.684
184.64
149.606
114.03
78.3485
42.9536
7.72106
-26.0212
-58.4756
-89.4187
-118.659
-146.055
-171.512
-194.974
-216.46
-236.01
-253.677
-269.52
-283.603
-295.962
-306.639
-315.675
-323.066
-328.848
-333.054
-335.631
-336.617
-336.059
-333.821
-329.933
-324.526
-317.578
-309.083
-299.078
-287.569
-274.542
-259.961
-243.788
-225.987
-206.523
-185.37
-162.521
-137.992
-111.814
-84.0627
-54.8327
-24.2586
7.47644
40.1425
73.49
107.201
140.926
174.279
206.864
238.258
268.052
295.853
321.27
343.946
363.562
379.832
392.521
401.44
406.468
407.536
404.641
397.848
387.256
373.015
355.331
334.429
310.561
284.065
255.271
224.502
192.112
158.465
123.937
88.8928
53.7011
18.735
-15.6761
-49.2193
-81.6045
-112.587
-141.95
-169.514
-195.115
-218.633
-239.995
-259.148
-276.077
-290.782
-303.29
-313.637
-321.861
-328.045
-332.279
-334.671
-335.364
-334.437
-332.066
-328.367
-323.33
-317.042
-309.613
-301.061
-291.425
-280.725
-268.951
-256.076
-242.051
-226.811
-210.272
-192.341
-172.93
-151.956
-129.365
-105.116
-79.1907
-51.62
-22.4746
8.12809
40.0084
72.9396
106.626
140.716
174.807
208.458
241.186
272.506
301.908
328.902
353.019
373.828
390.948
404.063
412.923
417.351
417.262
412.647
403.584
390.22
372.757
351.499
326.789
299.032
268.71
236.289
202.27
167.17
131.469
95.6317
60.089
25.2382
-8.57728
-41.08
-72.0401
-101.302
-128.77
-154.401
-178.188
-200.136
-220.28
-238.672
-255.362
-270.403
-283.831
-295.678
-305.989
-314.786
-322.086
-327.912
-332.256
-335.109
-336.488
-336.354
-334.596
-331.179
-326.19
-319.642
-311.433
-301.546
-289.977
-276.695
-261.668
-244.873
-226.294
-205.925
-183.785
-159.917
-134.391
-107.302
-78.7683
-48.9455
-18.0043
13.8602
46.436
79.3705
112.389
145.176
177.4
208.707
238.735
267.121
293.522
317.598
339.035
357.543
372.877
384.828
393.211
397.914
398.868
396.086
389.559
379.35
365.617
348.549
328.387
305.445
280.047
252.555
223.388
192.913
161.532
129.601
97.4605
65.4089
33.7165
8.78255
-20.3582
-48.3173
-74.879
-99.9033
-123.283
-144.948
-164.871
-183.041
-199.47
-214.189
-227.232
-238.642
-248.457
-256.714
-263.449
-268.696
-272.483
-274.838
-275.789
-275.286
-273.426
-270.226
-265.696
-259.847
-252.695
-244.242
-234.501
-223.491
-211.226
-197.728
-183.026
-167.143
-150.12
-132.005
-112.841
-92.6994
-71.658
-49.801
-27.2598
-4.24857
18.643
42.3715
66.3078
90.2255
113.889
137.094
159.596
181.172
201.62
220.649
237.972
218.752
185.413
151.059
116.113
81.1473
46.8309
16.3392
-15.9605
-48.0489
-78.9623
-108.342
-135.991
-161.799
-185.714
-207.71
-227.794
-245.988
-262.328
-276.872
-289.676
-300.8
-310.304
-318.243
-324.667
-329.621
-333.141
-335.255
-335.982
-335.336
-333.285
-329.843
-324.998
-318.712
-310.956
-301.672
-290.812
-278.333
-264.169
-248.259
-230.574
-211.061
-189.702
-166.479
-141.398
-114.53
-85.972
-55.8283
-24.2892
8.27908
40.8705
74.8818
109.323
143.778
177.818
211.005
242.963
273.285
301.55
327.401
350.489
370.498
387.152
400.196
409.428
414.69
415.838
412.828
405.65
394.352
379.056
359.953
337.329
311.511
282.891
251.93
219.075
184.789
149.525
113.735
77.8532
42.259
6.97621
-26.9168
-59.4746
-90.4909
-119.778
-147.195
-172.655
-196.102
-217.556
-237.066
-254.691
-270.494
-284.542
-296.871
-307.522
-316.538
-323.914
-329.685
-333.882
-336.457
-337.443
-336.882
-334.637
-330.746
-325.335
-318.384
-309.891
-299.894
-288.401
-275.396
-260.844
-244.701
-226.93
-207.493
-186.36
-163.523
-138.995
-112.805
-85.0265
-55.7489
-25.1052
6.72232
39.506
72.9944
106.871
140.781
174.339
207.141
238.758
268.781
296.804
322.431
345.304
365.096
381.516
394.323
403.325
408.397
409.472
406.546
399.686
388.996
374.628
356.792
335.719
311.665
284.973
255.977
225.003
192.41
158.564
123.845
88.6173
53.254
18.1337
-16.4168
-50.082
-82.5699
-113.636
-143.066
-170.677
-196.313
-219.85
-241.216
-260.36
-277.27
-291.948
-304.425
-314.733
-322.912
-329.044
-333.22
-335.549
-336.183
-335.203
-332.786
-329.051
-323.98
-317.663
-310.216
-301.653
-292.015
-281.326
-269.573
-256.729
-242.745
-227.552
-211.067
-193.191
-173.832
-152.903
-130.35
-106.123
-80.2051
-52.6215
-23.4393
7.2286
39.2051
72.265
106.112
140.392
174.702
208.594
241.583
273.174
302.849
330.108
354.476
375.51
392.823
406.091
415.056
419.54
419.454
414.793
405.633
392.128
374.481
353.007
328.055
300.038
269.445
236.754
202.474
167.125
131.196
95.1541
59.4337
24.4328
-9.49917
-42.0873
-73.1038
-102.393
-129.867
-155.484
-179.247
-201.166
-221.275
-239.629
-256.284
-271.291
-284.69
-296.511
-306.799
-315.579
-322.87
-328.69
-333.031
-335.893
-337.285
-337.16
-335.41
-332.006
-327.031
-320.498
-312.309
-302.443
-290.898
-277.64
-262.637
-245.864
-227.301
-206.942
-184.801
-160.92
-135.37
-108.24
-79.6552
-49.7648
-18.7386
13.229
45.9348
79.0124
112.188
145.148
177.556
209.059
239.288
267.877
294.479
318.744
340.356
359.022
374.494
386.554
395.018
399.77
400.738
397.934
391.348
381.047
367.191
349.97
329.629
306.491
280.885
253.181
223.801
193.121
161.546
129.439
97.1469
64.9743
33.2057
7.93664
-21.2637
-49.267
-75.8611
-100.904
-124.29
-145.951
-165.859
-184.007
-200.409
-215.099
-228.113
-239.493
-249.281
-257.513
-264.226
-269.452
-273.221
-275.559
-276.496
-275.985
-274.119
-270.913
-266.379
-260.527
-253.373
-244.918
-235.176
-224.165
-211.896
-198.393
-183.684
-167.791
-150.755
-132.621
-113.433
-93.2621
-72.1826
-50.2748
-27.6674
-4.58336
18.3242
42.139
66.1742
90.1965
113.97
137.291
159.913
181.611
202.18
221.327
238.758
219.253
185.658
151.043
115.832
80.5919
46.0237
15.6977
-16.8201
-49.0682
-80.0814
-109.52
-137.199
-163.014
-186.918
-208.891
-228.945
-247.1
-263.397
-277.897
-290.658
-301.739
-311.205
-319.109
-325.503
-330.433
-333.934
-336.035
-336.757
-336.112
-334.066
-330.636
-325.808
-319.547
-311.82
-302.572
-291.749
-279.31
-265.186
-249.315
-231.666
-212.186
-190.851
-167.64
-142.554
-115.663
-87.0617
-56.8473
-25.2077
7.48352
40.1502
74.3406
108.976
143.643
177.908
211.328
243.527
274.089
302.59
328.666
351.964
372.163
388.982
402.163
411.502
416.833
418.013
414.994
407.761
396.364
380.924
361.635
338.791
312.727
283.845
252.617
219.493
184.945
149.434
113.412
77.3171
41.5183
6.15415
-27.8891
-60.557
-91.6509
-120.988
-148.427
-173.889
-197.319
-218.738
-238.204
-255.783
-271.543
-285.553
-297.849
-308.473
-317.466
-324.827
-330.587
-334.774
-337.346
-338.333
-337.768
-335.516
-331.621
-326.206
-319.251
-310.76
-300.772
-289.296
-276.316
-261.794
-245.684
-227.947
-208.539
-187.429
-164.606
-140.079
-113.876
-86.0687
-56.74
-26.0225
5.90591
38.8138
72.4547
106.51
140.62
174.399
207.435
239.295
269.564
297.827
323.683
346.77
366.752
383.333
396.268
405.36
410.48
411.561
408.601
401.669
390.874
376.367
358.367
337.108
312.853
285.95
256.735
225.54
192.729
158.669
123.743
88.317
52.7683
17.482
-17.2188
-51.0154
-83.6139
-114.771
-144.272
-171.934
-197.608
-221.164
-242.534
-261.668
-278.556
-293.206
-305.648
-315.916
-324.045
-330.121
-334.235
-336.496
-337.063
-336.025
-333.56
-329.786
-324.68
-318.332
-310.863
-302.29
-292.65
-281.972
-270.242
-257.43
-243.49
-228.35
-211.923
-194.107
-174.805
-153.925
-131.414
-107.211
-81.3019
-53.7057
-24.4847
6.25308
38.3334
71.5317
105.551
140.036
174.582
208.734
242.007
273.89
303.86
331.407
356.047
377.326
394.847
408.28
417.359
421.903
421.822
417.11
407.846
394.187
376.342
354.632
329.42
301.121
270.235
237.251
202.689
167.071
130.895
94.6331
58.7208
23.559
-10.4995
-43.1786
-74.255
-103.573
-131.051
-156.654
-180.389
-202.276
-222.347
-240.661
-257.275
-272.248
-285.615
-297.408
-307.671
-316.432
-323.712
-329.526
-333.866
-336.737
-338.143
-338.028
-336.287
-332.897
-327.938
-321.421
-313.252
-303.409
-291.889
-278.659
-263.682
-246.932
-228.387
-208.038
-185.897
-162.003
-136.427
-109.255
-80.6144
-50.6512
-19.5342
12.5446
45.3921
78.6224
111.967
145.113
177.721
209.435
239.882
268.691
295.508
319.978
341.78
360.618
376.237
388.417
396.968
401.773
402.755
399.928
393.28
382.88
368.89
351.503
330.969
307.617
281.787
253.854
224.243
193.34
161.556
129.26
96.8046
64.5051
32.6927
6.98011
-22.2479
-50.2941
-76.9221
-101.985
-125.378
-147.032
-166.924
-185.049
-201.422
-216.079
-229.061
-240.41
-250.168
-258.374
-265.062
-270.267
-274.016
-276.335
-277.256
-276.737
-274.865
-271.653
-267.114
-261.26
-254.103
-245.648
-235.903
-224.89
-212.618
-199.109
-184.393
-168.49
-151.439
-133.285
-114.073
-93.8701
-72.75
-50.788
-28.1077
-4.94104
17.9743
41.8857
66.0286
90.1638
114.056
137.502
160.253
182.082
202.784
222.058
239.606
219.79
185.921
151.025
115.528
79.9873
45.1086
15.0453
-17.7443
-50.1694
-81.2887
-110.788
-138.498
-164.319
-188.212
-210.16
-230.178
-248.293
-264.544
-278.996
-291.709
-302.746
-312.17
-320.037
-326.399
-331.302
-334.783
-336.87
-337.585
-336.943
-334.903
-331.484
-326.676
-320.441
-312.746
-303.535
-292.754
-280.358
-266.276
-250.447
-232.838
-213.394
-192.084
-168.887
-143.796
-116.882
-88.235
-57.9466
-26.1993
6.62799
39.3712
73.7539
108.6
143.493
177.999
211.671
244.128
274.949
303.703
330.022
353.546
373.949
390.946
404.275
413.728
419.136
420.35
417.32
410.029
398.525
382.93
363.442
340.361
314.03
284.868
253.35
219.936
185.108
149.33
113.061
76.7388
40.7292
5.25445
-28.9395
-61.7242
-92.9006
-122.291
-149.754
-175.215
-198.625
-220.007
-239.425
-256.953
-272.667
-286.635
-298.896
-309.491
-318.459
-325.804
-331.552
-335.73
-338.299
-339.286
-338.718
-336.459
-332.56
-327.14
-320.179
-311.69
-301.712
-290.253
-277.299
-262.811
-246.738
-229.037
-209.661
-188.576
-165.769
-141.244
-115.029
-87.19
-57.8073
-27.0109
5.02535
38.0648
71.8694
106.116
140.442
174.458
207.747
239.869
270.401
298.923
325.026
348.342
368.53
385.285
398.358
407.546
412.717
413.804
410.808
403.799
392.888
378.234
360.056
338.598
314.126
286.995
257.546
226.114
193.068
158.778
123.629
87.991
52.2431
16.7794
-18.0832
-52.0208
-84.7375
-115.991
-145.569
-173.286
-198.998
-222.575
-243.949
-263.073
-279.937
-294.555
-306.961
-317.184
-325.261
-331.276
-335.323
-337.512
-338.005
-336.905
-334.388
-330.573
-325.428
-319.047
-311.554
-302.969
-293.327
-282.661
-270.955
-258.179
-244.287
-229.204
-212.84
-195.09
-175.847
-155.023
-132.556
-108.381
-82.4826
-54.874
-25.6116
5.1997
37.3919
70.7377
104.941
139.646
174.446
208.879
242.456
274.655
304.943
332.8
357.732
379.275
397.022
410.633
419.835
424.444
424.367
419.599
410.223
396.398
378.339
356.376
330.882
302.279
271.078
237.78
202.914
167.006
130.566
94.0672
57.9485
22.6154
-11.5799
-44.3557
-75.4941
-104.842
-132.324
-157.912
-181.615
-203.466
-223.495
-241.766
-258.338
-273.273
-286.606
-298.368
-308.606
-317.345
-324.612
-330.422
-334.761
-337.641
-339.063
-338.958
-337.226
-333.851
-328.909
-322.408
-314.262
-304.445
-292.952
-279.75
-264.801
-248.078
-229.554
-209.216
-187.074
-163.167
-137.563
-110.346
-81.6466
-51.6056
-20.3921
11.8058
44.8074
78.1992
111.725
145.07
177.893
209.835
240.515
269.563
296.611
321.3
343.308
362.331
378.108
390.416
399.062
403.923
404.922
402.071
395.355
384.849
370.714
353.148
332.405
308.826
282.754
254.572
224.714
193.571
161.561
129.063
96.4318
63.9978
32.1701
5.9187
-23.3101
-51.399
-78.0625
-103.147
-126.546
-148.194
-168.068
-186.166
-202.507
-217.13
-230.077
-241.392
-251.119
-259.296
-265.958
-271.139
-274.867
-277.167
-278.071
-277.543
-275.664
-272.447
-267.903
-262.044
-254.886
-246.429
-236.683
-225.668
-213.392
-199.878
-185.154
-169.24
-152.174
-133.999
-114.76
-94.5235
-73.3611
-51.3412
-28.5811
-5.32128
17.5921
41.6113
65.8709
90.1269
114.147
137.726
160.616
182.587
203.43
222.841
240.516
220.364
186.2
151.003
115.202
79.3347
44.0592
14.4058
-18.7367
-51.3552
-82.586
-112.148
-139.89
-165.716
-189.595
-211.516
-231.497
-249.566
-265.768
-280.168
-292.831
-303.819
-313.198
-321.026
-327.354
-332.228
-335.687
-337.759
-338.468
-337.826
-335.793
-332.388
-327.601
-321.393
-313.733
-304.561
-293.825
-281.476
-267.44
-251.657
-234.09
-214.683
-193.404
-170.22
-145.127
-118.189
-89.493
-59.1275
-27.2658
5.71184
38.5312
73.1204
108.192
143.328
178.092
212.033
244.767
275.865
304.889
331.468
355.235
375.857
393.045
406.532
416.107
421.597
422.849
419.809
412.456
400.838
385.076
365.373
342.037
315.421
285.959
254.129
220.404
185.275
149.214
112.681
76.1169
39.8885
4.27733
-30.0697
-62.9774
-94.2413
-123.687
-151.175
-176.634
-200.023
-221.362
-240.728
-258.202
-273.865
-287.789
-300.013
-310.576
-319.517
-326.844
-332.582
-336.749
-339.315
-340.304
-339.732
-337.465
-333.56
-328.135
-321.169
-312.681
-302.712
-291.273
-278.348
-263.896
-247.863
-230.201
-210.86
-189.802
-167.013
-142.49
-116.263
-88.3915
-58.952
-28.0709
4.07864
37.2574
71.2366
105.688
140.246
174.516
208.075
240.478
271.293
300.09
326.459
350.022
370.431
387.372
400.592
409.884
415.11
416.204
413.168
406.075
395.042
380.228
361.86
340.188
315.484
288.11
258.409
226.724
193.426
158.89
123.504
87.638
51.6773
16.0253
-19.0112
-53.099
-85.9419
-117.299
-146.958
-174.734
-200.485
-224.085
-245.462
-264.575
-281.413
-295.997
-308.363
-318.539
-326.559
-332.51
-336.485
-338.597
-339.009
-337.841
-335.27
-331.41
-326.225
-319.808
-312.29
-303.692
-294.048
-283.395
-271.713
-258.976
-245.136
-230.114
-213.818
-196.138
-176.961
-156.198
-133.777
-109.634
-83.7483
-56.1274
-26.8213
4.06647
36.3795
69.8808
104.28
139.22
174.292
209.026
242.93
275.465
306.096
334.287
359.533
381.359
399.348
413.15
422.485
427.162
427.09
422.262
412.765
398.763
380.475
358.24
332.442
303.513
271.974
238.34
203.147
166.929
130.207
93.4548
57.1149
21.5999
-12.7421
-45.6208
-76.8225
-106.202
-133.686
-159.257
-182.925
-204.736
-224.721
-242.944
-259.471
-274.365
-287.662
-299.393
-309.602
-318.318
-325.57
-331.375
-335.715
-338.604
-340.043
-339.951
-338.228
-334.868
-329.946
-323.462
-315.338
-305.549
-294.086
-280.915
-265.997
-249.302
-230.8
-210.475
-188.333
-164.413
-138.778
-111.515
-82.7523
-52.6288
-21.3127
11.0119
44.1784
77.7417
111.461
145.018
178.073
210.258
241.189
270.491
297.786
322.712
344.94
364.161
380.108
392.553
401.3
406.222
407.24
404.362
397.576
386.955
372.665
354.905
333.94
310.115
283.784
255.335
225.212
193.811
161.56
128.845
96.0267
63.4504
31.5995
4.78607
-24.4481
-52.582
-79.283
-104.389
-127.796
-149.435
-169.29
-187.36
-203.666
-218.252
-231.16
-242.44
-252.133
-260.279
-266.913
-272.069
-275.775
-278.054
-278.94
-278.402
-276.516
-273.293
-268.744
-262.882
-255.72
-247.262
-237.515
-226.497
-214.218
-200.698
-185.966
-170.04
-152.959
-134.762
-115.494
-95.223
-74.0164
-51.9355
-29.0883
-5.72421
17.177
41.3153
65.7006
90.0855
114.242
137.964
161.003
183.125
204.12
223.678
241.488
220.974
186.496
150.979
114.855
78.6379
42.8978
13.752
-19.8042
-52.6288
-83.9753
-113.602
-141.375
-167.205
-191.069
-212.959
-232.899
-250.921
-267.069
-281.414
-294.022
-304.959
-314.291
-322.076
-328.367
-333.211
-336.647
-338.703
-339.404
-338.764
-336.738
-333.347
-328.583
-322.405
-314.78
-305.652
-294.962
-282.663
-268.678
-252.943
-235.422
-216.057
-194.809
-171.642
-146.546
-119.583
-90.8372
-60.391
-28.4095
4.73512
37.6272
72.4388
107.753
143.147
178.186
212.414
245.442
276.837
306.15
333.005
357.032
377.887
395.28
408.937
418.642
424.219
425.512
422.461
415.042
403.302
387.363
367.431
343.821
316.901
287.117
254.952
220.895
185.446
149.082
112.271
75.4498
38.9934
3.22275
-31.2815
-64.3178
-95.6744
-125.179
-152.693
-178.147
-201.511
-222.805
-242.114
-259.528
-275.137
-289.014
-301.198
-311.729
-320.641
-327.947
-333.675
-337.833
-340.394
-341.385
-340.812
-338.536
-334.623
-329.192
-322.22
-313.733
-303.774
-292.355
-279.461
-265.048
-249.058
-231.439
-212.136
-191.108
-168.338
-143.818
-117.58
-89.6745
-60.1753
-29.2044
3.06472
36.3895
70.555
105.226
140.03
174.572
208.419
241.122
272.238
301.33
327.984
351.811
372.455
389.596
402.973
412.375
417.659
418.76
415.681
408.5
397.335
382.35
363.78
341.878
316.927
289.292
259.323
227.368
193.802
159.005
123.367
87.257
51.0694
15.2187
-20.0038
-54.2511
-87.2281
-118.695
-148.44
-176.278
-202.071
-225.695
-247.074
-266.174
-282.984
-297.531
-309.854
-319.98
-327.941
-333.822
-337.721
-339.75
-340.074
-338.834
-336.206
-332.298
-327.07
-320.616
-313.069
-304.457
-294.812
-284.17
-272.515
-259.819
-246.035
-231.08
-214.857
-197.252
-178.147
-157.449
-135.078
-110.971
-85.1005
-57.4666
-28.1155
2.85172
35.2945
68.9589
103.566
138.757
174.118
209.175
243.425
276.322
307.32
335.868
361.449
383.579
401.826
415.833
425.31
430.061
429.993
425.101
415.474
401.282
382.749
360.223
334.1
304.823
272.923
238.931
203.386
166.84
129.816
92.7945
56.2183
20.5107
-13.9882
-46.9757
-78.2422
-107.654
-135.138
-160.69
-184.32
-206.085
-226.023
-244.195
-260.675
-275.526
-288.783
-300.48
-310.66
-319.351
-326.586
-332.386
-336.728
-339.626
-341.085
-341.008
-339.292
-335.949
-331.047
-324.581
-316.482
-306.723
-295.291
-282.153
-267.269
-250.605
-232.127
-211.817
-189.675
-165.742
-140.074
-112.763
-83.9325
-53.7219
-22.2969
10.1632
43.5019
77.2482
111.172
144.958
178.258
210.704
241.902
271.476
299.035
324.213
346.678
366.11
382.237
394.829
403.684
408.672
409.709
406.804
399.942
389.199
374.743
356.777
335.573
311.487
284.877
256.144
225.736
194.06
161.552
128.605
95.5879
62.8597
30.9613
3.59704
-25.6601
-53.8434
-80.5844
-105.714
-129.127
-150.758
-170.59
-188.629
-204.899
-219.444
-232.312
-243.552
-253.21
-261.323
-267.928
-273.058
-276.739
-278.996
-279.863
-279.315
-277.421
-274.192
-269.638
-263.771
-256.607
-248.148
-238.399
-227.379
-215.097
-201.57
-186.83
-170.892
-153.794
-135.575
-116.277
-95.9689
-74.7165
-52.572
-29.6299
-6.14837
16.7272
40.9973
65.5176
90.0392
114.34
138.215
161.412
183.695
204.853
224.568
242.522
221.62
186.808
150.951
114.486
77.9029
41.6542
13.0496
-20.9555
-53.9939
-85.4588
-115.151
-142.955
-168.788
-192.633
-214.491
-234.387
-252.357
-268.447
-282.733
-295.284
-306.165
-315.446
-323.187
-329.438
-334.251
-337.662
-339.702
-340.394
-339.754
-337.736
-334.361
-329.621
-323.475
-315.889
-306.806
-296.167
-283.921
-269.99
-254.306
-236.834
-217.514
-196.3
-173.153
-148.055
-121.068
-92.2689
-61.7386
-29.6325
3.69939
36.6533
71.7087
107.28
142.948
178.278
212.812
246.153
277.862
307.485
334.634
358.936
380.04
397.65
411.488
421.332
427.004
428.34
425.277
417.789
405.92
389.792
369.615
345.713
318.471
288.341
255.818
221.41
185.62
148.936
111.83
74.7358
38.0409
2.09009
-32.5769
-65.7464
-97.2014
-126.766
-154.308
-179.756
-203.091
-224.335
-243.583
-260.932
-276.483
-290.309
-302.453
-312.949
-321.829
-329.114
-334.83
-338.981
-341.538
-342.53
-341.956
-339.672
-335.749
-330.311
-323.332
-314.844
-304.896
-293.498
-280.637
-266.268
-250.325
-232.751
-213.489
-192.495
-169.745
-145.229
-118.981
-91.0399
-61.4779
-30.4141
1.98245
35.4586
69.8236
104.727
139.794
174.624
208.778
241.8
273.235
302.641
329.599
353.708
374.603
391.957
405.503
415.021
420.367
421.474
418.35
411.073
399.768
384.601
365.815
343.669
318.455
290.543
260.289
228.046
194.196
159.123
123.216
86.8473
50.4178
14.3577
-21.0617
-55.4787
-88.5971
-120.18
-150.017
-177.92
-203.756
-227.404
-248.785
-267.87
-284.651
-299.158
-311.436
-321.51
-329.407
-335.213
-339.03
-340.972
-341.201
-339.883
-337.195
-333.236
-327.962
-321.469
-313.892
-305.263
-295.618
-284.988
-273.36
-260.709
-246.984
-232.101
-215.957
-198.433
-179.405
-158.777
-136.46
-112.394
-86.5401
-58.8927
-29.4957
1.55408
34.1343
67.9696
102.797
138.255
173.923
209.324
243.942
277.224
308.613
337.542
363.481
385.934
404.458
418.684
428.312
433.142
433.078
428.117
418.352
403.957
385.163
362.326
335.857
306.21
273.924
239.55
203.63
166.735
129.392
92.0844
55.257
19.3459
-15.32
-48.4224
-79.7555
-109.197
-136.682
-162.212
-185.802
-207.516
-227.402
-245.52
-261.948
-276.753
-289.97
-301.631
-311.779
-320.444
-327.66
-333.454
-337.799
-340.708
-342.188
-342.127
-340.42
-337.092
-332.213
-325.766
-317.692
-307.965
-296.567
-283.464
-268.617
-251.986
-233.536
-213.241
-191.101
-167.153
-141.451
-114.091
-85.1882
-54.8858
-23.3459
9.25741
42.7769
76.7169
110.86
144.887
178.449
211.171
242.655
272.516
300.356
325.805
348.521
368.177
384.497
397.244
406.215
411.273
412.331
409.398
402.456
391.582
376.949
358.764
337.306
312.94
286.034
256.996
226.285
194.317
161.536
128.343
95.1138
62.2221
30.2456
2.35783
-26.9449
-55.1837
-81.9675
-107.12
-130.54
-152.161
-171.97
-189.976
-206.205
-220.707
-233.531
-244.73
-254.35
-262.428
-269.002
-274.104
-277.76
-279.994
-280.839
-280.28
-278.379
-275.144
-270.585
-264.714
-257.547
-249.087
-239.336
-228.313
-216.027
-202.494
-187.746
-171.796
-154.681
-136.437
-117.108
-96.7616
-75.4623
-53.2521
-30.2068
-6.59229
16.2401
40.657
65.3216
89.9876
114.442
138.478
161.843
184.298
205.629
225.512
243.62
222.304
187.136
150.918
114.096
77.1359
40.3646
12.2586
-22.2005
-55.4543
-87.0387
-116.796
-144.631
-170.465
-194.289
-216.111
-235.96
-253.875
-269.904
-284.125
-296.615
-307.437
-316.665
-324.358
-330.568
-335.346
-338.731
-340.754
-341.437
-340.797
-338.787
-335.43
-330.716
-324.603
-317.059
-308.023
-297.438
-285.248
-271.376
-255.747
-238.328
-219.056
-197.879
-174.753
-149.655
-122.643
-93.7901
-63.1715
-30.9367
2.6046
35.6056
70.9293
106.774
142.731
178.369
213.226
246.899
278.943
308.892
336.354
360.947
382.315
400.157
414.187
424.18
429.952
431.334
428.261
420.7
408.694
392.365
371.927
347.715
320.13
289.629
256.727
221.946
185.795
148.774
111.355
73.9732
37.0287
0.878517
-33.9582
-67.2653
-98.8234
-128.451
-156.023
-181.462
-204.763
-225.953
-245.134
-262.414
-277.903
-291.676
-303.776
-314.236
-323.084
-330.343
-336.048
-340.192
-342.745
-343.741
-343.166
-340.871
-336.936
-331.492
-324.506
-316.016
-306.077
-294.703
-281.878
-267.555
-251.662
-234.138
-214.921
-193.962
-171.234
-146.725
-120.466
-92.4885
-62.8616
-31.702
0.829931
34.4628
69.0408
104.189
139.535
174.671
209.15
242.51
274.285
304.025
331.305
355.714
376.875
394.457
408.182
417.825
423.235
424.348
421.175
413.797
402.341
386.981
367.966
345.562
320.067
291.861
261.305
228.757
194.608
159.241
123.052
86.4079
49.7217
13.4407
-22.1865
-56.7823
-90.0503
-121.755
-151.689
-179.661
-205.541
-229.215
-250.598
-269.666
-286.414
-300.879
-313.109
-323.127
-330.958
-336.685
-340.414
-342.26
-342.39
-340.989
-338.236
-334.225
-328.902
-322.369
-314.758
-306.111
-296.465
-285.847
-274.249
-261.645
-247.984
-233.177
-217.118
-199.681
-180.736
-160.183
-137.925
-113.903
-88.0679
-60.4075
-30.9634
0.174715
32.8931
66.9102
101.971
137.711
173.704
209.47
244.478
278.17
309.975
339.31
365.63
388.427
407.246
421.705
431.494
436.407
436.347
431.313
421.401
406.789
387.717
364.55
337.713
307.672
274.975
240.195
203.878
166.614
128.932
91.3221
54.2287
18.1041
-16.7395
-49.9633
-81.3643
-110.835
-138.318
-163.822
-187.37
-209.027
-228.857
-246.917
-263.291
-278.048
-291.222
-302.845
-312.96
-321.597
-328.791
-334.578
-338.929
-341.851
-343.352
-343.31
-341.612
-338.299
-333.441
-327.016
-318.97
-309.275
-297.914
-284.85
-270.041
-253.447
-235.026
-214.749
-192.611
-168.648
-142.911
-115.499
-86.5201
-56.1214
-24.461
8.29239
42.0017
76.1472
110.522
144.805
178.645
211.66
243.447
273.611
301.749
327.486
350.469
370.364
386.888
399.801
408.893
414.025
415.108
412.145
405.119
394.107
379.284
360.866
339.138
314.474
287.253
257.892
226.859
194.58
161.51
128.056
94.6021
61.5341
29.4478
1.06968
-28.3018
-56.6033
-83.4328
-108.611
-132.037
-153.647
-173.43
-191.399
-207.585
-222.04
-234.818
-245.973
-255.552
-263.594
-270.135
-275.208
-278.837
-281.046
-281.869
-281.299
-279.391
-276.149
-271.584
-265.709
-258.539
-250.077
-240.326
-229.3
-217.01
-203.47
-188.714
-172.751
-155.619
-137.35
-117.988
-97.6016
-76.2544
-53.9771
-30.8205
-7.05397
15.7124
40.2948
65.1126
89.9301
114.547
138.754
162.296
184.934
206.448
226.509
244.78
223.025
187.479
150.882
113.685
76.3414
39.0855
11.3205
-23.549
-57.0139
-88.7173
-118.54
-146.404
-172.237
-196.038
-217.82
-237.618
-255.475
-271.437
-285.592
-298.015
-308.776
-317.947
-325.589
-331.756
-336.498
-339.856
-341.86
-342.533
-341.892
-339.892
-336.552
-331.866
-325.789
-318.288
-309.304
-298.775
-286.646
-272.835
-257.265
-239.904
-220.683
-199.546
-176.443
-151.347
-124.311
-95.4025
-64.6917
-32.3232
1.44762
34.4823
70.1
106.233
142.494
178.457
213.656
247.681
280.077
310.373
338.165
363.067
384.714
402.8
417.034
427.185
433.064
434.497
431.414
423.775
411.624
395.082
374.367
349.828
321.878
290.982
257.678
222.502
185.97
148.595
110.844
73.16
35.9539
-0.412585
-35.4268
-68.8765
-100.541
-130.235
-157.838
-183.267
-206.529
-227.659
-246.767
-263.974
-279.396
-293.113
-305.167
-315.59
-324.403
-331.635
-337.326
-341.466
-344.017
-345.016
-344.44
-342.134
-338.188
-332.734
-325.739
-317.247
-307.318
-295.969
-283.183
-268.909
-253.07
-235.6
-216.431
-195.511
-172.807
-148.306
-122.036
-94.0214
-64.3286
-33.0696
-0.394542
33.4004
68.2052
103.612
139.252
174.712
209.535
243.252
275.386
305.482
333.102
357.828
379.273
397.097
411.011
420.786
426.265
427.383
424.158
416.672
405.057
389.492
370.233
347.555
321.763
293.246
262.372
229.501
195.036
159.361
122.871
85.9381
48.98
12.4664
-23.38
-58.163
-91.5898
-123.422
-153.458
-181.502
-207.429
-231.126
-252.512
-271.561
-288.274
-302.693
-314.873
-324.833
-332.595
-338.24
-341.871
-343.614
-343.64
-342.151
-339.33
-335.262
-329.89
-323.315
-315.666
-306.999
-297.351
-286.747
-275.181
-262.627
-249.032
-234.308
-218.34
-200.996
-182.14
-161.666
-139.473
-115.499
-89.6846
-62.013
-32.5202
-1.28873
31.5678
65.7784
101.086
137.124
173.462
209.612
245.033
279.16
311.405
341.17
367.894
391.057
410.191
424.898
434.858
439.858
439.802
434.689
424.621
409.78
390.413
366.896
339.67
309.209
276.077
240.865
204.128
166.473
128.435
90.5057
53.1303
16.7835
-18.2484
-51.6002
-83.0705
-112.568
-140.046
-165.523
-189.025
-210.621
-230.389
-248.388
-264.704
-279.409
-292.539
-304.123
-314.202
-322.809
-329.981
-335.757
-340.115
-343.053
-344.577
-344.557
-342.868
-339.567
-334.732
-328.332
-320.314
-310.654
-299.332
-286.308
-271.543
-254.988
-236.598
-216.341
-194.207
-170.227
-144.456
-116.987
-87.9293
-57.4299
-25.6442
7.26643
41.1743
75.5384
110.157
144.711
178.844
212.169
244.275
274.76
303.215
329.258
352.522
372.669
389.411
402.5
411.72
416.932
418.04
415.046
407.931
396.773
381.751
363.084
341.07
316.091
288.535
258.831
227.457
194.849
161.473
127.743
94.0503
60.7917
28.5672
-0.268748
-29.7307
-58.103
-84.9813
-110.185
-133.617
-155.214
-174.97
-192.899
-209.038
-223.444
-236.173
-247.281
-256.818
-264.821
-271.328
-276.369
-279.971
-282.153
-282.951
-282.371
-280.456
-277.207
-272.636
-266.756
-259.583
-251.121
-241.367
-230.339
-218.045
-204.499
-189.734
-173.759
-156.608
-138.313
-118.917
-98.4893
-77.0938
-54.7483
-31.4722
-7.53046
15.1396
39.911
64.8905
89.8663
114.653
139.041
162.77
185.601
207.311
227.561
246.005
223.783
187.838
150.839
113.253
75.5206
37.8454
10.2069
-25.0088
-58.6762
-90.4969
-120.383
-148.277
-174.105
-197.88
-219.619
-239.363
-257.157
-273.049
-287.131
-299.486
-310.181
-319.292
-326.881
-333.001
-337.706
-341.035
-343.019
-343.682
-343.039
-341.049
-337.729
-333.072
-327.033
-319.578
-310.648
-300.18
-288.114
-274.368
-258.861
-241.561
-222.396
-201.303
-178.225
-153.131
-126.072
-97.1079
-66.3018
-33.7928
0.223935
33.2819
69.2205
105.656
142.235
178.541
214.099
248.496
281.266
311.926
340.069
365.296
387.238
405.582
420.031
430.349
436.341
437.83
434.736
427.017
414.712
397.945
376.938
352.053
323.713
292.4
258.671
223.076
186.144
148.397
110.295
72.2946
34.8127
-1.78283
-36.985
-70.582
-102.356
-132.12
-159.753
-185.173
-208.39
-229.455
-248.482
-265.61
-280.963
-294.62
-306.627
-317.01
-325.787
-332.992
-338.666
-342.802
-345.354
-346.358
-345.778
-343.46
-339.503
-334.039
-327.034
-318.537
-308.619
-297.296
-284.551
-270.33
-254.55
-237.138
-218.02
-197.141
-174.463
-149.975
-123.693
-95.6406
-65.8807
-34.5198
-1.69266
32.27
67.315
102.994
138.943
174.744
209.931
244.025
276.539
307.01
334.99
360.052
381.797
399.877
413.993
423.908
429.459
430.582
427.301
419.7
407.915
392.133
372.617
349.649
323.544
294.7
263.487
230.278
195.48
159.48
122.674
85.4367
48.1913
11.4335
-24.6442
-59.6226
-93.2162
-125.181
-155.325
-183.446
-209.419
-233.141
-254.528
-273.557
-290.231
-304.601
-316.729
-326.628
-334.319
-339.877
-343.405
-345.034
-344.951
-343.368
-340.477
-336.349
-330.925
-324.306
-316.617
-307.927
-298.277
-287.687
-276.155
-263.653
-250.129
-235.493
-219.624
-202.378
-183.618
-163.228
-141.105
-117.183
-91.3914
-63.7105
-34.1685
-2.8412
30.1578
64.5723
100.14
136.492
173.191
209.745
245.604
280.193
312.901
343.123
370.276
393.827
413.293
428.263
438.405
443.498
443.445
438.25
428.014
412.931
393.252
369.365
341.726
310.818
277.228
241.559
204.379
166.312
127.899
89.6335
51.9591
15.3822
-19.8493
-53.3346
-84.8765
-114.398
-141.868
-167.313
-190.767
-212.298
-231.997
-249.931
-266.186
-280.836
-293.92
-305.464
-315.505
-324.081
-331.229
-336.992
-341.358
-344.315
-345.864
-345.867
-344.187
-340.898
-336.087
-329.714
-321.725
-312.102
-300.821
-287.841
-273.121
-256.608
-238.254
-218.018
-195.89
-171.893
-146.087
-118.557
-89.4176
-58.8129
-26.8971
6.17559
40.2957
74.8895
109.765
144.603
179.046
212.697
245.139
275.963
304.755
331.119
354.681
375.095
392.067
405.342
414.699
419.994
421.129
418.104
410.895
399.582
384.349
365.42
343.102
317.789
289.878
259.811
228.077
195.123
161.424
127.402
93.4557
59.989
27.6065
-1.65966
-31.2319
-59.6837
-86.614
-111.845
-135.282
-156.866
-176.59
-194.477
-210.566
-224.919
-237.595
-248.654
-258.146
-266.108
-272.579
-277.589
-281.161
-283.316
-284.086
-283.496
-281.574
-278.317
-273.74
-267.856
-260.681
-252.217
-242.462
-231.431
-219.133
-205.58
-190.807
-174.818
-157.65
-139.327
-119.896
-99.4251
-77.9813
-55.568
-32.1632
-8.02566
14.5238
39.5064
64.6553
89.7955
114.762
139.339
163.266
186.3
208.216
228.666
247.293
224.579
188.211
150.79
112.798
74.6759
36.6247
8.93242
-26.5853
-60.4448
-92.3798
-122.328
-150.249
-176.071
-199.816
-221.509
-241.195
-258.922
-274.739
-288.744
-301.025
-311.652
-320.699
-328.232
-334.304
-338.969
-342.268
-344.231
-344.883
-344.237
-342.259
-338.96
-334.333
-328.334
-320.927
-312.055
-301.65
-289.652
-275.976
-260.535
-243.299
-224.195
-203.15
-180.1
-155.009
-127.93
-98.9083
-68.004
-35.348
-1.07103
32.004
68.291
105.042
141.954
178.618
214.556
249.344
282.508
313.552
342.063
367.634
389.887
408.503
423.178
433.673
439.786
441.333
438.231
430.428
417.962
400.957
379.64
354.391
325.636
293.881
259.704
223.668
186.318
148.175
109.707
71.3744
33.6029
-3.23335
-38.6351
-72.3842
-104.27
-134.108
-161.772
-187.181
-210.348
-231.339
-250.281
-267.322
-282.602
-296.197
-308.155
-318.496
-327.236
-334.411
-340.068
-344.2
-346.756
-347.765
-347.181
-344.851
-340.883
-335.405
-328.389
-319.885
-309.978
-298.683
-285.982
-271.818
-256.1
-238.751
-219.688
-198.854
-176.204
-151.73
-125.436
-97.3479
-67.5207
-36.0546
-3.08375
31.0875
66.3685
102.332
138.607
174.766
210.337
244.828
277.743
308.61
336.967
362.384
384.447
402.799
417.129
427.191
432.817
433.945
430.604
422.882
410.917
394.905
375.119
351.845
325.41
296.221
264.651
231.085
195.939
159.597
122.46
84.9031
47.3542
10.3405
-25.9813
-61.1638
-94.9302
-127.034
-157.29
-185.493
-211.515
-235.26
-256.647
-275.654
-292.286
-306.604
-318.676
-328.513
-336.13
-341.598
-345.014
-346.521
-346.321
-344.64
-341.674
-337.486
-332.008
-325.341
-317.609
-308.895
-299.242
-288.668
-277.17
-264.723
-251.274
-236.732
-220.968
-203.827
-185.171
-164.868
-142.823
-118.955
-93.1896
-65.5015
-35.9112
-4.48589
28.6609
63.2896
99.1297
135.811
172.891
209.869
246.191
281.267
314.465
345.168
372.775
396.736
416.555
431.804
442.138
447.328
447.279
441.995
431.584
416.243
396.236
371.958
343.88
312.5
278.429
242.273
204.628
166.128
127.322
88.7036
50.7109
13.8991
-21.5452
-55.1695
-86.7846
-116.327
-143.786
-169.193
-192.596
-214.058
-233.683
-251.546
-267.737
-282.33
-295.365
-306.867
-316.869
-325.411
-332.534
-338.283
-342.657
-345.638
-347.212
-347.24
-345.569
-342.294
-337.507
-331.16
-323.203
-313.618
-302.381
-289.448
-274.776
-258.309
-239.994
-219.782
-197.659
-173.646
-147.803
-120.21
-90.9866
-60.2717
-28.2214
5.01665
39.3664
74.1989
109.344
144.481
179.247
213.241
246.038
277.22
306.369
333.069
356.946
377.642
394.856
408.328
417.83
423.214
424.378
421.319
414.013
402.537
387.08
367.874
345.235
319.569
291.282
260.834
228.72
195.4
161.36
127.031
92.8144
59.1225
26.5681
-3.10564
-32.8068
-61.3465
-88.332
-113.59
-137.033
-158.6
-178.292
-196.134
-212.169
-226.464
-239.085
-250.092
-259.536
-267.456
-273.889
-278.866
-282.408
-284.533
-285.272
-284.674
-282.745
-279.481
-274.898
-269.008
-261.831
-253.366
-243.61
-232.575
-220.273
-206.714
-191.933
-175.93
-158.745
-140.393
-120.924
-100.409
-78.9178
-56.4385
-32.8961
-8.55065
13.8753
39.0823
64.4071
89.7172
114.872
139.648
163.782
187.031
209.165
229.827
248.647
225.414
188.599
150.733
112.32
73.8079
35.4101
7.50406
-28.2825
-62.323
-94.3684
-124.377
-152.323
-178.135
-201.847
-223.49
-243.113
-260.77
-276.506
-290.431
-302.635
-313.188
-322.169
-329.643
-335.664
-340.287
-343.554
-345.496
-346.136
-345.486
-343.52
-340.244
-335.649
-329.692
-322.336
-313.524
-303.188
-291.261
-277.658
-262.286
-245.12
-226.081
-205.089
-182.069
-156.983
-129.885
-100.806
-69.8004
-36.9945
-2.44655
30.6542
67.3119
104.389
141.648
178.687
215.024
250.224
283.803
315.251
344.149
370.082
392.661
411.563
426.478
437.158
443.399
445.009
441.898
434.009
421.374
404.118
382.478
356.84
327.646
295.425
260.776
224.276
186.488
147.928
109.077
70.3969
32.3216
-4.76591
-40.3777
-74.2857
-106.287
-136.199
-163.895
-189.294
-212.404
-233.312
-252.161
-269.11
-284.312
-297.843
-309.75
-320.048
-328.748
-335.894
-341.531
-345.661
-348.223
-349.239
-348.649
-346.307
-342.327
-336.833
-329.802
-321.292
-311.394
-300.129
-287.475
-273.373
-257.722
-240.44
-221.437
-200.651
-178.033
-153.573
-127.269
-99.1454
-69.2508
-37.6748
-4.5547
29.8358
65.3638
101.625
138.241
174.776
210.752
245.66
278.998
310.281
339.036
364.827
387.226
405.864
420.42
430.637
436.342
437.475
434.071
426.219
414.064
397.81
377.738
354.143
327.361
297.808
265.863
231.923
196.412
159.712
122.228
84.3361
46.4672
9.1853
-27.393
-62.7886
-96.7335
-128.984
-159.356
-187.645
-213.718
-237.487
-258.871
-277.853
-294.439
-308.701
-320.716
-330.489
-338.029
-343.402
-346.7
-348.076
-347.749
-345.964
-342.921
-338.672
-333.138
-326.419
-318.643
-309.903
-300.246
-289.688
-278.226
-265.836
-252.466
-238.026
-222.373
-205.345
-186.797
-166.588
-144.627
-120.817
-95.0814
-67.3888
-37.7508
-6.22608
27.0757
61.9275
98.0531
135.078
172.557
209.981
246.793
282.38
316.096
347.307
375.392
399.786
419.978
435.522
446.058
451.351
451.304
445.928
435.331
419.719
399.365
374.675
346.132
314.256
279.677
243.007
204.872
165.918
126.701
87.7142
49.3829
12.3327
-23.3399
-57.1076
-88.7969
-118.357
-145.802
-171.164
-194.512
-215.903
-235.448
-253.233
-269.356
-283.891
-296.875
-308.333
-318.292
-326.8
-333.896
-339.629
-344.012
-347.02
-348.623
-348.677
-347.015
-343.753
-338.99
-332.67
-324.748
-315.203
-304.012
-291.128
-276.508
-260.091
-241.818
-221.632
-199.516
-175.487
-149.606
-121.947
-92.6372
-61.8089
-29.6192
3.78765
38.3859
73.4656
108.892
144.341
179.447
213.801
246.972
278.532
308.055
335.11
359.317
380.311
397.78
411.459
421.115
426.592
427.788
424.695
417.285
405.638
389.945
370.447
347.47
321.43
292.748
261.896
229.384
195.678
161.28
126.626
92.1242
58.1905
25.4521
-4.61
-34.4568
-63.0926
-90.1367
-115.423
-138.87
-160.42
-180.076
-197.868
-213.845
-228.081
-240.642
-251.595
-260.99
-268.865
-275.258
-280.2
-283.712
-285.806
-286.513
-285.906
-283.97
-280.698
-276.108
-270.212
-263.034
-254.568
-244.81
-233.773
-221.466
-207.9
-193.112
-177.095
-159.892
-141.51
-122.003
-101.442
-79.9043
-57.3623
-33.6737
-9.12831
13.2163
38.6406
64.1459
89.6303
114.982
139.967
164.319
187.793
210.157
231.042
250.065
226.288
189
150.667
111.816
72.9154
34.1953
5.92245
-30.1033
-64.3137
-96.4648
-126.53
-154.5
-180.298
-203.974
-225.562
-245.119
-262.702
-278.352
-292.191
-304.313
-314.79
-323.701
-331.113
-337.081
-341.66
-344.894
-346.813
-347.441
-346.787
-344.833
-341.581
-337.02
-331.107
-323.804
-315.056
-304.792
-292.94
-279.414
-264.116
-247.023
-228.055
-207.121
-184.133
-159.053
-131.939
-102.802
-71.6934
-38.7388
-3.93075
29.2573
66.2846
103.697
141.315
178.746
215.503
251.137
285.149
317.023
346.327
372.64
395.562
414.764
429.93
440.806
447.182
448.859
445.742
437.763
424.951
407.432
385.452
359.402
329.743
297.031
261.886
224.901
186.65
147.655
108.404
69.3597
30.9661
-6.38325
-42.214
-76.289
-108.408
-138.398
-166.123
-191.511
-214.561
-235.377
-254.123
-270.975
-286.094
-299.557
-311.412
-321.666
-330.324
-337.439
-343.055
-347.182
-349.755
-350.78
-350.182
-347.828
-343.837
-338.324
-331.275
-322.758
-312.869
-301.633
-289.03
-274.994
-259.416
-242.206
-223.265
-202.531
-179.949
-155.504
-129.193
-101.035
-71.0712
-39.3816
-6.10605
28.511
64.2978
100.87
137.841
174.772
211.173
246.521
280.304
312.022
341.196
367.379
390.132
409.073
423.868
434.249
440.035
441.173
437.703
429.714
417.358
400.848
380.475
356.543
329.398
299.46
267.121
232.792
196.897
159.823
121.977
83.7348
45.5288
7.96605
-28.8812
-64.4986
-98.6278
-131.032
-161.522
-189.902
-216.029
-239.823
-261.202
-280.153
-296.691
-310.893
-322.848
-332.555
-340.018
-345.291
-348.463
-349.698
-349.234
-347.341
-344.219
-339.908
-334.316
-327.54
-319.719
-310.949
-301.287
-290.746
-279.322
-266.99
-253.704
-239.372
-223.839
-206.932
-188.497
-168.391
-146.516
-122.77
-97.0699
-69.3751
-39.6896
-8.06381
25.4
60.4832
96.907
134.29
172.186
210.079
247.407
283.53
317.792
349.538
378.128
402.979
423.563
439.419
450.169
455.569
455.525
450.05
439.258
423.361
402.641
377.515
348.482
316.085
280.969
243.759
205.11
165.68
126.032
86.6636
47.9759
10.6779
-25.2371
-59.1518
-90.9146
-120.491
-147.916
-173.228
-196.515
-217.831
-237.29
-254.992
-271.043
-285.517
-298.448
-309.861
-319.775
-328.245
-335.315
-341.03
-345.421
-348.461
-350.096
-350.176
-348.523
-345.276
-340.537
-334.244
-326.358
-316.857
-305.715
-292.883
-278.318
-261.954
-243.727
-223.571
-201.461
-177.419
-151.495
-123.771
-94.3707
-63.426
-31.0913
2.4859
37.3537
72.6878
108.406
144.182
179.643
214.377
247.94
279.899
309.812
337.241
361.796
383.103
400.841
414.737
424.554
430.13
431.359
428.231
420.714
408.887
392.946
373.14
349.806
323.373
294.273
263.003
230.068
195.956
161.18
126.185
91.3834
57.1911
24.2597
-6.17714
-36.1839
-64.9234
-92.0294
-117.345
-140.795
-162.325
-181.942
-199.681
-215.597
-229.768
-242.267
-253.162
-262.505
-270.334
-276.686
-281.592
-285.072
-287.133
-287.807
-287.191
-285.249
-281.968
-277.37
-271.469
-264.289
-255.824
-246.064
-235.023
-222.713
-209.139
-194.345
-178.312
-161.094
-142.679
-123.132
-102.523
-80.9417
-58.3431
-34.4978
-9.74893
12.5358
38.1828
63.8718
89.5338
115.092
140.296
164.874
188.585
211.192
232.312
251.549
227.203
189.414
150.59
111.285
71.9961
32.9798
4.18219
-32.0497
-66.4194
-98.6713
-128.79
-156.781
-182.562
-206.196
-227.727
-247.214
-264.718
-280.277
-294.024
-306.06
-316.457
-325.296
-332.642
-338.554
-343.088
-346.286
-348.182
-348.797
-348.14
-346.198
-342.97
-338.444
-332.579
-325.331
-316.649
-306.463
-294.691
-281.246
-266.024
-249.008
-230.116
-209.246
-186.293
-161.221
-134.093
-104.899
-73.6864
-40.588
-5.57484
27.8615
65.2098
102.963
140.953
178.794
215.991
252.081
286.546
318.866
348.598
375.308
398.59
418.106
433.536
444.619
451.136
452.886
449.762
441.691
428.694
410.901
388.561
362.075
331.928
298.698
263.031
225.541
186.803
147.353
107.686
68.2617
29.5331
-8.08847
-44.1457
-78.3961
-110.636
-140.707
-168.458
-193.833
-216.82
-237.534
-256.167
-272.913
-287.947
-301.34
-313.141
-323.35
-331.963
-339.047
-344.642
-348.764
-351.352
-352.388
-351.779
-349.415
-345.412
-339.876
-332.807
-324.28
-314.4
-303.195
-290.646
-276.681
-261.181
-244.048
-225.175
-204.497
-181.954
-157.524
-131.208
-103.019
-72.9824
-41.177
-7.73903
27.11
63.1669
100.062
137.407
174.753
211.6
247.41
281.66
313.833
343.448
370.043
393.169
412.428
427.476
438.027
443.899
445.04
441.499
433.367
420.797
404.019
383.331
359.045
331.519
301.176
268.426
233.69
197.392
159.928
121.706
83.0979
44.5363
6.68102
-30.448
-66.2956
-100.615
-133.179
-163.792
-192.265
-218.449
-242.267
-263.642
-282.558
-299.042
-313.18
-325.073
-334.713
-342.095
-347.264
-350.303
-351.388
-350.775
-348.769
-345.566
-341.194
-335.541
-328.706
-320.834
-312.032
-302.365
-291.844
-280.457
-268.185
-254.988
-240.772
-225.366
-208.587
-190.271
-170.275
-148.492
-124.815
-99.1572
-71.4626
-41.729
-10.0006
23.6309
58.9544
95.6875
133.443
171.776
210.163
248.03
284.716
319.555
351.863
380.983
406.316
427.315
443.499
454.472
459.985
459.943
454.364
443.367
427.17
406.066
380.478
350.93
317.987
282.304
244.527
205.341
165.41
125.314
85.5489
46.5197
8.89603
-27.2395
-61.3054
-93.1392
-122.73
-150.128
-175.386
-198.606
-219.843
-239.212
-256.825
-272.798
-287.208
-300.086
-311.452
-321.319
-329.748
-336.789
-342.486
-346.886
-349.96
-351.631
-351.74
-350.093
-346.864
-342.149
-335.883
-328.034
-318.579
-307.488
-294.71
-280.205
-263.9
-245.722
-225.597
-203.497
-179.441
-153.473
-125.682
-96.1885
-65.1235
-32.6389
1.10856
36.2698
71.8623
107.883
144
179.835
214.968
248.941
281.319
311.64
339.462
364.383
386.018
404.038
418.163
428.149
433.831
435.096
431.931
424.303
412.287
396.085
375.955
352.245
325.397
295.861
264.143
230.769
196.232
161.059
125.706
90.5901
56.1215
22.9926
-7.81188
-37.99
-66.8406
-94.0115
-119.356
-142.807
-164.317
-183.891
-201.574
-217.423
-231.526
-243.96
-254.794
-264.083
-271.863
-278.172
-283.042
-286.488
-288.516
-289.155
-288.528
-286.581
-283.291
-278.685
-272.778
-265.596
-257.132
-247.37
-236.325
-224.013
-210.431
-195.63
-179.583
-162.35
-143.9
-124.312
-103.653
-82.0307
-59.3851
-35.3711
-10.4092
11.8304
37.7104
63.5847
89.4265
115.202
140.634
165.449
189.408
212.27
233.637
253.099
228.159
189.839
150.499
110.722
71.0464
31.7696
2.27153
-34.123
-68.6427
-100.99
-131.158
-159.17
-184.927
-208.517
-229.984
-249.397
-266.819
-282.28
-295.93
-307.877
-318.19
-326.952
-334.231
-340.084
-344.57
-347.732
-349.602
-350.204
-349.544
-347.615
-344.412
-339.923
-334.107
-326.916
-318.305
-308.201
-296.512
-283.152
-268.01
-251.076
-232.267
-211.466
-188.551
-163.489
-136.348
-107.096
-75.7822
-42.5465
-7.37947
26.4631
64.0866
102.184
140.56
178.828
216.486
253.054
287.995
320.782
350.96
378.088
401.746
421.591
437.298
448.597
455.265
457.091
453.963
445.797
432.607
414.526
391.807
364.863
334.201
300.426
264.214
226.192
186.944
147.022
106.921
67.1015
28.0203
-9.88459
-46.1762
-80.608
-112.975
-143.126
-170.903
-196.261
-219.182
-239.786
-258.293
-274.925
-289.869
-303.191
-314.937
-325.099
-333.665
-340.714
-346.29
-350.408
-353.014
-354.063
-353.439
-351.069
-347.053
-341.49
-334.398
-325.859
-315.987
-304.815
-292.323
-278.435
-263.019
-245.967
-227.166
-206.548
-184.048
-159.634
-133.319
-105.098
-74.9862
-43.0628
-9.45644
25.6286
61.9669
99.1997
136.935
174.715
212.03
248.327
283.062
315.713
345.79
372.819
396.335
415.93
431.244
441.975
447.937
449.079
445.464
437.18
424.388
407.326
386.307
361.651
333.725
302.957
269.777
234.617
197.897
160.03
121.414
82.4252
43.4887
5.32887
-32.0954
-68.1817
-102.697
-135.425
-166.167
-194.735
-220.979
-244.822
-266.19
-285.068
-301.493
-315.562
-327.392
-336.964
-344.263
-349.322
-352.22
-353.144
-352.374
-350.248
-346.962
-342.526
-336.814
-329.917
-321.987
-313.152
-303.482
-292.978
-281.628
-269.419
-256.317
-242.224
-226.955
-210.31
-192.121
-172.243
-150.555
-126.955
-101.345
-73.6526
-43.8717
-12.0402
21.7646
57.3369
94.3889
132.533
171.323
210.229
248.657
285.937
321.383
354.281
383.958
409.798
431.233
447.763
458.972
464.602
464.56
458.872
447.66
431.148
409.638
383.566
353.479
319.961
283.681
245.31
205.565
165.106
124.543
84.3669
44.9829
7.01245
-29.3506
-63.5705
-95.4745
-125.076
-152.441
-177.639
-200.782
-221.937
-241.212
-258.73
-274.621
-288.964
-301.787
-313.105
-322.923
-331.308
-338.317
-343.996
-348.406
-351.518
-353.229
-353.369
-351.725
-348.515
-343.824
-337.587
-329.776
-320.37
-309.331
-296.612
-282.171
-265.928
-247.804
-227.714
-205.625
-181.554
-155.541
-127.683
-98.0915
-66.9019
-34.2641
-0.345141
35.1322
70.9852
107.322
143.796
180.023
215.571
249.977
282.791
313.54
341.775
367.079
389.058
407.373
421.739
431.903
437.693
438.996
435.796
428.051
415.838
399.362
378.891
354.785
327.503
297.507
265.339
231.489
196.502
160.915
125.188
89.7427
54.9853
21.6453
-9.51862
-39.8773
-68.8463
-96.0847
-121.457
-144.91
-166.395
-185.924
-203.546
-219.325
-233.356
-245.719
-256.49
-265.723
-273.452
-279.716
-284.549
-287.962
-289.954
-290.555
-289.919
-287.967
-284.667
-280.053
-274.139
-266.956
-258.493
-248.73
-237.681
-225.368
-211.777
-196.97
-180.906
-163.661
-145.175
-125.543
-104.832
-83.1717
-60.4932
-36.2958
-11.1131
11.1037
37.2248
63.2846
89.3071
115.309
140.981
166.041
190.261
213.392
235.019
254.716
229.158
190.275
150.392
110.123
70.061
30.5765
0.172464
-36.3226
-70.9858
-103.423
-133.635
-161.667
-187.394
-210.935
-232.335
-251.669
-269.005
-284.361
-297.91
-309.762
-319.987
-328.669
-335.877
-341.67
-346.105
-349.229
-351.074
-351.662
-350.997
-349.084
-345.907
-341.455
-335.691
-328.56
-320.022
-310.005
-298.405
-285.134
-270.075
-253.226
-234.507
-213.781
-190.908
-165.858
-138.709
-109.396
-77.9817
-44.6165
-9.35369
25.0657
62.9109
101.359
140.133
178.846
216.988
254.056
289.493
322.769
353.416
380.98
405.032
425.22
441.215
452.743
459.568
461.476
458.346
450.083
436.692
418.309
395.19
367.765
336.56
302.213
265.43
226.848
187.069
146.656
106.105
65.8748
26.4243
-11.7763
-48.3088
-82.9272
-115.427
-145.658
-173.461
-198.797
-221.648
-242.133
-260.502
-277.01
-291.86
-305.11
-316.799
-326.915
-335.429
-342.441
-347.997
-352.113
-354.741
-355.805
-355.164
-352.792
-348.757
-343.166
-336.048
-327.493
-317.629
-306.49
-294.06
-280.254
-264.93
-247.964
-229.238
-208.686
-186.232
-161.836
-135.524
-107.272
-77.0848
-45.041
-11.2622
24.0635
60.6969
98.2817
136.425
174.66
212.465
249.271
284.514
317.665
348.226
375.709
399.634
419.581
435.175
446.096
452.149
453.289
449.595
441.155
428.127
410.767
389.401
364.36
336.012
304.8
271.17
235.57
198.408
160.124
121.097
81.7142
42.3921
3.89814
-33.8265
-70.1589
-104.877
-137.773
-168.65
-197.316
-223.619
-247.488
-268.849
-287.685
-304.044
-318.04
-329.804
-339.308
-346.523
-351.467
-354.216
-354.965
-354.03
-351.777
-348.403
-343.904
-338.136
-331.172
-323.176
-314.308
-304.635
-294.147
-282.835
-270.692
-257.688
-243.728
-228.603
-212.101
-194.049
-174.292
-152.707
-129.192
-103.635
-75.9465
-46.1202
-14.1844
19.7992
55.6275
93.0088
131.561
170.827
210.276
249.29
287.192
323.274
356.793
387.053
413.425
435.321
452.215
463.671
469.424
469.381
463.578
452.14
435.298
413.361
386.78
356.126
322.006
285.099
246.105
205.775
164.765
123.715
83.1126
43.3586
5.02783
-31.5765
-65.9511
-97.9226
-127.528
-154.854
-179.991
-203.048
-224.115
-243.288
-260.707
-276.512
-290.787
-303.551
-314.82
-324.587
-332.923
-339.898
-345.558
-349.98
-353.134
-354.888
-355.065
-353.421
-350.228
-345.562
-339.354
-331.583
-322.228
-311.246
-298.588
-284.215
-268.038
-249.973
-229.921
-207.847
-183.758
-157.704
-129.773
-100.081
-68.7629
-35.9694
-1.87039
33.9299
70.0529
106.719
143.567
180.203
216.185
251.043
284.311
315.51
344.18
369.884
392.223
410.847
425.464
435.816
441.724
443.069
439.831
431.965
419.544
402.78
381.951
357.43
329.693
299.218
266.568
232.219
196.766
160.744
124.628
88.8403
53.7854
20.2109
-11.3007
-41.8488
-70.9425
-98.2507
-123.651
-147.103
-168.562
-188.042
-205.598
-221.301
-235.255
-247.545
-258.25
-267.424
-275.101
-281.319
-286.112
-289.492
-291.448
-292.006
-291.363
-289.408
-286.097
-281.473
-275.551
-268.368
-259.907
-250.143
-239.09
-226.777
-213.176
-198.364
-182.281
-165.03
-146.502
-126.825
-106.058
-84.365
-61.6733
-37.2735
-11.8627
10.3571
36.7278
62.9714
89.1735
115.415
141.335
166.651
191.142
214.557
236.457
256.401
230.203
190.72
150.267
109.484
69.0325
29.3858
-2.10676
-38.646
-73.4513
-105.971
-136.223
-164.275
-189.965
-213.451
-234.779
-254.03
-271.278
-286.521
-299.962
-311.716
-321.85
-330.448
-337.582
-343.311
-347.694
-350.778
-352.596
-353.171
-352.499
-350.603
-347.453
-343.041
-337.331
-330.263
-321.801
-311.876
-300.368
-287.192
-272.218
-255.459
-236.837
-216.194
-193.365
-168.328
-141.177
-111.802
-80.2846
-46.7984
-11.4445
23.611
61.6754
100.484
139.669
178.845
217.494
255.085
291.041
324.828
355.962
383.983
408.447
428.993
445.292
457.057
464.049
466.044
462.915
454.551
440.952
422.252
398.716
370.783
339.007
304.064
266.681
227.51
187.179
146.257
105.242
64.5802
24.7428
-13.7658
-50.5437
-85.3566
-117.993
-148.305
-176.135
-201.443
-224.219
-244.574
-262.794
-279.17
-293.919
-307.095
-318.727
-328.797
-337.257
-344.225
-349.763
-353.881
-356.532
-357.616
-356.958
-354.585
-350.525
-344.905
-337.757
-329.181
-319.325
-308.22
-295.856
-282.139
-266.912
-250.039
-231.394
-210.913
-188.505
-164.134
-137.826
-109.545
-79.2814
-47.117
-13.1624
22.4102
59.3511
97.3021
135.871
174.58
212.898
250.236
286.007
319.683
350.753
378.712
403.066
423.384
439.271
450.391
456.54
457.676
453.898
445.292
432.018
414.345
392.617
367.172
338.385
306.71
272.611
236.551
198.927
160.213
120.758
80.9671
41.259
2.37587
-35.6423
-72.2283
-107.156
-140.223
-171.242
-200.008
-226.373
-250.268
-271.619
-290.408
-306.696
-320.614
-332.31
-341.747
-348.876
-353.701
-356.293
-356.851
-355.74
-353.355
-349.891
-345.329
-339.508
-332.471
-324.403
-315.498
-305.821
-295.35
-284.078
-272.002
-259.1
-245.282
-230.312
-213.962
-196.056
-176.424
-154.951
-131.529
-106.028
-78.3476
-48.4787
-16.4377
17.7273
53.8175
91.54
130.518
170.281
210.294
249.92
288.48
325.227
359.397
390.27
417.201
439.581
456.857
468.574
474.454
474.407
468.483
456.808
439.62
417.234
390.121
358.873
324.121
286.557
246.912
205.969
164.386
122.83
81.7877
41.6451
2.94446
-33.92
-68.4518
-100.484
-130.087
-157.37
-182.439
-205.404
-226.374
-245.442
-262.755
-278.47
-292.673
-305.38
-316.599
-326.312
-334.596
-341.531
-347.17
-351.609
-354.808
-356.609
-356.826
-355.179
-352.006
-347.363
-341.186
-333.455
-324.154
-313.231
-300.637
-286.337
-270.232
-252.231
-232.222
-210.162
-186.058
-159.962
-131.953
-102.158
-70.7081
-37.7562
-3.46972
32.6596
69.0642
106.076
143.314
180.377
216.813
252.141
285.883
317.554
346.677
372.801
395.516
414.463
429.342
439.889
445.917
447.303
444.032
436.041
423.404
406.339
385.133
360.178
331.963
300.987
267.81
232.957
197.019
160.546
124.024
87.8808
52.5202
18.6866
-13.1615
-43.9072
-73.1316
-100.511
-125.938
-149.387
-170.819
-190.244
-207.73
-223.353
-237.226
-249.439
-260.074
-269.188
-276.81
-282.979
-287.733
-291.079
-292.997
-293.506
-292.861
-290.903
-287.58
-282.946
-277.015
-269.833
-261.374
-251.609
-240.551
-228.24
-214.628
-199.814
-183.708
-166.457
-147.882
-128.16
-107.33
-85.6099
-62.9328
-38.305
-12.6581
9.58991
36.2215
62.6448
89.0236
115.518
141.697
167.277
192.052
215.765
237.952
258.155
231.295
191.173
150.12
108.799
67.9531
28.1176
-4.49477
-41.0878
-76.0418
-108.638
-138.923
-166.997
-192.64
-216.068
-237.318
-256.481
-273.639
-288.76
-302.087
-313.738
-323.776
-332.287
-339.344
-345.007
-349.336
-352.378
-354.169
-354.73
-354.048
-352.173
-349.051
-344.68
-339.027
-332.023
-323.64
-313.814
-302.401
-289.327
-274.44
-257.775
-239.258
-218.705
-195.924
-170.9
-143.755
-114.317
-82.6913
-49.0911
-13.6179
22.0569
60.3749
99.5566
139.166
178.824
218.003
256.141
292.636
326.957
358.602
387.099
411.991
432.912
449.527
461.542
468.708
470.796
467.672
459.205
445.39
426.359
402.384
373.918
341.542
305.974
267.957
228.173
187.267
145.82
104.324
63.2116
22.9696
-15.86
-52.8867
-87.9001
-120.675
-151.071
-178.93
-204.201
-226.897
-247.112
-265.168
-281.402
-296.046
-309.146
-320.721
-330.745
-339.15
-346.068
-351.585
-355.71
-358.389
-359.497
-358.819
-356.446
-352.36
-346.705
-339.524
-330.924
-321.073
-310.005
-297.71
-284.088
-268.967
-252.194
-233.634
-213.23
-190.869
-166.528
-140.224
-111.915
-81.5781
-49.2932
-15.1585
20.6698
57.9307
96.2642
135.275
174.479
213.332
251.223
287.546
321.769
353.369
381.827
406.631
427.337
443.532
454.861
461.111
462.24
458.373
449.596
436.064
418.062
395.955
370.088
340.844
308.681
274.091
237.553
199.452
160.291
120.392
80.1779
40.0614
0.777195
-37.5468
-74.3947
-109.536
-142.781
-173.948
-202.814
-229.242
-253.164
-274.504
-293.24
-309.448
-323.283
-334.909
-344.282
-351.324
-356.026
-358.452
-358.803
-357.499
-354.979
-351.424
-346.801
-340.927
-333.816
-325.667
-316.719
-307.039
-296.589
-285.356
-273.346
-260.552
-246.887
-232.081
-215.893
-198.143
-178.638
-157.287
-133.963
-108.524
-80.8548
-50.9463
-18.8
15.5478
51.9086
89.989
129.408
169.686
210.282
250.55
289.797
327.237
362.09
393.604
421.122
444.015
461.693
473.681
479.694
479.643
473.592
461.669
444.119
421.263
393.591
361.721
326.306
288.053
247.73
206.139
163.963
121.884
80.3875
39.8367
0.753548
-36.3883
-71.0813
-103.162
-132.756
-159.991
-184.986
-207.853
-228.717
-247.671
-264.873
-280.494
-294.625
-307.273
-318.44
-328.098
-336.326
-343.215
-348.832
-353.292
-356.538
-358.393
-358.649
-356.997
-353.847
-349.227
-343.08
-335.393
-326.148
-315.287
-302.758
-288.537
-272.51
-254.58
-234.616
-212.574
-188.456
-162.313
-134.226
-104.324
-72.7407
-39.6258
-5.13969
31.3057
68.0151
105.388
143.031
180.538
217.445
253.263
287.501
319.67
349.263
375.826
398.935
418.221
433.375
444.127
450.285
451.719
448.409
440.289
427.426
410.043
388.444
363.034
334.318
302.815
269.095
233.708
197.263
160.32
123.375
86.8623
51.1821
17.0767
-15.1032
-46.0548
-75.4162
-102.868
-128.319
-151.765
-173.166
-192.533
-209.943
-225.481
-239.267
-251.399
-261.962
-271.013
-278.579
-284.697
-289.41
-292.724
-294.603
-295.055
-294.413
-292.453
-289.116
-284.472
-278.531
-271.349
-262.895
-253.129
-242.065
-229.758
-216.133
-201.321
-185.186
-167.944
-149.315
-129.547
-108.648
-86.9049
-64.281
-39.3907
-13.507
8.80894
35.7085
62.3045
88.8544
115.617
142.066
167.918
192.99
217.017
239.505
259.977
232.44
191.63
149.947
108.06
66.8155
26.7354
-6.96362
-43.6437
-78.7607
-111.425
-141.735
-169.835
-195.42
-218.786
-239.952
-259.022
-276.088
-291.077
-304.285
-315.828
-325.767
-334.187
-341.164
-346.757
-351.03
-354.029
-355.792
-356.34
-355.645
-353.791
-350.699
-346.372
-340.778
-333.841
-325.54
-315.819
-304.505
-291.538
-276.739
-260.175
-241.771
-221.316
-198.587
-173.575
-146.447
-116.943
-85.2043
-51.4916
-15.8714
20.3926
59.0036
98.5744
138.621
178.779
218.512
257.223
294.28
329.155
361.334
390.328
415.668
436.977
453.923
466.199
473.548
475.736
472.619
464.047
450.006
430.63
406.195
377.169
344.166
307.937
269.259
228.839
187.334
145.346
103.349
61.7714
21.1084
-18.0563
-55.3366
-90.5529
-123.473
-153.957
-181.844
-207.074
-229.681
-249.744
-267.621
-283.704
-298.238
-311.261
-322.78
-332.76
-341.106
-347.967
-353.463
-357.6
-360.313
-361.45
-360.745
-358.377
-354.263
-348.567
-341.348
-332.721
-322.874
-311.843
-299.622
-286.102
-271.097
-254.427
-235.956
-215.635
-193.326
-169.016
-142.72
-114.385
-83.9768
-51.5717
-17.2528
18.8395
56.4324
95.1612
134.629
174.351
213.762
252.231
289.134
323.93
356.083
385.064
410.337
431.451
447.969
459.516
465.865
466.982
463.02
454.064
440.259
421.913
399.41
373.102
343.379
310.71
275.613
238.576
199.98
160.359
120
79.3469
38.8001
-0.894579
-39.5349
-76.6554
-112.015
-145.445
-176.767
-205.734
-232.225
-256.175
-277.504
-296.181
-312.302
-326.045
-337.601
-346.913
-353.87
-358.443
-360.695
-360.822
-359.307
-356.646
-353.002
-348.319
-342.396
-335.206
-326.964
-317.97
-308.29
-297.863
-286.669
-274.724
-262.045
-248.544
-233.909
-217.895
-200.306
-180.938
-159.716
-136.498
-111.128
-83.474
-53.5317
-21.2835
13.2483
49.8892
88.3457
128.222
169.034
210.236
251.183
291.146
329.31
364.878
397.062
425.193
448.623
466.726
478.999
485.148
485.089
478.907
466.726
448.795
425.445
397.187
364.666
328.554
289.585
248.557
206.281
163.491
120.872
78.9116
37.9379
-1.54342
-38.9821
-73.8391
-105.959
-135.53
-162.715
-187.63
-210.394
-231.143
-249.975
-267.059
-282.584
-296.64
-309.228
-320.343
-329.945
-338.113
-344.95
-350.542
-355.025
-358.324
-360.241
-360.537
-358.878
-355.749
-351.154
-345.037
-337.396
-328.21
-317.412
-304.953
-290.816
-274.873
-257.019
-237.104
-215.082
-190.953
-164.757
-136.592
-106.58
-74.8594
-41.5766
-6.87815
29.8714
66.909
104.657
142.721
180.688
218.086
254.412
289.17
321.855
351.938
378.961
402.481
422.121
437.562
448.529
454.819
456.301
452.956
444.704
431.606
413.891
391.88
365.994
336.753
304.7
270.389
234.465
197.493
160.061
122.676
85.7785
49.7562
15.3908
-17.1293
-48.2949
-77.7995
-105.324
-130.796
-154.236
-175.604
-194.908
-212.238
-227.683
-241.379
-253.425
-263.912
-272.899
-280.407
-286.473
-291.143
-294.425
-296.266
-296.65
-296.017
-294.059
-290.705
-286.05
-280.097
-272.919
-264.468
-254.702
-243.631
-231.33
-217.692
-202.885
-186.714
-169.493
-150.801
-130.987
-110.01
-88.2474
-65.73
-40.5291
-14.4172
8.02094
35.1916
61.9499
88.6627
115.713
142.441
168.572
193.955
218.312
241.116
261.87
233.64
192.09
149.746
107.261
65.609
25.2289
-9.50533
-46.3097
-81.6121
-114.334
-144.66
-172.794
-198.305
-221.605
-242.682
-261.653
-278.627
-293.471
-306.554
-317.986
-327.822
-336.148
-343.041
-348.562
-352.777
-355.731
-357.464
-358.001
-357.289
-355.46
-352.398
-348.116
-342.585
-335.716
-327.498
-317.891
-306.679
-293.827
-279.116
-262.658
-244.377
-224.031
-201.355
-176.351
-149.256
-119.682
-87.8254
-53.998
-18.2143
18.6171
57.5571
97.5342
138.029
178.706
219.019
258.33
295.97
331.423
364.158
393.67
419.476
441.188
458.48
471.03
478.57
480.865
477.762
469.081
454.807
435.073
410.157
380.545
346.885
309.959
270.592
229.508
187.384
144.837
102.32
60.2581
19.1547
-20.361
-57.9022
-93.3238
-126.394
-156.97
-184.884
-210.069
-232.576
-252.474
-270.153
-286.075
-300.496
-313.442
-324.905
-334.842
-343.125
-349.923
-355.394
-359.549
-362.303
-363.477
-362.732
-360.379
-356.233
-350.49
-343.23
-334.571
-324.726
-313.733
-301.591
-288.183
-273.309
-256.737
-238.36
-218.13
-195.878
-171.598
-145.316
-116.961
-86.4812
-53.9552
-19.4485
16.9168
54.8526
93.9884
133.927
174.186
214.181
253.251
290.755
326.144
358.871
388.401
414.169
435.714
452.574
464.351
470.807
471.907
467.847
458.704
444.617
425.911
402.993
376.227
346.009
312.811
277.185
239.625
200.523
160.419
119.585
78.4728
37.4701
-2.64718
-41.6133
-79.0161
-114.598
-148.222
-179.705
-208.775
-235.326
-259.306
-280.624
-299.234
-315.26
-328.899
-340.388
-349.642
-356.514
-360.954
-363.024
-362.908
-361.161
-358.355
-354.622
-349.883
-343.913
-336.638
-328.295
-319.251
-309.574
-299.176
-288.017
-276.135
-263.582
-250.253
-235.799
-219.97
-202.549
-183.327
-162.24
-139.134
-113.841
-86.2097
-56.2389
-23.8908
10.8283
47.758
86.6001
126.948
168.309
210.141
251.798
292.506
331.436
367.753
400.637
429.414
453.413
471.958
484.529
490.82
490.748
484.429
471.979
453.65
429.785
400.919
367.716
330.874
291.161
249.393
206.404
162.974
119.799
77.3617
35.9457
-3.95405
-41.7098
-76.7349
-108.885
-138.419
-165.545
-190.371
-213.03
-233.657
-252.353
-269.313
-284.737
-298.718
-311.247
-322.307
-331.852
-339.957
-346.737
-352.295
-356.805
-360.165
-362.152
-362.448
-360.815
-357.71
-353.142
-347.055
-339.464
-330.341
-319.608
-307.222
-293.177
-277.323
-259.549
-239.687
-217.69
-193.549
-167.3
-139.056
-108.933
-77.0696
-43.6167
-8.66751
28.3219
65.7351
103.874
142.374
180.82
218.729
255.587
290.892
324.112
354.707
382.21
406.16
426.168
441.908
453.1
459.529
461.062
457.682
449.292
435.948
417.887
395.444
369.061
339.27
306.638
271.728
235.237
197.711
159.769
121.926
84.6295
48.242
13.6315
-19.2411
-50.6287
-80.2833
-107.88
-133.369
-156.802
-178.136
-197.371
-214.615
-229.961
-243.562
-255.517
-265.926
-274.847
-282.294
-288.305
-292.933
-296.183
-297.988
-298.291
-297.676
-295.722
-292.348
-287.682
-281.714
-274.541
-266.096
-256.329
-245.25
-232.958
-219.302
-204.508
-188.29
-171.109
-152.339
-132.481
-111.413
-89.6324
-67.2958
-41.7168
-15.3856
7.22129
34.674
61.5804
88.4446
115.806
142.823
169.238
194.946
219.651
242.786
263.834
234.903
192.549
149.514
106.392
64.3201
23.6033
-12.1218
-49.0829
-84.6023
-117.367
-147.696
-175.879
-201.295
-224.527
-245.508
-264.373
-281.26
-295.942
-308.894
-320.211
-329.941
-338.168
-344.975
-350.421
-354.575
-357.482
-359.185
-359.712
-358.981
-357.177
-354.145
-349.911
-344.445
-337.649
-329.514
-320.031
-308.923
-296.194
-281.57
-265.222
-247.076
-226.851
-204.23
-179.229
-152.187
-122.537
-90.5549
-56.6132
-20.65
16.727
56.031
96.4333
137.385
178.603
219.524
259.462
297.705
333.761
367.075
397.126
423.417
445.548
463.199
476.035
483.774
486.185
483.099
474.311
459.795
439.687
414.268
384.045
349.688
312.027
271.943
230.167
187.404
144.278
101.222
58.6625
17.1012
-22.7762
-60.5863
-96.2132
-129.432
-160.104
-188.045
-213.183
-235.579
-255.294
-272.756
-288.506
-302.811
-315.679
-327.09
-336.986
-345.201
-351.93
-357.373
-361.552
-364.359
-365.58
-364.783
-362.451
-358.269
-352.476
-345.169
-336.473
-326.623
-315.674
-303.613
-290.33
-275.601
-259.127
-240.846
-220.718
-198.529
-174.275
-148.014
-119.649
-89.0985
-56.45
-21.7525
14.8966
53.1882
92.7498
133.181
173.998
214.605
254.306
292.438
328.438
361.759
391.859
418.141
440.136
457.355
469.373
475.931
477.008
472.852
463.517
449.13
430.042
406.691
379.454
348.71
314.956
278.782
240.686
201.066
160.456
119.139
77.5479
36.0668
-4.48217
-43.7808
-81.4747
-117.281
-151.106
-182.754
-211.93
-238.538
-262.551
-283.856
-302.394
-318.318
-331.844
-343.264
-352.464
-359.255
-363.558
-365.44
-365.059
-363.062
-360.102
-356.279
-351.494
-345.481
-338.113
-329.66
-320.56
-310.892
-300.526
-289.395
-277.577
-265.159
-252.012
-237.754
-222.119
-204.873
-185.801
-164.856
-141.872
-116.667
-89.0612
-59.0638
-26.6177
8.29604
45.5275
84.7628
125.599
167.53
210.021
252.414
293.895
333.62
370.718
404.331
433.774
458.374
477.392
490.273
496.713
496.624
490.166
477.437
458.692
434.291
404.784
370.867
333.258
292.769
250.221
206.488
162.396
118.647
75.7212
33.8436
-6.49066
-44.5785
-79.7707
-111.939
-141.419
-168.479
-193.203
-215.754
-236.254
-254.803
-271.628
-286.949
-300.854
-313.325
-324.327
-333.814
-341.852
-348.569
-354.092
-358.631
-362.059
-364.131
-364.412
-362.815
-359.732
-355.191
-349.136
-341.596
-332.539
-321.874
-309.56
-295.616
-279.857
-262.171
-242.368
-220.4
-196.245
-169.944
-141.616
-111.379
-79.3683
-45.7434
-10.5385
26.696
64.4978
103.038
141.988
180.931
219.37
256.783
292.654
326.431
357.561
385.564
409.964
430.357
446.411
457.839
464.418
466.009
462.591
454.06
440.461
422.036
399.142
372.239
341.87
308.634
273.115
236.018
197.912
159.437
121.117
83.4101
46.632
11.7972
-21.4453
-53.0616
-82.8735
-110.541
-136.042
-159.466
-180.764
-199.923
-217.075
-232.315
-245.815
-257.674
-268.003
-276.856
-284.24
-290.194
-294.779
-297.999
-299.77
-299.975
-299.388
-297.441
-294.043
-289.366
-283.38
-276.215
-267.777
-258.009
-246.92
-234.642
-220.964
-206.192
-189.91
-172.795
-153.929
-134.029
-112.854
-91.052
-68.9998
-42.9476
-16.4142
6.40995
34.1599
61.1951
88.1947
115.895
143.211
169.913
195.961
221.033
244.516
265.87
236.236
193.003
149.246
105.446
62.9441
21.8612
-14.8219
-51.9598
-87.7392
-120.526
-150.843
-179.095
-204.389
-227.553
-248.429
-267.182
-283.988
-298.49
-311.306
-322.504
-332.122
-340.249
-346.965
-352.333
-356.424
-359.283
-360.954
-361.475
-360.715
-358.944
-355.942
-351.758
-346.36
-339.637
-331.586
-322.237
-311.236
-298.643
-284.097
-267.865
-249.865
-229.777
-207.213
-182.208
-155.241
-125.509
-93.3941
-59.345
-23.1802
14.7174
54.4225
95.2699
136.686
178.465
220.022
260.619
299.483
336.168
370.084
400.696
427.494
450.056
468.083
481.218
489.164
491.699
488.636
479.74
464.974
444.476
418.534
387.671
352.58
314.153
273.327
230.835
187.41
143.689
100.084
57.0123
14.9688
-25.2826
-63.3728
-99.2106
-132.584
-163.359
-191.33
-216.412
-238.687
-258.198
-275.423
-290.988
-305.18
-317.974
-329.335
-339.194
-347.344
-353.99
-359.401
-363.607
-366.477
-367.763
-366.879
-364.586
-360.367
-354.514
-347.154
-338.408
-328.549
-317.648
-305.67
-292.527
-277.957
-261.592
-243.415
-223.402
-201.282
-177.052
-150.819
-122.457
-91.8378
-59.0689
-24.1807
12.7601
51.4139
91.4186
132.366
173.761
215.004
255.366
294.152
330.79
364.738
395.438
422.257
444.724
462.321
474.591
481.254
482.299
478.041
468.502
453.8
434.315
410.514
382.792
351.5
317.175
280.433
241.776
201.627
160.497
118.682
76.5928
34.6114
-6.38586
-46.0214
-84.0248
-120.057
-154.098
-185.922
-215.196
-241.855
-265.899
-287.191
-305.652
-321.463
-334.87
-346.224
-355.386
-362.095
-366.256
-367.945
-367.269
-364.996
-361.875
-357.965
-353.152
-347.098
-339.629
-331.046
-321.884
-312.231
-301.9
-290.79
-279.038
-266.764
-253.813
-239.769
-224.337
-207.278
-188.359
-167.568
-144.718
-119.614
-92.0369
-62.0173
-29.4795
5.63192
43.1712
82.8048
124.145
166.668
209.845
253.003
295.304
335.864
373.777
408.153
438.295
463.52
483.035
496.24
502.824
502.717
496.119
483.097
463.916
438.953
408.773
374.115
335.708
294.416
251.05
206.543
161.77
117.44
74.0159
31.664
-9.12948
-47.574
-82.9345
-115.109
-144.531
-171.516
-196.125
-218.561
-238.929
-257.32
-274
-289.216
-303.045
-315.461
-326.407
-335.836
-343.802
-350.448
-355.934
-360.5
-364.002
-366.182
-366.456
-364.862
-361.807
-357.293
-351.267
-343.777
-334.787
-324.19
-311.949
-298.118
-282.459
-264.876
-245.146
-223.212
-199.043
-172.689
-144.276
-113.923
-81.7608
-47.9628
-12.5015
24.9955
63.1924
102.152
141.573
181.036
220.026
258.014
294.47
328.831
360.518
389.04
413.902
434.695
451.074
462.747
469.475
471.115
467.672
459
445.135
426.33
402.964
375.517
344.545
310.679
274.55
236.8
198.089
159.061
120.247
82.1208
44.9292
9.88702
-23.7435
-55.5916
-85.5683
-113.304
-138.81
-162.223
-183.484
-202.562
-219.616
-234.743
-248.136
-259.896
-270.14
-278.925
-286.245
-292.138
-296.68
-299.872
-301.614
-301.7
-301.156
-299.219
-295.789
-291.105
-285.095
-277.942
-269.511
-259.744
-248.641
-236.382
-222.674
-207.94
-191.569
-174.558
-155.569
-135.634
-114.331
-92.4941
-70.8707
-44.211
-17.5219
5.60266
33.6557
60.7928
87.9076
115.983
143.605
170.596
197.001
222.461
246.306
267.981
237.65
193.446
148.941
104.414
61.4769
20.0071
-17.6195
-54.937
-91.0349
-123.81
-154.094
-182.45
-207.584
-230.685
-251.451
-270.087
-286.824
-301.112
-313.783
-324.856
-334.359
-342.378
-349.001
-354.291
-358.318
-361.129
-362.764
-363.271
-362.492
-360.756
-357.781
-353.653
-348.329
-341.681
-333.717
-324.519
-313.631
-301.192
-286.699
-270.59
-252.743
-232.808
-210.302
-185.277
-158.413
-128.592
-96.3408
-62.1967
-25.8106
12.5877
52.7275
94.0407
135.926
178.29
220.513
261.799
301.303
338.642
373.185
404.381
431.706
454.716
473.133
486.582
494.742
497.409
494.378
485.374
470.353
449.455
422.97
391.44
355.574
316.347
274.751
231.519
187.401
143.073
98.899
55.2905
12.7295
-27.9093
-66.2887
-102.345
-135.868
-166.741
-194.731
-219.756
-241.904
-261.186
-278.149
-293.517
-307.581
-320.291
-331.602
-341.407
-349.475
-356.032
-361.387
-365.603
-368.533
-369.855
-368.857
-366.733
-362.502
-356.583
-349.163
-340.355
-330.492
-319.646
-307.753
-294.763
-280.357
-264.104
-246.036
-226.16
-204.114
-179.909
-153.718
-125.371
-94.6894
-61.8061
-26.7291
10.5154
49.5421
90.0073
131.491
173.488
215.392
256.439
295.89
333.183
367.782
399.111
426.494
449.458
467.458
479.997
486.77
487.776
483.419
473.676
458.646
438.74
414.48
386.26
354.399
319.473
282.138
242.899
202.212
160.532
118.208
75.5928
33.0794
-8.38439
-48.3681
-86.6885
-122.938
-157.203
-189.204
-218.567
-245.264
-269.346
-290.63
-309.002
-324.684
-337.954
-349.219
-358.33
-364.938
-368.945
-370.453
-369.393
-366.889
-363.643
-359.648
-354.839
-348.75
-341.17
-332.44
-323.21
-313.581
-303.29
-292.194
-280.509
-268.377
-255.634
-241.817
-226.599
-209.743
-190.979
-170.362
-147.659
-122.67
-95.1254
-65.0907
-32.4699
2.8438
40.696
80.7421
122.602
165.735
209.611
253.552
296.713
338.148
376.919
412.095
442.965
468.847
488.886
502.432
509.169
509.034
502.292
488.969
469.336
443.793
412.913
377.484
338.25
296.117
251.904
206.581
161.098
116.175
72.2375
29.3916
-11.9012
-50.7268
-86.2584
-118.418
-147.762
-174.659
-199.141
-221.451
-241.683
-259.903
-276.423
-291.526
-305.27
-317.627
-328.505
-337.862
-345.747
-352.298
-357.722
-362.302
-365.876
-368.177
-367.952
-366.867
-363.888
-359.417
-353.423
-345.984
-337.067
-326.542
-314.379
-300.671
-285.111
-267.642
-247.992
-226.093
-201.921
-175.521
-147.028
-116.563
-84.252
-50.2841
-14.5682
23.1952
61.7927
101.184
141.095
181.098
220.665
259.255
296.316
331.293
363.561
392.629
417.975
439.184
455.902
467.833
474.723
476.424
472.947
464.129
449.988
430.784
406.924
378.912
347.31
312.792
276.03
237.589
198.25
158.648
119.323
80.7705
43.1754
7.87006
-26.1364
-58.2165
-88.3712
-116.173
-141.679
-165.082
-186.306
-205.294
-222.244
-237.25
-250.533
-262.187
-272.344
-281.059
-288.312
-294.14
-298.639
-301.809
-303.53
-303.456
-302.979
-301.06
-297.591
-292.904
-286.865
-279.73
-271.306
-261.535
-250.414
-238.18
-224.431
-209.758
-193.263
-176.406
-157.254
-137.298
-115.839
-93.9399
-72.9477
-45.49
-18.7288
4.81523
33.1681
60.3717
87.5763
116.072
144.006
171.283
198.062
223.933
248.159
270.167
239.157
193.867
148.595
103.285
59.9133
18.0447
-20.529
-57.9987
-94.4938
-127.222
-157.464
-185.982
-210.88
-233.901
-254.527
-273.044
-289.736
-303.789
-316.313
-327.263
-336.647
-344.558
-351.08
-356.26
-360.109
-362.521
-363.219
-361.725
-357.413
-352.504
-347.378
-342.34
-337.672
-333.423
-329.076
-323.853
-315.764
-303.645
-289.241
-273.311
-255.632
-235.918
-213.518
-188.42
-161.719
-131.774
-99.3765
-65.1528
-28.5474
10.3493
50.9455
92.7435
135.096
178.071
220.994
263.002
303.164
341.183
376.378
408.183
436.052
459.526
478.351
492.126
500.507
503.317
500.323
491.216
475.93
454.62
427.571
395.337
358.657
318.59
276.195
232.196
187.352
142.405
97.6531
53.4996
10.4033
-30.6207
-69.2627
-105.503
-139.128
-170.045
-197.915
-222.634
-244.267
-262.671
-278.382
-292.017
-303.421
-312.272
-318.546
-322.014
-322.712
-321.926
-320.553
-318.286
-315.87
-314.201
-313.52
-314.888
-316.995
-319.177
-320.788
-321.194
-319.709
-315.577
-308.127
-296.973
-282.724
-266.578
-248.633
-228.937
-206.977
-182.79
-156.659
-128.349
-97.6218
-64.6438
-29.3904
8.16709
47.58
88.5233
130.558
173.186
215.788
257.551
297.694
335.666
370.936
402.918
430.879
454.359
472.783
485.601
492.47
493.416
488.977
479.023
463.643
443.297
418.562
389.829
357.366
321.808
283.862
244.038
202.798
160.552
117.726
74.5734
31.5052
-10.4223
-50.7328
-89.3551
-125.772
-160.188
-192.259
-221.504
-247.804
-271.022
-290.477
-305.473
-315.96
-322.033
-324.113
-322.726
-319.458
-315.964
-314.048
-314.042
-315.085
-316.944
-318.286
-319.749
-321.288
-321.569
-320.363
-317.207
-311.915
-304.139
-293.577
-281.944
-269.948
-257.432
-243.862
-228.876
-212.239
-193.629
-173.195
-150.656
-125.807
-98.3025
-68.2751
-35.5904
-0.075787
38.0948
78.5743
120.979
164.742
209.346
254.104
298.156
340.493
380.151
416.165
447.789
474.355
494.947
508.852
515.728
515.572
508.692
495.057
474.956
448.807
417.191
380.959
340.866
297.846
252.756
206.569
160.351
114.819
70.373
27.03
-14.787
-53.9988
-89.6666
-121.745
-150.948
-177.678
-201.874
-223.826
-243.542
-260.962
-276.377
-289.931
-301.355
-310.403
-316.843
-320.716
-322.436
-322.404
-320.826
-318.527
-316.697
-315.117
-313.917
-314.484
-316.144
-318.003
-319.708
-320.821
-320.711
-318.417
-312.718
-302.742
-287.726
-270.375
-250.815
-228.989
-204.827
-178.373
-149.814
-119.259
-86.8106
-52.6844
-16.7213
21.3203
60.3282
100.16
140.574
181.132
221.287
260.502
298.196
333.815
366.683
396.322
422.177
443.818
460.89
473.09
480.149
481.907
478.406
469.443
455.016
435.396
411.02
382.419
350.158
314.965
277.48
238.37
198.383
158.188
118.335
79.3518
41.3797
5.71316
-28.6361
-60.9447
-91.2877
-119.15
-144.64
-168.021
-189.186
-208.082
-224.928
-239.809
-252.98
-264.525
-274.593
-283.239
-290.424
-296.182
-300.632
-303.771
-305.453
-305.191
-304.857
-302.975
-299.453
-294.755
-288.669
-281.553
-273.129
-263.353
-252.218
-240.026
-226.229
-211.677
-195.006
-178.381
-158.98
-139.026
-117.377
-95.3692
-75.285
-46.7578
-20.0533
4.06283
32.7014
59.9289
87.1911
116.167
144.414
171.97
199.145
225.451
250.074
272.432
240.777
194.256
148.207
102.046
58.2496
15.9259
-23.5261
-61.1722
-98.1757
-130.735
-160.81
-189.589
-214.214
-237.153
-257.375
-271.997
-264.715
-234.159
-203.907
-176.69
-153.027
-132.779
-115.799
-102.027
-91.4032
-84.034
-80.1638
-79.8647
-83.8278
-90.9265
-100.844
-113.201
-127.965
-145.26
-165.109
-186.575
-210.333
-231.137
-240.889
-240.519
-237.175
-230.352
-215.861
-191.313
-165.072
-135.023
-102.456
-68.2287
-31.3795
8.02405
49.0968
91.3848
134.193
177.806
221.461
264.228
305.062
343.793
379.664
412.101
440.535
464.486
483.738
497.855
506.458
509.415
506.472
497.267
481.706
459.975
432.343
399.374
361.841
320.906
277.684
232.895
187.308
141.749
96.4283
51.7374
8.08753
-33.2736
-72.1013
-108.377
-141.847
-172.198
-198.213
-218.373
-231.023
-234.475
-228.326
-212.09
-191.547
-171.026
-151.511
-134.071
-119.998
-109.174
-100.014
-92.9118
-88.1766
-86.0285
-86.5154
-90.9486
-99.3894
-110.991
-125.424
-142.697
-161.575
-181.145
-200.019
-215.65
-225.069
-229.596
-229.502
-223.227
-208.765
-185.498
-159.491
-131.308
-100.558
-67.5143
-32.1251
5.73157
45.5263
86.9579
129.547
172.819
216.147
258.662
299.524
338.207
374.176
406.848
435.416
459.435
478.302
491.414
498.378
499.241
494.723
484.551
468.801
448.002
422.777
393.521
360.438
324.228
285.653
245.233
203.432
160.62
117.297
73.6065
29.9654
-12.4145
-52.9958
-91.859
-128.259
-162.37
-193.123
-217.873
-232.788
-232.744
-213.363
-186.29
-160.549
-137.259
-117.086
-101.093
-90.2558
-84.7043
-83.4845
-86.0788
-91.3352
-98.4648
-106.701
-115.777
-127.564
-142.739
-160.124
-177.405
-193.46
-208.08
-219.686
-225.755
-229.034
-229.924
-228.192
-222.912
-212.666
-196.172
-175.941
-153.603
-128.96
-101.506
-71.5067
-38.7966
-3.10952
35.3636
76.2736
119.234
163.637
209.011
254.623
299.606
342.888
383.475
420.362
452.781
480.064
501.239
515.514
522.495
522.324
515.312
501.353
480.762
453.98
421.601
384.536
343.558
299.616
253.618
206.542
159.581
113.45
68.5234
24.7027
-17.6276
-57.2019
-92.9084
-124.677
-153.38
-179.143
-201.144
-218.688
-230.244
-234.238
-229.622
-215.182
-195.713
-176.17
-157.762
-141.495
-127.727
-116.661
-107.695
-99.9732
-93.7324
-89.3971
-88.072
-90.8106
-96.7935
-105.303
-116.665
-130.738
-147.603
-167.265
-188.447
-208.354
-222.818
-228.868
-229.756
-223.372
-206.934
-181.048
-152.504
-121.942
-89.375
-55.1308
-18.9515
19.3678
58.7954
99.0797
140.007
181.145
221.907
261.765
300.121
336.411
369.905
400.134
426.52
448.61
466.046
478.525
485.755
487.554
484.045
474.937
460.214
440.16
415.244
386.033
353.086
317.185
278.948
239.157
198.496
157.692
117.293
77.878
39.5924
3.39655
-31.2005
-63.7109
-94.21
-122.133
-147.581
-170.912
-191.95
-210.54
-226.91
-240.949
-252.696
-261.897
-268.148
-270.524
-267.318
-260.557
-255.472
-252.247
-250.607
-250.078
-251.851
-256.158
-262.725
-266.736
-264.322
-260.482
-255.908
-249.828
-243.242
-235.914
-226.736
-213.47
-196.518
-180.347
-160.659
-140.791
-119.021
-96.7883
-77.9838
-47.9696
-21.5201
3.36342
32.2486
59.4626
86.7387
116.275
144.832
172.655
200.249
227.015
252.052
274.778
242.535
194.59
147.777
100.708
56.4719
13.5311
-26.6144
-64.2092
-101.765
-134.266
-163.406
-171.94
-136.938
-100.496
-66.2229
-34.0501
-15.3718
-9.92353
-6.93599
-4.76992
-3.10554
-1.87379
-1.01054
-0.460831
-0.160533
-0.0318743
0.00825377
0.0262604
0.020032
0.00538987
-0.0186661
-0.0695864
-0.187572
-0.460153
-1.07493
-2.38939
-5.4351
-12.1759
-26.5694
-49.6626
-75.8121
-104.046
-133.371
-149.617
-146.312
-132.432
-105.082
-71.3302
-34.2674
5.64791
47.1848
89.9813
133.24
177.508
221.915
265.48
306.994
346.466
383.044
416.137
445.158
469.597
489.297
503.772
512.604
515.696
512.826
503.534
487.691
465.535
437.31
403.569
365.143
323.305
279.223
233.621
187.274
141.108
95.2092
49.9931
5.79671
-35.769
-74.4449
-108.981
-135.507
-146.598
-132.909
-108.859
-84.4149
-63.0929
-45.9087
-33.3274
-24.2671
-17.3448
-12.1903
-8.55346
-6.10411
-4.49578
-3.27421
-2.49622
-2.07638
-1.92415
-1.94835
-2.14227
-2.54421
-3.19406
-4.21562
-5.86542
-8.36377
-12.2385
-18.3475
-27.6955
-42.3029
-61.637
-84.2466
-108.535
-131.26
-142.944
-140.347
-127.953
-103.212
-70.2048
-34.8256
3.29421
43.4267
85.3257
128.48
172.407
216.487
259.785
301.38
340.787
377.477
410.877
440.08
464.673
484.008
497.432
504.495
505.241
500.664
490.273
474.139
452.858
427.135
397.349
363.62
326.735
287.506
246.47
204.092
160.704
116.877
72.6444
28.4053
-14.3909
-55.0985
-93.3332
-125.693
-145.399
-137.923
-110.028
-79.6237
-52.1248
-33.0488
-21.6331
-13.9283
-8.75327
-5.3897
-3.38387
-2.3899
-1.98305
-1.88052
-1.95549
-2.20116
-2.55776
-3.03443
-3.58806
-4.41667
-5.93173
-8.30539
-11.6258
-16.1857
-22.7899
-32.5162
-45.6191
-59.9434
-75.1314
-91.7802
-109.749
-127.118
-140.116
-142.606
-138.274
-126.444
-104.493
-74.5791
-41.9706
-6.15703
32.5872
73.8902
117.391
162.438
208.615
255.098
301.05
345.321
386.883
424.673
457.919
485.962
507.754
522.424
529.499
529.29
522.16
507.865
486.77
459.339
426.166
388.242
346.341
301.455
254.514
206.529
158.809
112.09
66.7318
22.4632
-20.3177
-60.0845
-94.8794
-122.83
-141.663
-145.541
-130.125
-108.672
-86.5119
-66.0974
-48.5932
-35.3161
-25.9902
-18.8454
-13.6344
-9.89228
-7.20508
-5.37711
-4.10146
-3.19642
-2.54159
-2.13782
-2.01937
-2.15027
-2.42309
-2.85387
-3.55576
-4.64259
-6.34374
-9.1978
-14.0993
-22.195
-35.9313
-56.1822
-80.7457
-108.262
-133.293
-143.443
-138.36
-121.506
-91.6579
-57.4494
-21.1594
17.3937
57.2094
97.9373
139.382
181.118
222.511
263.029
302.066
339.051
373.199
404.043
430.989
453.554
471.367
484.142
491.553
493.389
489.879
480.626
465.6
445.093
419.615
389.779
356.115
319.481
280.509
239.98
198.618
157.186
116.219
76.3878
37.7867
1.16382
-33.653
-66.2312
-96.4911
-123.046
-144.189
-156.465
-152.6
-133.319
-112.704
-92.3982
-72.6926
-53.6941
-36.3762
-23.1142
-14.5106
-9.59163
-5.75339
-2.86783
-1.17367
-0.890765
-1.44744
-2.40557
-4.49395
-9.28228
-18.9539
-31.3748
-46.0886
-63.5646
-83.2579
-104.708
-129.323
-154.302
-167.25
-163.934
-151.24
-138.478
-120.409
-97.6675
-81.1174
-48.9914
-23.1519
2.71065
31.779
58.9651
86.2015
116.405
145.262
173.333
201.375
228.626
254.095
277.209
244.462
194.859
147.293
99.1267
54.6332
11.3043
-29.6393
-67.2132
-77.4747
-52.1583
-27.4382
-8.73266
-3.80741
-1.33068
0.381774
0.559077
0.509607
0.455942
0.398913
0.339015
0.28501
0.235481
0.190254
0.148292
0.108737
0.0748703
0.049127
0.0328102
0.02198
0.0116541
0.00351505
-0.00258958
-0.0127903
-0.0284314
-0.0460251
-0.0641234
-0.0766472
-0.0892675
-0.13275
-0.26308
-0.604566
-1.63533
-4.93959
-14.2873
-32.41
-51.9817
-65.3756
-57.519
-34.0173
3.55628
45.1641
88.5471
132.182
177.183
222.366
266.782
308.97
349.204
386.516
420.288
449.919
474.861
495.029
509.878
518.947
522.134
519.372
510.005
493.875
471.284
442.448
407.894
368.527
325.736
280.763
234.308
187.15
140.369
93.911
48.2334
4.00969
-34.4859
-59.2907
-56.7216
-42.3863
-25.9313
-14.0246
-7.13422
-2.97421
-0.874233
-0.0577233
0.019667
0.0284817
0.0363147
0.0404381
0.0418813
0.0309204
0.0241694
0.021142
0.0208453
0.0208575
0.0192432
0.0168809
0.0137286
0.0077498
-0.00093835
-0.0135866
-0.0345204
-0.0641198
-0.109606
-0.184934
-0.307127
-0.528588
-0.97947
-1.94475
-4.07271
-8.852
-19.4515
-35.0189
-51.6005
-62.6243
-54.6645
-33.4693
1.07681
41.4148
83.6826
127.363
171.944
216.816
260.934
303.285
343.435
380.867
415.033
444.888
470.081
489.915
503.662
510.808
511.368
506.783
496.17
479.624
457.822
431.596
401.26
366.84
329.256
289.347
247.651
204.649
160.665
116.344
71.6252
26.9702
-14.9691
-48.8949
-61.0644
-49.2225
-31.4793
-15.8416
-7.20932
-2.35007
-0.239328
0.0126473
0.035341
0.0486242
0.0542606
0.0546524
0.0442246
0.0381337
0.0328915
0.0268266
0.0191959
0.0110422
0.00236836
-0.00628596
-0.0138807
-0.0241883
-0.0455047
-0.0795387
-0.124815
-0.185206
-0.274009
-0.419727
-0.654112
-1.01529
-1.59382
-2.59445
-4.41575
-7.82426
-14.2987
-25.2475
-38.5901
-52.5639
-62.1884
-56.3495
-38.6953
-9.03039
29.9097
71.5146
115.504
161.16
208.154
255.548
302.508
347.803
390.383
429.116
463.207
492.042
514.489
529.583
536.695
536.451
529.225
514.585
492.968
464.865
430.863
392.047
349.182
303.338
255.403
206.446
157.915
110.608
64.9005
20.3236
-20.9794
-52.267
-60.1794
-50.3601
-36.524
-22.6551
-13.2793
-7.24262
-3.34409
-1.14089
-0.13788
0.0172529
0.0257499
0.0333389
0.037397
0.0387044
0.0265163
0.0193809
0.0146489
0.0129634
0.0142867
0.0168374
0.0160972
0.0133908
0.00982971
0.00518011
-0.00245525
-0.0141229
-0.0310691
-0.0617897
-0.119483
-0.217018
-0.403426
-0.798786
-1.71781
-3.9527
-9.37137
-21.9623
-39.5107
-56.6259
-62.2275
-48.1262
-22.0269
15.6282
55.6941
96.8033
138.729
181.062
223.114
264.312
304.053
341.763
376.575
408.06
435.585
458.65
476.854
489.933
497.531
499.376
495.91
486.512
471.18
450.204
424.143
393.663
359.255
321.865
282.138
240.84
198.75
156.684
115.183
75.0289
36.2154
-0.550654
-33.6234
-58.7095
-65.2909
-54.5154
-40.6985
-25.6594
-13.966
-8.50607
-4.75996
-2.18046
-0.618227
0.0898414
0.097733
0.0963471
0.0876984
0.0737957
0.0653542
0.0533258
0.0513955
0.0406928
0.0189044
-0.00619393
-0.0350633
-0.0580017
-0.0948792
-0.129978
-0.154693
-0.180206
-0.210821
-0.281809
-0.568837
-1.74822
-7.43458
-20.9258
-37.013
-54.438
-73.7904
-77.5898
-72.7183
-46.1285
-24.4286
2.27491
31.3429
58.4542
85.5177
116.559
145.705
174.003
202.523
230.285
256.202
279.732
246.616
194.89
146.81
97.9163
52.7028
12.0697
3.72746
2.00239
1.58975
1.4694
1.32646
1.11606
0.940263
0.827119
0.705319
0.597175
0.505394
0.444724
0.388587
0.328351
0.274622
0.225977
0.181956
0.141569
0.10424
0.0725675
0.0482472
0.0323171
0.0215336
0.0115319
0.00369055
-0.00245497
-0.012448
-0.0274346
-0.0432086
-0.0588383
-0.0670953
-0.0672258
-0.0790086
-0.0923475
-0.09855
-0.101309
-0.0973378
-0.110582
-0.112311
-0.0912415
0.00827223
0.390536
3.21003
16.6625
47.1216
87.3461
130.852
176.631
222.773
268.112
310.996
352.019
390.088
424.556
454.821
480.272
500.932
516.175
525.489
528.723
526.106
516.669
500.242
477.203
447.726
412.318
371.958
328.154
282.216
234.876
186.843
139.49
92.831
49.359
18.7347
5.93792
0.834435
0.318886
0.153732
0.14459
0.108062
0.084932
0.0726425
0.0654937
0.0701446
0.0617256
0.0544494
0.0508667
0.048302
0.0460374
0.0431532
0.041471
0.0411491
0.0418765
0.0425633
0.0424048
0.0419391
0.0416674
0.041364
0.0412278
0.0412573
0.0409422
0.040968
0.0421228
0.0433149
0.0460133
0.0489941
0.0526133
0.0574492
0.0615155
0.0666092
0.0777331
0.101444
0.164866
0.344447
1.03861
3.93814
16.0483
44.4881
82.2612
126.301
171.469
217.114
262.07
305.213
346.142
384.342
419.315
449.837
475.653
496.022
510.116
517.343
517.643
513.093
502.232
485.24
462.875
436.125
405.195
370.039
331.7
291.047
248.613
204.952
160.417
115.768
71.556
32.5799
11.7695
2.72115
0.448817
0.222118
0.140936
0.123345
0.087926
0.0732433
0.0870316
0.0796204
0.0703817
0.0652387
0.0612501
0.0585435
0.056543
0.0551384
0.0529584
0.0496747
0.0454117
0.0413267
0.0382445
0.0362618
0.0355247
0.034667
0.0327985
0.0306486
0.029491
0.0295697
0.0308037
0.0318029
0.0333316
0.0364374
0.0408158
0.0459246
0.0512979
0.0579449
0.0678047
0.0837038
0.113846
0.181339
0.349407
0.906011
2.99888
11.2982
35.2014
70.0655
113.688
159.869
207.622
255.951
303.971
350.32
393.948
433.673
468.648
498.316
521.454
537.002
544.132
543.823
536.517
521.501
499.328
470.52
435.635
395.881
351.986
305.129
256.102
206.11
156.763
109.007
64.3144
27.571
9.80303
1.99864
0.393927
0.215367
0.116009
0.127218
0.0905377
0.0722284
0.06214
0.0557688
0.0613433
0.0573529
0.0507646
0.0473327
0.0450618
0.0431292
0.0401099
0.038275
0.0379832
0.0387914
0.0400622
0.0415408
0.0415706
0.0411469
0.0412429
0.0419907
0.0432036
0.0447462
0.0464831
0.0477098
0.0485243
0.0506666
0.0533592
0.0566202
0.0604685
0.0631163
0.0672941
0.0781308
0.107105
0.199401
0.490894
1.71598
6.85515
25.5638
56.7431
95.817
138.144
181.007
223.698
265.597
306.08
344.567
380.054
412.204
440.324
463.911
482.522
495.908
503.7
505.527
502.138
492.598
476.948
455.484
428.816
397.678
362.493
324.326
283.825
241.738
198.967
156.309
114.403
74.349
38.52
15.1305
5.31554
0.841955
0.356729
0.250591
0.171384
0.205749
0.181423
0.159439
0.149007
0.137876
0.118954
0.122496
0.109646
0.0996877
0.0870412
0.0725416
0.0635988
0.0531238
0.0492888
0.0376
0.0177992
-0.00549613
-0.0325635
-0.0550702
-0.0884967
-0.120593
-0.143905
-0.165691
-0.184181
-0.210331
-0.25856
-0.31635
-0.405905
-0.45728
-0.480709
-0.545916
-0.635601
-0.712801
-0.840428
-0.812798
0.20628
11.8884
35.1017
58.7782
84.7415
116.899
146.197
174.656
203.682
231.988
258.372
282.351
248.975
195.261
145.815
91.5612
51.0434
15.9945
5.85692
2.227
1.72981
1.43083
1.26106
1.06669
0.900028
0.785334
0.673008
0.571267
0.484335
0.423872
0.3698
0.313027
0.261968
0.215722
0.173868
0.135504
0.10027
0.0704079
0.0472992
0.0317638
0.0209834
0.0111234
0.00335642
-0.00310223
-0.0127215
-0.0264241
-0.040903
-0.0552704
-0.062948
-0.0649027
-0.0756479
-0.0877452
-0.0933055
-0.0957913
-0.0958587
-0.103982
-0.104336
-0.0888411
-0.0305978
0.414622
2.74832
15.0019
45.9706
86.169
130.195
176.015
223.051
269.159
312.949
354.86
393.754
428.945
459.869
485.832
507
522.659
532.235
535.45
533.03
523.532
506.786
483.282
453.152
416.807
375.375
330.476
283.477
235.25
186.193
138.042
90.9354
47.3964
17.5625
5.39502
0.752919
0.29179
0.149864
0.123633
0.100339
0.0808319
0.0697258
0.0632594
0.0652504
0.0583479
0.0521541
0.0487201
0.046189
0.043968
0.0413754
0.0397766
0.0394084
0.0399635
0.0405259
0.0405575
0.0401704
0.0398845
0.0396019
0.0394535
0.0394638
0.0392642
0.039312
0.0403376
0.0415427
0.0439683
0.0466894
0.049871
0.0537313
0.0573788
0.0628076
0.0740049
0.0959616
0.15196
0.320398
0.95513
3.63809
14.9231
42.7315
80.2799
124.819
170.857
217.418
263.243
307.174
348.911
387.92
423.751
454.943
481.392
502.327
516.792
524.089
524.069
519.593
508.452
490.96
467.973
440.664
409.083
373.106
333.894
292.43
249.245
204.915
159.713
114.52
69.8848
30.9015
10.886
2.42311
0.413371
0.206875
0.126334
0.110933
0.0840569
0.0721219
0.0803935
0.0744737
0.0671322
0.06242
0.0586521
0.0559728
0.0539461
0.0524118
0.0502731
0.0472161
0.0435161
0.039668
0.036739
0.0348306
0.0339651
0.0330371
0.0313588
0.0294421
0.0283652
0.0284035
0.0294452
0.0304056
0.0319487
0.0348588
0.0387764
0.0432538
0.0482812
0.0548765
0.0643215
0.0794435
0.107134
0.166647
0.32158
0.826109
2.73343
10.2241
33.1868
67.4268
111.317
158.3
207.028
256.368
305.483
352.914
397.62
438.357
474.256
504.804
528.659
544.686
551.75
551.394
544.022
528.577
505.796
476.229
440.365
399.584
354.506
306.562
256.416
205.341
154.978
106.686
61.9685
25.7848
8.93117
1.73957
0.361928
0.196264
0.112595
0.110752
0.0848526
0.0689388
0.0597114
0.0542475
0.0573583
0.0538026
0.0484628
0.045277
0.0430549
0.0411318
0.0384614
0.0367554
0.0364342
0.037098
0.038211
0.0395015
0.0399129
0.0394542
0.0395911
0.0402751
0.0414204
0.0428691
0.0444053
0.045619
0.0464959
0.0484347
0.050818
0.0535561
0.0564138
0.0586984
0.0632833
0.0744106
0.101842
0.183797
0.463102
1.5901
6.36126
24.405
55.1937
94.3663
137.333
180.935
224.313
266.895
308.125
347.422
383.631
416.475
445.196
469.329
488.369
502.065
510.054
511.8
508.54
498.873
482.902
460.909
433.626
401.826
365.787
326.865
285.572
242.722
199.263
155.685
112.8
72.5132
37.262
15.0012
5.42143
0.888237
0.349521
0.244723
0.180362
0.188886
0.171523
0.15259
0.141974
0.130722
0.114716
0.115256
0.104154
0.0946135
0.0827888
0.0694349
0.0604
0.0508213
0.0461833
0.0347239
0.0162843
-0.00583434
-0.0310422
-0.0533656
-0.0840712
-0.11374
-0.136558
-0.157498
-0.176286
-0.20228
-0.248611
-0.303322
-0.378696
-0.431057
-0.459811
-0.521598
-0.596716
-0.708616
-0.743573
-0.788668
-0.129545
10.7992
33.8352
59.346
86.4745
118.745
147.046
175.386
205.004
233.774
260.607
285.052
251.856
177.149
90.2469
19.658
6.34524
2.72042
2.15823
1.83039
1.55438
1.31806
1.17368
1.00606
0.855459
0.744732
0.639771
0.544419
0.462675
0.403297
0.350942
0.29761
0.249169
0.205254
0.16551
0.129171
0.09603
0.067953
0.0460763
0.0310176
0.0204001
0.0108204
0.00321501
-0.00337312
-0.0126386
-0.0254489
-0.0388185
-0.0518432
-0.0593841
-0.0622202
-0.0720684
-0.0825549
-0.0882197
-0.0913397
-0.0919236
-0.0993122
-0.104291
-0.104213
-0.111264
-0.100562
-0.0535193
0.275899
2.80657
18.694
78.1135
151.754
216.811
269.929
314.6
357.528
397.357
433.39
465.051
491.539
513.232
529.333
539.195
542.309
540.161
530.6
513.505
489.523
458.689
421.309
378.748
332.609
284.002
231.139
161.165
82.7159
28.762
6.45167
0.896822
0.387466
0.207176
0.135129
0.0886791
0.0933768
0.0850084
0.0730234
0.0651135
0.0603498
0.0610765
0.0552474
0.0497497
0.0464251
0.0439287
0.0417709
0.0394664
0.0379791
0.0375779
0.0380005
0.0384689
0.0387481
0.0382651
0.0379805
0.0377198
0.0375659
0.037567
0.037442
0.03751
0.0384679
0.0396549
0.0418002
0.044203
0.0468899
0.0497395
0.0518048
0.0537796
0.0563772
0.0582188
0.0615258
0.0705731
0.10308
0.204925
0.638509
3.07572
16.8375
67.9652
140.084
208.489
263.433
309.046
351.703
391.552
428.349
460.249
487.344
508.868
523.719
531.082
530.705
526.33
514.843
496.781
473.079
445.146
412.802
375.876
335.708
293.135
247.264
191.202
117.873
50.5936
16.1137
2.23462
0.582394
0.269907
0.162454
0.103908
0.0826022
0.0870993
0.0739278
0.0676647
0.074621
0.0699623
0.0637857
0.0593874
0.0558376
0.0532584
0.0512769
0.0496895
0.0476041
0.0447448
0.0413728
0.0378397
0.0350845
0.0332551
0.0323014
0.0313293
0.0298102
0.028096
0.0270769
0.0270848
0.0279418
0.028772
0.0301098
0.0326063
0.0358196
0.0392864
0.0426975
0.046496
0.050516
0.0550312
0.0596798
0.0658193
0.0767197
0.10391
0.179474
0.454363
1.85412
9.83176
48.6866
118.485
193.577
254.91
306.823
355.519
401.387
443.19
480.075
511.571
536.161
552.66
559.671
559.226
551.762
535.802
512.332
481.918
444.905
402.92
356.526
307.357
254.385
190.235
108.552
41.2596
12.1292
1.43902
0.520092
0.249664
0.155197
0.105393
0.0756684
0.087554
0.0736832
0.0628091
0.0558598
0.0518805
0.0538567
0.0507066
0.046139
0.0431093
0.0409251
0.0390427
0.0366801
0.0351191
0.0347876
0.0353319
0.0362987
0.0374465
0.0379388
0.0376318
0.0378051
0.0384221
0.0395067
0.0408437
0.0422216
0.0433974
0.0443635
0.0461333
0.0482311
0.0504277
0.0524026
0.0532311
0.0541437
0.055329
0.0559314
0.0597084
0.0730166
0.122768
0.299184
1.13454
5.756
28.6523
86.8795
156.852
217.766
267.503
310.11
350.294
387.25
420.862
450.201
474.909
494.396
508.408
516.606
518.174
515.125
505.325
489.022
466.438
438.525
406.042
369.066
329.41
286.872
240.81
184.161
112.264
48.5387
16.9282
3.00361
0.685443
0.380358
0.251923
0.204459
0.175139
0.152347
0.167873
0.158057
0.14358
0.134179
0.12388
0.110203
0.108654
0.0988763
0.0897145
0.0786838
0.0664494
0.0575547
0.0487032
0.0433488
0.0319936
0.0149809
-0.00568339
-0.0292878
-0.0510161
-0.079421
-0.10696
-0.129174
-0.149436
-0.168459
-0.194385
-0.23791
-0.289254
-0.357446
-0.40712
-0.438617
-0.496777
-0.572063
-0.66384
-0.713817
-0.78236
-0.896203
-1.00069
-1.07991
-0.994874
8.17671
50.5968
104.687
161.513
203.353
234.316
262.928
288.008
138.272
28.4515
6.81111
3.16688
2.62876
2.16204
1.87012
1.65951
1.44639
1.24308
1.10523
0.951901
0.812517
0.70541
0.606969
0.517422
0.440417
0.382697
0.33232
0.282191
0.236358
0.194779
0.157148
0.12281
0.0916772
0.065311
0.0446441
0.0301144
0.0196453
0.0104178
0.00300345
-0.00360548
-0.012491
-0.024356
-0.0366659
-0.0486373
-0.0558274
-0.0594454
-0.0684744
-0.0778766
-0.0831671
-0.0864445
-0.0875167
-0.0940541
-0.0986153
-0.0996091
-0.107706
-0.111692
-0.111521
-0.108285
-0.0557077
0.249117
2.96394
22.6969
106.42
219.816
301.704
358.905
400.791
437.75
470.215
497.339
519.605
536.193
546.384
549.292
547.523
537.865
520.368
495.886
464.252
425.73
381.211
327.429
240.078
123.302
39.9848
7.71606
1.32564
0.551017
0.258305
0.136206
0.110677
0.0940529
0.0737529
0.0830008
0.0779633
0.0687156
0.0617972
0.0575288
0.0572461
0.0522348
0.0473196
0.0441122
0.0416705
0.0395941
0.0375248
0.0361437
0.035732
0.0360373
0.036412
0.0366905
0.0362631
0.0359964
0.035759
0.0356141
0.0356101
0.0355317
0.0356487
0.0365473
0.0377161
0.0396952
0.0419565
0.0444601
0.047004
0.0489231
0.050723
0.0527641
0.0534501
0.0536802
0.0535394
0.0555038
0.0575405
0.0693992
0.143145
0.504479
2.84481
19.1982
93.7573
202.081
291.194
351.417
394.905
432.919
465.615
493.426
515.578
530.89
538.425
537.606
533.415
521.508
502.764
478.221
449.606
416.407
377.642
331.234
260.883
158.042
63.614
18.8153
2.36117
0.854526
0.371287
0.175362
0.10858
0.0946747
0.0768764
0.0710214
0.0773656
0.0691814
0.0646744
0.0695471
0.0657904
0.0604695
0.0563623
0.0530213
0.0505447
0.0486033
0.0469934
0.0449735
0.0423034
0.0391898
0.035944
0.0333659
0.0316168
0.0306097
0.0296257
0.0282517
0.0267228
0.0257913
0.0258082
0.0265624
0.0273608
0.0286847
0.03104
0.0340199
0.0372531
0.0404748
0.043992
0.0476349
0.0513176
0.0544393
0.0572288
0.0596154
0.0621833
0.0644896
0.0728893
0.119058
0.326657
1.56528
10.8156
69.0486
182.116
286.697
355.532
404.823
447.939
485.919
518.526
543.958
560.96
568.006
567.372
559.831
543.243
518.964
487.555
449.248
405.828
355.81
286.927
171.057
61.7425
15.2042
1.8182
0.736302
0.333597
0.175015
0.118928
0.101524
0.0828243
0.067319
0.0780355
0.0684508
0.0594032
0.0531607
0.0496361
0.0505609
0.0477643
0.0437967
0.0409309
0.0387992
0.0369695
0.0348667
0.0334448
0.0331157
0.0335582
0.0343893
0.0354053
0.0358785
0.0357063
0.0359155
0.0364787
0.0374957
0.0387122
0.0399855
0.0411189
0.0421307
0.0437978
0.0457374
0.0477228
0.0494633
0.0502384
0.05094
0.0515582
0.0507979
0.0498303
0.0482093
0.0489652
0.0539052
0.0814676
0.212479
0.860706
4.96875
29.4328
109.974
211.005
293.077
350.001
390.668
425.23
455.254
480.587
500.557
514.911
523.411
524.683
521.899
511.947
495.227
471.974
443.389
410.03
370.978
323.995
248.578
144.454
54.8966
15.8395
1.66295
0.80476
0.420245
0.265986
0.202793
0.178825
0.168352
0.156035
0.143437
0.155854
0.148058
0.135821
0.126895
0.117142
0.105266
0.102292
0.0935462
0.0848097
0.0745074
0.0632707
0.0546455
0.046412
0.040545
0.0295035
0.0137033
-0.00566861
-0.0276489
-0.0486795
-0.0749183
-0.10047
-0.121841
-0.141437
-0.160436
-0.185877
-0.226681
-0.27499
-0.336469
-0.383772
-0.417185
-0.472465
-0.541313
-0.625313
-0.676648
-0.744174
-0.845076
-0.952649
-1.02437
-1.10634
-1.27059
-1.38161
-1.44679
3.25134
53.6535
134.348
213.764
280.04
7.2053
3.24858
2.94593
2.47337
2.20722
1.95984
1.73238
1.55055
1.35941
1.17522
1.0413
0.898947
0.769488
0.666643
0.574157
0.490135
0.417641
0.361977
0.313802
0.266669
0.223446
0.184209
0.1487
0.116361
0.0871894
0.0624834
0.0430133
0.0290766
0.0188373
0.0100101
0.00280955
-0.0037518
-0.0122095
-0.0232171
-0.0345609
-0.0455136
-0.0524391
-0.0564818
-0.0647806
-0.0732158
-0.078299
-0.0816739
-0.08313
-0.0888303
-0.0931277
-0.0941776
-0.101299
-0.106049
-0.108364
-0.112441
-0.11782
-0.109744
-0.0441884
0.285476
3.12627
29.3205
134.004
271.597
374.584
436.204
475.319
503.128
525.977
543.141
553.713
556.309
555.016
545.147
527.092
501.822
467.75
418.909
322.64
174.407
57.8707
11.119
1.87723
0.767091
0.338531
0.167126
0.113818
0.0816923
0.0862968
0.0814711
0.0692394
0.076453
0.0725845
0.0648292
0.0586067
0.0546445
0.053646
0.0492539
0.0448308
0.0417718
0.0394161
0.0374222
0.0355364
0.0342527
0.0338207
0.0340226
0.0343119
0.0344809
0.0341854
0.0339469
0.0337281
0.0335887
0.0335775
0.0335219
0.0336625
0.0344947
0.0355977
0.0374161
0.0395221
0.0418636
0.0442266
0.0460505
0.0477307
0.0495579
0.0501634
0.0502669
0.0499248
0.0503597
0.0482593
0.0430905
0.0403895
0.048591
0.112436
0.493191
3.26122
24.1413
117.434
249.701
359.461
427.346
470.373
499.45
522.212
538.059
545.812
544.474
540.552
528.125
508.573
482.78
450.672
403.57
311.754
183.915
72.7649
20.4071
2.33673
1.0307
0.461168
0.22033
0.130475
0.0851482
0.0725968
0.0764331
0.06856
0.0663987
0.0711656
0.0652375
0.0616891
0.0648878
0.0617539
0.0571319
0.0533135
0.0501746
0.0478102
0.0459156
0.0442984
0.0423417
0.0398351
0.0369439
0.0339824
0.0315835
0.0299141
0.0288767
0.0278921
0.0266369
0.0252586
0.0244152
0.0244212
0.0250656
0.025825
0.0271322
0.0293475
0.0321193
0.0351857
0.0382332
0.0415227
0.0449855
0.048393
0.0512484
0.0537804
0.0558026
0.0572717
0.0566454
0.0543132
0.0529227
0.0555701
0.0886938
0.29929
1.84797
16.2963
108.093
259.747
379.288
448.745
491.34
525.288
551.812
569.485
576.786
575.877
568.256
550.929
525.733
493.127
450.417
382.503
247.033
98.7397
24.8289
2.82354
1.11842
0.466846
0.21207
0.138349
0.0988272
0.0888825
0.0861774
0.0750188
0.0643823
0.0716356
0.0641568
0.0562707
0.0505364
0.04729
0.0474468
0.0449113
0.0414187
0.0387235
0.0366763
0.0349152
0.0330198
0.0317148
0.031374
0.0317276
0.032441
0.0333208
0.0337536
0.0336976
0.0339326
0.0344502
0.0353975
0.0364914
0.0376486
0.0387331
0.0397198
0.0412776
0.0430378
0.0448517
0.0464869
0.0472847
0.0478847
0.0483517
0.0476165
0.0463914
0.0444645
0.0432012
0.0406019
0.0364888
0.0347576
0.0483227
0.160964
0.736754
4.46443
28.1307
121.121
246.398
350.895
415.641
458.566
486.243
506.575
521.268
530.079
531.06
528.549
518.343
500.879
476.006
443.164
392.314
293.735
165.742
61.8652
15.5704
1.95692
0.903725
0.456771
0.283681
0.212556
0.180156
0.164104
0.159837
0.155012
0.146299
0.137139
0.145441
0.138736
0.128194
0.119783
0.11056
0.100128
0.0961927
0.0882446
0.0799701
0.0703618
0.0600292
0.0517331
0.0440252
0.0378746
0.0272225
0.0125274
-0.00555382
-0.0260536
-0.0461857
-0.0704489
-0.0941684
-0.114615
-0.133486
-0.152231
-0.177067
-0.215262
-0.260461
-0.316194
-0.361052
-0.395213
-0.447359
-0.512071
-0.587664
-0.639437
-0.704357
-0.798895
-0.893637
-0.967923
-1.04805
-1.20211
-1.29811
-1.36779
-1.51036
-1.65766
-1.68086
-1.63789
25.3688
2.54984
2.45661
2.38861
2.20648
2.02165
1.82434
1.62301
1.45331
1.2771
1.1079
0.978577
0.846217
0.725783
0.627938
0.541087
0.462446
0.394421
0.341149
0.295275
0.251074
0.21046
0.173569
0.140184
0.109836
0.0825792
0.0594901
0.0412049
0.0279091
0.0179895
0.00955909
0.00261498
-0.00381412
-0.011841
-0.0220246
-0.032463
-0.0424989
-0.0491214
-0.0534456
-0.0610543
-0.0686834
-0.0734604
-0.0768541
-0.0786686
-0.0837996
-0.0877838
-0.0894769
-0.0950105
-0.100825
-0.102572
-0.106602
-0.113241
-0.114577
-0.112259
-0.113114
-0.0546787
0.455173
3.66492
28.6527
138.368
284.247
407.812
476.299
519.108
545.285
558.586
561.193
559.799
547.656
522.67
475.372
369.912
215.824
80.2544
17.4928
2.51303
1.05032
0.455969
0.211552
0.119606
0.0816073
0.0788493
0.0684501
0.0767665
0.0746664
0.0660293
0.0708892
0.0676122
0.0609871
0.0553725
0.0516597
0.0501863
0.0462867
0.0422935
0.0393869
0.0371243
0.0352233
0.0335001
0.0323118
0.0318719
0.0319919
0.0322113
0.0323124
0.0320937
0.0318822
0.0316825
0.031549
0.0315324
0.0314992
0.031657
0.0324211
0.0334516
0.0351084
0.0370358
0.0391687
0.0412779
0.0429449
0.0445086
0.0460896
0.0467391
0.0470101
0.0466766
0.0466657
0.044313
0.0390377
0.0339388
0.0286599
0.0228019
0.0264328
0.0949294
0.568281
3.70968
24.407
118.474
262.024
385.621
461.437
508.176
535.217
547.19
546.913
542.139
524.799
491.085
423.238
313.223
180.606
73.3226
19.5578
2.36938
1.07858
0.506159
0.237705
0.135528
0.0810473
0.0745828
0.0640175
0.0626668
0.0685308
0.0638918
0.0626494
0.0658938
0.0614065
0.0585345
0.060515
0.0578162
0.0537714
0.0502353
0.0472933
0.0450323
0.0431974
0.0415968
0.0397182
0.0373759
0.0346999
0.0319989
0.0297703
0.0281829
0.0271382
0.0261678
0.0250161
0.0237727
0.02301
0.0230011
0.0235545
0.0242735
0.0255317
0.0275735
0.0300989
0.032929
0.0357568
0.0388312
0.0420342
0.0452161
0.0480102
0.0503746
0.0521423
0.0534013
0.0526364
0.0501596
0.0471932
0.0425644
0.0365278
0.0346283
0.0659407
0.368268
3.00387
26.9901
150.784
322.5
447.506
517.872
557.39
576.672
583.726
583.286
575.508
555.649
522.63
454.806
310.687
139.545
40.5158
5.23491
1.63002
0.682186
0.293854
0.160941
0.0961584
0.091972
0.0800369
0.0788529
0.0785307
0.0699973
0.0617387
0.06616
0.0600625
0.0531282
0.047868
0.0448419
0.0444293
0.0421097
0.0390102
0.0364827
0.0345221
0.0328403
0.0311268
0.0299346
0.0295907
0.0298709
0.0304834
0.0312474
0.0316324
0.0316629
0.0319136
0.0323925
0.0332697
0.0342577
0.0353166
0.0363393
0.037285
0.038723
0.0403019
0.0419276
0.0433655
0.044079
0.0445982
0.0449299
0.0443211
0.043274
0.0415054
0.039985
0.0369565
0.0317516
0.0252636
0.0159865
0.0137607
0.0234773
0.115168
0.650965
3.97011
23.6425
105.082
232.786
348.943
431.312
479.889
510.147
527.163
530.173
525.736
509.056
473.277
398.947
286.536
155.001
60.5688
14.2225
2.01802
0.978251
0.474764
0.268926
0.210647
0.176717
0.167102
0.158119
0.150724
0.14926
0.145211
0.137757
0.130182
0.135716
0.129877
0.120649
0.112717
0.104054
0.0947848
0.0902439
0.082932
0.0751372
0.0661986
0.0566981
0.0487945
0.041553
0.0352817
0.0250964
0.011421
-0.00542557
-0.0244887
-0.0436187
-0.0660364
-0.0880349
-0.107471
-0.12557
-0.143905
-0.167893
-0.203541
-0.245682
-0.296332
-0.338665
-0.372927
-0.422219
-0.482448
-0.551008
-0.602415
-0.664773
-0.751589
-0.83808
-0.911242
-0.99017
-1.12397
-1.2179
-1.28954
-1.42667
-1.54606
-1.58289
-1.6625
-1.97161
2.17334
2.18743
2.16046
2.03829
1.8782
1.70186
1.51863
1.35876
1.19545
1.03986
0.916212
0.793244
0.681491
0.589102
0.507785
0.434408
0.370813
0.32021
0.276735
0.235407
0.197401
0.162858
0.1316
0.103235
0.0778528
0.0563453
0.0392363
0.0266219
0.0170979
0.00908282
0.00242324
-0.00381638
-0.0113859
-0.0207885
-0.0303764
-0.039564
-0.0458626
-0.0503167
-0.0573117
-0.0642016
-0.0687313
-0.0720753
-0.0741988
-0.0786717
-0.0824615
-0.084712
-0.0893326
-0.0944057
-0.0957509
-0.101172
-0.107287
-0.108804
-0.109419
-0.118287
-0.117267
-0.10793
-0.0533056
0.365211
3.23098
19.2303
83.8757
202.304
310.715
393.678
440.148
450.172
434.465
382.261
292.87
178.513
79.8808
21.5341
2.68897
1.41163
0.562336
0.250969
0.135245
0.0833774
0.0682742
0.0610903
0.0672811
0.0631442
0.0704594
0.0690626
0.0626617
0.0657507
0.0628398
0.0571242
0.0520541
0.0485824
0.0468079
0.0433019
0.039699
0.0369633
0.034809
0.0330111
0.0314353
0.0303392
0.0299
0.0299542
0.0301161
0.0301837
0.0300076
0.0298174
0.0296367
0.0295082
0.0294888
0.0294692
0.0296415
0.0303357
0.0312958
0.0327958
0.0345571
0.036484
0.0383801
0.0399238
0.0413511
0.0426837
0.0432474
0.0433957
0.0429707
0.0427388
0.0406736
0.0360902
0.0310245
0.0249657
0.0168006
0.0065218
-0.00615287
-0.00150543
0.0802814
0.585114
3.50594
19.1008
76.7393
188.729
293.693
363.551
391.435
390.957
372.871
309.643
215.425
116.396
52.3087
12.9972
1.98778
1.30225
0.496681
0.209644
0.120133
0.0651682
0.0608984
0.0498728
0.0592262
0.0568294
0.057933
0.0628991
0.0598206
0.0589641
0.0610643
0.0575788
0.0551917
0.0563119
0.0539344
0.0503671
0.0471143
0.0443699
0.0422257
0.0404617
0.0388999
0.0371092
0.0349292
0.0324648
0.0299966
0.0279324
0.0264306
0.0253963
0.0244523
0.0233915
0.0222711
0.0215797
0.0215499
0.022028
0.022709
0.0238963
0.025767
0.0280665
0.0306709
0.0332888
0.0361256
0.0390465
0.041928
0.0444404
0.0465265
0.0481041
0.0491502
0.0487032
0.0464863
0.0433504
0.038536
0.031482
0.0223803
0.00883913
0.00260639
0.0576186
0.564427
4.63816
34.0358
154.816
314.186
439.218
509.95
536.035
534.77
503.486
420.771
297.569
150.227
52.836
8.4044
1.95348
1.00688
0.378944
0.187102
0.0992234
0.0862925
0.0690875
0.0774885
0.0725628
0.0729054
0.0725132
0.0654832
0.0588016
0.0611865
0.0560435
0.0499226
0.0451084
0.0422792
0.0414774
0.0393224
0.0365618
0.0342129
0.0323541
0.0307607
0.029208
0.0281219
0.0277809
0.0279989
0.0285202
0.0291821
0.0295312
0.0296223
0.029879
0.0303266
0.0311324
0.0320229
0.0329941
0.0339498
0.0348499
0.0361532
0.03758
0.0390364
0.0402942
0.0409513
0.0413872
0.041581
0.0409722
0.0398626
0.0381268
0.0365556
0.0337869
0.0290306
0.0224828
0.0129232
0.00589703
-0.00416043
-0.0136584
-0.00516819
0.0854807
0.580167
2.97654
13.6582
48.9192
126.43
213.347
277.217
315.814
323.896
304.946
253.24
173.727
94.9044
40.7006
8.13585
1.58497
0.972343
0.425773
0.246502
0.176033
0.138122
0.154265
0.149627
0.150847
0.146236
0.140897
0.139778
0.135931
0.129277
0.122887
0.126413
0.121244
0.113086
0.105619
0.0975405
0.0892415
0.0843882
0.0776271
0.0703235
0.0620308
0.0533037
0.0458315
0.0390242
0.0327836
0.023133
0.0103905
-0.00525545
-0.0229418
-0.0409862
-0.0616705
-0.0820369
-0.100408
-0.117673
-0.135432
-0.158437
-0.191589
-0.230737
-0.276814
-0.316594
-0.350348
-0.396657
-0.452633
-0.514975
-0.565216
-0.624492
-0.704543
-0.783702
-0.854652
-0.930902
-1.0493
-1.13866
-1.21046
-1.33349
-1.4402
-1.48588
-1.57137
-1.81264
1.99647
2.01432
1.99059
1.88725
1.74339
1.58203
1.41455
1.26476
1.1139
0.971074
0.854028
0.740108
0.636726
0.550096
0.47427
0.406066
0.346865
0.299144
0.258175
0.219678
0.184273
0.15208
0.122951
0.0965593
0.073018
0.0530625
0.037123
0.0252251
0.016156
0.00857689
0.00223571
-0.0037581
-0.010861
-0.0195148
-0.028302
-0.0366981
-0.0426592
-0.0471208
-0.053543
-0.0597844
-0.0640663
-0.0673119
-0.0696137
-0.0735592
-0.0771434
-0.0795451
-0.0834185
-0.0872847
-0.0892148
-0.0954759
-0.100819
-0.1021
-0.103848
-0.111019
-0.111138
-0.11622
-0.119793
-0.121434
-0.0943446
0.089189
0.977745
4.6241
15.5031
36.7329
63.329
80.4877
79.7981
61.8842
31.4792
7.87315
2.09905
1.57353
0.599958
0.221966
0.111534
0.0658025
0.0588636
0.0527161
0.0543673
0.0543399
0.0610821
0.0592489
0.0648771
0.0637745
0.0589592
0.0608027
0.0581985
0.0532369
0.0486694
0.0454294
0.0434897
0.0403243
0.0370712
0.0345178
0.0324814
0.030792
0.0293503
0.0283409
0.0279094
0.0279124
0.0280279
0.0280729
0.0279258
0.0277541
0.0275887
0.0274648
0.0274426
0.0274318
0.0276077
0.0282341
0.0291202
0.0304786
0.0320823
0.0338095
0.0355072
0.0369255
0.0382118
0.0393422
0.0398372
0.0399049
0.0394565
0.0389909
0.0368368
0.0325754
0.0277398
0.0222551
0.0147253
0.0040823
-0.0106767
-0.0238401
-0.0388963
-0.0375935
0.0435149
0.480234
2.34243
9.23389
25.4689
49.3716
65.8331
67.1389
60.469
38.278
14.5084
2.87811
1.92181
1.09893
0.365999
0.135142
0.0629761
0.026093
0.033921
0.0280344
0.042133
0.0421441
0.0525051
0.0524592
0.0540318
0.0578912
0.0557995
0.0551552
0.0564691
0.053709
0.0517025
0.0522003
0.0500934
0.0469406
0.0439641
0.0414199
0.0394011
0.0377186
0.0362111
0.0345139
0.0324924
0.030234
0.0279784
0.0260729
0.0246602
0.0236507
0.0227414
0.0217637
0.0207538
0.0201289
0.0200793
0.0204885
0.0211247
0.0222308
0.023935
0.0260288
0.0284132
0.0308323
0.0334293
0.036084
0.0386809
0.040942
0.0428019
0.0441476
0.0449153
0.0443453
0.0420626
0.0390194
0.0348527
0.0284206
0.0190632
0.00460697
-0.0113358
-0.0300536
-0.0349445
0.0613642
0.725393
4.48418
21.9769
68.6771
133.848
171.208
170.329
139.159
86.2314
36.4034
7.4281
2.96391
1.57794
0.415992
0.171871
0.0817478
0.06483
0.0527588
0.065259
0.061061
0.0697661
0.0673198
0.0676909
0.0669596
0.06104
0.0555037
0.0564818
0.0520533
0.0466473
0.0422668
0.0396108
0.0385611
0.036565
0.0340969
0.031927
0.0301783
0.0286798
0.0272705
0.0262827
0.0259488
0.0261143
0.0265569
0.0271266
0.0274559
0.0275862
0.0278409
0.0282593
0.0289953
0.0297967
0.0306848
0.0315682
0.0324218
0.0335924
0.0348797
0.0361727
0.0372674
0.037869
0.0382257
0.0383159
0.0377158
0.0366233
0.0349687
0.033312
0.0304851
0.025874
0.019635
0.0112575
0.00442866
-0.00578081
-0.0186476
-0.0310012
-0.0435625
-0.0389331
0.0395856
0.390607
1.57362
4.76966
11.5238
21.443
31.4998
35.8691
31.3956
19.2963
5.76603
1.6501
1.46024
0.740498
0.263177
0.15948
0.114159
0.0958647
0.11054
0.10973
0.134482
0.136615
0.139526
0.135993
0.131548
0.130381
0.126691
0.120743
0.115464
0.117321
0.1127
0.105473
0.098512
0.0910265
0.0835489
0.0785929
0.0723272
0.0655196
0.0578542
0.0498515
0.042839
0.0364529
0.0303432
0.0213027
0.00942532
-0.00505386
-0.0214067
-0.0383072
-0.0573463
-0.0761528
-0.0934095
-0.109786
-0.126841
-0.148718
-0.179437
-0.215644
-0.257558
-0.294744
-0.327535
-0.37088
-0.422654
-0.479445
-0.527838
-0.583869
-0.657354
-0.72998
-0.797794
-0.870956
-0.976116
-1.06026
-1.13073
-1.24172
-1.33711
-1.38796
-1.47244
-1.66372
1.84467
1.85766
1.83296
1.74023
1.6103
1.46313
1.31041
1.17115
1.03241
0.901654
0.791915
0.686814
0.591561
0.510905
0.440546
0.37745
0.32262
0.277947
0.239587
0.203891
0.171082
0.141239
0.114239
0.0898125
0.0680824
0.0496547
0.0348805
0.0237317
0.0151663
0.00804609
0.00205202
-0.00365107
-0.010274
-0.0182087
-0.026235
-0.0338901
-0.039495
-0.0438757
-0.049762
-0.0554178
-0.0594264
-0.0625548
-0.0649653
-0.0684694
-0.0718339
-0.0744534
-0.0777673
-0.0811327
-0.083829
-0.0891796
-0.0931193
-0.0958671
-0.0975017
-0.103235
-0.104675
-0.108164
-0.112968
-0.12039
-0.131539
-0.137277
-0.133312
-0.133735
-0.135544
-0.138653
-0.142622
-0.13987
-0.0722859
0.176731
0.480804
0.422513
0.219659
0.103278
0.0418194
0.0143914
0.0168381
0.0248076
0.039932
0.0436648
0.0484332
0.0502763
0.0558474
0.0552245
0.0595414
0.058682
0.0550224
0.0560098
0.0536686
0.0493448
0.0452417
0.0422266
0.0402204
0.0373551
0.0344187
0.0320515
0.0301417
0.0285672
0.0272501
0.0263208
0.0259026
0.0258658
0.0259444
0.0259705
0.0258458
0.0256907
0.0255387
0.0254202
0.0253923
0.0253861
0.0255569
0.0261168
0.0269246
0.0281482
0.0295879
0.0311371
0.0326411
0.0339112
0.0350584
0.0360158
0.0364171
0.0364043
0.0359264
0.0352741
0.0331512
0.0292599
0.0246709
0.0193355
0.0120381
0.00202653
-0.0109674
-0.023974
-0.0415026
-0.0589205
-0.0746056
-0.0873211
-0.0966948
-0.110016
-0.119436
-0.122713
-0.0646137
-0.110584
-0.0243055
0.676412
0.580293
0.319465
0.131513
0.0428269
-0.0092826
-0.0231521
-0.0138293
-0.00915751
0.0148629
0.0205149
0.0354802
0.0385895
0.0475157
0.0484622
0.050142
0.0531366
0.0517327
0.0512526
0.0520146
0.0497977
0.0481002
0.0481695
0.0462919
0.0435026
0.0407943
0.0384507
0.0365585
0.0349673
0.0335262
0.0319299
0.0300637
0.0279999
0.0259468
0.0241953
0.0228755
0.0219028
0.0210346
0.0201356
0.019224
0.0186595
0.0186014
0.0189473
0.0195292
0.0205593
0.0221032
0.0240003
0.0261762
0.028403
0.0307676
0.0331708
0.0355066
0.0375274
0.0391685
0.0403194
0.0408873
0.0402161
0.038046
0.035044
0.0308392
0.0245048
0.0155224
0.00288514
-0.0124002
-0.0332147
-0.0555047
-0.0731125
-0.0736647
-0.016173
0.114955
0.208462
0.303739
0.335069
0.0557824
0.650093
1.98584
2.09795
1.05016
0.396709
0.145116
0.024115
0.0122178
0.0126444
0.0346375
0.0412947
0.0563701
0.0563225
0.063501
0.0623056
0.0625495
0.0615966
0.0565763
0.0519218
0.0519526
0.0480961
0.0433304
0.0393659
0.0368813
0.0356781
0.0338323
0.0316156
0.029623
0.027991
0.026596
0.0253178
0.0244208
0.0240975
0.0242187
0.0245926
0.0250767
0.0253901
0.0255464
0.0257955
0.0261838
0.026848
0.0275673
0.0283696
0.0291736
0.0299664
0.0310285
0.032162
0.0332991
0.03425
0.034775
0.0350521
0.0350545
0.0344543
0.0333797
0.0318125
0.0301147
0.0273408
0.0229758
0.0170928
0.00944384
0.00269674
-0.00687191
-0.0186707
-0.0308696
-0.0457685
-0.0614035
-0.0765556
-0.0894846
-0.093325
-0.0935396
-0.101269
-0.112504
-0.11688
-0.108434
-0.00161808
0.143522
0.197425
0.11895
0.0757223
0.0455262
0.0258176
0.0330262
0.0518934
0.0647439
0.0922056
0.0999748
0.121824
0.125856
0.128956
0.126011
0.122232
0.120983
0.117484
0.112175
0.107742
0.108434
0.104259
0.0978361
0.0913948
0.0845014
0.077743
0.0728372
0.0670346
0.0607247
0.0536699
0.0463527
0.0398189
0.0338475
0.0279429
0.0195154
0.00851905
-0.00482049
-0.0198764
-0.0355941
-0.0530603
-0.0703635
-0.0864721
-0.101902
-0.118134
-0.138772
-0.167109
-0.20044
-0.238509
-0.273078
-0.304528
-0.344881
-0.392556
-0.444275
-0.490325
-0.542911
-0.610134
-0.676726
-0.74084
-0.810116
-0.90383
-0.982348
-1.05042
-1.15015
-1.23604
-1.2892
-1.37021
-1.5223
1.69685
1.70428
1.6786
1.59536
1.4785
1.34492
1.20627
1.07785
0.950948
0.831742
0.729814
0.633362
0.546054
0.471521
0.406625
0.34859
0.298112
0.256618
0.220962
0.18805
0.157831
0.130339
0.105467
0.0829978
0.0630535
0.0461334
0.032522
0.0221528
0.014134
0.00749199
0.0018723
-0.00350027
-0.00963429
-0.0168749
-0.0241761
-0.0311299
-0.0363636
-0.0405896
-0.0459704
-0.0510908
-0.0548251
-0.0578265
-0.0602686
-0.06341
-0.0665783
-0.0693394
-0.0723587
-0.0752964
-0.0777762
-0.0822033
-0.0862631
-0.0906234
-0.0902138
-0.0958961
-0.0979353
-0.100593
-0.105539
-0.112455
-0.121801
-0.127136
-0.124583
-0.125412
-0.126904
-0.128823
-0.131877
-0.131048
-0.122889
-0.100346
-0.0815438
-0.0724641
-0.0667299
-0.0544431
-0.0358722
-0.0242848
-0.00145458
0.016255
0.0329333
0.038987
0.0439181
0.0463187
0.0508545
0.051013
0.0544508
0.0537956
0.05096
0.0513371
0.049211
0.0454361
0.0417637
0.0389754
0.0369769
0.034383
0.0317386
0.02956
0.0277864
0.0263298
0.0251306
0.0242807
0.0238814
0.0238161
0.0238648
0.0238756
0.0237683
0.0236281
0.0234895
0.023377
0.0233434
0.023336
0.0234997
0.0239905
0.0247203
0.0258051
0.0270856
0.0284613
0.029786
0.0309079
0.0319053
0.0326978
0.0329972
0.0329029
0.0323857
0.0315597
0.0295038
0.025873
0.021551
0.0164338
0.00955625
0.000285235
-0.0115152
-0.0240794
-0.0399064
-0.0556523
-0.0710481
-0.0861181
-0.0998358
-0.112338
-0.119572
-0.119008
-0.108774
-0.112753
-0.121124
-0.0801246
-0.0839507
-0.0822116
-0.0736519
-0.0646886
-0.0555874
-0.0473322
-0.0258394
-0.0131356
0.00959022
0.0178995
0.0312528
0.0354752
0.042985
0.0445083
0.0461919
0.0485715
0.0476367
0.0472597
0.0476578
0.0458703
0.0444178
0.0442038
0.0425191
0.0400547
0.0376016
0.0354549
0.0336951
0.0322049
0.0308427
0.0293552
0.0276428
0.0257563
0.0239049
0.0223038
0.0210793
0.0201535
0.0193329
0.0185081
0.0176879
0.0171777
0.0171101
0.0174019
0.0179313
0.0188777
0.0202672
0.0219708
0.0239273
0.0259455
0.0280806
0.0302335
0.032311
0.0341066
0.0355428
0.0365202
0.0369105
0.0361713
0.0341438
0.0312344
0.0271855
0.0211408
0.0126701
0.000854198
-0.0138401
-0.0328105
-0.0534844
-0.0740081
-0.0963179
-0.116478
-0.124527
-0.127119
-0.126864
-0.107988
-0.117487
-0.0703474
0.0469916
0.0531937
-0.00598001
-0.0538298
-0.0496918
-0.0448173
-0.0199059
-0.000527926
0.0254799
0.0363344
0.0500555
0.0518457
0.0577246
0.0572988
0.0574407
0.0563698
0.0521072
0.0481506
0.0475627
0.0441794
0.0399784
0.0364025
0.0340931
0.0328124
0.0311081
0.029117
0.0273007
0.025791
0.0245021
0.0233468
0.0225366
0.0222284
0.0223137
0.0226272
0.0230313
0.023331
0.023504
0.023743
0.024103
0.0246947
0.025332
0.0260507
0.0267713
0.0274968
0.0284375
0.0294256
0.0304074
0.0312136
0.0316534
0.0318385
0.0317504
0.0311323
0.0300577
0.0285558
0.0268328
0.0241302
0.0200114
0.0145226
0.00753806
0.00114793
-0.00762168
-0.0183219
-0.0297278
-0.04344
-0.0578542
-0.0723739
-0.0859689
-0.0957803
-0.103798
-0.10881
-0.110247
-0.110359
-0.104338
-0.101167
-0.0920143
-0.0736088
-0.0610719
-0.0387915
-0.0192604
-0.00980913
0.0115071
0.0381303
0.0559602
0.0827869
0.0926938
0.110755
0.115574
0.118597
0.116144
0.112917
0.111589
0.108324
0.103599
0.099806
0.0996933
0.0959016
0.090186
0.0842687
0.0779609
0.0718491
0.0671051
0.061748
0.0559356
0.049477
0.0428137
0.0367721
0.0312137
0.0255815
0.0177741
0.00766447
-0.00455792
-0.0183473
-0.0328561
-0.0488076
-0.0646539
-0.0795857
-0.0940167
-0.109321
-0.128628
-0.154629
-0.185146
-0.219628
-0.251567
-0.281375
-0.318705
-0.36237
-0.409376
-0.452697
-0.501678
-0.562899
-0.623799
-0.683775
-0.74866
-0.83223
-0.904893
-0.969693
-1.05906
-1.13646
-1.18976
-1.26544
-1.38712
1.54863
1.55226
1.52685
1.45235
1.34772
1.22731
1.10217
0.984789
0.869502
0.761449
0.667688
0.579758
0.500252
0.431947
0.372522
0.319513
0.273373
0.235161
0.202296
0.17216
0.144525
0.119383
0.0966401
0.076119
0.0579391
0.0425098
0.0300597
0.0204974
0.0130623
0.0069172
0.00169633
-0.00331232
-0.00894911
-0.0155172
-0.0221229
-0.0284098
-0.0332583
-0.0372736
-0.0421708
-0.0468009
-0.0502743
-0.0531066
-0.0555364
-0.0583665
-0.0614358
-0.0641716
-0.0665962
-0.0695234
-0.0707758
-0.0748759
-0.0806347
-0.0843984
-0.0833307
-0.0892292
-0.0911905
-0.0933405
-0.0984337
-0.104619
-0.112273
-0.117112
-0.115137
-0.116154
-0.117788
-0.120704
-0.122898
-0.120581
-0.113059
-0.109222
-0.109099
-0.102293
-0.0909702
-0.0712079
-0.0459128
-0.0281045
-0.0047978
0.0131897
0.0283142
0.0353218
0.0396718
0.0423189
0.0461675
0.0467841
0.0495305
0.0490031
0.0467798
0.0467452
0.0448123
0.0415153
0.0382452
0.0356884
0.033753
0.0314107
0.0290395
0.027051
0.0254198
0.0240825
0.0229957
0.0222252
0.0218492
0.0217641
0.0217895
0.0217861
0.0216938
0.0215666
0.0214392
0.0213311
0.021291
0.0212783
0.0214269
0.0218471
0.0224979
0.0234405
0.0245757
0.0257746
0.0269222
0.0278978
0.0287441
0.029375
0.0295747
0.0293931
0.0288358
0.0278899
0.0258748
0.0224882
0.0183948
0.013516
0.00704805
-0.00149172
-0.012179
-0.0238848
-0.0381609
-0.052529
-0.0667919
-0.0811819
-0.0957643
-0.10919
-0.117938
-0.121693
-0.121441
-0.118045
-0.116068
-0.113726
-0.111056
-0.101153
-0.0846979
-0.0707371
-0.057675
-0.0461407
-0.0263619
-0.0129015
0.00707727
0.0160986
0.0276674
0.0323806
0.0387608
0.0405912
0.0422126
0.044115
0.0435313
0.0432244
0.0433858
0.0419289
0.0406805
0.0402878
0.0387731
0.0366001
0.0343937
0.0324396
0.0308196
0.0294366
0.0281642
0.0267906
0.0252309
0.0235282
0.0218558
0.0204014
0.0192728
0.0184018
0.0176331
0.016877
0.0161417
0.0156787
0.0155994
0.0158428
0.0163185
0.0171696
0.0184044
0.0199287
0.0216628
0.0234688
0.0253637
0.027266
0.0290765
0.0306347
0.0318504
0.0326242
0.0328224
0.0320167
0.0300789
0.0272428
0.0233477
0.0176606
0.00976238
-0.00112145
-0.0145954
-0.0316888
-0.0504911
-0.070152
-0.0915327
-0.114734
-0.132527
-0.139756
-0.13747
-0.128987
-0.123199
-0.127073
-0.12092
-0.115063
-0.107488
-0.0953526
-0.0707463
-0.0526658
-0.0247283
-0.00339972
0.0207
0.0325267
0.0445521
0.0473696
0.0522555
0.052297
0.0523444
0.0512528
0.047638
0.0442448
0.0432783
0.0402893
0.0365928
0.0333901
0.0312581
0.0299624
0.0283955
0.0266149
0.0249706
0.0235845
0.0224011
0.021362
0.0206355
0.0203455
0.0204016
0.0206613
0.020992
0.0212786
0.0214593
0.0216838
0.0220141
0.022534
0.0230954
0.0237353
0.0243682
0.0250258
0.0258337
0.0266918
0.0275222
0.0281849
0.0285363
0.0286265
0.0284438
0.0277902
0.026711
0.0252448
0.0235114
0.0208806
0.0170029
0.0118834
0.00548744
-0.000501775
-0.00851122
-0.0181686
-0.0286479
-0.0409479
-0.0539728
-0.0671206
-0.0797168
-0.0894514
-0.0981182
-0.104358
-0.108321
-0.109009
-0.103391
-0.101761
-0.0971727
-0.083698
-0.0695655
-0.0478117
-0.0266359
-0.0133532
0.00795504
0.0320348
0.0502644
0.0742337
0.0856151
0.100485
0.105536
0.108352
0.106333
0.103577
0.102202
0.0991964
0.0950061
0.0917132
0.0910614
0.0876135
0.0825294
0.0771351
0.0714027
0.0658869
0.0613861
0.0564668
0.0511506
0.0452759
0.0392411
0.0337006
0.0285617
0.0232581
0.0160804
0.00685625
-0.00426833
-0.0168163
-0.0301006
-0.0445847
-0.0590101
-0.0727435
-0.0861262
-0.100414
-0.118311
-0.142017
-0.169778
-0.200883
-0.230184
-0.258107
-0.292383
-0.332121
-0.374681
-0.414982
-0.460218
-0.515667
-0.571107
-0.626633
-0.686734
-0.761162
-0.827817
-0.888634
-0.968375
-1.03801
-1.0898
-1.15911
-1.2569
1.4007
1.40161
1.37713
1.3109
1.21787
1.11023
0.998154
0.891923
0.788057
0.690844
0.605505
0.52601
0.454196
0.392191
0.338252
0.290242
0.24843
0.213584
0.183584
0.156224
0.13117
0.108377
0.087761
0.0691805
0.0527466
0.0387942
0.0275051
0.0187733
0.0119534
0.00632361
0.00152387
-0.00309226
-0.008225
-0.0141391
-0.0200749
-0.0257228
-0.0301736
-0.0339341
-0.0383668
-0.0425388
-0.0457374
-0.0483708
-0.050776
-0.0533835
-0.0561399
-0.058853
-0.0614192
-0.0635612
-0.0647185
-0.0683306
-0.0747011
-0.0769484
-0.0780756
-0.0826019
-0.0847406
-0.0864656
-0.0913737
-0.096775
-0.103155
-0.106847
-0.105484
-0.106577
-0.108215
-0.111105
-0.113292
-0.111224
-0.105272
-0.102524
-0.102388
-0.0961758
-0.0852719
-0.0671246
-0.0443556
-0.0271134
-0.00522607
0.0116932
0.0251069
0.0319998
0.0357717
0.0384855
0.0417298
0.04254
0.0446839
0.0442605
0.0425034
0.0422118
0.0404608
0.037588
0.0346952
0.0323722
0.03054
0.0284387
0.0263258
0.0245277
0.023043
0.0218288
0.0208519
0.0201571
0.0198079
0.01971
0.0197177
0.0197017
0.0196223
0.0195068
0.019389
0.0192838
0.0192368
0.0192146
0.0193428
0.0196931
0.0202603
0.0210653
0.022046
0.02307
0.0240417
0.0248631
0.0255493
0.0260204
0.026111
0.0258361
0.0252111
0.0241794
0.0221954
0.0190582
0.0151966
0.0106018
0.00456417
-0.00324583
-0.0128513
-0.0236872
-0.0363703
-0.049266
-0.0621377
-0.0750916
-0.0882266
-0.100401
-0.108782
-0.113035
-0.113645
-0.110446
-0.107949
-0.106707
-0.102862
-0.0930484
-0.078383
-0.0654982
-0.0534953
-0.0423382
-0.024915
-0.0118095
0.00548617
0.014472
0.0244233
0.0292956
0.0347563
0.0366962
0.0382058
0.0397511
0.0394195
0.0391639
0.0391804
0.0379773
0.0369017
0.0364057
0.0350521
0.0331416
0.0311728
0.0294107
0.0279336
0.0266642
0.0254913
0.0242367
0.0228274
0.0213017
0.0198017
0.0184905
0.017459
0.016649
0.0159355
0.0152446
0.0145868
0.0141649
0.0140748
0.0142721
0.014691
0.0154437
0.0165245
0.017873
0.0193931
0.0210013
0.022657
0.0243126
0.0258641
0.0271774
0.0281657
0.0287292
0.0287367
0.0278438
0.0259518
0.0231894
0.0194245
0.0140674
0.00670006
-0.00329566
-0.0156077
-0.030994
-0.0478643
-0.0656674
-0.0850377
-0.106113
-0.123502
-0.132209
-0.132381
-0.128257
-0.122854
-0.124471
-0.123039
-0.117341
-0.106684
-0.0917076
-0.0686792
-0.0501877
-0.0247957
-0.00404033
0.0174563
0.0290675
0.0395824
0.0428763
0.0469346
0.0472876
0.0472825
0.046225
0.0431611
0.0402426
0.0390612
0.0364222
0.0331825
0.0303379
0.0283886
0.0271222
0.0256936
0.0241076
0.0226289
0.0213703
0.0202977
0.019369
0.0187211
0.0184511
0.0184835
0.0186954
0.0189536
0.0192314
0.0194135
0.0196209
0.019919
0.0203697
0.0208573
0.0214137
0.0219579
0.0225367
0.0232217
0.0239494
0.0246362
0.0251639
0.0254196
0.0254209
0.0251557
0.0244691
0.0233927
0.0219613
0.0202409
0.0177163
0.0140872
0.00933426
0.0034777
-0.00205882
-0.00932606
-0.018029
-0.0275666
-0.0385821
-0.0502441
-0.0619547
-0.0731101
-0.0819661
-0.0898599
-0.0956568
-0.0995625
-0.100143
-0.0958009
-0.0939904
-0.0893681
-0.077521
-0.0640156
-0.0446189
-0.0257457
-0.0127603
0.0064584
0.0265579
0.045152
0.0647504
0.07859
0.0906455
0.095636
0.0982029
0.0965604
0.0942099
0.0928265
0.0900874
0.0863872
0.083503
0.0825105
0.0793815
0.0748708
0.0699947
0.0648265
0.0598712
0.055673
0.0511895
0.0463682
0.0410667
0.0356397
0.0306064
0.0258977
0.0209656
0.0144319
0.00608931
-0.00395392
-0.0152817
-0.0273327
-0.0403879
-0.0534213
-0.0659382
-0.0782283
-0.0914223
-0.107843
-0.129291
-0.154352
-0.182245
-0.208896
-0.234736
-0.265937
-0.301828
-0.34014
-0.377212
-0.418592
-0.46845
-0.518587
-0.569434
-0.624467
-0.690512
-0.751065
-0.807332
-0.878086
-0.940443
-0.989483
-1.05186
-1.13069
1.25304
1.25206
1.22912
1.17083
1.08889
0.993644
0.89425
0.799221
0.706608
0.61998
0.543249
0.472126
0.407919
0.352263
0.303831
0.260801
0.223308
0.191896
0.164825
0.140245
0.117769
0.0973233
0.078834
0.0621869
0.0474834
0.0349966
0.024869
0.0169881
0.0108097
0.00571294
0.00135446
-0.00284492
-0.00746769
-0.0127436
-0.0180308
-0.0230633
-0.0271056
-0.0305767
-0.0345586
-0.0382992
-0.0412245
-0.0436275
-0.0459956
-0.0484865
-0.0509698
-0.0532407
-0.0567765
-0.0576124
-0.0601812
-0.0625074
-0.0681847
-0.0699597
-0.0732835
-0.0757648
-0.0779515
-0.0794068
-0.084121
-0.0888843
-0.0942999
-0.096368
-0.0953817
-0.0962943
-0.0975433
-0.099964
-0.101633
-0.0997425
-0.0951317
-0.092665
-0.0918183
-0.0860182
-0.0761368
-0.060474
-0.0407017
-0.0246941
-0.00453196
0.0109938
0.0225675
0.0288143
0.0321711
0.0346681
0.0373506
0.0382145
0.0399075
0.0395687
0.0381649
0.0377239
0.036149
0.0336576
0.0311176
0.0290324
0.0273341
0.0254633
0.0235972
0.02199
0.0206559
0.0195665
0.0186975
0.0180765
0.0177576
0.0176537
0.0176481
0.0176212
0.0175532
0.017449
0.01734
0.0172374
0.0171844
0.0171524
0.0172557
0.0175425
0.0180226
0.0187019
0.0195263
0.0203793
0.0211865
0.0218526
0.0223736
0.0226902
0.0226664
0.022299
0.0216014
0.0204872
0.0185428
0.0156062
0.0119808
0.0076755
0.00210008
-0.00497947
-0.0134952
-0.0234237
-0.0345265
-0.0459162
-0.0573188
-0.0686885
-0.0801194
-0.0905639
-0.0979142
-0.101702
-0.102218
-0.0995713
-0.0971948
-0.0956934
-0.0917991
-0.0831561
-0.0706738
-0.0592351
-0.0483696
-0.0377927
-0.0226043
-0.0104337
0.00431218
0.012875
0.0214592
0.0262101
0.0308437
0.0327954
0.034187
0.0354577
0.0352915
0.0350819
0.0350091
0.0340131
0.0330875
0.0325469
0.0313443
0.0296755
0.0279339
0.0263658
0.0250344
0.0238861
0.0228198
0.0216889
0.0204301
0.0190775
0.0177414
0.0165707
0.0156382
0.014895
0.0142408
0.0136138
0.013027
0.0126426
0.0125444
0.012698
0.0130564
0.0137112
0.0146431
0.0158167
0.017126
0.0185222
0.0199429
0.0213528
0.0226527
0.0237305
0.0245022
0.0248663
0.0247028
0.0237229
0.0218641
0.0191822
0.0155778
0.0105433
0.00372697
-0.00536237
-0.0164805
-0.0302315
-0.0452964
-0.0612597
-0.0784462
-0.096727
-0.111907
-0.119949
-0.120907
-0.117697
-0.113081
-0.113493
-0.111741
-0.106251
-0.096468
-0.0830592
-0.0631962
-0.0455717
-0.022949
-0.00382711
0.0148097
0.0257646
0.0348862
0.0383346
0.0417362
0.0422788
0.0422451
0.041256
0.0386661
0.0361599
0.0348932
0.0325717
0.0297517
0.0272458
0.0254827
0.024281
0.0229922
0.0215893
0.020275
0.0191484
0.0181882
0.0173656
0.016793
0.0165455
0.0165594
0.0167295
0.0169142
0.0171896
0.0173683
0.0175574
0.017822
0.0182089
0.0186243
0.0190968
0.0195575
0.0200498
0.0206131
0.0212114
0.0217577
0.0221542
0.022308
0.0222216
0.0218813
0.021167
0.0200987
0.0187095
0.0170242
0.0146369
0.0112816
0.00690206
0.00156434
-0.00344779
-0.00999616
-0.0177727
-0.0263775
-0.0361409
-0.0463845
-0.0566372
-0.0662618
-0.0740299
-0.0808726
-0.0858882
-0.0892067
-0.0895419
-0.0862393
-0.0842465
-0.0796052
-0.0691932
-0.0570314
-0.0399724
-0.0233968
-0.0118538
0.00507494
0.0223777
0.0401922
0.0556439
0.0716214
0.0811075
0.085861
0.0881548
0.0868289
0.0848252
0.0834684
0.0809953
0.0777443
0.0752064
0.0740208
0.071196
0.0672132
0.0628484
0.0582325
0.0538128
0.0499606
0.0459145
0.041587
0.0368495
0.0320135
0.0274919
0.023224
0.0187034
0.0128248
0.00535888
-0.00361714
-0.0137424
-0.0245563
-0.036214
-0.0478783
-0.059164
-0.0703218
-0.0823546
-0.0972467
-0.116466
-0.138877
-0.163692
-0.187682
-0.211275
-0.239387
-0.271504
-0.305713
-0.339398
-0.376832
-0.421257
-0.466195
-0.512196
-0.561955
-0.620192
-0.674585
-0.725862
-0.788158
-0.843548
-0.88891
-0.944128
-1.00771
1.10557
1.10347
1.08258
1.03194
0.960682
0.8775
0.790473
0.706659
0.625152
0.548911
0.480915
0.418119
0.361453
0.312179
0.269274
0.231209
0.198029
0.170107
0.14602
0.124227
0.104326
0.0862273
0.0698632
0.055143
0.0421571
0.0311265
0.0221612
0.0151491
0.0096347
0.00508752
0.00118819
-0.00257407
-0.00668199
-0.0113331
-0.0159899
-0.0204259
-0.0240502
-0.027205
-0.0307479
-0.0340809
-0.0367463
-0.0388812
-0.0411981
-0.0435423
-0.0461848
-0.0478658
-0.051321
-0.0519574
-0.0549944
-0.0569916
-0.0612924
-0.0635824
-0.0668122
-0.0689608
-0.0707329
-0.0719951
-0.0767124
-0.080925
-0.0852935
-0.0864207
-0.0856839
-0.0861933
-0.0867853
-0.0886236
-0.0897014
-0.0878803
-0.0841106
-0.0817804
-0.0805419
-0.075333
-0.0665976
-0.0533025
-0.0363834
-0.0215417
-0.00388321
0.0102695
0.0199986
0.0255448
0.028543
0.0307525
0.0330069
0.0338563
0.0351961
0.0349149
0.0337846
0.0332696
0.0318686
0.0297252
0.0275184
0.0256726
0.0241322
0.0224861
0.0208563
0.0194405
0.018259
0.0172959
0.0165334
0.0159857
0.0156992
0.0155947
0.0155799
0.0155444
0.0154862
0.0153931
0.0152923
0.0151923
0.0151338
0.0150899
0.0151655
0.015388
0.0157835
0.0163362
0.017013
0.0177036
0.0183459
0.0188593
0.0192287
0.0193996
0.0192656
0.0188114
0.0180479
0.0168767
0.0149808
0.0122306
0.00884697
0.00483427
-0.000278979
-0.00666427
-0.0141881
-0.0230564
-0.0326843
-0.042575
-0.052441
-0.0621832
-0.0718752
-0.0805808
-0.08669
-0.0897581
-0.0900443
-0.0878519
-0.085734
-0.0842679
-0.0806452
-0.0731642
-0.0624261
-0.0523435
-0.0426404
-0.0330603
-0.0200344
-0.00909754
0.00341345
0.0112889
0.0186776
0.0230918
0.0270285
0.0289036
0.0301628
0.0312084
0.0311503
0.0309806
0.0308539
0.0300322
0.0292423
0.0286986
0.0276414
0.0262019
0.0246805
0.0233054
0.0221229
0.0211019
0.0201479
0.0191437
0.0180358
0.0168536
0.0156745
0.014642
0.0138102
0.0131384
0.0125466
0.0119826
0.0114619
0.0111132
0.011008
0.0111203
0.011418
0.011976
0.0127657
0.0137652
0.0148741
0.0160528
0.0172405
0.0184058
0.0194563
0.0202974
0.02085
0.0210173
0.0206926
0.0196366
0.0178005
0.0152064
0.0117685
0.00706324
0.000788532
-0.00741668
-0.0173313
-0.0294832
-0.0425849
-0.0565271
-0.0713879
-0.0869086
-0.0996588
-0.106428
-0.107214
-0.10445
-0.100649
-0.100515
-0.0987815
-0.0938736
-0.0853522
-0.0733757
-0.0560669
-0.0399683
-0.0203963
-0.00348952
0.0125204
0.0225309
0.0303761
0.0337857
0.0366531
0.0372809
0.0372343
0.0363316
0.0341487
0.0320059
0.0307562
0.028728
0.0262936
0.0241151
0.0225445
0.0214373
0.0202913
0.0190652
0.017914
0.0169211
0.0160724
0.0153535
0.0148533
0.0146304
0.0146303
0.0147642
0.0148988
0.0151549
0.0153249
0.0154942
0.0157232
0.0160462
0.0163925
0.0167837
0.0171606
0.0175656
0.0180136
0.018485
0.0188978
0.0191695
0.0192241
0.0190536
0.018643
0.017902
0.0168459
0.0154956
0.013851
0.0116085
0.00854553
0.0045004
-0.000312138
-0.00483274
-0.0106517
-0.0175311
-0.0251896
-0.0337174
-0.0425722
-0.0513908
-0.0595195
-0.0660977
-0.0718355
-0.0759987
-0.0786415
-0.0787374
-0.076019
-0.07396
-0.0694756
-0.0604086
-0.0499251
-0.0351968
-0.0207689
-0.0103625
0.00454229
0.0197328
0.0354358
0.0483406
0.0638319
0.0717782
0.0761895
0.0781914
0.0771231
0.0754169
0.0741182
0.0719083
0.0690716
0.06684
0.0655728
0.063045
0.0595562
0.0556958
0.0516214
0.0477205
0.0442464
0.0406412
0.0368068
0.0326254
0.0283672
0.0243601
0.0205447
0.0164744
0.0112561
0.00466099
-0.00325994
-0.0121977
-0.0217741
-0.0320598
-0.0423733
-0.0524157
-0.0624061
-0.0732206
-0.0865393
-0.103557
-0.123362
-0.145205
-0.166523
-0.187741
-0.21275
-0.241156
-0.271375
-0.301542
-0.334948
-0.374089
-0.413897
-0.454927
-0.499266
-0.550136
-0.598334
-0.644282
-0.698551
-0.747186
-0.788183
-0.836216
-0.887329
0.958228
0.955704
0.937293
0.894097
0.833167
0.761755
0.686828
0.614213
0.543688
0.477684
0.41851
0.364001
0.314823
0.271954
0.234596
0.201486
0.172616
0.148228
0.127171
0.108173
0.090847
0.0750938
0.0608532
0.048054
0.0367747
0.0271926
0.0193909
0.0132619
0.00843069
0.00444721
0.00102312
-0.00228464
-0.00587315
-0.00991039
-0.0139516
-0.017807
-0.0210061
-0.0238247
-0.026939
-0.0298802
-0.0322826
-0.0340996
-0.0364078
-0.0385657
-0.0411908
-0.0422473
-0.045021
-0.0470269
-0.0487666
-0.0517045
-0.0540835
-0.0572703
-0.0593043
-0.0612368
-0.0638914
-0.0652909
-0.0695586
-0.0730244
-0.0762335
-0.0769176
-0.0761618
-0.0761755
-0.0761963
-0.0773808
-0.0778375
-0.0760472
-0.0727636
-0.070578
-0.0693088
-0.0647839
-0.0572437
-0.0457505
-0.0313951
-0.0182775
-0.00374984
0.00904162
0.0174505
0.0222719
0.0249119
0.0268369
0.0287105
0.029486
0.0305274
0.0302915
0.0293734
0.0288391
0.027609
0.0257892
0.0238989
0.0222931
0.0209271
0.0195033
0.0181034
0.0168779
0.0158526
0.0150182
0.0143594
0.0138853
0.0136338
0.0135334
0.0135145
0.013477
0.0134207
0.0133363
0.0132413
0.0131416
0.0130737
0.0130145
0.013058
0.0132152
0.0135214
0.0139517
0.0144814
0.0150121
0.0154919
0.0158533
0.0160739
0.0161044
0.0158618
0.0153255
0.0144991
0.0132915
0.0114527
0.00889026
0.00575884
0.00206709
-0.00254051
-0.0082126
-0.0148171
-0.0226074
-0.0308485
-0.0392571
-0.0476028
-0.0557194
-0.0636855
-0.0706892
-0.0755238
-0.0778166
-0.0778254
-0.0759511
-0.0741204
-0.072722
-0.0694263
-0.0630031
-0.0539258
-0.0452553
-0.0368007
-0.0284443
-0.0173914
-0.00783042
0.00269271
0.00970954
0.015981
0.0199711
0.0232893
0.0250097
0.0261267
0.0269837
0.0269945
0.0268655
0.0267139
0.0260439
0.0253733
0.0248594
0.0239473
0.022723
0.0214177
0.0202321
0.0192036
0.0183123
0.0174765
0.0166011
0.0156427
0.0146329
0.0136014
0.0127044
0.0119745
0.0113767
0.0108483
0.0103453
0.00988528
0.0095689
0.00945561
0.00952689
0.00976219
0.0102211
0.0108693
0.0116938
0.0126048
0.013574
0.0145343
0.0154607
0.0162704
0.0168809
0.0172201
0.0172027
0.0167299
0.01561
0.0138018
0.0113102
0.00805586
0.00369994
-0.0020155
-0.00936019
-0.0181191
-0.0287248
-0.0399979
-0.0518546
-0.0643083
-0.0770641
-0.0873266
-0.0926188
-0.092968
-0.0904594
-0.0873878
-0.0869831
-0.0853542
-0.081052
-0.0736151
-0.0630924
-0.0484188
-0.0342736
-0.0177931
-0.00312433
0.0104659
0.0193411
0.0260395
0.0292351
0.0316429
0.032282
0.0322348
0.0314357
0.0296158
0.0278061
0.0266325
0.0248852
0.0228156
0.0209526
0.0195803
0.0185894
0.0175895
0.0165366
0.0155463
0.0146861
0.0139529
0.0133333
0.0129031
0.0127071
0.012697
0.0128014
0.0130564
0.0131287
0.0132818
0.0134259
0.0136162
0.0138746
0.0141497
0.0144595
0.0147489
0.0150639
0.0153981
0.0157428
0.0160269
0.0161793
0.0161388
0.0158865
0.0154099
0.0146432
0.0135989
0.0122831
0.010682
0.0085675
0.00580777
0.0022003
-0.00218946
-0.00621089
-0.0112777
-0.0173035
-0.0239608
-0.0312619
-0.0387717
-0.0461793
-0.0528832
-0.0582877
-0.0629124
-0.0661958
-0.0681512
-0.0680141
-0.0655762
-0.0636072
-0.0594937
-0.0517389
-0.0427196
-0.0302238
-0.0177768
-0.00813264
0.00458002
0.017503
0.0309762
0.0425467
0.0548782
0.0626411
0.0666171
0.068318
0.0674539
0.0660042
0.0647897
0.0628373
0.0603838
0.0584312
0.0571641
0.0549286
0.051906
0.0485411
0.0449969
0.0416018
0.0385285
0.0353678
0.0320254
0.0283932
0.0247018
0.0212112
0.0178619
0.0142738
0.00971767
0.00398981
-0.00288578
-0.0106485
-0.0189887
-0.0279232
-0.0369
-0.045689
-0.0544811
-0.0640284
-0.0757373
-0.0905762
-0.107815
-0.12677
-0.145407
-0.164144
-0.186042
-0.210791
-0.237102
-0.263656
-0.292968
-0.326948
-0.361668
-0.397635
-0.436451
-0.480287
-0.522275
-0.562635
-0.609227
-0.651248
-0.687375
-0.728303
-0.769048
0.811021
0.808633
0.793056
0.757136
0.706257
0.646361
0.58331
0.521865
0.462217
0.406339
0.356038
0.309781
0.268051
0.231604
0.199808
0.171648
0.147084
0.126267
0.108279
0.0920849
0.0773331
0.0639248
0.0518068
0.0409242
0.0313432
0.0232041
0.0165682
0.0113359
0.00720332
0.00379948
0.000863954
-0.00197556
-0.00504185
-0.00847552
-0.0119145
-0.0152026
-0.0179694
-0.0204333
-0.0231211
-0.0256752
-0.0278175
-0.0293252
-0.0316875
-0.0336535
-0.0359972
-0.0367
-0.0391668
-0.0419741
-0.0429651
-0.045448
-0.0473083
-0.0507388
-0.0524444
-0.0535822
-0.0566169
-0.0587706
-0.0620701
-0.0652446
-0.0675242
-0.0677045
-0.0666815
-0.0662052
-0.0657374
-0.0662294
-0.0660818
-0.0643038
-0.061377
-0.0594722
-0.0582832
-0.054377
-0.0478257
-0.0379834
-0.0261068
-0.0149746
-0.00333808
0.00771606
0.0150272
0.0190761
0.0212991
0.0229171
0.024434
0.0250979
0.0258898
0.0256868
0.0249407
0.0244243
0.0233687
0.0218502
0.0202644
0.0189
0.0177244
0.0165236
0.0153471
0.0143079
0.0134398
0.0127342
0.0121757
0.0117749
0.0115593
0.0114661
0.0114446
0.0113946
0.0113464
0.0112699
0.0111788
0.0110767
0.0109948
0.0109166
0.0109232
0.0110133
0.011227
0.0115324
0.0119131
0.0122842
0.0126024
0.0128093
0.01288
0.0127725
0.0124216
0.0118063
0.0109246
0.00969439
0.00792055
0.00554636
0.00267312
-0.000681769
-0.00477459
-0.00969743
-0.0153697
-0.0220524
-0.0289579
-0.0359274
-0.0427509
-0.0492817
-0.0555561
-0.0609159
-0.0644797
-0.0659788
-0.0656975
-0.064057
-0.0624752
-0.0612134
-0.0583507
-0.0529723
-0.0454483
-0.0382148
-0.0310764
-0.0239162
-0.0147526
-0.00660602
0.00208976
0.00813873
0.013369
0.0168473
0.019599
0.0211262
0.0220935
0.0227944
0.0228483
0.0227503
0.0226006
0.0220609
0.0215042
0.0210409
0.0202714
0.0192474
0.0181544
0.0171529
0.01628
0.0155186
0.0148041
0.0140583
0.0132477
0.0124036
0.011517
0.0107547
0.0101272
0.00960531
0.00914053
0.00869663
0.0082917
0.00800303
0.00787927
0.00790823
0.00807621
0.00842984
0.0089335
0.00958207
0.0102919
0.011045
0.0117747
0.0124607
0.0130308
0.0134134
0.0135439
0.0133437
0.0127312
0.0115494
0.00977401
0.00739782
0.00435191
0.000367077
-0.00474739
-0.0111635
-0.0186973
-0.0277785
-0.0373033
-0.047127
-0.0572498
-0.0673276
-0.0751696
-0.0789242
-0.0787513
-0.0764232
-0.0738744
-0.0733117
-0.0718094
-0.0681373
-0.0618595
-0.0528993
-0.0408413
-0.0288348
-0.0151425
-0.0027276
0.00858759
0.0162184
0.0218322
0.0246826
0.0266796
0.0272901
0.0272483
0.0265695
0.0250853
0.0235862
0.022532
0.0210612
0.0193372
0.0177767
0.0166091
0.0157468
0.0148976
0.0140107
0.0131756
0.0124461
0.0118283
0.0113042
0.0109426
0.0107743
0.0107571
0.0108302
0.0110821
0.0110864
0.0112262
0.011343
0.0114922
0.0116849
0.011888
0.0121147
0.012315
0.0125351
0.012752
0.0129708
0.0131255
0.0131576
0.0130185
0.012684
0.0121446
0.0113533
0.0103217
0.00904482
0.00749577
0.00549809
0.0030088
-1.26041e-05
-0.00392805
-0.00740885
-0.0118786
-0.017099
-0.0227411
-0.0288319
-0.0350186
-0.0410336
-0.0463615
-0.0506028
-0.0541035
-0.0564958
-0.0577764
-0.0574177
-0.0553341
-0.0535213
-0.0499033
-0.0434105
-0.0355487
-0.025093
-0.0146212
-0.0060646
0.00451968
0.015313
0.0267357
0.0371676
0.0462378
0.0535819
0.0571144
0.0585043
0.0577947
0.0565656
0.0554551
0.0537539
0.0516578
0.0499682
0.0487639
0.0468214
0.0442469
0.0413722
0.0383515
0.0354563
0.032803
0.0300924
0.0272435
0.0241563
0.0210241
0.0180523
0.015182
0.0120989
0.00821529
0.00334659
-0.00249329
-0.00909223
-0.0161994
-0.0237995
-0.0314506
-0.0389782
-0.0465465
-0.0547875
-0.0648575
-0.0775364
-0.0922425
-0.108377
-0.124324
-0.140498
-0.159276
-0.180411
-0.202871
-0.225733
-0.250904
-0.279829
-0.309488
-0.340325
-0.373543
-0.410602
-0.446372
-0.480951
-0.520147
-0.55565
-0.586541
-0.620495
-0.652441
0.663943
0.662141
0.649689
0.620921
0.57987
0.531274
0.479919
0.429608
0.380751
0.334922
0.293524
0.255492
0.221176
0.191159
0.164941
0.141725
0.121463
0.104248
0.0893579
0.0759766
0.0637989
0.0527335
0.0427356
0.0337638
0.025872
0.0191694
0.0136987
0.00937303
0.00594999
0.0031298
0.000694829
-0.0016642
-0.00420368
-0.00703892
-0.00988272
-0.0126104
-0.0149372
-0.0170338
-0.0193093
-0.0215074
-0.0234187
-0.0248172
-0.0270467
-0.0287512
-0.0307584
-0.0320964
-0.0338724
-0.0362366
-0.0373891
-0.0391329
-0.041127
-0.044522
-0.0458871
-0.0478252
-0.0494049
-0.0517115
-0.0542829
-0.0570957
-0.0589183
-0.0586003
-0.0573599
-0.0562831
-0.0552897
-0.055125
-0.0544367
-0.0526665
-0.0502043
-0.0485511
-0.0473542
-0.0439992
-0.0384437
-0.0303592
-0.0208315
-0.0115558
-0.00273072
0.00667563
0.0125557
0.0158812
0.0177125
0.0190104
0.0201856
0.0207111
0.0212827
0.0210993
0.020493
0.0200208
0.019139
0.0179067
0.0166156
0.0154938
0.0145191
0.0135396
0.0125808
0.0117292
0.0110175
0.0104387
0.00998026
0.00965127
0.00947267
0.00938811
0.0093613
0.0092546
0.00924921
0.00918953
0.00910564
0.00900388
0.00891097
0.00881606
0.00878376
0.00880931
0.00892894
0.00911048
0.00934211
0.00955413
0.00970775
0.00975369
0.00966957
0.00942078
0.00895274
0.00824894
0.00730512
0.00605173
0.00434573
0.0021521
-0.000460544
-0.0034667
-0.0070626
-0.011242
-0.0159609
-0.0214893
-0.0270783
-0.0326014
-0.0378986
-0.0428489
-0.047466
-0.0512392
-0.0535528
-0.0542613
-0.0536827
-0.0522373
-0.0509134
-0.0498369
-0.0474556
-0.0431119
-0.0370835
-0.031217
-0.0253757
-0.0194699
-0.0120923
-0.00540453
0.0015851
0.00659813
0.0108335
0.0137545
0.0159764
0.0172785
0.0180864
0.0186482
0.0187196
0.0186378
0.0185062
0.0180783
0.017629
0.01723
0.0166002
0.0157669
0.0148805
0.0140607
0.0133426
0.0127147
0.0121234
0.0115101
0.0108437
0.0101443
0.00940088
0.00878575
0.00826633
0.00782504
0.00742667
0.00704363
0.00669197
0.00643034
0.00629746
0.0062858
0.00638631
0.00663494
0.00699768
0.0074711
0.00798219
0.00851533
0.00901182
0.00945281
0.00977817
0.00992671
0.00984138
0.00945086
0.00869211
0.00743711
0.00568196
0.00341581
0.000584604
-0.00302647
-0.00753757
-0.0130191
-0.0193182
-0.0268706
-0.0345795
-0.0423514
-0.050192
-0.0576769
-0.0631861
-0.0654064
-0.0646447
-0.0624217
-0.0602945
-0.0596905
-0.0584074
-0.0554084
-0.0502789
-0.0430044
-0.033333
-0.0234791
-0.0124317
-0.00229051
0.00684676
0.0131594
0.0177216
0.0201592
0.0217791
0.0223255
0.022298
0.0217364
0.0205614
0.0193524
0.0184509
0.0172511
0.0158556
0.0145866
0.0136268
0.0129029
0.0122058
0.0114804
0.0107984
0.0101994
0.00969363
0.0092649
0.00897022
0.00882934
0.00880729
0.00884313
0.00871824
0.0090088
0.00915252
0.00924669
0.009356
0.00948769
0.00962239
0.00976725
0.00988104
0.0100027
0.0101055
0.0101978
0.0102218
0.0101307
0.00988223
0.00945984
0.0088532
0.00803301
0.00700814
0.00576926
0.00428397
0.00241852
0.000178922
-0.00241286
-0.00557309
-0.00847595
-0.0125375
-0.0168919
-0.0214938
-0.0263989
-0.0312926
-0.0359408
-0.0399289
-0.0430046
-0.0453894
-0.0468902
-0.0475186
-0.0469558
-0.0452361
-0.0436385
-0.0405608
-0.035234
-0.028632
-0.0200618
-0.0114893
-0.0042181
0.00445527
0.0131927
0.022533
0.0313474
0.0377461
0.0443428
0.0475178
0.0487169
0.0481482
0.047121
0.0461378
0.0446875
0.0429327
0.0414997
0.0404056
0.0387571
0.0366146
0.0342218
0.031714
0.0293088
0.0270829
0.0248225
0.022464
0.0199137
0.0173301
0.0148758
0.0124934
0.00993297
0.00671384
0.00271045
-0.00209749
-0.00753886
-0.0134142
-0.0196928
-0.0260272
-0.0322866
-0.0386078
-0.045505
-0.0539068
-0.0644395
-0.0766408
-0.090005
-0.103264
-0.11681
-0.132463
-0.150019
-0.168669
-0.187772
-0.208767
-0.232726
-0.257348
-0.283012
-0.310594
-0.341075
-0.370616
-0.39925
-0.431294
-0.460327
-0.485718
-0.512844
-0.537137
0.516961
0.516112
0.507011
0.485297
0.453891
0.416415
0.376601
0.337382
0.29924
0.263395
0.230914
0.201078
0.174153
0.150581
0.129956
0.111685
0.0957288
0.0821382
0.0703732
0.0598133
0.0502123
0.0414924
0.0336176
0.0265579
0.0203555
0.015092
0.0107943
0.00738975
0.00468808
0.0024832
0.00056007
-0.00130829
-0.00332105
-0.00557014
-0.00783627
-0.0100248
-0.0119244
-0.0136633
-0.015551
-0.0173863
-0.0190283
-0.020603
-0.022324
-0.0235143
-0.0251543
-0.0271027
-0.0283357
-0.0302997
-0.0315348
-0.0332317
-0.0342055
-0.037377
-0.0391517
-0.041648
-0.0423116
-0.044218
-0.0463492
-0.0477847
-0.0493454
-0.0488118
-0.0476547
-0.0461911
-0.04486
-0.0440888
-0.0428933
-0.0411395
-0.0393185
-0.0378749
-0.0366886
-0.0338701
-0.0293673
-0.0229657
-0.0155407
-0.00836802
-0.00167369
0.00540702
0.00992458
0.0126183
0.0141213
0.0150841
0.0159276
0.016299
0.0166788
0.0165093
0.0160246
0.0156183
0.0149146
0.0139571
0.0129531
0.0120738
0.011304
0.0105387
0.00979635
0.00913327
0.00857712
0.00812616
0.00777118
0.00751342
0.00737436
0.00730377
0.00727766
0.00713595
0.00716662
0.00712484
0.00705065
0.00695295
0.00685276
0.00674412
0.00667687
0.00664441
0.00667611
0.00674458
0.00683615
0.0068965
0.00689167
0.006783
0.00654842
0.00616047
0.00557301
0.00477555
0.00376146
0.00247595
0.000822357
-0.00121906
-0.00359423
-0.00626819
-0.00937345
-0.0128939
-0.0167307
-0.0211192
-0.0253519
-0.0293942
-0.0331519
-0.0364979
-0.0394656
-0.0416785
-0.042759
-0.0426749
-0.0417852
-0.0405027
-0.0394576
-0.0385947
-0.036722
-0.0333761
-0.0287645
-0.0242358
-0.0196961
-0.015092
-0.00942275
-0.00421147
0.00115992
0.00510238
0.00837544
0.0107011
0.0124085
0.0134484
0.0140822
0.0145088
0.0145748
0.0145111
0.0143989
0.0140744
0.0137249
0.0134048
0.012914
0.0122715
0.011584
0.0109489
0.0103867
0.00989759
0.00943269
0.00895622
0.00843677
0.00789687
0.00729626
0.0068247
0.00641535
0.00605853
0.00573076
0.00541146
0.00511454
0.00488319
0.00474647
0.00470045
0.00473917
0.0048879
0.00511654
0.00542109
0.00574196
0.00606277
0.00633503
0.00653698
0.00662164
0.00653749
0.00623654
0.00565861
0.00474857
0.0034159
0.00166203
-0.000514361
-0.0031548
-0.00641571
-0.0103615
-0.0150286
-0.0201934
-0.0262338
-0.0320558
-0.0377323
-0.043247
-0.0481814
-0.0514084
-0.0521026
-0.0506885
-0.0484977
-0.0467501
-0.0461962
-0.0451736
-0.0428476
-0.0388854
-0.0332659
-0.0258397
-0.0181942
-0.00969951
-0.001837
0.00520239
0.0101664
0.0137101
0.0156748
0.0169296
0.0173741
0.0173582
0.016911
0.0160179
0.0150842
0.0143605
0.0134259
0.0123492
0.0113679
0.0106148
0.0100433
0.00949719
0.00893388
0.00840497
0.00793925
0.00754424
0.00721271
0.00698526
0.00687282
0.00685071
0.00685836
0.00638536
0.00694843
0.00709097
0.00716391
0.00723616
0.00731373
0.00738419
0.00745239
0.00748524
0.00751262
0.00750897
0.00747968
0.0073805
0.00717234
0.00681942
0.00631004
0.0056309
0.00476652
0.00372493
0.00250509
0.00107742
-0.000645877
-0.00264516
-0.00492863
-0.00735668
-0.00994399
-0.0133469
-0.0168025
-0.0203599
-0.0240412
-0.0276107
-0.0308806
-0.0335502
-0.0354615
-0.0367553
-0.0373797
-0.037375
-0.0366215
-0.0354065
-0.0339988
-0.0314689
-0.0272447
-0.0219761
-0.0152021
-0.00842718
-0.00255344
0.00424494
0.0110498
0.0181406
0.025176
0.0290497
0.0349297
0.0376477
0.0387606
0.0383444
0.0375186
0.0366829
0.0354959
0.0340818
0.0329071
0.0319632
0.0306177
0.0289043
0.0269962
0.0250034
0.023093
0.0213162
0.0195241
0.0176641
0.0156547
0.0136237
0.0116986
0.00981973
0.00779459
0.00528862
0.00212918
-0.00165851
-0.00595515
-0.0106078
-0.0155799
-0.0206068
-0.0255927
-0.0306499
-0.0361839
-0.0429189
-0.0513274
-0.0610564
-0.071701
-0.0822288
-0.0930972
-0.105622
-0.119629
-0.134497
-0.149794
-0.166583
-0.185638
-0.205231
-0.225676
-0.247608
-0.271601
-0.294919
-0.317541
-0.342495
-0.365241
-0.384944
-0.405375
-0.422756
0.370032
0.37044
0.364881
0.350176
0.328306
0.30184
0.27348
0.245342
0.217884
0.191995
0.168454
0.146806
0.127236
0.110064
0.0950189
0.0816828
0.0700234
0.0600711
0.0514496
0.0437191
0.0366949
0.0303155
0.0245539
0.0193908
0.0148578
0.0110115
0.00786808
0.00537331
0.00339241
0.00175415
0.000334617
-0.00105057
-0.00254111
-0.00420344
-0.00588174
-0.00750987
-0.00894119
-0.0102662
-0.011704
-0.0130761
-0.014323
-0.0159832
-0.0170429
-0.0179103
-0.019235
-0.0209133
-0.0220829
-0.0237723
-0.0250472
-0.0266171
-0.0271649
-0.0298333
-0.0321512
-0.034188
-0.0349142
-0.0365592
-0.0382868
-0.0386458
-0.0395332
-0.0387533
-0.0375189
-0.0359627
-0.0344506
-0.0330866
-0.0314338
-0.0296759
-0.0282255
-0.0271558
-0.0261046
-0.0238825
-0.020472
-0.0157858
-0.010377
-0.00532204
-0.000504518
0.00375105
0.00729375
0.00934061
0.0104799
0.0111137
0.0116467
0.011864
0.0120745
0.0119181
0.0115463
0.0112191
0.0106931
0.0100009
0.00927823
0.00864119
0.00808164
0.00752939
0.00700127
0.00652634
0.00612648
0.00580472
0.00555399
0.0053686
0.00527081
0.00521896
0.00520323
0.0050771
0.00511646
0.00508524
0.00501797
0.00492319
0.00481548
0.00469236
0.00459069
0.00450242
0.00444975
0.00441008
0.00436905
0.00428572
0.00413273
0.0038807
0.0035084
0.00299478
0.00230493
0.00143051
0.000364567
-0.000933803
-0.00253003
-0.00442192
-0.00657129
-0.00893158
-0.0115825
-0.014511
-0.0174945
-0.0208404
-0.0237454
-0.0263635
-0.0285932
-0.0303203
-0.0316329
-0.032276
-0.0321089
-0.0312109
-0.029989
-0.0288457
-0.0280856
-0.0274589
-0.0261136
-0.023743
-0.0204951
-0.0172829
-0.014046
-0.0107517
-0.00672854
-0.00300049
0.000812714
0.00364154
0.00597388
0.00764697
0.00885428
0.00960366
0.0100547
0.0103482
0.0104038
0.0103653
0.010274
0.0100504
0.00980087
0.00956964
0.00921961
0.00876856
0.00827546
0.00782599
0.00742149
0.0070734
0.00673863
0.00640031
0.00603048
0.0056619
0.00521568
0.00487913
0.00457717
0.00430457
0.00404749
0.00379149
0.00354736
0.00334553
0.00320653
0.00312839
0.0031071
0.0031588
0.003258
0.00339986
0.00353665
0.00365423
0.00371211
0.00368871
0.00354794
0.00324733
0.00274779
0.00200291
0.000964523
-0.000426557
-0.00216567
-0.00424501
-0.00669446
-0.00961855
-0.0130354
-0.0169103
-0.0210717
-0.0256583
-0.0296986
-0.0333538
-0.0365492
-0.038968
-0.0399144
-0.0390343
-0.0368924
-0.034677
-0.0332853
-0.0328478
-0.0321081
-0.0304503
-0.027639
-0.0236592
-0.0184002
-0.0129631
-0.00694109
-0.0013275
0.00367793
0.00724986
0.00977604
0.0111972
0.0120871
0.0124089
0.0123942
0.0120724
0.0114439
0.0107778
0.0102525
0.00958371
0.0088215
0.00812678
0.00758323
0.00717417
0.00677994
0.0063792
0.00600312
0.00567136
0.00538768
0.00515366
0.00499297
0.00491129
0.00489397
0.00489461
0.00453336
0.00494635
0.00506014
0.00510702
0.00514026
0.00516461
0.00517185
0.00516476
0.00511866
0.00505496
0.00494953
0.00480482
0.00459069
0.00427444
0.00382756
0.00323903
0.00249526
0.00158798
0.000523917
-0.000688138
-0.00207069
-0.00366467
-0.00544633
-0.00743526
-0.00941402
-0.0116581
-0.0142968
-0.0169488
-0.0195485
-0.0220153
-0.0242421
-0.0260947
-0.0273921
-0.0280771
-0.0282312
-0.027958
-0.0273149
-0.0263638
-0.0253052
-0.0242925
-0.0223817
-0.0192546
-0.0153276
-0.0103277
-0.00531953
-0.000896025
0.00412185
0.00918709
0.0140831
0.0189993
0.0210752
0.0255977
0.0276442
0.0285203
0.0282632
0.0276697
0.0270285
0.02615
0.0251101
0.0242246
0.0234869
0.0224768
0.02121
0.0198032
0.0183365
0.0169283
0.0156147
0.0142927
0.012918
0.0114382
0.00994306
0.00851883
0.00712329
0.00563045
0.00374598
0.00145087
-0.00131819
-0.00446826
-0.00788897
-0.0115463
-0.0152498
-0.0189359
-0.0226953
-0.0268329
-0.0318818
-0.038147
-0.0453927
-0.0533198
-0.0611672
-0.0693213
-0.0787015
-0.0891656
-0.100265
-0.111721
-0.124285
-0.138487
-0.153068
-0.168271
-0.184561
-0.202135
-0.219277
-0.235901
-0.25376
-0.270254
-0.284215
-0.298142
-0.309171
0.223004
0.224707
0.222613
0.214705
0.202151
0.186511
0.169475
0.152362
0.13554
0.119587
0.105006
0.0915553
0.0793396
0.0685675
0.0591392
0.0507871
0.0434787
0.0372371
0.0318417
0.0270228
0.0226585
0.0187037
0.0151371
0.0119454
0.00914871
0.00678103
0.00485484
0.00333624
0.00211028
0.00117564
0.000329284
-0.000497846
-0.00140161
-0.00243257
-0.0034991
-0.00456175
-0.00553465
-0.00647891
-0.00754104
-0.00858866
-0.00958816
-0.0110458
-0.0118441
-0.0132299
-0.0146003
-0.0162704
-0.017739
-0.0195492
-0.0211798
-0.0228789
-0.0241277
-0.0265904
-0.0286294
-0.0305358
-0.0311926
-0.0322955
-0.0331945
-0.0328053
-0.0324243
-0.0308048
-0.0288514
-0.0267012
-0.024532
-0.022353
-0.0200922
-0.0182971
-0.0175853
-0.0166362
-0.0157329
-0.0141681
-0.0119296
-0.00898506
-0.00564377
-0.00255865
-3.74279e-05
0.00226688
0.004671
0.005962
0.00663193
0.0069692
0.00723479
0.00732206
0.00739754
0.00726909
0.00701616
0.00678848
0.00645091
0.00602586
0.00558451
0.00519519
0.00485333
0.00451925
0.00420275
0.00391707
0.00367642
0.00348381
0.00333419
0.00322351
0.00316549
0.00313691
0.00313759
0.00314915
0.00312729
0.00308494
0.00301189
0.00290964
0.00278577
0.00263835
0.00249388
0.00234057
0.00219486
0.00203726
0.00185528
0.00161919
0.00130953
0.000905537
0.000388531
-0.000256872
-0.00104795
-0.00199449
-0.00310256
-0.00439925
-0.0059216
-0.00764264
-0.00953985
-0.0115449
-0.0137031
-0.0159495
-0.0180807
-0.020262
-0.0219306
-0.0232233
-0.0239476
-0.0240936
-0.0238083
-0.0229285
-0.0215382
-0.0198249
-0.0182615
-0.0172475
-0.0167837
-0.0164088
-0.0156004
-0.0141871
-0.0122589
-0.0103401
-0.0084001
-0.00642368
-0.00401816
-0.00178166
0.000496792
0.00217742
0.0035732
0.00456948
0.00529395
0.00574858
0.00601871
0.00618868
0.00623038
0.00621418
0.00615324
0.00602617
0.00587691
0.00573914
0.00552996
0.00526277
0.0049665
0.00469889
0.00445513
0.00424693
0.00404586
0.00384318
0.00362699
0.00343483
0.00318596
0.00296192
0.00275723
0.00256254
0.00237064
0.00217241
0.0019753
0.00179808
0.00165134
0.00153439
0.00144579
0.00139494
0.00135973
0.00133362
0.00128027
0.00118741
0.00102204
0.000765714
0.000392278
-0.000129711
-0.000831622
-0.00174275
-0.00289808
-0.00434016
-0.00604714
-0.00800591
-0.0102232
-0.0127586
-0.015592
-0.0186326
-0.0216901
-0.0247239
-0.027111
-0.028814
-0.0297478
-0.0297598
-0.028527
-0.0260935
-0.0231994
-0.0209253
-0.0198893
-0.0196136
-0.0191703
-0.018176
-0.0164956
-0.014126
-0.0109995
-0.00774824
-0.00414769
-0.000778826
0.00220906
0.00434381
0.00585217
0.00670653
0.00723815
0.00743736
0.00742189
0.00723359
0.00686262
0.00646234
0.00614608
0.00574453
0.00529241
0.00487834
0.00454885
0.00430401
0.00406577
0.00382647
0.00360183
0.00340303
0.00323303
0.00309349
0.00299779
0.00294932
0.00294009
0.00294709
0.00295444
0.00303953
0.0030862
0.00308903
0.00307109
0.00303157
0.00296575
0.00287487
0.00273949
0.00257558
0.00235813
0.00208994
0.00175143
0.00131834
0.000769197
9.42399e-05
-0.00071747
-0.00166921
-0.00275343
-0.00395736
-0.00529258
-0.00676249
-0.00833177
-0.0100119
-0.0116418
-0.013408
-0.0153288
-0.0171702
-0.0188225
-0.0201757
-0.0211623
-0.0216987
-0.0215958
-0.0209815
-0.0199489
-0.0187234
-0.0173992
-0.0162138
-0.0158442
-0.0149603
-0.0136256
-0.0115622
-0.00897817
-0.00575221
-0.00252635
0.000385348
0.00366343
0.00702492
0.0101025
0.0124199
0.0134587
0.0161434
0.0173735
0.0178568
0.0176809
0.0172852
0.0168375
0.0162533
0.0155728
0.0149801
0.014473
0.0138122
0.0130052
0.0121194
0.0112035
0.0103283
0.00951673
0.00870672
0.00786718
0.00697958
0.00609052
0.0052399
0.00441415
0.0035058
0.00246075
0.00104813
-0.000658377
-0.00263065
-0.00480036
-0.00713697
-0.00951722
-0.0119027
-0.0143583
-0.01709
-0.0204494
-0.0246143
-0.0294377
-0.0347107
-0.0400959
-0.0456448
-0.0520009
-0.0590599
-0.0665204
-0.0742327
-0.0826766
-0.0921585
-0.101822
-0.111845
-0.122514
-0.133802
-0.144737
-0.155215
-0.166103
-0.175804
-0.183667
-0.191038
-0.19598
0.0757676
0.0788979
0.0805082
0.0797254
0.0768833
0.0725008
0.0672109
0.0615337
0.0556814
0.0499235
0.0444939
0.0393486
0.0345519
0.0302225
0.0263547
0.0228593
0.0197451
0.0170301
0.0146418
0.0124785
0.0104934
0.00867045
0.00700771
0.00551128
0.00419951
0.00308713
0.00217463
0.00143906
0.00082078
0.000344631
-0.000139131
-0.000645768
-0.00122282
-0.00189149
-0.00259669
-0.00333485
-0.00407624
-0.00484396
-0.00571862
-0.00663096
-0.00758474
-0.00875818
-0.00974968
-0.0112132
-0.0126248
-0.0143354
-0.0159815
-0.0177866
-0.0195804
-0.021211
-0.0228118
-0.0247833
-0.0262736
-0.027772
-0.0281422
-0.0283869
-0.0281363
-0.0267506
-0.024992
-0.0224498
-0.0197432
-0.0168159
-0.0138494
-0.0109698
-0.00834316
-0.00679345
-0.00599304
-0.00535838
-0.00484487
-0.00418192
-0.00335188
-0.00232836
-0.00120885
-0.000175757
0.000470558
0.0011971
0.0019661
0.00234581
0.00250697
0.00256742
0.00260864
0.0025957
0.00258588
0.00251389
0.00240571
0.00230939
0.00218142
0.00203069
0.00187617
0.00174122
0.00162402
0.00151098
0.00140409
0.00130803
0.00122755
0.00116315
0.00111276
0.00107625
0.00105698
0.00104989
0.00106365
0.00108357
0.00105765
0.00100791
0.000924836
0.000807745
0.000659714
0.000479406
0.000282759
5.09491e-05
-0.000201884
-0.000495945
-0.000839779
-0.00125429
-0.00174918
-0.0023367
-0.00303298
-0.00384752
-0.00478573
-0.00585323
-0.00704762
-0.00837924
-0.00985445
-0.011404
-0.0130328
-0.0146324
-0.0162109
-0.0176485
-0.0187653
-0.0196067
-0.0198595
-0.0195657
-0.0186593
-0.0171084
-0.0151778
-0.0128153
-0.0103405
-0.00803903
-0.006415
-0.00571548
-0.00555656
-0.00543688
-0.00516981
-0.00470157
-0.00406371
-0.00342818
-0.00278436
-0.00212861
-0.00133158
-0.000596751
0.000158558
0.000713649
0.00117954
0.00151339
0.00175563
0.00191367
0.0020038
0.00206061
0.00207833
0.00207438
0.00205372
0.00201205
0.00196113
0.00191533
0.00184565
0.00175624
0.00165831
0.00156899
0.0014875
0.0014177
0.00135075
0.00128312
0.00121603
0.0011975
0.00108469
0.000987215
0.000880395
0.000761913
0.00063248
0.000488279
0.000334613
0.000176994
1.69833e-05
-0.000145221
-0.000309467
-0.000474373
-0.000660057
-0.000873585
-0.00114216
-0.00147439
-0.00189879
-0.00242745
-0.00307876
-0.00387103
-0.00482549
-0.00596674
-0.00730169
-0.00885662
-0.010572
-0.0124333
-0.0144019
-0.0165096
-0.018647
-0.0207078
-0.022416
-0.0236625
-0.0240858
-0.023529
-0.0220179
-0.019527
-0.0161381
-0.012369
-0.00908108
-0.00713362
-0.00657929
-0.00648443
-0.00634248
-0.00601691
-0.00545624
-0.00467159
-0.0036407
-0.00256943
-0.00138352
-0.000266317
0.000730605
0.00144052
0.00194472
0.00223314
0.00241009
0.00248159
0.00247497
0.00241586
0.00229305
0.00215687
0.00205047
0.00191649
0.00176639
0.00162832
0.00151777
0.00143573
0.00135645
0.00127658
0.00120195
0.0011356
0.00107913
0.00103227
0.00100043
0.000984774
0.000983134
0.000995444
0.00109801
0.00103843
0.00103049
0.00098647
0.000910743
0.000797883
0.000646853
0.000460588
0.000220414
-5.9709e-05
-0.000410678
-0.000823046
-0.00131102
-0.00188815
-0.00256764
-0.0033575
-0.00426288
-0.0052797
-0.00639529
-0.00759358
-0.00887612
-0.0102107
-0.0115234
-0.0128417
-0.0140314
-0.015195
-0.016312
-0.0171774
-0.0176762
-0.0177526
-0.0173661
-0.0164925
-0.0149761
-0.0131074
-0.0109999
-0.00898258
-0.00718163
-0.00597886
-0.00556159
-0.00494261
-0.00422381
-0.00325442
-0.00208931
-0.000698979
0.000690308
0.00199096
0.00341883
0.00486947
0.00610292
0.00687358
0.00735486
0.0083041
0.00876347
0.00893273
0.0088542
0.00867652
0.00845189
0.00816478
0.00782962
0.00751015
0.00720591
0.00683928
0.00641868
0.00596861
0.00550611
0.00505892
0.00463209
0.00420481
0.00377006
0.00331908
0.00286842
0.00241916
0.00195603
0.00141479
0.000870858
9.0594e-05
-0.000828125
-0.00187895
-0.00301797
-0.00422789
-0.00544828
-0.00667677
-0.00796503
-0.00940545
-0.0111606
-0.0132779
-0.0156554
-0.0181903
-0.0208282
-0.0235099
-0.0265319
-0.029777
-0.0331034
-0.0364863
-0.0401204
-0.0440778
-0.0479457
-0.0518364
-0.0558238
-0.0598288
-0.0634902
-0.0667435
-0.0698737
-0.0719451
-0.0731085
-0.0737826
-0.0731743
)
;
boundaryField
{
inlet
{
type zeroGradient;
}
bottom
{
type zeroGradient;
}
outlet
{
type zeroGradient;
}
atmosphere
{
type totalPressure;
rho none;
psi none;
gamma 1;
p0 uniform 0;
value nonuniform List<scalar>
357
(
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-6.57098e-07
-1.14711e-05
-4.03772e-05
-9.68336e-05
-0.000191702
-0.000326196
-0.000508975
-0.000744354
-0.00103879
-0.0014186
-0.00187604
-0.00243697
-0.00312305
-0.00389717
-0.00483369
-0.00588564
-0.00716751
-0.00853788
-0.0100384
-0.0116532
-0.0131178
-0.0147456
-0.0163951
-0.0176177
-0.0189593
-0.0194662
-0.0196216
-0.0192446
-0.0179453
-0.0161112
-0.0137698
-0.0113301
-0.00861701
-0.00588024
-0.00339596
-0.00140438
-0.000257814
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-2.06991e-07
-2.38139e-05
-8.73565e-05
-0.000188311
-0.000326787
-0.000501296
-0.000713568
-0.00095284
-0.00124423
-0.00157272
-0.00196297
-0.00242008
-0.00296178
-0.00359049
-0.00431485
-0.0051497
-0.00609871
-0.00716033
-0.00833561
-0.00961581
-0.0110003
-0.0124689
-0.0139269
-0.0153895
-0.0167148
-0.0178848
-0.018755
-0.019181
-0.0191216
-0.0183458
-0.0169588
-0.0150139
-0.0124909
-0.00975535
-0.00679843
-0.00404824
-0.00178385
-0.000416495
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-4.9419e-06
-4.16801e-05
-0.00010688
-0.000194637
-0.000299783
-0.000423412
-0.000561793
-0.000716685
-0.000891883
-0.00108692
-0.00130131
-0.00153922
-0.0018221
-0.00215621
-0.00256659
-0.00305764
-0.00365883
-0.00437711
-0.00522737
-0.00622034
-0.00737162
-0.00869921
-0.010191
-0.0118578
-0.0136118
-0.0154346
-0.0172613
-0.0190928
-0.0207416
-0.0220829
-0.022863
-0.0228887
-0.0218435
-0.0197217
-0.016695
-0.0128973
-0.00865513
-0.00468349
-0.00167037
-0.000231979
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-8.70896e-06
-5.00421e-05
-0.000130646
-0.000250879
-0.000418334
-0.000630974
-0.000886719
-0.00120429
-0.00156949
-0.00201956
-0.00253805
-0.00313749
-0.0038248
-0.00460861
-0.00549437
-0.00648132
-0.00755908
-0.0087092
-0.0099094
-0.0111531
-0.0123803
-0.013485
-0.0145246
-0.015349
-0.0160342
-0.0165404
-0.0167038
-0.0163574
-0.0154794
-0.0140848
-0.0122465
-0.00996958
-0.00755755
-0.00513731
-0.00303894
-0.00138005
-0.000328987
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-1.34588e-05
-5.4663e-05
-0.000121918
-0.000208446
-0.00030965
-0.000416483
-0.000528487
-0.000652932
-0.000797691
-0.000981124
-0.00120381
-0.00144881
-0.00170338
-0.00196086
-0.00222281
-0.00251983
-0.00282323
-0.00311525
-0.0033989
-0.00369791
-0.00401518
-0.00429351
-0.00455565
-0.00480861
-0.00504389
-0.0052217
-0.00533599
-0.00542763
-0.00540424
-0.00527203
-0.00510345
-0.0048276
)
;
}
frontBack
{
type empty;
}
}
// ************************************************************************* //
|
|
75deb92331d2c8585594813cc2e473a7b3267a93
|
8b52f25f2b367f612693dbfd81afa234ec80b4c3
|
/include/tiny/serial/detail/uart_due_defs.hpp
|
40b71500fe286d9aa4baca662188f53213657338
|
[
"MIT"
] |
permissive
|
yell0w4x/tiny-arduino-serial-port
|
1334838fb6382d8cc331f325d95349bfdfe7404b
|
af4318e1c210e80d31be3d4993c8124dd4e2c8c0
|
refs/heads/master
| 2020-08-30T07:55:38.866085
| 2019-11-29T10:33:10
| 2019-11-29T10:33:10
| 218,311,050
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,060
|
hpp
|
uart_due_defs.hpp
|
// Arduino async serial port library with nine data bits support.
//
// 2015, (c) Gk Ltd.
// MIT License
#ifndef TINY_SERIAL_DETAIL_UART_DUE_MACRO_HPP_
#define TINY_SERIAL_DETAIL_UART_DUE_MACRO_HPP_
#include <chip.h>
#define SERIAL_5N1 (US_MR_USART_MODE_NORMAL | \
US_MR_USCLKS_MCK | \
US_MR_CHRL_5_BIT | \
US_MR_PAR_NO | \
US_MR_NBSTOP_1_BIT | \
US_MR_CHMODE_NORMAL)
#define SERIAL_6N1 (US_MR_USART_MODE_NORMAL | \
US_MR_USCLKS_MCK | \
US_MR_CHRL_6_BIT | \
US_MR_PAR_NO | \
US_MR_NBSTOP_1_BIT | \
US_MR_CHMODE_NORMAL)
#define SERIAL_7N1 (US_MR_USART_MODE_NORMAL \
| US_MR_USCLKS_MCK | \
US_MR_CHRL_7_BIT | \
US_MR_PAR_NO | \
US_MR_NBSTOP_1_BIT | \
US_MR_CHMODE_NORMAL)
#define SERIAL_8N1 (US_MR_USART_MODE_NORMAL | \
US_MR_USCLKS_MCK | \
US_MR_CHRL_8_BIT | \
US_MR_PAR_NO | \
US_MR_NBSTOP_1_BIT | \
US_MR_CHMODE_NORMAL)
#define SERIAL_9N1 (US_MR_USART_MODE_NORMAL | \
US_MR_USCLKS_MCK | \
US_MR_MODE9 | \
US_MR_PAR_NO | \
US_MR_NBSTOP_1_BIT | \
US_MR_CHMODE_NORMAL)
#define SERIAL_5N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_6N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_7N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_8N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_9N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_MODE9 | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_5E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_6E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_7E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_8E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_9E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_MODE9 | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_5E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_6E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_7E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_8E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_9E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_MODE9 | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_5O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_6O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_7O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_8O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_9O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_MODE9 | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_5O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_6O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_7O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_8O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#define SERIAL_9O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_MODE9 | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL)
#endif // TINY_SERIAL_DETAIL_UART_DUE_MACRO_HPP_
|
9f372547bda9cf0da569c41c156ba26d31bc41b1
|
f36c2bf847b4186960b8d2111c916629b0ce9fc4
|
/exercícios C++/exercicio-switch.cpp
|
640a5f4320d716625b5d9d21e7a155ac18632743
|
[
"MIT"
] |
permissive
|
Simone-Lemes/Sistemas-para-internet
|
94a5346b4f6ed534a9b6b0d8c4936bd87a7d3297
|
b8a5709d97b444b7526a9b1b577171d108019b21
|
refs/heads/main
| 2023-04-05T18:27:49.905082
| 2021-04-06T01:10:57
| 2021-04-06T01:10:57
| 355,017,413
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 322
|
cpp
|
exercicio-switch.cpp
|
#include <iostream>
#include <locale>
using namespace std;
int main()
{
setlocale(LC_ALL, "ptb");
int z;
cout << "Digite um valor : ";
cin >> z;
switch(z) {
case 5 : cout << 3 * z << " ";
case 10 : cout << 11 /2 * z << " ";
case 20 : cout << z * z - 10 << endl;
break;
default : cout << "Entrada invalida. " << endl;
}
}
|
a7caaa54c3519209bcfa013946b4aa93c4bdade3
|
32adb17d1a4a5d6a82ca1be73bdf3937f6e001be
|
/Domaci1/Domaci1_a/menu.cpp
|
ae369623c2fa7107b610a897590819fc39458926
|
[] |
no_license
|
ivan-pesic/ASP2
|
647ad45de985783d75051c50a7cbdb21ef883681
|
3f011003419df9849fcd7ccc48d17d3b77467639
|
refs/heads/main
| 2023-04-03T00:17:22.361839
| 2021-02-12T19:56:58
| 2021-02-12T19:56:58
| 338,415,794
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 836
|
cpp
|
menu.cpp
|
#include "header_matrix_avl.hpp"
int menu() {
int ans;
cout<<"****************** MENI *****************"<< endl << endl;
cout << "1.\tUnos matrice" << endl
<< "2.\tGenerisanje matrice" << endl
<< "3.\tPretraga matrice" << endl
<< "4.\tEvaluacija performansi za matricu" << endl
<< "5.\tFormiranje stabla na osnovu postojece matrice" << endl
<< "6.\tPretraga stabla na zadati kljuc" << endl
<< "7.\tUmetanje kljuca u stablo" << endl
<< "8.\tIspis stabla" << endl
<< "9.\tBrisanje stabla" << endl
<< "10.\tEvaluacija performansi za obe strukture" << endl
<< "11.\tKraj" << endl;
do {
printf("\nUneti zeljeni podmeni: ");
cin >> ans;
if (ans < 1 || ans > 11) {
cout << endl << "Nekorektan unos. Unesite odgovarajuci podmeni ponovo." << endl;
}
} while (ans < 1 || ans > 11);
return ans;
}
|
eb7d4530c3c8f8b5401ccaf36f84f4b715bc123c
|
888f821260b4bfda6df2ab4ba5c639fd16f30c94
|
/codeforces/cf10/A.cpp
|
885d5f02cc345f5f03070711f93b42db1312126e
|
[] |
no_license
|
JustBeYou/infoarena
|
1b8a6d32d039dc6e53f592003ce9ef1cfc79812e
|
f335d7f7a074255e60262c31d518b9ca86d5f30d
|
refs/heads/master
| 2021-07-05T12:21:56.854223
| 2020-09-12T15:47:23
| 2020-09-12T15:47:23
| 179,277,917
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 591
|
cpp
|
A.cpp
|
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
typedef signed long long ll;
typedef unsigned int uint;
const int nmax = 100000 * 2;
uint n, k;
uint v[nmax];
unordered_map<uint, uint> M;
int main() {
//freopen("input", "r", stdin);
scanf("%u %u", &n, &k);
ull sol = 0;
for (uint i = 0; i < n; i++) {
scanf("%u", &v[i]);
v[i] %= k;
if (v[i] == 0 && M[k]) {
sol++;
M[k]--;
} else if (M[v[i]]) {
sol++;
M[v[i]]--;
} else {
M[k - v[i]]++;
}
}
printf("%llu\n", 2ull * sol);
return 0;
}
|
b63675cb08d98be23283fad19e6beae075b1ac24
|
d22b69b4f73cee58d808d0477e4f6806990d79fd
|
/src/arrays/SubarraySumClosestToZero/SubarraySumClosestToZero.cpp
|
1e1da86ac2ed07bd81bd96181307540f245e654f
|
[] |
no_license
|
raghutillu/Coding
|
63c5c8321434b0de58e34e34212de73bb1d4cdad
|
cf06a4930ed8070b5d7c81fddbd46306e47d1726
|
refs/heads/master
| 2021-12-31T10:31:58.276123
| 2021-10-10T02:47:08
| 2021-10-10T02:47:08
| 101,427,506
| 0
| 0
| null | 2017-08-28T08:10:13
| 2017-08-25T17:35:39
|
C++
|
UTF-8
|
C++
| false
| false
| 2,165
|
cpp
|
SubarraySumClosestToZero.cpp
|
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
// Given an array of both positive and negative numbers, the task is to find out
// the subarray whose sum is closest to 0.
//
// Input : arr[] = {-1, 3, 2, -5, 4}
// Output : 1, 3
// Subarray from index 1 to 3 has sum closest to 0 i.e.
// 3 + 2 + -5 = 0
//
// Input : {2, -5, 4, -6, 3}
// Output : 0, 2
// 2 + -5 + 4 = 1 closest to 0
struct PrefixInfo
{
int sum = 0;
int index = 0;
};
pair<size_t, size_t> getSubArray(const vector<int>& input)
{
if (input.empty()) { return {}; }
else if (input.size() == 1) { return {0, 0}; }
vector<PrefixInfo> prefix(input.size() + 1);
prefix[0].sum = 0;
prefix[0].index = -1;
for (size_t i = 1; i <= input.size(); ++i)
{
prefix[i].sum = prefix[i-1].sum + input[i-1];
prefix[i].index = i-1;
}
sort(prefix.begin(), prefix.end(), [](const PrefixInfo& lhs, const PrefixInfo& rhs)
{
return lhs.sum < rhs.sum;
});
int minDiff = INT_MAX;
pair<size_t, size_t> minPair;
for (size_t i = 0; i < input.size(); ++i)
{
auto diff = prefix[i+1].sum - prefix[i].sum;
if (abs(diff) < abs(minDiff))
{
minDiff = diff;
minPair = {prefix[i].index+1, prefix[i+1].index};
}
}
return minPair;
}
int main()
{
vector<vector<int>> inputs =
{
{2, 3, -4, 9, 1, 7, -5, 6, 5},
{2, 3, -4, -1, 6},
{-1, 2, -3, 4, 0, 5, -6, 7, -10, 11},
{5, 3, 1},
{1, 2, 3, 4, 0, -4, -3, -2, -1},
{-1, 3, 2, -5, 4},
{2, -5, 4, -6, 3},
};
cout << "For the following inputs, the subarray indices whose sum is closest to zero are:" << endl;
for (const auto& input : inputs)
{
for (size_t i = 0; i < input.size(); ++i)
{
cout << input[i];
if (i != input.size() - 1)
{
cout << ", ";
}
}
cout << ": ";
pair<size_t, size_t> minPair = getSubArray(input);
cout << "{" << minPair.first << ", " << minPair.second << "}" << endl;
}
return 0;
}
|
440ab8fc3947f00c11d9da9a5369eabc0b59e3e1
|
8395661e4e336a00b1f4bcf7a7957ecd18f10f1a
|
/byte.hpp
|
b0d23617eb9e032d42eec4dd0ac57fdfdf0452f0
|
[
"MIT"
] |
permissive
|
LiangRongLiang/shmbus
|
6d9f5c9171d2dc04efc196cc6fb122e24f4a243b
|
c2d1a739430feb5e9a7974dd7c30c222a3bad1ce
|
refs/heads/master
| 2021-01-24T01:58:48.949148
| 2016-09-23T02:07:39
| 2016-09-23T02:07:39
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 410
|
hpp
|
byte.hpp
|
#pragma once
#include <cstdint>
typedef std::uint8_t byte;
inline void* byte_next(void* ptr, std::ptrdiff_t n)
{
return static_cast<byte*>(ptr) + n;
}
inline const void* byte_next(const void* ptr, std::ptrdiff_t n)
{
return static_cast<const byte*>(ptr) + n;
}
inline std::ptrdiff_t byte_diff(const void* a, const void* b)
{
return static_cast<const byte*>(a) - static_cast<const byte*>(b);
}
|
5a33d42af248ddf75c01879b84f22884731860dc
|
9ee6b3ba658fb674433ade32d71d59bff9086325
|
/.removed/include/fullscore/ui/GridEditor/Actions/CreateNewGridEditor.hpp
|
7c0a87fc73cf4c12aa8d90beae9a0d71a727053c
|
[] |
no_license
|
MarkOates/fullscore
|
01f7aa843805f221b1547ab16deaaf91b513446e
|
ccd9449aa235d355bf1c24b0ff8fcc3a0fa83e23
|
refs/heads/master
| 2022-09-15T14:54:01.980708
| 2022-09-14T12:52:50
| 2022-09-14T12:52:50
| 33,223,354
| 1
| 0
| null | 2019-08-25T00:06:51
| 2015-04-01T02:59:18
|
C++
|
UTF-8
|
C++
| false
| false
| 365
|
hpp
|
CreateNewGridEditor.hpp
|
#pragma once
#include <fullscore/actions/Base.h>
class AppController;
namespace UI::GridEditor::Actions
{
class CreateNewScoreEditor : public Action::Base
{
private:
AppController *app_controller;
public:
CreateNewScoreEditor(AppController *app_controller);
~CreateNewScoreEditor();
bool execute() override;
};
};
|
1666ad6f2887ccd922ce954d3f1153f12e5d91ec
|
51484e9271760147c291305f609c25ff6ef50580
|
/Common/AavmRpcClientV2/AavmRpcClientV2.cpp
|
502ffccfd8acc10419a9ef954485de90966c127d
|
[] |
no_license
|
ASkyeye/Vulnerability-Disclosures
|
05ff85d5cce76e91fbf66223d92d869c0f021c1a
|
5d88b21cdfe0a991386fab015e8ab1318106df03
|
refs/heads/main
| 2023-04-30T02:06:45.948339
| 2023-04-25T20:22:39
| 2023-04-25T20:22:39
| 368,609,579
| 0
| 0
| null | 2021-05-18T17:10:58
| 2021-05-18T17:10:58
| null |
UTF-8
|
C++
| false
| false
| 3,121
|
cpp
|
AavmRpcClientV2.cpp
|
// AavmRpcClientV2.cpp : Defines the functions for the static library.
//
#include "AavmRpcClientV2.h"
#include "Aavm_h.h"
#include "wil/resource.h"
#include "wil/rpc_helpers.h"
#include <string>
#include <stdexcept>
using unique_aavm_context = wil::unique_rpc_context_handle<void *, decltype(&AavmRpcProc1_FreeHandle), AavmRpcProc1_FreeHandle>;
AavmRpcClient::AavmRpcClient()
{
wchar_t protocolSequence[] = L"ncalrpc";
wchar_t endpoint[] = L"[aswAavm]";
wchar_t *stringBinding;
auto rpcStatus = ::RpcStringBindingCompose(
nullptr,
reinterpret_cast<RPC_WSTR>(protocolSequence),
nullptr,
reinterpret_cast<RPC_WSTR>(endpoint),
nullptr,
reinterpret_cast<RPC_WSTR *>(&stringBinding));
if (rpcStatus != RPC_S_OK)
throw std::runtime_error("RpcStringBindingCompose failed. Error: " + std::to_string(rpcStatus));
auto freeStringBinding = wil::scope_exit(
[stringBinding] () mutable { ::RpcStringFree(reinterpret_cast<RPC_WSTR *>(&stringBinding)); });
rpcStatus = ::RpcBindingFromStringBinding(
reinterpret_cast<RPC_WSTR>(stringBinding), &m_interfaceBinding);
if (rpcStatus != RPC_S_OK)
throw std::runtime_error("RpcBindingFromStringBinding failed. Error: " + std::to_string(rpcStatus));
}
AavmRpcClient::~AavmRpcClient()
{
try
{
auto rpcStatus = ::RpcBindingFree(&m_interfaceBinding);
if (rpcStatus != RPC_S_OK)
throw std::runtime_error("RpcBindingFree failed. Error: " + std::to_string(rpcStatus));
}
catch (...)
{
// ToDo: Log error
}
}
void AavmRpcClient::ResetIniFiles(HRESULT &hr)
{
unique_aavm_context aavmContext;
hr = wil::invoke_rpc_result_nothrow(
static_cast<void *&>(*aavmContext.put()), &AavmRpcProc0_GetHandle, m_interfaceBinding);
if (FAILED(hr))
return;
hr = wil::invoke_rpc_nothrow(
&AavmRpcProc58_ResetIniFiles, aavmContext.get(), 1, 0);
}
void AavmRpcClient::ResetIniFiles()
{
auto aavmContext = unique_aavm_context(
wil::invoke_rpc_result(&AavmRpcProc0_GetHandle, m_interfaceBinding));
wil::invoke_rpc(&AavmRpcProc58_ResetIniFiles, aavmContext.get(), 1, 0);
}
void AavmRpcClient::RestoreQuarantinedFile(long chestId, unsigned char *idpBlob, long idpBlobSize, HRESULT &hr)
{
unique_aavm_context aavmContext;
hr = wil::invoke_rpc_result_nothrow(
static_cast<void *&>(*aavmContext.put()), &AavmRpcProc0_GetHandle, m_interfaceBinding);
if (FAILED(hr))
return;
hr = wil::invoke_rpc_nothrow(&AavmRpcProc82_RestoreQuarantinedFile,
aavmContext.get(), chestId, ::GetCurrentProcessId(), 0, nullptr, idpBlob, idpBlobSize, nullptr, '\0');
}
void AavmRpcClient::RestoreQuarantinedFile(long chestId, unsigned char *idpBlob, long idpBlobSize)
{
auto aavmContext = unique_aavm_context(
wil::invoke_rpc_result(&AavmRpcProc0_GetHandle, m_interfaceBinding));
wil::invoke_rpc(&AavmRpcProc82_RestoreQuarantinedFile,
aavmContext.get(), chestId, ::GetCurrentProcessId(), 0, nullptr, idpBlob, idpBlobSize, nullptr, '\0');
}
|
5670cbd3805c7c6b4e57d76aabe57bcb9f48de25
|
f371a1e57b354cc1b985dbfc17f057c186d9f7a0
|
/acmicpc.net/source/13699.cpp
|
f17fcd51f2b22685b09a213c2747eff4fcbad08b
|
[
"MIT"
] |
permissive
|
tdm1223/Algorithm
|
7ea3d79eaa7244a1cfe8a420e25d89b783465e8f
|
c773ab0338e5a606ad0fc7d8989b0ee7cc1bf3fa
|
refs/heads/master
| 2022-11-14T01:34:08.955376
| 2022-10-30T11:00:54
| 2022-10-30T11:00:54
| 143,304,153
| 8
| 9
| null | 2019-08-06T02:41:24
| 2018-08-02T14:16:00
|
C++
|
UTF-8
|
C++
| false
| false
| 363
|
cpp
|
13699.cpp
|
// 13699. 점화식
// 2022.04.19
// 다이나믹 프로그래밍
#include<iostream>
using namespace std;
long long d[35];
int main()
{
int n;
cin >> n;
d[0] = 1;
for (int i = 1; i <= n; i++)
{
for (int j = 0; j < i; j++)
{
d[i] += d[j] * d[i - j - 1];
}
}
cout << d[n] << endl;
return 0;
}
|
fdd922fdbe11241049b493a337b452df59d3c93e
|
8bb8931223b86adabbc6eacf3e82edf03f3458dc
|
/pw_bluetooth_hci/packet_test.cc
|
f5301d5c9c4140e03a46b25a7dec6988070cc4a8
|
[
"Apache-2.0"
] |
permissive
|
waelbarakat/pigweed
|
08918e0fc1228608099b67d426e581955c4626b8
|
7f3590b58e8398aad68c1e59702c459d2f8ca38e
|
refs/heads/main
| 2023-08-13T21:35:00.513348
| 2021-09-30T04:03:12
| 2021-10-08T02:00:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 24,830
|
cc
|
packet_test.cc
|
// Copyright 2021 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
#include "pw_bluetooth_hci/packet.h"
#include "gtest/gtest.h"
#include "pw_bytes/array.h"
#include "pw_bytes/byte_builder.h"
#include "pw_status/status.h"
namespace pw::bluetooth_hci {
namespace {
class PacketTest : public ::testing::Test {
protected:
constexpr static size_t kMaxHeaderSizeBytes = std::max({
CommandPacket::kHeaderSizeBytes,
AsyncDataPacket::kHeaderSizeBytes,
SyncDataPacket::kHeaderSizeBytes,
EventPacket::kHeaderSizeBytes,
});
// Arbitrarily add at most 2 bytes worth of payload (data or parameters).
constexpr static size_t kArbitraryMaxPayloadSizeBytes = 2;
constexpr static size_t kMaxPacketSizeBytes =
kMaxHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes;
std::array<std::byte, kMaxPacketSizeBytes> packet_buffer_;
};
TEST_F(PacketTest, CommandPacketHeaderUndersizedEncode) {
const CommandPacket packet(0u, ConstByteSpan());
EXPECT_EQ(0u, packet.parameters().size_bytes());
const Result<ConstByteSpan> encode_result = packet.Encode(
{packet_buffer_.data(), CommandPacket::kHeaderSizeBytes - 1});
EXPECT_EQ(Status::ResourceExhausted(), encode_result.status());
}
TEST_F(PacketTest, CommandPacketHeaderUndersizedDecode) {
EXPECT_FALSE(CommandPacket::Decode(
{packet_buffer_.data(), CommandPacket::kHeaderSizeBytes - 1})
.has_value());
}
TEST_F(PacketTest, CommandPacketHeaderOnlyEncodeAndDecode) {
constexpr uint16_t kOpcodeCommandField = 0b00'0000'0000;
constexpr uint8_t kOpcodeGroupField = 0b11'1111;
constexpr uint16_t kOpcode = (kOpcodeGroupField << 10) | kOpcodeCommandField;
const CommandPacket packet(kOpcode, ConstByteSpan());
EXPECT_EQ(packet.type(), Packet::Type::kCommandPacket);
EXPECT_EQ(packet.size_bytes(), CommandPacket::kHeaderSizeBytes);
EXPECT_EQ(packet.opcode(), kOpcode);
EXPECT_EQ(packet.opcode_command_field(), kOpcodeCommandField);
EXPECT_EQ(packet.opcode_group_field(), kOpcodeGroupField);
EXPECT_EQ(packet.parameters().size_bytes(), 0u);
const Result<ConstByteSpan> encode_result = packet.Encode(packet_buffer_);
ASSERT_EQ(OkStatus(), encode_result.status());
constexpr std::array<const std::byte, CommandPacket::kHeaderSizeBytes>
kExpectedEncodedPacket = bytes::MakeArray<const std::byte>(
0b0000'0000, 0b1111'1100, 0b0000'0000);
const ConstByteSpan& encoded_packet = encode_result.value();
EXPECT_TRUE(std::equal(kExpectedEncodedPacket.begin(),
kExpectedEncodedPacket.end(),
encoded_packet.begin(),
encoded_packet.end()));
// First, decode it from a perfectly sized span which we just encoded.
std::optional<CommandPacket> possible_packet =
CommandPacket::Decode(encoded_packet);
ASSERT_TRUE(possible_packet.has_value());
CommandPacket& decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kCommandPacket);
EXPECT_EQ(decoded_packet.size_bytes(), CommandPacket::kHeaderSizeBytes);
EXPECT_EQ(decoded_packet.opcode(), kOpcode);
EXPECT_EQ(decoded_packet.opcode_command_field(), kOpcodeCommandField);
EXPECT_EQ(decoded_packet.opcode_group_field(), kOpcodeGroupField);
EXPECT_EQ(decoded_packet.parameters().size_bytes(), 0u);
// Second, decode it from an oversized buffer.
possible_packet = CommandPacket::Decode({packet_buffer_});
ASSERT_TRUE(possible_packet.has_value());
decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kCommandPacket);
EXPECT_EQ(decoded_packet.size_bytes(), CommandPacket::kHeaderSizeBytes);
EXPECT_EQ(decoded_packet.opcode(), kOpcode);
EXPECT_EQ(decoded_packet.opcode_command_field(), kOpcodeCommandField);
EXPECT_EQ(decoded_packet.opcode_group_field(), kOpcodeGroupField);
EXPECT_EQ(decoded_packet.parameters().size_bytes(), 0u);
}
TEST_F(PacketTest, CommandPacketWithParametersEncodeAndDecode) {
constexpr uint16_t kOpcodeCommandField = 0b10'1010'1010;
constexpr uint8_t kOpcodeGroupField = 0b10'1010;
constexpr uint16_t kOpcode = (kOpcodeGroupField << 10) | kOpcodeCommandField;
constexpr std::array<const std::byte, kArbitraryMaxPayloadSizeBytes>
kParameters = bytes::MakeArray<const std::byte>(1, 2);
const CommandPacket packet(kOpcode, kParameters);
EXPECT_EQ(packet.type(), Packet::Type::kCommandPacket);
EXPECT_EQ(packet.size_bytes(),
CommandPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(packet.opcode(), kOpcode);
EXPECT_EQ(packet.opcode_command_field(), kOpcodeCommandField);
EXPECT_EQ(packet.opcode_group_field(), kOpcodeGroupField);
EXPECT_EQ(packet.parameters().size_bytes(), kArbitraryMaxPayloadSizeBytes);
const Result<ConstByteSpan> encode_result = packet.Encode(packet_buffer_);
ASSERT_EQ(OkStatus(), encode_result.status());
constexpr std::array<const std::byte,
CommandPacket::kHeaderSizeBytes +
kArbitraryMaxPayloadSizeBytes>
kExpectedEncodedPacket = bytes::MakeArray<const std::byte>(
0b1010'1010, 0b1010'1010, 0b0000'0010, 1, 2);
const ConstByteSpan& encoded_packet = encode_result.value();
EXPECT_TRUE(std::equal(kExpectedEncodedPacket.begin(),
kExpectedEncodedPacket.end(),
encoded_packet.begin(),
encoded_packet.end()));
// First, decode it from a perfectly sized span which we just encoded.
std::optional<CommandPacket> possible_packet =
CommandPacket::Decode(encoded_packet);
ASSERT_TRUE(possible_packet.has_value());
CommandPacket& decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kCommandPacket);
EXPECT_EQ(decoded_packet.size_bytes(),
CommandPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(decoded_packet.opcode(), kOpcode);
EXPECT_EQ(decoded_packet.opcode_command_field(), kOpcodeCommandField);
EXPECT_EQ(decoded_packet.opcode_group_field(), kOpcodeGroupField);
EXPECT_EQ(decoded_packet.parameters().size_bytes(),
kArbitraryMaxPayloadSizeBytes);
// Second, decode it from an oversized buffer.
possible_packet = CommandPacket::Decode({packet_buffer_});
ASSERT_TRUE(possible_packet.has_value());
decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kCommandPacket);
EXPECT_EQ(decoded_packet.size_bytes(),
CommandPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(decoded_packet.opcode(), kOpcode);
EXPECT_EQ(decoded_packet.opcode_command_field(), kOpcodeCommandField);
EXPECT_EQ(decoded_packet.opcode_group_field(), kOpcodeGroupField);
EXPECT_EQ(decoded_packet.parameters().size_bytes(),
kArbitraryMaxPayloadSizeBytes);
}
TEST_F(PacketTest, AsyncDataPacketHeaderUndersizedEncode) {
const AsyncDataPacket packet(0u, ConstByteSpan());
EXPECT_EQ(0u, packet.data().size_bytes());
const Result<ConstByteSpan> encode_result = packet.Encode(
{packet_buffer_.data(), AsyncDataPacket::kHeaderSizeBytes - 1});
EXPECT_EQ(Status::ResourceExhausted(), encode_result.status());
}
TEST_F(PacketTest, AsyncDataPacketHeaderUndersizedDecode) {
EXPECT_FALSE(AsyncDataPacket::Decode({packet_buffer_.data(),
AsyncDataPacket::kHeaderSizeBytes - 1})
.has_value());
}
TEST_F(PacketTest, AsyncDataPacketHeaderOnlyEncodeAndDecode) {
constexpr uint16_t kHandle = 0b00'0000'0000;
constexpr uint8_t kPbFlag = 0b01;
constexpr uint8_t kBcFlag = 0b10;
constexpr uint16_t kHandleAndFragmentationBits =
kHandle | (kPbFlag << 12) | (kBcFlag << 14);
const AsyncDataPacket packet(kHandleAndFragmentationBits, ConstByteSpan());
EXPECT_EQ(packet.type(), Packet::Type::kAsyncDataPacket);
EXPECT_EQ(packet.size_bytes(), AsyncDataPacket::kHeaderSizeBytes);
EXPECT_EQ(packet.handle_and_fragmentation_bits(),
kHandleAndFragmentationBits);
EXPECT_EQ(packet.handle(), kHandle);
EXPECT_EQ(packet.pb_flag(), kPbFlag);
EXPECT_EQ(packet.bc_flag(), kBcFlag);
EXPECT_EQ(packet.data().size_bytes(), 0u);
const Result<ConstByteSpan> encode_result = packet.Encode(packet_buffer_);
ASSERT_EQ(OkStatus(), encode_result.status());
constexpr std::array<const std::byte, AsyncDataPacket::kHeaderSizeBytes>
kExpectedEncodedPacket = bytes::MakeArray<const std::byte>(
0b0000'0000, 0b1001'0000, 0b0000'0000, 0b0000'0000);
const ConstByteSpan& encoded_packet = encode_result.value();
EXPECT_TRUE(std::equal(kExpectedEncodedPacket.begin(),
kExpectedEncodedPacket.end(),
encoded_packet.begin(),
encoded_packet.end()));
// First, decode it from a perfectly sized span which we just encoded.
std::optional<AsyncDataPacket> possible_packet =
AsyncDataPacket::Decode(encoded_packet);
ASSERT_TRUE(possible_packet.has_value());
AsyncDataPacket& decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kAsyncDataPacket);
EXPECT_EQ(decoded_packet.size_bytes(), AsyncDataPacket::kHeaderSizeBytes);
EXPECT_EQ(decoded_packet.handle_and_fragmentation_bits(),
kHandleAndFragmentationBits);
EXPECT_EQ(decoded_packet.handle(), kHandle);
EXPECT_EQ(decoded_packet.pb_flag(), kPbFlag);
EXPECT_EQ(decoded_packet.bc_flag(), kBcFlag);
EXPECT_EQ(decoded_packet.data().size_bytes(), 0u);
// Second, decode it from an oversized buffer.
possible_packet = AsyncDataPacket::Decode({packet_buffer_});
ASSERT_TRUE(possible_packet.has_value());
decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kAsyncDataPacket);
EXPECT_EQ(decoded_packet.size_bytes(), AsyncDataPacket::kHeaderSizeBytes);
EXPECT_EQ(decoded_packet.handle_and_fragmentation_bits(),
kHandleAndFragmentationBits);
EXPECT_EQ(decoded_packet.handle(), kHandle);
EXPECT_EQ(decoded_packet.pb_flag(), kPbFlag);
EXPECT_EQ(decoded_packet.bc_flag(), kBcFlag);
EXPECT_EQ(decoded_packet.data().size_bytes(), 0u);
}
TEST_F(PacketTest, AsyncDataPacketWithDataEncodeAndDecode) {
constexpr uint16_t kHandle = 0b00'0000'0000;
constexpr uint8_t kPbFlag = 0b01;
constexpr uint8_t kBcFlag = 0b10;
constexpr uint16_t kHandleAndFragmentationBits =
kHandle | (kPbFlag << 12) | (kBcFlag << 14);
constexpr std::array<const std::byte, kArbitraryMaxPayloadSizeBytes> kData =
bytes::MakeArray<const std::byte>(1, 2);
const AsyncDataPacket packet(kHandleAndFragmentationBits, kData);
EXPECT_EQ(packet.type(), Packet::Type::kAsyncDataPacket);
EXPECT_EQ(packet.size_bytes(),
AsyncDataPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(packet.handle_and_fragmentation_bits(),
kHandleAndFragmentationBits);
EXPECT_EQ(packet.handle(), kHandle);
EXPECT_EQ(packet.pb_flag(), kPbFlag);
EXPECT_EQ(packet.bc_flag(), kBcFlag);
EXPECT_EQ(packet.data().size_bytes(), kArbitraryMaxPayloadSizeBytes);
const Result<ConstByteSpan> encode_result = packet.Encode(packet_buffer_);
ASSERT_EQ(OkStatus(), encode_result.status());
constexpr std::array<const std::byte,
AsyncDataPacket::kHeaderSizeBytes +
kArbitraryMaxPayloadSizeBytes>
kExpectedEncodedPacket = bytes::MakeArray<const std::byte>(
0b0000'0000, 0b1001'0000, 0b0000'0010, 0b0000'0000, 1, 2);
const ConstByteSpan& encoded_packet = encode_result.value();
EXPECT_TRUE(std::equal(kExpectedEncodedPacket.begin(),
kExpectedEncodedPacket.end(),
encoded_packet.begin(),
encoded_packet.end()));
// First, decode it from a perfectly sized span which we just encoded.
std::optional<AsyncDataPacket> possible_packet =
AsyncDataPacket::Decode(encoded_packet);
ASSERT_TRUE(possible_packet.has_value());
AsyncDataPacket& decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kAsyncDataPacket);
EXPECT_EQ(decoded_packet.size_bytes(),
AsyncDataPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(decoded_packet.handle_and_fragmentation_bits(),
kHandleAndFragmentationBits);
EXPECT_EQ(decoded_packet.handle(), kHandle);
EXPECT_EQ(decoded_packet.pb_flag(), kPbFlag);
EXPECT_EQ(decoded_packet.bc_flag(), kBcFlag);
EXPECT_EQ(decoded_packet.data().size_bytes(), kArbitraryMaxPayloadSizeBytes);
// Second, decode it from an oversized buffer.
possible_packet = AsyncDataPacket::Decode({packet_buffer_});
ASSERT_TRUE(possible_packet.has_value());
decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kAsyncDataPacket);
EXPECT_EQ(decoded_packet.size_bytes(),
AsyncDataPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(decoded_packet.handle_and_fragmentation_bits(),
kHandleAndFragmentationBits);
EXPECT_EQ(decoded_packet.handle(), kHandle);
EXPECT_EQ(decoded_packet.pb_flag(), kPbFlag);
EXPECT_EQ(decoded_packet.bc_flag(), kBcFlag);
EXPECT_EQ(decoded_packet.data().size_bytes(), kArbitraryMaxPayloadSizeBytes);
}
TEST_F(PacketTest, SyncDataPacketHeaderUndersizedEncode) {
const SyncDataPacket packet(0u, ConstByteSpan());
EXPECT_EQ(0u, packet.data().size_bytes());
const Result<ConstByteSpan> encode_result = packet.Encode(
{packet_buffer_.data(), SyncDataPacket::kHeaderSizeBytes - 1});
EXPECT_EQ(Status::ResourceExhausted(), encode_result.status());
}
TEST_F(PacketTest, SyncDataPacketHeaderUndersizedDecode) {
EXPECT_FALSE(SyncDataPacket::Decode({packet_buffer_.data(),
SyncDataPacket::kHeaderSizeBytes - 1})
.has_value());
}
TEST_F(PacketTest, SyncDataPacketHeaderOnlyEncodeAndDecode) {
constexpr uint16_t kHandle = 0b00'0000'0000;
constexpr uint8_t kPacketStatusFlag = 0b11;
constexpr uint8_t kReservedBits = 0;
constexpr uint16_t kHandleAndStatusBits =
kHandle | (kPacketStatusFlag << 12) | (kReservedBits << 14);
const SyncDataPacket packet(kHandleAndStatusBits, ConstByteSpan());
EXPECT_EQ(packet.type(), Packet::Type::kSyncDataPacket);
EXPECT_EQ(packet.size_bytes(), SyncDataPacket::kHeaderSizeBytes);
EXPECT_EQ(packet.handle_and_status_bits(), kHandleAndStatusBits);
EXPECT_EQ(packet.handle(), kHandle);
EXPECT_EQ(packet.packet_status_flag(), kPacketStatusFlag);
EXPECT_EQ(packet.data().size_bytes(), 0u);
const Result<ConstByteSpan> encode_result = packet.Encode(packet_buffer_);
ASSERT_EQ(OkStatus(), encode_result.status());
constexpr std::array<const std::byte, SyncDataPacket::kHeaderSizeBytes>
kExpectedEncodedPacket = bytes::MakeArray<const std::byte>(
0b0000'0000, 0b0011'0000, 0b0000'0000);
const ConstByteSpan& encoded_packet = encode_result.value();
EXPECT_TRUE(std::equal(kExpectedEncodedPacket.begin(),
kExpectedEncodedPacket.end(),
encoded_packet.begin(),
encoded_packet.end()));
// First, decode it from a perfectly sized span which we just encoded.
std::optional<SyncDataPacket> possible_packet =
SyncDataPacket::Decode(encoded_packet);
ASSERT_TRUE(possible_packet.has_value());
SyncDataPacket& decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kSyncDataPacket);
EXPECT_EQ(decoded_packet.size_bytes(), SyncDataPacket::kHeaderSizeBytes);
EXPECT_EQ(packet.handle_and_status_bits(), kHandleAndStatusBits);
EXPECT_EQ(decoded_packet.packet_status_flag(), kPacketStatusFlag);
EXPECT_EQ(decoded_packet.handle(), kHandle);
EXPECT_EQ(decoded_packet.data().size_bytes(), 0u);
// Second, decode it from an oversized buffer.
possible_packet = SyncDataPacket::Decode({packet_buffer_});
ASSERT_TRUE(possible_packet.has_value());
decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kSyncDataPacket);
EXPECT_EQ(decoded_packet.size_bytes(), SyncDataPacket::kHeaderSizeBytes);
EXPECT_EQ(packet.handle_and_status_bits(), kHandleAndStatusBits);
EXPECT_EQ(decoded_packet.handle(), kHandle);
EXPECT_EQ(decoded_packet.packet_status_flag(), kPacketStatusFlag);
EXPECT_EQ(decoded_packet.data().size_bytes(), 0u);
}
TEST_F(PacketTest, SyncDataPacketWithDataEncodeAndDecode) {
constexpr uint16_t kHandle = 0b00'0000'0000;
constexpr uint8_t kPacketStatusFlag = 0b11;
constexpr uint8_t kReservedBits = 0;
constexpr uint16_t kHandleAndStatusBits =
kHandle | (kPacketStatusFlag << 12) | (kReservedBits << 14);
constexpr std::array<const std::byte, kArbitraryMaxPayloadSizeBytes> kData =
bytes::MakeArray<const std::byte>(1, 2);
const SyncDataPacket packet(kHandleAndStatusBits, kData);
EXPECT_EQ(packet.type(), Packet::Type::kSyncDataPacket);
EXPECT_EQ(packet.size_bytes(),
SyncDataPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(packet.handle_and_status_bits(), kHandleAndStatusBits);
EXPECT_EQ(packet.handle(), kHandle);
EXPECT_EQ(packet.packet_status_flag(), kPacketStatusFlag);
EXPECT_EQ(packet.data().size_bytes(), kArbitraryMaxPayloadSizeBytes);
const Result<ConstByteSpan> encode_result = packet.Encode(packet_buffer_);
ASSERT_EQ(OkStatus(), encode_result.status());
constexpr std::array<const std::byte,
SyncDataPacket::kHeaderSizeBytes +
kArbitraryMaxPayloadSizeBytes>
kExpectedEncodedPacket = bytes::MakeArray<const std::byte>(
0b0000'0000, 0b0011'0000, 0b0000'0010, 1, 2);
const ConstByteSpan& encoded_packet = encode_result.value();
EXPECT_TRUE(std::equal(kExpectedEncodedPacket.begin(),
kExpectedEncodedPacket.end(),
encoded_packet.begin(),
encoded_packet.end()));
// First, decode it from a perfectly sized span which we just encoded.
std::optional<SyncDataPacket> possible_packet =
SyncDataPacket::Decode(encoded_packet);
ASSERT_TRUE(possible_packet.has_value());
SyncDataPacket& decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kSyncDataPacket);
EXPECT_EQ(decoded_packet.size_bytes(),
SyncDataPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(packet.handle_and_status_bits(), kHandleAndStatusBits);
EXPECT_EQ(packet.handle(), kHandle);
EXPECT_EQ(packet.packet_status_flag(), kPacketStatusFlag);
EXPECT_EQ(decoded_packet.data().size_bytes(), kArbitraryMaxPayloadSizeBytes);
// Second, decode it from an oversized buffer.
possible_packet = SyncDataPacket::Decode({packet_buffer_});
ASSERT_TRUE(possible_packet.has_value());
decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kSyncDataPacket);
EXPECT_EQ(decoded_packet.size_bytes(),
SyncDataPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(packet.handle_and_status_bits(), kHandleAndStatusBits);
EXPECT_EQ(packet.handle(), kHandle);
EXPECT_EQ(packet.packet_status_flag(), kPacketStatusFlag);
EXPECT_EQ(decoded_packet.data().size_bytes(), kArbitraryMaxPayloadSizeBytes);
}
TEST_F(PacketTest, EventPacketHeaderUndersizedEncode) {
const EventPacket packet(0u, ConstByteSpan());
EXPECT_EQ(0u, packet.parameters().size_bytes());
const Result<ConstByteSpan> encode_result =
packet.Encode({packet_buffer_.data(), EventPacket::kHeaderSizeBytes - 1});
EXPECT_EQ(Status::ResourceExhausted(), encode_result.status());
}
TEST_F(PacketTest, EventPacketHeaderUndersizedDecode) {
EXPECT_FALSE(EventPacket::Decode(
{packet_buffer_.data(), EventPacket::kHeaderSizeBytes - 1})
.has_value());
}
TEST_F(PacketTest, EventPacketHeaderOnlyEncodeAndDecode) {
constexpr uint8_t kEventCode = 0b1111'1111;
const EventPacket packet(kEventCode, ConstByteSpan());
EXPECT_EQ(packet.type(), Packet::Type::kEventPacket);
EXPECT_EQ(packet.size_bytes(), EventPacket::kHeaderSizeBytes);
EXPECT_EQ(packet.event_code(), kEventCode);
EXPECT_EQ(packet.parameters().size_bytes(), 0u);
const Result<ConstByteSpan> encode_result = packet.Encode(packet_buffer_);
ASSERT_EQ(OkStatus(), encode_result.status());
constexpr std::array<const std::byte, EventPacket::kHeaderSizeBytes>
kExpectedEncodedPacket =
bytes::MakeArray<const std::byte>(0b1111'11111, 0b0000'0000);
const ConstByteSpan& encoded_packet = encode_result.value();
EXPECT_TRUE(std::equal(kExpectedEncodedPacket.begin(),
kExpectedEncodedPacket.end(),
encoded_packet.begin(),
encoded_packet.end()));
// First, decode it from a perfectly sized span which we just encoded.
std::optional<EventPacket> possible_packet =
EventPacket::Decode(encoded_packet);
ASSERT_TRUE(possible_packet.has_value());
EventPacket& decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kEventPacket);
EXPECT_EQ(decoded_packet.size_bytes(), EventPacket::kHeaderSizeBytes);
EXPECT_EQ(decoded_packet.event_code(), kEventCode);
EXPECT_EQ(decoded_packet.parameters().size_bytes(), 0u);
// Second, decode it from an oversized buffer.
possible_packet = EventPacket::Decode({packet_buffer_});
ASSERT_TRUE(possible_packet.has_value());
decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kEventPacket);
EXPECT_EQ(decoded_packet.size_bytes(), EventPacket::kHeaderSizeBytes);
EXPECT_EQ(decoded_packet.event_code(), kEventCode);
EXPECT_EQ(decoded_packet.parameters().size_bytes(), 0u);
}
TEST_F(PacketTest, EventPacketWithParametersEncodeAndDecode) {
constexpr uint8_t kEventCode = 0b1111'0000;
constexpr std::array<const std::byte, kArbitraryMaxPayloadSizeBytes>
kParameters = bytes::MakeArray<const std::byte>(1, 2);
const EventPacket packet(kEventCode, kParameters);
EXPECT_EQ(packet.type(), Packet::Type::kEventPacket);
EXPECT_EQ(packet.size_bytes(),
EventPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(packet.event_code(), kEventCode);
EXPECT_EQ(packet.parameters().size_bytes(), kArbitraryMaxPayloadSizeBytes);
const Result<ConstByteSpan> encode_result = packet.Encode(packet_buffer_);
ASSERT_EQ(OkStatus(), encode_result.status());
constexpr std::array<const std::byte,
EventPacket::kHeaderSizeBytes +
kArbitraryMaxPayloadSizeBytes>
kExpectedEncodedPacket =
bytes::MakeArray<const std::byte>(0b1111'0000, 0b0000'0010, 1, 2);
const ConstByteSpan& encoded_packet = encode_result.value();
EXPECT_TRUE(std::equal(kExpectedEncodedPacket.begin(),
kExpectedEncodedPacket.end(),
encoded_packet.begin(),
encoded_packet.end()));
// First, decode it from a perfectly sized span which we just encoded.
std::optional<EventPacket> possible_packet =
EventPacket::Decode(encoded_packet);
ASSERT_TRUE(possible_packet.has_value());
EventPacket& decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kEventPacket);
EXPECT_EQ(decoded_packet.size_bytes(),
EventPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(decoded_packet.event_code(), kEventCode);
EXPECT_EQ(decoded_packet.parameters().size_bytes(),
kArbitraryMaxPayloadSizeBytes);
// Second, decode it from an oversized buffer.
possible_packet = EventPacket::Decode({packet_buffer_});
ASSERT_TRUE(possible_packet.has_value());
decoded_packet = possible_packet.value();
EXPECT_EQ(decoded_packet.type(), Packet::Type::kEventPacket);
EXPECT_EQ(decoded_packet.size_bytes(),
EventPacket::kHeaderSizeBytes + kArbitraryMaxPayloadSizeBytes);
EXPECT_EQ(decoded_packet.event_code(), kEventCode);
EXPECT_EQ(decoded_packet.parameters().size_bytes(),
kArbitraryMaxPayloadSizeBytes);
}
} // namespace
} // namespace pw::bluetooth_hci
|
21847b4d928c6266f13dc9a96dc0b02f9d891fbf
|
d8f7ed6a82a32e81a3660681795ee7437b2b204c
|
/tools/histogrammer/HistogramBuilder.cpp
|
6958240295894cdbc8e22be18d4d2064628118aa
|
[
"Apache-2.0",
"BSL-1.0"
] |
permissive
|
ivafanas/sltbench
|
6ec8bedb0463706598173a781cc08165554aaea3
|
ec702203f406d3b1db71dac6bd39337d175cdc2c
|
refs/heads/master
| 2023-02-13T15:54:37.804010
| 2023-01-26T17:20:03
| 2023-01-27T03:26:01
| 61,478,446
| 153
| 13
|
BSL-1.0
| 2023-01-27T03:26:02
| 2016-06-19T12:12:16
|
C++
|
UTF-8
|
C++
| false
| false
| 1,803
|
cpp
|
HistogramBuilder.cpp
|
#include "HistogramBuilder.h"
#include <algorithm>
#include <chrono>
#include <fstream>
#include <iostream>
#include <iterator>
#include <stdexcept>
#include <vector>
void BuildHistogramFor(void(*fun)(), const std::string& filename)
{
// get results
std::vector<int64_t> results;
const size_t count = 1000;
results.resize(count, 0);
for (size_t i = 0; i < count; ++i)
{
auto start_time = std::chrono::high_resolution_clock::now();
fun();
auto final_time = std::chrono::high_resolution_clock::now();
results[i] = (final_time - start_time).count();
}
std::sort(results.begin(), results.end());
// out them to .dat-file
{
const auto datfile = filename + ".dat";
std::ofstream of(datfile);
if (!of)
throw std::runtime_error("ERROR: failed to open " + datfile + " on write");
std::copy(results.begin(), results.end(), std::ostream_iterator<int64_t>(of, "\n"));
}
// prepare gnuplot histogram builder script
{
const auto pltfile = filename + ".plt";
std::ofstream of(pltfile);
if (!of)
throw std::runtime_error("ERROR: failed to open " + pltfile + " on write");
of << "reset\n";
of << "n=100\n";
of << "max=" << results.back() << '\n';
of << "min=" << results.front() << '\n';
of << "width=(max-min)/n\n";
of << "hist(x, width) = width*floor(x / width) + width / 2.0\n";
of << "set term png\n";
of << "set output \"" << filename + ".png" << "\"\n";
of << "set xrange[min:max]\n";
of << "set yrange[0:]\n";
of << "set offset graph 0.05, 0.05, 0.05, 0.0\n";
of << "set xtics min, (max - min) / 5, max\n";
of << "set boxwidth width*0.9\n";
of << "set style fill solid 0.5\n";
of << "set tics out nomirror\n";
of << "plot \"" << filename + ".dat" << "\" u(hist($1, width)) :(1.0) smooth freq w boxes lc rgb\"blue\" notitle\n";
}
}
|
55332469c9798114fc13e38bb47d50e2d2a2974f
|
1024129bbd3f258b55b05cef04a217612f033b24
|
/src/infrastructure/base_repository.hpp
|
b3ab4d8820b7d6a5ca22edf3d896a482d3d202e9
|
[] |
no_license
|
BartlomiejOlber/lab_1
|
8be5201a6400554181a4020d2cc60fcf82b283c2
|
8907889f72113d34e823542ed34ba518b1474c38
|
refs/heads/master
| 2020-04-27T21:57:12.053228
| 2019-03-24T15:41:56
| 2019-03-24T15:41:56
| 174,717,833
| 0
| 0
| null | 2019-03-21T10:07:25
| 2019-03-09T16:26:01
|
C++
|
UTF-8
|
C++
| false
| false
| 454
|
hpp
|
base_repository.hpp
|
/*
* base_repository.hpp
*
* Created on: Mar 17, 2019
* Author: bartlomiej
*/
#ifndef INFRASTRUCTURE_BASE_REPOSITORY_HPP_
#define INFRASTRUCTURE_BASE_REPOSITORY_HPP_
#include <string>
namespace infrastructure {
class BaseRepository {
private:
static const char* DATA_PATH;
std::string file_path_;
public:
BaseRepository( const char* file_path );
const char* get_path() const;
};
}
#endif /* INFRASTRUCTURE_BASE_REPOSITORY_HPP_ */
|
368b31b478948c39f153617c9f0c43712372405e
|
3fe692c3ebf0b16c0a6ae9d8633799abc93bd3bb
|
/Practices/Codeforces/CF461E.cpp
|
1d97735ab82430d498ef190b4e028ec8227d6c18
|
[] |
no_license
|
kaloronahuang/KaloronaCodebase
|
f9d297461446e752bdab09ede36584aacd0b3aeb
|
4fa071d720e06100f9b577e87a435765ea89f838
|
refs/heads/master
| 2023-06-01T04:24:11.403154
| 2023-05-23T00:38:07
| 2023-05-23T00:38:07
| 155,797,801
| 14
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,232
|
cpp
|
CF461E.cpp
|
// CF461E.cpp
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 1e5 + 200;
typedef long long ll;
int m, ch[MAX_N * 20][4], calc[4][4][20], ptot, mlen;
ll n;
bool tag[MAX_N * 20];
char str[MAX_N];
ll fpow(ll bas, ll tim)
{
ll ret = 1;
while (tim)
{
if (tim & 1)
ret *= bas;
bas *= bas;
tim >>= 1;
}
return ret;
}
struct matrix
{
ll mat[4][4];
ll *operator[](const int &rhs) { return mat[rhs]; }
matrix operator*(const matrix &rhs)
{
matrix ret;
memset(ret.mat, 0x3f, sizeof(ret.mat));
for (int k = 0; k < 4; k++)
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
ret[i][j] = min(ret[i][j], mat[i][k] + rhs.mat[k][j]);
return ret;
}
matrix operator^(const ll &rhs)
{
ll tim = rhs - 1;
matrix ret = *this, bas = *this;
while (tim)
{
if (tim & 1)
ret = ret * bas;
bas = bas * bas;
tim >>= 1;
}
return ret;
}
} trans;
void insert(int start_pos)
{
int p = 0, sc = str[start_pos] - 'A';
for (int i = start_pos; i <= min(start_pos + mlen - 1, m); i++)
{
int c = str[i] - 'A';
if (ch[p][c] == 0)
ch[p][c] = ++ptot;
p = ch[p][c];
if (!tag[p])
tag[p] = true, calc[sc][c][i - start_pos + 1]++;
}
}
bool check(ll mid)
{
matrix ret = trans ^ mid;
bool flag = true;
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
flag &= ret[i][j] >= n;
return flag;
}
int main()
{
scanf("%lld%s", &n, str + 1), m = strlen(str + 1), mlen = min(11, m + 1);
for (int i = 1; i <= m; i++)
insert(i);
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
for (int k = mlen; k >= 2; k--)
if (calc[i][j][k] != fpow(4, k - 2))
trans[i][j] = k - 1;
ll l = 1, r = n, res = 0;
while (l <= r)
{
ll mid = (l + r) >> 1;
if (check(mid))
r = mid - 1, res = mid;
else
l = mid + 1;
}
printf("%lld\n", res);
return 0;
}
|
21a9e3bc491616caff2614d128f9f1a1a18419fa
|
5f5a5d34a1c984750db062c2d8f9876299f0b977
|
/saveDeck.cpp
|
957628d0d04b6a1ba21b31bf8fdd5d07c131c29d
|
[] |
no_license
|
tinyan/cmk2015win
|
386dbed16010d7c02cff4ce0be1bba572672ed55
|
23c7fca8be1cfc486c1a9b65fcf135a1f290652d
|
refs/heads/master
| 2021-01-10T02:41:13.088363
| 2015-12-29T02:11:05
| 2015-12-29T02:11:05
| 46,950,172
| 0
| 0
| null | null | null | null |
SHIFT_JIS
|
C++
| false
| false
| 2,761
|
cpp
|
saveDeck.cpp
|
#include <windows.h>
#include "..\..\systemNNN\nyanlib\include\commonMacro.h"
#include "..\..\systemNNN\nyanlib\include\areaControl.h"
#include "..\..\systemNNN\nyanlib\include\picture.h"
#include "..\..\systemNNN\nyanlib\include\myGraphics.h"
#include "..\..\systemNNN\nyanlib\include\allGeo.h"
#include "..\..\systemNNN\nyanlib\include\allGraphics.h"
#include "..\..\systemNNN\nnnLib\commonGeneral.h"
#include "..\..\systemNNN\nnnLib\gameCallBack.h"
#include "..\..\systemNNN\nnnLib\commonSystemParamName.h"
#include "..\..\systemNNN\nnnUtilLib\nnnButtonStatus.h"
#include "..\..\systemNNN\nnnUtilLib\myMouseStatus.h"
#include "..\..\systemNNN\nnnUtilLib\mymessage.h"
#include "..\..\systemNNN\nnnUtilLib\nameList.h"
#include "..\..\systemNNN\nnnUtilLib\superButtonPicture.h"
#include "..\..\systemNNN\nnnUtilLib\commonButton.h"
#include "..\..\systemNNN\nnnUtilLib\superButtonPicture.h"
#include "..\..\systemNNN\nnnUtilLib\commonButton.h"
#include "..\..\systemNNN\nnnUtilLib\commonButtonGroup.h"
#include "..\..\systemNNN\nnnUtilLib\commonUpDownButtonGroup.h"
#include "..\..\systemNNN\nnnUtilLib\commonBackButton.h"
#include "..\..\systemNNN\nnnUtilLib\suuji.h"
#include "mode.h"
//#include "clearStage.h"
//#include "mapData.h"
//#include "demoPlay.h"
//#include "hajike.h"
//#include "printCountDown.h"
//#include "printHaikei.h"
//#include "printPlate.h"
//#include "printScore.h"
//#include "printGameStatus.h"
//#include "resultControl.h"
//#include "highScoreData.h"
//#include "playStageCommon.h"
//#include "playStageType1.h"
//#include "playStageType1B.h"
//#include "playStageType2.h"
//#include "playStageType3.h"
#include "deckData.h"
#include "selectDeck.h"
#include "saveDeck.h"
#include "game.h"
CSaveDeck::CSaveDeck(CGame* lpGame) : CSelectDeck(lpGame,1)
{
SetClassNumber(SAVEDECK_MODE);
LoadSetupFile("savedeck",256);
CreateBackButton();
GetFadeInOutSetup();
}
CSaveDeck::~CSaveDeck()
{
End();
}
void CSaveDeck::End(void)
{
}
/*
int CSaveDeck::Init(void)
{
CSelectDeck::Init();
LoadBackButtonPic();
m_back->Init();
return -1;
}
int CSaveDeck::Calcu(void)
{
POINT pt = m_mouseStatus->GetZahyo();
int rt = m_back->Calcu(m_inputStatus);
if (rt != NNNBUTTON_NOTHING)
{
int nm = ProcessCommonButton(rt);
if (nm == 0)
{
int backMode = m_game2->GetSelectDeckBackMode();
return ReturnFadeOut(backMode);
}
}
return -1;
}
int CSaveDeck::Print(void)
{
CAreaControl::SetNextAllPrint();
CAllGraphics::FillScreen();
m_message->PrintMessage(10,10,"セーブ画面");
return -1;
}
void CSaveDeck::FinalExitRoutine(void)
{
}
*/
int CSaveDeck::ProcessSave(void)
{
m_game2->SetDeckNumber(m_onNumber);
m_deckData->Save(m_onNumber);
return GAMETITLE_MODE;
}
/*_*/
|
1f0b37bab790ae6548c8a8858a22821cb4b8ce59
|
e081cb2debb6a251b5e4c7085cf33e3717e94039
|
/C++/lib/netLib/IpSocket.h
|
461e9b33c06de186b256175627ca5f96665349bf
|
[] |
no_license
|
jortel/libs
|
21893d3872792311713c8daaf2db5ca5d3a2119b
|
46f6958bc4c311dfcc27cde031cdc80112c07355
|
refs/heads/master
| 2020-04-06T03:33:11.036318
| 2012-03-03T19:26:45
| 2012-03-03T19:26:45
| 3,612,675
| 0
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 845
|
h
|
IpSocket.h
|
///////////////////////////////////////////////////////////////////////
//
// File/Class: IpSocket
// Description: Provides and IP socket.
//
// Author: Jeff Ortel, 07/01/2000 (Cyberwerx, LLC)
// Modifications:
//
///////////////////////////////////////////////////////////////////////
#ifndef IPSCOKET_H
#define IPSCOKET_H
#include <netLib/Socket.h>
#include <netinet/in.h>
class IpAddress;
class IpSocket : public Socket
{
protected:
IpSocket();
IpSocket(int openFd);
IpSocket(int openFd, const IpSocket& s);
IpSocket(const IpSocket& s);
virtual void connect(const IpAddress&);
virtual void bind(const IpAddress&);
virtual void getName(sockaddr_in&);
virtual void getPeer(sockaddr_in&);
// attributes
sockaddr_in nearEnd;
sockaddr_in farEnd;
};
#endif //IPSCOKET_H
|
f41795ae2f9ea96c75472bcd7eaa43737e66ded9
|
c244298de3ed033646af7ce57d9908b456147367
|
/No4_MakeIncludeTree/MakeIncludeTree.hpp
|
d062b9586177671fb198b1a6abb13860e2a4a483
|
[
"MIT"
] |
permissive
|
katahiromz/BoostWaveExample
|
26a70266c998816140a701fe1e4e146efbdd840e
|
a962af4d096ea1312d824c64e06bcd4746d27408
|
refs/heads/master
| 2021-05-07T13:41:19.643705
| 2017-12-13T09:23:26
| 2017-12-13T09:23:26
| 109,641,232
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,783
|
hpp
|
MakeIncludeTree.hpp
|
#pragma once
#include <boost/wave.hpp>
#include <boost/wave/preprocessing_hooks.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/ref.hpp>
#include <stack>
// A hook class to output the tree
class MakeIncludeTreeHook
:
public boost::wave::context_policies::default_preprocessing_hooks
{
private:
typedef boost::reference_wrapper<boost::property_tree::ptree> ref_ptree;
public:
MakeIncludeTreeHook(boost::property_tree::ptree& target)
:
_target(target),
_current(target),
_parentStack(),
_lastIncFile()
{
}
public:
const boost::property_tree::ptree& getTarget() const
{
return _target;
}
public:
template <typename ContextT>
bool found_include_directive(
ContextT const& ctx,
std::string const& filename,
bool include_next)
{
_lastIncFile = filename;
return false;
}
template<typename ContextT>
void opened_include_file(
ContextT const&,
std::string const&,
std::string const& absname,
bool)
{
using namespace boost::property_tree;
_parentStack.push(_current);
ptree::iterator itr = _current.get().push_back(
ptree::value_type(
_lastIncFile,
boost::property_tree::ptree(absname)));
_current = boost::ref((*itr).second);
}
template<typename ContextT>
void returning_from_include_file(ContextT const&)
{
_current = _parentStack.top();
_parentStack.pop();
}
private:
ref_ptree _target;
ref_ptree _current;
std::stack<ref_ptree> _parentStack;
std::string _lastIncFile;
};
|
79d5e95de6e63d46e0c3a7c33dbdd521d00d1fba
|
b47763a27177b400ec2881f6265bd5f43cebf830
|
/link list/circular_link_list.cpp
|
45569b6bd43a89cb18d95bcecc3c4562d879e16a
|
[] |
no_license
|
prashant-kumar1330/c_plusplus
|
c6bf7283ac24b2d3b84c5d6dc3449d79f7ffc7e5
|
e26bd35e9e106679b5deba2669321fafa96d82f3
|
refs/heads/master
| 2021-06-30T11:16:04.605494
| 2020-10-31T16:07:55
| 2020-10-31T16:07:55
| 187,380,094
| 2
| 5
| null | 2020-10-31T16:07:56
| 2019-05-18T16:23:17
|
C++
|
UTF-8
|
C++
| false
| false
| 1,357
|
cpp
|
circular_link_list.cpp
|
#include<iostream>
using namespace std;
struct node{
int data;
node* next;
};
void create_circular_link_list(node*& head){
int data;
cin>>data;
if(data!=-1){
head=new node();
head->data=data;
head->next=NULL;
}
node* temp=head;
cin>>data;
while(data!=-1){
node* it=new node();
it->data=data;
it->next=NULL;
temp->next=it;
temp=temp->next;
cin>>data;
}
temp->next=head;
}
void print(node * head){
node* temp=head;
do{
cout<<head->data<<"-->";
head = head->next;
}
while(head!=temp);
cout<<"-1"<<endl;
}
void insert_at_head(node* &head,int data){
node * temp=new node();
temp->data=data;
temp->next=head;
node* c=head;
do{
c=c->next;
}
while(c->next!=head);
//cout<<c->data;
c->next=temp;
head=temp;
}
void delete_node(node* &head,int k){
if(head->data==k){
head=head->next;
}
node* temp=head;
node* prev=NULL;
while(temp->data!=k){
prev=temp;
temp=temp->next;
}
prev->next=temp->next;
delete temp;
}
int main(){
node* head=NULL;
create_circular_link_list(head);
print(head);
int k;
cout<<"enter the value you want to add at the head: ";
cin>>k;
insert_at_head(head,k);
print(head);
cout<<endl;
int x;
cout<<"enter data you want to delete: ";
cin>>x;
delete_node(head,x);
print(head);
}
|
37763a94ff029484115632774618b398eb7c06a6
|
4cae422afc5224db8846d9c454a12ef627fd4909
|
/MyRenderer/Disk.cpp
|
e50d6019b3491357ddfe891d86fefccd388e3ec8
|
[] |
no_license
|
EternalWind/MyRenderer
|
90adcbd79e68634c225532018e6507f756ac22fa
|
973e9090470d4992a97ab7c1caf708ec314638fd
|
refs/heads/master
| 2016-09-10T01:03:30.824093
| 2014-06-07T06:06:13
| 2014-06-07T06:06:13
| 20,586,847
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 689
|
cpp
|
Disk.cpp
|
#include "Disk.h"
Disk::Disk(float radius, const Vector3& center, const Vector3& orientation, const ColorRGBA& color) :
Plane(center, orientation, color),
m_Radius(radius),
m_SquareRadius(radius * radius)
{
}
bool Disk::Intersect(const Ray& ray, Intersection& intersection, void* additional_data) const
{
Range<float> orig_range = ray.EffectRange();
bool flag = Plane::Intersect(ray, intersection, additional_data);
if (flag)
{
Vector3 intersect_point = ray.Origin() + ray.Direction() * intersection.Distance();
float distance_sq = (intersect_point - m_Center).SquareLength();
if (distance_sq > m_SquareRadius)
flag = false;
}
return flag;
}
Disk::~Disk(void)
{
}
|
f3c480977f218f54d3bcdd9b0c9bcc8377e11fae
|
70ea777a5c978cfc20e575b049a399af46e11c64
|
/test/simple_test.cpp
|
d4b1189124ec57efb60d46abb4e503f822730f2d
|
[
"Apache-2.0"
] |
permissive
|
templeblock/cpp-torch
|
1ae72dcd6b6107a729993bcd692eeccdacc28158
|
29e5982a07fd58d1fe248cde0a3deec80b36462f
|
refs/heads/master
| 2021-01-13T09:38:17.803091
| 2016-10-24T14:52:47
| 2016-10-24T14:52:47
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,388
|
cpp
|
simple_test.cpp
|
#include <cpptorch.h>
#include <fstream>
#include <algorithm>
#include <iostream>
#include <chrono>
template<typename T>
std::shared_ptr<cpptorch::nn::Layer<T>> read_layer(const std::string &path)
{
std::ifstream fs(path, std::ios::binary);
assert(fs.good());
auto obj = cpptorch::load(fs);
return cpptorch::read_net<T>(obj.get());
}
template<typename T>
cpptorch::Tensor<T> read_tensor(const std::string &path)
{
std::ifstream fs(path, std::ios::binary);
assert(fs.good());
auto obj = cpptorch::load(fs);
return cpptorch::read_tensor<T>(obj.get());
}
void test_index(const char *data_path)
{
cpptorch::Tensor<float> x = read_tensor<float>(std::string(data_path) + "/_index/x.t7");
cpptorch::Tensor<float> y1 = read_tensor<float>(std::string(data_path) + "/_index/y1.t7");
cpptorch::Tensor<float> y2 = read_tensor<float>(std::string(data_path) + "/_index/y2.t7");
std::ifstream fs(std::string(data_path) + "/_index/y3.t7", std::ios::binary);
float y3 = *cpptorch::load(fs);
std::cout << x[1] - y1 << std::endl;
std::cout << x[0][1][3] - y2 << std::endl;
std::cout << x[{0, 1, 3}] - y2 << std::endl;
std::cout << (float)x[{1, 0, 4, 1}] - y3 << std::endl;
}
void test_layer(const char *data_path, const char *subdir, int count = 1)
{
auto net = read_layer<float>(std::string(data_path) + "/" + subdir + "/net.t7");
cpptorch::Tensor<float> x = read_tensor<float>(std::string(data_path) + "/" + subdir + "/x.t7");
cpptorch::Tensor<float> y = read_tensor<float>(std::string(data_path) + "/" + subdir + "/y.t7");
std::cout << *net;
auto begin = std::chrono::high_resolution_clock::now();
cpptorch::Tensor<float> yy;
for (int i = 0; i < count; i++)
{
yy = net->forward(x);
}
auto end = std::chrono::high_resolution_clock::now();
auto sub = cpptorch::abs(y - yy);
if (sub.minall() > 1e-05 || sub.maxall() > 1e-05)
{
std::cout << "----------------------- FAILED!!!!!!!!";
}
std::cout << std::chrono::duration_cast<std::chrono::milliseconds>(end - begin).count() << " ms" << std::endl;
std::cout << "================================================" << std::endl;
}
int main(int argc, char *argv[])
{
test_layer(argv[1], "SpatialBatchNormalization", 100000);
cpptorch::allocator::init();
// test_index(argv[1]);
// test_layer(argv[1], "Inception");
// test_layer(argv[1], "InceptionBig");
// test_layer(argv[1], "Linear");
// test_layer(argv[1], "MulConstant");
// test_layer(argv[1], "Normalize");
// test_layer(argv[1], "Normalize_2d");
// test_layer(argv[1], "Normalize_inf");
// test_layer(argv[1], "ReLU");
// test_layer(argv[1], "Reshape");
// test_layer(argv[1], "Reshape_batch");
// test_layer(argv[1], "SpatialAveragePooling");
test_layer(argv[1], "SpatialBatchNormalization", 100000);
// test_layer(argv[1], "SpatialConvolution");
// test_layer(argv[1], "SpatialCrossMapLRN");
// test_layer(argv[1], "SpatialMaxPooling");
// test_layer(argv[1], "SpatialReflectionPadding");
// test_layer(argv[1], "Sqrt");
// test_layer(argv[1], "Square");
// test_layer(argv[1], "View");
// test_layer(argv[1], "_face");
//test_fast_neural_style(argv[1], "candy");
cpptorch::allocator::cleanup();
#ifdef _WIN64
_CrtDumpMemoryLeaks();
#endif
return 0;
}
|
edb4b278779ff2c939f6af8bcd97d4edc14a05a7
|
304d2aec0a5cc3dda1c67d28bb97a17af4ee20e0
|
/泛型算法/usage of sort and unique.cpp
|
2d522b5f9f0e59d58f39fce17bcc664f635a37d1
|
[] |
no_license
|
CAmateur/C-Learning
|
7f7f4958373ce672a0baeaa9056fb8f86e136e63
|
27c9dc0b688575cea7e65e85563dbe20b2fbad20
|
refs/heads/master
| 2020-06-03T20:50:29.034459
| 2020-01-05T12:27:42
| 2020-01-05T12:27:42
| 191,726,345
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 992
|
cpp
|
usage of sort and unique.cpp
|
#include<iostream>
#include<vector>
#include<numeric>
#include<string>
#include<algorithm>
using namespace std;
void elimDups(vector<string> &words)
{
cout << "重排之前:(";
for (string word : words)
cout << word << " ";
cout << ")" << endl;
sort(words.begin(), words.end());
cout << "重排之后:(";
for (string word : words)
cout << word << " ";
cout << ")" << endl;
vector<string>::iterator it1=unique(words.begin(), words.end());
cout << "unique后:(";
for (string word : words)
cout << word << " ";
cout << ")" << endl;
words.erase(it1, words.end());
cout << "rease后:(";
for (string word : words)
cout << word << " ";
cout << ")" << endl;
}
int main(int argc, char**argv)
{
vector<string> vec;
string str;//i am a teacher . what are you ? are you a teacher ? oh ! i am a teacher too . what a coincidence !
while (cin >> str)
{
if (str == "qqq")
break;
vec.emplace_back(str);
}
elimDups(vec);
system("pause");
return 0;
}
|
d4e108e5d2c50e0b43c09bc025ca4962a1232262
|
4cd8f33bcdb006813b9c1760ef3b149cd57d847e
|
/FP/Time.cpp
|
963233239af46fffcf2c9d9fe36503d4c66a7aab
|
[] |
no_license
|
MichaelTarasca/OOPFinalProject
|
fdc382529c6dce51357e2b78d64441a9e5574cc8
|
6382f8926cc03be33451f8298b1722de98049747
|
refs/heads/main
| 2023-02-13T04:57:38.022949
| 2021-01-15T18:19:41
| 2021-01-15T18:19:41
| 329,989,675
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,621
|
cpp
|
Time.cpp
|
#define _CRT_SECURE_NO_WARNINGS
#include <iomanip>
#include <iostream>
#include "Time.h"
#include "utils.h"
namespace sdds {
Time& Time::reset() {
m_min = getTime();
return *this;
}
Time::Time(unsigned int min) {
m_min = min;
}
std::ostream& Time::write(std::ostream& ostr) const {
return ostr << std::setw(2) << std::setfill('0') << m_min / 60 << ":" << std::setw(2) << std::setfill('0') << m_min - (m_min / 60) * 60;
}
std::istream& Time::read(std::istream& istr) {
int hours = 0, min = 0;
char col = '\0';
istr >> hours >> col >> min;
if (col != ':') {
istr.setstate(std::ios::failbit);
}
else {
m_min = hours * 60 + min;
}
return istr;
}
Time::operator int() const {
return m_min;
}
Time& Time::operator*=(int val) {
m_min *= val;
return *this;
}
Time& Time::operator-=(const Time& D) {
if (m_min < (unsigned)(int)D) {
m_min = (m_min + 1440) - (int)D;
}
else {
m_min -= (int)D;
}
return *this;
}
std::ostream& operator<<(std::ostream& a, const Time& b) {
b.write(a);
return a;
}
std::istream& operator>>(std::istream& a, Time& b) {
b.read(a);
return a;
}
Time& Time::operator-(const Time& ROperand) {
Time LOperand = *this;
LOperand -= ROperand;
*this = LOperand;
return *this;
}
}
|
23b08e4cb3c99c8335e5535652d0208fc89dfc80
|
75f843db45d315e5f667a1c21ad1903ab0012ba2
|
/AbstractFactoryInstance/AbstractFactoryInstance/WidgetFactory.h
|
4f0b5bfa509ddbe12a50f42dc53df26999b27f4d
|
[] |
no_license
|
wangzhan/DesignPatternInstance
|
8f8bae53bccc1b95252d8cfe21fb8540e49980a9
|
72832114c33a86b6e24019d6cb1da3f438943d69
|
refs/heads/master
| 2020-05-20T09:37:48.190884
| 2012-10-19T01:03:18
| 2012-10-19T01:03:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 103
|
h
|
WidgetFactory.h
|
#pragma once
class CWidgetFactory
{
public:
CWidgetFactory(void);
~CWidgetFactory(void);
};
|
9de1eeadd28e6ef7def87cfba6f0b9aba5cfa386
|
32e910f5440c10b384bb26b5555ac7adb77540ee
|
/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/interior_data_manager_impl.cc
|
c295ad4f1113b86063ff4a62943636623a50a12b
|
[] |
permissive
|
smartdevicelink/sdl_core
|
76658282fd85b16ed6d91d8d4087d8cd1353db76
|
7343fc72c12edc8ac42a62556c9e4b29c9408bc3
|
refs/heads/master
| 2022-11-04T12:17:58.725371
| 2022-10-26T15:34:13
| 2022-10-26T15:34:13
| 24,724,170
| 269
| 306
|
BSD-3-Clause
| 2022-10-26T15:34:15
| 2014-10-02T15:16:26
|
C++
|
UTF-8
|
C++
| false
| false
| 8,099
|
cc
|
interior_data_manager_impl.cc
|
#include "rc_rpc_plugin/interior_data_manager_impl.h"
#include "application_manager/application_manager.h"
#include "application_manager/rpc_service.h"
#include "rc_rpc_plugin/rc_helpers.h"
#include "rc_rpc_plugin/rc_rpc_plugin.h"
namespace rc_rpc_plugin {
SDL_CREATE_LOG_VARIABLE("RemoteControlModule");
InteriorDataManagerImpl::InteriorDataManagerImpl(
RCRPCPlugin& rc_plugin,
InteriorDataCache& cache,
application_manager::ApplicationManager& app_mngr,
application_manager::rpc_service::RPCService& rpc_service)
: rc_plugin_(rc_plugin)
, cache_(cache)
, app_mngr_(app_mngr)
, rpc_service_(rpc_service) {}
void InteriorDataManagerImpl::OnPolicyEvent(plugins::PolicyEvent event) {
UpdateHMISubscriptionsOnPolicyUpdated();
}
void InteriorDataManagerImpl::OnApplicationEvent(
plugins::ApplicationEvent event,
app_mngr::ApplicationSharedPtr application) {
if (plugins::ApplicationEvent::kApplicationUnregistered == event ||
plugins::ApplicationEvent::kApplicationExit == event) {
UpdateHMISubscriptionsOnAppUnregistered(*application);
}
}
void InteriorDataManagerImpl::OnDisablingRC() {
SDL_LOG_AUTO_TRACE();
auto existing_subscription = AppsSubscribedModules();
std::set<ModuleUid> subscribed_modules;
for (auto& pair : existing_subscription) {
auto& app = pair.first;
auto rc_extension = RCHelpers::GetRCExtension(*app);
for (const auto& module : pair.second) {
subscribed_modules.insert(module);
rc_extension->UnsubscribeFromInteriorVehicleData(module);
}
}
for (auto& module : subscribed_modules) {
SDL_LOG_TRACE("unsubscribe from module type: " << module.first
<< " id: " << module.second);
UnsubscribeFromInteriorVehicleData(module);
}
}
void InteriorDataManagerImpl::OnResumptionRevert(
const std::set<ModuleUid>& subscriptions) {
for (const auto& module : subscriptions) {
UnsubscribeFromInteriorVehicleData(module);
}
}
void InteriorDataManagerImpl::StoreRequestToHMITime(const ModuleUid& module) {
SDL_LOG_AUTO_TRACE();
sync_primitives::AutoLock autolock(requests_to_hmi_history_lock_);
requests_to_hmi_history_[module].push_back(date_time::getCurrentTime());
}
bool InteriorDataManagerImpl::CheckRequestsToHMIFrequency(
const ModuleUid& module) {
SDL_LOG_AUTO_TRACE();
sync_primitives::AutoLock autolock(requests_to_hmi_history_lock_);
ClearOldRequestsToHMIHistory();
const auto& history = requests_to_hmi_history_[module];
const auto limit =
app_mngr_.get_settings().get_interior_vehicle_data_frequency().first;
return history.size() < limit;
}
void InteriorDataManagerImpl::UpdateHMISubscriptionsOnPolicyUpdated() {
auto apps_allowed_module_types =
RCHelpers::GetApplicationsAllowedModuleTypes(app_mngr_);
auto apps_subscribed_module_types = AppsSubscribedModuleTypes();
InteriorDataManagerImpl::AppsModuleTypes apps_disallowed_modules;
for (auto& pair : apps_subscribed_module_types) {
auto& allowed = apps_allowed_module_types[pair.first];
auto& subscribed = pair.second;
std::vector<std::string> disallowed_modules;
std::set_difference(subscribed.begin(),
subscribed.end(),
allowed.begin(),
allowed.end(),
std::back_inserter(disallowed_modules));
std::sort(disallowed_modules.begin(), disallowed_modules.end());
auto unique_result =
std::unique(disallowed_modules.begin(), disallowed_modules.end());
disallowed_modules.erase(unique_result, disallowed_modules.end());
apps_disallowed_modules[pair.first] = disallowed_modules;
}
for (auto& pair : apps_disallowed_modules) {
auto& app = pair.first;
auto rc_extension = RCHelpers::GetRCExtension(*app);
for (const auto& module_type : pair.second) {
rc_extension->UnsubscribeFromInteriorVehicleDataOfType(module_type);
auto apps_subscribed =
RCHelpers::AppsSubscribedToModuleType(app_mngr_, module_type);
if (apps_subscribed.empty()) {
UnsubscribeFromInteriorVehicleDataOfType(module_type);
}
}
}
}
void InteriorDataManagerImpl::UpdateHMISubscriptionsOnAppUnregistered(
application_manager::Application& app) {
SDL_LOG_AUTO_TRACE();
auto rc_extension = RCHelpers::GetRCExtension(app);
auto subscribed_data = rc_extension->InteriorVehicleDataSubscriptions();
rc_extension->UnsubscribeFromInteriorVehicleData();
for (auto& data : subscribed_data) {
auto apps_subscribed = RCHelpers::AppsSubscribedToModule(app_mngr_, data);
if (apps_subscribed.empty()) {
UnsubscribeFromInteriorVehicleData(data);
}
if (apps_subscribed.size() == 1 &&
apps_subscribed.front()->hmi_app_id() == app.hmi_app_id()) {
UnsubscribeFromInteriorVehicleData(data);
}
}
}
void InteriorDataManagerImpl::UnsubscribeFromInteriorVehicleData(
const ModuleUid& module) {
cache_.Remove(module);
auto unsubscribe_request = RCHelpers::CreateGetInteriorVDRequestToHMI(
module,
app_mngr_.GetNextHMICorrelationID(),
RCHelpers::InteriorDataAction::UNSUBSCRIBE);
SDL_LOG_DEBUG("Send Unsubscribe from module type: " << module.first << " id: "
<< module.second);
rpc_service_.ManageHMICommand(unsubscribe_request);
}
void InteriorDataManagerImpl::UnsubscribeFromInteriorVehicleDataOfType(
const std::string& module_type) {
const auto& modules = cache_.GetCachedModulesByType(module_type);
for (const auto& module : modules) {
cache_.Remove(module);
auto unsubscribe_request = RCHelpers::CreateGetInteriorVDRequestToHMI(
module,
app_mngr_.GetNextHMICorrelationID(),
RCHelpers::InteriorDataAction::UNSUBSCRIBE);
SDL_LOG_DEBUG("Send Unsubscribe from module type: "
<< module.first << " id: " << module.second);
rpc_service_.ManageHMICommand(unsubscribe_request);
}
}
void InteriorDataManagerImpl::ClearOldRequestsToHMIHistory() {
auto limit =
app_mngr_.get_settings().get_interior_vehicle_data_frequency().second;
uint32_t time_frame = limit * date_time::MILLISECONDS_IN_SECOND;
auto lest_that_time_frame_ago = [time_frame](date_time::TimeDuration time) {
auto span = date_time::calculateTimeSpan(time);
return span < time_frame;
};
for (auto& it : requests_to_hmi_history_) {
auto& history = it.second;
auto first_actual =
std::find_if(history.begin(), history.end(), lest_that_time_frame_ago);
history.erase(history.begin(), first_actual);
}
}
InteriorDataManagerImpl::AppsModules
InteriorDataManagerImpl::AppsSubscribedModules() {
auto apps_list = RCRPCPlugin::GetRCApplications(app_mngr_);
InteriorDataManagerImpl::AppsModules result;
for (auto& app_ptr : apps_list) {
const auto rc_extension = RCHelpers::GetRCExtension(*app_ptr);
auto app_subscriptions = rc_extension->InteriorVehicleDataSubscriptions();
result[app_ptr] = std::vector<ModuleUid>(app_subscriptions.size());
std::copy(app_subscriptions.begin(),
app_subscriptions.end(),
result[app_ptr].begin());
}
return result;
}
InteriorDataManagerImpl::AppsModuleTypes
InteriorDataManagerImpl::AppsSubscribedModuleTypes() {
auto apps_list = RCRPCPlugin::GetRCApplications(app_mngr_);
RCHelpers::AppsModuleTypes result;
for (auto& app_ptr : apps_list) {
const auto rc_extension = RCHelpers::GetRCExtension(*app_ptr);
auto app_subscriptions = rc_extension->InteriorVehicleDataSubscriptions();
std::vector<std::string> app_module_types;
std::transform(app_subscriptions.begin(),
app_subscriptions.end(),
std::back_inserter(app_module_types),
[](const ModuleUid& app_subscription) {
return app_subscription.first;
});
std::sort(app_module_types.begin(), app_module_types.end());
result[app_ptr] = app_module_types;
}
return result;
}
} // namespace rc_rpc_plugin
|
8f3146aafacc9c63ad486f3f10fe9f912458baa0
|
e5c5879952f90d0595672a1886edc28634d15ccc
|
/Labs/WOZ/WOZ.ino
|
5790f9de3d7bd6f488432eaeaab4a4253686590c
|
[] |
no_license
|
sdmeijer/arduino-sketches
|
7f3c789e63f6d37b45d5539e460c15921b2dcc2f
|
b21f0bd477c62917f4e1575eeb20bd1b5bec45ed
|
refs/heads/master
| 2021-01-02T09:19:34.705436
| 2014-05-12T15:08:40
| 2014-05-12T15:08:40
| 18,710,382
| 1
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,170
|
ino
|
WOZ.ino
|
#define FORWARD 1
#define BACKWARD 0
//left motor
const int leftEnable = 13;
const int leftForward = 10;
const int leftReverse = 11;
//right motor
const int rightEnable = 12;
const int rightForward = 6;
const int rightReverse = 9;
//encoders
const int leftEncoder = A1;
const int rightEncoder = A4;
char instruction = 'O';
void setup() {
Serial.begin(9600);
pinMode(13, OUTPUT);
pinMode(11, OUTPUT);
pinMode(10, OUTPUT);
pinMode(12, OUTPUT);
pinMode(6, OUTPUT);
pinMode(9, OUTPUT);
//enable motors
digitalWrite(leftEnable, HIGH);
digitalWrite(rightEnable, HIGH);
//initialize aligns the wheels
initialize();
delay(2000);
}
void loop() {
if (Serial.available() > 0) {
instruction = Serial.read();
}
switch(instruction) {
case 'F':
digitalWrite(11, HIGH);
forward(255);
delay(100);
break;
case'R':
right(255);
delay(100);
break;
case'L':
left(255);
delay(100);
break;
case'I':
initialize();
break;
case'B':
backward(255);
delay(100);
break;
case'O':
stop();
break;
default:
stop();
break;
}
}
|
95174f10ad2fcc02b8a6d9b04310b2c6c1cc9e22
|
e1700081b3e9fa1c74e6dd903da767a3fdeca7f5
|
/libs/gui/solverdef/solverdefinitionlistdialog.h
|
99177ae1759a0f7407e9f5287d64224dcd49e41a
|
[
"MIT"
] |
permissive
|
i-RIC/prepost-gui
|
2fdd727625751e624245c3b9c88ca5aa496674c0
|
8de8a3ef8366adc7d489edcd500a691a44d6fdad
|
refs/heads/develop_v4
| 2023-08-31T09:10:21.010343
| 2023-08-31T06:54:26
| 2023-08-31T06:54:26
| 67,224,522
| 8
| 12
|
MIT
| 2023-08-29T23:04:45
| 2016-09-02T13:24:00
|
C++
|
UTF-8
|
C++
| false
| false
| 981
|
h
|
solverdefinitionlistdialog.h
|
#ifndef SOLVERDEFINITIONLISTDIALOG_H
#define SOLVERDEFINITIONLISTDIALOG_H
#include <QDialog>
#include <vector>
class SolverDefinitionAbstract;
namespace Ui
{
class SolverDefinitionListDialog;
}
/// Dialog to show the list of solvers currently installed.
class SolverDefinitionListDialog : public QDialog
{
Q_OBJECT
public:
SolverDefinitionListDialog(const std::vector<SolverDefinitionAbstract*>& list, QWidget* parent = nullptr);
~SolverDefinitionListDialog();
int execToSelectSolver();
int selectedSolver() const;
public slots:
/// Handler for double clicking on solver definition table;
void handleCellDoubleClick(int row, int column);
/// Show detail dialog about the solver currently selected
void showDetailOfCurrent();
private:
void changeEvent(QEvent* e) override;
void setup();
void showDetail(int index);
private:
Ui::SolverDefinitionListDialog* ui;
std::vector<SolverDefinitionAbstract*> m_solverList;
};
#endif // SOLVERDEFINITIONLISTDIALOG_H
|
0a41da60b975226708298ad9e185b3aeea6e0c49
|
ce98a099caba433e85eeecc6d90060cce387395f
|
/lab_03/src/drawing/drawer.h
|
4e7356e2696e5cc4a9d10b3966bba264b8cd4b90
|
[] |
no_license
|
deniska-ned/bmstu_iu7_oop
|
afb5c87a27f3bd10b1e8e0788bb5ea62209a01cf
|
ff35d96c19486100b5e8057b54657b6c0d3b88a3
|
refs/heads/master
| 2023-05-30T17:31:57.229785
| 2021-06-26T12:28:46
| 2021-06-26T12:28:46
| 379,010,364
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 736
|
h
|
drawer.h
|
#ifndef DRAWER_HPP
#define DRAWER_HPP
#include <QGraphicsScene>
#include "drawing/canvas.h"
#include "objects/point.h"
class base_drawer
{
public:
base_drawer() = default;
virtual ~base_drawer() = default;
virtual void set_canvas(std::shared_ptr<base_canvas> canvas) = 0;
virtual void draw_line(const point & point_1, const point & point_2) = 0;
virtual void clear_scene() = 0;
protected:
std::shared_ptr<base_canvas> canvas;
};
class qt_drawer : public base_drawer
{
public:
qt_drawer() = default;
void set_canvas(std::shared_ptr<base_canvas> canvas) override;
void draw_line(const point & point_1, const point & point_2) override;
void clear_scene() override;
};
#endif // DRAWER_HPP
|
75a56f9eed3d913629ec00c988aec232b1e4f91c
|
9cfcf6b0049c0f53e1d32e3bfdb2882cbc66ebad
|
/faaltu/techgigsf.cpp
|
e0e784d61b0b0588ffb2386f8f1ee9e66f3819c1
|
[] |
no_license
|
ssanjeev2424/CPP_PracticeCodes
|
7a5ad246d8edf1063029d5da60f02d0d206f1436
|
90b6c68f245db5cc0fe6fd122f070267fa9ead48
|
refs/heads/master
| 2020-09-11T03:09:04.991856
| 2019-11-15T13:42:17
| 2019-11-15T13:42:17
| 221,921,600
| 0
| 0
| null | 2019-11-15T12:49:52
| 2019-11-15T12:40:02
| null |
UTF-8
|
C++
| false
| false
| 2,459
|
cpp
|
techgigsf.cpp
|
#include<bits/stdc++.h>
#define N 100002
using namespace std;
int n, m;
long long r[N], c[N];
long long tree[4 * N], lazy[4*N];
int update(int si, int ss, int se, int us, int ue, int diff) {
if (lazy[si] != 0){
tree[si] += (long long)(se-ss+1)*lazy[si];
if (ss != se){
lazy[si*2 + 1] += lazy[si];
lazy[si*2 + 2] += lazy[si];
}
lazy[si] = 0;
}
if (ss>se || ss>ue || se<us || tree[si] < 0)
return 0;
if (ss>=us && se<=ue){
tree[si] += (se-ss+1)*diff;
if (ss != se) {
lazy[si*2 + 1] += diff;
lazy[si*2 + 2] += diff;
}
return tree[si] >= 0;
}
int mid = (ss+se)/2;
int ret = update(si*2+1, ss, mid, us, ue, diff) &&
update(si*2+2, mid+1, se, us, ue, diff);
tree[si] = tree[si*2+1] + tree[si*2+2];
return ret;
}
int query(int si, int ss, int se) {
if (lazy[si] != 0){
tree[si] += (long long)(se-ss+1)*lazy[si];
if (ss != se){
lazy[si*2 + 1] += lazy[si];
lazy[si*2 + 2] += lazy[si];
}
lazy[si] = 0;
}
if(tree[si] <= 0)
return -1;
if(ss == se)
return ss;
int mid = (ss + se)/2;
int x = query(2*si + 1, ss, mid);
if(x == -1)
x = query(2*si+2, mid+1, se);
return x;
}
void construct(long long arr[], int ss, int se, int si) {
if (ss > se)
return ;
if (ss == se) {
tree[si] = arr[ss];
lazy[si] = 0;
return;
}
int mid = (ss + se)/2;
construct(arr, ss, mid, si*2+1);
construct(arr, mid+1, se, si*2+2);
lazy[si] = 0;
tree[si] = tree[si*2 + 1] + tree[si*2 + 2];
}
int main() {
int t;
scanf("%d",&t);
while(t--) {
long long rs=0, cs=0, mr = 0, mc = 0;
scanf("%d%d",&n,&m);
for(int i=0; i<n; i++){
scanf("%lld",&r[i]);
mr = max(mr, r[i]);
rs += (long long)r[i];
}
sort(r, r+n, greater<>());
for(int i=0; i<m; i++){
scanf("%lld",&c[i]);
mc = max(mc, c[i]);
cs += (long long)c[i];
}
if(rs != cs) {
printf("NO\n");
continue;
}
sort(c, c+m);
construct(c, 0, m-1, 0);
int flag = 1;
for(int i = 0; i<n; i++){
if(r[i] == 0) continue;
int idx = query(0, 0, m-1);
//printf("idx: %d\n",idx);
if(idx == -1 || idx + r[i] > m){
flag = 0;
break;
}
update(0, 0, m-1, idx, idx+r[i]-1, -1);
}
if(flag) printf("YES\n");
else printf("NO\n");
}
return 0;
}
|
beacd7a0e3e8a3ee508fb9fda4bab5137a4b2a26
|
c95937d631510bf5a18ad1c88ac59f2b68767e02
|
/src/cpu/aarch64/jit_sve_512_x8s8s32x_conv_kernel.hpp
|
044298618130113443e62dbcf34afc0103fd494d
|
[
"BSD-3-Clause",
"MIT",
"Intel",
"BSL-1.0",
"Apache-2.0",
"BSD-2-Clause"
] |
permissive
|
oneapi-src/oneDNN
|
5cdaa8d5b82fc23058ffbf650eb2f050b16a9d08
|
aef984b66360661b3116d9d1c1c9ca0cad66bf7f
|
refs/heads/master
| 2023-09-05T22:08:47.214983
| 2023-08-09T07:55:23
| 2023-09-05T13:13:34
| 58,414,589
| 1,544
| 480
|
Apache-2.0
| 2023-09-14T07:09:12
| 2016-05-09T23:26:42
|
C++
|
UTF-8
|
C++
| false
| false
| 8,666
|
hpp
|
jit_sve_512_x8s8s32x_conv_kernel.hpp
|
/*******************************************************************************
* Copyright 2021 Intel Corporation
* Copyright 2021 FUJITSU LIMITED
*
* 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 CPU_AARCH64_JIT_SVE_512_X8S8S32X_CONV_KERNEL_HPP
#define CPU_AARCH64_JIT_SVE_512_X8S8S32X_CONV_KERNEL_HPP
#include "common/c_types_map.hpp"
#include "common/memory_tracking.hpp"
#include "cpu/aarch64/jit_generator.hpp"
#include "cpu/aarch64/jit_primitive_conf.hpp"
namespace dnnl {
namespace impl {
namespace cpu {
namespace aarch64 {
using namespace Xbyak_aarch64;
struct jit_sve_512_x8s8s32x_fwd_kernel : public jit_generator {
DECLARE_CPU_JIT_AUX_FUNCTIONS(_jit_sve_512_x8s8s32x_conv_fwd_ker_t)
enum { STATE_FIRST_DST_LOAD = 0x1U };
jit_sve_512_x8s8s32x_fwd_kernel(
const jit_conv_conf_t &ajcp, const primitive_attr_t &attr)
: jcp(ajcp), attr_(attr) {
if (jcp.with_eltwise) assert(!"not supported");
int ch_block = jcp.is_depthwise ? jcp.ch_block : jcp.ic_block;
switch (ch_block) {
case 16: sve_len_ = 64; break;
case 8: sve_len_ = 32; break;
case 4: sve_len_ = 16; break;
default: assert(!"unreachable"); break;
}
}
~jit_sve_512_x8s8s32x_fwd_kernel() {}
jit_conv_conf_t jcp;
const primitive_attr_t &attr_;
static status_t init_conf(jit_conv_conf_t &jcp,
const convolution_desc_t &cd, memory_desc_t &src_pd,
memory_desc_t &weights_pd, memory_desc_t &dst_pd,
memory_desc_t &bias_pd, const primitive_attr_t &attr, int nthreads);
static void init_scratchpad(memory_tracking::registrar_t &scratchpad,
const jit_conv_conf_t &jcp, const primitive_attr_t &attr);
private:
size_t sve_len_;
enum {
typesize = sizeof(float),
ker_reg_base_idx = 28,
ker_dw_reg_base_idx = 30,
ker_zp_reg_base_idx = 26,
};
typedef enum {
no_last_block,
last_ic_block,
last_sp_block,
} ic_block_t;
/* data regs */
const XReg reg_ptr_scales = x7;
const XReg aux_reg_saturation = x7;
const XReg reg_inp = x8;
const XReg reg_ker = x9;
const XReg reg_out = x10;
const XReg aux_reg_inp = x11;
const XReg reg_ptr_sum_scale = x11;
const XReg aux_reg_ker = x12;
const XReg reg_compensation = x14;
const XReg aux_reg_inp_d = x13;
const XReg aux_reg_ker_d = x15;
// Using 3d regs as depthwise_3d is not yet supported
const XReg reg_inp_buffer_ptr = aux_reg_inp_d;
const XReg aux_reg_inp_buffer_ptr = aux_reg_ker_d;
/* counter regs */
const XReg reg_bias_alpha = x1;
const XReg reg_param1 = x0;
const XReg reg_oi = x3;
const XReg reg_bias = x2;
const XReg reg_oc_blocks = x6;
const XReg reg_owb = aux_reg_ker;
const XReg reg_scratch = reg_compensation;
const XReg reg_kj = reg_ptr_scales;
const XReg reg_ki = reg_compensation;
const XReg reg_overflow = reg_ptr_scales;
const XReg reg_icb = reg_bias;
const XReg reg_jmp_tbl_base = reg_kj;
XReg reg_stack = x22; // translator stack register
/* Temporay registers */
XReg reg_tmp0_imm = x23; // tmp for add_imm
XReg reg_tmp1_imm = x24; // tmp for add_imm
XReg reg_tmp0_adr = x25; // tmp for address value
const PReg ktail_mask = p2;
const PReg kblend_mask = p8;
const PReg mask_tmp = p3;
const PReg mask_tmp2 = p9;
const PReg mask_all_one = p4;
const ZReg vmm_wei = ZReg(31);
/* used during bias section of store_output */
const ZReg vmm_comp = ZReg(30); // only for unsigned input
const ZReg vmm_bias = ZReg(31);
const ZReg vmm_pre_load = ZReg(30); // only for signed input
/* used during post_op sum section of store_output */
const ZReg vmm_prev_dst = ZReg(31);
/* used during write-out section of store_output */
const ZReg vmm_saturation = ZReg(30);
const ZReg vmm_zero = ZReg(31);
/* used in compute_ker (but set during prepare_output) */
const ZReg vmm_shift = vmm_comp; // only for unsigned input
const ZReg vmm_tmp = ZReg(28); // not used for depthwise
const ZReg vmm_one
= ZReg(29); // set at start of kernel, not used for depthwise.
/* registers use only for depthwise
groups are always blocked by 16(padded if needed),
hence use only ZReg registers */
const ZReg zmm_wei = ZReg(31);
ZReg zmm_tmp = ZReg(0);
ZReg zmm_src = ZReg(0);
ZReg zmm_shifted_zero = ZReg(0);
ZReg zmm_permute = ZReg(0);
bool mask_gflag;
ZReg vmm_out(int i_ur, int i_oc) {
int nb_x_blocking
= jcp.is_depthwise ? jcp.nb_ch_blocking : jcp.nb_oc_blocking;
int idx = i_ur * nb_x_blocking + i_oc;
assert(idx
< (jcp.is_depthwise ? ker_dw_reg_base_idx : ker_reg_base_idx));
return ZReg(idx);
}
ZReg zmm_out(int i_ur, int i_oc) {
int idx = vmm_out(i_ur, i_oc).getIdx();
assert(idx
< (jcp.is_depthwise ? ker_dw_reg_base_idx : ker_reg_base_idx));
return ZReg(idx);
}
ZReg vmm_inp(int i_ic, int nb_x_blocking) {
int idx = i_ic + nb_x_blocking * jcp.ur_w;
assert(idx < 31);
return ZReg(idx);
}
ZReg zmm_inp(int i_ic, int nb_x_blocking) {
int idx = i_ic + nb_x_blocking * jcp.ur_w;
const int max_idx = ker_dw_reg_base_idx;
assert(idx < max_idx);
MAYBE_UNUSED(max_idx);
return ZReg(idx);
}
ZReg vmm_bias_alpha() {
int nb_c_block
= jcp.is_depthwise ? jcp.nb_ch_blocking : jcp.nb_oc_blocking;
return ZReg(nb_c_block * jcp.ur_w);
}
ZReg xmm_bias_alpha() {
int nb_c_block
= jcp.is_depthwise ? jcp.nb_ch_blocking : jcp.nb_oc_blocking;
return ZReg(nb_c_block * jcp.ur_w);
}
int get_ow_start(int ki, int pad_l) {
return nstl::max(0,
utils::div_up(pad_l - ki * (jcp.dilate_w + 1), jcp.stride_w));
}
int get_ow_end(int ur_w, int ki, int pad_r) {
return ur_w
- nstl::max(0,
utils::div_up(
pad_r - (jcp.kw - 1 - ki) * (jcp.dilate_w + 1),
jcp.stride_w));
}
void prepare_output(int ur_w);
void store_output(int ur_w, bool last_oc_block_flag);
void compute_ker_dw(int ur_w, int pad_l, int pad_r,
ic_block_t last_ic_block_flag, bool h_padded);
void compute_ker(int ur_w, int pad_l, int pad_r,
ic_block_t last_ic_block_flag, bool h_padded = false);
void kh_loop(int ur_w, int pad_l, int pad_r, ic_block_t last_ic_block_flag);
void icb_loop(int ur_w, int pad_l, int pad_r, bool is_last_spatial_block);
void generate() override;
void cvt2ps(data_type_t type_in, ZReg ymm_in, const XReg reg_base,
const int offset, bool mask_flag);
void vmm_mask_all_one();
void vmm_load_src(ZReg src, XReg reg_addr, bool mask_flag);
int get_offset(int raw_offt) {
auto offt = raw_offt;
int scale = 0;
const int EVEX_max_8b_offt = 0x200;
if (EVEX_max_8b_offt <= offt && offt < 3 * EVEX_max_8b_offt) {
offt = offt - 2 * EVEX_max_8b_offt;
scale = 1;
} else if (3 * EVEX_max_8b_offt <= offt
&& offt < 5 * EVEX_max_8b_offt) {
offt = offt - 4 * EVEX_max_8b_offt;
scale = 2;
}
auto re = offt;
if (scale) re = re + (2 * EVEX_max_8b_offt) * scale;
return re;
}
XReg get_comp_addr_reg(XReg base, int offset = 0) {
auto offt = get_offset(offset);
if (offt == 0) return base;
auto reg_tmp_adr = reg_tmp0_adr;
auto reg_tmp_imm = reg_tmp0_imm;
add_imm(reg_tmp_adr, base, offt, reg_tmp_imm);
return reg_tmp_adr;
}
static bool post_ops_ok(jit_conv_conf_t &jcp, const primitive_attr_t &attr);
};
} // namespace aarch64
} // namespace cpu
} // namespace impl
} // namespace dnnl
#endif
|
fce6af1ef8594fb5e3bbd03210e3f3a4c2585160
|
a9de574b7921a2c47f54d4151e3b1f6a65e8e5a0
|
/gui/webwatch.cpp
|
218240ec5425024ddb7d7c01a9db5512ea2385de
|
[] |
no_license
|
ExpLife0011/webwatch
|
c02bb1fa6bc3e77f49c77737a81fe8c9f1541708
|
15f6b5ac96bc17a4dd126b1cf031e13b91f07ac7
|
refs/heads/master
| 2020-03-23T21:41:31.034220
| 2008-05-22T04:00:15
| 2008-05-22T04:00:15
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,862
|
cpp
|
webwatch.cpp
|
// WebWatch UI - by DEATH, 2004
//
// $Workfile: webwatch.cpp $ - WebWatch application
//
// $Author: Death $
// $Revision: 2 $
// $Date: 4/02/05 3:58 $
// $NoKeywords: $
//
#include "stdafx.h"
#include "openssl/ssl.h"
#include "core/Core.h"
#include "core/CheckMethod.h"
#include "WebWatch.h"
#include "Common.h"
#include "MainDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif // _DEBUG
CWebWatchApp theApp;
BEGIN_MESSAGE_MAP(CWebWatchApp, CWinApp)
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()
CWebWatchApp::CWebWatchApp()
{
}
BOOL CWebWatchApp::InitInstance()
{
// InitCommonControls() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles. Otherwise, any window creation will fail.
InitCommonControls();
CWinApp::InitInstance();
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
SSL_library_init();
SSL_load_error_strings();
AfxEnableControlContainer();
// Register check methods
Core::CheckMethod::RegisterAllTypes();
// Make a per-run backup of configuration file
if (WebWatch::IsFileExistent("WebWatch.xml"))
WebWatch::MakeBackup("WebWatch.xml", WebWatch::perRun, 0);
try {
CMainDlg dlg;
m_pMainWnd = &dlg;
dlg.DoModal();
}
catch (const std::exception & ex) {
std::string msg = "WebWatch raised an unexpected exception "
"and will now terminate: ";
msg += ex.what();
MessageBox(NULL, msg.c_str(), "Unexpected exception", MB_OK | MB_ICONERROR);
return FALSE;
}
catch (...) {
MessageBox(0, "WebWatch raised an unknown exception "
"and will now terminate.", "Unknown exception",
MB_OK | MB_ICONERROR);
}
return TRUE;
}
|
74e65717141c0865480b2327ab6f3da24e6a73b5
|
7ecc83985c216e6e2b45255a01ea86d0f7c16c28
|
/Libraries/ionWindow/ionOS.cpp
|
1175810b2081496eccb956c4124cd2881fecce04
|
[
"MIT"
] |
permissive
|
iondune/ionEngine
|
98426728173152d80905a2e2493cb11fd9b243c8
|
0c848cb024e8cb1cb24b17fda52b0ad60db5f5cc
|
refs/heads/master
| 2023-06-09T13:50:47.269610
| 2021-04-26T01:29:46
| 2021-04-26T01:29:46
| 25,057,840
| 40
| 10
| null | 2016-05-01T22:59:00
| 2014-10-11T00:21:17
|
C++
|
UTF-8
|
C++
| false
| false
| 336
|
cpp
|
ionOS.cpp
|
#include "ionOS.h"
#include <Windows.h>
namespace ion
{
namespace OS
{
uint64 GetCurrentFileTime()
{
SYSTEMTIME st;
GetSystemTime(& st);
FILETIME ft = { 0 };
int success = SystemTimeToFileTime(& st, & ft);
uint64 t = ft.dwLowDateTime | static_cast<uint64>(ft.dwHighDateTime) << 32;
return t;
}
}
}
|
1fd1d1dc2893d4880121b9290299e7913773df65
|
4682015ffbef1f93504eb918926ae3383f4a21c5
|
/IntegrityCheckerGUI/SystemCore.h
|
ded416be972eaa89dfbff243f61b11eca36cb4c7
|
[] |
no_license
|
KarenKrill/IntegrityChecker
|
420b1f5f57b3683d285f181264b8078c7227e545
|
93649d9d565ec1a04cf9125c78bca8ded310c1ea
|
refs/heads/main
| 2023-07-21T12:19:42.259269
| 2021-08-28T09:37:06
| 2021-08-28T09:37:06
| 400,754,832
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,830
|
h
|
SystemCore.h
|
#pragma once
#include <Windows.h>
#include <new.h>
#include <fstream>
#define MB(header, text) MessageBoxW(NULL, (LPCWSTR)(text), (LPCWSTR)header, MB_OK)
typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;
typedef long long longlong;
typedef unsigned long long ulonglong;
typedef __int8 int8;
typedef unsigned __int8 uint8;
typedef __int16 int16;
typedef unsigned __int16 uint16;
typedef __int32 int32;
typedef unsigned __int32 uint32;
typedef __int64 int64;
typedef unsigned __int64 uint64;
#ifndef NULL
#define NULL 0
#endif
namespace SystemCore
{
ulong GetTime();
namespace Memory
{
template<class T> T* Alloc(uint length){return new(std::nothrow) T[length];}
template<class T> T* Alloc(){return new(std::nothrow) T;}
template<class T> void FreeBuf(T* buffer){if(buffer) delete []buffer;}
template<class T> void FreePtr(T* pointer){if(pointer) delete pointer;}
bool Copy(const void *src, void *dest, uint size);
bool Move(const void *src, void *dest, uint size);
bool Set(void *buff, int value, uint length);
bool Clear(void *buff, uint size);
}
namespace Locale
{
bool BytesToWchars(const char* src, uint length, wchar_t* dest);
}
namespace Exceptions
{
class Exception
{
public:
Exception(){}
~Exception(){}
};
class OutOfRange: public Exception
{
public:
OutOfRange(){}
~OutOfRange(){}
};
}
namespace FileSystem
{
class FileStream
{
std::ifstream istream;
std::ofstream ostream;
std::wifstream wistream;
std::wofstream wostream;
public:
bool wide;
bool append;
FileStream();
~FileStream();
void Read();
bool Write(const wchar_t * filename, const wchar_t* buff, uint length);
};
}
}
|
9bbbabb95226927305bde44a571482298673505c
|
54f352a242a8ad6ff5516703e91da61e08d9a9e6
|
/Source Codes/AtCoder/arc097/A/2498540.cpp
|
cfa155e2aedff19ec75701da809c4a072cd516bd
|
[] |
no_license
|
Kawser-nerd/CLCDSA
|
5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb
|
aee32551795763b54acb26856ab239370cac4e75
|
refs/heads/master
| 2022-02-09T11:08:56.588303
| 2022-01-26T18:53:40
| 2022-01-26T18:53:40
| 211,783,197
| 23
| 9
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,006
|
cpp
|
2498540.cpp
|
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>
#include <climits>
#define rep(i, m, n) for(int i=int(m);i<int(n);i++)
//#define EACH(i, c) for (auto &(i): c)
#define all(c) begin(c),end(c)
//#define EXIST(s, e) ((s).find(e)!=(s).end())
//#define SORT(c) sort(begin(c),end(c))
//#define pb emplace_back
//#define MP make_pair
//#define SZ(a) int((a).size())
//#define LOCAL 0
//#ifdef LOCAL
//#define DEBUG(s) cout << (s) << endl
//#define dump(x) cerr << #x << " = " << (x) << endl
//#define BR cout << endl;
//#else
//#define DEBUG(s) do{}while(0)
//#define dump(x) do{}while(0)
//#define BR
//#endif
//??
typedef long long int ll;
using namespace std;
#define INF (1 << 30) - 1
#define INFl (ll)5e15
#define DEBUG 0 //???????1????
#define dump(x) cerr << #x << " = " << (x) << endl
#define MOD 1000000007
//????????
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
string s;
cin >> s;
int K;
cin >> K;
// char minc = 'a';
// rep(i, 0, s.size()) {
// if (s[i] < minc) {
// minc = s[i];
// }
// }
// vector<string> kouho;
//
// for (int i = 0; i < s.size(); i++) {
// if (s[i] == minc) {
// string tmp;
// for (int j = i; j < s.size(); j++) {
// tmp += s[j];
// }
// kouho.push_back(tmp);
// }
// }
// sort(all(kouho));
// vector<string> kouho2;
set<string> sset;
for (char c = 'a'; c <= 'z'; c++) {
vector<string> kouho;
for (int i = 0; i < s.size(); i++) {
if (s[i] == c) {
string tmp;
for (int j = i; j < s.size(); j++) {
tmp += s[j];
}
kouho.push_back(tmp);
}
}
sort(all(kouho));
vector<string> mindir;
for (int i = 0; i < kouho.size(); i++) {
string tmp;
for (int j = 0; j < kouho[i].size(); j++) {
tmp += kouho[i][j];
sset.insert(tmp);
}
if (sset.size() >= K) {
for (auto e : sset) {
mindir.push_back(e);
}
sort(all(mindir));
cout << mindir[K - 1] << endl;
return 0;
}
}
}
return 0;
}
|
2985ffa274672ed1a431ece5f043a3867894e3f0
|
74f7742ca9e42e19a2010587ea94c626a92edc5e
|
/Source/HideAndSeekWithAI/Private/Base_Projectile.cpp
|
354c339fc5a5c03f400b82424a1b74a4d13e59ce
|
[
"MIT"
] |
permissive
|
badAcc3ss/HideNSeekwithAI
|
9d1ff5550511382095e039c29f2f218ad46df080
|
f2d9cac308d2d6d82f7ecf5116b571347af09603
|
refs/heads/master
| 2022-11-18T18:06:03.951224
| 2020-07-20T09:51:58
| 2020-07-20T09:51:58
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,055
|
cpp
|
Base_Projectile.cpp
|
// Fill out your copyright notice in the Description page of Project Settings.
#include "Base_Projectile.h"
#include "Kismet/GameplayStatics.h"
#include "GameSpawnActor.h"
#include "Perception/AISense_Hearing.h"
ABase_Projectile::ABase_Projectile()
{
CollisionComponent = CreateDefaultSubobject<UBoxComponent>(TEXT("CollisionComponent"));
RootComponent = CollisionComponent;
CollisionComponent->SetCollisionProfileName(TEXT("Projectile"));
CollisionComponent->SetWorldScale3D(DEFAULT_SCALE);
Projectile = CreateDefaultSubobject<UProjectileMovementComponent>(TEXT("ProjectileMovementComponent"));
Projectile->bShouldBounce = true;
Projectile->Bounciness = 0.3f;
}
void ABase_Projectile::BeginPlay()
{
Super::BeginPlay();
if (Projectile)
{
Projectile->OnProjectileStop.AddDynamic(this, &ABase_Projectile::OnProjectileStopBouncing);
FVector TargetProjectileVelocity;
UGameplayStatics::SuggestProjectileVelocity_CustomArc(this, TargetProjectileVelocity, ProjectileStartLocation, ProjectileEndLocation);
Projectile->Velocity = TargetProjectileVelocity;
}
}
void ABase_Projectile::NotifyHit(UPrimitiveComponent* MyComp, AActor* Other, UPrimitiveComponent* OtherComp,
bool bSelfMoved, FVector HitLocation, FVector HitNormal, FVector NormalImpulse, const FHitResult& Hit)
{
if (AttachedActor)
{
UAISense_Hearing::ReportNoiseEvent(this, AttachedActor->GetActorLocation(), 1.0f, GetOwner(), NOISE_RANGE, NoiseTag);
}
}
void ABase_Projectile::SetNoiseTag(FName const NoiseTagToSet)
{
NoiseTag = NoiseTagToSet;
}
void ABase_Projectile::SetAttachedActor(AGameSpawnActor* const AttachedActorToSet)
{
AttachedActor = AttachedActorToSet;
}
void ABase_Projectile::SetProjectileStartLocation(FVector ProjectileStartLocationToSet)
{
ProjectileStartLocation = ProjectileStartLocationToSet;
}
void ABase_Projectile::SetProjectileEndLocation(FVector ProjectileEndLocationToSet)
{
ProjectileEndLocation = ProjectileEndLocationToSet;
}
void ABase_Projectile::OnProjectileStopBouncing(const FHitResult& ImpactResult)
{
Destroy();
}
|
27a42350a9b706c4a90bf866ad985f6430687862
|
cd5004f094e6afaa9a2991faecb4c4431c13e615
|
/Lab11/lab11.cpp
|
c48de0de7039bd5e0829aa44f1524c8dcc5f4fff
|
[] |
no_license
|
drewdawg96/Andrew-s-CSCI20-Fall2017
|
7def60075a79ded97925a7f7a48abfede11c8a92
|
87a6c17fd08c5233cf3153b0f7ee35d9eb51f8e8
|
refs/heads/master
| 2021-01-19T18:22:39.725245
| 2017-10-17T22:27:34
| 2017-10-17T22:27:34
| 101,128,632
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 590
|
cpp
|
lab11.cpp
|
User starts the number guessing game program
User will have a total of ten points
Program chooses one random number between 1-25
User attempts to guess that number
Program tells user 'higher' if they guessed a lower number
Program tells user 'lower' if they guessed a higher number
Program subracts one out of a total of ten points if they guess incorrectly
User guesses again
Program tells user 'higher' or 'lower' depending on user's choice of number
User will continue to guess
Program will continue to subtract from the user's ten points if they guess incorrectly
User guesses correctly
|
89dadce0e5367ed6bd384790c99446f5212d2ce9
|
c32ee8ade268240a8064e9b8efdbebfbaa46ddfa
|
/Libraries/m2sdk/IndirectX/IdxShaderAttributeARB.h
|
04825d84555f1df3c1fb9eeb6ab7beabc1a2d47b
|
[] |
no_license
|
hopk1nz/maf2mp
|
6f65bd4f8114fdeb42f9407a4d158ad97f8d1789
|
814cab57dc713d9ff791dfb2a2abeb6af0e2f5a8
|
refs/heads/master
| 2021-03-12T23:56:24.336057
| 2015-08-22T13:53:10
| 2015-08-22T13:53:10
| 41,209,355
| 19
| 21
| null | 2015-08-31T05:28:13
| 2015-08-22T13:56:04
|
C++
|
UTF-8
|
C++
| false
| false
| 368
|
h
|
IdxShaderAttributeARB.h
|
// auto-generated file (rttidump-exporter by h0pk1nz)
#pragma once
#include <IndirectX/IdxShaderAttribute.h>
namespace IndirectX
{
/** IndirectX::IdxShaderAttributeARB (VTable=0x01EAB0A8) */
class IdxShaderAttributeARB : public IdxShaderAttribute
{
public:
virtual void vfn_0001_BC29EDFB() = 0;
virtual void vfn_0002_BC29EDFB() = 0;
};
} // namespace IndirectX
|
fe01bd18bca200708a4ffb2abb6887b74f821fcf
|
d2da0dbac2df97df59902320794f058c839506c0
|
/3rd/zxc_net/zxc_net/TcpServer.cc
|
2ce665ba65a4f7e8d75fb2cacbe9be12fb8b7b99
|
[] |
no_license
|
zput/coffee-mini_programs-CPlusPlus_server
|
5977c6e52d0920f6844f78e9bbf07135c49962c4
|
194bdb7900b50a55ba148937ffaba90da6dc0380
|
refs/heads/master
| 2021-09-21T00:57:24.214956
| 2018-08-18T08:25:49
| 2018-08-18T08:25:49
| 100,322,267
| 4
| 1
| null | null | null | null |
GB18030
|
C++
| false
| false
| 2,685
|
cc
|
TcpServer.cc
|
#include"EventLoop.h"
#include"InetAddress.h"
#include"Accept.h"
#include"TcpConnection.h"
#include"TcpServer.h"
#include"Logger.h"
using namespace zxc_net;
TcpServer::TcpServer(EventLoop* loop, const InetAddress& local)
:loop_(loop),
address_(&local),
accept_(new Accept(loop_, address_)),
eventLoopThreadPool_( new EventLoopThreadPool(loop_,1) )
{
eventLoopThreadPool_->start();
accept_->setMessageCallback(messageCallback_);
accept_->setNewconnectionCallback(std::bind(&TcpServer::newConnection, this,
std::placeholders::_1,
std::placeholders::_2,
std::placeholders::_3));
}
TcpServer::TcpServer (EventLoop* loop, std::string& ip, uint16_t port)
:loop_(loop),
address_( new InetAddress(ip, port)),
accept_(new Accept(loop_,address_)) {
accept_->setMessageCallback(messageCallback_);
// accept_->setNewconnectionCallback([this](){newConnection( );});
accept_->setNewconnectionCallback(std::bind(&TcpServer::newConnection, this,
std::placeholders::_1,
std::placeholders::_2,
std::placeholders::_3));
}
TcpServer::~TcpServer () {
delete eventLoopThreadPool_;
}
void TcpServer::newConnection( int connfd,
const InetAddress& local,
const InetAddress& peer ) {
EventLoop* ioLoop =eventLoopThreadPool_->getOneLoop();
std::shared_ptr<TcpConnection > conn(new TcpConnection(ioLoop, connfd, local, peer));
conn->setWriteCallback(writeCallback_);
conn->setMessageCallback(messageCallback_);
conn->setConnectionCallback(connectionCallback_);
conn->setWriteCompleteCallback(writeCompleteCallback_);
conn->setremoveConnectionCallback(bind(&TcpServer::removeConnection,this,std::placeholders::_1));
ioLoop->runInLoop(std::bind(&TcpConnection::connectEstablished,conn) );
connLists_.push_back(conn);
}
void TcpServer::removeConnection( const std::shared_ptr<TcpConnection>& conn ) {
// 当一到到达这个函数 , 证明现在已经在TcpServer中的clientfd 的线程池里的某个线程中(Loop)
// 我们需要跳到 TcpServer所在的主线程中, acceptfd?
loop_->runInLoop( std::bind(&TcpServer::removeConnectionInLoop, this, conn) );
}
void TcpServer::removeConnectionInLoop(const TcpConnectionPtr& conn) {
for (CONNLISTS::iterator i = connLists_.begin(); i != connLists_.end(); i++) {
if (*i == conn) {
connLists_.erase(i);
break;
}
}
EventLoop* ioLoop = conn->getLoop();
ioLoop->queueInLoop(std::bind(&TcpConnection::destoryConn, conn));
TRACE("\nTcpServer::removeConnection ---close \n");
}
|
9f5b67526842031399e1f8496e24164b11becce1
|
7460f2c56af13c59157099432ffd5b8f9acbde21
|
/client.cpp
|
118cb440e65a673a4aee809735a34b20b659ba03
|
[] |
no_license
|
MartinKrumov/lessons
|
dbbc7f6598502382a8c2f56241033344a1c4600b
|
ae449276345d16dbe13fa255eec0b67d335fd196
|
refs/heads/master
| 2021-01-20T04:11:35.625664
| 2015-04-02T16:46:29
| 2015-04-02T16:46:29
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,874
|
cpp
|
client.cpp
|
#include<iostream>
#include<string>
using namespace std;
class Client
{
private:
int number; //id Primary key
string family;
double revenue;
double income;
double credit;
public:
Client(int num, string fam, double rev, double inc, double cred); //consructor
Client(); //default consructot
void setNumber(int number);
int getNumber();
void setFamily(string family);
string getFamily();
void setRevenue(double revenue);
double getRevenue();
void setIncome(double income);
double getIncome();
void setCredit(double credit);
double getCredit();
double calculateBalance();
};
Client::Client() {
}
Client::Client(int num, string fam, double rev, double inc, double cred){
number = num;
family = fam;
revenue = rev;
income = inc;
credit = cred;
}
double Client::calculateBalance()
{
return revenue + income - credit;
}
int Client::getNumber()
{
return number;
}
void Client::setNumber(int num)
{
number = num;
}
string Client::getFamily()
{
return family;
}
void Client::setFamily(string fam)
{
family = fam;
}
double Client::getRevenue()
{
return revenue;
}
void Client::setRevenue(double rev)
{
revenue = rev;
}
double Client::getIncome()
{
return income;
}
void Client::setIncome(double inc)
{
income = inc;
}
double Client::getCredit()
{
return credit;
}
void Client::setCredit(double cred)
{
credit = cred;
}
int main()
{
//Client* client = new Client[5];
Client ivan;
ivan.setFamily("Ivanov");
cout<<ivan.getFamily()<<endl;
Client petar;
petar.setFamily("Petrov");
cout<<petar.getFamily()<<endl;
// cout<<client.getFamily();
int egn;
cout<<"Vyvedete egn:";
cin>>egn;
double balance = ivan.calculateBalance();
cout<<"The clients balance is: " << balance;
return 0;
}
|
72ea44d429079bc6757c0fd11e1b103dbb6fedb7
|
9f396d984b9eab38050770f64ad087f2cc14d1d8
|
/mainwindow.h
|
739fc950b1e918af3e90052b396da720d704dd97
|
[] |
no_license
|
MenglynnHe/towerdefence
|
94d825563502c8225926245dcfdf5a858269115f
|
ae6416018a416a17be3615355755e3e1ecb48767
|
refs/heads/master
| 2022-10-25T09:36:47.912036
| 2020-06-22T13:03:13
| 2020-06-22T13:03:13
| 266,954,457
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 760
|
h
|
mainwindow.h
|
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QList>
#include"scene.h"
#include"QSound"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void paintEvent(QPaintEvent *);
ChoiceScene * choices=nullptr;
BaseScene * scene=nullptr;
QTimer* timer = nullptr;//@
//主场景音乐
QSound *mainsound= new QSound(":/AudioConvert/entry.wav",this);
private:
Ui::MainWindow *ui;
signals:
void toTitle();
public slots:
void choice();//选择关卡
void back(); // 来到主界面
void playPolar();//开始游戏
void playCanyon();
void onTimer();
};
#endif // MAINWINDOW_H
|
fa8dfb6402b81db815c7a652619978474ab8a597
|
fe0494a9025d2fb533ef41e167c819a4818b4aa7
|
/runtime/dart_runner/main.cc
|
615def9483a8f9a4fe0f0883f4c775f0a5eab1f4
|
[
"BSD-3-Clause"
] |
permissive
|
miracllife/topaz
|
3f74e6373e0af9f4aee5ab0b18e430bbf33eee03
|
43507509831eb7e4ee1349fe26028ec5fb6cc8b3
|
refs/heads/master
| 2020-04-07T20:26:28.630221
| 2018-11-06T17:15:54
| 2018-11-06T17:15:54
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 498
|
cc
|
main.cc
|
// Copyright 2016 The Fuchsia 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 <trace-provider/provider.h>
#include "topaz/lib/deprecated_loop/message_loop.h"
#include "topaz/runtime/dart_runner/dart_runner.h"
int main(int argc, const char** argv) {
deprecated_loop::MessageLoop loop;
trace::TraceProvider provider(loop.dispatcher());
dart_runner::DartRunner runner;
loop.Run();
return 0;
}
|
3088e4ccd67f27e48d9344420e03268caee6a6d3
|
65148705fb2f6729c54ba1bcf8cfd351d7288369
|
/win-term/tool.cpp
|
4193de398ba33781aab947df64966ae3b84a0b1f
|
[] |
no_license
|
blahgeek/MadeAComputerIn20Days
|
19856f6be622cac3913825024bed9b48f76d830a
|
015ea43382d87b55b3b549de51a6f999a99c9626
|
refs/heads/master
| 2016-09-05T15:59:20.787348
| 2014-07-27T15:17:06
| 2014-07-27T15:17:06
| 21,484,184
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,144
|
cpp
|
tool.cpp
|
#include "tool.h"
bool string2reg(char s[],int& result){
string GPRName[] = {"zero","at","v0","v1","a0","a1","a2","a3","t0","t1","t2","t3","t4","t5","t6","t7","s0"
,"s1","s2","s3","s4","s5","s6","s7","t8","t9","k0","k1","gp","sp","s8","ra"};
if (s[0]!='$' || strlen(s)<2) return false;
bool flag = string2num(s+1,result);
if (result>31) flag = false;
if (!flag){
for (int i=0;i<32;i++){
if (strcmp(s+1,GPRName[i].c_str())==0){
result = i;
return true;
}
}
}
return flag;
}
bool string2signed16(char s[],int& result){
bool flag = string2num(s,result);
if (result>32767 || result<-32768) flag = false;
return flag;
}
bool string2usigned16(char s[],int& result){
bool flag = string2num(s,result);
if (result<0 || result>65535) flag = false;
return flag;
}
bool string2num(char s[],int& result){
if ( strlen(s) >2 && s[0] == '0' && s[1] == 'x'){
return string2hex(s+2,result);
}
else
return string2dec(s,result);
}
bool string2dec(char s[],int& result){
int signal = 1;
result = 0;
for (unsigned int i=0;i<strlen(s);i++){
result *= 10;
if (i==0 && s[i]=='-'){
signal = -1;
continue;
}
if (s[i]<='9' && s[i]>='0'){
result += s[i]-'0';
}
else
return false;
}
result *= signal;
return true;
}
bool string2hex(char s[],int& result){
result = 0;
for (unsigned int i=0;i<strlen(s);i++){
result *= 16;
if (s[i]<='9' && s[i]>='0'){
result += s[i] - '0';
}
else if (s[i]>='a' && s[i]<='f'){
result += s[i] - 'a' + 10;
}
else{
return false;
}
}
return true;
}
bool string2decaddr(char s[],word& result){
result = 0;
for (unsigned int i=0;i<strlen(s);i++){
result *= 10;
if (i==0 && s[i]=='-'){
return false;
}
if (s[i]<='9' && s[i]>='0'){
result += s[i]-'0';
}
else
return false;
}
return true;
}
bool string2hexaddr(char s[],word& result){
result = 0;
for (unsigned int i=0;i<strlen(s);i++){
result *= 16;
if (s[i]<='9' && s[i]>='0'){
result += s[i] - '0';
}
else if (s[i]>='a' && s[i]<='f'){
result += s[i] - 'a' + 10;
}
else if(s[i]>='A' && s[i]<='F'){
result += s[i] - 'A' + 10;
}
else{
return false;
}
}
return true;
}
bool string2addr(char s[],word& result){
if ( strlen(s) >2 && s[0] == '0' && (s[1] == 'x' || s[1] == 'X')){
return string2hexaddr(s+2,result);
}
else
return string2decaddr(s,result);
}
int signalExtend16(int s){
if (s>=32768){
return s | (word)4294901760;
}
else
return s & 65535;
}
int signalExtend8(int s){
if (s>=128){
return s | (word)4294967040;
}
else
return s & 255;
}
void coutHexNum(word num){
char str[] = "0x00000000";
int pos = 9;
while(num>0){
int r = num % 16;
if (r<10)
str[pos] = '0' + r;
else
str[pos] = 'a' + r - 10;
pos--;
num = num / 16;
}
cout<<str;
}
void coutBinNum(word bin){
word mask = 2147483648;
for (int i=0;i<32;i++){
word m = mask & bin;
if (m>0){
cout<<"1";
}
else{
cout<<"0";
}
mask>>=1;
}
}
|
5375a29315ace346a637d66d8b3dddb15400a7e2
|
8242d218808b8cc5734a27ec50dbf1a7a7a4987a
|
/Intermediate/Build/Win64/Netshoot/Inc/AudioExtensions/IAudioExtensionPlugin.generated.h
|
072ae5d10cc11257f427c2a03626bb033dd182ff
|
[] |
no_license
|
whyhhr/homework2
|
a2e75b494a962eab4fb0a740f83dc8dc27f8f6ee
|
9808107fcc983c998d8601920aba26f96762918c
|
refs/heads/main
| 2023-08-29T08:14:39.581638
| 2021-10-22T16:47:11
| 2021-10-22T16:47:11
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 15,065
|
h
|
IAudioExtensionPlugin.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 AUDIOEXTENSIONS_IAudioExtensionPlugin_generated_h
#error "IAudioExtensionPlugin.generated.h already included, missing '#pragma once' in IAudioExtensionPlugin.h"
#endif
#define AUDIOEXTENSIONS_IAudioExtensionPlugin_generated_h
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_SPARSE_DATA
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_RPC_WRAPPERS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_RPC_WRAPPERS_NO_PURE_DECLS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUSpatializationPluginSourceSettingsBase(); \
friend struct Z_Construct_UClass_USpatializationPluginSourceSettingsBase_Statics; \
public: \
DECLARE_CLASS(USpatializationPluginSourceSettingsBase, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/AudioExtensions"), NO_API) \
DECLARE_SERIALIZER(USpatializationPluginSourceSettingsBase) \
static const TCHAR* StaticConfigName() {return TEXT("Engine");} \
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_INCLASS \
private: \
static void StaticRegisterNativesUSpatializationPluginSourceSettingsBase(); \
friend struct Z_Construct_UClass_USpatializationPluginSourceSettingsBase_Statics; \
public: \
DECLARE_CLASS(USpatializationPluginSourceSettingsBase, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/AudioExtensions"), NO_API) \
DECLARE_SERIALIZER(USpatializationPluginSourceSettingsBase) \
static const TCHAR* StaticConfigName() {return TEXT("Engine");} \
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API USpatializationPluginSourceSettingsBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(USpatializationPluginSourceSettingsBase) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USpatializationPluginSourceSettingsBase); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USpatializationPluginSourceSettingsBase); \
private: \
/** Private move- and copy-constructors, should never be used */ \
NO_API USpatializationPluginSourceSettingsBase(USpatializationPluginSourceSettingsBase&&); \
NO_API USpatializationPluginSourceSettingsBase(const USpatializationPluginSourceSettingsBase&); \
public:
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_ENHANCED_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API USpatializationPluginSourceSettingsBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()) : Super(ObjectInitializer) { }; \
private: \
/** Private move- and copy-constructors, should never be used */ \
NO_API USpatializationPluginSourceSettingsBase(USpatializationPluginSourceSettingsBase&&); \
NO_API USpatializationPluginSourceSettingsBase(const USpatializationPluginSourceSettingsBase&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USpatializationPluginSourceSettingsBase); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USpatializationPluginSourceSettingsBase); \
DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(USpatializationPluginSourceSettingsBase)
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_PRIVATE_PROPERTY_OFFSET
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_167_PROLOG
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_PRIVATE_PROPERTY_OFFSET \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_SPARSE_DATA \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_RPC_WRAPPERS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_INCLASS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_PRIVATE_PROPERTY_OFFSET \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_SPARSE_DATA \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_RPC_WRAPPERS_NO_PURE_DECLS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_INCLASS_NO_PURE_DECLS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_170_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> AUDIOEXTENSIONS_API UClass* StaticClass<class USpatializationPluginSourceSettingsBase>();
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_SPARSE_DATA
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_RPC_WRAPPERS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_RPC_WRAPPERS_NO_PURE_DECLS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUOcclusionPluginSourceSettingsBase(); \
friend struct Z_Construct_UClass_UOcclusionPluginSourceSettingsBase_Statics; \
public: \
DECLARE_CLASS(UOcclusionPluginSourceSettingsBase, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/AudioExtensions"), NO_API) \
DECLARE_SERIALIZER(UOcclusionPluginSourceSettingsBase) \
static const TCHAR* StaticConfigName() {return TEXT("Engine");} \
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_INCLASS \
private: \
static void StaticRegisterNativesUOcclusionPluginSourceSettingsBase(); \
friend struct Z_Construct_UClass_UOcclusionPluginSourceSettingsBase_Statics; \
public: \
DECLARE_CLASS(UOcclusionPluginSourceSettingsBase, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/AudioExtensions"), NO_API) \
DECLARE_SERIALIZER(UOcclusionPluginSourceSettingsBase) \
static const TCHAR* StaticConfigName() {return TEXT("Engine");} \
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UOcclusionPluginSourceSettingsBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UOcclusionPluginSourceSettingsBase) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UOcclusionPluginSourceSettingsBase); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UOcclusionPluginSourceSettingsBase); \
private: \
/** Private move- and copy-constructors, should never be used */ \
NO_API UOcclusionPluginSourceSettingsBase(UOcclusionPluginSourceSettingsBase&&); \
NO_API UOcclusionPluginSourceSettingsBase(const UOcclusionPluginSourceSettingsBase&); \
public:
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_ENHANCED_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UOcclusionPluginSourceSettingsBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()) : Super(ObjectInitializer) { }; \
private: \
/** Private move- and copy-constructors, should never be used */ \
NO_API UOcclusionPluginSourceSettingsBase(UOcclusionPluginSourceSettingsBase&&); \
NO_API UOcclusionPluginSourceSettingsBase(const UOcclusionPluginSourceSettingsBase&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UOcclusionPluginSourceSettingsBase); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UOcclusionPluginSourceSettingsBase); \
DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UOcclusionPluginSourceSettingsBase)
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_PRIVATE_PROPERTY_OFFSET
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_366_PROLOG
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_PRIVATE_PROPERTY_OFFSET \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_SPARSE_DATA \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_RPC_WRAPPERS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_INCLASS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_PRIVATE_PROPERTY_OFFSET \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_SPARSE_DATA \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_RPC_WRAPPERS_NO_PURE_DECLS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_INCLASS_NO_PURE_DECLS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_369_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> AUDIOEXTENSIONS_API UClass* StaticClass<class UOcclusionPluginSourceSettingsBase>();
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_SPARSE_DATA
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_RPC_WRAPPERS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_RPC_WRAPPERS_NO_PURE_DECLS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUReverbPluginSourceSettingsBase(); \
friend struct Z_Construct_UClass_UReverbPluginSourceSettingsBase_Statics; \
public: \
DECLARE_CLASS(UReverbPluginSourceSettingsBase, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/AudioExtensions"), NO_API) \
DECLARE_SERIALIZER(UReverbPluginSourceSettingsBase) \
static const TCHAR* StaticConfigName() {return TEXT("Engine");} \
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_INCLASS \
private: \
static void StaticRegisterNativesUReverbPluginSourceSettingsBase(); \
friend struct Z_Construct_UClass_UReverbPluginSourceSettingsBase_Statics; \
public: \
DECLARE_CLASS(UReverbPluginSourceSettingsBase, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/AudioExtensions"), NO_API) \
DECLARE_SERIALIZER(UReverbPluginSourceSettingsBase) \
static const TCHAR* StaticConfigName() {return TEXT("Engine");} \
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UReverbPluginSourceSettingsBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UReverbPluginSourceSettingsBase) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UReverbPluginSourceSettingsBase); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UReverbPluginSourceSettingsBase); \
private: \
/** Private move- and copy-constructors, should never be used */ \
NO_API UReverbPluginSourceSettingsBase(UReverbPluginSourceSettingsBase&&); \
NO_API UReverbPluginSourceSettingsBase(const UReverbPluginSourceSettingsBase&); \
public:
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_ENHANCED_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UReverbPluginSourceSettingsBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()) : Super(ObjectInitializer) { }; \
private: \
/** Private move- and copy-constructors, should never be used */ \
NO_API UReverbPluginSourceSettingsBase(UReverbPluginSourceSettingsBase&&); \
NO_API UReverbPluginSourceSettingsBase(const UReverbPluginSourceSettingsBase&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UReverbPluginSourceSettingsBase); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UReverbPluginSourceSettingsBase); \
DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UReverbPluginSourceSettingsBase)
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_PRIVATE_PROPERTY_OFFSET
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_481_PROLOG
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_PRIVATE_PROPERTY_OFFSET \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_SPARSE_DATA \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_RPC_WRAPPERS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_INCLASS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
#define Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_PRIVATE_PROPERTY_OFFSET \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_SPARSE_DATA \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_RPC_WRAPPERS_NO_PURE_DECLS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_INCLASS_NO_PURE_DECLS \
Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h_484_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> AUDIOEXTENSIONS_API UClass* StaticClass<class UReverbPluginSourceSettingsBase>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID Engine_Source_Runtime_AudioExtensions_Public_IAudioExtensionPlugin_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
3234253cfa060df2df57b112236a035badb74d56
|
80fe666b677642a6234ceca890bfdf910bd64d29
|
/src/ColorFrameCtrl.cpp
|
8db9488512f581fc4533594f565804eaf46c162b
|
[] |
no_license
|
persmule/amule-dlp
|
44468301a226dfebadd5375f5101ba05ce4ea699
|
7b3a07ab554d95267cca0c4a819b26d8474d6b3b
|
refs/heads/master
| 2023-03-12T04:17:08.845709
| 2023-03-02T06:53:11
| 2023-03-02T06:53:11
| 15,818,026
| 96
| 36
| null | 2022-01-05T05:14:08
| 2014-01-11T06:31:08
|
C++
|
UTF-8
|
C++
| false
| false
| 4,166
|
cpp
|
ColorFrameCtrl.cpp
|
//
// This file is part of the aMule Project.
//
// Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
// Copyright (c) 2002-2011 Merkur ( devs@emule-project.net / http://www.emule-project.net )
//
// Any parts of this program derived from the xMule, lMule or eMule project,
// or contributed by third-party developers are copyrighted by their
// respective authors.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 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, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
//
#include <wx/dcclient.h>
#include "ColorFrameCtrl.h" // Interface declarations
#include "MuleColour.h"
/////////////////////////////////////////////////////////////////////////////
// CColorFrameCtrl
CColorFrameCtrl::CColorFrameCtrl( wxWindow* parent,int id, int wid,int hei )
: wxControl(parent,id,wxDefaultPosition,wxSize(wid,hei)),
m_brushBack(*wxBLACK_BRUSH),
m_brushFrame(CMuleColour(0,255,255).GetBrush())
{
SetSizeHints(wid,hei,wid,hei,0,0);
wxRect rc=GetClientRect();
m_rectClient.left=rc.x;
m_rectClient.top=rc.y;
m_rectClient.right=rc.x + wid;
m_rectClient.bottom=rc.y + hei;
} // CColorFrameCtrl
/////////////////////////////////////////////////////////////////////////////
CColorFrameCtrl::~CColorFrameCtrl()
{
} // ~CColorFrameCtrl
BEGIN_EVENT_TABLE(CColorFrameCtrl,wxControl)
EVT_PAINT(CColorFrameCtrl::OnPaint)
EVT_SIZE(CColorFrameCtrl::OnSize)
END_EVENT_TABLE()
/////////////////////////////////////////////////////////////////////////////
// CColorFrameCtrl message handlers
/////////////////////////////////////////////////////////////////////////////
void CColorFrameCtrl::SetFrameBrushColour(const wxColour& colour)
{
m_brushFrame = *(wxTheBrushList->FindOrCreateBrush(colour, wxBRUSHSTYLE_SOLID));
Refresh(FALSE);
} // SetFrameColor
/////////////////////////////////////////////////////////////////////////////
void CColorFrameCtrl::SetBackgroundBrushColour(const wxColour& colour)
{
m_brushBack = *(wxTheBrushList->FindOrCreateBrush(colour, wxBRUSHSTYLE_SOLID));
// clear out the existing garbage, re-start with a clean plot
Refresh(FALSE);
} // SetBackgroundColor
////////////////////////////////////////////////////////////////////////////
void CColorFrameCtrl::OnPaint(wxPaintEvent& WXUNUSED(evt))
{
wxPaintDC dc(this);
wxRect rc;
rc.x=m_rectClient.left;
rc.y=m_rectClient.top;
rc.width=m_rectClient.right-m_rectClient.left;
rc.height=m_rectClient.bottom-m_rectClient.top;
dc.SetPen(*wxTRANSPARENT_PEN);
dc.SetBrush(m_brushBack);
dc.DrawRectangle(rc);
dc.SetPen(*wxBLACK_PEN);
dc.DrawLine(rc.x+1,rc.y+1,rc.x+rc.width-2,rc.y+1);
dc.DrawLine(rc.x+rc.width-2,rc.y+1,rc.x+rc.width-2,rc.y+rc.height-2);
dc.DrawLine(rc.x+rc.width-2,rc.y+rc.height-2,rc.x+1,rc.y+rc.height-2);
dc.DrawLine(rc.x+1,rc.y+rc.height-2,rc.x+1,rc.y+1);
dc.SetPen(*wxWHITE_PEN);
dc.DrawLine(rc.x+rc.width-1,rc.y,rc.x+rc.width-1,rc.y+rc.height-1);
dc.DrawLine(rc.x+rc.width-1,rc.y+rc.height-1,rc.x,rc.y+rc.height-1);
dc.SetPen(*wxGREY_PEN);
dc.DrawLine(rc.x+rc.width,rc.y,rc.x,rc.y);
dc.DrawLine(rc.x,rc.y,rc.x,rc.y+rc.height);
} // OnPaint
/////////////////////////////////////////////////////////////////////////////
void CColorFrameCtrl::OnSize(wxSizeEvent& WXUNUSED(evt))
{
// NOTE: OnSize automatically gets called during the setup of the control
// Kry - Not on Mac.
wxRect rc=GetClientRect();
m_rectClient.left=rc.x;
m_rectClient.top=rc.y;
m_rectClient.right=rc.x + rc.width;
m_rectClient.bottom=rc.y + rc.height;
} // OnSize
// File_checked_for_headers
|
7cb6d3b2b94454b7b71018eea1a7acddd4d4d126
|
734c21f47a0eb1cdabd60278dce8c1c4f88e30f1
|
/software/sds011-logger/src/logger.cpp
|
993b2a93ae722c63dc23564bc848c71ada03631f
|
[
"MIT"
] |
permissive
|
CivicLabsBelgium/Air-Quality-Brussels
|
d6c08f6440b0241ac49d51f6e9ced26bd4916c12
|
7f35ae705747554c3dadb0a391fb4bb43233b8ba
|
refs/heads/master
| 2020-12-30T16:15:35.467076
| 2018-03-27T17:32:26
| 2018-03-27T17:32:26
| 90,974,312
| 3
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,256
|
cpp
|
logger.cpp
|
/*
Data logger for PM2.5 and PM10 particles using the SDS011 particle sensor.
Connect sensor to primary UART of the board.
Designed for Arduino UNO / Sparkfun Redboard platform.
Written by Yannick Verbelen (2017). See https://github.com/CivicLabsBelgium/Air-Quality-Brussels
*/
#include "SDS011.h"
#include "RTClib.h"
#include <SPI.h> // needs to be included again for PlatformIO
#include <SD.h>
// pin to which the slave select of the SD card is connected
#define SD_SS_PIN 10
// set up variables using the SD utility library functions:
Sd2Card card; // SD card instance
SdVolume volume; // volume instance
SdFile root; // file system instance
float p10, p25; // particle concentration in ppm
SDS011 SDS; // sensor instance
RTC_DS1307 rtc; // rtc instance
void setup() {
Serial.begin(115200);
while (!Serial);
Serial.println("Starting logger...");
pinMode(SD_SS_PIN, OUTPUT);
Serial.print("Initializing SD card... ");
// see if the card is present and can be initialized:
if (!SD.begin(SD_SS_PIN)) {
Serial.println("Card failed, or not present");
// don't do anything more:
return;
}
Serial.println("card initialized.");
// initialize the SDS011 particle sensor
SDS.begin(0,1);
// initialize RTC
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
while (1);
}
// configure RTC if necessary
if (! rtc.isrunning()) {
Serial.println("RTC is NOT running!");
// following line sets the RTC to the date & time this sketch was compiled
rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
// This line sets the RTC with an explicit date & time, for example to set
// January 21, 2014 at 3am you would call:
// rtc.adjust(DateTime(2014, 1, 21, 3, 0, 0));
}
Serial.println("Initialization complete!");
}
uint16_t year;
uint8_t month, day, hour, minute, second;
uint8_t sensor_err;
void loop() {
// try to read samples from the SDS011 sensor
sensor_err = SDS.read(&p25,&p10);
// if samples could be acquired, log them to the SD card together with a time stamp
if (sensor_err) {
Serial.println("Unable to acquire samples from sensor, check wiring. Retrying in 5 seconds...");
delay(4000);
} else {
DateTime now = rtc.now();
year = now.year();
month = now.month();
day = now.day();
hour = now.hour();
minute = now.minute();
second = now.second();
// make a string for assembling the data to log:
String dataString = "";
// add the time stamp
dataString += String(year) + "," + String(month) + "," + String(day) + "," + String(hour) + "," + String(minute) + "," + String(second);
// add particle data
dataString += "," + String(p25) + "," + String(p10);
// open the file. note that only one file can be open at a time,
// so you have to close this one before opening another.
File dataFile = SD.open("data", FILE_WRITE);
// if the file is available, write to it:
if (dataFile) {
dataFile.println(dataString);
dataFile.close();
// print to the serial port too:
Serial.println(dataString);
}
// if the file isn't open, pop up an error:
else {
Serial.println("error opening datalog.txt");
}
}
delay(1000); // take one measurement per second
}
|
604d2270555ae40c64e2ed49f89d140c61e6dafa
|
806423f44ed18d0bd9010d7ec5c36c27395b0815
|
/Engine/code/headers/Light_Component.h
|
8fa99d97f05eec79c4abb95d2095cbe33136fd60
|
[] |
no_license
|
Sylkha/GameEngine
|
29d31e369346fe4b11bab898a2ac003fdc983e3a
|
365abf5ac7ae4f4ba994a1f55c14255999b58db5
|
refs/heads/main
| 2023-05-12T16:13:47.854370
| 2021-06-05T13:20:49
| 2021-06-05T13:20:49
| 330,129,001
| 0
| 0
| null | null | null | null |
ISO-8859-10
|
C++
| false
| false
| 453
|
h
|
Light_Component.h
|
// Code released into the public domain
// in January 2021
// by Silvia
#pragma once
#include "Component.h"
#include "Light.hpp"
using namespace std;
using namespace glt;
namespace gameEngine {
/** Componente para aņadir un componente luz a un entity */
class Light_Component : public Component{
public:
shared_ptr<Light> light;
Light_Component() {
light = make_shared<Light>();
}
shared_ptr<Light> get_light() { return light; }
};
}
|
02133a30e54604552c84aece603945da3965d15f
|
15e6bd57cc093ac220e79725d859e7329b9ce617
|
/main.cpp
|
10ef821b35d5a86f01286cfe7caf1d12c0754e0f
|
[] |
no_license
|
Rostichek/transport_manager
|
8fbc3a93ba0fe9abf247ff59d9be467f23826d63
|
070e21a97c9033a4173f943c7078c699c8db0bc8
|
refs/heads/master
| 2023-04-18T01:11:49.856339
| 2021-01-31T15:02:34
| 2021-01-31T15:02:34
| 360,819,751
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 17,647
|
cpp
|
main.cpp
|
#include "Manager.h"
#include <iostream>
#include <fstream>
#include "Json.h"
#include "graph.h"
#include "router.h"
#include <numeric>
#include <fstream>
using namespace std;
pair<string_view, optional<string_view>> SplitTwoStrict(string_view s, string_view delimiter = " ") {
const size_t pos = s.find(delimiter);
if (pos == s.npos) {
return { s, nullopt };
}
else {
return { s.substr(0, pos), s.substr(pos + delimiter.length()) };
}
}
pair<string_view, string_view> SplitTwo(string_view s, string_view delimiter = " ") {
const auto [lhs, rhs_opt] = SplitTwoStrict(s, delimiter);
return { lhs, rhs_opt.value_or("") };
}
string_view ReadToken(string_view & s, string_view delimiter = " ") {
const auto [lhs, rhs] = SplitTwo(s, delimiter);
s = rhs;
return lhs;
}
double ConvertToDouble(string_view str) {
// use std::from_chars when available to git rid of string copy
size_t pos;
const double result = stod(string(str), &pos);
if (pos != str.length()) {
std::stringstream error;
error << "string " << str << " contains " << (str.length() - pos) << " trailing chars";
throw invalid_argument(error.str());
}
return result;
}
int ConvertToInt(string_view str) {
// use std::from_chars when available to git rid of string copy
size_t pos;
const int result = stoi(string(str), &pos);
if (pos != str.length()) {
std::stringstream error;
error << "string " << str << " contains " << (str.length() - pos) << " trailing chars";
throw invalid_argument(error.str());
}
return result;
}
template <typename Number>
void ValidateBounds(Number number_to_check, Number min_value, Number max_value) {
if (number_to_check < min_value || number_to_check > max_value) {
std::stringstream error;
error << number_to_check << " is out of [" << min_value << ", " << max_value << "]";
throw out_of_range(error.str());
}
}
struct Request;
using RequestHolder = unique_ptr<Request>;
struct Request {
enum class Type {
ADD_STOP,
ADD_BUS,
BUS_INFO,
STOP_INFO,
ROUTE_INFO,
MAP,
};
Request(Type type) : type(type) {}
static RequestHolder Create(Type type);
virtual void ParseFrom(Json::Node input) = 0;
virtual ~Request() = default;
const Type type;
};
const unordered_map<string_view, Request::Type> STR_TO_INPUT_REQUEST_TYPE = {
{"Stop", Request::Type::ADD_STOP},
{"Bus", Request::Type::ADD_BUS},
};
const unordered_map<string_view, Request::Type> STR_TO_OUTPUT_REQUEST_TYPE = {
{"Bus", Request::Type::BUS_INFO},
{"Stop", Request::Type::STOP_INFO},
{"Route", Request::Type::ROUTE_INFO},
{"Map", Request::Type::MAP},
};
struct Response {
Response(const Request::Type type_) : type(type_) {}
const Request::Type type;
uint64_t respones_id;
string error_message;
};
struct StopResponse : public Response {
StopResponse() : Response(Request::Type::STOP_INFO) {}
string name;
set<string_view> buses_for_stop;
};
struct BusResponse : public Response {
BusResponse() : Response(Request::Type::BUS_INFO) {}
string name;
size_t stops_num;
size_t unique_stops_num;
int real_route_length;
double curvature;
};
struct RouteResponse : public Response {
RouteResponse() : Response(Request::Type::ROUTE_INFO) {}
struct Item {
string type;
string name;
double time;
size_t span_count;
};
vector<Item> items;
string svg;
double total_time;
};
struct MapResponse : public Response {
MapResponse() : Response(Request::Type::MAP) {}
string svg;
};
using ResponseHolder = unique_ptr<Response>;
template <typename ResultType>
struct ReadRequest : Request {
using Request::Request;
virtual ResultType Process(const TransportManager& manager) const = 0;
protected:
uint64_t request_id;
};
struct ModifyRequest : Request {
using Request::Request;
virtual void Process(TransportManager& manager) const = 0;
};
struct AddStopRequest : ModifyRequest {
AddStopRequest() : ModifyRequest(Type::ADD_STOP) {}
void ParseFrom(Json::Node input) override {
name = input.AsMap().at("name").AsString();
coordinate = {
input.AsMap().at("latitude").AsNumber(),
input.AsMap().at("longitude").AsNumber()
};
for (const auto& stop : input.AsMap().at("road_distances").AsMap())
distances[stop.first] = stop.second.AsNumber();
}
void Process(TransportManager& manager) const override {
manager.AddStop(name, coordinate);
for(const auto& distance_to_stop : distances)
manager.AddDistance(name, distance_to_stop.first, distance_to_stop.second);
}
private:
string name;
Coordinate coordinate;
unordered_map<string, int> distances;
};
struct AddBusRequest : ModifyRequest {
AddBusRequest() : ModifyRequest(Type::ADD_BUS) {}
void ParseFrom(Json::Node input) override {
name = input.AsMap().at("name").AsString();
is_reversed = !input.AsMap().at("is_roundtrip").AsBool();
for (const auto& stop : input.AsMap().at("stops").AsArray())
stops.push_back(stop.AsString());
}
void Process(TransportManager& manager) const override {
manager.AddBus(name, stops, is_reversed);
}
private:
string name;
vector<string> stops;
bool is_reversed = false;
};
struct BusInfoRequest : ReadRequest<unique_ptr<BusResponse>> {
BusInfoRequest() : ReadRequest<unique_ptr<BusResponse>>(Type::BUS_INFO) {}
void ParseFrom(Json::Node input) override {
name = input.AsMap().at("name").AsString();
request_id = input.AsMap().at("id").AsNumber();
}
unique_ptr<BusResponse> Process(const TransportManager& manager) const override {
unique_ptr<BusResponse> response = make_unique<BusResponse>();
response->name = name;
response->respones_id = request_id;
const auto& bus = manager.GetBus(name);
if (bus == nullptr) {
response->error_message = "not found";
return move(response);
}
response->real_route_length = bus->GetLength(manager);
response->curvature = response->real_route_length / bus->GetGeographicDistance(manager);
response->stops_num = bus->GetStopsNum();
response->unique_stops_num = bus->GetUniqueStopsNum();
return move(response);
}
private:
string name;
};
struct StopInfoRequest : ReadRequest<unique_ptr<StopResponse>> {
StopInfoRequest() : ReadRequest<unique_ptr<StopResponse>>(Type::STOP_INFO) {}
void ParseFrom(Json::Node input) override {
name = input.AsMap().at("name").AsString();
request_id = input.AsMap().at("id").AsNumber();
}
unique_ptr<StopResponse> Process(const TransportManager& manager) const override {
unique_ptr<StopResponse> response = make_unique<StopResponse>();
const auto& stop = manager.GetStop(name);
response->name = name;
response->respones_id = request_id;
if (stop == nullptr) {
response->error_message = "not found";
return move(response);
}
const auto& buses_from_manager = manager.GetBuses();
set<string_view> buses_for_stop;
for (const auto& bus : buses_from_manager)
if (bus.second->Find(name))
buses_for_stop.insert(bus.first);
response->buses_for_stop = buses_for_stop;
return move(response);
}
private:
string name;
};
struct RouteInfoRequest : ReadRequest<unique_ptr<RouteResponse>> {
RouteInfoRequest() : ReadRequest<unique_ptr<RouteResponse>>(Type::ROUTE_INFO) {}
void ParseFrom(Json::Node input) override {
request_id = input.AsMap().at("id").AsNumber();
from = input.AsMap().at("from").AsString();
to = input.AsMap().at("to").AsString();;
}
unique_ptr<RouteResponse> Process(const TransportManager& manager) const override {
unique_ptr<RouteResponse> response = make_unique<RouteResponse>();
auto route_info_items = manager.GetRoute(from, to);
response->total_time = 0;
if (route_info_items.second.empty() && (from != to)) response->error_message = "not found";
for (const auto& item : route_info_items.second) {
response->total_time += item.weight;
response->items.push_back({
item.type,
item.text,
item.weight,
item.stop_count,
});
}
response->svg = route_info_items.first;
response->respones_id = request_id;
return move(response);
}
private:
string from, to;
};
struct MapRequest : ReadRequest<unique_ptr<MapResponse>> {
MapRequest() : ReadRequest<unique_ptr<MapResponse>>(Type::MAP) {}
void ParseFrom(Json::Node input) override {
request_id = input.AsMap().at("id").AsNumber();
}
unique_ptr<MapResponse> Process(const TransportManager& manager) const override {
unique_ptr<MapResponse> response = make_unique<MapResponse>();
response->svg = manager.GetMap();
response->respones_id = request_id;
return move(response);
throw(out_of_range("Map did not rendered;"));
return nullptr;
}
private:
string name;
};
RequestHolder Request::Create(Request::Type type) {
switch (type) {
case Request::Type::ADD_STOP:
return make_unique<AddStopRequest>();
case Request::Type::ADD_BUS:
return make_unique<AddBusRequest>();
case Request::Type::BUS_INFO:
return make_unique<BusInfoRequest>();
case Request::Type::STOP_INFO:
return make_unique<StopInfoRequest>();
case Request::Type::ROUTE_INFO:
return make_unique<RouteInfoRequest>();
case Request::Type::MAP:
return make_unique<MapRequest>();
default:
return nullptr;
}
}
template <typename Number>
Number ReadNumberOnLine(istream & stream) {
Number number;
stream >> number;
string dummy;
getline(stream, dummy);
return number;
}
optional<Request::Type> ConvertRequestTypeFromString(string_view type_str, const unordered_map<string_view, Request::Type>& STR_TO_REQUEST_TYPE) {
if (const auto it = STR_TO_REQUEST_TYPE.find(type_str);
it != STR_TO_REQUEST_TYPE.end()) {
return it->second;
}
else {
return nullopt;
}
}
RequestHolder ParseInputRequest(Json::Node request_node) {
const auto request_type = ConvertRequestTypeFromString(request_node.AsMap().at("type").AsString(), STR_TO_INPUT_REQUEST_TYPE);
if (!request_type) {
return nullptr;
}
RequestHolder request = Request::Create(*request_type);
if (request) {
request->ParseFrom(request_node);
};
return request;
}
RequestHolder ParseOutputRequest(Json::Node request_node) {
const auto request_type = ConvertRequestTypeFromString(request_node.AsMap().at("type").AsString(), STR_TO_OUTPUT_REQUEST_TYPE);
if (!request_type) {
return nullptr;
}
RequestHolder request = Request::Create(*request_type);
if (request) {
request->ParseFrom(request_node);
};
return request;
}
vector<RequestHolder> ReadRequests(const function<RequestHolder(Json::Node)>& ParseRequest, Json::Node in) {
const size_t request_count = in.AsArray().size();
vector<RequestHolder> requests;
requests.reserve(request_count);
for (size_t i = 0; i < request_count; ++i) {
if (auto request = ParseRequest(in.AsArray()[i])) {
requests.push_back(move(request));
}
}
return requests;
}
vector<ResponseHolder> ProcessRequests(const vector<RequestHolder> & requests, TransportManager& manager) {
vector<ResponseHolder> responses;
for (const auto& request_holder : requests) {
if (request_holder->type == Request::Type::ADD_STOP) {
const auto& request = static_cast<const AddStopRequest&>(*request_holder);
request.Process(manager);
}
else if (request_holder->type == Request::Type::ADD_BUS) {
const auto& request = static_cast<const AddBusRequest&>(*request_holder);
request.Process(manager);
}
else if (request_holder->type == Request::Type::BUS_INFO) {
const auto& request = static_cast<const BusInfoRequest&>(*request_holder);
responses.push_back(request.Process(manager));
}
else if (request_holder->type == Request::Type::STOP_INFO) {
const auto& request = static_cast<const StopInfoRequest&>(*request_holder);
responses.push_back(request.Process(manager));
}
else if (request_holder->type == Request::Type::ROUTE_INFO) {
const auto& request = static_cast<const RouteInfoRequest&>(*request_holder);
responses.push_back(request.Process(manager));
}
else if (request_holder->type == Request::Type::MAP) {
const auto& request = static_cast<const MapRequest&>(*request_holder);
responses.push_back(request.Process(manager));
}
}
return responses;
}
void PrintResponses(const vector<ResponseHolder> & responses, ostream & stream = cout) {
stream << "[" << endl;
size_t response_counter = 0;
for (const auto& response_holder : responses) {
stream << "\t{" << endl;
stream << "\t\t\"request_id\": " << response_holder->respones_id << "," << endl;
if (!response_holder->error_message.empty()) {
stream << "\t\t\"error_message\": \"" << response_holder->error_message << "\"" << endl;
}
else if (response_holder->type == Request::Type::STOP_INFO) {
const auto& response = static_cast<const StopResponse&>(*response_holder);
stream << "\t\t\"buses\": [";
size_t bus_counter = 0;
for (const auto& bus : response.buses_for_stop) {
stream << endl << "\t\t\t\"" << bus << "\"";
bus_counter++;
if (bus_counter != response.buses_for_stop.size())
stream << ",";
}
if (response.buses_for_stop.size()) stream << endl;
stream << "\t\t]" << endl;
}
else if (response_holder->type == Request::Type::BUS_INFO) {
const auto& response = static_cast<const BusResponse&>(*response_holder);
stream << "\t\t\"stop_count\": " << response.stops_num << "," << endl;
stream << "\t\t\"unique_stop_count\": " << response.unique_stops_num << "," << endl;
stream << "\t\t\"route_length\": " << response.real_route_length << "," << endl;
stream << "\t\t\"curvature\": " << setprecision(16) << response.curvature << endl;
}
else if (response_holder->type == Request::Type::ROUTE_INFO) {
const auto& response = static_cast<const RouteResponse&>(*response_holder);
stream << "\t\t\"total_time\": " << setprecision(16) << response.total_time << "," << endl;
stream << "\t\t\"items\": [" << endl;
int items_counter = 0;
for (const auto& item : response.items) {
stream << "\t\t\t{" << endl;
stream << "\t\t\t\t\"type\": \"" << item.type << "\"," << endl;
if (item.type == "Bus") {
stream << "\t\t\t\t\"bus\": \"" << item.name << "\"," << endl;
stream << "\t\t\t\t\"span_count\": " << item.span_count << "," << endl;
}
else {
stream << "\t\t\t\t\"stop_name\": \"" << item.name << "\"," << endl;
}
stream << "\t\t\t\t\"time\": " << setprecision(16) << item.time << endl;
stream << "\t\t\t}";
items_counter++;
if (items_counter != response.items.size()) stream << ",";
stream << endl;
}
stream << "\t\t]," << endl;
stream << "\t\t\"map\": " /*<< "\""*/ << response.svg/* << "\""*/ << endl;
}
else if (response_holder->type == Request::Type::MAP) {
const auto& response = static_cast<const MapResponse&>(*response_holder);
stream << "\t\t\"map\": " /*<< "\""*/ << response.svg/* << "\""*/ << endl;
}
stream << "\t}";
response_counter++;
if (response_counter != responses.size())
stream << ",";
stream << endl;
}
stream << "]" << endl;
}
int main() {
ofstream out("C:\\Users\\User\\Desktop\\Coursera\\out.txt");
try {
auto document = Json::Load(cin);
const auto& settings = document.GetRoot().AsMap().at("routing_settings").AsMap();
TransportManager manager(settings.at("bus_wait_time").AsNumber(), settings.at("bus_velocity").AsNumber());
ProcessRequests(ReadRequests(ParseInputRequest, document.GetRoot().AsMap().at("base_requests")), manager);
manager.BuildRouter();
manager.BuildMap(document.GetRoot().AsMap().at("render_settings").AsMap());
PrintResponses(ProcessRequests(ReadRequests(ParseOutputRequest, document.GetRoot().AsMap().at("stat_requests")), manager), cout);
out.close();
}
catch (exception& ex) {
cerr << ex.what() << endl;
cerr << "Yout JSON is not have all information for build response or there are an format error;" << endl;
}
return 0;
}
|
5ac202bdd1809404c9448fa7262424aa94577ddb
|
d4aa4759471cc50f4bbb666fd48cabcdc2fba294
|
/CodeChef_problems/Q5_Adding_Squares__long_oct.cpp
|
2c4fbeeffbc8cad1bcf2780ec6d694eb535802d2
|
[
"MIT"
] |
permissive
|
zubairwazir/code_problems
|
e9cfc528a90c3ab676fe5959445dcaa7666b5767
|
a2085f19f0cc7340f1fc0c71e3a61151e435e484
|
refs/heads/master
| 2023-09-02T03:08:09.303116
| 2021-11-17T03:40:42
| 2021-11-17T03:40:42
| 429,559,611
| 1
| 0
|
MIT
| 2021-11-18T19:47:49
| 2021-11-18T19:47:49
| null |
UTF-8
|
C++
| false
| false
| 973
|
cpp
|
Q5_Adding_Squares__long_oct.cpp
|
/*
contest link : https://www.codechef.com/OCT20B
question link : https://www.codechef.com/OCT20B/problems/ADDSQURE
*/
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ll long long
#define f(a,b,c) for(ll a=b;a<c;a++)
#define read(t) ll t; cin>>t;
#define readarr(arr,n) ll arr[n]; f(i,0,n) cin>>arr[i];
#define FASTIO ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
int32_t main()
{
FASTIO
read(w) read(h) read(n) read(m)
readarr(a,n)
readarr(b,m)
sort(a,a+n);
sort(b,b+m);
bitset<100005> v[10];
v[8][0] = 1;
f(i,1,n)
{
ll diff = a[i]-a[i-1];
v[8] = (v[8]<<diff); v[8][0] = 1;
v[0] = v[0]|v[8];
}
v[7][0] = 1;
f(i,1,m)
{
ll diff = b[i]-b[i-1];
v[7] = v[7]<<diff; v[7][0] = 1;
v[1] = v[1] | v[7];
}
f(i,0,m) v[2].set(b[i],1);
f(j,1,100005) v[5].set(j,1);
ll mex = 0;
f(i,0,h+1)
{
v[4]<<=1;
v[4].set(0,v[2][i]);
if(v[2][i]) continue;
mex = max(mex , (ll)((v[0] &( v[1] | (v[2]>>i) | v[4] ) & v[5]).count()));
}
cout<<mex<<endl;
}
|
67ff2adeedecd40d09a0957325b740c42c6414c9
|
b1102f87c3ad7b34935f18fe47ee7c8055b5bb33
|
/UlcuangoPablo_Grupo7_ProyectoFinal/BayesianoPrueba/BayesianoPrueba.ino
|
9e5e4005f6a53081071d3c3e76dd052f68859d80
|
[] |
no_license
|
Pablo-Steven/Sis-Embebidos
|
14d65b12fbcd2e24eb1673aaa7afb9ce8a9cadf2
|
ad7fd97ae55bfd01faf04d7de8f40522148a0e5b
|
refs/heads/main
| 2023-06-03T23:28:11.242222
| 2021-06-16T15:06:09
| 2021-06-16T15:06:09
| 365,077,472
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,899
|
ino
|
BayesianoPrueba.ino
|
/*
* Bayes con 40 datos de prueba
* Datos con 160 datos
*/
#include <ListLib.h>
#include "datos.h"
#include "prueba.h"
// crear una nueva lista (vector dinamico)
List <int> list;
int SensorMQ135 = 0;
int SensorMQ7 = 1;
int cont = 0;
int resultado = 0;
void bayesiano(int etiquetas, int columnas, int filas, float r);
void setup() {
Serial.begin(9600);
Serial.println("# MQ135 MQ7 Tipo de Aire");
}
void loop() {
if (cont < 40) {
bayesiano(2, 3, 160, 0.2);
switch (resultado) {
case 1:
Serial.println(String(cont) + String(" ") + String(SensorMQ135) + String(" ") + String(SensorMQ7) + String(" ") + String("Aire Contaminado"));
delay(500);
break;
case 2:
Serial.println(String(cont) + String(" ") + String(SensorMQ135) + String(" ") + String(SensorMQ7) + String(" ") + String("Aire Limpio"));
delay(500);
break;
}
}
}
void bayesiano(int etiquetas, int columnas, int filas, float r) {
int i = 0;
int j = 0;
int k = 0;
int t = 0;
float p_x = 0.0; // probabilidad marginal
float distancia = 0.0;
float sumatoria = 0.0;
float normalizador = 0.0;
float dist_mayor = 0.0001;
// resultado de etiqueta
float aux = 0; // auxiliar de cambio de variable
SensorMQ135 = MatrizPrueba[cont][0];
SensorMQ7 = MatrizPrueba[cont][1];
float datos_prueba [3] = {SensorMQ135, SensorMQ7};
float prob [4][etiquetas];
//encerar matriz y asignar etiquetas a la fila 0
for (i = 0; i < 4; i++) {
for (j = 0; j < etiquetas; j++) {
prob[i][j] = 0;
if (i == 0)
prob[i][j] = j + 1;
}
}
for (i = 0; i < etiquetas; i++) {
for (j = 0; j < filas; j++) {
if (matriz[j][columnas - 1] == i + 1)
prob[1][i]++;
}
}
//encontrar la distancia mayor
for (i = 0; i < filas; i++) {
for (j = 0; j < columnas - 1; j++) {
sumatoria = sumatoria + pow(matriz[i][j] - datos_prueba[j], 2);
}
distancia = sqrt(sumatoria);
sumatoria = 0;
if (distancia > dist_mayor)
dist_mayor = distancia;
}
distancia = 0;
for (i = 0; i < filas; i++) {
for (j = 0; j < columnas - 1; j++) {
sumatoria = sumatoria + pow(matriz[i][j] - datos_prueba[j], 2);
}
distancia = sqrt(sumatoria);
sumatoria = 0;
normalizador = distancia / dist_mayor;
if (normalizador < r)
list.Add(i);
}
for (i = 0; i < list.Count(); i++) {
for (j = 0; j < etiquetas; j++) {
if (matriz[list[i]][columnas - 1] == prob[0][j])
prob[2][j]++;
}
}
p_x = float(list.Count()) / float(filas);
for (k = 0; k < etiquetas; k++) {
prob[3][k] = ((prob[1][k] / filas) * (prob[2][k] / prob[1][k])) / p_x;
}
for (k = 0; k < etiquetas; k++) {
if (prob[3][k] > aux) {
resultado = int(prob[0][k]);
aux = prob[3][k];
}
}
cont++;
for (int m = 0; m < 160; m++) {
list.Remove(m);
}
}
|
654c2cfb803d047d3f509d0d350c83f81caf4e9c
|
c9cf0586ace11aa32fa67606d237a130a06364ee
|
/circular-cylinder-2-30/20.5/phi
|
a3a7caac08da6e4aaec800f4f819d9c6bb28f154
|
[] |
no_license
|
jezvonek/CFD-Final-Project
|
c74cfa21f22545c27d97d85cf30eb6dc8c824dc1
|
7c9a7fb032d74f20888effa0a0b75b212bf899f4
|
refs/heads/master
| 2022-07-05T14:43:52.967657
| 2020-05-14T03:40:56
| 2020-05-14T03:40:56
| 262,370,756
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 195,334
|
phi
|
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6.0
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "20.5";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
18940
(
0.000432407
-0.354297
0.353864
0.00160268
-0.333858
0.332687
0.00321331
-0.320424
0.318813
0.00503866
-0.309968
0.308143
0.00693231
-0.300762
0.298868
0.00880328
-0.291865
0.289995
0.0106017
-0.282926
0.281128
0.0123067
-0.273908
0.272203
0.0139157
-0.264898
0.263289
0.0154364
-0.256014
0.254493
0.0168814
-0.247366
0.245921
0.0182644
-0.239034
0.237651
0.0195986
-0.231073
0.229739
0.0208954
-0.223513
0.222216
0.0221649
-0.216363
0.215093
0.023416
-0.209618
0.208366
0.0246572
-0.203258
0.202017
0.0258961
-0.197248
0.196009
0.0271382
-0.191528
0.190286
-0.186016
0.184768
0.0283863
0.000462783
-0.354759
0.00164172
-0.335037
0.00324954
-0.322032
0.00506301
-0.311781
0.00693559
-0.302635
0.00877845
-0.293708
0.0105443
-0.284692
0.0122143
-0.275578
0.0137876
-0.266471
0.0152731
-0.2575
0.0166842
-0.248777
0.0180349
-0.240385
0.0193385
-0.232377
0.0206061
-0.22478
0.0218478
-0.217604
0.023072
-0.210842
0.024287
-0.204473
0.0255007
-0.198461
0.0267194
-0.192747
-0.187243
0.0279472
0.00049121
-0.355251
0.00167638
-0.336222
0.00327721
-0.323633
0.00507486
-0.313579
0.00692327
-0.304483
0.00873519
-0.29552
0.0104657
-0.286423
0.0120981
-0.27721
0.0136334
-0.268006
0.0150816
-0.258948
0.0164568
-0.250152
0.0177735
-0.241701
0.0190448
-0.233648
0.0202819
-0.226018
0.0214941
-0.218817
0.0226899
-0.212038
0.0238773
-0.20566
0.0250643
-0.199648
0.0262581
-0.193941
-0.188449
0.0274641
0.000503703
-0.355754
0.00169729
-0.337415
0.00329255
-0.325228
0.00507277
-0.315359
0.00689445
-0.306305
0.0086728
-0.297299
0.0103654
-0.288115
0.0119579
-0.278803
0.013453
-0.269501
0.0148619
-0.260357
0.0161995
-0.25149
0.0174805
-0.242983
0.0187181
-0.234886
0.0199232
-0.227223
0.0211049
-0.219998
0.0222711
-0.213204
0.0234297
-0.206819
0.0245889
-0.200808
0.0257567
-0.195109
-0.189633
0.0269401
0.000514201
-0.356269
0.00171179
-0.338613
0.00329842
-0.326815
0.00505819
-0.317119
0.00685013
-0.308097
0.0085921
-0.299041
0.0102442
-0.289767
0.0117945
-0.280353
0.0132472
-0.270954
0.0146149
-0.261725
0.0159131
-0.252788
0.0171569
-0.244226
0.0183593
-0.236088
0.0195311
-0.228394
0.0206809
-0.221148
0.0218164
-0.214339
0.0229452
-0.207948
0.0240757
-0.201938
0.0252167
-0.19625
-0.190793
0.0263771
0.000520637
-0.356789
0.00171886
-0.339811
0.00329429
-0.32839
0.00503102
-0.318856
0.00679046
-0.309856
0.00849334
-0.300743
0.0101025
-0.291377
0.0116082
-0.281859
0.0130164
-0.272362
0.014341
-0.263049
0.015598
-0.254045
0.0168029
-0.245431
0.0179686
-0.237254
0.0191058
-0.229532
0.0202227
-0.222265
0.0213264
-0.215443
0.0224245
-0.209046
0.0235255
-0.203039
0.0246391
-0.197363
-0.19193
0.0257759
0.000525177
-0.357314
0.00172069
-0.341007
0.00328163
-0.329951
0.00499223
-0.320566
0.00671625
-0.31158
0.00837729
-0.302405
0.00994093
-0.29294
0.0113997
-0.283317
0.0127613
-0.273724
0.0140407
-0.264329
0.0152547
-0.255259
0.0164189
-0.246595
0.0175465
-0.238381
0.0186476
-0.230633
0.0197302
-0.223348
0.0208011
-0.216514
0.0218675
-0.210112
0.0229381
-0.20411
0.0240236
-0.198449
-0.193043
0.0251364
0.000527528
-0.357842
0.00171738
-0.342196
0.0032608
-0.331494
0.00494235
-0.322248
0.00662812
-0.313266
0.00824463
-0.304021
0.00976023
-0.294456
0.0111697
-0.284727
0.0124825
-0.275036
0.0137147
-0.265561
0.0148836
-0.256428
0.0160053
-0.247717
0.0170928
-0.239469
0.0181561
-0.231696
0.0192029
-0.224394
0.0202397
-0.217551
0.0212732
-0.211146
0.0223124
-0.205149
0.0233689
-0.199505
-0.194131
0.0244573
0.000528123
-0.35837
0.00170967
-0.343378
0.00323267
-0.333017
0.00488225
-0.323897
0.00652697
-0.314911
0.00809632
-0.30559
0.00956138
-0.295921
0.0109192
-0.286085
0.0121808
-0.276298
0.0133635
-0.266743
0.0144852
-0.257549
0.0155621
-0.248794
0.0166074
-0.240514
0.0176309
-0.23272
0.0186401
-0.225403
0.0196409
-0.218552
0.0206399
-0.212145
0.0216463
-0.206155
0.0226726
-0.200532
-0.195194
0.0237356
0.000527044
-0.358897
0.00169794
-0.344549
0.0031979
-0.334517
0.00481278
-0.325512
0.00641379
-0.316512
0.00793342
-0.30711
0.00934547
-0.297333
0.0106492
-0.287388
0.0118574
-0.277506
0.0129881
-0.267874
0.01406
-0.258621
0.0150897
-0.249824
0.0160901
-0.241515
0.0170712
-0.233701
0.0180401
-0.226372
0.0190026
-0.219514
0.019965
-0.213107
0.0209363
-0.207127
0.0219303
-0.201526
-0.19623
0.0229663
0.000524575
-0.359422
0.00168282
-0.345707
0.00315735
-0.335992
0.00473504
-0.32709
0.00628984
-0.318066
0.00775729
-0.308577
0.00911393
-0.298689
0.0103612
-0.288636
0.0115133
-0.278658
0.0125895
-0.26895
0.0136089
-0.259641
0.0145882
-0.250803
0.0155407
-0.242467
0.0164762
-0.234636
0.0174016
-0.227298
0.0183224
-0.220435
0.0192448
-0.21403
0.0201779
-0.20806
0.0211365
-0.202484
-0.197237
0.0221428
0.000521043
-0.359943
0.00166501
-0.346851
0.00311204
-0.337439
0.00465028
-0.328628
0.0061566
-0.319573
0.00756959
-0.30999
0.0088685
-0.299988
0.0100568
-0.289824
0.0111504
-0.279752
0.0121692
-0.269969
0.0131329
-0.260604
0.0140584
-0.251728
0.0149592
-0.243368
0.015845
-0.235522
0.0167228
-0.228176
0.0175979
-0.22131
0.0184761
-0.214908
0.0193668
-0.20895
0.0202857
-0.203403
-0.198209
0.021258
0.000516998
-0.36046
0.0016455
-0.34798
0.00306326
-0.338857
0.00456009
-0.330125
0.00601588
-0.321028
0.00737233
-0.311347
0.00861136
-0.301227
0.00973851
-0.290951
0.0107709
-0.280784
0.0117293
-0.270928
0.0126338
-0.261509
0.0135015
-0.252596
0.0143459
-0.244212
0.015177
-0.236353
0.0160018
-0.229
0.0168256
-0.222134
0.0176544
-0.215737
0.0184974
-0.209793
0.0193714
-0.204277
-0.199141
0.0203034
0.000513266
-0.360973
0.00162563
-0.349092
0.00301259
-0.340244
0.00446628
-0.331579
0.00586977
-0.322432
0.0071679
-0.312645
0.0083452
-0.302405
0.00940909
-0.292015
0.0103779
-0.281753
0.0112729
-0.271823
0.0121144
-0.26235
0.0129196
-0.253401
0.013702
-0.244995
0.0144716
-0.237123
0.0152359
-0.229765
0.0160005
-0.222899
0.0167718
-0.216508
0.0175591
-0.210581
0.01838
-0.205098
-0.200025
0.0192636
0.000511037
-0.361484
0.001607
-0.350188
0.0029617
-0.341598
0.00437077
-0.332988
0.0057206
-0.323782
0.00695905
-0.313883
0.00807318
-0.303519
0.0090722
-0.293014
0.00997535
-0.282656
0.0108044
-0.272652
0.0115796
-0.263126
0.0123176
-0.254139
0.0130318
-0.245709
0.0137319
-0.237823
0.0144256
-0.230458
0.0151189
-0.223592
0.0158187
-0.217208
0.0165352
-0.211297
0.0172873
-0.20585
-0.200852
0.0181152
0.000511702
-0.361996
0.00159107
-0.351267
0.00291217
-0.342919
0.00427561
-0.334351
0.00557099
-0.325077
0.00674898
-0.315061
0.00779906
-0.304569
0.0087321
-0.293947
0.00956819
-0.283492
0.0103292
-0.273413
0.0110351
-0.263831
0.011702
-0.254806
0.0123426
-0.246349
0.0129661
-0.238446
0.0135792
-0.231071
0.0141875
-0.2242
0.0147975
-0.217818
0.0154205
-0.21192
0.0160809
-0.206511
-0.20161
0.0168384
0.000516518
-0.362512
0.00157928
-0.35233
0.00286618
-0.344206
0.00418358
-0.335669
0.00542416
-0.326318
0.00654136
-0.316179
0.00752712
-0.305555
0.00839384
-0.294814
0.00916215
-0.284261
0.00985373
-0.274104
0.0104878
-0.264465
0.0110797
-0.255398
0.0116414
-0.246911
0.0121815
-0.238986
0.0127061
-0.231596
0.0132197
-0.224714
0.0137273
-0.218325
0.0142394
-0.212432
0.0147842
-0.207055
-0.202236
0.0154102
0.000527683
-0.36304
0.0015759
-0.353378
0.00282842
-0.345459
0.00409861
-0.336939
0.00528352
-0.327503
0.00633982
-0.317235
0.00726182
-0.306477
0.0080632
-0.295615
0.00876468
-0.284962
0.00938707
-0.274727
0.009948
-0.265026
0.010461
-0.255911
0.010936
-0.247386
0.0113805
-0.239431
0.0118006
-0.232016
0.0122029
-0.225116
0.0125946
-0.218717
0.0129826
-0.21282
0.0133761
-0.207449
-0.202604
0.0137445
0.000555289
-0.363595
0.00159199
-0.354415
0.0028053
-0.346672
0.00402382
-0.338157
0.00515121
-0.32863
0.00614699
-0.318231
0.00700716
-0.307337
0.00774621
-0.296354
0.00838471
-0.285601
0.0089422
-0.275284
0.00943389
-0.265518
0.00986966
-0.256347
0.0102544
-0.247771
0.0105893
-0.239766
0.0108747
-0.232301
0.0111132
-0.225355
0.0113121
-0.218916
0.0114824
-0.21299
0.0116399
-0.207606
-0.202772
0.0118079
0.000630195
-0.364225
0.00163487
-0.35542
0.00279504
-0.347832
0.00395737
-0.33932
0.005027
-0.3297
0.0059643
-0.319168
0.00676623
-0.308139
0.00744804
-0.297036
0.0080304
-0.286183
0.00853214
-0.275786
0.00896676
-0.265953
0.00934095
-0.256721
0.00965406
-0.248084
0.00989754
-0.240009
0.0100542
-0.232458
0.0100961
-0.225396
0.00998462
-0.218805
0.00969347
-0.212699
0.009322
-0.207235
-0.203115
0.00966492
0.372096
0.000471462
-0.372567
0.371664
0.000431678
0.371245
0.000418755
0.370831
0.000414452
0.370418
0.000412918
0.370005
0.000413076
0.369591
0.000414423
0.369174
0.000416363
0.368756
0.000418401
0.368336
0.000420245
0.367914
0.000421729
0.367491
0.000422839
0.367067
0.000423482
0.366644
0.000423831
0.36622
0.000423309
0.365798
0.000422693
0.365379
0.000418181
0.364966
0.000413685
0.364581
0.000384905
0.000355441
0.370509
0.0010555
-0.371093
0.369884
0.00105696
0.369233
0.00107021
0.368556
0.00109146
0.367854
0.00111441
0.36713
0.00113697
0.366386
0.00115886
0.365622
0.00117978
0.364841
0.00119934
0.364044
0.00121727
0.363233
0.00123347
0.362407
0.00124804
0.36157
0.00126097
0.360721
0.00127258
0.359862
0.00128233
0.358994
0.00129086
0.358117
0.00129477
0.357235
0.00129647
0.356336
0.00128339
0.00127193
0.36431
0.00152587
-0.364781
0.363776
0.00159158
0.363188
0.00165765
0.362554
0.00172594
0.361875
0.00179327
0.361154
0.00185755
0.360395
0.00191828
0.359599
0.00197542
0.35877
0.00202883
0.357909
0.00207844
0.357018
0.0021243
0.356099
0.00216667
0.355154
0.00220579
0.354185
0.00224218
0.353191
0.00227579
0.352175
0.00230742
0.351134
0.00233562
0.350068
0.00236248
0.348967
0.00238395
0.00240694
0.354162
0.00181048
-0.354446
0.353808
0.00194495
0.353392
0.00207427
0.352917
0.00220032
0.352388
0.00232222
0.351807
0.00243862
0.351177
0.00254898
0.350499
0.00265321
0.349776
0.00275131
0.349011
0.00284335
0.348206
0.0029295
0.347363
0.00301021
0.346483
0.00308597
0.345567
0.00315762
0.344617
0.00322574
0.343633
0.00329157
0.342613
0.0033553
0.341557
0.00341896
0.340459
0.00348164
0.00354636
0.341835
0.0019151
-0.34194
0.341663
0.00211731
0.341425
0.00231152
0.341127
0.00249871
0.34077
0.00267887
0.340357
0.00285137
0.339891
0.00301571
0.339372
0.00317171
0.338804
0.00331938
0.338189
0.00345884
0.337528
0.0035904
0.336823
0.00371464
0.336077
0.00383233
0.33529
0.00394465
0.334463
0.00405278
0.333596
0.00415851
0.332688
0.00426318
0.331738
0.00436906
0.330743
0.00447696
0.00458936
0.32861
0.00188111
-0.328576
0.32858
0.00214769
0.328486
0.00240456
0.328333
0.002652
0.328122
0.00289012
0.327855
0.00311859
0.327533
0.00333702
0.32716
0.00354513
0.326736
0.00374288
0.326265
0.00393041
0.325747
0.0041081
0.325185
0.00427665
0.32458
0.00443708
0.323934
0.00459091
0.323247
0.00473989
0.322519
0.00488642
0.32175
0.00503281
0.320937
0.00518204
0.320077
0.00533632
0.00549853
0.315385
0.00175783
-0.315262
0.315448
0.00208462
0.315453
0.00240049
0.315399
0.00270522
0.315291
0.00299876
0.315128
0.00328087
0.314914
0.00355114
0.31465
0.00380925
0.314338
0.00405506
0.31398
0.00428867
0.313577
0.00451048
0.313133
0.00472127
0.312648
0.00492225
0.312123
0.00511525
0.31156
0.00530259
0.31096
0.00548735
0.310319
0.00567289
0.309638
0.0058632
0.308913
0.00606186
0.00627251
0.302711
0.00158814
-0.302541
0.302825
0.00197107
0.302883
0.00234203
0.302888
0.00270045
0.302841
0.0030461
0.302743
0.00337864
0.302596
0.00369762
0.302403
0.00400261
0.302165
0.00429337
0.301883
0.00456987
0.301561
0.00483248
0.301201
0.00508195
0.300803
0.00531965
0.300371
0.00554764
0.299905
0.00576883
0.299405
0.005987
0.298871
0.00620673
0.298301
0.00643331
0.297691
0.00667195
0.00692755
0.290854
0.0014035
-0.290669
0.290986
0.00183903
0.291066
0.00226157
0.291096
0.00267031
0.291078
0.00306483
0.291012
0.00344463
0.2909
0.00380917
0.290745
0.00415786
0.290548
0.00449029
0.290312
0.00480626
0.290038
0.005106
0.28973
0.00539013
0.289389
0.00566009
0.289019
0.00591805
0.28862
0.00616749
0.288194
0.00641291
0.287741
0.00666031
0.287258
0.00691658
0.28674
0.00718916
0.00748488
0.279893
0.00122417
-0.279713
0.280022
0.00170947
0.280103
0.00218074
0.280136
0.00263701
0.280123
0.00307766
0.280066
0.00350205
0.279966
0.00390944
0.279824
0.00429906
0.279645
0.00467028
0.279428
0.00502262
0.279178
0.0053561
0.278897
0.00567105
0.278588
0.00596887
0.278255
0.00625159
0.277899
0.00652329
0.277523
0.00678894
0.277127
0.00705644
0.276709
0.00733444
0.276265
0.00763357
0.00796362
0.269801
0.0010615
-0.269638
0.269916
0.00159443
0.269985
0.00211228
0.270008
0.00261396
0.269987
0.00309867
0.269923
0.00356556
0.269819
0.00401373
0.269676
0.00444212
0.269496
0.00484988
0.269283
0.00523612
0.269038
0.00560059
0.268766
0.00594303
0.26847
0.00626479
0.268155
0.00656725
0.267823
0.00685525
0.267478
0.00713357
0.267122
0.0074128
0.266753
0.00770305
0.266367
0.00802002
0.00837746
0.260502
0.000920601
-0.260362
0.260597
0.00149962
0.260647
0.00206252
0.260653
0.00260809
0.260616
0.00313536
0.260538
0.00364331
0.260421
0.00413081
0.260267
0.0045965
0.260078
0.00503925
0.259856
0.00545764
0.259606
0.00585109
0.25933
0.00621844
0.259034
0.00656096
0.258723
0.00687858
0.258401
0.00717728
0.258074
0.00746014
0.257745
0.00774212
0.257415
0.00803301
0.257077
0.00835749
0.00873347
0.251903
0.00080272
-0.251785
0.251976
0.00142676
0.252005
0.00203365
0.251991
0.00262207
0.251935
0.00319093
0.25184
0.003739
0.251706
0.00426493
0.251535
0.00476705
0.25133
0.00524389
0.251095
0.00569341
0.250831
0.00611464
0.250544
0.00650514
0.250239
0.00686614
0.249923
0.00719499
0.249601
0.00749947
0.249283
0.00777811
0.248971
0.00805341
0.248674
0.00832991
0.248382
0.00864981
0.00903157
0.243911
0.000707034
-0.243816
0.243963
0.00137535
0.243971
0.0020255
0.243937
0.00265608
0.243862
0.0032659
0.243747
0.00385356
0.243595
0.00441747
0.243406
0.00495563
0.243184
0.00546623
0.242931
0.0059465
0.24265
0.00639511
0.242348
0.00680785
0.242028
0.00718613
0.2417
0.00752302
0.24137
0.0078295
0.241053
0.0080944
0.240753
0.00835379
0.240488
0.00859513
0.240241
0.00889676
0.00926313
0.236445
0.00063184
-0.23637
0.236476
0.0013439
0.236465
0.00203676
0.236412
0.00270902
0.236319
0.00335942
0.236186
0.00398639
0.236015
0.00458813
0.235808
0.00516229
0.235568
0.00570675
0.235296
0.00621794
0.234997
0.00669417
0.234676
0.00712911
0.234338
0.00752458
0.233993
0.0078674
0.233649
0.00817365
0.233329
0.00841467
0.233032
0.0086503
0.232801
0.008827
0.232601
0.00909592
0.0094064
0.229433
0.000575284
-0.229376
0.229446
0.00133063
0.229417
0.00206575
0.229347
0.0027793
0.229236
0.00346998
0.229087
0.00413609
0.228899
0.00477564
0.228676
0.00538595
0.228418
0.00596459
0.228128
0.00650722
0.227811
0.00701184
0.22747
0.00746974
0.227111
0.00788344
0.226747
0.00823147
0.226384
0.00853729
0.226054
0.00874414
0.225753
0.00895094
0.225558
0.00902209
0.225406
0.00924786
0.00941637
0.222817
0.000535712
-0.222777
0.222813
0.00133389
0.222768
0.00211075
0.222683
0.00286511
0.222557
0.00359571
0.222392
0.00430073
0.22219
0.00497799
0.221951
0.00562453
0.221678
0.00623766
0.221373
0.00681233
0.221039
0.00734631
0.22068
0.0078285
0.220301
0.00826241
0.219916
0.00861685
0.219528
0.00892465
0.219184
0.00908856
0.218871
0.00926421
0.218719
0.00917344
0.218603
0.00936393
0.00921487
0.216547
0.000511541
-0.216523
0.216529
0.00135189
0.21647
0.00216968
0.216371
0.00296408
0.216233
0.00373391
0.216056
0.00447723
0.215842
0.00519172
0.215593
0.00587417
0.215309
0.0065217
0.214992
0.00712867
0.214646
0.00769275
0.214274
0.00820064
0.213879
0.00865724
0.213475
0.0090213
0.213062
0.00933678
0.212696
0.00945508
0.212358
0.00960163
0.212264
0.00926761
0.212177
0.00945111
0.00869276
0.210579
0.000500808
-0.210568
0.210549
0.001382
0.210479
0.00223921
0.210371
0.00307211
0.210225
0.00387966
0.210043
0.00465981
0.209824
0.00541012
0.209571
0.00612717
0.209285
0.00680805
0.208967
0.00744657
0.208619
0.00804059
0.208245
0.00857482
0.207846
0.00905622
0.207433
0.00943406
0.207004
0.00976584
0.206611
0.00984805
0.206228
0.00998464
0.206174
0.00932196
0.206175
0.00945054
0.0076323
0.20487
-0.204872
0.000501875
0.204831
0.00142127
0.204755
0.00231496
0.204644
0.00318334
0.204498
0.00402555
0.204319
0.00483943
0.204106
0.00562246
0.203862
0.00637107
0.203588
0.00708244
0.203285
0.00774992
0.202953
0.00837192
0.202597
0.00893139
0.202215
0.00943803
0.201816
0.00983329
0.201392
0.0101896
0.200981
0.0102587
0.200536
0.0104295
0.200364
0.00949485
0.200387
0.00942685
0.00490423
0.376023
0.000101525
-0.376124
0.375977
4.54476e-05
0.37594
3.7036e-05
0.375895
4.50749e-05
0.375836
5.935e-05
0.375758
7.7767e-05
0.375659
9.92082e-05
0.375536
0.000122388
0.37539
0.00014618
0.37522
0.000169799
0.375028
0.000192707
0.374813
0.000214582
0.374578
0.000235108
0.374324
0.000254198
0.374052
0.000271307
0.373766
0.000286802
0.373467
0.000298177
0.37316
0.000307837
0.372859
0.000300919
0.000291409
0.372925
-0.000310727
-0.372512
0.373271
-0.000300992
0.373572
-0.000264218
0.373825
-0.000207422
0.374026
-0.000141851
0.374175
-7.17487e-05
0.374273
1.67397e-06
0.374318
7.72178e-05
0.374311
0.000153458
0.374252
0.000229178
0.374141
0.000303457
0.37398
0.000375652
0.37377
0.000445129
0.373512
0.000511523
0.37321
0.000573928
0.372864
0.000632296
0.372478
0.000684017
0.372056
0.000730243
0.371594
0.000763022
0.000791977
0.362009
-0.00113897
-0.361181
0.362753
-0.00104462
0.363425
-0.00093685
0.364031
-0.000813349
0.36457
-0.000680286
0.36504
-0.000542219
0.365443
-0.000401058
0.365778
-0.000258037
0.366046
-0.000114539
0.366247
2.81017e-05
0.366382
0.000168736
0.366451
0.000306488
0.366456
0.000440503
0.366397
0.000570165
0.366276
0.000694478
0.366096
0.00081305
0.365856
0.000924113
0.365558
0.00102816
0.365198
0.00112219
0.00120962
0.347077
-0.0022438
-0.345972
0.348104
-0.00207172
0.349057
-0.00188975
0.349939
-0.00169575
0.350751
-0.00149234
0.351492
-0.001283
0.352161
-0.00107007
0.352758
-0.000855162
0.353283
-0.000639778
0.353737
-0.000425376
0.354119
-0.000213267
0.35443
-4.52539e-06
0.354671
0.000199846
0.354842
0.000399072
0.354944
0.000592174
0.354978
0.000778599
0.354945
0.000957187
0.354846
0.00112788
0.354679
0.00128928
0.00144188
0.331104
-0.00351227
-0.329836
0.332304
-0.00327118
0.333434
-0.00301947
0.334495
-0.00275675
0.335487
-0.00248448
0.336409
-0.0022053
0.337261
-0.00192174
0.338041
-0.00163584
0.338751
-0.00134935
0.33939
-0.00106389
0.339957
-0.000780873
0.340454
-0.00050152
0.340881
-0.000226908
0.341238
4.2083e-05
0.341526
0.000304519
0.341744
0.000559743
0.341895
0.000806854
0.341977
0.00104542
0.341992
0.00127464
0.00149417
0.315588
-0.00486067
-0.31424
0.316875
-0.00455732
0.318096
-0.00424088
0.319252
-0.00391247
0.320341
-0.00357376
0.321363
-0.00322728
0.322317
-0.00287575
0.323203
-0.00252158
0.32402
-0.0021668
0.324769
-0.00181316
0.325451
-0.00146219
0.326064
-0.00111515
0.326611
-0.000773158
0.32709
-0.000437139
0.327502
-0.000107989
0.327849
0.000213573
0.328129
0.00052676
0.328343
0.000830979
0.328492
0.0011257
0.00141033
0.301225
-0.00623275
-0.299853
0.302539
-0.00587156
0.303792
-0.00549401
0.304982
-0.00510247
0.306108
-0.00469946
0.307169
-0.00428794
0.308164
-0.00387097
0.309094
-0.00345131
0.309958
-0.00303124
0.310758
-0.00261265
0.311493
-0.00219712
0.312163
-0.00178592
0.31277
-0.00138016
0.313314
-0.000980742
0.313794
-0.000588529
0.314212
-0.00020424
0.314568
0.000171398
0.314861
0.000537742
0.315092
0.000894345
0.00124045
0.288239
-0.00759511
-0.286877
0.289546
-0.00717862
0.290794
-0.00674197
0.291981
-0.00628874
0.293104
-0.00582266
0.294163
-0.00534751
0.295159
-0.00486687
0.296092
-0.00438384
0.296962
-0.00390094
0.297769
-0.00342018
0.298515
-0.00294311
0.2992
-0.00247099
0.299825
-0.00200485
0.30039
-0.00154553
0.300895
-0.00109381
0.301341
-0.000650409
0.301728
-0.000215977
0.302057
0.0002088
0.302328
0.000623484
0.00102719
0.276593
-0.00893113
-0.275257
0.277875
-0.00846046
0.279098
-0.0079652
0.28026
-0.00745038
0.281358
-0.00692135
0.282394
-0.00638302
0.283367
-0.00583959
0.284277
-0.00529453
0.285127
-0.00475059
0.285917
-0.00420979
0.286647
-0.00367365
0.28732
-0.00314329
0.287934
-0.00261962
0.288492
-0.00210338
0.288994
-0.00159523
0.289439
-0.00109583
0.289829
-0.00060581
0.290163
-0.000125856
0.290443
0.000343563
0.000801468
0.26613
-0.0102352
-0.264826
0.26738
-0.00971036
0.26857
-0.00915556
0.269698
-0.00857793
0.270762
-0.007985
0.271762
-0.00738305
0.272699
-0.00677696
0.273575
-0.0061706
0.274391
-0.00556684
0.275149
-0.00496766
0.27585
-0.0043744
0.276495
-0.00378799
0.277084
-0.00320913
0.277619
-0.00263838
0.2781
-0.0020763
0.278528
-0.00152346
0.278903
-0.000980433
0.279225
-0.00044793
0.279495
7.35335e-05
0.000582909
0.256663
-0.0115085
-0.25539
0.257881
-0.0109284
0.259037
-0.0103117
0.260128
-0.00966875
0.261153
-0.00901008
0.262113
-0.00834338
0.263011
-0.00767424
0.263847
-0.00700689
0.264624
-0.00634424
0.265345
-0.00568802
0.26601
-0.00503929
0.26662
-0.00439865
0.267178
-0.00376653
0.267683
-0.00314328
0.268136
-0.00252928
0.268537
-0.001925
0.268888
-0.00133099
0.269188
-0.000747973
0.269438
-0.000176517
0.000382257
0.248014
-0.0127562
-0.246767
0.249205
-0.0121188
0.250329
-0.011436
0.251384
-0.0107239
0.252371
-0.0099969
0.253291
-0.0092638
0.254148
-0.00853089
0.254944
-0.00780273
0.255682
-0.00708199
0.256364
-0.00636999
0.256992
-0.00566728
0.257567
-0.00497406
0.258091
-0.00429037
0.258564
-0.00361628
0.258987
-0.002952
0.259359
-0.00229788
0.259683
-0.00165445
0.259957
-0.00102244
0.260183
-0.000402516
0.000204135
0.240036
-0.0139861
-0.238806
0.241205
-0.0132878
0.242301
-0.0125325
0.243324
-0.0117464
0.244275
-0.0109477
0.245157
-0.0101461
0.245974
-0.0093485
0.246731
-0.00855972
0.247431
-0.00778178
0.248077
-0.00701525
0.248669
-0.00626005
0.249211
-0.00551581
0.249703
-0.0047821
0.250145
-0.00405865
0.250539
-0.00334546
0.250884
-0.0026428
0.25118
-0.00195115
0.251429
-0.0012713
0.251631
-0.000604008
4.94362e-05
0.232612
-0.0152084
-0.231389
0.233767
-0.0144432
0.234841
-0.013606
0.235834
-0.0127396
0.236751
-0.0118652
0.237598
-0.0109925
0.238379
-0.0101293
0.239099
-0.00928027
0.239764
-0.00844615
0.240375
-0.00762647
0.240935
-0.00682035
0.241446
-0.00602667
0.241908
-0.00524441
0.242322
-0.00447294
0.242689
-0.00371206
0.243008
-0.00296193
0.24328
-0.00222304
0.243505
-0.00149623
0.243683
-0.000782373
-8.29091e-05
0.225659
-0.016436
-0.224431
0.226808
-0.0155923
0.227863
-0.0146611
0.22883
-0.0137073
0.229717
-0.0127518
0.230529
-0.0118046
0.231275
-0.0108751
0.231961
-0.00996633
0.232592
-0.00907724
0.233172
-0.00820603
0.233702
-0.00735075
0.234185
-0.00650933
0.23462
-0.00568007
0.235009
-0.00486193
0.235352
-0.0040545
0.235648
-0.00325788
0.235897
-0.00247257
0.236101
-0.00169948
0.236258
-0.000939678
-0.000194754
0.219124
-0.0176894
-0.217871
0.220272
-0.0167404
0.221311
-0.0157002
0.222256
-0.0146516
0.223111
-0.0136074
0.223888
-0.0125817
0.224599
-0.0115856
0.225251
-0.0106184
0.22585
-0.009676
0.226399
-0.00875536
0.226901
-0.00785313
0.227358
-0.00696598
0.227769
-0.00609143
0.228136
-0.00522805
0.228456
-0.00437525
0.228731
-0.00353307
0.228961
-0.00270207
0.229145
-0.00188329
0.229283
-0.00107801
-0.000288032
0.212976
-0.0190089
-0.211657
0.214127
-0.0178917
0.215149
-0.0167216
0.216068
-0.0155713
0.216889
-0.0144277
0.217626
-0.0133195
0.218299
-0.0122582
0.218916
-0.0112349
0.219482
-0.0102421
0.220001
-0.00927506
0.220477
-0.0083288
0.22091
-0.0073984
0.221299
-0.00648053
0.221644
-0.00557346
0.221945
-0.00467648
0.222202
-0.00378963
0.222413
-0.00291358
0.22258
-0.00204958
0.222701
-0.00119915
-0.000364419
0.207185
-0.0204625
-0.205731
0.208348
-0.0190549
0.209344
-0.0177174
0.210229
-0.016457
0.211005
-0.0152037
0.211697
-0.0140109
0.212327
-0.0128883
0.212906
-0.0118139
0.213439
-0.0107752
0.21393
-0.00976612
0.214381
-0.00877947
0.214791
-0.00780864
0.21516
-0.00684957
0.215487
-0.00590033
0.215771
-0.00496024
0.21601
-0.00402947
0.216206
-0.00310889
0.216356
-0.00219999
0.216462
-0.00130465
-0.00042541
0.20174
-0.0220286
-0.200174
0.202911
-0.020226
0.203868
-0.0186746
0.20469
-0.017279
0.205408
-0.0159216
0.20605
-0.0146524
0.206635
-0.0134735
0.207175
-0.0123544
0.207677
-0.0112766
0.208141
-0.0102308
0.20857
-0.00920753
0.20896
-0.00819897
0.209311
-0.00720057
0.209621
-0.00621042
0.209889
-0.00522807
0.210113
-0.00425397
0.210294
-0.00328929
0.21043
-0.00233585
0.210521
-0.00139592
-0.000472579
0.196603
-0.195764
-0.0228675
0.197723
-0.0213459
0.198714
-0.0196659
0.199412
-0.0179766
0.200048
-0.0165573
0.20065
-0.0152548
0.201198
-0.0140213
0.201701
-0.012858
0.202173
-0.0117482
0.202613
-0.0106713
0.20302
-0.00961429
0.203391
-0.00856962
0.203723
-0.00753307
0.204016
-0.00650287
0.204267
-0.0054789
0.204475
-0.00446209
0.204639
-0.003454
0.20476
-0.00245681
0.204838
-0.0014731
-0.000506555
0.0281156
0.171172
-0.169914
-0.029373
0.0268355
0.176336
-0.175056
0.0255299
0.181683
-0.180377
0.0241949
0.187231
-0.185896
0.0228273
0.193011
-0.191643
0.0214242
0.199057
-0.197654
0.0199833
0.205418
-0.203977
0.0185015
0.212158
-0.210677
0.016975
0.219364
-0.217838
0.0153991
0.227154
-0.225578
0.0137684
0.235687
-0.234057
0.0120778
0.245179
-0.243488
0.0103249
0.255904
-0.254151
0.00851371
0.268194
-0.266383
0.00666104
0.282394
-0.280541
0.00480723
0.29876
-0.296906
0.00303118
0.317273
-0.315497
0.0014722
0.337229
-0.33567
0.000358764
0.356299
-0.355185
0.370422
-0.370063
0.0280563
0.172429
-0.0293137
0.0267764
0.177616
0.0254714
0.182988
0.0241371
0.188566
0.0227699
0.194378
0.0213671
0.20046
0.0199259
0.206859
0.0184433
0.213641
0.0169157
0.220892
0.0153383
0.228731
0.0137063
0.237319
0.0120149
0.24687
0.0102624
0.257656
0.00845366
0.270003
0.00660713
0.28424
0.00476539
0.300602
0.00301006
0.319028
0.00148146
0.338758
0.000395034
0.357385
0.370817
0.0279565
0.173684
-0.029212
0.026679
0.178894
0.0253767
0.18429
0.0240452
0.189897
0.0226808
0.195743
0.0212803
0.201861
0.0198412
0.208299
0.0183601
0.215122
0.0168336
0.222419
0.0152573
0.230308
0.0136262
0.23895
0.0119363
0.24856
0.0101865
0.259406
0.00838246
0.271807
0.00654401
0.286079
0.00471537
0.302431
0.00297938
0.320764
0.00147384
0.340264
0.000402685
0.358456
0.371219
0.0278175
0.174936
-0.0290688
0.0265446
0.180167
0.0252472
0.185587
0.0239207
0.191224
0.0225611
0.197102
0.0211652
0.203256
0.0197302
0.209734
0.0182529
0.216599
0.0167297
0.223942
0.0151564
0.231881
0.0135285
0.240578
0.0118423
0.250246
0.0100972
0.261151
0.00829972
0.273604
0.00647071
0.287908
0.00465548
0.304246
0.00293755
0.322482
0.00145334
0.341748
0.000400183
0.35951
0.371619
0.027641
0.176181
-0.028886
0.0263749
0.181433
0.0250846
0.186878
0.0237651
0.192543
0.0224123
0.198455
0.0210229
0.204646
0.019594
0.211163
0.0181223
0.218071
0.0166044
0.22546
0.0150362
0.233449
0.0134135
0.242201
0.0117329
0.251927
0.0099943
0.26289
0.00820518
0.275393
0.00638713
0.289726
0.00458651
0.306047
0.00288764
0.324181
0.00142618
0.343209
0.000393478
0.360542
0.372013
0.0274301
0.177418
-0.0286669
0.0261726
0.18269
0.0248911
0.188159
0.0235803
0.193854
0.022236
0.199799
0.0208548
0.206027
0.0194336
0.212584
0.0179694
0.219535
0.0164585
0.22697
0.0148972
0.235011
0.0132814
0.243817
0.0116082
0.2536
0.00987804
0.26462
0.00809905
0.277172
0.00629382
0.291531
0.00450968
0.307831
0.00283167
0.325859
0.00139448
0.344646
0.000383656
0.361553
0.372397
0.0271881
0.178645
-0.0284154
0.0259406
0.183938
0.0246693
0.189431
0.0233686
0.195155
0.0220341
0.201134
0.0206624
0.207399
0.0192504
0.213996
0.0177949
0.220991
0.0162927
0.228473
0.0147398
0.236563
0.0131326
0.245424
0.0114686
0.255264
0.00974867
0.26634
0.00798171
0.278939
0.00619122
0.293321
0.00442554
0.309596
0.00277019
0.327515
0.00135862
0.346058
0.000371226
0.362541
0.372768
0.0269189
0.179862
-0.0281359
0.0256823
0.185175
0.024422
0.190691
0.0231323
0.196444
0.0218086
0.202458
0.0204474
0.20876
0.0190456
0.215398
0.0176001
0.222436
0.0161077
0.229965
0.0145648
0.238106
0.0129677
0.247021
0.0113145
0.256917
0.00960652
0.268048
0.00785342
0.280692
0.00607961
0.295095
0.00433431
0.311342
0.0027034
0.329145
0.001319
0.347442
0.000356823
0.363503
0.373125
0.0266266
0.181068
-0.0278329
0.0254011
0.1864
0.0241523
0.19194
0.0228739
0.197723
0.0215614
0.20377
0.0202112
0.21011
0.0188204
0.216788
0.0173858
0.223871
0.0159043
0.231447
0.0143724
0.239638
0.0127869
0.248607
0.011146
0.258558
0.00945177
0.269742
0.00771437
0.28243
0.00595917
0.29685
0.00423622
0.313065
0.00263165
0.33075
0.00127619
0.348798
0.000341007
0.364438
0.373466
0.0263162
0.182265
-0.0275125
0.0251014
0.187615
0.0238636
0.193178
0.0225962
0.19899
0.0212948
0.205072
0.0199557
0.211449
0.018576
0.218168
0.0171528
0.225294
0.0156829
0.232916
0.0141631
0.241158
0.0125905
0.250179
0.0109634
0.260185
0.00928451
0.271421
0.00756466
0.28415
0.00583003
0.298585
0.00413147
0.314763
0.00255526
0.332326
0.00123063
0.350122
0.000324149
0.365344
0.37379
0.0259915
0.183452
-0.027179
0.0247861
0.18882
0.0235581
0.194406
0.0223009
0.200247
0.0210097
0.206363
0.0196813
0.212778
0.0183127
0.219537
0.0169011
0.226705
0.0154436
0.234374
0.0139369
0.242665
0.0123782
0.251738
0.0107665
0.261797
0.00910468
0.273083
0.0074043
0.28585
0.00569231
0.300297
0.00402027
0.316435
0.00247454
0.333872
0.00118268
0.351414
0.000306512
0.366221
0.374096
0.0256608
0.184634
-0.0268426
0.0244617
0.190019
0.0232407
0.195627
0.0219912
0.201497
0.0207085
0.207645
0.0193895
0.214097
0.0180313
0.220895
0.0166311
0.228105
0.0151862
0.235819
0.0136933
0.244158
0.0121499
0.253281
0.010555
0.263392
0.00891206
0.274726
0.00723316
0.287529
0.00554598
0.301984
0.00390271
0.318078
0.00238961
0.335385
0.00113249
0.352671
0.000288216
0.367065
0.374385
0.0253224
0.185814
-0.0265023
0.0241262
0.191216
0.0229093
0.196843
0.0216651
0.202741
0.0203892
0.208921
0.0190784
0.215407
0.0177301
0.222243
0.0163414
0.229494
0.0149096
0.237251
0.0134315
0.245636
0.0119047
0.254808
0.0103284
0.264968
0.00870624
0.276348
0.00705103
0.289184
0.00539103
0.303644
0.00377893
0.319691
0.00230079
0.336863
0.00108043
0.353892
0.000269511
0.367876
0.374654
0.0249972
0.187001
-0.0261842
0.0237947
0.192418
0.022574
0.198064
0.0213288
0.203986
0.0200549
0.210195
0.0187492
0.216713
0.0174089
0.223584
0.0160311
0.230872
0.0146126
0.238669
0.0131503
0.247098
0.0116416
0.256317
0.0100857
0.266524
0.00848661
0.277947
0.00685752
0.290813
0.00522727
0.305274
0.00364894
0.321269
0.00220815
0.338304
0.00102655
0.355073
0.000250348
0.368652
0.374904
0.024653
0.1882
-0.0258524
0.0234406
0.19363
0.0222136
0.199291
0.0209663
0.205233
0.0196942
0.211467
0.0183939
0.218014
0.0170622
0.224915
0.0156961
0.232238
0.0142924
0.240073
0.0128475
0.248543
0.0113589
0.257806
0.00982579
0.268057
0.00825238
0.279521
0.00665221
0.292413
0.00505466
0.306872
0.00351311
0.32281
0.00211255
0.339705
0.000971948
0.356214
0.00023157
0.369392
0.375136
0.0243686
0.189444
-0.0256126
0.023117
0.194882
0.0218607
0.200547
0.0205953
0.206499
0.0193149
0.212748
0.0180142
0.219314
0.0166886
0.226241
0.0153341
0.233593
0.0139462
0.241461
0.0125209
0.249968
0.0110549
0.259272
0.00954741
0.269565
0.0080027
0.281065
0.0064346
0.293981
0.00487297
0.308434
0.00337141
0.324312
0.00201398
0.341062
0.000916362
0.357312
0.00021246
0.370096
0.375348
0.0239673
0.190715
-0.0252384
0.0226949
0.196155
0.0214298
0.201813
0.0201635
0.207765
0.018886
0.214025
0.0175918
0.220608
0.0162772
0.227555
0.014938
0.234932
0.0135695
0.242829
0.0121671
0.25137
0.0107272
0.260711
0.00924889
0.271043
0.00773648
0.282578
0.00620415
0.295514
0.00468224
0.309955
0.00322471
0.32577
0.00191478
0.342372
0.000863989
0.358362
0.00019733
0.370763
0.375546
0.0237676
0.192174
-0.0252261
0.0223587
0.197563
0.0210204
0.203151
0.0197172
0.209068
0.0184234
0.215319
0.0171285
0.221903
0.0158246
0.228859
0.0145037
0.236253
0.0131585
0.244175
0.0117834
0.252746
0.010374
0.262121
0.00892908
0.272488
0.00745316
0.284054
0.0059607
0.297006
0.00448248
0.311434
0.00307274
0.327179
0.00181401
0.343631
0.000812882
0.359364
0.000182106
0.371394
0.375728
0.0229828
0.193595
-0.0244046
0.0216759
0.19887
0.0204261
0.204401
0.0191557
0.210339
0.0178772
0.216598
0.0166001
0.22318
0.0153185
0.230141
0.0140238
0.237547
0.0127085
0.24549
0.0113663
0.254088
0.00999264
0.263494
0.00858606
0.273894
0.00715126
0.285488
0.00570327
0.298454
0.00427346
0.312863
0.00291662
0.328536
0.0017159
0.344831
0.000776182
0.360303
0.000192078
0.371978
0.37592
0.0224762
-0.024645
0.0211726
0.0198423
0.0185243
0.0172511
0.0160007
0.0147521
0.0134935
0.0122167
0.0109149
0.00958328
0.00822058
0.00683199
0.00543332
0.00405668
0.00275681
0.00161613
0.000738739
0.000204154
0.0237439
0.149834
-0.148862
-0.0247157
0.0222491
0.154139
-0.152644
0.0208159
0.15869
-0.157256
0.0194849
0.163528
-0.162197
0.0182403
0.168643
-0.167398
0.0170579
0.174048
-0.172866
0.0159147
0.179753
-0.17861
0.0147906
0.185782
-0.184658
0.0136681
0.192186
-0.191063
0.0125315
0.199053
-0.197917
0.0113661
0.206523
-0.205358
0.0101568
0.214802
-0.213593
0.00888878
0.224184
-0.222916
0.00754838
0.235079
-0.233738
0.00612706
0.24802
-0.246599
0.0046297
0.263661
-0.262164
0.00309153
0.282706
-0.281168
0.00161375
0.30566
-0.304183
0.000435331
0.331991
-0.330813
0.359716
-0.359281
0.0231979
0.150908
-0.0242717
0.0220926
0.155244
0.0209562
0.159826
0.0198088
0.164675
0.0186608
0.169791
0.0175179
0.175191
0.0163794
0.180892
0.0152389
0.186923
0.0140868
0.193338
0.0129124
0.200228
0.0117038
0.207732
0.0104483
0.216057
0.00913251
0.2255
0.00774463
0.236466
0.00627863
0.249486
0.00474333
0.265196
0.00317984
0.28427
0.00169521
0.307145
0.000515739
0.333171
0.360232
0.0231462
0.151833
-0.0240721
0.0221776
0.156213
0.0211527
0.160851
0.0200898
0.165738
0.0189995
0.170881
0.0178895
0.176301
0.0167625
0.182019
0.0156163
0.188069
0.0144459
0.194508
0.0132436
0.20143
0.0120006
0.208975
0.010706
0.217352
0.00934862
0.226857
0.00791854
0.237896
0.00641205
0.250992
0.00484114
0.266767
0.00325054
0.28586
0.00174757
0.308648
0.000548017
0.33437
0.36078
0.0233538
0.152655
-0.0241758
0.0224325
0.157134
0.0214426
0.161841
0.0204063
0.166774
0.0193348
0.171953
0.0182345
0.177401
0.0171073
0.183146
0.0159517
0.189224
0.0147635
0.195697
0.0135366
0.202657
0.0122632
0.210248
0.0109341
0.218681
0.00953952
0.228252
0.00807108
0.239365
0.00652698
0.252537
0.0049215
0.268373
0.00330221
0.28748
0.00177834
0.310172
0.000563336
0.335585
0.361343
0.0236539
0.15347
-0.024468
0.0227404
0.158048
0.0217621
0.162819
0.0207348
0.167801
0.0196673
0.17302
0.0185649
0.178504
0.0174293
0.184281
0.0162595
0.190394
0.0150517
0.196904
0.0138003
0.203908
0.0124982
0.21155
0.011137
0.220042
0.00970795
0.229681
0.00820395
0.240869
0.00662477
0.254116
0.00498678
0.270011
0.00334045
0.289126
0.00179801
0.311714
0.000571776
0.336811
0.361915
0.0240083
0.154313
-0.0248517
0.0230852
0.158971
0.0221021
0.163802
0.02107
0.168834
0.0199956
0.174095
0.018883
0.179616
0.0177336
0.185431
0.016546
0.191582
0.0153167
0.198134
0.0140403
0.205185
0.0127101
0.212881
0.0113183
0.221434
0.0098567
0.231143
0.00831941
0.242406
0.00670764
0.255728
0.0050398
0.271678
0.00336908
0.290797
0.00181034
0.313273
0.000575294
0.338046
0.36249
0.0244172
0.155194
-0.0252986
0.02347
0.159918
0.0224669
0.164805
0.0214165
0.169884
0.0203245
0.175187
0.0191937
0.180747
0.0180247
0.1866
0.0168156
0.192791
0.0155626
0.199387
0.0142605
0.206487
0.0129024
0.214239
0.0114808
0.222856
0.00998826
0.232635
0.00841965
0.243975
0.00677756
0.25737
0.00508233
0.273374
0.00338957
0.292489
0.0018164
0.314846
0.000574889
0.339288
0.363065
0.0248623
0.156118
-0.0257862
0.023881
0.160899
0.0228483
0.165838
0.0217711
0.170961
0.0206538
0.176304
0.0194985
0.181902
0.0183051
0.187793
0.0170711
0.194025
0.0157925
0.200665
0.0144635
0.207816
0.0130775
0.215625
0.0116269
0.224306
0.0101046
0.234158
0.00850636
0.245573
0.00683598
0.25904
0.00511556
0.275094
0.0034029
0.294202
0.00181727
0.316432
0.000571748
0.340533
0.363637
0.0253176
0.157087
-0.0262865
0.0242982
0.161919
0.0232321
0.166904
0.0221243
0.172069
0.020978
0.17745
0.0197949
0.183085
0.0185742
0.189014
0.0173132
0.195286
0.0160074
0.201971
0.0146509
0.209172
0.0132369
0.217039
0.011758
0.225785
0.0102072
0.235708
0.00858087
0.247199
0.00688407
0.260737
0.00514052
0.276838
0.00341013
0.295932
0.00181418
0.318028
0.000566896
0.341781
0.364204
0.0257649
0.158101
-0.0267787
0.0247071
0.162977
0.0236069
0.168004
0.0224674
0.173209
0.021291
0.178627
0.0200787
0.184298
0.0188295
0.190263
0.0175405
0.196575
0.016207
0.203305
0.014823
0.210556
0.0133815
0.21848
0.011875
0.227292
0.0102969
0.237286
0.00864413
0.248852
0.00692276
0.262458
0.00515816
0.278602
0.0034122
0.297678
0.00180808
0.319632
0.000561004
0.343028
0.364765
0.0261928
0.159158
-0.0272495
0.0250978
0.164072
0.0239643
0.169138
0.0227936
0.174379
0.0215872
0.179833
0.0203458
0.185539
0.0190682
0.191541
0.0177514
0.197892
0.0163905
0.204666
0.0149795
0.211967
0.0135112
0.219949
0.0119783
0.228825
0.0103743
0.23889
0.00869679
0.25053
0.00695279
0.264202
0.00516921
0.280386
0.00340984
0.299438
0.00179963
0.321242
0.000554494
0.344273
0.365319
0.0265927
0.160254
-0.0276891
0.0254627
0.165202
0.0242973
0.170303
0.0230969
0.17558
0.0218619
0.181068
0.0205926
0.186808
0.0192876
0.192846
0.0179438
0.199235
0.0165566
0.206053
0.0151196
0.213404
0.0136259
0.221442
0.0120679
0.230383
0.0104397
0.240519
0.00873927
0.25223
0.00697464
0.265967
0.00517421
0.282186
0.00340355
0.301209
0.00178923
0.322856
0.000547579
0.345515
0.365867
0.0269568
0.161386
-0.0280889
0.0257947
0.166364
0.0246002
0.171498
0.0233723
0.176808
0.0221109
0.18233
0.0208155
0.188104
0.0194849
0.194176
0.0181159
0.200604
0.0167039
0.207465
0.0152426
0.214865
0.0137249
0.22296
0.0121437
0.231964
0.0104931
0.242169
0.00877179
0.253951
0.00698867
0.26775
0.00517359
0.284001
0.00339378
0.302988
0.00177731
0.324473
0.000540487
0.346751
0.366407
0.0272789
0.162549
-0.0284422
0.0260886
0.167554
0.0248682
0.172718
0.0236158
0.17806
0.0223305
0.183615
0.0210117
0.189423
0.0196579
0.19553
0.0182658
0.201996
0.016831
0.2089
0.0153473
0.216349
0.0138078
0.224499
0.0122054
0.233566
0.0105345
0.24384
0.00879447
0.255691
0.00699511
0.269549
0.00516763
0.285829
0.00338084
0.304775
0.00176403
0.32609
0.000533231
0.347982
0.366941
0.0275548
0.163739
-0.0287444
0.0263404
0.168769
0.0250976
0.173961
0.023824
0.179334
0.0225181
0.184921
0.0211789
0.190762
0.0198045
0.196905
0.018392
0.203409
0.0169368
0.210355
0.0154331
0.217853
0.013874
0.226059
0.0122526
0.235188
0.0105638
0.245529
0.00880736
0.257448
0.00699419
0.271362
0.00515677
0.287666
0.00336534
0.306567
0.00175009
0.327705
0.000526293
0.349206
0.367467
0.0277819
0.16495
-0.0289928
0.0265475
0.170003
0.0252862
0.175222
0.023995
0.180625
0.0226718
0.186244
0.0213152
0.192118
0.0199233
0.198297
0.0184931
0.204839
0.0170203
0.211828
0.0154991
0.219374
0.0139229
0.227635
0.0122851
0.236825
0.0105808
0.247233
0.0088105
0.259218
0.00698605
0.273187
0.0051412
0.289511
0.00334745
0.30836
0.00173545
0.329317
0.000519286
0.350422
0.367986
0.0279585
0.166177
-0.029186
0.0267086
0.171253
0.0254326
0.176498
0.0241273
0.18193
0.0227902
0.187581
0.0214195
0.193489
0.0200132
0.199703
0.0185683
0.206284
0.0170807
0.213315
0.0155448
0.22091
0.0139542
0.229225
0.0123025
0.238477
0.0105853
0.24895
0.00880387
0.261
0.00697091
0.27502
0.00512153
0.29136
0.00332852
0.310153
0.00172248
0.330923
0.000514653
0.35163
0.368501
0.0280847
0.167417
-0.029324
0.0268233
0.172514
0.0255365
0.177785
0.0242206
0.183246
0.0228729
0.188929
0.0214913
0.194871
0.0200738
0.20112
0.0186173
0.20774
0.0171178
0.214815
0.0155699
0.222458
0.0139676
0.230828
0.0123048
0.24014
0.0105775
0.250677
0.00878769
0.262789
0.00694898
0.276859
0.00509779
0.293212
0.00330818
0.311943
0.00171015
0.332521
0.00051008
0.35283
0.369011
0.028161
0.168664
-0.0294079
0.0268921
0.173783
0.0255979
0.179079
0.0242748
0.184569
0.0229197
0.190284
0.0215304
0.19626
0.0201046
0.202546
0.0186394
0.209206
0.0171309
0.216323
0.0155739
0.224015
0.0139626
0.232439
0.0122914
0.241811
0.0105568
0.252412
0.00876148
0.264585
0.0069201
0.2787
0.00507048
0.295061
0.00328867
0.313725
0.0017059
0.334104
0.000520246
0.354016
0.369531
0.0281899
-0.0294404
0.0269167
0.0256184
0.0242911
0.0229316
0.0215375
0.0201064
0.0186355
0.0171208
0.0155575
0.01394
0.0122632
0.0105242
0.00872628
0.00688535
0.00504017
0.00326789
0.00170121
0.000531545
-0.145811
0.0237609
-0.0268115
-0.144599
0.0211071
-0.0223194
-0.143718
0.0195534
-0.0204343
-0.143034
0.0176635
-0.0183478
-0.142454
0.0160457
-0.0166259
-0.141967
0.0144617
-0.0149487
-0.141559
0.0129479
-0.0133553
-0.141227
0.0114681
-0.0118
-0.140967
0.0100184
-0.0102787
-0.140777
0.00859018
-0.00878078
-0.140654
0.00717974
-0.00730228
-0.140598
0.00578409
-0.00583966
-0.140609
0.00440163
-0.00439114
-0.140685
0.00303146
-0.00295569
-0.140825
0.00167339
-0.00153304
-0.141029
0.000327696
-0.000123453
-0.141297
-0.0010049
0.00127238
-0.141627
-0.00232328
0.00265337
-0.142019
-0.00362577
0.0040178
-0.00490999
-0.142472
0.00536299
-0.150749
0.0218661
-0.149552
0.0199099
-0.148569
0.0185698
-0.147833
0.0169276
-0.147226
0.015439
-0.146727
0.0139629
-0.146317
0.0125375
-0.145987
0.0111389
-0.145734
0.00976464
-0.145552
0.00840877
-0.145441
0.00706827
-0.145398
0.00574087
-0.145421
0.00442527
-0.145511
0.00312082
-0.145665
0.00182743
-0.145882
0.00054546
-0.146163
-0.000724339
-0.146505
-0.00198082
-0.146909
-0.00322235
-0.00444681
-0.147372
-0.155659
0.0202691
-0.154561
0.0188117
-0.15359
0.0175986
-0.15283
0.0161679
-0.152204
0.0148129
-0.151692
0.0134507
-0.151274
0.0121197
-0.150942
0.0108062
-0.150688
0.00951057
-0.150508
0.00822928
-0.1504
0.0069604
-0.150362
0.0057025
-0.150391
0.00445469
-0.150487
0.00321661
-0.150648
0.00198836
-0.150873
0.000770371
-0.151161
-0.000436537
-0.15151
-0.00163121
-0.151921
-0.00281204
-0.00397713
-0.15239
-0.160808
0.0188805
-0.159745
0.0177491
-0.158802
0.0166548
-0.158034
0.0154006
-0.157393
0.0141716
-0.156865
0.0129232
-0.156435
0.0116892
-0.156092
0.0104635
-0.155831
0.00924905
-0.155646
0.00804448
-0.155535
0.0068491
-0.155494
0.00566228
-0.155523
0.00448364
-0.15562
0.00331317
-0.155783
0.00215113
-0.15601
0.000998093
-0.156302
-0.000145073
-0.156656
-0.00127718
-0.157071
-0.0023967
-0.00350188
-0.157546
-0.166166
0.0176481
-0.165131
0.0167139
-0.164208
0.0157319
-0.163436
0.0146285
-0.162781
0.013517
-0.162237
0.0123789
-0.16179
0.0112423
-0.161433
0.010106
-0.161158
0.00897488
-0.160963
0.00784916
-0.160843
0.00672937
-0.160797
0.00561562
-0.160821
0.00450805
-0.160915
0.00340699
-0.161077
0.00231289
-0.161305
0.00122646
-0.161599
0.000148616
-0.161957
-0.000919441
-0.162377
-0.00197623
-0.00302012
-0.162859
-0.171729
0.0165116
-0.170721
0.0157054
-0.169814
0.014825
-0.169036
0.0138507
-0.168368
0.012849
-0.167806
0.011817
-0.16734
0.0107768
-0.166965
0.00973075
-0.166675
0.00868455
-0.166465
0.00763974
-0.166334
0.00659778
-0.166278
0.00555939
-0.166295
0.0045252
-0.166384
0.00349582
-0.166543
0.00247191
-0.16677
0.00145429
-0.167066
0.000443921
-0.167427
-0.000557991
-0.167853
-0.00155001
-0.00253064
-0.168343
-0.177525
0.0154269
-0.176535
0.0147156
-0.175638
0.0139277
-0.174853
0.0130651
-0.17417
0.0121662
-0.173588
0.0112357
-0.173102
0.0102905
-0.172706
0.00933506
-0.172397
0.00837513
-0.172171
0.00741321
-0.172024
0.00645134
-0.171955
0.00549078
-0.171963
0.00453251
-0.172044
0.0035774
-0.172199
0.00262628
-0.172424
0.00168004
-0.17272
0.000739685
-0.173085
-0.000193583
-0.173516
-0.00111839
-0.00203334
-0.174014
-0.183597
0.014366
-0.182615
0.0137333
-0.181718
0.0130313
-0.180921
0.0122679
-0.180221
0.0114658
-0.179618
0.0106326
-0.179108
0.00978085
-0.178689
0.00891591
-0.178357
0.00804331
-0.17811
0.00716602
-0.177945
0.00628645
-0.17786
0.00540618
-0.177854
0.00452647
-0.177925
0.00364834
-0.178072
0.00277276
-0.178292
0.00190068
-0.178586
0.00103311
-0.178951
0.000171232
-0.179385
-0.000683652
-0.00153024
-0.179889
-0.190007
0.0133093
-0.189021
0.0127473
-0.188115
0.0121261
-0.187301
0.0114533
-0.186578
0.0107432
-0.185949
0.0100035
-0.185412
0.00924357
-0.184965
0.00846886
-0.184606
0.00768437
-0.184333
0.00689324
-0.184145
0.00609796
-0.184039
0.00530031
-0.184014
0.00450169
-0.184069
0.00370324
-0.184202
0.00290598
-0.184412
0.00211088
-0.184698
0.00131894
-0.185058
0.000531283
-0.185491
-0.000250841
-0.00102624
-0.185995
-0.196848
0.0122409
-0.195847
0.0117457
-0.194922
0.0112012
-0.194082
0.0106133
-0.19333
0.00999131
-0.192668
0.0093419
-0.192097
0.00867228
-0.191616
0.00798733
-0.191223
0.00729143
-0.190917
0.00658762
-0.190697
0.00587833
-0.190563
0.00516537
-0.190511
0.00445017
-0.190542
0.00373392
-0.190653
0.00301762
-0.190845
0.00230223
-0.191114
0.00158869
-0.191461
0.000878087
-0.191884
0.000171569
-0.000529762
-0.19238
-0.204263
0.0111459
-0.203233
0.0107155
-0.202276
0.0102447
-0.2014
0.00973752
-0.200609
0.00920042
-0.199906
0.00863868
-0.199292
0.00805778
-0.198766
0.00746191
-0.19833
0.00685473
-0.197981
0.00623902
-0.19772
0.005617
-0.197545
0.00499041
-0.197455
0.00436061
-0.19745
0.00372874
-0.197528
0.00309578
-0.197688
0.00246259
-0.19793
0.00183006
-0.198251
0.00119916
-0.19865
0.000570964
-5.35055e-05
-0.199127
-0.212456
0.0100092
-0.211383
0.00964229
-0.210381
0.00924278
-0.209456
0.00881317
-0.208614
0.00835814
-0.207857
0.00788165
-0.207187
0.0073878
-0.206605
0.00688001
-0.206112
0.00636125
-0.205707
0.0058339
-0.20539
0.00529991
-0.20516
0.00476082
-0.205017
0.00421788
-0.204961
0.00367212
-0.204989
0.00312442
-0.205102
0.00257553
-0.205298
0.00202621
-0.205576
0.00147732
-0.205935
0.000929856
0.000384768
-0.206374
-0.221723
0.00881577
-0.220591
0.00851075
-0.219529
0.00818019
-0.218541
0.00782534
-0.217632
0.00744964
-0.216807
0.0070559
-0.216066
0.00664714
-0.215412
0.00622598
-0.214845
0.00579474
-0.214367
0.00535535
-0.213976
0.00490942
-0.213674
0.00445826
-0.213459
0.00400291
-0.213331
0.00354426
-0.21329
0.00308305
-0.213334
0.0026199
-0.213463
0.00215539
-0.213676
0.00169021
-0.213971
0.00122527
0.000761512
-0.214348
-0.232474
0.00755124
-0.231269
0.00730595
-0.23013
0.00704157
-0.229063
0.00675845
-0.228073
0.00645903
-0.227162
0.00614516
-0.226334
0.00581894
-0.22559
0.00548224
-0.224932
0.00513677
-0.224361
0.004784
-0.223876
0.00442517
-0.223479
0.00406132
-0.22317
0.00369326
-0.222947
0.00332169
-0.222811
0.00294719
-0.222762
0.00257021
-0.222797
0.00219113
-0.222918
0.00181036
-0.223121
0.0014287
0.00104717
-0.223407
-0.245253
0.00620599
-0.243964
0.00601705
-0.242738
0.00581514
-0.24158
0.00559997
-0.240493
0.00537293
-0.239483
0.00513519
-0.238552
0.00488792
-0.237703
0.00463239
-0.236936
0.0043697
-0.236252
0.00410087
-0.235654
0.00382678
-0.235141
0.00354816
-0.234713
0.00326559
-0.234371
0.00297956
-0.234114
0.00269045
-0.233943
0.00239857
-0.233856
0.00210407
-0.233852
0.00180693
-0.233931
0.00150758
0.0012073
-0.234091
-0.260741
0.00478308
-0.259369
0.00464563
-0.258055
0.00450069
-0.256803
0.00434821
-0.255618
0.00418808
-0.254504
0.00402119
-0.253464
0.00384769
-0.2525
0.00366833
-0.251614
0.00348358
-0.250807
0.00329407
-0.250081
0.00310031
-0.249435
0.00290276
-0.248871
0.00270175
-0.248389
0.00249752
-0.247989
0.00229028
-0.247671
0.00208021
-0.247434
0.00186723
-0.247278
0.00165066
-0.2472
0.00142995
0.00120667
-0.247199
-0.2797
0.00331499
-0.278276
0.00322178
-0.2769
0.0031246
-0.275579
0.00302708
-0.274317
0.00292603
-0.273118
0.00282251
-0.271986
0.00271518
-0.270922
0.0026044
-0.269928
0.00249001
-0.269006
0.00237235
-0.268158
0.00225159
-0.267383
0.00212795
-0.266683
0.00200154
-0.266058
0.00187234
-0.265508
0.00174032
-0.265033
0.00160548
-0.264633
0.00146763
-0.264308
0.00132525
-0.264054
0.00117566
0.00101995
-0.263867
-0.302758
0.00189064
-0.301365
0.00182905
-0.300006
0.00176525
-0.298692
0.00171305
-0.297427
0.00166073
-0.296214
0.00161
-0.295057
0.00155757
-0.293956
0.00150379
-0.292914
0.00144805
-0.291932
0.0013905
-0.291012
0.0013311
-0.290154
0.0012699
-0.289359
0.00120679
-0.288628
0.00114154
-0.287962
0.00107376
-0.287359
0.00100314
-0.286821
0.000929429
-0.286347
0.000850854
-0.285933
0.000761704
0.000657708
-0.28557
-0.329603
0.000681261
-0.328415
0.000641153
-0.327252
0.000601568
-0.326124
0.000585307
-0.325032
0.00056857
-0.323977
0.000554877
-0.32296
0.000540514
-0.321982
0.000526093
-0.321045
0.000511029
-0.32015
0.000495426
-0.319298
0.000479178
-0.31849
0.000462261
-0.317728
0.000444517
-0.317012
0.000425671
-0.316344
0.00040524
-0.315723
0.000382649
-0.315151
0.000357449
-0.314629
0.000328649
-0.314158
0.000290467
0.000224612
-0.313725
-0.3586
-0.357958
-0.357357
-0.356772
-0.356203
-0.355648
-0.355108
-0.354582
-0.354071
-0.353575
-0.353096
-0.352634
-0.352189
-0.351763
-0.351358
-0.350976
-0.350618
-0.350289
-0.349999
-0.349774
-0.142989
-0.00612491
0.00664179
-0.143564
-0.00736592
0.00794078
-0.144195
-0.00858229
0.00921414
-0.144883
-0.00977154
0.0104594
-0.145626
-0.0109306
0.0116734
-0.146423
-0.0120561
0.0128526
-0.147271
-0.0131439
0.0139926
-0.14817
-0.0141894
0.0150886
-0.149118
-0.0151872
0.0161347
-0.150111
-0.0161313
0.017124
-0.151144
-0.0170145
0.0180481
-0.152213
-0.0178283
0.0188967
-0.153307
-0.0185642
0.019658
-0.15441
-0.0192151
0.0203185
-0.1555
-0.0197747
0.0208647
-0.156552
-0.020239
0.0212907
-0.157522
-0.0206327
0.0216029
-0.158329
-0.0210265
0.0218332
-0.159105
-0.0214287
0.0222051
-0.0221308
-0.15936
0.0223857
-0.147898
-0.00559879
-0.148481
-0.00678303
-0.149119
-0.00794397
-0.149812
-0.00907909
-0.150557
-0.0101855
-0.151353
-0.0112599
-0.152198
-0.0122986
-0.15309
-0.0132973
-0.154026
-0.0142513
-0.155002
-0.0151554
-0.156013
-0.0160038
-0.157051
-0.0167902
-0.158106
-0.0175091
-0.159164
-0.0181571
-0.160205
-0.0187337
-0.1612
-0.0192439
-0.162119
-0.0197139
-0.162951
-0.020194
-0.163648
-0.0207318
-0.0216011
-0.164178
-0.152923
-0.00506625
-0.153512
-0.00619417
-0.154155
-0.00730029
-0.154852
-0.00838216
-0.155601
-0.00943704
-0.156399
-0.0104619
-0.157244
-0.0114532
-0.158134
-0.0124073
-0.159065
-0.0133202
-0.160033
-0.0141874
-0.161033
-0.0150046
-0.162055
-0.0157674
-0.163092
-0.0164724
-0.16413
-0.017119
-0.165154
-0.0177099
-0.166143
-0.0182548
-0.167081
-0.0187755
-0.167971
-0.0193048
-0.168793
-0.0199094
-0.020759
-0.169635
-0.158085
-0.0045273
-0.158681
-0.00559841
-0.159332
-0.00664936
-0.160036
-0.00767778
-0.160792
-0.00868112
-0.161598
-0.00965655
-0.16245
-0.010601
-0.163346
-0.0115112
-0.164282
-0.0123838
-0.165255
-0.0132151
-0.166257
-0.014002
-0.167283
-0.0147414
-0.168324
-0.0154317
-0.169369
-0.0160737
-0.170407
-0.0166718
-0.171426
-0.0172363
-0.172418
-0.0177838
-0.173383
-0.0183391
-0.174332
-0.0189605
-0.0197329
-0.175358
-0.163406
-0.00398021
-0.164011
-0.00499322
-0.164673
-0.0059878
-0.165389
-0.0069617
-0.166157
-0.00791257
-0.166976
-0.00883783
-0.167842
-0.00973476
-0.168753
-0.0106005
-0.169704
-0.0114323
-0.170692
-0.0122272
-0.171712
-0.0129827
-0.172756
-0.0136972
-0.173818
-0.01437
-0.174889
-0.0150026
-0.17596
-0.0156001
-0.177025
-0.0161714
-0.178079
-0.0167296
-0.179123
-0.0172949
-0.180175
-0.0179085
-0.0186042
-0.181304
-0.1689
-0.00342313
-0.169517
-0.00437615
-0.170192
-0.00531255
-0.170924
-0.00623021
-0.171709
-0.007127
-0.172547
-0.00800059
-0.173433
-0.0088486
-0.174365
-0.00966859
-0.175339
-0.0104582
-0.176351
-0.0112152
-0.177396
-0.0119379
-0.178468
-0.0126251
-0.179561
-0.0132769
-0.180668
-0.0138955
-0.181782
-0.0144855
-0.182899
-0.0150543
-0.184017
-0.0156122
-0.185136
-0.0161754
-0.186275
-0.0167694
-0.0174031
-0.187476
-0.174581
-0.00285553
-0.175211
-0.00374624
-0.175901
-0.0046222
-0.17665
-0.00548147
-0.177455
-0.00632212
-0.178314
-0.00714208
-0.179223
-0.00793928
-0.18018
-0.00871168
-0.181181
-0.00945734
-0.182221
-0.0101746
-0.183297
-0.0108621
-0.184403
-0.0115194
-0.185533
-0.012147
-0.186681
-0.012747
-0.187843
-0.0133236
-0.189015
-0.0138827
-0.190195
-0.0144322
-0.191386
-0.0149843
-0.192602
-0.0155532
-0.0161379
-0.193867
-0.180465
-0.00227914
-0.181106
-0.00310493
-0.181811
-0.00391792
-0.182576
-0.00471632
-0.183399
-0.00549841
-0.184279
-0.0062624
-0.185212
-0.00700653
-0.186194
-0.00772908
-0.187223
-0.00842852
-0.188294
-0.00910355
-0.189403
-0.00975335
-0.190545
-0.0103777
-0.191714
-0.0109774
-0.192907
-0.0115544
-0.194118
-0.0121122
-0.195346
-0.0126552
-0.196588
-0.0131898
-0.197848
-0.013724
-0.199136
-0.014265
-0.0148094
-0.200465
-0.186575
-0.00169865
-0.187224
-0.00245674
-0.187938
-0.00320396
-0.188715
-0.00393874
-0.189554
-0.00465956
-0.190452
-0.00536489
-0.191405
-0.00605325
-0.192411
-0.00672325
-0.193465
-0.00737369
-0.194565
-0.00800362
-0.195706
-0.00861251
-0.196884
-0.00920041
-0.198093
-0.00976811
-0.19933
-0.0103174
-0.200591
-0.0108509
-0.201874
-0.0113721
-0.203178
-0.0118857
-0.204506
-0.0123967
-0.205863
-0.0129082
-0.0134168
-0.207255
-0.192956
-0.00112235
-0.193603
-0.00180982
-0.194319
-0.00248833
-0.195101
-0.00315649
-0.195948
-0.00381302
-0.196856
-0.00445663
-0.197823
-0.00508611
-0.198846
-0.00570036
-0.199921
-0.00629847
-0.201045
-0.00687977
-0.202214
-0.00744395
-0.203423
-0.0079912
-0.204669
-0.00852228
-0.205947
-0.00903864
-0.207256
-0.00954237
-0.208592
-0.0100361
-0.209955
-0.010523
-0.211345
-0.0110061
-0.212767
-0.0114862
-0.0119606
-0.214223
-0.199686
-0.000562898
-0.200319
-0.00117681
-0.201024
-0.00178354
-0.201798
-0.00238194
-0.20264
-0.00297091
-0.203548
-0.00354942
-0.204517
-0.00411651
-0.205546
-0.00467134
-0.206631
-0.00521326
-0.207769
-0.00574181
-0.208957
-0.00625688
-0.210189
-0.0067587
-0.211463
-0.00724799
-0.212776
-0.0077259
-0.214124
-0.00819404
-0.215506
-0.00865435
-0.21692
-0.00910893
-0.218367
-0.00955936
-0.219848
-0.0100056
-0.0104453
-0.221363
-0.206898
-3.81269e-05
-0.2075
-0.000575688
-0.208175
-0.00110766
-0.208924
-0.00163312
-0.209744
-0.00215117
-0.210632
-0.00266102
-0.211587
-0.00316194
-0.212605
-0.00365335
-0.213683
-0.00413481
-0.214819
-0.00460607
-0.216009
-0.00506712
-0.217249
-0.00551827
-0.218537
-0.00596014
-0.219869
-0.00639369
-0.221243
-0.00682012
-0.222657
-0.00724085
-0.224108
-0.00765728
-0.225598
-0.00807015
-0.227124
-0.00847889
-0.00888168
-0.228688
-0.214814
0.000428119
-0.215359
-3.07372e-05
-0.215982
-0.000485306
-0.21668
-0.000934904
-0.217452
-0.00137883
-0.218297
-0.00181652
-0.219211
-0.00224751
-0.220193
-0.00267142
-0.22124
-0.00308803
-0.222349
-0.00349724
-0.223517
-0.00389916
-0.224741
-0.00429414
-0.226018
-0.00468275
-0.227346
-0.00506578
-0.228722
-0.00544417
-0.230144
-0.00581898
-0.23161
-0.00619119
-0.233119
-0.00656117
-0.23467
-0.00692813
-0.00729039
-0.236261
-0.223784
0.000805633
-0.224242
0.000426958
-0.224779
5.16785e-05
-0.225394
-0.000319775
-0.226086
-0.000686933
-0.226853
-0.00104948
-0.227693
-0.00140719
-0.228605
-0.00175989
-0.229585
-0.00210754
-0.230632
-0.00245019
-0.231743
-0.00278806
-0.232916
-0.00312153
-0.234148
-0.00345116
-0.235436
-0.00377764
-0.236778
-0.00410174
-0.238173
-0.00442429
-0.239618
-0.00474612
-0.241112
-0.0050676
-0.242652
-0.00538796
-0.0057054
-0.244237
-0.234344
0.00105872
-0.234678
0.000760253
-0.235091
0.000464787
-0.235583
0.000172537
-0.236154
-0.000116415
-0.236801
-0.000401933
-0.237524
-0.000684072
-0.238321
-0.000962841
-0.23919
-0.00123838
-0.24013
-0.00151087
-0.241137
-0.00178061
-0.242211
-0.00204804
-0.243348
-0.00231372
-0.244547
-0.00257831
-0.245807
-0.0028425
-0.247124
-0.00310698
-0.248498
-0.00337257
-0.249925
-0.00364007
-0.251404
-0.0039092
-0.0041778
-0.252931
-0.247291
0.00115006
-0.24746
0.000929764
-0.247708
0.000712351
-0.248033
0.000498228
-0.248437
0.000286786
-0.248917
7.81528e-05
-0.249473
-0.000128116
-0.250103
-0.000332171
-0.250807
-0.000534348
-0.251583
-0.000734925
-0.25243
-0.00093429
-0.253345
-0.0011329
-0.254327
-0.00133136
-0.255375
-0.00153036
-0.256487
-0.00173057
-0.257661
-0.00193257
-0.258897
-0.00213726
-0.26019
-0.00234637
-0.261538
-0.00256119
-0.00277912
-0.262937
-0.263768
0.00105127
-0.263742
0.000903789
-0.263788
0.000758573
-0.263908
0.000618066
-0.264101
0.000480078
-0.264368
0.000344934
-0.264708
0.000211541
-0.26512
7.96672e-05
-0.265603
-5.12019e-05
-0.266156
-0.000181393
-0.266779
-0.000311339
-0.267471
-0.00044151
-0.26823
-0.000572539
-0.269055
-0.000705202
-0.269945
-0.000840298
-0.270899
-0.00097842
-0.271916
-0.00112045
-0.272993
-0.00126931
-0.274124
-0.00142983
-0.00160028
-0.275303
-0.285283
0.000763736
-0.285057
0.000677645
-0.284891
0.000592645
-0.28479
0.000516949
-0.284753
0.000443719
-0.284782
0.000373712
-0.284876
0.000304951
-0.285033
0.000237326
-0.285255
0.000170252
-0.28554
0.00010347
-0.285887
3.65871e-05
-0.286298
-3.08254e-05
-0.286771
-9.93868e-05
-0.287307
-0.000169973
-0.287903
-0.000243671
-0.28856
-0.000321397
-0.289277
-0.000403944
-0.290051
-0.000494513
-0.290878
-0.000602844
-0.000736219
-0.291743
-0.31331
0.000348817
-0.312941
0.000309202
-0.312619
0.000270401
-0.312348
0.000245997
-0.312127
0.000222324
-0.311954
0.000201242
-0.31183
0.000180657
-0.311753
0.000160796
-0.311724
0.000141258
-0.311743
0.000121971
-0.311809
0.000102713
-0.311923
8.32432e-05
-0.312086
6.31418e-05
-0.312297
4.17471e-05
-0.312559
1.80637e-05
-0.312871
-9.05724e-06
-0.313235
-4.05594e-05
-0.313651
-7.82615e-05
-0.314122
-0.000131889
-0.000232089
-0.314626
-0.349426
-0.349116
-0.348846
-0.3486
-0.348378
-0.348176
-0.347996
-0.347835
-0.347694
-0.347572
-0.347469
-0.347386
-0.347323
-0.347281
-0.347263
-0.347272
-0.347312
-0.347391
-0.347523
-0.347755
1.56193e-05
-0.34777
0.000518164
-0.315129
0.00145498
-0.292679
0.00271312
-0.276561
0.00418668
-0.264411
0.00578336
-0.254528
0.00743138
-0.245885
0.00908016
-0.23791
0.0106969
-0.230305
0.0122625
-0.222929
0.0137678
-0.215729
0.0152108
-0.208698
0.0165945
-0.201849
0.0179259
-0.195199
0.0192161
-0.188767
0.0204797
-0.182568
0.0217371
-0.176616
0.0230398
-0.170938
0.0245014
-0.16564
-0.160969
0.0261103
7.07662e-05
-0.347841
0.000619009
-0.315677
0.00160693
-0.293667
0.00291917
-0.277874
0.00444363
-0.265935
0.00608634
-0.256171
0.00777555
-0.247574
0.00946121
-0.239595
0.0111115
-0.231955
0.0127086
-0.224526
0.0142447
-0.217265
0.0157188
-0.210172
0.0171348
-0.203265
0.0184992
-0.196563
0.0198195
-0.190087
0.0211032
-0.183852
0.0223619
-0.177874
0.0236205
-0.172197
0.0248963
-0.166916
-0.162159
0.0260868
0.000125167
-0.347966
0.0007186
-0.31627
0.00175493
-0.294704
0.00311905
-0.279238
0.00469295
-0.267509
0.00637996
-0.257858
0.00810808
-0.249302
0.00982801
-0.241315
0.011509
-0.233636
0.0131346
-0.226151
0.0146981
-0.218828
0.0162002
-0.211674
0.0176456
-0.20471
0.019042
-0.19796
0.0203975
-0.191442
0.0217199
-0.185174
0.0230147
-0.179169
0.0242764
-0.173458
0.0254656
-0.168105
-0.163192
0.0264979
0.000155711
-0.348122
0.000802266
-0.316917
0.00189351
-0.295795
0.00331044
-0.280655
0.00493256
-0.269131
0.00666174
-0.259587
0.00842611
-0.251066
0.0101773
-0.243067
0.0118857
-0.235344
0.0135361
-0.227802
0.0151229
-0.220415
0.0166476
-0.213199
0.0181153
-0.206178
0.0195334
-0.199378
0.0209099
-0.192819
0.0222518
-0.186516
0.0235628
-0.18048
0.0248376
-0.174733
0.0260554
-0.169322
-0.164319
0.0271833
0.000185219
-0.348307
0.000881451
-0.317613
0.00202628
-0.29694
0.00349428
-0.282123
0.00516214
-0.270799
0.00693066
-0.261356
0.00872814
-0.252864
0.0105072
-0.244846
0.0122394
-0.237077
0.0139109
-0.229473
0.0155173
-0.222022
0.0170608
-0.214742
0.0185473
-0.207664
0.0199845
-0.200815
0.0213806
-0.194215
0.022742
-0.187877
0.0240715
-0.18181
0.0253647
-0.176026
0.0266066
-0.170564
-0.165484
0.0277708
0.000210535
-0.348518
0.000954545
-0.318357
0.00215211
-0.298137
0.00366959
-0.28364
0.00538066
-0.27251
0.00718539
-0.26316
0.00901253
-0.254691
0.0108157
-0.246649
0.0125681
-0.238829
0.0142567
-0.231162
0.0158785
-0.223644
0.0174365
-0.2163
0.0189372
-0.209165
0.0203889
-0.202267
0.0217999
-0.195626
0.0231775
-0.189255
0.0245257
-0.183158
0.0258431
-0.177344
0.0271188
-0.17184
-0.166695
0.0283302
0.000235068
-0.348753
0.00102462
-0.319147
0.00227245
-0.299385
0.00383663
-0.285204
0.0055877
-0.274261
0.00742509
-0.264998
0.00927814
-0.256544
0.0111017
-0.248472
0.0128702
-0.240598
0.0145721
-0.232864
0.0162054
-0.225277
0.0177741
-0.217869
0.0192854
-0.210676
0.020748
-0.203729
0.0221708
-0.197049
0.0235613
-0.190645
0.0249246
-0.184521
0.0262607
-0.17868
0.0275605
-0.17314
-0.167937
0.0288024
0.00025835
-0.349011
0.00109152
-0.31998
0.00238713
-0.300681
0.00399503
-0.286812
0.00578265
-0.276049
0.00764893
-0.266864
0.00952397
-0.258419
0.0113639
-0.250312
0.0131445
-0.242378
0.0148557
-0.234575
0.0164967
-0.226918
0.0180722
-0.219445
0.0195902
-0.212194
0.0210599
-0.205199
0.0224907
-0.19848
0.0238907
-0.192045
0.0252657
-0.185896
0.0266167
-0.180031
0.0279361
-0.174459
-0.169205
0.0292036
0.00028093
-0.349292
0.00115588
-0.320855
0.0024965
-0.302021
0.00414473
-0.28846
0.00596513
-0.277869
0.00785632
-0.268755
0.00974927
-0.260312
0.0116015
-0.252164
0.0133902
-0.244167
0.0151068
-0.236291
0.0167516
-0.228563
0.0183302
-0.221023
0.0198512
-0.213715
0.0213244
-0.206672
0.0227595
-0.199915
0.024165
-0.193451
0.0255472
-0.187278
0.0269079
-0.181392
0.0282407
-0.175792
-0.17049
0.0295266
0.000302772
-0.349595
0.00121767
-0.32177
0.00260048
-0.303404
0.0042855
-0.290145
0.00613476
-0.279718
0.00804675
-0.270667
0.00995345
-0.262219
0.0118138
-0.254025
0.0136067
-0.24596
0.0153248
-0.238009
0.0169695
-0.230207
0.0185475
-0.222601
0.020068
-0.215236
0.0215412
-0.208145
0.0229769
-0.20135
0.0243841
-0.194858
0.0257695
-0.188664
0.0271357
-0.182758
0.0284772
-0.177134
-0.17179
0.0297765
0.000324013
-0.349919
0.00127705
-0.322723
0.00269908
-0.304826
0.00441721
-0.291864
0.00629126
-0.281593
0.00821985
-0.272596
0.0101361
-0.264135
0.0120005
-0.255889
0.0137936
-0.247753
0.0155094
-0.239725
0.0171504
-0.231848
0.0187243
-0.224175
0.0202408
-0.216752
0.0217104
-0.209615
0.0231433
-0.202783
0.0245486
-0.196263
0.0259334
-0.190049
0.0273009
-0.184125
0.0286466
-0.178479
-0.173098
0.0299548
0.000344729
-0.350264
0.00133407
-0.323712
0.00279227
-0.306284
0.00453971
-0.293611
0.00643441
-0.283487
0.00837536
-0.274537
0.010297
-0.266057
0.0121614
-0.257754
0.0139507
-0.249542
0.0156604
-0.241435
0.0172943
-0.233482
0.0188607
-0.225741
0.0203698
-0.218261
0.0218327
-0.211078
0.0232595
-0.20421
0.0246597
-0.197663
0.0260404
-0.191429
0.0274056
-0.18549
0.0287518
-0.179826
-0.174411
0.030065
0.000365115
-0.350629
0.00138892
-0.324736
0.00288009
-0.307775
0.00465296
-0.295384
0.00656411
-0.285398
0.00851314
-0.276486
0.0104359
-0.267979
0.0122963
-0.259614
0.0140781
-0.251324
0.0157782
-0.243135
0.0174015
-0.235106
0.0189571
-0.227297
0.0204558
-0.21976
0.0219088
-0.212531
0.0233266
-0.205628
0.0247185
-0.199055
0.0260922
-0.192803
0.0274518
-0.18685
0.0287952
-0.181169
-0.175726
0.0301101
0.000385485
-0.351014
0.00144189
-0.325792
0.00296271
-0.309296
0.00475696
-0.297178
0.00668029
-0.287322
0.00863312
-0.278439
0.0105529
-0.269899
0.0124053
-0.261466
0.0141758
-0.253095
0.0158628
-0.244822
0.0174723
-0.236715
0.0190141
-0.228839
0.0204996
-0.221246
0.02194
-0.213971
0.0233459
-0.207034
0.0247269
-0.200436
0.0260906
-0.194167
0.0274419
-0.188201
0.0287796
-0.182507
-0.17704
0.0300931
0.000406345
-0.35142
0.00149342
-0.326879
0.00304025
-0.310843
0.00485173
-0.29899
0.00678294
-0.289253
0.0087353
-0.280391
0.010648
-0.271812
0.0124886
-0.263307
0.0142442
-0.25485
0.0159148
-0.246493
0.0175075
-0.238308
0.0190326
-0.230364
0.020502
-0.222715
0.0219272
-0.215396
0.0233188
-0.208425
0.0246863
-0.201804
0.0260377
-0.195518
0.0273781
-0.189542
0.0287074
-0.183836
-0.178349
0.0300171
0.000428295
-0.351849
0.00154382
-0.327995
0.00311276
-0.312412
0.00493726
-0.300814
0.00687209
-0.291188
0.00881978
-0.282339
0.0107213
-0.273713
0.0125463
-0.265132
0.0142837
-0.256588
0.0159347
-0.248144
0.0175075
-0.23988
0.0190133
-0.23187
0.0204642
-0.224166
0.0218718
-0.216804
0.0232467
-0.2098
0.0245985
-0.203156
0.0259353
-0.196855
0.0272626
-0.190869
0.0285814
-0.185155
-0.179653
0.0298848
0.000451823
-0.352301
0.00159337
-0.329136
0.00318055
-0.313999
0.00501387
-0.302647
0.00694801
-0.293122
0.00888677
-0.284277
0.0107732
-0.2756
0.0125788
-0.266938
0.0142945
-0.258303
0.0159229
-0.249772
0.0174731
-0.241431
0.018957
-0.233354
0.020387
-0.225596
0.0217748
-0.218192
0.023131
-0.211157
0.024465
-0.20449
0.0257852
-0.198175
0.0270974
-0.192181
0.0284037
-0.186461
-0.180948
0.029699
0.000477958
-0.352779
0.00164388
-0.330302
0.00324534
-0.315601
0.00508258
-0.304485
0.00701114
-0.29505
0.00893643
-0.286203
0.0108036
-0.277467
0.0125862
-0.26872
0.0142769
-0.259994
0.0158798
-0.251375
0.0174049
-0.242956
0.0188645
-0.234813
0.0202714
-0.227003
0.0216373
-0.219558
0.0229728
-0.212492
0.0242872
-0.205804
0.0255888
-0.199477
0.0268842
-0.193477
0.0281762
-0.187753
-0.182234
0.0294617
0.000512424
-0.353291
0.00170121
-0.331491
0.00331005
-0.31721
0.0051442
-0.306319
0.00706143
-0.296968
0.00896854
-0.28811
0.0108124
-0.279311
0.0125686
-0.270476
0.0142313
-0.261657
0.0158059
-0.25295
0.0173033
-0.244453
0.0187365
-0.236246
0.0201182
-0.228385
0.0214603
-0.2209
0.0227731
-0.213805
0.0240659
-0.207097
0.0253472
-0.200758
0.0266239
-0.194753
0.0278997
-0.189029
-0.183508
0.0291737
0.000573307
0.00176943
0.00337335
0.0051971
0.00709779
0.00898257
0.0107996
0.0125261
0.0141579
0.0157017
0.0171692
0.0185738
0.0199284
0.0212447
0.022533
0.0238024
0.0250614
0.0263171
0.0275746
0.0288345
0.0276898
-0.887382
0.888078
0.0277455
-0.803233
0.803178
0.0282051
-0.731854
0.731394
0.0287717
-0.670564
0.669997
0.0292402
-0.617335
0.616866
0.0295369
-0.568778
0.568481
0.0295998
-0.522866
0.522803
0.0294176
-0.478483
0.478665
0.0290161
-0.435225
0.435626
0.0284419
-0.393224
0.393798
0.0277516
-0.352855
0.353546
0.0270009
-0.314562
0.315312
0.0262381
-0.278718
0.279481
0.0255003
-0.245577
0.246315
0.0248132
-0.215259
0.215946
0.0241922
-0.187773
0.188394
0.0236445
-0.163047
0.163595
0.0231719
-0.140958
0.14143
0.0227722
-0.12135
0.12175
0.0224417
-0.10406
0.10439
0.0221755
-0.0889168
0.089183
0.0219689
-0.0757535
0.0759601
0.0218175
-0.0644008
0.0645522
0.0217172
-0.0546914
0.0547917
0.0216635
-0.046441
0.0464946
0.0216512
-0.0394665
0.0394788
0.0216722
-0.0335405
0.0335194
0.0217166
-0.0284614
0.028417
0.0217706
-0.023941
0.023887
0.0218184
-0.0198074
0.0197596
0.0218442
-0.0157041
0.0156783
0.0218297
-0.0116115
0.0116261
0.0217673
-0.00704209
0.00710449
0.0216387
-0.00233356
0.00246217
0.0214598
0.00337146
-0.00319252
0.0212094
0.00891657
-0.00866626
0.0209415
0.0160713
-0.0158034
0.0206443
0.021751
-0.0214537
0.0203454
0.0298668
-0.0295679
0.0355141
-0.0353546
0.0261624
-0.885597
0.025587
-0.802658
0.0257308
-0.731998
0.0261484
-0.670981
0.0265764
-0.617763
0.0269099
-0.569112
0.0270657
-0.523022
0.0270153
-0.478432
0.0267712
-0.434981
0.0263692
-0.392822
0.0258562
-0.352342
0.0252802
-0.313986
0.0246838
-0.278122
0.0241003
-0.244994
0.023553
-0.214712
0.0230561
-0.187276
0.022617
-0.162608
0.022238
-0.140578
0.021918
-0.12103
0.0216544
-0.103796
0.0214439
-0.0887062
0.0212831
-0.0755927
0.0211688
-0.0642865
0.0210983
-0.0546209
0.0210682
-0.0464108
0.021074
-0.0394723
0.0211086
-0.0335752
0.0211626
-0.0285153
0.0212228
-0.0240012
0.0212737
-0.0198583
0.0213
-0.0157304
0.0212839
-0.0115955
0.0212186
-0.00697673
0.0210866
-0.00220159
0.0209052
0.00355285
0.0206541
0.00916766
0.020391
0.0163344
0.0200997
0.0220424
0.0198195
0.0301469
0.0356549
0.0246143
-0.882747
0.0234
-0.801444
0.0232225
-0.73182
0.0234909
-0.67125
0.0238786
-0.618151
0.0242506
-0.569483
0.0245026
-0.523274
0.0245879
-0.478518
0.0245055
-0.434898
0.0242793
-0.392595
0.0239465
-0.35201
0.0235476
-0.313587
0.0231194
-0.277694
0.0226912
-0.244566
0.0222843
-0.214305
0.021912
-0.186904
0.0215818
-0.162278
0.0212965
-0.140293
0.0210562
-0.12079
0.0208597
-0.1036
0.0207049
-0.0885514
0.02059
-0.0754777
0.0205131
-0.0642096
0.0204727
-0.0545805
0.0204664
-0.0464046
0.0204909
-0.0394967
0.0205397
-0.033624
0.0206039
-0.0285796
0.020671
-0.0240683
0.0207259
-0.0199132
0.0207537
-0.0157582
0.0207373
-0.0115791
0.0206702
-0.00690971
0.0205364
-0.00206776
0.0203542
0.00373505
0.0201043
0.00941762
0.0198478
0.0165909
0.0195645
0.0223257
0.0193051
0.0304063
0.0357757
0.0230478
-0.878855
0.0211877
-0.799583
0.0206815
-0.731314
0.0208001
-0.671368
0.0211478
-0.618498
0.0215599
-0.569896
0.0219113
-0.523625
0.0221365
-0.478743
0.0222197
-0.434981
0.022173
-0.392549
0.0220237
-0.35186
0.0218042
-0.313367
0.0215458
-0.277435
0.0212742
-0.244294
0.0210085
-0.214039
0.0207614
-0.186657
0.0205402
-0.162057
0.0203489
-0.140102
0.0201885
-0.12063
0.0200591
-0.103471
0.0199602
-0.0884525
0.0198913
-0.0754088
0.0198519
-0.0641703
0.0198418
-0.0545704
0.0198597
-0.0464225
0.0199031
-0.0395401
0.0199666
-0.0336874
0.0200416
-0.0286546
0.0201163
-0.024143
0.0201761
-0.019973
0.0202063
-0.0157884
0.0201906
-0.0115634
0.0201232
-0.00684229
0.0199889
-0.00193352
0.0198075
0.0039165
0.0195605
0.00966465
0.0193125
0.0168388
0.0190391
0.022599
0.0188025
0.0306429
0.0358749
0.021465
-0.873943
0.0189527
-0.797071
0.018109
-0.73047
0.0180766
-0.671336
0.0183849
-0.618807
0.0188384
-0.570349
0.0192924
-0.524079
0.0196615
-0.479112
0.0199145
-0.435234
0.0200511
-0.392685
0.0200882
-0.351897
0.0200507
-0.31333
0.019964
-0.277348
0.0198503
-0.24418
0.0197268
-0.213916
0.0196054
-0.186536
0.0194938
-0.161945
0.0193966
-0.140005
0.0193163
-0.120549
0.0192542
-0.103408
0.0192113
-0.0884096
0.0191885
-0.075386
0.0191868
-0.0641686
0.0192071
-0.0545908
0.0192494
-0.0464648
0.0193121
-0.0396028
0.0193905
-0.0337658
0.019477
-0.0287411
0.0195599
-0.0242259
0.0196252
-0.0200383
0.0196588
-0.015822
0.0196449
-0.0115494
0.0195783
-0.00677569
0.019445
-0.00180024
0.0192658
0.00409569
0.0190234
0.00990704
0.0187855
0.0170767
0.018524
0.0228606
0.0183118
0.0308552
0.0359516
0.0198679
-0.868035
0.016697
-0.7939
0.0155053
-0.729278
0.0153201
-0.671151
0.01559
-0.619076
0.0160865
-0.570846
0.016646
-0.524639
0.0171631
-0.479629
0.0175901
-0.435661
0.0179137
-0.393009
0.0181407
-0.352124
0.0182877
-0.313477
0.0183748
-0.277435
0.0184205
-0.244226
0.0184401
-0.213935
0.0184452
-0.186541
0.0184437
-0.161944
0.018441
-0.140002
0.018441
-0.120549
0.0184464
-0.103414
0.0184596
-0.0884228
0.018483
-0.0754095
0.0185191
-0.0642046
0.01857
-0.0546417
0.0186369
-0.0465316
0.0187191
-0.039685
0.0188128
-0.0338595
0.018911
-0.0288393
0.0190027
-0.0243176
0.0190743
-0.0201098
0.0191121
-0.0158598
0.0191009
-0.0115383
0.0190363
-0.00671106
0.0189053
-0.00166925
0.0187298
0.00427122
0.0184936
0.0101432
0.0182674
0.017303
0.0180194
0.0231086
0.0178331
0.0310415
0.0360047
0.018258
-0.861156
0.0144219
-0.790064
0.0128701
-0.727727
0.0125301
-0.670811
0.0127631
-0.619309
0.0133043
-0.571387
0.0139722
-0.525307
0.0146412
-0.480298
0.0152464
-0.436267
0.0157611
-0.393524
0.0161813
-0.352545
0.0165157
-0.313811
0.0167786
-0.277698
0.0169853
-0.244433
0.0171494
-0.214099
0.0172818
-0.186673
0.017391
-0.162053
0.0174833
-0.140094
0.0175639
-0.12063
0.017637
-0.103487
0.0177064
-0.0884922
0.0177762
-0.0754793
0.0178501
-0.0642786
0.0179317
-0.0547233
0.0180233
-0.0466232
0.0181252
-0.0397869
0.0182345
-0.0339688
0.0183449
-0.0289496
0.0184458
-0.0244186
0.0185243
-0.0201883
0.0185671
-0.0159027
0.0185597
-0.0115309
0.0184981
-0.00664951
0.0183707
-0.0015418
0.0182002
0.00444171
0.0179718
0.0103716
0.0177586
0.0175162
0.0175257
0.0233415
0.0173665
0.0312007
0.0360334
0.0166359
-0.853335
0.0121289
-0.785557
0.010205
-0.725803
0.00970794
-0.670313
0.00990526
-0.619507
0.0104922
-0.571974
0.0112709
-0.526085
0.0120957
-0.481123
0.0128832
-0.437054
0.0135929
-0.394233
0.0142099
-0.353162
0.0147346
-0.314336
0.0151758
-0.27814
0.0155454
-0.244802
0.0158552
-0.214409
0.016116
-0.186934
0.0163366
-0.162274
0.0165246
-0.140282
0.0166861
-0.120792
0.0168272
-0.103628
0.0169531
-0.0886181
0.0170693
-0.0755955
0.0171812
-0.0643904
0.0172935
-0.0548357
0.0174098
-0.0467395
0.0175316
-0.0399087
0.0176567
-0.0340939
0.0177796
-0.0290725
0.0178902
-0.0245293
0.0179762
-0.0202742
0.0180247
-0.0159512
0.018022
-0.0115281
0.0179645
-0.00659208
0.0178418
-0.00141909
0.0176776
0.0046059
0.0174584
0.0105907
0.0172595
0.0177151
0.0170431
0.0235579
0.0169122
0.0313316
0.0360371
0.015003
-0.844602
0.00982472
-0.780379
0.00751658
-0.723495
0.00685724
-0.669654
0.00701829
-0.619668
0.00765106
-0.572606
0.00854202
-0.526976
0.009526
-0.482107
0.0105001
-0.438028
0.0114089
-0.395142
0.0122263
-0.353979
0.0129445
-0.315054
0.0135666
-0.278762
0.014101
-0.245337
0.0145582
-0.214867
0.0149486
-0.187324
0.0152815
-0.162607
0.0155657
-0.140566
0.0158087
-0.121035
0.016018
-0.103837
0.0162006
-0.0888007
0.0163635
-0.0757584
0.0165134
-0.0645403
0.0166566
-0.0549788
0.0167977
-0.0468806
0.0169394
-0.0400504
0.0170805
-0.034235
0.0172161
-0.029208
0.0173369
-0.0246501
0.0174308
-0.0203682
0.0174858
-0.0160062
0.0174885
-0.0115308
0.0174362
-0.00653978
0.0173194
-0.00130224
0.0171627
0.00476256
0.016954
0.0107994
0.0167706
0.0178985
0.016572
0.0237565
0.0164701
0.0314335
0.0360154
0.0133648
-0.835001
0.00752127
-0.774535
0.00481067
-0.720784
0.00397739
-0.668821
0.00409991
-0.61979
0.00477897
-0.573286
0.00578428
-0.527982
0.00693114
-0.483254
0.00809615
-0.439193
0.00920823
-0.396254
0.01023
-0.355001
0.011145
-0.315969
0.0119508
-0.279567
0.0126523
-0.246038
0.0132587
-0.215473
0.01378
-0.187845
0.0142263
-0.163053
0.0146074
-0.140948
0.0149326
-0.12136
0.0152106
-0.104115
0.0154502
-0.0890403
0.0156598
-0.0759681
0.0158479
-0.0647283
0.0160219
-0.0551529
0.0161879
-0.0470467
0.0163497
-0.0402122
0.0165069
-0.0343922
0.0166554
-0.0293565
0.0167866
-0.0247813
0.0168891
-0.0204707
0.0169512
-0.0160683
0.0169602
-0.0115398
0.0169139
-0.00649353
0.016804
-0.00119231
0.016656
0.00491059
0.016459
0.0109964
0.0162921
0.0180654
0.0161125
0.0239361
0.0160404
0.0315055
0.0359679
0.0117259
-0.824584
0.00521383
-0.768023
0.00206896
-0.717639
0.0010485
-0.6678
0.00113629
-0.619878
0.00186808
-0.574017
0.00299305
-0.529107
0.00430815
-0.484569
0.00566938
-0.440555
0.00698967
-0.397574
0.00822005
-0.356231
0.00933567
-0.317085
0.0103281
-0.28056
0.0111994
-0.24691
0.0119569
-0.21623
0.0126107
-0.188499
0.0131716
-0.163614
0.0136506
-0.141427
0.0140585
-0.121768
0.0144057
-0.104462
0.0147026
-0.0893372
0.0149593
-0.0762248
0.0151856
-0.0649546
0.0153906
-0.0553579
0.0155815
-0.0472376
0.0157633
-0.040394
0.0159367
-0.0345655
0.0160984
-0.0295182
0.0162404
-0.0249234
0.0163519
-0.0205822
0.0164217
-0.016138
0.0164377
-0.0115557
0.0163984
-0.00645423
0.0162963
-0.0010903
0.016158
0.00504892
0.0159739
0.0111805
0.0158244
0.0182149
0.0156647
0.0240959
0.0156229
0.0315474
0.0358946
0.0100627
-0.813388
0.00285164
-0.760812
-0.000757606
-0.71403
-0.00196191
-0.666596
-0.00189064
-0.619949
-0.00109167
-0.574816
0.000161953
-0.53036
0.00165256
-0.486059
0.00321665
-0.442119
0.00475098
-0.399109
0.00619498
-0.357675
0.00751539
-0.318405
0.00869812
-0.281743
0.00974188
-0.247953
0.0106528
-0.217141
0.0114409
-0.189287
0.0121178
-0.164291
0.0126958
-0.142005
0.0131872
-0.122259
0.0136042
-0.104879
0.0139588
-0.0896918
0.0142628
-0.0765288
0.0145275
-0.0652193
0.0147635
-0.0555939
0.0149794
-0.0474535
0.0151813
-0.0405959
0.015371
-0.0347552
0.015546
-0.0296932
0.015699
-0.0250764
0.0158199
-0.0207031
0.0158979
-0.016216
0.0159216
-0.0115795
0.0158901
-0.0064227
0.0157969
-0.00099712
0.0156693
0.00517658
0.015499
0.0113507
0.0153678
0.0183461
0.0152289
0.0242347
0.0152176
0.0315586
0.0357954
0.00832105
-0.801406
0.000399322
-0.75289
-0.00366059
-0.70997
-0.00502958
-0.665227
-0.00496132
-0.620018
-0.00408963
-0.575688
-0.00270499
-0.531745
-0.00103517
-0.487729
0.000736983
-0.443891
0.00249077
-0.400862
0.00415344
-0.359338
0.00568311
-0.319935
0.00705993
-0.283119
0.00827937
-0.249173
0.00934628
-0.218208
0.0102707
-0.190212
0.0110651
-0.165085
0.0117434
-0.142683
0.0123192
-0.122835
0.0128067
-0.105367
0.0132195
-0.0901045
0.0135711
-0.0768803
0.0138744
-0.0655226
0.0141415
-0.055861
0.0143824
-0.0476944
0.0146045
-0.040818
0.0148105
-0.0349612
0.0149989
-0.0298816
0.0151633
-0.0252408
0.0152939
-0.0208337
0.0153807
-0.0163028
0.0154128
-0.0116115
0.0153898
-0.00639974
0.0153063
-0.000913649
0.0151902
0.00529269
0.0150347
0.0115062
0.0149224
0.0184584
0.0148051
0.0243521
0.0148246
0.0315391
0.0356703
0.00654661
-0.788689
-0.00195881
-0.744385
-0.00643181
-0.705497
-0.00800077
-0.663658
-0.00798183
-0.620037
-0.00707231
-0.576598
-0.00557816
-0.533239
-0.00373938
-0.489568
-0.00176192
-0.445868
0.000212506
-0.402837
0.00209676
-0.361222
0.00383921
-0.321677
0.00541359
-0.284694
0.00681182
-0.250571
0.00803734
-0.219434
0.00910023
-0.191275
0.010014
-0.165999
0.0107938
-0.143463
0.0114551
-0.123496
0.0120139
-0.105926
0.0124854
-0.0905761
0.012885
-0.0772799
0.0132271
-0.0658648
0.0135254
-0.0561593
0.0137914
-0.0479604
0.0140336
-0.0410601
0.0142559
-0.0351835
0.014458
-0.0300837
0.0146338
-0.0254167
0.0147746
-0.0209745
0.0148706
-0.0163988
0.0149116
-0.0116526
0.0148979
-0.00638599
0.0148249
-0.000840653
0.0147212
0.0053964
0.0145813
0.0116461
0.0144885
0.0185512
0.0143934
0.0244472
0.0144435
0.0314889
0.0355197
0.00503276
-0.775607
-0.003856
-0.735496
-0.00883524
-0.700518
-0.010756
-0.661737
-0.010891
-0.619902
-0.0100015
-0.577487
-0.00843132
-0.534809
-0.00644286
-0.491556
-0.00426942
-0.448042
-0.0020775
-0.405029
2.85662e-05
-0.363328
0.00198572
-0.323634
0.00376024
-0.286468
0.00533991
-0.252151
0.0067265
-0.22082
0.00792999
-0.192478
0.0089648
-0.167034
0.0098475
-0.144345
0.0105955
-0.124244
0.0112262
-0.106556
0.0117571
-0.0911069
0.012205
-0.0777279
0.0125863
-0.066246
0.012916
-0.056489
0.013207
-0.0482514
0.0134694
-0.0413225
0.0137082
-0.0354223
0.0139238
-0.0302993
0.0141114
-0.0256043
0.0142626
-0.0211256
0.0143683
-0.0165045
0.0144189
-0.0117032
0.014415
-0.00638216
0.0143532
-0.000778851
0.0142626
0.00548702
0.014139
0.0117698
0.0140662
0.0186239
0.0139937
0.0245197
0.0140745
0.0314082
0.0353439
0.00380391
-0.762572
-0.00563853
-0.726054
-0.0113475
-0.694809
-0.0136953
-0.65939
-0.0139556
-0.619641
-0.0130357
-0.578407
-0.011355
-0.53649
-0.00919663
-0.493715
-0.00681384
-0.450425
-0.00439479
-0.407448
-0.00205972
-0.365663
0.000117817
-0.325812
0.00209715
-0.288448
0.00386213
-0.253916
0.00541294
-0.222371
0.00675959
-0.193825
0.00791748
-0.168192
0.00890473
-0.145332
0.00974052
-0.12508
0.0104443
-0.10726
0.0110352
-0.0916978
0.0115319
-0.0782246
0.0119525
-0.0666666
0.0123137
-0.0568502
0.01263
-0.0485677
0.0129125
-0.0416051
0.0131678
-0.0356776
0.0133972
-0.0305287
0.0135966
-0.0258038
0.0137585
-0.0212875
0.0138743
-0.0166202
0.0139349
-0.0117638
0.0139416
-0.00638883
0.0138916
-0.000728897
0.0138147
0.00556388
0.013708
0.0118765
0.0136557
0.0186763
0.0136062
0.0245692
0.0137172
0.0312972
0.0351431
0.00142959
-0.748592
-0.00909308
-0.715531
-0.0153539
-0.688548
-0.0177528
-0.656991
-0.0177806
-0.619614
-0.0165674
-0.57962
-0.0146037
-0.538454
-0.0121635
-0.496155
-0.00949779
-0.45309
-0.00680369
-0.410142
-0.00420851
-0.368258
-0.0017901
-0.32823
0.000407929
-0.290646
0.00236786
-0.255876
0.00408976
-0.224093
0.00558453
-0.195319
0.00686915
-0.169476
0.00796364
-0.146427
0.00888923
-0.126006
0.00966742
-0.108038
0.0103194
-0.0923498
0.0108657
-0.078771
0.0113261
-0.067127
0.0117192
-0.0572433
0.0120607
-0.0489092
0.0123636
-0.0419079
0.0126353
-0.0359493
0.0128786
-0.030772
0.0130901
-0.0260153
0.0132629
-0.0214603
0.0133891
-0.0167464
0.0134602
-0.0118349
0.0134779
-0.00640656
0.0134404
-0.00069138
0.0133779
0.0056264
0.0132886
0.0119657
0.0132569
0.018708
0.0132308
0.0245953
0.0133716
0.0311564
0.034918
-0.00345398
-0.731393
-0.0146221
-0.704363
-0.0207263
-0.682444
-0.0227078
-0.655009
-0.0222341
-0.620087
-0.0205571
-0.581297
-0.0181846
-0.540826
-0.0153679
-0.498972
-0.0123499
-0.456108
-0.00933079
-0.413161
-0.00644003
-0.371149
-0.00375552
-0.330915
-0.00132075
-0.29308
0.000847158
-0.258044
0.00274964
-0.225996
0.00439951
-0.196969
0.00581601
-0.170893
0.00702157
-0.147633
0.0080398
-0.127024
0.00889451
-0.108893
0.00960902
-0.0930643
0.010206
-0.079368
0.010707
-0.0676281
0.0111324
-0.0576686
0.0114995
-0.0492764
0.0118228
-0.0422313
0.0121112
-0.0362377
0.0123684
-0.0310292
0.0125921
-0.026239
0.0127761
-0.0216444
0.0129131
-0.0168834
0.0129952
-0.0119169
0.0130245
-0.00643584
0.0129999
-0.000666826
0.0129522
0.00567406
0.0128809
0.0120371
0.01287
0.0187188
0.0128673
0.024598
0.0130375
0.0309862
0.0346691
-0.00542282
-0.714162
-0.0161648
-0.693621
-0.0226918
-0.675917
-0.0251672
-0.652534
-0.0250401
-0.620214
-0.0235046
-0.582833
-0.0211137
-0.543217
-0.0181729
-0.501912
-0.0149631
-0.459318
-0.0117168
-0.416407
-0.00858817
-0.374278
-0.00567108
-0.333832
-0.00301866
-0.295733
-0.000653376
-0.260409
0.00142395
-0.228073
0.00322598
-0.198771
0.00477295
-0.17244
0.00608897
-0.148949
0.00719967
-0.128135
0.00813092
-0.109824
0.00890808
-0.0938414
0.00955577
-0.0800157
0.0100974
-0.0681697
0.010555
-0.0581262
0.0109477
-0.0496691
0.0112914
-0.042575
0.0115964
-0.0365426
0.0118675
-0.0313003
0.0121035
-0.0264749
0.0122989
-0.0218398
0.012447
-0.0170315
0.0125403
-0.0120103
0.0125816
-0.00647709
0.0125704
-0.000655674
0.012538
0.00570645
0.0124848
0.0120903
0.012495
0.0187087
0.0125158
0.0245773
0.0127146
0.0307874
0.0343969
0.00701056
-0.711508
-0.00581258
-0.680798
-0.0155182
-0.666211
-0.0213149
-0.646737
-0.0236673
-0.617862
-0.023647
-0.582853
-0.0221516
-0.544712
-0.0197201
-0.504344
-0.0167448
-0.462293
-0.013549
-0.419603
-0.0103626
-0.377464
-0.0073305
-0.336864
-0.00453755
-0.298526
-0.00202607
-0.26292
0.000191601
-0.230291
0.00212209
-0.200702
0.003783
-0.174101
0.00519776
-0.150363
0.00639248
-0.129329
0.00739409
-0.110826
0.00822933
-0.0946767
0.00892433
-0.0807107
0.00950405
-0.0687494
0.00999199
-0.0586141
0.0104089
-0.050086
0.010772
-0.042938
0.0110928
-0.0368635
0.0113775
-0.031585
0.0116257
-0.0267231
0.0118325
-0.0220467
0.0119918
-0.0171908
0.0120966
-0.0121151
0.0121501
-0.00653059
0.0121527
-0.000658224
0.0121357
0.0057234
0.012101
0.012125
0.0121318
0.0186779
0.0121763
0.0245328
0.0124024
0.0305614
0.0341018
0.312669
-0.649912
-0.374265
0.2734
-0.641529
0.234971
-0.627782
0.19926
-0.611026
0.169804
-0.588406
0.145854
-0.558903
0.125667
-0.524525
0.108449
-0.487126
0.0938368
-0.447681
0.0814685
-0.407235
0.0710274
-0.367023
0.0622644
-0.328101
0.0549584
-0.29122
0.048902
-0.256864
0.0439055
-0.225294
0.0397995
-0.196596
0.0364362
-0.170737
0.0336895
-0.147617
0.0314542
-0.127094
0.0296432
-0.109015
0.028186
-0.0932194
0.027025
-0.0795497
0.0261135
-0.067838
0.0254115
-0.0579121
0.0248832
-0.0495577
0.0244925
-0.0425474
0.024203
-0.036574
0.0239749
-0.0313569
0.0237707
-0.0265189
0.0235532
-0.0218291
0.0232989
-0.0169365
0.0229889
-0.0118051
0.0226349
-0.00617653
0.022245
-0.000268375
0.0218856
0.00608276
0.0215722
0.0124384
0.0214486
0.0188015
0.0214257
0.0245556
0.0217743
0.0302128
0.0336011
0.333566
-0.587209
-0.396269
0.286162
-0.594125
0.246523
-0.588143
0.212047
-0.57655
0.182622
-0.558981
0.157737
-0.534017
0.136413
-0.503202
0.118015
-0.468728
0.102229
-0.431894
0.0887682
-0.393774
0.0773493
-0.355604
0.0677253
-0.318477
0.0596709
-0.283165
0.0529698
-0.250163
0.0474213
-0.219746
0.042845
-0.19202
0.0390825
-0.166975
0.035998
-0.144532
0.0334773
-0.124573
0.0314257
-0.106963
0.029766
-0.0915597
0.0284348
-0.0782185
0.0273806
-0.0667837
0.0265588
-0.0570903
0.0259298
-0.0489287
0.0254534
-0.042071
0.0250895
-0.0362102
0.0247942
-0.0310616
0.0245273
-0.026252
0.0242488
-0.0215507
0.0239356
-0.0166232
0.0235692
-0.0114388
0.0231652
-0.00577251
0.0227368
0.000159992
0.0223559
0.00646365
0.0220459
0.0127484
0.0219506
0.0188969
0.0219835
0.0245227
0.0224152
0.0297811
0.0330214
0.361942
-0.529118
-0.420034
0.314628
-0.546811
0.273453
-0.546968
0.236029
-0.539127
0.203092
-0.526044
0.174993
-0.505918
0.150959
-0.479168
0.130224
-0.447992
0.112415
-0.414085
0.0972539
-0.378614
0.0844337
-0.342784
0.0736626
-0.307706
0.0646732
-0.274176
0.057211
-0.242701
0.0510411
-0.213576
0.0459543
-0.186933
0.0417699
-0.162791
0.0383344
-0.141097
0.0355199
-0.121759
0.0332212
-0.104665
0.0313528
-0.0896912
0.0298449
-0.0767106
0.0286407
-0.0655795
0.0276913
-0.0561409
0.0269531
-0.0481904
0.026382
-0.0414998
0.0259342
-0.0357624
0.0255623
-0.0306896
0.0252234
-0.0259131
0.0248758
-0.0212031
0.0244964
-0.0162439
0.0240688
-0.0110111
0.0236128
-0.00531644
0.0231473
0.000625417
0.0227503
0.0068607
0.0224523
0.0130464
0.0223967
0.0189525
0.022497
0.0244224
0.0230246
0.0292535
0.0323584
0.382796
-0.472133
-0.439781
0.333036
-0.49705
0.290496
-0.504428
0.252911
-0.501543
0.219378
-0.49251
0.189977
-0.476517
0.164378
-0.45357
0.142031
-0.425645
0.122631
-0.394686
0.105991
-0.361973
0.0918571
-0.32865
0.0799484
-0.295797
0.0699893
-0.264217
0.0617125
-0.234424
0.0548643
-0.206727
0.0492158
-0.181284
0.0445667
-0.158141
0.0407464
-0.137276
0.0376121
-0.118624
0.0350463
-0.102099
0.0329535
-0.0875984
0.0312558
-0.075013
0.0298902
-0.0642139
0.0288024
-0.0550531
0.0279443
-0.0473324
0.0272679
-0.0408233
0.0267256
-0.0352202
0.0262665
-0.0302305
0.0258457
-0.0254923
0.0254201
-0.0207775
0.0249679
-0.0157917
0.0244751
-0.0105183
0.0239663
-0.00480772
0.0234675
0.0011243
0.0230616
0.00726652
0.0227872
0.0133208
0.0227835
0.0189563
0.022966
0.0242399
0.0235986
0.0286209
0.0316061
0.404388
-0.419134
-0.457388
0.356086
-0.448748
0.313385
-0.461727
0.274593
-0.46275
0.238979
-0.456896
0.207088
-0.444626
0.179119
-0.425601
0.154696
-0.401222
0.133466
-0.373455
0.115214
-0.343721
0.0996908
-0.313128
0.0865952
-0.282702
0.075625
-0.253247
0.0664907
-0.22529
0.0589191
-0.199156
0.0526631
-0.175028
0.0475058
-0.152984
0.0432616
-0.133032
0.039774
-0.115137
0.0369134
-0.0992383
0.0345735
-0.0852585
0.0326676
-0.073107
0.0311248
-0.0626711
0.0298848
-0.053813
0.0288941
-0.0463418
0.0281
-0.0400292
0.0274512
-0.0345714
0.0268934
-0.0296727
0.0263802
-0.0249791
0.0258679
-0.0202652
0.0253366
-0.0152604
0.0247758
-0.00995753
0.0242159
-0.00424778
0.0236897
0.00165044
0.0232853
0.00767096
0.0230484
0.0135576
0.0231103
0.0188944
0.0233906
0.0239596
0.024136
0.0278754
0.0307593
0.423175
-0.369659
-0.47265
0.375492
-0.401066
0.331865
-0.4181
0.292195
-0.42308
0.255786
-0.420487
0.222711
-0.411551
0.193223
-0.396113
0.167204
-0.375203
0.144412
-0.350664
0.124684
-0.323993
0.107824
-0.296267
0.0935513
-0.268429
0.081557
-0.241252
0.0715391
-0.215272
0.0632103
-0.190827
0.0563087
-0.168127
0.0506038
-0.147279
0.045897
-0.128325
0.0420204
-0.11126
0.038833
-0.096051
0.0362187
-0.0826441
0.0340812
-0.0709696
0.0323416
-0.0609315
0.0309322
-0.0524036
0.0297935
-0.045203
0.0288673
-0.039103
0.0280983
-0.0338024
0.0274294
-0.0290038
0.0268128
-0.0243625
0.0262053
-0.0196577
0.0255898
-0.0146449
0.0249605
-0.00932818
0.0243534
-0.00364074
0.0238093
0.00219452
0.0234196
0.00806074
0.0232367
0.0137405
0.0233795
0.0187516
0.0237734
0.0235657
0.0246377
0.0270111
0.0298134
0.439487
-0.323886
-0.48526
0.39385
-0.355429
0.35079
-0.375039
0.310804
-0.383094
0.27345
-0.383133
0.238872
-0.376973
0.207611
-0.364852
0.179868
-0.34746
0.155509
-0.326304
0.134351
-0.302835
0.116196
-0.278112
0.100768
-0.253002
0.0877545
-0.228239
0.0768415
-0.204359
0.0677325
-0.181718
0.0601551
-0.160549
0.0538682
-0.140992
0.0486631
-0.12312
0.0443618
-0.106959
0.0408143
-0.0925035
0.0378951
-0.0797249
0.0354993
-0.0685737
0.0335394
-0.0589716
0.03194
-0.0508042
0.0306347
-0.0438978
0.0295597
-0.038028
0.0286554
-0.0328981
0.0278617
-0.0282101
0.0271305
-0.0236312
0.02642
-0.0189472
0.0257168
-0.0139418
0.0250208
-0.00863212
0.024374
-0.00299402
0.0238249
0.00274362
0.0234664
0.00841929
0.0233564
0.0138504
0.0235962
0.0185119
0.0241194
0.0230425
0.0251064
0.0260241
0.0287643
0.45292
-0.281651
-0.495154
0.409405
-0.311914
0.366897
-0.33253
0.326557
-0.342755
0.288584
-0.34516
0.253205
-0.341594
0.220899
-0.332545
0.191961
-0.318522
0.166374
-0.300717
0.144004
-0.280465
0.124684
-0.258792
0.108174
-0.236492
0.0941746
-0.214239
0.0823741
-0.192558
0.0724746
-0.171819
0.0641996
-0.152274
0.057302
-0.134095
0.0515659
-0.117384
0.0468062
-0.102199
0.042865
-0.0885624
0.0396091
-0.0764689
0.0369255
-0.0658901
0.0347187
-0.0567648
0.0329055
-0.048991
0.0314122
-0.0424046
0.0301691
-0.0367848
0.0291121
-0.031841
0.028179
-0.0272771
0.0273219
-0.0227741
0.0265017
-0.018127
0.0257096
-0.0131497
0.024952
-0.00787447
0.0242769
-0.00231894
0.0237397
0.00328086
0.0234323
0.00872668
0.0234158
0.0138669
0.0237693
0.0181584
0.0244363
0.0223755
0.0255478
0.0249126
0.0276081
0.462834
-0.242659
-0.501826
0.421664
-0.270745
0.380387
-0.291252
0.340443
-0.302812
0.302402
-0.307119
0.266593
-0.305785
0.233505
-0.299458
0.203574
-0.288591
0.17694
-0.274083
0.15353
-0.257056
0.133189
-0.238451
0.115696
-0.218998
0.100769
-0.199312
0.0881078
-0.179897
0.0774215
-0.161132
0.0684365
-0.143289
0.0609055
-0.126564
0.0546098
-0.111089
0.0493599
-0.0969493
0.0449922
-0.0841947
0.0413672
-0.0728439
0.0383648
-0.0628878
0.0358821
-0.0542821
0.0338284
-0.0469373
0.0321229
-0.040699
0.0306897
-0.0353517
0.0294609
-0.0306122
0.0283729
-0.0261891
0.0273789
-0.0217801
0.0264439
-0.017192
0.0255645
-0.0122704
0.0247543
-0.00706419
0.0240665
-0.00163114
0.023562
0.00378536
0.0233287
0.00895992
0.0234277
0.0137679
0.0239116
0.0176745
0.0247347
0.0215524
0.0259707
0.0236767
0.02634
0.468573
-0.206695
-0.504537
0.429893
-0.232065
0.390253
-0.251613
0.351159
-0.263718
0.313481
-0.269441
0.277744
-0.270048
0.244465
-0.266179
0.214096
-0.258223
0.186851
-0.246838
0.162719
-0.232923
0.141579
-0.217311
0.123247
-0.200667
0.107482
-0.183546
0.0940089
-0.166425
0.0825548
-0.149678
0.0728581
-0.133593
0.0646781
-0.118384
0.0577986
-0.104209
0.0520291
-0.0911799
0.0472034
-0.079369
0.0431768
-0.0688173
0.0398238
-0.0595348
0.0370346
-0.0514929
0.0347114
-0.0446141
0.0327667
-0.0387543
0.0311194
-0.0337044
0.0296981
-0.0291909
0.028439
-0.0249301
0.0272979
-0.0206389
0.026245
-0.0161391
0.0252833
-0.0113087
0.0244336
-0.00621448
0.0237533
-0.000950769
0.0233062
0.00423245
0.0231725
0.00909355
0.0234092
0.0135312
0.0240394
0.0170443
0.0250289
0.0205629
0.0263886
0.0223169
0.0249536
0.469523
-0.173681
-0.502536
0.433532
-0.196074
0.396032
-0.214113
0.358471
-0.226156
0.321853
-0.232823
0.286825
-0.235019
0.25391
-0.233264
0.223565
-0.227877
0.196068
-0.219341
0.17149
-0.208346
0.149768
-0.195589
0.130759
-0.181658
0.114264
-0.167051
0.100045
-0.152206
0.087856
-0.137489
0.0774562
-0.123193
0.068619
-0.109546
0.0611363
-0.0967264
0.0548212
-0.0848648
0.0495073
-0.0740551
0.0450475
-0.0643575
0.0413116
-0.0557988
0.0381839
-0.0483653
0.0355606
-0.0419908
0.0333481
-0.0365417
0.0314607
-0.0318171
0.0298251
-0.0275552
0.0283788
-0.0234838
0.0270814
-0.0193415
0.0259102
-0.014968
0.024875
-0.0102735
0.0240034
-0.0053429
0.0233548
-0.000302227
0.0229929
0.00459438
0.0229859
0.00910057
0.0233818
0.0131354
0.0241731
0.016253
0.0253366
0.0193994
0.0268202
0.0208333
0.0234392
0.465493
-0.143705
-0.495469
0.432477
-0.163058
0.397614
-0.17925
0.362211
-0.190752
0.327285
-0.197898
0.293546
-0.20128
0.261536
-0.201255
0.231713
-0.198054
0.204393
-0.192021
0.179712
-0.183665
0.157667
-0.173544
0.138169
-0.16216
0.121072
-0.149954
0.106188
-0.137322
0.0933097
-0.12461
0.0822251
-0.112108
0.0727296
-0.100051
0.0646294
-0.0886262
0.0577457
-0.0779811
0.0519157
-0.068225
0.0469917
-0.0594336
0.0428407
-0.0516478
0.0393424
-0.0448669
0.0363873
-0.0390358
0.0338769
-0.0340313
0.0317226
-0.0296628
0.0298503
-0.0256829
0.0282011
-0.0218345
0.0267401
-0.0178805
0.0254531
-0.0136809
0.0243569
-0.00917736
0.023485
-0.00447104
0.0228962
0.000286604
0.0226492
0.0048414
0.0227961
0.00895365
0.0233713
0.0125602
0.0243373
0.015287
0.0256802
0.0180565
0.0272907
0.0192229
0.0217826
0.457003
-0.116913
-0.483795
0.427234
-0.133289
0.395429
-0.147445
0.362719
-0.158043
0.330056
-0.165235
0.298144
-0.169368
0.26753
-0.170641
0.238667
-0.169191
0.211894
-0.165248
0.187407
-0.159179
0.165271
-0.151408
0.145461
-0.14235
0.127891
-0.132383
0.112427
-0.121858
0.0989102
-0.111093
0.0871655
-0.100364
0.0770161
-0.0899014
0.0682885
-0.0798986
0.0608167
-0.0705093
0.0544445
-0.0618529
0.0490269
-0.0540159
0.0444293
-0.0470503
0.040528
-0.0409656
0.0372093
-0.0357171
0.0343708
-0.0311928
0.0319224
-0.0272144
0.0297915
-0.023552
0.0279247
-0.0199677
0.0262951
-0.0162509
0.0248977
-0.0122836
0.0237566
-0.00803625
0.0229091
-0.0036236
0.02241
0.000785738
0.022308
0.0049434
0.0226351
0.00862653
0.0234074
0.011788
0.0245603
0.014134
0.0260873
0.0165295
0.0278325
0.0174777
0.0199641
0.44537
-0.0933702
-0.468914
0.418988
-0.106907
0.390484
-0.118941
0.360803
-0.128362
0.330778
-0.13521
0.301065
-0.139655
0.272195
-0.141771
0.244615
-0.141611
0.218683
-0.139317
0.194641
-0.135137
0.172619
-0.129386
0.152657
-0.122387
0.134732
-0.114458
0.118772
-0.105898
0.104668
-0.0969896
0.0922897
-0.0879854
0.081494
-0.0791056
0.072132
-0.0705366
0.0640548
-0.0624322
0.0571168
-0.0549148
0.0511773
-0.0480764
0.0461027
-0.0419756
0.0417669
-0.0366299
0.0380533
-0.0320035
0.0348569
-0.0279964
0.032088
-0.0244455
0.0296779
-0.0211419
0.0275809
-0.0178707
0.0257799
-0.0144498
0.0242803
-0.010784
0.0231126
-0.00686857
0.0223157
-0.00282676
0.0219364
0.00116512
0.0220079
0.00487183
0.022539
0.00809547
0.0235234
0.0108035
0.0248749
0.0127826
0.0265908
0.0148135
0.0284847
0.0155838
0.0179572
0.432554
-0.0729454
-0.452979
0.409472
-0.0838248
0.384258
-0.0937268
0.357671
-0.101775
0.330409
-0.107948
0.303051
-0.112297
0.276094
-0.114813
0.249973
-0.115491
0.225056
-0.1144
0.201621
-0.111702
0.179851
-0.107616
0.159851
-0.102388
0.141661
-0.096268
0.125269
-0.0895057
0.11062
-0.0823408
0.0976302
-0.0749958
0.0861938
-0.0676692
0.0761906
-0.0605334
0.067492
-0.0537336
0.0599655
-0.0473883
0.0534777
-0.0415886
0.047897
-0.0363949
0.0430967
-0.0318296
0.0389582
-0.027865
0.0353758
-0.0244139
0.0322621
-0.0213318
0.0295541
-0.0184339
0.0272165
-0.0155331
0.0252434
-0.0124766
0.0236513
-0.00919185
0.022476
-0.00569329
0.021755
-0.00210579
0.0215229
0.00139723
0.0217929
0.00460186
0.0225477
0.00734069
0.0237567
0.00959454
0.0253177
0.0112215
0.0272293
0.0129019
0.0292925
0.0135206
0.0157297
0.420844
-0.0552849
-0.438504
0.400725
-0.0637064
0.378518
-0.0715191
0.354811
-0.0780685
0.330167
-0.0833031
0.305078
-0.0872082
0.279994
-0.0897301
0.255332
-0.0908278
0.231457
-0.0905253
0.208673
-0.0889176
0.187208
-0.0861508
0.167221
-0.0824
0.148808
-0.0778553
0.132015
-0.0727128
0.116841
-0.067167
0.103248
-0.0614029
0.0911691
-0.05559
0.0805138
-0.0498781
0.0711762
-0.0443961
0.0630389
-0.039251
0.055977
-0.0345267
0.0498629
-0.0302808
0.0445702
-0.0265369
0.0399795
-0.0232743
0.0359858
-0.0204202
0.0325055
-0.0178515
0.029484
-0.0154125
0.0268977
-0.0129468
0.0247532
-0.0103322
0.0230781
-0.00751673
0.0219121
-0.0045273
0.0212882
-0.00148186
0.0212252
0.00146024
0.0217122
0.00411483
0.0227052
0.00634767
0.0241483
0.00815144
0.0259297
0.0094401
0.0280465
0.0107851
0.0303042
0.011263
0.013245
0.412588
-0.0398511
-0.428022
0.394887
-0.0460054
0.37517
-0.0518019
0.353882
-0.0567805
0.331463
-0.0608833
0.308323
-0.0640684
0.284862
-0.0662692
0.261468
-0.0674338
0.238501
-0.0675588
0.216278
-0.0666943
0.195058
-0.0649311
0.175045
-0.0623866
0.156385
-0.0591954
0.139174
-0.0555017
0.123459
-0.0514524
0.109247
-0.0471905
0.0965065
-0.0428496
0.0851784
-0.03855
0.0751789
-0.0343966
0.0664062
-0.0304783
0.058745
-0.0268655
0.0520718
-0.0236077
0.0462615
-0.0207266
0.0411949
-0.0182077
0.0367685
-0.0159938
0.0329042
-0.0139872
0.0295567
-0.012065
0.0267154
-0.0101055
0.0244002
-0.00801696
0.0226488
-0.00576531
0.0215033
-0.00338183
0.0209897
-0.000968221
0.0211083
0.00134155
0.0218224
0.00340077
0.0230612
0.00510883
0.0247447
0.00646798
0.0267559
0.00742887
0.0290901
0.00845091
0.0315678
0.00878534
0.0104653
0.410087
-0.0259921
-0.423946
0.394116
-0.0300346
0.376201
-0.0338872
0.356675
-0.0372543
0.33588
-0.0400883
0.314159
-0.0423476
0.291866
-0.043976
0.26936
-0.0449279
0.246991
-0.0451903
0.225083
-0.0447858
0.203917
-0.0437653
0.18373
-0.0421999
0.16471
-0.0401751
0.146994
-0.0377854
0.130671
-0.0351292
0.115785
-0.0323043
0.102338
-0.0294033
0.0902993
-0.0265109
0.0796047
-0.023702
0.070167
-0.0210405
0.0618796
-0.0185781
0.0546234
-0.0163514
0.0482741
-0.0143773
0.0427128
-0.0126464
0.0378379
-0.011119
0.0335771
-0.00972637
0.0298949
-0.00838275
0.0267935
-0.0070041
0.0243056
-0.00552911
0.0224783
-0.00393796
0.0213546
-0.00225817
0.020952
-0.000565567
0.0212516
0.00104189
0.0221909
0.00246153
0.0236741
0.00362563
0.0255994
0.00454265
0.0278466
0.00518169
0.0304117
0.00588578
0.0331292
0.00606781
0.00735683
0.41579
-0.0129832
-0.428799
0.40076
-0.0150045
0.38382
-0.016948
0.36523
-0.0186639
0.345269
-0.0201269
0.324233
-0.0213119
0.302444
-0.0221867
0.28024
-0.0227246
0.257966
-0.0229156
0.235948
-0.0227678
0.214486
-0.0223035
0.193842
-0.0215564
0.174235
-0.020568
0.155835
-0.0193851
0.138763
-0.0180577
0.123095
-0.0166357
0.108859
-0.015167
0.0960435
-0.0136959
0.0846034
-0.0122619
0.0744618
-0.010899
0.0655186
-0.00963489
0.0576567
-0.00848948
0.0507515
-0.00747214
0.0446834
-0.00657834
0.0393517
-0.00578728
0.0346885
-0.00506311
0.0306668
-0.00436103
0.0273002
-0.00363758
0.0246329
-0.00286175
0.0227196
-0.00202465
0.021604
-0.00114259
0.0212952
-0.000256787
0.021757
0.000580082
0.0229037
0.00131486
0.0246176
0.00191172
0.0267783
0.00238193
0.0292621
0.0026979
0.0320667
0.00308122
0.0350355
0.00309897
0.00389871
0.432675
-0.445658
0.41767
0.400722
0.382058
0.361931
0.34062
0.318433
0.295708
0.272793
0.250025
0.227721
0.206165
0.185597
0.166212
0.148154
0.131519
0.116352
0.102656
0.0903937
0.0794947
0.0698598
0.0613703
0.0538982
0.0473198
0.0415325
0.0364694
0.0321084
0.0284708
0.0256091
0.0235844
0.0224418
0.0221851
0.0227651
0.02408
0.0259917
0.0283736
0.0310715
0.0341528
0.0372517
0.450011
-0.000519883
-0.448989
0.45063
0.000802138
0.450834
0.00211096
0.450611
0.00340599
0.44995
0.00468632
0.44884
0.00594989
0.447268
0.00719431
0.445223
0.00841617
0.442692
0.00961322
0.439663
0.0107793
0.43612
0.0119145
0.43205
0.013002
0.427429
0.0140584
0.422242
0.0150209
0.416433
0.0159984
0.409982
0.0167094
0.402637
0.0177752
0.394429
0.0177022
0.384047
0.0198095
0.0146862
0.455561
-0.00131171
-0.454769
0.456045
0.00031854
0.456209
0.00194663
0.456044
0.00357136
0.455538
0.00519171
0.454682
0.00680577
0.453465
0.00841142
0.451876
0.0100057
0.449902
0.0115868
0.447532
0.0131498
0.44475
0.0146959
0.44154
0.0162119
0.437881
0.0177175
0.43374
0.0191619
0.429086
0.0206525
0.423854
0.0219413
0.418088
0.0235414
0.411669
0.0241208
0.405212
0.0262664
0.0236292
0.460709
-0.00185257
-0.460169
0.461033
-4.7075e-06
0.461132
0.00184751
0.461
0.00370281
0.460632
0.00555989
0.460021
0.00741696
0.45916
0.0092722
0.458043
0.0111232
0.456661
0.0129687
0.455005
0.0148051
0.453068
0.0166336
0.450835
0.0184449
0.4483
0.0202523
0.445446
0.0220163
0.44229
0.0238084
0.43879
0.0254409
0.435034
0.0272978
0.430722
0.0284323
0.426146
0.0308432
0.0297411
0.465702
-0.00218131
-0.465373
0.465893
-0.000195598
0.465943
0.00179729
0.465849
0.00379616
0.46561
0.00579976
0.46522
0.00780664
0.464677
0.00981535
0.463976
0.0118242
0.463112
0.0138322
0.462081
0.0158367
0.460876
0.017838
0.459491
0.0198299
0.457923
0.0218201
0.456155
0.0237852
0.454188
0.0257748
0.451953
0.0276757
0.449499
0.029752
0.446596
0.0313352
0.443616
0.0338239
0.0335757
0.470197
-0.00235357
-0.470025
0.4703
-0.000298743
0.470333
0.00176389
0.470296
0.00383335
0.470187
0.00590858
0.470006
0.00798846
0.469749
0.0100719
0.469416
0.0121577
0.469003
0.014245
0.468507
0.0163324
0.467925
0.0184199
0.46725
0.0205048
0.466479
0.0225919
0.465595
0.0246692
0.464605
0.0267646
0.463474
0.0288064
0.462273
0.0309536
0.460849
0.0327587
0.459465
0.0352082
0.0356527
0.473981
-0.00240858
-0.473926
0.474027
-0.000345299
0.474066
0.0017252
0.474097
0.00380211
0.474121
0.00588453
0.474138
0.00797156
0.474148
0.0100623
0.474149
0.012156
0.474142
0.0142519
0.474125
0.0163493
0.474097
0.0184479
0.474056
0.0205462
0.474002
0.022646
0.47393
0.0247407
0.473851
0.0268442
0.47374
0.0289175
0.473635
0.0310579
0.473409
0.0329853
0.473253
0.0353636
0.0362566
0.476919
-0.00236702
-0.476961
0.476923
-0.000348837
0.476973
0.0016753
0.47707
0.0037046
0.477216
0.00573831
0.477412
0.00777564
0.477659
0.00981581
0.477957
0.0118581
0.478307
0.013902
0.478709
0.0159469
0.479164
0.0179923
0.479673
0.0200377
0.480235
0.0220837
0.480848
0.0241278
0.481515
0.0261775
0.482219
0.0282132
0.482989
0.030288
0.483742
0.0322322
0.484634
0.0344721
0.0356299
0.478637
-0.00224478
-0.478759
0.478606
-0.00031855
0.47867
0.00161207
0.478828
0.00354632
0.479083
0.00548345
0.479436
0.00742271
0.479888
0.00936338
0.480441
0.0113048
0.481097
0.0132465
0.481856
0.015188
0.482719
0.0171289
0.483688
0.0190689
0.484764
0.0210082
0.485945
0.0229459
0.487238
0.0248849
0.488635
0.0268161
0.490157
0.028766
0.491748
0.030641
0.493519
0.0327017
0.0339945
0.478411
-0.00206457
-0.478591
0.478363
-0.000270422
0.478448
0.00152662
0.478669
0.00332576
0.479026
0.00512618
0.479522
0.00692711
0.480157
0.0087278
0.480934
0.0105276
0.481855
0.0123259
0.482921
0.0141222
0.484134
0.0159161
0.485495
0.0177073
0.487008
0.0194956
0.488673
0.0212807
0.490494
0.0230638
0.492469
0.0248412
0.49461
0.0266251
0.496882
0.0283684
0.499366
0.0302178
0.0315349
0.475407
-0.00185594
-0.475616
0.475363
-0.000226226
0.475485
0.0014051
0.475773
0.00303713
0.476231
0.00466895
0.476858
0.00629969
0.477657
0.0079285
0.47863
0.00955461
0.479779
0.0111773
0.481105
0.012796
0.482611
0.0144103
0.484299
0.0160195
0.486171
0.0176236
0.488229
0.0192222
0.490477
0.0208157
0.492916
0.0224027
0.495553
0.0239878
0.498371
0.0255504
0.501425
0.0271643
0.0284222
0.469075
-0.00164718
-0.469284
0.469054
-0.000204764
0.469221
0.00123823
0.469577
0.00268074
0.470124
0.00412168
0.470864
0.00556004
0.471798
0.00699482
0.472927
0.00842512
0.474254
0.00985008
0.475782
0.0112689
0.477511
0.0126811
0.479444
0.0140858
0.481585
0.0154828
0.483936
0.0168716
0.4865
0.0182521
0.489279
0.0196238
0.492278
0.0209878
0.495492
0.022337
0.498954
0.0237024
0.0248399
0.459457
-0.00145822
-0.459646
0.459467
-0.000214918
0.459678
0.00102809
0.460089
0.00226955
0.460702
0.00350824
0.461519
0.00474295
0.462542
0.00597252
0.463771
0.00719588
0.465209
0.00841199
0.466858
0.00961994
0.46872
0.0108189
0.470798
0.012008
0.473094
0.0131868
0.475611
0.0143546
0.478352
0.015511
0.48132
0.0166557
0.484519
0.0177886
0.487948
0.0189077
0.491628
0.0200227
0.0209991
0.447311
-0.00129632
-0.447473
0.447349
-0.000252853
0.447588
0.00078958
0.448028
0.00182956
0.44867
0.00286568
0.449517
0.00389657
0.450568
0.00492094
0.451827
0.00593752
0.453294
0.00694515
0.454971
0.00794272
0.45686
0.00892924
0.458965
0.00990379
0.461286
0.0108656
0.463827
0.0118139
0.46659
0.0127481
0.469578
0.0136677
0.472794
0.0145723
0.47624
0.0154613
0.479927
0.016336
0.0171315
0.434021
-0.00115568
-0.434162
0.434072
-0.000303317
0.434314
0.000547381
0.434748
0.00139486
0.435377
0.0022376
0.436199
0.00307414
0.437217
0.00390303
0.438431
0.00472293
0.439844
0.00553254
0.441456
0.00633065
0.443269
0.00711614
0.445285
0.00788798
0.447505
0.00864525
0.449932
0.00938711
0.452567
0.0101128
0.455413
0.0108218
0.458472
0.0115134
0.461746
0.0121873
0.465239
0.0128432
0.0134568
0.421338
-0.00102147
-0.421473
0.42138
-0.000345181
0.421599
0.000328942
0.421994
0.000999315
0.422567
0.00166439
0.423319
0.00232265
0.424249
0.00297262
0.425359
0.0036129
0.42665
0.00424217
0.428121
0.00485916
0.429775
0.00546271
0.431611
0.00605174
0.433631
0.00662527
0.435836
0.00718241
0.438226
0.00772238
0.440803
0.00824448
0.443569
0.00874812
0.446523
0.00923292
0.449667
0.00969935
0.0101449
0.411104
-0.000876324
-0.411249
0.411118
-0.000358525
0.41129
0.000156841
0.411621
0.000668252
0.412111
0.00117421
0.41276
0.00167326
0.413569
0.00216399
0.414537
0.00264505
0.415664
0.00311514
0.41695
0.00357307
0.418395
0.00401768
0.419999
0.00444794
0.421761
0.00486289
0.423682
0.00526165
0.425761
0.00564345
0.427998
0.00600762
0.430392
0.00635357
0.432944
0.00668113
0.435652
0.00699152
0.00729265
0.405089
-0.000706017
-0.40526
0.405061
-0.000330014
0.405174
4.35776e-05
0.405429
0.000413413
0.405825
0.000778158
0.406362
0.00113653
0.407038
0.00148727
0.407854
0.00182919
0.408808
0.00216112
0.409899
0.002482
0.411126
0.00279082
0.412488
0.00308662
0.413982
0.00336856
0.415608
0.00363585
0.417363
0.00388781
0.419247
0.00412382
0.421257
0.00434342
0.423392
0.00454654
0.425649
0.0047347
0.00491909
0.40503
-0.000502511
-0.405233
0.404955
-0.000255431
0.405009
-1.03813e-05
0.405191
0.000231582
0.4055
0.000469434
0.405934
0.000702164
0.406493
0.00092879
0.407173
0.00114838
0.407974
0.00136004
0.408894
0.00156291
0.409928
0.00175621
0.411076
0.00193919
0.412333
0.00211117
0.413697
0.00227154
0.415165
0.00241975
0.416734
0.00255531
0.418399
0.00267788
0.420158
0.00278746
0.422008
0.00288528
0.0029813
0.41284
-0.000264705
-0.413077
0.412724
-0.000139847
0.41273
-1.62615e-05
0.412856
0.000105431
0.413101
0.000224622
0.413462
0.00034072
0.413938
0.000453149
0.414525
0.000561359
0.41522
0.000664824
0.41602
0.000763045
0.416921
0.000855558
0.417918
0.00094193
0.419007
0.00102177
0.420184
0.00109472
0.421443
0.00116047
0.42278
0.00121875
0.424189
0.00126937
0.425664
0.00131235
0.427201
0.00134836
0.00138324
0.431094
-0.431359
0.430954
0.430938
0.431044
0.431268
0.431609
0.432062
0.432623
0.433288
0.434051
0.434907
0.435849
0.436871
0.437965
0.439126
0.440345
0.441614
0.442926
0.444275
0.368838
-0.0137139
-0.377991
0.377395
-0.0299029
0.383821
-0.0260926
0.388711
-0.0228664
0.393946
-0.0217924
0.399411
-0.0207197
0.404711
-0.019321
0.4098
-0.017947
0.414697
-0.0166452
0.419366
-0.0153407
0.423768
-0.0140157
0.427879
-0.0126811
0.431687
-0.0113413
0.435181
-0.00999606
0.438348
-0.00864647
0.441181
-0.00729492
0.443671
-0.00594366
0.445808
-0.00459463
0.447585
-0.00324962
-0.00191048
0.389922
-0.016666
-0.38697
0.395614
-0.0355948
0.401607
-0.0320859
0.406224
-0.0274836
0.410561
-0.0261289
0.415176
-0.0253347
0.419717
-0.0238626
0.423957
-0.0221865
0.427929
-0.020617
0.43167
-0.019082
0.435166
-0.0175117
0.438401
-0.0159167
0.441376
-0.0143156
0.444091
-0.0127109
0.446545
-0.011101
0.448736
-0.00948624
0.450661
-0.00786778
0.452312
-0.00624633
0.453685
-0.004622
-0.00299502
0.411372
-0.0207211
-0.407317
0.415922
-0.0401447
0.420705
-0.0368683
0.424792
-0.0315706
0.428243
-0.0295805
0.431663
-0.0287541
0.435072
-0.0272725
0.438242
-0.0253564
0.441134
-0.0235087
0.443816
-0.0217637
0.446316
-0.0200115
0.448626
-0.0182273
0.450743
-0.0164326
0.45267
-0.0146373
0.454407
-0.0128387
0.455955
-0.0110338
0.457309
-0.00922186
0.458466
-0.007403
0.459421
-0.00557682
-0.00374307
0.433422
-0.0241949
-0.429948
0.436318
-0.0430406
0.439455
-0.0400061
0.442437
-0.0345518
0.444864
-0.0320074
0.44706
-0.0309502
0.449251
-0.0294638
0.451339
-0.0274446
0.453233
-0.0254024
0.45496
-0.023491
0.456564
-0.0216155
0.458051
-0.0197142
0.459413
-0.0177946
0.460648
-0.015872
0.461756
-0.0139475
0.462739
-0.0120165
0.463594
-0.010077
0.46432
-0.0081283
0.464913
-0.00617037
-0.00420298
0.454142
-0.0272995
-0.451037
0.455145
-0.044044
0.456499
-0.0413605
0.458161
-0.0362132
0.459519
-0.0333655
0.460603
-0.0320346
0.461665
-0.0305254
0.462736
-0.0285151
0.463731
-0.0263983
0.464629
-0.0243891
0.465456
-0.0224421
0.466226
-0.0204845
0.466936
-0.0185047
0.46758
-0.016516
0.468157
-0.0145239
0.468666
-0.0125259
0.469108
-0.010519
0.469482
-0.00850234
0.469788
-0.00647595
-0.00443985
0.471905
-0.0299994
-0.469205
0.471403
-0.0435421
0.471214
-0.0411722
0.471618
-0.0366172
0.471997
-0.0337438
0.472155
-0.0321932
0.472271
-0.0306406
0.472448
-0.0286923
0.472648
-0.0265988
0.472826
-0.0245667
0.472981
-0.0225973
0.473128
-0.020631
0.473268
-0.0186452
0.473399
-0.0166463
0.473516
-0.0146414
0.473621
-0.0126306
0.473714
-0.0106118
0.473795
-0.00858369
0.473865
-0.0065464
-0.0045001
0.486618
-0.031923
-0.484694
0.485049
-0.0419731
0.483695
-0.0398187
0.483011
-0.0359324
0.482501
-0.0332346
0.481873
-0.0315652
0.481204
-0.029971
0.480611
-0.0280997
0.480102
-0.0260894
0.479636
-0.024101
0.479198
-0.0221592
0.478794
-0.0202266
0.478429
-0.0182804
0.478103
-0.0163209
0.477816
-0.0143536
0.477565
-0.0123802
0.477353
-0.0103998
0.477181
-0.00841148
0.47705
-0.00641511
-0.00441104
0.498533
-0.0326767
-0.49778
0.496129
-0.039569
0.493892
-0.0375815
0.492286
-0.0343265
0.490953
-0.0319016
0.489604
-0.0302159
0.488247
-0.0286144
0.486979
-0.0268318
0.48583
-0.0249403
0.484778
-0.0230488
0.483804
-0.021185
0.482907
-0.0193295
0.482092
-0.0174654
0.481361
-0.0155901
0.480714
-0.0137067
0.480151
-0.0118172
0.479673
-0.00992143
0.47928
-0.00801904
0.478975
-0.00611002
-0.00419475
0.507128
-0.0320699
-0.507735
0.503991
-0.0364317
0.501033
-0.0346242
0.498644
-0.0319374
0.496559
-0.0298167
0.494541
-0.0281974
0.49257
-0.0266439
0.490714
-0.0249759
0.489006
-0.0232319
0.487437
-0.0214799
0.485993
-0.019741
0.48467
-0.0180061
0.483469
-0.0162649
0.482394
-0.0145146
0.481444
-0.0127567
0.480619
-0.0109927
0.479921
-0.0092229
0.479349
-0.00744737
0.478906
-0.00566636
-0.00388034
0.511198
-0.0301626
-0.513105
0.50744
-0.0326746
0.503901
-0.0310846
0.500872
-0.0289081
0.498152
-0.0270975
0.495563
-0.0256077
0.49308
-0.024161
0.490747
-0.0226432
0.48859
-0.0210752
0.486607
-0.019497
0.484788
-0.0179221
0.483129
-0.0163464
0.481628
-0.0147643
0.480288
-0.0131741
0.479107
-0.0115766
0.478088
-0.00997282
0.477228
-0.00836328
0.476529
-0.00674842
0.475991
-0.00512878
-0.00350499
0.509624
-0.0272162
-0.51257
0.505439
-0.0284895
0.501501
-0.0271465
0.498017
-0.025425
0.494841
-0.0239213
0.491841
-0.0226076
0.488997
-0.0213174
0.486337
-0.0199826
0.483876
-0.0186142
0.481613
-0.0172347
0.479543
-0.0158517
0.47766
-0.0144637
0.475964
-0.0130679
0.474454
-0.0116639
0.473129
-0.0102522
0.47199
-0.0088336
0.471036
-0.00740901
0.470267
-0.00597908
0.469682
-0.00454463
-0.00310654
0.502073
-0.0236127
-0.505677
0.497719
-0.0241349
0.493619
-0.0230468
0.489916
-0.0217214
0.486506
-0.0205115
0.483301
-0.0194023
0.480284
-0.0183007
0.477471
-0.0171693
0.47487
-0.0160135
0.47248
-0.0148451
0.470297
-0.0136684
0.468316
-0.0124831
0.466537
-0.0112884
0.464957
-0.0100844
0.463577
-0.00887186
0.462395
-0.00765179
0.461411
-0.00642513
0.460625
-0.0051929
0.460037
-0.00395616
-0.00271604
0.489413
-0.0197576
-0.493268
0.485155
-0.0198765
0.481139
-0.0190308
0.477456
-0.0180385
0.474042
-0.0170972
0.470839
-0.0162001
0.467838
-0.015299
0.465043
-0.0143749
0.462461
-0.0134307
0.460088
-0.0124723
0.457922
-0.0115022
0.455959
-0.0105208
0.454199
-0.00952827
0.45264
-0.00852536
0.451281
-0.00751306
0.450122
-0.00649249
0.449162
-0.00546484
0.4484
-0.00443135
0.447837
-0.0033933
-0.00235206
0.473653
-0.0159871
-0.477423
0.4697
-0.0159242
0.465963
-0.0152936
0.462497
-0.0145721
0.459264
-0.0138646
0.456233
-0.0131688
0.453395
-0.0124615
0.450754
-0.0117339
0.448311
-0.0109878
0.446065
-0.0102262
0.444014
-0.00945096
0.442156
-0.00866269
0.44049
-0.00786222
0.439015
-0.00705057
0.437731
-0.00622895
0.436637
-0.00539863
0.435733
-0.00456098
0.435019
-0.00371739
0.434496
-0.00286932
-0.00201829
0.45745
-0.0125155
-0.460922
0.453922
-0.0123963
0.450575
-0.0119464
0.447442
-0.0114387
0.444503
-0.0109261
0.441743
-0.0104083
0.439157
-0.00987517
0.436746
-0.00932313
0.434511
-0.00875342
0.432453
-0.00816789
0.43057
-0.00756785
0.428862
-0.00695427
0.427328
-0.00632819
0.425968
-0.00569082
0.424782
-0.00504342
0.423771
-0.00438739
0.422934
-0.00372414
0.422272
-0.00305518
0.421785
-0.00238201
-0.00170621
0.443536
-0.00943153
-0.44662
0.440458
-0.00931839
0.437525
-0.00901357
0.434757
-0.00867073
0.432146
-0.00831494
0.429685
-0.00794684
0.427372
-0.00756244
0.42521
-0.00716066
0.423199
-0.00674247
0.42134
-0.00630916
0.419634
-0.00586183
0.418081
-0.00540152
0.416682
-0.00492934
0.415438
-0.00444648
0.414349
-0.00395423
0.413415
-0.00345393
0.412638
-0.00294699
0.412018
-0.00243485
0.411555
-0.00191901
-0.00140097
0.434357
-0.00672494
-0.437064
0.431682
-0.00664295
0.429119
-0.00645078
0.426681
-0.00623303
0.424367
-0.00600068
0.422175
-0.00575457
0.420106
-0.0054935
0.418163
-0.00521742
0.416347
-0.0049271
0.414662
-0.00462352
0.413107
-0.00430761
0.411686
-0.00398031
0.410399
-0.00364265
0.409249
-0.00329571
0.408235
-0.00294066
0.40736
-0.00257869
0.406624
-0.00221107
0.406028
-0.00183908
0.405573
-0.00146405
-0.00108733
0.432068
-0.00432404
-0.434469
0.429703
-0.00427808
0.427424
-0.00417115
0.425238
-0.00404754
0.423149
-0.00391152
0.421158
-0.00376382
0.419269
-0.00360432
0.417485
-0.0034333
0.415809
-0.00325134
0.414245
-0.00305912
0.412795
-0.00285737
0.411461
-0.00264684
0.410247
-0.00242835
0.409154
-0.00220276
0.408184
-0.00197097
0.40734
-0.00173392
0.406621
-0.00149261
0.40603
-0.00124805
0.405567
-0.00100127
-0.000753322
0.438832
-0.00212219
-0.441034
0.436661
-0.0021068
0.434553
-0.00206294
0.432516
-0.00201027
0.430554
-0.00195012
0.428673
-0.0018829
0.426878
-0.00180874
0.425172
-0.00172787
0.423562
-0.00164061
0.42205
-0.00154736
0.420641
-0.00144853
0.419339
-0.00134457
0.418146
-0.00123596
0.417067
-0.00112322
0.416103
-0.00100688
0.415256
-0.000887509
0.414529
-0.000765687
0.413923
-0.000642014
0.413439
-0.000517106
-0.000391585
0.45746
-0.459582
0.455353
0.45329
0.45128
0.44933
0.447447
0.445638
0.44391
0.442269
0.440722
0.439274
0.437929
0.436693
0.43557
0.434563
0.433675
0.43291
0.432268
0.431751
0.0644542
0.0120557
-0.0124217
0.0655924
0.0364094
-0.0375475
0.0675217
0.0612274
-0.0631568
0.070307
0.0868827
-0.0896681
0.0740305
0.11373
-0.117454
0.07878
0.142091
-0.146841
0.0846257
0.172214
-0.17806
0.0915978
0.204192
-0.211164
0.0996808
0.237902
-0.245985
0.108833
0.27299
-0.282142
0.119023
0.308956
-0.319146
0.130295
0.345227
-0.356499
0.142825
0.381408
-0.393938
0.157115
0.417203
-0.431493
0.174049
0.453399
-0.470333
0.195219
0.490162
-0.511332
0.222818
0.530019
-0.557618
0.257618
0.570537
-0.605336
0.312586
0.60427
-0.659238
0.643649
-0.709055
0.0693734
0.011636
0.070647
0.0351357
0.072786
0.0590885
0.0758519
0.0838168
0.0799356
0.109646
0.0851443
0.136883
0.0915791
0.165779
0.0993072
0.196464
0.108347
0.228862
0.118679
0.262658
0.130279
0.297356
0.143185
0.332322
0.15755
0.367043
0.173809
0.400944
0.192852
0.434356
0.215819
0.467195
0.246323
0.499515
0.280856
0.536004
0.340524
0.544602
0.597203
0.0746406
0.0111716
0.076044
0.0337324
0.0783975
0.056735
0.0817593
0.0804551
0.0862234
0.105182
0.0919116
0.131194
0.098954
0.158737
0.107459
0.187959
0.117488
0.218833
0.129054
0.251092
0.142149
0.284261
0.156802
0.317668
0.173158
0.350687
0.191515
0.382587
0.212924
0.412947
0.237487
0.442632
0.271072
0.46593
0.30482
0.502256
0.361858
0.487564
0.551744
0.0802955
0.010667
0.081821
0.0322069
0.0843855
0.0541704
0.0880463
0.0767943
0.0928981
0.10033
0.099071
0.125021
0.106718
0.15109
0.115986
0.17869
0.126987
0.207832
0.139775
0.238305
0.154371
0.269664
0.170786
0.301254
0.189189
0.332284
0.2096
0.362176
0.233485
0.389061
0.259217
0.4169
0.295219
0.429927
0.328248
0.469228
0.380394
0.435418
0.50219
0.086373
0.0101244
0.0880149
0.030565
0.0907836
0.0514018
0.0947391
0.0728388
0.0999775
0.095092
0.106632
0.118366
0.114871
0.142851
0.124872
0.168689
0.136795
0.19591
0.150741
0.224358
0.166782
0.253623
0.184888
0.283149
0.205327
0.311844
0.227645
0.339858
0.254035
0.362672
0.28066
0.390275
0.318098
0.39249
0.351858
0.435467
0.397716
0.38956
0.448869
0.0929048
0.00954562
0.0946568
0.028813
0.0976183
0.0484403
0.101855
0.068602
0.107467
0.0894805
0.114588
0.111245
0.123392
0.134047
0.134079
0.158003
0.146848
0.18314
0.161844
0.209362
0.179213
0.236255
0.198853
0.263508
0.221236
0.289461
0.245247
0.315847
0.274041
0.333878
0.301683
0.362634
0.339385
0.354787
0.375519
0.399334
0.415349
0.349729
0.395013
0.0999244
0.00893342
0.101778
0.0269593
0.104916
0.0453024
0.10941
0.0641078
0.115365
0.0835262
0.122916
0.103694
0.132239
0.124723
0.14354
0.146702
0.157049
0.169632
0.172937
0.193474
0.191442
0.21775
0.212369
0.242582
0.236484
0.265346
0.261921
0.290409
0.292756
0.303043
0.322001
0.333388
0.358649
0.31814
0.397864
0.360119
0.43369
0.313902
0.34401
0.107468
0.00829111
0.109413
0.0250146
0.112706
0.0420089
0.117425
0.0593892
0.123676
0.0772747
0.131599
0.0957713
0.141366
0.114957
0.153179
0.134889
0.167284
0.155527
0.183859
0.176899
0.203235
0.198374
0.225104
0.220713
0.250572
0.239877
0.277177
0.263804
0.30919
0.271031
0.340823
0.301755
0.375501
0.283462
0.416989
0.318632
0.451311
0.279581
0.297541
0.115575
0.00762288
0.117597
0.0229921
0.121021
0.038585
0.125924
0.0544865
0.132414
0.0707848
0.140628
0.0875567
0.150736
0.104849
0.162931
0.122694
0.177453
0.141004
0.194471
0.159881
0.214387
0.178458
0.236796
0.198304
0.263007
0.213666
0.290615
0.236196
0.322505
0.239141
0.35671
0.26755
0.389547
0.250625
0.431457
0.276721
0.465657
0.24538
0.255463
0.124286
0.00693386
0.12637
0.0209078
0.129895
0.0350598
0.134936
0.0494456
0.141597
0.0641237
0.150011
0.0791433
0.160336
0.0945229
0.172753
0.110277
0.187488
0.126269
0.204681
0.142688
0.224757
0.158383
0.247324
0.175737
0.273443
0.187547
0.301853
0.207785
0.33248
0.208515
0.368191
0.231839
0.399989
0.218827
0.44055
0.236161
0.474506
0.211424
0.216864
0.133647
0.00623001
0.135775
0.01878
0.139369
0.0314659
0.144498
0.0443167
0.151257
0.0573642
0.159769
0.0706319
0.170177
0.0841141
0.182642
0.0978124
0.197366
0.111545
0.214466
0.125589
0.234287
0.138561
0.256677
0.153347
0.281883
0.162341
0.310511
0.179157
0.339423
0.179602
0.374734
0.196528
0.405886
0.187675
0.443985
0.198062
0.47682
0.178588
0.181114
0.143707
0.00551786
0.145858
0.0166287
0.149486
0.0278381
0.154651
0.0391522
0.161435
0.0505801
0.169943
0.0621235
0.180301
0.0737566
0.192641
0.0854716
0.207129
0.0970574
0.223883
0.108835
0.243058
0.119386
0.264908
0.131497
0.28869
0.138558
0.316529
0.151319
0.343756
0.152375
0.376933
0.163351
0.406989
0.157618
0.441989
0.163063
0.472775
0.147802
0.148212
0.154519
0.00480403
0.156674
0.014474
0.160301
0.0242112
0.16545
0.0340034
0.172188
0.0438419
0.180599
0.0537121
0.190783
0.0635731
0.202845
0.0734091
0.216897
0.0830063
0.233077
0.0926549
0.251318
0.101146
0.272199
0.110615
0.294398
0.11636
0.320437
0.125279
0.34596
0.126853
0.376018
0.133293
0.404139
0.129498
0.435588
0.131614
0.463609
0.119781
0.118553
0.166142
0.00409469
0.168282
0.0123344
0.171876
0.0206168
0.176964
0.0289159
0.183595
0.0372109
0.19183
0.0454764
0.20174
0.0536634
0.213402
0.061747
0.226868
0.0695406
0.242284
0.0772389
0.25944
0.0839897
0.27897
0.0910852
0.29957
0.0957601
0.323213
0.101635
0.346805
0.103261
0.373431
0.106667
0.39895
0.103979
0.426573
0.10399
0.451417
0.0949364
0.092547
0.178639
0.0033948
0.180749
0.0102249
0.184286
0.0170795
0.189277
0.0239245
0.195756
0.0307324
0.20376
0.0374721
0.21333
0.0440938
0.224513
0.050564
0.237314
0.05674
0.251844
0.062708
0.267872
0.0679621
0.285851
0.0731062
0.304843
0.0767681
0.325974
0.0805049
0.347406
0.081829
0.370689
0.0833838
0.393331
0.0813367
0.417137
0.0801852
0.438722
0.073351
0.070347
0.192079
0.0027072
0.19415
0.00815365
0.197617
0.0136126
0.202495
0.019047
0.2088
0.0244277
0.216549
0.0297229
0.225755
0.0348874
0.236436
0.0398834
0.248564
0.0446119
0.26219
0.0490817
0.277124
0.0530283
0.293577
0.0566534
0.310987
0.0593583
0.32981
0.0616817
0.349052
0.0625863
0.369328
0.063108
0.389178
0.0614869
0.409484
0.059879
0.428019
0.0548159
0.0517463
0.206538
0.00203165
0.208572
0.00611949
0.211972
0.010213
0.216742
0.0142772
0.222884
0.0182857
0.230396
0.0222102
0.239269
0.0260142
0.249491
0.0296616
0.261015
0.033088
0.273829
0.0362674
0.287788
0.0390695
0.302919
0.041523
0.318894
0.0433828
0.335791
0.0447846
0.353062
0.0453153
0.370835
0.0453353
0.388246
0.0440753
0.40562
0.0425058
0.421538
0.0388979
0.0362202
0.222098
0.00136354
0.224109
0.00410798
0.227467
0.00685509
0.232168
0.00957656
0.238201
0.0122526
0.245549
0.014862
0.254185
0.0173788
0.264071
0.0197755
0.275146
0.0220126
0.287353
0.0240606
0.300567
0.0258556
0.314712
0.0273783
0.329566
0.0285281
0.345034
0.0293166
0.360768
0.0295817
0.376672
0.0294314
0.392201
0.0285464
0.407372
0.0273346
0.421279
0.024991
0.0230297
0.238849
0.000692349
0.240871
0.00208684
0.244243
0.00348308
0.248955
0.00486386
0.254989
0.00621876
0.262315
0.00753643
0.27089
0.0088033
0.280661
0.0100043
0.291554
0.0111203
0.303481
0.0121335
0.31632
0.0130166
0.329946
0.0137521
0.344172
0.0143021
0.358832
0.014657
0.373654
0.0147593
0.388451
0.0146347
0.402829
0.0141683
0.416657
0.0135067
0.429311
0.0123366
0.0113065
0.256891
0.258978
0.262461
0.267325
0.273544
0.28108
0.289884
0.299888
0.311008
0.323142
0.336158
0.349911
0.364213
0.37887
0.393629
0.408264
0.422432
0.435939
0.448275
0.0356575
0.0125075
-0.0127888
0.0361041
0.0379555
-0.0384021
0.0367052
0.0638477
-0.0644488
0.0374403
0.0903878
-0.091123
0.0382756
0.117749
-0.118584
0.039162
0.146005
-0.146892
0.0400387
0.175127
-0.176004
0.0408373
0.205001
-0.205799
0.0414874
0.235455
-0.236105
0.0419202
0.266316
-0.266749
0.0420741
0.297456
-0.297609
0.0419
0.328914
-0.32874
0.0413827
0.36105
-0.360533
0.0405604
0.395034
-0.394212
0.0395391
0.433005
-0.431984
0.0384266
0.478245
-0.477132
0.0371572
0.533343
-0.532074
0.0356152
0.600113
-0.598571
0.033318
0.684249
-0.681952
0.779437
-0.775492
0.0356435
0.0122372
0.0360626
0.0375364
0.0366213
0.063289
0.0373009
0.0897082
0.0380696
0.116981
0.0388806
0.145194
0.0396748
0.174333
0.0403853
0.20429
0.0409435
0.234897
0.0412833
0.265976
0.0413462
0.297393
0.0410868
0.329173
0.0404916
0.361645
0.039599
0.395927
0.0385136
0.434091
0.0373574
0.479401
0.0360958
0.534605
0.0346535
0.601555
0.0326393
0.686263
0.782763
0.0356266
0.0119807
0.0360154
0.0371476
0.036529
0.0627754
0.0371499
0.0890873
0.0378485
0.116282
0.0385803
0.144462
0.0392876
0.173626
0.0399052
0.203673
0.0403661
0.234436
0.0406067
0.265735
0.040572
0.297427
0.0402201
0.329525
0.0395402
0.362325
0.0385716
0.396895
0.0374181
0.435244
0.0362152
0.480604
0.0349589
0.535861
0.0336185
0.602896
0.0318896
0.687992
0.785441
0.035607
0.011741
0.0359627
0.0367919
0.0364283
0.0623098
0.0369878
0.0885278
0.0376132
0.115657
0.0382619
0.143813
0.0388783
0.173009
0.0393982
0.203153
0.0397565
0.234078
0.039892
0.2656
0.0397528
0.297567
0.0393014
0.329977
0.0385296
0.363097
0.0374791
0.397946
0.0362531
0.43647
0.0350003
0.481857
0.0337469
0.537115
0.0325111
0.604131
0.0310707
0.689432
0.787442
0.0355848
0.0115211
0.0359047
0.036472
0.0363198
0.0618948
0.036815
0.0880325
0.0373642
0.115107
0.0379265
0.143251
0.0384478
0.172488
0.0388657
0.202735
0.0391162
0.233827
0.0391405
0.265576
0.0388903
0.297817
0.0383322
0.330535
0.0374613
0.363968
0.0363225
0.399084
0.0350194
0.437773
0.0337134
0.483163
0.0324601
0.538368
0.0313323
0.605259
0.0301834
0.690581
0.78874
0.03556
0.0113237
0.0358415
0.0361905
0.0362035
0.0615327
0.0366321
0.087604
0.0371022
0.114637
0.0375749
0.142778
0.0379975
0.172065
0.0383089
0.202424
0.0384466
0.23369
0.038354
0.265668
0.0379861
0.298185
0.037314
0.331207
0.0363367
0.364945
0.0351031
0.400318
0.0337179
0.439159
0.0323555
0.484525
0.0310996
0.539624
0.0300836
0.606275
0.0292296
0.691435
0.789303
0.0355328
0.0111517
0.0357734
0.03595
0.03608
0.0612261
0.0364394
0.0872446
0.036828
0.114249
0.0372081
0.142398
0.0375285
0.171745
0.0377292
0.202223
0.0377492
0.23367
0.037534
0.265883
0.0370418
0.298677
0.0362487
0.332
0.0351576
0.366036
0.0338224
0.401653
0.0323496
0.440632
0.0309277
0.485947
0.0296663
0.540885
0.0287671
0.607174
0.0282117
0.69199
0.789099
0.0355033
0.011008
0.0357003
0.0357529
0.0359493
0.0609772
0.0362375
0.0869564
0.0365422
0.113944
0.0368269
0.142114
0.0370418
0.17153
0.0371279
0.202137
0.0370255
0.233772
0.0366822
0.266226
0.0360593
0.2993
0.0351379
0.332921
0.0339255
0.367249
0.0324819
0.403097
0.0309158
0.442198
0.0294312
0.487432
0.0281614
0.542155
0.0273852
0.607951
0.027133
0.692243
0.788096
0.0354714
0.0108951
0.0356226
0.0356017
0.0358118
0.0607881
0.0360267
0.0867414
0.0362454
0.113725
0.0364324
0.141927
0.0365387
0.171424
0.0365065
0.202169
0.0362772
0.234001
0.0358003
0.266703
0.0350403
0.30006
0.0339835
0.333978
0.0326423
0.36859
0.0310832
0.404656
0.0294179
0.443863
0.0278675
0.488982
0.0265863
0.543436
0.0259407
0.608596
0.0259972
0.692186
0.78626
0.0354373
0.010816
0.0355404
0.0354986
0.0356677
0.0606608
0.0358075
0.0866016
0.0359383
0.113594
0.0360253
0.14184
0.0360203
0.171429
0.0358662
0.202323
0.0355056
0.234362
0.0348899
0.267319
0.0339866
0.300963
0.0327872
0.335178
0.0313097
0.370068
0.029628
0.406338
0.0278574
0.445633
0.0262383
0.490601
0.0249426
0.544732
0.0244366
0.609102
0.0248094
0.691813
0.783557
0.0354011
0.0107732
0.0354538
0.0354459
0.0355174
0.0605972
0.0355804
0.0865386
0.0356216
0.113553
0.0356065
0.141855
0.0354876
0.171548
0.0352085
0.202602
0.0347124
0.234858
0.0339527
0.268079
0.0328998
0.302016
0.031551
0.336526
0.0299295
0.371689
0.028118
0.408149
0.0262358
0.447516
0.0245452
0.492292
0.0232322
0.546045
0.0228754
0.609459
0.0235747
0.691114
0.779953
0.0353628
0.0107693
0.0353629
0.0354457
0.0353611
0.0605991
0.0353458
0.0865539
0.0352958
0.113603
0.035177
0.141974
0.0349419
0.171783
0.0345346
0.203009
0.0338991
0.235494
0.0329903
0.268988
0.031782
0.303224
0.0302766
0.338032
0.0285037
0.373462
0.0265551
0.410098
0.0245549
0.449516
0.0227897
0.494057
0.0214575
0.547377
0.0212607
0.609656
0.0223033
0.690071
0.775414
0.0353224
0.0108071
0.035268
0.0355002
0.035199
0.060668
0.0351041
0.0866488
0.0349617
0.113746
0.0347375
0.142198
0.0343842
0.172136
0.0338459
0.203548
0.0330672
0.236272
0.0320045
0.27005
0.0306346
0.304594
0.0289658
0.339701
0.027034
0.375394
0.0249408
0.412191
0.0228165
0.45164
0.0209735
0.4959
0.0196213
0.548729
0.0195924
0.609685
0.0209998
0.688664
0.769911
0.0352802
0.0108888
0.0351691
0.0356112
0.0350315
0.0608056
0.0348557
0.0868247
0.0346197
0.113982
0.0342888
0.142529
0.0338155
0.172609
0.0331437
0.204219
0.0322182
0.237198
0.0309969
0.271272
0.0294596
0.306132
0.0276203
0.34154
0.0255222
0.377492
0.0232769
0.414436
0.0210224
0.453895
0.0190979
0.497825
0.0177284
0.550099
0.0178757
0.609538
0.0196929
0.686847
0.76342
0.0352361
0.011017
0.0350667
0.0357806
0.034859
0.0610133
0.034601
0.0870827
0.0342703
0.114312
0.0338316
0.142967
0.0332367
0.173204
0.0324291
0.205027
0.0313534
0.238274
0.029969
0.272656
0.0282586
0.307842
0.026242
0.343557
0.0239701
0.379764
0.021565
0.416841
0.0191747
0.456285
0.017163
0.499836
0.0157807
0.551481
0.0160959
0.609222
0.0183666
0.684576
0.755934
0.0351903
0.011194
0.0349609
0.03601
0.0346818
0.0612924
0.0343404
0.0874241
0.0339139
0.114739
0.0333663
0.143515
0.0326486
0.173922
0.0317032
0.205972
0.0304744
0.239502
0.0289224
0.274208
0.0270333
0.309731
0.0248324
0.345757
0.0223795
0.382217
0.0198066
0.419414
0.0172761
0.458815
0.0151722
0.50194
0.0137957
0.552858
0.0142848
0.608733
0.0171495
0.681711
0.747471
0.0351431
0.0114217
0.0348523
0.0363008
0.0345002
0.0616445
0.0340738
0.0878505
0.0335501
0.115263
0.0328925
0.144172
0.0320509
0.174764
0.0309664
0.207057
0.0295819
0.240887
0.0278584
0.275931
0.0257852
0.311804
0.0233932
0.348149
0.020752
0.384858
0.0180027
0.422163
0.015326
0.461492
0.0131155
0.504151
0.011748
0.554225
0.0123349
0.608147
0.015844
0.678202
0.738076
0.0350948
0.0117021
0.0347413
0.0366543
0.0343144
0.0620715
0.0338006
0.0883642
0.033177
0.115886
0.0324074
0.144942
0.0314408
0.17573
0.0302162
0.208282
0.028675
0.242428
0.0267774
0.277829
0.0245154
0.314066
0.021926
0.350739
0.0190898
0.387694
0.0161589
0.425094
0.0133421
0.464309
0.0110407
0.506452
0.00977112
0.555495
0.0105556
0.607362
0.0152604
0.673497
0.728111
0.0350464
0.0120364
0.0346295
0.0370712
0.0341253
0.0625758
0.0335202
0.0889692
0.0327919
0.116615
0.0319054
0.145829
0.03081
0.176826
0.0294438
0.209648
0.027746
0.244126
0.025675
0.2799
0.0232235
0.316518
0.0204317
0.353531
0.0173893
0.390737
0.0142532
0.42823
0.0112584
0.467304
0.00878336
0.508927
0.00749749
0.556781
0.0081413
0.606718
0.0137623
0.667876
0.717468
0.0350026
0.0345263
0.0339452
0.0332464
0.0324075
0.0313952
0.0301611
0.0286446
0.0267856
0.0245436
0.021915
0.0189467
0.015745
0.0124826
0.00945374
0.00704833
0.00621102
0.00759273
0.0162311
0.0352055
0.0161811
-0.0160304
0.0354587
0.0477348
-0.047988
0.0360848
0.0790751
-0.0797012
0.037036
0.110302
-0.111253
0.0382467
0.141314
-0.142524
0.0396304
0.171916
-0.1733
0.0410832
0.20183
-0.203283
0.0424914
0.230745
-0.232153
0.0437388
0.258391
-0.259638
0.0447163
0.284623
-0.2856
0.045347
0.309567
-0.310198
0.0456335
0.333955
-0.334241
0.0456796
0.35952
-0.359566
0.0455875
0.388769
-0.388677
0.045275
0.423656
-0.423343
0.0442731
0.464267
-0.463265
0.0414522
0.507774
-0.504954
0.03542
0.547896
-0.541864
0.0262578
0.58158
-0.572418
0.616264
-0.614722
0.0352751
0.0162727
0.0355875
0.0474225
0.0362633
0.0783993
0.0372584
0.109307
0.0385107
0.140061
0.0399375
0.170489
0.0414391
0.200328
0.0429059
0.229278
0.0442269
0.25707
0.0453006
0.283549
0.0460586
0.308809
0.0465142
0.333499
0.0467952
0.359239
0.0470568
0.388507
0.0473123
0.4234
0.0473189
0.464261
0.0462325
0.508861
0.0424041
0.551724
0.035228
0.588756
0.62722
0.0353324
0.016315
0.0356906
0.0470644
0.036403
0.0776869
0.0374259
0.108284
0.0386992
0.138788
0.0401435
0.169045
0.041662
0.19881
0.0431473
0.227793
0.0444898
0.255727
0.0455884
0.28245
0.0463724
0.308025
0.0468461
0.333025
0.0471278
0.358957
0.04738
0.388255
0.0476419
0.423138
0.047717
0.464185
0.0468313
0.509747
0.0432523
0.555303
0.0356815
0.596327
0.638829
0.0353837
0.0163121
0.0357819
0.0466662
0.0365262
0.0769426
0.0375717
0.107239
0.0388594
0.1375
0.0403129
0.167592
0.0418379
0.197285
0.0433286
0.226302
0.0446756
0.25438
0.0457763
0.28135
0.0465534
0.307248
0.0469956
0.332583
0.0471985
0.358754
0.0473095
0.388144
0.047355
0.423093
0.0471202
0.46442
0.0458986
0.510968
0.0420503
0.559151
0.0343494
0.604028
0.649003
0.0354302
0.0162678
0.0358635
0.0462329
0.0366354
0.0761707
0.0376996
0.106174
0.0389978
0.136202
0.0404558
0.166134
0.0419824
0.195758
0.0434736
0.224811
0.0448209
0.253033
0.0459208
0.28025
0.046691
0.306478
0.0471069
0.332167
0.0472441
0.358617
0.0472375
0.388151
0.0471088
0.423221
0.0466446
0.464884
0.0452618
0.512351
0.0415633
0.56285
0.0343196
0.611271
0.658855
0.0354723
0.0161855
0.0359359
0.0457693
0.0367308
0.0753757
0.0378099
0.105095
0.0391146
0.134897
0.0405731
0.164675
0.0420971
0.194234
0.0435851
0.223323
0.0449304
0.251688
0.0460295
0.279151
0.0467977
0.30571
0.0472013
0.331764
0.0473016
0.358516
0.0472287
0.388223
0.047019
0.423431
0.046485
0.465418
0.0451575
0.513678
0.0418115
0.566196
0.034934
0.618149
0.668937
0.0355102
0.0160685
0.0359994
0.0452801
0.0368126
0.0745625
0.0379018
0.104006
0.0392089
0.13359
0.0406634
0.163221
0.0421799
0.192718
0.04366
0.221843
0.0449989
0.250349
0.046094
0.278055
0.0468593
0.304944
0.0472545
0.331369
0.0473291
0.358442
0.0472102
0.388342
0.0469538
0.423687
0.0463946
0.465977
0.0451248
0.514948
0.0420207
0.5693
0.0353761
0.624793
0.679014
0.0355441
0.0159199
0.0360545
0.0447698
0.0368808
0.0737361
0.0379755
0.102911
0.0392802
0.132286
0.0407259
0.161775
0.0422299
0.191214
0.0436966
0.220376
0.0450235
0.249022
0.0461094
0.27697
0.0468672
0.304187
0.0472513
0.330985
0.0472995
0.358394
0.0471333
0.388508
0.0468232
0.423998
0.0462156
0.466585
0.0449338
0.51623
0.0419724
0.572262
0.0356128
0.631153
0.688841
0.0355742
0.015743
0.0361014
0.0442427
0.036936
0.0729015
0.0380311
0.101816
0.0393287
0.130988
0.0407609
0.160343
0.0422472
0.189727
0.043695
0.218928
0.0450042
0.247713
0.0460751
0.275899
0.0468205
0.303441
0.0471895
0.330616
0.0472094
0.358374
0.0469925
0.388725
0.04662
0.42437
0.0459495
0.467256
0.0446332
0.517546
0.041807
0.575088
0.0357989
0.637161
0.698353
0.0356005
0.0155407
0.0361404
0.0437027
0.0369785
0.0720635
0.038069
0.100726
0.0393547
0.129702
0.0407684
0.158929
0.0422319
0.188264
0.0436553
0.217505
0.0449413
0.246427
0.0459919
0.274848
0.0467199
0.302713
0.0470706
0.330265
0.0470613
0.358383
0.0467949
0.388992
0.0463616
0.424803
0.0456365
0.467981
0.0443006
0.518882
0.0416179
0.577771
0.0359654
0.642814
0.70754
0.0356231
0.015316
0.0361719
0.0431539
0.0370086
0.0712268
0.0380896
0.0996446
0.0393583
0.128434
0.0407487
0.157539
0.0421844
0.186828
0.043578
0.216111
0.0448351
0.24517
0.0458598
0.273823
0.0465655
0.302008
0.0468946
0.329936
0.046856
0.358422
0.0465429
0.389305
0.0460546
0.425292
0.0452878
0.468748
0.0439461
0.520224
0.0413964
0.58032
0.0360809
0.648129
0.716371
0.035642
0.0150721
0.0361959
0.0426
0.0370267
0.0703959
0.0380932
0.0985782
0.03934
0.127187
0.0407022
0.156176
0.0421048
0.185426
0.0434633
0.214752
0.0446858
0.243947
0.0456789
0.27283
0.046357
0.301329
0.0466608
0.329632
0.0465918
0.358491
0.0462342
0.389663
0.0456947
0.425831
0.0448929
0.46955
0.0435498
0.521567
0.0411169
0.582753
0.0361276
0.653118
0.72481
0.0356573
0.0148118
0.0362127
0.0420446
0.0370333
0.0695753
0.0380803
0.0975312
0.0393002
0.125967
0.0406291
0.154847
0.0419937
0.184061
0.0433116
0.213435
0.0444937
0.242765
0.0454493
0.271875
0.0460944
0.300684
0.0463682
0.329358
0.0462668
0.358592
0.0458655
0.390064
0.0452759
0.426421
0.0444412
0.470384
0.0430983
0.52291
0.0407726
0.585079
0.0361048
0.657786
0.732826
0.035669
0.0145383
0.0362224
0.0414913
0.0370285
0.0687691
0.0380514
0.0965084
0.0392394
0.124779
0.0405301
0.153557
0.0418514
0.18274
0.0431233
0.212163
0.0442593
0.241629
0.0451714
0.270963
0.0457775
0.300078
0.0460165
0.329119
0.0458797
0.358729
0.0454343
0.390509
0.0447947
0.42706
0.0439281
0.471251
0.0425885
0.524249
0.0403655
0.587302
0.0360137
0.662138
0.740397
0.0356773
0.0142546
0.0362251
0.0409435
0.0370129
0.0679814
0.0380069
0.0955143
0.0391582
0.123627
0.0404056
0.152309
0.0416786
0.181467
0.042899
0.210942
0.0439831
0.240545
0.0448456
0.2701
0.0454067
0.299517
0.0456054
0.32892
0.0454297
0.358905
0.0449391
0.391
0.0442494
0.42775
0.0433514
0.472149
0.042019
0.525582
0.0398963
0.589424
0.0358533
0.666181
0.747506
0.0356822
0.0139637
0.0362211
0.0404046
0.0369865
0.0672159
0.0379474
0.0945534
0.0390571
0.122518
0.0402563
0.15111
0.0414759
0.180247
0.0426394
0.209779
0.0436659
0.239519
0.0444726
0.269293
0.0449825
0.299007
0.0451352
0.328768
0.0449163
0.359124
0.0443789
0.391537
0.0436386
0.42849
0.0427093
0.473078
0.0413869
0.526904
0.0393628
0.591448
0.0356219
0.669922
0.754136
0.0356836
0.0136686
0.0362104
0.0398778
0.0369499
0.0664765
0.0378734
0.0936299
0.0389369
0.121454
0.040083
0.149964
0.041244
0.179086
0.0423454
0.208677
0.0433083
0.238556
0.0440531
0.268549
0.0445053
0.298555
0.0446061
0.328667
0.0443393
0.35939
0.0437527
0.392124
0.0429609
0.429282
0.0419997
0.474039
0.0406889
0.528215
0.0387623
0.593375
0.0353183
0.673366
0.760268
0.0356818
0.0133724
0.0361933
0.0393664
0.0369032
0.0657666
0.0377853
0.0927478
0.0387981
0.120441
0.0398864
0.148876
0.0409839
0.177989
0.0420177
0.207643
0.0429113
0.237662
0.0435879
0.267872
0.043976
0.298167
0.0440186
0.328624
0.0436986
0.35971
0.0430599
0.392762
0.0422151
0.430127
0.0412204
0.475034
0.039922
0.529513
0.0380926
0.595204
0.0349417
0.676517
0.765886
0.0356768
0.0130782
0.0361698
0.0388735
0.0368467
0.0650896
0.0376836
0.091911
0.0386415
0.119483
0.0396673
0.14785
0.0406963
0.17696
0.0416573
0.206682
0.042476
0.236843
0.0430781
0.26727
0.0433955
0.297849
0.0433733
0.328646
0.0429945
0.360089
0.0423
0.393457
0.0414001
0.431027
0.0403699
0.476064
0.0390839
0.530799
0.0373518
0.596936
0.0344907
0.679378
0.770968
0.0356687
0.0361401
0.0367809
0.0375689
0.0384678
0.0394265
0.0403823
0.0412653
0.0420033
0.0425247
0.0427647
0.0426711
0.0422275
0.0414728
0.0405153
0.0394474
0.0381728
0.0365384
0.0339644
0.254559
0.00117052
0.251072
0.00348731
0.245342
0.0057294
0.237508
0.00783459
0.227751
0.00975674
0.216298
0.0114535
0.203412
0.0128857
0.189394
0.0140181
0.174574
0.01482
0.159308
0.0152658
0.143973
0.0153352
0.128959
0.015014
0.114665
0.0142943
0.101488
0.0131766
0.0898156
0.0116724
0.0800056
0.00981
0.0723641
0.00764144
0.0671142
0.00524999
0.0643765
0.0027377
0.000167588
0.0642089
0.236588
0.00230596
0.233211
0.00686469
0.227668
0.0112725
0.220086
0.0154159
0.210639
0.0192044
0.199537
0.0225554
0.187029
0.0253932
0.173398
0.0276495
0.158954
0.0292642
0.144033
0.0301866
0.128992
0.0303759
0.114204
0.0298024
0.100049
0.028449
0.0869099
0.0263158
0.0751535
0.0234288
0.0651092
0.0198543
0.0570347
0.015716
0.0510789
0.0112057
0.047283
0.00653368
0.00177411
0.0456764
0.219849
0.00343498
0.216495
0.0102181
0.210995
0.0167725
0.203471
0.0229405
0.194084
0.0285914
0.183034
0.0336052
0.170555
0.037872
0.156913
0.041292
0.1424
0.0437769
0.127336
0.0452508
0.11206
0.0456513
0.0969316
0.0449313
0.082318
0.0430626
0.0685872
0.0400467
0.0560809
0.0359351
0.0450762
0.030859
0.0357358
0.0250563
0.0280757
0.0188659
0.0220225
0.0125868
0.00620305
0.0175936
0.204274
0.00456848
0.200912
0.0135806
0.195398
0.0222861
0.187849
0.0304898
0.178415
0.0380247
0.167284
0.0447369
0.154671
0.0504845
0.140825
0.055138
0.12602
0.0585817
0.110557
0.0607144
0.0947571
0.061451
0.0789635
0.0607249
0.0635285
0.0584975
0.0487945
0.0547806
0.0350513
0.0496783
0.0224755
0.0434348
0.0110771
0.0364547
0.000710463
0.0292326
-0.00875924
0.0220566
0.014667
-0.0172232
0.189798
0.00570442
0.18643
0.0169478
0.180907
0.0278093
0.173334
0.0380628
0.16385
0.0475092
0.152622
0.0559645
0.139849
0.0632573
0.125757
0.0692303
0.110597
0.0737413
0.0946477
0.076664
0.0782092
0.0778895
0.0616021
0.0773321
0.0451516
0.074948
0.029151
0.0707812
0.0137953
0.065034
-0.000891506
0.0581215
-0.0150748
0.0506381
-0.028993
0.0431507
-0.042663
0.0357266
0.0277056
-0.0557016
0.176353
0.00683238
0.17301
0.0202908
0.167521
0.033298
0.15998
0.0456035
0.150508
0.0569816
0.139251
0.0672212
0.126384
0.0761248
0.112105
0.0835089
0.0966403
0.0892063
0.0802384
0.0930659
0.0631722
0.0949557
0.0457306
0.0947738
0.028193
0.0924856
0.0107712
0.088203
-0.00647704
0.0822822
-0.0237011
0.0753457
-0.0411851
0.068122
-0.0590913
0.0610568
-0.0771027
0.053738
0.0450318
-0.0944289
0.163874
0.00793734
0.160598
0.0235669
0.15521
0.0386856
0.147788
0.0530253
0.138431
0.0663388
0.12726
0.0783925
0.11442
0.0889649
0.100079
0.097849
0.0844319
0.104854
0.0676926
0.109805
0.0500981
0.11255
0.0318934
0.112979
0.0132908
0.111088
-0.00560981
0.107104
-0.0249088
0.101581
-0.0448964
0.0953333
-0.0658542
0.0890798
-0.0876987
0.0829013
-0.109681
0.0757208
0.0659846
-0.130634
0.152296
0.00900282
0.149134
0.0267292
0.143921
0.0438978
0.136717
0.0602296
0.127594
0.0754618
0.116645
0.0893421
0.103981
0.101628
0.0897389
0.112091
0.0740736
0.120519
0.057162
0.126717
0.0391972
0.130515
0.0203674
0.131808
0.000799275
0.130656
-0.0195377
0.127441
-0.0408914
0.122935
-0.0636224
0.118064
-0.0878958
0.113353
-0.113318
0.108324
-0.138779
0.101182
0.0900784
-0.162873
0.141556
0.0100133
0.138552
0.0297329
0.133587
0.048863
0.126696
0.0671203
0.117925
0.0842324
0.107335
0.0999322
0.0950043
0.113959
0.0810303
0.126065
0.0655299
0.13602
0.0486372
0.143609
0.0304952
0.148657
0.0112258
0.151078
-0.00914262
0.151025
-0.0307718
0.14907
-0.0540243
0.146187
-0.0792613
0.143301
-0.106483
0.140575
-0.135045
0.136885
-0.163631
0.129768
0.117169
-0.190721
0.131592
0.0109557
0.128785
0.0325405
0.124128
0.05352
0.117634
0.0736138
0.109321
0.0925456
0.0992162
0.110037
0.087363
0.125812
0.0738218
0.139607
0.0586687
0.151173
0.0419926
0.160286
0.0238827
0.166767
0.00438912
0.170571
-0.016561
0.171975
-0.0392481
0.171757
-0.0641108
0.17105
-0.0914696
0.17066
-0.121185
0.170291
-0.152486
0.168186
-0.184002
0.161283
0.147312
-0.214145
0.122348
0.0118205
0.119765
0.0351238
0.115463
0.0578222
0.109432
0.0796448
0.101661
0.100317
0.0921458
0.119552
0.0808959
0.137062
0.0679342
0.152568
0.053297
0.16581
0.037028
0.176555
0.0191621
0.184633
-0.000322704
0.190056
-0.0215944
0.193246
-0.0450341
0.195197
-0.0711277
0.197144
-0.100148
0.19968
-0.131881
0.202024
-0.165563
0.201868
-0.199874
0.195594
0.18058
-0.233142
0.113769
0.0126018
0.111428
0.0374651
0.107511
0.061739
0.101988
0.0851683
0.0948196
0.107485
0.0859736
0.128398
0.0754262
0.14761
0.0631658
0.164829
0.0491903
0.179785
0.0335003
0.192245
0.0160774
0.202056
-0.0031684
0.209302
-0.0244897
0.214568
-0.0483485
0.219056
-0.075259
0.224054
-0.105453
0.229874
-0.138706
0.235277
-0.174386
0.237547
-0.211313
0.232521
0.216968
-0.2477
0.105804
0.0132972
0.103712
0.0395569
0.100195
0.0652556
0.0952039
0.0901598
0.0886763
0.114012
0.0805521
0.136522
0.0707785
0.157383
0.0593123
0.176295
0.0461168
0.192981
0.031153
0.207208
0.0143549
0.218854
-0.00442572
0.228082
-0.0255061
0.235648
-0.049408
0.242957
-0.0766776
0.251324
-0.107545
0.260741
-0.141836
0.269569
-0.179131
0.274842
-0.218463
0.271854
0.256428
-0.257924
0.0984055
0.0139075
0.0965618
0.0414005
0.0934462
0.0683712
0.0889929
0.0946132
0.0831204
0.119885
0.0757452
0.143898
0.0667888
0.16634
0.0561804
0.186903
0.0438526
0.205309
0.0297315
0.22133
0.0137085
0.234877
-0.00441623
0.246207
-0.0250147
0.256247
-0.0486594
0.266602
-0.0759375
0.278602
-0.107078
0.291882
-0.141914
0.304405
-0.180271
0.313199
-0.221621
0.313204
0.298913
-0.264106
0.0915311
0.0144359
0.089927
0.0430046
0.0872017
0.0710965
0.0832769
0.0985379
0.0780551
0.125107
0.0714335
0.150519
0.0633123
0.174461
0.0535972
0.196619
0.0421955
0.21671
0.0290043
0.234521
0.013882
0.249999
-0.00340702
0.263496
-0.0232608
0.2761
-0.0462615
0.289603
-0.0730312
0.305371
-0.10388
0.322731
-0.13875
0.339275
-0.1778
0.352248
-0.221046
0.35645
0.344546
-0.266678
0.0851416
0.0148871
0.0837628
0.0443834
0.0814082
0.0734512
0.0779902
0.101956
0.0733988
0.129698
0.0675165
0.156402
0.0602259
0.181751
0.051414
0.20543
0.0409674
0.227157
0.0287593
0.246729
0.0146202
0.264138
-0.00171889
0.279835
-0.0206885
0.29507
-0.0428978
0.311812
-0.0690436
0.331517
-0.09956
0.353247
-0.134318
0.374032
-0.173384
0.391315
-0.217555
0.400621
0.393033
-0.266042
0.0792012
0.0152671
0.0780305
0.0455542
0.0760209
0.0754607
0.0730783
0.104899
0.0690848
0.133691
0.063912
0.161574
0.0574298
0.188234
0.0495108
0.21335
0.0400261
0.236642
0.0288333
0.257922
0.0157479
0.277224
0.000490667
0.295093
-0.0173642
0.312925
-0.038383
0.332831
-0.063233
0.356367
-0.0924864
0.382501
-0.12623
0.407776
-0.16483
0.429915
-0.210246
0.446037
0.445155
-0.262368
0.0736772
0.0155821
0.0726966
0.0465348
0.0710041
0.0771532
0.0685001
0.107403
0.0650626
0.137129
0.0605569
0.16608
0.0548443
0.193946
0.0477867
0.220407
0.0392424
0.245186
0.0290529
0.268111
0.0170155
0.289261
0.00283084
0.309277
-0.0139557
0.329711
-0.033941
0.352816
-0.057847
0.380273
-0.0865
0.411154
-0.120207
0.441483
-0.158507
0.468215
-0.202911
0.490441
0.498325
-0.256081
0.0685419
0.0158377
0.0677347
0.047342
0.0663306
0.0785572
0.0642261
0.109507
0.0612986
0.140056
0.0574109
0.169968
0.0524212
0.198936
0.0461892
0.226639
0.0385722
0.252803
0.0294124
0.277271
0.0185129
0.30016
0.00559578
0.322194
-0.00975217
0.345059
-0.028061
0.371125
-0.0499306
0.402143
-0.0761645
0.437388
-0.107462
0.472781
-0.143784
0.504537
-0.187453
0.53411
0.55728
-0.246408
0.0637841
0.0631381
0.0619941
0.060248
0.0577801
0.0544481
0.0501012
0.0445874
0.037752
0.029423
0.0193853
0.00733833
-0.00716804
-0.0247194
-0.0459198
-0.0717971
-0.10397
-0.141297
-0.179604
-0.237046
0.0640073
0.000201605
0.0639857
2.15303e-05
0.0641401
-0.000154394
0.0644661
-0.000325966
0.0649598
-0.000493665
0.0656175
-0.000657744
0.066436
-0.00081848
0.0674122
-0.000976226
0.0685436
-0.00113138
0.0698279
-0.00128437
0.0712636
-0.00143565
0.0728493
-0.00158567
0.0745842
-0.00173492
0.0764681
-0.00188388
0.0785011
-0.00203301
0.0806839
-0.00218277
0.0830175
-0.00233361
0.0855034
-0.00248594
0.0881436
-0.00264016
-0.0027966
0.0909402
0.045514
0.000364047
0.0454891
4.64487e-05
0.0455965
-0.000261852
0.0458332
-0.000562623
0.0461967
-0.000857204
0.046685
-0.001146
0.047296
-0.00142946
0.048028
-0.00170822
0.0488795
-0.00198296
0.0498496
-0.00225439
0.0509372
-0.00252325
0.0521418
-0.00279029
0.0534631
-0.00305627
0.0549012
-0.00332194
0.0564562
-0.00358802
0.0581287
-0.00385523
0.0599193
-0.00412423
0.061829
-0.00439564
0.0638588
-0.00467001
-0.00494785
0.0660101
0.0174479
0.000509735
0.0173797
0.000114621
0.0173837
-0.000265857
0.0174597
-0.000638613
0.0176087
-0.00100622
0.0178316
-0.00136891
0.0181292
-0.00172701
0.0185021
-0.00208118
0.0189513
-0.00243211
0.0194774
-0.0027805
0.0200812
-0.00312707
0.0207635
-0.00347258
0.021525
-0.00381775
0.0223664
-0.00416334
0.0232884
-0.00451005
0.0242917
-0.00485857
0.025377
-0.00520953
0.0265449
-0.00556353
0.027796
-0.00592106
-0.00628256
0.0291307
-0.0173715
0.000658031
-0.0175045
0.000247587
-0.0176222
-0.000148158
-0.0177176
-0.000543156
-0.0177839
-0.000939986
-0.0178155
-0.00133729
-0.0178082
-0.00173428
-0.0177586
-0.00213083
-0.0176637
-0.002527
-0.0175212
-0.00292297
-0.0173292
-0.00331903
-0.0170862
-0.00371556
-0.016791
-0.00411301
-0.0164425
-0.00451185
-0.0160399
-0.00491257
-0.0155829
-0.00531565
-0.0150708
-0.00572154
-0.0145037
-0.00613064
-0.0138815
-0.00654331
-0.00695981
-0.0132042
-0.0557844
0.000740846
-0.0558972
0.000360308
-0.0560294
-1.59059e-05
-0.0561666
-0.000406013
-0.0562974
-0.000809147
-0.0564144
-0.00122032
-0.0565122
-0.00163649
-0.0565869
-0.00205608
-0.0566358
-0.00247815
-0.0566566
-0.00290215
-0.0566478
-0.00332784
-0.0566081
-0.00375519
-0.0565368
-0.00418431
-0.0564333
-0.00461539
-0.0562972
-0.00504867
-0.0561285
-0.00548439
-0.0559272
-0.0059228
-0.0556937
-0.00636411
-0.0554286
-0.00680849
-0.00725602
-0.0551323
-0.0943121
0.000624022
-0.0942479
0.00029612
-0.0942174
-4.63872e-05
-0.0942043
-0.000419148
-0.0941988
-0.00081464
-0.0941954
-0.00122367
-0.0941908
-0.00164115
-0.0941824
-0.00206443
-0.0941686
-0.00249196
-0.094148
-0.00292279
-0.0941194
-0.00335638
-0.0940822
-0.00379246
-0.0940356
-0.00423087
-0.0939794
-0.00467159
-0.0939135
-0.0051146
-0.0938379
-0.00555994
-0.0937531
-0.0060076
-0.0936596
-0.00645759
-0.0935583
-0.00690984
-0.00736423
-0.0934501
-0.130226
0.000216049
-0.129881
-4.9195e-05
-0.129578
-0.000349569
-0.129305
-0.000691703
-0.129058
-0.0010614
-0.128835
-0.00144711
-0.128633
-0.00184315
-0.128451
-0.00224675
-0.128286
-0.00265626
-0.128139
-0.00307063
-0.128006
-0.00348913
-0.127887
-0.00391125
-0.127781
-0.00433656
-0.127688
-0.00476474
-0.127607
-0.00519548
-0.127539
-0.0056285
-0.127483
-0.00606352
-0.12744
-0.00650025
-0.127412
-0.00693834
-0.00737741
-0.127398
-0.162188
-0.000468808
-0.161571
-0.000666149
-0.161006
-0.000914378
-0.160489
-0.00120884
-0.160019
-0.00153195
-0.159593
-0.00187255
-0.159211
-0.00222567
-0.158869
-0.00258884
-0.158564
-0.00296044
-0.158296
-0.00333923
-0.158061
-0.00372421
-0.157858
-0.00411448
-0.157685
-0.00450926
-0.157542
-0.00490782
-0.157428
-0.00530949
-0.157343
-0.0057136
-0.157287
-0.00611952
-0.15726
-0.00652658
-0.157265
-0.00693409
-0.00734134
-0.157301
-0.189863
-0.00132625
-0.189074
-0.00145597
-0.188345
-0.00164277
-0.187679
-0.00187454
-0.187076
-0.0021351
-0.186533
-0.00241549
-0.186047
-0.00271179
-0.185614
-0.00302172
-0.185231
-0.00334346
-0.184895
-0.00367542
-0.184603
-0.00401617
-0.184353
-0.00436438
-0.184144
-0.00471879
-0.183973
-0.00507824
-0.183841
-0.00544161
-0.183747
-0.00580782
-0.183691
-0.0061758
-0.183673
-0.00654449
-0.183694
-0.00691281
-0.00727964
-0.183756
-0.213269
-0.00220209
-0.212451
-0.0022744
-0.211699
-0.00239495
-0.211017
-0.00255621
-0.210405
-0.00274746
-0.209858
-0.00296228
-0.209372
-0.0031974
-0.208944
-0.0034504
-0.208568
-0.00371908
-0.208242
-0.0040014
-0.207963
-0.00429544
-0.207728
-0.00459941
-0.207535
-0.00491158
-0.207383
-0.00523032
-0.20727
-0.00555406
-0.207197
-0.00588127
-0.207162
-0.00621044
-0.207167
-0.00654008
-0.207211
-0.00686869
-0.00719471
-0.207296
-0.232421
-0.00292325
-0.231733
-0.00296199
-0.23111
-0.00301783
-0.230556
-0.00311055
-0.230067
-0.00323617
-0.22964
-0.00338994
-0.229268
-0.00356871
-0.228949
-0.0037697
-0.228678
-0.00399029
-0.228451
-0.00422798
-0.228266
-0.00448041
-0.22812
-0.00474533
-0.228011
-0.00502058
-0.227938
-0.0053041
-0.227898
-0.00559388
-0.227891
-0.00588797
-0.227917
-0.00618444
-0.227976
-0.00648139
-0.228068
-0.00677689
-0.00706899
-0.228193
-0.247306
-0.00331743
-0.246906
-0.00336247
-0.246561
-0.00336258
-0.246271
-0.00340032
-0.246033
-0.00347467
-0.245841
-0.00358157
-0.245692
-0.00371768
-0.245582
-0.00387985
-0.245507
-0.00406508
-0.245465
-0.0042705
-0.245452
-0.00449336
-0.245466
-0.00473106
-0.245505
-0.00498106
-0.245569
-0.00524095
-0.245654
-0.00550838
-0.245761
-0.00578103
-0.245889
-0.00605663
-0.246037
-0.00633291
-0.246207
-0.00660759
-0.00687837
-0.246397
-0.25802
-0.0032214
-0.258051
-0.00333095
-0.25812
-0.00329369
-0.258217
-0.00330378
-0.258339
-0.00335255
-0.258483
-0.00343721
-0.258647
-0.00355399
-0.258827
-0.0036995
-0.259022
-0.00387046
-0.259229
-0.00406373
-0.259446
-0.00427634
-0.259671
-0.00450541
-0.259904
-0.00474819
-0.260143
-0.00500202
-0.260387
-0.00526432
-0.260636
-0.00553252
-0.260888
-0.00580412
-0.261144
-0.00607661
-0.261405
-0.00634745
-0.0066141
-0.261669
-0.264853
-0.00247474
-0.265455
-0.00272846
-0.266065
-0.00268428
-0.266658
-0.00271056
-0.267238
-0.00277238
-0.267803
-0.00287175
-0.268353
-0.00300394
-0.268887
-0.00316568
-0.269404
-0.00335357
-0.269904
-0.00356437
-0.270385
-0.003795
-0.270848
-0.00404248
-0.271292
-0.00430395
-0.271717
-0.00457665
-0.272124
-0.00485788
-0.272511
-0.00514499
-0.27288
-0.00543536
-0.27323
-0.00572639
-0.273562
-0.00601546
-0.00629989
-0.273877
-0.26825
-0.000903109
-0.269572
-0.00140609
-0.270857
-0.00140011
-0.272062
-0.00150479
-0.273202
-0.0016324
-0.274276
-0.00179782
-0.275286
-0.0019938
-0.276234
-0.00221786
-0.277121
-0.0024664
-0.277949
-0.00273634
-0.27872
-0.00302463
-0.279434
-0.00332837
-0.280093
-0.00364477
-0.280699
-0.00397112
-0.281252
-0.00430476
-0.281754
-0.00464308
-0.282205
-0.00498348
-0.282608
-0.00532338
-0.282964
-0.00566019
-0.00599126
-0.283272
-0.26864
0.00169503
-0.270854
0.000807487
-0.272971
0.000716645
-0.274927
0.000451335
-0.276749
0.000189305
-0.278437
-0.000109313
-0.28
-0.000431288
-0.281441
-0.000776644
-0.282765
-0.00114188
-0.283977
-0.00152465
-0.285079
-0.00192226
-0.286076
-0.00233216
-0.286969
-0.00275179
-0.287761
-0.00317862
-0.288456
-0.00361016
-0.289055
-0.00404388
-0.289561
-0.00447731
-0.289976
-0.00490795
-0.290303
-0.00533328
-0.00575072
-0.290544
-0.266256
0.00558326
-0.269577
0.00412762
-0.272708
0.00384799
-0.275571
0.00331437
-0.278218
0.0028365
-0.280654
0.0023263
-0.282891
0.00180572
-0.284936
0.00126899
-0.286798
0.000719701
-0.288482
0.000159059
-0.289993
-0.000410759
-0.291338
-0.000987797
-0.292519
-0.00156998
-0.293543
-0.00215522
-0.294412
-0.00274137
-0.295129
-0.00332624
-0.295699
-0.00390756
-0.296124
-0.00448301
-0.296407
-0.00505017
-0.00560647
-0.296551
-0.26145
0.0109517
-0.266011
0.00868906
-0.270303
0.00814016
-0.274218
0.00722893
-0.277823
0.00644141
-0.281122
0.00562593
-0.284138
0.00482151
-0.286884
0.00401433
-0.289372
0.00320779
-0.291613
0.0024002
-0.293616
0.00159216
-0.295388
0.000784028
-0.296934
-2.32626e-05
-0.298261
-0.000828542
-0.299372
-0.00163038
-0.300271
-0.00242711
-0.300962
-0.00321692
-0.301447
-0.00399778
-0.30173
-0.00476735
-0.00552315
-0.301813
-0.254039
0.0185829
-0.26015
0.0147993
-0.265764
0.0137543
-0.270813
0.0122777
-0.275423
0.0110516
-0.279631
0.00983418
-0.283477
0.00866735
-0.286982
0.0075196
-0.290164
0.00638954
-0.293034
0.00527037
-0.295602
0.00416013
-0.297875
0.00305717
-0.299859
0.00196107
-0.30156
0.000871993
-0.302981
-0.000209402
-0.304126
-0.00128205
-0.304998
-0.00234462
-0.305601
-0.00339544
-0.305936
-0.00443234
-0.00545269
-0.306006
-0.245274
-0.252794
-0.259474
-0.265544
-0.271119
-0.276233
-0.280921
-0.285202
-0.289091
-0.292601
-0.295743
-0.298526
-0.300956
-0.303039
-0.304782
-0.306187
-0.30726
-0.308002
-0.308416
-0.308506
0.093896
-0.00295586
0.0970137
-0.00311769
0.100296
-0.00328258
0.103747
-0.00345072
0.107369
-0.00362225
0.111167
-0.00379725
0.115142
-0.00397577
0.1193
-0.0041578
0.123643
-0.00434327
0.128175
-0.00453209
0.1329
-0.0047241
0.137819
-0.00491909
0.142935
-0.00511681
0.148252
-0.00531698
0.153772
-0.00551924
0.159495
-0.00572321
0.165423
-0.0059284
0.171558
-0.00613428
0.177898
-0.00634075
-0.00654508
0.184443
0.0682841
-0.00522989
0.0706823
-0.00551587
0.0732061
-0.00580638
0.075857
-0.00610161
0.0786364
-0.00640166
0.0815457
-0.00670656
0.0845862
-0.00701626
0.087759
-0.00733062
0.0910651
-0.0076494
0.0945054
-0.00797232
0.0980803
-0.008299
0.10179
-0.00862899
0.105635
-0.00896178
0.109615
-0.00929681
0.113729
-0.00963346
0.117977
-0.00997106
0.122357
-0.0103087
0.126868
-0.0106453
0.131509
-0.0109815
-0.0113149
0.136279
0.0305493
-0.00664846
0.0320523
-0.00701888
0.03364
-0.00739407
0.0353125
-0.0077741
0.0370697
-0.00815894
0.0389116
-0.00854846
0.0408378
-0.00894245
0.0428478
-0.0093406
0.0449409
-0.0097425
0.0471163
-0.0101477
0.0493728
-0.0105555
0.0517093
-0.0109655
0.0541244
-0.0113768
0.0566164
-0.0117889
0.0591838
-0.0122008
0.0618246
-0.0126119
0.0645368
-0.0130209
0.0673177
-0.0134262
0.0701667
-0.0138305
-0.0142347
0.0730865
-0.0124729
-0.00737982
-0.0116873
-0.0078045
-0.010848
-0.00823335
-0.00995579
-0.0086663
-0.00901156
-0.00910317
-0.00801634
-0.00954368
-0.00697132
-0.00998747
-0.00587786
-0.0104341
-0.00473742
-0.0108829
-0.00355164
-0.0113334
-0.0023223
-0.0117849
-0.0010513
-0.0122365
0.000259314
-0.0126875
0.0016074
-0.0131369
0.00299079
-0.0135842
0.00440714
-0.0140283
0.00585339
-0.0144671
0.00732543
-0.0148982
0.00882277
-0.0153278
-0.0157633
0.0103514
-0.0548069
-0.00770528
-0.0544523
-0.00815912
-0.0540697
-0.00861593
-0.0536605
-0.0090755
-0.0532262
-0.00953746
-0.0527685
-0.0100014
-0.0522892
-0.0104667
-0.0517904
-0.0109329
-0.0512743
-0.011399
-0.0507433
-0.0118644
-0.0502001
-0.0123282
-0.0496473
-0.0127893
-0.0490881
-0.0132466
-0.0485258
-0.0136993
-0.0479635
-0.0141464
-0.0474051
-0.0145867
-0.0468559
-0.0150164
-0.0463234
-0.0154307
-0.045809
-0.0158423
-0.0162714
-0.0453009
-0.0933374
-0.00781792
-0.0932206
-0.00827596
-0.0931012
-0.00873534
-0.0929811
-0.00919561
-0.0928623
-0.00965621
-0.0927472
-0.0101165
-0.0926383
-0.0105756
-0.0925384
-0.0110328
-0.0924504
-0.011487
-0.0923777
-0.0119372
-0.0923238
-0.0123821
-0.0922926
-0.0128204
-0.0922885
-0.0132508
-0.0923158
-0.013672
-0.092379
-0.0140832
-0.0924832
-0.0144825
-0.0926368
-0.0148627
-0.0928525
-0.015215
-0.0931309
-0.0155639
-0.0159559
-0.0934464
-0.127404
-0.00781284
-0.127427
-0.00825238
-0.127471
-0.00869127
-0.127538
-0.0091288
-0.12763
-0.00956413
-0.12775
-0.00999631
-0.127902
-0.0104243
-0.128087
-0.0108469
-0.128312
-0.0112628
-0.128578
-0.0116706
-0.128892
-0.0120688
-0.129256
-0.0124555
-0.129678
-0.0128291
-0.130162
-0.0131881
-0.130713
-0.0135322
-0.131337
-0.0138584
-0.132046
-0.0141533
-0.132861
-0.0144005
-0.133778
-0.0146472
-0.0149906
-0.134743
-0.157372
-0.00774164
-0.157478
-0.00814587
-0.157622
-0.00854723
-0.157807
-0.00894465
-0.158034
-0.00933697
-0.158307
-0.00972291
-0.15863
-0.0101011
-0.159007
-0.0104699
-0.159442
-0.0108278
-0.15994
-0.0111729
-0.160505
-0.0115033
-0.161144
-0.0118167
-0.161863
-0.0121107
-0.162666
-0.0123845
-0.16356
-0.0126386
-0.16455
-0.0128685
-0.165654
-0.0130492
-0.166903
-0.0131518
-0.168285
-0.0132647
-0.0135782
-0.169698
-0.183862
-0.00763589
-0.184011
-0.0079961
-0.184208
-0.00835104
-0.184453
-0.00869928
-0.184751
-0.00903928
-0.185104
-0.00936935
-0.185518
-0.0096877
-0.185995
-0.0099924
-0.186541
-0.0102814
-0.187162
-0.0105526
-0.187861
-0.0108035
-0.188647
-0.0110309
-0.189526
-0.0112322
-0.190503
-0.0114075
-0.191581
-0.0115602
-0.192767
-0.0116825
-0.194088
-0.0117284
-0.19559
-0.0116503
-0.197246
-0.0116081
-0.0119553
-0.198869
-0.207425
-0.00750639
-0.207599
-0.00782236
-0.207819
-0.00813071
-0.208089
-0.00842959
-0.208411
-0.00871702
-0.20879
-0.00899088
-0.209229
-0.00924896
-0.209732
-0.00948891
-0.210305
-0.00970834
-0.210953
-0.00990471
-0.211682
-0.0100748
-0.212498
-0.0102146
-0.213409
-0.0103207
-0.214421
-0.0103963
-0.215531
-0.0104501
-0.216745
-0.0104685
-0.218104
-0.0103694
-0.219678
-0.0100765
-0.221416
-0.00987004
-0.0103756
-0.222995
-0.228357
-0.00734298
-0.228557
-0.00762211
-0.228796
-0.00789152
-0.229077
-0.00814891
-0.229402
-0.00839187
-0.229775
-0.00861784
-0.2302
-0.00882413
-0.230681
-0.00900798
-0.231222
-0.00916673
-0.23183
-0.00929758
-0.232508
-0.00939653
-0.233265
-0.00945764
-0.234108
-0.00947699
-0.235042
-0.00946315
-0.236056
-0.00943524
-0.237155
-0.00936959
-0.2384
-0.00912454
-0.239896
-0.00858038
-0.241556
-0.00821008
-0.00906902
-0.242863
-0.246613
-0.00712741
-0.246852
-0.00738309
-0.247116
-0.00762738
-0.247407
-0.00785759
-0.247728
-0.00807088
-0.248082
-0.00826427
-0.248471
-0.00843459
-0.248901
-0.00857867
-0.249374
-0.00869365
-0.249895
-0.00877677
-0.250468
-0.0088231
-0.251102
-0.00882378
-0.251806
-0.00877308
-0.252581
-0.00868815
-0.25341
-0.00860587
-0.254291
-0.00848901
-0.255312
-0.00810324
-0.256629
-0.00726362
-0.258108
-0.00673112
-0.00820672
-0.25897
-0.261941
-0.00685553
-0.262218
-0.00710569
-0.262502
-0.00734331
-0.262794
-0.00756535
-0.263097
-0.00776866
-0.263411
-0.00794988
-0.26374
-0.0081054
-0.264087
-0.00823155
-0.264456
-0.00832529
-0.264848
-0.00838418
-0.265269
-0.0084027
-0.265725
-0.00836775
-0.266229
-0.00826895
-0.266784
-0.00813328
-0.267364
-0.00802584
-0.267955
-0.00789806
-0.268672
-0.00738629
-0.269731
-0.00620449
-0.27096
-0.005502
-0.0079024
-0.271264
-0.274177
-0.0065555
-0.27446
-0.00682225
-0.274728
-0.0070756
-0.274981
-0.0073123
-0.27522
-0.00752898
-0.275448
-0.00772205
-0.275666
-0.00788752
-0.275877
-0.00802113
-0.276082
-0.00811941
-0.276286
-0.00818038
-0.27649
-0.00819892
-0.2767
-0.00815765
-0.276932
-0.00803724
-0.277195
-0.00787059
-0.277459
-0.00776142
-0.27769
-0.00766738
-0.278004
-0.00707162
-0.278682
-0.00552686
-0.279555
-0.00462902
-0.00822696
-0.27923
-0.283539
-0.00628919
-0.28376
-0.00660048
-0.283939
-0.00689724
-0.284075
-0.00717611
-0.28417
-0.00743362
-0.284226
-0.00766608
-0.284245
-0.0078693
-0.284227
-0.0080385
-0.284177
-0.00816942
-0.284097
-0.00826022
-0.283989
-0.00830768
-0.283853
-0.00829309
-0.283705
-0.0081857
-0.283562
-0.00801333
-0.283404
-0.00791977
-0.283166
-0.00790479
-0.282922
-0.00731542
-0.282985
-0.00546399
-0.283274
-0.00434048
-0.00920709
-0.282294
-0.290704
-0.00612952
-0.290781
-0.00652313
-0.290778
-0.00690012
-0.290697
-0.00725709
-0.29054
-0.00759047
-0.29031
-0.00789649
-0.290008
-0.00817103
-0.289637
-0.00840915
-0.289201
-0.00860579
-0.288703
-0.00875858
-0.288143
-0.00886706
-0.287519
-0.00891698
-0.286835
-0.00887023
-0.286113
-0.00873543
-0.285355
-0.00867795
-0.284482
-0.00877737
-0.283472
-0.00832526
-0.282592
-0.00634443
-0.281914
-0.00501808
-0.010849
-0.280272
-0.296563
-0.00611762
-0.296442
-0.00664451
-0.29619
-0.00715194
-0.295811
-0.00763637
-0.295307
-0.0080941
-0.294682
-0.00852127
-0.293939
-0.00891384
-0.293081
-0.00926725
-0.292111
-0.00957625
-0.291032
-0.00983737
-0.289848
-0.0100516
-0.288551
-0.0102135
-0.287132
-0.0102891
-0.285607
-0.0102603
-0.284013
-0.0102722
-0.282297
-0.0104933
-0.280327
-0.0102956
-0.278214
-0.00845685
-0.276173
-0.00705896
-0.013225
-0.273797
-0.301704
-0.00622718
-0.3014
-0.00694854
-0.300903
-0.00764806
-0.300217
-0.00832229
-0.299344
-0.00896756
-0.298285
-0.0095801
-0.297043
-0.0101561
-0.295619
-0.0106915
-0.294013
-0.0111819
-0.292228
-0.0116225
-0.290267
-0.0120124
-0.288128
-0.0123521
-0.285796
-0.0126219
-0.283271
-0.0127854
-0.280626
-0.0129165
-0.2779
-0.0132198
-0.274887
-0.0133085
-0.271456
-0.0118875
-0.26796
-0.010555
-0.0165291
-0.264656
-0.305819
-0.0064145
-0.305372
-0.00739547
-0.304667
-0.00835271
-0.303706
-0.00928317
-0.30249
-0.0101837
-0.30102
-0.0110508
-0.299295
-0.0118809
-0.297316
-0.0126703
-0.295083
-0.0134147
-0.292597
-0.0141091
-0.289861
-0.0147485
-0.286883
-0.0153295
-0.283662
-0.0158435
-0.280186
-0.0162614
-0.276526
-0.0165758
-0.272847
-0.0168992
-0.268989
-0.0171662
-0.264387
-0.0164895
-0.259595
-0.0153474
-0.0206294
-0.255495
-0.308279
-0.307733
-0.306872
-0.305696
-0.304206
-0.302404
-0.300292
-0.297874
-0.295154
-0.292139
-0.28884
-0.285272
-0.281458
-0.277401
-0.273112
-0.26872
-0.264284
-0.25894
-0.252082
-0.250326
0.205049
-0.0206055
0.227993
-0.0229446
0.253045
-0.025051
0.28004
-0.0269956
0.308803
-0.0287631
0.3391
-0.0302971
0.370634
-0.0315338
0.403058
-0.0324242
0.435988
-0.0329297
0.469009
-0.0330208
0.501691
-0.0326822
0.533608
-0.0319168
0.564352
-0.0307446
0.593556
-0.0292039
0.620902
-0.0273452
0.646135
-0.0252331
0.66907
-0.0229355
0.689597
-0.0205272
0.707672
-0.0180748
0.723318
-0.0156461
0.736609
-0.0132908
0.747668
-0.011059
0.756644
-0.00897559
0.763715
-0.00707107
0.76906
-0.00534536
0.772873
-0.00381315
0.775328
-0.00245474
0.776601
-0.00127349
0.77684
-0.000238878
0.776184
0.000656801
0.774743
0.00144046
0.772603
0.00214058
0.769847
0.00275521
0.766489
0.00335787
0.762612
0.00387733
0.758146
0.00446628
0.753207
0.00493836
0.747673
0.00553409
0.741728
0.00594499
0.00638601
0.154887
-0.039214
0.175895
-0.0439518
0.199102
-0.0482588
0.224228
-0.0521214
0.251093
-0.0556275
0.279477
-0.0586817
0.309091
-0.0611472
0.339589
-0.0629229
0.370589
-0.0639294
0.401679
-0.064111
0.432441
-0.0634436
0.462464
-0.0619397
0.491364
-0.0596447
0.518798
-0.0566384
0.544477
-0.053024
0.568174
-0.0489303
0.58973
-0.0444909
0.609054
-0.0398513
0.626118
-0.035139
0.640956
-0.0304841
0.653643
-0.0259784
0.664303
-0.0217182
0.673072
-0.017745
0.680121
-0.0141202
0.68561
-0.0108342
0.689721
-0.00792393
0.692602
-0.00533592
0.694424
-0.00309578
0.695303
-0.00111747
0.695382
0.000577515
0.694734
0.00208855
0.693466
0.00340809
0.691612
0.00461006
0.68923
0.00573951
0.686335
0.00677254
0.682926
0.00787475
0.67904
0.00882458
0.674621
0.00995314
0.66978
0.0107862
0.0116882
0.0907674
-0.056895
0.110963
-0.0641474
0.13342
-0.0707159
0.157619
-0.0763198
0.183562
-0.0815707
0.211032
-0.086152
0.239692
-0.0898072
0.269158
-0.0923891
0.299016
-0.093787
0.328839
-0.0939343
0.358211
-0.0928154
0.386737
-0.0904656
0.41406
-0.0869674
0.439872
-0.0824506
0.463926
-0.0770781
0.48604
-0.0710444
0.506099
-0.0645498
0.524052
-0.0578047
0.539907
-0.0509934
0.55372
-0.0442978
0.565588
-0.0378459
0.575638
-0.0317681
0.584012
-0.0261189
0.59087
-0.0209786
0.596365
-0.0163295
0.600661
-0.0122196
0.603893
-0.00856758
0.606209
-0.00541203
0.607711
-0.0026198
0.608524
-0.000235326
0.608706
0.00190625
0.608353
0.00376195
0.607483
0.00548004
0.60615
0.00707225
0.604361
0.00856149
0.602102
0.0101334
0.599427
0.0114996
0.59622
0.0131602
0.59267
0.0143362
0.0157826
0.0285641
-0.0751077
0.0491469
-0.0847302
0.0719192
-0.0934882
0.0960628
-0.100463
0.122081
-0.107589
0.149573
-0.113644
0.178081
-0.118315
0.207161
-0.121469
0.236369
-0.122995
0.265277
-0.122843
0.293485
-0.121022
0.320623
-0.117604
0.346375
-0.112719
0.370481
-0.106557
0.392751
-0.0993473
0.413059
-0.0913523
0.431347
-0.082838
0.447617
-0.0740746
0.46192
-0.0652966
0.474348
-0.0567262
0.485023
-0.0485204
0.494085
-0.04083
0.501684
-0.033718
0.507976
-0.0272709
0.513109
-0.0214628
0.517231
-0.0163415
0.520467
-0.0118034
0.522944
-0.00788925
0.524753
-0.00442866
0.525997
-0.00147949
0.526725
0.00117871
0.527015
0.00347155
0.526876
0.00561903
0.526356
0.00759251
0.525447
0.00947105
0.524133
0.0114471
0.522463
0.0131692
0.520292
0.0153315
0.517848
0.0167803
0.0188205
-0.0258837
-0.0945249
-0.00445928
-0.106155
0.0193184
-0.117266
0.0439724
-0.125117
0.0707503
-0.134367
0.0987456
-0.141639
0.127426
-0.146996
0.156335
-0.150377
0.185037
-0.151697
0.213121
-0.150927
0.240208
-0.14811
0.265968
-0.143364
0.290128
-0.136879
0.312485
-0.128914
0.332907
-0.119769
0.351332
-0.109777
0.367762
-0.0992673
0.382248
-0.0885614
0.394888
-0.0779368
0.405807
-0.0676447
0.415149
-0.0578622
0.423068
-0.0487487
0.42972
-0.04037
0.435257
-0.0328082
0.439823
-0.0260286
0.44355
-0.0200691
0.446556
-0.0148093
0.448949
-0.0102818
0.450809
-0.00628928
0.452222
-0.00289247
0.453228
0.000172862
0.453891
0.0028082
0.45421
0.00529993
0.454229
0.00757358
0.453923
0.00977784
0.453284
0.0120853
0.452339
0.0141142
0.450943
0.0167276
0.449325
0.0183983
0.0210492
-0.0725682
-0.115403
-0.0500913
-0.128632
-0.0245912
-0.142766
0.000978769
-0.150687
0.0288588
-0.162247
0.05748
-0.17026
0.0863999
-0.175916
0.115186
-0.179164
0.143419
-0.179929
0.170702
-0.178211
0.196686
-0.174094
0.22108
-0.167758
0.243665
-0.159464
0.264298
-0.149547
0.282912
-0.138383
0.299507
-0.126372
0.314139
-0.1139
0.326911
-0.101333
0.337957
-0.0889829
0.347429
-0.0771172
0.355491
-0.0659239
0.362304
-0.0555611
0.368025
-0.0460914
0.372801
-0.0375845
0.376769
-0.0299961
0.380048
-0.0233477
0.382744
-0.0175057
0.38495
-0.0124877
0.386739
-0.00807792
0.388177
-0.00433142
0.389301
-0.000950905
0.390161
0.00194804
0.390749
0.00471252
0.391105
0.00721751
0.391186
0.00969656
0.391003
0.0122684
0.390544
0.0145731
0.389692
0.0175794
0.388645
0.0194458
0.0227032
-0.112126
-0.13802
-0.0885014
-0.152256
-0.0606476
-0.17062
-0.0338964
-0.177438
-0.00483796
-0.191306
0.0244173
-0.199516
0.0535962
-0.205095
0.0822686
-0.207836
0.110021
-0.207681
0.136482
-0.204672
0.161341
-0.198953
0.184362
-0.190778
0.205387
-0.180489
0.224338
-0.168499
0.241213
-0.155258
0.256069
-0.141228
0.269017
-0.126847
0.2802
-0.112516
0.289783
-0.098566
0.297939
-0.0852733
0.304842
-0.0728271
0.310656
-0.0613756
0.315538
-0.0509728
0.319624
-0.0416705
0.323041
-0.0334134
0.325896
-0.0262027
0.328285
-0.0198944
0.330284
-0.0144872
0.331959
-0.00975259
0.333362
-0.00573495
0.334523
-0.00211196
0.335483
0.000988963
0.336224
0.00397066
0.336788
0.00665379
0.337114
0.00937073
0.33723
0.0121523
0.337085
0.0147182
0.336603
0.0180614
0.335929
0.0201201
0.0239682
-0.144901
-0.162817
-0.120252
-0.176905
-0.0897385
-0.201133
-0.0615336
-0.205643
-0.0313545
-0.221485
-0.00147526
-0.229395
0.0279325
-0.234502
0.0564281
-0.236332
0.0836212
-0.234874
0.109185
-0.230235
0.132866
-0.222634
0.154491
-0.212403
0.173968
-0.199967
0.191286
-0.185817
0.206502
-0.170474
0.219729
-0.154455
0.231121
-0.13824
0.240855
-0.122251
0.249121
-0.106832
0.256104
-0.0922562
0.261983
-0.0787064
0.266921
-0.0663138
0.271068
-0.0551192
0.27455
-0.0451529
0.277484
-0.0363474
0.279964
-0.0286821
0.282073
-0.0220036
0.283876
-0.0162906
0.285429
-0.0113055
0.286774
-0.00707926
0.287932
-0.00327052
0.288936
-1.48017e-05
0.289764
0.00314227
0.290454
0.00596432
0.290931
0.00889373
0.291239
0.0118436
0.291289
0.0146682
0.291052
0.0182986
0.290609
0.0205635
0.0249793
-0.171175
-0.190511
-0.145683
-0.202398
-0.112693
-0.234123
-0.0827055
-0.23563
-0.0515421
-0.252648
-0.0210997
-0.259837
0.00842523
-0.264027
0.0366112
-0.264518
0.0631178
-0.261381
0.0876816
-0.254799
0.110117
-0.24507
0.130319
-0.232605
0.148264
-0.217912
0.164003
-0.201556
0.177649
-0.18412
0.189362
-0.166168
0.199332
-0.14821
0.207762
-0.130681
0.214856
-0.113925
0.220806
-0.0982061
0.225791
-0.0836917
0.229969
-0.0704919
0.233481
-0.0586306
0.236442
-0.0481147
0.238959
-0.0388637
0.241111
-0.0308342
0.242973
-0.0238655
0.244597
-0.017915
0.246031
-0.0127396
0.247307
-0.00835471
0.248441
-0.00440463
0.249456
-0.00103001
0.250328
0.00227091
0.251088
0.00520391
0.251653
0.00832853
0.25208
0.0114169
0.252243
0.0145048
0.252161
0.0183805
0.251848
0.0208766
0.0258306
-0.191496
-0.22201
-0.164991
-0.228903
-0.130176
-0.268938
-0.0981553
-0.267651
-0.0661788
-0.284624
-0.0353065
-0.29071
-0.00584448
-0.293489
0.0218544
-0.292217
0.0475217
-0.287048
0.0709703
-0.278248
0.0920892
-0.266188
0.110845
-0.251361
0.127279
-0.234346
0.1415
-0.215777
0.15367
-0.19629
0.163987
-0.176485
0.172668
-0.156891
0.179933
-0.137945
0.185992
-0.119985
0.19104
-0.103254
0.195251
-0.0879029
0.198775
-0.0740155
0.201741
-0.0615969
0.204256
-0.0506298
0.206413
-0.0410202
0.208281
-0.0327026
0.209925
-0.0255096
0.211388
-0.0193776
0.212708
-0.0140605
0.21391
-0.00955657
0.215006
-0.00550011
0.21601
-0.00203368
0.216893
0.00138712
0.217685
0.00441185
0.218294
0.00771968
0.218785
0.0109264
0.219004
0.0142851
0.219014
0.0183711
0.218762
0.0211288
0.0265852
-0.206844
-0.258029
-0.178469
-0.257278
-0.142647
-0.30476
-0.108602
-0.301696
-0.0759957
-0.317231
-0.044898
-0.321807
-0.0157241
-0.322663
0.0112852
-0.319226
0.0359504
-0.311714
0.0581686
-0.300466
0.0779067
-0.285927
0.0952008
-0.268655
0.110154
-0.249299
0.122925
-0.228548
0.133716
-0.207081
0.142755
-0.185523
0.150274
-0.16441
0.156504
-0.144175
0.161657
-0.125137
0.165922
-0.10752
0.169466
-0.0914472
0.172429
-0.0769783
0.17493
-0.0640975
0.177063
-0.0527628
0.17891
-0.0428676
0.180532
-0.0343249
0.181984
-0.0269615
0.1833
-0.0206937
0.184514
-0.0152737
0.185639
-0.0106823
0.186686
-0.00654693
0.187661
-0.00300875
0.188535
0.000513527
0.189329
0.00361759
0.189949
0.00709974
0.190463
0.0104122
0.190699
0.0140493
0.190754
0.0183164
0.190516
0.0213667
0.0272831
-0.21832
-0.298679
-0.186702
-0.288895
-0.150456
-0.341006
-0.114711
-0.337441
-0.0816882
-0.350254
-0.0506283
-0.352867
-0.0219896
-0.351302
0.00412074
-0.345336
0.0276252
-0.335218
0.0485089
-0.32135
0.0668158
-0.304233
0.0826477
-0.284487
0.096161
-0.262812
0.107557
-0.239944
0.117069
-0.216593
0.124942
-0.193397
0.131422
-0.17089
0.136738
-0.149491
0.141099
-0.129499
0.144688
-0.111109
0.147661
-0.0944197
0.150145
-0.0794626
0.152248
-0.0662009
0.154055
-0.0545697
0.155637
-0.0444495
0.157046
-0.0357336
0.158328
-0.0282438
0.159511
-0.0218769
0.160623
-0.0163851
0.161671
-0.0117308
0.162662
-0.00753786
0.163596
-0.00394247
0.164442
-0.000332864
0.165216
0.0028434
0.165824
0.00649257
0.166332
0.00990394
0.166556
0.0138249
0.166624
0.0182487
0.166371
0.0216199
0.0279481
-0.226582
-0.343361
-0.190535
-0.324943
-0.154028
-0.377513
-0.117109
-0.37436
-0.0839281
-0.383435
-0.0532053
-0.38359
-0.025349
-0.379158
-0.000336401
-0.370349
0.0218662
-0.357421
0.0413321
-0.340816
0.058178
-0.321079
0.0725637
-0.298872
0.0846909
-0.274939
0.0947938
-0.250047
0.103126
-0.224925
0.109944
-0.200215
0.115496
-0.176442
0.120009
-0.154004
0.123684
-0.133173
0.126691
-0.114116
0.129174
-0.0969032
0.131251
-0.0815391
0.133016
-0.0679664
0.134545
-0.0560984
0.135899
-0.0458035
0.137122
-0.0369569
0.138255
-0.0293761
0.139317
-0.0229396
0.140333
-0.0174004
0.141304
-0.0127022
0.142234
-0.00846805
0.143117
-0.00482562
0.143924
-0.00113954
0.144662
0.00210566
0.145239
0.00591518
0.14572
0.00942295
0.145915
0.0136296
0.145974
0.01819
0.145689
0.0219046
0.0285921
-0.231719
-0.390872
-0.19085
-0.365812
-0.15397
-0.414393
-0.116434
-0.411896
-0.0833715
-0.416497
-0.0532886
-0.413673
-0.0264448
-0.406002
-0.00270266
-0.394091
0.0180856
-0.378209
0.0360786
-0.358809
0.051458
-0.336459
0.0644327
-0.311847
0.0752397
-0.285746
0.0841363
-0.258944
0.0913887
-0.232178
0.097258
-0.206084
0.101988
-0.181172
0.105798
-0.157814
0.108878
-0.136252
0.111385
-0.116623
0.113452
-0.0989697
0.115182
-0.0832692
0.11666
-0.0694449
0.117952
-0.05739
0.11911
-0.0469619
0.120173
-0.0380194
0.121172
-0.0303757
0.122126
-0.0238931
0.123051
-0.0183252
0.123946
-0.0135979
0.124813
-0.0093346
0.125639
-0.00565203
0.126397
-0.00189771
0.127087
0.00141582
0.127623
0.00537907
0.128063
0.00898364
0.128219
0.0134738
0.128254
0.0181542
0.127932
0.0222275
0.0292195
-0.233666
-0.4395
-0.188391
-0.411087
-0.150991
-0.451793
-0.113324
-0.449563
-0.0806352
-0.449186
-0.0514708
-0.442837
-0.0258449
-0.431628
-0.00351257
-0.416424
0.0157832
-0.397505
0.0322793
-0.375305
0.0462124
-0.350392
0.05783
-0.323465
0.0673943
-0.295311
0.0751771
-0.266727
0.0814497
-0.23845
0.0864705
-0.211105
0.0904761
-0.185178
0.0936738
-0.161011
0.09624
-0.138819
0.0983198
-0.118703
0.100031
-0.100681
0.101467
-0.0847053
0.102702
-0.0706796
0.103792
-0.0584797
0.104782
-0.0479523
0.105705
-0.038942
0.106587
-0.0312579
0.107442
-0.0247478
0.108282
-0.0191655
0.109104
-0.01442
0.109906
-0.0101363
0.110672
-0.00641814
0.111376
-0.00260173
0.112011
0.000781093
0.112498
0.00489128
0.112887
0.00859476
0.112999
0.0133617
0.113005
0.0181486
0.112644
0.022588
0.0298297
-0.232579
-0.487193
-0.18371
-0.459956
-0.145693
-0.489811
-0.108309
-0.486946
-0.0762405
-0.481255
-0.0482457
-0.470832
-0.024021
-0.455853
-0.00320646
-0.437238
0.0145509
-0.415262
0.0295542
-0.390308
0.0420831
-0.36292
0.0524125
-0.333794
0.0608203
-0.303718
0.0675845
-0.273491
0.0729749
-0.24384
0.0772428
-0.215373
0.0806132
-0.188548
0.08328
-0.163678
0.0854053
-0.140944
0.0871204
-0.120418
0.0885305
-0.102091
0.0897173
-0.0858922
0.0907455
-0.0717078
0.0916632
-0.0593975
0.0925094
-0.0487985
0.0933105
-0.039743
0.0940889
-0.0320363
0.0948541
-0.025513
0.0956156
-0.019927
0.0963671
-0.0151716
0.0971043
-0.0108735
0.0978087
-0.00712252
0.0984555
-0.00324857
0.0990314
0.000205215
0.0994674
0.00445528
0.0998017
0.00826042
0.0998697
0.0132938
0.0998422
0.0181761
0.0994489
0.0229813
0.0304196
-0.228763
-0.532227
-0.177167
-0.511552
-0.138411
-0.528567
-0.101711
-0.523646
-0.0705725
-0.512393
-0.0439887
-0.497416
-0.021331
-0.47851
-0.00211794
-0.456451
0.0140799
-0.43146
0.0276147
-0.403843
0.0387955
-0.374101
0.0479139
-0.342913
0.0552544
-0.311059
0.0610941
-0.279331
0.0656958
-0.248442
0.0692995
-0.218977
0.0721162
-0.191365
0.074325
-0.165887
0.0760731
-0.142692
0.0774781
-0.121823
0.0786331
-0.103246
0.0796094
-0.0868685
0.0804626
-0.072561
0.0812341
-0.060169
0.0819565
-0.0495209
0.0826519
-0.0404384
0.0833384
-0.0327227
0.0840228
-0.0261974
0.0847113
-0.0206155
0.0853957
-0.015856
0.0860698
-0.0115476
0.0867127
-0.00776546
0.0873015
-0.00383731
0.0878175
-0.000310846
0.088201
0.0040718
0.0884802
0.00798124
0.0885066
0.0132673
0.0884466
0.0182361
0.0880281
0.0233998
0.030985
-0.222336
-0.574547
-0.168883
-0.565005
-0.129289
-0.568162
-0.0937285
-0.559206
-0.06393
-0.542192
-0.0389921
-0.522354
-0.0180427
-0.49946
-0.000490247
-0.474004
0.0141479
-0.446098
0.0262534
-0.415949
0.0361512
-0.383999
0.0441387
-0.3509
0.0504994
-0.31742
0.0555035
-0.284335
0.0594023
-0.252341
0.0624217
-0.221996
0.0647571
-0.1937
0.0665717
-0.167702
0.0679978
-0.144118
0.06914
-0.122965
0.0700794
-0.104186
0.070878
-0.0876671
0.0715833
-0.0732663
0.0722304
-0.0608161
0.0728466
-0.0501371
0.0734502
-0.041042
0.0740554
-0.0333279
0.0746669
-0.0268089
0.075288
-0.0212366
0.0759092
-0.0164772
0.0765224
-0.0121608
0.0771055
-0.00834857
0.077637
-0.00436875
0.0780944
-0.000768232
0.0784266
0.00373954
0.0786526
0.00775522
0.0786419
0.0132781
0.0785521
0.0183259
0.0781171
0.0238348
0.031522
-0.213078
-0.616963
-0.158941
-0.619142
-0.118602
-0.6085
-0.0847422
-0.593066
-0.0566694
-0.570265
-0.0335694
-0.545454
-0.014416
-0.518613
0.00145966
-0.489879
0.0145688
-0.459207
0.025305
-0.426685
0.0339966
-0.392691
0.0409382
-0.357842
0.0464058
-0.322887
0.0506583
-0.288587
0.0539327
-0.255615
0.0564389
-0.224502
0.0583558
-0.195617
0.0598309
-0.169177
0.0609818
-0.145269
0.0619006
-0.123884
0.0626576
-0.104943
0.0633059
-0.0883154
0.0638858
-0.0738462
0.064427
-0.0613572
0.0649518
-0.050662
0.0654753
-0.0415655
0.0660086
-0.0338611
0.0665544
-0.0273547
0.0671134
-0.0217956
0.0676755
-0.0170393
0.0682308
-0.0127162
0.0687567
-0.00887444
0.0692329
-0.00484491
0.0696342
-0.00116959
0.069918
0.00345578
0.0700946
0.00757864
0.0700519
0.0133207
0.0699365
0.0184413
0.0694937
0.0242776
0.0320271
-0.199281
-0.668009
-0.147713
-0.67071
-0.107496
-0.648717
-0.0755841
-0.624978
-0.0494351
-0.596414
-0.0282232
-0.566666
-0.0108362
-0.536
0.00342986
-0.504145
0.0150999
-0.470877
0.0245686
-0.436153
0.0321592
-0.400281
0.0381581
-0.363841
0.0428297
-0.327559
0.0464188
-0.292176
0.049147
-0.258344
0.0512078
-0.226563
0.0527639
-0.197174
0.0539479
-0.170361
0.0548642
-0.146185
0.055593
-0.124613
0.0561951
-0.105545
0.0567158
-0.0888362
0.0571889
-0.0743193
0.0576392
-0.0618074
0.0580849
-0.0511077
0.0585384
-0.042019
0.0590074
-0.0343302
0.0594939
-0.0278412
0.0599957
-0.0222974
0.0605029
-0.0175464
0.0610034
-0.0132167
0.0614755
-0.00934658
0.061899
-0.00526835
0.0622483
-0.00151886
0.062487
0.00321706
0.0626189
0.00744669
0.0625502
0.0133894
0.0624136
0.018578
0.0619705
0.0247206
0.0324975
0.0422841
-0.684182
0.0576175
-0.686044
0.0658788
-0.656978
0.0704251
-0.629525
0.072404
-0.598392
0.0726244
-0.566886
0.0715931
-0.534969
0.069592
-0.502144
0.0668475
-0.468133
0.0635557
-0.432862
0.0599129
-0.396639
0.056109
-0.360037
0.0523164
-0.323766
0.0486776
-0.288537
0.0452991
-0.254965
0.0422509
-0.223515
0.0395699
-0.194493
0.0372671
-0.168058
0.0353336
-0.144252
0.0337483
-0.123028
0.0324821
-0.104278
0.0315027
-0.0878568
0.0307769
-0.0735935
0.0302728
-0.0613033
0.02996
-0.0507949
0.029811
-0.04187
0.0297997
-0.0343189
0.0299025
-0.027944
0.0300965
-0.0224914
0.03036
-0.0178099
0.0306725
-0.0135292
0.0310127
-0.00968674
0.0313632
-0.00561892
0.0317047
-0.00186033
0.0320191
0.00290264
0.0323039
0.00716194
0.0325161
0.0131772
0.0327262
0.0183679
0.0328012
0.0246456
0.0323856
0.0460367
-0.704132
0.0585723
-0.698579
0.0659977
-0.664404
0.0697204
-0.633248
0.0713209
-0.599993
0.0713192
-0.566885
0.0701916
-0.533841
0.0681725
-0.500125
0.0654633
-0.465423
0.0622464
-0.429645
0.058707
-0.393099
0.0550252
-0.356355
0.051364
-0.320105
0.0478575
-0.285031
0.0446054
-0.251713
0.0416726
-0.220582
0.0390931
-0.191913
0.0368762
-0.165841
0.0350131
-0.142389
0.0334831
-0.121498
0.0322586
-0.103054
0.0313085
-0.0869067
0.0306012
-0.0728862
0.0301063
-0.0608085
0.0297947
-0.0504833
0.0296401
-0.0417154
0.0296171
-0.0342958
0.029703
-0.0280299
0.0298751
-0.0226635
0.030112
-0.0180469
0.0303934
-0.0138105
0.0306976
-0.00999099
0.0310077
-0.00592901
0.0313035
-0.00215608
0.0315684
0.00263775
0.0317979
0.00693236
0.0319531
0.0130221
0.0321023
0.0182186
0.0321144
0.0246335
0.032328
0.0457068
-0.723341
0.0571761
-0.710049
0.0644046
-0.671632
0.0679516
-0.636795
0.0695207
-0.601562
0.0695476
-0.566912
0.0684812
-0.532775
0.0665466
-0.49819
0.0639372
-0.462814
0.0608336
-0.426541
0.0574187
-0.389684
0.0538695
-0.352806
0.0503444
-0.31658
0.0469725
-0.281659
0.0438485
-0.248589
0.0410332
-0.217767
0.0385577
-0.189438
0.0364297
-0.163713
0.0346401
-0.140599
0.0331685
-0.120026
0.0319885
-0.101874
0.0310704
-0.0859886
0.0303841
-0.0722
0.0299007
-0.060325
0.0295924
-0.050175
0.0294342
-0.0415571
0.0294016
-0.0342633
0.0294726
-0.0281009
0.029625
-0.0228159
0.0298376
-0.0182595
0.0300901
-0.0140631
0.0303608
-0.0102617
0.0306331
-0.00620131
0.0308859
-0.00240891
0.0311045
0.00241915
0.0312824
0.00675445
0.0313846
0.0129199
0.0314775
0.0181257
0.0314322
0.0246788
0.0323197
0.0458947
-0.742053
0.0563442
-0.720498
0.0630534
-0.678341
0.0663146
-0.640056
0.0677532
-0.603001
0.0677622
-0.566921
0.0667317
-0.531744
0.0648726
-0.496331
0.0623634
-0.460305
0.0593788
-0.423557
0.0560958
-0.386401
0.0526859
-0.349396
0.0493016
-0.313196
0.0460667
-0.278424
0.0430711
-0.245593
0.0403722
-0.215068
0.0379988
-0.187064
0.0359577
-0.161672
0.0342395
-0.138881
0.0328247
-0.118611
0.0316879
-0.100737
0.0308009
-0.0851017
0.0301352
-0.0715342
0.0296633
-0.0598531
0.0293588
-0.0498706
0.0291977
-0.041396
0.0291566
-0.0342222
0.0292141
-0.0281583
0.0293484
-0.0229502
0.0295384
-0.0184496
0.0297642
-0.0142888
0.0300036
-0.0105011
0.0302405
-0.00643824
0.0304531
-0.00262152
0.0306284
0.00224382
0.0307581
0.00662479
0.0308113
0.0128666
0.0308522
0.0180849
0.0307548
0.0247762
0.0323557
0.0454673
-0.759749
0.0551769
-0.730208
0.0614625
-0.684627
0.0645475
-0.643141
0.065899
-0.604352
0.0659136
-0.566935
0.0649283
-0.530759
0.0631477
-0.494551
0.0607402
-0.457897
0.0578761
-0.420692
0.0547274
-0.383253
0.0514599
-0.346128
0.0482199
-0.309956
0.0451251
-0.275329
0.0422605
-0.242729
0.0396798
-0.212487
0.0374096
-0.184794
0.0354558
-0.159718
0.0338091
-0.137234
0.0324509
-0.117253
0.0313571
-0.0996431
0.0305011
-0.0842457
0.029856
-0.0708891
0.0293958
-0.0593929
0.0290956
-0.0495703
0.0289324
-0.0412329
0.0288839
-0.0341736
0.0289291
-0.0282035
0.0290468
-0.0230679
0.029216
-0.0186188
0.0294168
-0.0144896
0.029627
-0.0107113
0.0298309
-0.00664212
0.0300059
-0.00279653
0.0301409
0.00210883
0.0302256
0.00654011
0.0302338
0.0128584
0.0302267
0.018092
0.0300824
0.0249205
0.0324309
0.0449977
-0.776416
0.054024
-0.739234
0.0598359
-0.690439
0.0627386
-0.646043
0.0639965
-0.60561
0.0640139
-0.566953
0.0630739
-0.529819
0.0613723
-0.492849
0.0590675
-0.455593
0.0563252
-0.41795
0.0533121
-0.380239
0.0501883
-0.343005
0.0470939
-0.306861
0.0441406
-0.272376
0.0414086
-0.239997
0.0389476
-0.210026
0.0367822
-0.182629
0.0349171
-0.157853
0.0333433
-0.13566
0.0320429
-0.115953
0.0309931
-0.0985933
0.0301691
-0.0834217
0.0295455
-0.0702655
0.029098
-0.0589454
0.0288031
-0.0492754
0.028639
-0.0410688
0.0285843
-0.0341189
0.0286186
-0.0282379
0.0287213
-0.0231705
0.0288714
-0.0187689
0.0290491
-0.0146674
0.0292322
-0.0108943
0.0294052
-0.00681519
0.0295452
-0.00293645
0.0296426
0.00201134
0.0296856
0.00649717
0.0296526
0.0128913
0.0296017
0.018143
0.0294156
0.0251065
0.0325404
0.0443558
-0.79197
0.0527595
-0.747638
0.0581234
-0.695803
0.0608623
-0.648782
0.0620378
-0.606786
0.0620604
-0.566975
0.0611677
-0.528926
0.0595463
-0.491228
0.057346
-0.453392
0.0547271
-0.415331
0.0518512
-0.377364
0.0488724
-0.340026
0.0459246
-0.303913
0.0431137
-0.269565
0.040515
-0.237398
0.0381749
-0.207686
0.0361154
-0.180569
0.0343403
-0.156078
0.0328407
-0.134161
0.0315995
-0.114712
0.0305952
-0.097589
0.0298045
-0.082631
0.0292037
-0.0696648
0.0287702
-0.0585119
0.0284819
-0.0489871
0.0283183
-0.0409052
0.0282588
-0.0340594
0.0282838
-0.0282629
0.028373
-0.0232597
0.0285057
-0.0189016
0.0286622
-0.0148239
0.0288201
-0.0110522
0.0289646
-0.00695963
0.0290718
-0.00304372
0.0291346
0.00194863
0.0291389
0.00649285
0.0290684
0.0129618
0.0289775
0.0182339
0.0287547
0.0253294
0.0326795
0.0436234
-0.80639
0.0514253
-0.75544
0.0563502
-0.700728
0.0589261
-0.651358
0.060025
-0.607885
0.0600533
-0.567003
0.05921
-0.528083
0.0576704
-0.489688
0.0555766
-0.451298
0.0530833
-0.412838
0.0503465
-0.374627
0.0475141
-0.337193
0.044714
-0.301113
0.0420463
-0.266897
0.0395816
-0.234933
0.0373628
-0.205467
0.03541
-0.178616
0.033726
-0.154394
0.0323018
-0.132736
0.0311212
-0.113531
0.0301638
-0.0966316
0.0294079
-0.0818751
0.0288315
-0.0690883
0.0284134
-0.0580938
0.0281331
-0.0487068
0.0279713
-0.0407434
0.0279086
-0.0339966
0.0279258
-0.0282802
0.0280032
-0.0233371
0.0281201
-0.0190186
0.0282573
-0.014961
0.0283919
-0.0111869
0.0285098
-0.00707748
0.0285869
-0.00312076
0.0286175
0.00191799
0.0285862
0.00652409
0.0284819
0.0130662
0.0283549
0.0183609
0.0281001
0.0255842
0.0328437
0.0427899
-0.819653
0.0500049
-0.762655
0.0545118
-0.705234
0.0569276
-0.653774
0.0579576
-0.608915
0.0579927
-0.567038
0.0572012
-0.527291
0.0557455
-0.488232
0.0537606
-0.449314
0.0513953
-0.410473
0.0487998
-0.372031
0.0461155
-0.334509
0.0434642
-0.298462
0.0409403
-0.264374
0.03861
-0.232603
0.036513
-0.20337
0.0346675
-0.176771
0.0330753
-0.152801
0.0317277
-0.131389
0.0306089
-0.112412
0.0296998
-0.0957225
0.0289802
-0.0811555
0.0284296
-0.0685377
0.0280285
-0.0576927
0.0277578
-0.0484361
0.0275994
-0.040585
0.0275348
-0.0339321
0.0275458
-0.0282912
0.0276129
-0.0234042
0.0277159
-0.0191215
0.0278353
-0.0150805
0.0279486
-0.0113003
0.028042
-0.00717085
0.0280911
-0.00316984
0.0280922
0.0019169
0.0280284
0.00658793
0.0278936
0.013201
0.0277342
0.0185202
0.0274522
0.0258661
0.0330286
0.0418725
-0.831749
0.0485058
-0.769288
0.052613
-0.709342
0.0548689
-0.65603
0.055836
-0.609882
0.0558794
-0.567082
0.055142
-0.526554
0.0537727
-0.486863
0.0518995
-0.44744
0.049665
-0.408238
0.0472131
-0.369579
0.0446787
-0.331975
0.0421773
-0.29596
0.039798
-0.261994
0.0376025
-0.230408
0.0356276
-0.201395
0.0338896
-0.175033
0.0323899
-0.151302
0.0311196
-0.130118
0.0300637
-0.111356
0.0292043
-0.0948631
0.0285224
-0.0804736
0.0279992
-0.0680145
0.0276166
-0.0573101
0.027357
-0.0481765
0.0272036
-0.0404316
0.0271388
-0.0338673
0.0271451
-0.0282975
0.0272035
-0.0234626
0.027294
-0.019212
0.0273974
-0.0151839
0.0274913
-0.0113941
0.0275621
-0.00724168
0.0275855
-0.00319321
0.0275596
0.00194285
0.027466
0.00668146
0.0273042
0.0133628
0.0271161
0.0187083
0.0268115
0.0261707
0.0332299
0.0408753
-0.842669
0.0469287
-0.775341
0.0506545
-0.713068
0.0527511
-0.658127
0.0536608
-0.610791
0.0537142
-0.567135
0.0530336
-0.525873
0.0517535
-0.485583
0.0499952
-0.445682
0.0478944
-0.406137
0.0455885
-0.367273
0.043206
-0.329592
0.0408558
-0.29361
0.0386218
-0.25976
0.0365615
-0.228347
0.0347088
-0.199543
0.0330787
-0.173403
0.0316717
-0.149895
0.0304793
-0.128926
0.0294873
-0.110364
0.0286787
-0.0940545
0.0280359
-0.0798309
0.0275415
-0.0675201
0.027179
-0.0569476
0.0269321
-0.0479296
0.0267852
-0.0402847
0.0267217
-0.0338038
0.0267248
-0.0283006
0.0267761
-0.0235138
0.0268557
-0.0192916
0.0269448
-0.015273
0.027021
-0.0114703
0.0270712
-0.00729188
0.027071
-0.00319305
0.0270204
0.00199343
0.0269
0.00680188
0.0267144
0.0135484
0.0265011
0.0189217
0.0261783
0.0264934
0.0334435
0.0398059
-0.85241
0.0452779
-0.780813
0.0486385
-0.716428
0.0505764
-0.660064
0.0514329
-0.611648
0.0514986
-0.567201
0.0508775
-0.525252
0.0496897
-0.484395
0.0480496
-0.444042
0.0460857
-0.404173
0.0439285
-0.365116
0.0416997
-0.327363
0.039502
-0.291412
0.0374139
-0.257672
0.0354892
-0.226423
0.033759
-0.197813
0.0322368
-0.17188
0.0309229
-0.148581
0.0298089
-0.127812
0.0288814
-0.109437
0.0281246
-0.0932977
0.0275222
-0.0792284
0.027058
-0.067056
0.026717
-0.0566066
0.0264843
-0.0476969
0.0263453
-0.0401457
0.0262847
-0.0337431
0.0262862
-0.0283021
0.0263318
-0.0235595
0.0264022
-0.019362
0.0264785
-0.0153494
0.0265387
-0.0115304
0.0265701
-0.00732331
0.0265485
-0.00317146
0.0264757
0.00206629
0.0263311
0.00694642
0.0261249
0.0137546
0.0258897
0.0191569
0.0255531
0.0268301
0.0336657
0.0386694
-0.86097
0.0435571
-0.785701
0.0465665
-0.719437
0.0483467
-0.661845
0.0491534
-0.612455
0.0492338
-0.567281
0.0486751
-0.524694
0.0475833
-0.483303
0.0460648
-0.442524
0.044241
-0.402349
0.0422352
-0.36311
0.0401621
-0.32529
0.0381182
-0.289369
0.0361769
-0.255731
0.034388
-0.224634
0.0327804
-0.196205
0.0313663
-0.170466
0.0301456
-0.14736
0.0291104
-0.126777
0.028248
-0.108574
0.0275439
-0.0925936
0.0269828
-0.0786674
0.0265502
-0.0666233
0.0262321
-0.0562885
0.0260149
-0.0474797
0.0258855
-0.0400163
0.0258291
-0.0336868
0.0258304
-0.0283034
0.0258719
-0.023601
0.0259345
-0.0194246
0.0259997
-0.0154146
0.0260455
-0.0115762
0.0260599
-0.00733777
0.026019
-0.0031305
0.0259261
0.00215916
0.0257601
0.00711243
0.0255364
0.0139783
0.0252826
0.0194107
0.0249362
0.0271765
0.0338927
0.0374713
-0.868348
0.0417707
-0.79
0.0444406
-0.722107
0.0460643
-0.663468
0.0468239
-0.613214
0.0469216
-0.567379
0.0464285
-0.524201
0.0454361
-0.482311
0.0440431
-0.441131
0.0423627
-0.400669
0.0405111
-0.361259
0.0385958
-0.323375
0.036707
-0.28748
0.0349132
-0.253937
0.0332605
-0.222981
0.0317756
-0.19472
0.0304695
-0.16916
0.0293422
-0.146233
0.028386
-0.125821
0.0275893
-0.107778
0.0269385
-0.0919428
0.0264197
-0.0781486
0.0260196
-0.0662232
0.0257257
-0.0559945
0.0255255
-0.0472795
0.0254068
-0.0398977
0.0253562
-0.0336361
0.0253587
-0.028306
0.0253975
-0.0236398
0.0254538
-0.0194808
0.0255093
-0.0154701
0.0255424
-0.0116094
0.0255416
-0.007337
0.0254833
-0.00307216
0.0253726
0.00226984
0.0251878
0.0072973
0.0249494
0.0142167
0.0246802
0.0196798
0.024328
0.0275287
0.0341212
0.0362164
-0.874547
0.0399228
-0.793707
0.042263
-0.724448
0.0437315
-0.664937
0.044446
-0.613929
0.0445638
-0.567497
0.0441393
-0.523776
0.0432502
-0.481422
0.0419865
-0.439867
0.0404531
-0.399136
0.0387584
-0.359564
0.0370029
-0.32162
0.0352706
-0.285748
0.0336251
-0.252292
0.032109
-0.221465
0.0307469
-0.193358
0.0295489
-0.167962
0.0285149
-0.145199
0.027638
-0.124944
0.0269072
-0.107047
0.0263103
-0.0913459
0.0258347
-0.077673
0.0254681
-0.0658566
0.0251994
-0.0557258
0.0250174
-0.0470975
0.0249109
-0.0397912
0.0248673
-0.0335924
0.0248724
-0.0283111
0.0249099
-0.0236772
0.0249612
-0.0195321
0.0250085
-0.0155174
0.0250305
-0.0116314
0.0250162
-0.00732271
0.0249424
-0.00299839
0.0248161
0.00239619
0.0246149
0.0074985
0.0243647
0.0144669
0.0240833
0.0199613
0.0237289
0.0278831
0.0343478
0.0349096
-0.879572
0.0380181
-0.796815
0.0400357
-0.726465
0.0413505
-0.666252
0.0420215
-0.6146
0.0421622
-0.567638
0.0418098
-0.523424
0.0410278
-0.48064
0.0398972
-0.438736
0.0385143
-0.397753
0.0369795
-0.358029
0.0353859
-0.320026
0.0338114
-0.284173
0.0323149
-0.250795
0.0309358
-0.220086
0.0296966
-0.192119
0.0286068
-0.166872
0.0276662
-0.144258
0.0268685
-0.124146
0.026204
-0.106383
0.0256615
-0.0908033
0.0252296
-0.077241
0.0248974
-0.0655244
0.024655
-0.0554834
0.0244922
-0.0469348
0.0243991
-0.0396981
0.0243637
-0.0335571
0.0243727
-0.0283201
0.0244101
-0.0237146
0.0244578
-0.0195798
0.0244983
-0.0155579
0.0245107
-0.0116438
0.0244846
-0.00729654
0.0243973
-0.00291108
0.0242573
0.00253614
0.0240422
0.00771358
0.023783
0.0147261
0.0234922
0.0202521
0.0231393
0.0282359
0.0345695
0.0335553
-0.883428
0.036061
-0.799321
0.0377614
-0.728166
0.0389238
-0.667414
0.0395524
-0.615228
0.0397187
-0.567804
0.0394417
-0.523147
0.0387709
-0.479969
0.0377775
-0.437743
0.0365487
-0.396524
0.0351765
-0.356657
0.0337469
-0.318596
0.0323316
-0.282758
0.0309849
-0.249448
0.0297431
-0.218844
0.0286269
-0.191003
0.0276453
-0.165891
0.0267981
-0.143411
0.0260798
-0.123428
0.0254818
-0.105785
0.024994
-0.0903155
0.0246064
-0.0768534
0.0243093
-0.0652274
0.024094
-0.0552681
0.0239515
-0.0467923
0.0238728
-0.0396194
0.0238468
-0.0335311
0.0238608
-0.0283342
0.0238994
-0.0237531
0.0239448
-0.0196253
0.0239799
-0.015593
0.0239842
-0.0116481
0.0239477
-0.00726011
0.0238487
-0.00281204
0.0236972
0.00268766
0.0234706
0.00794017
0.0232049
0.0149918
0.0229076
0.0205494
0.0225596
0.0285839
0.0347836
0.0321574
-0.886124
0.0340556
-0.801219
0.0354425
-0.729553
0.0364537
-0.668425
0.0370407
-0.615815
0.0372351
-0.567998
0.037037
-0.522948
0.0364816
-0.479414
0.0356294
-0.436891
0.0345582
-0.395453
0.0333516
-0.355451
0.032088
-0.317333
0.0308333
-0.281503
0.0296372
-0.248252
0.028533
-0.21774
0.0275401
-0.19001
0.0266667
-0.165017
0.0259129
-0.142657
0.0252741
-0.122789
0.0247427
-0.105253
0.0243099
-0.0898827
0.0239669
-0.0765105
0.0237056
-0.064966
0.0235181
-0.0550806
0.0233968
-0.046671
0.0233334
-0.039556
0.0233179
-0.0335155
0.0233381
-0.0283544
0.0233789
-0.023794
0.0234233
-0.0196696
0.0234542
-0.0156239
0.0234518
-0.0116456
0.0234067
-0.00721496
0.0232977
-0.00270307
0.0231365
0.00284882
0.0229008
0.00817595
0.0226311
0.0152615
0.02233
0.0208505
0.02199
0.0289238
0.0349873
0.0307188
-0.887669
0.0320057
-0.802506
0.0330816
-0.730628
0.0339423
-0.669286
0.0344882
-0.616361
0.0347134
-0.568223
0.0345977
-0.522833
0.0341616
-0.478978
0.0334546
-0.436184
0.0325447
-0.394543
0.0315066
-0.354412
0.0304112
-0.316237
0.0293185
-0.28041
0.0282738
-0.247207
0.0273078
-0.216774
0.0264382
-0.18914
0.025673
-0.164252
0.0250126
-0.141997
0.0244533
-0.12223
0.0239886
-0.104788
0.0236111
-0.0895051
0.0233132
-0.0762126
0.023088
-0.0647408
0.022929
-0.0549216
0.0228296
-0.0465715
0.0227825
-0.0395089
0.0227783
-0.0335114
0.0228057
-0.0283817
0.0228499
-0.0238383
0.0228944
-0.0197141
0.0229224
-0.015652
0.0229146
-0.0116379
0.0228623
-0.0071626
0.0227451
-0.00258589
0.0225762
0.00301771
0.0223334
0.0084187
0.0220621
0.0155328
0.0217599
0.0211528
0.0214309
0.0292528
0.0351784
0.0292437
0.0299151
0.0306808
0.0313919
0.031897
0.0321551
0.0321254
0.0318127
0.0312551
0.0305101
0.0296433
0.0287183
0.0277889
0.0268965
0.0260691
0.0253232
0.0246662
0.0240994
0.0236196
0.0232217
0.0228995
0.022647
0.0224584
0.0223285
0.0222516
0.0222214
0.0222295
0.0222649
0.0223135
0.0223591
0.0223854
0.0223736
0.0223155
0.0221918
0.022017
0.0217694
0.0214988
0.0211978
0.0208826
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
80
(
-0.0640882
-0.0689537
-0.0741762
-0.079791
-0.0858303
-0.092326
-0.0993122
-0.106826
-0.114906
-0.123597
-0.132943
-0.142995
-0.153806
-0.165433
-0.177939
-0.191392
-0.205862
-0.22143
-0.238178
-0.256199
-0.0353762
-0.0353731
-0.0353701
-0.0353674
-0.0353648
-0.0353627
-0.0353609
-0.0353595
-0.0353586
-0.0353581
-0.0353583
-0.0353589
-0.0353601
-0.0353619
-0.0353643
-0.0353673
-0.0353709
-0.0353752
-0.0353806
-0.035388
-0.0353561
-0.0353668
-0.0353747
-0.0353809
-0.0353859
-0.03539
-0.0353932
-0.0353956
-0.0353972
-0.0353982
-0.0353984
-0.035398
-0.035397
-0.0353955
-0.0353936
-0.0353912
-0.0353886
-0.0353857
-0.0353826
-0.0353794
-0.25573
-0.237724
-0.220978
-0.205408
-0.190934
-0.177481
-0.164979
-0.153361
-0.142566
-0.132535
-0.123213
-0.11455
-0.106499
-0.0990158
-0.0920595
-0.0855929
-0.0795812
-0.0739922
-0.0687975
-0.0639769
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
80
(
0.0222751
0.0229948
0.0236877
0.0243509
0.0249829
0.0255836
0.0261555
0.026704
0.0272388
0.027775
0.0283346
0.0289472
0.029651
0.0304916
0.03152
0.0327889
0.0343475
0.0362377
0.0384937
0.0411504
0.020186
0.0196787
0.0191844
0.0187032
0.0182351
0.01778
0.0173378
0.0169085
0.0164919
0.0160878
0.0156962
0.0153169
0.0149496
0.0145941
0.0142503
0.013918
0.0135967
0.0132864
0.0129867
0.0126975
0.0329131
0.032172
0.0314405
0.0307188
0.0300072
0.0293061
0.0286155
0.0279359
0.0272674
0.0266102
0.0259647
0.0253309
0.0247091
0.0240996
0.0235023
0.0229176
0.0223455
0.0217863
0.0212399
0.0207064
0.735342
0.664478
0.588576
0.51481
0.447097
0.386991
0.334664
0.289598
0.250997
0.218007
0.189818
0.165706
0.145045
0.127304
0.112034
0.098859
0.0874627
0.0775802
0.0689885
0.0615001
)
;
}
top
{
type symmetryPlane;
value uniform 0;
}
bottom
{
type symmetryPlane;
value uniform 0;
}
cylinder
{
type calculated;
value nonuniform List<scalar>
160
(
-3.55477e-19
-2.44659e-18
-2.00417e-19
-6.98121e-18
-1.43791e-18
1.59738e-19
3.26729e-18
1.1605e-17
1.6196e-18
-7.71145e-18
-1.33409e-17
5.71819e-18
2.41655e-18
2.04094e-17
4.60473e-19
1.88401e-17
-4.18061e-18
9.81837e-18
1.02319e-17
1.01716e-17
2.50946e-19
-1.64731e-18
4.48548e-19
-3.24812e-18
-1.39116e-18
1.44939e-18
-9.543e-18
-7.40121e-18
-1.25764e-17
-3.83746e-18
1.3212e-17
-3.94306e-18
5.22101e-18
-1.42162e-17
-7.51994e-18
-3.12486e-17
-2.95775e-18
1.5962e-17
9.42446e-18
-4.50616e-18
8.10865e-18
-9.42446e-18
6.14611e-18
1.64013e-17
1.91498e-17
-1.44566e-18
1.42162e-17
1.12097e-17
2.04897e-17
-1.3212e-17
3.83746e-18
7.66928e-18
1.11552e-17
9.543e-18
-1.44939e-18
1.39116e-18
3.24812e-18
-4.48548e-19
2.44002e-19
-8.34906e-20
-1.15696e-18
2.44659e-18
2.00417e-19
6.98121e-18
1.43791e-18
-1.59738e-19
-3.26729e-18
-2.54828e-17
-1.6196e-18
-6.16634e-18
1.33409e-17
-5.71819e-18
-3.92024e-18
-2.04094e-17
-2.08623e-18
-1.79734e-17
4.24418e-18
1.79372e-17
-1.02319e-17
-1.01716e-17
7.57466e-18
1.02319e-17
9.81837e-18
2.36385e-17
1.88401e-17
4.60473e-19
2.04094e-17
2.41655e-18
2.09041e-18
-1.33409e-17
6.16634e-18
-9.78451e-19
1.1605e-17
3.26729e-18
1.59738e-19
-1.43791e-18
-6.98121e-18
-2.00417e-19
-1.15306e-18
2.89595e-19
-4.50616e-18
9.42446e-18
-1.17936e-17
-2.95775e-18
-1.91498e-17
-7.51994e-18
-1.42162e-17
-1.12097e-17
-3.94306e-18
-6.65782e-19
-1.8886e-17
-1.25764e-17
-1.11552e-17
-9.543e-18
1.44939e-18
-1.39116e-18
-3.24812e-18
4.48548e-19
-1.64731e-18
2.50946e-19
-8.34906e-20
1.64731e-18
-4.48548e-19
3.24812e-18
1.39116e-18
-1.44939e-18
9.543e-18
1.11552e-17
1.25764e-17
1.8886e-17
6.65782e-19
3.94306e-18
1.12097e-17
1.42162e-17
-1.44566e-18
1.91498e-17
9.67952e-18
6.14611e-18
-9.42446e-18
4.50616e-18
-1.01716e-17
-1.02319e-17
-9.03609e-18
4.24418e-18
-1.88401e-17
-2.08623e-18
-2.04094e-17
-2.41655e-18
-5.71819e-18
-2.63688e-18
7.71145e-18
-1.6196e-18
-1.1605e-17
-3.26729e-18
-1.59738e-19
1.43791e-18
6.98121e-18
2.00417e-19
2.44659e-18
-1.15696e-18
)
;
}
frontandback
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
|
|
bc874e2c52a157ac224cfc4a3a072a0b9d4c66bc
|
de8174218e5218c463733e26528758face8ee9d0
|
/vnoj/qbbuild.cpp
|
949128ed309fdde5c7f6059005a4b4d9b1b68c9b
|
[
"MIT"
] |
permissive
|
tiozo/Training
|
297552c72ef366abaf0c52b0b0d3d53c1b2bd4b1
|
02cc8c4fcf68e07c16520fd05fcbfa524c171b6b
|
refs/heads/main
| 2023-07-18T09:53:21.049680
| 2021-09-05T23:58:38
| 2021-09-05T23:58:38
| 400,692,883
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,250
|
cpp
|
qbbuild.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
int N; cin >> N;
vector<int> s(4,0);
cin >> s[0] >> s[1] >> s[2] >> s[3];
vector<vector<int>> d(N+1,vector<int>(N+1));
//vector<vector<pair<int,int>>> a(N+1);
for (int i=1;i<=N;++i) {
for (int j=1;j<=N;++j) {
if (i!=j) d[i][j] = 1e9;
else d[i][j] = 0;
}
}
{
int u,v,c;
while (cin >> u >> v >> c) {
if (d[u][v]>c) {
d[u][v]=c;
d[v][u]=c;
}
}
}
for (int k=1;k<=N;++k) {
for (int i=1;i<=N;++i) {
if (d[i][k]<1e9) {
for (int j=1;j<=N;++j) {
if (d[k][j]<1e9) {
d[i][j] = min(d[i][j],d[i][k]+d[k][j]);
}
}
}
}
}
//sort(s.begin(),s.end());
int res = 1e9;
do {
for (int u = 1;u<=N;++u) {
for (int v=1;v<=N;++v) {
res = min(res,d[u][s[0]]+d[u][s[1]]+d[v][s[2]]+d[v][s[3]]+d[u][v]);
}
}
} while (next_permutation(s.begin(),s.end()));
cout << res;
return 0;
}
|
036c0ef81e616c35b610dd464ee5e5b18548b361
|
62173ccb4b528665dd845394cf6e1ee16d070378
|
/PXLReader.h
|
8eb01757aa43a39252074940eec3e78eecb649e4
|
[
"MIT"
] |
permissive
|
joelbyford/PocketExcelHelpers
|
025cd9bc22cb79822c437b3d2cb745cbf1b0ef98
|
2806f1121c1be180e60ea1b1138654a7cc2441b7
|
refs/heads/master
| 2020-06-30T17:49:25.493565
| 2019-12-09T21:20:19
| 2019-12-09T21:20:19
| 200,901,249
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,859
|
h
|
PXLReader.h
|
// PXLReader.h: interface for the CPXLReader class.
//
//////////////////////////////////////////////////////////////////////
#if
!defined(AFX_PXLREADER_H__C0A20116_6BD3_4A98_84E4_96BFA477D44E__INCLUDED_)
#define AFX_PXLREADER_H__C0A20116_6BD3_4A98_84E4_96BFA477D44E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "pxltypes.h"
#include "stdio.h"
class CPXLReader
{
public:
BOOL _EOF(void);
DWORD ExportToCSV(TCHAR *szSourceFileName, TCHAR *szDestFileName);
DWORD ExportToCSV(TCHAR *szFileName);
void CloseFile(void);
DWORD OpenPXLFile(TCHAR *szFileName);
CPXLReader();
virtual ~CPXLReader();
private:
BOOL m_bEOF;
double m_fVal;
WCHAR m_szExtraData[MAX_PATH];
WCHAR m_szRecordData[MAX_PATH];
BYTE m_bCurrOpCode;
DWORD GetNextRecord(void);
BOOL FileExists(LPCTSTR szFileName);
BOOL CheckFileHandle(void);
DWORD m_dwRead;
DWORD m_dwWritten;
HANDLE m_hInFile;
PXL_BLANK m_pxlBlank;
PXL_BOF m_pxlBOF;
PXL_BOOLERR m_pxlBoolErr;
PXL_BOUNDSHEET m_pxlBoundSheet;
PXL_COLINFO m_pxlColInfo;
PXL_DEFAULTROWHEIGHT m_pxlDefaultRowHeight;
PXL_DEFCOLWIDTH m_pxlDefaultColumnWidth;
PXL_EOF m_pxlEOF;
PXL_FILEPASS m_pxlFilePass;
PXL_FONT m_pxlFont;
PXL_FORMAT m_pxlFormat;
PXL_FORMATCOUNT m_pxlFormatCount;
PXL_FORMULA m_pxlFormula;
PXL_LABEL m_pxlLabel;
PXL_NAME m_pxlName;
PXL_NUMBER m_pxlNumber;
PXL_PANE m_pxlPane;
PXL_ROW m_pxlRow;
PXL_SELECTION m_pxlSelection;
PXL_STRING m_pxlString;
PXL_WINDOW2 m_pxlWindow2;
PXL_XF m_pxlXF;
PXL_CODEPAGE m_pxlCodepage;
PXL_COUNTRY m_pxlCountry;
PXL_WINDOW1 m_pxlWindow;
};
#endif //
!defined(AFX_PXLREADER_H__C0A20116_6BD3_4A98_84E4_96BFA477D44E__INCLUDED_)
|
8dad227c5bedaeaf8bb8e416525feed1b4fb4c19
|
a096f8a2f3e63dd9d19269e7e5570dd5b97fa4e8
|
/Interviewbit/Stacks&Queues/SlidingWindowMax.cpp
|
5641676299706bacff952e763739e701fdacb91d
|
[] |
no_license
|
hbatra21/Interview-Preparation
|
eadb9ae06a7a1e918d95bdd80927efac9c4842fb
|
717d75bad14ea9a485a5885abb4401336fe38a97
|
refs/heads/master
| 2020-09-27T22:51:32.477301
| 2020-07-12T09:37:36
| 2020-07-12T09:37:36
| 226,628,721
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 581
|
cpp
|
SlidingWindowMax.cpp
|
vector<int> Solution::slidingMaximum(const vector<int> &A, int B) {
vector<int> ans;
deque<int> q;
int i = 0;
while(i < B){
while(!q.empty() && A[i] >= A[q.back()]){
q.pop_back();
}
q.push_back(i);
i++;
}
ans.push_back(A[q.front()]);
while(i < A.size()){
if(i - q.front() >= B){
q.pop_front();
}
while(!q.empty() && A[i] >= A[q.back()]){
q.pop_back();
}
q.push_back(i);
ans.push_back(A[q.front()]);
i++;
}
return ans;
}
|
ef10951219e461d8989b0862e003ebfa63eeb875
|
890d5726b888893e76099e484a04095c09b45b27
|
/Software/cpp/ardrone_slam/terrain3d/include/.svn/text-base/CTerrain.h.svn-base
|
3a536d104cca4074106ea42d352e1ec78aba716d
|
[] |
no_license
|
janusace/UvA-BachelorAI-Thesis
|
a1356d462adef2375ce28a1ba7bdcd63e659ea61
|
3f923607885e4e257f6b1baa2c13b2459dd0beb3
|
refs/heads/master
| 2021-01-18T10:44:35.883496
| 2012-07-27T11:17:48
| 2012-07-27T11:17:48
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,175
|
CTerrain.h.svn-base
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Title : CTerrain.h
Author : Chad Vernon
URL : http://www.c-unit.com
Description : Terrain class
Created : 08/11/2005
Modified : 12/05/2005
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef CTERRAIN_H
#define CTERRAIN_H
#include "stdafx.h"
#include "CWorldTransform.h"
#include "CTriangleStripPlane.h"
#include "CUtility.h"
#include "CVertexBuffer.h"
#include "CIndexBuffer.h"
#include "CustomVertex.h"
class CTerrain : public CWorldTransform
{
public:
CTerrain();
~CTerrain() { Release(); }
BOOL Initialize( LPDIRECT3DDEVICE9 pDevice, short* map, UINT w, UINT h, byte* texture );
void Render( LPDIRECT3DDEVICE9 pDevice);
void Release();
void update_elevation_map( LPDIRECT3DDEVICE9 pDevice, short* map, UINT w, UINT h, int* roi);
void update_texture(byte* texture, int* roi);
private:
CVertexBuffer m_vb;
CIndexBuffer m_ib;
LPDIRECT3DTEXTURE9 m_pTexture;
short* m_pHeight;
UINT m_numVertices;
UINT m_numIndices;
cuCustomVertex::PositionTextured* pVertices;
};
#endif
|
|
a4cbe5fb1922b1ec423c26dc0f10731bc01ab3ee
|
dbc5fd6f0b741d07aca08cff31fe88d2f62e8483
|
/tools/clang/test/zapcc/multi/cxx-pure-virtual/file1.cpp
|
1c628f4ceb11f9ed88b3dcee87743ca2037fd5a9
|
[
"LicenseRef-scancode-unknown-license-reference",
"NCSA"
] |
permissive
|
yrnkrn/zapcc
|
647246a2ed860f73adb49fa1bd21333d972ff76b
|
c6a8aa30006d997eff0d60fd37b0e62b8aa0ea50
|
refs/heads/master
| 2023-03-08T22:55:12.842122
| 2020-07-21T10:21:59
| 2020-07-21T10:21:59
| 137,340,494
| 1,255
| 88
|
NOASSERTION
| 2020-07-21T10:22:01
| 2018-06-14T10:00:31
|
C++
|
UTF-8
|
C++
| false
| false
| 54
|
cpp
|
file1.cpp
|
#include "f.h"
int main() { error_info_injector(); }
|
0b528abf1c0af69cb167332ddfa135c2f0e250a0
|
dd6147bf9433298a64bbceb7fdccaa4cc477fba6
|
/8381/Maria_Lisok/lr5/code/command/basecommand.h
|
69d6c85908eff6e63b428837ff1fa42a1dd9ef86
|
[] |
no_license
|
moevm/oop
|
64a89677879341a3e8e91ba6d719ab598dcabb49
|
faffa7e14003b13c658ccf8853d6189b51ee30e6
|
refs/heads/master
| 2023-03-16T15:48:35.226647
| 2020-06-08T16:16:31
| 2020-06-08T16:16:31
| 85,785,460
| 42
| 304
| null | 2023-03-06T23:46:08
| 2017-03-22T04:37:01
|
C++
|
UTF-8
|
C++
| false
| false
| 415
|
h
|
basecommand.h
|
#ifndef BASECOMMAND_H
#define BASECOMMAND_H
#include "command.h"
#include "Base/base.h"
class BaseCommand : public Command
{
private:
map<string, int> baseInfo();
map<string, int> unitAdd();
protected:
map<string, int> noSuchAct();
Base* base;
public:
BaseCommand(Base* base, Actions action, map<string, Data > param);
map<string, int> mainInfoAboutObj();
};
#endif // BASECOMMAND_H
|
a03b2a8cecede6a36a66bad7968ce4fa14d4de05
|
3fac71bec2301a7d50c8eaf89fafa238a0bce189
|
/extractORBFeatures.cpp
|
17ca53c20c8eaa92a76be0be6be7a04f8218bd9f
|
[] |
no_license
|
ayush0209/video_stabilizer
|
57fef44549abf01531cf5cc92a4ff76f591ff72e
|
1c39c23c1266da87a972d9bc265a967e47f06fd8
|
refs/heads/master
| 2020-04-11T23:33:12.413826
| 2018-12-25T14:25:56
| 2018-12-25T14:25:56
| 162,171,517
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 837
|
cpp
|
extractORBFeatures.cpp
|
#include "opencvmex.hpp"
using namespace cv;
void checkInputs(int nrhs, const mxArray *prhs[])
{
if (nrhs != 2)
{
mexErrMsgTxt("Incorrect number of inputs. Function expects 2 inputs.");
}
if (!mxIsUint8(prhs[0]))
{
mexErrMsgTxt("Input image must be uint8.");
}
}
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
checkInputs(nrhs, prhs);
cv::Ptr<cv::Mat> img = ocvMxArrayToImage_uint8(prhs[0], true);
std::vector<KeyPoint> keypoints;
ocvStructToKeyPoints(prhs[1], keypoints);
Ptr<ORB> orbDescriptor = ORB::create();
Mat descriptors;
orbDescriptor->compute(*img, keypoints, descriptors);
plhs[0] = ocvMxArrayFromImage_uint8(descriptors);
plhs[1] = ocvKeyPointsToStruct(keypoints);
}
|
17251ad5fe6c0656c7989a60e335aeb5dc16bf07
|
e8efaf374dce8ffb9d369b638a55e76e89376c2d
|
/testMode/src/GetDistanceOf2linesIn3D.h
|
07d1d7c1813ea2d8c8e092e76d325bb8be66b94e
|
[] |
no_license
|
Yangxiu123321/solvePNP
|
d636521fd094ad47dbbc037bc266f6ead4de6c1b
|
a5ac52d879b87776a8f902d988ab4ed9e296d03d
|
refs/heads/master
| 2020-03-25T11:10:32.547315
| 2018-08-16T14:21:12
| 2018-08-16T14:21:12
| 143,721,949
| 1
| 1
| null | null | null | null |
GB18030
|
C++
| false
| false
| 3,361
|
h
|
GetDistanceOf2linesIn3D.h
|
#include <math.h>
//用于求解两条空间直线的最近距离,以及他们最近的两点坐标
//author @VShawn
//url:http://www.cnblogs.com/singlex/p/6091659.html
//ver:2016.11.22.0
class GetDistanceOf2linesIn3D
{
public:
//输入直线A的两个点,以便获得A的方程
void SetLineA(double A1x, double A1y, double A1z, double A2x, double A2y, double A2z)
{
a1_x = A1x;
a1_y = A1y;
a1_z = A1z;
a2_x = A2x;
a2_y = A2y;
a2_z = A2z;
}
//输入直线B的两个点,以便获得B的方程
void SetLineB(double B1x, double B1y, double B1z, double B2x, double B2y, double B2z)
{
b1_x = B1x;
b1_y = B1y;
b1_z = B1z;
b2_x = B2x;
b2_y = B2y;
b2_z = B2z;
}
//用SetLineA、SetLineB输入A、B方程后
//调用本函数解出结果
void GetDistance()
{
//方法来自:http://blog.csdn.net/pi9nc/article/details/11820545
double d1_x = a2_x - a1_x;
double d1_y = a2_y - a1_y;
double d1_z = a2_z - a1_z;
double d2_x = b2_x - b1_x;
double d2_y = b2_y - b1_y;
double d2_z = b2_z - b1_z;
double e_x = b1_x - a1_x;
double e_y = b1_y - a1_y;
double e_z = b1_z - a1_z;
double cross_e_d2_x, cross_e_d2_y, cross_e_d2_z;
cross(e_x, e_y, e_z, d2_x, d2_y, d2_z, cross_e_d2_x, cross_e_d2_y, cross_e_d2_z);
double cross_e_d1_x, cross_e_d1_y, cross_e_d1_z;
cross(e_x, e_y, e_z, d1_x, d1_y, d1_z, cross_e_d1_x, cross_e_d1_y, cross_e_d1_z);
double cross_d1_d2_x, cross_d1_d2_y, cross_d1_d2_z;
cross(d1_x, d1_y, d1_z, d2_x, d2_y, d2_z, cross_d1_d2_x, cross_d1_d2_y, cross_d1_d2_z);
double t1, t2;
t1 = dot(cross_e_d2_x, cross_e_d2_y, cross_e_d2_z, cross_d1_d2_x, cross_d1_d2_y, cross_d1_d2_z);
t2 = dot(cross_e_d1_x, cross_e_d1_y, cross_e_d1_z, cross_d1_d2_x, cross_d1_d2_y, cross_d1_d2_z);
double dd = norm(cross_d1_d2_x, cross_d1_d2_y, cross_d1_d2_z);
t1 /= dd*dd;
t2 /= dd*dd;
//得到最近的位置
PonA_x = (a1_x + (a2_x - a1_x)*t1);
PonA_y = (a1_y + (a2_y - a1_y)*t1);
PonA_z = (a1_z + (a2_z - a1_z)*t1);
PonB_x = (b1_x + (b2_x - b1_x)*t2);
PonB_y = (b1_y + (b2_y - b1_y)*t2);
PonB_z = (b1_z + (b2_z - b1_z)*t2);
distance = norm(PonB_x - PonA_x, PonB_y - PonA_y, PonB_z - PonA_z);
}
double PonA_x;//两直线最近点之A线上的点的x坐标
double PonA_y;//两直线最近点之A线上的点的y坐标
double PonA_z;//两直线最近点之A线上的点的z坐标
double PonB_x;//两直线最近点之B线上的点的x坐标
double PonB_y;//两直线最近点之B线上的点的y坐标
double PonB_z;//两直线最近点之B线上的点的z坐标
double distance;//两直线距离
private:
//直线A的第一个点
double a1_x;
double a1_y;
double a1_z;
//直线A的第二个点
double a2_x;
double a2_y;
double a2_z;
//直线B的第一个点
double b1_x;
double b1_y;
double b1_z;
//直线B的第二个点
double b2_x;
double b2_y;
double b2_z;
//点乘
double dot(double ax, double ay, double az, double bx, double by, double bz) { return ax*bx + ay*by + az*bz; }
//向量叉乘得到法向量,最后三个参数为输出参数
void cross(double ax, double ay, double az, double bx, double by, double bz, double& x, double& y, double& z)
{
x = ay*bz - az*by;
y = az*bx - ax*bz;
z = ax*by - ay*bx;
}
//向量取模
double norm(double ax, double ay, double az) { return sqrt(dot(ax, ay, az, ax, ay, az)); }
};
|
d03e68f4f63638ae8a62d6d4c88bc10e252ecbcb
|
851dd8d8889d17cafe01c77f17284101eb72263a
|
/TP2018/T11/Z1/main.cpp
|
ac3c8e1e4e15c9257151731f22c44c3ea1df0d0a
|
[] |
no_license
|
bsuljic1/Programming-techniques
|
8e20bb92e5372846b358418ecf449f4048dc84d4
|
7640ed6f7b33bbefbd98b5804b03082ef02d990e
|
refs/heads/master
| 2023-02-22T09:02:18.978776
| 2021-01-31T15:22:47
| 2021-01-31T15:22:47
| 334,685,826
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 524
|
cpp
|
main.cpp
|
/*
TP 16/17 (Tutorijal 11, Zadatak 1)
Autotestove napisao Haris Hasic. Sve primjedbe/zalbe, sugestije
i pitanja slati na mail: hhasic2@etf.unsa.ba.
Vrsit ce se provjera na prepisivanje tutorijala (na kraju semestra)
*/
#include <iostream>
class NeobicnaKlasa
{
int broj;
public:
explicit NeobicnaKlasa(int x) : broj(x)
{
std::cout << "Direktna inicijalizacija" << std::endl;
}
NeobicnaKlasa(double x)
{
broj = x;
std::cout << "Kopirajuca inicijalizacija" << std::endl;
}
};
int main ()
{
return 0;
}
|
6ccbb3cec54e52e60375fbc524c76f12a6565415
|
d7985389af99b8b9e25c79a6648991aae2c290fb
|
/src/client.h
|
82910cad0f93f66a2840b0097e1cbc66263b1899
|
[
"MIT"
] |
permissive
|
nurupo/qt-nfk-planet
|
1f786fcf4133b1efdb3ed7e8e6c0f15312c4e9cd
|
66261c4c2ac2c7a45a622135692a9065e1419993
|
refs/heads/master
| 2016-09-05T17:58:24.615976
| 2014-05-08T05:39:50
| 2014-05-08T05:45:01
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,686
|
h
|
client.h
|
/**
* Copyright (c) 2014 Maxim Biro <nurupo.contributions@gmail.com>
*
* 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.
*/
#ifndef CLIENT_H
#define CLIENT_H
#include <QMetaType>
#include <QtGlobal>
#include <QQueue>
class QTcpSocket;
class Server;
class Client
{
public:
QTcpSocket *sock;
int version;
qint64 lastPinged;
Server *server;
void addPenalty(int value);
bool isPenaltyLimitReached();
private:
struct Penalty {
Penalty(quint64 time, int value);
quint64 time;
int value;
};
int penaltyPoints;
QQueue<Penalty> penaltyQueue;
};
Q_DECLARE_METATYPE(Client*)
#endif // CLIENT_H
|
99a3337c3749cfa621940a2c73646dc3d35fdd6d
|
0404aab0cfa513a633bfe83ecb1f3ebe4b82d315
|
/common/src/frontends/src/shim_trigger.cxx
|
568b12a2bcb741a0366e303cd778a4c7bd038c71
|
[] |
no_license
|
uwmuonlab/gm2-nmr-daq
|
8376f69d7812ffd9a08c39c9e7436dca624f0a85
|
1b5289876c055523c194417db6d311b7e6963778
|
refs/heads/master
| 2020-04-05T22:56:44.257016
| 2016-11-08T03:00:32
| 2016-11-08T03:00:32
| 41,053,306
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,448
|
cxx
|
shim_trigger.cxx
|
/*****************************************************************************\
Name: shim_trigger.cxx
Author: Matthias W. Smith
Email: mwsmith2@uw.edu
About: Implements a frontend that issues synchronized triggers
to other frontends.
\*****************************************************************************/
//--- std includes ----------------------------------------------------------//
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <iostream>
#include <string>
#include <vector>
#include <array>
#include <cmath>
#include <ctime>
using std::string;
using std::cout;
using std::endl;
//--- other includes --------------------------------------------------------//
#include "midas.h"
#include "TFile.h"
#include "TTree.h"
//--- project includes ------------------------------------------------------//
#include "common.hh"
#include "sync_trigger.hh"
#include "frontend_utils.hh"
//--- global variables ------------------------------------------------------//
#define FRONTEND_NAME "Sync Trigger"
#define BANK_NAME "SHTR"
extern "C" {
// The frontend name (client name) as seen by other MIDAS clients
char *frontend_name = (char *)FRONTEND_NAME;
char *bank_name = (char *)BANK_NAME;
// The frontend file name, don't change it.
char *frontend_file_name = (char*)__FILE__;
// frontend_loop is called periodically if this variable is TRUE
BOOL frontend_call_loop = FALSE;
// A frontend status page is displayed with this frequency in ms.
INT display_period = 1000;
// maximum event size produced by this frontend
INT max_event_size = 0x100;
// maximum event size for fragmented events (EQ_FRAGMENTED)
INT max_event_size_frag = 0x100;
// buffer size to hold events
INT event_buffer_size = 0x800;
// Function declarations
INT frontend_init();
INT frontend_exit();
INT begin_of_run(INT run_number, char *error);
INT end_of_run(INT run_number, char *error);
INT pause_run(INT run_number, char *error);
INT resume_run(INT run_number, char *error);
INT frontend_loop();
INT read_trigger_event(char *pevent, INT off);
INT poll_event(INT source, INT count, BOOL test);
INT interrupt_configure(INT cmd, INT source, PTYPE adr);
// Equipment list
EQUIPMENT equipment[] =
{
{FRONTEND_NAME, // equipment name
{ 10, 0, // event ID, trigger mask
"BUF1", // event buffer
EQ_POLLED, // equipment type
0, // not used
"MIDAS", // format
TRUE, // enabled
RO_RUNNING | // read only when running
RO_ODB, // and update ODB
10, // poll for 10ms
0, // stop run after this event limit
0, // number of sub events
0, // don't log history
"", "", "",
},
read_trigger_event, // readout routine
},
{""}
};
} //extern C
// Anonymous namespace for my "global" variables.
namespace {
unsigned long long num_events;
// This is the trigger for the Measurements.
daq::SyncTrigger *readout_trigger;
// This is the trigger for the stepper motor movement.
daq::SyncTrigger *stepper_trigger;
boost::property_tree::ptree conf;
}
//--- Frontend Init ---------------------------------------------------------//
INT frontend_init()
{
int rc = load_settings(frontend_name, conf);
if (rc != SUCCESS) {
// Error already logged in load_settings.
return rc;
}
string trigger_addr = conf.get<string>("sync_trigger_addr");
int trigger_port = conf.get<int>("fast_trigger_port");
readout_trigger = new daq::SyncTrigger(trigger_addr, trigger_port);
readout_trigger->SetName("readout-trigger");
stepper_trigger = new daq::SyncTrigger(trigger_addr, trigger_port + 30);
stepper_trigger->SetName("stepper-trigger");
return SUCCESS;
}
//--- Frontend Exit ---------------------------------------------------------//
INT frontend_exit()
{
delete readout_trigger;
delete stepper_trigger;
return SUCCESS;
}
//--- Begin of Run ---------------------------------------------------------//
INT begin_of_run(INT run_number, char *error)
{
num_events = 0;
readout_trigger->FixNumClients();
readout_trigger->StartTriggers();
stepper_trigger->FixNumClients();
stepper_trigger->StartTriggers();
return SUCCESS;
}
//--- End of Run -----------------------------------------------------------//
INT end_of_run(INT run_number, char *error)
{
readout_trigger->StopTriggers();
stepper_trigger->StopTriggers();
return SUCCESS;
}
//--- Pause Run ------------------------------------------------------------//
INT pause_run(INT run_number, char *error)
{
readout_trigger->StopTriggers();
stepper_trigger->StopTriggers();
return SUCCESS;
}
//--- Resuem Run -----------------------------------------------------------//
INT resume_run(INT run_number, char *error)
{
readout_trigger->StartTriggers();
stepper_trigger->StartTriggers();
return SUCCESS;
}
//--- Frontend Loop --------------------------------------------------------//
INT frontend_loop()
{
return SUCCESS;
}
//--------------------------------------------------------------------------//
//--- Trigger event routines -----------------------------------------------//
INT poll_event(INT source, INT count, BOOL test) {
unsigned int i;
static int poll_number = 0;
// fake calibration
if (test) {
for (i = 0; i < count; i++) {
usleep(10);
}
return 0;
}
if (poll_number++ % 100 == 0) {
return 1;
} else {
return 0;
}
}
//--- Interrupt configuration ----------------------------------------------//
INT interrupt_configure(INT cmd, INT source, PTYPE adr)
{
switch (cmd) {
case CMD_INTERRUPT_ENABLE:
break;
case CMD_INTERRUPT_DISABLE:
break;
case CMD_INTERRUPT_ATTACH:
break;
case CMD_INTERRUPT_DETACH:
break;
}
return SUCCESS;
}
//--- Event readout --------------------------------------------------------//
INT read_trigger_event(char *pevent, INT off)
{
return 0;
DWORD *pdata;
// And MIDAS output.
bk_init32(pevent);
// Send a small event to keep the Logger happy.
bk_create(pevent, bank_name, TID_DWORD, &pdata);
*pdata = num_events++;
pdata += sizeof(num_events) / sizeof(DWORD);
bk_close(pevent, pdata);
return bk_size(pevent);
}
|
4dd285bbd32ec9b3ec5e50c5e2848c05918bd2dd
|
1fc4acca243159bcccfae4372d6b1db8b97d5d5f
|
/src/ui/text/gameServer/ArmyLoader.hpp
|
389bf33659fcbe9f822ac67c6d1be86ef9e727fe
|
[
"MIT"
] |
permissive
|
timorl/neurohex
|
1fdee46b7c0cc076d42d1727f6f71976e0f1896e
|
597be23c6b9109550d96c0eb925b20b6d9f0bea6
|
refs/heads/master
| 2020-04-01T19:14:50.611144
| 2015-03-01T18:20:08
| 2015-03-01T18:20:08
| 22,464,883
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 521
|
hpp
|
ArmyLoader.hpp
|
#ifndef UI_TEXT_GAMESERVER_ARMYLOADER_HPP
#define UI_TEXT_GAMESERVER_ARMYLOADER_HPP
#include<iostream>
#include"ui/Observable.hpp"
#include"neuroServer/ArmyLoader.hpp"
namespace ui {
namespace text {
namespace gameServer {
/**
* @brief The class to show the progress of loading armies.
*/
class ArmyLoader {
public:
/**
* @brief Create a watcher for the given ArmyLoader.
*/
ArmyLoader(neuroServer::ArmyLoader & armyLoader);
private:
neuroServer::ArmyLoader & armyLoader;
};
}
}
}
#endif
|
9a3a9bf9d5745ad8bbafacc85c11faa576fcf6ea
|
c832cc9970598bc13a7d5c652ba91d6cbe8a19b7
|
/Laboration3C++2/Laboration3C++2/Container.cpp
|
7c6146c96a37f2b8db4b84ec85a87eae5e73782b
|
[] |
no_license
|
Timmoten/C-labb2
|
26ff90cc9e68090adbe8d0de0a3287cffce32783
|
0efe250c1dc1f5da9b332346e24cff45c3484d49
|
refs/heads/master
| 2021-01-10T21:11:16.445497
| 2015-03-25T00:58:25
| 2015-03-25T00:58:25
| 32,544,296
| 0
| 0
| null | null | null | null |
ISO-8859-2
|
C++
| false
| false
| 854
|
cpp
|
Container.cpp
|
#include <string>
#include "Employee.h"
#include "Container.h"
Container::Container()
{
this->nr = 0;
this->employees = nullptr;
}
void Container::add(Employee* bob)
{
if (employees == nullptr)
{
employees = new Employee*[1];
employees[0] = bob;
nr=nr+1;
}
else
{
Employee** tmp;
tmp = new Employee*[nr + 1];
for (int i = 0; i < nr; i++)
{
tmp[i] = this->employees[i];
}
delete[] employees; //med denna (2)
tmp[this->nr] = bob; //byt plats enl assistent (tidigare 1)
this->employees = tmp;
this->nr++;
}
}
string Container::toString()
{
string apa;
apa = "Följande personner finns i registret:\n";
for (int i = 0; i < nr; i++)
{
apa = apa + employees[i]->toString() + "\n";
}
return apa;
}
Container::~Container()
{
for (int i = 0; i < nr; ++i)
{
delete employees[i];
}
delete[] employees;
}
|
cb1df7babbb5fd57df212b7c02afe1de9643794c
|
f732cf220b6976aafb8bde460174bfa41f68267b
|
/DTLS/dtls_session_manager_sql.h
|
dc60018bf380836a0e9f2e9d21111056b6f08e5c
|
[] |
no_license
|
WorkerBeesTeam/Helpz
|
5195ddd780053efcca28d348c0e01604628a5a7b
|
4f916bb8836d5c4472e5c4f389d80048ddd9b5e0
|
refs/heads/master
| 2021-10-15T13:26:40.350238
| 2020-08-17T17:38:36
| 2020-08-17T17:38:36
| 147,148,813
| 0
| 0
| null | 2019-11-21T05:27:34
| 2018-09-03T03:51:13
|
C++
|
UTF-8
|
C++
| false
| false
| 3,038
|
h
|
dtls_session_manager_sql.h
|
#ifndef HELPZ_DTLS_SESSIONMANAGER_SQL_H
#define HELPZ_DTLS_SESSIONMANAGER_SQL_H
#include <iostream>
#include <botan-2/botan/rng.h>
#include <botan-2/botan/credentials_manager.h>
#include <botan-2/botan/tls_session_manager.h>
#include <botan-2/botan/tls_alert.h>
#include <botan-2/botan/tls_policy.h>
#include <QObject>
#include <Helpz/db_connection_info.h>
#include <Helpz/dtls_credentials_manager.h>
namespace Helpz {
namespace DB {
class Base;
}
namespace DTLS {
uint64_t Mytimestamp();
class Session_Manager_SQL : public QObject, public Botan::TLS::Session_Manager
{
Q_OBJECT
public:
/**
* @param db A connection to the database to use
The table names botan_tls_sessions and
botan_tls_sessions_metadata will be used
* @param passphrase used to encrypt the session data
* @param rng a random number generator
* @param max_sessions a hint on the maximum number of sessions
* to keep in memory at any one time. (If zero, don't cap)
* @param session_lifetime sessions are expired after this many
* seconds have elapsed from initial handshake.
*/
Session_Manager_SQL(const std::string& passphrase,
Botan::RandomNumberGenerator& rng,
const DB::Connection_Info &info = {":memory:", {}, {}, {}, -1, "QSQLITE"},
size_t max_sessions = 1000,
std::chrono::seconds session_lifetime = std::chrono::seconds(7200));
Session_Manager_SQL(const Session_Manager_SQL&) = delete;
Session_Manager_SQL& operator=(const Session_Manager_SQL&) = delete;
bool load_from_session_id(const std::vector<uint8_t>& session_id,
Botan::TLS::Session& session) override;
bool load_from_server_info(const Botan::TLS::Server_Information& info,
Botan::TLS::Session& session) override;
void remove_entry(const std::vector<uint8_t>& session_id) override;
size_t remove_all() override;
void save(const Botan::TLS::Session& session_data) override;
std::chrono::seconds session_lifetime() const override;
signals:
bool load_session(const QString& sql, Botan::TLS::Session* session);
void remove_entry_signal(const QString& session_id);
int remove_all_signal();
void save_signal(const QVariantList& values);
private slots:
bool load_session_slot(const QString& sql, Botan::TLS::Session* session);
void remove_entry_slot(const QString& session_id);
int remove_all_slot();
void save_slot(const QVariantList& values);
private:
void prune_session_cache();
bool check_db_thread_diff();
std::shared_ptr<DB::Base> db_;
Botan::secure_vector<uint8_t> m_session_key;
Botan::RandomNumberGenerator& m_rng;
size_t m_max_sessions;
std::chrono::seconds m_session_lifetime;
};
} // namespace DTLS
} // namespace Helpz
#endif // HELPZ_DTLS_SESSIONMANAGER_SQL_H
|
ea73b85c669c6e0d54317e6ff90d89d4ef89ab43
|
5e2b23eda6a4daaca7d4f4ad0918564b667b2594
|
/plot.cpp
|
ef30c985a78bce6114710a4499071cc25fe64120
|
[] |
no_license
|
tiffany051/Graphing-Calculator
|
e8a8372e4c7a0281a454dddcded6b57e92008bea
|
70a813a7d48ddaddaf33d3651ffc08d103c300e5
|
refs/heads/main
| 2023-04-15T07:55:08.545225
| 2021-05-01T05:29:29
| 2021-05-01T05:29:29
| 363,330,701
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,889
|
cpp
|
plot.cpp
|
#include "plot.h"
Plot::Plot(graph_info* graph):_info(graph),_translator(_info)
{
//initialize the plot
graph->_equation.push(new variable('x'));
graph->_window_demensions = sf::Vector2f(WORK_PANEL, SCREEN_HEIGHT);
graph->_origin = sf::Vector2f(graph->_window_demensions.x / 2, graph->_window_demensions.y / 2);
graph->_domain = sf::Vector2f(-5, 5);
graph->_range = sf::Vector2f(-6, 6);
graph->_points = 900;
graph->increament = (graph->_domain.y - graph->_domain.x ) / (graph->_points);
graph->_scale = sf::Vector2f(120, 120);
}
void Plot::set_info(graph_info* graph)
{
_info->_window_demensions = graph->_window_demensions;
_info->_origin = graph->_origin;
_info->_domain = graph->_domain;
_info->_range = graph->_range;
_info->_points = graph->_points;
_info->_scale = graph->_scale;
_info->increament = (_info->_domain.y - _info->_domain.x) / _info->_points;
}
Vector <sf::Vector2f> Plot::operator()()
{
//given equation will get in shynting yard for postfix
//then passed into RPN for the corespond y value
//store the graph corrdinate into a vector
//converted into sfml coordinate
//store in graph_coordinate and return it
set_info(_info);
shunting_yard sy(_info->_equation);
Queue <Token*> postfix = sy.postfix();
RPN _rpn(postfix);
Vector <sf::Vector2f> _points;
sf::Vector2f _graph;
Vector <sf::Vector2f> _graph_coordinate;
for (float i = _info->_domain.x ; i <= _info->_domain.y; i += _info->increament)
{
float y = _rpn(i);
_points.push_back(sf::Vector2f(i, y));//put the corrdinate into vector
}
for (int i = 0;i < _points.size(); i++)
{
_graph = _translator(_points[i]);
_graph_coordinate.push_back(_graph);
}
return _graph_coordinate;
}
|
c4dabc26ee949eaa8db77f8f09d4d63dc54cf032
|
a962db3467be3b04b68714abb00611ff92c121b6
|
/example/funcPointer_arr.cpp
|
a83d3d65e33b5e1954193b3e42da6174b282d87b
|
[] |
no_license
|
blueyi/cpp_study
|
6bf636076c4489996a95067bbf41d634b6a36b5d
|
8d839744f9a7c7d217c265e6ca480eb78dbc7162
|
refs/heads/master
| 2020-04-05T14:04:48.226583
| 2016-09-01T01:16:45
| 2016-09-01T01:16:45
| 38,018,441
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 804
|
cpp
|
funcPointer_arr.cpp
|
/*
* funcPointer_arr.cpp
* Copyright (C) 2016 blueyi <blueyi@blueyi-lubuntu>
*
* Distributed under terms of the MIT license.
*/
#include <iostream>
float f1(float a, int b)
{
std::cout << a << " + " << b << " = " << a + b << std::endl;
return a + b;
}
float f2(float a, int b)
{
std::cout << a << " * " << b << " = " << a * b << std::endl;
return a * b;
}
int main(void)
{
//定义并初始化函数指针数组
float (*pfa[2])(float, int) = {f1, f2};
//调用该函数指针数组
for (int i = 0; i < 2; ++i) {
pfa[i](3, 9);
}
//使用typedef简化定义
typedef float (*f_type)(float, int);
f_type pfa2[] = {f1, f2};
//调用该函数指针数组
for (int i = 0; i < 2; ++i) {
pfa2[i](6, 8);
}
return 0;
}
|
7a98de1c6ba11164a2e49a5a3e574c2e8042cf81
|
d7c77018b0c5e7d1e6e24d82fa905a1ac5b0a85e
|
/PbInfo/placare.cpp
|
b138113660fba57fa44d3e452f52f4228cada934
|
[] |
no_license
|
muresangabriel-alexander/cplusplus-competitive
|
9396cff60c6be0f5ae3d307f58e350423e336764
|
4a17656ccbea58d779bf5bd74aed5edb9c579ca6
|
refs/heads/master
| 2021-04-28T07:57:22.419138
| 2018-02-20T18:42:59
| 2018-02-20T18:42:59
| 122,238,407
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 815
|
cpp
|
placare.cpp
|
#include <fstream>
using namespace std;
ifstream fin("placare.in");
ofstream fout("placare.out");
short int a[305][305],P[101];
int main()
{
int n,m,i,j,p,k;
fin>>n>>m;
for(int i=1;i<=n;i++)
{
j=1;
while(P[i]<m)
{
fin>>p;
while(a[i][j]!=0 && j<=m) j++;
if(p>0)
{
for(k=j;k<=j+p-1;k++) a[i][k]=p;
P[i]=P[i]+p;
j=k;}
else if(p<0)
{
p=-p;
for(k=i;k<=i+p-1;k++) {a[k][j]=p;P[k]=P[k]+1;}
j++;
}
}
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
fout<<a[i][j]<<' ';
fout<<'\n';
}
return 0;
}
|
cc55599d8d711088c240e1dd5f15f3741b7fc723
|
cb7ac15343e3b38303334f060cf658e87946c951
|
/source/runtime/engine/RawIndexBuffer.h
|
09d582169c5665efb26099f94b3c1f128751b37f
|
[] |
no_license
|
523793658/Air2.0
|
ac07e33273454442936ce2174010ecd287888757
|
9e04d3729a9ce1ee214b58c2296188ec8bf69057
|
refs/heads/master
| 2021-11-10T16:08:51.077092
| 2021-11-04T13:11:59
| 2021-11-04T13:11:59
| 178,317,006
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,711
|
h
|
RawIndexBuffer.h
|
#pragma once
#include "EngineMininal.h"
#include "RenderResource.h"
#include "Containers/DynamicRHIResourceArray.h"
namespace Air
{
namespace EIndexBufferStride
{
enum Type
{
Force16Bit = 1,
Force32Bit = 2,
AutoDetect = 3
};
}
class IndexArrayView
{
public:
IndexArrayView()
:mUntypedIndexData(nullptr)
,mNumIndices(0)
,b32Bit(false)
{
}
IndexArrayView(const void* inIndexData, int32 inNumIndices, bool bIn32Bit)
:mUntypedIndexData(inIndexData)
,mNumIndices(inNumIndices)
,b32Bit(bIn32Bit)
{}
uint32 operator[](int32 i) { return (uint32)(b32Bit ? ((const uint32*)mUntypedIndexData)[i] : ((const uint16*)mUntypedIndexData)[i]); }
uint32 operator[](int32 i) const { return (uint32)(b32Bit ? ((const uint32*)mUntypedIndexData)[i] : ((const uint16*)mUntypedIndexData)[i]); }
private:
const void* mUntypedIndexData;
int32 mNumIndices;
bool b32Bit;
};
class RawStaticIndexBuffer : public IndexBuffer
{
public:
RawStaticIndexBuffer(bool inNeedsCPUAccess = false);
ENGINE_API void setIndices(const TArray<uint32>& inIndices, EIndexBufferStride::Type desiredStride);
ENGINE_API void getCopy(TArray<uint32>& outIndices) const;
ENGINE_API IndexArrayView getArrayView() const;
FORCEINLINE int32 getNumIndices() const
{
return b32Bit ? (mIndexStorage.size() / 4) : (mIndexStorage.size() / 2);
}
FORCEINLINE uint32 getAllocatedSize() const
{
return mIndexStorage.getAllocatedSize();
}
void serialize(Archive& ar, bool bNeedsCPUAccess);
virtual void initRHI() override;
inline bool is32Bit() const { return b32Bit; }
private:
TResourceArray<uint8, INDEXBUFFER_ALIGNMENT> mIndexStorage;
bool b32Bit;
};
}
|
32b997b2c1a6c822b951c3bece5cde4f98f223d9
|
c83f1f84d00b9fa2640a362e59c4322d6e268116
|
/use a cabeça/Command/Command/src/concrete/commands/MacroCommand.cpp
|
dafcac48d5ed9d354d90e95dca9d3bb2a85aa9ef
|
[
"MIT"
] |
permissive
|
alissonads/Design-Patterns-cplusplus
|
9a2936fa7d3cd95c6816e44511eac132e10e96be
|
0e56fbc0c1877b9edf2ad5efafbb9a01fa94d748
|
refs/heads/master
| 2020-06-28T01:06:45.933658
| 2019-08-01T18:39:55
| 2019-08-01T18:39:55
| 200,101,824
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 321
|
cpp
|
MacroCommand.cpp
|
#include "MacroCommand.h"
MacroCommand::MacroCommand(std::initializer_list<Command*> _commands) :
commands(_commands)
{}
MacroCommand::~MacroCommand()
{
commands.clear();
}
void MacroCommand::Execute()
{
for (auto i : commands)
i->Execute();
}
void MacroCommand::Undo()
{
for (auto i : commands)
i->Undo();
}
|
da21464e24aa7ecc4adf79de1f4b497942d172f5
|
3657bb42387d76fd041d37bf2d69bad7f916f16a
|
/DesignPattern/DesignPattern/src/Visitor/Visitor_doubleDispatch.cpp
|
7909996e3deab9018c0b3ed3bc4866f4ffb67bb6
|
[
"MIT"
] |
permissive
|
goodspeed24e/Programming
|
61d8652482b3246f1c65f2051f812b2c6d2d40ce
|
ae73fad022396ea03105aad83293facaeea561ae
|
refs/heads/master
| 2016-08-04T02:58:01.477832
| 2015-03-16T15:12:27
| 2015-03-16T15:13:33
| 32,333,164
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,918
|
cpp
|
Visitor_doubleDispatch.cpp
|
#include <iostream>
using namespace std;
class Base { public:
virtual void process1( Base& ) = 0;
virtual void process2( class A& ) = 0;
virtual void process2( class B& ) = 0;
virtual void process2( class C& ) = 0;
};
class A : public Base { public:
/*virtual*/ void process1( Base& second ) { second.process2( *this ); }
/*virtual*/ void process2( class A& first ) {
cout << "first is A, second is A\n"; }
/*virtual*/ void process2( class B& first ) {
cout << "first is B, second is A\n"; }
/*virtual*/ void process2( class C& first ) {
cout << "first is C, second is A\n"; }
};
class B : public Base { public:
/*virtual*/ void process1( Base& second ) { second.process2( *this ); }
/*virtual*/ void process2( class A& first ) {
cout << "first is A, second is B\n"; }
/*virtual*/ void process2( class B& first ) {
cout << "first is B, second is B\n"; }
/*virtual*/ void process2( class C& first ) {
cout << "first is C, second is B\n"; }
};
class C : public Base { public:
/*virtual*/ void process1( Base& second ) { second.process2( *this ); }
/*virtual*/ void process2( class A& first ) {
cout << "first is A, second is C\n"; }
/*virtual*/ void process2( class B& first ) {
cout << "first is B, second is C\n"; }
/*virtual*/ void process2( class C& first ) {
cout << "first is C, second is C\n"; }
};
/**
* \brief
* Double dispatch (within a single hierarchy)
* We would like to declare a function like:
* void process( virtual Base* object1, virtual Base* object2 )
* that does the right thing based on the type of 2 objects that come from
* a single inheritance hierarchy. The only problem is that the keyword
* "virtual" may not be used to request dynamic binding for an object being
* passed as an argument. C++ will only "discriminate" the type of an object
* being messaged, not the type of an object being passed. So in order for
* the type of 2 objects to be discriminated, each object must be the
* receiver of a virtual function call. Here, when process1() is called on
* the first object, its type becomes "known" at runtime, but the type of
* the second is still UNknown. process2() is then called on the second
* object, and the identity (and type) of the first object is passed as an
* argument. Flow of control has now been vectored to the spot where the
* type (and identity) of both objects are known.
*
* \remarks
* Write remarks for main here.
*/
void main( void ) {
Base* array[] = { &A(), &B(), &C() };
for (int i=0; i < 3; i++)
for (int j=0; j < 3; j++)
array[i]->process1( *array[j] );
}
// first is A, second is A
// first is A, second is B
// first is A, second is C
// first is B, second is A
// first is B, second is B
// first is B, second is C
// first is C, second is A
// first is C, second is B
// first is C, second is C
|
f5c7236deb523c3bfa45ad2bff30e8c54f2aadfb
|
f67d5094e9fc21c23bced1ed5b2687717c5f33df
|
/src/population/vessel/properties/AbstractVesselNetworkComponentProperties.hpp
|
46e16a7d6a66c1cb03d18d18ec37ff321fbd8d6d
|
[] |
no_license
|
myousefi2016/MicrovesselChaste
|
a8351caccd9b8faa9ba6045075efb93bdd659cab
|
6df2687d7417acaa3752dd897084a3ceedf73375
|
refs/heads/master
| 2020-12-30T12:34:57.580589
| 2016-12-20T17:47:49
| 2016-12-20T17:47:49
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,186
|
hpp
|
AbstractVesselNetworkComponentProperties.hpp
|
/*
Copyright (c) 2005-2016, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Oxford nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef ABSTRACTVESSELNETWORKCOMPONENTPROPERTIES_HPP_
#define ABSTRACTVESSELNETWORKCOMPONENTPROPERTIES_HPP_
#include <string>
#include <map>
#include <boost/enable_shared_from_this.hpp>
#include "ChasteSerialization.hpp"
#include "ClassIsAbstract.hpp"
#include "UnitCollection.hpp"
/**
* This class contains common functionality for property containers for all vessel network components.
* It provides a common interface that can be used in VTK writers.
*/
template<unsigned DIM>
class AbstractVesselNetworkComponentProperties: public boost::enable_shared_from_this<AbstractVesselNetworkComponentProperties<DIM> >
{
/**
* Archiving
*/
friend class boost::serialization::access;
/**
* Do the serialize
* @param ar the archive
* @param version the archive version number
*/
template<class Archive>
void serialize(Archive & ar, const unsigned int version)
{
}
public:
/**
* Constructor
*/
AbstractVesselNetworkComponentProperties();
/**
* Destructor
*/
virtual ~AbstractVesselNetworkComponentProperties();
/**
* Return a map of output data for writing to file
*
* @return a map of output data for use by writers
*/
virtual std::map<std::string, double> GetOutputData() const = 0;
};
TEMPLATED_CLASS_IS_ABSTRACT_1_UNSIGNED(AbstractVesselNetworkComponentProperties);
#endif /* ABSTRACTVESSELNETWORKCOMPONENTPROPERTIES_HPP_ */
|
58ee93ac8f8195c0f8b8ee18bf4c1c39558ae33b
|
1f4a5cffdccc21704a2e76ef732b03a6b489b45a
|
/ArduinoBuildLightSerialCommunication/ArduinoBuildLightSerialCommunication.ino
|
0b46f059b22daea633e22ccfe6f31df9735f1c0b
|
[] |
no_license
|
Jonathan75/ArduinoCIBuildNotification
|
e945c4a0ab503a9fcde24f52042a347ae5d99ad3
|
13b38cc82ed8f5782d55ad70603ff07711a3b8be
|
refs/heads/master
| 2021-03-12T22:45:24.335449
| 2015-01-13T21:22:01
| 2015-01-13T21:22:01
| 23,541,424
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,019
|
ino
|
ArduinoBuildLightSerialCommunication.ino
|
const int redLed = 11;
const int yellowLed = 12;
const int greenLed = 13;
int count = 0;
//int lights[] = {11,12,13};
int brightness = 0; // how bright the LED is
int fadeAmount = 1; // how many points to fade the LED by
int brightnessMax = 255;
int lightPin = 13;
int lightValue = 10000;
void setup() {
Serial.begin(9600);
pinMode(redLed, OUTPUT);
pinMode(yellowLed, OUTPUT);
pinMode(greenLed, OUTPUT);
testLights();
}
void loop() {
if(count < 25)
{
testLights();
count++;
}
//cycleLights();
readCommand();
//blinkLight();
}
void testLights()
{
digitalWrite(greenLed, HIGH);
delay(500);
digitalWrite(yellowLed, HIGH);
delay(500);
digitalWrite(redLed, HIGH);
delay(500);
digitalWrite(greenLed, LOW);
delay(500);
digitalWrite(yellowLed, LOW);
delay(500);
digitalWrite(redLed, LOW);
}
void cycleLights()
{
digitalWrite(greenLed, HIGH);
delay(lightValue);
digitalWrite(greenLed, LOW);
digitalWrite(yellowLed, HIGH);
delay(lightValue);
digitalWrite(yellowLed, LOW);
digitalWrite(redLed, HIGH);
delay(lightValue);
digitalWrite(redLed, LOW);
}
void blinkLight()
{
analogWrite(redLed, brightness);
brightness = brightness + fadeAmount;
if (brightness == 0 || brightness == brightnessMax) {
fadeAmount = -fadeAmount ;
}
delay(lightValue);
}
void readCommand()
{
if(Serial.available())
{
String input;
input = Serial.readString();
Serial.print("Echo ");
Serial.println(input);
}
}
//void readCommand()
//{
// if(Serial.available())
// {
// inputSize = 10;
// char input[inputSize + 1];
//
// byte size = Serial.readBytes(input, sizeof(input) / sizeof(int));
// input[size] = 0;
//
//
//// lightPin = Serial.parseInt();
//// lightValue = Serial.parseInt();
//// Serial.println(lightPin);
//// Serial.println(lightValue);
//
// digitalWrite(lightPin,lightValue);
// }
//}
|
1b3c5316611bcc1dec144b7ee376351992c601b1
|
873002d555745752657e3e25839f6653e73966a2
|
/model/WalletAlterRequest.h
|
7ec2d3cd7596502e90e074d406448ea026306f94
|
[] |
no_license
|
knetikmedia/knetikcloud-cpprest-client
|
e7e739e382c02479b0a9aed8160d857414bd2fbf
|
14afb57d62de064fb8b7a68823043cc0150465d6
|
refs/heads/master
| 2021-01-23T06:35:44.076177
| 2018-03-14T16:02:35
| 2018-03-14T16:02:35
| 86,382,044
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,395
|
h
|
WalletAlterRequest.h
|
/**
* Knetik Platform API Documentation latest
* This is the spec for the Knetik API. Use this in conjunction with the documentation found at https://knetikcloud.com.
*
* OpenAPI spec version: latest
* Contact: support@knetik.com
*
* NOTE: This class is auto generated by the swagger code generator 2.3.0-SNAPSHOT.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/*
* WalletAlterRequest.h
*
*
*/
#ifndef WalletAlterRequest_H_
#define WalletAlterRequest_H_
#include "ModelBase.h"
#include <cpprest/details/basic_types.h>
namespace com {
namespace knetikcloud {
namespace client {
namespace model {
/// <summary>
///
/// </summary>
class WalletAlterRequest
: public ModelBase
{
public:
WalletAlterRequest();
virtual ~WalletAlterRequest();
/////////////////////////////////////////////
/// ModelBase overrides
void validate() override;
web::json::value toJson() const override;
void fromJson(web::json::value& json) override;
void toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& namePrefix) const override;
void fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& namePrefix) override;
/////////////////////////////////////////////
/// WalletAlterRequest members
/// <summary>
/// The amount of currency to add/remove. positive to add, negative to remove
/// </summary>
double getDelta() const;
void setDelta(double value);
/// <summary>
/// The id of an invoice to attribute the transaction to
/// </summary>
int32_t getInvoiceId() const;
bool invoiceIdIsSet() const;
void unsetInvoice_id();
void setInvoiceId(int32_t value);
/// <summary>
/// The admin entered or system generated reason
/// </summary>
utility::string_t getReason() const;
void setReason(utility::string_t value);
/// <summary>
/// The transaction type to allow for search/etc
/// </summary>
utility::string_t getType() const;
bool typeIsSet() const;
void unsetType();
void setType(utility::string_t value);
protected:
double m_Delta;
int32_t m_Invoice_id;
bool m_Invoice_idIsSet;
utility::string_t m_Reason;
utility::string_t m_Type;
bool m_TypeIsSet;
};
}
}
}
}
#endif /* WalletAlterRequest_H_ */
|
0baa6905299d0bd2f43d5084030187ba7e657424
|
b77d6b7290b2bb0dd60cd6566cffea5b9b180dec
|
/src/Trees.cpp
|
a97966eb2e32db94690f02c2c9c9139424060f4e
|
[] |
no_license
|
DeclanRussell/terrainGeneration
|
802f130b1d376895d8f6b97e7a6e3db62773a667
|
b859d6b39a0019164da842ed438f780bfcb66e7e
|
refs/heads/master
| 2021-03-12T20:38:08.148127
| 2015-02-15T14:55:44
| 2015-02-15T14:55:44
| 28,363,922
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,013
|
cpp
|
Trees.cpp
|
#include "Trees.h"
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#define MAXTREES 100
Trees::Trees(sampleMode _mode){
m_numTrees = 0;
m_minTreeHeight = 0.1;
m_maxTreeHeight = 0.4;
}
//----------------------------------------------------------------------------------------------------------------------
Trees::~Trees(){
if (!m_billboards){
delete m_tree;
delete m_leaves;
}
else{
//delete m_billboard;
}
}
//----------------------------------------------------------------------------------------------------------------------
void Trees::createTrees(){
// load model
m_tree = new Model("models/tree.obj");
m_leaves = new Model("models/leaves.obj");
glBindVertexArray(m_tree->getVAO());
// Instance offset buffer
GLfloat m_offset[m_numTrees*3];
srand(time(NULL));
// COULD BE SPED UP USING TRANSFORM FEEDBACK !!
float x;
float y;
float z;
for (int i=0; i<m_numTrees*3; i+=3){
x = -(0.0) + static_cast <float> (rand()) /( static_cast <float> (RAND_MAX/((1.0)-(0.0))));
z = -(0.0) + static_cast <float> (rand()) /( static_cast <float> (RAND_MAX/((1.0)-(0.0))));
if(m_mode==T_HEIGHTMAP){
y = getHeightFromMatStack((int)(x * m_heightmap.width()), (int)(z * m_heightmap.height()));
}
else{
y = getHeightFromMatStack((int)(x * m_matStackSizeX-1),(int)(z * m_matStackSizeY-1));
}
while (y < m_minTreeHeight || y > m_maxTreeHeight){
x = -(0.0) + static_cast <float> (rand()) /( static_cast <float> (RAND_MAX/((1.0)-(0.0))));
z = -(0.0) + static_cast <float> (rand()) /( static_cast <float> (RAND_MAX/((1.0)-(0.0))));
if(m_mode==T_HEIGHTMAP){
y = getHeightFromHeightMap((int)(x * m_heightmap.width()), (int)(z * m_heightmap.height()));
}
else{
y = getHeightFromMatStack((int)(x * m_matStackSizeX-1),(int)(z * m_matStackSizeY-1));
}
}
m_offset[i] = x;
m_offset[i+1] = y;
m_offset[i+2] = z;
m_positions.push_back(glm::vec2(x, z));
}
GLuint positionBuffer;
glGenBuffers(1, &positionBuffer);
glBindBuffer(GL_ARRAY_BUFFER, positionBuffer);
glBufferData(GL_ARRAY_BUFFER, sizeof(m_offset), &m_offset[0], GL_STATIC_DRAW);
glEnableVertexAttribArray(3);
glVertexAttribPointer(3, 3, GL_FLOAT, GL_FALSE, 0, (GLvoid*)0);
glVertexAttribDivisor(3, 1);
glBindBuffer(GL_ARRAY_BUFFER,0);
glBindVertexArray(0);
glBindVertexArray(m_leaves->getVAO());
GLuint leavesPositionBuffer;
glGenBuffers(1, &leavesPositionBuffer);
glBindBuffer(GL_ARRAY_BUFFER, leavesPositionBuffer);
glBufferData(GL_ARRAY_BUFFER, sizeof(m_offset), &m_offset[0], GL_STATIC_DRAW);
glEnableVertexAttribArray(3);
glVertexAttribPointer(3, 3, GL_FLOAT, GL_FALSE, 0, (GLvoid*)0);
glVertexAttribDivisor(3, 1);
glBindBuffer(GL_ARRAY_BUFFER,0);
glBindVertexArray(0);
glDeleteBuffers(1, &positionBuffer);
glDeleteBuffers(1, &leavesPositionBuffer);
}
//----------------------------------------------------------------------------------------------------------------------
float Trees::getHeightFromHeightMap(int _x, int _y){
QColor _pixel = m_heightmap.pixel(_x, _y);
return ((_pixel.redF()+_pixel.blueF()+_pixel.greenF())/3.0)/4.0;
}
//----------------------------------------------------------------------------------------------------------------------
float Trees::getHeightFromMatStack(int _x, int _y){
bool surfaceFound = false;
float heightSum = 0.0;
for(int i=(m_matStackData[_x][_y].properties.size()-1); i>=0;i--){
if(m_matStackData[_x][_y].properties[i].type==terrainGen::BEDROCK || m_matStackData[_x][_y].properties[i].type==terrainGen::SAND)
surfaceFound = true;
if(surfaceFound){
heightSum+=m_matStackData[_x][_y].properties[i].height;
}
}
return heightSum;
}
//----------------------------------------------------------------------------------------------------------------------
void Trees::render(GLuint _isBarkLoc){
glUniform1i(_isBarkLoc, true);
glBindVertexArray(m_tree->getVAO());
glDrawArraysInstanced(GL_TRIANGLES, 0, m_tree->getNumVerts(), m_numTrees);
glBindVertexArray(0);
glUniform1i(_isBarkLoc, false);
glBindVertexArray(m_leaves->getVAO());
glDrawArraysInstanced(GL_TRIANGLES, 0, m_leaves->getNumVerts(), m_numTrees);
glBindVertexArray(0);
}
//----------------------------------------------------------------------------------------------------------------------
void Trees::updateTrees(QString _pathToHeightMap){
QImage _heightMap(_pathToHeightMap);
m_tree->deleteVAO();
m_leaves->deleteVAO();
m_positions.clear();
createTrees();
}
//----------------------------------------------------------------------------------------------------------------------
|
159672d6bd470e3baf72130c45834157b0ba0863
|
252271345e26e241547380ce690a0d6c68e2214e
|
/fab/geometry/template/operations/modify_operations.cc
|
4d5b48454d91b7289436c6363ea7c7bf5861009f
|
[] |
no_license
|
shumash/plato_codesample
|
c46c60201e3a2b7bc1b8531821f536744e797da9
|
98e6e042b2ebcb97ce8635dc6725cefd8d6ed2d2
|
refs/heads/master
| 2020-06-02T11:40:17.962511
| 2015-09-25T01:25:24
| 2015-09-25T01:25:24
| 42,969,022
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,278
|
cc
|
modify_operations.cc
|
#include <cstdlib>
#include <Eigen/Geometry>
#include <boost/smart_ptr/scoped_ptr.hpp>
#include <carve/polyhedron_decl.hpp>
#include <carve/csg.hpp>
#include <gflags/gflags.h>
#include "fab/geometry/convert.h"
#include "fab/geometry/transform_utils.h"
#include "fab/geometry/template/modify_operations.h"
#include "fab/geometry/template/proto_convert.h"
#include "fab/geometry/template/registration.h"
DEFINE_bool(debug_turn_into_tentacle, false,
"If true skips proper CSG");
namespace mit_plato {
using namespace Eigen;
REGISTER_OPERATION_WITH_DEFAULT(
"Scale", ScaleOperation, ScaleOpSpec);
REGISTER_OPERATION_WITH_DEFAULT(
"Translate", TranslateOperation, TranslateOpSpec);
REGISTER_OPERATION_WITH_DEFAULT(
"Rotate", RotateOperation, RotateOpSpec);
REGISTER_OPERATION_WITH_DEFAULT(
"Perturb surface", RandomDisplacementOperation, RandomDisplacementOpSpec);
REGISTER_OPERATION_WITH_DEFAULT(
"Laplacian smoothing", SmoothOperation, SmoothOpSpec);
REGISTER_OPERATION_WITH_DEFAULT(
"Subdivide", SubdivideOperation, SubdivideOpSpec);
REGISTER_OPERATION_WITH_DEFAULT(
"TurnIntoTentacle", TurnIntoTentacleOperation, TurnIntoTentacleOpSpec);
// SMOOTH ----------------------------------------------------------------------
void SmoothOperation::Modify(Shape* shape) {
TriMesh& mesh = shape->MutableMesh();
mesh.selectAll<TriMesh::VertexHandle>();
mesh.doLaplacianSmoothingOnSelection(spec_.lambda());
mesh.deselectAll();
mesh.update_normals();
}
// SUBDIVIDE -------------------------------------------------------------------
void SubdivideOperation::Modify(Shape* shape) {
TriMesh& mesh = shape->MutableMesh();
for (int i = 0; i < spec_.n_times(); ++i) {
mesh.selectAll<TriMesh::FaceHandle>();
mesh.subdivideSelection();
}
mesh.deselectAll();
mesh.update_normals();
}
// RANDOM DISPLACEMENT ---------------------------------------------------------
void RandomDisplacementOperation::Modify(Shape* shape) {
TriMesh& mesh = shape->MutableMesh();
for (TriMesh::VertexIter vit = mesh.vertices_begin();
vit != mesh.vertices_end(); ++vit) {
TriMesh::Point location = mesh.point(vit.handle());
TriMesh::Point normal = mesh.normal(vit.handle());
double amount =
(static_cast<double>(rand()) / (RAND_MAX + 1) - 0.5) *
spec_.amount();
mesh.set_point(vit.handle(), location + normal * amount);
}
mesh.update_normals();
}
// TRANSFORM -------------------------------------------------------------------
void TransformOperation::Modify(Shape* shape) {
if (spec_.hom_matrix_size() == 0) return;
Eigen::Matrix4d mat;
CHECK_EQ(16, spec_.hom_matrix_size());
for (int row = 0; row < 4; ++row) {
for (int col = 0; col < 4; ++col) {
mat(row, col) = spec_.hom_matrix(row * 4 + col);
}
}
VLOG(3) << "Read matrix: " << mat;
shape->AddTransform(mat);
}
void TransformOperation::ToSpec(
const Matrix4d& mat, TransformOpSpec* spec) const {
spec->clear_hom_matrix();
for (int i = 0; i < 16; ++i) {
spec->add_hom_matrix(0);
}
for (int row = 0; row < 4; ++row) {
for (int col = 0; col < 4; ++col) {
spec->set_hom_matrix(row * 4 + col, mat(row, col));
}
}
}
// SCALE -----------------------------------------------------------------------
void ScaleOperation::Modify(Shape* shape) {
Eigen::Matrix4d mat = Eigen::Matrix4d::Identity() * spec_.scale();
mat(3, 3) = 1;
shape->AddTransform(mat);
}
// TRANSLATE -------------------------------------------------------------------
TranslateOperation::TranslateOperation(const TranslateOpSpec& spec) {
spec_.CopyFrom(spec);
ExposeParams(&spec_);
Reset();
}
void TranslateOperation::Reset() {
mat_ <<
1, 0, 0, spec_.translation().x(),
0, 1, 0, spec_.translation().y(),
0, 0, 1, spec_.translation().z(),
0, 0, 0, 1;
}
void TranslateOperation::Modify(Shape* shape) {
Reset();
shape->AddTransform(mat_);
}
// ROTATE ----------------------------------------------------------------------
RotateOperation::RotateOperation(const RotateOpSpec& spec) {
spec_.CopyFrom(spec);
ExposeParams(&spec_);
Reset();
}
void RotateOperation::Reset() {
mat_ = Matrix4d::Identity();
Eigen::Vector3d axis = ToVector3d(spec_.axis());
if (!axis.isZero()) {
mat_.block(0, 0, 3, 3) = Eigen::AngleAxisd(
mds::ToRadians(spec_.degrees()),
axis.normalized()).matrix();
}
}
void RotateOperation::Modify(Shape* shape) {
Reset();
shape->AddTransform(mat_);
}
// TURN INTO TENTACLE ----------------------------------------------------------
Eigen::Matrix4d TurnIntoTentacleOperation::one_link(double A,
double B,
double ampl1,
double ampl2,
double sphere_radius,
double t) const {
double rad = spec_.base_radius() + spec_.a() * sqrt(t) +
ampl1 * sin(spec_.horizontal_period() * t);
double h = B * t * t +
ampl2 * std::sin(spec_.vertical_period() * t);
double theta = t;
return mds::RotationYAxisMat(std::sin(theta), std::cos(theta)) *
mds::TranslationMat(Vector3d(rad, h, 0)) *
mds::ScaleMat(sphere_radius * base_scale_);
}
void TurnIntoTentacleOperation::add_transform_recursive(
double max_t,
double A,
double B,
double ampl1,
double ampl2,
double alpha,
double beta,
double t,
double it_num,
vector<Eigen::Matrix4d>* transforms) const {
double sphere_radius = alpha * exp(-beta * t);
transforms->push_back(one_link(A, B, ampl1, ampl2, sphere_radius, t));
double mult1 = spec_.horizontal_period();
double mult2 = spec_.vertical_period();
double w = ampl1 / 4.0;
double factor = 1.5 * (w) + 0.9 * (1 - w);
double ds_dt1 =
sqrt( pow(A / (2 * sqrt(t)) + ampl1 * mult1 * cos(mult1 * t), 2) +
pow(A * sqrt(t) + ampl1 * sin(mult1 * t), 2) +
pow(2 * B * t + ampl2 * mult2 * cos(mult2 * t), 2));
double dr_dt = - beta * sphere_radius;
double delta_t1 = factor * sphere_radius / (ds_dt1 - factor * dr_dt / 2);
double new_t = t + delta_t1;
double ds_dt2 =
sqrt( pow(A / (2 * sqrt(new_t)) +
ampl1 * mult1 * cos(mult1 * new_t), 2) +
pow(A * sqrt(new_t) + ampl1 * sin(mult1 * new_t), 2) +
pow(2 * B * new_t + ampl2 * mult2 * cos(mult2 * new_t), 2));
double ds_dt = (ds_dt1 + ds_dt2) / 2.0;
double delta_t = factor * sphere_radius / (ds_dt - factor * dr_dt / 2);
if (t + delta_t < max_t && delta_t > 0.005) {
add_transform_recursive(
max_t, A, B, ampl1, ampl2, alpha, beta, t + delta_t,
it_num + 1, transforms);
}
}
void TurnIntoTentacleOperation::GetTransforms(
vector<Eigen::Matrix4d>* transforms) const {
double A = spec_.a();
double start_radius = spec_.start_radius();
double end_radius = spec_.end_radius();
double height = spec_.height();
double n_revs = spec_.n_revs();
double waviness = spec_.waviness();
double ampl1 = 1 * waviness;
double ampl2 = 1.5 * waviness;
double start_t = 0.01; //0.2;
double max_t = 2 * std::acos(-1) * n_revs + start_t;
double B = height / pow(max_t, 2);
// Exponential radius decay
double beta = std::log(start_radius / end_radius) / (max_t - start_t);
double alpha = start_radius / exp(- beta * start_t);
add_transform_recursive(
max_t, spec_.a(), B, ampl1, ampl2, alpha, beta, start_t, 0, transforms);
}
void TurnIntoTentacleOperation::Modify(Shape* shape) {
if (spec_.empty_if_flat() && spec_.height() <= 0.0001) {
shape->Reset(Shape());
return;
}
shape->Mesh().needBoundingBox();
TriMesh::Point dif = shape->Mesh().bounding_box_max() - shape->Mesh().bounding_box_min();
double min_dim = std::min(fabs(dif[0]), std::min(fabs(dif[1]), fabs(dif[2])));
if (min_dim > 0.00001) {
base_scale_ = 2.0 / min_dim;
} else {
base_scale_ = 1.0;
}
vector<Eigen::Matrix4d> transforms;
GetTransforms(&transforms);
if (transforms.empty()) {
LOG(ERROR) << "No shapes produced in TENTACLE; doing nothing";
return;
}
vector<Shape*> shapes;
int skipped = 0;
for (const auto& trans : transforms) {
if (skipped >= spec_.skip_first_n()) {
shapes.push_back(new Shape(shape->Mesh()));
shapes.back()->AddTransform(trans);
}
++skipped;
}
if (shapes.size() == 0) {
LOG(ERROR) << "No tentacle links generated.";
} else if (shapes.size() == 1) {
shape->Reset(*shapes[0]);
} else if (FLAGS_debug_turn_into_tentacle) {
for (int i = 1; i < shapes.size(); ++i) {
shapes[0]->MutableMesh().AddData(shapes[i]->Mesh());
}
shape->Reset(*shapes[0]);
} else {
carve::csg::CSG csg_util;
boost::scoped_ptr<carve::poly::Polyhedron> res(
csg_util.compute(
&shapes[0]->Polyhedron(), &shapes[1]->Polyhedron(),
carve::csg::CSG::UNION));
for (int i = 2; i < shapes.size(); ++i) {
carve::poly::Polyhedron* tmp_res =
csg_util.compute(
res.get(), &shapes[i]->Polyhedron(),
carve::csg::CSG::UNION);
res.reset(tmp_res);
}
Shape::PolyhedronToMesh(*res, &shape->MutableMesh());
}
for (int i = 0; i < shapes.size(); ++i) {
delete shapes[i];
}
}
} // namespace mit_plato
|
c6bc6f644d4eee2064d3d2f6972c9484d3839507
|
a35c0d06754e161551e3059cdfa834e12fd312bd
|
/ForScience/levelSelectScreen.cpp
|
08d899235dd0f34da38681bb9b59bc455c2cd279
|
[] |
no_license
|
yugiohatemu/ForScience
|
7100d4fcc89a2d1f93f0b2a80e1813f0e09fdb0a
|
0c138923249ab2f5385459d448b2adbec2fbdbc6
|
refs/heads/master
| 2020-12-30T10:50:03.773623
| 2013-10-07T01:57:12
| 2013-10-07T01:57:12
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,633
|
cpp
|
levelSelectScreen.cpp
|
//
// levelSelectScreen.cpp
// ForScience
//
// Created by Yue on 8/4/13.
// Copyright (c) 2013 Yue. All rights reserved.
//
#include "levelSelectScreen.h"
#include "utility.h"
#include "constant.h"
#include "screenController.h"
#include "levelScreen.h"
#include <iostream>
LevelSelectScreen::LevelSelectScreen():Screen(){
total_level = 11;
selected_level = 0;
//level_row = 2
//level_column = 5
//also last one is exit
levels = new bool [total_level]; //1 for exit
set_selected_level();
set_clip();
instruction = new Text(10, 500, "Press [Enter] to choose, [ESC] to go back", font);
instruction->backColor = COLOR_BLACK;
instruction->textColor = COLOR_WHITE;
instruction->render();
}
LevelSelectScreen::~LevelSelectScreen(){
delete [] levels;
delete instruction;
}
void LevelSelectScreen::set_clip(){
//155, 50
clips[UNSELECT].x = 0;
clips[UNSELECT].y = 155;
clips[UNSELECT].w = 50;
clips[UNSELECT].h = 50;
clips[SELECT].x = 50;
clips[SELECT].y = 155;
clips[SELECT].w = 45;
clips[SELECT].h = 50;
// clips[U_EXIT].x = 95;
// clips[U_EXIT].y = 155;
// clips[U_EXIT].w = 95;
// clips[U_EXIT].h = 50;
//
// clips[S_EXIT].x = 190;
// clips[S_EXIT].y = 155;
// clips[S_EXIT].w = 95;
// clips[S_EXIT].h = 50;
}
void LevelSelectScreen::set_selected_level(){
for (int i = 0; i < total_level; i +=1) {
levels[i] = false;
}
levels[selected_level] = true;
}
void LevelSelectScreen::handle_input(SDL_Event event){
if( event.type == SDL_KEYDOWN ){
int dir = event.key.keysym.sym;
if (dir == SDLK_UP){
//up and down to add row. enly up and down can go to exit?
selected_level = (selected_level + total_level - 5) % total_level ;
set_selected_level();
}else if(dir == SDLK_DOWN){
selected_level = (selected_level + 5) % total_level ;
set_selected_level();
}else if(dir == SDLK_LEFT){
selected_level = (selected_level + total_level- 1) % total_level;
set_selected_level();
}else if(dir == SDLK_RIGHT){
selected_level = (selected_level + 1) % total_level;
set_selected_level();
}else if(dir == SDLK_RETURN){
// current_screen = LEVEL_SCREEN;
LEVEL_PAUSE = false;
// std::cout<<selected_level<<std::endl;
LevelScreen * next = new LevelScreen( selected_level % 3 + 1); //later be selected_level + 1, since start from 0,
ScreenController * root_controller = dynamic_cast<ScreenController *>(root);
root_controller->push_controller(next);
}else if(dir == SDLK_ESCAPE){
// current_screen = MENU_SCREEN;
ScreenController * root_controller = dynamic_cast<ScreenController *>(root);
root_controller->pop_controller();
}
}
}
void LevelSelectScreen::show(SDL_Rect camera, SDL_Surface *tileSheet, SDL_Surface *screen){
SDL_FillRect(screen , NULL , 0x000000);
for (int i = 0; i < total_level; i += 1) {
if(levels[i]) apply_surface((i %5) * 50 + 20,(i / 5)*50, menuSheet, screen, &clips[SELECT]);
else apply_surface((i % 5) * 50+ 20,(i / 5) * 50, menuSheet, screen, &clips[UNSELECT]);
}
instruction->show(screen);
//add exit
// if (selected_level == total_level) apply_surface(100, 200, tileSheet, screen, & clips[S_EXIT]);
// else apply_surface(100, 200, tileSheet, screen, & clips[U_EXIT]);
}
void LevelSelectScreen::animate(){
}
|
ca96f4288721a9932cc4e5373ffa2caeb85a1e5c
|
00c080b3a179f3f52d742f7247198dbe1df49a0d
|
/esClasse/05_raz/raz.cpp
|
d97fd18d2989ea3223297f48a2888de98829989a
|
[] |
no_license
|
Giosh99/Programmazione_2
|
6dbd65dda326e943c7131b727e6895260924871a
|
b32f1dfaf902290166d01e7a47db0d6af9841dfc
|
refs/heads/master
| 2020-09-08T05:41:28.397954
| 2020-04-14T16:33:50
| 2020-04-14T16:33:50
| 221,032,262
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 977
|
cpp
|
raz.cpp
|
#include "raz.h"
#include <iostream>
//scelta implementativa: se viene passato denominatore nullo prendo valore di default 1
Raz::Raz(int n, int d):num(n), den(d ? d:1){}
//scelta implementativa: reciproco di 0 è 0
Raz Raz::inverso() const{return num==0 ? Raz():Raz(den, num);}
Raz::operator double() const{
return static_cast<double>(num)/static_cast<double>(den);
}
Raz Raz::operator+(const Raz& x) const{
double mcm=den*x.den;
return Raz((mcm/den*num)+(mcm/x.den*x.num),mcm);
}
Raz Raz::operator*(const Raz& x) const{
return Raz(num*x.num, den*x.den);
}
Raz& Raz::operator++(){
num+=den;
return *this;
}
Raz Raz::operator++(int){
Raz aux(*this);
*this=this->operator+(1);
return aux;
}
bool Raz::operator==(const Raz& x) const{
Raz aux=(*this)*(x.inverso());
return aux.num==aux.den;
}
std::ostream& operator<<(std::ostream& os, const Raz& x){
return os<<x.operator double();
}
Raz Raz::unTerzo() {return Raz(1,3);}
|
9a8237d42e2f68139c0110636c04bfa14b900ff1
|
7d886deca26b119da215cb098881f105b7fd53e2
|
/VTS3/VTSEventOutOfRangeDlg.cpp
|
2a429cdf3f3e1d43c9ee017308d21b146a6b85ea
|
[] |
no_license
|
larrycook99/vts
|
2e3d9a4f377199b89302f129d229eb443b920ea2
|
eb75f416c3a7d082004703fbf69da3ba04dd6ece
|
refs/heads/master
| 2023-01-12T00:19:02.536960
| 2020-11-22T03:43:50
| 2020-11-22T03:43:50
| 314,956,244
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,496
|
cpp
|
VTSEventOutOfRangeDlg.cpp
|
// VTSEventOutOfRangeDlg.cpp : implementation file
//
#include "stdafx.h"
#include "vts.h"
#include "VTSEventOutOfRangeDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// VTSEventOutOfRangeDlg dialog
#pragma warning( disable : 4355 )
VTSEventOutOfRangeDlg::VTSEventOutOfRangeDlg(CWnd* pParent /*=NULL*/)
: CDialog(VTSEventOutOfRangeDlg::IDD, pParent)
, m_timeDelay(this, IDC_TIMEDELAY)
, m_LowLimit(this, IDC_LOWLIMIT)
, m_HighLimit(this, IDC_HIGHLIMIT)
, m_DeadBand(this, IDC_DEADBAND)
{
//{{AFX_DATA_INIT(VTSEventOutOfRangeDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
#pragma warning( default : 4355 )
void VTSEventOutOfRangeDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(VTSEventOutOfRangeDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
m_timeDelay.UpdateData( pDX->m_bSaveAndValidate );
m_LowLimit.UpdateData( pDX->m_bSaveAndValidate );
m_HighLimit.UpdateData( pDX->m_bSaveAndValidate );
m_DeadBand.UpdateData( pDX->m_bSaveAndValidate );
}
BEGIN_MESSAGE_MAP(VTSEventOutOfRangeDlg, CDialog)
//{{AFX_MSG_MAP(VTSEventOutOfRangeDlg)
ON_EN_CHANGE(IDC_TIMEDELAY, OnChangeTimedelay)
ON_EN_CHANGE(IDC_LOWLIMIT, OnChangeLowlimit)
ON_EN_CHANGE(IDC_HIGHLIMIT, OnChangeHighlimit)
ON_EN_CHANGE(IDC_DEADBAND, OnChangeDeadband)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// VTSEventOutOfRangeDlg message handlers
void VTSEventOutOfRangeDlg::OnChangeTimedelay()
{
m_timeDelay.UpdateData();
}
void VTSEventOutOfRangeDlg::OnChangeHighlimit()
{
m_HighLimit.UpdateData();
}
void VTSEventOutOfRangeDlg::OnChangeLowlimit()
{
m_LowLimit.UpdateData();
}
void VTSEventOutOfRangeDlg::OnChangeDeadband()
{
m_DeadBand.UpdateData();
}
void VTSEventOutOfRangeDlg::Encode(BACnetAPDUEncoder& enc, int context)
{
m_timeDelay.Encode(enc, 0);
m_LowLimit.Encode(enc, 1);
m_HighLimit.Encode(enc, 2);
m_DeadBand.Encode(enc, 3);
}
void VTSEventOutOfRangeDlg::Decode(BACnetAPDUDecoder& dec )
{
if(dec.pktLength!=0)
{
m_timeDelay.Decode(dec);
m_timeDelay.ctrlNull = false;
m_LowLimit.Decode(dec);
m_LowLimit.ctrlNull = false;
m_HighLimit.Decode(dec);
m_HighLimit.ctrlNull = false;
m_DeadBand.Decode(dec);
m_DeadBand.ctrlNull = false;
}
}
|
78c0388f41b36c672480bc005ddcbd04e7aaf93c
|
8353b4a4241c3dd22873700abcfd11c9a7ef51a4
|
/huyacc/SFlexxTerm.h
|
1e76bb8b242349362cfa0f84e6ada01e3bb3bf8b
|
[] |
no_license
|
Egor2001/CompilerCompiler
|
d2a4d43a198d396e42ffcf6e09dc46400cbdf00c
|
fc0d1372be6f22e7a637bdc8a47eeb8175a34bb7
|
refs/heads/master
| 2020-11-24T16:39:49.033799
| 2020-02-07T08:09:52
| 2020-02-07T08:09:52
| 228,251,269
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 147
|
h
|
SFlexxTerm.h
|
#ifndef STERM_H
#define STERM_H
#include <string>
//namespace {
struct SFlexxTerm
{
std::string name;
};
//} //namespace
#endif //STERM_H
|
4b5c494062f0c037d563394b33d36a19fd3ba8f0
|
c39b58c29877f18781c142103678f37d0ac6fd2a
|
/Mandala/Mandala/MusicComponent.cpp
|
7d9f41898ae97bb5dd9dae94aab584716c8d22fa
|
[] |
no_license
|
LauraLaureus/M.A.N.D.A.L.Aproject
|
ba9469c7fd0f033a8ba5c5401e81108ca85d511e
|
67c8d50ac7be0c4aecb058c391409f6b1e5995ff
|
refs/heads/master
| 2021-01-19T08:23:15.974600
| 2017-06-12T16:56:52
| 2017-06-12T16:56:52
| 87,623,773
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 661
|
cpp
|
MusicComponent.cpp
|
#include "MusicComponent.h"
MusicComponent::MusicComponent(GameEntity* parent,std::string name): GameComponent(parent)
{
this->filename = name;
this->filePath = AudioMaster::getAbsoluteFileName(name);
this->music.openFromFile(this->filePath);
}
MusicComponent::~MusicComponent()
{
}
void MusicComponent::play(int volume, int loop) {
this->music.setVolume(volume);
this->music.setLoop(loop);
this->music.play();
}
void MusicComponent::pause() {
this->music.pause();
}
void MusicComponent::stop() {
this->music.stop();
}
void MusicComponent::setVolumen(int v) {
this->volume = v;
}
void MusicComponent::setLoop(bool l) {
this->loop = l;
}
|
7f57f6418206c7632a57d05fe5cb0707228788c7
|
c3913bdb6f304dad5b27a589b64090987f66a339
|
/objectdet/ObjectDetStructureRule.cpp
|
7ae95bf8267d1fbbe9fb492a4cbb6e3997271f7d
|
[] |
no_license
|
acproject/eagleeye
|
2a0894380e4e2ab417a22d72d2e0e8a032755ed7
|
9db55bb6678c1563edb659a37aeb6ad400fc3f6a
|
refs/heads/master
| 2021-05-27T04:05:45.451813
| 2014-03-01T10:08:06
| 2014-03-01T10:08:06
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,650
|
cpp
|
ObjectDetStructureRule.cpp
|
#include "ObjectDetStructureRule.h"
#include "Matlab/MatlabInterface.h"
namespace eagleeye
{
ObjectDetStructureRule::ObjectDetStructureRule(const char* name)
:LinkRule(name)
{
m_offset_w = 0.0f;
m_rule_pase_feature = Matrix<float>(1,PIXEL_FEATURE_DATA_OFFSET + 1,1.0f);
m_rule_parse_weight = Matrix<float>(1,1,0.0f);
}
ObjectDetStructureRule::~ObjectDetStructureRule()
{
}
void* ObjectDetStructureRule::getParseScore(SearchSpace pos_index,SearchMode select_mode,Matrix<float> pos_mat /* = Matrix<float>() */)
{
if (pos_index != PIXEL_SPACE || select_mode != INDEPENDENT_SEARCH)
return NULL;
//if data isn't updated, it would return score pyramid directly
if (!m_data_update_flag)
return &m_structure_rule_score_pyr;
//in general, position is in image space, we should transform it at some proper space
//here, due to computing all position in feature space, we ignore pos_mat
//traverse all linked symbols
int symbols_num = m_linked_symbols.size();
for (int symbol_index = 0; symbol_index < symbols_num; ++symbol_index)
{
//we shouldn't modify the score pyramid from the linked symbol
//warning: here, we don't pick some special position to compute score
ScorePyramid symbol_score_pyr = *((ScorePyramid*)m_linked_symbols[symbol_index]->getSymbolScore(PIXEL_SPACE,INDEPENDENT_SEARCH));
int interval = symbol_score_pyr.interval;
int levels = symbol_score_pyr.levels();
if (symbol_index == 0)
{
//run only once
//initialize m_score_pyr
//shallowcopy only copy pyramid struct info from symbol_score_pya
m_structure_rule_score_pyr.shallowcopy(symbol_score_pyr);
m_structure_rule_score_pyr.setValue(-EAGLEEYE_FINF);
}
//apply structure rule
//update score pyramid
//we would compute the corresponding score at the high resolution level
//if m_anchor_level == 0, we do at the same level
//if m_anchor_level == 1, we do at the twice resolution level
//we should clearly know that anchor is fixed offset.
int anchor_r,anchor_c,anchor_level;
ObjectDetSymbol* objectdet_symbol = dynamic_cast<ObjectDetSymbol*>(m_linked_symbols[symbol_index]);
objectdet_symbol->getAnchor(anchor_r,anchor_c,anchor_level);
//the step in the high resolution level
int step = int(pow(2.0f,anchor_level));
//find the start search position
//this is the fixed offset
int start_r = anchor_r;
int start_c = anchor_c;
//this is the low resolution level
int search_start_level = interval * anchor_level;
for (int search_index = search_start_level; search_index < levels; ++search_index)
{
//we need to check whether the current level of the score pyramid is valid
if (m_structure_rule_score_pyr.flags(search_index))
{
//find high resolution level
//For every position at the low resolution level, we find its corresponding position
//at the high resolution level, then compute its score.
int high_resolution_level = search_index - interval * anchor_level;
//get score matrix at low and high resolution respectively
//we use the data from symbol_score_pya to modify the data from m_score_pyr.
Matrix<float> score_at_low_resolution = m_structure_rule_score_pyr[search_index];
Matrix<float> score_at_high_resolution = symbol_score_pyr[high_resolution_level];
//find the search position under the high resolution
int end_r = eagleeye_min(score_at_high_resolution.rows(),start_r + step * symbol_score_pyr[search_index].rows());
int end_c = eagleeye_min(score_at_high_resolution.cols(),start_c + step * symbol_score_pyr[search_index].cols());
for (int i = start_r; i < end_r; i += step)
{
for (int j = start_c; j < end_c; j += step)
{
float s = score_at_high_resolution(i,j);
int i_low = (i - start_r) / step;
int j_low = (j - start_c) / step;
//update score at the low resolution
//why we should do such?
//we should know that we want to find subparts(linked symbols) at the high
//resolution level.If we find subparts at the high resolution level, we should
//enhance the score of the root at the low resolution level. That's why we do this.
if (score_at_low_resolution(i_low,j_low) < -EAGLEEYE_NEAR_INF)
{
score_at_low_resolution(i_low,j_low) = s;
}
else
score_at_low_resolution(i_low,j_low) += s;
}
}
}
}
}
//disable data update flag
m_data_update_flag = false;
return &m_structure_rule_score_pyr;
}
Matrix<float> ObjectDetStructureRule::getUnitFeature(SearchSpace pos_index,SearchMode select_mode,Matrix<float> pos_mat /* = Matrix<float>() */)
{
if (pos_index != PIXEL_SPACE || select_mode != OPTIMUM_SEARCH)
return Matrix<float>();
m_rule_pase_feature(PIXEL_FEATURE_DATA_OFFSET + 0) = 1;
if (m_sample_state == EAGLEEYE_POSITIVE_SAMPLE)
m_rule_pase_feature[4] = 1.0f; //label
else
m_rule_pase_feature[4] = 0.0f; //label
return m_rule_pase_feature;
}
void ObjectDetStructureRule::findModelLatentInfo(void* info)
{
//firstly, we get prior-info from the upper symbol
//What is the prior-info?
//the info is the optimum position of the upper level symbol
// we would set the optimum position of the low level symbol(some parts)
DetSymbolInfo det_info =* ((DetSymbolInfo*)info);
//According to the author's idea, every structure rule associated with the upper
//symbol holds one whole subparts system.
//Therefore, we need to know which linkrule works now.
//Firstly, we check where the upper symbol optimum position come from
Matrix<float> check_score_m = m_structure_rule_score_pyr[det_info.level];
int rows = check_score_m.rows();
int cols = check_score_m.cols();
int probe_y = det_info.y;
int probe_x = det_info.x;
if (check_score_m(probe_y,probe_x) == det_info.val)
{
//the upper symbol optimum score comes from this rule
int symbols_num = m_linked_symbols.size();
for (int symbol_index = 0; symbol_index < symbols_num; ++symbol_index)
{
ObjectDetSymbol* objectdet_symbol = dynamic_cast<ObjectDetSymbol*>(m_linked_symbols[symbol_index]);
ScorePyramid linked_symbol_score_pya = *((ScorePyramid*)objectdet_symbol->getSymbolScore(PIXEL_SPACE,INDEPENDENT_SEARCH));
//we should clear know that anchor is the fixed offset
//get the anchor of the lower level symbol(subparts)
int anchor_x,anchor_y,anchor_level;
objectdet_symbol->getAnchor(anchor_y,anchor_x,anchor_level);
//get location of the linked symbol
//Generally speaking, the subpart lays at the 2x resolution level in the pyramid
//At this case, anchor_level=1
//If we force the subpart lays at the same resolution level, we should set
//anchor_level=0
//px, py, pl is the subpart position(r,c,level)
int px = det_info.x * int(pow(2.0f,anchor_level)) + anchor_x;//add the fixed offset(anchor_x)
int py = det_info.y * int(pow(2.0f,anchor_level)) + anchor_y;//add the fixed offset(anchor_y)
int pl = det_info.level - m_structure_rule_score_pyr.interval * anchor_level;
DetSymbolInfo s_info;
s_info.x = px;
s_info.y = py;
s_info.level = pl;
s_info.val = linked_symbol_score_pya[pl].at(py,px);
s_info.ds = anchor_level;
//continue to help the low level symbols to find latent variables.
objectdet_symbol->findModelLatentInfo(&s_info);
}
enableSubTree();
}
else
{
disableSubTree();
//the upper symbol optimum score doesn't come from this rule
return;
}
}
Matrix<float> ObjectDetStructureRule::getUnitWeight()
{
m_rule_parse_weight(0) = m_offset_w;
return m_rule_parse_weight;
}
void ObjectDetStructureRule::setUnitWeight(const Matrix<float>& weight)
{
m_offset_w = weight(0);
m_rule_parse_weight(0) = weight(0);
}
}
|
e9ca1f4e9599eae21e2bca6a036fb8f80f58cb29
|
ad1b91e1536bcedb7a360d504473627e995cbd46
|
/src/generic.hpp
|
6663744127b71868e7c410443b0a85e6708eb289
|
[
"MIT"
] |
permissive
|
lnfernal/LoopCube
|
f24031f0b72d7af6de6651d6f8fd6b0abddae36f
|
882296f32bfe3a8b1765950a9b8c9e24af75d009
|
refs/heads/master
| 2023-04-04T16:47:23.588432
| 2021-04-12T00:08:23
| 2021-04-12T00:08:23
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,250
|
hpp
|
generic.hpp
|
#pragma once
#ifndef __HEADLESS
#include <SDL2/SDL.h>
#include "texturehandler.hpp"
#include "../include/glad/glad.h"
#include <SDL2/SDL.h>
#include <SDL2/SDL_opengl.h>
#include "graphics.hpp"
#endif
#ifdef __HEADLESS
struct SDL_Rect
{
int x;
int y;
int w;
int h;
};
#endif
#include <iostream>
#include <cmath>
#include <cstdint>
#include <functional>
#include <glm/glm.hpp>
struct GridCollision_t
{
unsigned int width;
unsigned int height;
};
namespace Generic
{
template <typename CMP>
bool collision(CMP x1, CMP y1, CMP w1, CMP h1,
CMP x2, CMP y2, CMP w2, CMP h2)
{
return (x1 < x2 + w2 &&
x1 + w1 > x2 &&
y1 < y2 + h2 &&
y1 + h1 > y2);
}
bool collision(SDL_Rect r1, SDL_Rect r2);
GridCollision_t gridCollision(const unsigned width, const unsigned height,
glm::vec2 box, const glm::vec2& size);
void serializeUnsigned(const unsigned value, const unsigned length,
std::function<void(uint8_t)> appendData);
template <typename T>
T topToBottomFlip(const T& val, const T& height) noexcept
{
return std::abs(height) - val;
}
template <typename Container, typename Type>
Type deserializeUnsigned(const Container& value, const size_t begIndex, const uint8_t length)
{
constexpr uint8_t BYTE_SIZE = 8;
Type result = 0;
for (uint8_t i = 0; i < length; ++i)
{
uint8_t val = value.at(i+begIndex);
result |= val<<(i*BYTE_SIZE);
}
return result;
}
void serializeSigned(const int value, const unsigned length, std::function<void(uint8_t)> appendData);
template <typename Container, typename Type>
Type deserializeSigned(const Container& value, const size_t begIndex, const uint8_t length)
{
constexpr uint8_t BYTE_SIZE = 8;
constexpr uint8_t BYTE_LAST = 0x80;
constexpr uint8_t BYTE_LAST_MINUS = BYTE_LAST - 1;
Type result = 0;
bool isNegative = (value.at(begIndex + length - 1) & BYTE_LAST) == BYTE_LAST;
for (uint8_t i = 0; i < length; ++i)
{
uint8_t val = value.at(begIndex + i);
result |= (i+1 == length ? val & BYTE_LAST_MINUS : val) << (i * BYTE_SIZE);
}
return isNegative ? -result : result;
}
void serializeDouble(const double val, std::function<void(uint8_t)> appendData);
double lerp(double v1, double v2, double t);
#ifndef __HEADLESS
namespace Render
{
void renderRepeating(const Graphics& graphics,
const int texture, const int clipWidth,
const int clipHeight, const int offsetX, const int offsetY,
const int width, const int height, const int gap, const int top,
const bool verticle = false, const int srcX = 0, const int srcY = 0,
int srcW = -1, int srcH = -1) noexcept;
void generateSquare(std::vector<Vertex>& mesh, float, float, float, float,
float, float, float, float);
}
#endif
}
|
57f4e0c0782d388bf5d89dcd8993206343f8dbc7
|
cfeac52f970e8901871bd02d9acb7de66b9fb6b4
|
/generated/src/aws-cpp-sdk-workspaces-web/include/aws/workspaces-web/model/CreateNetworkSettingsRequest.h
|
88b1368b73d3480772157b836bfac96efa63dbbb
|
[
"Apache-2.0",
"MIT",
"JSON"
] |
permissive
|
aws/aws-sdk-cpp
|
aff116ddf9ca2b41e45c47dba1c2b7754935c585
|
9a7606a6c98e13c759032c2e920c7c64a6a35264
|
refs/heads/main
| 2023-08-25T11:16:55.982089
| 2023-08-24T18:14:53
| 2023-08-24T18:14:53
| 35,440,404
| 1,681
| 1,133
|
Apache-2.0
| 2023-09-12T15:59:33
| 2015-05-11T17:57:32
| null |
UTF-8
|
C++
| false
| false
| 15,201
|
h
|
CreateNetworkSettingsRequest.h
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/workspaces-web/WorkSpacesWeb_EXPORTS.h>
#include <aws/workspaces-web/WorkSpacesWebRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/workspaces-web/model/Tag.h>
#include <utility>
#include <aws/core/utils/UUID.h>
namespace Aws
{
namespace WorkSpacesWeb
{
namespace Model
{
/**
*/
class CreateNetworkSettingsRequest : public WorkSpacesWebRequest
{
public:
AWS_WORKSPACESWEB_API CreateNetworkSettingsRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "CreateNetworkSettings"; }
AWS_WORKSPACESWEB_API Aws::String SerializePayload() const override;
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request. Idempotency ensures that an API request completes
* only once. With an idempotent request, if the original request completes
* successfully, subsequent retries with the same client token returns the result
* from the original successful request. </p> <p>If you do not specify a client
* token, one is automatically generated by the AWS SDK.</p>
*/
inline const Aws::String& GetClientToken() const{ return m_clientToken; }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request. Idempotency ensures that an API request completes
* only once. With an idempotent request, if the original request completes
* successfully, subsequent retries with the same client token returns the result
* from the original successful request. </p> <p>If you do not specify a client
* token, one is automatically generated by the AWS SDK.</p>
*/
inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request. Idempotency ensures that an API request completes
* only once. With an idempotent request, if the original request completes
* successfully, subsequent retries with the same client token returns the result
* from the original successful request. </p> <p>If you do not specify a client
* token, one is automatically generated by the AWS SDK.</p>
*/
inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request. Idempotency ensures that an API request completes
* only once. With an idempotent request, if the original request completes
* successfully, subsequent retries with the same client token returns the result
* from the original successful request. </p> <p>If you do not specify a client
* token, one is automatically generated by the AWS SDK.</p>
*/
inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request. Idempotency ensures that an API request completes
* only once. With an idempotent request, if the original request completes
* successfully, subsequent retries with the same client token returns the result
* from the original successful request. </p> <p>If you do not specify a client
* token, one is automatically generated by the AWS SDK.</p>
*/
inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request. Idempotency ensures that an API request completes
* only once. With an idempotent request, if the original request completes
* successfully, subsequent retries with the same client token returns the result
* from the original successful request. </p> <p>If you do not specify a client
* token, one is automatically generated by the AWS SDK.</p>
*/
inline CreateNetworkSettingsRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request. Idempotency ensures that an API request completes
* only once. With an idempotent request, if the original request completes
* successfully, subsequent retries with the same client token returns the result
* from the original successful request. </p> <p>If you do not specify a client
* token, one is automatically generated by the AWS SDK.</p>
*/
inline CreateNetworkSettingsRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request. Idempotency ensures that an API request completes
* only once. With an idempotent request, if the original request completes
* successfully, subsequent retries with the same client token returns the result
* from the original successful request. </p> <p>If you do not specify a client
* token, one is automatically generated by the AWS SDK.</p>
*/
inline CreateNetworkSettingsRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline const Aws::Vector<Aws::String>& GetSecurityGroupIds() const{ return m_securityGroupIds; }
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline bool SecurityGroupIdsHasBeenSet() const { return m_securityGroupIdsHasBeenSet; }
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline void SetSecurityGroupIds(const Aws::Vector<Aws::String>& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds = value; }
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline void SetSecurityGroupIds(Aws::Vector<Aws::String>&& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds = std::move(value); }
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline CreateNetworkSettingsRequest& WithSecurityGroupIds(const Aws::Vector<Aws::String>& value) { SetSecurityGroupIds(value); return *this;}
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline CreateNetworkSettingsRequest& WithSecurityGroupIds(Aws::Vector<Aws::String>&& value) { SetSecurityGroupIds(std::move(value)); return *this;}
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline CreateNetworkSettingsRequest& AddSecurityGroupIds(const Aws::String& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; }
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline CreateNetworkSettingsRequest& AddSecurityGroupIds(Aws::String&& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(std::move(value)); return *this; }
/**
* <p>One or more security groups used to control access from streaming instances
* to your VPC.</p>
*/
inline CreateNetworkSettingsRequest& AddSecurityGroupIds(const char* value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; }
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline const Aws::Vector<Aws::String>& GetSubnetIds() const{ return m_subnetIds; }
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; }
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline void SetSubnetIds(const Aws::Vector<Aws::String>& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = value; }
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline void SetSubnetIds(Aws::Vector<Aws::String>&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = std::move(value); }
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline CreateNetworkSettingsRequest& WithSubnetIds(const Aws::Vector<Aws::String>& value) { SetSubnetIds(value); return *this;}
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline CreateNetworkSettingsRequest& WithSubnetIds(Aws::Vector<Aws::String>&& value) { SetSubnetIds(std::move(value)); return *this;}
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline CreateNetworkSettingsRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; }
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline CreateNetworkSettingsRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; }
/**
* <p>The subnets in which network interfaces are created to connect streaming
* instances to your VPC. At least two of these subnets must be in different
* availability zones.</p>
*/
inline CreateNetworkSettingsRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; }
/**
* <p>The tags to add to the network settings resource. A tag is a key-value
* pair.</p>
*/
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
/**
* <p>The tags to add to the network settings resource. A tag is a key-value
* pair.</p>
*/
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
/**
* <p>The tags to add to the network settings resource. A tag is a key-value
* pair.</p>
*/
inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
/**
* <p>The tags to add to the network settings resource. A tag is a key-value
* pair.</p>
*/
inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
/**
* <p>The tags to add to the network settings resource. A tag is a key-value
* pair.</p>
*/
inline CreateNetworkSettingsRequest& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
/**
* <p>The tags to add to the network settings resource. A tag is a key-value
* pair.</p>
*/
inline CreateNetworkSettingsRequest& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
/**
* <p>The tags to add to the network settings resource. A tag is a key-value
* pair.</p>
*/
inline CreateNetworkSettingsRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
/**
* <p>The tags to add to the network settings resource. A tag is a key-value
* pair.</p>
*/
inline CreateNetworkSettingsRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
/**
* <p>The VPC that streaming instances will connect to.</p>
*/
inline const Aws::String& GetVpcId() const{ return m_vpcId; }
/**
* <p>The VPC that streaming instances will connect to.</p>
*/
inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; }
/**
* <p>The VPC that streaming instances will connect to.</p>
*/
inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; }
/**
* <p>The VPC that streaming instances will connect to.</p>
*/
inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); }
/**
* <p>The VPC that streaming instances will connect to.</p>
*/
inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); }
/**
* <p>The VPC that streaming instances will connect to.</p>
*/
inline CreateNetworkSettingsRequest& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;}
/**
* <p>The VPC that streaming instances will connect to.</p>
*/
inline CreateNetworkSettingsRequest& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;}
/**
* <p>The VPC that streaming instances will connect to.</p>
*/
inline CreateNetworkSettingsRequest& WithVpcId(const char* value) { SetVpcId(value); return *this;}
private:
Aws::String m_clientToken;
bool m_clientTokenHasBeenSet = false;
Aws::Vector<Aws::String> m_securityGroupIds;
bool m_securityGroupIdsHasBeenSet = false;
Aws::Vector<Aws::String> m_subnetIds;
bool m_subnetIdsHasBeenSet = false;
Aws::Vector<Tag> m_tags;
bool m_tagsHasBeenSet = false;
Aws::String m_vpcId;
bool m_vpcIdHasBeenSet = false;
};
} // namespace Model
} // namespace WorkSpacesWeb
} // namespace Aws
|
8ab50524aff140854b64bba56aa19c30b396a773
|
9b94dbf1525c4c950d0e2bd3e3ee05ad0ee1c03f
|
/block-scanner/src/init.cpp
|
a8b57f45228cb5a3c881e6c0aa62f43b62a4b36d
|
[] |
no_license
|
fourseaLee/explorer-core
|
50444d26010b92ce7266e1ef26105d4bd7ecb185
|
7fc11b19d20d4607c473a026c145a7068f4c68da
|
refs/heads/master
| 2020-05-07T13:06:42.642659
| 2019-04-28T06:12:37
| 2019-04-28T06:12:37
| 180,534,761
| 0
| 0
| null | 2019-04-10T08:15:07
| 2019-04-10T08:15:06
| null |
UTF-8
|
C++
| false
| false
| 6,067
|
cpp
|
init.cpp
|
#include "init.h"
#include "common.h"
#include <glog/logging.h>
#include <unistd.h>
#include "db_mysql.h"
#include <boost/program_options.hpp>
#include "blockchain_rpc.h"
#include "syncer.h"
#include "vns_rpc.h"
static ConfManager s_conf;
static bool InitLog(const std::string& log_path)
{
FLAGS_alsologtostderr = false;
FLAGS_colorlogtostderr = true;
FLAGS_max_log_size = 100;
FLAGS_stop_logging_if_full_disk = true;
std::string log_exec = "log_exe";
google::InitGoogleLogging(log_exec.c_str());
FLAGS_log_dir = log_path;
std::string log_dest = log_path+"/info_";
google::SetLogDestination(google::GLOG_INFO,log_dest.c_str());
log_dest = log_path+"/warn_";
google::SetLogDestination(google::GLOG_WARNING,log_dest.c_str());
log_dest = log_path+"/error_";
google::SetLogDestination(google::GLOG_ERROR,log_dest.c_str());
log_dest = log_path+"/fatal_";
google::SetLogDestination(google::GLOG_FATAL,log_dest.c_str());
google::SetStderrLogging(google::GLOG_ERROR);
google::InstallFailureSignalHandler();
return true;
}
bool ParseCmd(int argc,char*argv[])
{
std::cout << "Parse cmd ------------------------------------------------";
using namespace boost::program_options;
std::string path_configure ;
std::string path_log;
boost::program_options::options_description opts_desc("All options");
opts_desc.add_options()
("help,h", "help info")
("log_path,l", value<std::string>(&path_log)->default_value("../log"), "log configure ")
("configure_path,c", value<std::string>(&path_configure)->default_value("../conf/server_main.conf"), "path configure ");
variables_map cmd_param_map;
try
{
store(parse_command_line(argc, argv, opts_desc), cmd_param_map);
}
catch(boost::program_options::error_with_no_option_name &ex)
{
std::cout << ex.what() << std::endl;
}
notify(cmd_param_map);
if (cmd_param_map.count("help"))
{
std::cout << opts_desc << std::endl;
return false;
}
InitLog(path_log);
s_conf.setConfPath(path_configure);
s_conf.readConfigFile();
s_conf.printArg();
return true;
}
bool InitDB()
{
LOG(INFO) << "Init db ------------------------------------------------";
DBMysql::MysqlConnect* connect = new DBMysql::MysqlConnect();
connect->use_db = s_conf.getArgs("mysqldb", "api_tran");
connect->user_pass = s_conf.getArgs("mysqlpass", "a");
connect->port = std::atoi(s_conf.getArgs("mysqlport", "3306").c_str());
connect->user_name = s_conf.getArgs("mysqluser", "snort");
connect->url = s_conf.getArgs("mysqlserver", "192.168.0.18");
g_db_mysql->SetConnect(connect);
return g_db_mysql->OpenDB();
}
static BlockChainRpc* CreateBlockRpc(Asset* asset)
{
BlockChainRpc* block_rpc = NULL;
if(asset->name == "VNS")
{
block_rpc = new VNSRpc();
block_rpc->setAsset(asset);
if ( !block_rpc->createKafkaProducer() )
{
std::cout << "init " << asset->name << " url" << asset->kafka_url << "failed!" << std::endl;
assert(false);
}
return block_rpc;
}
}
static CSyncer s_syncer;
bool InitAsset()
{
LOG(INFO) << "Init asset -----------------------------------------------------";
std::string select_sql = "select id,name,kafka_url,node_url,wallet_url,auth,height from asset_desc order by id";
DBMysql::JsonDataFormat json_format;
json_format.column_size = 7;
json_format.map_column_type[0] = DBMysql::INT;
json_format.map_column_type[1] = DBMysql::STRING;
json_format.map_column_type[2] = DBMysql::STRING;
json_format.map_column_type[3] = DBMysql::STRING;
json_format.map_column_type[4] = DBMysql::STRING;
json_format.map_column_type[5] = DBMysql::STRING;
json_format.map_column_type[6] = DBMysql::INT;
json json_data;
bool ret = g_db_mysql->GetDataAsJson(select_sql, &json_format, json_data);
if (!ret)
{
LOG(ERROR) << "init asset from db fail.";
return false;
}
LOG(INFO) << "asset info : " << json_data.dump();
for (uint i = 0; i < json_data.size(); ++i)
{
json json_value = json_data.at(i);
/*coin_id,name,short_name,rpc_url,branch,auth,height,least_confimation,wallet_url*/
Asset* asset = new Asset();
std::cout << json_value.dump() << std::endl;
for(uint j = 0; j < json_format.column_size; ++j)
{
switch(j)
{
case 0:
asset->id = json_value.at(j).get<uint>();
break;
case 1:
asset->name = json_value.at(j).get<std::string>();
break;
case 2:
asset->kafka_url = json_value.at(j).get<std::string>();
break;
case 3:
asset->rpc_node_url = json_value.at(j).get<std::string>();
break;
case 4:
asset->rpc_wallet_url = json_value.at(j).get<std::string>();
break;
case 5:
asset->auth = json_value.at(j).get<std::string>();
break;
case 6:
asset->height = json_value.at(j).get<uint64_t>();
break;
default:
break;
}
}
BlockChainRpc* block_rpc = CreateBlockRpc(asset);
s_syncer.addBlockRpc(block_rpc);
}
return true;
}
static void SignalHandler(int sig)
{
switch (sig)
{
case SIGTERM:
case SIGHUP:
case SIGQUIT:
case SIGINT:
{
LOG(ERROR) << "recieve an assert signal " << sig;
g_run_syncer = false;
}
break;
}
}
void startScan()
{
signal(SIGHUP, SignalHandler);
signal(SIGTERM, SignalHandler);
signal(SIGINT, SignalHandler);
signal(SIGQUIT, SignalHandler);
/*if (daemon(1, 0))
{
std::cout << "daemon failed" << std::endl;
return ;
}*/
s_syncer.syncBlocks();
}
|
2b4f68568ae10716b18b71f4fbeaeef0206c57c6
|
04896c0dfb5e7d25c60a31097d0ea63b59d31811
|
/src/utils/dx_proxy/filememcache.h
|
6425f7cee1878dc28dbadd3b0e77388dcc6cc1c8
|
[] |
no_license
|
Petercov/Quiver-Engine
|
f2e820c21c89682f284a6cc5718ed59c6023d525
|
05605a28072682a56ea099dba6b6043da38fa84c
|
refs/heads/master
| 2023-08-15T06:07:40.251252
| 2021-10-19T09:23:05
| 2021-10-19T09:23:05
| 373,350,248
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,495
|
h
|
filememcache.h
|
//====== Copyright c 1996-2007, Valve Corporation, All rights reserved. =======//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef FILEMEMCACHE_H
#define FILEMEMCACHE_H
#ifdef _WIN32
#pragma once
#endif
#include "tier0/platform.h"
#define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS
#include <hash_map>
#pragma warning ( disable : 4200 )
class CachedFileData
{
friend class FileCache;
protected: // Constructed by FileCache
CachedFileData() {}
static CachedFileData *Create( char const *szFilename );
void Free( void );
public:
static CachedFileData *GetByDataPtr( void const *pvDataPtr );
char const * GetFileName() const;
void const * GetDataPtr() const;
int GetDataLen() const;
int UpdateRefCount( int iDeltaRefCount ) { return m_numRefs += iDeltaRefCount; }
bool IsValid() const;
protected:
enum { eHeaderSize = 256 };
char m_chFilename[256 - 12];
int m_numRefs;
int m_numDataBytes;
int m_signature;
unsigned char m_data[0]; // file data spans further
};
class FileCache
{
public:
FileCache();
~FileCache() { Clear(); }
public:
CachedFileData *Get( char const *szFilename );
void Clear( void );
protected:
struct icmp { bool operator()( char const *x, char const *y ) const { return _stricmp( x, y ) < 0; } };
typedef stdext::hash_map< char const *, CachedFileData *, stdext::hash_compare< char const *, icmp > > Mapping;
Mapping m_map;
};
#endif // #ifndef FILEMEMCACHE_H
|
299e0a54e56929bea4ddd31fe312bbc493a270ac
|
1cee1433d247d5595d71185c7bd133d0fdf0f015
|
/client/src/utility/html_utils.hpp
|
ae521b0bef4abbe40f9c0595061ac526603de3d1
|
[] |
no_license
|
ilya-golovenko/chat-informer
|
3fe1d20b4c26fb3c16de2bf6545361e9aeabf289
|
5c2453f14a8fe4d9811cb60596eaf2c4f44a72cf
|
refs/heads/master
| 2021-01-01T18:49:37.727769
| 2014-12-11T16:53:33
| 2014-12-11T16:53:33
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 671
|
hpp
|
html_utils.hpp
|
//---------------------------------------------------------------------------
//
// This file is part of Chat.Informer project
// Copyright (C) 2011, 2013, 2014 Ilya Golovenko
//
//---------------------------------------------------------------------------
#ifndef _chat_utility_html_utils_hpp
#define _chat_utility_html_utils_hpp
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
// STL headers
#include <string>
namespace chat
{
std::string escape_html(std::string const& string);
std::string unescape_html(std::string const& string);
} // namespace chat
#endif // _chat_utility_html_utils_hpp
|
5f1965aa6b0728cb33cdcd6d570a925350059cba
|
b04636f31f716c21a6c0d77bc49b876bc496fff7
|
/Olympiad/VOI/VO Online 2019/Jury files/Contestants/Lê Quang Kỳ - Admin09/DANANG.cpp
|
33cb6d3af837c47d99d72a4cf934f7816db42dba
|
[] |
no_license
|
khanhvu207/competitiveprogramming
|
736b15d46a24b93829f47e5a7dbcf461f4c30e9e
|
ae104488ec605a3d197740a270058401bc9c83df
|
refs/heads/master
| 2021-12-01T00:52:43.729734
| 2021-11-23T23:29:31
| 2021-11-23T23:29:31
| 158,355,181
| 19
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,736
|
cpp
|
DANANG.cpp
|
#include <bits/stdc++.h>
using namespace std;
struct TE {int v[2], id[2]; long long w;};
typedef pair<int, int> ii;
struct TH
{
long long du, prew, u, id;
inline bool operator < (const TH& x) const
{
return (du > x.du) || (du == x.du && prew > x.prew);
}
};
int n, m;
long long D;
TE e[200001];
vector<int> g[200001];
vector<long long> d[200001];
vector<bool> visitted[200001];
inline int getV(long long u, int id)
{
if (u == e[id].v[0]) return 1;
else return 0;
}
void Dijkstra()
{
priority_queue<TH> H;
H.push({0, 0, 1, 0});
while (!H.empty())
{
TH u = H.top();
H.pop();
if (u.du > d[u.u][u.id]) continue;
for (int i = 0; i < g[u.u].size(); i++)
{
TE edge = e[g[u.u][i]];
int id = getV(u.u, g[u.u][i]);
long long& dv = d[edge.v[id]][edge.id[id]];
if (edge.w >= u.prew && (!visitted[edge.v[id]][edge.id[id]] || dv > u.du + edge.w))
{
dv = u.du + edge.w;
visitted[edge.v[id]][edge.id[id]] = true;
visitted[edge.v[1-id]][edge.id[1-id]] = true;
H.push({dv, edge.w+D, edge.v[id], edge.id[id]});
}
}
}
}
int main()
{
freopen("DANANG.INP", "r", stdin);
freopen("DANANG.OUT", "w", stdout);
scanf("%d%d%lli", &n, &m, &D);
for (int i = 1; i <= m; i++)
{
scanf("%d%d%lli", &e[i].v[0], &e[i].v[1], &e[i].w);
g[e[i].v[0]].push_back(i); g[e[i].v[1]].push_back(i);
d[e[i].v[0]].push_back(0); visitted[e[i].v[0]].push_back(false);
e[i].id[0] = d[e[i].v[0]].size()-1;
d[e[i].v[1]].push_back(0); visitted[e[i].v[1]].push_back(false);
e[i].id[1] = d[e[i].v[1]].size()-1;
}
Dijkstra();
long long res = 2e18;
for (int i = 0; i < g[n].size(); i++)
if (visitted[n][i])
res = min(res, d[n][i]);
if (res < 2e18) cout << res;
else cout << -1;
}
|
5d5823cdc6ca3f57a8b52633a87a81ef7d6dc427
|
de15d026a12052001d82107e45782fc1097609da
|
/stack_machine/src/stack_machine.cpp
|
9ca592ce1f39d2efc3c61670d245a4da373b7f4c
|
[] |
no_license
|
Spoof1511/Algorithms
|
63253c38994b02e51655a2fd57693308fc36c2a9
|
0be174f5cfbb98a54772c2133562f08928b05dc9
|
refs/heads/master
| 2021-07-20T21:19:00.988050
| 2017-10-30T17:29:48
| 2017-10-30T17:29:48
| 108,838,008
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,686
|
cpp
|
stack_machine.cpp
|
////////////////////////////////////////////////////////////////////////////////
// Module Name: stack_machine.h/cpp
// Authors: Sergey Shershakov
// Version: 0.2.0
// Date: 23.01.2017
//
// This is a part of the course "Algorithms and Data Structures"
// provided by the School of Software Engineering of the Faculty
// of Computer Science at the Higher School of Economics.
////////////////////////////////////////////////////////////////////////////////
#include "stack_machine.h"
// TODO: add necessary headers here
#include <ctype.h>
namespace xi {
//==============================================================================
// Free functions -- helpers
//==============================================================================
// TODO: if you need some free function, add their definitions here
//==============================================================================
// class PlusOp
//==============================================================================
int PlusOp::operation(char op, int a, int b, int c)
{
if(op != '+')
throw std::logic_error("Operation are not supported");
// here we just ignore unused operands
return a + b;
}
IOperation::Arity PlusOp::getArity() const
{
return arDue;
}
//==============================================================================
// class StackMachine
//==============================================================================
// TODO: implement methods of the StackMachine class here
void StackMachine::registerOperation(char symb, IOperation * oper)
{
SymbolToOperMapConstIter iter = _opers.find(symb);
if (iter != _opers.end())
{
throw std::logic_error("Operation has already registered!");
}
_opers[symb] = oper;
}
IOperation * StackMachine::getOperation(char symb)
{
return _opers[symb];
}
int StackMachine::calculate(const std::string & expr, bool clearStack)
{
if (clearStack)
_s.clear();
for (size_t i = 0; i < expr.length(); i++)
{
if (expr[i] == ' ')
continue;
int sign = 0;
if ((expr[i] == '+' || expr[i] == '-') && i + 1 < expr.length() && isdigit(expr[i + 1]))
{
sign = expr[i] == '+' ? 1 : -1;
++i;
}
else if (isdigit(expr[i]))
sign = 1;
if (sign != 0)
{
int number = 0;
for (; i < expr.length() && expr[i] != ' '; ++i)
{
if (isdigit(expr[i]))
number = number * 10 + (expr[i] - '0');
else
throw std::logic_error("Invalid number");
}
--i;
_s.push(sign * number);
}
else {
IOperation* operation = getOperation(expr[i]);
if (operation == nullptr)
throw std::logic_error("Wrong operation");
int a, b = 0, c = 0;
if (operation->getArity() == IOperation::arUno)
a = _s.pop();
else if (operation->getArity() == IOperation::arDue)
{
b = _s.pop();
a = _s.pop();
}
else
{
c = _s.pop();
b = _s.pop();
a = _s.pop();
}
_s.push(operation->operation(expr[i], a, b, c));
}
}
return _s.top();
}
int DivOp::operation(char op, int a, int b, int c)
{
if (op != '/')
throw std::logic_error("Operation are not supported");
return a / b;
}
IOperation::Arity DivOp::getArity() const
{
return arDue;
}
int MulOp::operation(char op, int a, int b, int c)
{
if (op != '*')
throw std::logic_error("Operation are not supported");
return a * b;
}
IOperation::Arity MulOp::getArity() const
{
return arDue;
}
int ChooseOp::operation(char op, int a, int b, int c)
{
if (op != '?')
throw std::logic_error("Operation are not supported");
if (a != 0)
{
return b;
}
else
{
return c;
}
}
IOperation::Arity ChooseOp::getArity() const
{
return arTre;
}
} // namespace xi
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.